summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrikboy@gmail.com>2025-11-01 14:09:04 +0100
committerAldrik Ramaekers <aldrikboy@gmail.com>2025-11-01 14:09:04 +0100
commita2918b9724a65ba147cfafc6bcf8d410a647330b (patch)
tree3b8ca3ee934a239f458b889f06beb673fa32ffa4 /libs
parent9b8664daf17dac9efb1f4add9d00c562e4ddbf40 (diff)
export ui, localizations
Diffstat (limited to 'libs')
-rw-r--r--libs/anr/.gitignore2
-rw-r--r--libs/anr/anr_data.h1117
-rw-r--r--libs/anr/anr_pdf.h1527
-rw-r--r--libs/anr/anr_sc.h287
-rw-r--r--libs/anr/examples/Makefile19
-rw-r--r--libs/anr/examples/hash.txtbin0 -> 50000 bytes
-rw-r--r--libs/anr/examples/res/ButterflyKids-Regular.ttfbin0 -> 201564 bytes
-rw-r--r--libs/anr/examples/res/bible.txt100182
-rw-r--r--libs/anr/examples/res/cid2code.txt19290
-rw-r--r--libs/anr/examples/res/cid2codesmall.txt6835
-rw-r--r--libs/anr/examples/res/comic-sans.ttfbin0 -> 126364 bytes
-rw-r--r--libs/anr/examples/res/greenland_grid_velo.bmpbin0 -> 2995046 bytes
-rw-r--r--libs/anr/examples/res/small.txt1
-rw-r--r--libs/anr/examples/res/spongebob.pngbin0 -> 535569 bytes
-rw-r--r--libs/anr/examples/res/stb_image.h7985
-rw-r--r--libs/anr/examples/res/test.txt7
-rw-r--r--libs/anr/examples/test_data.c254
-rw-r--r--libs/anr/examples/test_pdf.c267
-rw-r--r--libs/anr/examples/test_sc.c98
-rw-r--r--libs/imgui-1.92.1/imgui.cpp4
-rw-r--r--libs/imgui-1.92.1/imgui.h4
-rw-r--r--libs/imgui-1.92.1/imgui_widgets.cpp4
22 files changed, 137877 insertions, 6 deletions
diff --git a/libs/anr/.gitignore b/libs/anr/.gitignore
new file mode 100644
index 0000000..b58fd02
--- /dev/null
+++ b/libs/anr/.gitignore
@@ -0,0 +1,2 @@
+*/bin
+.vscode/ \ No newline at end of file
diff --git a/libs/anr/anr_data.h b/libs/anr/anr_data.h
new file mode 100644
index 0000000..17ac367
--- /dev/null
+++ b/libs/anr/anr_data.h
@@ -0,0 +1,1117 @@
+/*
+anr_data.h - v0.4 - public domain data structures library
+
+This is a single-header-file library that provides basic data structures
+
+Do this:
+ #ifdef ANR_DATA_IMPLEMENTATION
+before you include this file in *one* C file to create the implementation.
+
+The data structures are completely interchangeable if you use the macros. See examples/test_data.c
+
+DOCUMENTATION
+
+ ANR_DS_ADD
+ array, linked list: append to end of ds.
+ hashmap: insert at any open slot.
+
+ ANR_DS_PRINT
+ print entries. define ANR_DATA_DEBUG to see diff with previous print.
+
+ ANR_DS_FIND_AT
+ Returns data at index.
+
+ ANR_DS_FIND_BY
+ Returns index of first match of data.
+
+ ANR_DS_REMOVE_BY
+ Remove entry given the data ptr. Data ptr is assumed to exist in ds.
+
+ ANR_DS_REMOVE_AT
+ Remove data at index.
+
+ ANR_DS_INSERT
+ array, linked list: Insert at index and move up existing data. Index needs to be <= ds.length
+ hashmap: Insert data at index, replaces existing data. Index needs to be >= 0 and < UINT32_MAX
+
+ ANR_DS_LENGTH
+ Return number of entries in ds.
+
+ ANR_ITERATE
+ Iterate over ds, given anr_iter .index and .data entries are filled.
+
+ ANR_DS_FREE
+ Free memory, dont use ds after this.
+
+LICENSE
+ See end of file for license information.
+
+*/
+#ifndef INCLUDE_ANR_DATA_H
+#define INCLUDE_ANR_DATA_H
+
+#include <string.h>
+#include <stdlib.h>
+#include <stdio.h>
+#include <stddef.h>
+
+#ifndef ANRDATADEF
+#define ANRDATADEF extern
+#endif
+
+#include <inttypes.h>
+
+#ifndef ANRDATA_ASSERT
+#include <assert.h>
+#define ANRDATA_ASSERT(x) assert(x)
+#endif
+
+typedef enum
+{
+ ANR_DS_LINKEDLIST = 0,
+ ANR_DS_DYNAMIC_ARRAY = 1,
+ ANR_DS_HASHMAP = 2,
+} anr_ds_type;
+
+typedef struct
+{
+ void* prev;
+ void* next;
+ void* data;
+} anr_linked_list_node;
+
+typedef struct
+{
+ anr_ds_type ds_type;
+ anr_linked_list_node* first;
+ anr_linked_list_node* last;
+ uint32_t length;
+ uint32_t data_size;
+
+ struct // Cache last accessed node.
+ {
+ anr_linked_list_node* node;
+ uint32_t index;
+ } last_access;
+
+} anr_linked_list;
+
+typedef struct
+{
+ anr_ds_type ds_type;
+ void* data;
+ int32_t data_size;
+ int32_t reserve_size;
+ int32_t reserved;
+ int32_t length;
+} anr_array;
+
+typedef struct
+{
+ uint32_t bucket_start;
+ uint32_t length;
+ void* data;
+} anr_hashmap_bucket;
+
+typedef struct
+{
+ anr_ds_type ds_type;
+ uint32_t bucket_size;
+ anr_array buckets;
+ uint32_t data_size;
+ uint32_t length;
+ int32_t last_emptied; // Index known to be empty. -1 if none.
+ int32_t next_empty; // Next empty index to append. -1 of none.
+} anr_hashmap;
+
+typedef struct
+{
+ int32_t index;
+ void* data;
+ union
+ {
+ struct
+ {
+ anr_linked_list_node* node;
+ } ll;
+ };
+} anr_iter;
+
+typedef union
+{
+ anr_linked_list ds_ll;
+} anr_ds;
+
+typedef struct
+{
+ int32_t (*add)(void* ds, void* ptr); // returns index on success, -1 on fail
+ void (*free)(void* ds);
+ void (*print)(void* ds);
+ void* (*find_at)(void*,uint32_t); // returns data
+ uint32_t (*find_by)(void* ds, char* ptr); // returns index, or -1 if not found
+ uint8_t (*remove_at)(void* ds, uint32_t index); // returns 1 on success, 0 on fail
+ uint8_t (*remove_by)(void* ds, void* ptr); // returns 1 on success, 0 on fail
+ uint8_t (*insert)(void* ds, uint32_t index, void* ptr); // returns 1 on success, 0 on fail
+ uint32_t (*length)(void* ds);
+ anr_iter (*iter_start)(void* ds);
+ uint8_t (*iter_next)(void* ds, anr_iter* iter); // returns 1 on success, 0 if no more items to iterate
+} anr_ds_table;
+
+typedef struct
+{
+ int type;
+ anr_ds_table* ds;
+} anr_ds_pair;
+
+// === linked list ===
+ANRDATADEF anr_linked_list anr_linked_list_create(uint32_t data_size);
+ANRDATADEF int32_t anr_linked_list_add(void* ds, void* ptr);
+ANRDATADEF void anr_linked_list_free(void* ds);
+ANRDATADEF void anr_linked_list_print(void* ds);
+ANRDATADEF void* anr_linked_list_find_at(void* ds, uint32_t index);
+ANRDATADEF uint32_t anr_linked_list_find_by(void* ds, char* ptr);
+ANRDATADEF uint8_t anr_linked_list_remove_at(void* ds, uint32_t index);
+ANRDATADEF uint8_t anr_linked_list_remove_by(void* ds, void* ptr);
+ANRDATADEF uint8_t anr_linked_list_insert(void* ds, uint32_t index, void* ptr);
+ANRDATADEF uint32_t anr_linked_list_length(void* ds);
+ANRDATADEF anr_iter anr_linked_list_iter_start(void* ds);
+ANRDATADEF uint8_t anr_linked_list_iter_next(void* ds, anr_iter* iter);
+
+// === dynamic array ===
+ANRDATADEF anr_array anr_array_create(uint32_t data_size, uint32_t reserve_count);
+ANRDATADEF int32_t anr_array_add(void* ds, void* ptr);
+ANRDATADEF void anr_array_free(void* ds);
+ANRDATADEF void anr_array_print(void* ds);
+ANRDATADEF void* anr_array_find_at(void* ds, uint32_t index);
+ANRDATADEF uint32_t anr_array_find_by(void* ds, char* ptr);
+ANRDATADEF uint8_t anr_array_remove_at(void* ds, uint32_t index);
+ANRDATADEF uint8_t anr_array_remove_by(void* ds, void* ptr);
+ANRDATADEF uint8_t anr_array_insert(void* ds, uint32_t index, void* ptr);
+ANRDATADEF uint32_t anr_array_length(void* ds);
+ANRDATADEF anr_iter anr_array_iter_start(void* ds);
+ANRDATADEF uint8_t anr_array_iter_next(void* ds, anr_iter* iter);
+
+// === hashmap ===
+ANRDATADEF anr_hashmap anr_hashmap_create(uint32_t data_size, uint32_t bucket_size);
+ANRDATADEF int32_t anr_hashmap_add(void* ds, void* ptr);
+ANRDATADEF void anr_hashmap_free(void* ds);
+ANRDATADEF void anr_hashmap_print(void* ds);
+ANRDATADEF void* anr_hashmap_find_at(void* ds, uint32_t index);
+ANRDATADEF uint32_t anr_hashmap_find_by(void* ds, char* ptr);
+ANRDATADEF uint8_t anr_hashmap_remove_at(void* ds, uint32_t index);
+ANRDATADEF uint8_t anr_hashmap_remove_by(void* ds, void* ptr);
+ANRDATADEF uint8_t anr_hashmap_insert(void* ds, uint32_t index, void* ptr);
+ANRDATADEF uint32_t anr_hashmap_length(void* ds);
+ANRDATADEF anr_iter anr_hashmap_iter_start(void* ds);
+ANRDATADEF uint8_t anr_hashmap_iter_next(void* ds, anr_iter* iter);
+
+anr_ds_table _ds_ll =
+{
+ anr_linked_list_add,
+ anr_linked_list_free,
+ anr_linked_list_print,
+ anr_linked_list_find_at,
+ anr_linked_list_find_by,
+ anr_linked_list_remove_at,
+ anr_linked_list_remove_by,
+ anr_linked_list_insert,
+ anr_linked_list_length,
+ anr_linked_list_iter_start,
+ anr_linked_list_iter_next,
+};
+
+anr_ds_table _ds_array =
+{
+ anr_array_add,
+ anr_array_free,
+ anr_array_print,
+ anr_array_find_at,
+ anr_array_find_by,
+ anr_array_remove_at,
+ anr_array_remove_by,
+ anr_array_insert,
+ anr_array_length,
+ anr_array_iter_start,
+ anr_array_iter_next,
+};
+
+anr_ds_table _ds_hashmap =
+{
+ anr_hashmap_add,
+ anr_hashmap_free,
+ anr_hashmap_print,
+ anr_hashmap_find_at,
+ anr_hashmap_find_by,
+ anr_hashmap_remove_at,
+ anr_hashmap_remove_by,
+ anr_hashmap_insert,
+ anr_hashmap_length,
+ anr_hashmap_iter_start,
+ anr_hashmap_iter_next,
+};
+
+anr_ds_pair _ds_arr[] =
+{
+ {ANR_DS_LINKEDLIST, &_ds_ll},
+ {ANR_DS_DYNAMIC_ARRAY, &_ds_array},
+ {ANR_DS_HASHMAP, &_ds_hashmap},
+};
+
+#define ANR_DS_ARRAY(_data_size, _reserve_count) anr_array_create(_data_size, _reserve_count)
+#define ANR_DS_LINKED_LIST(_data_size) anr_linked_list_create(_data_size)
+#define ANR_DS_HASHMAP(_data_size, _bucket_size) anr_hashmap_create(_data_size, _bucket_size)
+
+#define ANR_DS_ADD(__ds, __ptr) (_ds_arr[(int)(((anr_ds*)__ds)->ds_ll.ds_type)]).ds->add((void*)__ds, (void*)__ptr)
+#define ANR_DS_FREE(__ds) (_ds_arr[(int)(((anr_ds*)__ds)->ds_ll.ds_type)]).ds->free((void*)__ds)
+#define ANR_DS_PRINT(__ds) (_ds_arr[(int)(((anr_ds*)__ds)->ds_ll.ds_type)]).ds->print((void*)__ds)
+#define ANR_DS_FIND_AT(__ds, __index) (_ds_arr[(int)(((anr_ds*)__ds)->ds_ll.ds_type)]).ds->find_at((void*)__ds, __index)
+#define ANR_DS_FIND_BY(__ds, __ptr) (_ds_arr[(int)(((anr_ds*)__ds)->ds_ll.ds_type)]).ds->find_by((void*)__ds, (void*)__ptr)
+#define ANR_DS_REMOVE_BY(__ds, __ptr) (_ds_arr[(int)(((anr_ds*)__ds)->ds_ll.ds_type)]).ds->remove_by((void*)__ds, (void*)__ptr)
+#define ANR_DS_REMOVE_AT(__ds, __index) (_ds_arr[(int)(((anr_ds*)__ds)->ds_ll.ds_type)]).ds->remove_at((void*)__ds, __index)
+#define ANR_DS_INSERT(__ds, __index, __ptr) (_ds_arr[(int)(((anr_ds*)__ds)->ds_ll.ds_type)]).ds->insert((void*)__ds, __index, (void*)__ptr)
+#define ANR_DS_LENGTH(__ds) (_ds_arr[(int)(((anr_ds*)__ds)->ds_ll.ds_type)]).ds->length((void*)__ds)
+#define ANR_DS_ITER_START(__ds) (_ds_arr[(int)(((anr_ds*)__ds)->ds_ll.ds_type)]).ds->iter_start((void*)__ds)
+#define ANR_DS_ITER_NEXT(__ds, __iter) (_ds_arr[(int)(((anr_ds*)__ds)->ds_ll.ds_type)]).ds->iter_next((void*)__ds, __iter)
+
+#define ANR_ITERATE(__iter, __ds) \
+ anr_iter __iter = ANR_DS_ITER_START((void*)__ds); \
+ while (ANR_DS_ITER_NEXT((void*)__ds, &__iter))
+
+#endif // INCLUDE_ANR_DATA_H
+
+#ifdef ANR_DATA_IMPLEMENTATION
+
+#ifdef ANR_DATA_DEBUG
+anr_linked_list curr_print = (anr_linked_list){ANR_DS_LINKEDLIST, 0, 0, 0, 200};
+anr_linked_list prev_print = (anr_linked_list){ANR_DS_LINKEDLIST, 0, 0, 0, 200};
+
+static void anr__print_diff()
+{
+ #define max(a,b) (((a) > (b)) ? (a) : (b))
+ #define gotox(x) printf("\033[%dC", (x))
+ #define moveup(y) printf("\033[%dA", y);
+
+ int max_lines = max(prev_print.length, curr_print.length);
+ for (int i = 0; i < max_lines; i++)
+ {
+ char* curr_line = (i < curr_print.length) ? ANR_DS_FIND_AT(&curr_print, i) : 0;
+ if (curr_line)
+ {
+ printf("%s", curr_line);
+ if (i < prev_print.length) moveup(1);
+ }
+
+ char* prev_line = (i < prev_print.length) ? ANR_DS_FIND_AT(&prev_print, i) : 0;
+ if (prev_line)
+ {
+ gotox(85);
+ int strl = strlen(prev_line);
+ for (int x = 0; x < strl; x++) {
+ char ch = prev_line[x];
+ char is_same = (curr_line == NULL) ? 1 : ((x < strlen(curr_line) ? (ch == curr_line[x]) : 0));
+ if (!is_same) printf("\033[0;31m%c\033[0m", ch);
+ else printf("%c", ch);
+ }
+ }
+ }
+ printf("\n");
+
+ // Next iteration.
+ ANR_DS_FREE(&prev_print);
+ prev_print = curr_print;
+ curr_print = (anr_linked_list){ANR_DS_LINKEDLIST, 0, 0, 0, 200};
+}
+
+
+void anr_linked_list_print(void* ds)
+{
+
+ anr_linked_list* list = ds;
+ anr_linked_list_node* iter = list->first;
+ uint32_t count = 0;
+
+ char* buffer = malloc(200);
+ snprintf(buffer, 200, "List %p has %d nodes, first: %p last: %p\n", list, list->length, list->first, list->last);
+ ANR_DS_ADD(&curr_print, buffer);
+ while (iter)
+ {
+ char* buffer = malloc(200);
+ snprintf(buffer, 200, "#%d %p prev: %p next: %p\n", count, iter, iter->prev, iter->next);
+ ANR_DS_ADD(&curr_print, buffer);
+ iter = iter->next;
+ count++;
+ }
+ anr__print_diff();
+}
+#else
+void anr_linked_list_print(void* ds)
+{
+ (void)ds;
+}
+#endif
+
+uint32_t anr_linked_list_length(void* ds)
+{
+ anr_linked_list* list = ds;
+ return list->length;
+}
+
+anr_iter anr_linked_list_iter_start(void* ds)
+{
+ (void)ds;
+ anr_iter iter;
+ iter.ll.node = NULL;
+ iter.index = -1;
+ iter.data = NULL;
+ return iter;
+}
+
+uint8_t anr_linked_list_iter_next(void* ds, anr_iter* iter)
+{
+ ANRDATA_ASSERT(ds);
+ ANRDATA_ASSERT(iter);
+ anr_linked_list* list = ds;
+ if (iter->ll.node == NULL) iter->ll.node = list->first;
+ else iter->ll.node = iter->ll.node->next;
+ iter->index++;
+ iter->data = iter->ll.node != NULL ? ((uint8_t*)iter->ll.node)+offsetof(anr_linked_list_node, data) : 0;
+ return iter->ll.node != NULL;
+}
+
+void anr_linked_list_free(void* ds)
+{
+ ANRDATA_ASSERT(ds);
+ anr_linked_list* list = ds;
+ anr_linked_list_node* iter = list->last;
+ anr_linked_list_node* last = iter;
+ while (iter)
+ {
+ last = iter;
+ free(iter->next);
+ iter = iter->prev;
+ }
+ free(last);
+}
+
+uint8_t anr_linked_list_insert(void* ds, uint32_t index, void* ptr)
+{
+ ANRDATA_ASSERT(ds);
+ anr_linked_list* list = ds;
+
+ anr_linked_list_node* iter = list->first;
+ uint32_t count = 0;
+
+ anr_linked_list_node* prev = NULL;
+ anr_linked_list_node* next = NULL;
+ list->last_access.index = 0;
+ list->last_access.node = 0;
+
+ if (index == list->length) {
+ count = index;
+ prev = list->last;
+ next = NULL;
+ }
+ else {
+ while (iter)
+ {
+ if (count == index) {
+ break;
+ }
+ iter = iter->next;
+ count++;
+ }
+
+ if (!iter) return 0; // out of bounds.
+
+ prev = iter->prev;
+ next = iter;
+ }
+
+ anr_linked_list_node* node = malloc(sizeof(anr_linked_list_node) + list->data_size - sizeof(void*));
+ if (!node) return 0;
+ memcpy(((uint8_t*)node)+offsetof(anr_linked_list_node, data), ptr, list->data_size);
+ node->prev = prev;
+ node->next = next;
+
+ list->last_access.index = index;
+ list->last_access.node = node;
+
+ if (count == 0) {
+ list->first = node;
+ }
+ if (count == list->length) {
+ list->last = node;
+ }
+
+ if (node->prev) {
+ ((anr_linked_list_node*)(node->prev))->next = node;
+ }
+ if (node->next) {
+ ((anr_linked_list_node*)(node->next))->prev = node;
+ }
+ list->length++;
+
+ return 1;
+}
+
+uint8_t anr_linked_list_remove_at(void* ds, uint32_t index)
+{
+ ANRDATA_ASSERT(ds);
+ void* ptr = anr_linked_list_find_at(ds, index);
+ if (!ptr) return 0;
+
+ anr_linked_list* list = ds;
+ anr_linked_list_node* iter = ptr - (offsetof(anr_linked_list_node, data));
+ iter = iter->prev;
+
+ uint8_t result = anr_linked_list_remove_by(ds, ptr);
+ list->last_access.index = index-1;
+ list->last_access.node = iter;
+ return result;
+}
+
+uint8_t anr_linked_list_remove_by(void* ds, void* ptr)
+{
+ ANRDATA_ASSERT(ds);
+ ANRDATA_ASSERT(ptr);
+
+ anr_linked_list* list = ds;
+ anr_linked_list_node* iter = ptr - (offsetof(anr_linked_list_node, data));
+ list->last_access.index = 0;
+ list->last_access.node = 0;
+
+ if (iter == list->first) {
+ list->first = iter->next;
+ }
+ if (iter == list->last) {
+ list->last = iter->prev;
+ }
+
+ if (iter->prev) {
+ ((anr_linked_list_node*)(iter->prev))->next = iter->next;
+ }
+ if (iter->next) {
+ ((anr_linked_list_node*)(iter->next))->prev = iter->prev;
+ }
+
+ free(iter);
+ list->length--;
+ return 1;
+}
+
+uint32_t anr_linked_list_find_by(void* ds, char* ptr)
+{
+ ANRDATA_ASSERT(ds);
+ ANRDATA_ASSERT(ptr);
+ anr_linked_list* list = ds;
+ anr_linked_list_node* iter = list->first;
+ uint32_t count = 0;
+ while (iter)
+ {
+ void* data = ((uint8_t*)iter)+offsetof(anr_linked_list_node, data);
+ if (memcmp(data, ptr, list->data_size) == 0) {
+ return count;
+ }
+ count++;
+ iter = iter->next;
+ }
+ return -1;
+}
+
+void* anr_linked_list_find_at(void* ds, uint32_t index)
+{
+ ANRDATA_ASSERT(ds);
+ anr_linked_list* list = ds;
+
+ typedef struct
+ {
+ anr_linked_list_node* node;
+ uint32_t index;
+ } possible_start;
+
+ possible_start waypoints[3] = {
+ (possible_start){list->first, 0},
+ (possible_start){list->last_access.node, list->last_access.index},
+ (possible_start){list->last, list->length-1}
+ };
+
+ uint32_t closest_waypoint = 0;
+ uint32_t closest_dist = UINT32_MAX;
+ uint32_t closest_index = 0;
+ for (int i = 0; i < 3; i++) {
+ if (waypoints[i].node) {
+ if (abs(waypoints[i].index - index) < closest_dist) {
+ closest_index = waypoints[i].index;
+ closest_waypoint = i;
+ closest_dist = abs(waypoints[i].index - index);
+ }
+ }
+ }
+
+ uint8_t search_backwards = closest_index > index;
+ anr_linked_list_node* iter = waypoints[closest_waypoint].node;
+ uint32_t count = closest_index;
+
+ while (iter)
+ {
+ if (count == index) return ((uint8_t*)iter)+offsetof(anr_linked_list_node, data);
+ iter = search_backwards ? iter->prev : iter->next;
+ search_backwards ? count-- : count++;
+ }
+ return 0;
+}
+
+anr_linked_list anr_linked_list_create(uint32_t data_size)
+{
+ return (anr_linked_list){ANR_DS_LINKEDLIST, 0, 0, 0, data_size, {0}};
+}
+
+int32_t anr_linked_list_add(void* ds, void* ptr)
+{
+ // We dont need to iterate here..
+ ANRDATA_ASSERT(ds);
+ ANRDATA_ASSERT(ptr);
+ anr_linked_list* list = ds;
+ anr_linked_list_node* iter = list->first;
+ do
+ {
+ if (iter == NULL || iter->next == NULL) {
+ anr_linked_list_node* node = malloc(sizeof(anr_linked_list_node) + list->data_size - sizeof(void*));
+ if (!node) return -1;
+ memcpy(((uint8_t*)node)+offsetof(anr_linked_list_node, data), ptr, list->data_size);
+ node->prev = iter;
+ node->next = NULL;
+ iter == NULL ? (list->first = node) : (iter->next = node);
+ list->last = node;
+ list->length++;
+ return list->length-1;
+ }
+
+ iter = iter->next;
+ } while (iter);
+
+ ANRDATA_ASSERT(0);
+ return -1;
+}
+
+anr_array anr_array_create(uint32_t data_size, uint32_t reserve_count)
+{
+ ANRDATA_ASSERT(data_size > 0);
+ ANRDATA_ASSERT(reserve_count > 0);
+
+ anr_array arr = (anr_array){ANR_DS_DYNAMIC_ARRAY, .data = 0, .data_size = data_size, .length = 0, .reserve_size = reserve_count, .reserved = 0};
+ arr.reserved = reserve_count;
+ arr.data = malloc(arr.reserved*data_size);
+ if (!arr.data) {
+ arr.reserve_size = 1;
+ arr.data = malloc(arr.reserved*data_size); // Try again with smallest possible size.
+ ANRDATA_ASSERT(arr.data);
+ }
+
+ return arr;
+}
+
+int32_t anr_array_add(void* ds, void* ptr)
+{
+ ANRDATA_ASSERT(ds);
+ ANRDATA_ASSERT(ptr);
+
+ anr_array* arr = (anr_array*)ds;
+
+ arr->length++;
+ if (arr->reserved < arr->length)
+ {
+ arr->reserved += arr->reserve_size;
+ void* b = realloc(arr->data, arr->reserved*arr->data_size);
+ if (b) arr->data = b;
+ else return -1;
+ }
+
+ memcpy(arr->data + ((arr->length-1) * arr->data_size), ptr, arr->data_size);
+
+ return arr->length-1;
+}
+
+void anr_array_free(void* ds)
+{
+ ANRDATA_ASSERT(ds);
+
+ anr_array* arr = (anr_array*)ds;
+ free(arr->data);
+}
+
+#ifdef ANR_DATA_DEBUG
+void anr_array_print(void* ds)
+{
+ ANRDATA_ASSERT(ds);
+
+ anr_array* arr = ds;
+ char* buffer = malloc(200);
+ snprintf(buffer, 200, "array %p has %d items, %d reserved\n", arr, arr->length, arr->reserved);
+ ANR_DS_ADD(&curr_print, buffer);
+ for (int i = 0; i < arr->length; i++)
+ {
+ char* buffer = malloc(200);
+ snprintf(buffer, 200, "#%d ", i);
+ char* data = anr_array_find_at(ds, i);
+ for (int x = 0; x < arr->data_size; x++) {
+ snprintf(buffer+strlen(buffer), 200, "%x", *(char*)(data + x));
+ }
+ snprintf(buffer+strlen(buffer), 200, "\n");
+ ANR_DS_ADD(&curr_print, buffer);
+ }
+ #ifdef ANR_DATA_DEBUG
+ anr__print_diff();
+ #else
+ ANR_DS_FREE(&curr_print);
+ curr_print = (anr_linked_list){ANR_DS_LINKEDLIST, 0, 0, 0};
+ #endif
+}
+#else
+void anr_array_print(void* ds)
+{
+ (void)ds;
+}
+#endif
+
+void* anr_array_find_at(void* ds, uint32_t index)
+{
+ ANRDATA_ASSERT(ds);
+ anr_array* arr = ds;
+ if(index >= arr->length) return 0;
+
+ return arr->data + (index * arr->data_size);
+}
+
+uint32_t anr_array_find_by(void* ds, char* ptr)
+{
+ ANRDATA_ASSERT(ds);
+ ANRDATA_ASSERT(ptr);
+ anr_array* arr = (anr_array*)ds;
+
+ for (int i = 0; i < arr->length; i++)
+ {
+ void* data = anr_array_find_at(ds, i);
+ if (memcmp(data, ptr, arr->data_size) == 0) {
+ return i;
+ }
+ }
+
+ return -1;
+}
+
+uint8_t anr_array_remove_at(void* ds, uint32_t index)
+{
+ ANRDATA_ASSERT(ds);
+ anr_array* arr = (anr_array*)ds;
+ if (index >= arr->length) return 0;
+ if (index < 0) return 0;
+ uint32_t mem_to_move = (arr->length - index - 1) * arr->data_size;
+ uint32_t mem_to_overwrite = index * arr->data_size;
+ uint32_t mem_to_copy = (index+1) * arr->data_size;
+ memmove(arr->data + mem_to_overwrite, arr->data + mem_to_copy, mem_to_move);
+ arr->length--;
+
+ if (arr->length < arr->reserved / 2) {
+ arr->reserved /= 2;
+ void* b = realloc(arr->data, arr->reserved*arr->data_size);
+ if (b) arr->data = b;
+ }
+ return 1;
+}
+
+uint8_t anr_array_remove_by(void* ds, void* ptr)
+{
+ ANRDATA_ASSERT(ds);
+ ANRDATA_ASSERT(ptr);
+
+ anr_array* arr = (anr_array*)ds;
+ uint32_t index = (ptr - arr->data) / arr->data_size;
+
+ if (index == arr->length-1) {
+ arr->length--;
+ return 1;
+ }
+
+ return anr_array_remove_at(ds, index);
+}
+
+uint8_t anr_array_insert(void* ds, uint32_t index, void* ptr)
+{
+ ANRDATA_ASSERT(ds);
+ ANRDATA_ASSERT(ptr);
+ anr_array* arr = (anr_array*)ds;
+ if (index > arr->length) return 0;
+ if (index < 0) return 0;
+
+ if (arr->length >= arr->reserved)
+ {
+ arr->reserved += arr->reserve_size;
+ void* b = realloc(arr->data, arr->reserved*arr->data_size);
+ if (b) arr->data = b;
+ else return 0;
+ }
+
+ if (index == arr->length) return anr_array_add(ds, ptr);
+
+ uint32_t mem_to_move = (arr->length - index) * arr->data_size;
+ uint32_t mem_to_overwrite = (index+1) * arr->data_size;
+ uint32_t mem_to_copy = (index) * arr->data_size;
+ memmove(arr->data + mem_to_overwrite, arr->data + mem_to_copy, mem_to_move);
+ memcpy(arr->data + index*arr->data_size, ptr, arr->data_size);
+ arr->length++;
+ return 1;
+}
+
+uint32_t anr_array_length(void* ds)
+{
+ ANRDATA_ASSERT(ds);
+ anr_array* arr = (anr_array*)ds;
+ return arr->length;
+}
+
+anr_iter anr_array_iter_start(void* ds)
+{
+ ANRDATA_ASSERT(ds);
+ anr_iter iter;
+ iter.index = -1;
+ iter.data = NULL;
+ return iter;
+}
+
+uint8_t anr_array_iter_next(void* ds, anr_iter* iter)
+{
+ ANRDATA_ASSERT(ds);
+ iter->index++;
+ iter->data = anr_array_find_at(ds, iter->index);
+ return iter->data != NULL;
+}
+
+anr_hashmap anr_hashmap_create(uint32_t data_size, uint32_t bucket_size)
+{
+ ANRDATA_ASSERT(data_size > 0);
+ ANRDATA_ASSERT(bucket_size > 0);
+ anr_hashmap hashmap = (anr_hashmap){.ds_type = ANR_DS_HASHMAP, .bucket_size = bucket_size, .data_size = data_size};
+ hashmap.buckets = anr_array_create(sizeof(anr_hashmap_bucket), 1);
+ hashmap.last_emptied = -1;
+ hashmap.next_empty = -1;
+ return hashmap;
+}
+
+int32_t anr_hashmap_add(void* ds, void* ptr)
+{
+ ANRDATA_ASSERT(ds);
+ ANRDATA_ASSERT(ptr);
+ anr_hashmap* hashmap = (anr_hashmap*)ds;
+ uint32_t item_size = hashmap->data_size + 1;
+
+ if (hashmap->last_emptied != -1) {
+ int32_t index = hashmap->last_emptied;
+ anr_hashmap_insert(ds, index, ptr);
+ return index;
+ }
+ if (hashmap->next_empty != -1) {
+ int32_t index = hashmap->next_empty;
+ anr_hashmap_insert(ds, index, ptr);
+ return index;
+ }
+
+ uint32_t highest_bucket_start = 0;
+ ANR_ITERATE(iter, &hashmap->buckets)
+ {
+ anr_hashmap_bucket* bb = (anr_hashmap_bucket*)iter.data;
+ if (bb->bucket_start > highest_bucket_start) highest_bucket_start = bb->bucket_start;
+ for (int i = 0; i < hashmap->bucket_size; i++)
+ {
+ char* data = bb->data + (i * item_size);
+ if (data[0] == 1) continue;
+ memcpy(data+1, ptr, hashmap->data_size);
+ data[0] = 1;
+ hashmap->length++;
+ bb->length++;
+
+ // Check if next slot is empty.
+ int32_t next_index = i+1;
+ if (next_index < hashmap->bucket_size) {
+ char* data = bb->data + (next_index * item_size);
+ if (data[0] == 0) hashmap->next_empty = next_index;
+ }
+
+ return bb->bucket_start + i;
+ }
+ }
+
+ // All buckets are full, create new one.
+ anr_hashmap_bucket new_bucket;
+ new_bucket.bucket_start = highest_bucket_start;
+ new_bucket.length = 0;
+ uint32_t alloc_size = (hashmap->bucket_size * hashmap->data_size) + hashmap->bucket_size;
+ new_bucket.data = malloc(alloc_size);
+ if (!new_bucket.data) return -1;
+ memset(new_bucket.data, 0, alloc_size);
+ uint32_t bucket_index = anr_array_add(&hashmap->buckets, &new_bucket);
+ if (bucket_index == -1) return -1;
+ anr_hashmap_bucket* bucket = anr_array_find_at(&hashmap->buckets, bucket_index);
+ hashmap->next_empty = new_bucket.bucket_start+1; // Bucket was just created so were sure its empty.
+ hashmap->length++;
+ char* data = bucket->data + (0 * item_size);
+ memcpy(data+1, ptr, hashmap->data_size);
+ data[0] = 1;
+ return new_bucket.bucket_start;
+}
+
+void anr_hashmap_free(void* ds)
+{
+ ANRDATA_ASSERT(ds);
+ anr_hashmap* hashmap = (anr_hashmap*)ds;
+ ANR_ITERATE(iter, &hashmap->buckets)
+ {
+ anr_hashmap_bucket* bb = (anr_hashmap_bucket*)iter.data;
+ free(bb->data);
+ }
+ ANR_DS_FREE(&hashmap->buckets);
+}
+
+void anr_hashmap_print(void* ds)
+{
+ ANRDATA_ASSERT(ds);
+ /*
+ anr_hashmap* hashmap = (anr_hashmap*)ds;
+ ANR_ITERATE(iter, &hashmap->buckets)
+ {
+ anr_hashmap_bucket* bb = (anr_hashmap_bucket*)iter.data;
+ free(bb->data);
+ }
+ ANR_DS_FREE(&hashmap->buckets);
+ */
+}
+
+void* anr_hashmap_find_at(void* ds, uint32_t index)
+{
+ ANRDATA_ASSERT(ds);
+
+ anr_hashmap* hashmap = (anr_hashmap*)ds;
+
+ int bucket_start = (index / hashmap->bucket_size) * hashmap->bucket_size;
+ int inner_index = index % hashmap->bucket_size;
+ uint32_t item_size = hashmap->data_size + 1;
+
+ ANR_ITERATE(iter, &hashmap->buckets)
+ {
+ anr_hashmap_bucket* bb = (anr_hashmap_bucket*)iter.data;
+ if (bb->bucket_start == bucket_start) {
+ char* data = bb->data + (inner_index * item_size);
+ if (data[0] == 1) return data+1;
+
+ }
+ }
+ return 0;
+}
+
+uint32_t anr_hashmap_find_by(void* ds, char* ptr)
+{
+ ANRDATA_ASSERT(ds);
+ if (ptr == NULL) return -1;
+ anr_hashmap* hashmap = (anr_hashmap*)ds;
+ uint32_t item_size = hashmap->data_size + 1;
+
+ ANR_ITERATE(iter, &hashmap->buckets)
+ {
+ anr_hashmap_bucket* bb = (anr_hashmap_bucket*)iter.data;
+ for (int i = 0; i < hashmap->bucket_size; i++)
+ {
+ char* data = bb->data + (i * item_size);
+ if (data[0] == 1) {
+ if (memcmp(data+1, ptr, hashmap->data_size) == 0) return bb->bucket_start + i;
+ }
+ }
+ }
+
+ return -1;
+}
+
+uint8_t anr_hashmap_remove_at(void* ds, uint32_t index)
+{
+ ANRDATA_ASSERT(ds);
+ anr_hashmap* hashmap = (anr_hashmap*)ds;
+
+ int bucket_start = (index / hashmap->bucket_size) * hashmap->bucket_size;
+ int inner_index = index % hashmap->bucket_size;
+
+ ANR_ITERATE(iter, &hashmap->buckets)
+ {
+ anr_hashmap_bucket* bb = (anr_hashmap_bucket*)iter.data;
+ if (bb->bucket_start == bucket_start) {
+ uint32_t item_size = hashmap->data_size + 1;
+ char* data = bb->data + (inner_index * item_size);
+ if (data[0] == 1) {
+ data[0] = 0;
+ hashmap->length--;
+ bb->length--;
+ hashmap->last_emptied = index;
+
+ if (bb->length == 0) {
+ ANR_DS_REMOVE_AT(&hashmap->buckets, iter.index);
+ }
+ return 1;
+ }
+ }
+ }
+ return 0;
+}
+
+uint8_t anr_hashmap_remove_by(void* ds, void* ptr)
+{
+ ANRDATA_ASSERT(ds);
+ if (!ptr) return 0;
+ anr_hashmap* hashmap = (anr_hashmap*)ds;
+ uint32_t item_size = hashmap->data_size + 1;
+
+ ANR_ITERATE(iter, &hashmap->buckets)
+ {
+ anr_hashmap_bucket* bb = (anr_hashmap_bucket*)iter.data;
+ void* bucket_start = bb->data;
+ void* bucket_end = bb->data + (hashmap->bucket_size*item_size);
+
+ if (ptr >= bucket_start && ptr <= bucket_end)
+ {
+ return anr_hashmap_remove_at(ds, bb->bucket_start + ((ptr - bucket_start) / item_size));
+ }
+ }
+
+ return 0;
+}
+
+uint8_t anr_hashmap_insert(void* ds, uint32_t index, void* ptr)
+{
+ ANRDATA_ASSERT(ds);
+ ANRDATA_ASSERT(ptr);
+ anr_hashmap* hashmap = (anr_hashmap*)ds;
+
+ int bucket_start = (index / hashmap->bucket_size) * hashmap->bucket_size;
+ int inner_index = index % hashmap->bucket_size;
+
+ if (hashmap->last_emptied == index) {
+ hashmap->last_emptied = -1;
+ }
+ if (hashmap->next_empty == index) {
+ hashmap->next_empty = -1;
+ }
+
+ anr_hashmap_bucket* bucket = NULL;
+ ANR_ITERATE(iter, &hashmap->buckets)
+ {
+ anr_hashmap_bucket* bb = (anr_hashmap_bucket*)iter.data;
+ if (bb->bucket_start == bucket_start) {
+ bucket = bb;
+ break;
+ }
+ }
+
+ if (!bucket) {
+ // Bucket does not exist yet. create one.
+ anr_hashmap_bucket new_bucket;
+ new_bucket.bucket_start = bucket_start;
+ new_bucket.length = 0;
+ uint32_t alloc_size = (hashmap->bucket_size * hashmap->data_size) + hashmap->bucket_size;
+ new_bucket.data = malloc(alloc_size);
+ if (!new_bucket.data) return 0;
+ memset(new_bucket.data, 0, alloc_size);
+ int32_t bucket_index = anr_array_add(&hashmap->buckets, &new_bucket);
+ if (bucket_index == -1) return 0;
+ bucket = anr_array_find_at(&hashmap->buckets, bucket_index);
+ }
+
+ uint32_t item_size = hashmap->data_size + 1;
+ hashmap->length++;
+ bucket->length++;
+ char* data = bucket->data + (inner_index * item_size);
+ data[0] = 1;
+ memcpy(data+1, ptr, hashmap->data_size);
+ return 1;
+}
+
+uint32_t anr_hashmap_length(void* ds)
+{
+ ANRDATA_ASSERT(ds);
+ anr_hashmap* hashmap = (anr_hashmap*)ds;
+ return hashmap->length;
+}
+
+anr_iter anr_hashmap_iter_start(void* ds)
+{
+ ANRDATA_ASSERT(ds);
+ anr_iter iter;
+ iter.data = NULL;
+ iter.index = -1;
+ return iter;
+}
+
+uint8_t anr_hashmap_iter_next(void* ds, anr_iter* iter)
+{
+ ANRDATA_ASSERT(ds);
+ ANRDATA_ASSERT(iter);
+ anr_hashmap* hashmap = (anr_hashmap*)ds;
+ uint32_t item_size = hashmap->data_size + 1;
+
+ ANR_ITERATE(iter2, &hashmap->buckets)
+ {
+ anr_hashmap_bucket* bb = (anr_hashmap_bucket*)iter2.data;
+ for (int i = 0; i < hashmap->bucket_size; i++)
+ {
+ int32_t abs_index = bb->bucket_start + i;
+ char* data = bb->data + (i * item_size);
+ if (data[0] == 0) continue;
+ if (abs_index <= iter->index) continue;
+
+ iter->index = i;
+ iter->data = data+1;
+ return 1;
+ }
+ }
+ return 0;
+}
+
+#endif // ANR_DATA_IMPLEMENTATION
+
+/*
+------------------------------------------------------------------------------
+This software is available under 2 licenses -- choose whichever you prefer.
+------------------------------------------------------------------------------
+ALTERNATIVE A - MIT License
+Copyright (c) 2024 Aldrik Ramaekers
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
+of the Software, and to permit persons to whom the Software is furnished to do
+so, subject to the following conditions:
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+------------------------------------------------------------------------------
+ALTERNATIVE B - Public Domain (www.unlicense.org)
+This is free and unencumbered software released into the public domain.
+Anyone is free to copy, modify, publish, use, compile, sell, or distribute this
+software, either in source code form or as a compiled binary, for any purpose,
+commercial or non-commercial, and by any means.
+In jurisdictions that recognize copyright laws, the author or authors of this
+software dedicate any and all copyright interest in the software to the public
+domain. We make this dedication for the benefit of the public at large and to
+the detriment of our heirs and successors. We intend this dedication to be an
+overt act of relinquishment in perpetuity of all present and future rights to
+this software under copyright law.
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+------------------------------------------------------------------------------
+*/ \ No newline at end of file
diff --git a/libs/anr/anr_pdf.h b/libs/anr/anr_pdf.h
new file mode 100644
index 0000000..4758c1b
--- /dev/null
+++ b/libs/anr/anr_pdf.h
@@ -0,0 +1,1527 @@
+/*
+anr_pdf.h - v0.1 - public domain pdf writer
+
+This is a single-header-file library for writing pdf files.
+
+Do this:
+ #ifdef ANR_PDF_IMPLEMENTATION
+before you include this file in *one* C file to create the implementation.
+
+QUICK NOTES:
+ Primarily of interest to developers making word processors.
+ This libray does not do any layout calculations / text wrapping for you.
+
+LICENSE
+ See end of file for license information.
+
+*/
+#ifndef INCLUDE_ANR_PDF_H
+#define INCLUDE_ANR_PDF_H
+
+// DOCUMENTATION
+// This library follows the pdf 1.7 ISO 32000-1 standard
+// https://opensource.adobe.com/dc-acrobat-sdk-docs/pdfstandards/PDF32000_2008.pdf
+//
+// Coordinates & size are denoted in user space units. (inch / 72).
+// When positioning objects, xy (0, 0) is on the bottomleft of the page.
+//
+// Dates follow ASN.1 format. see chapter 7.9.4. (YYYYMMDDHHmmSSOHH'mm)
+//
+// ASCII text only.
+//
+// IMPLEMENTED
+// Text (fonts/sizes/colors/spacing/rotation)
+// Primitives (lines/polygons/cubic beziers/rectangles)
+// Annotations (text/link/markup) + annotation threads
+// Page & Document labeling
+// Encoding (ASCIIHex)
+// Images (rgb)
+// TTF embedding
+// Bookmarks
+//
+// UNIMPLEMENTED
+// Password encryption (See chapter 7.6.1)
+// Links
+
+#include <inttypes.h>
+
+#ifndef ANRPDF_ASSERT
+#include <assert.h>
+#define ANRPDF_ASSERT(x) assert(x)
+#endif
+
+#ifndef ANR_PDF_BUFFER_RESERVE
+#define ANR_PDF_BUFFER_RESERVE 1000000
+#endif
+
+#ifndef ANR_PDF_MAX_PAGES
+#define ANR_PDF_MAX_PAGES 2000
+#endif
+
+
+#ifndef ANR_PDF_MAX_CUSTOM_FONTS
+#define ANR_PDF_MAX_CUSTOM_FONTS 50
+#endif
+
+
+#ifndef ANR_PDF_MAX_BOOKMARKS
+#define ANR_PDF_MAX_BOOKMARKS 2000
+#endif
+
+#ifndef ANR_PDF_MAX_OBJECTS_PER_PAGE
+#define ANR_PDF_MAX_OBJECTS_PER_PAGE 10000
+#endif
+
+#ifndef ANR_PDF_MAX_ANNOTATIONS_PER_PAGE
+#define ANR_PDF_MAX_ANNOTATIONS_PER_PAGE 200
+#endif
+
+
+#ifndef ANRPDFDEF
+#ifdef ANR_PDF_STATIC
+#define ANRPDFDEF static
+#else
+#define ANRPDFDEF extern
+#endif
+#endif
+
+#define ANR_PDF_PLACEHOLDER_REF "00000000"
+
+typedef uint64_t anr_pdf_id;
+
+typedef struct
+{
+ float x,y;
+} anr_pdf_vecf;
+
+typedef struct
+{
+ float x,y,w,h;
+} anr_pdf_recf;
+
+#define ANR_PDF_REC(__x,__y,__w,__h) (anr_pdf_recf){.x = __x, .y = __y,.w = __w, .h = __h}
+
+typedef struct
+{
+ anr_pdf_id id;
+ uint64_t offset_in_body;
+} anr_pdf_ref;
+
+
+typedef struct
+{
+ float r,g,b; // colors between 0.0 and 1.0
+} anr_pdf_color;
+
+#define ANR_PDF_RGB(_r,_g,_b) (anr_pdf_color){_r, _g, _b}
+
+// Convert inches to user space units.
+#define ANR_INCH_TO_USU(_inches) _inches*72
+
+typedef enum {
+ ANR_PDF_PAGE_SIZE_LETTER,
+ ANR_PDF_PAGE_SIZE_A0,
+ ANR_PDF_PAGE_SIZE_A1,
+ ANR_PDF_PAGE_SIZE_A2,
+ ANR_PDF_PAGE_SIZE_A3,
+ ANR_PDF_PAGE_SIZE_A4,
+ ANR_PDF_PAGE_SIZE_A5,
+ ANR_PDF_PAGE_SIZE_A6,
+
+ ANR_PDF_PAGE_COUNT,
+} anr_pdf_page_size;
+
+typedef struct
+{
+ anr_pdf_ref ref;
+ anr_pdf_recf rec;
+} anr_pdf_obj;
+
+typedef struct
+{
+ anr_pdf_ref ref;
+ anr_pdf_page_size size;
+ uint64_t parentoffset; // offset to parent reference.
+ uint64_t annotoffset; // offset to annot array reference.
+} anr_pdf_page;
+
+typedef struct
+{
+ anr_pdf_ref ref;
+ char id[7]; // ImXXXX
+ uint32_t width;
+ uint32_t height;
+} anr_pdf_img;
+
+typedef enum
+{
+ ANR_PDF_ANNOTATION_TEXT,
+ ANR_PDF_ANNOTATION_LINK,
+} anr_pdf_annot_type;
+
+typedef struct
+{
+ anr_pdf_ref ref;
+ anr_pdf_page parent;
+ anr_pdf_annot_type type;
+} anr_pdf_annot;
+
+typedef struct
+{
+ uint64_t parent_index; // if no parent = -1
+ uint32_t children_count;
+ uint64_t index;
+ const char* text; // needs to be valid untill end of document.
+ anr_pdf_obj item_on_page;
+ anr_pdf_page page;
+ uint64_t prev_index; // prev item on same level. first item = -1
+ uint64_t next_index; // next item on same level. last item = -1
+ uint64_t first_child_index; // if no children = -1
+ uint64_t last_child_index; // if no children = -1
+ uint32_t depth;
+} anr_pdf_bookmark;
+
+typedef enum
+{
+ ANR_PDF_ALIGN_LEFT,
+ ANR_PDF_ALIGN_CENTER,
+ ANR_PDF_ALIGN_RIGHT,
+} anr_pdf_align;
+
+// Size = inches * 72
+anr_pdf_vecf __anr_pdf_page_sizes[ANR_PDF_PAGE_COUNT] =
+{
+ {.x = ANR_INCH_TO_USU(08.5), .y = ANR_INCH_TO_USU(11.0)}, // Letter
+ {.x = ANR_INCH_TO_USU(33.1), .y = ANR_INCH_TO_USU(46.8)}, // A0
+ {.x = ANR_INCH_TO_USU(23.4), .y = ANR_INCH_TO_USU(33.1)}, // A1
+ {.x = ANR_INCH_TO_USU(16.5), .y = ANR_INCH_TO_USU(23.4)}, // A2
+
+ {.x = ANR_INCH_TO_USU(11.7), .y = ANR_INCH_TO_USU(16.5)}, // A3
+ {.x = ANR_INCH_TO_USU(8.3), .y = ANR_INCH_TO_USU(11.7)}, // A4
+ {.x = ANR_INCH_TO_USU(5.8), .y = ANR_INCH_TO_USU(8.3)}, // A5
+ {.x = ANR_INCH_TO_USU(4.1), .y = ANR_INCH_TO_USU(5.8)}, // A6
+};
+
+typedef enum
+{
+ ANR_PDF_TEXT_RENDERING_FILL = 0,
+ ANR_PDF_TEXT_RENDERING_STROKE = 1,
+ ANR_PDF_TEXT_RENDERING_STROKETHENFILL = 2,
+} anr_pdf_text_rendering_mode;
+
+// See Table 105, 74.
+// Parameters for text state and color.
+typedef struct
+{
+ float char_space; // default 0
+ float word_space; // default 0
+ float horizontal_scale; // default 100
+ float leading; // default 0
+ uint16_t font_size; // default to 12
+ anr_pdf_ref font; // default to document font
+ anr_pdf_text_rendering_mode render_mode; // default 0 (see table 106)
+ float rise; // default 0, can be negative
+ anr_pdf_color color; // default black
+ float angle; // default 0
+} anr_pdf_txt_conf;
+
+typedef enum
+{
+ ANR_PDF_LINECAP_BUTT = 0,
+ ANR_PDF_LINECAP_ROUNDED = 1,
+ ANR_PDF_LINECAP_SQUARE = 2,
+} anr_pdf_linecap_style;
+
+typedef enum
+{
+ ANR_PDF_LINEJOIN_MITER = 0,
+ ANR_PDF_LINEJOIN_ROUND = 1,
+ ANR_PDF_LINEJOIN_BEVEL = 2,
+} anr_pdf_linejoin_style;
+
+typedef enum
+{
+ ANR_PDF_ANNOTATION_MARKUP_HIGHLIGHT,
+ ANR_PDF_ANNOTATION_MARKUP_UNDERLINE,
+ ANR_PDF_ANNOTATION_MARKUP_SQUIGGLY,
+ ANR_PDF_ANNOTATION_MARKUP_STRIKEOUT,
+} anr_pdf_annotation_markup_type;
+
+// See Table 52
+// Parameters for all graphics.
+typedef struct
+{
+ anr_pdf_linecap_style line_cap; // default 0
+ int line_width; // default 0 = smallest possible line depending on device.
+ anr_pdf_linejoin_style line_join; // default 0
+ float miter_limit; // default 10, only applicable when line_join = ANR_PDF_LINEJOIN_MITER, must be > 0
+ int dash_pattern[2]; // default = empty = solid line
+ anr_pdf_color color; // default black
+ // @Unimplemented: automatic stroke adjustment, op SA, see table 58
+ char fill;
+} anr_pdf_gfx_conf;
+
+// Parameters for annotations. all optional.
+typedef struct
+{
+ char* posted_by; // default NULL
+ char* post_date; // default NULL
+ anr_pdf_color color; // default yellow
+ anr_pdf_annot parent; // default none
+} anr_pdf_annot_cnf;
+
+#define ANR_PDF_TXT_CONF_DEFAULT anr_pdf_txt_conf_default()
+#define ANR_PDF_GFX_CONF_DEFAULT anr_pdf_gfx_conf_conf_default()
+#define ANR_PDF_ANNOT_CONF_DEFAULT anr_pdf_annot_conf_default()
+
+typedef enum
+{
+ ANR_PDF_STREAM_ENCODE_NONE,
+ ANR_PDF_STREAM_ENCODE_ASCIIHEX,
+ // @Unimplemented: Base85 encoding
+} anr_pdf_stream_encoding;
+
+typedef struct
+{
+ // Main data buffer
+ char* body_buffer;
+ uint64_t body_write_cursor;
+ uint32_t buf_size;
+ uint64_t next_obj_id;
+
+ // Stream encoding state
+ anr_pdf_stream_encoding stream_encoding;
+ char writing_to_stream;
+
+ // Xref data
+ struct {
+ char* buffer;
+ uint64_t write_cursor;
+ uint32_t buf_size;
+ } xref;
+
+ // Current page data
+ struct {
+ char is_written;
+ anr_pdf_page_size size;
+ anr_pdf_ref objects[ANR_PDF_MAX_OBJECTS_PER_PAGE];
+ uint64_t objects_count;
+ anr_pdf_img images[ANR_PDF_MAX_OBJECTS_PER_PAGE];
+ uint32_t images_count;
+ } page;
+
+ // list of pages
+ anr_pdf_page pages[ANR_PDF_MAX_PAGES];
+ uint64_t page_count;
+
+ anr_pdf_annot all_annotations[ANR_PDF_MAX_ANNOTATIONS_PER_PAGE*ANR_PDF_MAX_PAGES];
+ uint64_t all_annotations_count;
+
+ // Standard objects
+ anr_pdf_ref pagetree_ref;
+ anr_pdf_ref catalog_ref;
+ anr_pdf_ref doc_info_dic_ref; // Can be empty
+
+ // Bookmark list
+ anr_pdf_bookmark bookmarks[ANR_PDF_MAX_BOOKMARKS];
+ uint64_t bookmark_count;
+
+ // Fonts
+ anr_pdf_ref default_font_ref;
+ anr_pdf_ref default_font_italic_ref;
+ anr_pdf_ref default_font_bold_ref;
+ anr_pdf_ref default_font_italic_bold_ref;
+ anr_pdf_ref custom_fonts[ANR_PDF_MAX_CUSTOM_FONTS];
+ uint32_t custom_fonts_count;
+} anr_pdf;
+
+
+// === DOCUMENT OPERATIONS ===
+ANRPDFDEF anr_pdf* anr_pdf_document_begin();
+ANRPDFDEF void anr_pdf_document_end(anr_pdf* pdf);
+ANRPDFDEF void anr_pdf_document_free(anr_pdf* pdf);
+ANRPDFDEF void anr_pdf_write_to_file(anr_pdf* pdf, const char* path);
+// item_on_page optional, parent optional.
+ANRPDFDEF anr_pdf_bookmark anr_pdf_document_add_bookmark(anr_pdf* pdf, anr_pdf_page page, anr_pdf_obj* item_on_page,
+ anr_pdf_bookmark* parent, const char* text);
+// Add document information to the pdf-> See chapter 14.3.3
+// Dates follow ASN.1 format. see chapter 7.9.4. (YYYYMMDDHHmmSSOHH'mm) @Unimplemented: create helper function for this
+ANRPDFDEF void anr_pdf_document_add_information_dictionary(anr_pdf* pdf, char* title,
+ char* author, char* subject, char* keywords, char* creator,
+ char* producer, char* creation_date, char* mod_date);
+
+// === PAGE OPERATIONS ===
+ANRPDFDEF void anr_pdf_page_begin(anr_pdf* pdf, anr_pdf_page_size size);
+ANRPDFDEF anr_pdf_page anr_pdf_page_end(anr_pdf* pdf);
+ANRPDFDEF anr_pdf_vecf anr_pdf_page_get_size(anr_pdf_page_size size); // Returns the size of the page in user space units. (inches * 72)
+
+// === ANNOTATION OPERATIONS ===
+ANRPDFDEF anr_pdf_annot anr_pdf_add_annotation_markup(anr_pdf* pdf, anr_pdf_page page, anr_pdf_obj obj, char* text, anr_pdf_annotation_markup_type type, anr_pdf_annot_cnf data);
+ANRPDFDEF anr_pdf_annot anr_pdf_add_annotation_text(anr_pdf* pdf, anr_pdf_page page, anr_pdf_obj obj, char* text, anr_pdf_annot_cnf data);
+ANRPDFDEF anr_pdf_annot anr_pdf_add_annotation_link(anr_pdf* pdf, anr_pdf_page src_page, anr_pdf_obj src_obj, anr_pdf_page dest_page, anr_pdf_obj* dest_obj, anr_pdf_annot_cnf data);
+
+// === OBJECT OPERATIONS (pdf native) ===
+ANRPDFDEF anr_pdf_obj anr_pdf_add_text(anr_pdf* pdf, const char* text, float x, float y, anr_pdf_txt_conf info);
+ANRPDFDEF anr_pdf_obj anr_pdf_add_line(anr_pdf* pdf, anr_pdf_vecf p1, anr_pdf_vecf p2, anr_pdf_gfx_conf gfx);
+ANRPDFDEF anr_pdf_obj anr_pdf_add_polygon(anr_pdf* pdf, anr_pdf_vecf* data, uint32_t data_length, anr_pdf_gfx_conf gfx);
+ANRPDFDEF anr_pdf_obj anr_pdf_add_cubic_bezier(anr_pdf* pdf, anr_pdf_vecf* data, uint32_t data_length, anr_pdf_gfx_conf gfx);
+ANRPDFDEF anr_pdf_obj anr_pdf_add_image(anr_pdf* pdf, anr_pdf_img img, float x, float y, float w, float h);
+
+// === OBJECT OPERATIONS (wrappers) ===
+ANRPDFDEF anr_pdf_obj anr_pdf_add_page_label(anr_pdf* pdf, const char* text, anr_pdf_align align);
+ANRPDFDEF anr_pdf_obj anr_pdf_add_table(anr_pdf* pdf, float* rows, uint32_t row_count, float* cols, uint32_t col_count, anr_pdf_color color);
+ANRPDFDEF anr_pdf_obj anr_pdf_add_rectangle(anr_pdf* pdf, anr_pdf_vecf tl, anr_pdf_vecf br, char fill, anr_pdf_color color);
+
+// === FILE EMBEDDING ===
+ // Image data is assumed to be in rgb color space. 3 bytes per pixel.
+ANRPDFDEF anr_pdf_img anr_pdf_embed_image(anr_pdf* pdf, unsigned char* data, uint32_t length, uint32_t width, uint32_t height, uint8_t bits_per_sample);
+ANRPDFDEF anr_pdf_ref anr_pdf_embed_ttf(anr_pdf* pdf, unsigned char* data, uint32_t length);
+
+// === DEFAULT CONFIGS ===
+ANRPDFDEF anr_pdf_txt_conf anr_pdf_txt_conf_default();
+ANRPDFDEF anr_pdf_gfx_conf anr_pdf_gfx_conf_conf_default();
+ANRPDFDEF anr_pdf_annot_cnf anr_pdf_annot_conf_default();
+
+//// end header file /////////////////////////////////////////////////////
+#endif // End of INCLUDE_ANR_PDF_H
+
+#ifdef ANR_PDF_IMPLEMENTATION
+
+static FILE* anr__pdf_fopen(const char* filename, const char* mode)
+{
+ FILE* f;
+ f = fopen(filename, mode);
+ return f;
+}
+
+static void anr__pdf_fclose(FILE* file)
+{
+ fflush(file);
+ fclose(file);
+}
+
+static anr_pdf_obj anr__pdf_emptyobj()
+{
+ return (anr_pdf_obj){0};
+}
+
+static anr_pdf_ref anr__pdf_emptyref()
+{
+ return (anr_pdf_ref){0};
+}
+
+static char anr__pdf_ref_valid(anr_pdf_ref ref)
+{
+ return ref.id > 0;
+}
+
+static char* anr__pdf_encode_asciihex(const char* src, char* dest, uint64_t src_size, uint64_t dest_size)
+{
+ for (uint64_t i = 0; i < src_size; i++) {
+ dest[i*2] = "0123456789ABCDEF"[src[i] >> 4];
+ dest[i*2+1] = "0123456789ABCDEF"[src[i] & 0x0F];
+ }
+ return dest;
+}
+
+static uint64_t anr__pdf_append_bytes(anr_pdf* pdf, const char* bytes, uint64_t size)
+{
+ char* encoded_data = malloc(size*2 + 1); // asciihex uses at most size*2
+ char* ptr = (char*)encoded_data;
+
+ // Encode data
+ if (pdf->writing_to_stream) {
+ switch(pdf->stream_encoding) {
+ case ANR_PDF_STREAM_ENCODE_NONE: ptr = (char*)bytes; break;
+ case ANR_PDF_STREAM_ENCODE_ASCIIHEX:
+ ptr = anr__pdf_encode_asciihex(bytes, ptr, size, sizeof(encoded_data));
+ size = size*2;
+ break;
+ }
+ }
+ else {
+ ptr = (char*)bytes;
+ }
+
+ // check buffer bounds
+ while (pdf->body_write_cursor + size >= pdf->buf_size)
+ {
+ pdf->buf_size += ANR_PDF_BUFFER_RESERVE;
+ pdf->body_buffer = realloc(pdf->body_buffer, pdf->buf_size);
+ }
+
+ memcpy(pdf->body_buffer + pdf->body_write_cursor, ptr, size);
+ uint64_t result = pdf->body_write_cursor;
+ pdf->body_write_cursor += size;
+ free(encoded_data);
+ return result;
+}
+
+static uint64_t anr__pdf_append_str(anr_pdf* pdf, const char* bytes)
+{
+ uint64_t length = strlen(bytes);
+ return anr__pdf_append_bytes(pdf, bytes, length);
+}
+
+static uint64_t anr__pdf_append_str_idref(anr_pdf* pdf, const char* bytes, anr_pdf_ref ref)
+{
+ char formatted_str[300];
+ sprintf(formatted_str, bytes, ref.id);
+
+ uint64_t length = strlen(formatted_str);
+ uint64_t result = anr__pdf_append_bytes(pdf, formatted_str, length);
+ return result;
+}
+
+static uint64_t anr__pdf_append_printf(anr_pdf* pdf, const char *fmt, ...)
+{
+ va_list ap;
+ va_start(ap, fmt);
+
+ char formatted_str[300];
+ vsnprintf(formatted_str, 300, fmt, ap);
+
+ uint64_t length = strlen(formatted_str);
+ uint64_t result = anr__pdf_append_bytes(pdf, formatted_str, length);
+
+ va_end(ap);
+ return result;
+}
+
+static anr_pdf_id anr__peak_next_id(anr_pdf* pdf)
+{
+ return pdf->next_obj_id;
+}
+
+static anr_pdf_ref anr__pdf_begin_obj(anr_pdf* pdf)
+{
+ #define XREF_ENTRY_SIZE 20
+ anr_pdf_id id = pdf->next_obj_id++;
+ char xref_entry[XREF_ENTRY_SIZE];
+ memcpy(xref_entry, "0000000000 00000 n \n", XREF_ENTRY_SIZE);
+
+ char offset_str[11];
+ sprintf(offset_str, "%" PRId64 , pdf->body_write_cursor);
+ memcpy(xref_entry + 10 - strlen(offset_str), offset_str, strlen(offset_str));
+
+ // check buffer bounds
+ while (pdf->xref.write_cursor + XREF_ENTRY_SIZE >= pdf->xref.buf_size)
+ {
+ pdf->xref.buf_size += ANR_PDF_BUFFER_RESERVE;
+ pdf->xref.buffer = realloc(pdf->xref.buffer, pdf->xref.buf_size);
+ }
+
+ memcpy(pdf->xref.buffer + pdf->xref.write_cursor, xref_entry, XREF_ENTRY_SIZE);
+ pdf->xref.write_cursor += XREF_ENTRY_SIZE;
+
+ char newobj_entry[30];
+ sprintf(newobj_entry, "\n%" PRId64 " 0 obj", id);
+ anr__pdf_append_str(pdf, newobj_entry);
+
+ return (anr_pdf_ref){.id = id, .offset_in_body = pdf->body_write_cursor};
+}
+
+static uint64_t anr__pdf_end_content_obj(anr_pdf* pdf, uint64_t write_start)
+{
+ pdf->writing_to_stream = 0;
+
+ // Some encodings have EOD sign
+ switch(pdf->stream_encoding)
+ {
+ case ANR_PDF_STREAM_ENCODE_NONE: break;
+ case ANR_PDF_STREAM_ENCODE_ASCIIHEX: anr__pdf_append_str(pdf, ">"); break;
+ }
+
+ uint64_t write_end = anr__pdf_append_str(pdf, "\nendstream");
+ anr__pdf_append_str(pdf, "\nendobj");
+
+ uint64_t stream_length = write_end - write_start;
+
+ // Object containing stream length.
+ anr__pdf_begin_obj(pdf);
+ anr__pdf_append_printf(pdf, "\n%d", stream_length);
+ anr__pdf_append_str(pdf, "\nendobj");
+ return write_end;
+}
+
+static anr_pdf_obj anr__pdf_begin_content_obj(anr_pdf* pdf, anr_pdf_recf rec)
+{
+ ANRPDF_ASSERT(!pdf->page.is_written);
+ ANRPDF_ASSERT(pdf->page.objects_count < ANR_PDF_MAX_OBJECTS_PER_PAGE);
+ anr_pdf_ref ref = anr__pdf_begin_obj(pdf);
+ anr_pdf_id streamlen_id = anr__peak_next_id(pdf); // next object is stream length
+ anr__pdf_append_str_idref(pdf, "\n<< /Length %d 0 R", (anr_pdf_ref){.id=streamlen_id});
+ switch(pdf->stream_encoding)
+ {
+ case ANR_PDF_STREAM_ENCODE_NONE: break;
+ case ANR_PDF_STREAM_ENCODE_ASCIIHEX: anr__pdf_append_str(pdf, "\n/Filter /ASCIIHexDecode"); break;
+ }
+
+ anr__pdf_append_str(pdf, ">>\nstream\n");
+ pdf->writing_to_stream = 1;
+ anr_pdf_obj objref = {.ref = ref, .rec = rec};
+ pdf->page.objects[pdf->page.objects_count++] = ref;
+ return objref;
+}
+
+static void anr__append_xref_table(anr_pdf* pdf)
+{
+ // Cross reference table
+ uint64_t refxref = anr__pdf_append_str(pdf, "\nxref");
+ anr__pdf_append_printf(pdf, "\n0 %d", pdf->next_obj_id);
+ anr__pdf_append_str(pdf, "\n0000000000 65535 f \n");
+ anr__pdf_append_bytes(pdf, pdf->xref.buffer, pdf->xref.write_cursor);
+
+ // Trailer
+ anr__pdf_append_str(pdf, "trailer\n<<");
+ anr__pdf_append_printf(pdf, "/Size %d\n", pdf->next_obj_id);
+ anr__pdf_append_str_idref(pdf, "/Root %d 0 R", pdf->catalog_ref);
+ if (anr__pdf_ref_valid(pdf->doc_info_dic_ref)) {
+ anr__pdf_append_str_idref(pdf, "/Info %d 0 R", pdf->doc_info_dic_ref);
+ }
+ anr__pdf_append_str(pdf, ">>\nstartxref");
+ anr__pdf_append_printf(pdf, "\n%d", refxref+1);
+}
+
+static anr_pdf_ref anr__pdf_append_outlines(anr_pdf* pdf)
+{
+ anr_pdf_id id_offset = anr__peak_next_id(pdf); // ids for bookmarks will be index+id_offset
+
+ anr_pdf_ref first_bookmark = anr__pdf_emptyref();
+ anr_pdf_ref last_bookmark = anr__pdf_emptyref();
+ for (int i = 0; i < pdf->bookmark_count; i++)
+ {
+ anr_pdf_bookmark current_bookmark = pdf->bookmarks[i];
+
+ anr_pdf_ref ref = anr__pdf_begin_obj(pdf);
+ if (i == 0) first_bookmark = ref;
+ last_bookmark = ref;
+ anr__pdf_append_printf(pdf, "\n<<\n/Title (%s)", current_bookmark.text);
+ if (current_bookmark.parent_index != -1)
+ anr__pdf_append_printf(pdf, "\n/Parent %d 0 R", id_offset + current_bookmark.parent_index);
+ if (current_bookmark.prev_index != -1)
+ anr__pdf_append_printf(pdf, "\n/Prev %d 0 R", id_offset + current_bookmark.prev_index);
+ if (current_bookmark.next_index != -1)
+ anr__pdf_append_printf(pdf, "\n/Next %d 0 R", id_offset + current_bookmark.next_index);
+ if (current_bookmark.first_child_index != -1)
+ anr__pdf_append_printf(pdf, "\n/First %d 0 R", id_offset + current_bookmark.first_child_index);
+ if (current_bookmark.last_child_index != -1)
+ anr__pdf_append_printf(pdf, "\n/Last %d 0 R", id_offset + current_bookmark.last_child_index);
+ if (current_bookmark.children_count != -1)
+ anr__pdf_append_printf(pdf, "\n/Count %d", current_bookmark.children_count);
+
+ float offset_bottom = anr_pdf_page_get_size(current_bookmark.page.size).y + 2;
+ if (anr__pdf_ref_valid(current_bookmark.item_on_page.ref)) {
+ offset_bottom = current_bookmark.item_on_page.rec.y;
+ }
+ anr__pdf_append_printf(pdf, "\n/Dest [%d 0 R /XYZ 0 %.2f 0]", current_bookmark.page.ref.id, offset_bottom);
+
+ // @Unimplemented "C" color key (see Table 153)
+ // @Unimplemented "F" font flag (see Table 153)
+
+ anr__pdf_append_str(pdf, "\n>>");
+ anr__pdf_append_str(pdf, "\nendobj");
+ }
+
+ anr_pdf_ref outlineref = anr__pdf_begin_obj(pdf);
+ anr__pdf_append_str(pdf, "\n<</Type /Outlines");
+ anr__pdf_append_printf(pdf, "\n/Count %d", pdf->bookmark_count);
+ if (anr__pdf_ref_valid(first_bookmark)) {
+ anr__pdf_append_str_idref(pdf, "\n/First %d 0 R", first_bookmark);
+ anr__pdf_append_str_idref(pdf, "\n/Last %d 0 R", last_bookmark);
+ }
+ anr__pdf_append_str(pdf, ">>");
+ anr__pdf_append_str(pdf, "\nendobj");
+
+ return outlineref;
+}
+
+static void anr__pdf_replace_placeholder_id(anr_pdf* pdf, uint64_t offset, anr_pdf_ref ref)
+{
+ // We write the pdf in one go but some objects need to reference eachother.. :(
+ char idbuf[20];
+ sprintf(idbuf, "%" PRId64, ref.id);
+ int len = strlen(idbuf);
+ memcpy(pdf->body_buffer + offset + (sizeof(ANR_PDF_PLACEHOLDER_REF)-1-len), idbuf, len);
+}
+
+// Document catalog, see 7.7.2
+static void anr__pdf_append_document_catalog(anr_pdf* pdf)
+{
+ // Outlines
+ anr_pdf_ref outlineref = anr__pdf_append_outlines(pdf);
+
+ // Page tree
+ anr_pdf_ref treeref = anr__pdf_begin_obj(pdf);
+ anr__pdf_append_str(pdf, "\n<</Type /Pages");
+
+ anr__pdf_append_str(pdf, "\n/Kids [");
+ for (uint64_t i = 0; i < pdf->page_count; i++)
+ anr__pdf_append_str_idref(pdf, "%d 0 R\n", pdf->pages[i].ref);
+ anr__pdf_append_str(pdf, "]");
+
+ anr__pdf_append_printf(pdf, "\n/Count %d", pdf->page_count);
+ anr__pdf_append_str(pdf, ">>");
+ anr__pdf_append_str(pdf, "\nendobj");
+
+ pdf->pagetree_ref = treeref;
+
+ // Catalog
+ anr_pdf_ref docref = anr__pdf_begin_obj(pdf);
+ anr__pdf_append_str(pdf, "\n<</Type /Catalog");
+ anr__pdf_append_str_idref(pdf, "\n/Outlines %d 0 R", outlineref);
+ // @Unimplemented: pagemode (see Table 28)
+ anr__pdf_append_str_idref(pdf, "\n/Pages %d 0 R", treeref);
+ anr__pdf_append_str(pdf, "\n/PageLabels << /Nums [ 0 << /S /D >> ] >>"); // arabic numerals for page numbering.
+ anr__pdf_append_str(pdf, ">>");
+ anr__pdf_append_str(pdf, "\nendobj");
+
+ // Pages need reference to page tree.
+ for (uint64_t i = 0; i < pdf->page_count; i++)
+ {
+ anr__pdf_replace_placeholder_id(pdf, pdf->pages[i].parentoffset, treeref);
+ }
+
+ // Pages need reference to annotation array.
+ for (uint64_t p = 0; p < pdf->page_count; p++)
+ {
+ anr_pdf_ref ref = anr__pdf_begin_obj(pdf);
+ anr__pdf_append_str(pdf, "\n[");
+ for (uint64_t i = 0; i < pdf->all_annotations_count; i++) {
+ if (pdf->all_annotations[i].parent.ref.id != pdf->pages[p].ref.id) continue;
+ anr__pdf_append_str_idref(pdf, "\n%d 0 R", pdf->all_annotations[i].ref);
+ }
+ anr__pdf_append_str(pdf, "\n]");
+ anr__pdf_append_str(pdf, "\nendobj");
+
+ anr__pdf_replace_placeholder_id(pdf, pdf->pages[p].annotoffset, ref);
+ }
+
+ pdf->catalog_ref = docref;
+}
+
+static void anr__create_default_font(anr_pdf* pdf) {
+ #define LOAD_FONT(_name, _container) { \
+ anr_pdf_ref fontref = anr__pdf_begin_obj(pdf); \
+ anr__pdf_append_str(pdf, "\n<< /Type /Font"); \
+ anr__pdf_append_str(pdf, "\n/Subtype /Type1"); \
+ anr__pdf_append_str_idref(pdf, "\n/Name /F%d", fontref); \
+ anr__pdf_append_str(pdf, "\n/BaseFont /"_name); \
+ anr__pdf_append_str(pdf, "\n/Encoding /WinAnsiEncoding"); \
+ anr__pdf_append_str(pdf, ">>"); \
+ anr__pdf_append_str(pdf, "\nendobj"); \
+ _container = fontref; \
+ }
+
+ LOAD_FONT("Times-Roman", pdf->default_font_ref);
+ LOAD_FONT("Times-Italic", pdf->default_font_italic_ref);
+ LOAD_FONT("Times-Bold", pdf->default_font_bold_ref);
+ LOAD_FONT("Times-BoldItalic", pdf->default_font_italic_bold_ref);
+}
+
+anr_pdf* anr_pdf_document_begin()
+{
+ anr_pdf* pdf = malloc(sizeof(anr_pdf));
+ memset(pdf, 0, sizeof(anr_pdf));
+ pdf->body_buffer = malloc(ANR_PDF_BUFFER_RESERVE);
+ pdf->buf_size = ANR_PDF_BUFFER_RESERVE;
+ pdf->body_write_cursor = 0;
+ pdf->next_obj_id = 1;
+ pdf->doc_info_dic_ref = anr__pdf_emptyref();
+ pdf->stream_encoding = ANR_PDF_STREAM_ENCODE_NONE;
+ pdf->writing_to_stream = 0;
+
+ pdf->xref.buffer = malloc(ANR_PDF_BUFFER_RESERVE);
+ pdf->xref.write_cursor = 0;
+ pdf->xref.buf_size = ANR_PDF_BUFFER_RESERVE;
+
+ pdf->page.is_written = 1;
+
+ anr__pdf_append_str(pdf, "%PDF-1.7");
+ anr__create_default_font(pdf);
+
+ return pdf;
+}
+
+void anr_pdf_document_free(anr_pdf* pdf)
+{
+ free(pdf->body_buffer);
+ free(pdf->xref.buffer);
+ free(pdf);
+}
+
+void anr_pdf_document_end(anr_pdf* pdf)
+{
+ anr__pdf_append_document_catalog(pdf);
+ anr__append_xref_table(pdf);
+ anr__pdf_append_str(pdf, "\n%%EOF\n");
+}
+
+void anr_pdf_write_to_file(anr_pdf* pdf, const char* path)
+{
+ FILE* file = anr__pdf_fopen(path, "wb");
+ fwrite(pdf->body_buffer, 1, pdf->body_write_cursor, file);
+ anr__pdf_fclose(file);
+}
+
+void anr_pdf_page_begin(anr_pdf* pdf, anr_pdf_page_size size)
+{
+ ANRPDF_ASSERT(pdf->page.is_written);
+ ANRPDF_ASSERT(pdf->page_count < ANR_PDF_MAX_PAGES);
+ pdf->page.is_written = 0;
+ pdf->page.objects_count = 0;
+ pdf->page.images_count = 0;
+ pdf->page.size = size;
+ // @Unimplemented: page rotation
+}
+
+anr_pdf_page anr_pdf_page_end(anr_pdf* pdf)
+{
+ ANRPDF_ASSERT(!pdf->page.is_written);
+
+ anr_pdf_ref procsetref = anr__pdf_begin_obj(pdf);
+ anr__pdf_append_str(pdf, "\n[/PDF /Text /ImageB /ImageC /ImageI]");
+ anr__pdf_append_str(pdf, "\nendobj");
+
+ anr_pdf_ref extgstateref = anr__pdf_begin_obj(pdf);
+ anr__pdf_append_str(pdf, "\n<< /Type /ExtGState /SA true >>");
+ anr__pdf_append_str(pdf, "\nendobj");
+
+
+ anr_pdf_ref pageref = anr__pdf_begin_obj(pdf);
+ anr__pdf_append_str(pdf, "\n<</Type /Page");
+ uint64_t offset = anr__pdf_append_str(pdf, "\n/Parent "ANR_PDF_PLACEHOLDER_REF" 0 R"); // ref is set when pagetree is apended..
+ anr__pdf_append_str_idref(pdf, "\n/Resources <</ProcSet %d 0 R", procsetref);
+ anr__pdf_append_str_idref(pdf, "\n/ExtGState <</GS1 %d 0 R >>", extgstateref);
+
+ // Import all default fonts in page.
+ anr__pdf_append_str(pdf, "\n/Font <<");
+ anr__pdf_append_printf(pdf, "\n/F%d %d 0 R", pdf->default_font_ref.id, pdf->default_font_ref.id);
+ anr__pdf_append_printf(pdf, "\n/F%d %d 0 R", pdf->default_font_italic_ref.id, pdf->default_font_italic_ref.id);
+ anr__pdf_append_printf(pdf, "\n/F%d %d 0 R", pdf->default_font_bold_ref.id, pdf->default_font_bold_ref.id);
+ anr__pdf_append_printf(pdf, "\n/F%d %d 0 R", pdf->default_font_italic_bold_ref.id, pdf->default_font_italic_bold_ref.id);
+ for (uint32_t i = 0; i < pdf->custom_fonts_count; i++)
+ anr__pdf_append_printf(pdf, "\n/F%d %d 0 R", pdf->custom_fonts[i].id, pdf->custom_fonts[i].id);
+ anr__pdf_append_str(pdf, "\n>>");
+
+ // Add all images to xobject array.
+ if (pdf->page.images_count) {
+ anr__pdf_append_str(pdf, "\n/XObject <<\n");
+ for (uint64_t i = 0; i < pdf->page.images_count; i++)
+ anr__pdf_append_printf(pdf, "/%s %" PRId64 " 0 R\n", pdf->page.images[i].id, pdf->page.images[i].ref.id);
+ anr__pdf_append_str(pdf, "\n>>");
+ }
+
+ anr__pdf_append_str(pdf, "\n>>");
+
+ anr_pdf_vecf page_size = anr_pdf_page_get_size(pdf->page.size);
+ anr__pdf_append_printf(pdf, "\n/MediaBox [0 0 %.3f %.3f]", page_size.x, page_size.y);
+ uint64_t annotoffset = anr__pdf_append_str(pdf, "\n/Annots "ANR_PDF_PLACEHOLDER_REF" 0 R"); // ref is set when pagetree is appended..
+
+ // Add all objects to content array.
+ anr__pdf_append_str(pdf, "\n/Contents [\n");
+ for (uint64_t i = 0; i < pdf->page.objects_count; i++)
+ anr__pdf_append_str_idref(pdf, "%d 0 R\n", pdf->page.objects[i]);
+ anr__pdf_append_str(pdf, "]>>");
+
+ anr__pdf_append_str(pdf, "\nendobj");
+
+
+ anr_pdf_page page = (anr_pdf_page){.ref = pageref, .size = pdf->page.size, .parentoffset = offset+9, .annotoffset = annotoffset + 9};
+ pdf->pages[pdf->page_count++] = page;
+ pdf->page.is_written = 1;
+
+ return page;
+}
+
+anr_pdf_txt_conf anr_pdf_txt_conf_default()
+{
+ return (anr_pdf_txt_conf){0.0f,0.0f,100.0f,0.0f,12,anr__pdf_emptyref(),ANR_PDF_TEXT_RENDERING_FILL, 0.0f, (anr_pdf_color){0.0f,0.0f,0.0f}, 0.0f};
+}
+
+anr_pdf_gfx_conf anr_pdf_gfx_conf_conf_default()
+{
+ return (anr_pdf_gfx_conf){.line_cap = ANR_PDF_LINECAP_BUTT, .line_width = 0, .line_join = ANR_PDF_LINEJOIN_MITER,
+ .miter_limit = 10, .dash_pattern = {0}, .color = ANR_PDF_RGB(0.0f,0.0f,0.0f), 0};
+}
+
+anr_pdf_annot_cnf anr_pdf_annot_conf_default()
+{
+ return (anr_pdf_annot_cnf){.color=ANR_PDF_RGB(1.0f, 1.0f, 0.0f), .parent = {.ref.id = 0}, .post_date = NULL, .posted_by = NULL};
+}
+
+anr_pdf_obj anr_pdf_add_cubic_bezier(anr_pdf* pdf, anr_pdf_vecf* data, uint32_t data_length, anr_pdf_gfx_conf gfx)
+{
+ ANRPDF_ASSERT(data_length >= 3);
+ ANRPDF_ASSERT((data_length - 3) % 2 == 0);
+ ANRPDF_ASSERT(gfx.miter_limit > 0); // no warning given & gfx will not be displayed if 0
+
+ // Calculate bounds
+ anr_pdf_recf rec = {0};
+ for (uint32_t i = 0; i < data_length; i++)
+ {
+ anr_pdf_vecf point = data[i];
+ if (point.x < rec.x) rec.x = point.x;
+ if (point.y > rec.y) rec.y = point.y;
+ if (point.x > rec.w) rec.w = point.x;
+ if (point.y < rec.h) rec.h = point.y;
+ }
+ rec.w = rec.w - rec.x;
+ rec.h = rec.y - rec.h;
+
+ anr_pdf_obj obj_ref = anr__pdf_begin_content_obj(pdf, rec);
+
+ uint64_t write_start = anr__pdf_append_printf(pdf, "\n%d J", gfx.line_cap);
+ anr__pdf_append_printf(pdf, "\n%d w", gfx.line_width);
+ anr__pdf_append_printf(pdf, "\n%d j", gfx.line_join);
+ anr__pdf_append_printf(pdf, "\n%.3f M", gfx.miter_limit);
+ if (gfx.dash_pattern[0] > 0 && gfx.dash_pattern[1] > 0) {
+ anr__pdf_append_printf(pdf, "\n[%d %d] 0 d", gfx.dash_pattern[0], gfx.dash_pattern[1]);
+ }
+ anr__pdf_append_printf(pdf, "\n%.1f %.1f %.1f %s", gfx.color.r, gfx.color.g, gfx.color.b, gfx.fill ? "rg" : "RG");
+
+ anr__pdf_append_printf(pdf, "\n%.3f %.3f m", data[0].x, data[0].y);
+ anr__pdf_append_printf(pdf, "\n%.3f %.3f %.3f %.3f %.3f %.3f c",
+ data[0].x, data[0].y, data[1].x, data[1].y, data[2].x, data[2].y);
+
+ for (uint32_t i = 3; i < data_length; i+=2)
+ {
+ anr_pdf_vecf point1 = data[i];
+ anr_pdf_vecf point2 = data[i+1];
+ anr__pdf_append_printf(pdf, "\n%.3f %.3f %.3f %.3f v", point1.x, point1.y, point2.x, point2.y);
+ }
+
+ anr__pdf_append_printf(pdf, gfx.fill ? "\nf" : "\nS");
+ anr__pdf_append_printf(pdf, "\nn");
+
+ anr__pdf_end_content_obj(pdf, write_start);
+ return obj_ref;
+}
+
+anr_pdf_obj anr_pdf_add_line(anr_pdf* pdf, anr_pdf_vecf p1, anr_pdf_vecf p2, anr_pdf_gfx_conf gfx)
+{
+ anr_pdf_vecf data[2] = {p1, p2};
+ return anr_pdf_add_polygon(pdf, data, 2, gfx);
+}
+
+anr_pdf_obj anr_pdf_add_polygon(anr_pdf* pdf, anr_pdf_vecf* data, uint32_t data_length, anr_pdf_gfx_conf gfx)
+{
+ ANRPDF_ASSERT(data_length > 0);
+ ANRPDF_ASSERT(gfx.miter_limit > 0);
+
+ // Calculate bounds
+ anr_pdf_recf rec = {0};
+ for (uint32_t i = 0; i < data_length; i++)
+ {
+ anr_pdf_vecf point = data[i];
+ if (point.x < rec.x) rec.x = point.x;
+ if (point.y > rec.y) rec.y = point.y;
+ if (point.x > rec.w) rec.w = point.x;
+ if (point.y < rec.h) rec.h = point.y;
+ }
+ rec.w = rec.w - rec.x;
+ rec.h = rec.y - rec.h;
+
+ anr_pdf_obj obj_ref = anr__pdf_begin_content_obj(pdf, rec);
+
+ uint64_t write_start = anr__pdf_append_printf(pdf, "\n%.3f %.3f m", data[0].x, data[0].y);
+ anr__pdf_append_printf(pdf, "\n%d J", gfx.line_cap);
+ anr__pdf_append_printf(pdf, "\n%d w", gfx.line_width);
+ anr__pdf_append_printf(pdf, "\n%d j", gfx.line_join);
+ anr__pdf_append_printf(pdf, "\n%.3f M", gfx.miter_limit);
+ if (gfx.dash_pattern[0] > 0 && gfx.dash_pattern[1] > 0) {
+ anr__pdf_append_printf(pdf, "\n[%d %d] 0 d", gfx.dash_pattern[0], gfx.dash_pattern[1]);
+ }
+ anr__pdf_append_printf(pdf, "\n%.1f %.1f %.1f %s", gfx.color.r, gfx.color.g, gfx.color.b, gfx.fill ? "rg" : "RG");
+
+ for (uint32_t i = 1; i < data_length; i++)
+ {
+ anr_pdf_vecf point = data[i];
+ anr__pdf_append_printf(pdf, "\n%.3f %.3f l", point.x, point.y);
+ }
+
+ anr__pdf_append_printf(pdf, gfx.fill ? "\nf" : "\nS");
+ anr__pdf_append_printf(pdf, "\nn");
+
+ anr__pdf_end_content_obj(pdf, write_start);
+ return obj_ref;
+}
+
+anr_pdf_obj anr_pdf_add_rectangle(anr_pdf* pdf, anr_pdf_vecf tl, anr_pdf_vecf br, char fill, anr_pdf_color color)
+{
+ anr_pdf_vecf header[] = { tl, (anr_pdf_vecf){br.x, tl.y}, br, (anr_pdf_vecf){tl.x, br.y} };
+ anr_pdf_gfx_conf conf = ANR_PDF_GFX_CONF_DEFAULT;
+ conf.fill = fill;
+ conf.color = color;
+ return anr_pdf_add_polygon(pdf, header, 4, conf);
+}
+
+anr_pdf_obj anr_pdf_add_table(anr_pdf* pdf, float* rows, uint32_t row_count, float* cols, uint32_t col_count, anr_pdf_color color)
+{
+ ANRPDF_ASSERT(row_count > 1);
+ ANRPDF_ASSERT(col_count > 1);
+
+ float ystart = rows[0];
+ float xstart = cols[0];
+ float yend = rows[row_count-1];
+ float xend = cols[col_count-1];
+
+ // Header row
+ anr_pdf_obj header = anr_pdf_add_rectangle(pdf, (anr_pdf_vecf){cols[0], rows[0]}, (anr_pdf_vecf){xend, rows[1]}, 1, color);
+
+ for (int i = 0; i < row_count; i++)
+ {
+ anr_pdf_vecf v1 = {xstart, rows[i]};
+ anr_pdf_vecf v2 = {xend, rows[i]};
+ anr_pdf_add_line(pdf, v1, v2, ANR_PDF_GFX_CONF_DEFAULT);
+ }
+
+ for (int i = 0; i < col_count; i++)
+ {
+ anr_pdf_vecf v1 = {cols[i], ystart};
+ anr_pdf_vecf v2 = {cols[i], yend};
+ anr_pdf_add_line(pdf, v1, v2, ANR_PDF_GFX_CONF_DEFAULT);
+ }
+
+ return header;
+}
+
+anr_pdf_obj anr_pdf_add_page_label(anr_pdf* pdf, const char* text, anr_pdf_align align)
+{
+ anr_pdf_vecf page_size = anr_pdf_page_get_size(pdf->page.size);
+ float x = ANR_INCH_TO_USU(0.8), y = ANR_INCH_TO_USU(0.5);
+
+ switch (align)
+ {
+ case ANR_PDF_ALIGN_LEFT: break;
+ case ANR_PDF_ALIGN_CENTER: x = page_size.x/2;
+ break;
+ case ANR_PDF_ALIGN_RIGHT: x = page_size.x - ANR_INCH_TO_USU(0.8);
+ break;
+ }
+
+ return anr_pdf_add_text(pdf, text, x, y, ANR_PDF_TXT_CONF_DEFAULT);
+}
+
+anr_pdf_obj anr_pdf_add_text(anr_pdf* pdf, const char* text, float x, float y, anr_pdf_txt_conf info)
+{
+ uint64_t str_len = strlen(text); // @Unimplemented: we need to calculate string width somehow
+ anr_pdf_obj obj_ref = anr__pdf_begin_content_obj(pdf, ANR_PDF_REC(x, y + info.font_size, str_len*5, (float)info.font_size));
+ uint64_t write_start = anr__pdf_append_str(pdf, "\nBT");
+
+ // Use default regular font if no font given.
+ if (!anr__pdf_ref_valid(info.font)) {
+ info.font = pdf->default_font_ref;
+ }
+
+ anr__pdf_append_printf(pdf, "\n/F%d %d Tf", info.font.id, info.font_size);
+ anr__pdf_append_printf(pdf, "\n%.1f %.1f %.1f rg", info.color.r, info.color.g, info.color.b);
+ anr__pdf_append_printf(pdf, "\n%.2f Tc", info.char_space);
+ anr__pdf_append_printf(pdf, "\n%.2f Tw", info.word_space);
+ anr__pdf_append_printf(pdf, "\n%.2f Tz", info.horizontal_scale);
+ anr__pdf_append_printf(pdf, "\n%.2f TL", info.leading);
+ anr__pdf_append_printf(pdf, "\n%.2f Ts", info.rise);
+ anr__pdf_append_printf(pdf, "\n%d Tr", info.render_mode);
+ anr__pdf_append_printf(pdf, "\n%f %f %f %f %f %f Tm", cosf(info.angle), sinf(info.angle), -sinf(info.angle), cosf(info.angle), x, y);
+ anr__pdf_append_printf(pdf, "\nT* (%s) Tj", text);
+ anr__pdf_append_str(pdf, "\nET");
+
+ anr__pdf_end_content_obj(pdf, write_start);
+ return obj_ref;
+}
+
+ void anr_pdf_document_add_information_dictionary(anr_pdf* pdf, char* title,
+ char* author, char* subject, char* keywords, char* creator,
+ char* producer, char* creation_date, char* mod_date)
+{
+ // @Unimplemented parameter: Trapped (see Table 317)
+
+ #define ADD_ENTRY(__entry, __tag) \
+ if (__entry) {\
+ anr__pdf_append_str(pdf, "/"__tag" ("); \
+ anr__pdf_append_str(pdf, __entry); \
+ anr__pdf_append_str(pdf, ")\n"); }
+
+ pdf->doc_info_dic_ref = anr__pdf_begin_obj(pdf);
+ anr__pdf_append_str(pdf, "<<");
+ ADD_ENTRY(title, "Title");
+ ADD_ENTRY(author, "Author");
+ ADD_ENTRY(subject, "Subject");
+ ADD_ENTRY(keywords, "Keywords");
+ ADD_ENTRY(creator, "Creator");
+ ADD_ENTRY(producer, "Producer");
+ ADD_ENTRY(creation_date, "CreationDate");
+ ADD_ENTRY(mod_date, "ModDate");
+
+ anr__pdf_append_str(pdf, ">>");
+ anr__pdf_append_str(pdf, "\nendobj");
+}
+
+anr_pdf_vecf anr_pdf_page_get_size(anr_pdf_page_size size) {
+ return __anr_pdf_page_sizes[size];
+}
+
+static void anr__pdf_add_optional_annotation_data(anr_pdf* pdf, anr_pdf_annot_cnf data)
+{
+ if (data.posted_by) {
+ anr__pdf_append_printf(pdf, "\n/T (%s)", data.posted_by);
+ }
+ if (anr__pdf_ref_valid(data.parent.ref)) {
+ anr__pdf_append_str(pdf, "\n/RT /R");
+ anr__pdf_append_str_idref(pdf, "\n/IRT %d 0 R", data.parent.ref);
+ }
+ if (data.post_date) {
+ anr__pdf_append_printf(pdf, "\n/M (D:%s)", data.post_date);
+ }
+ anr__pdf_append_printf(pdf, "\n/C [%.2f %.2f %.2f]", data.color.r, data.color.g, data.color.b);
+}
+
+anr_pdf_annot anr_pdf_add_annotation_link(anr_pdf* pdf, anr_pdf_page src_page, anr_pdf_obj src_obj, anr_pdf_page dest_page, anr_pdf_obj* dest_obj, anr_pdf_annot_cnf data)
+{
+ ANRPDF_ASSERT(pdf->all_annotations_count < ANR_PDF_MAX_ANNOTATIONS_PER_PAGE);
+ anr_pdf_ref ref = anr__pdf_begin_obj(pdf);
+
+ anr__pdf_append_str(pdf, "\n<</Type /Annot");
+ anr__pdf_append_str(pdf, "\n/Subtype /Link");
+ anr__pdf_append_printf(pdf, "\n/Rect [%.2f %.2f %.2f %.2f]",
+ src_obj.rec.x, src_obj.rec.y, src_obj.rec.x + src_obj.rec.w, src_obj.rec.y - src_obj.rec.h);
+ if (dest_obj) {
+ anr__pdf_append_printf(pdf, "\n/Dest [%d 0 R /XYZ %f %f null]", dest_page.ref.id, dest_obj->rec.x, dest_obj->rec.y);
+ }
+ else {
+ anr_pdf_vecf psize = anr_pdf_page_get_size(dest_page.size);
+ anr__pdf_append_printf(pdf, "\n/Dest [%d 0 R /XYZ %f %f null]", dest_page.ref.id, 0, psize.y);
+ }
+ anr__pdf_append_str(pdf, "\n/Border [0 0 0 0]");
+ anr__pdf_add_optional_annotation_data(pdf, data);
+ anr__pdf_append_str(pdf, ">>");
+ anr__pdf_append_str(pdf, "\nendobj");
+
+ anr_pdf_annot annot = {.ref = ref, .parent = src_page};
+ pdf->all_annotations[pdf->all_annotations_count++] = annot;
+
+ return annot;
+}
+
+anr_pdf_annot anr_pdf_add_annotation_markup(anr_pdf* pdf, anr_pdf_page page, anr_pdf_obj obj, char* text, anr_pdf_annotation_markup_type type, anr_pdf_annot_cnf data)
+{
+ ANRPDF_ASSERT(pdf->all_annotations_count < ANR_PDF_MAX_ANNOTATIONS_PER_PAGE);
+ anr_pdf_ref ref = anr__pdf_begin_obj(pdf);
+
+ anr__pdf_append_str(pdf, "\n<</Type /Annot");
+ switch(type) {
+ case ANR_PDF_ANNOTATION_MARKUP_HIGHLIGHT: anr__pdf_append_str(pdf, "\n/Subtype /Highlight"); break;
+ case ANR_PDF_ANNOTATION_MARKUP_UNDERLINE: anr__pdf_append_str(pdf, "\n/Subtype /Underline"); break;
+ case ANR_PDF_ANNOTATION_MARKUP_SQUIGGLY: anr__pdf_append_str(pdf, "\n/Subtype /Squiggly"); break;
+ case ANR_PDF_ANNOTATION_MARKUP_STRIKEOUT: anr__pdf_append_str(pdf, "\n/Subtype /StrikeOut"); break;
+ }
+ anr__pdf_append_printf(pdf, "\n/Rect [%.2f %.2f %.2f %.2f]", obj.rec.x, obj.rec.y, obj.rec.x + obj.rec.w, obj.rec.y - obj.rec.h);
+ obj.rec.y -= 2;
+ anr__pdf_append_printf(pdf, "\n/QuadPoints [%.2f %.2f %.2f %.2f %.2f %.2f %.2f %.2f]",
+ obj.rec.x,
+ obj.rec.y - obj.rec.h,
+ obj.rec.x + obj.rec.w,
+ obj.rec.y - obj.rec.h,
+ obj.rec.x,
+ obj.rec.y,
+ obj.rec.x + obj.rec.w,
+ obj.rec.y);
+ anr__pdf_add_optional_annotation_data(pdf, data);
+ anr__pdf_append_printf(pdf, "\n/Contents(%s)", text);
+ anr__pdf_append_str(pdf, ">>");
+ anr__pdf_append_str(pdf, "\nendobj");
+
+ anr_pdf_annot annot = {.ref = ref, .parent = page};
+ pdf->all_annotations[pdf->all_annotations_count++] = annot;
+
+ return annot;
+}
+
+anr_pdf_annot anr_pdf_add_annotation_text(anr_pdf* pdf, anr_pdf_page page, anr_pdf_obj obj, char* text, anr_pdf_annot_cnf data)
+{
+ ANRPDF_ASSERT(pdf->all_annotations_count < ANR_PDF_MAX_ANNOTATIONS_PER_PAGE);
+ anr_pdf_ref ref = anr__pdf_begin_obj(pdf);
+
+ anr__pdf_append_str(pdf, "\n<</Type /Annot");
+ anr__pdf_append_str(pdf, "\n/Subtype /Text");
+ anr__pdf_append_printf(pdf, "\n/Rect [%.2f %.2f %.2f %.2f]", obj.rec.x, obj.rec.y, obj.rec.x + obj.rec.w, obj.rec.y - obj.rec.h);
+ anr__pdf_append_printf(pdf, "\n/Contents (%s)", text);
+ anr__pdf_add_optional_annotation_data(pdf, data);
+ anr__pdf_append_str(pdf, ">>");
+ anr__pdf_append_str(pdf, "\nendobj");
+
+ anr_pdf_annot annot = {.ref = ref, .parent = page};
+ pdf->all_annotations[pdf->all_annotations_count++] = annot;
+
+ return annot;
+}
+
+anr_pdf_bookmark anr_pdf_document_add_bookmark(anr_pdf* pdf, anr_pdf_page page, anr_pdf_obj* item_on_page,
+ anr_pdf_bookmark* parent, const char* text)
+{
+ ANRPDF_ASSERT(pdf->bookmark_count < ANR_PDF_MAX_BOOKMARKS);
+
+ uint64_t new_index = pdf->bookmark_count;
+ uint32_t depth = 0;
+
+ uint64_t prev_last_child = -1;
+
+ // update parent refs.
+ if (parent) {
+ if (pdf->bookmarks[parent->index].children_count == 0) {
+ pdf->bookmarks[parent->index].first_child_index = new_index;
+ pdf->bookmarks[parent->index].last_child_index = new_index;
+ }
+ else {
+ prev_last_child = pdf->bookmarks[parent->index].last_child_index;
+ pdf->bookmarks[prev_last_child].next_index = new_index;
+ pdf->bookmarks[parent->index].last_child_index = new_index;
+ }
+ pdf->bookmarks[parent->index].children_count++;
+
+ depth = parent->depth+1;
+ }
+ else
+ {
+ // update prev and next refs for topmost items.
+ for (int i = pdf->bookmark_count-1; i >= 0; i--)
+ {
+ anr_pdf_bookmark existing_bookmark = pdf->bookmarks[i];
+ if (existing_bookmark.depth != depth) continue;
+
+ prev_last_child = pdf->bookmarks[i].index;
+ pdf->bookmarks[i].next_index = new_index;
+ break;
+ }
+ }
+
+
+ anr_pdf_bookmark bookmark = {
+ .item_on_page = item_on_page == NULL ? anr__pdf_emptyobj() : *item_on_page,
+ .index = new_index,
+ .text = text,
+ .parent_index = parent == NULL ? -1 : parent->index,
+ .first_child_index = -1,
+ .last_child_index = -1,
+ .prev_index = prev_last_child,
+ .next_index = -1,
+ .children_count = 0,
+ .depth = depth,
+ .page = page,
+ };
+ pdf->bookmarks[pdf->bookmark_count++] = bookmark;
+
+ return bookmark;
+}
+
+anr_pdf_img anr_pdf_embed_image(anr_pdf* pdf, unsigned char* data, uint32_t length, uint32_t width, uint32_t height, uint8_t bits_per_sample)
+{
+ ANRPDF_ASSERT(length == width*height*3);
+
+ anr_pdf_ref ref = anr__pdf_begin_obj(pdf);
+
+ anr__pdf_append_str(pdf, "\n<</Type /XObject");
+ anr__pdf_append_str(pdf, "\n/Subtype /Image");
+ anr__pdf_append_printf(pdf, "\n/Width %d", width);
+ anr__pdf_append_printf(pdf, "\n/Height %d", height);
+ anr__pdf_append_str(pdf, "\n/ColorSpace /DeviceRGB");
+ anr__pdf_append_printf(pdf, "\n/BitsPerComponent %d", bits_per_sample);
+ anr__pdf_append_str(pdf, "\n/Interpolate true");
+ anr__pdf_append_printf(pdf, "\n/Length %d", length);
+ anr__pdf_append_str(pdf, ">>");
+ anr__pdf_append_str(pdf, "\nstream\n");
+ anr__pdf_append_bytes(pdf, (char*)data, length);
+ anr__pdf_append_str(pdf, "\nendstream");
+ anr__pdf_append_str(pdf, "\nendobj");
+
+ return (anr_pdf_img){.ref = ref, .width = width, .height = height};
+}
+
+anr_pdf_obj anr_pdf_add_image(anr_pdf* pdf, anr_pdf_img img, float x, float y, float w, float h)
+{
+ // add image to page resources.
+ char id[10];
+ snprintf(id, 10, "Im%d", pdf->page.images_count);
+ memcpy(img.id, id, sizeof(img.id));
+ pdf->page.images[pdf->page.images_count++] = img;
+
+ anr_pdf_obj obj_ref = anr__pdf_begin_content_obj(pdf, ANR_PDF_REC(x, y, w, h));
+
+ uint64_t write_start = anr__pdf_append_str(pdf, "q");
+ anr__pdf_append_printf(pdf, "\n%f 0 0 %f %f %f cm", w, h, x, y); // Translate & scale
+ anr__pdf_append_printf(pdf, "\n/%s Do", id);
+ anr__pdf_append_str(pdf, "\nQ");
+
+ anr__pdf_end_content_obj(pdf, write_start);
+ return obj_ref;
+}
+
+////////////////////////////////////////////////////////////
+// code stripped from stb_truetype.h by Sean Barrett
+////////////////////////////////////////////////////////////
+
+#define ttBYTE(p) (* (stbtt_uint8 *) (p))
+#define ttCHAR(p) (* (stbtt_int8 *) (p))
+#define ttFixed(p) ttLONG(p)
+typedef unsigned char stbtt_uint8;
+typedef signed char stbtt_int8;
+typedef unsigned short stbtt_uint16;
+typedef signed short stbtt_int16;
+typedef unsigned int stbtt_uint32;
+typedef signed int stbtt_int32;
+static stbtt_uint16 ttUSHORT(stbtt_uint8 *p) { return p[0]*256 + p[1]; }
+static stbtt_int16 ttSHORT(stbtt_uint8 *p) { return p[0]*256 + p[1]; }
+static stbtt_uint32 ttULONG(stbtt_uint8 *p) { return (p[0]<<24) + (p[1]<<16) + (p[2]<<8) + p[3]; }
+#define stbtt_tag4(p,c0,c1,c2,c3) ((p)[0] == (c0) && (p)[1] == (c1) && (p)[2] == (c2) && (p)[3] == (c3))
+#define stbtt_tag(p,str) stbtt_tag4(p,str[0],str[1],str[2],str[3])
+
+int stbtt_FindGlyphIndex(unsigned char* data, uint32_t index_map, int unicode_codepoint)
+{
+ stbtt_uint16 format = ttUSHORT(data + index_map + 0);
+ if (format == 0) { // apple byte encoding
+ stbtt_int32 bytes = ttUSHORT(data + index_map + 2);
+ if (unicode_codepoint < bytes-6)
+ return ttBYTE(data + index_map + 6 + unicode_codepoint);
+ return 0;
+ } else if (format == 6) {
+ stbtt_uint32 first = ttUSHORT(data + index_map + 6);
+ stbtt_uint32 count = ttUSHORT(data + index_map + 8);
+ if ((stbtt_uint32) unicode_codepoint >= first && (stbtt_uint32) unicode_codepoint < first+count)
+ return ttUSHORT(data + index_map + 10 + (unicode_codepoint - first)*2);
+ return 0;
+ } else if (format == 2) {
+
+ return 0;
+ } else if (format == 4) { // standard mapping for windows fonts: binary search collection of ranges
+ stbtt_uint16 segcount = ttUSHORT(data+index_map+6) >> 1;
+ stbtt_uint16 searchRange = ttUSHORT(data+index_map+8) >> 1;
+ stbtt_uint16 entrySelector = ttUSHORT(data+index_map+10);
+ stbtt_uint16 rangeShift = ttUSHORT(data+index_map+12) >> 1;
+
+ // do a binary search of the segments
+ stbtt_uint32 endCount = index_map + 14;
+ stbtt_uint32 search = endCount;
+
+ if (unicode_codepoint > 0xffff)
+ return 0;
+
+ // they lie from endCount .. endCount + segCount
+ // but searchRange is the nearest power of two, so...
+ if (unicode_codepoint >= ttUSHORT(data + search + rangeShift*2))
+ search += rangeShift*2;
+
+ // now decrement to bias correctly to find smallest
+ search -= 2;
+ while (entrySelector) {
+ stbtt_uint16 end;
+ searchRange >>= 1;
+ end = ttUSHORT(data + search + searchRange*2);
+ if (unicode_codepoint > end)
+ search += searchRange*2;
+ --entrySelector;
+ }
+ search += 2;
+
+ {
+ stbtt_uint16 offset, start, last;
+ stbtt_uint16 item = (stbtt_uint16) ((search - endCount) >> 1);
+
+ start = ttUSHORT(data + index_map + 14 + segcount*2 + 2 + 2*item);
+ last = ttUSHORT(data + endCount + 2*item);
+ if (unicode_codepoint < start || unicode_codepoint > last)
+ return 0;
+
+ offset = ttUSHORT(data + index_map + 14 + segcount*6 + 2 + 2*item);
+ if (offset == 0)
+ return (stbtt_uint16) (unicode_codepoint + ttSHORT(data + index_map + 14 + segcount*4 + 2 + 2*item));
+
+ return ttUSHORT(data + offset + (unicode_codepoint-start)*2 + index_map + 14 + segcount*6 + 2 + 2*item);
+ }
+ } else if (format == 12 || format == 13) {
+ stbtt_uint32 ngroups = ttULONG(data+index_map+12);
+ stbtt_int32 low,high;
+ low = 0; high = (stbtt_int32)ngroups;
+ // Binary search the right group.
+ while (low < high) {
+ stbtt_int32 mid = low + ((high-low) >> 1); // rounds down, so low <= mid < high
+ stbtt_uint32 start_char = ttULONG(data+index_map+16+mid*12);
+ stbtt_uint32 end_char = ttULONG(data+index_map+16+mid*12+4);
+ if ((stbtt_uint32) unicode_codepoint < start_char)
+ high = mid;
+ else if ((stbtt_uint32) unicode_codepoint > end_char)
+ low = mid+1;
+ else {
+ stbtt_uint32 start_glyph = ttULONG(data+index_map+16+mid*12+8);
+ if (format == 12)
+ return start_glyph + unicode_codepoint-start_char;
+ else // format == 13
+ return start_glyph;
+ }
+ }
+ return 0; // not found
+ }
+ // @TODO
+ return 0;
+}
+static stbtt_uint32 stbtt__find_table(unsigned char *data, stbtt_uint32 fontstart, const char *tag)
+{
+ stbtt_int32 num_tables = ttUSHORT(data+fontstart+4);
+ stbtt_uint32 tabledir = fontstart + 12;
+ stbtt_int32 i;
+ for (i=0; i < num_tables; ++i) {
+ stbtt_uint32 loc = tabledir + 16*i;
+ if (stbtt_tag(data+loc+0, tag))
+ return ttULONG(data+loc+8);
+ }
+ return 0;
+}
+void stbtt_GetGlyphHMetrics(unsigned char* data, uint32_t hmtx, int glyph_index, int *advanceWidth, int *leftSideBearing)
+{
+ uint32_t hhea = stbtt__find_table(data, 0, "hhea");
+ stbtt_uint16 numOfLongHorMetrics = ttUSHORT(data+hhea + 34);
+ if (glyph_index < numOfLongHorMetrics) {
+ if (advanceWidth) *advanceWidth = ttSHORT(data + hmtx + 4*glyph_index);
+ if (leftSideBearing) *leftSideBearing = ttSHORT(data + hmtx + 4*glyph_index + 2);
+ } else {
+ if (advanceWidth) *advanceWidth = ttSHORT(data + hmtx + 4*(numOfLongHorMetrics-1));
+ if (leftSideBearing) *leftSideBearing = ttSHORT(data + hmtx + 4*numOfLongHorMetrics + 2*(glyph_index - numOfLongHorMetrics));
+ }
+}
+void stbtt_GetCodepointHMetrics(unsigned char* data, uint32_t hmtx, uint32_t index_map, int codepoint, int *advanceWidth, int *leftSideBearing)
+{
+ stbtt_GetGlyphHMetrics(data, hmtx, stbtt_FindGlyphIndex(data,index_map,codepoint), advanceWidth, leftSideBearing);
+}
+uint32_t anr__pdf_get_ttf_codepoint_width(unsigned char* data, uint32_t codepoint)
+{
+ uint32_t hmtx = stbtt__find_table(data, 0, "hmtx");
+ uint32_t cmap = stbtt__find_table(data, 0, "cmap");
+
+ uint32_t numTables = ttUSHORT(data + cmap + 2);
+ uint32_t index_map = 0;
+ for (uint32_t i=0; i < numTables; ++i) {
+ stbtt_uint32 encoding_record = cmap + 4 + 8 * i;
+ // find an encoding we understand:
+ switch(ttUSHORT(data+encoding_record)) {
+ case 3:
+ switch (ttUSHORT(data+encoding_record+2)) {
+ case 1:
+ case 10:
+ index_map = cmap + ttULONG(data+encoding_record+4);
+ break;
+ }
+ break;
+ case 0:
+ index_map = cmap + ttULONG(data+encoding_record+4);
+ break;
+ }
+ }
+
+ int32_t advance;
+ int32_t lsb;
+ stbtt_GetCodepointHMetrics(data, hmtx, index_map, codepoint, &advance, &lsb);
+ return advance;
+}
+
+////////////////////////////////////////////////////////////
+// end of code from stb_truetype.h
+////////////////////////////////////////////////////////////
+
+anr_pdf_ref anr_pdf_embed_ttf(anr_pdf* pdf, unsigned char* data, uint32_t length)
+{
+ ANRPDF_ASSERT(pdf->all_annotations_count < ANR_PDF_MAX_CUSTOM_FONTS);
+
+ anr_pdf_ref ttf_ref = anr__pdf_begin_obj(pdf);
+ anr__pdf_append_printf(pdf, "\n<</Length %d>>", length);
+ anr__pdf_append_str(pdf, "\nstream\n");
+ anr__pdf_append_bytes(pdf, (char*)data, length);
+ anr__pdf_append_str(pdf, "\nendstream");
+ anr__pdf_append_str(pdf, "\nendobj");
+
+ anr_pdf_ref widths_ref = anr__pdf_begin_obj(pdf);
+ anr__pdf_append_str(pdf, "\n[ ");
+ {
+ for (uint32_t i = 0; i < 0xFFFF; i++)
+ {
+ int advance = anr__pdf_get_ttf_codepoint_width(data, i);
+ anr__pdf_append_printf(pdf, "%d ", advance);
+ }
+ }
+ anr__pdf_append_str(pdf, "]\nendobj");
+
+ // These values have been pulled from my behind.
+ anr_pdf_ref descriptor_ref = anr__pdf_begin_obj(pdf);
+ anr__pdf_append_str(pdf, "\n<</Type /FontDescriptor");
+ anr__pdf_append_str_idref(pdf, "\n/FontName /F%d", descriptor_ref);
+ anr__pdf_append_printf(pdf, "\n/Flags %d", 1 << 5); // nonsymbolic
+ anr__pdf_append_str(pdf, "\n/FontBBox [-92.773438 -312.01172 1186.52344 1102.05078]");
+ anr__pdf_append_str(pdf, "\n/MissingWidth 350");
+ anr__pdf_append_str(pdf, "\n/ItalicAngle 0");
+ anr__pdf_append_str(pdf, "\n/Ascent 1102.05078");
+ anr__pdf_append_str(pdf, "\n/Descent -291.50391");
+ anr__pdf_append_str(pdf, "\n/CapHeight 389.16016");
+ anr__pdf_append_str(pdf, "\n/StemV 61.035156");
+ anr__pdf_append_str_idref(pdf, "\n/FontFile2 %d 0 R", ttf_ref);
+ anr__pdf_append_str(pdf, ">>");
+ anr__pdf_append_str(pdf, "\nendobj");
+
+ anr_pdf_ref ref = anr__pdf_begin_obj(pdf);
+ anr__pdf_append_str(pdf, "\n<</Type /Font");
+ anr__pdf_append_str(pdf, "\n/Subtype /TrueType");
+ anr__pdf_append_str_idref(pdf, "\n/Name /F%d", ref);
+ anr__pdf_append_str_idref(pdf, "\n/BaseFont /F%d", descriptor_ref);
+ anr__pdf_append_str(pdf, "\n/FirstChar 0");
+ anr__pdf_append_str(pdf, "\n/LastChar 255");
+ anr__pdf_append_str_idref(pdf, "\n/Widths %d 0 R", widths_ref);
+ anr__pdf_append_str(pdf, "\n/Encoding /WinAsciEncoding");
+ anr__pdf_append_str_idref(pdf, "\n/FontDescriptor %d 0 R", descriptor_ref);
+ anr__pdf_append_str(pdf, ">>");
+ anr__pdf_append_str(pdf, "\nendobj");
+
+ pdf->custom_fonts[pdf->custom_fonts_count++] = ref;
+
+ return ref;
+}
+
+#endif
+
+/*
+------------------------------------------------------------------------------
+This software is available under 2 licenses -- choose whichever you prefer.
+------------------------------------------------------------------------------
+ALTERNATIVE A - MIT License
+Copyright (c) 2024 Aldrik Ramaekers
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
+of the Software, and to permit persons to whom the Software is furnished to do
+so, subject to the following conditions:
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+------------------------------------------------------------------------------
+ALTERNATIVE B - Public Domain (www.unlicense.org)
+This is free and unencumbered software released into the public domain.
+Anyone is free to copy, modify, publish, use, compile, sell, or distribute this
+software, either in source code form or as a compiled binary, for any purpose,
+commercial or non-commercial, and by any means.
+In jurisdictions that recognize copyright laws, the author or authors of this
+software dedicate any and all copyright interest in the software to the public
+domain. We make this dedication for the benefit of the public at large and to
+the detriment of our heirs and successors. We intend this dedication to be an
+overt act of relinquishment in perpetuity of all present and future rights to
+this software under copyright law.
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+------------------------------------------------------------------------------
+*/ \ No newline at end of file
diff --git a/libs/anr/anr_sc.h b/libs/anr/anr_sc.h
new file mode 100644
index 0000000..8283c5f
--- /dev/null
+++ b/libs/anr/anr_sc.h
@@ -0,0 +1,287 @@
+/*
+anr_sc.h - v0.1 - worst compression library you have ever seen.
+
+Do this:
+ #ifdef ANR_SC_IMPLEMENTATION
+before you include this file in *one* C file to create the implementation.
+
+*/
+
+#ifndef INCLUDE_ANR_SC_H
+#define INCLUDE_ANR_SC_H
+
+#ifndef ANRSCDEF
+#define ANRSCDEF extern
+#endif
+
+#ifdef ANR_SC_DEBUG
+#include <stdio.h>
+#endif
+
+#include <stdlib.h>
+#include <string.h>
+#include <inttypes.h>
+
+#ifndef ANRSC_ASSERT
+#include <assert.h>
+#define ANRSC_ASSERT(x) assert(x)
+#endif
+
+ANRSCDEF uint8_t* anr_sc_deflate(uint8_t* data, uint32_t length, uint32_t* out_length);
+ANRSCDEF uint8_t* anr_sc_inflate(uint8_t* data, uint32_t length, uint32_t* out_length);
+
+#endif // INCLUDE_ANR_SC_H
+
+#ifdef ANR_SC_IMPLEMENTATION
+
+typedef struct
+{
+ uint8_t val;
+ uint32_t count;
+} anr_sc_val;
+
+#define MAX_ENCODED_CHARS 16
+#define TABLE_SIZE MAX_ENCODED_CHARS
+
+int cmpfunc (const void * a, const void * b) {
+ return ( (*(anr_sc_val*)a).count - (*(anr_sc_val*)b).count );
+}
+
+uint8_t* anr_sc_inflate(uint8_t* data, uint32_t length, uint32_t* out_length)
+{
+ anr_sc_val table[TABLE_SIZE];
+ for (int i = 0; i < TABLE_SIZE; i++)
+ {
+ table[i].val = data[i];
+ }
+
+ uint8_t* inflated = malloc(length*8); // ballpark
+ uint32_t inflated_cursor = 0;
+
+ uint8_t current_block_table = 0;
+ uint8_t block_table_index = 8;
+ uint32_t read_cursor_offset = 0;
+ for (int i = TABLE_SIZE; i < length;)
+ {
+ if (block_table_index == 8) {
+ if (read_cursor_offset == 4) {
+ read_cursor_offset = 0;
+ i++;
+ }
+
+ current_block_table = data[i++];
+ block_table_index = 0;
+ continue;
+ }
+
+ uint8_t is_halve = (current_block_table >> block_table_index) & 0x1;
+ if (read_cursor_offset == 0)
+ {
+ if (is_halve)
+ {
+ uint8_t table_index = (data[i] >> 4);
+ inflated[inflated_cursor++] = table[table_index].val;
+ read_cursor_offset = 4;
+ }
+ else
+ {
+ inflated[inflated_cursor++] = data[i];
+ read_cursor_offset = 0;
+ i++;
+ }
+ }
+ else if (read_cursor_offset == 4)
+ {
+ if (is_halve)
+ {
+ uint8_t table_index = (data[i] & 0xF);
+ inflated[inflated_cursor++] = table[table_index].val;
+
+ read_cursor_offset = 0;
+ i++;
+ }
+ else
+ {
+ uint8_t top = data[i] & 0xF;
+ uint8_t bottom = data[i+1] & 0xF0;
+ uint8_t val = (top << 4) | (bottom >> 4);
+ inflated[inflated_cursor++] = val;
+
+ read_cursor_offset = 4;
+ i++;
+ }
+ }
+
+
+ block_table_index++;
+ }
+
+ *out_length = inflated_cursor;
+ return inflated;
+}
+
+uint8_t* anr_sc_deflate(uint8_t* data, uint32_t length, uint32_t* out_length)
+{
+ anr_sc_val values[256];
+ for (uint32_t i = 0; i < 256; i++)
+ {
+ values[i].val = i;
+ values[i].count = 0;
+ }
+
+ for (uint32_t i = 0; i < length; i++)
+ {
+ values[data[i]].count++;
+ }
+ qsort(values, 256, sizeof(anr_sc_val), cmpfunc);
+
+ anr_sc_val table[TABLE_SIZE];
+ memset(table, 0, sizeof(table));
+ for (int i = 0; i < 256; i++)
+ {
+ if (values[i].count == 0) continue;
+ if (i < 256-MAX_ENCODED_CHARS) continue;
+ table[256-i-1] = values[i];
+ }
+
+ // Find index of last indexable byte.
+ uint32_t index_of_last_byte = 0;
+ for (uint32_t i = 0; i < length; i++)
+ {
+ for (uint8_t x = 0; x < MAX_ENCODED_CHARS; x++) {
+ if (table[x].count == 0) continue;
+ if (data[i] == table[x].val) {
+ index_of_last_byte = i;
+ }
+ }
+ }
+
+ // Write encoding table.
+ uint32_t max_size = length + MAX_ENCODED_CHARS + (length/8);
+ uint8_t* deflated = malloc(max_size);
+ memset(deflated, 0, max_size);
+ uint32_t deflated_cursor = 0;
+ uint32_t deflate_cursor_offset = 0;
+ for (int i = 0; i < MAX_ENCODED_CHARS; i++)
+ {
+ deflated[deflated_cursor++] = table[i].val;
+ }
+
+ uint8_t current_block_table = 0;
+ uint32_t bits_in_block = 8;
+ uint32_t current_block_index = 0;
+ for (int i = 0; i < length; i++)
+ {
+ if (bits_in_block == 8) {
+ bits_in_block = 0;
+ current_block_table = 0;
+ current_block_index = deflated_cursor;
+ deflated_cursor++; // Reserved for block table.
+ }
+
+ uint8_t is_halve = 0;
+ if (i == index_of_last_byte) {
+ if (deflate_cursor_offset == 0) {
+ goto skip_last_halfbyte;
+ }
+ }
+
+ for (uint8_t x = 0; x < MAX_ENCODED_CHARS; x++) {
+ if (data[i] == table[x].val) {
+ is_halve = 1;
+
+ if (deflate_cursor_offset == 0)
+ {
+ deflated[deflated_cursor] = x << 4;
+ deflate_cursor_offset = 4;
+ }
+ else if (deflate_cursor_offset == 4)
+ {
+ deflated[deflated_cursor++] |= x;
+ deflate_cursor_offset = 0;
+ }
+ break;
+ }
+ }
+
+
+ skip_last_halfbyte:
+ if (!is_halve)
+ {
+ if (deflate_cursor_offset == 0)
+ {
+ deflated[deflated_cursor++] = data[i];
+ }
+ else if (deflate_cursor_offset == 4)
+ {
+ uint8_t top = data[i] >> 4;
+ uint8_t bottom = data[i] << 4;
+ deflated[deflated_cursor++] |= top;
+ deflated[deflated_cursor] |= bottom;
+ }
+ }
+
+ current_block_table |= (is_halve << bits_in_block);
+ bits_in_block++;
+ if (bits_in_block == 8 || i+1>= length) {
+ deflated[current_block_index] = current_block_table;
+
+ if (deflate_cursor_offset == 4) {
+ deflate_cursor_offset = 0;
+ deflated_cursor++;
+ }
+ }
+ }
+
+ #ifdef ANR_SC_DEBUG
+ printf(" Deflated (%.1f%%)\n", (float)deflated_cursor/length*100.0f);
+ #endif
+
+ *out_length = deflated_cursor;
+ return deflated;
+}
+
+
+#endif // ANR_SC_IMPLEMENTATION
+
+/*
+------------------------------------------------------------------------------
+This software is available under 2 licenses -- choose whichever you prefer.
+------------------------------------------------------------------------------
+ALTERNATIVE A - MIT License
+Copyright (c) 2024 Aldrik Ramaekers
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
+of the Software, and to permit persons to whom the Software is furnished to do
+so, subject to the following conditions:
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+------------------------------------------------------------------------------
+ALTERNATIVE B - Public Domain (www.unlicense.org)
+This is free and unencumbered software released into the public domain.
+Anyone is free to copy, modify, publish, use, compile, sell, or distribute this
+software, either in source code form or as a compiled binary, for any purpose,
+commercial or non-commercial, and by any means.
+In jurisdictions that recognize copyright laws, the author or authors of this
+software dedicate any and all copyright interest in the software to the public
+domain. We make this dedication for the benefit of the public at large and to
+the detriment of our heirs and successors. We intend this dedication to be an
+overt act of relinquishment in perpetuity of all present and future rights to
+this software under copyright law.
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+------------------------------------------------------------------------------
+*/ \ No newline at end of file
diff --git a/libs/anr/examples/Makefile b/libs/anr/examples/Makefile
new file mode 100644
index 0000000..e7dcf86
--- /dev/null
+++ b/libs/anr/examples/Makefile
@@ -0,0 +1,19 @@
+ifeq ($(OS),Windows_NT)
+ EXTENSION := .exe
+else
+ EXTENSION :=
+endif
+
+
+data:
+ gcc -g -Wall test_data.c -o bin/test_data$(EXTENSION)
+ ./bin/test_data$(EXTENSION)
+
+pdf:
+ rm bin/test_pdf.pdf || true
+ gcc -g -Wall test_pdf.c -o bin/test_pdf$(EXTENSION)
+ ./bin/test_pdf$(EXTENSION)
+ qpdf$(EXTENSION) --check bin/test_pdf.pdf
+sc:
+ gcc -g -Wall test_sc.c -o bin/test_sc$(EXTENSION)
+ ./bin/test_sc$(EXTENSION) \ No newline at end of file
diff --git a/libs/anr/examples/hash.txt b/libs/anr/examples/hash.txt
new file mode 100644
index 0000000..0d996f8
--- /dev/null
+++ b/libs/anr/examples/hash.txt
Binary files differ
diff --git a/libs/anr/examples/res/ButterflyKids-Regular.ttf b/libs/anr/examples/res/ButterflyKids-Regular.ttf
new file mode 100644
index 0000000..4c37842
--- /dev/null
+++ b/libs/anr/examples/res/ButterflyKids-Regular.ttf
Binary files differ
diff --git a/libs/anr/examples/res/bible.txt b/libs/anr/examples/res/bible.txt
new file mode 100644
index 0000000..e838c4c
--- /dev/null
+++ b/libs/anr/examples/res/bible.txt
@@ -0,0 +1,100182 @@
+1:1 In the beginning God created the heaven and the earth.
+
+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.
+
+1:3 And God said, Let there be light: and there was light.
+
+1:4 And God saw the light, that it was good: and God divided the light
+from the darkness.
+
+1:5 And God called the light Day, and the darkness he called Night.
+And the evening and the morning were the first day.
+
+1:6 And God said, Let there be a firmament in the midst of the waters,
+and let it divide the waters from the waters.
+
+1:7 And God made the firmament, and divided the waters which were
+under the firmament from the waters which were above the firmament:
+and it was so.
+
+1:8 And God called the firmament Heaven. And the evening and the
+morning were the second day.
+
+1:9 And God said, Let the waters under the heaven be gathered together
+unto one place, and let the dry land appear: and it was so.
+
+1:10 And God called the dry land Earth; and the gathering together of
+the waters called he Seas: and God saw that it was good.
+
+1:11 And God said, Let the earth bring forth grass, the herb yielding
+seed, and the fruit tree yielding fruit after his kind, whose seed is
+in itself, upon the earth: and it was so.
+
+1:12 And the earth brought forth grass, and herb yielding seed after
+his kind, and the tree yielding fruit, whose seed was in itself, after
+his kind: and God saw that it was good.
+
+1:13 And the evening and the morning were the third day.
+
+1:14 And God said, Let there be lights in the firmament of the heaven
+to divide the day from the night; and let them be for signs, and for
+seasons, and for days, and years: 1:15 And let them be for lights in
+the firmament of the heaven to give light upon the earth: and it was
+so.
+
+1:16 And God made two great lights; the greater light to rule the day,
+and the lesser light to rule the night: he made the stars also.
+
+1:17 And God set them in the firmament of the heaven to give light
+upon the earth, 1:18 And to rule over the day and over the night, and
+to divide the light from the darkness: and God saw that it was good.
+
+1:19 And the evening and the morning were the fourth day.
+
+1:20 And God said, Let the waters bring forth abundantly the moving
+creature that hath life, and fowl that may fly above the earth in the
+open firmament of heaven.
+
+1:21 And God created great whales, and every living creature that
+moveth, which the waters brought forth abundantly, after their kind,
+and every winged fowl after his kind: and God saw that it was good.
+
+1:22 And God blessed them, saying, Be fruitful, and multiply, and fill
+the waters in the seas, and let fowl multiply in the earth.
+
+1:23 And the evening and the morning were the fifth day.
+
+1:24 And God said, Let the earth bring forth the living creature after
+his kind, cattle, and creeping thing, and beast of the earth after his
+kind: and it was so.
+
+1:25 And God made the beast of the earth after his kind, and cattle
+after their kind, and every thing that creepeth upon the earth after
+his kind: and God saw that it was good.
+
+1:26 And God said, Let us make man in our image, after our likeness:
+and let them have dominion over the fish of the sea, and over the fowl
+of the air, and over the cattle, and over all the earth, and over
+every creeping thing that creepeth upon the earth.
+
+1:27 So God created man in his own image, in the image of God created
+he him; male and female created he them.
+
+1:28 And God blessed them, and God said unto them, Be fruitful, and
+multiply, and replenish the earth, and subdue it: and have dominion
+over the fish of the sea, and over the fowl of the air, and over every
+living thing that moveth upon the earth.
+
+1:29 And God said, Behold, I have given you every herb bearing seed,
+which is upon the face of all the earth, and every tree, in the which
+is the fruit of a tree yielding seed; to you it shall be for meat.
+
+1:30 And to every beast of the earth, and to every fowl of the air,
+and to every thing that creepeth upon the earth, wherein there is
+life, I have given every green herb for meat: and it was so.
+
+1:31 And God saw every thing that he had made, and, behold, it was
+very good. And the evening and the morning were the sixth day.
+
+2:1 Thus the heavens and the earth were finished, and all the host of
+them.
+
+2:2 And on the seventh day God ended his work which he had made; and
+he rested on the seventh day from all his work which he had made.
+
+2:3 And God blessed the seventh day, and sanctified it: because that
+in it he had rested from all his work which God created and made.
+
+2:4 These are the generations of the heavens and of the earth when
+they were created, in the day that the LORD God made the earth and the
+heavens, 2:5 And every plant of the field before it was in the earth,
+and every herb of the field before it grew: for the LORD God had not
+caused it to rain upon the earth, and there was not a man to till the
+ground.
+
+2:6 But there went up a mist from the earth, and watered the whole
+face of the ground.
+
+2:7 And the LORD God formed man of the dust of the ground, and
+breathed into his nostrils the breath of life; and man became a living
+soul.
+
+2:8 And the LORD God planted a garden eastward in Eden; and there he
+put the man whom he had formed.
+
+2:9 And out of the ground made the LORD God to grow every tree that is
+pleasant to the sight, and good for food; the tree of life also in the
+midst of the garden, and the tree of knowledge of good and evil.
+
+2:10 And a river went out of Eden to water the garden; and from thence
+it was parted, and became into four heads.
+
+2:11 The name of the first is Pison: that is it which compasseth the
+whole land of Havilah, where there is gold; 2:12 And the gold of that
+land is good: there is bdellium and the onyx stone.
+
+2:13 And the name of the second river is Gihon: the same is it that
+compasseth the whole land of Ethiopia.
+
+2:14 And the name of the third river is Hiddekel: that is it which
+goeth toward the east of Assyria. And the fourth river is Euphrates.
+
+2:15 And the LORD God took the man, and put him into the garden of
+Eden to dress it and to keep it.
+
+2:16 And the LORD God commanded the man, saying, Of every tree of the
+garden thou mayest freely eat: 2:17 But of the tree of the knowledge
+of good and evil, thou shalt not eat of it: for in the day that thou
+eatest thereof thou shalt surely die.
+
+2:18 And the LORD God said, It is not good that the man should be
+alone; I will make him an help meet for him.
+
+2:19 And out of the ground the LORD God formed every beast of the
+field, and every fowl of the air; and brought them unto Adam to see
+what he would call them: and whatsoever Adam called every living
+creature, that was the name thereof.
+
+2:20 And Adam gave names to all cattle, and to the fowl of the air,
+and to every beast of the field; but for Adam there was not found an
+help meet for him.
+
+2:21 And the LORD God caused a deep sleep to fall upon Adam, and he
+slept: and he took one of his ribs, and closed up the flesh instead
+thereof; 2:22 And the rib, which the LORD God had taken from man, made
+he a woman, and brought her unto the man.
+
+2:23 And Adam said, This is now bone of my bones, and flesh of my
+flesh: she shall be called Woman, because she was taken out of Man.
+
+2:24 Therefore shall a man leave his father and his mother, and shall
+cleave unto his wife: and they shall be one flesh.
+
+2:25 And they were both naked, the man and his wife, and were not
+ashamed.
+
+3:1 Now the serpent was more subtil than any beast of the field which
+the LORD God had made. And he said unto the woman, Yea, hath God said,
+Ye shall not eat of every tree of the garden? 3:2 And the woman said
+unto the serpent, We may eat of the fruit of the trees of the garden:
+3:3 But of the fruit of the tree which is in the midst of the garden,
+God hath said, Ye shall not eat of it, neither shall ye touch it, lest
+ye die.
+
+3:4 And the serpent said unto the woman, Ye shall not surely die: 3:5
+For God doth know that in the day ye eat thereof, then your eyes shall
+be opened, and ye shall be as gods, knowing good and evil.
+
+3:6 And when the woman saw that the tree was good for food, and that
+it was pleasant to the eyes, and a tree to be desired to make one
+wise, she took of the fruit thereof, and did eat, and gave also unto
+her husband with her; and he did eat.
+
+3:7 And the eyes of them both were opened, and they knew that they
+were naked; and they sewed fig leaves together, and made themselves
+aprons.
+
+3:8 And they heard the voice of the LORD God walking in the garden in
+the cool of the day: and Adam and his wife hid themselves from the
+presence of the LORD God amongst the trees of the garden.
+
+3:9 And the LORD God called unto Adam, and said unto him, Where art
+thou? 3:10 And he said, I heard thy voice in the garden, and I was
+afraid, because I was naked; and I hid myself.
+
+3:11 And he said, Who told thee that thou wast naked? Hast thou eaten
+of the tree, whereof I commanded thee that thou shouldest not eat?
+3:12 And the man said, The woman whom thou gavest to be with me, she
+gave me of the tree, and I did eat.
+
+3:13 And the LORD God said unto the woman, What is this that thou hast
+done? And the woman said, The serpent beguiled me, and I did eat.
+
+3:14 And the LORD God said unto the serpent, Because thou hast done
+this, thou art cursed above all cattle, and above every beast of the
+field; upon thy belly shalt thou go, and dust shalt thou eat all the
+days of thy life: 3:15 And I will put enmity between thee and the
+woman, and between thy seed and her seed; it shall bruise thy head,
+and thou shalt bruise his heel.
+
+3:16 Unto the woman he said, I will greatly multiply thy sorrow and
+thy conception; in sorrow thou shalt bring forth children; and thy
+desire shall be to thy husband, and he shall rule over thee.
+
+3:17 And unto Adam he said, Because thou hast hearkened unto the voice
+of thy wife, and hast eaten of the tree, of which I commanded thee,
+saying, Thou shalt not eat of it: cursed is the ground for thy sake;
+in sorrow shalt thou eat of it all the days of thy life; 3:18 Thorns
+also and thistles shall it bring forth to thee; and thou shalt eat the
+herb of the field; 3:19 In the sweat of thy face shalt thou eat bread,
+till thou return unto the ground; for out of it wast thou taken: for
+dust thou art, and unto dust shalt thou return.
+
+3:20 And Adam called his wife's name Eve; because she was the mother
+of all living.
+
+3:21 Unto Adam also and to his wife did the LORD God make coats of
+skins, and clothed them.
+
+3:22 And the LORD God said, Behold, the man is become as one of us, to
+know good and evil: and now, lest he put forth his hand, and take also
+of the tree of life, and eat, and live for ever: 3:23 Therefore the
+LORD God sent him forth from the garden of Eden, to till the ground
+from whence he was taken.
+
+3:24 So he drove out the man; and he placed at the east of the garden
+of Eden Cherubims, and a flaming sword which turned every way, to keep
+the way of the tree of life.
+
+4:1 And Adam knew Eve his wife; and she conceived, and bare Cain, and
+said, I have gotten a man from the LORD.
+
+4:2 And she again bare his brother Abel. And Abel was a keeper of
+sheep, but Cain was a tiller of the ground.
+
+4:3 And in process of time it came to pass, that Cain brought of the
+fruit of the ground an offering unto the LORD.
+
+4:4 And Abel, he also brought of the firstlings of his flock and of
+the fat thereof. And the LORD had respect unto Abel and to his
+offering: 4:5 But unto Cain and to his offering he had not respect.
+And Cain was very wroth, and his countenance fell.
+
+4:6 And the LORD said unto Cain, Why art thou wroth? and why is thy
+countenance fallen? 4:7 If thou doest well, shalt thou not be
+accepted? and if thou doest not well, sin lieth at the door. And unto
+thee shall be his desire, and thou shalt rule over him.
+
+4:8 And Cain talked with Abel his brother: and it came to pass, when
+they were in the field, that Cain rose up against Abel his brother,
+and slew him.
+
+4:9 And the LORD said unto Cain, Where is Abel thy brother? And he
+said, I know not: Am I my brother's keeper? 4:10 And he said, What
+hast thou done? the voice of thy brother's blood crieth unto me from
+the ground.
+
+4:11 And now art thou cursed from the earth, which hath opened her
+mouth to receive thy brother's blood from thy hand; 4:12 When thou
+tillest the ground, it shall not henceforth yield unto thee her
+strength; a fugitive and a vagabond shalt thou be in the earth.
+
+4:13 And Cain said unto the LORD, My punishment is greater than I can
+bear.
+
+4:14 Behold, thou hast driven me out this day from the face of the
+earth; and from thy face shall I be hid; and I shall be a fugitive and
+a vagabond in the earth; and it shall come to pass, that every one
+that findeth me shall slay me.
+
+4:15 And the LORD said unto him, Therefore whosoever slayeth Cain,
+vengeance shall be taken on him sevenfold. And the LORD set a mark
+upon Cain, lest any finding him should kill him.
+
+4:16 And Cain went out from the presence of the LORD, and dwelt in the
+land of Nod, on the east of Eden.
+
+4:17 And Cain knew his wife; and she conceived, and bare Enoch: and he
+builded a city, and called the name of the city, after the name of his
+son, Enoch.
+
+4:18 And unto Enoch was born Irad: and Irad begat Mehujael: and
+Mehujael begat Methusael: and Methusael begat Lamech.
+
+4:19 And Lamech took unto him two wives: the name of the one was Adah,
+and the name of the other Zillah.
+
+4:20 And Adah bare Jabal: he was the father of such as dwell in tents,
+and of such as have cattle.
+
+4:21 And his brother's name was Jubal: he was the father of all such
+as handle the harp and organ.
+
+4:22 And Zillah, she also bare Tubalcain, an instructer of every
+artificer in brass and iron: and the sister of Tubalcain was Naamah.
+
+4:23 And Lamech said unto his wives, Adah and Zillah, Hear my voice;
+ye wives of Lamech, hearken unto my speech: for I have slain a man to
+my wounding, and a young man to my hurt.
+
+4:24 If Cain shall be avenged sevenfold, truly Lamech seventy and
+sevenfold.
+
+4:25 And Adam knew his wife again; and she bare a son, and called his
+name Seth: For God, said she, hath appointed me another seed instead
+of Abel, whom Cain slew.
+
+4:26 And to Seth, to him also there was born a son; and he called his
+name Enos: then began men to call upon the name of the LORD.
+
+5:1 This is the book of the generations of Adam. In the day that God
+created man, in the likeness of God made he him; 5:2 Male and female
+created he them; and blessed them, and called their name Adam, in the
+day when they were created.
+
+5:3 And Adam lived an hundred and thirty years, and begat a son in his
+own likeness, and after his image; and called his name Seth: 5:4 And
+the days of Adam after he had begotten Seth were eight hundred years:
+and he begat sons and daughters: 5:5 And all the days that Adam lived
+were nine hundred and thirty years: and he died.
+
+5:6 And Seth lived an hundred and five years, and begat Enos: 5:7 And
+Seth lived after he begat Enos eight hundred and seven years, and
+begat sons and daughters: 5:8 And all the days of Seth were nine
+hundred and twelve years: and he died.
+
+5:9 And Enos lived ninety years, and begat Cainan: 5:10 And Enos lived
+after he begat Cainan eight hundred and fifteen years, and begat sons
+and daughters: 5:11 And all the days of Enos were nine hundred and
+five years: and he died.
+
+5:12 And Cainan lived seventy years and begat Mahalaleel: 5:13 And
+Cainan lived after he begat Mahalaleel eight hundred and forty years,
+and begat sons and daughters: 5:14 And all the days of Cainan were
+nine hundred and ten years: and he died.
+
+5:15 And Mahalaleel lived sixty and five years, and begat Jared: 5:16
+And Mahalaleel lived after he begat Jared eight hundred and thirty
+years, and begat sons and daughters: 5:17 And all the days of
+Mahalaleel were eight hundred ninety and five years: and he died.
+
+5:18 And Jared lived an hundred sixty and two years, and he begat
+Enoch: 5:19 And Jared lived after he begat Enoch eight hundred years,
+and begat sons and daughters: 5:20 And all the days of Jared were nine
+hundred sixty and two years: and he died.
+
+5:21 And Enoch lived sixty and five years, and begat Methuselah: 5:22
+And Enoch walked with God after he begat Methuselah three hundred
+years, and begat sons and daughters: 5:23 And all the days of Enoch
+were three hundred sixty and five years: 5:24 And Enoch walked with
+God: and he was not; for God took him.
+
+5:25 And Methuselah lived an hundred eighty and seven years, and begat
+Lamech.
+
+5:26 And Methuselah lived after he begat Lamech seven hundred eighty
+and two years, and begat sons and daughters: 5:27 And all the days of
+Methuselah were nine hundred sixty and nine years: and he died.
+
+5:28 And Lamech lived an hundred eighty and two years, and begat a
+son: 5:29 And he called his name Noah, saying, This same shall comfort
+us concerning our work and toil of our hands, because of the ground
+which the LORD hath cursed.
+
+5:30 And Lamech lived after he begat Noah five hundred ninety and five
+years, and begat sons and daughters: 5:31 And all the days of Lamech
+were seven hundred seventy and seven years: and he died.
+
+5:32 And Noah was five hundred years old: and Noah begat Shem, Ham,
+and Japheth.
+
+6:1 And it came to pass, when men began to multiply on the face of the
+earth, and daughters were born unto them, 6:2 That the sons of God saw
+the daughters of men that they were fair; and they took them wives of
+all which they chose.
+
+6:3 And the LORD said, My spirit shall not always strive with man, for
+that he also is flesh: yet his days shall be an hundred and twenty
+years.
+
+6:4 There were giants in the earth in those days; and also after that,
+when the sons of God came in unto the daughters of men, and they bare
+children to them, the same became mighty men which were of old, men of
+renown.
+
+6:5 And God saw that the wickedness of man was great in the earth, and
+that every imagination of the thoughts of his heart was only evil
+continually.
+
+6:6 And it repented the LORD that he had made man on the earth, and it
+grieved him at his heart.
+
+6:7 And the LORD said, I will destroy man whom I have created from the
+face of the earth; both man, and beast, and the creeping thing, and
+the fowls of the air; for it repenteth me that I have made them.
+
+6:8 But Noah found grace in the eyes of the LORD.
+
+6:9 These are the generations of Noah: Noah was a just man and perfect
+in his generations, and Noah walked with God.
+
+6:10 And Noah begat three sons, Shem, Ham, and Japheth.
+
+6:11 The earth also was corrupt before God, and the earth was filled
+with violence.
+
+6:12 And God looked upon the earth, and, behold, it was corrupt; for
+all flesh had corrupted his way upon the earth.
+
+6:13 And God said unto Noah, The end of all flesh is come before me;
+for the earth is filled with violence through them; and, behold, I
+will destroy them with the earth.
+
+6:14 Make thee an ark of gopher wood; rooms shalt thou make in the
+ark, and shalt pitch it within and without with pitch.
+
+6:15 And this is the fashion which thou shalt make it of: The length
+of the ark shall be three hundred cubits, the breadth of it fifty
+cubits, and the height of it thirty cubits.
+
+6:16 A window shalt thou make to the ark, and in a cubit shalt thou
+finish it above; and the door of the ark shalt thou set in the side
+thereof; with lower, second, and third stories shalt thou make it.
+
+6:17 And, behold, I, even I, do bring a flood of waters upon the
+earth, to destroy all flesh, wherein is the breath of life, from under
+heaven; and every thing that is in the earth shall die.
+
+6:18 But with thee will I establish my covenant; and thou shalt come
+into the ark, thou, and thy sons, and thy wife, and thy sons' wives
+with thee.
+
+6:19 And of every living thing of all flesh, two of every sort shalt
+thou bring into the ark, to keep them alive with thee; they shall be
+male and female.
+
+6:20 Of fowls after their kind, and of cattle after their kind, of
+every creeping thing of the earth after his kind, two of every sort
+shall come unto thee, to keep them alive.
+
+6:21 And take thou unto thee of all food that is eaten, and thou shalt
+gather it to thee; and it shall be for food for thee, and for them.
+
+6:22 Thus did Noah; according to all that God commanded him, so did
+he.
+
+7:1 And the LORD said unto Noah, Come thou and all thy house into the
+ark; for thee have I seen righteous before me in this generation.
+
+7:2 Of every clean beast thou shalt take to thee by sevens, the male
+and his female: and of beasts that are not clean by two, the male and
+his female.
+
+7:3 Of fowls also of the air by sevens, the male and the female; to
+keep seed alive upon the face of all the earth.
+
+7:4 For yet seven days, and I will cause it to rain upon the earth
+forty days and forty nights; and every living substance that I have
+made will I destroy from off the face of the earth.
+
+7:5 And Noah did according unto all that the LORD commanded him.
+
+7:6 And Noah was six hundred years old when the flood of waters was
+upon the earth.
+
+7:7 And Noah went in, and his sons, and his wife, and his sons' wives
+with him, into the ark, because of the waters of the flood.
+
+7:8 Of clean beasts, and of beasts that are not clean, and of fowls,
+and of every thing that creepeth upon the earth, 7:9 There went in two
+and two unto Noah into the ark, the male and the female, as God had
+commanded Noah.
+
+7:10 And it came to pass after seven days, that the waters of the
+flood were upon the earth.
+
+7:11 In the six hundredth year of Noah's life, in the second month,
+the seventeenth day of the month, the same day were all the fountains
+of the great deep broken up, and the windows of heaven were opened.
+
+7:12 And the rain was upon the earth forty days and forty nights.
+
+7:13 In the selfsame day entered Noah, and Shem, and Ham, and Japheth,
+the sons of Noah, and Noah's wife, and the three wives of his sons
+with them, into the ark; 7:14 They, and every beast after his kind,
+and all the cattle after their kind, and every creeping thing that
+creepeth upon the earth after his kind, and every fowl after his kind,
+every bird of every sort.
+
+7:15 And they went in unto Noah into the ark, two and two of all
+flesh, wherein is the breath of life.
+
+7:16 And they that went in, went in male and female of all flesh, as
+God had commanded him: and the LORD shut him in.
+
+7:17 And the flood was forty days upon the earth; and the waters
+increased, and bare up the ark, and it was lift up above the earth.
+
+7:18 And the waters prevailed, and were increased greatly upon the
+earth; and the ark went upon the face of the waters.
+
+7:19 And the waters prevailed exceedingly upon the earth; and all the
+high hills, that were under the whole heaven, were covered.
+
+7:20 Fifteen cubits upward did the waters prevail; and the mountains
+were covered.
+
+7:21 And all flesh died that moved upon the earth, both of fowl, and
+of cattle, and of beast, and of every creeping thing that creepeth
+upon the earth, and every man: 7:22 All in whose nostrils was the
+breath of life, of all that was in the dry land, died.
+
+7:23 And every living substance was destroyed which was upon the face
+of the ground, both man, and cattle, and the creeping things, and the
+fowl of the heaven; and they were destroyed from the earth: and Noah
+only remained alive, and they that were with him in the ark.
+
+7:24 And the waters prevailed upon the earth an hundred and fifty
+days.
+
+8:1 And God remembered Noah, and every living thing, and all the
+cattle that was with him in the ark: and God made a wind to pass over
+the earth, and the waters asswaged; 8:2 The fountains also of the deep
+and the windows of heaven were stopped, and the rain from heaven was
+restrained; 8:3 And the waters returned from off the earth
+continually: and after the end of the hundred and fifty days the
+waters were abated.
+
+8:4 And the ark rested in the seventh month, on the seventeenth day of
+the month, upon the mountains of Ararat.
+
+8:5 And the waters decreased continually until the tenth month: in the
+tenth month, on the first day of the month, were the tops of the
+mountains seen.
+
+8:6 And it came to pass at the end of forty days, that Noah opened the
+window of the ark which he had made: 8:7 And he sent forth a raven,
+which went forth to and fro, until the waters were dried up from off
+the earth.
+
+8:8 Also he sent forth a dove from him, to see if the waters were
+abated from off the face of the ground; 8:9 But the dove found no rest
+for the sole of her foot, and she returned unto him into the ark, for
+the waters were on the face of the whole earth: then he put forth his
+hand, and took her, and pulled her in unto him into the ark.
+
+8:10 And he stayed yet other seven days; and again he sent forth the
+dove out of the ark; 8:11 And the dove came in to him in the evening;
+and, lo, in her mouth was an olive leaf pluckt off: so Noah knew that
+the waters were abated from off the earth.
+
+8:12 And he stayed yet other seven days; and sent forth the dove;
+which returned not again unto him any more.
+
+8:13 And it came to pass in the six hundredth and first year, in the
+first month, the first day of the month, the waters were dried up from
+off the earth: and Noah removed the covering of the ark, and looked,
+and, behold, the face of the ground was dry.
+
+8:14 And in the second month, on the seven and twentieth day of the
+month, was the earth dried.
+
+8:15 And God spake unto Noah, saying, 8:16 Go forth of the ark, thou,
+and thy wife, and thy sons, and thy sons' wives with thee.
+
+8:17 Bring forth with thee every living thing that is with thee, of
+all flesh, both of fowl, and of cattle, and of every creeping thing
+that creepeth upon the earth; that they may breed abundantly in the
+earth, and be fruitful, and multiply upon the earth.
+
+8:18 And Noah went forth, and his sons, and his wife, and his sons'
+wives with him: 8:19 Every beast, every creeping thing, and every
+fowl, and whatsoever creepeth upon the earth, after their kinds, went
+forth out of the ark.
+
+8:20 And Noah builded an altar unto the LORD; and took of every clean
+beast, and of every clean fowl, and offered burnt offerings on the
+altar.
+
+8:21 And the LORD smelled a sweet savour; and the LORD said in his
+heart, I will not again curse the ground any more for man's sake; for
+the imagination of man's heart is evil from his youth; neither will I
+again smite any more every thing living, as I have done.
+
+8:22 While the earth remaineth, seedtime and harvest, and cold and
+heat, and summer and winter, and day and night shall not cease.
+
+9:1 And God blessed Noah and his sons, and said unto them, Be
+fruitful, and multiply, and replenish the earth.
+
+9:2 And the fear of you and the dread of you shall be upon every beast
+of the earth, and upon every fowl of the air, upon all that moveth
+upon the earth, and upon all the fishes of the sea; into your hand are
+they delivered.
+
+9:3 Every moving thing that liveth shall be meat for you; even as the
+green herb have I given you all things.
+
+9:4 But flesh with the life thereof, which is the blood thereof, shall
+ye not eat.
+
+9:5 And surely your blood of your lives will I require; at the hand of
+every beast will I require it, and at the hand of man; at the hand of
+every man's brother will I require the life of man.
+
+9:6 Whoso sheddeth man's blood, by man shall his blood be shed: for in
+the image of God made he man.
+
+9:7 And you, be ye fruitful, and multiply; bring forth abundantly in
+the earth, and multiply therein.
+
+9:8 And God spake unto Noah, and to his sons with him, saying, 9:9 And
+I, behold, I establish my covenant with you, and with your seed after
+you; 9:10 And with every living creature that is with you, of the
+fowl, of the cattle, and of every beast of the earth with you; from
+all that go out of the ark, to every beast of the earth.
+
+9:11 And I will establish my covenant with you, neither shall all
+flesh be cut off any more by the waters of a flood; neither shall
+there any more be a flood to destroy the earth.
+
+9:12 And God said, This is the token of the covenant which I make
+between me and you and every living creature that is with you, for
+perpetual generations: 9:13 I do set my bow in the cloud, and it shall
+be for a token of a covenant between me and the earth.
+
+9:14 And it shall come to pass, when I bring a cloud over the earth,
+that the bow shall be seen in the cloud: 9:15 And I will remember my
+covenant, which is between me and you and every living creature of all
+flesh; and the waters shall no more become a flood to destroy all
+flesh.
+
+9:16 And the bow shall be in the cloud; and I will look upon it, that
+I may remember the everlasting covenant between God and every living
+creature of all flesh that is upon the earth.
+
+9:17 And God said unto Noah, This is the token of the covenant, which
+I have established between me and all flesh that is upon the earth.
+
+9:18 And the sons of Noah, that went forth of the ark, were Shem, and
+Ham, and Japheth: and Ham is the father of Canaan.
+
+9:19 These are the three sons of Noah: and of them was the whole earth
+overspread.
+
+9:20 And Noah began to be an husbandman, and he planted a vineyard:
+9:21 And he drank of the wine, and was drunken; and he was uncovered
+within his tent.
+
+9:22 And Ham, the father of Canaan, saw the nakedness of his father,
+and told his two brethren without.
+
+9:23 And Shem and Japheth took a garment, and laid it upon both their
+shoulders, and went backward, and covered the nakedness of their
+father; and their faces were backward, and they saw not their father's
+nakedness.
+
+9:24 And Noah awoke from his wine, and knew what his younger son had
+done unto him.
+
+9:25 And he said, Cursed be Canaan; a servant of servants shall he be
+unto his brethren.
+
+9:26 And he said, Blessed be the LORD God of Shem; and Canaan shall be
+his servant.
+
+9:27 God shall enlarge Japheth, and he shall dwell in the tents of
+Shem; and Canaan shall be his servant.
+
+9:28 And Noah lived after the flood three hundred and fifty years.
+
+9:29 And all the days of Noah were nine hundred and fifty years: and
+he died.
+
+10:1 Now these are the generations of the sons of Noah, Shem, Ham, and
+Japheth: and unto them were sons born after the flood.
+
+10:2 The sons of Japheth; Gomer, and Magog, and Madai, and Javan, and
+Tubal, and Meshech, and Tiras.
+
+10:3 And the sons of Gomer; Ashkenaz, and Riphath, and Togarmah.
+
+10:4 And the sons of Javan; Elishah, and Tarshish, Kittim, and
+Dodanim.
+
+10:5 By these were the isles of the Gentiles divided in their lands;
+every one after his tongue, after their families, in their nations.
+
+10:6 And the sons of Ham; Cush, and Mizraim, and Phut, and Canaan.
+
+10:7 And the sons of Cush; Seba, and Havilah, and Sabtah, and Raamah,
+and Sabtechah: and the sons of Raamah; Sheba, and Dedan.
+
+10:8 And Cush begat Nimrod: he began to be a mighty one in the earth.
+
+10:9 He was a mighty hunter before the LORD: wherefore it is said,
+Even as Nimrod the mighty hunter before the LORD.
+
+10:10 And the beginning of his kingdom was Babel, and Erech, and
+Accad, and Calneh, in the land of Shinar.
+
+10:11 Out of that land went forth Asshur, and builded Nineveh, and the
+city Rehoboth, and Calah, 10:12 And Resen between Nineveh and Calah:
+the same is a great city.
+
+10:13 And Mizraim begat Ludim, and Anamim, and Lehabim, and Naphtuhim,
+10:14 And Pathrusim, and Casluhim, (out of whom came Philistim,) and
+Caphtorim.
+
+10:15 And Canaan begat Sidon his first born, and Heth, 10:16 And the
+Jebusite, and the Amorite, and the Girgasite, 10:17 And the Hivite,
+and the Arkite, and the Sinite, 10:18 And the Arvadite, and the
+Zemarite, and the Hamathite: and afterward were the families of the
+Canaanites spread abroad.
+
+10:19 And the border of the Canaanites was from Sidon, as thou comest
+to Gerar, unto Gaza; as thou goest, unto Sodom, and Gomorrah, and
+Admah, and Zeboim, even unto Lasha.
+
+10:20 These are the sons of Ham, after their families, after their
+tongues, in their countries, and in their nations.
+
+10:21 Unto Shem also, the father of all the children of Eber, the
+brother of Japheth the elder, even to him were children born.
+
+10:22 The children of Shem; Elam, and Asshur, and Arphaxad, and Lud,
+and Aram.
+
+10:23 And the children of Aram; Uz, and Hul, and Gether, and Mash.
+
+10:24 And Arphaxad begat Salah; and Salah begat Eber.
+
+10:25 And unto Eber were born two sons: the name of one was Peleg; for
+in his days was the earth divided; and his brother's name was Joktan.
+
+10:26 And Joktan begat Almodad, and Sheleph, and Hazarmaveth, and
+Jerah, 10:27 And Hadoram, and Uzal, and Diklah, 10:28 And Obal, and
+Abimael, and Sheba, 10:29 And Ophir, and Havilah, and Jobab: all these
+were the sons of Joktan.
+
+10:30 And their dwelling was from Mesha, as thou goest unto Sephar a
+mount of the east.
+
+10:31 These are the sons of Shem, after their families, after their
+tongues, in their lands, after their nations.
+
+10:32 These are the families of the sons of Noah, after their
+generations, in their nations: and by these were the nations divided
+in the earth after the flood.
+
+11:1 And the whole earth was of one language, and of one speech.
+
+11:2 And it came to pass, as they journeyed from the east, that they
+found a plain in the land of Shinar; and they dwelt there.
+
+11:3 And they said one to another, Go to, let us make brick, and burn
+them thoroughly. And they had brick for stone, and slime had they for
+morter.
+
+11:4 And they said, Go to, let us build us a city and a tower, whose
+top may reach unto heaven; and let us make us a name, lest we be
+scattered abroad upon the face of the whole earth.
+
+11:5 And the LORD came down to see the city and the tower, which the
+children of men builded.
+
+11:6 And the LORD said, Behold, the people is one, and they have all
+one language; and this they begin to do: and now nothing will be
+restrained from them, which they have imagined to do.
+
+11:7 Go to, let us go down, and there confound their language, that
+they may not understand one another's speech.
+
+11:8 So the LORD scattered them abroad from thence upon the face of
+all the earth: and they left off to build the city.
+
+11:9 Therefore is the name of it called Babel; because the LORD did
+there confound the language of all the earth: and from thence did the
+LORD scatter them abroad upon the face of all the earth.
+
+11:10 These are the generations of Shem: Shem was an hundred years
+old, and begat Arphaxad two years after the flood: 11:11 And Shem
+lived after he begat Arphaxad five hundred years, and begat sons and
+daughters.
+
+11:12 And Arphaxad lived five and thirty years, and begat Salah: 11:13
+And Arphaxad lived after he begat Salah four hundred and three years,
+and begat sons and daughters.
+
+11:14 And Salah lived thirty years, and begat Eber: 11:15 And Salah
+lived after he begat Eber four hundred and three years, and begat sons
+and daughters.
+
+11:16 And Eber lived four and thirty years, and begat Peleg: 11:17 And
+Eber lived after he begat Peleg four hundred and thirty years, and
+begat sons and daughters.
+
+11:18 And Peleg lived thirty years, and begat Reu: 11:19 And Peleg
+lived after he begat Reu two hundred and nine years, and begat sons
+and daughters.
+
+11:20 And Reu lived two and thirty years, and begat Serug: 11:21 And
+Reu lived after he begat Serug two hundred and seven years, and begat
+sons and daughters.
+
+11:22 And Serug lived thirty years, and begat Nahor: 11:23 And Serug
+lived after he begat Nahor two hundred years, and begat sons and
+daughters.
+
+11:24 And Nahor lived nine and twenty years, and begat Terah: 11:25
+And Nahor lived after he begat Terah an hundred and nineteen years,
+and begat sons and daughters.
+
+11:26 And Terah lived seventy years, and begat Abram, Nahor, and
+Haran.
+
+11:27 Now these are the generations of Terah: Terah begat Abram,
+Nahor, and Haran; and Haran begat Lot.
+
+11:28 And Haran died before his father Terah in the land of his
+nativity, in Ur of the Chaldees.
+
+11:29 And Abram and Nahor took them wives: the name of Abram's wife
+was Sarai; and the name of Nahor's wife, Milcah, the daughter of
+Haran, the father of Milcah, and the father of Iscah.
+
+11:30 But Sarai was barren; she had no child.
+
+11:31 And Terah took Abram his son, and Lot the son of Haran his son's
+son, and Sarai his daughter in law, his son Abram's wife; and they
+went forth with them from Ur of the Chaldees, to go into the land of
+Canaan; and they came unto Haran, and dwelt there.
+
+11:32 And the days of Terah were two hundred and five years: and Terah
+died in Haran.
+
+12:1 Now the LORD had said unto Abram, Get thee out of thy country,
+and from thy kindred, and from thy father's house, unto a land that I
+will shew thee: 12:2 And I will make of thee a great nation, and I
+will bless thee, and make thy name great; and thou shalt be a
+blessing: 12:3 And I will bless them that bless thee, and curse him
+that curseth thee: and in thee shall all families of the earth be
+blessed.
+
+12:4 So Abram departed, as the LORD had spoken unto him; and Lot went
+with him: and Abram was seventy and five years old when he departed
+out of Haran.
+
+12:5 And Abram took Sarai his wife, and Lot his brother's son, and all
+their substance that they had gathered, and the souls that they had
+gotten in Haran; and they went forth to go into the land of Canaan;
+and into the land of Canaan they came.
+
+12:6 And Abram passed through the land unto the place of Sichem, unto
+the plain of Moreh. And the Canaanite was then in the land.
+
+12:7 And the LORD appeared unto Abram, and said, Unto thy seed will I
+give this land: and there builded he an altar unto the LORD, who
+appeared unto him.
+
+12:8 And he removed from thence unto a mountain on the east of Bethel,
+and pitched his tent, having Bethel on the west, and Hai on the east:
+and there he builded an altar unto the LORD, and called upon the name
+of the LORD.
+
+12:9 And Abram journeyed, going on still toward the south.
+
+12:10 And there was a famine in the land: and Abram went down into
+Egypt to sojourn there; for the famine was grievous in the land.
+
+12:11 And it came to pass, when he was come near to enter into Egypt,
+that he said unto Sarai his wife, Behold now, I know that thou art a
+fair woman to look upon: 12:12 Therefore it shall come to pass, when
+the Egyptians shall see thee, that they shall say, This is his wife:
+and they will kill me, but they will save thee alive.
+
+12:13 Say, I pray thee, thou art my sister: that it may be well with
+me for thy sake; and my soul shall live because of thee.
+
+12:14 And it came to pass, that, when Abram was come into Egypt, the
+Egyptians beheld the woman that she was very fair.
+
+12:15 The princes also of Pharaoh saw her, and commended her before
+Pharaoh: and the woman was taken into Pharaoh's house.
+
+12:16 And he entreated Abram well for her sake: and he had sheep, and
+oxen, and he asses, and menservants, and maidservants, and she asses,
+and camels.
+
+12:17 And the LORD plagued Pharaoh and his house with great plagues
+because of Sarai Abram's wife.
+
+12:18 And Pharaoh called Abram and said, What is this that thou hast
+done unto me? why didst thou not tell me that she was thy wife? 12:19
+Why saidst thou, She is my sister? so I might have taken her to me to
+wife: now therefore behold thy wife, take her, and go thy way.
+
+12:20 And Pharaoh commanded his men concerning him: and they sent him
+away, and his wife, and all that he had.
+
+13:1 And Abram went up out of Egypt, he, and his wife, and all that he
+had, and Lot with him, into the south.
+
+13:2 And Abram was very rich in cattle, in silver, and in gold.
+
+13:3 And he went on his journeys from the south even to Bethel, unto
+the place where his tent had been at the beginning, between Bethel and
+Hai; 13:4 Unto the place of the altar, which he had make there at the
+first: and there Abram called on the name of the LORD.
+
+13:5 And Lot also, which went with Abram, had flocks, and herds, and
+tents.
+
+13:6 And the land was not able to bear them, that they might dwell
+together: for their substance was great, so that they could not dwell
+together.
+
+13:7 And there was a strife between the herdmen of Abram's cattle and
+the herdmen of Lot's cattle: and the Canaanite and the Perizzite
+dwelled then in the land.
+
+13:8 And Abram said unto Lot, Let there be no strife, I pray thee,
+between me and thee, and between my herdmen and thy herdmen; for we be
+brethren.
+
+13:9 Is not the whole land before thee? separate thyself, I pray thee,
+from me: if thou wilt take the left hand, then I will go to the right;
+or if thou depart to the right hand, then I will go to the left.
+
+13:10 And Lot lifted up his eyes, and beheld all the plain of Jordan,
+that it was well watered every where, before the LORD destroyed Sodom
+and Gomorrah, even as the garden of the LORD, like the land of Egypt,
+as thou comest unto Zoar.
+
+13:11 Then Lot chose him all the plain of Jordan; and Lot journeyed
+east: and they separated themselves the one from the other.
+
+13:12 Abram dwelled in the land of Canaan, and Lot dwelled in the
+cities of the plain, and pitched his tent toward Sodom.
+
+13:13 But the men of Sodom were wicked and sinners before the LORD
+exceedingly.
+
+13:14 And the LORD said unto Abram, after that Lot was separated from
+him, Lift up now thine eyes, and look from the place where thou art
+northward, and southward, and eastward, and westward: 13:15 For all
+the land which thou seest, to thee will I give it, and to thy seed for
+ever.
+
+13:16 And I will make thy seed as the dust of the earth: so that if a
+man can number the dust of the earth, then shall thy seed also be
+numbered.
+
+13:17 Arise, walk through the land in the length of it and in the
+breadth of it; for I will give it unto thee.
+
+13:18 Then Abram removed his tent, and came and dwelt in the plain of
+Mamre, which is in Hebron, and built there an altar unto the LORD.
+
+14:1 And it came to pass in the days of Amraphel king of Shinar,
+Arioch king of Ellasar, Chedorlaomer king of Elam, and Tidal king of
+nations; 14:2 That these made war with Bera king of Sodom, and with
+Birsha king of Gomorrah, Shinab king of Admah, and Shemeber king of
+Zeboiim, and the king of Bela, which is Zoar.
+
+14:3 All these were joined together in the vale of Siddim, which is
+the salt sea.
+
+14:4 Twelve years they served Chedorlaomer, and in the thirteenth year
+they rebelled.
+
+14:5 And in the fourteenth year came Chedorlaomer, and the kings that
+were with him, and smote the Rephaims in Ashteroth Karnaim, and the
+Zuzims in Ham, and the Emins in Shaveh Kiriathaim, 14:6 And the
+Horites in their mount Seir, unto Elparan, which is by the wilderness.
+
+14:7 And they returned, and came to Enmishpat, which is Kadesh, and
+smote all the country of the Amalekites, and also the Amorites, that
+dwelt in Hazezontamar.
+
+14:8 And there went out the king of Sodom, and the king of Gomorrah,
+and the king of Admah, and the king of Zeboiim, and the king of Bela
+(the same is Zoar;) and they joined battle with them in the vale of
+Siddim; 14:9 With Chedorlaomer the king of Elam, and with Tidal king
+of nations, and Amraphel king of Shinar, and Arioch king of Ellasar;
+four kings with five.
+
+14:10 And the vale of Siddim was full of slimepits; and the kings of
+Sodom and Gomorrah fled, and fell there; and they that remained fled
+to the mountain.
+
+14:11 And they took all the goods of Sodom and Gomorrah, and all their
+victuals, and went their way.
+
+14:12 And they took Lot, Abram's brother's son, who dwelt in Sodom,
+and his goods, and departed.
+
+14:13 And there came one that had escaped, and told Abram the Hebrew;
+for he dwelt in the plain of Mamre the Amorite, brother of Eshcol, and
+brother of Aner: and these were confederate with Abram.
+
+14:14 And when Abram heard that his brother was taken captive, he
+armed his trained servants, born in his own house, three hundred and
+eighteen, and pursued them unto Dan.
+
+14:15 And he divided himself against them, he and his servants, by
+night, and smote them, and pursued them unto Hobah, which is on the
+left hand of Damascus.
+
+14:16 And he brought back all the goods, and also brought again his
+brother Lot, and his goods, and the women also, and the people.
+
+14:17 And the king of Sodom went out to meet him after his return from
+the slaughter of Chedorlaomer, and of the kings that were with him, at
+the valley of Shaveh, which is the king's dale.
+
+14:18 And Melchizedek king of Salem brought forth bread and wine: and
+he was the priest of the most high God.
+
+14:19 And he blessed him, and said, Blessed be Abram of the most high
+God, possessor of heaven and earth: 14:20 And blessed be the most high
+God, which hath delivered thine enemies into thy hand. And he gave him
+tithes of all.
+
+14:21 And the king of Sodom said unto Abram, Give me the persons, and
+take the goods to thyself.
+
+14:22 And Abram said to the king of Sodom, I have lift up mine hand
+unto the LORD, the most high God, the possessor of heaven and earth,
+14:23 That I will not take from a thread even to a shoelatchet, and
+that I will not take any thing that is thine, lest thou shouldest say,
+I have made Abram rich: 14:24 Save only that which the young men have
+eaten, and the portion of the men which went with me, Aner, Eshcol,
+and Mamre; let them take their portion.
+
+15:1 After these things the word of the LORD came unto Abram in a
+vision, saying, Fear not, Abram: I am thy shield, and thy exceeding
+great reward.
+
+15:2 And Abram said, LORD God, what wilt thou give me, seeing I go
+childless, and the steward of my house is this Eliezer of Damascus?
+15:3 And Abram said, Behold, to me thou hast given no seed: and, lo,
+one born in my house is mine heir.
+
+15:4 And, behold, the word of the LORD came unto him, saying, This
+shall not be thine heir; but he that shall come forth out of thine own
+bowels shall be thine heir.
+
+15:5 And he brought him forth abroad, and said, Look now toward
+heaven, and tell the stars, if thou be able to number them: and he
+said unto him, So shall thy seed be.
+
+15:6 And he believed in the LORD; and he counted it to him for
+righteousness.
+
+15:7 And he said unto him, I am the LORD that brought thee out of Ur
+of the Chaldees, to give thee this land to inherit it.
+
+15:8 And he said, LORD God, whereby shall I know that I shall inherit
+it? 15:9 And he said unto him, Take me an heifer of three years old,
+and a she goat of three years old, and a ram of three years old, and a
+turtledove, and a young pigeon.
+
+15:10 And he took unto him all these, and divided them in the midst,
+and laid each piece one against another: but the birds divided he not.
+
+15:11 And when the fowls came down upon the carcases, Abram drove them
+away.
+
+15:12 And when the sun was going down, a deep sleep fell upon Abram;
+and, lo, an horror of great darkness fell upon him.
+
+15:13 And he said unto Abram, Know of a surety that thy seed shall be
+a stranger in a land that is not their's, and shall serve them; and
+they shall afflict them four hundred years; 15:14 And also that
+nation, whom they shall serve, will I judge: and afterward shall they
+come out with great substance.
+
+15:15 And thou shalt go to thy fathers in peace; thou shalt be buried
+in a good old age.
+
+15:16 But in the fourth generation they shall come hither again: for
+the iniquity of the Amorites is not yet full.
+
+15:17 And it came to pass, that, when the sun went down, and it was
+dark, behold a smoking furnace, and a burning lamp that passed between
+those pieces.
+
+15:18 In the same day the LORD made a covenant with Abram, saying,
+Unto thy seed have I given this land, from the river of Egypt unto the
+great river, the river Euphrates: 15:19 The Kenites, and the
+Kenizzites, and the Kadmonites, 15:20 And the Hittites, and the
+Perizzites, and the Rephaims, 15:21 And the Amorites, and the
+Canaanites, and the Girgashites, and the Jebusites.
+
+16:1 Now Sarai Abram's wife bare him no children: and she had an
+handmaid, an Egyptian, whose name was Hagar.
+
+16:2 And Sarai said unto Abram, Behold now, the LORD hath restrained
+me from bearing: I pray thee, go in unto my maid; it may be that I may
+obtain children by her. And Abram hearkened to the voice of Sarai.
+
+16:3 And Sarai Abram's wife took Hagar her maid the Egyptian, after
+Abram had dwelt ten years in the land of Canaan, and gave her to her
+husband Abram to be his wife.
+
+16:4 And he went in unto Hagar, and she conceived: and when she saw
+that she had conceived, her mistress was despised in her eyes.
+
+16:5 And Sarai said unto Abram, My wrong be upon thee: I have given my
+maid into thy bosom; and when she saw that she had conceived, I was
+despised in her eyes: the LORD judge between me and thee.
+
+16:6 But Abram said unto Sarai, Behold, thy maid is in thine hand; do
+to her as it pleaseth thee. And when Sarai dealt hardly with her, she
+fled from her face.
+
+16:7 And the angel of the LORD found her by a fountain of water in the
+wilderness, by the fountain in the way to Shur.
+
+16:8 And he said, Hagar, Sarai's maid, whence camest thou? and whither
+wilt thou go? And she said, I flee from the face of my mistress Sarai.
+
+16:9 And the angel of the LORD said unto her, Return to thy mistress,
+and submit thyself under her hands.
+
+16:10 And the angel of the LORD said unto her, I will multiply thy
+seed exceedingly, that it shall not be numbered for multitude.
+
+16:11 And the angel of the LORD said unto her, Behold, thou art with
+child and shalt bear a son, and shalt call his name Ishmael; because
+the LORD hath heard thy affliction.
+
+16:12 And he will be a wild man; his hand will be against every man,
+and every man's hand against him; and he shall dwell in the presence
+of all his brethren.
+
+16:13 And she called the name of the LORD that spake unto her, Thou
+God seest me: for she said, Have I also here looked after him that
+seeth me? 16:14 Wherefore the well was called Beerlahairoi; behold,
+it is between Kadesh and Bered.
+
+16:15 And Hagar bare Abram a son: and Abram called his son's name,
+which Hagar bare, Ishmael.
+
+16:16 And Abram was fourscore and six years old, when Hagar bare
+Ishmael to Abram.
+
+17:1 And when Abram was ninety years old and nine, the LORD appeared
+to Abram, and said unto him, I am the Almighty God; walk before me,
+and be thou perfect.
+
+17:2 And I will make my covenant between me and thee, and will
+multiply thee exceedingly.
+
+17:3 And Abram fell on his face: and God talked with him, saying, 17:4
+As for me, behold, my covenant is with thee, and thou shalt be a
+father of many nations.
+
+17:5 Neither shall thy name any more be called Abram, but thy name
+shall be Abraham; for a father of many nations have I made thee.
+
+17:6 And I will make thee exceeding fruitful, and I will make nations
+of thee, and kings shall come out of thee.
+
+17:7 And I will establish my covenant between me and thee and thy seed
+after thee in their generations for an everlasting covenant, to be a
+God unto thee, and to thy seed after thee.
+
+17:8 And I will give unto thee, and to thy seed after thee, the land
+wherein thou art a stranger, all the land of Canaan, for an
+everlasting possession; and I will be their God.
+
+17:9 And God said unto Abraham, Thou shalt keep my covenant therefore,
+thou, and thy seed after thee in their generations.
+
+17:10 This is my covenant, which ye shall keep, between me and you and
+thy seed after thee; Every man child among you shall be circumcised.
+
+17:11 And ye shall circumcise the flesh of your foreskin; and it shall
+be a token of the covenant betwixt me and you.
+
+17:12 And he that is eight days old shall be circumcised among you,
+every man child in your generations, he that is born in the house, or
+bought with money of any stranger, which is not of thy seed.
+
+17:13 He that is born in thy house, and he that is bought with thy
+money, must needs be circumcised: and my covenant shall be in your
+flesh for an everlasting covenant.
+
+17:14 And the uncircumcised man child whose flesh of his foreskin is
+not circumcised, that soul shall be cut off from his people; he hath
+broken my covenant.
+
+17:15 And God said unto Abraham, As for Sarai thy wife, thou shalt not
+call her name Sarai, but Sarah shall her name be.
+
+17:16 And I will bless her, and give thee a son also of her: yea, I
+will bless her, and she shall be a mother of nations; kings of people
+shall be of her.
+
+17:17 Then Abraham fell upon his face, and laughed, and said in his
+heart, Shall a child be born unto him that is an hundred years old?
+and shall Sarah, that is ninety years old, bear? 17:18 And Abraham
+said unto God, O that Ishmael might live before thee! 17:19 And God
+said, Sarah thy wife shall bear thee a son indeed; and thou shalt call
+his name Isaac: and I will establish my covenant with him for an
+everlasting covenant, and with his seed after him.
+
+17:20 And as for Ishmael, I have heard thee: Behold, I have blessed
+him, and will make him fruitful, and will multiply him exceedingly;
+twelve princes shall he beget, and I will make him a great nation.
+
+17:21 But my covenant will I establish with Isaac, which Sarah shall
+bear unto thee at this set time in the next year.
+
+17:22 And he left off talking with him, and God went up from Abraham.
+
+17:23 And Abraham took Ishmael his son, and all that were born in his
+house, and all that were bought with his money, every male among the
+men of Abraham's house; and circumcised the flesh of their foreskin in
+the selfsame day, as God had said unto him.
+
+17:24 And Abraham was ninety years old and nine, when he was
+circumcised in the flesh of his foreskin.
+
+17:25 And Ishmael his son was thirteen years old, when he was
+circumcised in the flesh of his foreskin.
+
+17:26 In the selfsame day was Abraham circumcised, and Ishmael his
+son.
+
+17:27 And all the men of his house, born in the house, and bought with
+money of the stranger, were circumcised with him.
+
+18:1 And the LORD appeared unto him in the plains of Mamre: and he sat
+in the tent door in the heat of the day; 18:2 And he lift up his eyes
+and looked, and, lo, three men stood by him: and when he saw them, he
+ran to meet them from the tent door, and bowed himself toward the
+ground, 18:3 And said, My LORD, if now I have found favour in thy
+sight, pass not away, I pray thee, from thy servant: 18:4 Let a little
+water, I pray you, be fetched, and wash your feet, and rest yourselves
+under the tree: 18:5 And I will fetch a morsel of bread, and comfort
+ye your hearts; after that ye shall pass on: for therefore are ye come
+to your servant. And they said, So do, as thou hast said.
+
+18:6 And Abraham hastened into the tent unto Sarah, and said, Make
+ready quickly three measures of fine meal, knead it, and make cakes
+upon the hearth.
+
+18:7 And Abraham ran unto the herd, and fetcht a calf tender and good,
+and gave it unto a young man; and he hasted to dress it.
+
+18:8 And he took butter, and milk, and the calf which he had dressed,
+and set it before them; and he stood by them under the tree, and they
+did eat.
+
+18:9 And they said unto him, Where is Sarah thy wife? And he said,
+Behold, in the tent.
+
+18:10 And he said, I will certainly return unto thee according to the
+time of life; and, lo, Sarah thy wife shall have a son. And Sarah
+heard it in the tent door, which was behind him.
+
+18:11 Now Abraham and Sarah were old and well stricken in age; and it
+ceased to be with Sarah after the manner of women.
+
+18:12 Therefore Sarah laughed within herself, saying, After I am waxed
+old shall I have pleasure, my lord being old also? 18:13 And the LORD
+said unto Abraham, Wherefore did Sarah laugh, saying, Shall I of a
+surety bear a child, which am old? 18:14 Is any thing too hard for
+the LORD? At the time appointed I will return unto thee, according to
+the time of life, and Sarah shall have a son.
+
+18:15 Then Sarah denied, saying, I laughed not; for she was afraid.
+And he said, Nay; but thou didst laugh.
+
+18:16 And the men rose up from thence, and looked toward Sodom: and
+Abraham went with them to bring them on the way.
+
+18:17 And the LORD said, Shall I hide from Abraham that thing which I
+do; 18:18 Seeing that Abraham shall surely become a great and mighty
+nation, and all the nations of the earth shall be blessed in him?
+18:19 For I know him, that he will command his children and his
+household after him, and they shall keep the way of the LORD, to do
+justice and judgment; that the LORD may bring upon Abraham that which
+he hath spoken of him.
+
+18:20 And the LORD said, Because the cry of Sodom and Gomorrah is
+great, and because their sin is very grievous; 18:21 I will go down
+now, and see whether they have done altogether according to the cry of
+it, which is come unto me; and if not, I will know.
+
+18:22 And the men turned their faces from thence, and went toward
+Sodom: but Abraham stood yet before the LORD.
+
+18:23 And Abraham drew near, and said, Wilt thou also destroy the
+righteous with the wicked? 18:24 Peradventure there be fifty
+righteous within the city: wilt thou also destroy and not spare the
+place for the fifty righteous that are therein? 18:25 That be far
+from thee to do after this manner, to slay the righteous with the
+wicked: and that the righteous should be as the wicked, that be far
+from thee: Shall not the Judge of all the earth do right? 18:26 And
+the LORD said, If I find in Sodom fifty righteous within the city,
+then I will spare all the place for their sakes.
+
+18:27 And Abraham answered and said, Behold now, I have taken upon me
+to speak unto the LORD, which am but dust and ashes: 18:28
+Peradventure there shall lack five of the fifty righteous: wilt thou
+destroy all the city for lack of five? And he said, If I find there
+forty and five, I will not destroy it.
+
+18:29 And he spake unto him yet again, and said, Peradventure there
+shall be forty found there. And he said, I will not do it for forty's
+sake.
+
+18:30 And he said unto him, Oh let not the LORD be angry, and I will
+speak: Peradventure there shall thirty be found there. And he said, I
+will not do it, if I find thirty there.
+
+18:31 And he said, Behold now, I have taken upon me to speak unto the
+LORD: Peradventure there shall be twenty found there. And he said, I
+will not destroy it for twenty's sake.
+
+18:32 And he said, Oh let not the LORD be angry, and I will speak yet
+but this once: Peradventure ten shall be found there. And he said, I
+will not destroy it for ten's sake.
+
+18:33 And the LORD went his way, as soon as he had left communing with
+Abraham: and Abraham returned unto his place.
+
+19:1 And there came two angels to Sodom at even; and Lot sat in the
+gate of Sodom: and Lot seeing them rose up to meet them; and he bowed
+himself with his face toward the ground; 19:2 And he said, Behold now,
+my lords, turn in, I pray you, into your servant's house, and tarry
+all night, and wash your feet, and ye shall rise up early, and go on
+your ways. And they said, Nay; but we will abide in the street all
+night.
+
+19:3 And he pressed upon them greatly; and they turned in unto him,
+and entered into his house; and he made them a feast, and did bake
+unleavened bread, and they did eat.
+
+19:4 But before they lay down, the men of the city, even the men of
+Sodom, compassed the house round, both old and young, all the people
+from every quarter: 19:5 And they called unto Lot, and said unto him,
+Where are the men which came in to thee this night? bring them out
+unto us, that we may know them.
+
+19:6 And Lot went out at the door unto them, and shut the door after
+him, 19:7 And said, I pray you, brethren, do not so wickedly.
+
+19:8 Behold now, I have two daughters which have not known man; let
+me, I pray you, bring them out unto you, and do ye to them as is good
+in your eyes: only unto these men do nothing; for therefore came they
+under the shadow of my roof.
+
+19:9 And they said, Stand back. And they said again, This one fellow
+came in to sojourn, and he will needs be a judge: now will we deal
+worse with thee, than with them. And they pressed sore upon the man,
+even Lot, and came near to break the door.
+
+19:10 But the men put forth their hand, and pulled Lot into the house
+to them, and shut to the door.
+
+19:11 And they smote the men that were at the door of the house with
+blindness, both small and great: so that they wearied themselves to
+find the door.
+
+19:12 And the men said unto Lot, Hast thou here any besides? son in
+law, and thy sons, and thy daughters, and whatsoever thou hast in the
+city, bring them out of this place: 19:13 For we will destroy this
+place, because the cry of them is waxen great before the face of the
+LORD; and the LORD hath sent us to destroy it.
+
+19:14 And Lot went out, and spake unto his sons in law, which married
+his daughters, and said, Up, get you out of this place; for the LORD
+will destroy this city. But he seemed as one that mocked unto his sons
+in law.
+
+19:15 And when the morning arose, then the angels hastened Lot,
+saying, Arise, take thy wife, and thy two daughters, which are here;
+lest thou be consumed in the iniquity of the city.
+
+19:16 And while he lingered, the men laid hold upon his hand, and upon
+the hand of his wife, and upon the hand of his two daughters; the LORD
+being merciful unto him: and they brought him forth, and set him
+without the city.
+
+19:17 And it came to pass, when they had brought them forth abroad,
+that he said, Escape for thy life; look not behind thee, neither stay
+thou in all the plain; escape to the mountain, lest thou be consumed.
+
+19:18 And Lot said unto them, Oh, not so, my LORD: 19:19 Behold now,
+thy servant hath found grace in thy sight, and thou hast magnified thy
+mercy, which thou hast shewed unto me in saving my life; and I cannot
+escape to the mountain, lest some evil take me, and I die: 19:20
+Behold now, this city is near to flee unto, and it is a little one:
+Oh, let me escape thither, (is it not a little one?) and my soul shall
+live.
+
+19:21 And he said unto him, See, I have accepted thee concerning this
+thing also, that I will not overthrow this city, for the which thou
+hast spoken.
+
+19:22 Haste thee, escape thither; for I cannot do anything till thou
+be come thither. Therefore the name of the city was called Zoar.
+
+19:23 The sun was risen upon the earth when Lot entered into Zoar.
+
+19:24 Then the LORD rained upon Sodom and upon Gomorrah brimstone and
+fire from the LORD out of heaven; 19:25 And he overthrew those cities,
+and all the plain, and all the inhabitants of the cities, and that
+which grew upon the ground.
+
+19:26 But his wife looked back from behind him, and she became a
+pillar of salt.
+
+19:27 And Abraham gat up early in the morning to the place where he
+stood before the LORD: 19:28 And he looked toward Sodom and Gomorrah,
+and toward all the land of the plain, and beheld, and, lo, the smoke
+of the country went up as the smoke of a furnace.
+
+19:29 And it came to pass, when God destroyed the cities of the plain,
+that God remembered Abraham, and sent Lot out of the midst of the
+overthrow, when he overthrew the cities in the which Lot dwelt.
+
+19:30 And Lot went up out of Zoar, and dwelt in the mountain, and his
+two daughters with him; for he feared to dwell in Zoar: and he dwelt
+in a cave, he and his two daughters.
+
+19:31 And the firstborn said unto the younger, Our father is old, and
+there is not a man in the earth to come in unto us after the manner of
+all the earth: 19:32 Come, let us make our father drink wine, and we
+will lie with him, that we may preserve seed of our father.
+
+19:33 And they made their father drink wine that night: and the
+firstborn went in, and lay with her father; and he perceived not when
+she lay down, nor when she arose.
+
+19:34 And it came to pass on the morrow, that the firstborn said unto
+the younger, Behold, I lay yesternight with my father: let us make him
+drink wine this night also; and go thou in, and lie with him, that we
+may preserve seed of our father.
+
+19:35 And they made their father drink wine that night also: and the
+younger arose, and lay with him; and he perceived not when she lay
+down, nor when she arose.
+
+19:36 Thus were both the daughters of Lot with child by their father.
+
+19:37 And the first born bare a son, and called his name Moab: the
+same is the father of the Moabites unto this day.
+
+19:38 And the younger, she also bare a son, and called his name
+Benammi: the same is the father of the children of Ammon unto this
+day.
+
+20:1 And Abraham journeyed from thence toward the south country, and
+dwelled between Kadesh and Shur, and sojourned in Gerar.
+
+20:2 And Abraham said of Sarah his wife, She is my sister: and
+Abimelech king of Gerar sent, and took Sarah.
+
+20:3 But God came to Abimelech in a dream by night, and said to him,
+Behold, thou art but a dead man, for the woman which thou hast taken;
+for she is a man's wife.
+
+20:4 But Abimelech had not come near her: and he said, LORD, wilt thou
+slay also a righteous nation? 20:5 Said he not unto me, She is my
+sister? and she, even she herself said, He is my brother: in the
+integrity of my heart and innocency of my hands have I done this.
+
+20:6 And God said unto him in a dream, Yea, I know that thou didst
+this in the integrity of thy heart; for I also withheld thee from
+sinning against me: therefore suffered I thee not to touch her.
+
+20:7 Now therefore restore the man his wife; for he is a prophet, and
+he shall pray for thee, and thou shalt live: and if thou restore her
+not, know thou that thou shalt surely die, thou, and all that are
+thine.
+
+20:8 Therefore Abimelech rose early in the morning, and called all his
+servants, and told all these things in their ears: and the men were
+sore afraid.
+
+20:9 Then Abimelech called Abraham, and said unto him, What hast thou
+done unto us? and what have I offended thee, that thou hast brought on
+me and on my kingdom a great sin? thou hast done deeds unto me that
+ought not to be done.
+
+20:10 And Abimelech said unto Abraham, What sawest thou, that thou
+hast done this thing? 20:11 And Abraham said, Because I thought,
+Surely the fear of God is not in this place; and they will slay me for
+my wife's sake.
+
+20:12 And yet indeed she is my sister; she is the daughter of my
+father, but not the daughter of my mother; and she became my wife.
+
+20:13 And it came to pass, when God caused me to wander from my
+father's house, that I said unto her, This is thy kindness which thou
+shalt shew unto me; at every place whither we shall come, say of me,
+He is my brother.
+
+20:14 And Abimelech took sheep, and oxen, and menservants, and
+womenservants, and gave them unto Abraham, and restored him Sarah his
+wife.
+
+20:15 And Abimelech said, Behold, my land is before thee: dwell where
+it pleaseth thee.
+
+20:16 And unto Sarah he said, Behold, I have given thy brother a
+thousand pieces of silver: behold, he is to thee a covering of the
+eyes, unto all that are with thee, and with all other: thus she was
+reproved.
+
+20:17 So Abraham prayed unto God: and God healed Abimelech, and his
+wife, and his maidservants; and they bare children.
+
+20:18 For the LORD had fast closed up all the wombs of the house of
+Abimelech, because of Sarah Abraham's wife.
+
+21:1 And the LORD visited Sarah as he had said, and the LORD did unto
+Sarah as he had spoken.
+
+21:2 For Sarah conceived, and bare Abraham a son in his old age, at
+the set time of which God had spoken to him.
+
+21:3 And Abraham called the name of his son that was born unto him,
+whom Sarah bare to him, Isaac.
+
+21:4 And Abraham circumcised his son Isaac being eight days old, as
+God had commanded him.
+
+21:5 And Abraham was an hundred years old, when his son Isaac was born
+unto him.
+
+21:6 And Sarah said, God hath made me to laugh, so that all that hear
+will laugh with me.
+
+21:7 And she said, Who would have said unto Abraham, that Sarah should
+have given children suck? for I have born him a son in his old age.
+
+21:8 And the child grew, and was weaned: and Abraham made a great
+feast the same day that Isaac was weaned.
+
+21:9 And Sarah saw the son of Hagar the Egyptian, which she had born
+unto Abraham, mocking.
+
+21:10 Wherefore she said unto Abraham, Cast out this bondwoman and her
+son: for the son of this bondwoman shall not be heir with my son, even
+with Isaac.
+
+21:11 And the thing was very grievous in Abraham's sight because of
+his son.
+
+21:12 And God said unto Abraham, Let it not be grievous in thy sight
+because of the lad, and because of thy bondwoman; in all that Sarah
+hath said unto thee, hearken unto her voice; for in Isaac shall thy
+seed be called.
+
+21:13 And also of the son of the bondwoman will I make a nation,
+because he is thy seed.
+
+21:14 And Abraham rose up early in the morning, and took bread, and a
+bottle of water, and gave it unto Hagar, putting it on her shoulder,
+and the child, and sent her away: and she departed, and wandered in
+the wilderness of Beersheba.
+
+21:15 And the water was spent in the bottle, and she cast the child
+under one of the shrubs.
+
+21:16 And she went, and sat her down over against him a good way off,
+as it were a bow shot: for she said, Let me not see the death of the
+child. And she sat over against him, and lift up her voice, and wept.
+
+21:17 And God heard the voice of the lad; and the angel of God called
+to Hagar out of heaven, and said unto her, What aileth thee, Hagar?
+fear not; for God hath heard the voice of the lad where he is.
+
+21:18 Arise, lift up the lad, and hold him in thine hand; for I will
+make him a great nation.
+
+21:19 And God opened her eyes, and she saw a well of water; and she
+went, and filled the bottle with water, and gave the lad drink.
+
+21:20 And God was with the lad; and he grew, and dwelt in the
+wilderness, and became an archer.
+
+21:21 And he dwelt in the wilderness of Paran: and his mother took him
+a wife out of the land of Egypt.
+
+21:22 And it came to pass at that time, that Abimelech and Phichol the
+chief captain of his host spake unto Abraham, saying, God is with thee
+in all that thou doest: 21:23 Now therefore swear unto me here by God
+that thou wilt not deal falsely with me, nor with my son, nor with my
+son's son: but according to the kindness that I have done unto thee,
+thou shalt do unto me, and to the land wherein thou hast sojourned.
+
+21:24 And Abraham said, I will swear.
+
+21:25 And Abraham reproved Abimelech because of a well of water, which
+Abimelech's servants had violently taken away.
+
+21:26 And Abimelech said, I wot not who hath done this thing; neither
+didst thou tell me, neither yet heard I of it, but to day.
+
+21:27 And Abraham took sheep and oxen, and gave them unto Abimelech;
+and both of them made a covenant.
+
+21:28 And Abraham set seven ewe lambs of the flock by themselves.
+
+21:29 And Abimelech said unto Abraham, What mean these seven ewe lambs
+which thou hast set by themselves? 21:30 And he said, For these seven
+ewe lambs shalt thou take of my hand, that they may be a witness unto
+me, that I have digged this well.
+
+21:31 Wherefore he called that place Beersheba; because there they
+sware both of them.
+
+21:32 Thus they made a covenant at Beersheba: then Abimelech rose up,
+and Phichol the chief captain of his host, and they returned into the
+land of the Philistines.
+
+21:33 And Abraham planted a grove in Beersheba, and called there on
+the name of the LORD, the everlasting God.
+
+21:34 And Abraham sojourned in the Philistines' land many days.
+
+22:1 And it came to pass after these things, that God did tempt
+Abraham, and said unto him, Abraham: and he said, Behold, here I am.
+
+22:2 And he said, Take now thy son, thine only son Isaac, whom thou
+lovest, and get thee into the land of Moriah; and offer him there for
+a burnt offering upon one of the mountains which I will tell thee of.
+
+22:3 And Abraham rose up early in the morning, and saddled his ass,
+and took two of his young men with him, and Isaac his son, and clave
+the wood for the burnt offering, and rose up, and went unto the place
+of which God had told him.
+
+22:4 Then on the third day Abraham lifted up his eyes, and saw the
+place afar off.
+
+22:5 And Abraham said unto his young men, Abide ye here with the ass;
+and I and the lad will go yonder and worship, and come again to you.
+
+22:6 And Abraham took the wood of the burnt offering, and laid it upon
+Isaac his son; and he took the fire in his hand, and a knife; and they
+went both of them together.
+
+22:7 And Isaac spake unto Abraham his father, and said, My father: and
+he said, Here am I, my son. And he said, Behold the fire and the wood:
+but where is the lamb for a burnt offering? 22:8 And Abraham said, My
+son, God will provide himself a lamb for a burnt offering: so they
+went both of them together.
+
+22:9 And they came to the place which God had told him of; and Abraham
+built an altar there, and laid the wood in order, and bound Isaac his
+son, and laid him on the altar upon the wood.
+
+22:10 And Abraham stretched forth his hand, and took the knife to slay
+his son.
+
+22:11 And the angel of the LORD called unto him out of heaven, and
+said, Abraham, Abraham: and he said, Here am I.
+
+22:12 And he said, Lay not thine hand upon the lad, neither do thou
+any thing unto him: for now I know that thou fearest God, seeing thou
+hast not withheld thy son, thine only son from me.
+
+22:13 And Abraham lifted up his eyes, and looked, and behold behind
+him a ram caught in a thicket by his horns: and Abraham went and took
+the ram, and offered him up for a burnt offering in the stead of his
+son.
+
+22:14 And Abraham called the name of that place Jehovahjireh: as it is
+said to this day, In the mount of the LORD it shall be seen.
+
+22:15 And the angel of the LORD called unto Abraham out of heaven the
+second time, 22:16 And said, By myself have I sworn, saith the LORD,
+for because thou hast done this thing, and hast not withheld thy son,
+thine only son: 22:17 That in blessing I will bless thee, and in
+multiplying I will multiply thy seed as the stars of the heaven, and
+as the sand which is upon the sea shore; and thy seed shall possess
+the gate of his enemies; 22:18 And in thy seed shall all the nations
+of the earth be blessed; because thou hast obeyed my voice.
+
+22:19 So Abraham returned unto his young men, and they rose up and
+went together to Beersheba; and Abraham dwelt at Beersheba.
+
+22:20 And it came to pass after these things, that it was told
+Abraham, saying, Behold, Milcah, she hath also born children unto thy
+brother Nahor; 22:21 Huz his firstborn, and Buz his brother, and
+Kemuel the father of Aram, 22:22 And Chesed, and Hazo, and Pildash,
+and Jidlaph, and Bethuel.
+
+22:23 And Bethuel begat Rebekah: these eight Milcah did bear to Nahor,
+Abraham's brother.
+
+22:24 And his concubine, whose name was Reumah, she bare also Tebah,
+and Gaham, and Thahash, and Maachah.
+
+23:1 And Sarah was an hundred and seven and twenty years old: these
+were the years of the life of Sarah.
+
+23:2 And Sarah died in Kirjatharba; the same is Hebron in the land of
+Canaan: and Abraham came to mourn for Sarah, and to weep for her.
+
+23:3 And Abraham stood up from before his dead, and spake unto the
+sons of Heth, saying, 23:4 I am a stranger and a sojourner with you:
+give me a possession of a buryingplace with you, that I may bury my
+dead out of my sight.
+
+23:5 And the children of Heth answered Abraham, saying unto him, 23:6
+Hear us, my lord: thou art a mighty prince among us: in the choice of
+our sepulchres bury thy dead; none of us shall withhold from thee his
+sepulchre, but that thou mayest bury thy dead.
+
+23:7 And Abraham stood up, and bowed himself to the people of the
+land, even to the children of Heth.
+
+23:8 And he communed with them, saying, If it be your mind that I
+should bury my dead out of my sight; hear me, and intreat for me to
+Ephron the son of Zohar, 23:9 That he may give me the cave of
+Machpelah, which he hath, which is in the end of his field; for as
+much money as it is worth he shall give it me for a possession of a
+buryingplace amongst you.
+
+23:10 And Ephron dwelt among the children of Heth: and Ephron the
+Hittite answered Abraham in the audience of the children of Heth, even
+of all that went in at the gate of his city, saying, 23:11 Nay, my
+lord, hear me: the field give I thee, and the cave that is therein, I
+give it thee; in the presence of the sons of my people give I it thee:
+bury thy dead.
+
+23:12 And Abraham bowed down himself before the people of the land.
+
+23:13 And he spake unto Ephron in the audience of the people of the
+land, saying, But if thou wilt give it, I pray thee, hear me: I will
+give thee money for the field; take it of me, and I will bury my dead
+there.
+
+23:14 And Ephron answered Abraham, saying unto him, 23:15 My lord,
+hearken unto me: the land is worth four hundred shekels of silver;
+what is that betwixt me and thee? bury therefore thy dead.
+
+23:16 And Abraham hearkened unto Ephron; and Abraham weighed to Ephron
+the silver, which he had named in the audience of the sons of Heth,
+four hundred shekels of silver, current money with the merchant.
+
+23:17 And the field of Ephron which was in Machpelah, which was before
+Mamre, the field, and the cave which was therein, and all the trees
+that were in the field, that were in all the borders round about, were
+made sure 23:18 Unto Abraham for a possession in the presence of the
+children of Heth, before all that went in at the gate of his city.
+
+23:19 And after this, Abraham buried Sarah his wife in the cave of the
+field of Machpelah before Mamre: the same is Hebron in the land of
+Canaan.
+
+23:20 And the field, and the cave that is therein, were made sure unto
+Abraham for a possession of a buryingplace by the sons of Heth.
+
+24:1 And Abraham was old, and well stricken in age: and the LORD had
+blessed Abraham in all things.
+
+24:2 And Abraham said unto his eldest servant of his house, that ruled
+over all that he had, Put, I pray thee, thy hand under my thigh: 24:3
+And I will make thee swear by the LORD, the God of heaven, and the God
+of the earth, that thou shalt not take a wife unto my son of the
+daughters of the Canaanites, among whom I dwell: 24:4 But thou shalt
+go unto my country, and to my kindred, and take a wife unto my son
+Isaac.
+
+24:5 And the servant said unto him, Peradventure the woman will not be
+willing to follow me unto this land: must I needs bring thy son again
+unto the land from whence thou camest? 24:6 And Abraham said unto
+him, Beware thou that thou bring not my son thither again.
+
+24:7 The LORD God of heaven, which took me from my father's house, and
+from the land of my kindred, and which spake unto me, and that sware
+unto me, saying, Unto thy seed will I give this land; he shall send
+his angel before thee, and thou shalt take a wife unto my son from
+thence.
+
+24:8 And if the woman will not be willing to follow thee, then thou
+shalt be clear from this my oath: only bring not my son thither again.
+
+24:9 And the servant put his hand under the thigh of Abraham his
+master, and sware to him concerning that matter.
+
+24:10 And the servant took ten camels of the camels of his master, and
+departed; for all the goods of his master were in his hand: and he
+arose, and went to Mesopotamia, unto the city of Nahor.
+
+24:11 And he made his camels to kneel down without the city by a well
+of water at the time of the evening, even the time that women go out
+to draw water.
+
+24:12 And he said O LORD God of my master Abraham, I pray thee, send
+me good speed this day, and shew kindness unto my master Abraham.
+
+24:13 Behold, I stand here by the well of water; and the daughters of
+the men of the city come out to draw water: 24:14 And let it come to
+pass, that the damsel to whom I shall say, Let down thy pitcher, I
+pray thee, that I may drink; and she shall say, Drink, and I will give
+thy camels drink also: let the same be she that thou hast appointed
+for thy servant Isaac; and thereby shall I know that thou hast shewed
+kindness unto my master.
+
+24:15 And it came to pass, before he had done speaking, that, behold,
+Rebekah came out, who was born to Bethuel, son of Milcah, the wife of
+Nahor, Abraham's brother, with her pitcher upon her shoulder.
+
+24:16 And the damsel was very fair to look upon, a virgin, neither had
+any man known her: and she went down to the well, and filled her
+pitcher, and came up.
+
+24:17 And the servant ran to meet her, and said, Let me, I pray thee,
+drink a little water of thy pitcher.
+
+24:18 And she said, Drink, my lord: and she hasted, and let down her
+pitcher upon her hand, and gave him drink.
+
+24:19 And when she had done giving him drink, she said, I will draw
+water for thy camels also, until they have done drinking.
+
+24:20 And she hasted, and emptied her pitcher into the trough, and ran
+again unto the well to draw water, and drew for all his camels.
+
+24:21 And the man wondering at her held his peace, to wit whether the
+LORD had made his journey prosperous or not.
+
+24:22 And it came to pass, as the camels had done drinking, that the
+man took a golden earring of half a shekel weight, and two bracelets
+for her hands of ten shekels weight of gold; 24:23 And said, Whose
+daughter art thou? tell me, I pray thee: is there room in thy father's
+house for us to lodge in? 24:24 And she said unto him, I am the
+daughter of Bethuel the son of Milcah, which she bare unto Nahor.
+
+24:25 She said moreover unto him, We have both straw and provender
+enough, and room to lodge in.
+
+24:26 And the man bowed down his head, and worshipped the LORD.
+
+24:27 And he said, Blessed be the LORD God of my master Abraham, who
+hath not left destitute my master of his mercy and his truth: I being
+in the way, the LORD led me to the house of my master's brethren.
+
+24:28 And the damsel ran, and told them of her mother's house these
+things.
+
+24:29 And Rebekah had a brother, and his name was Laban: and Laban ran
+out unto the man, unto the well.
+
+24:30 And it came to pass, when he saw the earring and bracelets upon
+his sister's hands, and when he heard the words of Rebekah his sister,
+saying, Thus spake the man unto me; that he came unto the man; and,
+behold, he stood by the camels at the well.
+
+24:31 And he said, Come in, thou blessed of the LORD; wherefore
+standest thou without? for I have prepared the house, and room for the
+camels.
+
+24:32 And the man came into the house: and he ungirded his camels, and
+gave straw and provender for the camels, and water to wash his feet,
+and the men's feet that were with him.
+
+24:33 And there was set meat before him to eat: but he said, I will
+not eat, until I have told mine errand. And he said, Speak on.
+
+24:34 And he said, I am Abraham's servant.
+
+24:35 And the LORD hath blessed my master greatly; and he is become
+great: and he hath given him flocks, and herds, and silver, and gold,
+and menservants, and maidservants, and camels, and asses.
+
+24:36 And Sarah my master's wife bare a son to my master when she was
+old: and unto him hath he given all that he hath.
+
+24:37 And my master made me swear, saying, Thou shalt not take a wife
+to my son of the daughters of the Canaanites, in whose land I dwell:
+24:38 But thou shalt go unto my father's house, and to my kindred, and
+take a wife unto my son.
+
+24:39 And I said unto my master, Peradventure the woman will not
+follow me.
+
+24:40 And he said unto me, The LORD, before whom I walk, will send his
+angel with thee, and prosper thy way; and thou shalt take a wife for
+my son of my kindred, and of my father's house: 24:41 Then shalt thou
+be clear from this my oath, when thou comest to my kindred; and if
+they give not thee one, thou shalt be clear from my oath.
+
+24:42 And I came this day unto the well, and said, O LORD God of my
+master Abraham, if now thou do prosper my way which I go: 24:43
+Behold, I stand by the well of water; and it shall come to pass, that
+when the virgin cometh forth to draw water, and I say to her, Give me,
+I pray thee, a little water of thy pitcher to drink; 24:44 And she say
+to me, Both drink thou, and I will also draw for thy camels: let the
+same be the woman whom the LORD hath appointed out for my master's
+son.
+
+24:45 And before I had done speaking in mine heart, behold, Rebekah
+came forth with her pitcher on her shoulder; and she went down unto
+the well, and drew water: and I said unto her, Let me drink, I pray
+thee.
+
+24:46 And she made haste, and let down her pitcher from her shoulder,
+and said, Drink, and I will give thy camels drink also: so I drank,
+and she made the camels drink also.
+
+24:47 And I asked her, and said, Whose daughter art thou? And she
+said, the daughter of Bethuel, Nahor's son, whom Milcah bare unto him:
+and I put the earring upon her face, and the bracelets upon her hands.
+
+24:48 And I bowed down my head, and worshipped the LORD, and blessed
+the LORD God of my master Abraham, which had led me in the right way
+to take my master's brother's daughter unto his son.
+
+24:49 And now if ye will deal kindly and truly with my master, tell
+me: and if not, tell me; that I may turn to the right hand, or to the
+left.
+
+24:50 Then Laban and Bethuel answered and said, The thing proceedeth
+from the LORD: we cannot speak unto thee bad or good.
+
+24:51 Behold, Rebekah is before thee, take her, and go, and let her be
+thy master's son's wife, as the LORD hath spoken.
+
+24:52 And it came to pass, that, when Abraham's servant heard their
+words, he worshipped the LORD, bowing himself to the earth.
+
+24:53 And the servant brought forth jewels of silver, and jewels of
+gold, and raiment, and gave them to Rebekah: he gave also to her
+brother and to her mother precious things.
+
+24:54 And they did eat and drink, he and the men that were with him,
+and tarried all night; and they rose up in the morning, and he said,
+Send me away unto my master.
+
+24:55 And her brother and her mother said, Let the damsel abide with
+us a few days, at the least ten; after that she shall go.
+
+24:56 And he said unto them, Hinder me not, seeing the LORD hath
+prospered my way; send me away that I may go to my master.
+
+24:57 And they said, We will call the damsel, and enquire at her
+mouth.
+
+24:58 And they called Rebekah, and said unto her, Wilt thou go with
+this man? And she said, I will go.
+
+24:59 And they sent away Rebekah their sister, and her nurse, and
+Abraham's servant, and his men.
+
+24:60 And they blessed Rebekah, and said unto her, Thou art our
+sister, be thou the mother of thousands of millions, and let thy seed
+possess the gate of those which hate them.
+
+24:61 And Rebekah arose, and her damsels, and they rode upon the
+camels, and followed the man: and the servant took Rebekah, and went
+his way.
+
+24:62 And Isaac came from the way of the well Lahairoi; for he dwelt
+in the south country.
+
+24:63 And Isaac went out to meditate in the field at the eventide: and
+he lifted up his eyes, and saw, and, behold, the camels were coming.
+
+24:64 And Rebekah lifted up her eyes, and when she saw Isaac, she
+lighted off the camel.
+
+24:65 For she had said unto the servant, What man is this that walketh
+in the field to meet us? And the servant had said, It is my master:
+therefore she took a vail, and covered herself.
+
+24:66 And the servant told Isaac all things that he had done.
+
+24:67 And Isaac brought her into his mother Sarah's tent, and took
+Rebekah, and she became his wife; and he loved her: and Isaac was
+comforted after his mother's death.
+
+25:1 Then again Abraham took a wife, and her name was Keturah.
+
+25:2 And she bare him Zimran, and Jokshan, and Medan, and Midian, and
+Ishbak, and Shuah.
+
+25:3 And Jokshan begat Sheba, and Dedan. And the sons of Dedan were
+Asshurim, and Letushim, and Leummim.
+
+25:4 And the sons of Midian; Ephah, and Epher, and Hanoch, and Abidah,
+and Eldaah. All these were the children of Keturah.
+
+25:5 And Abraham gave all that he had unto Isaac.
+
+25:6 But unto the sons of the concubines, which Abraham had, Abraham
+gave gifts, and sent them away from Isaac his son, while he yet lived,
+eastward, unto the east country.
+
+25:7 And these are the days of the years of Abraham's life which he
+lived, an hundred threescore and fifteen years.
+
+25:8 Then Abraham gave up the ghost, and died in a good old age, an
+old man, and full of years; and was gathered to his people.
+
+25:9 And his sons Isaac and Ishmael buried him in the cave of
+Machpelah, in the field of Ephron the son of Zohar the Hittite, which
+is before Mamre; 25:10 The field which Abraham purchased of the sons
+of Heth: there was Abraham buried, and Sarah his wife.
+
+25:11 And it came to pass after the death of Abraham, that God blessed
+his son Isaac; and Isaac dwelt by the well Lahairoi.
+
+25:12 Now these are the generations of Ishmael, Abraham's son, whom
+Hagar the Egyptian, Sarah's handmaid, bare unto Abraham: 25:13 And
+these are the names of the sons of Ishmael, by their names, according
+to their generations: the firstborn of Ishmael, Nebajoth; and Kedar,
+and Adbeel, and Mibsam, 25:14 And Mishma, and Dumah, and Massa, 25:15
+Hadar, and Tema, Jetur, Naphish, and Kedemah: 25:16 These are the sons
+of Ishmael, and these are their names, by their towns, and by their
+castles; twelve princes according to their nations.
+
+25:17 And these are the years of the life of Ishmael, an hundred and
+thirty and seven years: and he gave up the ghost and died; and was
+gathered unto his people.
+
+25:18 And they dwelt from Havilah unto Shur, that is before Egypt, as
+thou goest toward Assyria: and he died in the presence of all his
+brethren.
+
+25:19 And these are the generations of Isaac, Abraham's son: Abraham
+begat Isaac: 25:20 And Isaac was forty years old when he took Rebekah
+to wife, the daughter of Bethuel the Syrian of Padanaram, the sister
+to Laban the Syrian.
+
+25:21 And Isaac intreated the LORD for his wife, because she was
+barren: and the LORD was intreated of him, and Rebekah his wife
+conceived.
+
+25:22 And the children struggled together within her; and she said, If
+it be so, why am I thus? And she went to enquire of the LORD.
+
+25:23 And the LORD said unto her, Two nations are in thy womb, and two
+manner of people shall be separated from thy bowels; and the one
+people shall be stronger than the other people; and the elder shall
+serve the younger.
+
+25:24 And when her days to be delivered were fulfilled, behold, there
+were twins in her womb.
+
+25:25 And the first came out red, all over like an hairy garment; and
+they called his name Esau.
+
+25:26 And after that came his brother out, and his hand took hold on
+Esau's heel; and his name was called Jacob: and Isaac was threescore
+years old when she bare them.
+
+25:27 And the boys grew: and Esau was a cunning hunter, a man of the
+field; and Jacob was a plain man, dwelling in tents.
+
+25:28 And Isaac loved Esau, because he did eat of his venison: but
+Rebekah loved Jacob.
+
+25:29 And Jacob sod pottage: and Esau came from the field, and he was
+faint: 25:30 And Esau said to Jacob, Feed me, I pray thee, with that
+same red pottage; for I am faint: therefore was his name called Edom.
+
+25:31 And Jacob said, Sell me this day thy birthright.
+
+25:32 And Esau said, Behold, I am at the point to die: and what profit
+shall this birthright do to me? 25:33 And Jacob said, Swear to me
+this day; and he sware unto him: and he sold his birthright unto
+Jacob.
+
+25:34 Then Jacob gave Esau bread and pottage of lentiles; and he did
+eat and drink, and rose up, and went his way: thus Esau despised his
+birthright.
+
+26:1 And there was a famine in the land, beside the first famine that
+was in the days of Abraham. And Isaac went unto Abimelech king of the
+Philistines unto Gerar.
+
+26:2 And the LORD appeared unto him, and said, Go not down into Egypt;
+dwell in the land which I shall tell thee of: 26:3 Sojourn in this
+land, and I will be with thee, and will bless thee; for unto thee, and
+unto thy seed, I will give all these countries, and I will perform the
+oath which I sware unto Abraham thy father; 26:4 And I will make thy
+seed to multiply as the stars of heaven, and will give unto thy seed
+all these countries; and in thy seed shall all the nations of the
+earth be blessed; 26:5 Because that Abraham obeyed my voice, and kept
+my charge, my commandments, my statutes, and my laws.
+
+26:6 And Isaac dwelt in Gerar: 26:7 And the men of the place asked him
+of his wife; and he said, She is my sister: for he feared to say, She
+is my wife; lest, said he, the men of the place should kill me for
+Rebekah; because she was fair to look upon.
+
+26:8 And it came to pass, when he had been there a long time, that
+Abimelech king of the Philistines looked out at a window, and saw,
+and, behold, Isaac was sporting with Rebekah his wife.
+
+26:9 And Abimelech called Isaac, and said, Behold, of a surety she is
+thy wife; and how saidst thou, She is my sister? And Isaac said unto
+him, Because I said, Lest I die for her.
+
+26:10 And Abimelech said, What is this thou hast done unto us? one of
+the people might lightly have lien with thy wife, and thou shouldest
+have brought guiltiness upon us.
+
+26:11 And Abimelech charged all his people, saying, He that toucheth
+this man or his wife shall surely be put to death.
+
+26:12 Then Isaac sowed in that land, and received in the same year an
+hundredfold: and the LORD blessed him.
+
+26:13 And the man waxed great, and went forward, and grew until he
+became very great: 26:14 For he had possession of flocks, and
+possession of herds, and great store of servants: and the Philistines
+envied him.
+
+26:15 For all the wells which his father's servants had digged in the
+days of Abraham his father, the Philistines had stopped them, and
+filled them with earth.
+
+26:16 And Abimelech said unto Isaac, Go from us; for thou art much
+mightier than we.
+
+26:17 And Isaac departed thence, and pitched his tent in the valley of
+Gerar, and dwelt there.
+
+26:18 And Isaac digged again the wells of water, which they had digged
+in the days of Abraham his father; for the Philistines had stopped
+them after the death of Abraham: and he called their names after the
+names by which his father had called them.
+
+26:19 And Isaac's servants digged in the valley, and found there a
+well of springing water.
+
+26:20 And the herdmen of Gerar did strive with Isaac's herdmen,
+saying, The water is ours: and he called the name of the well Esek;
+because they strove with him.
+
+26:21 And they digged another well, and strove for that also: and he
+called the name of it Sitnah.
+
+26:22 And he removed from thence, and digged another well; and for
+that they strove not: and he called the name of it Rehoboth; and he
+said, For now the LORD hath made room for us, and we shall be fruitful
+in the land.
+
+26:23 And he went up from thence to Beersheba.
+
+26:24 And the LORD appeared unto him the same night, and said, I am
+the God of Abraham thy father: fear not, for I am with thee, and will
+bless thee, and multiply thy seed for my servant Abraham's sake.
+
+26:25 And he builded an altar there, and called upon the name of the
+LORD, and pitched his tent there: and there Isaac's servants digged a
+well.
+
+26:26 Then Abimelech went to him from Gerar, and Ahuzzath one of his
+friends, and Phichol the chief captain of his army.
+
+26:27 And Isaac said unto them, Wherefore come ye to me, seeing ye
+hate me, and have sent me away from you? 26:28 And they said, We saw
+certainly that the LORD was with thee: and we said, Let there be now
+an oath betwixt us, even betwixt us and thee, and let us make a
+covenant with thee; 26:29 That thou wilt do us no hurt, as we have not
+touched thee, and as we have done unto thee nothing but good, and have
+sent thee away in peace: thou art now the blessed of the LORD.
+
+26:30 And he made them a feast, and they did eat and drink.
+
+26:31 And they rose up betimes in the morning, and sware one to
+another: and Isaac sent them away, and they departed from him in
+peace.
+
+26:32 And it came to pass the same day, that Isaac's servants came,
+and told him concerning the well which they had digged, and said unto
+him, We have found water.
+
+26:33 And he called it Shebah: therefore the name of the city is
+Beersheba unto this day.
+
+26:34 And Esau was forty years old when he took to wife Judith the
+daughter of Beeri the Hittite, and Bashemath the daughter of Elon the
+Hittite: 26:35 Which were a grief of mind unto Isaac and to Rebekah.
+
+27:1 And it came to pass, that when Isaac was old, and his eyes were
+dim, so that he could not see, he called Esau his eldest son, and said
+unto him, My son: and he said unto him, Behold, here am I.
+
+27:2 And he said, Behold now, I am old, I know not the day of my
+death: 27:3 Now therefore take, I pray thee, thy weapons, thy quiver
+and thy bow, and go out to the field, and take me some venison; 27:4
+And make me savoury meat, such as I love, and bring it to me, that I
+may eat; that my soul may bless thee before I die.
+
+27:5 And Rebekah heard when Isaac spake to Esau his son. And Esau went
+to the field to hunt for venison, and to bring it.
+
+27:6 And Rebekah spake unto Jacob her son, saying, Behold, I heard thy
+father speak unto Esau thy brother, saying, 27:7 Bring me venison, and
+make me savoury meat, that I may eat, and bless thee before the LORD
+before my death.
+
+27:8 Now therefore, my son, obey my voice according to that which I
+command thee.
+
+27:9 Go now to the flock, and fetch me from thence two good kids of
+the goats; and I will make them savoury meat for thy father, such as
+he loveth: 27:10 And thou shalt bring it to thy father, that he may
+eat, and that he may bless thee before his death.
+
+27:11 And Jacob said to Rebekah his mother, Behold, Esau my brother is
+a hairy man, and I am a smooth man: 27:12 My father peradventure will
+feel me, and I shall seem to him as a deceiver; and I shall bring a
+curse upon me, and not a blessing.
+
+27:13 And his mother said unto him, Upon me be thy curse, my son: only
+obey my voice, and go fetch me them.
+
+27:14 And he went, and fetched, and brought them to his mother: and
+his mother made savoury meat, such as his father loved.
+
+27:15 And Rebekah took goodly raiment of her eldest son Esau, which
+were with her in the house, and put them upon Jacob her younger son:
+27:16 And she put the skins of the kids of the goats upon his hands,
+and upon the smooth of his neck: 27:17 And she gave the savoury meat
+and the bread, which she had prepared, into the hand of her son Jacob.
+
+27:18 And he came unto his father, and said, My father: and he said,
+Here am I; who art thou, my son? 27:19 And Jacob said unto his
+father, I am Esau thy first born; I have done according as thou badest
+me: arise, I pray thee, sit and eat of my venison, that thy soul may
+bless me.
+
+27:20 And Isaac said unto his son, How is it that thou hast found it
+so quickly, my son? And he said, Because the LORD thy God brought it
+to me.
+
+27:21 And Isaac said unto Jacob, Come near, I pray thee, that I may
+feel thee, my son, whether thou be my very son Esau or not.
+
+27:22 And Jacob went near unto Isaac his father; and he felt him, and
+said, The voice is Jacob's voice, but the hands are the hands of Esau.
+
+27:23 And he discerned him not, because his hands were hairy, as his
+brother Esau's hands: so he blessed him.
+
+27:24 And he said, Art thou my very son Esau? And he said, I am.
+
+27:25 And he said, Bring it near to me, and I will eat of my son's
+venison, that my soul may bless thee. And he brought it near to him,
+and he did eat: and he brought him wine and he drank.
+
+27:26 And his father Isaac said unto him, Come near now, and kiss me,
+my son.
+
+27:27 And he came near, and kissed him: and he smelled the smell of
+his raiment, and blessed him, and said, See, the smell of my son is as
+the smell of a field which the LORD hath blessed: 27:28 Therefore God
+give thee of the dew of heaven, and the fatness of the earth, and
+plenty of corn and wine: 27:29 Let people serve thee, and nations bow
+down to thee: be lord over thy brethren, and let thy mother's sons bow
+down to thee: cursed be every one that curseth thee, and blessed be he
+that blesseth thee.
+
+27:30 And it came to pass, as soon as Isaac had made an end of
+blessing Jacob, and Jacob was yet scarce gone out from the presence of
+Isaac his father, that Esau his brother came in from his hunting.
+
+27:31 And he also had made savoury meat, and brought it unto his
+father, and said unto his father, Let my father arise, and eat of his
+son's venison, that thy soul may bless me.
+
+27:32 And Isaac his father said unto him, Who art thou? And he said, I
+am thy son, thy firstborn Esau.
+
+27:33 And Isaac trembled very exceedingly, and said, Who? where is he
+that hath taken venison, and brought it me, and I have eaten of all
+before thou camest, and have blessed him? yea, and he shall be
+blessed.
+
+27:34 And when Esau heard the words of his father, he cried with a
+great and exceeding bitter cry, and said unto his father, Bless me,
+even me also, O my father.
+
+27:35 And he said, Thy brother came with subtilty, and hath taken away
+thy blessing.
+
+27:36 And he said, Is not he rightly named Jacob? for he hath
+supplanted me these two times: he took away my birthright; and,
+behold, now he hath taken away my blessing. And he said, Hast thou not
+reserved a blessing for me? 27:37 And Isaac answered and said unto
+Esau, Behold, I have made him thy lord, and all his brethren have I
+given to him for servants; and with corn and wine have I sustained
+him: and what shall I do now unto thee, my son? 27:38 And Esau said
+unto his father, Hast thou but one blessing, my father? bless me, even
+me also, O my father. And Esau lifted up his voice, and wept.
+
+27:39 And Isaac his father answered and said unto him, Behold, thy
+dwelling shall be the fatness of the earth, and of the dew of heaven
+from above; 27:40 And by thy sword shalt thou live, and shalt serve
+thy brother; and it shall come to pass when thou shalt have the
+dominion, that thou shalt break his yoke from off thy neck.
+
+27:41 And Esau hated Jacob because of the blessing wherewith his
+father blessed him: and Esau said in his heart, The days of mourning
+for my father are at hand; then will I slay my brother Jacob.
+
+27:42 And these words of Esau her elder son were told to Rebekah: and
+she sent and called Jacob her younger son, and said unto him, Behold,
+thy brother Esau, as touching thee, doth comfort himself, purposing to
+kill thee.
+
+27:43 Now therefore, my son, obey my voice; arise, flee thou to Laban
+my brother to Haran; 27:44 And tarry with him a few days, until thy
+brother's fury turn away; 27:45 Until thy brother's anger turn away
+from thee, and he forget that which thou hast done to him: then I will
+send, and fetch thee from thence: why should I be deprived also of you
+both in one day? 27:46 And Rebekah said to Isaac, I am weary of my
+life because of the daughters of Heth: if Jacob take a wife of the
+daughters of Heth, such as these which are of the daughters of the
+land, what good shall my life do me? 28:1 And Isaac called Jacob, and
+blessed him, and charged him, and said unto him, Thou shalt not take a
+wife of the daughters of Canaan.
+
+28:2 Arise, go to Padanaram, to the house of Bethuel thy mother's
+father; and take thee a wife from thence of the daughers of Laban thy
+mother's brother.
+
+28:3 And God Almighty bless thee, and make thee fruitful, and multiply
+thee, that thou mayest be a multitude of people; 28:4 And give thee
+the blessing of Abraham, to thee, and to thy seed with thee; that thou
+mayest inherit the land wherein thou art a stranger, which God gave
+unto Abraham.
+
+28:5 And Isaac sent away Jacob: and he went to Padanaram unto Laban,
+son of Bethuel the Syrian, the brother of Rebekah, Jacob's and Esau's
+mother.
+
+28:6 When Esau saw that Isaac had blessed Jacob, and sent him away to
+Padanaram, to take him a wife from thence; and that as he blessed him
+he gave him a charge, saying, Thou shalt not take a wife of the
+daughers of Canaan; 28:7 And that Jacob obeyed his father and his
+mother, and was gone to Padanaram; 28:8 And Esau seeing that the
+daughters of Canaan pleased not Isaac his father; 28:9 Then went Esau
+unto Ishmael, and took unto the wives which he had Mahalath the
+daughter of Ishmael Abraham's son, the sister of Nebajoth, to be his
+wife.
+
+28:10 And Jacob went out from Beersheba, and went toward Haran.
+
+28:11 And he lighted upon a certain place, and tarried there all
+night, because the sun was set; and he took of the stones of that
+place, and put them for his pillows, and lay down in that place to
+sleep.
+
+28:12 And he dreamed, and behold a ladder set up on the earth, and the
+top of it reached to heaven: and behold the angels of God ascending
+and descending on it.
+
+28:13 And, behold, the LORD stood above it, and said, I am the LORD
+God of Abraham thy father, and the God of Isaac: the land whereon thou
+liest, to thee will I give it, and to thy seed; 28:14 And thy seed
+shall be as the dust of the earth, and thou shalt spread abroad to the
+west, and to the east, and to the north, and to the south: and in thee
+and in thy seed shall all the families of the earth be blessed.
+
+28:15 And, behold, I am with thee, and will keep thee in all places
+whither thou goest, and will bring thee again into this land; for I
+will not leave thee, until I have done that which I have spoken to
+thee of.
+
+28:16 And Jacob awaked out of his sleep, and he said, Surely the LORD
+is in this place; and I knew it not.
+
+28:17 And he was afraid, and said, How dreadful is this place! this is
+none other but the house of God, and this is the gate of heaven.
+
+28:18 And Jacob rose up early in the morning, and took the stone that
+he had put for his pillows, and set it up for a pillar, and poured oil
+upon the top of it.
+
+28:19 And he called the name of that place Bethel: but the name of
+that city was called Luz at the first.
+
+28:20 And Jacob vowed a vow, saying, If God will be with me, and will
+keep me in this way that I go, and will give me bread to eat, and
+raiment to put on, 28:21 So that I come again to my father's house in
+peace; then shall the LORD be my God: 28:22 And this stone, which I
+have set for a pillar, shall be God's house: and of all that thou
+shalt give me I will surely give the tenth unto thee.
+
+29:1 Then Jacob went on his journey, and came into the land of the
+people of the east.
+
+29:2 And he looked, and behold a well in the field, and, lo, there
+were three flocks of sheep lying by it; for out of that well they
+watered the flocks: and a great stone was upon the well's mouth.
+
+29:3 And thither were all the flocks gathered: and they rolled the
+stone from the well's mouth, and watered the sheep, and put the stone
+again upon the well's mouth in his place.
+
+29:4 And Jacob said unto them, My brethren, whence be ye? And they
+said, Of Haran are we.
+
+29:5 And he said unto them, Know ye Laban the son of Nahor? And they
+said, We know him.
+
+29:6 And he said unto them, Is he well? And they said, He is well:
+and, behold, Rachel his daughter cometh with the sheep.
+
+29:7 And he said, Lo, it is yet high day, neither is it time that the
+cattle should be gathered together: water ye the sheep, and go and
+feed them.
+
+29:8 And they said, We cannot, until all the flocks be gathered
+together, and till they roll the stone from the well's mouth; then we
+water the sheep.
+
+29:9 And while he yet spake with them, Rachel came with her father's
+sheep; for she kept them.
+
+29:10 And it came to pass, when Jacob saw Rachel the daughter of Laban
+his mother's brother, and the sheep of Laban his mother's brother,
+that Jacob went near, and rolled the stone from the well's mouth, and
+watered the flock of Laban his mother's brother.
+
+29:11 And Jacob kissed Rachel, and lifted up his voice, and wept.
+
+29:12 And Jacob told Rachel that he was her father's brother, and that
+he was Rebekah's son: and she ran and told her father.
+
+29:13 And it came to pass, when Laban heard the tidings of Jacob his
+sister's son, that he ran to meet him, and embraced him, and kissed
+him, and brought him to his house. And he told Laban all these things.
+
+29:14 And Laban said to him, Surely thou art my bone and my flesh. And
+he abode with him the space of a month.
+
+29:15 And Laban said unto Jacob, Because thou art my brother,
+shouldest thou therefore serve me for nought? tell me, what shall thy
+wages be? 29:16 And Laban had two daughters: the name of the elder
+was Leah, and the name of the younger was Rachel.
+
+29:17 Leah was tender eyed; but Rachel was beautiful and well
+favoured.
+
+29:18 And Jacob loved Rachel; and said, I will serve thee seven years
+for Rachel thy younger daughter.
+
+29:19 And Laban said, It is better that I give her to thee, than that
+I should give her to another man: abide with me.
+
+29:20 And Jacob served seven years for Rachel; and they seemed unto
+him but a few days, for the love he had to her.
+
+29:21 And Jacob said unto Laban, Give me my wife, for my days are
+fulfilled, that I may go in unto her.
+
+29:22 And Laban gathered together all the men of the place, and made a
+feast.
+
+29:23 And it came to pass in the evening, that he took Leah his
+daughter, and brought her to him; and he went in unto her.
+
+29:24 And Laban gave unto his daughter Leah Zilpah his maid for an
+handmaid.
+
+29:25 And it came to pass, that in the morning, behold, it was Leah:
+and he said to Laban, What is this thou hast done unto me? did not I
+serve with thee for Rachel? wherefore then hast thou beguiled me?
+29:26 And Laban said, It must not be so done in our country, to give
+the younger before the firstborn.
+
+29:27 Fulfil her week, and we will give thee this also for the service
+which thou shalt serve with me yet seven other years.
+
+29:28 And Jacob did so, and fulfilled her week: and he gave him Rachel
+his daughter to wife also.
+
+29:29 And Laban gave to Rachel his daughter Bilhah his handmaid to be
+her maid.
+
+29:30 And he went in also unto Rachel, and he loved also Rachel more
+than Leah, and served with him yet seven other years.
+
+29:31 And when the LORD saw that Leah was hated, he opened her womb:
+but Rachel was barren.
+
+29:32 And Leah conceived, and bare a son, and she called his name
+Reuben: for she said, Surely the LORD hath looked upon my affliction;
+now therefore my husband will love me.
+
+29:33 And she conceived again, and bare a son; and said, Because the
+LORD hath heard I was hated, he hath therefore given me this son also:
+and she called his name Simeon.
+
+29:34 And she conceived again, and bare a son; and said, Now this time
+will my husband be joined unto me, because I have born him three sons:
+therefore was his name called Levi.
+
+29:35 And she conceived again, and bare a son: and she said, Now will
+I praise the LORD: therefore she called his name Judah; and left
+bearing.
+
+30:1 And when Rachel saw that she bare Jacob no children, Rachel
+envied her sister; and said unto Jacob, Give me children, or else I
+die.
+
+30:2 And Jacob's anger was kindled against Rachel: and he said, Am I
+in God's stead, who hath withheld from thee the fruit of the womb?
+30:3 And she said, Behold my maid Bilhah, go in unto her; and she
+shall bear upon my knees, that I may also have children by her.
+
+30:4 And she gave him Bilhah her handmaid to wife: and Jacob went in
+unto her.
+
+30:5 And Bilhah conceived, and bare Jacob a son.
+
+30:6 And Rachel said, God hath judged me, and hath also heard my
+voice, and hath given me a son: therefore called she his name Dan.
+
+30:7 And Bilhah Rachel's maid conceived again, and bare Jacob a second
+son.
+
+30:8 And Rachel said, With great wrestlings have I wrestled with my
+sister, and I have prevailed: and she called his name Naphtali.
+
+30:9 When Leah saw that she had left bearing, she took Zilpah her
+maid, and gave her Jacob to wife.
+
+30:10 And Zilpah Leah's maid bare Jacob a son.
+
+30:11 And Leah said, A troop cometh: and she called his name Gad.
+
+30:12 And Zilpah Leah's maid bare Jacob a second son.
+
+30:13 And Leah said, Happy am I, for the daughters will call me
+blessed: and she called his name Asher.
+
+30:14 And Reuben went in the days of wheat harvest, and found
+mandrakes in the field, and brought them unto his mother Leah. Then
+Rachel said to Leah, Give me, I pray thee, of thy son's mandrakes.
+
+30:15 And she said unto her, Is it a small matter that thou hast taken
+my husband? and wouldest thou take away my son's mandrakes also? And
+Rachel said, Therefore he shall lie with thee to night for thy son's
+mandrakes.
+
+30:16 And Jacob came out of the field in the evening, and Leah went
+out to meet him, and said, Thou must come in unto me; for surely I
+have hired thee with my son's mandrakes. And he lay with her that
+night.
+
+30:17 And God hearkened unto Leah, and she conceived, and bare Jacob
+the fifth son.
+
+30:18 And Leah said, God hath given me my hire, because I have given
+my maiden to my husband: and she called his name Issachar.
+
+30:19 And Leah conceived again, and bare Jacob the sixth son.
+
+30:20 And Leah said, God hath endued me with a good dowry; now will my
+husband dwell with me, because I have born him six sons: and she
+called his name Zebulun.
+
+30:21 And afterwards she bare a daughter, and called her name Dinah.
+
+30:22 And God remembered Rachel, and God hearkened to her, and opened
+her womb.
+
+30:23 And she conceived, and bare a son; and said, God hath taken away
+my reproach: 30:24 And she called his name Joseph; and said, The LORD
+shall add to me another son.
+
+30:25 And it came to pass, when Rachel had born Joseph, that Jacob
+said unto Laban, Send me away, that I may go unto mine own place, and
+to my country.
+
+30:26 Give me my wives and my children, for whom I have served thee,
+and let me go: for thou knowest my service which I have done thee.
+
+30:27 And Laban said unto him, I pray thee, if I have found favour in
+thine eyes, tarry: for I have learned by experience that the LORD hath
+blessed me for thy sake.
+
+30:28 And he said, Appoint me thy wages, and I will give it.
+
+30:29 And he said unto him, Thou knowest how I have served thee, and
+how thy cattle was with me.
+
+30:30 For it was little which thou hadst before I came, and it is now
+increased unto a multitude; and the LORD hath blessed thee since my
+coming: and now when shall I provide for mine own house also? 30:31
+And he said, What shall I give thee? And Jacob said, Thou shalt not
+give me any thing: if thou wilt do this thing for me, I will again
+feed and keep thy flock.
+
+30:32 I will pass through all thy flock to day, removing from thence
+all the speckled and spotted cattle, and all the brown cattle among
+the sheep, and the spotted and speckled among the goats: and of such
+shall be my hire.
+
+30:33 So shall my righteousness answer for me in time to come, when it
+shall come for my hire before thy face: every one that is not speckled
+and spotted among the goats, and brown among the sheep, that shall be
+counted stolen with me.
+
+30:34 And Laban said, Behold, I would it might be according to thy
+word.
+
+30:35 And he removed that day the he goats that were ringstraked and
+spotted, and all the she goats that were speckled and spotted, and
+every one that had some white in it, and all the brown among the
+sheep, and gave them into the hand of his sons.
+
+30:36 And he set three days' journey betwixt himself and Jacob: and
+Jacob fed the rest of Laban's flocks.
+
+30:37 And Jacob took him rods of green poplar, and of the hazel and
+chesnut tree; and pilled white strakes in them, and made the white
+appear which was in the rods.
+
+30:38 And he set the rods which he had pilled before the flocks in the
+gutters in the watering troughs when the flocks came to drink, that
+they should conceive when they came to drink.
+
+30:39 And the flocks conceived before the rods, and brought forth
+cattle ringstraked, speckled, and spotted.
+
+30:40 And Jacob did separate the lambs, and set the faces of the
+flocks toward the ringstraked, and all the brown in the flock of
+Laban; and he put his own flocks by themselves, and put them not unto
+Laban's cattle.
+
+30:41 And it came to pass, whensoever the stronger cattle did
+conceive, that Jacob laid the rods before the eyes of the cattle in
+the gutters, that they might conceive among the rods.
+
+30:42 But when the cattle were feeble, he put them not in: so the
+feebler were Laban's, and the stronger Jacob's.
+
+30:43 And the man increased exceedingly, and had much cattle, and
+maidservants, and menservants, and camels, and asses.
+
+31:1 And he heard the words of Laban's sons, saying, Jacob hath taken
+away all that was our father's; and of that which was our father's
+hath he gotten all this glory.
+
+31:2 And Jacob beheld the countenance of Laban, and, behold, it was
+not toward him as before.
+
+31:3 And the LORD said unto Jacob, Return unto the land of thy
+fathers, and to thy kindred; and I will be with thee.
+
+31:4 And Jacob sent and called Rachel and Leah to the field unto his
+flock, 31:5 And said unto them, I see your father's countenance, that
+it is not toward me as before; but the God of my father hath been with
+me.
+
+31:6 And ye know that with all my power I have served your father.
+
+31:7 And your father hath deceived me, and changed my wages ten times;
+but God suffered him not to hurt me.
+
+31:8 If he said thus, The speckled shall be thy wages; then all the
+cattle bare speckled: and if he said thus, The ringstraked shall be
+thy hire; then bare all the cattle ringstraked.
+
+31:9 Thus God hath taken away the cattle of your father, and given
+them to me.
+
+31:10 And it came to pass at the time that the cattle conceived, that
+I lifted up mine eyes, and saw in a dream, and, behold, the rams which
+leaped upon the cattle were ringstraked, speckled, and grisled.
+
+31:11 And the angel of God spake unto me in a dream, saying, Jacob:
+And I said, Here am I.
+
+31:12 And he said, Lift up now thine eyes, and see, all the rams which
+leap upon the cattle are ringstraked, speckled, and grisled: for I
+have seen all that Laban doeth unto thee.
+
+31:13 I am the God of Bethel, where thou anointedst the pillar, and
+where thou vowedst a vow unto me: now arise, get thee out from this
+land, and return unto the land of thy kindred.
+
+31:14 And Rachel and Leah answered and said unto him, Is there yet any
+portion or inheritance for us in our father's house? 31:15 Are we not
+counted of him strangers? for he hath sold us, and hath quite devoured
+also our money.
+
+31:16 For all the riches which God hath taken from our father, that is
+ours, and our children's: now then, whatsoever God hath said unto
+thee, do.
+
+31:17 Then Jacob rose up, and set his sons and his wives upon camels;
+31:18 And he carried away all his cattle, and all his goods which he
+had gotten, the cattle of his getting, which he had gotten in
+Padanaram, for to go to Isaac his father in the land of Canaan.
+
+31:19 And Laban went to shear his sheep: and Rachel had stolen the
+images that were her father's.
+
+31:20 And Jacob stole away unawares to Laban the Syrian, in that he
+told him not that he fled.
+
+31:21 So he fled with all that he had; and he rose up, and passed over
+the river, and set his face toward the mount Gilead.
+
+31:22 And it was told Laban on the third day that Jacob was fled.
+
+31:23 And he took his brethren with him, and pursued after him seven
+days' journey; and they overtook him in the mount Gilead.
+
+31:24 And God came to Laban the Syrian in a dream by night, and said
+unto him, Take heed that thou speak not to Jacob either good or bad.
+
+31:25 Then Laban overtook Jacob. Now Jacob had pitched his tent in the
+mount: and Laban with his brethren pitched in the mount of Gilead.
+
+31:26 And Laban said to Jacob, What hast thou done, that thou hast
+stolen away unawares to me, and carried away my daughters, as captives
+taken with the sword? 31:27 Wherefore didst thou flee away secretly,
+and steal away from me; and didst not tell me, that I might have sent
+thee away with mirth, and with songs, with tabret, and with harp?
+31:28 And hast not suffered me to kiss my sons and my daughters? thou
+hast now done foolishly in so doing.
+
+31:29 It is in the power of my hand to do you hurt: but the God of
+your father spake unto me yesternight, saying, Take thou heed that
+thou speak not to Jacob either good or bad.
+
+31:30 And now, though thou wouldest needs be gone, because thou sore
+longedst after thy father's house, yet wherefore hast thou stolen my
+gods? 31:31 And Jacob answered and said to Laban, Because I was
+afraid: for I said, Peradventure thou wouldest take by force thy
+daughters from me.
+
+31:32 With whomsoever thou findest thy gods, let him not live: before
+our brethren discern thou what is thine with me, and take it to thee.
+For Jacob knew not that Rachel had stolen them.
+
+31:33 And Laban went into Jacob's tent, and into Leah's tent, and into
+the two maidservants' tents; but he found them not. Then went he out
+of Leah's tent, and entered into Rachel's tent.
+
+31:34 Now Rachel had taken the images, and put them in the camel's
+furniture, and sat upon them. And Laban searched all the tent, but
+found them not.
+
+31:35 And she said to her father, Let it not displease my lord that I
+cannot rise up before thee; for the custom of women is upon me. And he
+searched but found not the images.
+
+31:36 And Jacob was wroth, and chode with Laban: and Jacob answered
+and said to Laban, What is my trespass? what is my sin, that thou hast
+so hotly pursued after me? 31:37 Whereas thou hast searched all my
+stuff, what hast thou found of all thy household stuff? set it here
+before my brethren and thy brethren, that they may judge betwixt us
+both.
+
+31:38 This twenty years have I been with thee; thy ewes and thy she
+goats have not cast their young, and the rams of thy flock have I not
+eaten.
+
+31:39 That which was torn of beasts I brought not unto thee; I bare
+the loss of it; of my hand didst thou require it, whether stolen by
+day, or stolen by night.
+
+31:40 Thus I was; in the day the drought consumed me, and the frost by
+night; and my sleep departed from mine eyes.
+
+31:41 Thus have I been twenty years in thy house; I served thee
+fourteen years for thy two daughters, and six years for thy cattle:
+and thou hast changed my wages ten times.
+
+31:42 Except the God of my father, the God of Abraham, and the fear of
+Isaac, had been with me, surely thou hadst sent me away now empty. God
+hath seen mine affliction and the labour of my hands, and rebuked thee
+yesternight.
+
+31:43 And Laban answered and said unto Jacob, These daughters are my
+daughters, and these children are my children, and these cattle are my
+cattle, and all that thou seest is mine: and what can I do this day
+unto these my daughters, or unto their children which they have born?
+31:44 Now therefore come thou, let us make a covenant, I and thou; and
+let it be for a witness between me and thee.
+
+31:45 And Jacob took a stone, and set it up for a pillar.
+
+31:46 And Jacob said unto his brethren, Gather stones; and they took
+stones, and made an heap: and they did eat there upon the heap.
+
+31:47 And Laban called it Jegarsahadutha: but Jacob called it Galeed.
+
+31:48 And Laban said, This heap is a witness between me and thee this
+day.
+
+Therefore was the name of it called Galeed; 31:49 And Mizpah; for he
+said, The LORD watch between me and thee, when we are absent one from
+another.
+
+31:50 If thou shalt afflict my daughters, or if thou shalt take other
+wives beside my daughters, no man is with us; see, God is witness
+betwixt me and thee.
+
+31:51 And Laban said to Jacob, Behold this heap, and behold this
+pillar, which I have cast betwixt me and thee: 31:52 This heap be
+witness, and this pillar be witness, that I will not pass over this
+heap to thee, and that thou shalt not pass over this heap and this
+pillar unto me, for harm.
+
+31:53 The God of Abraham, and the God of Nahor, the God of their
+father, judge betwixt us. And Jacob sware by the fear of his father
+Isaac.
+
+31:54 Then Jacob offered sacrifice upon the mount, and called his
+brethren to eat bread: and they did eat bread, and tarried all night
+in the mount.
+
+31:55 And early in the morning Laban rose up, and kissed his sons and
+his daughters, and blessed them: and Laban departed, and returned unto
+his place.
+
+32:1 And Jacob went on his way, and the angels of God met him.
+
+32:2 And when Jacob saw them, he said, This is God's host: and he
+called the name of that place Mahanaim.
+
+32:3 And Jacob sent messengers before him to Esau his brother unto the
+land of Seir, the country of Edom.
+
+32:4 And he commanded them, saying, Thus shall ye speak unto my lord
+Esau; Thy servant Jacob saith thus, I have sojourned with Laban, and
+stayed there until now: 32:5 And I have oxen, and asses, flocks, and
+menservants, and womenservants: and I have sent to tell my lord, that
+I may find grace in thy sight.
+
+32:6 And the messengers returned to Jacob, saying, We came to thy
+brother Esau, and also he cometh to meet thee, and four hundred men
+with him.
+
+32:7 Then Jacob was greatly afraid and distressed: and he divided the
+people that was with him, and the flocks, and herds, and the camels,
+into two bands; 32:8 And said, If Esau come to the one company, and
+smite it, then the other company which is left shall escape.
+
+32:9 And Jacob said, O God of my father Abraham, and God of my father
+Isaac, the LORD which saidst unto me, Return unto thy country, and to
+thy kindred, and I will deal well with thee: 32:10 I am not worthy of
+the least of all the mercies, and of all the truth, which thou hast
+shewed unto thy servant; for with my staff I passed over this Jordan;
+and now I am become two bands.
+
+32:11 Deliver me, I pray thee, from the hand of my brother, from the
+hand of Esau: for I fear him, lest he will come and smite me, and the
+mother with the children.
+
+32:12 And thou saidst, I will surely do thee good, and make thy seed
+as the sand of the sea, which cannot be numbered for multitude.
+
+32:13 And he lodged there that same night; and took of that which came
+to his hand a present for Esau his brother; 32:14 Two hundred she
+goats, and twenty he goats, two hundred ewes, and twenty rams, 32:15
+Thirty milch camels with their colts, forty kine, and ten bulls,
+twenty she asses, and ten foals.
+
+32:16 And he delivered them into the hand of his servants, every drove
+by themselves; and said unto his servants, Pass over before me, and
+put a space betwixt drove and drove.
+
+32:17 And he commanded the foremost, saying, When Esau my brother
+meeteth thee, and asketh thee, saying, Whose art thou? and whither
+goest thou? and whose are these before thee? 32:18 Then thou shalt
+say, They be thy servant Jacob's; it is a present sent unto my lord
+Esau: and, behold, also he is behind us.
+
+32:19 And so commanded he the second, and the third, and all that
+followed the droves, saying, On this manner shall ye speak unto Esau,
+when ye find him.
+
+32:20 And say ye moreover, Behold, thy servant Jacob is behind us. For
+he said, I will appease him with the present that goeth before me, and
+afterward I will see his face; peradventure he will accept of me.
+
+32:21 So went the present over before him: and himself lodged that
+night in the company.
+
+32:22 And he rose up that night, and took his two wives, and his two
+womenservants, and his eleven sons, and passed over the ford Jabbok.
+
+32:23 And he took them, and sent them over the brook, and sent over
+that he had.
+
+32:24 And Jacob was left alone; and there wrestled a man with him
+until the breaking of the day.
+
+32:25 And when he saw that he prevailed not against him, he touched
+the hollow of his thigh; and the hollow of Jacob's thigh was out of
+joint, as he wrestled with him.
+
+32:26 And he said, Let me go, for the day breaketh. And he said, I
+will not let thee go, except thou bless me.
+
+32:27 And he said unto him, What is thy name? And he said, Jacob.
+
+32:28 And he said, Thy name shall be called no more Jacob, but Israel:
+for as a prince hast thou power with God and with men, and hast
+prevailed.
+
+32:29 And Jacob asked him, and said, Tell me, I pray thee, thy name.
+And he said, Wherefore is it that thou dost ask after my name? And he
+blessed him there.
+
+32:30 And Jacob called the name of the place Peniel: for I have seen
+God face to face, and my life is preserved.
+
+32:31 And as he passed over Penuel the sun rose upon him, and he
+halted upon his thigh.
+
+32:32 Therefore the children of Israel eat not of the sinew which
+shrank, which is upon the hollow of the thigh, unto this day: because
+he touched the hollow of Jacob's thigh in the sinew that shrank.
+
+33:1 And Jacob lifted up his eyes, and looked, and, behold, Esau came,
+and with him four hundred men. And he divided the children unto Leah,
+and unto Rachel, and unto the two handmaids.
+
+33:2 And he put the handmaids and their children foremost, and Leah
+and her children after, and Rachel and Joseph hindermost.
+
+33:3 And he passed over before them, and bowed himself to the ground
+seven times, until he came near to his brother.
+
+33:4 And Esau ran to meet him, and embraced him, and fell on his neck,
+and kissed him: and they wept.
+
+33:5 And he lifted up his eyes, and saw the women and the children;
+and said, Who are those with thee? And he said, The children which God
+hath graciously given thy servant.
+
+33:6 Then the handmaidens came near, they and their children, and they
+bowed themselves.
+
+33:7 And Leah also with her children came near, and bowed themselves:
+and after came Joseph near and Rachel, and they bowed themselves.
+
+33:8 And he said, What meanest thou by all this drove which I met? And
+he said, These are to find grace in the sight of my lord.
+
+33:9 And Esau said, I have enough, my brother; keep that thou hast
+unto thyself.
+
+33:10 And Jacob said, Nay, I pray thee, if now I have found grace in
+thy sight, then receive my present at my hand: for therefore I have
+seen thy face, as though I had seen the face of God, and thou wast
+pleased with me.
+
+33:11 Take, I pray thee, my blessing that is brought to thee; because
+God hath dealt graciously with me, and because I have enough. And he
+urged him, and he took it.
+
+33:12 And he said, Let us take our journey, and let us go, and I will
+go before thee.
+
+33:13 And he said unto him, My lord knoweth that the children are
+tender, and the flocks and herds with young are with me: and if men
+should overdrive them one day, all the flock will die.
+
+33:14 Let my lord, I pray thee, pass over before his servant: and I
+will lead on softly, according as the cattle that goeth before me and
+the children be able to endure, until I come unto my lord unto Seir.
+
+33:15 And Esau said, Let me now leave with thee some of the folk that
+are with me. And he said, What needeth it? let me find grace in the
+sight of my lord.
+
+33:16 So Esau returned that day on his way unto Seir.
+
+33:17 And Jacob journeyed to Succoth, and built him an house, and made
+booths for his cattle: therefore the name of the place is called
+Succoth.
+
+33:18 And Jacob came to Shalem, a city of Shechem, which is in the
+land of Canaan, when he came from Padanaram; and pitched his tent
+before the city.
+
+33:19 And he bought a parcel of a field, where he had spread his tent,
+at the hand of the children of Hamor, Shechem's father, for an hundred
+pieces of money.
+
+33:20 And he erected there an altar, and called it EleloheIsrael.
+
+34:1 And Dinah the daughter of Leah, which she bare unto Jacob, went
+out to see the daughters of the land.
+
+34:2 And when Shechem the son of Hamor the Hivite, prince of the
+country, saw her, he took her, and lay with her, and defiled her.
+
+34:3 And his soul clave unto Dinah the daughter of Jacob, and he loved
+the damsel, and spake kindly unto the damsel.
+
+34:4 And Shechem spake unto his father Hamor, saying, Get me this
+damsel to wife.
+
+34:5 And Jacob heard that he had defiled Dinah his daughter: now his
+sons were with his cattle in the field: and Jacob held his peace until
+they were come.
+
+34:6 And Hamor the father of Shechem went out unto Jacob to commune
+with him.
+
+34:7 And the sons of Jacob came out of the field when they heard it:
+and the men were grieved, and they were very wroth, because he had
+wrought folly in Israel in lying with Jacob's daughter: which thing
+ought not to be done.
+
+34:8 And Hamor communed with them, saying, The soul of my son Shechem
+longeth for your daughter: I pray you give her him to wife.
+
+34:9 And make ye marriages with us, and give your daughters unto us,
+and take our daughters unto you.
+
+34:10 And ye shall dwell with us: and the land shall be before you;
+dwell and trade ye therein, and get you possessions therein.
+
+34:11 And Shechem said unto her father and unto her brethren, Let me
+find grace in your eyes, and what ye shall say unto me I will give.
+
+34:12 Ask me never so much dowry and gift, and I will give according
+as ye shall say unto me: but give me the damsel to wife.
+
+34:13 And the sons of Jacob answered Shechem and Hamor his father
+deceitfully, and said, because he had defiled Dinah their sister:
+34:14 And they said unto them, We cannot do this thing, to give our
+sister to one that is uncircumcised; for that were a reproach unto us:
+34:15 But in this will we consent unto you: If ye will be as we be,
+that every male of you be circumcised; 34:16 Then will we give our
+daughters unto you, and we will take your daughters to us, and we will
+dwell with you, and we will become one people.
+
+34:17 But if ye will not hearken unto us, to be circumcised; then will
+we take our daughter, and we will be gone.
+
+34:18 And their words pleased Hamor, and Shechem Hamor's son.
+
+34:19 And the young man deferred not to do the thing, because he had
+delight in Jacob's daughter: and he was more honourable than all the
+house of his father.
+
+34:20 And Hamor and Shechem his son came unto the gate of their city,
+and communed with the men of their city, saying, 34:21 These men are
+peaceable with us; therefore let them dwell in the land, and trade
+therein; for the land, behold, it is large enough for them; let us
+take their daughters to us for wives, and let us give them our
+daughters.
+
+34:22 Only herein will the men consent unto us for to dwell with us,
+to be one people, if every male among us be circumcised, as they are
+circumcised.
+
+34:23 Shall not their cattle and their substance and every beast of
+their's be our's? only let us consent unto them, and they will dwell
+with us.
+
+34:24 And unto Hamor and unto Shechem his son hearkened all that went
+out of the gate of his city; and every male was circumcised, all that
+went out of the gate of his city.
+
+34:25 And it came to pass on the third day, when they were sore, that
+two of the sons of Jacob, Simeon and Levi, Dinah's brethren, took each
+man his sword, and came upon the city boldly, and slew all the males.
+
+34:26 And they slew Hamor and Shechem his son with the edge of the
+sword, and took Dinah out of Shechem's house, and went out.
+
+34:27 The sons of Jacob came upon the slain, and spoiled the city,
+because they had defiled their sister.
+
+34:28 They took their sheep, and their oxen, and their asses, and that
+which was in the city, and that which was in the field, 34:29 And all
+their wealth, and all their little ones, and their wives took they
+captive, and spoiled even all that was in the house.
+
+34:30 And Jacob said to Simeon and Levi, Ye have troubled me to make
+me to stink among the inhabitants of the land, among the Canaanites
+and the Perizzites: and I being few in number, they shall gather
+themselves together against me, and slay me; and I shall be destroyed,
+I and my house.
+
+34:31 And they said, Should he deal with our sister as with an harlot?
+35:1 And God said unto Jacob, Arise, go up to Bethel, and dwell there:
+and make there an altar unto God, that appeared unto thee when thou
+fleddest from the face of Esau thy brother.
+
+35:2 Then Jacob said unto his household, and to all that were with
+him, Put away the strange gods that are among you, and be clean, and
+change your garments: 35:3 And let us arise, and go up to Bethel; and
+I will make there an altar unto God, who answered me in the day of my
+distress, and was with me in the way which I went.
+
+35:4 And they gave unto Jacob all the strange gods which were in their
+hand, and all their earrings which were in their ears; and Jacob hid
+them under the oak which was by Shechem.
+
+35:5 And they journeyed: and the terror of God was upon the cities
+that were round about them, and they did not pursue after the sons of
+Jacob.
+
+35:6 So Jacob came to Luz, which is in the land of Canaan, that is,
+Bethel, he and all the people that were with him.
+
+35:7 And he built there an altar, and called the place Elbethel:
+because there God appeared unto him, when he fled from the face of his
+brother.
+
+35:8 But Deborah Rebekah's nurse died, and she was buried beneath
+Bethel under an oak: and the name of it was called Allonbachuth.
+
+35:9 And God appeared unto Jacob again, when he came out of Padanaram,
+and blessed him.
+
+35:10 And God said unto him, Thy name is Jacob: thy name shall not be
+called any more Jacob, but Israel shall be thy name: and he called his
+name Israel.
+
+35:11 And God said unto him, I am God Almighty: be fruitful and
+multiply; a nation and a company of nations shall be of thee, and
+kings shall come out of thy loins; 35:12 And the land which I gave
+Abraham and Isaac, to thee I will give it, and to thy seed after thee
+will I give the land.
+
+35:13 And God went up from him in the place where he talked with him.
+
+35:14 And Jacob set up a pillar in the place where he talked with him,
+even a pillar of stone: and he poured a drink offering thereon, and he
+poured oil thereon.
+
+35:15 And Jacob called the name of the place where God spake with him,
+Bethel.
+
+35:16 And they journeyed from Bethel; and there was but a little way
+to come to Ephrath: and Rachel travailed, and she had hard labour.
+
+35:17 And it came to pass, when she was in hard labour, that the
+midwife said unto her, Fear not; thou shalt have this son also.
+
+35:18 And it came to pass, as her soul was in departing, (for she
+died) that she called his name Benoni: but his father called him
+Benjamin.
+
+35:19 And Rachel died, and was buried in the way to Ephrath, which is
+Bethlehem.
+
+35:20 And Jacob set a pillar upon her grave: that is the pillar of
+Rachel's grave unto this day.
+
+35:21 And Israel journeyed, and spread his tent beyond the tower of
+Edar.
+
+35:22 And it came to pass, when Israel dwelt in that land, that Reuben
+went and lay with Bilhah his father's concubine: and Israel heard it.
+Now the sons of Jacob were twelve: 35:23 The sons of Leah; Reuben,
+Jacob's firstborn, and Simeon, and Levi, and Judah, and Issachar, and
+Zebulun: 35:24 The sons of Rachel; Joseph, and Benjamin: 35:25 And the
+sons of Bilhah, Rachel's handmaid; Dan, and Naphtali: 35:26 And the
+sons of Zilpah, Leah's handmaid: Gad, and Asher: these are the sons of
+Jacob, which were born to him in Padanaram.
+
+35:27 And Jacob came unto Isaac his father unto Mamre, unto the city
+of Arbah, which is Hebron, where Abraham and Isaac sojourned.
+
+35:28 And the days of Isaac were an hundred and fourscore years.
+
+35:29 And Isaac gave up the ghost, and died, and was gathered unto his
+people, being old and full of days: and his sons Esau and Jacob buried
+him.
+
+36:1 Now these are the generations of Esau, who is Edom.
+
+36:2 Esau took his wives of the daughters of Canaan; Adah the daughter
+of Elon the Hittite, and Aholibamah the daughter of Anah the daughter
+of Zibeon the Hivite; 36:3 And Bashemath Ishmael's daughter, sister of
+Nebajoth.
+
+36:4 And Adah bare to Esau Eliphaz; and Bashemath bare Reuel; 36:5 And
+Aholibamah bare Jeush, and Jaalam, and Korah: these are the sons of
+Esau, which were born unto him in the land of Canaan.
+
+36:6 And Esau took his wives, and his sons, and his daughters, and all
+the persons of his house, and his cattle, and all his beasts, and all
+his substance, which he had got in the land of Canaan; and went into
+the country from the face of his brother Jacob.
+
+36:7 For their riches were more than that they might dwell together;
+and the land wherein they were strangers could not bear them because
+of their cattle.
+
+36:8 Thus dwelt Esau in mount Seir: Esau is Edom.
+
+36:9 And these are the generations of Esau the father of the Edomites
+in mount Seir: 36:10 These are the names of Esau's sons; Eliphaz the
+son of Adah the wife of Esau, Reuel the son of Bashemath the wife of
+Esau.
+
+36:11 And the sons of Eliphaz were Teman, Omar, Zepho, and Gatam, and
+Kenaz.
+
+36:12 And Timna was concubine to Eliphaz Esau's son; and she bare to
+Eliphaz Amalek: these were the sons of Adah Esau's wife.
+
+36:13 And these are the sons of Reuel; Nahath, and Zerah, Shammah, and
+Mizzah: these were the sons of Bashemath Esau's wife.
+
+36:14 And these were the sons of Aholibamah, the daughter of Anah the
+daughter of Zibeon, Esau's wife: and she bare to Esau Jeush, and
+Jaalam, and Korah.
+
+36:15 These were dukes of the sons of Esau: the sons of Eliphaz the
+firstborn son of Esau; duke Teman, duke Omar, duke Zepho, duke Kenaz,
+36:16 Duke Korah, duke Gatam, and duke Amalek: these are the dukes
+that came of Eliphaz in the land of Edom; these were the sons of Adah.
+
+36:17 And these are the sons of Reuel Esau's son; duke Nahath, duke
+Zerah, duke Shammah, duke Mizzah: these are the dukes that came of
+Reuel in the land of Edom; these are the sons of Bashemath Esau's
+wife.
+
+36:18 And these are the sons of Aholibamah Esau's wife; duke Jeush,
+duke Jaalam, duke Korah: these were the dukes that came of Aholibamah
+the daughter of Anah, Esau's wife.
+
+36:19 These are the sons of Esau, who is Edom, and these are their
+dukes.
+
+36:20 These are the sons of Seir the Horite, who inhabited the land;
+Lotan, and Shobal, and Zibeon, and Anah, 36:21 And Dishon, and Ezer,
+and Dishan: these are the dukes of the Horites, the children of Seir
+in the land of Edom.
+
+36:22 And the children of Lotan were Hori and Hemam; and Lotan's
+sister was Timna.
+
+36:23 And the children of Shobal were these; Alvan, and Manahath, and
+Ebal, Shepho, and Onam.
+
+36:24 And these are the children of Zibeon; both Ajah, and Anah: this
+was that Anah that found the mules in the wilderness, as he fed the
+asses of Zibeon his father.
+
+36:25 And the children of Anah were these; Dishon, and Aholibamah the
+daughter of Anah.
+
+36:26 And these are the children of Dishon; Hemdan, and Eshban, and
+Ithran, and Cheran.
+
+36:27 The children of Ezer are these; Bilhan, and Zaavan, and Akan.
+
+36:28 The children of Dishan are these; Uz, and Aran.
+
+36:29 These are the dukes that came of the Horites; duke Lotan, duke
+Shobal, duke Zibeon, duke Anah, 36:30 Duke Dishon, duke Ezer, duke
+Dishan: these are the dukes that came of Hori, among their dukes in
+the land of Seir.
+
+36:31 And these are the kings that reigned in the land of Edom, before
+there reigned any king over the children of Israel.
+
+36:32 And Bela the son of Beor reigned in Edom: and the name of his
+city was Dinhabah.
+
+36:33 And Bela died, and Jobab the son of Zerah of Bozrah reigned in
+his stead.
+
+36:34 And Jobab died, and Husham of the land of Temani reigned in his
+stead.
+
+36:35 And Husham died, and Hadad the son of Bedad, who smote Midian in
+the field of Moab, reigned in his stead: and the name of his city was
+Avith.
+
+36:36 And Hadad died, and Samlah of Masrekah reigned in his stead.
+
+36:37 And Samlah died, and Saul of Rehoboth by the river reigned in
+his stead.
+
+36:38 And Saul died, and Baalhanan the son of Achbor reigned in his
+stead.
+
+36:39 And Baalhanan the son of Achbor died, and Hadar reigned in his
+stead: and the name of his city was Pau; and his wife's name was
+Mehetabel, the daughter of Matred, the daughter of Mezahab.
+
+36:40 And these are the names of the dukes that came of Esau,
+according to their families, after their places, by their names; duke
+Timnah, duke Alvah, duke Jetheth, 36:41 Duke Aholibamah, duke Elah,
+duke Pinon, 36:42 Duke Kenaz, duke Teman, duke Mibzar, 36:43 Duke
+Magdiel, duke Iram: these be the dukes of Edom, according to their
+habitations in the land of their possession: he is Esau the father of
+the Edomites.
+
+37:1 And Jacob dwelt in the land wherein his father was a stranger, in
+the land of Canaan.
+
+37:2 These are the generations of Jacob. Joseph, being seventeen years
+old, was feeding the flock with his brethren; and the lad was with the
+sons of Bilhah, and with the sons of Zilpah, his father's wives: and
+Joseph brought unto his father their evil report.
+
+37:3 Now Israel loved Joseph more than all his children, because he
+was the son of his old age: and he made him a coat of many colours.
+
+37:4 And when his brethren saw that their father loved him more than
+all his brethren, they hated him, and could not speak peaceably unto
+him.
+
+37:5 And Joseph dreamed a dream, and he told it his brethren: and they
+hated him yet the more.
+
+37:6 And he said unto them, Hear, I pray you, this dream which I have
+dreamed: 37:7 For, behold, we were binding sheaves in the field, and,
+lo, my sheaf arose, and also stood upright; and, behold, your sheaves
+stood round about, and made obeisance to my sheaf.
+
+37:8 And his brethren said to him, Shalt thou indeed reign over us? or
+shalt thou indeed have dominion over us? And they hated him yet the
+more for his dreams, and for his words.
+
+37:9 And he dreamed yet another dream, and told it his brethren, and
+said, Behold, I have dreamed a dream more; and, behold, the sun and
+the moon and the eleven stars made obeisance to me.
+
+37:10 And he told it to his father, and to his brethren: and his
+father rebuked him, and said unto him, What is this dream that thou
+hast dreamed? Shall I and thy mother and thy brethren indeed come to
+bow down ourselves to thee to the earth? 37:11 And his brethren
+envied him; but his father observed the saying.
+
+37:12 And his brethren went to feed their father's flock in Shechem.
+
+37:13 And Israel said unto Joseph, Do not thy brethren feed the flock
+in Shechem? come, and I will send thee unto them. And he said to him,
+Here am I.
+
+37:14 And he said to him, Go, I pray thee, see whether it be well with
+thy brethren, and well with the flocks; and bring me word again. So he
+sent him out of the vale of Hebron, and he came to Shechem.
+
+37:15 And a certain man found him, and, behold, he was wandering in
+the field: and the man asked him, saying, What seekest thou? 37:16
+And he said, I seek my brethren: tell me, I pray thee, where they feed
+their flocks.
+
+37:17 And the man said, They are departed hence; for I heard them say,
+Let us go to Dothan. And Joseph went after his brethren, and found
+them in Dothan.
+
+37:18 And when they saw him afar off, even before he came near unto
+them, they conspired against him to slay him.
+
+37:19 And they said one to another, Behold, this dreamer cometh.
+
+37:20 Come now therefore, and let us slay him, and cast him into some
+pit, and we will say, Some evil beast hath devoured him: and we shall
+see what will become of his dreams.
+
+37:21 And Reuben heard it, and he delivered him out of their hands;
+and said, Let us not kill him.
+
+37:22 And Reuben said unto them, Shed no blood, but cast him into this
+pit that is in the wilderness, and lay no hand upon him; that he might
+rid him out of their hands, to deliver him to his father again.
+
+37:23 And it came to pass, when Joseph was come unto his brethren,
+that they stript Joseph out of his coat, his coat of many colours that
+was on him; 37:24 And they took him, and cast him into a pit: and the
+pit was empty, there was no water in it.
+
+37:25 And they sat down to eat bread: and they lifted up their eyes
+and looked, and, behold, a company of Ishmeelites came from Gilead
+with their camels bearing spicery and balm and myrrh, going to carry
+it down to Egypt.
+
+37:26 And Judah said unto his brethren, What profit is it if we slay
+our brother, and conceal his blood? 37:27 Come, and let us sell him
+to the Ishmeelites, and let not our hand be upon him; for he is our
+brother and our flesh. And his brethren were content.
+
+37:28 Then there passed by Midianites merchantmen; and they drew and
+lifted up Joseph out of the pit, and sold Joseph to the Ishmeelites
+for twenty pieces of silver: and they brought Joseph into Egypt.
+
+37:29 And Reuben returned unto the pit; and, behold, Joseph was not in
+the pit; and he rent his clothes.
+
+37:30 And he returned unto his brethren, and said, The child is not;
+and I, whither shall I go? 37:31 And they took Joseph's coat, and
+killed a kid of the goats, and dipped the coat in the blood; 37:32 And
+they sent the coat of many colours, and they brought it to their
+father; and said, This have we found: know now whether it be thy son's
+coat or no.
+
+37:33 And he knew it, and said, It is my son's coat; an evil beast
+hath devoured him; Joseph is without doubt rent in pieces.
+
+37:34 And Jacob rent his clothes, and put sackcloth upon his loins,
+and mourned for his son many days.
+
+37:35 And all his sons and all his daughters rose up to comfort him;
+but he refused to be comforted; and he said, For I will go down into
+the grave unto my son mourning. Thus his father wept for him.
+
+37:36 And the Midianites sold him into Egypt unto Potiphar, an officer
+of Pharaoh's, and captain of the guard.
+
+38:1 And it came to pass at that time, that Judah went down from his
+brethren, and turned in to a certain Adullamite, whose name was Hirah.
+
+38:2 And Judah saw there a daughter of a certain Canaanite, whose name
+was Shuah; and he took her, and went in unto her.
+
+38:3 And she conceived, and bare a son; and he called his name Er.
+
+38:4 And she conceived again, and bare a son; and she called his name
+Onan.
+
+38:5 And she yet again conceived, and bare a son; and called his name
+Shelah: and he was at Chezib, when she bare him.
+
+38:6 And Judah took a wife for Er his firstborn, whose name was Tamar.
+
+38:7 And Er, Judah's firstborn, was wicked in the sight of the LORD;
+and the LORD slew him.
+
+38:8 And Judah said unto Onan, Go in unto thy brother's wife, and
+marry her, and raise up seed to thy brother.
+
+38:9 And Onan knew that the seed should not be his; and it came to
+pass, when he went in unto his brother's wife, that he spilled it on
+the ground, lest that he should give seed to his brother.
+
+38:10 And the thing which he did displeased the LORD: wherefore he
+slew him also.
+
+38:11 Then said Judah to Tamar his daughter in law, Remain a widow at
+thy father's house, till Shelah my son be grown: for he said, Lest
+peradventure he die also, as his brethren did. And Tamar went and
+dwelt in her father's house.
+
+38:12 And in process of time the daughter of Shuah Judah's wife died;
+and Judah was comforted, and went up unto his sheepshearers to
+Timnath, he and his friend Hirah the Adullamite.
+
+38:13 And it was told Tamar, saying, Behold thy father in law goeth up
+to Timnath to shear his sheep.
+
+38:14 And she put her widow's garments off from her, and covered her
+with a vail, and wrapped herself, and sat in an open place, which is
+by the way to Timnath; for she saw that Shelah was grown, and she was
+not given unto him to wife.
+
+38:15 When Judah saw her, he thought her to be an harlot; because she
+had covered her face.
+
+38:16 And he turned unto her by the way, and said, Go to, I pray thee,
+let me come in unto thee; (for he knew not that she was his daughter
+in law.) And she said, What wilt thou give me, that thou mayest come
+in unto me? 38:17 And he said, I will send thee a kid from the flock.
+And she said, Wilt thou give me a pledge, till thou send it? 38:18
+And he said, What pledge shall I give thee? And she said, Thy signet,
+and thy bracelets, and thy staff that is in thine hand. And he gave it
+her, and came in unto her, and she conceived by him.
+
+38:19 And she arose, and went away, and laid by her vail from her, and
+put on the garments of her widowhood.
+
+38:20 And Judah sent the kid by the hand of his friend the Adullamite,
+to receive his pledge from the woman's hand: but he found her not.
+
+38:21 Then he asked the men of that place, saying, Where is the
+harlot, that was openly by the way side? And they said, There was no
+harlot in this place.
+
+38:22 And he returned to Judah, and said, I cannot find her; and also
+the men of the place said, that there was no harlot in this place.
+
+38:23 And Judah said, Let her take it to her, lest we be shamed:
+behold, I sent this kid, and thou hast not found her.
+
+38:24 And it came to pass about three months after, that it was told
+Judah, saying, Tamar thy daughter in law hath played the harlot; and
+also, behold, she is with child by whoredom. And Judah said, Bring her
+forth, and let her be burnt.
+
+38:25 When she was brought forth, she sent to her father in law,
+saying, By the man, whose these are, am I with child: and she said,
+Discern, I pray thee, whose are these, the signet, and bracelets, and
+staff.
+
+38:26 And Judah acknowledged them, and said, She hath been more
+righteous than I; because that I gave her not to Shelah my son. And he
+knew her again no more.
+
+38:27 And it came to pass in the time of her travail, that, behold,
+twins were in her womb.
+
+38:28 And it came to pass, when she travailed, that the one put out
+his hand: and the midwife took and bound upon his hand a scarlet
+thread, saying, This came out first.
+
+38:29 And it came to pass, as he drew back his hand, that, behold, his
+brother came out: and she said, How hast thou broken forth? this
+breach be upon thee: therefore his name was called Pharez.
+
+38:30 And afterward came out his brother, that had the scarlet thread
+upon his hand: and his name was called Zarah.
+
+39:1 And Joseph was brought down to Egypt; and Potiphar, an officer of
+Pharaoh, captain of the guard, an Egyptian, bought him of the hands of
+the Ishmeelites, which had brought him down thither.
+
+39:2 And the LORD was with Joseph, and he was a prosperous man; and he
+was in the house of his master the Egyptian.
+
+39:3 And his master saw that the LORD was with him, and that the LORD
+made all that he did to prosper in his hand.
+
+39:4 And Joseph found grace in his sight, and he served him: and he
+made him overseer over his house, and all that he had he put into his
+hand.
+
+39:5 And it came to pass from the time that he had made him overseer
+in his house, and over all that he had, that the LORD blessed the
+Egyptian's house for Joseph's sake; and the blessing of the LORD was
+upon all that he had in the house, and in the field.
+
+39:6 And he left all that he had in Joseph's hand; and he knew not
+ought he had, save the bread which he did eat. And Joseph was a goodly
+person, and well favoured.
+
+39:7 And it came to pass after these things, that his master's wife
+cast her eyes upon Joseph; and she said, Lie with me.
+
+39:8 But he refused, and said unto his master's wife, Behold, my
+master wotteth not what is with me in the house, and he hath committed
+all that he hath to my hand; 39:9 There is none greater in this house
+than I; neither hath he kept back any thing from me but thee, because
+thou art his wife: how then can I do this great wickedness, and sin
+against God? 39:10 And it came to pass, as she spake to Joseph day by
+day, that he hearkened not unto her, to lie by her, or to be with her.
+
+39:11 And it came to pass about this time, that Joseph went into the
+house to do his business; and there was none of the men of the house
+there within.
+
+39:12 And she caught him by his garment, saying, Lie with me: and he
+left his garment in her hand, and fled, and got him out.
+
+39:13 And it came to pass, when she saw that he had left his garment
+in her hand, and was fled forth, 39:14 That she called unto the men of
+her house, and spake unto them, saying, See, he hath brought in an
+Hebrew unto us to mock us; he came in unto me to lie with me, and I
+cried with a loud voice: 39:15 And it came to pass, when he heard that
+I lifted up my voice and cried, that he left his garment with me, and
+fled, and got him out.
+
+39:16 And she laid up his garment by her, until his lord came home.
+
+39:17 And she spake unto him according to these words, saying, The
+Hebrew servant, which thou hast brought unto us, came in unto me to
+mock me: 39:18 And it came to pass, as I lifted up my voice and cried,
+that he left his garment with me, and fled out.
+
+39:19 And it came to pass, when his master heard the words of his
+wife, which she spake unto him, saying, After this manner did thy
+servant to me; that his wrath was kindled.
+
+39:20 And Joseph's master took him, and put him into the prison, a
+place where the king's prisoners were bound: and he was there in the
+prison.
+
+39:21 But the LORD was with Joseph, and shewed him mercy, and gave him
+favour in the sight of the keeper of the prison.
+
+39:22 And the keeper of the prison committed to Joseph's hand all the
+prisoners that were in the prison; and whatsoever they did there, he
+was the doer of it.
+
+39:23 The keeper of the prison looked not to any thing that was under
+his hand; because the LORD was with him, and that which he did, the
+LORD made it to prosper.
+
+40:1 And it came to pass after these things, that the butler of the
+king of Egypt and his baker had offended their lord the king of Egypt.
+
+40:2 And Pharaoh was wroth against two of his officers, against the
+chief of the butlers, and against the chief of the bakers.
+
+40:3 And he put them in ward in the house of the captain of the guard,
+into the prison, the place where Joseph was bound.
+
+40:4 And the captain of the guard charged Joseph with them, and he
+served them: and they continued a season in ward.
+
+40:5 And they dreamed a dream both of them, each man his dream in one
+night, each man according to the interpretation of his dream, the
+butler and the baker of the king of Egypt, which were bound in the
+prison.
+
+40:6 And Joseph came in unto them in the morning, and looked upon
+them, and, behold, they were sad.
+
+40:7 And he asked Pharaoh's officers that were with him in the ward of
+his lord's house, saying, Wherefore look ye so sadly to day? 40:8 And
+they said unto him, We have dreamed a dream, and there is no
+interpreter of it. And Joseph said unto them, Do not interpretations
+belong to God? tell me them, I pray you.
+
+40:9 And the chief butler told his dream to Joseph, and said to him,
+In my dream, behold, a vine was before me; 40:10 And in the vine were
+three branches: and it was as though it budded, and her blossoms shot
+forth; and the clusters thereof brought forth ripe grapes: 40:11 And
+Pharaoh's cup was in my hand: and I took the grapes, and pressed them
+into Pharaoh's cup, and I gave the cup into Pharaoh's hand.
+
+40:12 And Joseph said unto him, This is the interpretation of it: The
+three branches are three days: 40:13 Yet within three days shall
+Pharaoh lift up thine head, and restore thee unto thy place: and thou
+shalt deliver Pharaoh's cup into his hand, after the former manner
+when thou wast his butler.
+
+40:14 But think on me when it shall be well with thee, and shew
+kindness, I pray thee, unto me, and make mention of me unto Pharaoh,
+and bring me out of this house: 40:15 For indeed I was stolen away out
+of the land of the Hebrews: and here also have I done nothing that
+they should put me into the dungeon.
+
+40:16 When the chief baker saw that the interpretation was good, he
+said unto Joseph, I also was in my dream, and, behold, I had three
+white baskets on my head: 40:17 And in the uppermost basket there was
+of all manner of bakemeats for Pharaoh; and the birds did eat them out
+of the basket upon my head.
+
+40:18 And Joseph answered and said, This is the interpretation
+thereof: The three baskets are three days: 40:19 Yet within three days
+shall Pharaoh lift up thy head from off thee, and shall hang thee on a
+tree; and the birds shall eat thy flesh from off thee.
+
+40:20 And it came to pass the third day, which was Pharaoh's birthday,
+that he made a feast unto all his servants: and he lifted up the head
+of the chief butler and of the chief baker among his servants.
+
+40:21 And he restored the chief butler unto his butlership again; and
+he gave the cup into Pharaoh's hand: 40:22 But he hanged the chief
+baker: as Joseph had interpreted to them.
+
+40:23 Yet did not the chief butler remember Joseph, but forgat him.
+
+41:1 And it came to pass at the end of two full years, that Pharaoh
+dreamed: and, behold, he stood by the river.
+
+41:2 And, behold, there came up out of the river seven well favoured
+kine and fatfleshed; and they fed in a meadow.
+
+41:3 And, behold, seven other kine came up after them out of the
+river, ill favoured and leanfleshed; and stood by the other kine upon
+the brink of the river.
+
+41:4 And the ill favoured and leanfleshed kine did eat up the seven
+well favoured and fat kine. So Pharaoh awoke.
+
+41:5 And he slept and dreamed the second time: and, behold, seven ears
+of corn came up upon one stalk, rank and good.
+
+41:6 And, behold, seven thin ears and blasted with the east wind
+sprung up after them.
+
+41:7 And the seven thin ears devoured the seven rank and full ears.
+And Pharaoh awoke, and, behold, it was a dream.
+
+41:8 And it came to pass in the morning that his spirit was troubled;
+and he sent and called for all the magicians of Egypt, and all the
+wise men thereof: and Pharaoh told them his dream; but there was none
+that could interpret them unto Pharaoh.
+
+41:9 Then spake the chief butler unto Pharaoh, saying, I do remember
+my faults this day: 41:10 Pharaoh was wroth with his servants, and put
+me in ward in the captain of the guard's house, both me and the chief
+baker: 41:11 And we dreamed a dream in one night, I and he; we dreamed
+each man according to the interpretation of his dream.
+
+41:12 And there was there with us a young man, an Hebrew, servant to
+the captain of the guard; and we told him, and he interpreted to us
+our dreams; to each man according to his dream he did interpret.
+
+41:13 And it came to pass, as he interpreted to us, so it was; me he
+restored unto mine office, and him he hanged.
+
+41:14 Then Pharaoh sent and called Joseph, and they brought him
+hastily out of the dungeon: and he shaved himself, and changed his
+raiment, and came in unto Pharaoh.
+
+41:15 And Pharaoh said unto Joseph, I have dreamed a dream, and there
+is none that can interpret it: and I have heard say of thee, that thou
+canst understand a dream to interpret it.
+
+41:16 And Joseph answered Pharaoh, saying, It is not in me: God shall
+give Pharaoh an answer of peace.
+
+41:17 And Pharaoh said unto Joseph, In my dream, behold, I stood upon
+the bank of the river: 41:18 And, behold, there came up out of the
+river seven kine, fatfleshed and well favoured; and they fed in a
+meadow: 41:19 And, behold, seven other kine came up after them, poor
+and very ill favoured and leanfleshed, such as I never saw in all the
+land of Egypt for badness: 41:20 And the lean and the ill favoured
+kine did eat up the first seven fat kine: 41:21 And when they had
+eaten them up, it could not be known that they had eaten them; but
+they were still ill favoured, as at the beginning. So I awoke.
+
+41:22 And I saw in my dream, and, behold, seven ears came up in one
+stalk, full and good: 41:23 And, behold, seven ears, withered, thin,
+and blasted with the east wind, sprung up after them: 41:24 And the
+thin ears devoured the seven good ears: and I told this unto the
+magicians; but there was none that could declare it to me.
+
+41:25 And Joseph said unto Pharaoh, The dream of Pharaoh is one: God
+hath shewed Pharaoh what he is about to do.
+
+41:26 The seven good kine are seven years; and the seven good ears are
+seven years: the dream is one.
+
+41:27 And the seven thin and ill favoured kine that came up after them
+are seven years; and the seven empty ears blasted with the east wind
+shall be seven years of famine.
+
+41:28 This is the thing which I have spoken unto Pharaoh: What God is
+about to do he sheweth unto Pharaoh.
+
+41:29 Behold, there come seven years of great plenty throughout all
+the land of Egypt: 41:30 And there shall arise after them seven years
+of famine; and all the plenty shall be forgotten in the land of Egypt;
+and the famine shall consume the land; 41:31 And the plenty shall not
+be known in the land by reason of that famine following; for it shall
+be very grievous.
+
+41:32 And for that the dream was doubled unto Pharaoh twice; it is
+because the thing is established by God, and God will shortly bring it
+to pass.
+
+41:33 Now therefore let Pharaoh look out a man discreet and wise, and
+set him over the land of Egypt.
+
+41:34 Let Pharaoh do this, and let him appoint officers over the land,
+and take up the fifth part of the land of Egypt in the seven plenteous
+years.
+
+41:35 And let them gather all the food of those good years that come,
+and lay up corn under the hand of Pharaoh, and let them keep food in
+the cities.
+
+41:36 And that food shall be for store to the land against the seven
+years of famine, which shall be in the land of Egypt; that the land
+perish not through the famine.
+
+41:37 And the thing was good in the eyes of Pharaoh, and in the eyes
+of all his servants.
+
+41:38 And Pharaoh said unto his servants, Can we find such a one as
+this is, a man in whom the Spirit of God is? 41:39 And Pharaoh said
+unto Joseph, Forasmuch as God hath shewed thee all this, there is none
+so discreet and wise as thou art: 41:40 Thou shalt be over my house,
+and according unto thy word shall all my people be ruled: only in the
+throne will I be greater than thou.
+
+41:41 And Pharaoh said unto Joseph, See, I have set thee over all the
+land of Egypt.
+
+41:42 And Pharaoh took off his ring from his hand, and put it upon
+Joseph's hand, and arrayed him in vestures of fine linen, and put a
+gold chain about his neck; 41:43 And he made him to ride in the second
+chariot which he had; and they cried before him, Bow the knee: and he
+made him ruler over all the land of Egypt.
+
+41:44 And Pharaoh said unto Joseph, I am Pharaoh, and without thee
+shall no man lift up his hand or foot in all the land of Egypt.
+
+41:45 And Pharaoh called Joseph's name Zaphnathpaaneah; and he gave
+him to wife Asenath the daughter of Potipherah priest of On. And
+Joseph went out over all the land of Egypt.
+
+41:46 And Joseph was thirty years old when he stood before Pharaoh
+king of Egypt. And Joseph went out from the presence of Pharaoh, and
+went throughout all the land of Egypt.
+
+41:47 And in the seven plenteous years the earth brought forth by
+handfuls.
+
+41:48 And he gathered up all the food of the seven years, which were
+in the land of Egypt, and laid up the food in the cities: the food of
+the field, which was round about every city, laid he up in the same.
+
+41:49 And Joseph gathered corn as the sand of the sea, very much,
+until he left numbering; for it was without number.
+
+41:50 And unto Joseph were born two sons before the years of famine
+came, which Asenath the daughter of Potipherah priest of On bare unto
+him.
+
+41:51 And Joseph called the name of the firstborn Manasseh: For God,
+said he, hath made me forget all my toil, and all my father's house.
+
+41:52 And the name of the second called he Ephraim: For God hath
+caused me to be fruitful in the land of my affliction.
+
+41:53 And the seven years of plenteousness, that was in the land of
+Egypt, were ended.
+
+41:54 And the seven years of dearth began to come, according as Joseph
+had said: and the dearth was in all lands; but in all the land of
+Egypt there was bread.
+
+41:55 And when all the land of Egypt was famished, the people cried to
+Pharaoh for bread: and Pharaoh said unto all the Egyptians, Go unto
+Joseph; what he saith to you, do.
+
+41:56 And the famine was over all the face of the earth: and Joseph
+opened all the storehouses, and sold unto the Egyptians; and the
+famine waxed sore in the land of Egypt.
+
+41:57 And all countries came into Egypt to Joseph for to buy corn;
+because that the famine was so sore in all lands.
+
+42:1 Now when Jacob saw that there was corn in Egypt, Jacob said unto
+his sons, Why do ye look one upon another? 42:2 And he said, Behold,
+I have heard that there is corn in Egypt: get you down thither, and
+buy for us from thence; that we may live, and not die.
+
+42:3 And Joseph's ten brethren went down to buy corn in Egypt.
+
+42:4 But Benjamin, Joseph's brother, Jacob sent not with his brethren;
+for he said, Lest peradventure mischief befall him.
+
+42:5 And the sons of Israel came to buy corn among those that came:
+for the famine was in the land of Canaan.
+
+42:6 And Joseph was the governor over the land, and he it was that
+sold to all the people of the land: and Joseph's brethren came, and
+bowed down themselves before him with their faces to the earth.
+
+42:7 And Joseph saw his brethren, and he knew them, but made himself
+strange unto them, and spake roughly unto them; and he said unto them,
+Whence come ye? And they said, From the land of Canaan to buy food.
+
+42:8 And Joseph knew his brethren, but they knew not him.
+
+42:9 And Joseph remembered the dreams which he dreamed of them, and
+said unto them, Ye are spies; to see the nakedness of the land ye are
+come.
+
+42:10 And they said unto him, Nay, my lord, but to buy food are thy
+servants come.
+
+42:11 We are all one man's sons; we are true men, thy servants are no
+spies.
+
+42:12 And he said unto them, Nay, but to see the nakedness of the land
+ye are come.
+
+42:13 And they said, Thy servants are twelve brethren, the sons of one
+man in the land of Canaan; and, behold, the youngest is this day with
+our father, and one is not.
+
+42:14 And Joseph said unto them, That is it that I spake unto you,
+saying, Ye are spies: 42:15 Hereby ye shall be proved: By the life of
+Pharaoh ye shall not go forth hence, except your youngest brother come
+hither.
+
+42:16 Send one of you, and let him fetch your brother, and ye shall be
+kept in prison, that your words may be proved, whether there be any
+truth in you: or else by the life of Pharaoh surely ye are spies.
+
+42:17 And he put them all together into ward three days.
+
+42:18 And Joseph said unto them the third day, This do, and live; for
+I fear God: 42:19 If ye be true men, let one of your brethren be bound
+in the house of your prison: go ye, carry corn for the famine of your
+houses: 42:20 But bring your youngest brother unto me; so shall your
+words be verified, and ye shall not die. And they did so.
+
+42:21 And they said one to another, We are verily guilty concerning
+our brother, in that we saw the anguish of his soul, when he besought
+us, and we would not hear; therefore is this distress come upon us.
+
+42:22 And Reuben answered them, saying, Spake I not unto you, saying,
+Do not sin against the child; and ye would not hear? therefore,
+behold, also his blood is required.
+
+42:23 And they knew not that Joseph understood them; for he spake unto
+them by an interpreter.
+
+42:24 And he turned himself about from them, and wept; and returned to
+them again, and communed with them, and took from them Simeon, and
+bound him before their eyes.
+
+42:25 Then Joseph commanded to fill their sacks with corn, and to
+restore every man's money into his sack, and to give them provision
+for the way: and thus did he unto them.
+
+42:26 And they laded their asses with the corn, and departed thence.
+
+42:27 And as one of them opened his sack to give his ass provender in
+the inn, he espied his money; for, behold, it was in his sack's mouth.
+
+42:28 And he said unto his brethren, My money is restored; and, lo, it
+is even in my sack: and their heart failed them, and they were afraid,
+saying one to another, What is this that God hath done unto us? 42:29
+And they came unto Jacob their father unto the land of Canaan, and
+told him all that befell unto them; saying, 42:30 The man, who is the
+lord of the land, spake roughly to us, and took us for spies of the
+country.
+
+42:31 And we said unto him, We are true men; we are no spies: 42:32 We
+be twelve brethren, sons of our father; one is not, and the youngest
+is this day with our father in the land of Canaan.
+
+42:33 And the man, the lord of the country, said unto us, Hereby shall
+I know that ye are true men; leave one of your brethren here with me,
+and take food for the famine of your households, and be gone: 42:34
+And bring your youngest brother unto me: then shall I know that ye are
+no spies, but that ye are true men: so will I deliver you your
+brother, and ye shall traffick in the land.
+
+42:35 And it came to pass as they emptied their sacks, that, behold,
+every man's bundle of money was in his sack: and when both they and
+their father saw the bundles of money, they were afraid.
+
+42:36 And Jacob their father said unto them, Me have ye bereaved of my
+children: Joseph is not, and Simeon is not, and ye will take Benjamin
+away: all these things are against me.
+
+42:37 And Reuben spake unto his father, saying, Slay my two sons, if I
+bring him not to thee: deliver him into my hand, and I will bring him
+to thee again.
+
+42:38 And he said, My son shall not go down with you; for his brother
+is dead, and he is left alone: if mischief befall him by the way in
+the which ye go, then shall ye bring down my gray hairs with sorrow to
+the grave.
+
+43:1 And the famine was sore in the land.
+
+43:2 And it came to pass, when they had eaten up the corn which they
+had brought out of Egypt, their father said unto them, Go again, buy
+us a little food.
+
+43:3 And Judah spake unto him, saying, The man did solemnly protest
+unto us, saying, Ye shall not see my face, except your brother be with
+you.
+
+43:4 If thou wilt send our brother with us, we will go down and buy
+thee food: 43:5 But if thou wilt not send him, we will not go down:
+for the man said unto us, Ye shall not see my face, except your
+brother be with you.
+
+43:6 And Israel said, Wherefore dealt ye so ill with me, as to tell
+the man whether ye had yet a brother? 43:7 And they said, The man
+asked us straitly of our state, and of our kindred, saying, Is your
+father yet alive? have ye another brother? and we told him according
+to the tenor of these words: could we certainly know that he would
+say, Bring your brother down? 43:8 And Judah said unto Israel his
+father, Send the lad with me, and we will arise and go; that we may
+live, and not die, both we, and thou, and also our little ones.
+
+43:9 I will be surety for him; of my hand shalt thou require him: if I
+bring him not unto thee, and set him before thee, then let me bear the
+blame for ever: 43:10 For except we had lingered, surely now we had
+returned this second time.
+
+43:11 And their father Israel said unto them, If it must be so now, do
+this; take of the best fruits in the land in your vessels, and carry
+down the man a present, a little balm, and a little honey, spices, and
+myrrh, nuts, and almonds: 43:12 And take double money in your hand;
+and the money that was brought again in the mouth of your sacks, carry
+it again in your hand; peradventure it was an oversight: 43:13 Take
+also your brother, and arise, go again unto the man: 43:14 And God
+Almighty give you mercy before the man, that he may send away your
+other brother, and Benjamin. If I be bereaved of my children, I am
+bereaved.
+
+43:15 And the men took that present, and they took double money in
+their hand and Benjamin; and rose up, and went down to Egypt, and
+stood before Joseph.
+
+43:16 And when Joseph saw Benjamin with them, he said to the ruler of
+his house, Bring these men home, and slay, and make ready; for these
+men shall dine with me at noon.
+
+43:17 And the man did as Joseph bade; and the man brought the men into
+Joseph's house.
+
+43:18 And the men were afraid, because they were brought into Joseph's
+house; and they said, Because of the money that was returned in our
+sacks at the first time are we brought in; that he may seek occasion
+against us, and fall upon us, and take us for bondmen, and our asses.
+
+43:19 And they came near to the steward of Joseph's house, and they
+communed with him at the door of the house, 43:20 And said, O sir, we
+came indeed down at the first time to buy food: 43:21 And it came to
+pass, when we came to the inn, that we opened our sacks, and, behold,
+every man's money was in the mouth of his sack, our money in full
+weight: and we have brought it again in our hand.
+
+43:22 And other money have we brought down in our hands to buy food:
+we cannot tell who put our money in our sacks.
+
+43:23 And he said, Peace be to you, fear not: your God, and the God of
+your father, hath given you treasure in your sacks: I had your money.
+And he brought Simeon out unto them.
+
+43:24 And the man brought the men into Joseph's house, and gave them
+water, and they washed their feet; and he gave their asses provender.
+
+43:25 And they made ready the present against Joseph came at noon: for
+they heard that they should eat bread there.
+
+43:26 And when Joseph came home, they brought him the present which
+was in their hand into the house, and bowed themselves to him to the
+earth.
+
+43:27 And he asked them of their welfare, and said, Is your father
+well, the old man of whom ye spake? Is he yet alive? 43:28 And they
+answered, Thy servant our father is in good health, he is yet alive.
+And they bowed down their heads, and made obeisance.
+
+43:29 And he lifted up his eyes, and saw his brother Benjamin, his
+mother's son, and said, Is this your younger brother, of whom ye spake
+unto me? And he said, God be gracious unto thee, my son.
+
+43:30 And Joseph made haste; for his bowels did yearn upon his
+brother: and he sought where to weep; and he entered into his chamber,
+and wept there.
+
+43:31 And he washed his face, and went out, and refrained himself, and
+said, Set on bread.
+
+43:32 And they set on for him by himself, and for them by themselves,
+and for the Egyptians, which did eat with him, by themselves: because
+the Egyptians might not eat bread with the Hebrews; for that is an
+abomination unto the Egyptians.
+
+43:33 And they sat before him, the firstborn according to his
+birthright, and the youngest according to his youth: and the men
+marvelled one at another.
+
+43:34 And he took and sent messes unto them from before him: but
+Benjamin's mess was five times so much as any of their's. And they
+drank, and were merry with him.
+
+44:1 And he commanded the steward of his house, saying, Fill the men's
+sacks with food, as much as they can carry, and put every man's money
+in his sack's mouth.
+
+44:2 And put my cup, the silver cup, in the sack's mouth of the
+youngest, and his corn money. And he did according to the word that
+Joseph had spoken.
+
+44:3 As soon as the morning was light, the men were sent away, they
+and their asses.
+
+44:4 And when they were gone out of the city, and not yet far off,
+Joseph said unto his steward, Up, follow after the men; and when thou
+dost overtake them, say unto them, Wherefore have ye rewarded evil for
+good? 44:5 Is not this it in which my lord drinketh, and whereby
+indeed he divineth? ye have done evil in so doing.
+
+44:6 And he overtook them, and he spake unto them these same words.
+
+44:7 And they said unto him, Wherefore saith my lord these words? God
+forbid that thy servants should do according to this thing: 44:8
+Behold, the money, which we found in our sacks' mouths, we brought
+again unto thee out of the land of Canaan: how then should we steal
+out of thy lord's house silver or gold? 44:9 With whomsoever of thy
+servants it be found, both let him die, and we also will be my lord's
+bondmen.
+
+44:10 And he said, Now also let it be according unto your words: he
+with whom it is found shall be my servant; and ye shall be blameless.
+
+44:11 Then they speedily took down every man his sack to the ground,
+and opened every man his sack.
+
+44:12 And he searched, and began at the eldest, and left at the
+youngest: and the cup was found in Benjamin's sack.
+
+44:13 Then they rent their clothes, and laded every man his ass, and
+returned to the city.
+
+44:14 And Judah and his brethren came to Joseph's house; for he was
+yet there: and they fell before him on the ground.
+
+44:15 And Joseph said unto them, What deed is this that ye have done?
+wot ye not that such a man as I can certainly divine? 44:16 And Judah
+said, What shall we say unto my lord? what shall we speak? or how
+shall we clear ourselves? God hath found out the iniquity of thy
+servants: behold, we are my lord's servants, both we, and he also with
+whom the cup is found.
+
+44:17 And he said, God forbid that I should do so: but the man in
+whose hand the cup is found, he shall be my servant; and as for you,
+get you up in peace unto your father.
+
+44:18 Then Judah came near unto him, and said, Oh my lord, let thy
+servant, I pray thee, speak a word in my lord's ears, and let not
+thine anger burn against thy servant: for thou art even as Pharaoh.
+
+44:19 My lord asked his servants, saying, Have ye a father, or a
+brother? 44:20 And we said unto my lord, We have a father, an old
+man, and a child of his old age, a little one; and his brother is
+dead, and he alone is left of his mother, and his father loveth him.
+
+44:21 And thou saidst unto thy servants, Bring him down unto me, that
+I may set mine eyes upon him.
+
+44:22 And we said unto my lord, The lad cannot leave his father: for
+if he should leave his father, his father would die.
+
+44:23 And thou saidst unto thy servants, Except your youngest brother
+come down with you, ye shall see my face no more.
+
+44:24 And it came to pass when we came up unto thy servant my father,
+we told him the words of my lord.
+
+44:25 And our father said, Go again, and buy us a little food.
+
+44:26 And we said, We cannot go down: if our youngest brother be with
+us, then will we go down: for we may not see the man's face, except
+our youngest brother be with us.
+
+44:27 And thy servant my father said unto us, Ye know that my wife
+bare me two sons: 44:28 And the one went out from me, and I said,
+Surely he is torn in pieces; and I saw him not since: 44:29 And if ye
+take this also from me, and mischief befall him, ye shall bring down
+my gray hairs with sorrow to the grave.
+
+44:30 Now therefore when I come to thy servant my father, and the lad
+be not with us; seeing that his life is bound up in the lad's life;
+44:31 It shall come to pass, when he seeth that the lad is not with
+us, that he will die: and thy servants shall bring down the gray hairs
+of thy servant our father with sorrow to the grave.
+
+44:32 For thy servant became surety for the lad unto my father,
+saying, If I bring him not unto thee, then I shall bear the blame to
+my father for ever.
+
+44:33 Now therefore, I pray thee, let thy servant abide instead of the
+lad a bondman to my lord; and let the lad go up with his brethren.
+
+44:34 For how shall I go up to my father, and the lad be not with me?
+lest peradventure I see the evil that shall come on my father.
+
+45:1 Then Joseph could not refrain himself before all them that stood
+by him; and he cried, Cause every man to go out from me. And there
+stood no man with him, while Joseph made himself known unto his
+brethren.
+
+45:2 And he wept aloud: and the Egyptians and the house of Pharaoh
+heard.
+
+45:3 And Joseph said unto his brethren, I am Joseph; doth my father
+yet live? And his brethren could not answer him; for they were
+troubled at his presence.
+
+45:4 And Joseph said unto his brethren, Come near to me, I pray you.
+And they came near. And he said, I am Joseph your brother, whom ye
+sold into Egypt.
+
+45:5 Now therefore be not grieved, nor angry with yourselves, that ye
+sold me hither: for God did send me before you to preserve life.
+
+45:6 For these two years hath the famine been in the land: and yet
+there are five years, in the which there shall neither be earing nor
+harvest.
+
+45:7 And God sent me before you to preserve you a posterity in the
+earth, and to save your lives by a great deliverance.
+
+45:8 So now it was not you that sent me hither, but God: and he hath
+made me a father to Pharaoh, and lord of all his house, and a ruler
+throughout all the land of Egypt.
+
+45:9 Haste ye, and go up to my father, and say unto him, Thus saith
+thy son Joseph, God hath made me lord of all Egypt: come down unto me,
+tarry not: 45:10 And thou shalt dwell in the land of Goshen, and thou
+shalt be near unto me, thou, and thy children, and thy children's
+children, and thy flocks, and thy herds, and all that thou hast: 45:11
+And there will I nourish thee; for yet there are five years of famine;
+lest thou, and thy household, and all that thou hast, come to poverty.
+
+45:12 And, behold, your eyes see, and the eyes of my brother Benjamin,
+that it is my mouth that speaketh unto you.
+
+45:13 And ye shall tell my father of all my glory in Egypt, and of all
+that ye have seen; and ye shall haste and bring down my father hither.
+
+45:14 And he fell upon his brother Benjamin's neck, and wept; and
+Benjamin wept upon his neck.
+
+45:15 Moreover he kissed all his brethren, and wept upon them: and
+after that his brethren talked with him.
+
+45:16 And the fame thereof was heard in Pharaoh's house, saying,
+Joseph's brethren are come: and it pleased Pharaoh well, and his
+servants.
+
+45:17 And Pharaoh said unto Joseph, Say unto thy brethren, This do ye;
+lade your beasts, and go, get you unto the land of Canaan; 45:18 And
+take your father and your households, and come unto me: and I will
+give you the good of the land of Egypt, and ye shall eat the fat of
+the land.
+
+45:19 Now thou art commanded, this do ye; take you wagons out of the
+land of Egypt for your little ones, and for your wives, and bring your
+father, and come.
+
+45:20 Also regard not your stuff; for the good of all the land of
+Egypt is your's.
+
+45:21 And the children of Israel did so: and Joseph gave them wagons,
+according to the commandment of Pharaoh, and gave them provision for
+the way.
+
+45:22 To all of them he gave each man changes of raiment; but to
+Benjamin he gave three hundred pieces of silver, and five changes of
+raiment.
+
+45:23 And to his father he sent after this manner; ten asses laden
+with the good things of Egypt, and ten she asses laden with corn and
+bread and meat for his father by the way.
+
+45:24 So he sent his brethren away, and they departed: and he said
+unto them, See that ye fall not out by the way.
+
+45:25 And they went up out of Egypt, and came into the land of Canaan
+unto Jacob their father, 45:26 And told him, saying, Joseph is yet
+alive, and he is governor over all the land of Egypt. And Jacob's
+heart fainted, for he believed them not.
+
+45:27 And they told him all the words of Joseph, which he had said
+unto them: and when he saw the wagons which Joseph had sent to carry
+him, the spirit of Jacob their father revived: 45:28 And Israel said,
+It is enough; Joseph my son is yet alive: I will go and see him before
+I die.
+
+46:1 And Israel took his journey with all that he had, and came to
+Beersheba, and offered sacrifices unto the God of his father Isaac.
+
+46:2 And God spake unto Israel in the visions of the night, and said,
+Jacob, Jacob. And he said, Here am I.
+
+46:3 And he said, I am God, the God of thy father: fear not to go down
+into Egypt; for I will there make of thee a great nation: 46:4 I will
+go down with thee into Egypt; and I will also surely bring thee up
+again: and Joseph shall put his hand upon thine eyes.
+
+46:5 And Jacob rose up from Beersheba: and the sons of Israel carried
+Jacob their father, and their little ones, and their wives, in the
+wagons which Pharaoh had sent to carry him.
+
+46:6 And they took their cattle, and their goods, which they had
+gotten in the land of Canaan, and came into Egypt, Jacob, and all his
+seed with him: 46:7 His sons, and his sons' sons with him, his
+daughters, and his sons' daughters, and all his seed brought he with
+him into Egypt.
+
+46:8 And these are the names of the children of Israel, which came
+into Egypt, Jacob and his sons: Reuben, Jacob's firstborn.
+
+46:9 And the sons of Reuben; Hanoch, and Phallu, and Hezron, and
+Carmi.
+
+46:10 And the sons of Simeon; Jemuel, and Jamin, and Ohad, and Jachin,
+and Zohar, and Shaul the son of a Canaanitish woman.
+
+46:11 And the sons of Levi; Gershon, Kohath, and Merari.
+
+46:12 And the sons of Judah; Er, and Onan, and Shelah, and Pharez, and
+Zarah: but Er and Onan died in the land of Canaan. And the sons of
+Pharez were Hezron and Hamul.
+
+46:13 And the sons of Issachar; Tola, and Phuvah, and Job, and
+Shimron.
+
+46:14 And the sons of Zebulun; Sered, and Elon, and Jahleel.
+
+46:15 These be the sons of Leah, which she bare unto Jacob in
+Padanaram, with his daughter Dinah: all the souls of his sons and his
+daughters were thirty and three.
+
+46:16 And the sons of Gad; Ziphion, and Haggi, Shuni, and Ezbon, Eri,
+and Arodi, and Areli.
+
+46:17 And the sons of Asher; Jimnah, and Ishuah, and Isui, and Beriah,
+and Serah their sister: and the sons of Beriah; Heber, and Malchiel.
+
+46:18 These are the sons of Zilpah, whom Laban gave to Leah his
+daughter, and these she bare unto Jacob, even sixteen souls.
+
+46:19 The sons of Rachel Jacob's wife; Joseph, and Benjamin.
+
+46:20 And unto Joseph in the land of Egypt were born Manasseh and
+Ephraim, which Asenath the daughter of Potipherah priest of On bare
+unto him.
+
+46:21 And the sons of Benjamin were Belah, and Becher, and Ashbel,
+Gera, and Naaman, Ehi, and Rosh, Muppim, and Huppim, and Ard.
+
+46:22 These are the sons of Rachel, which were born to Jacob: all the
+souls were fourteen.
+
+46:23 And the sons of Dan; Hushim.
+
+46:24 And the sons of Naphtali; Jahzeel, and Guni, and Jezer, and
+Shillem.
+
+46:25 These are the sons of Bilhah, which Laban gave unto Rachel his
+daughter, and she bare these unto Jacob: all the souls were seven.
+
+46:26 All the souls that came with Jacob into Egypt, which came out of
+his loins, besides Jacob's sons' wives, all the souls were threescore
+and six; 46:27 And the sons of Joseph, which were born him in Egypt,
+were two souls: all the souls of the house of Jacob, which came into
+Egypt, were threescore and ten.
+
+46:28 And he sent Judah before him unto Joseph, to direct his face
+unto Goshen; and they came into the land of Goshen.
+
+46:29 And Joseph made ready his chariot, and went up to meet Israel
+his father, to Goshen, and presented himself unto him; and he fell on
+his neck, and wept on his neck a good while.
+
+46:30 And Israel said unto Joseph, Now let me die, since I have seen
+thy face, because thou art yet alive.
+
+46:31 And Joseph said unto his brethren, and unto his father's house,
+I will go up, and shew Pharaoh, and say unto him, My brethren, and my
+father's house, which were in the land of Canaan, are come unto me;
+46:32 And the men are shepherds, for their trade hath been to feed
+cattle; and they have brought their flocks, and their herds, and all
+that they have.
+
+46:33 And it shall come to pass, when Pharaoh shall call you, and
+shall say, What is your occupation? 46:34 That ye shall say, Thy
+servants' trade hath been about cattle from our youth even until now,
+both we, and also our fathers: that ye may dwell in the land of
+Goshen; for every shepherd is an abomination unto the Egyptians.
+
+47:1 Then Joseph came and told Pharaoh, and said, My father and my
+brethren, and their flocks, and their herds, and all that they have,
+are come out of the land of Canaan; and, behold, they are in the land
+of Goshen.
+
+47:2 And he took some of his brethren, even five men, and presented
+them unto Pharaoh.
+
+47:3 And Pharaoh said unto his brethren, What is your occupation? And
+they said unto Pharaoh, Thy servants are shepherds, both we, and also
+our fathers.
+
+47:4 They said morever unto Pharaoh, For to sojourn in the land are we
+come; for thy servants have no pasture for their flocks; for the
+famine is sore in the land of Canaan: now therefore, we pray thee, let
+thy servants dwell in the land of Goshen.
+
+47:5 And Pharaoh spake unto Joseph, saying, Thy father and thy
+brethren are come unto thee: 47:6 The land of Egypt is before thee; in
+the best of the land make thy father and brethren to dwell; in the
+land of Goshen let them dwell: and if thou knowest any men of activity
+among them, then make them rulers over my cattle.
+
+47:7 And Joseph brought in Jacob his father, and set him before
+Pharaoh: and Jacob blessed Pharaoh.
+
+47:8 And Pharaoh said unto Jacob, How old art thou? 47:9 And Jacob
+said unto Pharaoh, The days of the years of my pilgrimage are an
+hundred and thirty years: few and evil have the days of the years of
+my life been, and have not attained unto the days of the years of the
+life of my fathers in the days of their pilgrimage.
+
+47:10 And Jacob blessed Pharaoh, and went out from before Pharaoh.
+
+47:11 And Joseph placed his father and his brethren, and gave them a
+possession in the land of Egypt, in the best of the land, in the land
+of Rameses, as Pharaoh had commanded.
+
+47:12 And Joseph nourished his father, and his brethren, and all his
+father's household, with bread, according to their families.
+
+47:13 And there was no bread in all the land; for the famine was very
+sore, so that the land of Egypt and all the land of Canaan fainted by
+reason of the famine.
+
+47:14 And Joseph gathered up all the money that was found in the land
+of Egypt, and in the land of Canaan, for the corn which they bought:
+and Joseph brought the money into Pharaoh's house.
+
+47:15 And when money failed in the land of Egypt, and in the land of
+Canaan, all the Egyptians came unto Joseph, and said, Give us bread:
+for why should we die in thy presence? for the money faileth.
+
+47:16 And Joseph said, Give your cattle; and I will give you for your
+cattle, if money fail.
+
+47:17 And they brought their cattle unto Joseph: and Joseph gave them
+bread in exchange for horses, and for the flocks, and for the cattle
+of the herds, and for the asses: and he fed them with bread for all
+their cattle for that year.
+
+47:18 When that year was ended, they came unto him the second year,
+and said unto him, We will not hide it from my lord, how that our
+money is spent; my lord also hath our herds of cattle; there is not
+ought left in the sight of my lord, but our bodies, and our lands:
+47:19 Wherefore shall we die before thine eyes, both we and our land?
+buy us and our land for bread, and we and our land will be servants
+unto Pharaoh: and give us seed, that we may live, and not die, that
+the land be not desolate.
+
+47:20 And Joseph bought all the land of Egypt for Pharaoh; for the
+Egyptians sold every man his field, because the famine prevailed over
+them: so the land became Pharaoh's.
+
+47:21 And as for the people, he removed them to cities from one end of
+the borders of Egypt even to the other end thereof.
+
+47:22 Only the land of the priests bought he not; for the priests had
+a portion assigned them of Pharaoh, and did eat their portion which
+Pharaoh gave them: wherefore they sold not their lands.
+
+47:23 Then Joseph said unto the people, Behold, I have bought you this
+day and your land for Pharaoh: lo, here is seed for you, and ye shall
+sow the land.
+
+47:24 And it shall come to pass in the increase, that ye shall give
+the fifth part unto Pharaoh, and four parts shall be your own, for
+seed of the field, and for your food, and for them of your households,
+and for food for your little ones.
+
+47:25 And they said, Thou hast saved our lives: let us find grace in
+the sight of my lord, and we will be Pharaoh's servants.
+
+47:26 And Joseph made it a law over the land of Egypt unto this day,
+that Pharaoh should have the fifth part, except the land of the
+priests only, which became not Pharaoh's.
+
+47:27 And Israel dwelt in the land of Egypt, in the country of Goshen;
+and they had possessions therein, and grew, and multiplied
+exceedingly.
+
+47:28 And Jacob lived in the land of Egypt seventeen years: so the
+whole age of Jacob was an hundred forty and seven years.
+
+47:29 And the time drew nigh that Israel must die: and he called his
+son Joseph, and said unto him, If now I have found grace in thy sight,
+put, I pray thee, thy hand under my thigh, and deal kindly and truly
+with me; bury me not, I pray thee, in Egypt: 47:30 But I will lie with
+my fathers, and thou shalt carry me out of Egypt, and bury me in their
+buryingplace. And he said, I will do as thou hast said.
+
+47:31 And he said, Swear unto me. And he sware unto him. And Israel
+bowed himself upon the bed's head.
+
+48:1 And it came to pass after these things, that one told Joseph,
+Behold, thy father is sick: and he took with him his two sons,
+Manasseh and Ephraim.
+
+48:2 And one told Jacob, and said, Behold, thy son Joseph cometh unto
+thee: and Israel strengthened himself, and sat upon the bed.
+
+48:3 And Jacob said unto Joseph, God Almighty appeared unto me at Luz
+in the land of Canaan, and blessed me, 48:4 And said unto me, Behold,
+I will make thee fruitful, and multiply thee, and I will make of thee
+a multitude of people; and will give this land to thy seed after thee
+for an everlasting possession.
+
+48:5 And now thy two sons, Ephraim and Manasseh, which were born unto
+thee in the land of Egypt before I came unto thee into Egypt, are
+mine; as Reuben and Simeon, they shall be mine.
+
+48:6 And thy issue, which thou begettest after them, shall be thine,
+and shall be called after the name of their brethren in their
+inheritance.
+
+48:7 And as for me, when I came from Padan, Rachel died by me in the
+land of Canaan in the way, when yet there was but a little way to come
+unto Ephrath: and I buried her there in the way of Ephrath; the same
+is Bethlehem.
+
+48:8 And Israel beheld Joseph's sons, and said, Who are these? 48:9
+And Joseph said unto his father, They are my sons, whom God hath given
+me in this place. And he said, Bring them, I pray thee, unto me, and I
+will bless them.
+
+48:10 Now the eyes of Israel were dim for age, so that he could not
+see.
+
+And he brought them near unto him; and he kissed them, and embraced
+them.
+
+48:11 And Israel said unto Joseph, I had not thought to see thy face:
+and, lo, God hath shewed me also thy seed.
+
+48:12 And Joseph brought them out from between his knees, and he bowed
+himself with his face to the earth.
+
+48:13 And Joseph took them both, Ephraim in his right hand toward
+Israel's left hand, and Manasseh in his left hand toward Israel's
+right hand, and brought them near unto him.
+
+48:14 And Israel stretched out his right hand, and laid it upon
+Ephraim's head, who was the younger, and his left hand upon Manasseh's
+head, guiding his hands wittingly; for Manasseh was the firstborn.
+
+48:15 And he blessed Joseph, and said, God, before whom my fathers
+Abraham and Isaac did walk, the God which fed me all my life long unto
+this day, 48:16 The Angel which redeemed me from all evil, bless the
+lads; and let my name be named on them, and the name of my fathers
+Abraham and Isaac; and let them grow into a multitude in the midst of
+the earth.
+
+48:17 And when Joseph saw that his father laid his right hand upon the
+head of Ephraim, it displeased him: and he held up his father's hand,
+to remove it from Ephraim's head unto Manasseh's head.
+
+48:18 And Joseph said unto his father, Not so, my father: for this is
+the firstborn; put thy right hand upon his head.
+
+48:19 And his father refused, and said, I know it, my son, I know it:
+he also shall become a people, and he also shall be great: but truly
+his younger brother shall be greater than he, and his seed shall
+become a multitude of nations.
+
+48:20 And he blessed them that day, saying, In thee shall Israel
+bless, saying, God make thee as Ephraim and as Manasseh: and he set
+Ephraim before Manasseh.
+
+48:21 And Israel said unto Joseph, Behold, I die: but God shall be
+with you, and bring you again unto the land of your fathers.
+
+48:22 Moreover I have given to thee one portion above thy brethren,
+which I took out of the hand of the Amorite with my sword and with my
+bow.
+
+49:1 And Jacob called unto his sons, and said, Gather yourselves
+together, that I may tell you that which shall befall you in the last
+days.
+
+49:2 Gather yourselves together, and hear, ye sons of Jacob; and
+hearken unto Israel your father.
+
+49:3 Reuben, thou art my firstborn, my might, and the beginning of my
+strength, the excellency of dignity, and the excellency of power: 49:4
+Unstable as water, thou shalt not excel; because thou wentest up to
+thy father's bed; then defiledst thou it: he went up to my couch.
+
+49:5 Simeon and Levi are brethren; instruments of cruelty are in their
+habitations.
+
+49:6 O my soul, come not thou into their secret; unto their assembly,
+mine honour, be not thou united: for in their anger they slew a man,
+and in their selfwill they digged down a wall.
+
+49:7 Cursed be their anger, for it was fierce; and their wrath, for it
+was cruel: I will divide them in Jacob, and scatter them in Israel.
+
+49:8 Judah, thou art he whom thy brethren shall praise: thy hand shall
+be in the neck of thine enemies; thy father's children shall bow down
+before thee.
+
+49:9 Judah is a lion's whelp: from the prey, my son, thou art gone up:
+he stooped down, he couched as a lion, and as an old lion; who shall
+rouse him up? 49:10 The sceptre shall not depart from Judah, nor a
+lawgiver from between his feet, until Shiloh come; and unto him shall
+the gathering of the people be.
+
+49:11 Binding his foal unto the vine, and his ass's colt unto the
+choice vine; he washed his garments in wine, and his clothes in the
+blood of grapes: 49:12 His eyes shall be red with wine, and his teeth
+white with milk.
+
+49:13 Zebulun shall dwell at the haven of the sea; and he shall be for
+an haven of ships; and his border shall be unto Zidon.
+
+49:14 Issachar is a strong ass couching down between two burdens:
+49:15 And he saw that rest was good, and the land that it was
+pleasant; and bowed his shoulder to bear, and became a servant unto
+tribute.
+
+49:16 Dan shall judge his people, as one of the tribes of Israel.
+
+49:17 Dan shall be a serpent by the way, an adder in the path, that
+biteth the horse heels, so that his rider shall fall backward.
+
+49:18 I have waited for thy salvation, O LORD.
+
+49:19 Gad, a troop shall overcome him: but he shall overcome at the
+last.
+
+49:20 Out of Asher his bread shall be fat, and he shall yield royal
+dainties.
+
+49:21 Naphtali is a hind let loose: he giveth goodly words.
+
+49:22 Joseph is a fruitful bough, even a fruitful bough by a well;
+whose branches run over the wall: 49:23 The archers have sorely
+grieved him, and shot at him, and hated him: 49:24 But his bow abode
+in strength, and the arms of his hands were made strong by the hands
+of the mighty God of Jacob; (from thence is the shepherd, the stone of
+Israel:) 49:25 Even by the God of thy father, who shall help thee; and
+by the Almighty, who shall bless thee with blessings of heaven above,
+blessings of the deep that lieth under, blessings of the breasts, and
+of the womb: 49:26 The blessings of thy father have prevailed above
+the blessings of my progenitors unto the utmost bound of the
+everlasting hills: they shall be on the head of Joseph, and on the
+crown of the head of him that was separate from his brethren.
+
+49:27 Benjamin shall ravin as a wolf: in the morning he shall devour
+the prey, and at night he shall divide the spoil.
+
+49:28 All these are the twelve tribes of Israel: and this is it that
+their father spake unto them, and blessed them; every one according to
+his blessing he blessed them.
+
+49:29 And he charged them, and said unto them, I am to be gathered
+unto my people: bury me with my fathers in the cave that is in the
+field of Ephron the Hittite, 49:30 In the cave that is in the field of
+Machpelah, which is before Mamre, in the land of Canaan, which Abraham
+bought with the field of Ephron the Hittite for a possession of a
+buryingplace.
+
+49:31 There they buried Abraham and Sarah his wife; there they buried
+Isaac and Rebekah his wife; and there I buried Leah.
+
+49:32 The purchase of the field and of the cave that is therein was
+from the children of Heth.
+
+49:33 And when Jacob had made an end of commanding his sons, he
+gathered up his feet into the bed, and yielded up the ghost, and was
+gathered unto his people.
+
+50:1 And Joseph fell upon his father's face, and wept upon him, and
+kissed him.
+
+50:2 And Joseph commanded his servants the physicians to embalm his
+father: and the physicians embalmed Israel.
+
+50:3 And forty days were fulfilled for him; for so are fulfilled the
+days of those which are embalmed: and the Egyptians mourned for him
+threescore and ten days.
+
+50:4 And when the days of his mourning were past, Joseph spake unto
+the house of Pharaoh, saying, If now I have found grace in your eyes,
+speak, I pray you, in the ears of Pharaoh, saying, 50:5 My father made
+me swear, saying, Lo, I die: in my grave which I have digged for me in
+the land of Canaan, there shalt thou bury me. Now therefore let me go
+up, I pray thee, and bury my father, and I will come again.
+
+50:6 And Pharaoh said, Go up, and bury thy father, according as he
+made thee swear.
+
+50:7 And Joseph went up to bury his father: and with him went up all
+the servants of Pharaoh, the elders of his house, and all the elders
+of the land of Egypt, 50:8 And all the house of Joseph, and his
+brethren, and his father's house: only their little ones, and their
+flocks, and their herds, they left in the land of Goshen.
+
+50:9 And there went up with him both chariots and horsemen: and it was
+a very great company.
+
+50:10 And they came to the threshingfloor of Atad, which is beyond
+Jordan, and there they mourned with a great and very sore lamentation:
+and he made a mourning for his father seven days.
+
+50:11 And when the inhabitants of the land, the Canaanites, saw the
+mourning in the floor of Atad, they said, This is a grievous mourning
+to the Egyptians: wherefore the name of it was called Abelmizraim,
+which is beyond Jordan.
+
+50:12 And his sons did unto him according as he commanded them: 50:13
+For his sons carried him into the land of Canaan, and buried him in
+the cave of the field of Machpelah, which Abraham bought with the
+field for a possession of a buryingplace of Ephron the Hittite, before
+Mamre.
+
+50:14 And Joseph returned into Egypt, he, and his brethren, and all
+that went up with him to bury his father, after he had buried his
+father.
+
+50:15 And when Joseph's brethren saw that their father was dead, they
+said, Joseph will peradventure hate us, and will certainly requite us
+all the evil which we did unto him.
+
+50:16 And they sent a messenger unto Joseph, saying, Thy father did
+command before he died, saying, 50:17 So shall ye say unto Joseph,
+Forgive, I pray thee now, the trespass of thy brethren, and their sin;
+for they did unto thee evil: and now, we pray thee, forgive the
+trespass of the servants of the God of thy father. And Joseph wept
+when they spake unto him.
+
+50:18 And his brethren also went and fell down before his face; and
+they said, Behold, we be thy servants.
+
+50:19 And Joseph said unto them, Fear not: for am I in the place of
+God? 50:20 But as for you, ye thought evil against me; but God meant
+it unto good, to bring to pass, as it is this day, to save much people
+alive.
+
+50:21 Now therefore fear ye not: I will nourish you, and your little
+ones.
+
+And he comforted them, and spake kindly unto them.
+
+50:22 And Joseph dwelt in Egypt, he, and his father's house: and
+Joseph lived an hundred and ten years.
+
+50:23 And Joseph saw Ephraim's children of the third generation: the
+children also of Machir the son of Manasseh were brought up upon
+Joseph's knees.
+
+50:24 And Joseph said unto his brethren, I die: and God will surely
+visit you, and bring you out of this land unto the land which he sware
+to Abraham, to Isaac, and to Jacob.
+
+50:25 And Joseph took an oath of the children of Israel, saying, God
+will surely visit you, and ye shall carry up my bones from hence.
+
+50:26 So Joseph died, being an hundred and ten years old: and they
+embalmed him, and he was put in a coffin in Egypt.
+
+
+
+
+The Second Book of Moses: Called Exodus
+
+
+1:1 Now these are the names of the children of Israel, which came
+into Egypt; every man and his household came with Jacob.
+
+1:2 Reuben, Simeon, Levi, and Judah, 1:3 Issachar, Zebulun, and
+Benjamin, 1:4 Dan, and Naphtali, Gad, and Asher.
+
+1:5 And all the souls that came out of the loins of Jacob were seventy
+souls: for Joseph was in Egypt already.
+
+1:6 And Joseph died, and all his brethren, and all that generation.
+
+1:7 And the children of Israel were fruitful, and increased
+abundantly, and multiplied, and waxed exceeding mighty; and the land
+was filled with them.
+
+1:8 Now there arose up a new king over Egypt, which knew not Joseph.
+
+1:9 And he said unto his people, Behold, the people of the children of
+Israel are more and mightier than we: 1:10 Come on, let us deal wisely
+with them; lest they multiply, and it come to pass, that, when there
+falleth out any war, they join also unto our enemies, and fight
+against us, and so get them up out of the land.
+
+1:11 Therefore they did set over them taskmasters to afflict them with
+their burdens. And they built for Pharaoh treasure cities, Pithom and
+Raamses.
+
+1:12 But the more they afflicted them, the more they multiplied and
+grew.
+
+And they were grieved because of the children of Israel.
+
+1:13 And the Egyptians made the children of Israel to serve with
+rigour: 1:14 And they made their lives bitter with hard bondage, in
+morter, and in brick, and in all manner of service in the field: all
+their service, wherein they made them serve, was with rigour.
+
+1:15 And the king of Egypt spake to the Hebrew midwives, of which the
+name of the one was Shiphrah, and the name of the other Puah: 1:16 And
+he said, When ye do the office of a midwife to the Hebrew women, and
+see them upon the stools; if it be a son, then ye shall kill him: but
+if it be a daughter, then she shall live.
+
+1:17 But the midwives feared God, and did not as the king of Egypt
+commanded them, but saved the men children alive.
+
+1:18 And the king of Egypt called for the midwives, and said unto
+them, Why have ye done this thing, and have saved the men children
+alive? 1:19 And the midwives said unto Pharaoh, Because the Hebrew
+women are not as the Egyptian women; for they are lively, and are
+delivered ere the midwives come in unto them.
+
+1:20 Therefore God dealt well with the midwives: and the people
+multiplied, and waxed very mighty.
+
+1:21 And it came to pass, because the midwives feared God, that he
+made them houses.
+
+1:22 And Pharaoh charged all his people, saying, Every son that is
+born ye shall cast into the river, and every daughter ye shall save
+alive.
+
+2:1 And there went a man of the house of Levi, and took to wife a
+daughter of Levi.
+
+2:2 And the woman conceived, and bare a son: and when she saw him that
+he was a goodly child, she hid him three months.
+
+2:3 And when she could not longer hide him, she took for him an ark of
+bulrushes, and daubed it with slime and with pitch, and put the child
+therein; and she laid it in the flags by the river's brink.
+
+2:4 And his sister stood afar off, to wit what would be done to him.
+
+2:5 And the daughter of Pharaoh came down to wash herself at the
+river; and her maidens walked along by the river's side; and when she
+saw the ark among the flags, she sent her maid to fetch it.
+
+2:6 And when she had opened it, she saw the child: and, behold, the
+babe wept. And she had compassion on him, and said, This is one of the
+Hebrews' children.
+
+2:7 Then said his sister to Pharaoh's daughter, Shall I go and call to
+thee a nurse of the Hebrew women, that she may nurse the child for
+thee? 2:8 And Pharaoh's daughter said to her, Go. And the maid went
+and called the child's mother.
+
+2:9 And Pharaoh's daughter said unto her, Take this child away, and
+nurse it for me, and I will give thee thy wages. And the women took
+the child, and nursed it.
+
+2:10 And the child grew, and she brought him unto Pharaoh's daughter,
+and he became her son. And she called his name Moses: and she said,
+Because I drew him out of the water.
+
+2:11 And it came to pass in those days, when Moses was grown, that he
+went out unto his brethren, and looked on their burdens: and he spied
+an Egyptian smiting an Hebrew, one of his brethren.
+
+2:12 And he looked this way and that way, and when he saw that there
+was no man, he slew the Egyptian, and hid him in the sand.
+
+2:13 And when he went out the second day, behold, two men of the
+Hebrews strove together: and he said to him that did the wrong,
+Wherefore smitest thou thy fellow? 2:14 And he said, Who made thee a
+prince and a judge over us? intendest thou to kill me, as thou
+killedst the Egyptian? And Moses feared, and said, Surely this thing
+is known.
+
+2:15 Now when Pharaoh heard this thing, he sought to slay Moses. But
+Moses fled from the face of Pharaoh, and dwelt in the land of Midian:
+and he sat down by a well.
+
+2:16 Now the priest of Midian had seven daughters: and they came and
+drew water, and filled the troughs to water their father's flock.
+
+2:17 And the shepherds came and drove them away: but Moses stood up
+and helped them, and watered their flock.
+
+2:18 And when they came to Reuel their father, he said, How is it that
+ye are come so soon to day? 2:19 And they said, An Egyptian delivered
+us out of the hand of the shepherds, and also drew water enough for
+us, and watered the flock.
+
+2:20 And he said unto his daughters, And where is he? why is it that
+ye have left the man? call him, that he may eat bread.
+
+2:21 And Moses was content to dwell with the man: and he gave Moses
+Zipporah his daughter.
+
+2:22 And she bare him a son, and he called his name Gershom: for he
+said, I have been a stranger in a strange land.
+
+2:23 And it came to pass in process of time, that the king of Egypt
+died: and the children of Israel sighed by reason of the bondage, and
+they cried, and their cry came up unto God by reason of the bondage.
+
+2:24 And God heard their groaning, and God remembered his covenant
+with Abraham, with Isaac, and with Jacob.
+
+2:25 And God looked upon the children of Israel, and God had respect
+unto them.
+
+3:1 Now Moses kept the flock of Jethro his father in law, the priest
+of Midian: and he led the flock to the backside of the desert, and
+came to the mountain of God, even to Horeb.
+
+3:2 And the angel of the LORD appeared unto him in a flame of fire out
+of the midst of a bush: and he looked, and, behold, the bush burned
+with fire, and the bush was not consumed.
+
+3:3 And Moses said, I will now turn aside, and see this great sight,
+why the bush is not burnt.
+
+3:4 And when the LORD saw that he turned aside to see, God called unto
+him out of the midst of the bush, and said, Moses, Moses. And he said,
+Here am I.
+
+3:5 And he said, Draw not nigh hither: put off thy shoes from off thy
+feet, for the place whereon thou standest is holy ground.
+
+3:6 Moreover he said, I am the God of thy father, the God of Abraham,
+the God of Isaac, and the God of Jacob. And Moses hid his face; for he
+was afraid to look upon God.
+
+3:7 And the LORD said, I have surely seen the affliction of my people
+which are in Egypt, and have heard their cry by reason of their
+taskmasters; for I know their sorrows; 3:8 And I am come down to
+deliver them out of the hand of the Egyptians, and to bring them up
+out of that land unto a good land and a large, unto a land flowing
+with milk and honey; unto the place of the Canaanites, and the
+Hittites, and the Amorites, and the Perizzites, and the Hivites, and
+the Jebusites.
+
+3:9 Now therefore, behold, the cry of the children of Israel is come
+unto me: and I have also seen the oppression wherewith the Egyptians
+oppress them.
+
+3:10 Come now therefore, and I will send thee unto Pharaoh, that thou
+mayest bring forth my people the children of Israel out of Egypt.
+
+3:11 And Moses said unto God, Who am I, that I should go unto Pharaoh,
+and that I should bring forth the children of Israel out of Egypt?
+3:12 And he said, Certainly I will be with thee; and this shall be a
+token unto thee, that I have sent thee: When thou hast brought forth
+the people out of Egypt, ye shall serve God upon this mountain.
+
+3:13 And Moses said unto God, Behold, when I come unto the children of
+Israel, and shall say unto them, The God of your fathers hath sent me
+unto you; and they shall say to me, What is his name? what shall I say
+unto them? 3:14 And God said unto Moses, I AM THAT I AM: and he said,
+Thus shalt thou say unto the children of Israel, I AM hath sent me
+unto you.
+
+3:15 And God said moreover unto Moses, Thus shalt thou say unto the
+children of Israel, the LORD God of your fathers, the God of Abraham,
+the God of Isaac, and the God of Jacob, hath sent me unto you: this is
+my name for ever, and this is my memorial unto all generations.
+
+3:16 Go, and gather the elders of Israel together, and say unto them,
+The LORD God of your fathers, the God of Abraham, of Isaac, and of
+Jacob, appeared unto me, saying, I have surely visited you, and seen
+that which is done to you in Egypt: 3:17 And I have said, I will bring
+you up out of the affliction of Egypt unto the land of the Canaanites,
+and the Hittites, and the Amorites, and the Perizzites, and the
+Hivites, and the Jebusites, unto a land flowing with milk and honey.
+
+3:18 And they shall hearken to thy voice: and thou shalt come, thou
+and the elders of Israel, unto the king of Egypt, and ye shall say
+unto him, The LORD God of the Hebrews hath met with us: and now let us
+go, we beseech thee, three days' journey into the wilderness, that we
+may sacrifice to the LORD our God.
+
+3:19 And I am sure that the king of Egypt will not let you go, no, not
+by a mighty hand.
+
+3:20 And I will stretch out my hand, and smite Egypt with all my
+wonders which I will do in the midst thereof: and after that he will
+let you go.
+
+3:21 And I will give this people favour in the sight of the Egyptians:
+and it shall come to pass, that, when ye go, ye shall not go empty.
+
+3:22 But every woman shall borrow of her neighbour, and of her that
+sojourneth in her house, jewels of silver, and jewels of gold, and
+raiment: and ye shall put them upon your sons, and upon your
+daughters; and ye shall spoil the Egyptians.
+
+4:1 And Moses answered and said, But, behold, they will not believe
+me, nor hearken unto my voice: for they will say, The LORD hath not
+appeared unto thee.
+
+4:2 And the LORD said unto him, What is that in thine hand? And he
+said, A rod.
+
+4:3 And he said, Cast it on the ground. And he cast it on the ground,
+and it became a serpent; and Moses fled from before it.
+
+4:4 And the LORD said unto Moses, Put forth thine hand, and take it by
+the tail. And he put forth his hand, and caught it, and it became a
+rod in his hand: 4:5 That they may believe that the LORD God of their
+fathers, the God of Abraham, the God of Isaac, and the God of Jacob,
+hath appeared unto thee.
+
+4:6 And the LORD said furthermore unto him, Put now thine hand into
+thy bosom. And he put his hand into his bosom: and when he took it
+out, behold, his hand was leprous as snow.
+
+4:7 And he said, Put thine hand into thy bosom again. And he put his
+hand into his bosom again; and plucked it out of his bosom, and,
+behold, it was turned again as his other flesh.
+
+4:8 And it shall come to pass, if they will not believe thee, neither
+hearken to the voice of the first sign, that they will believe the
+voice of the latter sign.
+
+4:9 And it shall come to pass, if they will not believe also these two
+signs, neither hearken unto thy voice, that thou shalt take of the
+water of the river, and pour it upon the dry land: and the water which
+thou takest out of the river shall become blood upon the dry land.
+
+4:10 And Moses said unto the LORD, O my LORD, I am not eloquent,
+neither heretofore, nor since thou hast spoken unto thy servant: but I
+am slow of speech, and of a slow tongue.
+
+4:11 And the LORD said unto him, Who hath made man's mouth? or who
+maketh the dumb, or deaf, or the seeing, or the blind? have not I the
+LORD? 4:12 Now therefore go, and I will be with thy mouth, and teach
+thee what thou shalt say.
+
+4:13 And he said, O my LORD, send, I pray thee, by the hand of him
+whom thou wilt send.
+
+4:14 And the anger of the LORD was kindled against Moses, and he said,
+Is not Aaron the Levite thy brother? I know that he can speak well.
+And also, behold, he cometh forth to meet thee: and when he seeth
+thee, he will be glad in his heart.
+
+4:15 And thou shalt speak unto him, and put words in his mouth: and I
+will be with thy mouth, and with his mouth, and will teach you what ye
+shall do.
+
+4:16 And he shall be thy spokesman unto the people: and he shall be,
+even he shall be to thee instead of a mouth, and thou shalt be to him
+instead of God.
+
+4:17 And thou shalt take this rod in thine hand, wherewith thou shalt
+do signs.
+
+4:18 And Moses went and returned to Jethro his father in law, and said
+unto him, Let me go, I pray thee, and return unto my brethren which
+are in Egypt, and see whether they be yet alive. And Jethro said to
+Moses, Go in peace.
+
+4:19 And the LORD said unto Moses in Midian, Go, return into Egypt:
+for all the men are dead which sought thy life.
+
+4:20 And Moses took his wife and his sons, and set them upon an ass,
+and he returned to the land of Egypt: and Moses took the rod of God in
+his hand.
+
+4:21 And the LORD said unto Moses, When thou goest to return into
+Egypt, see that thou do all those wonders before Pharaoh, which I have
+put in thine hand: but I will harden his heart, that he shall not let
+the people go.
+
+4:22 And thou shalt say unto Pharaoh, Thus saith the LORD, Israel is
+my son, even my firstborn: 4:23 And I say unto thee, Let my son go,
+that he may serve me: and if thou refuse to let him go, behold, I will
+slay thy son, even thy firstborn.
+
+4:24 And it came to pass by the way in the inn, that the LORD met him,
+and sought to kill him.
+
+4:25 Then Zipporah took a sharp stone, and cut off the foreskin of her
+son, and cast it at his feet, and said, Surely a bloody husband art
+thou to me.
+
+4:26 So he let him go: then she said, A bloody husband thou art,
+because of the circumcision.
+
+4:27 And the LORD said to Aaron, Go into the wilderness to meet Moses.
+And he went, and met him in the mount of God, and kissed him.
+
+4:28 And Moses told Aaron all the words of the LORD who had sent him,
+and all the signs which he had commanded him.
+
+4:29 And Moses and Aaron went and gathered together all the elders of
+the children of Israel: 4:30 And Aaron spake all the words which the
+LORD had spoken unto Moses, and did the signs in the sight of the
+people.
+
+4:31 And the people believed: and when they heard that the LORD had
+visited the children of Israel, and that he had looked upon their
+affliction, then they bowed their heads and worshipped.
+
+5:1 And afterward Moses and Aaron went in, and told Pharaoh, Thus
+saith the LORD God of Israel, Let my people go, that they may hold a
+feast unto me in the wilderness.
+
+5:2 And Pharaoh said, Who is the LORD, that I should obey his voice to
+let Israel go? I know not the LORD, neither will I let Israel go.
+
+5:3 And they said, The God of the Hebrews hath met with us: let us go,
+we pray thee, three days' journey into the desert, and sacrifice unto
+the LORD our God; lest he fall upon us with pestilence, or with the
+sword.
+
+5:4 And the king of Egypt said unto them, Wherefore do ye, Moses and
+Aaron, let the people from their works? get you unto your burdens.
+
+5:5 And Pharaoh said, Behold, the people of the land now are many, and
+ye make them rest from their burdens.
+
+5:6 And Pharaoh commanded the same day the taskmasters of the people,
+and their officers, saying, 5:7 Ye shall no more give the people straw
+to make brick, as heretofore: let them go and gather straw for
+themselves.
+
+5:8 And the tale of the bricks, which they did make heretofore, ye
+shall lay upon them; ye shall not diminish ought thereof: for they be
+idle; therefore they cry, saying, Let us go and sacrifice to our God.
+
+5:9 Let there more work be laid upon the men, that they may labour
+therein; and let them not regard vain words.
+
+5:10 And the taskmasters of the people went out, and their officers,
+and they spake to the people, saying, Thus saith Pharaoh, I will not
+give you straw.
+
+5:11 Go ye, get you straw where ye can find it: yet not ought of your
+work shall be diminished.
+
+5:12 So the people were scattered abroad throughout all the land of
+Egypt to gather stubble instead of straw.
+
+5:13 And the taskmasters hasted them, saying, Fulfil your works, your
+daily tasks, as when there was straw.
+
+5:14 And the officers of the children of Israel, which Pharaoh's
+taskmasters had set over them, were beaten, and demanded, Wherefore
+have ye not fulfilled your task in making brick both yesterday and to
+day, as heretofore? 5:15 Then the officers of the children of Israel
+came and cried unto Pharaoh, saying, Wherefore dealest thou thus with
+thy servants? 5:16 There is no straw given unto thy servants, and
+they say to us, Make brick: and, behold, thy servants are beaten; but
+the fault is in thine own people.
+
+5:17 But he said, Ye are idle, ye are idle: therefore ye say, Let us
+go and do sacrifice to the LORD.
+
+5:18 Go therefore now, and work; for there shall no straw be given
+you, yet shall ye deliver the tale of bricks.
+
+5:19 And the officers of the children of Israel did see that they were
+in evil case, after it was said, Ye shall not minish ought from your
+bricks of your daily task.
+
+5:20 And they met Moses and Aaron, who stood in the way, as they came
+forth from Pharaoh: 5:21 And they said unto them, The LORD look upon
+you, and judge; because ye have made our savour to be abhorred in the
+eyes of Pharaoh, and in the eyes of his servants, to put a sword in
+their hand to slay us.
+
+5:22 And Moses returned unto the LORD, and said, LORD, wherefore hast
+thou so evil entreated this people? why is it that thou hast sent me?
+5:23 For since I came to Pharaoh to speak in thy name, he hath done
+evil to this people; neither hast thou delivered thy people at all.
+
+6:1 Then the LORD said unto Moses, Now shalt thou see what I will do
+to Pharaoh: for with a strong hand shall he let them go, and with a
+strong hand shall he drive them out of his land.
+
+6:2 And God spake unto Moses, and said unto him, I am the LORD: 6:3
+And I appeared unto Abraham, unto Isaac, and unto Jacob, by the name
+of God Almighty, but by my name JEHOVAH was I not known to them.
+
+6:4 And I have also established my covenant with them, to give them
+the land of Canaan, the land of their pilgrimage, wherein they were
+strangers.
+
+6:5 And I have also heard the groaning of the children of Israel, whom
+the Egyptians keep in bondage; and I have remembered my covenant.
+
+6:6 Wherefore say unto the children of Israel, I am the LORD, and I
+will bring you out from under the burdens of the Egyptians, and I will
+rid you out of their bondage, and I will redeem you with a stretched
+out arm, and with great judgments: 6:7 And I will take you to me for a
+people, and I will be to you a God: and ye shall know that I am the
+LORD your God, which bringeth you out from under the burdens of the
+Egyptians.
+
+6:8 And I will bring you in unto the land, concerning the which I did
+swear to give it to Abraham, to Isaac, and to Jacob; and I will give
+it you for an heritage: I am the LORD.
+
+6:9 And Moses spake so unto the children of Israel: but they hearkened
+not unto Moses for anguish of spirit, and for cruel bondage.
+
+6:10 And the LORD spake unto Moses, saying, 6:11 Go in, speak unto
+Pharaoh king of Egypt, that he let the children of Israel go out of
+his land.
+
+6:12 And Moses spake before the LORD, saying, Behold, the children of
+Israel have not hearkened unto me; how then shall Pharaoh hear me, who
+am of uncircumcised lips? 6:13 And the LORD spake unto Moses and unto
+Aaron, and gave them a charge unto the children of Israel, and unto
+Pharaoh king of Egypt, to bring the children of Israel out of the land
+of Egypt.
+
+6:14 These be the heads of their fathers' houses: The sons of Reuben
+the firstborn of Israel; Hanoch, and Pallu, Hezron, and Carmi: these
+be the families of Reuben.
+
+6:15 And the sons of Simeon; Jemuel, and Jamin, and Ohad, and Jachin,
+and Zohar, and Shaul the son of a Canaanitish woman: these are the
+families of Simeon.
+
+6:16 And these are the names of the sons of Levi according to their
+generations; Gershon, and Kohath, and Merari: and the years of the
+life of Levi were an hundred thirty and seven years.
+
+6:17 The sons of Gershon; Libni, and Shimi, according to their
+families.
+
+6:18 And the sons of Kohath; Amram, and Izhar, and Hebron, and Uzziel:
+and the years of the life of Kohath were an hundred thirty and three
+years.
+
+6:19 And the sons of Merari; Mahali and Mushi: these are the families
+of Levi according to their generations.
+
+6:20 And Amram took him Jochebed his father's sister to wife; and she
+bare him Aaron and Moses: and the years of the life of Amram were an
+hundred and thirty and seven years.
+
+6:21 And the sons of Izhar; Korah, and Nepheg, and Zichri.
+
+6:22 And the sons of Uzziel; Mishael, and Elzaphan, and Zithri.
+
+6:23 And Aaron took him Elisheba, daughter of Amminadab, sister of
+Naashon, to wife; and she bare him Nadab, and Abihu, Eleazar, and
+Ithamar.
+
+6:24 And the sons of Korah; Assir, and Elkanah, and Abiasaph: these
+are the families of the Korhites.
+
+6:25 And Eleazar Aaron's son took him one of the daughters of Putiel
+to wife; and she bare him Phinehas: these are the heads of the fathers
+of the Levites according to their families.
+
+6:26 These are that Aaron and Moses, to whom the LORD said, Bring out
+the children of Israel from the land of Egypt according to their
+armies.
+
+6:27 These are they which spake to Pharaoh king of Egypt, to bring out
+the children of Israel from Egypt: these are that Moses and Aaron.
+
+6:28 And it came to pass on the day when the LORD spake unto Moses in
+the land of Egypt, 6:29 That the LORD spake unto Moses, saying, I am
+the LORD: speak thou unto Pharaoh king of Egypt all that I say unto
+thee.
+
+6:30 And Moses said before the LORD, Behold, I am of uncircumcised
+lips, and how shall Pharaoh hearken unto me? 7:1 And the LORD said
+unto Moses, See, I have made thee a god to Pharaoh: and Aaron thy
+brother shall be thy prophet.
+
+7:2 Thou shalt speak all that I command thee: and Aaron thy brother
+shall speak unto Pharaoh, that he send the children of Israel out of
+his land.
+
+7:3 And I will harden Pharaoh's heart, and multiply my signs and my
+wonders in the land of Egypt.
+
+7:4 But Pharaoh shall not hearken unto you, that I may lay my hand
+upon Egypt, and bring forth mine armies, and my people the children of
+Israel, out of the land of Egypt by great judgments.
+
+7:5 And the Egyptians shall know that I am the LORD, when I stretch
+forth mine hand upon Egypt, and bring out the children of Israel from
+among them.
+
+7:6 And Moses and Aaron did as the LORD commanded them, so did they.
+
+7:7 And Moses was fourscore years old, and Aaron fourscore and three
+years old, when they spake unto Pharaoh.
+
+7:8 And the LORD spake unto Moses and unto Aaron, saying, 7:9 When
+Pharaoh shall speak unto you, saying, Shew a miracle for you: then
+thou shalt say unto Aaron, Take thy rod, and cast it before Pharaoh,
+and it shall become a serpent.
+
+7:10 And Moses and Aaron went in unto Pharaoh, and they did so as the
+LORD had commanded: and Aaron cast down his rod before Pharaoh, and
+before his servants, and it became a serpent.
+
+7:11 Then Pharaoh also called the wise men and the sorcerers: now the
+magicians of Egypt, they also did in like manner with their
+enchantments.
+
+7:12 For they cast down every man his rod, and they became serpents:
+but Aaron's rod swallowed up their rods.
+
+7:13 And he hardened Pharaoh's heart, that he hearkened not unto them;
+as the LORD had said.
+
+7:14 And the LORD said unto Moses, Pharaoh's heart is hardened, he
+refuseth to let the people go.
+
+7:15 Get thee unto Pharaoh in the morning; lo, he goeth out unto the
+water; and thou shalt stand by the river's brink against he come; and
+the rod which was turned to a serpent shalt thou take in thine hand.
+
+7:16 And thou shalt say unto him, The LORD God of the Hebrews hath
+sent me unto thee, saying, Let my people go, that they may serve me in
+the wilderness: and, behold, hitherto thou wouldest not hear.
+
+7:17 Thus saith the LORD, In this thou shalt know that I am the LORD:
+behold, I will smite with the rod that is in mine hand upon the waters
+which are in the river, and they shall be turned to blood.
+
+7:18 And the fish that is in the river shall die, and the river shall
+stink; and the Egyptians shall lothe to drink of the water of the
+river.
+
+7:19 And the LORD spake unto Moses, Say unto Aaron, Take thy rod, and
+stretch out thine hand upon the waters of Egypt, upon their streams,
+upon their rivers, and upon their ponds, and upon all their pools of
+water, that they may become blood; and that there may be blood
+throughout all the land of Egypt, both in vessels of wood, and in
+vessels of stone.
+
+7:20 And Moses and Aaron did so, as the LORD commanded; and he lifted
+up the rod, and smote the waters that were in the river, in the sight
+of Pharaoh, and in the sight of his servants; and all the waters that
+were in the river were turned to blood.
+
+7:21 And the fish that was in the river died; and the river stank, and
+the Egyptians could not drink of the water of the river; and there was
+blood throughout all the land of Egypt.
+
+7:22 And the magicians of Egypt did so with their enchantments: and
+Pharaoh's heart was hardened, neither did he hearken unto them; as the
+LORD had said.
+
+7:23 And Pharaoh turned and went into his house, neither did he set
+his heart to this also.
+
+7:24 And all the Egyptians digged round about the river for water to
+drink; for they could not drink of the water of the river.
+
+7:25 And seven days were fulfilled, after that the LORD had smitten
+the river.
+
+8:1 And the LORD spake unto Moses, Go unto Pharaoh, and say unto him,
+Thus saith the LORD, Let my people go, that they may serve me.
+
+8:2 And if thou refuse to let them go, behold, I will smite all thy
+borders with frogs: 8:3 And the river shall bring forth frogs
+abundantly, which shall go up and come into thine house, and into thy
+bedchamber, and upon thy bed, and into the house of thy servants, and
+upon thy people, and into thine ovens, and into thy kneadingtroughs:
+8:4 And the frogs shall come up both on thee, and upon thy people, and
+upon all thy servants.
+
+8:5 And the LORD spake unto Moses, Say unto Aaron, Stretch forth thine
+hand with thy rod over the streams, over the rivers, and over the
+ponds, and cause frogs to come up upon the land of Egypt.
+
+8:6 And Aaron stretched out his hand over the waters of Egypt; and the
+frogs came up, and covered the land of Egypt.
+
+8:7 And the magicians did so with their enchantments, and brought up
+frogs upon the land of Egypt.
+
+8:8 Then Pharaoh called for Moses and Aaron, and said, Intreat the
+LORD, that he may take away the frogs from me, and from my people; and
+I will let the people go, that they may do sacrifice unto the LORD.
+
+8:9 And Moses said unto Pharaoh, Glory over me: when shall I intreat
+for thee, and for thy servants, and for thy people, to destroy the
+frogs from thee and thy houses, that they may remain in the river
+only? 8:10 And he said, To morrow. And he said, Be it according to
+thy word: that thou mayest know that there is none like unto the LORD
+our God.
+
+8:11 And the frogs shall depart from thee, and from thy houses, and
+from thy servants, and from thy people; they shall remain in the river
+only.
+
+8:12 And Moses and Aaron went out from Pharaoh: and Moses cried unto
+the LORD because of the frogs which he had brought against Pharaoh.
+
+8:13 And the LORD did according to the word of Moses; and the frogs
+died out of the houses, out of the villages, and out of the fields.
+
+8:14 And they gathered them together upon heaps: and the land stank.
+
+8:15 But when Pharaoh saw that there was respite, he hardened his
+heart, and hearkened not unto them; as the LORD had said.
+
+8:16 And the LORD said unto Moses, Say unto Aaron, Stretch out thy
+rod, and smite the dust of the land, that it may become lice
+throughout all the land of Egypt.
+
+8:17 And they did so; for Aaron stretched out his hand with his rod,
+and smote the dust of the earth, and it became lice in man, and in
+beast; all the dust of the land became lice throughout all the land of
+Egypt.
+
+8:18 And the magicians did so with their enchantments to bring forth
+lice, but they could not: so there were lice upon man, and upon beast.
+
+8:19 Then the magicians said unto Pharaoh, This is the finger of God:
+and Pharaoh's heart was hardened, and he hearkened not unto them; as
+the LORD had said.
+
+8:20 And the LORD said unto Moses, Rise up early in the morning, and
+stand before Pharaoh; lo, he cometh forth to the water; and say unto
+him, Thus saith the LORD, Let my people go, that they may serve me.
+
+8:21 Else, if thou wilt not let my people go, behold, I will send
+swarms of flies upon thee, and upon thy servants, and upon thy people,
+and into thy houses: and the houses of the Egyptians shall be full of
+swarms of flies, and also the ground whereon they are.
+
+8:22 And I will sever in that day the land of Goshen, in which my
+people dwell, that no swarms of flies shall be there; to the end thou
+mayest know that I am the LORD in the midst of the earth.
+
+8:23 And I will put a division between my people and thy people: to
+morrow shall this sign be.
+
+8:24 And the LORD did so; and there came a grievous swarm of flies
+into the house of Pharaoh, and into his servants' houses, and into all
+the land of Egypt: the land was corrupted by reason of the swarm of
+flies.
+
+8:25 And Pharaoh called for Moses and for Aaron, and said, Go ye,
+sacrifice to your God in the land.
+
+8:26 And Moses said, It is not meet so to do; for we shall sacrifice
+the abomination of the Egyptians to the LORD our God: lo, shall we
+sacrifice the abomination of the Egyptians before their eyes, and will
+they not stone us? 8:27 We will go three days' journey into the
+wilderness, and sacrifice to the LORD our God, as he shall command us.
+
+8:28 And Pharaoh said, I will let you go, that ye may sacrifice to the
+LORD your God in the wilderness; only ye shall not go very far away:
+intreat for me.
+
+8:29 And Moses said, Behold, I go out from thee, and I will intreat
+the LORD that the swarms of flies may depart from Pharaoh, from his
+servants, and from his people, to morrow: but let not Pharaoh deal
+deceitfully any more in not letting the people go to sacrifice to the
+LORD.
+
+8:30 And Moses went out from Pharaoh, and intreated the LORD.
+
+8:31 And the LORD did according to the word of Moses; and he removed
+the swarms of flies from Pharaoh, from his servants, and from his
+people; there remained not one.
+
+8:32 And Pharaoh hardened his heart at this time also, neither would
+he let the people go.
+
+9:1 Then the LORD said unto Moses, Go in unto Pharaoh, and tell him,
+Thus saith the LORD God of the Hebrews, Let my people go, that they
+may serve me.
+
+9:2 For if thou refuse to let them go, and wilt hold them still, 9:3
+Behold, the hand of the LORD is upon thy cattle which is in the field,
+upon the horses, upon the asses, upon the camels, upon the oxen, and
+upon the sheep: there shall be a very grievous murrain.
+
+9:4 And the LORD shall sever between the cattle of Israel and the
+cattle of Egypt: and there shall nothing die of all that is the
+children's of Israel.
+
+9:5 And the LORD appointed a set time, saying, To morrow the LORD
+shall do this thing in the land.
+
+9:6 And the LORD did that thing on the morrow, and all the cattle of
+Egypt died: but of the cattle of the children of Israel died not one.
+
+9:7 And Pharaoh sent, and, behold, there was not one of the cattle of
+the Israelites dead. And the heart of Pharaoh was hardened, and he did
+not let the people go.
+
+9:8 And the LORD said unto Moses and unto Aaron, Take to you handfuls
+of ashes of the furnace, and let Moses sprinkle it toward the heaven
+in the sight of Pharaoh.
+
+9:9 And it shall become small dust in all the land of Egypt, and shall
+be a boil breaking forth with blains upon man, and upon beast,
+throughout all the land of Egypt.
+
+9:10 And they took ashes of the furnace, and stood before Pharaoh; and
+Moses sprinkled it up toward heaven; and it became a boil breaking
+forth with blains upon man, and upon beast.
+
+9:11 And the magicians could not stand before Moses because of the
+boils; for the boil was upon the magicians, and upon all the
+Egyptians.
+
+9:12 And the LORD hardened the heart of Pharaoh, and he hearkened not
+unto them; as the LORD had spoken unto Moses.
+
+9:13 And the LORD said unto Moses, Rise up early in the morning, and
+stand before Pharaoh, and say unto him, Thus saith the LORD God of the
+Hebrews, Let my people go, that they may serve me.
+
+9:14 For I will at this time send all my plagues upon thine heart, and
+upon thy servants, and upon thy people; that thou mayest know that
+there is none like me in all the earth.
+
+9:15 For now I will stretch out my hand, that I may smite thee and thy
+people with pestilence; and thou shalt be cut off from the earth.
+
+9:16 And in very deed for this cause have I raised thee up, for to
+shew in thee my power; and that my name may be declared throughout all
+the earth.
+
+9:17 As yet exaltest thou thyself against my people, that thou wilt
+not let them go? 9:18 Behold, to morrow about this time I will cause
+it to rain a very grievous hail, such as hath not been in Egypt since
+the foundation thereof even until now.
+
+9:19 Send therefore now, and gather thy cattle, and all that thou hast
+in the field; for upon every man and beast which shall be found in the
+field, and shall not be brought home, the hail shall come down upon
+them, and they shall die.
+
+9:20 He that feared the word of the LORD among the servants of Pharaoh
+made his servants and his cattle flee into the houses: 9:21 And he
+that regarded not the word of the LORD left his servants and his
+cattle in the field.
+
+9:22 And the LORD said unto Moses, Stretch forth thine hand toward
+heaven, that there may be hail in all the land of Egypt, upon man, and
+upon beast, and upon every herb of the field, throughout the land of
+Egypt.
+
+9:23 And Moses stretched forth his rod toward heaven: and the LORD
+sent thunder and hail, and the fire ran along upon the ground; and the
+LORD rained hail upon the land of Egypt.
+
+9:24 So there was hail, and fire mingled with the hail, very grievous,
+such as there was none like it in all the land of Egypt since it
+became a nation.
+
+9:25 And the hail smote throughout all the land of Egypt all that was
+in the field, both man and beast; and the hail smote every herb of the
+field, and brake every tree of the field.
+
+9:26 Only in the land of Goshen, where the children of Israel were,
+was there no hail.
+
+9:27 And Pharaoh sent, and called for Moses and Aaron, and said unto
+them, I have sinned this time: the LORD is righteous, and I and my
+people are wicked.
+
+9:28 Intreat the LORD (for it is enough) that there be no more mighty
+thunderings and hail; and I will let you go, and ye shall stay no
+longer.
+
+9:29 And Moses said unto him, As soon as I am gone out of the city, I
+will spread abroad my hands unto the LORD; and the thunder shall
+cease, neither shall there be any more hail; that thou mayest know how
+that the earth is the LORD's.
+
+9:30 But as for thee and thy servants, I know that ye will not yet
+fear the LORD God.
+
+9:31 And the flax and the barley was smitten: for the barley was in
+the ear, and the flax was bolled.
+
+9:32 But the wheat and the rie were not smitten: for they were not
+grown up.
+
+9:33 And Moses went out of the city from Pharaoh, and spread abroad
+his hands unto the LORD: and the thunders and hail ceased, and the
+rain was not poured upon the earth.
+
+9:34 And when Pharaoh saw that the rain and the hail and the thunders
+were ceased, he sinned yet more, and hardened his heart, he and his
+servants.
+
+9:35 And the heart of Pharaoh was hardened, neither would he let the
+children of Israel go; as the LORD had spoken by Moses.
+
+10:1 And the LORD said unto Moses, Go in unto Pharaoh: for I have
+hardened his heart, and the heart of his servants, that I might shew
+these my signs before him: 10:2 And that thou mayest tell in the ears
+of thy son, and of thy son's son, what things I have wrought in Egypt,
+and my signs which I have done among them; that ye may know how that I
+am the LORD.
+
+10:3 And Moses and Aaron came in unto Pharaoh, and said unto him, Thus
+saith the LORD God of the Hebrews, How long wilt thou refuse to humble
+thyself before me? let my people go, that they may serve me.
+
+10:4 Else, if thou refuse to let my people go, behold, to morrow will
+I bring the locusts into thy coast: 10:5 And they shall cover the face
+of the earth, that one cannot be able to see the earth: and they shall
+eat the residue of that which is escaped, which remaineth unto you
+from the hail, and shall eat every tree which groweth for you out of
+the field: 10:6 And they shall fill thy houses, and the houses of all
+thy servants, and the houses of all the Egyptians; which neither thy
+fathers, nor thy fathers' fathers have seen, since the day that they
+were upon the earth unto this day. And he turned himself, and went out
+from Pharaoh.
+
+10:7 And Pharaoh's servants said unto him, How long shall this man be
+a snare unto us? let the men go, that they may serve the LORD their
+God: knowest thou not yet that Egypt is destroyed? 10:8 And Moses and
+Aaron were brought again unto Pharaoh: and he said unto them, Go,
+serve the LORD your God: but who are they that shall go? 10:9 And
+Moses said, We will go with our young and with our old, with our sons
+and with our daughters, with our flocks and with our herds will we go;
+for we must hold a feast unto the LORD.
+
+10:10 And he said unto them, Let the LORD be so with you, as I will
+let you go, and your little ones: look to it; for evil is before you.
+
+10:11 Not so: go now ye that are men, and serve the LORD; for that ye
+did desire. And they were driven out from Pharaoh's presence.
+
+10:12 And the LORD said unto Moses, Stretch out thine hand over the
+land of Egypt for the locusts, that they may come up upon the land of
+Egypt, and eat every herb of the land, even all that the hail hath
+left.
+
+10:13 And Moses stretched forth his rod over the land of Egypt, and
+the LORD brought an east wind upon the land all that day, and all that
+night; and when it was morning, the east wind brought the locusts.
+
+10:14 And the locust went up over all the land of Egypt, and rested in
+all the coasts of Egypt: very grievous were they; before them there
+were no such locusts as they, neither after them shall be such.
+
+10:15 For they covered the face of the whole earth, so that the land
+was darkened; and they did eat every herb of the land, and all the
+fruit of the trees which the hail had left: and there remained not any
+green thing in the trees, or in the herbs of the field, through all
+the land of Egypt.
+
+10:16 Then Pharaoh called for Moses and Aaron in haste; and he said, I
+have sinned against the LORD your God, and against you.
+
+10:17 Now therefore forgive, I pray thee, my sin only this once, and
+intreat the LORD your God, that he may take away from me this death
+only.
+
+10:18 And he went out from Pharaoh, and intreated the LORD.
+
+10:19 And the LORD turned a mighty strong west wind, which took away
+the locusts, and cast them into the Red sea; there remained not one
+locust in all the coasts of Egypt.
+
+10:20 But the LORD hardened Pharaoh's heart, so that he would not let
+the children of Israel go.
+
+10:21 And the LORD said unto Moses, Stretch out thine hand toward
+heaven, that there may be darkness over the land of Egypt, even
+darkness which may be felt.
+
+10:22 And Moses stretched forth his hand toward heaven; and there was
+a thick darkness in all the land of Egypt three days: 10:23 They saw
+not one another, neither rose any from his place for three days: but
+all the children of Israel had light in their dwellings.
+
+10:24 And Pharaoh called unto Moses, and said, Go ye, serve the LORD;
+only let your flocks and your herds be stayed: let your little ones
+also go with you.
+
+10:25 And Moses said, Thou must give us also sacrifices and burnt
+offerings, that we may sacrifice unto the LORD our God.
+
+10:26 Our cattle also shall go with us; there shall not an hoof be
+left behind; for thereof must we take to serve the LORD our God; and
+we know not with what we must serve the LORD, until we come thither.
+
+10:27 But the LORD hardened Pharaoh's heart, and he would not let them
+go.
+
+10:28 And Pharaoh said unto him, Get thee from me, take heed to
+thyself, see my face no more; for in that day thou seest my face thou
+shalt die.
+
+10:29 And Moses said, Thou hast spoken well, I will see thy face again
+no more.
+
+11:1 And the LORD said unto Moses, Yet will I bring one plague more
+upon Pharaoh, and upon Egypt; afterwards he will let you go hence:
+when he shall let you go, he shall surely thrust you out hence
+altogether.
+
+11:2 Speak now in the ears of the people, and let every man borrow of
+his neighbour, and every woman of her neighbour, jewels of silver and
+jewels of gold.
+
+11:3 And the LORD gave the people favour in the sight of the
+Egyptians.
+
+Moreover the man Moses was very great in the land of Egypt, in the
+sight of Pharaoh's servants, and in the sight of the people.
+
+11:4 And Moses said, Thus saith the LORD, About midnight will I go out
+into the midst of Egypt: 11:5 And all the firstborn in the land of
+Egypt shall die, from the first born of Pharaoh that sitteth upon his
+throne, even unto the firstborn of the maidservant that is behind the
+mill; and all the firstborn of beasts.
+
+11:6 And there shall be a great cry throughout all the land of Egypt,
+such as there was none like it, nor shall be like it any more.
+
+11:7 But against any of the children of Israel shall not a dog move
+his tongue, against man or beast: that ye may know how that the LORD
+doth put a difference between the Egyptians and Israel.
+
+11:8 And all these thy servants shall come down unto me, and bow down
+themselves unto me, saying, Get thee out, and all the people that
+follow thee: and after that I will go out. And he went out from
+Pharaoh in a great anger.
+
+11:9 And the LORD said unto Moses, Pharaoh shall not hearken unto you;
+that my wonders may be multiplied in the land of Egypt.
+
+11:10 And Moses and Aaron did all these wonders before Pharaoh: and
+the LORD hardened Pharaoh's heart, so that he would not let the
+children of Israel go out of his land.
+
+12:1 And the LORD spake unto Moses and Aaron in the land of Egypt
+saying, 12:2 This month shall be unto you the beginning of months: it
+shall be the first month of the year to you.
+
+12:3 Speak ye unto all the congregation of Israel, saying, In the
+tenth day of this month they shall take to them every man a lamb,
+according to the house of their fathers, a lamb for an house: 12:4 And
+if the household be too little for the lamb, let him and his neighbour
+next unto his house take it according to the number of the souls;
+every man according to his eating shall make your count for the lamb.
+
+12:5 Your lamb shall be without blemish, a male of the first year: ye
+shall take it out from the sheep, or from the goats: 12:6 And ye shall
+keep it up until the fourteenth day of the same month: and the whole
+assembly of the congregation of Israel shall kill it in the evening.
+
+12:7 And they shall take of the blood, and strike it on the two side
+posts and on the upper door post of the houses, wherein they shall eat
+it.
+
+12:8 And they shall eat the flesh in that night, roast with fire, and
+unleavened bread; and with bitter herbs they shall eat it.
+
+12:9 Eat not of it raw, nor sodden at all with water, but roast with
+fire; his head with his legs, and with the purtenance thereof.
+
+12:10 And ye shall let nothing of it remain until the morning; and
+that which remaineth of it until the morning ye shall burn with fire.
+
+12:11 And thus shall ye eat it; with your loins girded, your shoes on
+your feet, and your staff in your hand; and ye shall eat it in haste:
+it is the LORD's passover.
+
+12:12 For I will pass through the land of Egypt this night, and will
+smite all the firstborn in the land of Egypt, both man and beast; and
+against all the gods of Egypt I will execute judgment: I am the LORD.
+
+12:13 And the blood shall be to you for a token upon the houses where
+ye are: and when I see the blood, I will pass over you, and the plague
+shall not be upon you to destroy you, when I smite the land of Egypt.
+
+12:14 And this day shall be unto you for a memorial; and ye shall keep
+it a feast to the LORD throughout your generations; ye shall keep it a
+feast by an ordinance for ever.
+
+12:15 Seven days shall ye eat unleavened bread; even the first day ye
+shall put away leaven out of your houses: for whosoever eateth
+leavened bread from the first day until the seventh day, that soul
+shall be cut off from Israel.
+
+12:16 And in the first day there shall be an holy convocation, and in
+the seventh day there shall be an holy convocation to you; no manner
+of work shall be done in them, save that which every man must eat,
+that only may be done of you.
+
+12:17 And ye shall observe the feast of unleavened bread; for in this
+selfsame day have I brought your armies out of the land of Egypt:
+therefore shall ye observe this day in your generations by an
+ordinance for ever.
+
+12:18 In the first month, on the fourteenth day of the month at even,
+ye shall eat unleavened bread, until the one and twentieth day of the
+month at even.
+
+12:19 Seven days shall there be no leaven found in your houses: for
+whosoever eateth that which is leavened, even that soul shall be cut
+off from the congregation of Israel, whether he be a stranger, or born
+in the land.
+
+12:20 Ye shall eat nothing leavened; in all your habitations shall ye
+eat unleavened bread.
+
+12:21 Then Moses called for all the elders of Israel, and said unto
+them, Draw out and take you a lamb according to your families, and
+kill the passover.
+
+12:22 And ye shall take a bunch of hyssop, and dip it in the blood
+that is in the bason, and strike the lintel and the two side posts
+with the blood that is in the bason; and none of you shall go out at
+the door of his house until the morning.
+
+12:23 For the LORD will pass through to smite the Egyptians; and when
+he seeth the blood upon the lintel, and on the two side posts, the
+LORD will pass over the door, and will not suffer the destroyer to
+come in unto your houses to smite you.
+
+12:24 And ye shall observe this thing for an ordinance to thee and to
+thy sons for ever.
+
+12:25 And it shall come to pass, when ye be come to the land which the
+LORD will give you, according as he hath promised, that ye shall keep
+this service.
+
+12:26 And it shall come to pass, when your children shall say unto
+you, What mean ye by this service? 12:27 That ye shall say, It is the
+sacrifice of the LORD's passover, who passed over the houses of the
+children of Israel in Egypt, when he smote the Egyptians, and
+delivered our houses. And the people bowed the head and worshipped.
+
+12:28 And the children of Israel went away, and did as the LORD had
+commanded Moses and Aaron, so did they.
+
+12:29 And it came to pass, that at midnight the LORD smote all the
+firstborn in the land of Egypt, from the firstborn of Pharaoh that sat
+on his throne unto the firstborn of the captive that was in the
+dungeon; and all the firstborn of cattle.
+
+12:30 And Pharaoh rose up in the night, he, and all his servants, and
+all the Egyptians; and there was a great cry in Egypt; for there was
+not a house where there was not one dead.
+
+12:31 And he called for Moses and Aaron by night, and said, Rise up,
+and get you forth from among my people, both ye and the children of
+Israel; and go, serve the LORD, as ye have said.
+
+12:32 Also take your flocks and your herds, as ye have said, and be
+gone; and bless me also.
+
+12:33 And the Egyptians were urgent upon the people, that they might
+send them out of the land in haste; for they said, We be all dead men.
+
+12:34 And the people took their dough before it was leavened, their
+kneadingtroughs being bound up in their clothes upon their shoulders.
+
+12:35 And the children of Israel did according to the word of Moses;
+and they borrowed of the Egyptians jewels of silver, and jewels of
+gold, and raiment: 12:36 And the LORD gave the people favour in the
+sight of the Egyptians, so that they lent unto them such things as
+they required. And they spoiled the Egyptians.
+
+12:37 And the children of Israel journeyed from Rameses to Succoth,
+about six hundred thousand on foot that were men, beside children.
+
+12:38 And a mixed multitude went up also with them; and flocks, and
+herds, even very much cattle.
+
+12:39 And they baked unleavened cakes of the dough which they brought
+forth out of Egypt, for it was not leavened; because they were thrust
+out of Egypt, and could not tarry, neither had they prepared for
+themselves any victual.
+
+12:40 Now the sojourning of the children of Israel, who dwelt in
+Egypt, was four hundred and thirty years.
+
+12:41 And it came to pass at the end of the four hundred and thirty
+years, even the selfsame day it came to pass, that all the hosts of
+the LORD went out from the land of Egypt.
+
+12:42 It is a night to be much observed unto the LORD for bringing
+them out from the land of Egypt: this is that night of the LORD to be
+observed of all the children of Israel in their generations.
+
+12:43 And the LORD said unto Moses and Aaron, This is the ordinance of
+the passover: There shall no stranger eat thereof: 12:44 But every
+man's servant that is bought for money, when thou hast circumcised
+him, then shall he eat thereof.
+
+12:45 A foreigner and an hired servant shall not eat thereof.
+
+12:46 In one house shall it be eaten; thou shalt not carry forth ought
+of the flesh abroad out of the house; neither shall ye break a bone
+thereof.
+
+12:47 All the congregation of Israel shall keep it.
+
+12:48 And when a stranger shall sojourn with thee, and will keep the
+passover to the LORD, let all his males be circumcised, and then let
+him come near and keep it; and he shall be as one that is born in the
+land: for no uncircumcised person shall eat thereof.
+
+12:49 One law shall be to him that is homeborn, and unto the stranger
+that sojourneth among you.
+
+12:50 Thus did all the children of Israel; as the LORD commanded Moses
+and Aaron, so did they.
+
+12:51 And it came to pass the selfsame day, that the LORD did bring
+the children of Israel out of the land of Egypt by their armies.
+
+13:1 And the LORD spake unto Moses, saying, 13:2 Sanctify unto me all
+the firstborn, whatsoever openeth the womb among the children of
+Israel, both of man and of beast: it is mine.
+
+13:3 And Moses said unto the people, Remember this day, in which ye
+came out from Egypt, out of the house of bondage; for by strength of
+hand the LORD brought you out from this place: there shall no leavened
+bread be eaten.
+
+13:4 This day came ye out in the month Abib.
+
+13:5 And it shall be when the LORD shall bring thee into the land of
+the Canaanites, and the Hittites, and the Amorites, and the Hivites,
+and the Jebusites, which he sware unto thy fathers to give thee, a
+land flowing with milk and honey, that thou shalt keep this service in
+this month.
+
+13:6 Seven days thou shalt eat unleavened bread, and in the seventh
+day shall be a feast to the LORD.
+
+13:7 Unleavened bread shall be eaten seven days; and there shall no
+leavened bread be seen with thee, neither shall there be leaven seen
+with thee in all thy quarters.
+
+13:8 And thou shalt shew thy son in that day, saying, This is done
+because of that which the LORD did unto me when I came forth out of
+Egypt.
+
+13:9 And it shall be for a sign unto thee upon thine hand, and for a
+memorial between thine eyes, that the LORD's law may be in thy mouth:
+for with a strong hand hath the LORD brought thee out of Egypt.
+
+13:10 Thou shalt therefore keep this ordinance in his season from year
+to year.
+
+13:11 And it shall be when the LORD shall bring thee into the land of
+the Canaanites, as he sware unto thee and to thy fathers, and shall
+give it thee, 13:12 That thou shalt set apart unto the LORD all that
+openeth the matrix, and every firstling that cometh of a beast which
+thou hast; the males shall be the LORD's.
+
+13:13 And every firstling of an ass thou shalt redeem with a lamb; and
+if thou wilt not redeem it, then thou shalt break his neck: and all
+the firstborn of man among thy children shalt thou redeem.
+
+13:14 And it shall be when thy son asketh thee in time to come,
+saying, What is this? that thou shalt say unto him, By strength of
+hand the LORD brought us out from Egypt, from the house of bondage:
+13:15 And it came to pass, when Pharaoh would hardly let us go, that
+the LORD slew all the firstborn in the land of Egypt, both the
+firstborn of man, and the firstborn of beast: therefore I sacrifice to
+the LORD all that openeth the matrix, being males; but all the
+firstborn of my children I redeem.
+
+13:16 And it shall be for a token upon thine hand, and for frontlets
+between thine eyes: for by strength of hand the LORD brought us forth
+out of Egypt.
+
+13:17 And it came to pass, when Pharaoh had let the people go, that
+God led them not through the way of the land of the Philistines,
+although that was near; for God said, Lest peradventure the people
+repent when they see war, and they return to Egypt: 13:18 But God led
+the people about, through the way of the wilderness of the Red sea:
+and the children of Israel went up harnessed out of the land of Egypt.
+
+13:19 And Moses took the bones of Joseph with him: for he had straitly
+sworn the children of Israel, saying, God will surely visit you; and
+ye shall carry up my bones away hence with you.
+
+13:20 And they took their journey from Succoth, and encamped in Etham,
+in the edge of the wilderness.
+
+13:21 And the LORD went before them by day in a pillar of a cloud, to
+lead them the way; and by night in a pillar of fire, to give them
+light; to go by day and night: 13:22 He took not away the pillar of
+the cloud by day, nor the pillar of fire by night, from before the
+people.
+
+14:1 And the LORD spake unto Moses, saying, 14:2 Speak unto the
+children of Israel, that they turn and encamp before Pihahiroth,
+between Migdol and the sea, over against Baalzephon: before it shall
+ye encamp by the sea.
+
+14:3 For Pharaoh will say of the children of Israel, They are
+entangled in the land, the wilderness hath shut them in.
+
+14:4 And I will harden Pharaoh's heart, that he shall follow after
+them; and I will be honoured upon Pharaoh, and upon all his host; that
+the Egyptians may know that I am the LORD. And they did so.
+
+14:5 And it was told the king of Egypt that the people fled: and the
+heart of Pharaoh and of his servants was turned against the people,
+and they said, Why have we done this, that we have let Israel go from
+serving us? 14:6 And he made ready his chariot, and took his people
+with him: 14:7 And he took six hundred chosen chariots, and all the
+chariots of Egypt, and captains over every one of them.
+
+14:8 And the LORD hardened the heart of Pharaoh king of Egypt, and he
+pursued after the children of Israel: and the children of Israel went
+out with an high hand.
+
+14:9 But the Egyptians pursued after them, all the horses and chariots
+of Pharaoh, and his horsemen, and his army, and overtook them
+encamping by the sea, beside Pihahiroth, before Baalzephon.
+
+14:10 And when Pharaoh drew nigh, the children of Israel lifted up
+their eyes, and, behold, the Egyptians marched after them; and they
+were sore afraid: and the children of Israel cried out unto the LORD.
+
+14:11 And they said unto Moses, Because there were no graves in Egypt,
+hast thou taken us away to die in the wilderness? wherefore hast thou
+dealt thus with us, to carry us forth out of Egypt? 14:12 Is not this
+the word that we did tell thee in Egypt, saying, Let us alone, that we
+may serve the Egyptians? For it had been better for us to serve the
+Egyptians, than that we should die in the wilderness.
+
+14:13 And Moses said unto the people, Fear ye not, stand still, and
+see the salvation of the LORD, which he will shew to you to day: for
+the Egyptians whom ye have seen to day, ye shall see them again no
+more for ever.
+
+14:14 The LORD shall fight for you, and ye shall hold your peace.
+
+14:15 And the LORD said unto Moses, Wherefore criest thou unto me?
+speak unto the children of Israel, that they go forward: 14:16 But
+lift thou up thy rod, and stretch out thine hand over the sea, and
+divide it: and the children of Israel shall go on dry ground through
+the midst of the sea.
+
+14:17 And I, behold, I will harden the hearts of the Egyptians, and
+they shall follow them: and I will get me honour upon Pharaoh, and
+upon all his host, upon his chariots, and upon his horsemen.
+
+14:18 And the Egyptians shall know that I am the LORD, when I have
+gotten me honour upon Pharaoh, upon his chariots, and upon his
+horsemen.
+
+14:19 And the angel of God, which went before the camp of Israel,
+removed and went behind them; and the pillar of the cloud went from
+before their face, and stood behind them: 14:20 And it came between
+the camp of the Egyptians and the camp of Israel; and it was a cloud
+and darkness to them, but it gave light by night to these: so that the
+one came not near the other all the night.
+
+14:21 And Moses stretched out his hand over the sea; and the LORD
+caused the sea to go back by a strong east wind all that night, and
+made the sea dry land, and the waters were divided.
+
+14:22 And the children of Israel went into the midst of the sea upon
+the dry ground: and the waters were a wall unto them on their right
+hand, and on their left.
+
+14:23 And the Egyptians pursued, and went in after them to the midst
+of the sea, even all Pharaoh's horses, his chariots, and his horsemen.
+
+14:24 And it came to pass, that in the morning watch the LORD looked
+unto the host of the Egyptians through the pillar of fire and of the
+cloud, and troubled the host of the Egyptians, 14:25 And took off
+their chariot wheels, that they drave them heavily: so that the
+Egyptians said, Let us flee from the face of Israel; for the LORD
+fighteth for them against the Egyptians.
+
+14:26 And the LORD said unto Moses, Stretch out thine hand over the
+sea, that the waters may come again upon the Egyptians, upon their
+chariots, and upon their horsemen.
+
+14:27 And Moses stretched forth his hand over the sea, and the sea
+returned to his strength when the morning appeared; and the Egyptians
+fled against it; and the LORD overthrew the Egyptians in the midst of
+the sea.
+
+14:28 And the waters returned, and covered the chariots, and the
+horsemen, and all the host of Pharaoh that came into the sea after
+them; there remained not so much as one of them.
+
+14:29 But the children of Israel walked upon dry land in the midst of
+the sea; and the waters were a wall unto them on their right hand, and
+on their left.
+
+14:30 Thus the LORD saved Israel that day out of the hand of the
+Egyptians; and Israel saw the Egyptians dead upon the sea shore.
+
+14:31 And Israel saw that great work which the LORD did upon the
+Egyptians: and the people feared the LORD, and believed the LORD, and
+his servant Moses.
+
+15:1 Then sang Moses and the children of Israel this song unto the
+LORD, and spake, saying, I will sing unto the LORD, for he hath
+triumphed gloriously: the horse and his rider hath he thrown into the
+sea.
+
+15:2 The LORD is my strength and song, and he is become my salvation:
+he is my God, and I will prepare him an habitation; my father's God,
+and I will exalt him.
+
+15:3 The LORD is a man of war: the LORD is his name.
+
+15:4 Pharaoh's chariots and his host hath he cast into the sea: his
+chosen captains also are drowned in the Red sea.
+
+15:5 The depths have covered them: they sank into the bottom as a
+stone.
+
+15:6 Thy right hand, O LORD, is become glorious in power: thy right
+hand, O LORD, hath dashed in pieces the enemy.
+
+15:7 And in the greatness of thine excellency thou hast overthrown
+them that rose up against thee: thou sentest forth thy wrath, which
+consumed them as stubble.
+
+15:8 And with the blast of thy nostrils the waters were gathered
+together, the floods stood upright as an heap, and the depths were
+congealed in the heart of the sea.
+
+15:9 The enemy said, I will pursue, I will overtake, I will divide the
+spoil; my lust shall be satisfied upon them; I will draw my sword, my
+hand shall destroy them.
+
+15:10 Thou didst blow with thy wind, the sea covered them: they sank
+as lead in the mighty waters.
+
+15:11 Who is like unto thee, O LORD, among the gods? who is like thee,
+glorious in holiness, fearful in praises, doing wonders? 15:12 Thou
+stretchedst out thy right hand, the earth swallowed them.
+
+15:13 Thou in thy mercy hast led forth the people which thou hast
+redeemed: thou hast guided them in thy strength unto thy holy
+habitation.
+
+15:14 The people shall hear, and be afraid: sorrow shall take hold on
+the inhabitants of Palestina.
+
+15:15 Then the dukes of Edom shall be amazed; the mighty men of Moab,
+trembling shall take hold upon them; all the inhabitants of Canaan
+shall melt away.
+
+15:16 Fear and dread shall fall upon them; by the greatness of thine
+arm they shall be as still as a stone; till thy people pass over, O
+LORD, till the people pass over, which thou hast purchased.
+
+15:17 Thou shalt bring them in, and plant them in the mountain of
+thine inheritance, in the place, O LORD, which thou hast made for thee
+to dwell in, in the Sanctuary, O LORD, which thy hands have
+established.
+
+15:18 The LORD shall reign for ever and ever.
+
+15:19 For the horse of Pharaoh went in with his chariots and with his
+horsemen into the sea, and the LORD brought again the waters of the
+sea upon them; but the children of Israel went on dry land in the
+midst of the sea.
+
+15:20 And Miriam the prophetess, the sister of Aaron, took a timbrel
+in her hand; and all the women went out after her with timbrels and
+with dances.
+
+15:21 And Miriam answered them, Sing ye to the LORD, for he hath
+triumphed gloriously; the horse and his rider hath he thrown into the
+sea.
+
+15:22 So Moses brought Israel from the Red sea, and they went out into
+the wilderness of Shur; and they went three days in the wilderness,
+and found no water.
+
+15:23 And when they came to Marah, they could not drink of the waters
+of Marah, for they were bitter: therefore the name of it was called
+Marah.
+
+15:24 And the people murmured against Moses, saying, What shall we
+drink? 15:25 And he cried unto the LORD; and the LORD shewed him a
+tree, which when he had cast into the waters, the waters were made
+sweet: there he made for them a statute and an ordinance, and there he
+proved them, 15:26 And said, If thou wilt diligently hearken to the
+voice of the LORD thy God, and wilt do that which is right in his
+sight, and wilt give ear to his commandments, and keep all his
+statutes, I will put none of these diseases upon thee, which I have
+brought upon the Egyptians: for I am the LORD that healeth thee.
+
+15:27 And they came to Elim, where were twelve wells of water, and
+threescore and ten palm trees: and they encamped there by the waters.
+
+16:1 And they took their journey from Elim, and all the congregation
+of the children of Israel came unto the wilderness of Sin, which is
+between Elim and Sinai, on the fifteenth day of the second month after
+their departing out of the land of Egypt.
+
+16:2 And the whole congregation of the children of Israel murmured
+against Moses and Aaron in the wilderness: 16:3 And the children of
+Israel said unto them, Would to God we had died by the hand of the
+LORD in the land of Egypt, when we sat by the flesh pots, and when we
+did eat bread to the full; for ye have brought us forth into this
+wilderness, to kill this whole assembly with hunger.
+
+16:4 Then said the LORD unto Moses, Behold, I will rain bread from
+heaven for you; and the people shall go out and gather a certain rate
+every day, that I may prove them, whether they will walk in my law, or
+no.
+
+16:5 And it shall come to pass, that on the sixth day they shall
+prepare that which they bring in; and it shall be twice as much as
+they gather daily.
+
+16:6 And Moses and Aaron said unto all the children of Israel, At
+even, then ye shall know that the LORD hath brought you out from the
+land of Egypt: 16:7 And in the morning, then ye shall see the glory of
+the LORD; for that he heareth your murmurings against the LORD: and
+what are we, that ye murmur against us? 16:8 And Moses said, This
+shall be, when the LORD shall give you in the evening flesh to eat,
+and in the morning bread to the full; for that the LORD heareth your
+murmurings which ye murmur against him: and what are we? your
+murmurings are not against us, but against the LORD.
+
+16:9 And Moses spake unto Aaron, Say unto all the congregation of the
+children of Israel, Come near before the LORD: for he hath heard your
+murmurings.
+
+16:10 And it came to pass, as Aaron spake unto the whole congregation
+of the children of Israel, that they looked toward the wilderness,
+and, behold, the glory of the LORD appeared in the cloud.
+
+16:11 And the LORD spake unto Moses, saying, 16:12 I have heard the
+murmurings of the children of Israel: speak unto them, saying, At even
+ye shall eat flesh, and in the morning ye shall be filled with bread;
+and ye shall know that I am the LORD your God.
+
+16:13 And it came to pass, that at even the quails came up, and
+covered the camp: and in the morning the dew lay round about the host.
+
+16:14 And when the dew that lay was gone up, behold, upon the face of
+the wilderness there lay a small round thing, as small as the hoar
+frost on the ground.
+
+16:15 And when the children of Israel saw it, they said one to
+another, It is manna: for they wist not what it was. And Moses said
+unto them, This is the bread which the LORD hath given you to eat.
+
+16:16 This is the thing which the LORD hath commanded, Gather of it
+every man according to his eating, an omer for every man, according to
+the number of your persons; take ye every man for them which are in
+his tents.
+
+16:17 And the children of Israel did so, and gathered, some more, some
+less.
+
+16:18 And when they did mete it with an omer, he that gathered much
+had nothing over, and he that gathered little had no lack; they
+gathered every man according to his eating.
+
+16:19 And Moses said, Let no man leave of it till the morning.
+
+16:20 Notwithstanding they hearkened not unto Moses; but some of them
+left of it until the morning, and it bred worms, and stank: and Moses
+was wroth with them.
+
+16:21 And they gathered it every morning, every man according to his
+eating: and when the sun waxed hot, it melted.
+
+16:22 And it came to pass, that on the sixth day they gathered twice
+as much bread, two omers for one man: and all the rulers of the
+congregation came and told Moses.
+
+16:23 And he said unto them, This is that which the LORD hath said, To
+morrow is the rest of the holy sabbath unto the LORD: bake that which
+ye will bake to day, and seethe that ye will seethe; and that which
+remaineth over lay up for you to be kept until the morning.
+
+16:24 And they laid it up till the morning, as Moses bade: and it did
+not stink, neither was there any worm therein.
+
+16:25 And Moses said, Eat that to day; for to day is a sabbath unto
+the LORD: to day ye shall not find it in the field.
+
+16:26 Six days ye shall gather it; but on the seventh day, which is
+the sabbath, in it there shall be none.
+
+16:27 And it came to pass, that there went out some of the people on
+the seventh day for to gather, and they found none.
+
+16:28 And the LORD said unto Moses, How long refuse ye to keep my
+commandments and my laws? 16:29 See, for that the LORD hath given you
+the sabbath, therefore he giveth you on the sixth day the bread of two
+days; abide ye every man in his place, let no man go out of his place
+on the seventh day.
+
+16:30 So the people rested on the seventh day.
+
+16:31 And the house of Israel called the name thereof Manna: and it
+was like coriander seed, white; and the taste of it was like wafers
+made with honey.
+
+16:32 And Moses said, This is the thing which the LORD commandeth,
+Fill an omer of it to be kept for your generations; that they may see
+the bread wherewith I have fed you in the wilderness, when I brought
+you forth from the land of Egypt.
+
+16:33 And Moses said unto Aaron, Take a pot, and put an omer full of
+manna therein, and lay it up before the LORD, to be kept for your
+generations.
+
+16:34 As the LORD commanded Moses, so Aaron laid it up before the
+Testimony, to be kept.
+
+16:35 And the children of Israel did eat manna forty years, until they
+came to a land inhabited; they did eat manna, until they came unto the
+borders of the land of Canaan.
+
+16:36 Now an omer is the tenth part of an ephah.
+
+17:1 And all the congregation of the children of Israel journeyed from
+the wilderness of Sin, after their journeys, according to the
+commandment of the LORD, and pitched in Rephidim: and there was no
+water for the people to drink.
+
+17:2 Wherefore the people did chide with Moses, and said, Give us
+water that we may drink. And Moses said unto them, Why chide ye with
+me? wherefore do ye tempt the LORD? 17:3 And the people thirsted
+there for water; and the people murmured against Moses, and said,
+Wherefore is this that thou hast brought us up out of Egypt, to kill
+us and our children and our cattle with thirst? 17:4 And Moses cried
+unto the LORD, saying, What shall I do unto this people? they be
+almost ready to stone me.
+
+17:5 And the LORD said unto Moses, Go on before the people, and take
+with thee of the elders of Israel; and thy rod, wherewith thou smotest
+the river, take in thine hand, and go.
+
+17:6 Behold, I will stand before thee there upon the rock in Horeb;
+and thou shalt smite the rock, and there shall come water out of it,
+that the people may drink. And Moses did so in the sight of the elders
+of Israel.
+
+17:7 And he called the name of the place Massah, and Meribah, because
+of the chiding of the children of Israel, and because they tempted the
+LORD, saying, Is the LORD among us, or not? 17:8 Then came Amalek,
+and fought with Israel in Rephidim.
+
+17:9 And Moses said unto Joshua, Choose us out men, and go out, fight
+with Amalek: to morrow I will stand on the top of the hill with the
+rod of God in mine hand.
+
+17:10 So Joshua did as Moses had said to him, and fought with Amalek:
+and Moses, Aaron, and Hur went up to the top of the hill.
+
+17:11 And it came to pass, when Moses held up his hand, that Israel
+prevailed: and when he let down his hand, Amalek prevailed.
+
+17:12 But Moses hands were heavy; and they took a stone, and put it
+under him, and he sat thereon; and Aaron and Hur stayed up his hands,
+the one on the one side, and the other on the other side; and his
+hands were steady until the going down of the sun.
+
+17:13 And Joshua discomfited Amalek and his people with the edge of
+the sword.
+
+17:14 And the LORD said unto Moses, Write this for a memorial in a
+book, and rehearse it in the ears of Joshua: for I will utterly put
+out the remembrance of Amalek from under heaven.
+
+17:15 And Moses built an altar, and called the name of it
+Jehovahnissi: 17:16 For he said, Because the LORD hath sworn that the
+LORD will have war with Amalek from generation to generation.
+
+18:1 When Jethro, the priest of Midian, Moses' father in law, heard of
+all that God had done for Moses, and for Israel his people, and that
+the LORD had brought Israel out of Egypt; 18:2 Then Jethro, Moses'
+father in law, took Zipporah, Moses' wife, after he had sent her back,
+18:3 And her two sons; of which the name of the one was Gershom; for
+he said, I have been an alien in a strange land: 18:4 And the name of
+the other was Eliezer; for the God of my father, said he, was mine
+help, and delivered me from the sword of Pharaoh: 18:5 And Jethro,
+Moses' father in law, came with his sons and his wife unto Moses into
+the wilderness, where he encamped at the mount of God: 18:6 And he
+said unto Moses, I thy father in law Jethro am come unto thee, and thy
+wife, and her two sons with her.
+
+18:7 And Moses went out to meet his father in law, and did obeisance,
+and kissed him; and they asked each other of their welfare; and they
+came into the tent.
+
+18:8 And Moses told his father in law all that the LORD had done unto
+Pharaoh and to the Egyptians for Israel's sake, and all the travail
+that had come upon them by the way, and how the LORD delivered them.
+
+18:9 And Jethro rejoiced for all the goodness which the LORD had done
+to Israel, whom he had delivered out of the hand of the Egyptians.
+
+18:10 And Jethro said, Blessed be the LORD, who hath delivered you out
+of the hand of the Egyptians, and out of the hand of Pharaoh, who hath
+delivered the people from under the hand of the Egyptians.
+
+18:11 Now I know that the LORD is greater than all gods: for in the
+thing wherein they dealt proudly he was above them.
+
+18:12 And Jethro, Moses' father in law, took a burnt offering and
+sacrifices for God: and Aaron came, and all the elders of Israel, to
+eat bread with Moses' father in law before God.
+
+18:13 And it came to pass on the morrow, that Moses sat to judge the
+people: and the people stood by Moses from the morning unto the
+evening.
+
+18:14 And when Moses' father in law saw all that he did to the people,
+he said, What is this thing that thou doest to the people? why sittest
+thou thyself alone, and all the people stand by thee from morning unto
+even? 18:15 And Moses said unto his father in law, Because the people
+come unto me to enquire of God: 18:16 When they have a matter, they
+come unto me; and I judge between one and another, and I do make them
+know the statutes of God, and his laws.
+
+18:17 And Moses' father in law said unto him, The thing that thou
+doest is not good.
+
+18:18 Thou wilt surely wear away, both thou, and this people that is
+with thee: for this thing is too heavy for thee; thou art not able to
+perform it thyself alone.
+
+18:19 Hearken now unto my voice, I will give thee counsel, and God
+shall be with thee: Be thou for the people to God-ward, that thou
+mayest bring the causes unto God: 18:20 And thou shalt teach them
+ordinances and laws, and shalt shew them the way wherein they must
+walk, and the work that they must do.
+
+18:21 Moreover thou shalt provide out of all the people able men, such
+as fear God, men of truth, hating covetousness; and place such over
+them, to be rulers of thousands, and rulers of hundreds, rulers of
+fifties, and rulers of tens: 18:22 And let them judge the people at
+all seasons: and it shall be, that every great matter they shall bring
+unto thee, but every small matter they shall judge: so shall it be
+easier for thyself, and they shall bear the burden with thee.
+
+18:23 If thou shalt do this thing, and God command thee so, then thou
+shalt be able to endure, and all this people shall also go to their
+place in peace.
+
+18:24 So Moses hearkened to the voice of his father in law, and did
+all that he had said.
+
+18:25 And Moses chose able men out of all Israel, and made them heads
+over the people, rulers of thousands, rulers of hundreds, rulers of
+fifties, and rulers of tens.
+
+18:26 And they judged the people at all seasons: the hard causes they
+brought unto Moses, but every small matter they judged themselves.
+
+18:27 And Moses let his father in law depart; and he went his way into
+his own land.
+
+19:1 In the third month, when the children of Israel were gone forth
+out of the land of Egypt, the same day came they into the wilderness
+of Sinai.
+
+19:2 For they were departed from Rephidim, and were come to the desert
+of Sinai, and had pitched in the wilderness; and there Israel camped
+before the mount.
+
+19:3 And Moses went up unto God, and the LORD called unto him out of
+the mountain, saying, Thus shalt thou say to the house of Jacob, and
+tell the children of Israel; 19:4 Ye have seen what I did unto the
+Egyptians, and how I bare you on eagles' wings, and brought you unto
+myself.
+
+19:5 Now therefore, if ye will obey my voice indeed, and keep my
+covenant, then ye shall be a peculiar treasure unto me above all
+people: for all the earth is mine: 19:6 And ye shall be unto me a
+kingdom of priests, and an holy nation.
+
+These are the words which thou shalt speak unto the children of
+Israel.
+
+19:7 And Moses came and called for the elders of the people, and laid
+before their faces all these words which the LORD commanded him.
+
+19:8 And all the people answered together, and said, All that the LORD
+hath spoken we will do. And Moses returned the words of the people
+unto the LORD.
+
+19:9 And the LORD said unto Moses, Lo, I come unto thee in a thick
+cloud, that the people may hear when I speak with thee, and believe
+thee for ever.
+
+And Moses told the words of the people unto the LORD.
+
+19:10 And the LORD said unto Moses, Go unto the people, and sanctify
+them to day and to morrow, and let them wash their clothes, 19:11 And
+be ready against the third day: for the third day the LORD will come
+down in the sight of all the people upon mount Sinai.
+
+19:12 And thou shalt set bounds unto the people round about, saying,
+Take heed to yourselves, that ye go not up into the mount, or touch
+the border of it: whosoever toucheth the mount shall be surely put to
+death: 19:13 There shall not an hand touch it, but he shall surely be
+stoned, or shot through; whether it be beast or man, it shall not
+live: when the trumpet soundeth long, they shall come up to the mount.
+
+19:14 And Moses went down from the mount unto the people, and
+sanctified the people; and they washed their clothes.
+
+19:15 And he said unto the people, Be ready against the third day:
+come not at your wives.
+
+19:16 And it came to pass on the third day in the morning, that there
+were thunders and lightnings, and a thick cloud upon the mount, and
+the voice of the trumpet exceeding loud; so that all the people that
+was in the camp trembled.
+
+19:17 And Moses brought forth the people out of the camp to meet with
+God; and they stood at the nether part of the mount.
+
+19:18 And mount Sinai was altogether on a smoke, because the LORD
+descended upon it in fire: and the smoke thereof ascended as the smoke
+of a furnace, and the whole mount quaked greatly.
+
+19:19 And when the voice of the trumpet sounded long, and waxed louder
+and louder, Moses spake, and God answered him by a voice.
+
+19:20 And the LORD came down upon mount Sinai, on the top of the
+mount: and the LORD called Moses up to the top of the mount; and Moses
+went up.
+
+19:21 And the LORD said unto Moses, Go down, charge the people, lest
+they break through unto the LORD to gaze, and many of them perish.
+
+19:22 And let the priests also, which come near to the LORD, sanctify
+themselves, lest the LORD break forth upon them.
+
+19:23 And Moses said unto the LORD, The people cannot come up to mount
+Sinai: for thou chargedst us, saying, Set bounds about the mount, and
+sanctify it.
+
+19:24 And the LORD said unto him, Away, get thee down, and thou shalt
+come up, thou, and Aaron with thee: but let not the priests and the
+people break through to come up unto the LORD, lest he break forth
+upon them.
+
+19:25 So Moses went down unto the people, and spake unto them.
+
+20:1 And God spake all these words, saying, 20:2 I am the LORD thy
+God, which have brought thee out of the land of Egypt, out of the
+house of bondage.
+
+20:3 Thou shalt have no other gods before me.
+
+20:4 Thou shalt not make unto thee any graven image, or any likeness
+of any thing that is in heaven above, or that is in the earth beneath,
+or that is in the water under the earth.
+
+20:5 Thou shalt not bow down thyself to them, nor serve them: for I
+the LORD thy God am a jealous God, visiting the iniquity of the
+fathers upon the children unto the third and fourth generation of them
+that hate me; 20:6 And shewing mercy unto thousands of them that love
+me, and keep my commandments.
+
+20:7 Thou shalt not take the name of the LORD thy God in vain; for the
+LORD will not hold him guiltless that taketh his name in vain.
+
+20:8 Remember the sabbath day, to keep it holy.
+
+20:9 Six days shalt thou labour, and do all thy work: 20:10 But the
+seventh day is the sabbath of the LORD thy God: in it thou shalt not
+do any work, thou, nor thy son, nor thy daughter, thy manservant, nor
+thy maidservant, nor thy cattle, nor thy stranger that is within thy
+gates: 20:11 For in six days the LORD made heaven and earth, the sea,
+and all that in them is, and rested the seventh day: wherefore the
+LORD blessed the sabbath day, and hallowed it.
+
+20:12 Honour thy father and thy mother: that thy days may be long upon
+the land which the LORD thy God giveth thee.
+
+20:13 Thou shalt not kill.
+
+20:14 Thou shalt not commit adultery.
+
+20:15 Thou shalt not steal.
+
+20:16 Thou shalt not bear false witness against thy neighbour.
+
+20:17 Thou shalt not covet thy neighbour's house, thou shalt not covet
+thy neighbour's wife, nor his manservant, nor his maidservant, nor his
+ox, nor his ass, nor any thing that is thy neighbour's.
+
+20:18 And all the people saw the thunderings, and the lightnings, and
+the noise of the trumpet, and the mountain smoking: and when the
+people saw it, they removed, and stood afar off.
+
+20:19 And they said unto Moses, Speak thou with us, and we will hear:
+but let not God speak with us, lest we die.
+
+20:20 And Moses said unto the people, Fear not: for God is come to
+prove you, and that his fear may be before your faces, that ye sin
+not.
+
+20:21 And the people stood afar off, and Moses drew near unto the
+thick darkness where God was.
+
+20:22 And the LORD said unto Moses, Thus thou shalt say unto the
+children of Israel, Ye have seen that I have talked with you from
+heaven.
+
+20:23 Ye shall not make with me gods of silver, neither shall ye make
+unto you gods of gold.
+
+20:24 An altar of earth thou shalt make unto me, and shalt sacrifice
+thereon thy burnt offerings, and thy peace offerings, thy sheep, and
+thine oxen: in all places where I record my name I will come unto
+thee, and I will bless thee.
+
+20:25 And if thou wilt make me an altar of stone, thou shalt not build
+it of hewn stone: for if thou lift up thy tool upon it, thou hast
+polluted it.
+
+20:26 Neither shalt thou go up by steps unto mine altar, that thy
+nakedness be not discovered thereon.
+
+21:1 Now these are the judgments which thou shalt set before them.
+
+21:2 If thou buy an Hebrew servant, six years he shall serve: and in
+the seventh he shall go out free for nothing.
+
+21:3 If he came in by himself, he shall go out by himself: if he were
+married, then his wife shall go out with him.
+
+21:4 If his master have given him a wife, and she have born him sons
+or daughters; the wife and her children shall be her master's, and he
+shall go out by himself.
+
+21:5 And if the servant shall plainly say, I love my master, my wife,
+and my children; I will not go out free: 21:6 Then his master shall
+bring him unto the judges; he shall also bring him to the door, or
+unto the door post; and his master shall bore his ear through with an
+aul; and he shall serve him for ever.
+
+21:7 And if a man sell his daughter to be a maidservant, she shall not
+go out as the menservants do.
+
+21:8 If she please not her master, who hath betrothed her to himself,
+then shall he let her be redeemed: to sell her unto a strange nation
+he shall have no power, seeing he hath dealt deceitfully with her.
+
+21:9 And if he have betrothed her unto his son, he shall deal with her
+after the manner of daughters.
+
+21:10 If he take him another wife; her food, her raiment, and her duty
+of marriage, shall he not diminish.
+
+21:11 And if he do not these three unto her, then shall she go out
+free without money.
+
+21:12 He that smiteth a man, so that he die, shall be surely put to
+death.
+
+21:13 And if a man lie not in wait, but God deliver him into his hand;
+then I will appoint thee a place whither he shall flee.
+
+21:14 But if a man come presumptuously upon his neighbour, to slay him
+with guile; thou shalt take him from mine altar, that he may die.
+
+21:15 And he that smiteth his father, or his mother, shall be surely
+put to death.
+
+21:16 And he that stealeth a man, and selleth him, or if he be found
+in his hand, he shall surely be put to death.
+
+21:17 And he that curseth his father, or his mother, shall surely be
+put to death.
+
+21:18 And if men strive together, and one smite another with a stone,
+or with his fist, and he die not, but keepeth his bed: 21:19 If he
+rise again, and walk abroad upon his staff, then shall he that smote
+him be quit: only he shall pay for the loss of his time, and shall
+cause him to be thoroughly healed.
+
+21:20 And if a man smite his servant, or his maid, with a rod, and he
+die under his hand; he shall be surely punished.
+
+21:21 Notwithstanding, if he continue a day or two, he shall not be
+punished: for he is his money.
+
+21:22 If men strive, and hurt a woman with child, so that her fruit
+depart from her, and yet no mischief follow: he shall be surely
+punished, according as the woman's husband will lay upon him; and he
+shall pay as the judges determine.
+
+21:23 And if any mischief follow, then thou shalt give life for life,
+21:24 Eye for eye, tooth for tooth, hand for hand, foot for foot,
+21:25 Burning for burning, wound for wound, stripe for stripe.
+
+21:26 And if a man smite the eye of his servant, or the eye of his
+maid, that it perish; he shall let him go free for his eye's sake.
+
+21:27 And if he smite out his manservant's tooth, or his maidservant's
+tooth; he shall let him go free for his tooth's sake.
+
+21:28 If an ox gore a man or a woman, that they die: then the ox shall
+be surely stoned, and his flesh shall not be eaten; but the owner of
+the ox shall be quit.
+
+21:29 But if the ox were wont to push with his horn in time past, and
+it hath been testified to his owner, and he hath not kept him in, but
+that he hath killed a man or a woman; the ox shall be stoned, and his
+owner also shall be put to death.
+
+21:30 If there be laid on him a sum of money, then he shall give for
+the ransom of his life whatsoever is laid upon him.
+
+21:31 Whether he have gored a son, or have gored a daughter, according
+to this judgment shall it be done unto him.
+
+21:32 If the ox shall push a manservant or a maidservant; he shall
+give unto their master thirty shekels of silver, and the ox shall be
+stoned.
+
+21:33 And if a man shall open a pit, or if a man shall dig a pit, and
+not cover it, and an ox or an ass fall therein; 21:34 The owner of the
+pit shall make it good, and give money unto the owner of them; and the
+dead beast shall be his.
+
+21:35 And if one man's ox hurt another's, that he die; then they shall
+sell the live ox, and divide the money of it; and the dead ox also
+they shall divide.
+
+21:36 Or if it be known that the ox hath used to push in time past,
+and his owner hath not kept him in; he shall surely pay ox for ox; and
+the dead shall be his own.
+
+22:1 If a man shall steal an ox, or a sheep, and kill it, or sell it;
+he shall restore five oxen for an ox, and four sheep for a sheep.
+
+22:2 If a thief be found breaking up, and be smitten that he die,
+there shall no blood be shed for him.
+
+22:3 If the sun be risen upon him, there shall be blood shed for him;
+for he should make full restitution; if he have nothing, then he shall
+be sold for his theft.
+
+22:4 If the theft be certainly found in his hand alive, whether it be
+ox, or ass, or sheep; he shall restore double.
+
+22:5 If a man shall cause a field or vineyard to be eaten, and shall
+put in his beast, and shall feed in another man's field; of the best
+of his own field, and of the best of his own vineyard, shall he make
+restitution.
+
+22:6 If fire break out, and catch in thorns, so that the stacks of
+corn, or the standing corn, or the field, be consumed therewith; he
+that kindled the fire shall surely make restitution.
+
+22:7 If a man shall deliver unto his neighbour money or stuff to keep,
+and it be stolen out of the man's house; if the thief be found, let
+him pay double.
+
+22:8 If the thief be not found, then the master of the house shall be
+brought unto the judges, to see whether he have put his hand unto his
+neighbour's goods.
+
+22:9 For all manner of trespass, whether it be for ox, for ass, for
+sheep, for raiment, or for any manner of lost thing which another
+challengeth to be his, the cause of both parties shall come before the
+judges; and whom the judges shall condemn, he shall pay double unto
+his neighbour.
+
+22:10 If a man deliver unto his neighbour an ass, or an ox, or a
+sheep, or any beast, to keep; and it die, or be hurt, or driven away,
+no man seeing it: 22:11 Then shall an oath of the LORD be between them
+both, that he hath not put his hand unto his neighbour's goods; and
+the owner of it shall accept thereof, and he shall not make it good.
+
+22:12 And if it be stolen from him, he shall make restitution unto the
+owner thereof.
+
+22:13 If it be torn in pieces, then let him bring it for witness, and
+he shall not make good that which was torn.
+
+22:14 And if a man borrow ought of his neighbour, and it be hurt, or
+die, the owner thereof being not with it, he shall surely make it
+good.
+
+22:15 But if the owner thereof be with it, he shall not make it good:
+if it be an hired thing, it came for his hire.
+
+22:16 And if a man entice a maid that is not betrothed, and lie with
+her, he shall surely endow her to be his wife.
+
+22:17 If her father utterly refuse to give her unto him, he shall pay
+money according to the dowry of virgins.
+
+22:18 Thou shalt not suffer a witch to live.
+
+22:19 Whosoever lieth with a beast shall surely be put to death.
+
+22:20 He that sacrificeth unto any god, save unto the LORD only, he
+shall be utterly destroyed.
+
+22:21 Thou shalt neither vex a stranger, nor oppress him: for ye were
+strangers in the land of Egypt.
+
+22:22 Ye shall not afflict any widow, or fatherless child.
+
+22:23 If thou afflict them in any wise, and they cry at all unto me, I
+will surely hear their cry; 22:24 And my wrath shall wax hot, and I
+will kill you with the sword; and your wives shall be widows, and your
+children fatherless.
+
+22:25 If thou lend money to any of my people that is poor by thee,
+thou shalt not be to him as an usurer, neither shalt thou lay upon him
+usury.
+
+22:26 If thou at all take thy neighbour's raiment to pledge, thou
+shalt deliver it unto him by that the sun goeth down: 22:27 For that
+is his covering only, it is his raiment for his skin: wherein shall he
+sleep? and it shall come to pass, when he crieth unto me, that I will
+hear; for I am gracious.
+
+22:28 Thou shalt not revile the gods, nor curse the ruler of thy
+people.
+
+22:29 Thou shalt not delay to offer the first of thy ripe fruits, and
+of thy liquors: the firstborn of thy sons shalt thou give unto me.
+
+22:30 Likewise shalt thou do with thine oxen, and with thy sheep:
+seven days it shall be with his dam; on the eighth day thou shalt give
+it me.
+
+22:31 And ye shall be holy men unto me: neither shall ye eat any flesh
+that is torn of beasts in the field; ye shall cast it to the dogs.
+
+23:1 Thou shalt not raise a false report: put not thine hand with the
+wicked to be an unrighteous witness.
+
+23:2 Thou shalt not follow a multitude to do evil; neither shalt thou
+speak in a cause to decline after many to wrest judgment: 23:3 Neither
+shalt thou countenance a poor man in his cause.
+
+23:4 If thou meet thine enemy's ox or his ass going astray, thou shalt
+surely bring it back to him again.
+
+23:5 If thou see the ass of him that hateth thee lying under his
+burden, and wouldest forbear to help him, thou shalt surely help with
+him.
+
+23:6 Thou shalt not wrest the judgment of thy poor in his cause.
+
+23:7 Keep thee far from a false matter; and the innocent and righteous
+slay thou not: for I will not justify the wicked.
+
+23:8 And thou shalt take no gift: for the gift blindeth the wise, and
+perverteth the words of the righteous.
+
+23:9 Also thou shalt not oppress a stranger: for ye know the heart of
+a stranger, seeing ye were strangers in the land of Egypt.
+
+23:10 And six years thou shalt sow thy land, and shalt gather in the
+fruits thereof: 23:11 But the seventh year thou shalt let it rest and
+lie still; that the poor of thy people may eat: and what they leave
+the beasts of the field shall eat. In like manner thou shalt deal with
+thy vineyard, and with thy oliveyard.
+
+23:12 Six days thou shalt do thy work, and on the seventh day thou
+shalt rest: that thine ox and thine ass may rest, and the son of thy
+handmaid, and the stranger, may be refreshed.
+
+23:13 And in all things that I have said unto you be circumspect: and
+make no mention of the name of other gods, neither let it be heard out
+of thy mouth.
+
+23:14 Three times thou shalt keep a feast unto me in the year.
+
+23:15 Thou shalt keep the feast of unleavened bread: (thou shalt eat
+unleavened bread seven days, as I commanded thee, in the time
+appointed of the month Abib; for in it thou camest out from Egypt: and
+none shall appear before me empty:) 23:16 And the feast of harvest,
+the firstfruits of thy labours, which thou hast sown in the field: and
+the feast of ingathering, which is in the end of the year, when thou
+hast gathered in thy labours out of the field.
+
+23:17 Three items in the year all thy males shall appear before the
+LORD God.
+
+23:18 Thou shalt not offer the blood of my sacrifice with leavened
+bread; neither shall the fat of my sacrifice remain until the morning.
+
+23:19 The first of the firstfruits of thy land thou shalt bring into
+the house of the LORD thy God. Thou shalt not seethe a kid in his
+mother's milk.
+
+23:20 Behold, I send an Angel before thee, to keep thee in the way,
+and to bring thee into the place which I have prepared.
+
+23:21 Beware of him, and obey his voice, provoke him not; for he will
+not pardon your transgressions: for my name is in him.
+
+23:22 But if thou shalt indeed obey his voice, and do all that I
+speak; then I will be an enemy unto thine enemies, and an adversary
+unto thine adversaries.
+
+23:23 For mine Angel shall go before thee, and bring thee in unto the
+Amorites, and the Hittites, and the Perizzites, and the Canaanites,
+the Hivites, and the Jebusites: and I will cut them off.
+
+23:24 Thou shalt not bow down to their gods, nor serve them, nor do
+after their works: but thou shalt utterly overthrow them, and quite
+break down their images.
+
+23:25 And ye shall serve the LORD your God, and he shall bless thy
+bread, and thy water; and I will take sickness away from the midst of
+thee.
+
+23:26 There shall nothing cast their young, nor be barren, in thy
+land: the number of thy days I will fulfil.
+
+23:27 I will send my fear before thee, and will destroy all the people
+to whom thou shalt come, and I will make all thine enemies turn their
+backs unto thee.
+
+23:28 And I will send hornets before thee, which shall drive out the
+Hivite, the Canaanite, and the Hittite, from before thee.
+
+23:29 I will not drive them out from before thee in one year; lest the
+land become desolate, and the beast of the field multiply against
+thee.
+
+23:30 By little and little I will drive them out from before thee,
+until thou be increased, and inherit the land.
+
+23:31 And I will set thy bounds from the Red sea even unto the sea of
+the Philistines, and from the desert unto the river: for I will
+deliver the inhabitants of the land into your hand; and thou shalt
+drive them out before thee.
+
+23:32 Thou shalt make no covenant with them, nor with their gods.
+
+23:33 They shall not dwell in thy land, lest they make thee sin
+against me: for if thou serve their gods, it will surely be a snare
+unto thee.
+
+24:1 And he said unto Moses, Come up unto the LORD, thou, and Aaron,
+Nadab, and Abihu, and seventy of the elders of Israel; and worship ye
+afar off.
+
+24:2 And Moses alone shall come near the LORD: but they shall not come
+nigh; neither shall the people go up with him.
+
+24:3 And Moses came and told the people all the words of the LORD, and
+all the judgments: and all the people answered with one voice, and
+said, All the words which the LORD hath said will we do.
+
+24:4 And Moses wrote all the words of the LORD, and rose up early in
+the morning, and builded an altar under the hill, and twelve pillars,
+according to the twelve tribes of Israel.
+
+24:5 And he sent young men of the children of Israel, which offered
+burnt offerings, and sacrificed peace offerings of oxen unto the LORD.
+
+24:6 And Moses took half of the blood, and put it in basons; and half
+of the blood he sprinkled on the altar.
+
+24:7 And he took the book of the covenant, and read in the audience of
+the people: and they said, All that the LORD hath said will we do, and
+be obedient.
+
+24:8 And Moses took the blood, and sprinkled it on the people, and
+said, Behold the blood of the covenant, which the LORD hath made with
+you concerning all these words.
+
+24:9 Then went up Moses, and Aaron, Nadab, and Abihu, and seventy of
+the elders of Israel: 24:10 And they saw the God of Israel: and there
+was under his feet as it were a paved work of a sapphire stone, and as
+it were the body of heaven in his clearness.
+
+24:11 And upon the nobles of the children of Israel he laid not his
+hand: also they saw God, and did eat and drink.
+
+24:12 And the LORD said unto Moses, Come up to me into the mount, and
+be there: and I will give thee tables of stone, and a law, and
+commandments which I have written; that thou mayest teach them.
+
+24:13 And Moses rose up, and his minister Joshua: and Moses went up
+into the mount of God.
+
+24:14 And he said unto the elders, Tarry ye here for us, until we come
+again unto you: and, behold, Aaron and Hur are with you: if any man
+have any matters to do, let him come unto them.
+
+24:15 And Moses went up into the mount, and a cloud covered the mount.
+
+24:16 And the glory of the LORD abode upon mount Sinai, and the cloud
+covered it six days: and the seventh day he called unto Moses out of
+the midst of the cloud.
+
+24:17 And the sight of the glory of the LORD was like devouring fire
+on the top of the mount in the eyes of the children of Israel.
+
+24:18 And Moses went into the midst of the cloud, and gat him up into
+the mount: and Moses was in the mount forty days and forty nights.
+
+25:1 And the LORD spake unto Moses, saying, 25:2 Speak unto the
+children of Israel, that they bring me an offering: of every man that
+giveth it willingly with his heart ye shall take my offering.
+
+25:3 And this is the offering which ye shall take of them; gold, and
+silver, and brass, 25:4 And blue, and purple, and scarlet, and fine
+linen, and goats' hair, 25:5 And rams' skins dyed red, and badgers'
+skins, and shittim wood, 25:6 Oil for the light, spices for anointing
+oil, and for sweet incense, 25:7 Onyx stones, and stones to be set in
+the ephod, and in the breastplate.
+
+25:8 And let them make me a sanctuary; that I may dwell among them.
+
+25:9 According to all that I shew thee, after the pattern of the
+tabernacle, and the pattern of all the instruments thereof, even so
+shall ye make it.
+
+25:10 And they shall make an ark of shittim wood: two cubits and a
+half shall be the length thereof, and a cubit and a half the breadth
+thereof, and a cubit and a half the height thereof.
+
+25:11 And thou shalt overlay it with pure gold, within and without
+shalt thou overlay it, and shalt make upon it a crown of gold round
+about.
+
+25:12 And thou shalt cast four rings of gold for it, and put them in
+the four corners thereof; and two rings shall be in the one side of
+it, and two rings in the other side of it.
+
+25:13 And thou shalt make staves of shittim wood, and overlay them
+with gold.
+
+25:14 And thou shalt put the staves into the rings by the sides of the
+ark, that the ark may be borne with them.
+
+25:15 The staves shall be in the rings of the ark: they shall not be
+taken from it.
+
+25:16 And thou shalt put into the ark the testimony which I shall give
+thee.
+
+25:17 And thou shalt make a mercy seat of pure gold: two cubits and a
+half shall be the length thereof, and a cubit and a half the breadth
+thereof.
+
+25:18 And thou shalt make two cherubims of gold, of beaten work shalt
+thou make them, in the two ends of the mercy seat.
+
+25:19 And make one cherub on the one end, and the other cherub on the
+other end: even of the mercy seat shall ye make the cherubims on the
+two ends thereof.
+
+25:20 And the cherubims shall stretch forth their wings on high,
+covering the mercy seat with their wings, and their faces shall look
+one to another; toward the mercy seat shall the faces of the cherubims
+be.
+
+25:21 And thou shalt put the mercy seat above upon the ark; and in the
+ark thou shalt put the testimony that I shall give thee.
+
+25:22 And there I will meet with thee, and I will commune with thee
+from above the mercy seat, from between the two cherubims which are
+upon the ark of the testimony, of all things which I will give thee in
+commandment unto the children of Israel.
+
+25:23 Thou shalt also make a table of shittim wood: two cubits shall
+be the length thereof, and a cubit the breadth thereof, and a cubit
+and a half the height thereof.
+
+25:24 And thou shalt overlay it with pure gold, and make thereto a
+crown of gold round about.
+
+25:25 And thou shalt make unto it a border of an hand breadth round
+about, and thou shalt make a golden crown to the border thereof round
+about.
+
+25:26 And thou shalt make for it four rings of gold, and put the rings
+in the four corners that are on the four feet thereof.
+
+25:27 Over against the border shall the rings be for places of the
+staves to bear the table.
+
+25:28 And thou shalt make the staves of shittim wood, and overlay them
+with gold, that the table may be borne with them.
+
+25:29 And thou shalt make the dishes thereof, and spoons thereof, and
+covers thereof, and bowls thereof, to cover withal: of pure gold shalt
+thou make them.
+
+25:30 And thou shalt set upon the table shewbread before me alway.
+
+25:31 And thou shalt make a candlestick of pure gold: of beaten work
+shall the candlestick be made: his shaft, and his branches, his bowls,
+his knops, and his flowers, shall be of the same.
+
+25:32 And six branches shall come out of the sides of it; three
+branches of the candlestick out of the one side, and three branches of
+the candlestick out of the other side: 25:33 Three bowls made like
+unto almonds, with a knop and a flower in one branch; and three bowls
+made like almonds in the other branch, with a knop and a flower: so in
+the six branches that come out of the candlestick.
+
+25:34 And in the candlesticks shall be four bowls made like unto
+almonds, with their knops and their flowers.
+
+25:35 And there shall be a knop under two branches of the same, and a
+knop under two branches of the same, and a knop under two branches of
+the same, according to the six branches that proceed out of the
+candlestick.
+
+25:36 Their knops and their branches shall be of the same: all it
+shall be one beaten work of pure gold.
+
+25:37 And thou shalt make the seven lamps thereof: and they shall
+light the lamps thereof, that they may give light over against it.
+
+25:38 And the tongs thereof, and the snuffdishes thereof, shall be of
+pure gold.
+
+25:39 Of a talent of pure gold shall he make it, with all these
+vessels.
+
+25:40 And look that thou make them after their pattern, which was
+shewed thee in the mount.
+
+26:1 Moreover thou shalt make the tabernacle with ten curtains of fine
+twined linen, and blue, and purple, and scarlet: with cherubims of
+cunning work shalt thou make them.
+
+26:2 The length of one curtain shall be eight and twenty cubits, and
+the breadth of one curtain four cubits: and every one of the curtains
+shall have one measure.
+
+26:3 The five curtains shall be coupled together one to another; and
+other five curtains shall be coupled one to another.
+
+26:4 And thou shalt make loops of blue upon the edge of the one
+curtain from the selvedge in the coupling; and likewise shalt thou
+make in the uttermost edge of another curtain, in the coupling of the
+second.
+
+26:5 Fifty loops shalt thou make in the one curtain, and fifty loops
+shalt thou make in the edge of the curtain that is in the coupling of
+the second; that the loops may take hold one of another.
+
+26:6 And thou shalt make fifty taches of gold, and couple the curtains
+together with the taches: and it shall be one tabernacle.
+
+26:7 And thou shalt make curtains of goats' hair to be a covering upon
+the tabernacle: eleven curtains shalt thou make.
+
+26:8 The length of one curtain shall be thirty cubits, and the breadth
+of one curtain four cubits: and the eleven curtains shall be all of
+one measure.
+
+26:9 And thou shalt couple five curtains by themselves, and six
+curtains by themselves, and shalt double the sixth curtain in the
+forefront of the tabernacle.
+
+26:10 And thou shalt make fifty loops on the edge of the one curtain
+that is outmost in the coupling, and fifty loops in the edge of the
+curtain which coupleth the second.
+
+26:11 And thou shalt make fifty taches of brass, and put the taches
+into the loops, and couple the tent together, that it may be one.
+
+26:12 And the remnant that remaineth of the curtains of the tent, the
+half curtain that remaineth, shall hang over the backside of the
+tabernacle.
+
+26:13 And a cubit on the one side, and a cubit on the other side of
+that which remaineth in the length of the curtains of the tent, it
+shall hang over the sides of the tabernacle on this side and on that
+side, to cover it.
+
+26:14 And thou shalt make a covering for the tent of rams' skins dyed
+red, and a covering above of badgers' skins.
+
+26:15 And thou shalt make boards for the tabernacle of shittim wood
+standing up.
+
+26:16 Ten cubits shall be the length of a board, and a cubit and a
+half shall be the breadth of one board.
+
+26:17 Two tenons shall there be in one board, set in order one against
+another: thus shalt thou make for all the boards of the tabernacle.
+
+26:18 And thou shalt make the boards for the tabernacle, twenty boards
+on the south side southward.
+
+26:19 And thou shalt make forty sockets of silver under the twenty
+boards; two sockets under one board for his two tenons, and two
+sockets under another board for his two tenons.
+
+26:20 And for the second side of the tabernacle on the north side
+there shall be twenty boards: 26:21 And their forty sockets of silver;
+two sockets under one board, and two sockets under another board.
+
+26:22 And for the sides of the tabernacle westward thou shalt make six
+boards.
+
+26:23 And two boards shalt thou make for the corners of the tabernacle
+in the two sides.
+
+26:24 And they shall be coupled together beneath, and they shall be
+coupled together above the head of it unto one ring: thus shall it be
+for them both; they shall be for the two corners.
+
+26:25 And they shall be eight boards, and their sockets of silver,
+sixteen sockets; two sockets under one board, and two sockets under
+another board.
+
+26:26 And thou shalt make bars of shittim wood; five for the boards of
+the one side of the tabernacle, 26:27 And five bars for the boards of
+the other side of the tabernacle, and five bars for the boards of the
+side of the tabernacle, for the two sides westward.
+
+26:28 And the middle bar in the midst of the boards shall reach from
+end to end.
+
+26:29 And thou shalt overlay the boards with gold, and make their
+rings of gold for places for the bars: and thou shalt overlay the bars
+with gold.
+
+26:30 And thou shalt rear up the tabernacle according to the fashion
+thereof which was shewed thee in the mount.
+
+26:31 And thou shalt make a vail of blue, and purple, and scarlet, and
+fine twined linen of cunning work: with cherubims shall it be made:
+26:32 And thou shalt hang it upon four pillars of shittim wood
+overlaid with gold: their hooks shall be of gold, upon the four
+sockets of silver.
+
+26:33 And thou shalt hang up the vail under the taches, that thou
+mayest bring in thither within the vail the ark of the testimony: and
+the vail shall divide unto you between the holy place and the most
+holy.
+
+26:34 And thou shalt put the mercy seat upon the ark of the testimony
+in the most holy place.
+
+26:35 And thou shalt set the table without the vail, and the
+candlestick over against the table on the side of the tabernacle
+toward the south: and thou shalt put the table on the north side.
+
+26:36 And thou shalt make an hanging for the door of the tent, of
+blue, and purple, and scarlet, and fine twined linen, wrought with
+needlework.
+
+26:37 And thou shalt make for the hanging five pillars of shittim
+wood, and overlay them with gold, and their hooks shall be of gold:
+and thou shalt cast five sockets of brass for them.
+
+27:1 And thou shalt make an altar of shittim wood, five cubits long,
+and five cubits broad; the altar shall be foursquare: and the height
+thereof shall be three cubits.
+
+27:2 And thou shalt make the horns of it upon the four corners
+thereof: his horns shall be of the same: and thou shalt overlay it
+with brass.
+
+27:3 And thou shalt make his pans to receive his ashes, and his
+shovels, and his basons, and his fleshhooks, and his firepans: all the
+vessels thereof thou shalt make of brass.
+
+27:4 And thou shalt make for it a grate of network of brass; and upon
+the net shalt thou make four brasen rings in the four corners thereof.
+
+27:5 And thou shalt put it under the compass of the altar beneath,
+that the net may be even to the midst of the altar.
+
+27:6 And thou shalt make staves for the altar, staves of shittim wood,
+and overlay them with brass.
+
+27:7 And the staves shall be put into the rings, and the staves shall
+be upon the two sides of the altar, to bear it.
+
+27:8 Hollow with boards shalt thou make it: as it was shewed thee in
+the mount, so shall they make it.
+
+27:9 And thou shalt make the court of the tabernacle: for the south
+side southward there shall be hangings for the court of fine twined
+linen of an hundred cubits long for one side: 27:10 And the twenty
+pillars thereof and their twenty sockets shall be of brass; the hooks
+of the pillars and their fillets shall be of silver.
+
+27:11 And likewise for the north side in length there shall be
+hangings of an hundred cubits long, and his twenty pillars and their
+twenty sockets of brass; the hooks of the pillars and their fillets of
+silver.
+
+27:12 And for the breadth of the court on the west side shall be
+hangings of fifty cubits: their pillars ten, and their sockets ten.
+
+27:13 And the breadth of the court on the east side eastward shall be
+fifty cubits.
+
+27:14 The hangings of one side of the gate shall be fifteen cubits:
+their pillars three, and their sockets three.
+
+27:15 And on the other side shall be hangings fifteen cubits: their
+pillars three, and their sockets three.
+
+27:16 And for the gate of the court shall be an hanging of twenty
+cubits, of blue, and purple, and scarlet, and fine twined linen,
+wrought with needlework: and their pillars shall be four, and their
+sockets four.
+
+27:17 All the pillars round about the court shall be filleted with
+silver; their hooks shall be of silver, and their sockets of brass.
+
+27:18 The length of the court shall be an hundred cubits, and the
+breadth fifty every where, and the height five cubits of fine twined
+linen, and their sockets of brass.
+
+27:19 All the vessels of the tabernacle in all the service thereof,
+and all the pins thereof, and all the pins of the court, shall be of
+brass.
+
+27:20 And thou shalt command the children of Israel, that they bring
+thee pure oil olive beaten for the light, to cause the lamp to burn
+always.
+
+27:21 In the tabernacle of the congregation without the vail, which is
+before the testimony, Aaron and his sons shall order it from evening
+to morning before the LORD: it shall be a statute for ever unto their
+generations on the behalf of the children of Israel.
+
+28:1 And take thou unto thee Aaron thy brother, and his sons with him,
+from among the children of Israel, that he may minister unto me in the
+priest's office, even Aaron, Nadab and Abihu, Eleazar and Ithamar,
+Aaron's sons.
+
+28:2 And thou shalt make holy garments for Aaron thy brother for glory
+and for beauty.
+
+28:3 And thou shalt speak unto all that are wise hearted, whom I have
+filled with the spirit of wisdom, that they may make Aaron's garments
+to consecrate him, that he may minister unto me in the priest's
+office.
+
+28:4 And these are the garments which they shall make; a breastplate,
+and an ephod, and a robe, and a broidered coat, a mitre, and a girdle:
+and they shall make holy garments for Aaron thy brother, and his sons,
+that he may minister unto me in the priest's office.
+
+28:5 And they shall take gold, and blue, and purple, and scarlet, and
+fine linen.
+
+28:6 And they shall make the ephod of gold, of blue, and of purple, of
+scarlet, and fine twined linen, with cunning work.
+
+28:7 It shall have the two shoulderpieces thereof joined at the two
+edges thereof; and so it shall be joined together.
+
+28:8 And the curious girdle of the ephod, which is upon it, shall be
+of the same, according to the work thereof; even of gold, of blue, and
+purple, and scarlet, and fine twined linen.
+
+28:9 And thou shalt take two onyx stones, and grave on them the names
+of the children of Israel: 28:10 Six of their names on one stone, and
+the other six names of the rest on the other stone, according to their
+birth.
+
+28:11 With the work of an engraver in stone, like the engravings of a
+signet, shalt thou engrave the two stones with the names of the
+children of Israel: thou shalt make them to be set in ouches of gold.
+
+28:12 And thou shalt put the two stones upon the shoulders of the
+ephod for stones of memorial unto the children of Israel: and Aaron
+shall bear their names before the LORD upon his two shoulders for a
+memorial.
+
+28:13 And thou shalt make ouches of gold; 28:14 And two chains of pure
+gold at the ends; of wreathen work shalt thou make them, and fasten
+the wreathen chains to the ouches.
+
+28:15 And thou shalt make the breastplate of judgment with cunning
+work; after the work of the ephod thou shalt make it; of gold, of
+blue, and of purple, and of scarlet, and of fine twined linen, shalt
+thou make it.
+
+28:16 Foursquare it shall be being doubled; a span shall be the length
+thereof, and a span shall be the breadth thereof.
+
+28:17 And thou shalt set in it settings of stones, even four rows of
+stones: the first row shall be a sardius, a topaz, and a carbuncle:
+this shall be the first row.
+
+28:18 And the second row shall be an emerald, a sapphire, and a
+diamond.
+
+28:19 And the third row a ligure, an agate, and an amethyst.
+
+28:20 And the fourth row a beryl, and an onyx, and a jasper: they
+shall be set in gold in their inclosings.
+
+28:21 And the stones shall be with the names of the children of
+Israel, twelve, according to their names, like the engravings of a
+signet; every one with his name shall they be according to the twelve
+tribes.
+
+28:22 And thou shalt make upon the breastplate chains at the ends of
+wreathen work of pure gold.
+
+28:23 And thou shalt make upon the breastplate two rings of gold, and
+shalt put the two rings on the two ends of the breastplate.
+
+28:24 And thou shalt put the two wreathen chains of gold in the two
+rings which are on the ends of the breastplate.
+
+28:25 And the other two ends of the two wreathen chains thou shalt
+fasten in the two ouches, and put them on the shoulderpieces of the
+ephod before it.
+
+28:26 And thou shalt make two rings of gold, and thou shalt put them
+upon the two ends of the breastplate in the border thereof, which is
+in the side of the ephod inward.
+
+28:27 And two other rings of gold thou shalt make, and shalt put them
+on the two sides of the ephod underneath, toward the forepart thereof,
+over against the other coupling thereof, above the curious girdle of
+the ephod.
+
+28:28 And they shall bind the breastplate by the rings thereof unto
+the rings of the ephod with a lace of blue, that it may be above the
+curious girdle of the ephod, and that the breastplate be not loosed
+from the ephod.
+
+28:29 And Aaron shall bear the names of the children of Israel in the
+breastplate of judgment upon his heart, when he goeth in unto the holy
+place, for a memorial before the LORD continually.
+
+28:30 And thou shalt put in the breastplate of judgment the Urim and
+the Thummim; and they shall be upon Aaron's heart, when he goeth in
+before the LORD: and Aaron shall bear the judgment of the children of
+Israel upon his heart before the LORD continually.
+
+28:31 And thou shalt make the robe of the ephod all of blue.
+
+28:32 And there shall be an hole in the top of it, in the midst
+thereof: it shall have a binding of woven work round about the hole of
+it, as it were the hole of an habergeon, that it be not rent.
+
+28:33 And beneath upon the hem of it thou shalt make pomegranates of
+blue, and of purple, and of scarlet, round about the hem thereof; and
+bells of gold between them round about: 28:34 A golden bell and a
+pomegranate, a golden bell and a pomegranate, upon the hem of the robe
+round about.
+
+28:35 And it shall be upon Aaron to minister: and his sound shall be
+heard when he goeth in unto the holy place before the LORD, and when
+he cometh out, that he die not.
+
+28:36 And thou shalt make a plate of pure gold, and grave upon it,
+like the engravings of a signet, HOLINESS TO THE LORD.
+
+28:37 And thou shalt put it on a blue lace, that it may be upon the
+mitre; upon the forefront of the mitre it shall be.
+
+28:38 And it shall be upon Aaron's forehead, that Aaron may bear the
+iniquity of the holy things, which the children of Israel shall hallow
+in all their holy gifts; and it shall be always upon his forehead,
+that they may be accepted before the LORD.
+
+28:39 And thou shalt embroider the coat of fine linen, and thou shalt
+make the mitre of fine linen, and thou shalt make the girdle of
+needlework.
+
+28:40 And for Aaron's sons thou shalt make coats, and thou shalt make
+for them girdles, and bonnets shalt thou make for them, for glory and
+for beauty.
+
+28:41 And thou shalt put them upon Aaron thy brother, and his sons
+with him; and shalt anoint them, and consecrate them, and sanctify
+them, that they may minister unto me in the priest's office.
+
+28:42 And thou shalt make them linen breeches to cover their
+nakedness; from the loins even unto the thighs they shall reach: 28:43
+And they shall be upon Aaron, and upon his sons, when they come in
+unto the tabernacle of the congregation, or when they come near unto
+the altar to minister in the holy place; that they bear not iniquity,
+and die: it shall be a statute for ever unto him and his seed after
+him.
+
+29:1 And this is the thing that thou shalt do unto them to hallow
+them, to minister unto me in the priest's office: Take one young
+bullock, and two rams without blemish, 29:2 And unleavened bread, and
+cakes unleavened tempered with oil, and wafers unleavened anointed
+with oil: of wheaten flour shalt thou make them.
+
+29:3 And thou shalt put them into one basket, and bring them in the
+basket, with the bullock and the two rams.
+
+29:4 And Aaron and his sons thou shalt bring unto the door of the
+tabernacle of the congregation, and shalt wash them with water.
+
+29:5 And thou shalt take the garments, and put upon Aaron the coat,
+and the robe of the ephod, and the ephod, and the breastplate, and
+gird him with the curious girdle of the ephod: 29:6 And thou shalt put
+the mitre upon his head, and put the holy crown upon the mitre.
+
+29:7 Then shalt thou take the anointing oil, and pour it upon his
+head, and anoint him.
+
+29:8 And thou shalt bring his sons, and put coats upon them.
+
+29:9 And thou shalt gird them with girdles, Aaron and his sons, and
+put the bonnets on them: and the priest's office shall be theirs for a
+perpetual statute: and thou shalt consecrate Aaron and his sons.
+
+29:10 And thou shalt cause a bullock to be brought before the
+tabernacle of the congregation: and Aaron and his sons shall put their
+hands upon the head of the bullock.
+
+29:11 And thou shalt kill the bullock before the LORD, by the door of
+the tabernacle of the congregation.
+
+29:12 And thou shalt take of the blood of the bullock, and put it upon
+the horns of the altar with thy finger, and pour all the blood beside
+the bottom of the altar.
+
+29:13 And thou shalt take all the fat that covereth the inwards, and
+the caul that is above the liver, and the two kidneys, and the fat
+that is upon them, and burn them upon the altar.
+
+29:14 But the flesh of the bullock, and his skin, and his dung, shalt
+thou burn with fire without the camp: it is a sin offering.
+
+29:15 Thou shalt also take one ram; and Aaron and his sons shall put
+their hands upon the head of the ram.
+
+29:16 And thou shalt slay the ram, and thou shalt take his blood, and
+sprinkle it round about upon the altar.
+
+29:17 And thou shalt cut the ram in pieces, and wash the inwards of
+him, and his legs, and put them unto his pieces, and unto his head.
+
+29:18 And thou shalt burn the whole ram upon the altar: it is a burnt
+offering unto the LORD: it is a sweet savour, an offering made by fire
+unto the LORD.
+
+29:19 And thou shalt take the other ram; and Aaron and his sons shall
+put their hands upon the head of the ram.
+
+29:20 Then shalt thou kill the ram, and take of his blood, and put it
+upon the tip of the right ear of Aaron, and upon the tip of the right
+ear of his sons, and upon the thumb of their right hand, and upon the
+great toe of their right foot, and sprinkle the blood upon the altar
+round about.
+
+29:21 And thou shalt take of the blood that is upon the altar, and of
+the anointing oil, and sprinkle it upon Aaron, and upon his garments,
+and upon his sons, and upon the garments of his sons with him: and he
+shall be hallowed, and his garments, and his sons, and his sons'
+garments with him.
+
+29:22 Also thou shalt take of the ram the fat and the rump, and the
+fat that covereth the inwards, and the caul above the liver, and the
+two kidneys, and the fat that is upon them, and the right shoulder;
+for it is a ram of consecration: 29:23 And one loaf of bread, and one
+cake of oiled bread, and one wafer out of the basket of the unleavened
+bread that is before the LORD: 29:24 And thou shalt put all in the
+hands of Aaron, and in the hands of his sons; and shalt wave them for
+a wave offering before the LORD.
+
+29:25 And thou shalt receive them of their hands, and burn them upon
+the altar for a burnt offering, for a sweet savour before the LORD: it
+is an offering made by fire unto the LORD.
+
+29:26 And thou shalt take the breast of the ram of Aaron's
+consecration, and wave it for a wave offering before the LORD: and it
+shall be thy part.
+
+29:27 And thou shalt sanctify the breast of the wave offering, and the
+shoulder of the heave offering, which is waved, and which is heaved
+up, of the ram of the consecration, even of that which is for Aaron,
+and of that which is for his sons: 29:28 And it shall be Aaron's and
+his sons' by a statute for ever from the children of Israel: for it is
+an heave offering: and it shall be an heave offering from the children
+of Israel of the sacrifice of their peace offerings, even their heave
+offering unto the LORD.
+
+29:29 And the holy garments of Aaron shall be his sons' after him, to
+be anointed therein, and to be consecrated in them.
+
+29:30 And that son that is priest in his stead shall put them on seven
+days, when he cometh into the tabernacle of the congregation to
+minister in the holy place.
+
+29:31 And thou shalt take the ram of the consecration, and seethe his
+flesh in the holy place.
+
+29:32 And Aaron and his sons shall eat the flesh of the ram, and the
+bread that is in the basket by the door of the tabernacle of the
+congregation.
+
+29:33 And they shall eat those things wherewith the atonement was
+made, to consecrate and to sanctify them: but a stranger shall not eat
+thereof, because they are holy.
+
+29:34 And if ought of the flesh of the consecrations, or of the bread,
+remain unto the morning, then thou shalt burn the remainder with fire:
+it shall not be eaten, because it is holy.
+
+29:35 And thus shalt thou do unto Aaron, and to his sons, according to
+all things which I have commanded thee: seven days shalt thou
+consecrate them.
+
+29:36 And thou shalt offer every day a bullock for a sin offering for
+atonement: and thou shalt cleanse the altar, when thou hast made an
+atonement for it, and thou shalt anoint it, to sanctify it.
+
+29:37 Seven days thou shalt make an atonement for the altar, and
+sanctify it; and it shall be an altar most holy: whatsoever toucheth
+the altar shall be holy.
+
+29:38 Now this is that which thou shalt offer upon the altar; two
+lambs of the first year day by day continually.
+
+29:39 The one lamb thou shalt offer in the morning; and the other lamb
+thou shalt offer at even: 29:40 And with the one lamb a tenth deal of
+flour mingled with the fourth part of an hin of beaten oil; and the
+fourth part of an hin of wine for a drink offering.
+
+29:41 And the other lamb thou shalt offer at even, and shalt do
+thereto according to the meat offering of the morning, and according
+to the drink offering thereof, for a sweet savour, an offering made by
+fire unto the LORD.
+
+29:42 This shall be a continual burnt offering throughout your
+generations at the door of the tabernacle of the congregation before
+the LORD: where I will meet you, to speak there unto thee.
+
+29:43 And there I will meet with the children of Israel, and the
+tabernacle shall be sanctified by my glory.
+
+29:44 And I will sanctify the tabernacle of the congregation, and the
+altar: I will sanctify also both Aaron and his sons, to minister to me
+in the priest's office.
+
+29:45 And I will dwell among the children of Israel, and will be their
+God.
+
+29:46 And they shall know that I am the LORD their God, that brought
+them forth out of the land of Egypt, that I may dwell among them: I am
+the LORD their God.
+
+30:1 And thou shalt make an altar to burn incense upon: of shittim
+wood shalt thou make it.
+
+30:2 A cubit shall be the length thereof, and a cubit the breadth
+thereof; foursquare shall it be: and two cubits shall be the height
+thereof: the horns thereof shall be of the same.
+
+30:3 And thou shalt overlay it with pure gold, the top thereof, and
+the sides thereof round about, and the horns thereof; and thou shalt
+make unto it a crown of gold round about.
+
+30:4 And two golden rings shalt thou make to it under the crown of it,
+by the two corners thereof, upon the two sides of it shalt thou make
+it; and they shall be for places for the staves to bear it withal.
+
+30:5 And thou shalt make the staves of shittim wood, and overlay them
+with gold.
+
+30:6 And thou shalt put it before the vail that is by the ark of the
+testimony, before the mercy seat that is over the testimony, where I
+will meet with thee.
+
+30:7 And Aaron shall burn thereon sweet incense every morning: when he
+dresseth the lamps, he shall burn incense upon it.
+
+30:8 And when Aaron lighteth the lamps at even, he shall burn incense
+upon it, a perpetual incense before the LORD throughout your
+generations.
+
+30:9 Ye shall offer no strange incense thereon, nor burnt sacrifice,
+nor meat offering; neither shall ye pour drink offering thereon.
+
+30:10 And Aaron shall make an atonement upon the horns of it once in a
+year with the blood of the sin offering of atonements: once in the
+year shall he make atonement upon it throughout your generations: it
+is most holy unto the LORD.
+
+30:11 And the LORD spake unto Moses, saying, 30:12 When thou takest
+the sum of the children of Israel after their number, then shall they
+give every man a ransom for his soul unto the LORD, when thou
+numberest them; that there be no plague among them, when thou
+numberest them.
+
+30:13 This they shall give, every one that passeth among them that are
+numbered, half a shekel after the shekel of the sanctuary: (a shekel
+is twenty gerahs:) an half shekel shall be the offering of the LORD.
+
+30:14 Every one that passeth among them that are numbered, from twenty
+years old and above, shall give an offering unto the LORD.
+
+30:15 The rich shall not give more, and the poor shall not give less
+than half a shekel, when they give an offering unto the LORD, to make
+an atonement for your souls.
+
+30:16 And thou shalt take the atonement money of the children of
+Israel, and shalt appoint it for the service of the tabernacle of the
+congregation; that it may be a memorial unto the children of Israel
+before the LORD, to make an atonement for your souls.
+
+30:17 And the LORD spake unto Moses, saying, 30:18 Thou shalt also
+make a laver of brass, and his foot also of brass, to wash withal: and
+thou shalt put it between the tabernacle of the congregation and the
+altar, and thou shalt put water therein.
+
+30:19 For Aaron and his sons shall wash their hands and their feet
+thereat: 30:20 When they go into the tabernacle of the congregation,
+they shall wash with water, that they die not; or when they come near
+to the altar to minister, to burn offering made by fire unto the LORD:
+30:21 So they shall wash their hands and their feet, that they die
+not: and it shall be a statute for ever to them, even to him and to
+his seed throughout their generations.
+
+30:22 Moreover the LORD spake unto Moses, saying, 30:23 Take thou also
+unto thee principal spices, of pure myrrh five hundred shekels, and of
+sweet cinnamon half so much, even two hundred and fifty shekels, and
+of sweet calamus two hundred and fifty shekels, 30:24 And of cassia
+five hundred shekels, after the shekel of the sanctuary, and of oil
+olive an hin: 30:25 And thou shalt make it an oil of holy ointment, an
+ointment compound after the art of the apothecary: it shall be an holy
+anointing oil.
+
+30:26 And thou shalt anoint the tabernacle of the congregation
+therewith, and the ark of the testimony, 30:27 And the table and all
+his vessels, and the candlestick and his vessels, and the altar of
+incense, 30:28 And the altar of burnt offering with all his vessels,
+and the laver and his foot.
+
+30:29 And thou shalt sanctify them, that they may be most holy:
+whatsoever toucheth them shall be holy.
+
+30:30 And thou shalt anoint Aaron and his sons, and consecrate them,
+that they may minister unto me in the priest's office.
+
+30:31 And thou shalt speak unto the children of Israel, saying, This
+shall be an holy anointing oil unto me throughout your generations.
+
+30:32 Upon man's flesh shall it not be poured, neither shall ye make
+any other like it, after the composition of it: it is holy, and it
+shall be holy unto you.
+
+30:33 Whosoever compoundeth any like it, or whosoever putteth any of
+it upon a stranger, shall even be cut off from his people.
+
+30:34 And the LORD said unto Moses, Take unto thee sweet spices,
+stacte, and onycha, and galbanum; these sweet spices with pure
+frankincense: of each shall there be a like weight: 30:35 And thou
+shalt make it a perfume, a confection after the art of the apothecary,
+tempered together, pure and holy: 30:36 And thou shalt beat some of it
+very small, and put of it before the testimony in the tabernacle of
+the congregation, where I will meet with thee: it shall be unto you
+most holy.
+
+30:37 And as for the perfume which thou shalt make, ye shall not make
+to yourselves according to the composition thereof: it shall be unto
+thee holy for the LORD.
+
+30:38 Whosoever shall make like unto that, to smell thereto, shall
+even be cut off from his people.
+
+31:1 And the LORD spake unto Moses, saying, 31:2 See, I have called by
+name Bezaleel the son of Uri, the son of Hur, of the tribe of Judah:
+31:3 And I have filled him with the spirit of God, in wisdom, and in
+understanding, and in knowledge, and in all manner of workmanship,
+31:4 To devise cunning works, to work in gold, and in silver, and in
+brass, 31:5 And in cutting of stones, to set them, and in carving of
+timber, to work in all manner of workmanship.
+
+31:6 And I, behold, I have given with him Aholiab, the son of
+Ahisamach, of the tribe of Dan: and in the hearts of all that are wise
+hearted I have put wisdom, that they may make all that I have
+commanded thee; 31:7 The tabernacle of the congregation, and the ark
+of the testimony, and the mercy seat that is thereupon, and all the
+furniture of the tabernacle, 31:8 And the table and his furniture, and
+the pure candlestick with all his furniture, and the altar of incense,
+31:9 And the altar of burnt offering with all his furniture, and the
+laver and his foot, 31:10 And the cloths of service, and the holy
+garments for Aaron the priest, and the garments of his sons, to
+minister in the priest's office, 31:11 And the anointing oil, and
+sweet incense for the holy place: according to all that I have
+commanded thee shall they do.
+
+31:12 And the LORD spake unto Moses, saying, 31:13 Speak thou also
+unto the children of Israel, saying, Verily my sabbaths ye shall keep:
+for it is a sign between me and you throughout your generations; that
+ye may know that I am the LORD that doth sanctify you.
+
+31:14 Ye shall keep the sabbath therefore; for it is holy unto you:
+every one that defileth it shall surely be put to death: for whosoever
+doeth any work therein, that soul shall be cut off from among his
+people.
+
+31:15 Six days may work be done; but in the seventh is the sabbath of
+rest, holy to the LORD: whosoever doeth any work in the sabbath day,
+he shall surely be put to death.
+
+31:16 Wherefore the children of Israel shall keep the sabbath, to
+observe the sabbath throughout their generations, for a perpetual
+covenant.
+
+31:17 It is a sign between me and the children of Israel for ever: for
+in six days the LORD made heaven and earth, and on the seventh day he
+rested, and was refreshed.
+
+31:18 And he gave unto Moses, when he had made an end of communing
+with him upon mount Sinai, two tables of testimony, tables of stone,
+written with the finger of God.
+
+32:1 And when the people saw that Moses delayed to come down out of
+the mount, the people gathered themselves together unto Aaron, and
+said unto him, Up, make us gods, which shall go before us; for as for
+this Moses, the man that brought us up out of the land of Egypt, we
+wot not what is become of him.
+
+32:2 And Aaron said unto them, Break off the golden earrings, which
+are in the ears of your wives, of your sons, and of your daughters,
+and bring them unto me.
+
+32:3 And all the people brake off the golden earrings which were in
+their ears, and brought them unto Aaron.
+
+32:4 And he received them at their hand, and fashioned it with a
+graving tool, after he had made it a molten calf: and they said, These
+be thy gods, O Israel, which brought thee up out of the land of Egypt.
+
+32:5 And when Aaron saw it, he built an altar before it; and Aaron
+made proclamation, and said, To morrow is a feast to the LORD.
+
+32:6 And they rose up early on the morrow, and offered burnt
+offerings, and brought peace offerings; and the people sat down to eat
+and to drink, and rose up to play.
+
+32:7 And the LORD said unto Moses, Go, get thee down; for thy people,
+which thou broughtest out of the land of Egypt, have corrupted
+themselves: 32:8 They have turned aside quickly out of the way which I
+commanded them: they have made them a molten calf, and have worshipped
+it, and have sacrificed thereunto, and said, These be thy gods, O
+Israel, which have brought thee up out of the land of Egypt.
+
+32:9 And the LORD said unto Moses, I have seen this people, and,
+behold, it is a stiffnecked people: 32:10 Now therefore let me alone,
+that my wrath may wax hot against them, and that I may consume them:
+and I will make of thee a great nation.
+
+32:11 And Moses besought the LORD his God, and said, LORD, why doth
+thy wrath wax hot against thy people, which thou hast brought forth
+out of the land of Egypt with great power, and with a mighty hand?
+32:12 Wherefore should the Egyptians speak, and say, For mischief did
+he bring them out, to slay them in the mountains, and to consume them
+from the face of the earth? Turn from thy fierce wrath, and repent of
+this evil against thy people.
+
+32:13 Remember Abraham, Isaac, and Israel, thy servants, to whom thou
+swarest by thine own self, and saidst unto them, I will multiply your
+seed as the stars of heaven, and all this land that I have spoken of
+will I give unto your seed, and they shall inherit it for ever.
+
+32:14 And the LORD repented of the evil which he thought to do unto
+his people.
+
+32:15 And Moses turned, and went down from the mount, and the two
+tables of the testimony were in his hand: the tables were written on
+both their sides; on the one side and on the other were they written.
+
+32:16 And the tables were the work of God, and the writing was the
+writing of God, graven upon the tables.
+
+32:17 And when Joshua heard the noise of the people as they shouted,
+he said unto Moses, There is a noise of war in the camp.
+
+32:18 And he said, It is not the voice of them that shout for mastery,
+neither is it the voice of them that cry for being overcome: but the
+noise of them that sing do I hear.
+
+32:19 And it came to pass, as soon as he came nigh unto the camp, that
+he saw the calf, and the dancing: and Moses' anger waxed hot, and he
+cast the tables out of his hands, and brake them beneath the mount.
+
+32:20 And he took the calf which they had made, and burnt it in the
+fire, and ground it to powder, and strawed it upon the water, and made
+the children of Israel drink of it.
+
+32:21 And Moses said unto Aaron, What did this people unto thee, that
+thou hast brought so great a sin upon them? 32:22 And Aaron said, Let
+not the anger of my lord wax hot: thou knowest the people, that they
+are set on mischief.
+
+32:23 For they said unto me, Make us gods, which shall go before us:
+for as for this Moses, the man that brought us up out of the land of
+Egypt, we wot not what is become of him.
+
+32:24 And I said unto them, Whosoever hath any gold, let them break it
+off. So they gave it me: then I cast it into the fire, and there came
+out this calf.
+
+32:25 And when Moses saw that the people were naked; (for Aaron had
+made them naked unto their shame among their enemies:) 32:26 Then
+Moses stood in the gate of the camp, and said, Who is on the LORD's
+side? let him come unto me. And all the sons of Levi gathered
+themselves together unto him.
+
+32:27 And he said unto them, Thus saith the LORD God of Israel, Put
+every man his sword by his side, and go in and out from gate to gate
+throughout the camp, and slay every man his brother, and every man his
+companion, and every man his neighbour.
+
+32:28 And the children of Levi did according to the word of Moses: and
+there fell of the people that day about three thousand men.
+
+32:29 For Moses had said, Consecrate yourselves today to the LORD,
+even every man upon his son, and upon his brother; that he may bestow
+upon you a blessing this day.
+
+32:30 And it came to pass on the morrow, that Moses said unto the
+people, Ye have sinned a great sin: and now I will go up unto the
+LORD; peradventure I shall make an atonement for your sin.
+
+32:31 And Moses returned unto the LORD, and said, Oh, this people have
+sinned a great sin, and have made them gods of gold.
+
+32:32 Yet now, if thou wilt forgive their sin--; and if not, blot me,
+I pray thee, out of thy book which thou hast written.
+
+32:33 And the LORD said unto Moses, Whosoever hath sinned against me,
+him will I blot out of my book.
+
+32:34 Therefore now go, lead the people unto the place of which I have
+spoken unto thee: behold, mine Angel shall go before thee:
+nevertheless in the day when I visit I will visit their sin upon them.
+
+32:35 And the LORD plagued the people, because they made the calf,
+which Aaron made.
+
+33:1 And the LORD said unto Moses, Depart, and go up hence, thou and
+the people which thou hast brought up out of the land of Egypt, unto
+the land which I sware unto Abraham, to Isaac, and to Jacob, saying,
+Unto thy seed will I give it: 33:2 And I will send an angel before
+thee; and I will drive out the Canaanite, the Amorite, and the
+Hittite, and the Perizzite, the Hivite, and the Jebusite: 33:3 Unto a
+land flowing with milk and honey: for I will not go up in the midst of
+thee; for thou art a stiffnecked people: lest I consume thee in the
+way.
+
+33:4 And when the people heard these evil tidings, they mourned: and
+no man did put on him his ornaments.
+
+33:5 For the LORD had said unto Moses, Say unto the children of
+Israel, Ye are a stiffnecked people: I will come up into the midst of
+thee in a moment, and consume thee: therefore now put off thy
+ornaments from thee, that I may know what to do unto thee.
+
+33:6 And the children of Israel stripped themselves of their ornaments
+by the mount Horeb.
+
+33:7 And Moses took the tabernacle, and pitched it without the camp,
+afar off from the camp, and called it the Tabernacle of the
+congregation. And it came to pass, that every one which sought the
+LORD went out unto the tabernacle of the congregation, which was
+without the camp.
+
+33:8 And it came to pass, when Moses went out unto the tabernacle,
+that all the people rose up, and stood every man at his tent door, and
+looked after Moses, until he was gone into the tabernacle.
+
+33:9 And it came to pass, as Moses entered into the tabernacle, the
+cloudy pillar descended, and stood at the door of the tabernacle, and
+the Lord talked with Moses.
+
+33:10 And all the people saw the cloudy pillar stand at the tabernacle
+door: and all the people rose up and worshipped, every man in his tent
+door.
+
+33:11 And the LORD spake unto Moses face to face, as a man speaketh
+unto his friend. And he turned again into the camp: but his servant
+Joshua, the son of Nun, a young man, departed not out of the
+tabernacle.
+
+33:12 And Moses said unto the LORD, See, thou sayest unto me, Bring up
+this people: and thou hast not let me know whom thou wilt send with
+me. Yet thou hast said, I know thee by name, and thou hast also found
+grace in my sight.
+
+33:13 Now therefore, I pray thee, if I have found grace in thy sight,
+shew me now thy way, that I may know thee, that I may find grace in
+thy sight: and consider that this nation is thy people.
+
+33:14 And he said, My presence shall go with thee, and I will give
+thee rest.
+
+33:15 And he said unto him, If thy presence go not with me, carry us
+not up hence.
+
+33:16 For wherein shall it be known here that I and thy people have
+found grace in thy sight? is it not in that thou goest with us? so
+shall we be separated, I and thy people, from all the people that are
+upon the face of the earth.
+
+33:17 And the LORD said unto Moses, I will do this thing also that
+thou hast spoken: for thou hast found grace in my sight, and I know
+thee by name.
+
+33:18 And he said, I beseech thee, shew me thy glory.
+
+33:19 And he said, I will make all my goodness pass before thee, and I
+will proclaim the name of the LORD before thee; and will be gracious
+to whom I will be gracious, and will shew mercy on whom I will shew
+mercy.
+
+33:20 And he said, Thou canst not see my face: for there shall no man
+see me, and live.
+
+33:21 And the LORD said, Behold, there is a place by me, and thou
+shalt stand upon a rock: 33:22 And it shall come to pass, while my
+glory passeth by, that I will put thee in a clift of the rock, and
+will cover thee with my hand while I pass by: 33:23 And I will take
+away mine hand, and thou shalt see my back parts: but my face shall
+not be seen.
+
+34:1 And the LORD said unto Moses, Hew thee two tables of stone like
+unto the first: and I will write upon these tables the words that were
+in the first tables, which thou brakest.
+
+34:2 And be ready in the morning, and come up in the morning unto
+mount Sinai, and present thyself there to me in the top of the mount.
+
+34:3 And no man shall come up with thee, neither let any man be seen
+throughout all the mount; neither let the flocks nor herds feed before
+that mount.
+
+34:4 And he hewed two tables of stone like unto the first; and Moses
+rose up early in the morning, and went up unto mount Sinai, as the
+LORD had commanded him, and took in his hand the two tables of stone.
+
+34:5 And the LORD descended in the cloud, and stood with him there,
+and proclaimed the name of the LORD.
+
+34:6 And the LORD passed by before him, and proclaimed, The LORD, The
+LORD God, merciful and gracious, longsuffering, and abundant in
+goodness and truth, 34:7 Keeping mercy for thousands, forgiving
+iniquity and transgression and sin, and that will by no means clear
+the guilty; visiting the iniquity of the fathers upon the children,
+and upon the children's children, unto the third and to the fourth
+generation.
+
+34:8 And Moses made haste, and bowed his head toward the earth, and
+worshipped.
+
+34:9 And he said, If now I have found grace in thy sight, O LORD, let
+my LORD, I pray thee, go among us; for it is a stiffnecked people; and
+pardon our iniquity and our sin, and take us for thine inheritance.
+
+34:10 And he said, Behold, I make a covenant: before all thy people I
+will do marvels, such as have not been done in all the earth, nor in
+any nation: and all the people among which thou art shall see the work
+of the LORD: for it is a terrible thing that I will do with thee.
+
+34:11 Observe thou that which I command thee this day: behold, I drive
+out before thee the Amorite, and the Canaanite, and the Hittite, and
+the Perizzite, and the Hivite, and the Jebusite.
+
+34:12 Take heed to thyself, lest thou make a covenant with the
+inhabitants of the land whither thou goest, lest it be for a snare in
+the midst of thee: 34:13 But ye shall destroy their altars, break
+their images, and cut down their groves: 34:14 For thou shalt worship
+no other god: for the LORD, whose name is Jealous, is a jealous God:
+34:15 Lest thou make a covenant with the inhabitants of the land, and
+they go a whoring after their gods, and do sacrifice unto their gods,
+and one call thee, and thou eat of his sacrifice; 34:16 And thou take
+of their daughters unto thy sons, and their daughters go a whoring
+after their gods, and make thy sons go a whoring after their gods.
+
+34:17 Thou shalt make thee no molten gods.
+
+34:18 The feast of unleavened bread shalt thou keep. Seven days thou
+shalt eat unleavened bread, as I commanded thee, in the time of the
+month Abib: for in the month Abib thou camest out from Egypt.
+
+34:19 All that openeth the matrix is mine; and every firstling among
+thy cattle, whether ox or sheep, that is male.
+
+34:20 But the firstling of an ass thou shalt redeem with a lamb: and
+if thou redeem him not, then shalt thou break his neck. All the
+firstborn of thy sons thou shalt redeem. And none shall appear before
+me empty.
+
+34:21 Six days thou shalt work, but on the seventh day thou shalt
+rest: in earing time and in harvest thou shalt rest.
+
+34:22 And thou shalt observe the feast of weeks, of the firstfruits of
+wheat harvest, and the feast of ingathering at the year's end.
+
+34:23 Thrice in the year shall all your menchildren appear before the
+LORD God, the God of Israel.
+
+34:24 For I will cast out the nations before thee, and enlarge thy
+borders: neither shall any man desire thy land, when thou shalt go up
+to appear before the LORD thy God thrice in the year.
+
+34:25 Thou shalt not offer the blood of my sacrifice with leaven;
+neither shall the sacrifice of the feast of the passover be left unto
+the morning.
+
+34:26 The first of the firstfruits of thy land thou shalt bring unto
+the house of the LORD thy God. Thou shalt not seethe a kid in his
+mother's milk.
+
+34:27 And the LORD said unto Moses, Write thou these words: for after
+the tenor of these words I have made a covenant with thee and with
+Israel.
+
+34:28 And he was there with the LORD forty days and forty nights; he
+did neither eat bread, nor drink water. And he wrote upon the tables
+the words of the covenant, the ten commandments.
+
+34:29 And it came to pass, when Moses came down from mount Sinai with
+the two tables of testimony in Moses' hand, when he came down from the
+mount, that Moses wist not that the skin of his face shone while he
+talked with him.
+
+34:30 And when Aaron and all the children of Israel saw Moses, behold,
+the skin of his face shone; and they were afraid to come nigh him.
+
+34:31 And Moses called unto them; and Aaron and all the rulers of the
+congregation returned unto him: and Moses talked with them.
+
+34:32 And afterward all the children of Israel came nigh: and he gave
+them in commandment all that the LORD had spoken with him in mount
+Sinai.
+
+34:33 And till Moses had done speaking with them, he put a vail on his
+face.
+
+34:34 But when Moses went in before the LORD to speak with him, he
+took the vail off, until he came out. And he came out, and spake unto
+the children of Israel that which he was commanded.
+
+34:35 And the children of Israel saw the face of Moses, that the skin
+of Moses' face shone: and Moses put the vail upon his face again,
+until he went in to speak with him.
+
+35:1 And Moses gathered all the congregation of the children of Israel
+together, and said unto them, These are the words which the LORD hath
+commanded, that ye should do them.
+
+35:2 Six days shall work be done, but on the seventh day there shall
+be to you an holy day, a sabbath of rest to the LORD: whosoever doeth
+work therein shall be put to death.
+
+35:3 Ye shall kindle no fire throughout your habitations upon the
+sabbath day.
+
+35:4 And Moses spake unto all the congregation of the children of
+Israel, saying, This is the thing which the LORD commanded, saying,
+35:5 Take ye from among you an offering unto the LORD: whosoever is of
+a willing heart, let him bring it, an offering of the LORD; gold, and
+silver, and brass, 35:6 And blue, and purple, and scarlet, and fine
+linen, and goats' hair, 35:7 And rams' skins dyed red, and badgers'
+skins, and shittim wood, 35:8 And oil for the light, and spices for
+anointing oil, and for the sweet incense, 35:9 And onyx stones, and
+stones to be set for the ephod, and for the breastplate.
+
+35:10 And every wise hearted among you shall come, and make all that
+the LORD hath commanded; 35:11 The tabernacle, his tent, and his
+covering, his taches, and his boards, his bars, his pillars, and his
+sockets, 35:12 The ark, and the staves thereof, with the mercy seat,
+and the vail of the covering, 35:13 The table, and his staves, and all
+his vessels, and the shewbread, 35:14 The candlestick also for the
+light, and his furniture, and his lamps, with the oil for the light,
+35:15 And the incense altar, and his staves, and the anointing oil,
+and the sweet incense, and the hanging for the door at the entering in
+of the tabernacle, 35:16 The altar of burnt offering, with his brasen
+grate, his staves, and all his vessels, the laver and his foot, 35:17
+The hangings of the court, his pillars, and their sockets, and the
+hanging for the door of the court, 35:18 The pins of the tabernacle,
+and the pins of the court, and their cords, 35:19 The cloths of
+service, to do service in the holy place, the holy garments for Aaron
+the priest, and the garments of his sons, to minister in the priest's
+office.
+
+35:20 And all the congregation of the children of Israel departed from
+the presence of Moses.
+
+35:21 And they came, every one whose heart stirred him up, and every
+one whom his spirit made willing, and they brought the LORD's offering
+to the work of the tabernacle of the congregation, and for all his
+service, and for the holy garments.
+
+35:22 And they came, both men and women, as many as were willing
+hearted, and brought bracelets, and earrings, and rings, and tablets,
+all jewels of gold: and every man that offered offered an offering of
+gold unto the LORD.
+
+35:23 And every man, with whom was found blue, and purple, and
+scarlet, and fine linen, and goats' hair, and red skins of rams, and
+badgers' skins, brought them.
+
+35:24 Every one that did offer an offering of silver and brass brought
+the LORD's offering: and every man, with whom was found shittim wood
+for any work of the service, brought it.
+
+35:25 And all the women that were wise hearted did spin with their
+hands, and brought that which they had spun, both of blue, and of
+purple, and of scarlet, and of fine linen.
+
+35:26 And all the women whose heart stirred them up in wisdom spun
+goats' hair.
+
+35:27 And the rulers brought onyx stones, and stones to be set, for
+the ephod, and for the breastplate; 35:28 And spice, and oil for the
+light, and for the anointing oil, and for the sweet incense.
+
+35:29 The children of Israel brought a willing offering unto the LORD,
+every man and woman, whose heart made them willing to bring for all
+manner of work, which the LORD had commanded to be made by the hand of
+Moses.
+
+35:30 And Moses said unto the children of Israel, See, the LORD hath
+called by name Bezaleel the son of Uri, the son of Hur, of the tribe
+of Judah; 35:31 And he hath filled him with the spirit of God, in
+wisdom, in understanding, and in knowledge, and in all manner of
+workmanship; 35:32 And to devise curious works, to work in gold, and
+in silver, and in brass, 35:33 And in the cutting of stones, to set
+them, and in carving of wood, to make any manner of cunning work.
+
+35:34 And he hath put in his heart that he may teach, both he, and
+Aholiab, the son of Ahisamach, of the tribe of Dan.
+
+35:35 Them hath he filled with wisdom of heart, to work all manner of
+work, of the engraver, and of the cunning workman, and of the
+embroiderer, in blue, and in purple, in scarlet, and in fine linen,
+and of the weaver, even of them that do any work, and of those that
+devise cunning work.
+
+36:1 Then wrought Bezaleel and Aholiab, and every wise hearted man, in
+whom the LORD put wisdom and understanding to know how to work all
+manner of work for the service of the sanctuary, according to all that
+the LORD had commanded.
+
+36:2 And Moses called Bezaleel and Aholiab, and every wise hearted
+man, in whose heart the LORD had put wisdom, even every one whose
+heart stirred him up to come unto the work to do it: 36:3 And they
+received of Moses all the offering, which the children of Israel had
+brought for the work of the service of the sanctuary, to make it
+withal. And they brought yet unto him free offerings every morning.
+
+36:4 And all the wise men, that wrought all the work of the sanctuary,
+came every man from his work which they made; 36:5 And they spake unto
+Moses, saying, The people bring much more than enough for the service
+of the work, which the LORD commanded to make.
+
+36:6 And Moses gave commandment, and they caused it to be proclaimed
+throughout the camp, saying, Let neither man nor woman make any more
+work for the offering of the sanctuary. So the people were restrained
+from bringing.
+
+36:7 For the stuff they had was sufficient for all the work to make
+it, and too much.
+
+36:8 And every wise hearted man among them that wrought the work of
+the tabernacle made ten curtains of fine twined linen, and blue, and
+purple, and scarlet: with cherubims of cunning work made he them.
+
+36:9 The length of one curtain was twenty and eight cubits, and the
+breadth of one curtain four cubits: the curtains were all of one size.
+
+36:10 And he coupled the five curtains one unto another: and the other
+five curtains he coupled one unto another.
+
+36:11 And he made loops of blue on the edge of one curtain from the
+selvedge in the coupling: likewise he made in the uttermost side of
+another curtain, in the coupling of the second.
+
+36:12 Fifty loops made he in one curtain, and fifty loops made he in
+the edge of the curtain which was in the coupling of the second: the
+loops held one curtain to another.
+
+36:13 And he made fifty taches of gold, and coupled the curtains one
+unto another with the taches: so it became one tabernacle.
+
+36:14 And he made curtains of goats' hair for the tent over the
+tabernacle: eleven curtains he made them.
+
+36:15 The length of one curtain was thirty cubits, and four cubits was
+the breadth of one curtain: the eleven curtains were of one size.
+
+36:16 And he coupled five curtains by themselves, and six curtains by
+themselves.
+
+36:17 And he made fifty loops upon the uttermost edge of the curtain
+in the coupling, and fifty loops made he upon the edge of the curtain
+which coupleth the second.
+
+36:18 And he made fifty taches of brass to couple the tent together,
+that it might be one.
+
+36:19 And he made a covering for the tent of rams' skins dyed red, and
+a covering of badgers' skins above that.
+
+36:20 And he made boards for the tabernacle of shittim wood, standing
+up.
+
+36:21 The length of a board was ten cubits, and the breadth of a board
+one cubit and a half.
+
+36:22 One board had two tenons, equally distant one from another: thus
+did he make for all the boards of the tabernacle.
+
+36:23 And he made boards for the tabernacle; twenty boards for the
+south side southward: 36:24 And forty sockets of silver he made under
+the twenty boards; two sockets under one board for his two tenons, and
+two sockets under another board for his two tenons.
+
+36:25 And for the other side of the tabernacle, which is toward the
+north corner, he made twenty boards, 36:26 And their forty sockets of
+silver; two sockets under one board, and two sockets under another
+board.
+
+36:27 And for the sides of the tabernacle westward he made six boards.
+
+36:28 And two boards made he for the corners of the tabernacle in the
+two sides.
+
+36:29 And they were coupled beneath, and coupled together at the head
+thereof, to one ring: thus he did to both of them in both the corners.
+
+36:30 And there were eight boards; and their sockets were sixteen
+sockets of silver, under every board two sockets.
+
+36:31 And he made bars of shittim wood; five for the boards of the one
+side of the tabernacle, 36:32 And five bars for the boards of the
+other side of the tabernacle, and five bars for the boards of the
+tabernacle for the sides westward.
+
+36:33 And he made the middle bar to shoot through the boards from the
+one end to the other.
+
+36:34 And he overlaid the boards with gold, and made their rings of
+gold to be places for the bars, and overlaid the bars with gold.
+
+36:35 And he made a vail of blue, and purple, and scarlet, and fine
+twined linen: with cherubims made he it of cunning work.
+
+36:36 And he made thereunto four pillars of shittim wood, and overlaid
+them with gold: their hooks were of gold; and he cast for them four
+sockets of silver.
+
+36:37 And he made an hanging for the tabernacle door of blue, and
+purple, and scarlet, and fine twined linen, of needlework; 36:38 And
+the five pillars of it with their hooks: and he overlaid their
+chapiters and their fillets with gold: but their five sockets were of
+brass.
+
+37:1 And Bezaleel made the ark of shittim wood: two cubits and a half
+was the length of it, and a cubit and a half the breadth of it, and a
+cubit and a half the height of it: 37:2 And he overlaid it with pure
+gold within and without, and made a crown of gold to it round about.
+
+37:3 And he cast for it four rings of gold, to be set by the four
+corners of it; even two rings upon the one side of it, and two rings
+upon the other side of it.
+
+37:4 And he made staves of shittim wood, and overlaid them with gold.
+
+37:5 And he put the staves into the rings by the sides of the ark, to
+bear the ark.
+
+37:6 And he made the mercy seat of pure gold: two cubits and a half
+was the length thereof, and one cubit and a half the breadth thereof.
+
+37:7 And he made two cherubims of gold, beaten out of one piece made
+he them, on the two ends of the mercy seat; 37:8 One cherub on the end
+on this side, and another cherub on the other end on that side: out of
+the mercy seat made he the cherubims on the two ends thereof.
+
+37:9 And the cherubims spread out their wings on high, and covered
+with their wings over the mercy seat, with their faces one to another;
+even to the mercy seatward were the faces of the cherubims.
+
+37:10 And he made the table of shittim wood: two cubits was the length
+thereof, and a cubit the breadth thereof, and a cubit and a half the
+height thereof: 37:11 And he overlaid it with pure gold, and made
+thereunto a crown of gold round about.
+
+37:12 Also he made thereunto a border of an handbreadth round about;
+and made a crown of gold for the border thereof round about.
+
+37:13 And he cast for it four rings of gold, and put the rings upon
+the four corners that were in the four feet thereof.
+
+37:14 Over against the border were the rings, the places for the
+staves to bear the table.
+
+37:15 And he made the staves of shittim wood, and overlaid them with
+gold, to bear the table.
+
+37:16 And he made the vessels which were upon the table, his dishes,
+and his spoons, and his bowls, and his covers to cover withal, of pure
+gold.
+
+37:17 And he made the candlestick of pure gold: of beaten work made he
+the candlestick; his shaft, and his branch, his bowls, his knops, and
+his flowers, were of the same: 37:18 And six branches going out of the
+sides thereof; three branches of the candlestick out of the one side
+thereof, and three branches of the candlestick out of the other side
+thereof: 37:19 Three bowls made after the fashion of almonds in one
+branch, a knop and a flower; and three bowls made like almonds in
+another branch, a knop and a flower: so throughout the six branches
+going out of the candlestick.
+
+37:20 And in the candlestick were four bowls made like almonds, his
+knops, and his flowers: 37:21 And a knop under two branches of the
+same, and a knop under two branches of the same, and a knop under two
+branches of the same, according to the six branches going out of it.
+
+37:22 Their knops and their branches were of the same: all of it was
+one beaten work of pure gold.
+
+37:23 And he made his seven lamps, and his snuffers, and his
+snuffdishes, of pure gold.
+
+37:24 Of a talent of pure gold made he it, and all the vessels
+thereof.
+
+37:25 And he made the incense altar of shittim wood: the length of it
+was a cubit, and the breadth of it a cubit; it was foursquare; and two
+cubits was the height of it; the horns thereof were of the same.
+
+37:26 And he overlaid it with pure gold, both the top of it, and the
+sides thereof round about, and the horns of it: also he made unto it a
+crown of gold round about.
+
+37:27 And he made two rings of gold for it under the crown thereof, by
+the two corners of it, upon the two sides thereof, to be places for
+the staves to bear it withal.
+
+37:28 And he made the staves of shittim wood, and overlaid them with
+gold.
+
+37:29 And he made the holy anointing oil, and the pure incense of
+sweet spices, according to the work of the apothecary.
+
+38:1 And he made the altar of burnt offering of shittim wood: five
+cubits was the length thereof, and five cubits the breadth thereof; it
+was foursquare; and three cubits the height thereof.
+
+38:2 And he made the horns thereof on the four corners of it; the
+horns thereof were of the same: and he overlaid it with brass.
+
+38:3 And he made all the vessels of the altar, the pots, and the
+shovels, and the basons, and the fleshhooks, and the firepans: all the
+vessels thereof made he of brass.
+
+38:4 And he made for the altar a brasen grate of network under the
+compass thereof beneath unto the midst of it.
+
+38:5 And he cast four rings for the four ends of the grate of brass,
+to be places for the staves.
+
+38:6 And he made the staves of shittim wood, and overlaid them with
+brass.
+
+38:7 And he put the staves into the rings on the sides of the altar,
+to bear it withal; he made the altar hollow with boards.
+
+38:8 And he made the laver of brass, and the foot of it of brass, of
+the lookingglasses of the women assembling, which assembled at the
+door of the tabernacle of the congregation.
+
+38:9 And he made the court: on the south side southward the hangings
+of the court were of fine twined linen, an hundred cubits: 38:10 Their
+pillars were twenty, and their brasen sockets twenty; the hooks of the
+pillars and their fillets were of silver.
+
+38:11 And for the north side the hangings were an hundred cubits,
+their pillars were twenty, and their sockets of brass twenty; the
+hooks of the pillars and their fillets of silver.
+
+38:12 And for the west side were hangings of fifty cubits, their
+pillars ten, and their sockets ten; the hooks of the pillars and their
+fillets of silver.
+
+38:13 And for the east side eastward fifty cubits.
+
+38:14 The hangings of the one side of the gate were fifteen cubits;
+their pillars three, and their sockets three.
+
+38:15 And for the other side of the court gate, on this hand and that
+hand, were hangings of fifteen cubits; their pillars three, and their
+sockets three.
+
+38:16 All the hangings of the court round about were of fine twined
+linen.
+
+38:17 And the sockets for the pillars were of brass; the hooks of the
+pillars and their fillets of silver; and the overlaying of their
+chapiters of silver; and all the pillars of the court were filleted
+with silver.
+
+38:18 And the hanging for the gate of the court was needlework, of
+blue, and purple, and scarlet, and fine twined linen: and twenty
+cubits was the length, and the height in the breadth was five cubits,
+answerable to the hangings of the court.
+
+38:19 And their pillars were four, and their sockets of brass four;
+their hooks of silver, and the overlaying of their chapiters and their
+fillets of silver.
+
+38:20 And all the pins of the tabernacle, and of the court round
+about, were of brass.
+
+38:21 This is the sum of the tabernacle, even of the tabernacle of
+testimony, as it was counted, according to the commandment of Moses,
+for the service of the Levites, by the hand of Ithamar, son to Aaron
+the priest.
+
+38:22 And Bezaleel the son Uri, the son of Hur, of the tribe of Judah,
+made all that the LORD commanded Moses.
+
+38:23 And with him was Aholiab, son of Ahisamach, of the tribe of Dan,
+an engraver, and a cunning workman, and an embroiderer in blue, and in
+purple, and in scarlet, and fine linen.
+
+38:24 All the gold that was occupied for the work in all the work of
+the holy place, even the gold of the offering, was twenty and nine
+talents, and seven hundred and thirty shekels, after the shekel of the
+sanctuary.
+
+38:25 And the silver of them that were numbered of the congregation
+was an hundred talents, and a thousand seven hundred and threescore
+and fifteen shekels, after the shekel of the sanctuary: 38:26 A bekah
+for every man, that is, half a shekel, after the shekel of the
+sanctuary, for every one that went to be numbered, from twenty years
+old and upward, for six hundred thousand and three thousand and five
+hundred and fifty men.
+
+38:27 And of the hundred talents of silver were cast the sockets of
+the sanctuary, and the sockets of the vail; an hundred sockets of the
+hundred talents, a talent for a socket.
+
+38:28 And of the thousand seven hundred seventy and five shekels he
+made hooks for the pillars, and overlaid their chapiters, and filleted
+them.
+
+38:29 And the brass of the offering was seventy talents, and two
+thousand and four hundred shekels.
+
+38:30 And therewith he made the sockets to the door of the tabernacle
+of the congregation, and the brasen altar, and the brasen grate for
+it, and all the vessels of the altar, 38:31 And the sockets of the
+court round about, and the sockets of the court gate, and all the pins
+of the tabernacle, and all the pins of the court round about.
+
+39:1 And of the blue, and purple, and scarlet, they made cloths of
+service, to do service in the holy place, and made the holy garments
+for Aaron; as the LORD commanded Moses.
+
+39:2 And he made the ephod of gold, blue, and purple, and scarlet, and
+fine twined linen.
+
+39:3 And they did beat the gold into thin plates, and cut it into
+wires, to work it in the blue, and in the purple, and in the scarlet,
+and in the fine linen, with cunning work.
+
+39:4 They made shoulderpieces for it, to couple it together: by the
+two edges was it coupled together.
+
+39:5 And the curious girdle of his ephod, that was upon it, was of the
+same, according to the work thereof; of gold, blue, and purple, and
+scarlet, and fine twined linen; as the LORD commanded Moses.
+
+39:6 And they wrought onyx stones inclosed in ouches of gold, graven,
+as signets are graven, with the names of the children of Israel.
+
+39:7 And he put them on the shoulders of the ephod, that they should
+be stones for a memorial to the children of Israel; as the LORD
+commanded Moses.
+
+39:8 And he made the breastplate of cunning work, like the work of the
+ephod; of gold, blue, and purple, and scarlet, and fine twined linen.
+
+39:9 It was foursquare; they made the breastplate double: a span was
+the length thereof, and a span the breadth thereof, being doubled.
+
+39:10 And they set in it four rows of stones: the first row was a
+sardius, a topaz, and a carbuncle: this was the first row.
+
+39:11 And the second row, an emerald, a sapphire, and a diamond.
+
+39:12 And the third row, a ligure, an agate, and an amethyst.
+
+39:13 And the fourth row, a beryl, an onyx, and a jasper: they were
+inclosed in ouches of gold in their inclosings.
+
+39:14 And the stones were according to the names of the children of
+Israel, twelve, according to their names, like the engravings of a
+signet, every one with his name, according to the twelve tribes.
+
+39:15 And they made upon the breastplate chains at the ends, of
+wreathen work of pure gold.
+
+39:16 And they made two ouches of gold, and two gold rings; and put
+the two rings in the two ends of the breastplate.
+
+39:17 And they put the two wreathen chains of gold in the two rings on
+the ends of the breastplate.
+
+39:18 And the two ends of the two wreathen chains they fastened in the
+two ouches, and put them on the shoulderpieces of the ephod, before
+it.
+
+39:19 And they made two rings of gold, and put them on the two ends of
+the breastplate, upon the border of it, which was on the side of the
+ephod inward.
+
+39:20 And they made two other golden rings, and put them on the two
+sides of the ephod underneath, toward the forepart of it, over against
+the other coupling thereof, above the curious girdle of the ephod.
+
+39:21 And they did bind the breastplate by his rings unto the rings of
+the ephod with a lace of blue, that it might be above the curious
+girdle of the ephod, and that the breastplate might not be loosed from
+the ephod; as the LORD commanded Moses.
+
+39:22 And he made the robe of the ephod of woven work, all of blue.
+
+39:23 And there was an hole in the midst of the robe, as the hole of
+an habergeon, with a band round about the hole, that it should not
+rend.
+
+39:24 And they made upon the hems of the robe pomegranates of blue,
+and purple, and scarlet, and twined linen.
+
+39:25 And they made bells of pure gold, and put the bells between the
+pomegranates upon the hem of the robe, round about between the
+pomegranates; 39:26 A bell and a pomegranate, a bell and a
+pomegranate, round about the hem of the robe to minister in; as the
+LORD commanded Moses.
+
+39:27 And they made coats of fine linen of woven work for Aaron, and
+for his sons, 39:28 And a mitre of fine linen, and goodly bonnets of
+fine linen, and linen breeches of fine twined linen, 39:29 And a
+girdle of fine twined linen, and blue, and purple, and scarlet, of
+needlework; as the LORD commanded Moses.
+
+39:30 And they made the plate of the holy crown of pure gold, and
+wrote upon it a writing, like to the engravings of a signet, HOLINESS
+TO THE LORD.
+
+39:31 And they tied unto it a lace of blue, to fasten it on high upon
+the mitre; as the LORD commanded Moses.
+
+39:32 Thus was all the work of the tabernacle of the tent of the
+congregation finished: and the children of Israel did according to all
+that the LORD commanded Moses, so did they.
+
+39:33 And they brought the tabernacle unto Moses, the tent, and all
+his furniture, his taches, his boards, his bars, and his pillars, and
+his sockets, 39:34 And the covering of rams' skins dyed red, and the
+covering of badgers' skins, and the vail of the covering, 39:35 The
+ark of the testimony, and the staves thereof, and the mercy seat,
+39:36 The table, and all the vessels thereof, and the shewbread, 39:37
+The pure candlestick, with the lamps thereof, even with the lamps to
+be set in order, and all the vessels thereof, and the oil for light,
+39:38 And the golden altar, and the anointing oil, and the sweet
+incense, and the hanging for the tabernacle door, 39:39 The brasen
+altar, and his grate of brass, his staves, and all his vessels, the
+laver and his foot, 39:40 The hangings of the court, his pillars, and
+his sockets, and the hanging for the court gate, his cords, and his
+pins, and all the vessels of the service of the tabernacle, for the
+tent of the congregation, 39:41 The cloths of service to do service in
+the holy place, and the holy garments for Aaron the priest, and his
+sons' garments, to minister in the priest's office.
+
+39:42 According to all that the LORD commanded Moses, so the children
+of Israel made all the work.
+
+39:43 And Moses did look upon all the work, and, behold, they had done
+it as the LORD had commanded, even so had they done it: and Moses
+blessed them.
+
+40:1 And the LORD spake unto Moses, saying, 40:2 On the first day of
+the first month shalt thou set up the tabernacle of the tent of the
+congregation.
+
+40:3 And thou shalt put therein the ark of the testimony, and cover
+the ark with the vail.
+
+40:4 And thou shalt bring in the table, and set in order the things
+that are to be set in order upon it; and thou shalt bring in the
+candlestick, and light the lamps thereof.
+
+40:5 And thou shalt set the altar of gold for the incense before the
+ark of the testimony, and put the hanging of the door to the
+tabernacle.
+
+40:6 And thou shalt set the altar of the burnt offering before the
+door of the tabernacle of the tent of the congregation.
+
+40:7 And thou shalt set the laver between the tent of the congregation
+and the altar, and shalt put water therein.
+
+40:8 And thou shalt set up the court round about, and hang up the
+hanging at the court gate.
+
+40:9 And thou shalt take the anointing oil, and anoint the tabernacle,
+and all that is therein, and shalt hallow it, and all the vessels
+thereof: and it shall be holy.
+
+40:10 And thou shalt anoint the altar of the burnt offering, and all
+his vessels, and sanctify the altar: and it shall be an altar most
+holy.
+
+40:11 And thou shalt anoint the laver and his foot, and sanctify it.
+
+40:12 And thou shalt bring Aaron and his sons unto the door of the
+tabernacle of the congregation, and wash them with water.
+
+40:13 And thou shalt put upon Aaron the holy garments, and anoint him,
+and sanctify him; that he may minister unto me in the priest's office.
+
+40:14 And thou shalt bring his sons, and clothe them with coats: 40:15
+And thou shalt anoint them, as thou didst anoint their father, that
+they may minister unto me in the priest's office: for their anointing
+shall surely be an everlasting priesthood throughout their
+generations.
+
+40:16 Thus did Moses: according to all that the LORD commanded him, so
+did he.
+
+40:17 And it came to pass in the first month in the second year, on
+the first day of the month, that the tabernacle was reared up.
+
+40:18 And Moses reared up the tabernacle, and fastened his sockets,
+and set up the boards thereof, and put in the bars thereof, and reared
+up his pillars.
+
+40:19 And he spread abroad the tent over the tabernacle, and put the
+covering of the tent above upon it; as the LORD commanded Moses.
+
+40:20 And he took and put the testimony into the ark, and set the
+staves on the ark, and put the mercy seat above upon the ark: 40:21
+And he brought the ark into the tabernacle, and set up the vail of the
+covering, and covered the ark of the testimony; as the LORD commanded
+Moses.
+
+40:22 And he put the table in the tent of the congregation, upon the
+side of the tabernacle northward, without the vail.
+
+40:23 And he set the bread in order upon it before the LORD; as the
+LORD had commanded Moses.
+
+40:24 And he put the candlestick in the tent of the congregation, over
+against the table, on the side of the tabernacle southward.
+
+40:25 And he lighted the lamps before the LORD; as the LORD commanded
+Moses.
+
+40:26 And he put the golden altar in the tent of the congregation
+before the vail: 40:27 And he burnt sweet incense thereon; as the LORD
+commanded Moses.
+
+40:28 And he set up the hanging at the door of the tabernacle.
+
+40:29 And he put the altar of burnt offering by the door of the
+tabernacle of the tent of the congregation, and offered upon it the
+burnt offering and the meat offering; as the LORD commanded Moses.
+
+40:30 And he set the laver between the tent of the congregation and
+the altar, and put water there, to wash withal.
+
+40:31 And Moses and Aaron and his sons washed their hands and their
+feet thereat: 40:32 When they went into the tent of the congregation,
+and when they came near unto the altar, they washed; as the LORD
+commanded Moses.
+
+40:33 And he reared up the court round about the tabernacle and the
+altar, and set up the hanging of the court gate. So Moses finished the
+work.
+
+40:34 Then a cloud covered the tent of the congregation, and the glory
+of the LORD filled the tabernacle.
+
+40:35 And Moses was not able to enter into the tent of the
+congregation, because the cloud abode thereon, and the glory of the
+LORD filled the tabernacle.
+
+40:36 And when the cloud was taken up from over the tabernacle, the
+children of Israel went onward in all their journeys: 40:37 But if the
+cloud were not taken up, then they journeyed not till the day that it
+was taken up.
+
+40:38 For the cloud of the LORD was upon the tabernacle by day, and
+fire was on it by night, in the sight of all the house of Israel,
+throughout all their journeys.
+
+
+
+
+The Third Book of Moses: Called Leviticus
+
+
+1:1 And the LORD called unto Moses, and spake unto him out of the
+tabernacle of the congregation, saying, 1:2 Speak unto the children of
+Israel, and say unto them, If any man of you bring an offering unto
+the LORD, ye shall bring your offering of the cattle, even of the
+herd, and of the flock.
+
+1:3 If his offering be a burnt sacrifice of the herd, let him offer a
+male without blemish: he shall offer it of his own voluntary will at
+the door of the tabernacle of the congregation before the LORD.
+
+1:4 And he shall put his hand upon the head of the burnt offering; and
+it shall be accepted for him to make atonement for him.
+
+1:5 And he shall kill the bullock before the LORD: and the priests,
+Aaron's sons, shall bring the blood, and sprinkle the blood round
+about upon the altar that is by the door of the tabernacle of the
+congregation.
+
+1:6 And he shall flay the burnt offering, and cut it into his pieces.
+
+1:7 And the sons of Aaron the priest shall put fire upon the altar,
+and lay the wood in order upon the fire: 1:8 And the priests, Aaron's
+sons, shall lay the parts, the head, and the fat, in order upon the
+wood that is on the fire which is upon the altar: 1:9 But his inwards
+and his legs shall he wash in water: and the priest shall burn all on
+the altar, to be a burnt sacrifice, an offering made by fire, of a
+sweet savour unto the LORD.
+
+1:10 And if his offering be of the flocks, namely, of the sheep, or of
+the goats, for a burnt sacrifice; he shall bring it a male without
+blemish.
+
+1:11 And he shall kill it on the side of the altar northward before
+the LORD: and the priests, Aaron's sons, shall sprinkle his blood
+round about upon the altar.
+
+1:12 And he shall cut it into his pieces, with his head and his fat:
+and the priest shall lay them in order on the wood that is on the fire
+which is upon the altar: 1:13 But he shall wash the inwards and the
+legs with water: and the priest shall bring it all, and burn it upon
+the altar: it is a burnt sacrifice, an offering made by fire, of a
+sweet savour unto the LORD.
+
+1:14 And if the burnt sacrifice for his offering to the LORD be of
+fowls, then he shall bring his offering of turtledoves, or of young
+pigeons.
+
+1:15 And the priest shall bring it unto the altar, and wring off his
+head, and burn it on the altar; and the blood thereof shall be wrung
+out at the side of the altar: 1:16 And he shall pluck away his crop
+with his feathers, and cast it beside the altar on the east part, by
+the place of the ashes: 1:17 And he shall cleave it with the wings
+thereof, but shall not divide it asunder: and the priest shall burn it
+upon the altar, upon the wood that is upon the fire: it is a burnt
+sacrifice, an offering made by fire, of a sweet savour unto the LORD.
+
+2:1 And when any will offer a meat offering unto the LORD, his
+offering shall be of fine flour; and he shall pour oil upon it, and
+put frankincense thereon: 2:2 And he shall bring it to Aaron's sons
+the priests: and he shall take thereout his handful of the flour
+thereof, and of the oil thereof, with all the frankincense thereof;
+and the priest shall burn the memorial of it upon the altar, to be an
+offering made by fire, of a sweet savour unto the LORD: 2:3 And the
+remnant of the meat offering shall be Aaron's and his sons': it is a
+thing most holy of the offerings of the LORD made by fire.
+
+2:4 And if thou bring an oblation of a meat offering baken in the
+oven, it shall be unleavened cakes of fine flour mingled with oil, or
+unleavened wafers anointed with oil.
+
+2:5 And if thy oblation be a meat offering baken in a pan, it shall be
+of fine flour unleavened, mingled with oil.
+
+2:6 Thou shalt part it in pieces, and pour oil thereon: it is a meat
+offering.
+
+2:7 And if thy oblation be a meat offering baken in the fryingpan, it
+shall be made of fine flour with oil.
+
+2:8 And thou shalt bring the meat offering that is made of these
+things unto the LORD: and when it is presented unto the priest, he
+shall bring it unto the altar.
+
+2:9 And the priest shall take from the meat offering a memorial
+thereof, and shall burn it upon the altar: it is an offering made by
+fire, of a sweet savour unto the LORD.
+
+2:10 And that which is left of the meat offering shall be Aaron's and
+his sons': it is a thing most holy of the offerings of the LORD made
+by fire.
+
+2:11 No meat offering, which ye shall bring unto the LORD, shall be
+made with leaven: for ye shall burn no leaven, nor any honey, in any
+offering of the LORD made by fire.
+
+2:12 As for the oblation of the firstfruits, ye shall offer them unto
+the LORD: but they shall not be burnt on the altar for a sweet savour.
+
+2:13 And every oblation of thy meat offering shalt thou season with
+salt; neither shalt thou suffer the salt of the covenant of thy God to
+be lacking from thy meat offering: with all thine offerings thou shalt
+offer salt.
+
+2:14 And if thou offer a meat offering of thy firstfruits unto the
+LORD, thou shalt offer for the meat offering of thy firstfruits green
+ears of corn dried by the fire, even corn beaten out of full ears.
+
+2:15 And thou shalt put oil upon it, and lay frankincense thereon: it
+is a meat offering.
+
+2:16 And the priest shall burn the memorial of it, part of the beaten
+corn thereof, and part of the oil thereof, with all the frankincense
+thereof: it is an offering made by fire unto the LORD.
+
+3:1 And if his oblation be a sacrifice of peace offering, if he offer
+it of the herd; whether it be a male or female, he shall offer it
+without blemish before the LORD.
+
+3:2 And he shall lay his hand upon the head of his offering, and kill
+it at the door of the tabernacle of the congregation: and Aaron's sons
+the priests shall sprinkle the blood upon the altar round about.
+
+3:3 And he shall offer of the sacrifice of the peace offering an
+offering made by fire unto the LORD; the fat that covereth the
+inwards, and all the fat that is upon the inwards, 3:4 And the two
+kidneys, and the fat that is on them, which is by the flanks, and the
+caul above the liver, with the kidneys, it shall he take away.
+
+3:5 And Aaron's sons shall burn it on the altar upon the burnt
+sacrifice, which is upon the wood that is on the fire: it is an
+offering made by fire, of a sweet savour unto the LORD.
+
+3:6 And if his offering for a sacrifice of peace offering unto the
+LORD be of the flock; male or female, he shall offer it without
+blemish.
+
+3:7 If he offer a lamb for his offering, then shall he offer it before
+the LORD.
+
+3:8 And he shall lay his hand upon the head of his offering, and kill
+it before the tabernacle of the congregation: and Aaron's sons shall
+sprinkle the blood thereof round about upon the altar.
+
+3:9 And he shall offer of the sacrifice of the peace offering an
+offering made by fire unto the LORD; the fat thereof, and the whole
+rump, it shall he take off hard by the backbone; and the fat that
+covereth the inwards, and all the fat that is upon the inwards, 3:10
+And the two kidneys, and the fat that is upon them, which is by the
+flanks, and the caul above the liver, with the kidneys, it shall he
+take away.
+
+3:11 And the priest shall burn it upon the altar: it is the food of
+the offering made by fire unto the LORD.
+
+3:12 And if his offering be a goat, then he shall offer it before the
+LORD.
+
+3:13 And he shall lay his hand upon the head of it, and kill it before
+the tabernacle of the congregation: and the sons of Aaron shall
+sprinkle the blood thereof upon the altar round about.
+
+3:14 And he shall offer thereof his offering, even an offering made by
+fire unto the LORD; the fat that covereth the inwards, and all the fat
+that is upon the inwards, 3:15 And the two kidneys, and the fat that
+is upon them, which is by the flanks, and the caul above the liver,
+with the kidneys, it shall he take away.
+
+3:16 And the priest shall burn them upon the altar: it is the food of
+the offering made by fire for a sweet savour: all the fat is the
+LORD's.
+
+3:17 It shall be a perpetual statute for your generations throughout
+all your dwellings, that ye eat neither fat nor blood.
+
+4:1 And the LORD spake unto Moses, saying, 4:2 Speak unto the children
+of Israel, saying, If a soul shall sin through ignorance against any
+of the commandments of the LORD concerning things which ought not to
+be done, and shall do against any of them: 4:3 If the priest that is
+anointed do sin according to the sin of the people; then let him bring
+for his sin, which he hath sinned, a young bullock without blemish
+unto the LORD for a sin offering.
+
+4:4 And he shall bring the bullock unto the door of the tabernacle of
+the congregation before the LORD; and shall lay his hand upon the
+bullock's head, and kill the bullock before the LORD.
+
+4:5 And the priest that is anointed shall take of the bullock's blood,
+and bring it to the tabernacle of the congregation: 4:6 And the priest
+shall dip his finger in the blood, and sprinkle of the blood seven
+times before the LORD, before the vail of the sanctuary.
+
+4:7 And the priest shall put some of the blood upon the horns of the
+altar of sweet incense before the LORD, which is in the tabernacle of
+the congregation; and shall pour all the blood of the bullock at the
+bottom of the altar of the burnt offering, which is at the door of the
+tabernacle of the congregation.
+
+4:8 And he shall take off from it all the fat of the bullock for the
+sin offering; the fat that covereth the inwards, and all the fat that
+is upon the inwards, 4:9 And the two kidneys, and the fat that is upon
+them, which is by the flanks, and the caul above the liver, with the
+kidneys, it shall he take away, 4:10 As it was taken off from the
+bullock of the sacrifice of peace offerings: and the priest shall burn
+them upon the altar of the burnt offering.
+
+4:11 And the skin of the bullock, and all his flesh, with his head,
+and with his legs, and his inwards, and his dung, 4:12 Even the whole
+bullock shall he carry forth without the camp unto a clean place,
+where the ashes are poured out, and burn him on the wood with fire:
+where the ashes are poured out shall he be burnt.
+
+4:13 And if the whole congregation of Israel sin through ignorance,
+and the thing be hid from the eyes of the assembly, and they have done
+somewhat against any of the commandments of the LORD concerning things
+which should not be done, and are guilty; 4:14 When the sin, which
+they have sinned against it, is known, then the congregation shall
+offer a young bullock for the sin, and bring him before the tabernacle
+of the congregation.
+
+4:15 And the elders of the congregation shall lay their hands upon the
+head of the bullock before the LORD: and the bullock shall be killed
+before the LORD.
+
+4:16 And the priest that is anointed shall bring of the bullock's
+blood to the tabernacle of the congregation: 4:17 And the priest shall
+dip his finger in some of the blood, and sprinkle it seven times
+before the LORD, even before the vail.
+
+4:18 And he shall put some of the blood upon the horns of the altar
+which is before the LORD, that is in the tabernacle of the
+congregation, and shall pour out all the blood at the bottom of the
+altar of the burnt offering, which is at the door of the tabernacle of
+the congregation.
+
+4:19 And he shall take all his fat from him, and burn it upon the
+altar.
+
+4:20 And he shall do with the bullock as he did with the bullock for a
+sin offering, so shall he do with this: and the priest shall make an
+atonement for them, and it shall be forgiven them.
+
+4:21 And he shall carry forth the bullock without the camp, and burn
+him as he burned the first bullock: it is a sin offering for the
+congregation.
+
+4:22 When a ruler hath sinned, and done somewhat through ignorance
+against any of the commandments of the LORD his God concerning things
+which should not be done, and is guilty; 4:23 Or if his sin, wherein
+he hath sinned, come to his knowledge; he shall bring his offering, a
+kid of the goats, a male without blemish: 4:24 And he shall lay his
+hand upon the head of the goat, and kill it in the place where they
+kill the burnt offering before the LORD: it is a sin offering.
+
+4:25 And the priest shall take of the blood of the sin offering with
+his finger, and put it upon the horns of the altar of burnt offering,
+and shall pour out his blood at the bottom of the altar of burnt
+offering.
+
+4:26 And he shall burn all his fat upon the altar, as the fat of the
+sacrifice of peace offerings: and the priest shall make an atonement
+for him as concerning his sin, and it shall be forgiven him.
+
+4:27 And if any one of the common people sin through ignorance, while
+he doeth somewhat against any of the commandments of the LORD
+concerning things which ought not to be done, and be guilty; 4:28 Or
+if his sin, which he hath sinned, come to his knowledge: then he shall
+bring his offering, a kid of the goats, a female without blemish, for
+his sin which he hath sinned.
+
+4:29 And he shall lay his hand upon the head of the sin offering, and
+slay the sin offering in the place of the burnt offering.
+
+4:30 And the priest shall take of the blood thereof with his finger,
+and put it upon the horns of the altar of burnt offering, and shall
+pour out all the blood thereof at the bottom of the altar.
+
+4:31 And he shall take away all the fat thereof, as the fat is taken
+away from off the sacrifice of peace offerings; and the priest shall
+burn it upon the altar for a sweet savour unto the LORD; and the
+priest shall make an atonement for him, and it shall be forgiven him.
+
+4:32 And if he bring a lamb for a sin offering, he shall bring it a
+female without blemish.
+
+4:33 And he shall lay his hand upon the head of the sin offering, and
+slay it for a sin offering in the place where they kill the burnt
+offering.
+
+4:34 And the priest shall take of the blood of the sin offering with
+his finger, and put it upon the horns of the altar of burnt offering,
+and shall pour out all the blood thereof at the bottom of the altar:
+4:35 And he shall take away all the fat thereof, as the fat of the
+lamb is taken away from the sacrifice of the peace offerings; and the
+priest shall burn them upon the altar, according to the offerings made
+by fire unto the LORD: and the priest shall make an atonement for his
+sin that he hath committed, and it shall be forgiven him.
+
+5:1 And if a soul sin, and hear the voice of swearing, and is a
+witness, whether he hath seen or known of it; if he do not utter it,
+then he shall bear his iniquity.
+
+5:2 Or if a soul touch any unclean thing, whether it be a carcase of
+an unclean beast, or a carcase of unclean cattle, or the carcase of
+unclean creeping things, and if it be hidden from him; he also shall
+be unclean, and guilty.
+
+5:3 Or if he touch the uncleanness of man, whatsoever uncleanness it
+be that a man shall be defiled withal, and it be hid from him; when he
+knoweth of it, then he shall be guilty.
+
+5:4 Or if a soul swear, pronouncing with his lips to do evil, or to do
+good, whatsoever it be that a man shall pronounce with an oath, and it
+be hid from him; when he knoweth of it, then he shall be guilty in one
+of these.
+
+5:5 And it shall be, when he shall be guilty in one of these things,
+that he shall confess that he hath sinned in that thing: 5:6 And he
+shall bring his trespass offering unto the LORD for his sin which he
+hath sinned, a female from the flock, a lamb or a kid of the goats,
+for a sin offering; and the priest shall make an atonement for him
+concerning his sin.
+
+5:7 And if he be not able to bring a lamb, then he shall bring for his
+trespass, which he hath committed, two turtledoves, or two young
+pigeons, unto the LORD; one for a sin offering, and the other for a
+burnt offering.
+
+5:8 And he shall bring them unto the priest, who shall offer that
+which is for the sin offering first, and wring off his head from his
+neck, but shall not divide it asunder: 5:9 And he shall sprinkle of
+the blood of the sin offering upon the side of the altar; and the rest
+of the blood shall be wrung out at the bottom of the altar: it is a
+sin offering.
+
+5:10 And he shall offer the second for a burnt offering, according to
+the manner: and the priest shall make an atonement for him for his sin
+which he hath sinned, and it shall be forgiven him.
+
+5:11 But if he be not able to bring two turtledoves, or two young
+pigeons, then he that sinned shall bring for his offering the tenth
+part of an ephah of fine flour for a sin offering; he shall put no oil
+upon it, neither shall he put any frankincense thereon: for it is a
+sin offering.
+
+5:12 Then shall he bring it to the priest, and the priest shall take
+his handful of it, even a memorial thereof, and burn it on the altar,
+according to the offerings made by fire unto the LORD: it is a sin
+offering.
+
+5:13 And the priest shall make an atonement for him as touching his
+sin that he hath sinned in one of these, and it shall be forgiven him:
+and the remnant shall be the priest's, as a meat offering.
+
+5:14 And the LORD spake unto Moses, saying, 5:15 If a soul commit a
+trespass, and sin through ignorance, in the holy things of the LORD;
+then he shall bring for his trespass unto the LORD a ram without
+blemish out of the flocks, with thy estimation by shekels of silver,
+after the shekel of the sanctuary, for a trespass offering.
+
+5:16 And he shall make amends for the harm that he hath done in the
+holy thing, and shall add the fifth part thereto, and give it unto the
+priest: and the priest shall make an atonement for him with the ram of
+the trespass offering, and it shall be forgiven him.
+
+5:17 And if a soul sin, and commit any of these things which are
+forbidden to be done by the commandments of the LORD; though he wist
+it not, yet is he guilty, and shall bear his iniquity.
+
+5:18 And he shall bring a ram without blemish out of the flock, with
+thy estimation, for a trespass offering, unto the priest: and the
+priest shall make an atonement for him concerning his ignorance
+wherein he erred and wist it not, and it shall be forgiven him.
+
+5:19 It is a trespass offering: he hath certainly trespassed against
+the LORD.
+
+6:1 And the LORD spake unto Moses, saying, 6:2 If a soul sin, and
+commit a trespass against the LORD, and lie unto his neighbour in that
+which was delivered him to keep, or in fellowship, or in a thing taken
+away by violence, or hath deceived his neighbour; 6:3 Or have found
+that which was lost, and lieth concerning it, and sweareth falsely; in
+any of all these that a man doeth, sinning therein: 6:4 Then it shall
+be, because he hath sinned, and is guilty, that he shall restore that
+which he took violently away, or the thing which he hath deceitfully
+gotten, or that which was delivered him to keep, or the lost thing
+which he found, 6:5 Or all that about which he hath sworn falsely; he
+shall even restore it in the principal, and shall add the fifth part
+more thereto, and give it unto him to whom it appertaineth, in the day
+of his trespass offering.
+
+6:6 And he shall bring his trespass offering unto the LORD, a ram
+without blemish out of the flock, with thy estimation, for a trespass
+offering, unto the priest: 6:7 And the priest shall make an atonement
+for him before the LORD: and it shall be forgiven him for any thing of
+all that he hath done in trespassing therein.
+
+6:8 And the LORD spake unto Moses, saying, 6:9 Command Aaron and his
+sons, saying, This is the law of the burnt offering: It is the burnt
+offering, because of the burning upon the altar all night unto the
+morning, and the fire of the altar shall be burning in it.
+
+6:10 And the priest shall put on his linen garment, and his linen
+breeches shall he put upon his flesh, and take up the ashes which the
+fire hath consumed with the burnt offering on the altar, and he shall
+put them beside the altar.
+
+6:11 And he shall put off his garments, and put on other garments, and
+carry forth the ashes without the camp unto a clean place.
+
+6:12 And the fire upon the altar shall be burning in it; it shall not
+be put out: and the priest shall burn wood on it every morning, and
+lay the burnt offering in order upon it; and he shall burn thereon the
+fat of the peace offerings.
+
+6:13 The fire shall ever be burning upon the altar; it shall never go
+out.
+
+6:14 And this is the law of the meat offering: the sons of Aaron shall
+offer it before the LORD, before the altar.
+
+6:15 And he shall take of it his handful, of the flour of the meat
+offering, and of the oil thereof, and all the frankincense which is
+upon the meat offering, and shall burn it upon the altar for a sweet
+savour, even the memorial of it, unto the LORD.
+
+6:16 And the remainder thereof shall Aaron and his sons eat: with
+unleavened bread shall it be eaten in the holy place; in the court of
+the tabernacle of the congregation they shall eat it.
+
+6:17 It shall not be baken with leaven. I have given it unto them for
+their portion of my offerings made by fire; it is most holy, as is the
+sin offering, and as the trespass offering.
+
+6:18 All the males among the children of Aaron shall eat of it. It
+shall be a statute for ever in your generations concerning the
+offerings of the LORD made by fire: every one that toucheth them shall
+be holy.
+
+6:19 And the LORD spake unto Moses, saying, 6:20 This is the offering
+of Aaron and of his sons, which they shall offer unto the LORD in the
+day when he is anointed; the tenth part of an ephah of fine flour for
+a meat offering perpetual, half of it in the morning, and half thereof
+at night.
+
+6:21 In a pan it shall be made with oil; and when it is baken, thou
+shalt bring it in: and the baken pieces of the meat offering shalt
+thou offer for a sweet savour unto the LORD.
+
+6:22 And the priest of his sons that is anointed in his stead shall
+offer it: it is a statute for ever unto the LORD; it shall be wholly
+burnt.
+
+6:23 For every meat offering for the priest shall be wholly burnt: it
+shall not be eaten.
+
+6:24 And the LORD spake unto Moses, saying, 6:25 Speak unto Aaron and
+to his sons, saying, This is the law of the sin offering: In the place
+where the burnt offering is killed shall the sin offering be killed
+before the LORD: it is most holy.
+
+6:26 The priest that offereth it for sin shall eat it: in the holy
+place shall it be eaten, in the court of the tabernacle of the
+congregation.
+
+6:27 Whatsoever shall touch the flesh thereof shall be holy: and when
+there is sprinkled of the blood thereof upon any garment, thou shalt
+wash that whereon it was sprinkled in the holy place.
+
+6:28 But the earthen vessel wherein it is sodden shall be broken: and
+if it be sodden in a brasen pot, it shall be both scoured, and rinsed
+in water.
+
+6:29 All the males among the priests shall eat thereof: it is most
+holy.
+
+6:30 And no sin offering, whereof any of the blood is brought into the
+tabernacle of the congregation to reconcile withal in the holy place,
+shall be eaten: it shall be burnt in the fire.
+
+7:1 Likewise this is the law of the trespass offering: it is most
+holy.
+
+7:2 In the place where they kill the burnt offering shall they kill
+the trespass offering: and the blood thereof shall he sprinkle round
+about upon the altar.
+
+7:3 And he shall offer of it all the fat thereof; the rump, and the
+fat that covereth the inwards, 7:4 And the two kidneys, and the fat
+that is on them, which is by the flanks, and the caul that is above
+the liver, with the kidneys, it shall he take away: 7:5 And the priest
+shall burn them upon the altar for an offering made by fire unto the
+LORD: it is a trespass offering.
+
+7:6 Every male among the priests shall eat thereof: it shall be eaten
+in the holy place: it is most holy.
+
+7:7 As the sin offering is, so is the trespass offering: there is one
+law for them: the priest that maketh atonement therewith shall have
+it.
+
+7:8 And the priest that offereth any man's burnt offering, even the
+priest shall have to himself the skin of the burnt offering which he
+hath offered.
+
+7:9 And all the meat offering that is baken in the oven, and all that
+is dressed in the fryingpan, and in the pan, shall be the priest's
+that offereth it.
+
+7:10 And every meat offering, mingled with oil, and dry, shall all the
+sons of Aaron have, one as much as another.
+
+7:11 And this is the law of the sacrifice of peace offerings, which he
+shall offer unto the LORD.
+
+7:12 If he offer it for a thanksgiving, then he shall offer with the
+sacrifice of thanksgiving unleavened cakes mingled with oil, and
+unleavened wafers anointed with oil, and cakes mingled with oil, of
+fine flour, fried.
+
+7:13 Besides the cakes, he shall offer for his offering leavened bread
+with the sacrifice of thanksgiving of his peace offerings.
+
+7:14 And of it he shall offer one out of the whole oblation for an
+heave offering unto the LORD, and it shall be the priest's that
+sprinkleth the blood of the peace offerings.
+
+7:15 And the flesh of the sacrifice of his peace offerings for
+thanksgiving shall be eaten the same day that it is offered; he shall
+not leave any of it until the morning.
+
+7:16 But if the sacrifice of his offering be a vow, or a voluntary
+offering, it shall be eaten the same day that he offereth his
+sacrifice: and on the morrow also the remainder of it shall be eaten:
+7:17 But the remainder of the flesh of the sacrifice on the third day
+shall be burnt with fire.
+
+7:18 And if any of the flesh of the sacrifice of his peace offerings
+be eaten at all on the third day, it shall not be accepted, neither
+shall it be imputed unto him that offereth it: it shall be an
+abomination, and the soul that eateth of it shall bear his iniquity.
+
+7:19 And the flesh that toucheth any unclean thing shall not be eaten;
+it shall be burnt with fire: and as for the flesh, all that be clean
+shall eat thereof.
+
+7:20 But the soul that eateth of the flesh of the sacrifice of peace
+offerings, that pertain unto the LORD, having his uncleanness upon
+him, even that soul shall be cut off from his people.
+
+7:21 Moreover the soul that shall touch any unclean thing, as the
+uncleanness of man, or any unclean beast, or any abominable unclean
+thing, and eat of the flesh of the sacrifice of peace offerings, which
+pertain unto the LORD, even that soul shall be cut off from his
+people.
+
+7:22 And the LORD spake unto Moses, saying, 7:23 Speak unto the
+children of Israel, saying, Ye shall eat no manner of fat, of ox, or
+of sheep, or of goat.
+
+7:24 And the fat of the beast that dieth of itself, and the fat of
+that which is torn with beasts, may be used in any other use: but ye
+shall in no wise eat of it.
+
+7:25 For whosoever eateth the fat of the beast, of which men offer an
+offering made by fire unto the LORD, even the soul that eateth it
+shall be cut off from his people.
+
+7:26 Moreover ye shall eat no manner of blood, whether it be of fowl
+or of beast, in any of your dwellings.
+
+7:27 Whatsoever soul it be that eateth any manner of blood, even that
+soul shall be cut off from his people.
+
+7:28 And the LORD spake unto Moses, saying, 7:29 Speak unto the
+children of Israel, saying, He that offereth the sacrifice of his
+peace offerings unto the LORD shall bring his oblation unto the LORD
+of the sacrifice of his peace offerings.
+
+7:30 His own hands shall bring the offerings of the LORD made by fire,
+the fat with the breast, it shall he bring, that the breast may be
+waved for a wave offering before the LORD.
+
+7:31 And the priest shall burn the fat upon the altar: but the breast
+shall be Aaron's and his sons'.
+
+7:32 And the right shoulder shall ye give unto the priest for an heave
+offering of the sacrifices of your peace offerings.
+
+7:33 He among the sons of Aaron, that offereth the blood of the peace
+offerings, and the fat, shall have the right shoulder for his part.
+
+7:34 For the wave breast and the heave shoulder have I taken of the
+children of Israel from off the sacrifices of their peace offerings,
+and have given them unto Aaron the priest and unto his sons by a
+statute for ever from among the children of Israel.
+
+7:35 This is the portion of the anointing of Aaron, and of the
+anointing of his sons, out of the offerings of the LORD made by fire,
+in the day when he presented them to minister unto the LORD in the
+priest's office; 7:36 Which the LORD commanded to be given them of the
+children of Israel, in the day that he anointed them, by a statute for
+ever throughout their generations.
+
+7:37 This is the law of the burnt offering, of the meat offering, and
+of the sin offering, and of the trespass offering, and of the
+consecrations, and of the sacrifice of the peace offerings; 7:38 Which
+the LORD commanded Moses in mount Sinai, in the day that he commanded
+the children of Israel to offer their oblations unto the LORD, in the
+wilderness of Sinai.
+
+8:1 And the LORD spake unto Moses, saying, 8:2 Take Aaron and his sons
+with him, and the garments, and the anointing oil, and a bullock for
+the sin offering, and two rams, and a basket of unleavened bread; 8:3
+And gather thou all the congregation together unto the door of the
+tabernacle of the congregation.
+
+8:4 And Moses did as the LORD commanded him; and the assembly was
+gathered together unto the door of the tabernacle of the congregation.
+
+8:5 And Moses said unto the congregation, This is the thing which the
+LORD commanded to be done.
+
+8:6 And Moses brought Aaron and his sons, and washed them with water.
+
+8:7 And he put upon him the coat, and girded him with the girdle, and
+clothed him with the robe, and put the ephod upon him, and he girded
+him with the curious girdle of the ephod, and bound it unto him
+therewith.
+
+8:8 And he put the breastplate upon him: also he put in the
+breastplate the Urim and the Thummim.
+
+8:9 And he put the mitre upon his head; also upon the mitre, even upon
+his forefront, did he put the golden plate, the holy crown; as the
+LORD commanded Moses.
+
+8:10 And Moses took the anointing oil, and anointed the tabernacle and
+all that was therein, and sanctified them.
+
+8:11 And he sprinkled thereof upon the altar seven times, and anointed
+the altar and all his vessels, both the laver and his foot, to
+sanctify them.
+
+8:12 And he poured of the anointing oil upon Aaron's head, and
+anointed him, to sanctify him.
+
+8:13 And Moses brought Aaron's sons, and put coats upon them, and
+girded them with girdles, and put bonnets upon them; as the LORD
+commanded Moses.
+
+8:14 And he brought the bullock for the sin offering: and Aaron and
+his sons laid their hands upon the head of the bullock for the sin
+offering.
+
+8:15 And he slew it; and Moses took the blood, and put it upon the
+horns of the altar round about with his finger, and purified the
+altar, and poured the blood at the bottom of the altar, and sanctified
+it, to make reconciliation upon it.
+
+8:16 And he took all the fat that was upon the inwards, and the caul
+above the liver, and the two kidneys, and their fat, and Moses burned
+it upon the altar.
+
+8:17 But the bullock, and his hide, his flesh, and his dung, he burnt
+with fire without the camp; as the LORD commanded Moses.
+
+8:18 And he brought the ram for the burnt offering: and Aaron and his
+sons laid their hands upon the head of the ram.
+
+8:19 And he killed it; and Moses sprinkled the blood upon the altar
+round about.
+
+8:20 And he cut the ram into pieces; and Moses burnt the head, and the
+pieces, and the fat.
+
+8:21 And he washed the inwards and the legs in water; and Moses burnt
+the whole ram upon the altar: it was a burnt sacrifice for a sweet
+savour, and an offering made by fire unto the LORD; as the LORD
+commanded Moses.
+
+8:22 And he brought the other ram, the ram of consecration: and Aaron
+and his sons laid their hands upon the head of the ram.
+
+8:23 And he slew it; and Moses took of the blood of it, and put it
+upon the tip of Aaron's right ear, and upon the thumb of his right
+hand, and upon the great toe of his right foot.
+
+8:24 And he brought Aaron's sons, and Moses put of the blood upon the
+tip of their right ear, and upon the thumbs of their right hands, and
+upon the great toes of their right feet: and Moses sprinkled the blood
+upon the altar round about.
+
+8:25 And he took the fat, and the rump, and all the fat that was upon
+the inwards, and the caul above the liver, and the two kidneys, and
+their fat, and the right shoulder: 8:26 And out of the basket of
+unleavened bread, that was before the LORD, he took one unleavened
+cake, and a cake of oiled bread, and one wafer, and put them on the
+fat, and upon the right shoulder: 8:27 And he put all upon Aaron's
+hands, and upon his sons' hands, and waved them for a wave offering
+before the LORD.
+
+8:28 And Moses took them from off their hands, and burnt them on the
+altar upon the burnt offering: they were consecrations for a sweet
+savour: it is an offering made by fire unto the LORD.
+
+8:29 And Moses took the breast, and waved it for a wave offering
+before the LORD: for of the ram of consecration it was Moses' part; as
+the LORD commanded Moses.
+
+8:30 And Moses took of the anointing oil, and of the blood which was
+upon the altar, and sprinkled it upon Aaron, and upon his garments,
+and upon his sons, and upon his sons' garments with him; and
+sanctified Aaron, and his garments, and his sons, and his sons'
+garments with him.
+
+8:31 And Moses said unto Aaron and to his sons, Boil the flesh at the
+door of the tabernacle of the congregation: and there eat it with the
+bread that is in the basket of consecrations, as I commanded, saying,
+Aaron and his sons shall eat it.
+
+8:32 And that which remaineth of the flesh and of the bread shall ye
+burn with fire.
+
+8:33 And ye shall not go out of the door of the tabernacle of the
+congregation in seven days, until the days of your consecration be at
+an end: for seven days shall he consecrate you.
+
+8:34 As he hath done this day, so the LORD hath commanded to do, to
+make an atonement for you.
+
+8:35 Therefore shall ye abide at the door of the tabernacle of the
+congregation day and night seven days, and keep the charge of the
+LORD, that ye die not: for so I am commanded.
+
+8:36 So Aaron and his sons did all things which the LORD commanded by
+the hand of Moses.
+
+9:1 And it came to pass on the eighth day, that Moses called Aaron and
+his sons, and the elders of Israel; 9:2 And he said unto Aaron, Take
+thee a young calf for a sin offering, and a ram for a burnt offering,
+without blemish, and offer them before the LORD.
+
+9:3 And unto the children of Israel thou shalt speak, saying, Take ye
+a kid of the goats for a sin offering; and a calf and a lamb, both of
+the first year, without blemish, for a burnt offering; 9:4 Also a
+bullock and a ram for peace offerings, to sacrifice before the LORD;
+and a meat offering mingled with oil: for to day the LORD will appear
+unto you.
+
+9:5 And they brought that which Moses commanded before the tabernacle
+of the congregation: and all the congregation drew near and stood
+before the LORD.
+
+9:6 And Moses said, This is the thing which the LORD commanded that ye
+should do: and the glory of the LORD shall appear unto you.
+
+9:7 And Moses said unto Aaron, Go unto the altar, and offer thy sin
+offering, and thy burnt offering, and make an atonement for thyself,
+and for the people: and offer the offering of the people, and make an
+atonement for them; as the LORD commanded.
+
+9:8 Aaron therefore went unto the altar, and slew the calf of the sin
+offering, which was for himself.
+
+9:9 And the sons of Aaron brought the blood unto him: and he dipped
+his finger in the blood, and put it upon the horns of the altar, and
+poured out the blood at the bottom of the altar: 9:10 But the fat, and
+the kidneys, and the caul above the liver of the sin offering, he
+burnt upon the altar; as the LORD commanded Moses.
+
+9:11 And the flesh and the hide he burnt with fire without the camp.
+
+9:12 And he slew the burnt offering; and Aaron's sons presented unto
+him the blood, which he sprinkled round about upon the altar.
+
+9:13 And they presented the burnt offering unto him, with the pieces
+thereof, and the head: and he burnt them upon the altar.
+
+9:14 And he did wash the inwards and the legs, and burnt them upon the
+burnt offering on the altar.
+
+9:15 And he brought the people's offering, and took the goat, which
+was the sin offering for the people, and slew it, and offered it for
+sin, as the first.
+
+9:16 And he brought the burnt offering, and offered it according to
+the manner.
+
+9:17 And he brought the meat offering, and took an handful thereof,
+and burnt it upon the altar, beside the burnt sacrifice of the
+morning.
+
+9:18 He slew also the bullock and the ram for a sacrifice of peace
+offerings, which was for the people: and Aaron's sons presented unto
+him the blood, which he sprinkled upon the altar round about, 9:19 And
+the fat of the bullock and of the ram, the rump, and that which
+covereth the inwards, and the kidneys, and the caul above the liver:
+9:20 And they put the fat upon the breasts, and he burnt the fat upon
+the altar: 9:21 And the breasts and the right shoulder Aaron waved for
+a wave offering before the LORD; as Moses commanded.
+
+9:22 And Aaron lifted up his hand toward the people, and blessed them,
+and came down from offering of the sin offering, and the burnt
+offering, and peace offerings.
+
+9:23 And Moses and Aaron went into the tabernacle of the congregation,
+and came out, and blessed the people: and the glory of the LORD
+appeared unto all the people.
+
+9:24 And there came a fire out from before the LORD, and consumed upon
+the altar the burnt offering and the fat: which when all the people
+saw, they shouted, and fell on their faces.
+
+10:1 And Nadab and Abihu, the sons of Aaron, took either of them his
+censer, and put fire therein, and put incense thereon, and offered
+strange fire before the LORD, which he commanded them not.
+
+10:2 And there went out fire from the LORD, and devoured them, and
+they died before the LORD.
+
+10:3 Then Moses said unto Aaron, This is it that the LORD spake,
+saying, I will be sanctified in them that come nigh me, and before all
+the people I will be glorified. And Aaron held his peace.
+
+10:4 And Moses called Mishael and Elzaphan, the sons of Uzziel the
+uncle of Aaron, and said unto them, Come near, carry your brethren
+from before the sanctuary out of the camp.
+
+10:5 So they went near, and carried them in their coats out of the
+camp; as Moses had said.
+
+10:6 And Moses said unto Aaron, and unto Eleazar and unto Ithamar, his
+sons, Uncover not your heads, neither rend your clothes; lest ye die,
+and lest wrath come upon all the people: but let your brethren, the
+whole house of Israel, bewail the burning which the LORD hath kindled.
+
+10:7 And ye shall not go out from the door of the tabernacle of the
+congregation, lest ye die: for the anointing oil of the LORD is upon
+you. And they did according to the word of Moses.
+
+10:8 And the LORD spake unto Aaron, saying, 10:9 Do not drink wine nor
+strong drink, thou, nor thy sons with thee, when ye go into the
+tabernacle of the congregation, lest ye die: it shall be a statute for
+ever throughout your generations: 10:10 And that ye may put difference
+between holy and unholy, and between unclean and clean; 10:11 And that
+ye may teach the children of Israel all the statutes which the LORD
+hath spoken unto them by the hand of Moses.
+
+10:12 And Moses spake unto Aaron, and unto Eleazar and unto Ithamar,
+his sons that were left, Take the meat offering that remaineth of the
+offerings of the LORD made by fire, and eat it without leaven beside
+the altar: for it is most holy: 10:13 And ye shall eat it in the holy
+place, because it is thy due, and thy sons' due, of the sacrifices of
+the LORD made by fire: for so I am commanded.
+
+10:14 And the wave breast and heave shoulder shall ye eat in a clean
+place; thou, and thy sons, and thy daughters with thee: for they be
+thy due, and thy sons' due, which are given out of the sacrifices of
+peace offerings of the children of Israel.
+
+10:15 The heave shoulder and the wave breast shall they bring with the
+offerings made by fire of the fat, to wave it for a wave offering
+before the LORD; and it shall be thine, and thy sons' with thee, by a
+statute for ever; as the LORD hath commanded.
+
+10:16 And Moses diligently sought the goat of the sin offering, and,
+behold, it was burnt: and he was angry with Eleazar and Ithamar, the
+sons of Aaron which were left alive, saying, 10:17 Wherefore have ye
+not eaten the sin offering in the holy place, seeing it is most holy,
+and God hath given it you to bear the iniquity of the congregation, to
+make atonement for them before the LORD? 10:18 Behold, the blood of
+it was not brought in within the holy place: ye should indeed have
+eaten it in the holy place, as I commanded.
+
+10:19 And Aaron said unto Moses, Behold, this day have they offered
+their sin offering and their burnt offering before the LORD; and such
+things have befallen me: and if I had eaten the sin offering to day,
+should it have been accepted in the sight of the LORD? 10:20 And when
+Moses heard that, he was content.
+
+11:1 And the LORD spake unto Moses and to Aaron, saying unto them,
+11:2 Speak unto the children of Israel, saying, These are the beasts
+which ye shall eat among all the beasts that are on the earth.
+
+11:3 Whatsoever parteth the hoof, and is clovenfooted, and cheweth the
+cud, among the beasts, that shall ye eat.
+
+11:4 Nevertheless these shall ye not eat of them that chew the cud, or
+of them that divide the hoof: as the camel, because he cheweth the
+cud, but divideth not the hoof; he is unclean unto you.
+
+11:5 And the coney, because he cheweth the cud, but divideth not the
+hoof; he is unclean unto you.
+
+11:6 And the hare, because he cheweth the cud, but divideth not the
+hoof; he is unclean unto you.
+
+11:7 And the swine, though he divide the hoof, and be clovenfooted,
+yet he cheweth not the cud; he is unclean to you.
+
+11:8 Of their flesh shall ye not eat, and their carcase shall ye not
+touch; they are unclean to you.
+
+11:9 These shall ye eat of all that are in the waters: whatsoever hath
+fins and scales in the waters, in the seas, and in the rivers, them
+shall ye eat.
+
+11:10 And all that have not fins and scales in the seas, and in the
+rivers, of all that move in the waters, and of any living thing which
+is in the waters, they shall be an abomination unto you: 11:11 They
+shall be even an abomination unto you; ye shall not eat of their
+flesh, but ye shall have their carcases in abomination.
+
+11:12 Whatsoever hath no fins nor scales in the waters, that shall be
+an abomination unto you.
+
+11:13 And these are they which ye shall have in abomination among the
+fowls; they shall not be eaten, they are an abomination: the eagle,
+and the ossifrage, and the ospray, 11:14 And the vulture, and the kite
+after his kind; 11:15 Every raven after his kind; 11:16 And the owl,
+and the night hawk, and the cuckow, and the hawk after his kind, 11:17
+And the little owl, and the cormorant, and the great owl, 11:18 And
+the swan, and the pelican, and the gier eagle, 11:19 And the stork,
+the heron after her kind, and the lapwing, and the bat.
+
+11:20 All fowls that creep, going upon all four, shall be an
+abomination unto you.
+
+11:21 Yet these may ye eat of every flying creeping thing that goeth
+upon all four, which have legs above their feet, to leap withal upon
+the earth; 11:22 Even these of them ye may eat; the locust after his
+kind, and the bald locust after his kind, and the beetle after his
+kind, and the grasshopper after his kind.
+
+11:23 But all other flying creeping things, which have four feet,
+shall be an abomination unto you.
+
+11:24 And for these ye shall be unclean: whosoever toucheth the
+carcase of them shall be unclean until the even.
+
+11:25 And whosoever beareth ought of the carcase of them shall wash
+his clothes, and be unclean until the even.
+
+11:26 The carcases of every beast which divideth the hoof, and is not
+clovenfooted, nor cheweth the cud, are unclean unto you: every one
+that toucheth them shall be unclean.
+
+11:27 And whatsoever goeth upon his paws, among all manner of beasts
+that go on all four, those are unclean unto you: whoso toucheth their
+carcase shall be unclean until the even.
+
+11:28 And he that beareth the carcase of them shall wash his clothes,
+and be unclean until the even: they are unclean unto you.
+
+11:29 These also shall be unclean unto you among the creeping things
+that creep upon the earth; the weasel, and the mouse, and the tortoise
+after his kind, 11:30 And the ferret, and the chameleon, and the
+lizard, and the snail, and the mole.
+
+11:31 These are unclean to you among all that creep: whosoever doth
+touch them, when they be dead, shall be unclean until the even.
+
+11:32 And upon whatsoever any of them, when they are dead, doth fall,
+it shall be unclean; whether it be any vessel of wood, or raiment, or
+skin, or sack, whatsoever vessel it be, wherein any work is done, it
+must be put into water, and it shall be unclean until the even; so it
+shall be cleansed.
+
+11:33 And every earthen vessel, whereinto any of them falleth,
+whatsoever is in it shall be unclean; and ye shall break it.
+
+11:34 Of all meat which may be eaten, that on which such water cometh
+shall be unclean: and all drink that may be drunk in every such vessel
+shall be unclean.
+
+11:35 And every thing whereupon any part of their carcase falleth
+shall be unclean; whether it be oven, or ranges for pots, they shall
+be broken down: for they are unclean and shall be unclean unto you.
+
+11:36 Nevertheless a fountain or pit, wherein there is plenty of
+water, shall be clean: but that which toucheth their carcase shall be
+unclean.
+
+11:37 And if any part of their carcase fall upon any sowing seed which
+is to be sown, it shall be clean.
+
+11:38 But if any water be put upon the seed, and any part of their
+carcase fall thereon, it shall be unclean unto you.
+
+11:39 And if any beast, of which ye may eat, die; he that toucheth the
+carcase thereof shall be unclean until the even.
+
+11:40 And he that eateth of the carcase of it shall wash his clothes,
+and be unclean until the even: he also that beareth the carcase of it
+shall wash his clothes, and be unclean until the even.
+
+11:41 And every creeping thing that creepeth upon the earth shall be
+an abomination; it shall not be eaten.
+
+11:42 Whatsoever goeth upon the belly, and whatsoever goeth upon all
+four, or whatsoever hath more feet among all creeping things that
+creep upon the earth, them ye shall not eat; for they are an
+abomination.
+
+11:43 Ye shall not make yourselves abominable with any creeping thing
+that creepeth, neither shall ye make yourselves unclean with them,
+that ye should be defiled thereby.
+
+11:44 For I am the LORD your God: ye shall therefore sanctify
+yourselves, and ye shall be holy; for I am holy: neither shall ye
+defile yourselves with any manner of creeping thing that creepeth upon
+the earth.
+
+11:45 For I am the LORD that bringeth you up out of the land of Egypt,
+to be your God: ye shall therefore be holy, for I am holy.
+
+11:46 This is the law of the beasts, and of the fowl, and of every
+living creature that moveth in the waters, and of every creature that
+creepeth upon the earth: 11:47 To make a difference between the
+unclean and the clean, and between the beast that may be eaten and the
+beast that may not be eaten.
+
+12:1 And the LORD spake unto Moses, saying, 12:2 Speak unto the
+children of Israel, saying, If a woman have conceived seed, and born a
+man child: then she shall be unclean seven days; according to the days
+of the separation for her infirmity shall she be unclean.
+
+12:3 And in the eighth day the flesh of his foreskin shall be
+circumcised.
+
+12:4 And she shall then continue in the blood of her purifying three
+and thirty days; she shall touch no hallowed thing, nor come into the
+sanctuary, until the days of her purifying be fulfilled.
+
+12:5 But if she bear a maid child, then she shall be unclean two
+weeks, as in her separation: and she shall continue in the blood of
+her purifying threescore and six days.
+
+12:6 And when the days of her purifying are fulfilled, for a son, or
+for a daughter, she shall bring a lamb of the first year for a burnt
+offering, and a young pigeon, or a turtledove, for a sin offering,
+unto the door of the tabernacle of the congregation, unto the priest:
+12:7 Who shall offer it before the LORD, and make an atonement for
+her; and she shall be cleansed from the issue of her blood. This is
+the law for her that hath born a male or a female.
+
+12:8 And if she be not able to bring a lamb, then she shall bring two
+turtles, or two young pigeons; the one for the burnt offering, and the
+other for a sin offering: and the priest shall make an atonement for
+her, and she shall be clean.
+
+13:1 And the LORD spake unto Moses and Aaron, saying, 13:2 When a man
+shall have in the skin of his flesh a rising, a scab, or bright spot,
+and it be in the skin of his flesh like the plague of leprosy; then he
+shall be brought unto Aaron the priest, or unto one of his sons the
+priests: 13:3 And the priest shall look on the plague in the skin of
+the flesh: and when the hair in the plague is turned white, and the
+plague in sight be deeper than the skin of his flesh, it is a plague
+of leprosy: and the priest shall look on him, and pronounce him
+unclean.
+
+13:4 If the bright spot be white in the skin of his flesh, and in
+sight be not deeper than the skin, and the hair thereof be not turned
+white; then the priest shall shut up him that hath the plague seven
+days: 13:5 And the priest shall look on him the seventh day: and,
+behold, if the plague in his sight be at a stay, and the plague spread
+not in the skin; then the priest shall shut him up seven days more:
+13:6 And the priest shall look on him again the seventh day: and,
+behold, if the plague be somewhat dark, and the plague spread not in
+the skin, the priest shall pronounce him clean: it is but a scab: and
+he shall wash his clothes, and be clean.
+
+13:7 But if the scab spread much abroad in the skin, after that he
+hath been seen of the priest for his cleansing, he shall be seen of
+the priest again.
+
+13:8 And if the priest see that, behold, the scab spreadeth in the
+skin, then the priest shall pronounce him unclean: it is a leprosy.
+
+13:9 When the plague of leprosy is in a man, then he shall be brought
+unto the priest; 13:10 And the priest shall see him: and, behold, if
+the rising be white in the skin, and it have turned the hair white,
+and there be quick raw flesh in the rising; 13:11 It is an old leprosy
+in the skin of his flesh, and the priest shall pronounce him unclean,
+and shall not shut him up: for he is unclean.
+
+13:12 And if a leprosy break out abroad in the skin, and the leprosy
+cover all the skin of him that hath the plague from his head even to
+his foot, wheresoever the priest looketh; 13:13 Then the priest shall
+consider: and, behold, if the leprosy have covered all his flesh, he
+shall pronounce him clean that hath the plague: it is all turned
+white: he is clean.
+
+13:14 But when raw flesh appeareth in him, he shall be unclean.
+
+13:15 And the priest shall see the raw flesh, and pronounce him to be
+unclean: for the raw flesh is unclean: it is a leprosy.
+
+13:16 Or if the raw flesh turn again, and be changed unto white, he
+shall come unto the priest; 13:17 And the priest shall see him: and,
+behold, if the plague be turned into white; then the priest shall
+pronounce him clean that hath the plague: he is clean.
+
+13:18 The flesh also, in which, even in the skin thereof, was a boil,
+and is healed, 13:19 And in the place of the boil there be a white
+rising, or a bright spot, white, and somewhat reddish, and it be
+shewed to the priest; 13:20 And if, when the priest seeth it, behold,
+it be in sight lower than the skin, and the hair thereof be turned
+white; the priest shall pronounce him unclean: it is a plague of
+leprosy broken out of the boil.
+
+13:21 But if the priest look on it, and, behold, there be no white
+hairs therein, and if it be not lower than the skin, but be somewhat
+dark; then the priest shall shut him up seven days: 13:22 And if it
+spread much abroad in the skin, then the priest shall pronounce him
+unclean: it is a plague.
+
+13:23 But if the bright spot stay in his place, and spread not, it is
+a burning boil; and the priest shall pronounce him clean.
+
+13:24 Or if there be any flesh, in the skin whereof there is a hot
+burning, and the quick flesh that burneth have a white bright spot,
+somewhat reddish, or white; 13:25 Then the priest shall look upon it:
+and, behold, if the hair in the bright spot be turned white, and it be
+in sight deeper than the skin; it is a leprosy broken out of the
+burning: wherefore the priest shall pronounce him unclean: it is the
+plague of leprosy.
+
+13:26 But if the priest look on it, and, behold, there be no white
+hair in the bright spot, and it be no lower than the other skin, but
+be somewhat dark; then the priest shall shut him up seven days: 13:27
+And the priest shall look upon him the seventh day: and if it be
+spread much abroad in the skin, then the priest shall pronounce him
+unclean: it is the plague of leprosy.
+
+13:28 And if the bright spot stay in his place, and spread not in the
+skin, but it be somewhat dark; it is a rising of the burning, and the
+priest shall pronounce him clean: for it is an inflammation of the
+burning.
+
+13:29 If a man or woman have a plague upon the head or the beard;
+13:30 Then the priest shall see the plague: and, behold, if it be in
+sight deeper than the skin; and there be in it a yellow thin hair;
+then the priest shall pronounce him unclean: it is a dry scall, even a
+leprosy upon the head or beard.
+
+13:31 And if the priest look on the plague of the scall, and, behold,
+it be not in sight deeper than the skin, and that there is no black
+hair in it; then the priest shall shut up him that hath the plague of
+the scall seven days: 13:32 And in the seventh day the priest shall
+look on the plague: and, behold, if the scall spread not, and there be
+in it no yellow hair, and the scall be not in sight deeper than the
+skin; 13:33 He shall be shaven, but the scall shall he not shave; and
+the priest shall shut up him that hath the scall seven days more:
+13:34 And in the seventh day the priest shall look on the scall: and,
+behold, if the scall be not spread in the skin, nor be in sight deeper
+than the skin; then the priest shall pronounce him clean: and he shall
+wash his clothes, and be clean.
+
+13:35 But if the scall spread much in the skin after his cleansing;
+13:36 Then the priest shall look on him: and, behold, if the scall be
+spread in the skin, the priest shall not seek for yellow hair; he is
+unclean.
+
+13:37 But if the scall be in his sight at a stay, and that there is
+black hair grown up therein; the scall is healed, he is clean: and the
+priest shall pronounce him clean.
+
+13:38 If a man also or a woman have in the skin of their flesh bright
+spots, even white bright spots; 13:39 Then the priest shall look: and,
+behold, if the bright spots in the skin of their flesh be darkish
+white; it is a freckled spot that groweth in the skin; he is clean.
+
+13:40 And the man whose hair is fallen off his head, he is bald; yet
+is he clean.
+
+13:41 And he that hath his hair fallen off from the part of his head
+toward his face, he is forehead bald: yet is he clean.
+
+13:42 And if there be in the bald head, or bald forehead, a white
+reddish sore; it is a leprosy sprung up in his bald head, or his bald
+forehead.
+
+13:43 Then the priest shall look upon it: and, behold, if the rising
+of the sore be white reddish in his bald head, or in his bald
+forehead, as the leprosy appeareth in the skin of the flesh; 13:44 He
+is a leprous man, he is unclean: the priest shall pronounce him
+utterly unclean; his plague is in his head.
+
+13:45 And the leper in whom the plague is, his clothes shall be rent,
+and his head bare, and he shall put a covering upon his upper lip, and
+shall cry, Unclean, unclean.
+
+13:46 All the days wherein the plague shall be in him he shall be
+defiled; he is unclean: he shall dwell alone; without the camp shall
+his habitation be.
+
+13:47 The garment also that the plague of leprosy is in, whether it be
+a woollen garment, or a linen garment; 13:48 Whether it be in the
+warp, or woof; of linen, or of woollen; whether in a skin, or in any
+thing made of skin; 13:49 And if the plague be greenish or reddish in
+the garment, or in the skin, either in the warp, or in the woof, or in
+any thing of skin; it is a plague of leprosy, and shall be shewed unto
+the priest: 13:50 And the priest shall look upon the plague, and shut
+up it that hath the plague seven days: 13:51 And he shall look on the
+plague on the seventh day: if the plague be spread in the garment,
+either in the warp, or in the woof, or in a skin, or in any work that
+is made of skin; the plague is a fretting leprosy; it is unclean.
+
+13:52 He shall therefore burn that garment, whether warp or woof, in
+woollen or in linen, or any thing of skin, wherein the plague is: for
+it is a fretting leprosy; it shall be burnt in the fire.
+
+13:53 And if the priest shall look, and, behold, the plague be not
+spread in the garment, either in the warp, or in the woof, or in any
+thing of skin; 13:54 Then the priest shall command that they wash the
+thing wherein the plague is, and he shall shut it up seven days more:
+13:55 And the priest shall look on the plague, after that it is
+washed: and, behold, if the plague have not changed his colour, and
+the plague be not spread; it is unclean; thou shalt burn it in the
+fire; it is fret inward, whether it be bare within or without.
+
+13:56 And if the priest look, and, behold, the plague be somewhat dark
+after the washing of it; then he shall rend it out of the garment, or
+out of the skin, or out of the warp, or out of the woof: 13:57 And if
+it appear still in the garment, either in the warp, or in the woof, or
+in any thing of skin; it is a spreading plague: thou shalt burn that
+wherein the plague is with fire.
+
+13:58 And the garment, either warp, or woof, or whatsoever thing of
+skin it be, which thou shalt wash, if the plague be departed from
+them, then it shall be washed the second time, and shall be clean.
+
+13:59 This is the law of the plague of leprosy in a garment of woollen
+or linen, either in the warp, or woof, or any thing of skins, to
+pronounce it clean, or to pronounce it unclean.
+
+14:1 And the LORD spake unto Moses, saying, 14:2 This shall be the law
+of the leper in the day of his cleansing: He shall be brought unto the
+priest: 14:3 And the priest shall go forth out of the camp; and the
+priest shall look, and, behold, if the plague of leprosy be healed in
+the leper; 14:4 Then shall the priest command to take for him that is
+to be cleansed two birds alive and clean, and cedar wood, and scarlet,
+and hyssop: 14:5 And the priest shall command that one of the birds be
+killed in an earthen vessel over running water: 14:6 As for the living
+bird, he shall take it, and the cedar wood, and the scarlet, and the
+hyssop, and shall dip them and the living bird in the blood of the
+bird that was killed over the running water: 14:7 And he shall
+sprinkle upon him that is to be cleansed from the leprosy seven times,
+and shall pronounce him clean, and shall let the living bird loose
+into the open field.
+
+14:8 And he that is to be cleansed shall wash his clothes, and shave
+off all his hair, and wash himself in water, that he may be clean: and
+after that he shall come into the camp, and shall tarry abroad out of
+his tent seven days.
+
+14:9 But it shall be on the seventh day, that he shall shave all his
+hair off his head and his beard and his eyebrows, even all his hair he
+shall shave off: and he shall wash his clothes, also he shall wash his
+flesh in water, and he shall be clean.
+
+14:10 And on the eighth day he shall take two he lambs without
+blemish, and one ewe lamb of the first year without blemish, and three
+tenth deals of fine flour for a meat offering, mingled with oil, and
+one log of oil.
+
+14:11 And the priest that maketh him clean shall present the man that
+is to be made clean, and those things, before the LORD, at the door of
+the tabernacle of the congregation: 14:12 And the priest shall take
+one he lamb, and offer him for a trespass offering, and the log of
+oil, and wave them for a wave offering before the LORD: 14:13 And he
+shall slay the lamb in the place where he shall kill the sin offering
+and the burnt offering, in the holy place: for as the sin offering is
+the priest's, so is the trespass offering: it is most holy: 14:14 And
+the priest shall take some of the blood of the trespass offering, and
+the priest shall put it upon the tip of the right ear of him that is
+to be cleansed, and upon the thumb of his right hand, and upon the
+great toe of his right foot: 14:15 And the priest shall take some of
+the log of oil, and pour it into the palm of his own left hand: 14:16
+And the priest shall dip his right finger in the oil that is in his
+left hand, and shall sprinkle of the oil with his finger seven times
+before the LORD: 14:17 And of the rest of the oil that is in his hand
+shall the priest put upon the tip of the right ear of him that is to
+be cleansed, and upon the thumb of his right hand, and upon the great
+toe of his right foot, upon the blood of the trespass offering: 14:18
+And the remnant of the oil that is in the priest's hand he shall pour
+upon the head of him that is to be cleansed: and the priest shall make
+an atonement for him before the LORD.
+
+14:19 And the priest shall offer the sin offering, and make an
+atonement for him that is to be cleansed from his uncleanness; and
+afterward he shall kill the burnt offering: 14:20 And the priest shall
+offer the burnt offering and the meat offering upon the altar: and the
+priest shall make an atonement for him, and he shall be clean.
+
+14:21 And if he be poor, and cannot get so much; then he shall take
+one lamb for a trespass offering to be waved, to make an atonement for
+him, and one tenth deal of fine flour mingled with oil for a meat
+offering, and a log of oil; 14:22 And two turtledoves, or two young
+pigeons, such as he is able to get; and the one shall be a sin
+offering, and the other a burnt offering.
+
+14:23 And he shall bring them on the eighth day for his cleansing unto
+the priest, unto the door of the tabernacle of the congregation,
+before the LORD.
+
+14:24 And the priest shall take the lamb of the trespass offering, and
+the log of oil, and the priest shall wave them for a wave offering
+before the LORD: 14:25 And he shall kill the lamb of the trespass
+offering, and the priest shall take some of the blood of the trespass
+offering, and put it upon the tip of the right ear of him that is to
+be cleansed, and upon the thumb of his right hand, and upon the great
+toe of his right foot: 14:26 And the priest shall pour of the oil into
+the palm of his own left hand: 14:27 And the priest shall sprinkle
+with his right finger some of the oil that is in his left hand seven
+times before the LORD: 14:28 And the priest shall put of the oil that
+is in his hand upon the tip of the right ear of him that is to be
+cleansed, and upon the thumb of his right hand, and upon the great toe
+of his right foot, upon the place of the blood of the trespass
+offering: 14:29 And the rest of the oil that is in the priest's hand
+he shall put upon the head of him that is to be cleansed, to make an
+atonement for him before the LORD.
+
+14:30 And he shall offer the one of the turtledoves, or of the young
+pigeons, such as he can get; 14:31 Even such as he is able to get, the
+one for a sin offering, and the other for a burnt offering, with the
+meat offering: and the priest shall make an atonement for him that is
+to be cleansed before the LORD.
+
+14:32 This is the law of him in whom is the plague of leprosy, whose
+hand is not able to get that which pertaineth to his cleansing.
+
+14:33 And the LORD spake unto Moses and unto Aaron, saying, 14:34 When
+ye be come into the land of Canaan, which I give to you for a
+possession, and I put the plague of leprosy in a house of the land of
+your possession; 14:35 And he that owneth the house shall come and
+tell the priest, saying, It seemeth to me there is as it were a plague
+in the house: 14:36 Then the priest shall command that they empty the
+house, before the priest go into it to see the plague, that all that
+is in the house be not made unclean: and afterward the priest shall go
+in to see the house: 14:37 And he shall look on the plague, and,
+behold, if the plague be in the walls of the house with hollow
+strakes, greenish or reddish, which in sight are lower than the wall;
+14:38 Then the priest shall go out of the house to the door of the
+house, and shut up the house seven days: 14:39 And the priest shall
+come again the seventh day, and shall look: and, behold, if the plague
+be spread in the walls of the house; 14:40 Then the priest shall
+command that they take away the stones in which the plague is, and
+they shall cast them into an unclean place without the city: 14:41 And
+he shall cause the house to be scraped within round about, and they
+shall pour out the dust that they scrape off without the city into an
+unclean place: 14:42 And they shall take other stones, and put them in
+the place of those stones; and he shall take other morter, and shall
+plaister the house.
+
+14:43 And if the plague come again, and break out in the house, after
+that he hath taken away the stones, and after he hath scraped the
+house, and after it is plaistered; 14:44 Then the priest shall come
+and look, and, behold, if the plague be spread in the house, it is a
+fretting leprosy in the house; it is unclean.
+
+14:45 And he shall break down the house, the stones of it, and the
+timber thereof, and all the morter of the house; and he shall carry
+them forth out of the city into an unclean place.
+
+14:46 Moreover he that goeth into the house all the while that it is
+shut up shall be unclean until the even.
+
+14:47 And he that lieth in the house shall wash his clothes; and he
+that eateth in the house shall wash his clothes.
+
+14:48 And if the priest shall come in, and look upon it, and, behold,
+the plague hath not spread in the house, after the house was
+plaistered: then the priest shall pronounce the house clean, because
+the plague is healed.
+
+14:49 And he shall take to cleanse the house two birds, and cedar
+wood, and scarlet, and hyssop: 14:50 And he shall kill the one of the
+birds in an earthen vessel over running water: 14:51 And he shall take
+the cedar wood, and the hyssop, and the scarlet, and the living bird,
+and dip them in the blood of the slain bird, and in the running water,
+and sprinkle the house seven times: 14:52 And he shall cleanse the
+house with the blood of the bird, and with the running water, and with
+the living bird, and with the cedar wood, and with the hyssop, and
+with the scarlet: 14:53 But he shall let go the living bird out of the
+city into the open fields, and make an atonement for the house: and it
+shall be clean.
+
+14:54 This is the law for all manner of plague of leprosy, and scall,
+14:55 And for the leprosy of a garment, and of a house, 14:56 And for
+a rising, and for a scab, and for a bright spot: 14:57 To teach when
+it is unclean, and when it is clean: this is the law of leprosy.
+
+15:1 And the LORD spake unto Moses and to Aaron, saying, 15:2 Speak
+unto the children of Israel, and say unto them, When any man hath a
+running issue out of his flesh, because of his issue he is unclean.
+
+15:3 And this shall be his uncleanness in his issue: whether his flesh
+run with his issue, or his flesh be stopped from his issue, it is his
+uncleanness.
+
+15:4 Every bed, whereon he lieth that hath the issue, is unclean: and
+every thing, whereon he sitteth, shall be unclean.
+
+15:5 And whosoever toucheth his bed shall wash his clothes, and bathe
+himself in water, and be unclean until the even.
+
+15:6 And he that sitteth on any thing whereon he sat that hath the
+issue shall wash his clothes, and bathe himself in water, and be
+unclean until the even.
+
+15:7 And he that toucheth the flesh of him that hath the issue shall
+wash his clothes, and bathe himself in water, and be unclean until the
+even.
+
+15:8 And if he that hath the issue spit upon him that is clean; then
+he shall wash his clothes, and bathe himself in water, and be unclean
+until the even.
+
+15:9 And what saddle soever he rideth upon that hath the issue shall
+be unclean.
+
+15:10 And whosoever toucheth any thing that was under him shall be
+unclean until the even: and he that beareth any of those things shall
+wash his clothes, and bathe himself in water, and be unclean until the
+even.
+
+15:11 And whomsoever he toucheth that hath the issue, and hath not
+rinsed his hands in water, he shall wash his clothes, and bathe
+himself in water, and be unclean until the even.
+
+15:12 And the vessel of earth, that he toucheth which hath the issue,
+shall be broken: and every vessel of wood shall be rinsed in water.
+
+15:13 And when he that hath an issue is cleansed of his issue; then he
+shall number to himself seven days for his cleansing, and wash his
+clothes, and bathe his flesh in running water, and shall be clean.
+
+15:14 And on the eighth day he shall take to him two turtledoves, or
+two young pigeons, and come before the LORD unto the door of the
+tabernacle of the congregation, and give them unto the priest: 15:15
+And the priest shall offer them, the one for a sin offering, and the
+other for a burnt offering; and the priest shall make an atonement for
+him before the LORD for his issue.
+
+15:16 And if any man's seed of copulation go out from him, then he
+shall wash all his flesh in water, and be unclean until the even.
+
+15:17 And every garment, and every skin, whereon is the seed of
+copulation, shall be washed with water, and be unclean until the even.
+
+15:18 The woman also with whom man shall lie with seed of copulation,
+they shall both bathe themselves in water, and be unclean until the
+even.
+
+15:19 And if a woman have an issue, and her issue in her flesh be
+blood, she shall be put apart seven days: and whosoever toucheth her
+shall be unclean until the even.
+
+15:20 And every thing that she lieth upon in her separation shall be
+unclean: every thing also that she sitteth upon shall be unclean.
+
+15:21 And whosoever toucheth her bed shall wash his clothes, and bathe
+himself in water, and be unclean until the even.
+
+15:22 And whosoever toucheth any thing that she sat upon shall wash
+his clothes, and bathe himself in water, and be unclean until the
+even.
+
+15:23 And if it be on her bed, or on any thing whereon she sitteth,
+when he toucheth it, he shall be unclean until the even.
+
+15:24 And if any man lie with her at all, and her flowers be upon him,
+he shall be unclean seven days; and all the bed whereon he lieth shall
+be unclean.
+
+15:25 And if a woman have an issue of her blood many days out of the
+time of her separation, or if it run beyond the time of her
+separation; all the days of the issue of her uncleanness shall be as
+the days of her separation: she shall be unclean.
+
+15:26 Every bed whereon she lieth all the days of her issue shall be
+unto her as the bed of her separation: and whatsoever she sitteth upon
+shall be unclean, as the uncleanness of her separation.
+
+15:27 And whosoever toucheth those things shall be unclean, and shall
+wash his clothes, and bathe himself in water, and be unclean until the
+even.
+
+15:28 But if she be cleansed of her issue, then she shall number to
+herself seven days, and after that she shall be clean.
+
+15:29 And on the eighth day she shall take unto her two turtles, or
+two young pigeons, and bring them unto the priest, to the door of the
+tabernacle of the congregation.
+
+15:30 And the priest shall offer the one for a sin offering, and the
+other for a burnt offering; and the priest shall make an atonement for
+her before the LORD for the issue of her uncleanness.
+
+15:31 Thus shall ye separate the children of Israel from their
+uncleanness; that they die not in their uncleanness, when they defile
+my tabernacle that is among them.
+
+15:32 This is the law of him that hath an issue, and of him whose seed
+goeth from him, and is defiled therewith; 15:33 And of her that is
+sick of her flowers, and of him that hath an issue, of the man, and of
+the woman, and of him that lieth with her that is unclean.
+
+16:1 And the LORD spake unto Moses after the death of the two sons of
+Aaron, when they offered before the LORD, and died; 16:2 And the LORD
+said unto Moses, Speak unto Aaron thy brother, that he come not at all
+times into the holy place within the vail before the mercy seat, which
+is upon the ark; that he die not: for I will appear in the cloud upon
+the mercy seat.
+
+16:3 Thus shall Aaron come into the holy place: with a young bullock
+for a sin offering, and a ram for a burnt offering.
+
+16:4 He shall put on the holy linen coat, and he shall have the linen
+breeches upon his flesh, and shall be girded with a linen girdle, and
+with the linen mitre shall he be attired: these are holy garments;
+therefore shall he wash his flesh in water, and so put them on.
+
+16:5 And he shall take of the congregation of the children of Israel
+two kids of the goats for a sin offering, and one ram for a burnt
+offering.
+
+16:6 And Aaron shall offer his bullock of the sin offering, which is
+for himself, and make an atonement for himself, and for his house.
+
+16:7 And he shall take the two goats, and present them before the LORD
+at the door of the tabernacle of the congregation.
+
+16:8 And Aaron shall cast lots upon the two goats; one lot for the
+LORD, and the other lot for the scapegoat.
+
+16:9 And Aaron shall bring the goat upon which the LORD's lot fell,
+and offer him for a sin offering.
+
+16:10 But the goat, on which the lot fell to be the scapegoat, shall
+be presented alive before the LORD, to make an atonement with him, and
+to let him go for a scapegoat into the wilderness.
+
+16:11 And Aaron shall bring the bullock of the sin offering, which is
+for himself, and shall make an atonement for himself, and for his
+house, and shall kill the bullock of the sin offering which is for
+himself: 16:12 And he shall take a censer full of burning coals of
+fire from off the altar before the LORD, and his hands full of sweet
+incense beaten small, and bring it within the vail: 16:13 And he shall
+put the incense upon the fire before the LORD, that the cloud of the
+incense may cover the mercy seat that is upon the testimony, that he
+die not: 16:14 And he shall take of the blood of the bullock, and
+sprinkle it with his finger upon the mercy seat eastward; and before
+the mercy seat shall he sprinkle of the blood with his finger seven
+times.
+
+16:15 Then shall he kill the goat of the sin offering, that is for the
+people, and bring his blood within the vail, and do with that blood as
+he did with the blood of the bullock, and sprinkle it upon the mercy
+seat, and before the mercy seat: 16:16 And he shall make an atonement
+for the holy place, because of the uncleanness of the children of
+Israel, and because of their transgressions in all their sins: and so
+shall he do for the tabernacle of the congregation, that remaineth
+among them in the midst of their uncleanness.
+
+16:17 And there shall be no man in the tabernacle of the congregation
+when he goeth in to make an atonement in the holy place, until he come
+out, and have made an atonement for himself, and for his household,
+and for all the congregation of Israel.
+
+16:18 And he shall go out unto the altar that is before the LORD, and
+make an atonement for it; and shall take of the blood of the bullock,
+and of the blood of the goat, and put it upon the horns of the altar
+round about.
+
+16:19 And he shall sprinkle of the blood upon it with his finger seven
+times, and cleanse it, and hallow it from the uncleanness of the
+children of Israel.
+
+16:20 And when he hath made an end of reconciling the holy place, and
+the tabernacle of the congregation, and the altar, he shall bring the
+live goat: 16:21 And Aaron shall lay both his hands upon the head of
+the live goat, and confess over him all the iniquities of the children
+of Israel, and all their transgressions in all their sins, putting
+them upon the head of the goat, and shall send him away by the hand of
+a fit man into the wilderness: 16:22 And the goat shall bear upon him
+all their iniquities unto a land not inhabited: and he shall let go
+the goat in the wilderness.
+
+16:23 And Aaron shall come into the tabernacle of the congregation,
+and shall put off the linen garments, which he put on when he went
+into the holy place, and shall leave them there: 16:24 And he shall
+wash his flesh with water in the holy place, and put on his garments,
+and come forth, and offer his burnt offering, and the burnt offering
+of the people, and make an atonement for himself, and for the people.
+
+16:25 And the fat of the sin offering shall he burn upon the altar.
+
+16:26 And he that let go the goat for the scapegoat shall wash his
+clothes, and bathe his flesh in water, and afterward come into the
+camp.
+
+16:27 And the bullock for the sin offering, and the goat for the sin
+offering, whose blood was brought in to make atonement in the holy
+place, shall one carry forth without the camp; and they shall burn in
+the fire their skins, and their flesh, and their dung.
+
+16:28 And he that burneth them shall wash his clothes, and bathe his
+flesh in water, and afterward he shall come into the camp.
+
+16:29 And this shall be a statute for ever unto you: that in the
+seventh month, on the tenth day of the month, ye shall afflict your
+souls, and do no work at all, whether it be one of your own country,
+or a stranger that sojourneth among you: 16:30 For on that day shall
+the priest make an atonement for you, to cleanse you, that ye may be
+clean from all your sins before the LORD.
+
+16:31 It shall be a sabbath of rest unto you, and ye shall afflict
+your souls, by a statute for ever.
+
+16:32 And the priest, whom he shall anoint, and whom he shall
+consecrate to minister in the priest's office in his father's stead,
+shall make the atonement, and shall put on the linen clothes, even the
+holy garments: 16:33 And he shall make an atonement for the holy
+sanctuary, and he shall make an atonement for the tabernacle of the
+congregation, and for the altar, and he shall make an atonement for
+the priests, and for all the people of the congregation.
+
+16:34 And this shall be an everlasting statute unto you, to make an
+atonement for the children of Israel for all their sins once a year.
+And he did as the LORD commanded Moses.
+
+17:1 And the LORD spake unto Moses, saying, 17:2 Speak unto Aaron, and
+unto his sons, and unto all the children of Israel, and say unto them;
+This is the thing which the LORD hath commanded, saying, 17:3 What man
+soever there be of the house of Israel, that killeth an ox, or lamb,
+or goat, in the camp, or that killeth it out of the camp, 17:4 And
+bringeth it not unto the door of the tabernacle of the congregation,
+to offer an offering unto the LORD before the tabernacle of the LORD;
+blood shall be imputed unto that man; he hath shed blood; and that man
+shall be cut off from among his people: 17:5 To the end that the
+children of Israel may bring their sacrifices, which they offer in the
+open field, even that they may bring them unto the LORD, unto the door
+of the tabernacle of the congregation, unto the priest, and offer them
+for peace offerings unto the LORD.
+
+17:6 And the priest shall sprinkle the blood upon the altar of the
+LORD at the door of the tabernacle of the congregation, and burn the
+fat for a sweet savour unto the LORD.
+
+17:7 And they shall no more offer their sacrifices unto devils, after
+whom they have gone a whoring. This shall be a statute for ever unto
+them throughout their generations.
+
+17:8 And thou shalt say unto them, Whatsoever man there be of the
+house of Israel, or of the strangers which sojourn among you, that
+offereth a burnt offering or sacrifice, 17:9 And bringeth it not unto
+the door of the tabernacle of the congregation, to offer it unto the
+LORD; even that man shall be cut off from among his people.
+
+17:10 And whatsoever man there be of the house of Israel, or of the
+strangers that sojourn among you, that eateth any manner of blood; I
+will even set my face against that soul that eateth blood, and will
+cut him off from among his people.
+
+17:11 For the life of the flesh is in the blood: and I have given it
+to you upon the altar to make an atonement for your souls: for it is
+the blood that maketh an atonement for the soul.
+
+17:12 Therefore I said unto the children of Israel, No soul of you
+shall eat blood, neither shall any stranger that sojourneth among you
+eat blood.
+
+17:13 And whatsoever man there be of the children of Israel, or of the
+strangers that sojourn among you, which hunteth and catcheth any beast
+or fowl that may be eaten; he shall even pour out the blood thereof,
+and cover it with dust.
+
+17:14 For it is the life of all flesh; the blood of it is for the life
+thereof: therefore I said unto the children of Israel, Ye shall eat
+the blood of no manner of flesh: for the life of all flesh is the
+blood thereof: whosoever eateth it shall be cut off.
+
+17:15 And every soul that eateth that which died of itself, or that
+which was torn with beasts, whether it be one of your own country, or
+a stranger, he shall both wash his clothes, and bathe himself in
+water, and be unclean until the even: then shall he be clean.
+
+17:16 But if he wash them not, nor bathe his flesh; then he shall bear
+his iniquity.
+
+18:1 And the LORD spake unto Moses, saying, 18:2 Speak unto the
+children of Israel, and say unto them, I am the LORD your God.
+
+18:3 After the doings of the land of Egypt, wherein ye dwelt, shall ye
+not do: and after the doings of the land of Canaan, whither I bring
+you, shall ye not do: neither shall ye walk in their ordinances.
+
+18:4 Ye shall do my judgments, and keep mine ordinances, to walk
+therein: I am the LORD your God.
+
+18:5 Ye shall therefore keep my statutes, and my judgments: which if a
+man do, he shall live in them: I am the LORD.
+
+18:6 None of you shall approach to any that is near of kin to him, to
+uncover their nakedness: I am the LORD.
+
+18:7 The nakedness of thy father, or the nakedness of thy mother,
+shalt thou not uncover: she is thy mother; thou shalt not uncover her
+nakedness.
+
+18:8 The nakedness of thy father's wife shalt thou not uncover: it is
+thy father's nakedness.
+
+18:9 The nakedness of thy sister, the daughter of thy father, or
+daughter of thy mother, whether she be born at home, or born abroad,
+even their nakedness thou shalt not uncover.
+
+18:10 The nakedness of thy son's daughter, or of thy daughter's
+daughter, even their nakedness thou shalt not uncover: for theirs is
+thine own nakedness.
+
+18:11 The nakedness of thy father's wife's daughter, begotten of thy
+father, she is thy sister, thou shalt not uncover her nakedness.
+
+18:12 Thou shalt not uncover the nakedness of thy father's sister: she
+is thy father's near kinswoman.
+
+18:13 Thou shalt not uncover the nakedness of thy mother's sister: for
+she is thy mother's near kinswoman.
+
+18:14 Thou shalt not uncover the nakedness of thy father's brother,
+thou shalt not approach to his wife: she is thine aunt.
+
+18:15 Thou shalt not uncover the nakedness of thy daughter in law: she
+is thy son's wife; thou shalt not uncover her nakedness.
+
+18:16 Thou shalt not uncover the nakedness of thy brother's wife: it
+is thy brother's nakedness.
+
+18:17 Thou shalt not uncover the nakedness of a woman and her
+daughter, neither shalt thou take her son's daughter, or her
+daughter's daughter, to uncover her nakedness; for they are her near
+kinswomen: it is wickedness.
+
+18:18 Neither shalt thou take a wife to her sister, to vex her, to
+uncover her nakedness, beside the other in her life time.
+
+18:19 Also thou shalt not approach unto a woman to uncover her
+nakedness, as long as she is put apart for her uncleanness.
+
+18:20 Moreover thou shalt not lie carnally with thy neighbour's wife,
+to defile thyself with her.
+
+18:21 And thou shalt not let any of thy seed pass through the fire to
+Molech, neither shalt thou profane the name of thy God: I am the LORD.
+
+18:22 Thou shalt not lie with mankind, as with womankind: it is
+abomination.
+
+18:23 Neither shalt thou lie with any beast to defile thyself
+therewith: neither shall any woman stand before a beast to lie down
+thereto: it is confusion.
+
+18:24 Defile not ye yourselves in any of these things: for in all
+these the nations are defiled which I cast out before you: 18:25 And
+the land is defiled: therefore I do visit the iniquity thereof upon
+it, and the land itself vomiteth out her inhabitants.
+
+18:26 Ye shall therefore keep my statutes and my judgments, and shall
+not commit any of these abominations; neither any of your own nation,
+nor any stranger that sojourneth among you: 18:27 (For all these
+abominations have the men of the land done, which were before you, and
+the land is defiled;) 18:28 That the land spue not you out also, when
+ye defile it, as it spued out the nations that were before you.
+
+18:29 For whosoever shall commit any of these abominations, even the
+souls that commit them shall be cut off from among their people.
+
+18:30 Therefore shall ye keep mine ordinance, that ye commit not any
+one of these abominable customs, which were committed before you, and
+that ye defile not yourselves therein: I am the LORD your God.
+
+19:1 And the LORD spake unto Moses, saying, 19:2 Speak unto all the
+congregation of the children of Israel, and say unto them, Ye shall be
+holy: for I the LORD your God am holy.
+
+19:3 Ye shall fear every man his mother, and his father, and keep my
+sabbaths: I am the LORD your God.
+
+19:4 Turn ye not unto idols, nor make to yourselves molten gods: I am
+the LORD your God.
+
+19:5 And if ye offer a sacrifice of peace offerings unto the LORD, ye
+shall offer it at your own will.
+
+19:6 It shall be eaten the same day ye offer it, and on the morrow:
+and if ought remain until the third day, it shall be burnt in the
+fire.
+
+19:7 And if it be eaten at all on the third day, it is abominable; it
+shall not be accepted.
+
+19:8 Therefore every one that eateth it shall bear his iniquity,
+because he hath profaned the hallowed thing of the LORD: and that soul
+shall be cut off from among his people.
+
+19:9 And when ye reap the harvest of your land, thou shalt not wholly
+reap the corners of thy field, neither shalt thou gather the gleanings
+of thy harvest.
+
+19:10 And thou shalt not glean thy vineyard, neither shalt thou gather
+every grape of thy vineyard; thou shalt leave them for the poor and
+stranger: I am the LORD your God.
+
+19:11 Ye shall not steal, neither deal falsely, neither lie one to
+another.
+
+19:12 And ye shall not swear by my name falsely, neither shalt thou
+profane the name of thy God: I am the LORD.
+
+19:13 Thou shalt not defraud thy neighbour, neither rob him: the wages
+of him that is hired shall not abide with thee all night until the
+morning.
+
+19:14 Thou shalt not curse the deaf, nor put a stumblingblock before
+the blind, but shalt fear thy God: I am the LORD.
+
+19:15 Ye shall do no unrighteousness in judgment: thou shalt not
+respect the person of the poor, nor honor the person of the mighty:
+but in righteousness shalt thou judge thy neighbour.
+
+19:16 Thou shalt not go up and down as a talebearer among thy people:
+neither shalt thou stand against the blood of thy neighbour; I am the
+LORD.
+
+19:17 Thou shalt not hate thy brother in thine heart: thou shalt in
+any wise rebuke thy neighbour, and not suffer sin upon him.
+
+19:18 Thou shalt not avenge, nor bear any grudge against the children
+of thy people, but thou shalt love thy neighbour as thyself: I am the
+LORD.
+
+19:19 Ye shall keep my statutes. Thou shalt not let thy cattle gender
+with a diverse kind: thou shalt not sow thy field with mingled seed:
+neither shall a garment mingled of linen and woollen come upon thee.
+
+19:20 And whosoever lieth carnally with a woman, that is a bondmaid,
+betrothed to an husband, and not at all redeemed, nor freedom given
+her; she shall be scourged; they shall not be put to death, because
+she was not free.
+
+19:21 And he shall bring his trespass offering unto the LORD, unto the
+door of the tabernacle of the congregation, even a ram for a trespass
+offering.
+
+19:22 And the priest shall make an atonement for him with the ram of
+the trespass offering before the LORD for his sin which he hath done:
+and the sin which he hath done shall be forgiven him.
+
+19:23 And when ye shall come into the land, and shall have planted all
+manner of trees for food, then ye shall count the fruit thereof as
+uncircumcised: three years shall it be as uncircumcised unto you: it
+shall not be eaten of.
+
+19:24 But in the fourth year all the fruit thereof shall be holy to
+praise the LORD withal.
+
+19:25 And in the fifth year shall ye eat of the fruit thereof, that it
+may yield unto you the increase thereof: I am the LORD your God.
+
+19:26 Ye shall not eat any thing with the blood: neither shall ye use
+enchantment, nor observe times.
+
+19:27 Ye shall not round the corners of your heads, neither shalt thou
+mar the corners of thy beard.
+
+19:28 Ye shall not make any cuttings in your flesh for the dead, nor
+print any marks upon you: I am the LORD.
+
+19:29 Do not prostitute thy daughter, to cause her to be a whore; lest
+the land fall to whoredom, and the land become full of wickedness.
+
+19:30 Ye shall keep my sabbaths, and reverence my sanctuary: I am the
+LORD.
+
+19:31 Regard not them that have familiar spirits, neither seek after
+wizards, to be defiled by them: I am the LORD your God.
+
+19:32 Thou shalt rise up before the hoary head, and honour the face of
+the old man, and fear thy God: I am the LORD.
+
+19:33 And if a stranger sojourn with thee in your land, ye shall not
+vex him.
+
+19:34 But the stranger that dwelleth with you shall be unto you as one
+born among you, and thou shalt love him as thyself; for ye were
+strangers in the land of Egypt: I am the LORD your God.
+
+19:35 Ye shall do no unrighteousness in judgment, in meteyard, in
+weight, or in measure.
+
+19:36 Just balances, just weights, a just ephah, and a just hin, shall
+ye have: I am the LORD your God, which brought you out of the land of
+Egypt.
+
+19:37 Therefore shall ye observe all my statutes, and all my
+judgments, and do them: I am the LORD.
+
+20:1 And the LORD spake unto Moses, saying, 20:2 Again, thou shalt say
+to the children of Israel, Whosoever he be of the children of Israel,
+or of the strangers that sojourn in Israel, that giveth any of his
+seed unto Molech; he shall surely be put to death: the people of the
+land shall stone him with stones.
+
+20:3 And I will set my face against that man, and will cut him off
+from among his people; because he hath given of his seed unto Molech,
+to defile my sanctuary, and to profane my holy name.
+
+20:4 And if the people of the land do any ways hide their eyes from
+the man, when he giveth of his seed unto Molech, and kill him not:
+20:5 Then I will set my face against that man, and against his family,
+and will cut him off, and all that go a whoring after him, to commit
+whoredom with Molech, from among their people.
+
+20:6 And the soul that turneth after such as have familiar spirits,
+and after wizards, to go a whoring after them, I will even set my face
+against that soul, and will cut him off from among his people.
+
+20:7 Sanctify yourselves therefore, and be ye holy: for I am the LORD
+your God.
+
+20:8 And ye shall keep my statutes, and do them: I am the LORD which
+sanctify you.
+
+20:9 For every one that curseth his father or his mother shall be
+surely put to death: he hath cursed his father or his mother; his
+blood shall be upon him.
+
+20:10 And the man that committeth adultery with another man's wife,
+even he that committeth adultery with his neighbour's wife, the
+adulterer and the adulteress shall surely be put to death.
+
+20:11 And the man that lieth with his father's wife hath uncovered his
+father's nakedness: both of them shall surely be put to death; their
+blood shall be upon them.
+
+20:12 And if a man lie with his daughter in law, both of them shall
+surely be put to death: they have wrought confusion; their blood shall
+be upon them.
+
+20:13 If a man also lie with mankind, as he lieth with a woman, both
+of them have committed an abomination: they shall surely be put to
+death; their blood shall be upon them.
+
+20:14 And if a man take a wife and her mother, it is wickedness: they
+shall be burnt with fire, both he and they; that there be no
+wickedness among you.
+
+20:15 And if a man lie with a beast, he shall surely be put to death:
+and ye shall slay the beast.
+
+20:16 And if a woman approach unto any beast, and lie down thereto,
+thou shalt kill the woman, and the beast: they shall surely be put to
+death; their blood shall be upon them.
+
+20:17 And if a man shall take his sister, his father's daughter, or
+his mother's daughter, and see her nakedness, and she see his
+nakedness; it is a wicked thing; and they shall be cut off in the
+sight of their people: he hath uncovered his sister's nakedness; he
+shall bear his iniquity.
+
+20:18 And if a man shall lie with a woman having her sickness, and
+shall uncover her nakedness; he hath discovered her fountain, and she
+hath uncovered the fountain of her blood: and both of them shall be
+cut off from among their people.
+
+20:19 And thou shalt not uncover the nakedness of thy mother's sister,
+nor of thy father's sister: for he uncovereth his near kin: they shall
+bear their iniquity.
+
+20:20 And if a man shall lie with his uncle's wife, he hath uncovered
+his uncle's nakedness: they shall bear their sin; they shall die
+childless.
+
+20:21 And if a man shall take his brother's wife, it is an unclean
+thing: he hath uncovered his brother's nakedness; they shall be
+childless.
+
+20:22 Ye shall therefore keep all my statutes, and all my judgments,
+and do them: that the land, whither I bring you to dwell therein, spue
+you not out.
+
+20:23 And ye shall not walk in the manners of the nation, which I cast
+out before you: for they committed all these things, and therefore I
+abhorred them.
+
+20:24 But I have said unto you, Ye shall inherit their land, and I
+will give it unto you to possess it, a land that floweth with milk and
+honey: I am the LORD your God, which have separated you from other
+people.
+
+20:25 Ye shall therefore put difference between clean beasts and
+unclean, and between unclean fowls and clean: and ye shall not make
+your souls abominable by beast, or by fowl, or by any manner of living
+thing that creepeth on the ground, which I have separated from you as
+unclean.
+
+20:26 And ye shall be holy unto me: for I the LORD am holy, and have
+severed you from other people, that ye should be mine.
+
+20:27 A man also or woman that hath a familiar spirit, or that is a
+wizard, shall surely be put to death: they shall stone them with
+stones: their blood shall be upon them.
+
+21:1 And the LORD said unto Moses, Speak unto the priests the sons of
+Aaron, and say unto them, There shall none be defiled for the dead
+among his people: 21:2 But for his kin, that is near unto him, that
+is, for his mother, and for his father, and for his son, and for his
+daughter, and for his brother.
+
+21:3 And for his sister a virgin, that is nigh unto him, which hath
+had no husband; for her may he be defiled.
+
+21:4 But he shall not defile himself, being a chief man among his
+people, to profane himself.
+
+21:5 They shall not make baldness upon their head, neither shall they
+shave off the corner of their beard, nor make any cuttings in their
+flesh.
+
+21:6 They shall be holy unto their God, and not profane the name of
+their God: for the offerings of the LORD made by fire, and the bread
+of their God, they do offer: therefore they shall be holy.
+
+21:7 They shall not take a wife that is a whore, or profane; neither
+shall they take a woman put away from her husband: for he is holy unto
+his God.
+
+21:8 Thou shalt sanctify him therefore; for he offereth the bread of
+thy God: he shall be holy unto thee: for I the LORD, which sanctify
+you, am holy.
+
+21:9 And the daughter of any priest, if she profane herself by playing
+the whore, she profaneth her father: she shall be burnt with fire.
+
+21:10 And he that is the high priest among his brethren, upon whose
+head the anointing oil was poured, and that is consecrated to put on
+the garments, shall not uncover his head, nor rend his clothes; 21:11
+Neither shall he go in to any dead body, nor defile himself for his
+father, or for his mother; 21:12 Neither shall he go out of the
+sanctuary, nor profane the sanctuary of his God; for the crown of the
+anointing oil of his God is upon him: I am the LORD.
+
+21:13 And he shall take a wife in her virginity.
+
+21:14 A widow, or a divorced woman, or profane, or an harlot, these
+shall he not take: but he shall take a virgin of his own people to
+wife.
+
+21:15 Neither shall he profane his seed among his people: for I the
+LORD do sanctify him.
+
+21:16 And the LORD spake unto Moses, saying, 21:17 Speak unto Aaron,
+saying, Whosoever he be of thy seed in their generations that hath any
+blemish, let him not approach to offer the bread of his God.
+
+21:18 For whatsoever man he be that hath a blemish, he shall not
+approach: a blind man, or a lame, or he that hath a flat nose, or any
+thing superfluous, 21:19 Or a man that is brokenfooted, or
+brokenhanded, 21:20 Or crookbackt, or a dwarf, or that hath a blemish
+in his eye, or be scurvy, or scabbed, or hath his stones broken; 21:21
+No man that hath a blemish of the seed of Aaron the priest shall come
+nigh to offer the offerings of the LORD made by fire: he hath a
+blemish; he shall not come nigh to offer the bread of his God.
+
+21:22 He shall eat the bread of his God, both of the most holy, and of
+the holy.
+
+21:23 Only he shall not go in unto the vail, nor come nigh unto the
+altar, because he hath a blemish; that he profane not my sanctuaries:
+for I the LORD do sanctify them.
+
+21:24 And Moses told it unto Aaron, and to his sons, and unto all the
+children of Israel.
+
+22:1 And the LORD spake unto Moses, saying, 22:2 Speak unto Aaron and
+to his sons, that they separate themselves from the holy things of the
+children of Israel, and that they profane not my holy name in those
+things which they hallow unto me: I am the LORD.
+
+22:3 Say unto them, Whosoever he be of all your seed among your
+generations, that goeth unto the holy things, which the children of
+Israel hallow unto the LORD, having his uncleanness upon him, that
+soul shall be cut off from my presence: I am the LORD.
+
+22:4 What man soever of the seed of Aaron is a leper, or hath a
+running issue; he shall not eat of the holy things, until he be clean.
+And whoso toucheth any thing that is unclean by the dead, or a man
+whose seed goeth from him; 22:5 Or whosoever toucheth any creeping
+thing, whereby he may be made unclean, or a man of whom he may take
+uncleanness, whatsoever uncleanness he hath; 22:6 The soul which hath
+touched any such shall be unclean until even, and shall not eat of the
+holy things, unless he wash his flesh with water.
+
+22:7 And when the sun is down, he shall be clean, and shall afterward
+eat of the holy things; because it is his food.
+
+22:8 That which dieth of itself, or is torn with beasts, he shall not
+eat to defile himself therewith; I am the LORD.
+
+22:9 They shall therefore keep mine ordinance, lest they bear sin for
+it, and die therefore, if they profane it: I the LORD do sanctify
+them.
+
+22:10 There shall no stranger eat of the holy thing: a sojourner of
+the priest, or an hired servant, shall not eat of the holy thing.
+
+22:11 But if the priest buy any soul with his money, he shall eat of
+it, and he that is born in his house: they shall eat of his meat.
+
+22:12 If the priest's daughter also be married unto a stranger, she
+may not eat of an offering of the holy things.
+
+22:13 But if the priest's daughter be a widow, or divorced, and have
+no child, and is returned unto her father's house, as in her youth,
+she shall eat of her father's meat: but there shall be no stranger eat
+thereof.
+
+22:14 And if a man eat of the holy thing unwittingly, then he shall
+put the fifth part thereof unto it, and shall give it unto the priest
+with the holy thing.
+
+22:15 And they shall not profane the holy things of the children of
+Israel, which they offer unto the LORD; 22:16 Or suffer them to bear
+the iniquity of trespass, when they eat their holy things: for I the
+LORD do sanctify them.
+
+22:17 And the LORD spake unto Moses, saying, 22:18 Speak unto Aaron,
+and to his sons, and unto all the children of Israel, and say unto
+them, Whatsoever he be of the house of Israel, or of the strangers in
+Israel, that will offer his oblation for all his vows, and for all his
+freewill offerings, which they will offer unto the LORD for a burnt
+offering; 22:19 Ye shall offer at your own will a male without
+blemish, of the beeves, of the sheep, or of the goats.
+
+22:20 But whatsoever hath a blemish, that shall ye not offer: for it
+shall not be acceptable for you.
+
+22:21 And whosoever offereth a sacrifice of peace offerings unto the
+LORD to accomplish his vow, or a freewill offering in beeves or sheep,
+it shall be perfect to be accepted; there shall be no blemish therein.
+
+22:22 Blind, or broken, or maimed, or having a wen, or scurvy, or
+scabbed, ye shall not offer these unto the LORD, nor make an offering
+by fire of them upon the altar unto the LORD.
+
+22:23 Either a bullock or a lamb that hath any thing superfluous or
+lacking in his parts, that mayest thou offer for a freewill offering;
+but for a vow it shall not be accepted.
+
+22:24 Ye shall not offer unto the LORD that which is bruised, or
+crushed, or broken, or cut; neither shall ye make any offering thereof
+in your land.
+
+22:25 Neither from a stranger's hand shall ye offer the bread of your
+God of any of these; because their corruption is in them, and
+blemishes be in them: they shall not be accepted for you.
+
+22:26 And the LORD spake unto Moses, saying, 22:27 When a bullock, or
+a sheep, or a goat, is brought forth, then it shall be seven days
+under the dam; and from the eighth day and thenceforth it shall be
+accepted for an offering made by fire unto the LORD.
+
+22:28 And whether it be cow, or ewe, ye shall not kill it and her
+young both in one day.
+
+22:29 And when ye will offer a sacrifice of thanksgiving unto the
+LORD, offer it at your own will.
+
+22:30 On the same day it shall be eaten up; ye shall leave none of it
+until the morrow: I am the LORD.
+
+22:31 Therefore shall ye keep my commandments, and do them: I am the
+LORD.
+
+22:32 Neither shall ye profane my holy name; but I will be hallowed
+among the children of Israel: I am the LORD which hallow you, 22:33
+That brought you out of the land of Egypt, to be your God: I am the
+LORD.
+
+23:1 And the LORD spake unto Moses, saying, 23:2 Speak unto the
+children of Israel, and say unto them, Concerning the feasts of the
+LORD, which ye shall proclaim to be holy convocations, even these are
+my feasts.
+
+23:3 Six days shall work be done: but the seventh day is the sabbath
+of rest, an holy convocation; ye shall do no work therein: it is the
+sabbath of the LORD in all your dwellings.
+
+23:4 These are the feasts of the LORD, even holy convocations, which
+ye shall proclaim in their seasons.
+
+23:5 In the fourteenth day of the first month at even is the LORD's
+passover.
+
+23:6 And on the fifteenth day of the same month is the feast of
+unleavened bread unto the LORD: seven days ye must eat unleavened
+bread.
+
+23:7 In the first day ye shall have an holy convocation: ye shall do
+no servile work therein.
+
+23:8 But ye shall offer an offering made by fire unto the LORD seven
+days: in the seventh day is an holy convocation: ye shall do no
+servile work therein.
+
+23:9 And the LORD spake unto Moses, saying, 23:10 Speak unto the
+children of Israel, and say unto them, When ye be come into the land
+which I give unto you, and shall reap the harvest thereof, then ye
+shall bring a sheaf of the firstfruits of your harvest unto the
+priest: 23:11 And he shall wave the sheaf before the LORD, to be
+accepted for you: on the morrow after the sabbath the priest shall
+wave it.
+
+23:12 And ye shall offer that day when ye wave the sheaf an he lamb
+without blemish of the first year for a burnt offering unto the LORD.
+
+23:13 And the meat offering thereof shall be two tenth deals of fine
+flour mingled with oil, an offering made by fire unto the LORD for a
+sweet savour: and the drink offering thereof shall be of wine, the
+fourth part of an hin.
+
+23:14 And ye shall eat neither bread, nor parched corn, nor green
+ears, until the selfsame day that ye have brought an offering unto
+your God: it shall be a statute for ever throughout your generations
+in all your dwellings.
+
+23:15 And ye shall count unto you from the morrow after the sabbath,
+from the day that ye brought the sheaf of the wave offering; seven
+sabbaths shall be complete: 23:16 Even unto the morrow after the
+seventh sabbath shall ye number fifty days; and ye shall offer a new
+meat offering unto the LORD.
+
+23:17 Ye shall bring out of your habitations two wave loaves of two
+tenth deals; they shall be of fine flour; they shall be baken with
+leaven; they are the firstfruits unto the LORD.
+
+23:18 And ye shall offer with the bread seven lambs without blemish of
+the first year, and one young bullock, and two rams: they shall be for
+a burnt offering unto the LORD, with their meat offering, and their
+drink offerings, even an offering made by fire, of sweet savour unto
+the LORD.
+
+23:19 Then ye shall sacrifice one kid of the goats for a sin offering,
+and two lambs of the first year for a sacrifice of peace offerings.
+
+23:20 And the priest shall wave them with the bread of the firstfruits
+for a wave offering before the LORD, with the two lambs: they shall be
+holy to the LORD for the priest.
+
+23:21 And ye shall proclaim on the selfsame day, that it may be an
+holy convocation unto you: ye shall do no servile work therein: it
+shall be a statute for ever in all your dwellings throughout your
+generations.
+
+23:22 And when ye reap the harvest of your land, thou shalt not make
+clean riddance of the corners of thy field when thou reapest, neither
+shalt thou gather any gleaning of thy harvest: thou shalt leave them
+unto the poor, and to the stranger: I am the LORD your God.
+
+23:23 And the LORD spake unto Moses, saying, 23:24 Speak unto the
+children of Israel, saying, In the seventh month, in the first day of
+the month, shall ye have a sabbath, a memorial of blowing of trumpets,
+an holy convocation.
+
+23:25 Ye shall do no servile work therein: but ye shall offer an
+offering made by fire unto the LORD.
+
+23:26 And the LORD spake unto Moses, saying, 23:27 Also on the tenth
+day of this seventh month there shall be a day of atonement: it shall
+be an holy convocation unto you; and ye shall afflict your souls, and
+offer an offering made by fire unto the LORD.
+
+23:28 And ye shall do no work in that same day: for it is a day of
+atonement, to make an atonement for you before the LORD your God.
+
+23:29 For whatsoever soul it be that shall not be afflicted in that
+same day, he shall be cut off from among his people.
+
+23:30 And whatsoever soul it be that doeth any work in that same day,
+the same soul will I destroy from among his people.
+
+23:31 Ye shall do no manner of work: it shall be a statute for ever
+throughout your generations in all your dwellings.
+
+23:32 It shall be unto you a sabbath of rest, and ye shall afflict
+your souls: in the ninth day of the month at even, from even unto
+even, shall ye celebrate your sabbath.
+
+23:33 And the LORD spake unto Moses, saying, 23:34 Speak unto the
+children of Israel, saying, The fifteenth day of this seventh month
+shall be the feast of tabernacles for seven days unto the LORD.
+
+23:35 On the first day shall be an holy convocation: ye shall do no
+servile work therein.
+
+23:36 Seven days ye shall offer an offering made by fire unto the
+LORD: on the eighth day shall be an holy convocation unto you; and ye
+shall offer an offering made by fire unto the LORD: it is a solemn
+assembly; and ye shall do no servile work therein.
+
+23:37 These are the feasts of the LORD, which ye shall proclaim to be
+holy convocations, to offer an offering made by fire unto the LORD, a
+burnt offering, and a meat offering, a sacrifice, and drink offerings,
+every thing upon his day: 23:38 Beside the sabbaths of the LORD, and
+beside your gifts, and beside all your vows, and beside all your
+freewill offerings, which ye give unto the LORD.
+
+23:39 Also in the fifteenth day of the seventh month, when ye have
+gathered in the fruit of the land, ye shall keep a feast unto the LORD
+seven days: on the first day shall be a sabbath, and on the eighth day
+shall be a sabbath.
+
+23:40 And ye shall take you on the first day the boughs of goodly
+trees, branches of palm trees, and the boughs of thick trees, and
+willows of the brook; and ye shall rejoice before the LORD your God
+seven days.
+
+23:41 And ye shall keep it a feast unto the LORD seven days in the
+year.
+
+It shall be a statute for ever in your generations: ye shall celebrate
+it in the seventh month.
+
+23:42 Ye shall dwell in booths seven days; all that are Israelites
+born shall dwell in booths: 23:43 That your generations may know that
+I made the children of Israel to dwell in booths, when I brought them
+out of the land of Egypt: I am the LORD your God.
+
+23:44 And Moses declared unto the children of Israel the feasts of the
+LORD.
+
+24:1 And the LORD spake unto Moses, saying, 24:2 Command the children
+of Israel, that they bring unto thee pure oil olive beaten for the
+light, to cause the lamps to burn continually.
+
+24:3 Without the vail of the testimony, in the tabernacle of the
+congregation, shall Aaron order it from the evening unto the morning
+before the LORD continually: it shall be a statute for ever in your
+generations.
+
+24:4 He shall order the lamps upon the pure candlestick before the
+LORD continually.
+
+24:5 And thou shalt take fine flour, and bake twelve cakes thereof:
+two tenth deals shall be in one cake.
+
+24:6 And thou shalt set them in two rows, six on a row, upon the pure
+table before the LORD.
+
+24:7 And thou shalt put pure frankincense upon each row, that it may
+be on the bread for a memorial, even an offering made by fire unto the
+LORD.
+
+24:8 Every sabbath he shall set it in order before the LORD
+continually, being taken from the children of Israel by an everlasting
+covenant.
+
+24:9 And it shall be Aaron's and his sons'; and they shall eat it in
+the holy place: for it is most holy unto him of the offerings of the
+LORD made by fire by a perpetual statute.
+
+24:10 And the son of an Israelitish woman, whose father was an
+Egyptian, went out among the children of Israel: and this son of the
+Israelitish woman and a man of Israel strove together in the camp;
+24:11 And the Israelitish woman's son blasphemed the name of the Lord,
+and cursed. And they brought him unto Moses: (and his mother's name
+was Shelomith, the daughter of Dibri, of the tribe of Dan:) 24:12 And
+they put him in ward, that the mind of the LORD might be shewed them.
+
+24:13 And the LORD spake unto Moses, saying, 24:14 Bring forth him
+that hath cursed without the camp; and let all that heard him lay
+their hands upon his head, and let all the congregation stone him.
+
+24:15 And thou shalt speak unto the children of Israel, saying,
+Whosoever curseth his God shall bear his sin.
+
+24:16 And he that blasphemeth the name of the LORD, he shall surely be
+put to death, and all the congregation shall certainly stone him: as
+well the stranger, as he that is born in the land, when he blasphemeth
+the name of the Lord, shall be put to death.
+
+24:17 And he that killeth any man shall surely be put to death.
+
+24:18 And he that killeth a beast shall make it good; beast for beast.
+
+24:19 And if a man cause a blemish in his neighbour; as he hath done,
+so shall it be done to him; 24:20 Breach for breach, eye for eye,
+tooth for tooth: as he hath caused a blemish in a man, so shall it be
+done to him again.
+
+24:21 And he that killeth a beast, he shall restore it: and he that
+killeth a man, he shall be put to death.
+
+24:22 Ye shall have one manner of law, as well for the stranger, as
+for one of your own country: for I am the LORD your God.
+
+24:23 And Moses spake to the children of Israel, that they should
+bring forth him that had cursed out of the camp, and stone him with
+stones. And the children of Israel did as the LORD commanded Moses.
+
+25:1 And the LORD spake unto Moses in mount Sinai, saying, 25:2 Speak
+unto the children of Israel, and say unto them, When ye come into the
+land which I give you, then shall the land keep a sabbath unto the
+LORD.
+
+25:3 Six years thou shalt sow thy field, and six years thou shalt
+prune thy vineyard, and gather in the fruit thereof; 25:4 But in the
+seventh year shall be a sabbath of rest unto the land, a sabbath for
+the LORD: thou shalt neither sow thy field, nor prune thy vineyard.
+
+25:5 That which groweth of its own accord of thy harvest thou shalt
+not reap, neither gather the grapes of thy vine undressed: for it is a
+year of rest unto the land.
+
+25:6 And the sabbath of the land shall be meat for you; for thee, and
+for thy servant, and for thy maid, and for thy hired servant, and for
+thy stranger that sojourneth with thee.
+
+25:7 And for thy cattle, and for the beast that are in thy land, shall
+all the increase thereof be meat.
+
+25:8 And thou shalt number seven sabbaths of years unto thee, seven
+times seven years; and the space of the seven sabbaths of years shall
+be unto thee forty and nine years.
+
+25:9 Then shalt thou cause the trumpet of the jubile to sound on the
+tenth day of the seventh month, in the day of atonement shall ye make
+the trumpet sound throughout all your land.
+
+25:10 And ye shall hallow the fiftieth year, and proclaim liberty
+throughout all the land unto all the inhabitants thereof: it shall be
+a jubile unto you; and ye shall return every man unto his possession,
+and ye shall return every man unto his family.
+
+25:11 A jubile shall that fiftieth year be unto you: ye shall not sow,
+neither reap that which groweth of itself in it, nor gather the grapes
+in it of thy vine undressed.
+
+25:12 For it is the jubile; it shall be holy unto you: ye shall eat
+the increase thereof out of the field.
+
+25:13 In the year of this jubile ye shall return every man unto his
+possession.
+
+25:14 And if thou sell ought unto thy neighbour, or buyest ought of
+thy neighbour's hand, ye shall not oppress one another: 25:15
+According to the number of years after the jubile thou shalt buy of
+thy neighbour, and according unto the number of years of the fruits he
+shall sell unto thee: 25:16 According to the multitude of years thou
+shalt increase the price thereof, and according to the fewness of
+years thou shalt diminish the price of it: for according to the number
+of the years of the fruits doth he sell unto thee.
+
+25:17 Ye shall not therefore oppress one another; but thou shalt fear
+thy God:for I am the LORD your God.
+
+25:18 Wherefore ye shall do my statutes, and keep my judgments, and do
+them; and ye shall dwell in the land in safety.
+
+25:19 And the land shall yield her fruit, and ye shall eat your fill,
+and dwell therein in safety.
+
+25:20 And if ye shall say, What shall we eat the seventh year? behold,
+we shall not sow, nor gather in our increase: 25:21 Then I will
+command my blessing upon you in the sixth year, and it shall bring
+forth fruit for three years.
+
+25:22 And ye shall sow the eighth year, and eat yet of old fruit until
+the ninth year; until her fruits come in ye shall eat of the old
+store.
+
+25:23 The land shall not be sold for ever: for the land is mine, for
+ye are strangers and sojourners with me.
+
+25:24 And in all the land of your possession ye shall grant a
+redemption for the land.
+
+25:25 If thy brother be waxen poor, and hath sold away some of his
+possession, and if any of his kin come to redeem it, then shall he
+redeem that which his brother sold.
+
+25:26 And if the man have none to redeem it, and himself be able to
+redeem it; 25:27 Then let him count the years of the sale thereof, and
+restore the overplus unto the man to whom he sold it; that he may
+return unto his possession.
+
+25:28 But if he be not able to restore it to him, then that which is
+sold shall remain in the hand of him that hath bought it until the
+year of jubile: and in the jubile it shall go out, and he shall return
+unto his possession.
+
+25:29 And if a man sell a dwelling house in a walled city, then he may
+redeem it within a whole year after it is sold; within a full year may
+he redeem it.
+
+25:30 And if it be not redeemed within the space of a full year, then
+the house that is in the walled city shall be established for ever to
+him that bought it throughout his generations: it shall not go out in
+the jubile.
+
+25:31 But the houses of the villages which have no wall round about
+them shall be counted as the fields of the country: they may be
+redeemed, and they shall go out in the jubile.
+
+25:32 Notwithstanding the cities of the Levites, and the houses of the
+cities of their possession, may the Levites redeem at any time.
+
+25:33 And if a man purchase of the Levites, then the house that was
+sold, and the city of his possession, shall go out in the year of
+jubile: for the houses of the cities of the Levites are their
+possession among the children of Israel.
+
+25:34 But the field of the suburbs of their cities may not be sold;
+for it is their perpetual possession.
+
+25:35 And if thy brother be waxen poor, and fallen in decay with thee;
+then thou shalt relieve him: yea, though he be a stranger, or a
+sojourner; that he may live with thee.
+
+25:36 Take thou no usury of him, or increase: but fear thy God; that
+thy brother may live with thee.
+
+25:37 Thou shalt not give him thy money upon usury, nor lend him thy
+victuals for increase.
+
+25:38 I am the LORD your God, which brought you forth out of the land
+of Egypt, to give you the land of Canaan, and to be your God.
+
+25:39 And if thy brother that dwelleth by thee be waxen poor, and be
+sold unto thee; thou shalt not compel him to serve as a bondservant:
+25:40 But as an hired servant, and as a sojourner, he shall be with
+thee, and shall serve thee unto the year of jubile.
+
+25:41 And then shall he depart from thee, both he and his children
+with him, and shall return unto his own family, and unto the
+possession of his fathers shall he return.
+
+25:42 For they are my servants, which I brought forth out of the land
+of Egypt: they shall not be sold as bondmen.
+
+25:43 Thou shalt not rule over him with rigour; but shalt fear thy
+God.
+
+25:44 Both thy bondmen, and thy bondmaids, which thou shalt have,
+shall be of the heathen that are round about you; of them shall ye buy
+bondmen and bondmaids.
+
+25:45 Moreover of the children of the strangers that do sojourn among
+you, of them shall ye buy, and of their families that are with you,
+which they begat in your land: and they shall be your possession.
+
+25:46 And ye shall take them as an inheritance for your children after
+you, to inherit them for a possession; they shall be your bondmen for
+ever: but over your brethren the children of Israel, ye shall not rule
+one over another with rigour.
+
+25:47 And if a sojourner or stranger wax rich by thee, and thy brother
+that dwelleth by him wax poor, and sell himself unto the stranger or
+sojourner by thee, or to the stock of the stranger's family: 25:48
+After that he is sold he may be redeemed again; one of his brethren
+may redeem him: 25:49 Either his uncle, or his uncle's son, may redeem
+him, or any that is nigh of kin unto him of his family may redeem him;
+or if he be able, he may redeem himself.
+
+25:50 And he shall reckon with him that bought him from the year that
+he was sold to him unto the year of jubile: and the price of his sale
+shall be according unto the number of years, according to the time of
+an hired servant shall it be with him.
+
+25:51 If there be yet many years behind, according unto them he shall
+give again the price of his redemption out of the money that he was
+bought for.
+
+25:52 And if there remain but few years unto the year of jubile, then
+he shall count with him, and according unto his years shall he give
+him again the price of his redemption.
+
+25:53 And as a yearly hired servant shall he be with him: and the
+other shall not rule with rigour over him in thy sight.
+
+25:54 And if he be not redeemed in these years, then he shall go out
+in the year of jubile, both he, and his children with him.
+
+25:55 For unto me the children of Israel are servants; they are my
+servants whom I brought forth out of the land of Egypt: I am the LORD
+your God.
+
+26:1 Ye shall make you no idols nor graven image, neither rear you up
+a standing image, neither shall ye set up any image of stone in your
+land, to bow down unto it: for I am the LORD your God.
+
+26:2 Ye shall keep my sabbaths, and reverence my sanctuary: I am the
+LORD.
+
+26:3 If ye walk in my statutes, and keep my commandments, and do them;
+26:4 Then I will give you rain in due season, and the land shall yield
+her increase, and the trees of the field shall yield their fruit.
+
+26:5 And your threshing shall reach unto the vintage, and the vintage
+shall reach unto the sowing time: and ye shall eat your bread to the
+full, and dwell in your land safely.
+
+26:6 And I will give peace in the land, and ye shall lie down, and
+none shall make you afraid: and I will rid evil beasts out of the
+land, neither shall the sword go through your land.
+
+26:7 And ye shall chase your enemies, and they shall fall before you
+by the sword.
+
+26:8 And five of you shall chase an hundred, and an hundred of you
+shall put ten thousand to flight: and your enemies shall fall before
+you by the sword.
+
+26:9 For I will have respect unto you, and make you fruitful, and
+multiply you, and establish my covenant with you.
+
+26:10 And ye shall eat old store, and bring forth the old because of
+the new.
+
+26:11 And I set my tabernacle among you: and my soul shall not abhor
+you.
+
+26:12 And I will walk among you, and will be your God, and ye shall be
+my people.
+
+26:13 I am the LORD your God, which brought you forth out of the land
+of Egypt, that ye should not be their bondmen; and I have broken the
+bands of your yoke, and made you go upright.
+
+26:14 But if ye will not hearken unto me, and will not do all these
+commandments; 26:15 And if ye shall despise my statutes, or if your
+soul abhor my judgments, so that ye will not do all my commandments,
+but that ye break my covenant: 26:16 I also will do this unto you; I
+will even appoint over you terror, consumption, and the burning ague,
+that shall consume the eyes, and cause sorrow of heart: and ye shall
+sow your seed in vain, for your enemies shall eat it.
+
+26:17 And I will set my face against you, and ye shall be slain before
+your enemies: they that hate you shall reign over you; and ye shall
+flee when none pursueth you.
+
+26:18 And if ye will not yet for all this hearken unto me, then I will
+punish you seven times more for your sins.
+
+26:19 And I will break the pride of your power; and I will make your
+heaven as iron, and your earth as brass: 26:20 And your strength shall
+be spent in vain: for your land shall not yield her increase, neither
+shall the trees of the land yield their fruits.
+
+26:21 And if ye walk contrary unto me, and will not hearken unto me; I
+will bring seven times more plagues upon you according to your sins.
+
+26:22 I will also send wild beasts among you, which shall rob you of
+your children, and destroy your cattle, and make you few in number;
+and your high ways shall be desolate.
+
+26:23 And if ye will not be reformed by me by these things, but will
+walk contrary unto me; 26:24 Then will I also walk contrary unto you,
+and will punish you yet seven times for your sins.
+
+26:25 And I will bring a sword upon you, that shall avenge the quarrel
+of my covenant: and when ye are gathered together within your cities,
+I will send the pestilence among you; and ye shall be delivered into
+the hand of the enemy.
+
+26:26 And when I have broken the staff of your bread, ten women shall
+bake your bread in one oven, and they shall deliver you your bread
+again by weight: and ye shall eat, and not be satisfied.
+
+26:27 And if ye will not for all this hearken unto me, but walk
+contrary unto me; 26:28 Then I will walk contrary unto you also in
+fury; and I, even I, will chastise you seven times for your sins.
+
+26:29 And ye shall eat the flesh of your sons, and the flesh of your
+daughters shall ye eat.
+
+26:30 And I will destroy your high places, and cut down your images,
+and cast your carcases upon the carcases of your idols, and my soul
+shall abhor you.
+
+26:31 And I will make your cities waste, and bring your sanctuaries
+unto desolation, and I will not smell the savour of your sweet odours.
+
+26:32 And I will bring the land into desolation: and your enemies
+which dwell therein shall be astonished at it.
+
+26:33 And I will scatter you among the heathen, and will draw out a
+sword after you: and your land shall be desolate, and your cities
+waste.
+
+26:34 Then shall the land enjoy her sabbaths, as long as it lieth
+desolate, and ye be in your enemies' land; even then shall the land
+rest, and enjoy her sabbaths.
+
+26:35 As long as it lieth desolate it shall rest; because it did not
+rest in your sabbaths, when ye dwelt upon it.
+
+26:36 And upon them that are left alive of you I will send a faintness
+into their hearts in the lands of their enemies; and the sound of a
+shaken leaf shall chase them; and they shall flee, as fleeing from a
+sword; and they shall fall when none pursueth.
+
+26:37 And they shall fall one upon another, as it were before a sword,
+when none pursueth: and ye shall have no power to stand before your
+enemies.
+
+26:38 And ye shall perish among the heathen, and the land of your
+enemies shall eat you up.
+
+26:39 And they that are left of you shall pine away in their iniquity
+in your enemies' lands; and also in the iniquities of their fathers
+shall they pine away with them.
+
+26:40 If they shall confess their iniquity, and the iniquity of their
+fathers, with their trespass which they trespassed against me, and
+that also they have walked contrary unto me; 26:41 And that I also
+have walked contrary unto them, and have brought them into the land of
+their enemies; if then their uncircumcised hearts be humbled, and they
+then accept of the punishment of their iniquity: 26:42 Then will I
+remember my covenant with Jacob, and also my covenant with Isaac, and
+also my covenant with Abraham will I remember; and I will remember the
+land.
+
+26:43 The land also shall be left of them, and shall enjoy her
+sabbaths, while she lieth desolate without them: and they shall accept
+of the punishment of their iniquity: because, even because they
+despised my judgments, and because their soul abhorred my statutes.
+
+26:44 And yet for all that, when they be in the land of their enemies,
+I will not cast them away, neither will I abhor them, to destroy them
+utterly, and to break my covenant with them: for I am the LORD their
+God.
+
+26:45 But I will for their sakes remember the covenant of their
+ancestors, whom I brought forth out of the land of Egypt in the sight
+of the heathen, that I might be their God: I am the LORD.
+
+26:46 These are the statutes and judgments and laws, which the LORD
+made between him and the children of Israel in mount Sinai by the hand
+of Moses.
+
+27:1 And the LORD spake unto Moses, saying, 27:2 Speak unto the
+children of Israel, and say unto them, When a man shall make a
+singular vow, the persons shall be for the LORD by thy estimation.
+
+27:3 And thy estimation shall be of the male from twenty years old
+even unto sixty years old, even thy estimation shall be fifty shekels
+of silver, after the shekel of the sanctuary.
+
+27:4 And if it be a female, then thy estimation shall be thirty
+shekels.
+
+27:5 And if it be from five years old even unto twenty years old, then
+thy estimation shall be of the male twenty shekels, and for the female
+ten shekels.
+
+27:6 And if it be from a month old even unto five years old, then thy
+estimation shall be of the male five shekels of silver, and for the
+female thy estimation shall be three shekels of silver.
+
+27:7 And if it be from sixty years old and above; if it be a male,
+then thy estimation shall be fifteen shekels, and for the female ten
+shekels.
+
+27:8 But if he be poorer than thy estimation, then he shall present
+himself before the priest, and the priest shall value him; according
+to his ability that vowed shall the priest value him.
+
+27:9 And if it be a beast, whereof men bring an offering unto the
+LORD, all that any man giveth of such unto the LORD shall be holy.
+
+27:10 He shall not alter it, nor change it, a good for a bad, or a bad
+for a good: and if he shall at all change beast for beast, then it and
+the exchange thereof shall be holy.
+
+27:11 And if it be any unclean beast, of which they do not offer a
+sacrifice unto the LORD, then he shall present the beast before the
+priest: 27:12 And the priest shall value it, whether it be good or
+bad: as thou valuest it, who art the priest, so shall it be.
+
+27:13 But if he will at all redeem it, then he shall add a fifth part
+thereof unto thy estimation.
+
+27:14 And when a man shall sanctify his house to be holy unto the
+LORD, then the priest shall estimate it, whether it be good or bad: as
+the priest shall estimate it, so shall it stand.
+
+27:15 And if he that sanctified it will redeem his house, then he
+shall add the fifth part of the money of thy estimation unto it, and
+it shall be his.
+
+27:16 And if a man shall sanctify unto the LORD some part of a field
+of his possession, then thy estimation shall be according to the seed
+thereof: an homer of barley seed shall be valued at fifty shekels of
+silver.
+
+27:17 If he sanctify his field from the year of jubile, according to
+thy estimation it shall stand.
+
+27:18 But if he sanctify his field after the jubile, then the priest
+shall reckon unto him the money according to the years that remain,
+even unto the year of the jubile, and it shall be abated from thy
+estimation.
+
+27:19 And if he that sanctified the field will in any wise redeem it,
+then he shall add the fifth part of the money of thy estimation unto
+it, and it shall be assured to him.
+
+27:20 And if he will not redeem the field, or if he have sold the
+field to another man, it shall not be redeemed any more.
+
+27:21 But the field, when it goeth out in the jubile, shall be holy
+unto the LORD, as a field devoted; the possession thereof shall be the
+priest's.
+
+27:22 And if a man sanctify unto the LORD a field which he hath
+bought, which is not of the fields of his possession; 27:23 Then the
+priest shall reckon unto him the worth of thy estimation, even unto
+the year of the jubile: and he shall give thine estimation in that
+day, as a holy thing unto the LORD.
+
+27:24 In the year of the jubile the field shall return unto him of
+whom it was bought, even to him to whom the possession of the land did
+belong.
+
+27:25 And all thy estimations shall be according to the shekel of the
+sanctuary: twenty gerahs shall be the shekel.
+
+27:26 Only the firstling of the beasts, which should be the LORD's
+firstling, no man shall sanctify it; whether it be ox, or sheep: it is
+the LORD's.
+
+27:27 And if it be of an unclean beast, then he shall redeem it
+according to thine estimation, and shall add a fifth part of it
+thereto: or if it be not redeemed, then it shall be sold according to
+thy estimation.
+
+27:28 Notwithstanding no devoted thing, that a man shall devote unto
+the LORD of all that he hath, both of man and beast, and of the field
+of his possession, shall be sold or redeemed: every devoted thing is
+most holy unto the LORD.
+
+27:29 None devoted, which shall be devoted of men, shall be redeemed;
+but shall surely be put to death.
+
+27:30 And all the tithe of the land, whether of the seed of the land,
+or of the fruit of the tree, is the LORD's: it is holy unto the LORD.
+
+27:31 And if a man will at all redeem ought of his tithes, he shall
+add thereto the fifth part thereof.
+
+27:32 And concerning the tithe of the herd, or of the flock, even of
+whatsoever passeth under the rod, the tenth shall be holy unto the
+LORD.
+
+27:33 He shall not search whether it be good or bad, neither shall he
+change it: and if he change it at all, then both it and the change
+thereof shall be holy; it shall not be redeemed.
+
+27:34 These are the commandments, which the LORD commanded Moses for
+the children of Israel in mount Sinai.
+
+
+
+
+The Fourth Book of Moses: Called Numbers
+
+
+1:1 And the LORD spake unto Moses in the wilderness of Sinai, in the
+tabernacle of the congregation, on the first day of the second month,
+in the second year after they were come out of the land of Egypt,
+saying, 1:2 Take ye the sum of all the congregation of the children of
+Israel, after their families, by the house of their fathers, with the
+number of their names, every male by their polls; 1:3 From twenty
+years old and upward, all that are able to go forth to war in Israel:
+thou and Aaron shall number them by their armies.
+
+1:4 And with you there shall be a man of every tribe; every one head
+of the house of his fathers.
+
+1:5 And these are the names of the men that shall stand with you: of
+the tribe of Reuben; Elizur the son of Shedeur.
+
+1:6 Of Simeon; Shelumiel the son of Zurishaddai.
+
+1:7 Of Judah; Nahshon the son of Amminadab.
+
+1:8 Of Issachar; Nethaneel the son of Zuar.
+
+1:9 Of Zebulun; Eliab the son of Helon.
+
+1:10 Of the children of Joseph: of Ephraim; Elishama the son of
+Ammihud: of Manasseh; Gamaliel the son of Pedahzur.
+
+1:11 Of Benjamin; Abidan the son of Gideoni.
+
+1:12 Of Dan; Ahiezer the son of Ammishaddai.
+
+1:13 Of Asher; Pagiel the son of Ocran.
+
+1:14 Of Gad; Eliasaph the son of Deuel.
+
+1:15 Of Naphtali; Ahira the son of Enan.
+
+1:16 These were the renowned of the congregation, princes of the
+tribes of their fathers, heads of thousands in Israel.
+
+1:17 And Moses and Aaron took these men which are expressed by their
+names: 1:18 And they assembled all the congregation together on the
+first day of the second month, and they declared their pedigrees after
+their families, by the house of their fathers, according to the number
+of the names, from twenty years old and upward, by their polls.
+
+1:19 As the LORD commanded Moses, so he numbered them in the
+wilderness of Sinai.
+
+1:20 And the children of Reuben, Israel's eldest son, by their
+generations, after their families, by the house of their fathers,
+according to the number of the names, by their polls, every male from
+twenty years old and upward, all that were able to go forth to war;
+1:21 Those that were numbered of them, even of the tribe of Reuben,
+were forty and six thousand and five hundred.
+
+1:22 Of the children of Simeon, by their generations, after their
+families, by the house of their fathers, those that were numbered of
+them, according to the number of the names, by their polls, every male
+from twenty years old and upward, all that were able to go forth to
+war; 1:23 Those that were numbered of them, even of the tribe of
+Simeon, were fifty and nine thousand and three hundred.
+
+1:24 Of the children of Gad, by their generations, after their
+families, by the house of their fathers, according to the number of
+the names, from twenty years old and upward, all that were able to go
+forth to war; 1:25 Those that were numbered of them, even of the tribe
+of Gad, were forty and five thousand six hundred and fifty.
+
+1:26 Of the children of Judah, by their generations, after their
+families, by the house of their fathers, according to the number of
+the names, from twenty years old and upward, all that were able to go
+forth to war; 1:27 Those that were numbered of them, even of the tribe
+of Judah, were threescore and fourteen thousand and six hundred.
+
+1:28 Of the children of Issachar, by their generations, after their
+families, by the house of their fathers, according to the number of
+the names, from twenty years old and upward, all that were able to go
+forth to war; 1:29 Those that were numbered of them, even of the tribe
+of Issachar, were fifty and four thousand and four hundred.
+
+1:30 Of the children of Zebulun, by their generations, after their
+families, by the house of their fathers, according to the number of
+the names, from twenty years old and upward, all that were able to go
+forth to war; 1:31 Those that were numbered of them, even of the tribe
+of Zebulun, were fifty and seven thousand and four hundred.
+
+1:32 Of the children of Joseph, namely, of the children of Ephraim, by
+their generations, after their families, by the house of their
+fathers, according to the number of the names, from twenty years old
+and upward, all that were able to go forth to war; 1:33 Those that
+were numbered of them, even of the tribe of Ephraim, were forty
+thousand and five hundred.
+
+1:34 Of the children of Manasseh, by their generations, after their
+families, by the house of their fathers, according to the number of
+the names, from twenty years old and upward, all that were able to go
+forth to war; 1:35 Those that were numbered of them, even of the tribe
+of Manasseh, were thirty and two thousand and two hundred.
+
+1:36 Of the children of Benjamin, by their generations, after their
+families, by the house of their fathers, according to the number of
+the names, from twenty years old and upward, all that were able to go
+forth to war; 1:37 Those that were numbered of them, even of the tribe
+of Benjamin, were thirty and five thousand and four hundred.
+
+1:38 Of the children of Dan, by their generations, after their
+families, by the house of their fathers, according to the number of
+the names, from twenty years old and upward, all that were able to go
+forth to war; 1:39 Those that were numbered of them, even of the tribe
+of Dan, were threescore and two thousand and seven hundred.
+
+1:40 Of the children of Asher, by their generations, after their
+families, by the house of their fathers, according to the number of
+the names, from twenty years old and upward, all that were able to go
+forth to war; 1:41 Those that were numbered of them, even of the tribe
+of Asher, were forty and one thousand and five hundred.
+
+1:42 Of the children of Naphtali, throughout their generations, after
+their families, by the house of their fathers, according to the number
+of the names, from twenty years old and upward, all that were able to
+go forth to war; 1:43 Those that were numbered of them, even of the
+tribe of Naphtali, were fifty and three thousand and four hundred.
+
+1:44 These are those that were numbered, which Moses and Aaron
+numbered, and the princes of Israel, being twelve men: each one was
+for the house of his fathers.
+
+1:45 So were all those that were numbered of the children of Israel,
+by the house of their fathers, from twenty years old and upward, all
+that were able to go forth to war in Israel; 1:46 Even all they that
+were numbered were six hundred thousand and three thousand and five
+hundred and fifty.
+
+1:47 But the Levites after the tribe of their fathers were not
+numbered among them.
+
+1:48 For the LORD had spoken unto Moses, saying, 1:49 Only thou shalt
+not number the tribe of Levi, neither take the sum of them among the
+children of Israel: 1:50 But thou shalt appoint the Levites over the
+tabernacle of testimony, and over all the vessels thereof, and over
+all things that belong to it: they shall bear the tabernacle, and all
+the vessels thereof; and they shall minister unto it, and shall encamp
+round about the tabernacle.
+
+1:51 And when the tabernacle setteth forward, the Levites shall take
+it down: and when the tabernacle is to be pitched, the Levites shall
+set it up: and the stranger that cometh nigh shall be put to death.
+
+1:52 And the children of Israel shall pitch their tents, every man by
+his own camp, and every man by his own standard, throughout their
+hosts.
+
+1:53 But the Levites shall pitch round about the tabernacle of
+testimony, that there be no wrath upon the congregation of the
+children of Israel: and the Levites shall keep the charge of the
+tabernacle of testimony.
+
+1:54 And the children of Israel did according to all that the LORD
+commanded Moses, so did they.
+
+2:1 And the LORD spake unto Moses and unto Aaron, saying, 2:2 Every
+man of the children of Israel shall pitch by his own standard, with
+the ensign of their father's house: far off about the tabernacle of
+the congregation shall they pitch.
+
+2:3 And on the east side toward the rising of the sun shall they of
+the standard of the camp of Judah pitch throughout their armies: and
+Nahshon the son of Amminadab shall be captain of the children of
+Judah.
+
+2:4 And his host, and those that were numbered of them, were
+threescore and fourteen thousand and six hundred.
+
+2:5 And those that do pitch next unto him shall be the tribe of
+Issachar: and Nethaneel the son of Zuar shall be captain of the
+children of Issachar.
+
+2:6 And his host, and those that were numbered thereof, were fifty and
+four thousand and four hundred.
+
+2:7 Then the tribe of Zebulun: and Eliab the son of Helon shall be
+captain of the children of Zebulun.
+
+2:8 And his host, and those that were numbered thereof, were fifty and
+seven thousand and four hundred.
+
+2:9 All that were numbered in the camp of Judah were an hundred
+thousand and fourscore thousand and six thousand and four hundred,
+throughout their armies. These shall first set forth.
+
+2:10 On the south side shall be the standard of the camp of Reuben
+according to their armies: and the captain of the children of Reuben
+shall be Elizur the son of Shedeur.
+
+2:11 And his host, and those that were numbered thereof, were forty
+and six thousand and five hundred.
+
+2:12 And those which pitch by him shall be the tribe of Simeon: and
+the captain of the children of Simeon shall be Shelumiel the son of
+Zurishaddai.
+
+2:13 And his host, and those that were numbered of them, were fifty
+and nine thousand and three hundred.
+
+2:14 Then the tribe of Gad: and the captain of the sons of Gad shall
+be Eliasaph the son of Reuel.
+
+2:15 And his host, and those that were numbered of them, were forty
+and five thousand and six hundred and fifty.
+
+2:16 All that were numbered in the camp of Reuben were an hundred
+thousand and fifty and one thousand and four hundred and fifty,
+throughout their armies. And they shall set forth in the second rank.
+
+2:17 Then the tabernacle of the congregation shall set forward with
+the camp of the Levites in the midst of the camp: as they encamp, so
+shall they set forward, every man in his place by their standards.
+
+2:18 On the west side shall be the standard of the camp of Ephraim
+according to their armies: and the captain of the sons of Ephraim
+shall be Elishama the son of Ammihud.
+
+2:19 And his host, and those that were numbered of them, were forty
+thousand and five hundred.
+
+2:20 And by him shall be the tribe of Manasseh: and the captain of the
+children of Manasseh shall be Gamaliel the son of Pedahzur.
+
+2:21 And his host, and those that were numbered of them, were thirty
+and two thousand and two hundred.
+
+2:22 Then the tribe of Benjamin: and the captain of the sons of
+Benjamin shall be Abidan the son of Gideoni.
+
+2:23 And his host, and those that were numbered of them, were thirty
+and five thousand and four hundred.
+
+2:24 All that were numbered of the camp of Ephraim were an hundred
+thousand and eight thousand and an hundred, throughout their armies.
+And they shall go forward in the third rank.
+
+2:25 The standard of the camp of Dan shall be on the north side by
+their armies: and the captain of the children of Dan shall be Ahiezer
+the son of Ammishaddai.
+
+2:26 And his host, and those that were numbered of them, were
+threescore and two thousand and seven hundred.
+
+2:27 And those that encamp by him shall be the tribe of Asher: and the
+captain of the children of Asher shall be Pagiel the son of Ocran.
+
+2:28 And his host, and those that were numbered of them, were forty
+and one thousand and five hundred.
+
+2:29 Then the tribe of Naphtali: and the captain of the children of
+Naphtali shall be Ahira the son of Enan.
+
+2:30 And his host, and those that were numbered of them, were fifty
+and three thousand and four hundred.
+
+2:31 All they that were numbered in the camp of Dan were an hundred
+thousand and fifty and seven thousand and six hundred. They shall go
+hindmost with their standards.
+
+2:32 These are those which were numbered of the children of Israel by
+the house of their fathers: all those that were numbered of the camps
+throughout their hosts were six hundred thousand and three thousand
+and five hundred and fifty.
+
+2:33 But the Levites were not numbered among the children of Israel;
+as the LORD commanded Moses.
+
+2:34 And the children of Israel did according to all that the LORD
+commanded Moses: so they pitched by their standards, and so they set
+forward, every one after their families, according to the house of
+their fathers.
+
+3:1 These also are the generations of Aaron and Moses in the day that
+the LORD spake with Moses in mount Sinai.
+
+3:2 And these are the names of the sons of Aaron; Nadab the firstborn,
+and Abihu, Eleazar, and Ithamar.
+
+3:3 These are the names of the sons of Aaron, the priests which were
+anointed, whom he consecrated to minister in the priest's office.
+
+3:4 And Nadab and Abihu died before the LORD, when they offered
+strange fire before the LORD, in the wilderness of Sinai, and they had
+no children: and Eleazar and Ithamar ministered in the priest's office
+in the sight of Aaron their father.
+
+3:5 And the LORD spake unto Moses, saying, 3:6 Bring the tribe of Levi
+near, and present them before Aaron the priest, that they may minister
+unto him.
+
+3:7 And they shall keep his charge, and the charge of the whole
+congregation before the tabernacle of the congregation, to do the
+service of the tabernacle.
+
+3:8 And they shall keep all the instruments of the tabernacle of the
+congregation, and the charge of the children of Israel, to do the
+service of the tabernacle.
+
+3:9 And thou shalt give the Levites unto Aaron and to his sons: they
+are wholly given unto him out of the children of Israel.
+
+3:10 And thou shalt appoint Aaron and his sons, and they shall wait on
+their priest's office: and the stranger that cometh nigh shall be put
+to death.
+
+3:11 And the LORD spake unto Moses, saying, 3:12 And I, behold, I have
+taken the Levites from among the children of Israel instead of all the
+firstborn that openeth the matrix among the children of Israel:
+therefore the Levites shall be mine; 3:13 Because all the firstborn
+are mine; for on the day that I smote all the firstborn in the land of
+Egypt I hallowed unto me all the firstborn in Israel, both man and
+beast: mine shall they be: I am the LORD.
+
+3:14 And the LORD spake unto Moses in the wilderness of Sinai, saying,
+3:15 Number the children of Levi after the house of their fathers, by
+their families: every male from a month old and upward shalt thou
+number them.
+
+3:16 And Moses numbered them according to the word of the LORD, as he
+was commanded.
+
+3:17 And these were the sons of Levi by their names; Gershon, and
+Kohath, and Merari.
+
+3:18 And these are the names of the sons of Gershon by their families;
+Libni, and Shimei.
+
+3:19 And the sons of Kohath by their families; Amram, and Izehar,
+Hebron, and Uzziel.
+
+3:20 And the sons of Merari by their families; Mahli, and Mushi. These
+are the families of the Levites according to the house of their
+fathers.
+
+3:21 Of Gershon was the family of the Libnites, and the family of the
+Shimites: these are the families of the Gershonites.
+
+3:22 Those that were numbered of them, according to the number of all
+the males, from a month old and upward, even those that were numbered
+of them were seven thousand and five hundred.
+
+3:23 The families of the Gershonites shall pitch behind the tabernacle
+westward.
+
+3:24 And the chief of the house of the father of the Gershonites shall
+be Eliasaph the son of Lael.
+
+3:25 And the charge of the sons of Gershon in the tabernacle of the
+congregation shall be the tabernacle, and the tent, the covering
+thereof, and the hanging for the door of the tabernacle of the
+congregation, 3:26 And the hangings of the court, and the curtain for
+the door of the court, which is by the tabernacle, and by the altar
+round about, and the cords of it for all the service thereof.
+
+3:27 And of Kohath was the family of the Amramites, and the family of
+the Izeharites, and the family of the Hebronites, and the family of
+the Uzzielites: these are the families of the Kohathites.
+
+3:28 In the number of all the males, from a month old and upward, were
+eight thousand and six hundred, keeping the charge of the sanctuary.
+
+3:29 The families of the sons of Kohath shall pitch on the side of the
+tabernacle southward.
+
+3:30 And the chief of the house of the father of the families of the
+Kohathites shall be Elizaphan the son of Uzziel.
+
+3:31 And their charge shall be the ark, and the table, and the
+candlestick, and the altars, and the vessels of the sanctuary
+wherewith they minister, and the hanging, and all the service thereof.
+
+3:32 And Eleazar the son of Aaron the priest shall be chief over the
+chief of the Levites, and have the oversight of them that keep the
+charge of the sanctuary.
+
+3:33 Of Merari was the family of the Mahlites, and the family of the
+Mushites: these are the families of Merari.
+
+3:34 And those that were numbered of them, according to the number of
+all the males, from a month old and upward, were six thousand and two
+hundred.
+
+3:35 And the chief of the house of the father of the families of
+Merari was Zuriel the son of Abihail: these shall pitch on the side of
+the tabernacle northward.
+
+3:36 And under the custody and charge of the sons of Merari shall be
+the boards of the tabernacle, and the bars thereof, and the pillars
+thereof, and the sockets thereof, and all the vessels thereof, and all
+that serveth thereto, 3:37 And the pillars of the court round about,
+and their sockets, and their pins, and their cords.
+
+3:38 But those that encamp before the tabernacle toward the east, even
+before the tabernacle of the congregation eastward, shall be Moses,
+and Aaron and his sons, keeping the charge of the sanctuary for the
+charge of the children of Israel; and the stranger that cometh nigh
+shall be put to death.
+
+3:39 All that were numbered of the Levites, which Moses and Aaron
+numbered at the commandment of the LORD, throughout their families,
+all the males from a month old and upward, were twenty and two
+thousand.
+
+3:40 And the LORD said unto Moses, Number all the firstborn of the
+males of the children of Israel from a month old and upward, and take
+the number of their names.
+
+3:41 And thou shalt take the Levites for me (I am the LORD) instead of
+all the firstborn among the children of Israel; and the cattle of the
+Levites instead of all the firstlings among the cattle of the children
+of Israel.
+
+3:42 And Moses numbered, as the LORD commanded him, all the firstborn
+among the children of Israel.
+
+3:43 And all the firstborn males by the number of names, from a month
+old and upward, of those that were numbered of them, were twenty and
+two thousand two hundred and threescore and thirteen.
+
+3:44 And the LORD spake unto Moses, saying, 3:45 Take the Levites
+instead of all the firstborn among the children of Israel, and the
+cattle of the Levites instead of their cattle; and the Levites shall
+be mine: I am the LORD.
+
+3:46 And for those that are to be redeemed of the two hundred and
+threescore and thirteen of the firstborn of the children of Israel,
+which are more than the Levites; 3:47 Thou shalt even take five
+shekels apiece by the poll, after the shekel of the sanctuary shalt
+thou take them: (the shekel is twenty gerahs:) 3:48 And thou shalt
+give the money, wherewith the odd number of them is to be redeemed,
+unto Aaron and to his sons.
+
+3:49 And Moses took the redemption money of them that were over and
+above them that were redeemed by the Levites: 3:50 Of the firstborn of
+the children of Israel took he the money; a thousand three hundred and
+threescore and five shekels, after the shekel of the sanctuary: 3:51
+And Moses gave the money of them that were redeemed unto Aaron and to
+his sons, according to the word of the LORD, as the LORD commanded
+Moses.
+
+4:1 And the LORD spake unto Moses and unto Aaron, saying, 4:2 Take the
+sum of the sons of Kohath from among the sons of Levi, after their
+families, by the house of their fathers, 4:3 From thirty years old and
+upward even until fifty years old, all that enter into the host, to do
+the work in the tabernacle of the congregation.
+
+4:4 This shall be the service of the sons of Kohath in the tabernacle
+of the congregation, about the most holy things: 4:5 And when the camp
+setteth forward, Aaron shall come, and his sons, and they shall take
+down the covering vail, and cover the ark of testimony with it: 4:6
+And shall put thereon the covering of badgers' skins, and shall spread
+over it a cloth wholly of blue, and shall put in the staves thereof.
+
+4:7 And upon the table of shewbread they shall spread a cloth of blue,
+and put thereon the dishes, and the spoons, and the bowls, and covers
+to cover withal: and the continual bread shall be thereon: 4:8 And
+they shall spread upon them a cloth of scarlet, and cover the same
+with a covering of badgers' skins, and shall put in the staves
+thereof.
+
+4:9 And they shall take a cloth of blue, and cover the candlestick of
+the light, and his lamps, and his tongs, and his snuffdishes, and all
+the oil vessels thereof, wherewith they minister unto it: 4:10 And
+they shall put it and all the vessels thereof within a covering of
+badgers' skins, and shall put it upon a bar.
+
+4:11 And upon the golden altar they shall spread a cloth of blue, and
+cover it with a covering of badgers' skins, and shall put to the
+staves thereof: 4:12 And they shall take all the instruments of
+ministry, wherewith they minister in the sanctuary, and put them in a
+cloth of blue, and cover them with a covering of badgers' skins, and
+shall put them on a bar: 4:13 And they shall take away the ashes from
+the altar, and spread a purple cloth thereon: 4:14 And they shall put
+upon it all the vessels thereof, wherewith they minister about it,
+even the censers, the fleshhooks, and the shovels, and the basons, all
+the vessels of the altar; and they shall spread upon it a covering of
+badgers' skins, and put to the staves of it.
+
+4:15 And when Aaron and his sons have made an end of covering the
+sanctuary, and all the vessels of the sanctuary, as the camp is to set
+forward; after that, the sons of Kohath shall come to bear it: but
+they shall not touch any holy thing, lest they die. These things are
+the burden of the sons of Kohath in the tabernacle of the
+congregation.
+
+4:16 And to the office of Eleazar the son of Aaron the priest
+pertaineth the oil for the light, and the sweet incense, and the daily
+meat offering, and the anointing oil, and the oversight of all the
+tabernacle, and of all that therein is, in the sanctuary, and in the
+vessels thereof.
+
+4:17 And the LORD spake unto Moses and unto Aaron saying, 4:18 Cut ye
+not off the tribe of the families of the Kohathites from among the
+Levites: 4:19 But thus do unto them, that they may live, and not die,
+when they approach unto the most holy things: Aaron and his sons shall
+go in, and appoint them every one to his service and to his burden:
+4:20 But they shall not go in to see when the holy things are covered,
+lest they die.
+
+4:21 And the LORD spake unto Moses, saying, 4:22 Take also the sum of
+the sons of Gershon, throughout the houses of their fathers, by their
+families; 4:23 From thirty years old and upward until fifty years old
+shalt thou number them; all that enter in to perform the service, to
+do the work in the tabernacle of the congregation.
+
+4:24 This is the service of the families of the Gershonites, to serve,
+and for burdens: 4:25 And they shall bear the curtains of the
+tabernacle, and the tabernacle of the congregation, his covering, and
+the covering of the badgers' skins that is above upon it, and the
+hanging for the door of the tabernacle of the congregation, 4:26 And
+the hangings of the court, and the hanging for the door of the gate of
+the court, which is by the tabernacle and by the altar round about,
+and their cords, and all the instruments of their service, and all
+that is made for them: so shall they serve.
+
+4:27 At the appointment of Aaron and his sons shall be all the service
+of the sons of the Gershonites, in all their burdens, and in all their
+service: and ye shall appoint unto them in charge all their burdens.
+
+4:28 This is the service of the families of the sons of Gershon in the
+tabernacle of the congregation: and their charge shall be under the
+hand of Ithamar the son of Aaron the priest.
+
+4:29 As for the sons of Merari, thou shalt number them after their
+families, by the house of their fathers; 4:30 From thirty years old
+and upward even unto fifty years old shalt thou number them, every one
+that entereth into the service, to do the work of the tabernacle of
+the congregation.
+
+4:31 And this is the charge of their burden, according to all their
+service in the tabernacle of the congregation; the boards of the
+tabernacle, and the bars thereof, and the pillars thereof, and sockets
+thereof, 4:32 And the pillars of the court round about, and their
+sockets, and their pins, and their cords, with all their instruments,
+and with all their service: and by name ye shall reckon the
+instruments of the charge of their burden.
+
+4:33 This is the service of the families of the sons of Merari,
+according to all their service, in the tabernacle of the congregation,
+under the hand of Ithamar the son of Aaron the priest.
+
+4:34 And Moses and Aaron and the chief of the congregation numbered
+the sons of the Kohathites after their families, and after the house
+of their fathers, 4:35 From thirty years old and upward even unto
+fifty years old, every one that entereth into the service, for the
+work in the tabernacle of the congregation: 4:36 And those that were
+numbered of them by their families were two thousand seven hundred and
+fifty.
+
+4:37 These were they that were numbered of the families of the
+Kohathites, all that might do service in the tabernacle of the
+congregation, which Moses and Aaron did number according to the
+commandment of the LORD by the hand of Moses.
+
+4:38 And those that were numbered of the sons of Gershon, throughout
+their families, and by the house of their fathers, 4:39 From thirty
+years old and upward even unto fifty years old, every one that
+entereth into the service, for the work in the tabernacle of the
+congregation, 4:40 Even those that were numbered of them, throughout
+their families, by the house of their fathers, were two thousand and
+six hundred and thirty.
+
+4:41 These are they that were numbered of the families of the sons of
+Gershon, of all that might do service in the tabernacle of the
+congregation, whom Moses and Aaron did number according to the
+commandment of the LORD.
+
+4:42 And those that were numbered of the families of the sons of
+Merari, throughout their families, by the house of their fathers, 4:43
+From thirty years old and upward even unto fifty years old, every one
+that entereth into the service, for the work in the tabernacle of the
+congregation, 4:44 Even those that were numbered of them after their
+families, were three thousand and two hundred.
+
+4:45 These be those that were numbered of the families of the sons of
+Merari, whom Moses and Aaron numbered according to the word of the
+LORD by the hand of Moses.
+
+4:46 All those that were numbered of the Levites, whom Moses and Aaron
+and the chief of Israel numbered, after their families, and after the
+house of their fathers, 4:47 From thirty years old and upward even
+unto fifty years old, every one that came to do the service of the
+ministry, and the service of the burden in the tabernacle of the
+congregation.
+
+4:48 Even those that were numbered of them, were eight thousand and
+five hundred and fourscore, 4:49 According to the commandment of the
+LORD they were numbered by the hand of Moses, every one according to
+his service, and according to his burden: thus were they numbered of
+him, as the LORD commanded Moses.
+
+5:1 And the LORD spake unto Moses, saying, 5:2 Command the children of
+Israel, that they put out of the camp every leper, and every one that
+hath an issue, and whosoever is defiled by the dead: 5:3 Both male and
+female shall ye put out, without the camp shall ye put them; that they
+defile not their camps, in the midst whereof I dwell.
+
+5:4 And the children of Israel did so, and put them out without the
+camp: as the LORD spake unto Moses, so did the children of Israel.
+
+5:5 And the LORD spake unto Moses, saying, 5:6 Speak unto the children
+of Israel, When a man or woman shall commit any sin that men commit,
+to do a trespass against the LORD, and that person be guilty; 5:7 Then
+they shall confess their sin which they have done: and he shall
+recompense his trespass with the principal thereof, and add unto it
+the fifth part thereof, and give it unto him against whom he hath
+trespassed.
+
+5:8 But if the man have no kinsman to recompense the trespass unto,
+let the trespass be recompensed unto the LORD, even to the priest;
+beside the ram of the atonement, whereby an atonement shall be made
+for him.
+
+5:9 And every offering of all the holy things of the children of
+Israel, which they bring unto the priest, shall be his.
+
+5:10 And every man's hallowed things shall be his: whatsoever any man
+giveth the priest, it shall be his.
+
+5:11 And the LORD spake unto Moses, saying, 5:12 Speak unto the
+children of Israel, and say unto them, If any man's wife go aside, and
+commit a trespass against him, 5:13 And a man lie with her carnally,
+and it be hid from the eyes of her husband, and be kept close, and she
+be defiled, and there be no witness against her, neither she be taken
+with the manner; 5:14 And the spirit of jealousy come upon him, and he
+be jealous of his wife, and she be defiled: or if the spirit of
+jealousy come upon him, and he be jealous of his wife, and she be not
+defiled: 5:15 Then shall the man bring his wife unto the priest, and
+he shall bring her offering for her, the tenth part of an ephah of
+barley meal; he shall pour no oil upon it, nor put frankincense
+thereon; for it is an offering of jealousy, an offering of memorial,
+bringing iniquity to remembrance.
+
+5:16 And the priest shall bring her near, and set her before the LORD:
+5:17 And the priest shall take holy water in an earthen vessel; and of
+the dust that is in the floor of the tabernacle the priest shall take,
+and put it into the water: 5:18 And the priest shall set the woman
+before the LORD, and uncover the woman's head, and put the offering of
+memorial in her hands, which is the jealousy offering: and the priest
+shall have in his hand the bitter water that causeth the curse: 5:19
+And the priest shall charge her by an oath, and say unto the woman, If
+no man have lain with thee, and if thou hast not gone aside to
+uncleanness with another instead of thy husband, be thou free from
+this bitter water that causeth the curse: 5:20 But if thou hast gone
+aside to another instead of thy husband, and if thou be defiled, and
+some man have lain with thee beside thine husband: 5:21 Then the
+priest shall charge the woman with an oath of cursing, and the priest
+shall say unto the woman, The LORD make thee a curse and an oath among
+thy people, when the LORD doth make thy thigh to rot, and thy belly to
+swell; 5:22 And this water that causeth the curse shall go into thy
+bowels, to make thy belly to swell, and thy thigh to rot: And the
+woman shall say, Amen, amen.
+
+5:23 And the priest shall write these curses in a book, and he shall
+blot them out with the bitter water: 5:24 And he shall cause the woman
+to drink the bitter water that causeth the curse: and the water that
+causeth the curse shall enter into her, and become bitter.
+
+5:25 Then the priest shall take the jealousy offering out of the
+woman's hand, and shall wave the offering before the LORD, and offer
+it upon the altar: 5:26 And the priest shall take an handful of the
+offering, even the memorial thereof, and burn it upon the altar, and
+afterward shall cause the woman to drink the water.
+
+5:27 And when he hath made her to drink the water, then it shall come
+to pass, that, if she be defiled, and have done trespass against her
+husband, that the water that causeth the curse shall enter into her,
+and become bitter, and her belly shall swell, and her thigh shall rot:
+and the woman shall be a curse among her people.
+
+5:28 And if the woman be not defiled, but be clean; then she shall be
+free, and shall conceive seed.
+
+5:29 This is the law of jealousies, when a wife goeth aside to another
+instead of her husband, and is defiled; 5:30 Or when the spirit of
+jealousy cometh upon him, and he be jealous over his wife, and shall
+set the woman before the LORD, and the priest shall execute upon her
+all this law.
+
+5:31 Then shall the man be guiltless from iniquity, and this woman
+shall bear her iniquity.
+
+6:1 And the LORD spake unto Moses, saying, 6:2 Speak unto the children
+of Israel, and say unto them, When either man or woman shall separate
+themselves to vow a vow of a Nazarite, to separate themselves unto the
+LORD: 6:3 He shall separate himself from wine and strong drink, and
+shall drink no vinegar of wine, or vinegar of strong drink, neither
+shall he drink any liquor of grapes, nor eat moist grapes, or dried.
+
+6:4 All the days of his separation shall he eat nothing that is made
+of the vine tree, from the kernels even to the husk.
+
+6:5 All the days of the vow of his separation there shall no razor
+come upon his head: until the days be fulfilled, in the which he
+separateth himself unto the LORD, he shall be holy, and shall let the
+locks of the hair of his head grow.
+
+6:6 All the days that he separateth himself unto the LORD he shall
+come at no dead body.
+
+6:7 He shall not make himself unclean for his father, or for his
+mother, for his brother, or for his sister, when they die: because the
+consecration of his God is upon his head.
+
+6:8 All the days of his separation he is holy unto the LORD.
+
+6:9 And if any man die very suddenly by him, and he hath defiled the
+head of his consecration; then he shall shave his head in the day of
+his cleansing, on the seventh day shall he shave it.
+
+6:10 And on the eighth day he shall bring two turtles, or two young
+pigeons, to the priest, to the door of the tabernacle of the
+congregation: 6:11 And the priest shall offer the one for a sin
+offering, and the other for a burnt offering, and make an atonement
+for him, for that he sinned by the dead, and shall hallow his head
+that same day.
+
+6:12 And he shall consecrate unto the LORD the days of his separation,
+and shall bring a lamb of the first year for a trespass offering: but
+the days that were before shall be lost, because his separation was
+defiled.
+
+6:13 And this is the law of the Nazarite, when the days of his
+separation are fulfilled: he shall be brought unto the door of the
+tabernacle of the congregation: 6:14 And he shall offer his offering
+unto the LORD, one he lamb of the first year without blemish for a
+burnt offering, and one ewe lamb of the first year without blemish for
+a sin offering, and one ram without blemish for peace offerings, 6:15
+And a basket of unleavened bread, cakes of fine flour mingled with
+oil, and wafers of unleavened bread anointed with oil, and their meat
+offering, and their drink offerings.
+
+6:16 And the priest shall bring them before the LORD, and shall offer
+his sin offering, and his burnt offering: 6:17 And he shall offer the
+ram for a sacrifice of peace offerings unto the LORD, with the basket
+of unleavened bread: the priest shall offer also his meat offering,
+and his drink offering.
+
+6:18 And the Nazarite shall shave the head of his separation at the
+door of the tabernacle of the congregation, and shall take the hair of
+the head of his separation, and put it in the fire which is under the
+sacrifice of the peace offerings.
+
+6:19 And the priest shall take the sodden shoulder of the ram, and one
+unleavened cake out of the basket, and one unleavened wafer, and shall
+put them upon the hands of the Nazarite, after the hair of his
+separation is shaven: 6:20 And the priest shall wave them for a wave
+offering before the LORD: this is holy for the priest, with the wave
+breast and heave shoulder: and after that the Nazarite may drink wine.
+
+6:21 This is the law of the Nazarite who hath vowed, and of his
+offering unto the LORD for his separation, beside that that his hand
+shall get: according to the vow which he vowed, so he must do after
+the law of his separation.
+
+6:22 And the LORD spake unto Moses, saying, 6:23 Speak unto Aaron and
+unto his sons, saying, On this wise ye shall bless the children of
+Israel, saying unto them, 6:24 The LORD bless thee, and keep thee:
+6:25 The LORD make his face shine upon thee, and be gracious unto
+thee: 6:26 The LORD lift up his countenance upon thee, and give thee
+peace.
+
+6:27 And they shall put my name upon the children of Israel, and I
+will bless them.
+
+7:1 And it came to pass on the day that Moses had fully set up the
+tabernacle, and had anointed it, and sanctified it, and all the
+instruments thereof, both the altar and all the vessels thereof, and
+had anointed them, and sanctified them; 7:2 That the princes of
+Israel, heads of the house of their fathers, who were the princes of
+the tribes, and were over them that were numbered, offered: 7:3 And
+they brought their offering before the LORD, six covered wagons, and
+twelve oxen; a wagon for two of the princes, and for each one an ox:
+and they brought them before the tabernacle.
+
+7:4 And the LORD spake unto Moses, saying, 7:5 Take it of them, that
+they may be to do the service of the tabernacle of the congregation;
+and thou shalt give them unto the Levites, to every man according to
+his service.
+
+7:6 And Moses took the wagons and the oxen, and gave them unto the
+Levites.
+
+7:7 Two wagons and four oxen he gave unto the sons of Gershon,
+according to their service: 7:8 And four wagons and eight oxen he gave
+unto the sons of Merari, according unto their service, under the hand
+of Ithamar the son of Aaron the priest.
+
+7:9 But unto the sons of Kohath he gave none: because the service of
+the sanctuary belonging unto them was that they should bear upon their
+shoulders.
+
+7:10 And the princes offered for dedicating of the altar in the day
+that it was anointed, even the princes offered their offering before
+the altar.
+
+7:11 And the LORD said unto Moses, They shall offer their offering,
+each prince on his day, for the dedicating of the altar.
+
+7:12 And he that offered his offering the first day was Nahshon the
+son of Amminadab, of the tribe of Judah: 7:13 And his offering was one
+silver charger, the weight thereof was an hundred and thirty shekels,
+one silver bowl of seventy shekels, after the shekel of the sanctuary;
+both of them were full of fine flour mingled with oil for a meat
+offering: 7:14 One spoon of ten shekels of gold, full of incense: 7:15
+One young bullock, one ram, one lamb of the first year, for a burnt
+offering: 7:16 One kid of the goats for a sin offering: 7:17 And for a
+sacrifice of peace offerings, two oxen, five rams, five he goats, five
+lambs of the first year: this was the offering of Nahshon the son of
+Amminadab.
+
+7:18 On the second day Nethaneel the son of Zuar, prince of Issachar,
+did offer: 7:19 He offered for his offering one silver charger, the
+weight whereof was an hundred and thirty shekels, one silver bowl of
+seventy shekels, after the shekel of the sanctuary; both of them full
+of fine flour mingled with oil for a meat offering: 7:20 One spoon of
+gold of ten shekels, full of incense: 7:21 One young bullock, one ram,
+one lamb of the first year, for a burnt offering: 7:22 One kid of the
+goats for a sin offering: 7:23 And for a sacrifice of peace offerings,
+two oxen, five rams, five he goats, five lambs of the first year: this
+was the offering of Nethaneel the son of Zuar.
+
+7:24 On the third day Eliab the son of Helon, prince of the children
+of Zebulun, did offer: 7:25 His offering was one silver charger, the
+weight whereof was an hundred and thirty shekels, one silver bowl of
+seventy shekels, after the shekel of the sanctuary; both of them full
+of fine flour mingled with oil for a meat offering: 7:26 One golden
+spoon of ten shekels, full of incense: 7:27 One young bullock, one
+ram, one lamb of the first year, for a burnt offering: 7:28 One kid of
+the goats for a sin offering: 7:29 And for a sacrifice of peace
+offerings, two oxen, five rams, five he goats, five lambs of the first
+year: this was the offering of Eliab the son of Helon.
+
+7:30 On the fourth day Elizur the son of Shedeur, prince of the
+children of Reuben, did offer: 7:31 His offering was one silver
+charger of the weight of an hundred and thirty shekels, one silver
+bowl of seventy shekels, after the shekel of the sanctuary; both of
+them full of fine flour mingled with oil for a meat offering: 7:32 One
+golden spoon of ten shekels, full of incense: 7:33 One young bullock,
+one ram, one lamb of the first year, for a burnt offering: 7:34 One
+kid of the goats for a sin offering: 7:35 And for a sacrifice of peace
+offerings, two oxen, five rams, five he goats, five lambs of the first
+year: this was the offering of Elizur the son of Shedeur.
+
+7:36 On the fifth day Shelumiel the son of Zurishaddai, prince of the
+children of Simeon, did offer: 7:37 His offering was one silver
+charger, the weight whereof was an hundred and thirty shekels, one
+silver bowl of seventy shekels, after the shekel of the sanctuary;
+both of them full of fine flour mingled with oil for a meat offering:
+7:38 One golden spoon of ten shekels, full of incense: 7:39 One young
+bullock, one ram, one lamb of the first year, for a burnt offering:
+7:40 One kid of the goats for a sin offering: 7:41 And for a sacrifice
+of peace offerings, two oxen, five rams, five he goats, five lambs of
+the first year: this was the offering of Shelumiel the son of
+Zurishaddai.
+
+7:42 On the sixth day Eliasaph the son of Deuel, prince of the
+children of Gad, offered: 7:43 His offering was one silver charger of
+the weight of an hundred and thirty shekels, a silver bowl of seventy
+shekels, after the shekel of the sanctuary; both of them full of fine
+flour mingled with oil for a meat offering: 7:44 One golden spoon of
+ten shekels, full of incense: 7:45 One young bullock, one ram, one
+lamb of the first year, for a burnt offering: 7:46 One kid of the
+goats for a sin offering: 7:47 And for a sacrifice of peace offerings,
+two oxen, five rams, five he goats, five lambs of the first year: this
+was the offering of Eliasaph the son of Deuel.
+
+7:48 On the seventh day Elishama the son of Ammihud, prince of the
+children of Ephraim, offered: 7:49 His offering was one silver
+charger, the weight whereof was an hundred and thirty shekels, one
+silver bowl of seventy shekels, after the shekel of the sanctuary;
+both of them full of fine flour mingled with oil for a meat offering:
+7:50 One golden spoon of ten shekels, full of incense: 7:51 One young
+bullock, one ram, one lamb of the first year, for a burnt offering:
+7:52 One kid of the goats for a sin offering: 7:53 And for a sacrifice
+of peace offerings, two oxen, five rams, five he goats, five lambs of
+the first year: this was the offering of Elishama the son of Ammihud.
+
+7:54 On the eighth day offered Gamaliel the son of Pedahzur, prince of
+the children of Manasseh: 7:55 His offering was one silver charger of
+the weight of an hundred and thirty shekels, one silver bowl of
+seventy shekels, after the shekel of the sanctuary; both of them full
+of fine flour mingled with oil for a meat offering: 7:56 One golden
+spoon of ten shekels, full of incense: 7:57 One young bullock, one
+ram, one lamb of the first year, for a burnt offering: 7:58 One kid of
+the goats for a sin offering: 7:59 And for a sacrifice of peace
+offerings, two oxen, five rams, five he goats, five lambs of the first
+year: this was the offering of Gamaliel the son of Pedahzur.
+
+7:60 On the ninth day Abidan the son of Gideoni, prince of the
+children of Benjamin, offered: 7:61 His offering was one silver
+charger, the weight whereof was an hundred and thirty shekels, one
+silver bowl of seventy shekels, after the shekel of the sanctuary;
+both of them full of fine flour mingled with oil for a meat offering:
+7:62 One golden spoon of ten shekels, full of incense: 7:63 One young
+bullock, one ram, one lamb of the first year, for a burnt offering:
+7:64 One kid of the goats for a sin offering: 7:65 And for a sacrifice
+of peace offerings, two oxen, five rams, five he goats, five lambs of
+the first year: this was the offering of Abidan the son of Gideoni.
+
+7:66 On the tenth day Ahiezer the son of Ammishaddai, prince of the
+children of Dan, offered: 7:67 His offering was one silver charger,
+the weight whereof was an hundred and thirty shekels, one silver bowl
+of seventy shekels, after the shekel of the sanctuary; both of them
+full of fine flour mingled with oil for a meat offering: 7:68 One
+golden spoon of ten shekels, full of incense: 7:69 One young bullock,
+one ram, one lamb of the first year, for a burnt offering: 7:70 One
+kid of the goats for a sin offering: 7:71 And for a sacrifice of peace
+offerings, two oxen, five rams, five he goats, five lambs of the first
+year: this was the offering of Ahiezer the son of Ammishaddai.
+
+7:72 On the eleventh day Pagiel the son of Ocran, prince of the
+children of Asher, offered: 7:73 His offering was one silver charger,
+the weight whereof was an hundred and thirty shekels, one silver bowl
+of seventy shekels, after the shekel of the sanctuary; both of them
+full of fine flour mingled with oil for a meat offering: 7:74 One
+golden spoon of ten shekels, full of incense: 7:75 One young bullock,
+one ram, one lamb of the first year, for a burnt offering: 7:76 One
+kid of the goats for a sin offering: 7:77 And for a sacrifice of peace
+offerings, two oxen, five rams, five he goats, five lambs of the first
+year: this was the offering of Pagiel the son of Ocran.
+
+7:78 On the twelfth day Ahira the son of Enan, prince of the children
+of Naphtali, offered: 7:79 His offering was one silver charger, the
+weight whereof was an hundred and thirty shekels, one silver bowl of
+seventy shekels, after the shekel of the sanctuary; both of them full
+of fine flour mingled with oil for a meat offering: 7:80 One golden
+spoon of ten shekels, full of incense: 7:81 One young bullock, one
+ram, one lamb of the first year, for a burnt offering: 7:82 One kid of
+the goats for a sin offering: 7:83 And for a sacrifice of peace
+offerings, two oxen, five rams, five he goats, five lambs of the first
+year: this was the offering of Ahira the son of Enan.
+
+7:84 This was the dedication of the altar, in the day when it was
+anointed, by the princes of Israel: twelve chargers of silver, twelve
+silver bowls, twelve spoons of gold: 7:85 Each charger of silver
+weighing an hundred and thirty shekels, each bowl seventy: all the
+silver vessels weighed two thousand and four hundred shekels, after
+the shekel of the sanctuary: 7:86 The golden spoons were twelve, full
+of incense, weighing ten shekels apiece, after the shekel of the
+sanctuary: all the gold of the spoons was an hundred and twenty
+shekels.
+
+7:87 All the oxen for the burnt offering were twelve bullocks, the
+rams twelve, the lambs of the first year twelve, with their meat
+offering: and the kids of the goats for sin offering twelve.
+
+7:88 And all the oxen for the sacrifice of the peace offerings were
+twenty and four bullocks, the rams sixty, the he goats sixty, the
+lambs of the first year sixty. This was the dedication of the altar,
+after that it was anointed.
+
+7:89 And when Moses was gone into the tabernacle of the congregation
+to speak with him, then he heard the voice of one speaking unto him
+from off the mercy seat that was upon the ark of testimony, from
+between the two cherubims: and he spake unto him.
+
+8:1 And the LORD spake unto Moses, saying, 8:2 Speak unto Aaron and
+say unto him, When thou lightest the lamps, the seven lamps shall give
+light over against the candlestick.
+
+8:3 And Aaron did so; he lighted the lamps thereof over against the
+candlestick, as the LORD commanded Moses.
+
+8:4 And this work of the candlestick was of beaten gold, unto the
+shaft thereof, unto the flowers thereof, was beaten work: according
+unto the pattern which the LORD had shewed Moses, so he made the
+candlestick.
+
+8:5 And the LORD spake unto Moses, saying, 8:6 Take the Levites from
+among the children of Israel, and cleanse them.
+
+8:7 And thus shalt thou do unto them, to cleanse them: Sprinkle water
+of purifying upon them, and let them shave all their flesh, and let
+them wash their clothes, and so make themselves clean.
+
+8:8 Then let them take a young bullock with his meat offering, even
+fine flour mingled with oil, and another young bullock shalt thou take
+for a sin offering.
+
+8:9 And thou shalt bring the Levites before the tabernacle of the
+congregation: and thou shalt gather the whole assembly of the children
+of Israel together: 8:10 And thou shalt bring the Levites before the
+LORD: and the children of Israel shall put their hands upon the
+Levites: 8:11 And Aaron shall offer the Levites before the LORD for an
+offering of the children of Israel, that they may execute the service
+of the LORD.
+
+8:12 And the Levites shall lay their hands upon the heads of the
+bullocks: and thou shalt offer the one for a sin offering, and the
+other for a burnt offering, unto the LORD, to make an atonement for
+the Levites.
+
+8:13 And thou shalt set the Levites before Aaron, and before his sons,
+and offer them for an offering unto the LORD.
+
+8:14 Thus shalt thou separate the Levites from among the children of
+Israel: and the Levites shall be mine.
+
+8:15 And after that shall the Levites go in to do the service of the
+tabernacle of the congregation: and thou shalt cleanse them, and offer
+them for an offering.
+
+8:16 For they are wholly given unto me from among the children of
+Israel; instead of such as open every womb, even instead of the
+firstborn of all the children of Israel, have I taken them unto me.
+
+8:17 For all the firstborn of the children of Israel are mine, both
+man and beast: on the day that I smote every firstborn in the land of
+Egypt I sanctified them for myself.
+
+8:18 And I have taken the Levites for all the firstborn of the
+children of Israel.
+
+8:19 And I have given the Levites as a gift to Aaron and to his sons
+from among the children of Israel, to do the service of the children
+of Israel in the tabernacle of the congregation, and to make an
+atonement for the children of Israel: that there be no plague among
+the children of Israel, when the children of Israel come nigh unto the
+sanctuary.
+
+8:20 And Moses, and Aaron, and all the congregation of the children of
+Israel, did to the Levites according unto all that the LORD commanded
+Moses concerning the Levites, so did the children of Israel unto them.
+
+8:21 And the Levites were purified, and they washed their clothes; and
+Aaron offered them as an offering before the LORD; and Aaron made an
+atonement for them to cleanse them.
+
+8:22 And after that went the Levites in to do their service in the
+tabernacle of the congregation before Aaron, and before his sons: as
+the LORD had commanded Moses concerning the Levites, so did they unto
+them.
+
+8:23 And the LORD spake unto Moses, saying, 8:24 This is it that
+belongeth unto the Levites: from twenty and five years old and upward
+they shall go in to wait upon the service of the tabernacle of the
+congregation: 8:25 And from the age of fifty years they shall cease
+waiting upon the service thereof, and shall serve no more: 8:26 But
+shall minister with their brethren in the tabernacle of the
+congregation, to keep the charge, and shall do no service. Thus shalt
+thou do unto the Levites touching their charge.
+
+9:1 And the LORD spake unto Moses in the wilderness of Sinai, in the
+first month of the second year after they were come out of the land of
+Egypt, saying, 9:2 Let the children of Israel also keep the passover
+at his appointed season.
+
+9:3 In the fourteenth day of this month, at even, ye shall keep it in
+his appointed season: according to all the rites of it, and according
+to all the ceremonies thereof, shall ye keep it.
+
+9:4 And Moses spake unto the children of Israel, that they should keep
+the passover.
+
+9:5 And they kept the passover on the fourteenth day of the first
+month at even in the wilderness of Sinai: according to all that the
+LORD commanded Moses, so did the children of Israel.
+
+9:6 And there were certain men, who were defiled by the dead body of a
+man, that they could not keep the passover on that day: and they came
+before Moses and before Aaron on that day: 9:7 And those men said unto
+him, We are defiled by the dead body of a man: wherefore are we kept
+back, that we may not offer an offering of the LORD in his appointed
+season among the children of Israel? 9:8 And Moses said unto them,
+Stand still, and I will hear what the LORD will command concerning
+you.
+
+9:9 And the LORD spake unto Moses, saying, 9:10 Speak unto the
+children of Israel, saying, If any man of you or of your posterity
+shall be unclean by reason of a dead body, or be in a journey afar
+off, yet he shall keep the passover unto the LORD.
+
+9:11 The fourteenth day of the second month at even they shall keep
+it, and eat it with unleavened bread and bitter herbs.
+
+9:12 They shall leave none of it unto the morning, nor break any bone
+of it: according to all the ordinances of the passover they shall keep
+it.
+
+9:13 But the man that is clean, and is not in a journey, and
+forbeareth to keep the passover, even the same soul shall be cut off
+from among his people: because he brought not the offering of the LORD
+in his appointed season, that man shall bear his sin.
+
+9:14 And if a stranger shall sojourn among you, and will keep the
+passover unto the LORD; according to the ordinance of the passover,
+and according to the manner thereof, so shall he do: ye shall have one
+ordinance, both for the stranger, and for him that was born in the
+land.
+
+9:15 And on the day that the tabernacle was reared up the cloud
+covered the tabernacle, namely, the tent of the testimony: and at even
+there was upon the tabernacle as it were the appearance of fire, until
+the morning.
+
+9:16 So it was alway: the cloud covered it by day, and the appearance
+of fire by night.
+
+9:17 And when the cloud was taken up from the tabernacle, then after
+that the children of Israel journeyed: and in the place where the
+cloud abode, there the children of Israel pitched their tents.
+
+9:18 At the commandment of the LORD the children of Israel journeyed,
+and at the commandment of the LORD they pitched: as long as the cloud
+abode upon the tabernacle they rested in their tents.
+
+9:19 And when the cloud tarried long upon the tabernacle many days,
+then the children of Israel kept the charge of the LORD, and journeyed
+not.
+
+9:20 And so it was, when the cloud was a few days upon the tabernacle;
+according to the commandment of the LORD they abode in their tents,
+and according to the commandment of the LORD they journeyed.
+
+9:21 And so it was, when the cloud abode from even unto the morning,
+and that the cloud was taken up in the morning, then they journeyed:
+whether it was by day or by night that the cloud was taken up, they
+journeyed.
+
+9:22 Or whether it were two days, or a month, or a year, that the
+cloud tarried upon the tabernacle, remaining thereon, the children of
+Israel abode in their tents, and journeyed not: but when it was taken
+up, they journeyed.
+
+9:23 At the commandment of the LORD they rested in the tents, and at
+the commandment of the LORD they journeyed: they kept the charge of
+the LORD, at the commandment of the LORD by the hand of Moses.
+
+10:1 And the LORD spake unto Moses, saying, 10:2 Make thee two
+trumpets of silver; of a whole piece shalt thou make them: that thou
+mayest use them for the calling of the assembly, and for the
+journeying of the camps.
+
+10:3 And when they shall blow with them, all the assembly shall
+assemble themselves to thee at the door of the tabernacle of the
+congregation.
+
+10:4 And if they blow but with one trumpet, then the princes, which
+are heads of the thousands of Israel, shall gather themselves unto
+thee.
+
+10:5 When ye blow an alarm, then the camps that lie on the east parts
+shall go forward.
+
+10:6 When ye blow an alarm the second time, then the camps that lie on
+the south side shall take their journey: they shall blow an alarm for
+their journeys.
+
+10:7 But when the congregation is to be gathered together, ye shall
+blow, but ye shall not sound an alarm.
+
+10:8 And the sons of Aaron, the priests, shall blow with the trumpets;
+and they shall be to you for an ordinance for ever throughout your
+generations.
+
+10:9 And if ye go to war in your land against the enemy that
+oppresseth you, then ye shall blow an alarm with the trumpets; and ye
+shall be remembered before the LORD your God, and ye shall be saved
+from your enemies.
+
+10:10 Also in the day of your gladness, and in your solemn days, and
+in the beginnings of your months, ye shall blow with the trumpets over
+your burnt offerings, and over the sacrifices of your peace offerings;
+that they may be to you for a memorial before your God: I am the LORD
+your God.
+
+10:11 And it came to pass on the twentieth day of the second month, in
+the second year, that the cloud was taken up from off the tabernacle
+of the testimony.
+
+10:12 And the children of Israel took their journeys out of the
+wilderness of Sinai; and the cloud rested in the wilderness of Paran.
+
+10:13 And they first took their journey according to the commandment
+of the LORD by the hand of Moses.
+
+10:14 In the first place went the standard of the camp of the children
+of Judah according to their armies: and over his host was Nahshon the
+son of Amminadab.
+
+10:15 And over the host of the tribe of the children of Issachar was
+Nethaneel the son of Zuar.
+
+10:16 And over the host of the tribe of the children of Zebulun was
+Eliab the son of Helon.
+
+10:17 And the tabernacle was taken down; and the sons of Gershon and
+the sons of Merari set forward, bearing the tabernacle.
+
+10:18 And the standard of the camp of Reuben set forward according to
+their armies: and over his host was Elizur the son of Shedeur.
+
+10:19 And over the host of the tribe of the children of Simeon was
+Shelumiel the son of Zurishaddai.
+
+10:20 And over the host of the tribe of the children of Gad was
+Eliasaph the son of Deuel.
+
+10:21 And the Kohathites set forward, bearing the sanctuary: and the
+other did set up the tabernacle against they came.
+
+10:22 And the standard of the camp of the children of Ephraim set
+forward according to their armies: and over his host was Elishama the
+son of Ammihud.
+
+10:23 And over the host of the tribe of the children of Manasseh was
+Gamaliel the son of Pedahzur.
+
+10:24 And over the host of the tribe of the children of Benjamin was
+Abidan the son of Gideoni.
+
+10:25 And the standard of the camp of the children of Dan set forward,
+which was the rereward of all the camps throughout their hosts: and
+over his host was Ahiezer the son of Ammishaddai.
+
+10:26 And over the host of the tribe of the children of Asher was
+Pagiel the son of Ocran.
+
+10:27 And over the host of the tribe of the children of Naphtali was
+Ahira the son of Enan.
+
+10:28 Thus were the journeyings of the children of Israel according to
+their armies, when they set forward.
+
+10:29 And Moses said unto Hobab, the son of Raguel the Midianite,
+Moses' father in law, We are journeying unto the place of which the
+LORD said, I will give it you: come thou with us, and we will do thee
+good: for the LORD hath spoken good concerning Israel.
+
+10:30 And he said unto him, I will not go; but I will depart to mine
+own land, and to my kindred.
+
+10:31 And he said, Leave us not, I pray thee; forasmuch as thou
+knowest how we are to encamp in the wilderness, and thou mayest be to
+us instead of eyes.
+
+10:32 And it shall be, if thou go with us, yea, it shall be, that what
+goodness the LORD shall do unto us, the same will we do unto thee.
+
+10:33 And they departed from the mount of the LORD three days'
+journey: and the ark of the covenant of the LORD went before them in
+the three days' journey, to search out a resting place for them.
+
+10:34 And the cloud of the LORD was upon them by day, when they went
+out of the camp.
+
+10:35 And it came to pass, when the ark set forward, that Moses said,
+Rise up, LORD, and let thine enemies be scattered; and let them that
+hate thee flee before thee.
+
+10:36 And when it rested, he said, Return, O LORD, unto the many
+thousands of Israel.
+
+11:1 And when the people complained, it displeased the LORD: and the
+LORD heard it; and his anger was kindled; and the fire of the LORD
+burnt among them, and consumed them that were in the uttermost parts
+of the camp.
+
+11:2 And the people cried unto Moses; and when Moses prayed unto the
+LORD, the fire was quenched.
+
+11:3 And he called the name of the place Taberah: because the fire of
+the LORD burnt among them.
+
+11:4 And the mixt multitude that was among them fell a lusting: and
+the children of Israel also wept again, and said, Who shall give us
+flesh to eat? 11:5 We remember the fish, which we did eat in Egypt
+freely; the cucumbers, and the melons, and the leeks, and the onions,
+and the garlick: 11:6 But now our soul is dried away: there is nothing
+at all, beside this manna, before our eyes.
+
+11:7 And the manna was as coriander seed, and the colour thereof as
+the colour of bdellium.
+
+11:8 And the people went about, and gathered it, and ground it in
+mills, or beat it in a mortar, and baked it in pans, and made cakes of
+it: and the taste of it was as the taste of fresh oil.
+
+11:9 And when the dew fell upon the camp in the night, the manna fell
+upon it.
+
+11:10 Then Moses heard the people weep throughout their families,
+every man in the door of his tent: and the anger of the LORD was
+kindled greatly; Moses also was displeased.
+
+11:11 And Moses said unto the LORD, Wherefore hast thou afflicted thy
+servant? and wherefore have I not found favour in thy sight, that thou
+layest the burden of all this people upon me? 11:12 Have I conceived
+all this people? have I begotten them, that thou shouldest say unto
+me, Carry them in thy bosom, as a nursing father beareth the sucking
+child, unto the land which thou swarest unto their fathers? 11:13
+Whence should I have flesh to give unto all this people? for they weep
+unto me, saying, Give us flesh, that we may eat.
+
+11:14 I am not able to bear all this people alone, because it is too
+heavy for me.
+
+11:15 And if thou deal thus with me, kill me, I pray thee, out of
+hand, if I have found favour in thy sight; and let me not see my
+wretchedness.
+
+11:16 And the LORD said unto Moses, Gather unto me seventy men of the
+elders of Israel, whom thou knowest to be the elders of the people,
+and officers over them; and bring them unto the tabernacle of the
+congregation, that they may stand there with thee.
+
+11:17 And I will come down and talk with thee there: and I will take
+of the spirit which is upon thee, and will put it upon them; and they
+shall bear the burden of the people with thee, that thou bear it not
+thyself alone.
+
+11:18 And say thou unto the people, Sanctify yourselves against to
+morrow, and ye shall eat flesh: for ye have wept in the ears of the
+LORD, saying, Who shall give us flesh to eat? for it was well with us
+in Egypt: therefore the LORD will give you flesh, and ye shall eat.
+
+11:19 Ye shall not eat one day, nor two days, nor five days, neither
+ten days, nor twenty days; 11:20 But even a whole month, until it come
+out at your nostrils, and it be loathsome unto you: because that ye
+have despised the LORD which is among you, and have wept before him,
+saying, Why came we forth out of Egypt? 11:21 And Moses said, The
+people, among whom I am, are six hundred thousand footmen; and thou
+hast said, I will give them flesh, that they may eat a whole month.
+
+11:22 Shall the flocks and the herds be slain for them, to suffice
+them? or shall all the fish of the sea be gathered together for them,
+to suffice them? 11:23 And the LORD said unto Moses, Is the LORD's
+hand waxed short? thou shalt see now whether my word shall come to
+pass unto thee or not.
+
+11:24 And Moses went out, and told the people the words of the LORD,
+and gathered the seventy men of the elders of the people, and set them
+round about the tabernacle.
+
+11:25 And the LORD came down in a cloud, and spake unto him, and took
+of the spirit that was upon him, and gave it unto the seventy elders:
+and it came to pass, that, when the spirit rested upon them, they
+prophesied, and did not cease.
+
+11:26 But there remained two of the men in the camp, the name of the
+one was Eldad, and the name of the other Medad: and the spirit rested
+upon them; and they were of them that were written, but went not out
+unto the tabernacle: and they prophesied in the camp.
+
+11:27 And there ran a young man, and told Moses, and said, Eldad and
+Medad do prophesy in the camp.
+
+11:28 And Joshua the son of Nun, the servant of Moses, one of his
+young men, answered and said, My lord Moses, forbid them.
+
+11:29 And Moses said unto him, Enviest thou for my sake? would God
+that all the LORD's people were prophets, and that the LORD would put
+his spirit upon them! 11:30 And Moses gat him into the camp, he and
+the elders of Israel.
+
+11:31 And there went forth a wind from the LORD, and brought quails
+from the sea, and let them fall by the camp, as it were a day's
+journey on this side, and as it were a day's journey on the other
+side, round about the camp, and as it were two cubits high upon the
+face of the earth.
+
+11:32 And the people stood up all that day, and all that night, and
+all the next day, and they gathered the quails: he that gathered least
+gathered ten homers: and they spread them all abroad for themselves
+round about the camp.
+
+11:33 And while the flesh was yet between their teeth, ere it was
+chewed, the wrath of the LORD was kindled against the people, and the
+LORD smote the people with a very great plague.
+
+11:34 And he called the name of that place Kibrothhattaavah: because
+there they buried the people that lusted.
+
+11:35 And the people journeyed from Kibrothhattaavah unto Hazeroth;
+and abode at Hazeroth.
+
+12:1 And Miriam and Aaron spake against Moses because of the Ethiopian
+woman whom he had married: for he had married an Ethiopian woman.
+
+12:2 And they said, Hath the LORD indeed spoken only by Moses? hath he
+not spoken also by us? And the LORD heard it.
+
+12:3 (Now the man Moses was very meek, above all the men which were
+upon the face of the earth.) 12:4 And the LORD spake suddenly unto
+Moses, and unto Aaron, and unto Miriam, Come out ye three unto the
+tabernacle of the congregation. And they three came out.
+
+12:5 And the LORD came down in the pillar of the cloud, and stood in
+the door of the tabernacle, and called Aaron and Miriam: and they both
+came forth.
+
+12:6 And he said, Hear now my words: If there be a prophet among you,
+I the LORD will make myself known unto him in a vision, and will speak
+unto him in a dream.
+
+12:7 My servant Moses is not so, who is faithful in all mine house.
+
+12:8 With him will I speak mouth to mouth, even apparently, and not in
+dark speeches; and the similitude of the LORD shall he behold:
+wherefore then were ye not afraid to speak against my servant Moses?
+12:9 And the anger of the LORD was kindled against them; and he
+departed.
+
+12:10 And the cloud departed from off the tabernacle; and, behold,
+Miriam became leprous, white as snow: and Aaron looked upon Miriam,
+and, behold, she was leprous.
+
+12:11 And Aaron said unto Moses, Alas, my lord, I beseech thee, lay
+not the sin upon us, wherein we have done foolishly, and wherein we
+have sinned.
+
+12:12 Let her not be as one dead, of whom the flesh is half consumed
+when he cometh out of his mother's womb.
+
+12:13 And Moses cried unto the LORD, saying, Heal her now, O God, I
+beseech thee.
+
+12:14 And the LORD said unto Moses, If her father had but spit in her
+face, should she not be ashamed seven days? let her be shut out from
+the camp seven days, and after that let her be received in again.
+
+12:15 And Miriam was shut out from the camp seven days: and the people
+journeyed not till Miriam was brought in again.
+
+12:16 And afterward the people removed from Hazeroth, and pitched in
+the wilderness of Paran.
+
+13:1 And the LORD spake unto Moses, saying, 13:2 Send thou men, that
+they may search the land of Canaan, which I give unto the children of
+Israel: of every tribe of their fathers shall ye send a man, every one
+a ruler among them.
+
+13:3 And Moses by the commandment of the LORD sent them from the
+wilderness of Paran: all those men were heads of the children of
+Israel.
+
+13:4 And these were their names: of the tribe of Reuben, Shammua the
+son of Zaccur.
+
+13:5 Of the tribe of Simeon, Shaphat the son of Hori.
+
+13:6 Of the tribe of Judah, Caleb the son of Jephunneh.
+
+13:7 Of the tribe of Issachar, Igal the son of Joseph.
+
+13:8 Of the tribe of Ephraim, Oshea the son of Nun.
+
+13:9 Of the tribe of Benjamin, Palti the son of Raphu.
+
+13:10 Of the tribe of Zebulun, Gaddiel the son of Sodi.
+
+13:11 Of the tribe of Joseph, namely, of the tribe of Manasseh, Gaddi
+the son of Susi.
+
+13:12 Of the tribe of Dan, Ammiel the son of Gemalli.
+
+13:13 Of the tribe of Asher, Sethur the son of Michael.
+
+13:14 Of the tribe of Naphtali, Nahbi the son of Vophsi.
+
+13:15 Of the tribe of Gad, Geuel the son of Machi.
+
+13:16 These are the names of the men which Moses sent to spy out the
+land.
+
+And Moses called Oshea the son of Nun Jehoshua.
+
+13:17 And Moses sent them to spy out the land of Canaan, and said unto
+them, Get you up this way southward, and go up into the mountain:
+13:18 And see the land, what it is, and the people that dwelleth
+therein, whether they be strong or weak, few or many; 13:19 And what
+the land is that they dwell in, whether it be good or bad; and what
+cities they be that they dwell in, whether in tents, or in strong
+holds; 13:20 And what the land is, whether it be fat or lean, whether
+there be wood therein, or not. And be ye of good courage, and bring of
+the fruit of the land. Now the time was the time of the firstripe
+grapes.
+
+13:21 So they went up, and searched the land from the wilderness of
+Zin unto Rehob, as men come to Hamath.
+
+13:22 And they ascended by the south, and came unto Hebron; where
+Ahiman, Sheshai, and Talmai, the children of Anak, were. (Now Hebron
+was built seven years before Zoan in Egypt.) 13:23 And they came unto
+the brook of Eshcol, and cut down from thence a branch with one
+cluster of grapes, and they bare it between two upon a staff; and they
+brought of the pomegranates, and of the figs.
+
+13:24 The place was called the brook Eshcol, because of the cluster of
+grapes which the children of Israel cut down from thence.
+
+13:25 And they returned from searching of the land after forty days.
+
+13:26 And they went and came to Moses, and to Aaron, and to all the
+congregation of the children of Israel, unto the wilderness of Paran,
+to Kadesh; and brought back word unto them, and unto all the
+congregation, and shewed them the fruit of the land.
+
+13:27 And they told him, and said, We came unto the land whither thou
+sentest us, and surely it floweth with milk and honey; and this is the
+fruit of it.
+
+13:28 Nevertheless the people be strong that dwell in the land, and
+the cities are walled, and very great: and moreover we saw the
+children of Anak there.
+
+13:29 The Amalekites dwell in the land of the south: and the Hittites,
+and the Jebusites, and the Amorites, dwell in the mountains: and the
+Canaanites dwell by the sea, and by the coast of Jordan.
+
+13:30 And Caleb stilled the people before Moses, and said, Let us go
+up at once, and possess it; for we are well able to overcome it.
+
+13:31 But the men that went up with him said, We be not able to go up
+against the people; for they are stronger than we.
+
+13:32 And they brought up an evil report of the land which they had
+searched unto the children of Israel, saying, The land, through which
+we have gone to search it, is a land that eateth up the inhabitants
+thereof; and all the people that we saw in it are men of a great
+stature.
+
+13:33 And there we saw the giants, the sons of Anak, which come of the
+giants: and we were in our own sight as grasshoppers, and so we were
+in their sight.
+
+14:1 And all the congregation lifted up their voice, and cried; and
+the people wept that night.
+
+14:2 And all the children of Israel murmured against Moses and against
+Aaron: and the whole congregation said unto them, Would God that we
+had died in the land of Egypt! or would God we had died in this
+wilderness! 14:3 And wherefore hath the LORD brought us unto this
+land, to fall by the sword, that our wives and our children should be
+a prey? were it not better for us to return into Egypt? 14:4 And they
+said one to another, Let us make a captain, and let us return into
+Egypt.
+
+14:5 Then Moses and Aaron fell on their faces before all the assembly
+of the congregation of the children of Israel.
+
+14:6 And Joshua the son of Nun, and Caleb the son of Jephunneh, which
+were of them that searched the land, rent their clothes: 14:7 And they
+spake unto all the company of the children of Israel, saying, The
+land, which we passed through to search it, is an exceeding good land.
+
+14:8 If the LORD delight in us, then he will bring us into this land,
+and give it us; a land which floweth with milk and honey.
+
+14:9 Only rebel not ye against the LORD, neither fear ye the people of
+the land; for they are bread for us: their defence is departed from
+them, and the LORD is with us: fear them not.
+
+14:10 But all the congregation bade stone them with stones. And the
+glory of the LORD appeared in the tabernacle of the congregation
+before all the children of Israel.
+
+14:11 And the LORD said unto Moses, How long will this people provoke
+me? and how long will it be ere they believe me, for all the signs
+which I have shewed among them? 14:12 I will smite them with the
+pestilence, and disinherit them, and will make of thee a greater
+nation and mightier than they.
+
+14:13 And Moses said unto the LORD, Then the Egyptians shall hear it,
+(for thou broughtest up this people in thy might from among them;)
+14:14 And they will tell it to the inhabitants of this land: for they
+have heard that thou LORD art among this people, that thou LORD art
+seen face to face, and that thy cloud standeth over them, and that
+thou goest before them, by day time in a pillar of a cloud, and in a
+pillar of fire by night.
+
+14:15 Now if thou shalt kill all this people as one man, then the
+nations which have heard the fame of thee will speak, saying, 14:16
+Because the LORD was not able to bring this people into the land which
+he sware unto them, therefore he hath slain them in the wilderness.
+
+14:17 And now, I beseech thee, let the power of my LORD be great,
+according as thou hast spoken, saying, 14:18 The LORD is
+longsuffering, and of great mercy, forgiving iniquity and
+transgression, and by no means clearing the guilty, visiting the
+iniquity of the fathers upon the children unto the third and fourth
+generation.
+
+14:19 Pardon, I beseech thee, the iniquity of this people according
+unto the greatness of thy mercy, and as thou hast forgiven this
+people, from Egypt even until now.
+
+14:20 And the LORD said, I have pardoned according to thy word: 14:21
+But as truly as I live, all the earth shall be filled with the glory
+of the LORD.
+
+14:22 Because all those men which have seen my glory, and my miracles,
+which I did in Egypt and in the wilderness, and have tempted me now
+these ten times, and have not hearkened to my voice; 14:23 Surely they
+shall not see the land which I sware unto their fathers, neither shall
+any of them that provoked me see it: 14:24 But my servant Caleb,
+because he had another spirit with him, and hath followed me fully,
+him will I bring into the land whereinto he went; and his seed shall
+possess it.
+
+14:25 (Now the Amalekites and the Canaanites dwelt in the valley.)
+Tomorrow turn you, and get you into the wilderness by the way of the
+Red sea.
+
+14:26 And the LORD spake unto Moses and unto Aaron, saying, 14:27 How
+long shall I bear with this evil congregation, which murmur against
+me? I have heard the murmurings of the children of Israel, which they
+murmur against me.
+
+14:28 Say unto them, As truly as I live, saith the LORD, as ye have
+spoken in mine ears, so will I do to you: 14:29 Your carcases shall
+fall in this wilderness; and all that were numbered of you, according
+to your whole number, from twenty years old and upward which have
+murmured against me.
+
+14:30 Doubtless ye shall not come into the land, concerning which I
+sware to make you dwell therein, save Caleb the son of Jephunneh, and
+Joshua the son of Nun.
+
+14:31 But your little ones, which ye said should be a prey, them will
+I bring in, and they shall know the land which ye have despised.
+
+14:32 But as for you, your carcases, they shall fall in this
+wilderness.
+
+14:33 And your children shall wander in the wilderness forty years,
+and bear your whoredoms, until your carcases be wasted in the
+wilderness.
+
+14:34 After the number of the days in which ye searched the land, even
+forty days, each day for a year, shall ye bear your iniquities, even
+forty years, and ye shall know my breach of promise.
+
+14:35 I the LORD have said, I will surely do it unto all this evil
+congregation, that are gathered together against me: in this
+wilderness they shall be consumed, and there they shall die.
+
+14:36 And the men, which Moses sent to search the land, who returned,
+and made all the congregation to murmur against him, by bringing up a
+slander upon the land, 14:37 Even those men that did bring up the evil
+report upon the land, died by the plague before the LORD.
+
+14:38 But Joshua the son of Nun, and Caleb the son of Jephunneh, which
+were of the men that went to search the land, lived still.
+
+14:39 And Moses told these sayings unto all the children of Israel:
+and the people mourned greatly.
+
+14:40 And they rose up early in the morning, and gat them up into the
+top of the mountain, saying, Lo, we be here, and will go up unto the
+place which the LORD hath promised: for we have sinned.
+
+14:41 And Moses said, Wherefore now do ye transgress the commandment
+of the LORD? but it shall not prosper.
+
+14:42 Go not up, for the LORD is not among you; that ye be not smitten
+before your enemies.
+
+14:43 For the Amalekites and the Canaanites are there before you, and
+ye shall fall by the sword: because ye are turned away from the LORD,
+therefore the LORD will not be with you.
+
+14:44 But they presumed to go up unto the hill top: nevertheless the
+ark of the covenant of the LORD, and Moses, departed not out of the
+camp.
+
+14:45 Then the Amalekites came down, and the Canaanites which dwelt in
+that hill, and smote them, and discomfited them, even unto Hormah.
+
+15:1 And the LORD spake unto Moses, saying, 15:2 Speak unto the
+children of Israel, and say unto them, When ye be come into the land
+of your habitations, which I give unto you, 15:3 And will make an
+offering by fire unto the LORD, a burnt offering, or a sacrifice in
+performing a vow, or in a freewill offering, or in your solemn feasts,
+to make a sweet savour unto the LORD, of the herd or of the flock:
+15:4 Then shall he that offereth his offering unto the LORD bring a
+meat offering of a tenth deal of flour mingled with the fourth part of
+an hin of oil.
+
+15:5 And the fourth part of an hin of wine for a drink offering shalt
+thou prepare with the burnt offering or sacrifice, for one lamb.
+
+15:6 Or for a ram, thou shalt prepare for a meat offering two tenth
+deals of flour mingled with the third part of an hin of oil.
+
+15:7 And for a drink offering thou shalt offer the third part of an
+hin of wine, for a sweet savour unto the LORD.
+
+15:8 And when thou preparest a bullock for a burnt offering, or for a
+sacrifice in performing a vow, or peace offerings unto the LORD: 15:9
+Then shall he bring with a bullock a meat offering of three tenth
+deals of flour mingled with half an hin of oil.
+
+15:10 And thou shalt bring for a drink offering half an hin of wine,
+for an offering made by fire, of a sweet savour unto the LORD.
+
+15:11 Thus shall it be done for one bullock, or for one ram, or for a
+lamb, or a kid.
+
+15:12 According to the number that ye shall prepare, so shall ye do to
+every one according to their number.
+
+15:13 All that are born of the country shall do these things after
+this manner, in offering an offering made by fire, of a sweet savour
+unto the LORD.
+
+15:14 And if a stranger sojourn with you, or whosoever be among you in
+your generations, and will offer an offering made by fire, of a sweet
+savour unto the LORD; as ye do, so he shall do.
+
+15:15 One ordinance shall be both for you of the congregation, and
+also for the stranger that sojourneth with you, an ordinance for ever
+in your generations: as ye are, so shall the stranger be before the
+LORD.
+
+15:16 One law and one manner shall be for you, and for the stranger
+that sojourneth with you.
+
+15:17 And the LORD spake unto Moses, saying, 15:18 Speak unto the
+children of Israel, and say unto them, When ye come into the land
+whither I bring you, 15:19 Then it shall be, that, when ye eat of the
+bread of the land, ye shall offer up an heave offering unto the LORD.
+
+15:20 Ye shall offer up a cake of the first of your dough for an heave
+offering: as ye do the heave offering of the threshingfloor, so shall
+ye heave it.
+
+15:21 Of the first of your dough ye shall give unto the LORD an heave
+offering in your generations.
+
+15:22 And if ye have erred, and not observed all these commandments,
+which the LORD hath spoken unto Moses, 15:23 Even all that the LORD
+hath commanded you by the hand of Moses, from the day that the LORD
+commanded Moses, and henceforward among your generations; 15:24 Then
+it shall be, if ought be committed by ignorance without the knowledge
+of the congregation, that all the congregation shall offer one young
+bullock for a burnt offering, for a sweet savour unto the LORD, with
+his meat offering, and his drink offering, according to the manner,
+and one kid of the goats for a sin offering.
+
+15:25 And the priest shall make an atonement for all the congregation
+of the children of Israel, and it shall be forgiven them; for it is
+ignorance: and they shall bring their offering, a sacrifice made by
+fire unto the LORD, and their sin offering before the LORD, for their
+ignorance: 15:26 And it shall be forgiven all the congregation of the
+children of Israel, and the stranger that sojourneth among them;
+seeing all the people were in ignorance.
+
+15:27 And if any soul sin through ignorance, then he shall bring a she
+goat of the first year for a sin offering.
+
+15:28 And the priest shall make an atonement for the soul that sinneth
+ignorantly, when he sinneth by ignorance before the LORD, to make an
+atonement for him; and it shall be forgiven him.
+
+15:29 Ye shall have one law for him that sinneth through ignorance,
+both for him that is born among the children of Israel, and for the
+stranger that sojourneth among them.
+
+15:30 But the soul that doeth ought presumptuously, whether he be born
+in the land, or a stranger, the same reproacheth the LORD; and that
+soul shall be cut off from among his people.
+
+15:31 Because he hath despised the word of the LORD, and hath broken
+his commandment, that soul shall utterly be cut off; his iniquity
+shall be upon him.
+
+15:32 And while the children of Israel were in the wilderness, they
+found a man that gathered sticks upon the sabbath day.
+
+15:33 And they that found him gathering sticks brought him unto Moses
+and Aaron, and unto all the congregation.
+
+15:34 And they put him in ward, because it was not declared what
+should be done to him.
+
+15:35 And the LORD said unto Moses, The man shall be surely put to
+death: all the congregation shall stone him with stones without the
+camp.
+
+15:36 And all the congregation brought him without the camp, and
+stoned him with stones, and he died; as the LORD commanded Moses.
+
+15:37 And the LORD spake unto Moses, saying, 15:38 Speak unto the
+children of Israel, and bid them that they make them fringes in the
+borders of their garments throughout their generations, and that they
+put upon the fringe of the borders a ribband of blue: 15:39 And it
+shall be unto you for a fringe, that ye may look upon it, and remember
+all the commandments of the LORD, and do them; and that ye seek not
+after your own heart and your own eyes, after which ye use to go a
+whoring: 15:40 That ye may remember, and do all my commandments, and
+be holy unto your God.
+
+15:41 I am the LORD your God, which brought you out of the land of
+Egypt, to be your God: I am the LORD your God.
+
+16:1 Now Korah, the son of Izhar, the son of Kohath, the son of Levi,
+and Dathan and Abiram, the sons of Eliab, and On, the son of Peleth,
+sons of Reuben, took men: 16:2 And they rose up before Moses, with
+certain of the children of Israel, two hundred and fifty princes of
+the assembly, famous in the congregation, men of renown: 16:3 And they
+gathered themselves together against Moses and against Aaron, and said
+unto them, Ye take too much upon you, seeing all the congregation are
+holy, every one of them, and the LORD is among them: wherefore then
+lift ye up yourselves above the congregation of the LORD? 16:4 And
+when Moses heard it, he fell upon his face: 16:5 And he spake unto
+Korah and unto all his company, saying, Even to morrow the LORD will
+shew who are his, and who is holy; and will cause him to come near
+unto him: even him whom he hath chosen will he cause to come near unto
+him.
+
+16:6 This do; Take you censers, Korah, and all his company; 16:7 And
+put fire therein, and put incense in them before the LORD to morrow:
+and it shall be that the man whom the LORD doth choose, he shall be
+holy: ye take too much upon you, ye sons of Levi.
+
+16:8 And Moses said unto Korah, Hear, I pray you, ye sons of Levi:
+16:9 Seemeth it but a small thing unto you, that the God of Israel
+hath separated you from the congregation of Israel, to bring you near
+to himself to do the service of the tabernacle of the LORD, and to
+stand before the congregation to minister unto them? 16:10 And he
+hath brought thee near to him, and all thy brethren the sons of Levi
+with thee: and seek ye the priesthood also? 16:11 For which cause
+both thou and all thy company are gathered together against the LORD:
+and what is Aaron, that ye murmur against him? 16:12 And Moses sent
+to call Dathan and Abiram, the sons of Eliab: which said, We will not
+come up: 16:13 Is it a small thing that thou hast brought us up out of
+a land that floweth with milk and honey, to kill us in the wilderness,
+except thou make thyself altogether a prince over us? 16:14 Moreover
+thou hast not brought us into a land that floweth with milk and honey,
+or given us inheritance of fields and vineyards: wilt thou put out the
+eyes of these men? we will not come up.
+
+16:15 And Moses was very wroth, and said unto the LORD, Respect not
+thou their offering: I have not taken one ass from them, neither have
+I hurt one of them.
+
+16:16 And Moses said unto Korah, Be thou and all thy company before
+the LORD, thou, and they, and Aaron, to morrow: 16:17 And take every
+man his censer, and put incense in them, and bring ye before the LORD
+every man his censer, two hundred and fifty censers; thou also, and
+Aaron, each of you his censer.
+
+16:18 And they took every man his censer, and put fire in them, and
+laid incense thereon, and stood in the door of the tabernacle of the
+congregation with Moses and Aaron.
+
+16:19 And Korah gathered all the congregation against them unto the
+door of the tabernacle of the congregation: and the glory of the LORD
+appeared unto all the congregation.
+
+16:20 And the LORD spake unto Moses and unto Aaron, saying, 16:21
+Separate yourselves from among this congregation, that I may consume
+them in a moment.
+
+16:22 And they fell upon their faces, and said, O God, the God of the
+spirits of all flesh, shall one man sin, and wilt thou be wroth with
+all the congregation? 16:23 And the LORD spake unto Moses, saying,
+16:24 Speak unto the congregation, saying, Get you up from about the
+tabernacle of Korah, Dathan, and Abiram.
+
+16:25 And Moses rose up and went unto Dathan and Abiram; and the
+elders of Israel followed him.
+
+16:26 And he spake unto the congregation, saying, Depart, I pray you,
+from the tents of these wicked men, and touch nothing of their's, lest
+ye be consumed in all their sins.
+
+16:27 So they gat up from the tabernacle of Korah, Dathan, and Abiram,
+on every side: and Dathan and Abiram came out, and stood in the door
+of their tents, and their wives, and their sons, and their little
+children.
+
+16:28 And Moses said, Hereby ye shall know that the LORD hath sent me
+to do all these works; for I have not done them of mine own mind.
+
+16:29 If these men die the common death of all men, or if they be
+visited after the visitation of all men; then the LORD hath not sent
+me.
+
+16:30 But if the LORD make a new thing, and the earth open her mouth,
+and swallow them up, with all that appertain unto them, and they go
+down quick into the pit; then ye shall understand that these men have
+provoked the LORD.
+
+16:31 And it came to pass, as he had made an end of speaking all these
+words, that the ground clave asunder that was under them: 16:32 And
+the earth opened her mouth, and swallowed them up, and their houses,
+and all the men that appertained unto Korah, and all their goods.
+
+16:33 They, and all that appertained to them, went down alive into the
+pit, and the earth closed upon them: and they perished from among the
+congregation.
+
+16:34 And all Israel that were round about them fled at the cry of
+them: for they said, Lest the earth swallow us up also.
+
+16:35 And there came out a fire from the LORD, and consumed the two
+hundred and fifty men that offered incense.
+
+16:36 And the LORD spake unto Moses, saying, 16:37 Speak unto Eleazar
+the son of Aaron the priest, that he take up the censers out of the
+burning, and scatter thou the fire yonder; for they are hallowed.
+
+16:38 The censers of these sinners against their own souls, let them
+make them broad plates for a covering of the altar: for they offered
+them before the LORD, therefore they are hallowed: and they shall be a
+sign unto the children of Israel.
+
+16:39 And Eleazar the priest took the brasen censers, wherewith they
+that were burnt had offered; and they were made broad plates for a
+covering of the altar: 16:40 To be a memorial unto the children of
+Israel, that no stranger, which is not of the seed of Aaron, come near
+to offer incense before the LORD; that he be not as Korah, and as his
+company: as the LORD said to him by the hand of Moses.
+
+16:41 But on the morrow all the congregation of the children of Israel
+murmured against Moses and against Aaron, saying, Ye have killed the
+people of the LORD.
+
+16:42 And it came to pass, when the congregation was gathered against
+Moses and against Aaron, that they looked toward the tabernacle of the
+congregation: and, behold, the cloud covered it, and the glory of the
+LORD appeared.
+
+16:43 And Moses and Aaron came before the tabernacle of the
+congregation.
+
+16:44 And the LORD spake unto Moses, saying, 16:45 Get you up from
+among this congregation, that I may consume them as in a moment. And
+they fell upon their faces.
+
+16:46 And Moses said unto Aaron, Take a censer, and put fire therein
+from off the altar, and put on incense, and go quickly unto the
+congregation, and make an atonement for them: for there is wrath gone
+out from the LORD; the plague is begun.
+
+16:47 And Aaron took as Moses commanded, and ran into the midst of the
+congregation; and, behold, the plague was begun among the people: and
+he put on incense, and made an atonement for the people.
+
+16:48 And he stood between the dead and the living; and the plague was
+stayed.
+
+16:49 Now they that died in the plague were fourteen thousand and
+seven hundred, beside them that died about the matter of Korah.
+
+16:50 And Aaron returned unto Moses unto the door of the tabernacle of
+the congregation: and the plague was stayed.
+
+17:1 And the LORD spake unto Moses, saying, 17:2 Speak unto the
+children of Israel, and take of every one of them a rod according to
+the house of their fathers, of all their princes according to the
+house of their fathers twelve rods: write thou every man's name upon
+his rod.
+
+17:3 And thou shalt write Aaron's name upon the rod of Levi: for one
+rod shall be for the head of the house of their fathers.
+
+17:4 And thou shalt lay them up in the tabernacle of the congregation
+before the testimony, where I will meet with you.
+
+17:5 And it shall come to pass, that the man's rod, whom I shall
+choose, shall blossom: and I will make to cease from me the murmurings
+of the children of Israel, whereby they murmur against you.
+
+17:6 And Moses spake unto the children of Israel, and every one of
+their princes gave him a rod apiece, for each prince one, according to
+their fathers' houses, even twelve rods: and the rod of Aaron was
+among their rods.
+
+17:7 And Moses laid up the rods before the LORD in the tabernacle of
+witness.
+
+17:8 And it came to pass, that on the morrow Moses went into the
+tabernacle of witness; and, behold, the rod of Aaron for the house of
+Levi was budded, and brought forth buds, and bloomed blossoms, and
+yielded almonds.
+
+17:9 And Moses brought out all the rods from before the LORD unto all
+the children of Israel: and they looked, and took every man his rod.
+
+17:10 And the LORD said unto Moses, Bring Aaron's rod again before the
+testimony, to be kept for a token against the rebels; and thou shalt
+quite take away their murmurings from me, that they die not.
+
+17:11 And Moses did so: as the LORD commanded him, so did he.
+
+17:12 And the children of Israel spake unto Moses, saying, Behold, we
+die, we perish, we all perish.
+
+17:13 Whosoever cometh any thing near unto the tabernacle of the LORD
+shall die: shall we be consumed with dying? 18:1 And the LORD said
+unto Aaron, Thou and thy sons and thy father's house with thee shall
+bear the iniquity of the sanctuary: and thou and thy sons with thee
+shall bear the iniquity of your priesthood.
+
+18:2 And thy brethren also of the tribe of Levi, the tribe of thy
+father, bring thou with thee, that they may be joined unto thee, and
+minister unto thee: but thou and thy sons with thee shall minister
+before the tabernacle of witness.
+
+18:3 And they shall keep thy charge, and the charge of all the
+tabernacle: only they shall not come nigh the vessels of the sanctuary
+and the altar, that neither they, nor ye also, die.
+
+18:4 And they shall be joined unto thee, and keep the charge of the
+tabernacle of the congregation, for all the service of the tabernacle:
+and a stranger shall not come nigh unto you.
+
+18:5 And ye shall keep the charge of the sanctuary, and the charge of
+the altar: that there be no wrath any more upon the children of
+Israel.
+
+18:6 And I, behold, I have taken your brethren the Levites from among
+the children of Israel: to you they are given as a gift for the LORD,
+to do the service of the tabernacle of the congregation.
+
+18:7 Therefore thou and thy sons with thee shall keep your priest's
+office for everything of the altar, and within the vail; and ye shall
+serve: I have given your priest's office unto you as a service of
+gift: and the stranger that cometh nigh shall be put to death.
+
+18:8 And the LORD spake unto Aaron, Behold, I also have given thee the
+charge of mine heave offerings of all the hallowed things of the
+children of Israel; unto thee have I given them by reason of the
+anointing, and to thy sons, by an ordinance for ever.
+
+18:9 This shall be thine of the most holy things, reserved from the
+fire: every oblation of theirs, every meat offering of theirs, and
+every sin offering of theirs, and every trespass offering of theirs
+which they shall render unto me, shall be most holy for thee and for
+thy sons.
+
+18:10 In the most holy place shalt thou eat it; every male shall eat
+it: it shall be holy unto thee.
+
+18:11 And this is thine; the heave offering of their gift, with all
+the wave offerings of the children of Israel: I have given them unto
+thee, and to thy sons and to thy daughters with thee, by a statute for
+ever: every one that is clean in thy house shall eat of it.
+
+18:12 All the best of the oil, and all the best of the wine, and of
+the wheat, the firstfruits of them which they shall offer unto the
+LORD, them have I given thee.
+
+18:13 And whatsoever is first ripe in the land, which they shall bring
+unto the LORD, shall be thine; every one that is clean in thine house
+shall eat of it.
+
+18:14 Every thing devoted in Israel shall be thine.
+
+18:15 Every thing that openeth the matrix in all flesh, which they
+bring unto the LORD, whether it be of men or beasts, shall be thine:
+nevertheless the firstborn of man shalt thou surely redeem, and the
+firstling of unclean beasts shalt thou redeem.
+
+18:16 And those that are to be redeemed from a month old shalt thou
+redeem, according to thine estimation, for the money of five shekels,
+after the shekel of the sanctuary, which is twenty gerahs.
+
+18:17 But the firstling of a cow, or the firstling of a sheep, or the
+firstling of a goat, thou shalt not redeem; they are holy: thou shalt
+sprinkle their blood upon the altar, and shalt burn their fat for an
+offering made by fire, for a sweet savour unto the LORD.
+
+18:18 And the flesh of them shall be thine, as the wave breast and as
+the right shoulder are thine.
+
+18:19 All the heave offerings of the holy things, which the children
+of Israel offer unto the LORD, have I given thee, and thy sons and thy
+daughters with thee, by a statute for ever: it is a covenant of salt
+for ever before the LORD unto thee and to thy seed with thee.
+
+18:20 And the LORD spake unto Aaron, Thou shalt have no inheritance in
+their land, neither shalt thou have any part among them: I am thy part
+and thine inheritance among the children of Israel.
+
+18:21 And, behold, I have given the children of Levi all the tenth in
+Israel for an inheritance, for their service which they serve, even
+the service of the tabernacle of the congregation.
+
+18:22 Neither must the children of Israel henceforth come nigh the
+tabernacle of the congregation, lest they bear sin, and die.
+
+18:23 But the Levites shall do the service of the tabernacle of the
+congregation, and they shall bear their iniquity: it shall be a
+statute for ever throughout your generations, that among the children
+of Israel they have no inheritance.
+
+18:24 But the tithes of the children of Israel, which they offer as an
+heave offering unto the LORD, I have given to the Levites to inherit:
+therefore I have said unto them, Among the children of Israel they
+shall have no inheritance.
+
+18:25 And the LORD spake unto Moses, saying, 18:26 Thus speak unto the
+Levites, and say unto them, When ye take of the children of Israel the
+tithes which I have given you from them for your inheritance, then ye
+shall offer up an heave offering of it for the LORD, even a tenth part
+of the tithe.
+
+18:27 And this your heave offering shall be reckoned unto you, as
+though it were the corn of the threshingfloor, and as the fulness of
+the winepress.
+
+18:28 Thus ye also shall offer an heave offering unto the LORD of all
+your tithes, which ye receive of the children of Israel; and ye shall
+give thereof the LORD's heave offering to Aaron the priest.
+
+18:29 Out of all your gifts ye shall offer every heave offering of the
+LORD, of all the best thereof, even the hallowed part thereof out of
+it.
+
+18:30 Therefore thou shalt say unto them, When ye have heaved the best
+thereof from it, then it shall be counted unto the Levites as the
+increase of the threshingfloor, and as the increase of the winepress.
+
+18:31 And ye shall eat it in every place, ye and your households: for
+it is your reward for your service in the tabernacle of the
+congregation.
+
+18:32 And ye shall bear no sin by reason of it, when ye have heaved
+from it the best of it: neither shall ye pollute the holy things of
+the children of Israel, lest ye die.
+
+19:1 And the LORD spake unto Moses and unto Aaron, saying, 19:2 This
+is the ordinance of the law which the LORD hath commanded, saying,
+Speak unto the children of Israel, that they bring thee a red heifer
+without spot, wherein is no blemish, and upon which never came yoke:
+19:3 And ye shall give her unto Eleazar the priest, that he may bring
+her forth without the camp, and one shall slay her before his face:
+19:4 And Eleazar the priest shall take of her blood with his finger,
+and sprinkle of her blood directly before the tabernacle of the
+congregation seven times: 19:5 And one shall burn the heifer in his
+sight; her skin, and her flesh, and her blood, with her dung, shall he
+burn: 19:6 And the priest shall take cedar wood, and hyssop, and
+scarlet, and cast it into the midst of the burning of the heifer.
+
+19:7 Then the priest shall wash his clothes, and he shall bathe his
+flesh in water, and afterward he shall come into the camp, and the
+priest shall be unclean until the even.
+
+19:8 And he that burneth her shall wash his clothes in water, and
+bathe his flesh in water, and shall be unclean until the even.
+
+19:9 And a man that is clean shall gather up the ashes of the heifer,
+and lay them up without the camp in a clean place, and it shall be
+kept for the congregation of the children of Israel for a water of
+separation: it is a purification for sin.
+
+19:10 And he that gathereth the ashes of the heifer shall wash his
+clothes, and be unclean until the even: and it shall be unto the
+children of Israel, and unto the stranger that sojourneth among them,
+for a statute for ever.
+
+19:11 He that toucheth the dead body of any man shall be unclean seven
+days.
+
+19:12 He shall purify himself with it on the third day, and on the
+seventh day he shall be clean: but if he purify not himself the third
+day, then the seventh day he shall not be clean.
+
+19:13 Whosoever toucheth the dead body of any man that is dead, and
+purifieth not himself, defileth the tabernacle of the LORD; and that
+soul shall be cut off from Israel: because the water of separation was
+not sprinkled upon him, he shall be unclean; his uncleanness is yet
+upon him.
+
+19:14 This is the law, when a man dieth in a tent: all that come into
+the tent, and all that is in the tent, shall be unclean seven days.
+
+19:15 And every open vessel, which hath no covering bound upon it, is
+unclean.
+
+19:16 And whosoever toucheth one that is slain with a sword in the
+open fields, or a dead body, or a bone of a man, or a grave, shall be
+unclean seven days.
+
+19:17 And for an unclean person they shall take of the ashes of the
+burnt heifer of purification for sin, and running water shall be put
+thereto in a vessel: 19:18 And a clean person shall take hyssop, and
+dip it in the water, and sprinkle it upon the tent, and upon all the
+vessels, and upon the persons that were there, and upon him that
+touched a bone, or one slain, or one dead, or a grave: 19:19 And the
+clean person shall sprinkle upon the unclean on the third day, and on
+the seventh day: and on the seventh day he shall purify himself, and
+wash his clothes, and bathe himself in water, and shall be clean at
+even.
+
+19:20 But the man that shall be unclean, and shall not purify himself,
+that soul shall be cut off from among the congregation, because he
+hath defiled the sanctuary of the LORD: the water of separation hath
+not been sprinkled upon him; he is unclean.
+
+19:21 And it shall be a perpetual statute unto them, that he that
+sprinkleth the water of separation shall wash his clothes; and he that
+toucheth the water of separation shall be unclean until even.
+
+19:22 And whatsoever the unclean person toucheth shall be unclean; and
+the soul that toucheth it shall be unclean until even.
+
+20:1 Then came the children of Israel, even the whole congregation,
+into the desert of Zin in the first month: and the people abode in
+Kadesh; and Miriam died there, and was buried there.
+
+20:2 And there was no water for the congregation: and they gathered
+themselves together against Moses and against Aaron.
+
+20:3 And the people chode with Moses, and spake, saying, Would God
+that we had died when our brethren died before the LORD! 20:4 And why
+have ye brought up the congregation of the LORD into this wilderness,
+that we and our cattle should die there? 20:5 And wherefore have ye
+made us to come up out of Egypt, to bring us in unto this evil place?
+it is no place of seed, or of figs, or of vines, or of pomegranates;
+neither is there any water to drink.
+
+20:6 And Moses and Aaron went from the presence of the assembly unto
+the door of the tabernacle of the congregation, and they fell upon
+their faces: and the glory of the LORD appeared unto them.
+
+20:7 And the LORD spake unto Moses, saying, 20:8 Take the rod, and
+gather thou the assembly together, thou, and Aaron thy brother, and
+speak ye unto the rock before their eyes; and it shall give forth his
+water, and thou shalt bring forth to them water out of the rock: so
+thou shalt give the congregation and their beasts drink.
+
+20:9 And Moses took the rod from before the LORD, as he commanded him.
+
+20:10 And Moses and Aaron gathered the congregation together before
+the rock, and he said unto them, Hear now, ye rebels; must we fetch
+you water out of this rock? 20:11 And Moses lifted up his hand, and
+with his rod he smote the rock twice: and the water came out
+abundantly, and the congregation drank, and their beasts also.
+
+20:12 And the LORD spake unto Moses and Aaron, Because ye believed me
+not, to sanctify me in the eyes of the children of Israel, therefore
+ye shall not bring this congregation into the land which I have given
+them.
+
+20:13 This is the water of Meribah; because the children of Israel
+strove with the LORD, and he was sanctified in them.
+
+20:14 And Moses sent messengers from Kadesh unto the king of Edom,
+Thus saith thy brother Israel, Thou knowest all the travail that hath
+befallen us: 20:15 How our fathers went down into Egypt, and we have
+dwelt in Egypt a long time; and the Egyptians vexed us, and our
+fathers: 20:16 And when we cried unto the LORD, he heard our voice,
+and sent an angel, and hath brought us forth out of Egypt: and,
+behold, we are in Kadesh, a city in the uttermost of thy border: 20:17
+Let us pass, I pray thee, through thy country: we will not pass
+through the fields, or through the vineyards, neither will we drink of
+the water of the wells: we will go by the king's high way, we will not
+turn to the right hand nor to the left, until we have passed thy
+borders.
+
+20:18 And Edom said unto him, Thou shalt not pass by me, lest I come
+out against thee with the sword.
+
+20:19 And the children of Israel said unto him, We will go by the high
+way: and if I and my cattle drink of thy water, then I will pay for
+it: I will only, without doing anything else, go through on my feet.
+
+20:20 And he said, Thou shalt not go through. And Edom came out
+against him with much people, and with a strong hand.
+
+20:21 Thus Edom refused to give Israel passage through his border:
+wherefore Israel turned away from him.
+
+20:22 And the children of Israel, even the whole congregation,
+journeyed from Kadesh, and came unto mount Hor.
+
+20:23 And the LORD spake unto Moses and Aaron in mount Hor, by the
+coast of the land of Edom, saying, 20:24 Aaron shall be gathered unto
+his people: for he shall not enter into the land which I have given
+unto the children of Israel, because ye rebelled against my word at
+the water of Meribah.
+
+20:25 Take Aaron and Eleazar his son, and bring them up unto mount
+Hor: 20:26 And strip Aaron of his garments, and put them upon Eleazar
+his son: and Aaron shall be gathered unto his people, and shall die
+there.
+
+20:27 And Moses did as the LORD commanded: and they went up into mount
+Hor in the sight of all the congregation.
+
+20:28 And Moses stripped Aaron of his garments, and put them upon
+Eleazar his son; and Aaron died there in the top of the mount: and
+Moses and Eleazar came down from the mount.
+
+20:29 And when all the congregation saw that Aaron was dead, they
+mourned for Aaron thirty days, even all the house of Israel.
+
+21:1 And when king Arad the Canaanite, which dwelt in the south, heard
+tell that Israel came by the way of the spies; then he fought against
+Israel, and took some of them prisoners.
+
+21:2 And Israel vowed a vow unto the LORD, and said, If thou wilt
+indeed deliver this people into my hand, then I will utterly destroy
+their cities.
+
+21:3 And the LORD hearkened to the voice of Israel, and delivered up
+the Canaanites; and they utterly destroyed them and their cities: and
+he called the name of the place Hormah.
+
+21:4 And they journeyed from mount Hor by the way of the Red sea, to
+compass the land of Edom: and the soul of the people was much
+discouraged because of the way.
+
+21:5 And the people spake against God, and against Moses, Wherefore
+have ye brought us up out of Egypt to die in the wilderness? for there
+is no bread, neither is there any water; and our soul loatheth this
+light bread.
+
+21:6 And the LORD sent fiery serpents among the people, and they bit
+the people; and much people of Israel died.
+
+21:7 Therefore the people came to Moses, and said, We have sinned, for
+we have spoken against the LORD, and against thee; pray unto the LORD,
+that he take away the serpents from us. And Moses prayed for the
+people.
+
+21:8 And the LORD said unto Moses, Make thee a fiery serpent, and set
+it upon a pole: and it shall come to pass, that every one that is
+bitten, when he looketh upon it, shall live.
+
+21:9 And Moses made a serpent of brass, and put it upon a pole, and it
+came to pass, that if a serpent had bitten any man, when he beheld the
+serpent of brass, he lived.
+
+21:10 And the children of Israel set forward, and pitched in Oboth.
+
+21:11 And they journeyed from Oboth, and pitched at Ijeabarim, in the
+wilderness which is before Moab, toward the sunrising.
+
+21:12 From thence they removed, and pitched in the valley of Zared.
+
+21:13 From thence they removed, and pitched on the other side of
+Arnon, which is in the wilderness that cometh out of the coasts of the
+Amorites: for Arnon is the border of Moab, between Moab and the
+Amorites.
+
+21:14 Wherefore it is said in the book of the wars of the LORD, What
+he did in the Red sea, and in the brooks of Arnon, 21:15 And at the
+stream of the brooks that goeth down to the dwelling of Ar, and lieth
+upon the border of Moab.
+
+21:16 And from thence they went to Beer: that is the well whereof the
+LORD spake unto Moses, Gather the people together, and I will give
+them water.
+
+21:17 Then Israel sang this song, Spring up, O well; sing ye unto it:
+21:18 The princes digged the well, the nobles of the people digged it,
+by the direction of the lawgiver, with their staves. And from the
+wilderness they went to Mattanah: 21:19 And from Mattanah to Nahaliel:
+and from Nahaliel to Bamoth: 21:20 And from Bamoth in the valley, that
+is in the country of Moab, to the top of Pisgah, which looketh toward
+Jeshimon.
+
+21:21 And Israel sent messengers unto Sihon king of the Amorites,
+saying, 21:22 Let me pass through thy land: we will not turn into the
+fields, or into the vineyards; we will not drink of the waters of the
+well: but we will go along by the king's high way, until we be past
+thy borders.
+
+21:23 And Sihon would not suffer Israel to pass through his border:
+but Sihon gathered all his people together, and went out against
+Israel into the wilderness: and he came to Jahaz, and fought against
+Israel.
+
+21:24 And Israel smote him with the edge of the sword, and possessed
+his land from Arnon unto Jabbok, even unto the children of Ammon: for
+the border of the children of Ammon was strong.
+
+21:25 And Israel took all these cities: and Israel dwelt in all the
+cities of the Amorites, in Heshbon, and in all the villages thereof.
+
+21:26 For Heshbon was the city of Sihon the king of the Amorites, who
+had fought against the former king of Moab, and taken all his land out
+of his hand, even unto Arnon.
+
+21:27 Wherefore they that speak in proverbs say, Come into Heshbon,
+let the city of Sihon be built and prepared: 21:28 For there is a fire
+gone out of Heshbon, a flame from the city of Sihon: it hath consumed
+Ar of Moab, and the lords of the high places of Arnon.
+
+21:29 Woe to thee, Moab! thou art undone, O people of Chemosh: he hath
+given his sons that escaped, and his daughters, into captivity unto
+Sihon king of the Amorites.
+
+21:30 We have shot at them; Heshbon is perished even unto Dibon, and
+we have laid them waste even unto Nophah, which reacheth unto Medeba.
+
+21:31 Thus Israel dwelt in the land of the Amorites.
+
+21:32 And Moses sent to spy out Jaazer, and they took the villages
+thereof, and drove out the Amorites that were there.
+
+21:33 And they turned and went up by the way of Bashan: and Og the
+king of Bashan went out against them, he, and all his people, to the
+battle at Edrei.
+
+21:34 And the LORD said unto Moses, Fear him not: for I have delivered
+him into thy hand, and all his people, and his land; and thou shalt do
+to him as thou didst unto Sihon king of the Amorites, which dwelt at
+Heshbon.
+
+21:35 So they smote him, and his sons, and all his people, until there
+was none left him alive: and they possessed his land.
+
+22:1 And the children of Israel set forward, and pitched in the plains
+of Moab on this side Jordan by Jericho.
+
+22:2 And Balak the son of Zippor saw all that Israel had done to the
+Amorites.
+
+22:3 And Moab was sore afraid of the people, because they were many:
+and Moab was distressed because of the children of Israel.
+
+22:4 And Moab said unto the elders of Midian, Now shall this company
+lick up all that are round about us, as the ox licketh up the grass of
+the field.
+
+And Balak the son of Zippor was king of the Moabites at that time.
+
+22:5 He sent messengers therefore unto Balaam the son of Beor to
+Pethor, which is by the river of the land of the children of his
+people, to call him, saying, Behold, there is a people come out from
+Egypt: behold, they cover the face of the earth, and they abide over
+against me: 22:6 Come now therefore, I pray thee, curse me this
+people; for they are too mighty for me: peradventure I shall prevail,
+that we may smite them, and that I may drive them out of the land: for
+I wot that he whom thou blessest is blessed, and he whom thou cursest
+is cursed.
+
+22:7 And the elders of Moab and the elders of Midian departed with the
+rewards of divination in their hand; and they came unto Balaam, and
+spake unto him the words of Balak.
+
+22:8 And he said unto them, Lodge here this night, and I will bring
+you word again, as the LORD shall speak unto me: and the princes of
+Moab abode with Balaam.
+
+22:9 And God came unto Balaam, and said, What men are these with thee?
+22:10 And Balaam said unto God, Balak the son of Zippor, king of Moab,
+hath sent unto me, saying, 22:11 Behold, there is a people come out of
+Egypt, which covereth the face of the earth: come now, curse me them;
+peradventure I shall be able to overcome them, and drive them out.
+
+22:12 And God said unto Balaam, Thou shalt not go with them; thou
+shalt not curse the people: for they are blessed.
+
+22:13 And Balaam rose up in the morning, and said unto the princes of
+Balak, Get you into your land: for the LORD refuseth to give me leave
+to go with you.
+
+22:14 And the princes of Moab rose up, and they went unto Balak, and
+said, Balaam refuseth to come with us.
+
+22:15 And Balak sent yet again princes, more, and more honourable than
+they.
+
+22:16 And they came to Balaam, and said to him, Thus saith Balak the
+son of Zippor, Let nothing, I pray thee, hinder thee from coming unto
+me: 22:17 For I will promote thee unto very great honour, and I will
+do whatsoever thou sayest unto me: come therefore, I pray thee, curse
+me this people.
+
+22:18 And Balaam answered and said unto the servants of Balak, If
+Balak would give me his house full of silver and gold, I cannot go
+beyond the word of the LORD my God, to do less or more.
+
+22:19 Now therefore, I pray you, tarry ye also here this night, that I
+may know what the LORD will say unto me more.
+
+22:20 And God came unto Balaam at night, and said unto him, If the men
+come to call thee, rise up, and go with them; but yet the word which I
+shall say unto thee, that shalt thou do.
+
+22:21 And Balaam rose up in the morning, and saddled his ass, and went
+with the princes of Moab.
+
+22:22 And God's anger was kindled because he went: and the angel of
+the LORD stood in the way for an adversary against him. Now he was
+riding upon his ass, and his two servants were with him.
+
+22:23 And the ass saw the angel of the LORD standing in the way, and
+his sword drawn in his hand: and the ass turned aside out of the way,
+and went into the field: and Balaam smote the ass, to turn her into
+the way.
+
+22:24 But the angel of the LORD stood in a path of the vineyards, a
+wall being on this side, and a wall on that side.
+
+22:25 And when the ass saw the angel of the LORD, she thrust herself
+unto the wall, and crushed Balaam's foot against the wall: and he
+smote her again.
+
+22:26 And the angel of the LORD went further, and stood in a narrow
+place, where was no way to turn either to the right hand or to the
+left.
+
+22:27 And when the ass saw the angel of the LORD, she fell down under
+Balaam: and Balaam's anger was kindled, and he smote the ass with a
+staff.
+
+22:28 And the LORD opened the mouth of the ass, and she said unto
+Balaam, What have I done unto thee, that thou hast smitten me these
+three times? 22:29 And Balaam said unto the ass, Because thou hast
+mocked me: I would there were a sword in mine hand, for now would I
+kill thee.
+
+22:30 And the ass said unto Balaam, Am not I thine ass, upon which
+thou hast ridden ever since I was thine unto this day? was I ever wont
+to do so unto thee? And he said, Nay.
+
+22:31 Then the LORD opened the eyes of Balaam, and he saw the angel of
+the LORD standing in the way, and his sword drawn in his hand: and he
+bowed down his head, and fell flat on his face.
+
+22:32 And the angel of the LORD said unto him, Wherefore hast thou
+smitten thine ass these three times? behold, I went out to withstand
+thee, because thy way is perverse before me: 22:33 And the ass saw me,
+and turned from me these three times: unless she had turned from me,
+surely now also I had slain thee, and saved her alive.
+
+22:34 And Balaam said unto the angel of the LORD, I have sinned; for I
+knew not that thou stoodest in the way against me: now therefore, if
+it displease thee, I will get me back again.
+
+22:35 And the angel of the LORD said unto Balaam, Go with the men: but
+only the word that I shall speak unto thee, that thou shalt speak. So
+Balaam went with the princes of Balak.
+
+22:36 And when Balak heard that Balaam was come, he went out to meet
+him unto a city of Moab, which is in the border of Arnon, which is in
+the utmost coast.
+
+22:37 And Balak said unto Balaam, Did I not earnestly send unto thee
+to call thee? wherefore camest thou not unto me? am I not able indeed
+to promote thee to honour? 22:38 And Balaam said unto Balak, Lo, I am
+come unto thee: have I now any power at all to say any thing? the word
+that God putteth in my mouth, that shall I speak.
+
+22:39 And Balaam went with Balak, and they came unto Kirjathhuzoth.
+
+22:40 And Balak offered oxen and sheep, and sent to Balaam, and to the
+princes that were with him.
+
+22:41 And it came to pass on the morrow, that Balak took Balaam, and
+brought him up into the high places of Baal, that thence he might see
+the utmost part of the people.
+
+23:1 And Balaam said unto Balak, Build me here seven altars, and
+prepare me here seven oxen and seven rams.
+
+23:2 And Balak did as Balaam had spoken; and Balak and Balaam offered
+on every altar a bullock and a ram.
+
+23:3 And Balaam said unto Balak, Stand by thy burnt offering, and I
+will go: peradventure the LORD will come to meet me: and whatsoever he
+sheweth me I will tell thee. And he went to an high place.
+
+23:4 And God met Balaam: and he said unto him, I have prepared seven
+altars, and I have offered upon every altar a bullock and a ram.
+
+23:5 And the LORD put a word in Balaam's mouth, and said, Return unto
+Balak, and thus thou shalt speak.
+
+23:6 And he returned unto him, and, lo, he stood by his burnt
+sacrifice, he, and all the princes of Moab.
+
+23:7 And he took up his parable, and said, Balak the king of Moab hath
+brought me from Aram, out of the mountains of the east, saying, Come,
+curse me Jacob, and come, defy Israel.
+
+23:8 How shall I curse, whom God hath not cursed? or how shall I defy,
+whom the LORD hath not defied? 23:9 For from the top of the rocks I
+see him, and from the hills I behold him: lo, the people shall dwell
+alone, and shall not be reckoned among the nations.
+
+23:10 Who can count the dust of Jacob, and the number of the fourth
+part of Israel? Let me die the death of the righteous, and let my last
+end be like his! 23:11 And Balak said unto Balaam, What hast thou
+done unto me? I took thee to curse mine enemies, and, behold, thou
+hast blessed them altogether.
+
+23:12 And he answered and said, Must I not take heed to speak that
+which the LORD hath put in my mouth? 23:13 And Balak said unto him,
+Come, I pray thee, with me unto another place, from whence thou mayest
+see them: thou shalt see but the utmost part of them, and shalt not
+see them all: and curse me them from thence.
+
+23:14 And he brought him into the field of Zophim, to the top of
+Pisgah, and built seven altars, and offered a bullock and a ram on
+every altar.
+
+23:15 And he said unto Balak, Stand here by thy burnt offering, while
+I meet the LORD yonder.
+
+23:16 And the LORD met Balaam, and put a word in his mouth, and said,
+Go again unto Balak, and say thus.
+
+23:17 And when he came to him, behold, he stood by his burnt offering,
+and the princes of Moab with him. And Balak said unto him, What hath
+the LORD spoken? 23:18 And he took up his parable, and said, Rise up,
+Balak, and hear; hearken unto me, thou son of Zippor: 23:19 God is not
+a man, that he should lie; neither the son of man, that he should
+repent: hath he said, and shall he not do it? or hath he spoken, and
+shall he not make it good? 23:20 Behold, I have received commandment
+to bless: and he hath blessed; and I cannot reverse it.
+
+23:21 He hath not beheld iniquity in Jacob, neither hath he seen
+perverseness in Israel: the LORD his God is with him, and the shout of
+a king is among them.
+
+23:22 God brought them out of Egypt; he hath as it were the strength
+of an unicorn.
+
+23:23 Surely there is no enchantment against Jacob, neither is there
+any divination against Israel: according to this time it shall be said
+of Jacob and of Israel, What hath God wrought! 23:24 Behold, the
+people shall rise up as a great lion, and lift up himself as a young
+lion: he shall not lie down until he eat of the prey, and drink the
+blood of the slain.
+
+23:25 And Balak said unto Balaam, Neither curse them at all, nor bless
+them at all.
+
+23:26 But Balaam answered and said unto Balak, Told not I thee,
+saying, All that the LORD speaketh, that I must do? 23:27 And Balak
+said unto Balaam, Come, I pray thee, I will bring thee unto another
+place; peradventure it will please God that thou mayest curse me them
+from thence.
+
+23:28 And Balak brought Balaam unto the top of Peor, that looketh
+toward Jeshimon.
+
+23:29 And Balaam said unto Balak, Build me here seven altars, and
+prepare me here seven bullocks and seven rams.
+
+23:30 And Balak did as Balaam had said, and offered a bullock and a
+ram on every altar.
+
+24:1 And when Balaam saw that it pleased the LORD to bless Israel, he
+went not, as at other times, to seek for enchantments, but he set his
+face toward the wilderness.
+
+24:2 And Balaam lifted up his eyes, and he saw Israel abiding in his
+tents according to their tribes; and the spirit of God came upon him.
+
+24:3 And he took up his parable, and said, Balaam the son of Beor hath
+said, and the man whose eyes are open hath said: 24:4 He hath said,
+which heard the words of God, which saw the vision of the Almighty,
+falling into a trance, but having his eyes open: 24:5 How goodly are
+thy tents, O Jacob, and thy tabernacles, O Israel! 24:6 As the
+valleys are they spread forth, as gardens by the river's side, as the
+trees of lign aloes which the LORD hath planted, and as cedar trees
+beside the waters.
+
+24:7 He shall pour the water out of his buckets, and his seed shall be
+in many waters, and his king shall be higher than Agag, and his
+kingdom shall be exalted.
+
+24:8 God brought him forth out of Egypt; he hath as it were the
+strength of an unicorn: he shall eat up the nations his enemies, and
+shall break their bones, and pierce them through with his arrows.
+
+24:9 He couched, he lay down as a lion, and as a great lion: who shall
+stir him up? Blessed is he that blesseth thee, and cursed is he that
+curseth thee.
+
+24:10 And Balak's anger was kindled against Balaam, and he smote his
+hands together: and Balak said unto Balaam, I called thee to curse
+mine enemies, and, behold, thou hast altogether blessed them these
+three times.
+
+24:11 Therefore now flee thou to thy place: I thought to promote thee
+unto great honour; but, lo, the LORD hath kept thee back from honour.
+
+24:12 And Balaam said unto Balak, Spake I not also to thy messengers
+which thou sentest unto me, saying, 24:13 If Balak would give me his
+house full of silver and gold, I cannot go beyond the commandment of
+the LORD, to do either good or bad of mine own mind; but what the LORD
+saith, that will I speak? 24:14 And now, behold, I go unto my people:
+come therefore, and I will advertise thee what this people shall do to
+thy people in the latter days.
+
+24:15 And he took up his parable, and said, Balaam the son of Beor
+hath said, and the man whose eyes are open hath said: 24:16 He hath
+said, which heard the words of God, and knew the knowledge of the most
+High, which saw the vision of the Almighty, falling into a trance, but
+having his eyes open: 24:17 I shall see him, but not now: I shall
+behold him, but not nigh: there shall come a Star out of Jacob, and a
+Sceptre shall rise out of Israel, and shall smite the corners of Moab,
+and destroy all the children of Sheth.
+
+24:18 And Edom shall be a possession, Seir also shall be a possession
+for his enemies; and Israel shall do valiantly.
+
+24:19 Out of Jacob shall come he that shall have dominion, and shall
+destroy him that remaineth of the city.
+
+24:20 And when he looked on Amalek, he took up his parable, and said,
+Amalek was the first of the nations; but his latter end shall be that
+he perish for ever.
+
+24:21 And he looked on the Kenites, and took up his parable, and said,
+Strong is thy dwellingplace, and thou puttest thy nest in a rock.
+
+24:22 Nevertheless the Kenite shall be wasted, until Asshur shall
+carry thee away captive.
+
+24:23 And he took up his parable, and said, Alas, who shall live when
+God doeth this! 24:24 And ships shall come from the coast of Chittim,
+and shall afflict Asshur, and shall afflict Eber, and he also shall
+perish for ever.
+
+24:25 And Balaam rose up, and went and returned to his place: and
+Balak also went his way.
+
+25:1 And Israel abode in Shittim, and the people began to commit
+whoredom with the daughters of Moab.
+
+25:2 And they called the people unto the sacrifices of their gods: and
+the people did eat, and bowed down to their gods.
+
+25:3 And Israel joined himself unto Baalpeor: and the anger of the
+LORD was kindled against Israel.
+
+25:4 And the LORD said unto Moses, Take all the heads of the people,
+and hang them up before the LORD against the sun, that the fierce
+anger of the LORD may be turned away from Israel.
+
+25:5 And Moses said unto the judges of Israel, Slay ye every one his
+men that were joined unto Baalpeor.
+
+25:6 And, behold, one of the children of Israel came and brought unto
+his brethren a Midianitish woman in the sight of Moses, and in the
+sight of all the congregation of the children of Israel, who were
+weeping before the door of the tabernacle of the congregation.
+
+25:7 And when Phinehas, the son of Eleazar, the son of Aaron the
+priest, saw it, he rose up from among the congregation, and took a
+javelin in his hand; 25:8 And he went after the man of Israel into the
+tent, and thrust both of them through, the man of Israel, and the
+woman through her belly. So the plague was stayed from the children of
+Israel.
+
+25:9 And those that died in the plague were twenty and four thousand.
+
+25:10 And the LORD spake unto Moses, saying, 25:11 Phinehas, the son
+of Eleazar, the son of Aaron the priest, hath turned my wrath away
+from the children of Israel, while he was zealous for my sake among
+them, that I consumed not the children of Israel in my jealousy.
+
+25:12 Wherefore say, Behold, I give unto him my covenant of peace:
+25:13 And he shall have it, and his seed after him, even the covenant
+of an everlasting priesthood; because he was zealous for his God, and
+made an atonement for the children of Israel.
+
+25:14 Now the name of the Israelite that was slain, even that was
+slain with the Midianitish woman, was Zimri, the son of Salu, a prince
+of a chief house among the Simeonites.
+
+25:15 And the name of the Midianitish woman that was slain was Cozbi,
+the daughter of Zur; he was head over a people, and of a chief house
+in Midian.
+
+25:16 And the LORD spake unto Moses, saying, 25:17 Vex the Midianites,
+and smite them: 25:18 For they vex you with their wiles, wherewith
+they have beguiled you in the matter of Peor, and in the matter of
+Cozbi, the daughter of a prince of Midian, their sister, which was
+slain in the day of the plague for Peor's sake.
+
+26:1 And it came to pass after the plague, that the LORD spake unto
+Moses and unto Eleazar the son of Aaron the priest, saying, 26:2 Take
+the sum of all the congregation of the children of Israel, from twenty
+years old and upward, throughout their fathers' house, all that are
+able to go to war in Israel.
+
+26:3 And Moses and Eleazar the priest spake with them in the plains of
+Moab by Jordan near Jericho, saying, 26:4 Take the sum of the people,
+from twenty years old and upward; as the LORD commanded Moses and the
+children of Israel, which went forth out of the land of Egypt.
+
+26:5 Reuben, the eldest son of Israel: the children of Reuben; Hanoch,
+of whom cometh the family of the Hanochites: of Pallu, the family of
+the Palluites: 26:6 Of Hezron, the family of the Hezronites: of Carmi,
+the family of the Carmites.
+
+26:7 These are the families of the Reubenites: and they that were
+numbered of them were forty and three thousand and seven hundred and
+thirty.
+
+26:8 And the sons of Pallu; Eliab.
+
+26:9 And the sons of Eliab; Nemuel, and Dathan, and Abiram. This is
+that Dathan and Abiram, which were famous in the congregation, who
+strove against Moses and against Aaron in the company of Korah, when
+they strove against the LORD: 26:10 And the earth opened her mouth,
+and swallowed them up together with Korah, when that company died,
+what time the fire devoured two hundred and fifty men: and they became
+a sign.
+
+26:11 Notwithstanding the children of Korah died not.
+
+26:12 The sons of Simeon after their families: of Nemuel, the family
+of the Nemuelites: of Jamin, the family of the Jaminites: of Jachin,
+the family of the Jachinites: 26:13 Of Zerah, the family of the
+Zarhites: of Shaul, the family of the Shaulites.
+
+26:14 These are the families of the Simeonites, twenty and two
+thousand and two hundred.
+
+26:15 The children of Gad after their families: of Zephon, the family
+of the Zephonites: of Haggi, the family of the Haggites: of Shuni, the
+family of the Shunites: 26:16 Of Ozni, the family of the Oznites: of
+Eri, the family of the Erites: 26:17 Of Arod, the family of the
+Arodites: of Areli, the family of the Arelites.
+
+26:18 These are the families of the children of Gad according to those
+that were numbered of them, forty thousand and five hundred.
+
+26:19 The sons of Judah were Er and Onan: and Er and Onan died in the
+land of Canaan.
+
+26:20 And the sons of Judah after their families were; of Shelah, the
+family of the Shelanites: of Pharez, the family of the Pharzites: of
+Zerah, the family of the Zarhites.
+
+26:21 And the sons of Pharez were; of Hezron, the family of the
+Hezronites: of Hamul, the family of the Hamulites.
+
+26:22 These are the families of Judah according to those that were
+numbered of them, threescore and sixteen thousand and five hundred.
+
+26:23 Of the sons of Issachar after their families: of Tola, the
+family of the Tolaites: of Pua, the family of the Punites: 26:24 Of
+Jashub, the family of the Jashubites: of Shimron, the family of the
+Shimronites.
+
+26:25 These are the families of Issachar according to those that were
+numbered of them, threescore and four thousand and three hundred.
+
+26:26 Of the sons of Zebulun after their families: of Sered, the
+family of the Sardites: of Elon, the family of the Elonites: of
+Jahleel, the family of the Jahleelites.
+
+26:27 These are the families of the Zebulunites according to those
+that were numbered of them, threescore thousand and five hundred.
+
+26:28 The sons of Joseph after their families were Manasseh and
+Ephraim.
+
+26:29 Of the sons of Manasseh: of Machir, the family of the
+Machirites: and Machir begat Gilead: of Gilead come the family of the
+Gileadites.
+
+26:30 These are the sons of Gilead: of Jeezer, the family of the
+Jeezerites: of Helek, the family of the Helekites: 26:31 And of
+Asriel, the family of the Asrielites: and of Shechem, the family of
+the Shechemites: 26:32 And of Shemida, the family of the Shemidaites:
+and of Hepher, the family of the Hepherites.
+
+26:33 And Zelophehad the son of Hepher had no sons, but daughters: and
+the names of the daughters of Zelophehad were Mahlah, and Noah,
+Hoglah, Milcah, and Tirzah.
+
+26:34 These are the families of Manasseh, and those that were numbered
+of them, fifty and two thousand and seven hundred.
+
+26:35 These are the sons of Ephraim after their families: of
+Shuthelah, the family of the Shuthalhites: of Becher, the family of
+the Bachrites: of Tahan, the family of the Tahanites.
+
+26:36 And these are the sons of Shuthelah: of Eran, the family of the
+Eranites.
+
+26:37 These are the families of the sons of Ephraim according to those
+that were numbered of them, thirty and two thousand and five hundred.
+These are the sons of Joseph after their families.
+
+26:38 The sons of Benjamin after their families: of Bela, the family
+of the Belaites: of Ashbel, the family of the Ashbelites: of Ahiram,
+the family of the Ahiramites: 26:39 Of Shupham, the family of the
+Shuphamites: of Hupham, the family of the Huphamites.
+
+26:40 And the sons of Bela were Ard and Naaman: of Ard, the family of
+the Ardites: and of Naaman, the family of the Naamites.
+
+26:41 These are the sons of Benjamin after their families: and they
+that were numbered of them were forty and five thousand and six
+hundred.
+
+26:42 These are the sons of Dan after their families: of Shuham, the
+family of the Shuhamites. These are the families of Dan after their
+families.
+
+26:43 All the families of the Shuhamites, according to those that were
+numbered of them, were threescore and four thousand and four hundred.
+
+26:44 Of the children of Asher after their families: of Jimna, the
+family of the Jimnites: of Jesui, the family of the Jesuites: of
+Beriah, the family of the Beriites.
+
+26:45 Of the sons of Beriah: of Heber, the family of the Heberites: of
+Malchiel, the family of the Malchielites.
+
+26:46 And the name of the daughter of Asher was Sarah.
+
+26:47 These are the families of the sons of Asher according to those
+that were numbered of them; who were fifty and three thousand and four
+hundred.
+
+26:48 Of the sons of Naphtali after their families: of Jahzeel, the
+family of the Jahzeelites: of Guni, the family of the Gunites: 26:49
+Of Jezer, the family of the Jezerites: of Shillem, the family of the
+Shillemites.
+
+26:50 These are the families of Naphtali according to their families:
+and they that were numbered of them were forty and five thousand and
+four hundred.
+
+26:51 These were the numbered of the children of Israel, six hundred
+thousand and a thousand seven hundred and thirty.
+
+26:52 And the LORD spake unto Moses, saying, 26:53 Unto these the land
+shall be divided for an inheritance according to the number of names.
+
+26:54 To many thou shalt give the more inheritance, and to few thou
+shalt give the less inheritance: to every one shall his inheritance be
+given according to those that were numbered of him.
+
+26:55 Notwithstanding the land shall be divided by lot: according to
+the names of the tribes of their fathers they shall inherit.
+
+26:56 According to the lot shall the possession thereof be divided
+between many and few.
+
+26:57 And these are they that were numbered of the Levites after their
+families: of Gershon, the family of the Gershonites: of Kohath, the
+family of the Kohathites: of Merari, the family of the Merarites.
+
+26:58 These are the families of the Levites: the family of the
+Libnites, the family of the Hebronites, the family of the Mahlites,
+the family of the Mushites, the family of the Korathites. And Kohath
+begat Amram.
+
+26:59 And the name of Amram's wife was Jochebed, the daughter of Levi,
+whom her mother bare to Levi in Egypt: and she bare unto Amram Aaron
+and Moses, and Miriam their sister.
+
+26:60 And unto Aaron was born Nadab, and Abihu, Eleazar, and Ithamar.
+
+26:61 And Nadab and Abihu died, when they offered strange fire before
+the LORD.
+
+26:62 And those that were numbered of them were twenty and three
+thousand, all males from a month old and upward: for they were not
+numbered among the children of Israel, because there was no
+inheritance given them among the children of Israel.
+
+26:63 These are they that were numbered by Moses and Eleazar the
+priest, who numbered the children of Israel in the plains of Moab by
+Jordan near Jericho.
+
+26:64 But among these there was not a man of them whom Moses and Aaron
+the priest numbered, when they numbered the children of Israel in the
+wilderness of Sinai.
+
+26:65 For the LORD had said of them, They shall surely die in the
+wilderness. And there was not left a man of them, save Caleb the son
+of Jephunneh, and Joshua the son of Nun.
+
+27:1 Then came the daughters of Zelophehad, the son of Hepher, the son
+of Gilead, the son of Machir, the son of Manasseh, of the families of
+Manasseh the son of Joseph: and these are the names of his daughters;
+Mahlah, Noah, and Hoglah, and Milcah, and Tirzah.
+
+27:2 And they stood before Moses, and before Eleazar the priest, and
+before the princes and all the congregation, by the door of the
+tabernacle of the congregation, saying, 27:3 Our father died in the
+wilderness, and he was not in the company of them that gathered
+themselves together against the LORD in the company of Korah; but died
+in his own sin, and had no sons.
+
+27:4 Why should the name of our father be done away from among his
+family, because he hath no son? Give unto us therefore a possession
+among the brethren of our father.
+
+27:5 And Moses brought their cause before the LORD.
+
+27:6 And the LORD spake unto Moses, saying, 27:7 The daughters of
+Zelophehad speak right: thou shalt surely give them a possession of an
+inheritance among their father's brethren; and thou shalt cause the
+inheritance of their father to pass unto them.
+
+27:8 And thou shalt speak unto the children of Israel, saying, If a
+man die, and have no son, then ye shall cause his inheritance to pass
+unto his daughter.
+
+27:9 And if he have no daughter, then ye shall give his inheritance
+unto his brethren.
+
+27:10 And if he have no brethren, then ye shall give his inheritance
+unto his father's brethren.
+
+27:11 And if his father have no brethren, then ye shall give his
+inheritance unto his kinsman that is next to him of his family, and he
+shall possess it: and it shall be unto the children of Israel a
+statute of judgment, as the LORD commanded Moses.
+
+27:12 And the LORD said unto Moses, Get thee up into this mount
+Abarim, and see the land which I have given unto the children of
+Israel.
+
+27:13 And when thou hast seen it, thou also shalt be gathered unto thy
+people, as Aaron thy brother was gathered.
+
+27:14 For ye rebelled against my commandment in the desert of Zin, in
+the strife of the congregation, to sanctify me at the water before
+their eyes: that is the water of Meribah in Kadesh in the wilderness
+of Zin.
+
+27:15 And Moses spake unto the LORD, saying, 27:16 Let the LORD, the
+God of the spirits of all flesh, set a man over the congregation,
+27:17 Which may go out before them, and which may go in before them,
+and which may lead them out, and which may bring them in; that the
+congregation of the LORD be not as sheep which have no shepherd.
+
+27:18 And the LORD said unto Moses, Take thee Joshua the son of Nun, a
+man in whom is the spirit, and lay thine hand upon him; 27:19 And set
+him before Eleazar the priest, and before all the congregation; and
+give him a charge in their sight.
+
+27:20 And thou shalt put some of thine honour upon him, that all the
+congregation of the children of Israel may be obedient.
+
+27:21 And he shall stand before Eleazar the priest, who shall ask
+counsel for him after the judgment of Urim before the LORD: at his
+word shall they go out, and at his word they shall come in, both he,
+and all the children of Israel with him, even all the congregation.
+
+27:22 And Moses did as the LORD commanded him: and he took Joshua, and
+set him before Eleazar the priest, and before all the congregation:
+27:23 And he laid his hands upon him, and gave him a charge, as the
+LORD commanded by the hand of Moses.
+
+28:1 And the LORD spake unto Moses, saying, 28:2 Command the children
+of Israel, and say unto them, My offering, and my bread for my
+sacrifices made by fire, for a sweet savour unto me, shall ye observe
+to offer unto me in their due season.
+
+28:3 And thou shalt say unto them, This is the offering made by fire
+which ye shall offer unto the LORD; two lambs of the first year
+without spot day by day, for a continual burnt offering.
+
+28:4 The one lamb shalt thou offer in the morning, and the other lamb
+shalt thou offer at even; 28:5 And a tenth part of an ephah of flour
+for a meat offering, mingled with the fourth part of an hin of beaten
+oil.
+
+28:6 It is a continual burnt offering, which was ordained in mount
+Sinai for a sweet savour, a sacrifice made by fire unto the LORD.
+
+28:7 And the drink offering thereof shall be the fourth part of an hin
+for the one lamb: in the holy place shalt thou cause the strong wine
+to be poured unto the LORD for a drink offering.
+
+28:8 And the other lamb shalt thou offer at even: as the meat offering
+of the morning, and as the drink offering thereof, thou shalt offer
+it, a sacrifice made by fire, of a sweet savour unto the LORD.
+
+28:9 And on the sabbath day two lambs of the first year without spot,
+and two tenth deals of flour for a meat offering, mingled with oil,
+and the drink offering thereof: 28:10 This is the burnt offering of
+every sabbath, beside the continual burnt offering, and his drink
+offering.
+
+28:11 And in the beginnings of your months ye shall offer a burnt
+offering unto the LORD; two young bullocks, and one ram, seven lambs
+of the first year without spot; 28:12 And three tenth deals of flour
+for a meat offering, mingled with oil, for one bullock; and two tenth
+deals of flour for a meat offering, mingled with oil, for one ram;
+28:13 And a several tenth deal of flour mingled with oil for a meat
+offering unto one lamb; for a burnt offering of a sweet savour, a
+sacrifice made by fire unto the LORD.
+
+28:14 And their drink offerings shall be half an hin of wine unto a
+bullock, and the third part of an hin unto a ram, and a fourth part of
+an hin unto a lamb: this is the burnt offering of every month
+throughout the months of the year.
+
+28:15 And one kid of the goats for a sin offering unto the LORD shall
+be offered, beside the continual burnt offering, and his drink
+offering.
+
+28:16 And in the fourteenth day of the first month is the passover of
+the LORD.
+
+28:17 And in the fifteenth day of this month is the feast: seven days
+shall unleavened bread be eaten.
+
+28:18 In the first day shall be an holy convocation; ye shall do no
+manner of servile work therein: 28:19 But ye shall offer a sacrifice
+made by fire for a burnt offering unto the LORD; two young bullocks,
+and one ram, and seven lambs of the first year: they shall be unto you
+without blemish: 28:20 And their meat offering shall be of flour
+mingled with oil: three tenth deals shall ye offer for a bullock, and
+two tenth deals for a ram; 28:21 A several tenth deal shalt thou offer
+for every lamb, throughout the seven lambs: 28:22 And one goat for a
+sin offering, to make an atonement for you.
+
+28:23 Ye shall offer these beside the burnt offering in the morning,
+which is for a continual burnt offering.
+
+28:24 After this manner ye shall offer daily, throughout the seven
+days, the meat of the sacrifice made by fire, of a sweet savour unto
+the LORD: it shall be offered beside the continual burnt offering, and
+his drink offering.
+
+28:25 And on the seventh day ye shall have an holy convocation; ye
+shall do no servile work.
+
+28:26 Also in the day of the firstfruits, when ye bring a new meat
+offering unto the LORD, after your weeks be out, ye shall have an holy
+convocation; ye shall do no servile work: 28:27 But ye shall offer the
+burnt offering for a sweet savour unto the LORD; two young bullocks,
+one ram, seven lambs of the first year; 28:28 And their meat offering
+of flour mingled with oil, three tenth deals unto one bullock, two
+tenth deals unto one ram, 28:29 A several tenth deal unto one lamb,
+throughout the seven lambs; 28:30 And one kid of the goats, to make an
+atonement for you.
+
+28:31 Ye shall offer them beside the continual burnt offering, and his
+meat offering, (they shall be unto you without blemish) and their
+drink offerings.
+
+29:1 And in the seventh month, on the first day of the month, ye shall
+have an holy convocation; ye shall do no servile work: it is a day of
+blowing the trumpets unto you.
+
+29:2 And ye shall offer a burnt offering for a sweet savour unto the
+LORD; one young bullock, one ram, and seven lambs of the first year
+without blemish: 29:3 And their meat offering shall be of flour
+mingled with oil, three tenth deals for a bullock, and two tenth deals
+for a ram, 29:4 And one tenth deal for one lamb, throughout the seven
+lambs: 29:5 And one kid of the goats for a sin offering, to make an
+atonement for you: 29:6 Beside the burnt offering of the month, and
+his meat offering, and the daily burnt offering, and his meat
+offering, and their drink offerings, according unto their manner, for
+a sweet savour, a sacrifice made by fire unto the LORD.
+
+29:7 And ye shall have on the tenth day of this seventh month an holy
+convocation; and ye shall afflict your souls: ye shall not do any work
+therein: 29:8 But ye shall offer a burnt offering unto the LORD for a
+sweet savour; one young bullock, one ram, and seven lambs of the first
+year; they shall be unto you without blemish: 29:9 And their meat
+offering shall be of flour mingled with oil, three tenth deals to a
+bullock, and two tenth deals to one ram, 29:10 A several tenth deal
+for one lamb, throughout the seven lambs: 29:11 One kid of the goats
+for a sin offering; beside the sin offering of atonement, and the
+continual burnt offering, and the meat offering of it, and their drink
+offerings.
+
+29:12 And on the fifteenth day of the seventh month ye shall have an
+holy convocation; ye shall do no servile work, and ye shall keep a
+feast unto the LORD seven days: 29:13 And ye shall offer a burnt
+offering, a sacrifice made by fire, of a sweet savour unto the LORD;
+thirteen young bullocks, two rams, and fourteen lambs of the first
+year; they shall be without blemish: 29:14 And their meat offering
+shall be of flour mingled with oil, three tenth deals unto every
+bullock of the thirteen bullocks, two tenth deals to each ram of the
+two rams, 29:15 And a several tenth deal to each lamb of the fourteen
+lambs: 29:16 And one kid of the goats for a sin offering; beside the
+continual burnt offering, his meat offering, and his drink offering.
+
+29:17 And on the second day ye shall offer twelve young bullocks, two
+rams, fourteen lambs of the first year without spot: 29:18 And their
+meat offering and their drink offerings for the bullocks, for the
+rams, and for the lambs, shall be according to their number, after the
+manner: 29:19 And one kid of the goats for a sin offering; beside the
+continual burnt offering, and the meat offering thereof, and their
+drink offerings.
+
+29:20 And on the third day eleven bullocks, two rams, fourteen lambs
+of the first year without blemish; 29:21 And their meat offering and
+their drink offerings for the bullocks, for the rams, and for the
+lambs, shall be according to their number, after the manner: 29:22 And
+one goat for a sin offering; beside the continual burnt offering, and
+his meat offering, and his drink offering.
+
+29:23 And on the fourth day ten bullocks, two rams, and fourteen lambs
+of the first year without blemish: 29:24 Their meat offering and their
+drink offerings for the bullocks, for the rams, and for the lambs,
+shall be according to their number, after the manner: 29:25 And one
+kid of the goats for a sin offering; beside the continual burnt
+offering, his meat offering, and his drink offering.
+
+29:26 And on the fifth day nine bullocks, two rams, and fourteen lambs
+of the first year without spot: 29:27 And their meat offering and
+their drink offerings for the bullocks, for the rams, and for the
+lambs, shall be according to their number, after the manner: 29:28 And
+one goat for a sin offering; beside the continual burnt offering, and
+his meat offering, and his drink offering.
+
+29:29 And on the sixth day eight bullocks, two rams, and fourteen
+lambs of the first year without blemish: 29:30 And their meat offering
+and their drink offerings for the bullocks, for the rams, and for the
+lambs, shall be according to their number, after the manner: 29:31 And
+one goat for a sin offering; beside the continual burnt offering, his
+meat offering, and his drink offering.
+
+29:32 And on the seventh day seven bullocks, two rams, and fourteen
+lambs of the first year without blemish: 29:33 And their meat offering
+and their drink offerings for the bullocks, for the rams, and for the
+lambs, shall be according to their number, after the manner: 29:34 And
+one goat for a sin offering; beside the continual burnt offering, his
+meat offering, and his drink offering.
+
+29:35 On the eighth day ye shall have a solemn assembly: ye shall do
+no servile work therein: 29:36 But ye shall offer a burnt offering, a
+sacrifice made by fire, of a sweet savour unto the LORD: one bullock,
+one ram, seven lambs of the first year without blemish: 29:37 Their
+meat offering and their drink offerings for the bullock, for the ram,
+and for the lambs, shall be according to their number, after the
+manner: 29:38 And one goat for a sin offering; beside the continual
+burnt offering, and his meat offering, and his drink offering.
+
+29:39 These things ye shall do unto the LORD in your set feasts,
+beside your vows, and your freewill offerings, for your burnt
+offerings, and for your meat offerings, and for your drink offerings,
+and for your peace offerings.
+
+29:40 And Moses told the children of Israel according to all that the
+LORD commanded Moses.
+
+30:1 And Moses spake unto the heads of the tribes concerning the
+children of Israel, saying, This is the thing which the LORD hath
+commanded.
+
+30:2 If a man vow a vow unto the LORD, or swear an oath to bind his
+soul with a bond; he shall not break his word, he shall do according
+to all that proceedeth out of his mouth.
+
+30:3 If a woman also vow a vow unto the LORD, and bind herself by a
+bond, being in her father's house in her youth; 30:4 And her father
+hear her vow, and her bond wherewith she hath bound her soul, and her
+father shall hold his peace at her; then all her vows shall stand, and
+every bond wherewith she hath bound her soul shall stand.
+
+30:5 But if her father disallow her in the day that he heareth; not
+any of her vows, or of her bonds wherewith she hath bound her soul,
+shall stand: and the LORD shall forgive her, because her father
+disallowed her.
+
+30:6 And if she had at all an husband, when she vowed, or uttered
+ought out of her lips, wherewith she bound her soul; 30:7 And her
+husband heard it, and held his peace at her in the day that he heard
+it: then her vows shall stand, and her bonds wherewith she bound her
+soul shall stand.
+
+30:8 But if her husband disallowed her on the day that he heard it;
+then he shall make her vow which she vowed, and that which she uttered
+with her lips, wherewith she bound her soul, of none effect: and the
+LORD shall forgive her.
+
+30:9 But every vow of a widow, and of her that is divorced, wherewith
+they have bound their souls, shall stand against her.
+
+30:10 And if she vowed in her husband's house, or bound her soul by a
+bond with an oath; 30:11 And her husband heard it, and held his peace
+at her, and disallowed her not: then all her vows shall stand, and
+every bond wherewith she bound her soul shall stand.
+
+30:12 But if her husband hath utterly made them void on the day he
+heard them; then whatsoever proceeded out of her lips concerning her
+vows, or concerning the bond of her soul, shall not stand: her husband
+hath made them void; and the LORD shall forgive her.
+
+30:13 Every vow, and every binding oath to afflict the soul, her
+husband may establish it, or her husband may make it void.
+
+30:14 But if her husband altogether hold his peace at her from day to
+day; then he establisheth all her vows, or all her bonds, which are
+upon her: he confirmeth them, because he held his peace at her in the
+day that he heard them.
+
+30:15 But if he shall any ways make them void after that he hath heard
+them; then he shall bear her iniquity.
+
+30:16 These are the statutes, which the LORD commanded Moses, between
+a man and his wife, between the father and his daughter, being yet in
+her youth in her father's house.
+
+31:1 And the LORD spake unto Moses, saying, 31:2 Avenge the children
+of Israel of the Midianites: afterward shalt thou be gathered unto thy
+people.
+
+31:3 And Moses spake unto the people, saying, Arm some of yourselves
+unto the war, and let them go against the Midianites, and avenge the
+LORD of Midian.
+
+31:4 Of every tribe a thousand, throughout all the tribes of Israel,
+shall ye send to the war.
+
+31:5 So there were delivered out of the thousands of Israel, a
+thousand of every tribe, twelve thousand armed for war.
+
+31:6 And Moses sent them to the war, a thousand of every tribe, them
+and Phinehas the son of Eleazar the priest, to the war, with the holy
+instruments, and the trumpets to blow in his hand.
+
+31:7 And they warred against the Midianites, as the LORD commanded
+Moses; and they slew all the males.
+
+31:8 And they slew the kings of Midian, beside the rest of them that
+were slain; namely, Evi, and Rekem, and Zur, and Hur, and Reba, five
+kings of Midian: Balaam also the son of Beor they slew with the sword.
+
+31:9 And the children of Israel took all the women of Midian captives,
+and their little ones, and took the spoil of all their cattle, and all
+their flocks, and all their goods.
+
+31:10 And they burnt all their cities wherein they dwelt, and all
+their goodly castles, with fire.
+
+31:11 And they took all the spoil, and all the prey, both of men and
+of beasts.
+
+31:12 And they brought the captives, and the prey, and the spoil, unto
+Moses, and Eleazar the priest, and unto the congregation of the
+children of Israel, unto the camp at the plains of Moab, which are by
+Jordan near Jericho.
+
+31:13 And Moses, and Eleazar the priest, and all the princes of the
+congregation, went forth to meet them without the camp.
+
+31:14 And Moses was wroth with the officers of the host, with the
+captains over thousands, and captains over hundreds, which came from
+the battle.
+
+31:15 And Moses said unto them, Have ye saved all the women alive?
+31:16 Behold, these caused the children of Israel, through the counsel
+of Balaam, to commit trespass against the LORD in the matter of Peor,
+and there was a plague among the congregation of the LORD.
+
+31:17 Now therefore kill every male among the little ones, and kill
+every woman that hath known man by lying with him.
+
+31:18 But all the women children, that have not known a man by lying
+with him, keep alive for yourselves.
+
+31:19 And do ye abide without the camp seven days: whosoever hath
+killed any person, and whosoever hath touched any slain, purify both
+yourselves and your captives on the third day, and on the seventh day.
+
+31:20 And purify all your raiment, and all that is made of skins, and
+all work of goats' hair, and all things made of wood.
+
+31:21 And Eleazar the priest said unto the men of war which went to
+the battle, This is the ordinance of the law which the LORD commanded
+Moses; 31:22 Only the gold, and the silver, the brass, the iron, the
+tin, and the lead, 31:23 Every thing that may abide the fire, ye shall
+make it go through the fire, and it shall be clean: nevertheless it
+shall be purified with the water of separation: and all that abideth
+not the fire ye shall make go through the water.
+
+31:24 And ye shall wash your clothes on the seventh day, and ye shall
+be clean, and afterward ye shall come into the camp.
+
+31:25 And the LORD spake unto Moses, saying, 31:26 Take the sum of the
+prey that was taken, both of man and of beast, thou, and Eleazar the
+priest, and the chief fathers of the congregation: 31:27 And divide
+the prey into two parts; between them that took the war upon them, who
+went out to battle, and between all the congregation: 31:28 And levy a
+tribute unto the Lord of the men of war which went out to battle: one
+soul of five hundred, both of the persons, and of the beeves, and of
+the asses, and of the sheep: 31:29 Take it of their half, and give it
+unto Eleazar the priest, for an heave offering of the LORD.
+
+31:30 And of the children of Israel's half, thou shalt take one
+portion of fifty, of the persons, of the beeves, of the asses, and of
+the flocks, of all manner of beasts, and give them unto the Levites,
+which keep the charge of the tabernacle of the LORD.
+
+31:31 And Moses and Eleazar the priest did as the LORD commanded
+Moses.
+
+31:32 And the booty, being the rest of the prey which the men of war
+had caught, was six hundred thousand and seventy thousand and five
+thousand sheep, 31:33 And threescore and twelve thousand beeves, 31:34
+And threescore and one thousand asses, 31:35 And thirty and two
+thousand persons in all, of women that had not known man by lying with
+him.
+
+31:36 And the half, which was the portion of them that went out to
+war, was in number three hundred thousand and seven and thirty
+thousand and five hundred sheep: 31:37 And the LORD's tribute of the
+sheep was six hundred and threescore and fifteen.
+
+31:38 And the beeves were thirty and six thousand; of which the LORD's
+tribute was threescore and twelve.
+
+31:39 And the asses were thirty thousand and five hundred; of which
+the LORD's tribute was threescore and one.
+
+31:40 And the persons were sixteen thousand; of which the LORD's
+tribute was thirty and two persons.
+
+31:41 And Moses gave the tribute, which was the LORD's heave offering,
+unto Eleazar the priest, as the LORD commanded Moses.
+
+31:42 And of the children of Israel's half, which Moses divided from
+the men that warred, 31:43 (Now the half that pertained unto the
+congregation was three hundred thousand and thirty thousand and seven
+thousand and five hundred sheep, 31:44 And thirty and six thousand
+beeves, 31:45 And thirty thousand asses and five hundred, 31:46 And
+sixteen thousand persons;) 31:47 Even of the children of Israel's
+half, Moses took one portion of fifty, both of man and of beast, and
+gave them unto the Levites, which kept the charge of the tabernacle of
+the LORD; as the LORD commanded Moses.
+
+31:48 And the officers which were over thousands of the host, the
+captains of thousands, and captains of hundreds, came near unto Moses:
+31:49 And they said unto Moses, Thy servants have taken the sum of the
+men of war which are under our charge, and there lacketh not one man
+of us.
+
+31:50 We have therefore brought an oblation for the LORD, what every
+man hath gotten, of jewels of gold, chains, and bracelets, rings,
+earrings, and tablets, to make an atonement for our souls before the
+LORD.
+
+31:51 And Moses and Eleazar the priest took the gold of them, even all
+wrought jewels.
+
+31:52 And all the gold of the offering that they offered up to the
+LORD, of the captains of thousands, and of the captains of hundreds,
+was sixteen thousand seven hundred and fifty shekels.
+
+31:53 (For the men of war had taken spoil, every man for himself.)
+31:54 And Moses and Eleazar the priest took the gold of the captains
+of thousands and of hundreds, and brought it into the tabernacle of
+the congregation, for a memorial for the children of Israel before the
+LORD.
+
+32:1 Now the children of Reuben and the children of Gad had a very
+great multitude of cattle: and when they saw the land of Jazer, and
+the land of Gilead, that, behold, the place was a place for cattle;
+32:2 The children of Gad and the children of Reuben came and spake
+unto Moses, and to Eleazar the priest, and unto the princes of the
+congregation, saying, 32:3 Ataroth, and Dibon, and Jazer, and Nimrah,
+and Heshbon, and Elealeh, and Shebam, and Nebo, and Beon, 32:4 Even
+the country which the LORD smote before the congregation of Israel, is
+a land for cattle, and thy servants have cattle: 32:5 Wherefore, said
+they, if we have found grace in thy sight, let this land be given unto
+thy servants for a possession, and bring us not over Jordan.
+
+32:6 And Moses said unto the children of Gad and to the children of
+Reuben, Shall your brethren go to war, and shall ye sit here? 32:7
+And wherefore discourage ye the heart of the children of Israel from
+going over into the land which the LORD hath given them? 32:8 Thus
+did your fathers, when I sent them from Kadeshbarnea to see the land.
+
+32:9 For when they went up unto the valley of Eshcol, and saw the
+land, they discouraged the heart of the children of Israel, that they
+should not go into the land which the LORD had given them.
+
+32:10 And the LORD's anger was kindled the same time, and he sware,
+saying, 32:11 Surely none of the men that came up out of Egypt, from
+twenty years old and upward, shall see the land which I sware unto
+Abraham, unto Isaac, and unto Jacob; because they have not wholly
+followed me: 32:12 Save Caleb the son of Jephunneh the Kenezite, and
+Joshua the son of Nun: for they have wholly followed the LORD.
+
+32:13 And the LORD's anger was kindled against Israel, and he made
+them wander in the wilderness forty years, until all the generation,
+that had done evil in the sight of the LORD, was consumed.
+
+32:14 And, behold, ye are risen up in your fathers' stead, an increase
+of sinful men, to augment yet the fierce anger of the LORD toward
+Israel.
+
+32:15 For if ye turn away from after him, he will yet again leave them
+in the wilderness; and ye shall destroy all this people.
+
+32:16 And they came near unto him, and said, We will build sheepfolds
+here for our cattle, and cities for our little ones: 32:17 But we
+ourselves will go ready armed before the children of Israel, until we
+have brought them unto their place: and our little ones shall dwell in
+the fenced cities because of the inhabitants of the land.
+
+32:18 We will not return unto our houses, until the children of Israel
+have inherited every man his inheritance.
+
+32:19 For we will not inherit with them on yonder side Jordan, or
+forward; because our inheritance is fallen to us on this side Jordan
+eastward.
+
+32:20 And Moses said unto them, If ye will do this thing, if ye will
+go armed before the LORD to war, 32:21 And will go all of you armed
+over Jordan before the LORD, until he hath driven out his enemies from
+before him, 32:22 And the land be subdued before the LORD: then
+afterward ye shall return, and be guiltless before the LORD, and
+before Israel; and this land shall be your possession before the LORD.
+
+32:23 But if ye will not do so, behold, ye have sinned against the
+LORD: and be sure your sin will find you out.
+
+32:24 Build you cities for your little ones, and folds for your sheep;
+and do that which hath proceeded out of your mouth.
+
+32:25 And the children of Gad and the children of Reuben spake unto
+Moses, saying, Thy servants will do as my lord commandeth.
+
+32:26 Our little ones, our wives, our flocks, and all our cattle,
+shall be there in the cities of Gilead: 32:27 But thy servants will
+pass over, every man armed for war, before the LORD to battle, as my
+lord saith.
+
+32:28 So concerning them Moses commanded Eleazar the priest, and
+Joshua the son of Nun, and the chief fathers of the tribes of the
+children of Israel: 32:29 And Moses said unto them, If the children of
+Gad and the children of Reuben will pass with you over Jordan, every
+man armed to battle, before the LORD, and the land shall be subdued
+before you; then ye shall give them the land of Gilead for a
+possession: 32:30 But if they will not pass over with you armed, they
+shall have possessions among you in the land of Canaan.
+
+32:31 And the children of Gad and the children of Reuben answered,
+saying, As the LORD hath said unto thy servants, so will we do.
+
+32:32 We will pass over armed before the LORD into the land of Canaan,
+that the possession of our inheritance on this side Jordan may be
+ours.
+
+32:33 And Moses gave unto them, even to the children of Gad, and to
+the children of Reuben, and unto half the tribe of Manasseh the son of
+Joseph, the kingdom of Sihon king of the Amorites, and the kingdom of
+Og king of Bashan, the land, with the cities thereof in the coasts,
+even the cities of the country round about.
+
+32:34 And the children of Gad built Dibon, and Ataroth, and Aroer,
+32:35 And Atroth, Shophan, and Jaazer, and Jogbehah, 32:36 And
+Bethnimrah, and Bethharan, fenced cities: and folds for sheep.
+
+32:37 And the children of Reuben built Heshbon, and Elealeh, and
+Kirjathaim, 32:38 And Nebo, and Baalmeon, (their names being changed,)
+and Shibmah: and gave other names unto the cities which they builded.
+
+32:39 And the children of Machir the son of Manasseh went to Gilead,
+and took it, and dispossessed the Amorite which was in it.
+
+32:40 And Moses gave Gilead unto Machir the son of Manasseh; and he
+dwelt therein.
+
+32:41 And Jair the son of Manasseh went and took the small towns
+thereof, and called them Havothjair.
+
+32:42 And Nobah went and took Kenath, and the villages thereof, and
+called it Nobah, after his own name.
+
+33:1 These are the journeys of the children of Israel, which went
+forth out of the land of Egypt with their armies under the hand of
+Moses and Aaron.
+
+33:2 And Moses wrote their goings out according to their journeys by
+the commandment of the LORD: and these are their journeys according to
+their goings out.
+
+33:3 And they departed from Rameses in the first month, on the
+fifteenth day of the first month; on the morrow after the passover the
+children of Israel went out with an high hand in the sight of all the
+Egyptians.
+
+33:4 For the Egyptians buried all their firstborn, which the LORD had
+smitten among them: upon their gods also the LORD executed judgments.
+
+33:5 And the children of Israel removed from Rameses, and pitched in
+Succoth.
+
+33:6 And they departed from Succoth, and pitched in Etham, which is in
+the edge of the wilderness.
+
+33:7 And they removed from Etham, and turned again unto Pihahiroth,
+which is before Baalzephon: and they pitched before Migdol.
+
+33:8 And they departed from before Pihahiroth, and passed through the
+midst of the sea into the wilderness, and went three days' journey in
+the wilderness of Etham, and pitched in Marah.
+
+33:9 And they removed from Marah, and came unto Elim: and in Elim were
+twelve fountains of water, and threescore and ten palm trees; and they
+pitched there.
+
+33:10 And they removed from Elim, and encamped by the Red sea.
+
+33:11 And they removed from the Red sea, and encamped in the
+wilderness of Sin.
+
+33:12 And they took their journey out of the wilderness of Sin, and
+encamped in Dophkah.
+
+33:13 And they departed from Dophkah, and encamped in Alush.
+
+33:14 And they removed from Alush, and encamped at Rephidim, where was
+no water for the people to drink.
+
+33:15 And they departed from Rephidim, and pitched in the wilderness
+of Sinai.
+
+33:16 And they removed from the desert of Sinai, and pitched at
+Kibrothhattaavah.
+
+33:17 And they departed from Kibrothhattaavah, and encamped at
+Hazeroth.
+
+33:18 And they departed from Hazeroth, and pitched in Rithmah.
+
+33:19 And they departed from Rithmah, and pitched at Rimmonparez.
+
+33:20 And they departed from Rimmonparez, and pitched in Libnah.
+
+33:21 And they removed from Libnah, and pitched at Rissah.
+
+33:22 And they journeyed from Rissah, and pitched in Kehelathah.
+
+33:23 And they went from Kehelathah, and pitched in mount Shapher.
+
+33:24 And they removed from mount Shapher, and encamped in Haradah.
+
+33:25 And they removed from Haradah, and pitched in Makheloth.
+
+33:26 And they removed from Makheloth, and encamped at Tahath.
+
+33:27 And they departed from Tahath, and pitched at Tarah.
+
+33:28 And they removed from Tarah, and pitched in Mithcah.
+
+33:29 And they went from Mithcah, and pitched in Hashmonah.
+
+33:30 And they departed from Hashmonah, and encamped at Moseroth.
+
+33:31 And they departed from Moseroth, and pitched in Benejaakan.
+
+33:32 And they removed from Benejaakan, and encamped at Horhagidgad.
+
+33:33 And they went from Horhagidgad, and pitched in Jotbathah.
+
+33:34 And they removed from Jotbathah, and encamped at Ebronah.
+
+33:35 And they departed from Ebronah, and encamped at Eziongaber.
+
+33:36 And they removed from Eziongaber, and pitched in the wilderness
+of Zin, which is Kadesh.
+
+33:37 And they removed from Kadesh, and pitched in mount Hor, in the
+edge of the land of Edom.
+
+33:38 And Aaron the priest went up into mount Hor at the commandment
+of the LORD, and died there, in the fortieth year after the children
+of Israel were come out of the land of Egypt, in the first day of the
+fifth month.
+
+33:39 And Aaron was an hundred and twenty and three years old when he
+died in mount Hor.
+
+33:40 And king Arad the Canaanite, which dwelt in the south in the
+land of Canaan, heard of the coming of the children of Israel.
+
+33:41 And they departed from mount Hor, and pitched in Zalmonah.
+
+33:42 And they departed from Zalmonah, and pitched in Punon.
+
+33:43 And they departed from Punon, and pitched in Oboth.
+
+33:44 And they departed from Oboth, and pitched in Ijeabarim, in the
+border of Moab.
+
+33:45 And they departed from Iim, and pitched in Dibongad.
+
+33:46 And they removed from Dibongad, and encamped in Almondiblathaim.
+
+33:47 And they removed from Almondiblathaim, and pitched in the
+mountains of Abarim, before Nebo.
+
+33:48 And they departed from the mountains of Abarim, and pitched in
+the plains of Moab by Jordan near Jericho.
+
+33:49 And they pitched by Jordan, from Bethjesimoth even unto
+Abelshittim in the plains of Moab.
+
+33:50 And the LORD spake unto Moses in the plains of Moab by Jordan
+near Jericho, saying, 33:51 Speak unto the children of Israel, and say
+unto them, When ye are passed over Jordan into the land of Canaan;
+33:52 Then ye shall drive out all the inhabitants of the land from
+before you, and destroy all their pictures, and destroy all their
+molten images, and quite pluck down all their high places: 33:53 And
+ye shall dispossess the inhabitants of the land, and dwell therein:
+for I have given you the land to possess it.
+
+33:54 And ye shall divide the land by lot for an inheritance among
+your families: and to the more ye shall give the more inheritance, and
+to the fewer ye shall give the less inheritance: every man's
+inheritance shall be in the place where his lot falleth; according to
+the tribes of your fathers ye shall inherit.
+
+33:55 But if ye will not drive out the inhabitants of the land from
+before you; then it shall come to pass, that those which ye let remain
+of them shall be pricks in your eyes, and thorns in your sides, and
+shall vex you in the land wherein ye dwell.
+
+33:56 Moreover it shall come to pass, that I shall do unto you, as I
+thought to do unto them.
+
+34:1 And the LORD spake unto Moses, saying, 34:2 Command the children
+of Israel, and say unto them, When ye come into the land of Canaan;
+(this is the land that shall fall unto you for an inheritance, even
+the land of Canaan with the coasts thereof:) 34:3 Then your south
+quarter shall be from the wilderness of Zin along by the coast of
+Edom, and your south border shall be the outmost coast of the salt sea
+eastward: 34:4 And your border shall turn from the south to the ascent
+of Akrabbim, and pass on to Zin: and the going forth thereof shall be
+from the south to Kadeshbarnea, and shall go on to Hazaraddar, and
+pass on to Azmon: 34:5 And the border shall fetch a compass from Azmon
+unto the river of Egypt, and the goings out of it shall be at the sea.
+
+34:6 And as for the western border, ye shall even have the great sea
+for a border: this shall be your west border.
+
+34:7 And this shall be your north border: from the great sea ye shall
+point out for you mount Hor: 34:8 From mount Hor ye shall point out
+your border unto the entrance of Hamath; and the goings forth of the
+border shall be to Zedad: 34:9 And the border shall go on to Ziphron,
+and the goings out of it shall be at Hazarenan: this shall be your
+north border.
+
+34:10 And ye shall point out your east border from Hazarenan to
+Shepham: 34:11 And the coast shall go down from Shepham to Riblah, on
+the east side of Ain; and the border shall descend, and shall reach
+unto the side of the sea of Chinnereth eastward: 34:12 And the border
+shall go down to Jordan, and the goings out of it shall be at the salt
+sea: this shall be your land with the coasts thereof round about.
+
+34:13 And Moses commanded the children of Israel, saying, This is the
+land which ye shall inherit by lot, which the LORD commanded to give
+unto the nine tribes, and to the half tribe: 34:14 For the tribe of
+the children of Reuben according to the house of their fathers, and
+the tribe of the children of Gad according to the house of their
+fathers, have received their inheritance; and half the tribe of
+Manasseh have received their inheritance: 34:15 The two tribes and the
+half tribe have received their inheritance on this side Jordan near
+Jericho eastward, toward the sunrising.
+
+34:16 And the LORD spake unto Moses, saying, 34:17 These are the names
+of the men which shall divide the land unto you: Eleazar the priest,
+and Joshua the son of Nun.
+
+34:18 And ye shall take one prince of every tribe, to divide the land
+by inheritance.
+
+34:19 And the names of the men are these: Of the tribe of Judah, Caleb
+the son of Jephunneh.
+
+34:20 And of the tribe of the children of Simeon, Shemuel the son of
+Ammihud.
+
+34:21 Of the tribe of Benjamin, Elidad the son of Chislon.
+
+34:22 And the prince of the tribe of the children of Dan, Bukki the
+son of Jogli.
+
+34:23 The prince of the children of Joseph, for the tribe of the
+children of Manasseh, Hanniel the son of Ephod.
+
+34:24 And the prince of the tribe of the children of Ephraim, Kemuel
+the son of Shiphtan.
+
+34:25 And the prince of the tribe of the children of Zebulun,
+Elizaphan the son of Parnach.
+
+34:26 And the prince of the tribe of the children of Issachar, Paltiel
+the son of Azzan.
+
+34:27 And the prince of the tribe of the children of Asher, Ahihud the
+son of Shelomi.
+
+34:28 And the prince of the tribe of the children of Naphtali, Pedahel
+the son of Ammihud.
+
+34:29 These are they whom the LORD commanded to divide the inheritance
+unto the children of Israel in the land of Canaan.
+
+35:1 And the LORD spake unto Moses in the plains of Moab by Jordan
+near Jericho, saying, 35:2 Command the children of Israel, that they
+give unto the Levites of the inheritance of their possession cities to
+dwell in; and ye shall give also unto the Levites suburbs for the
+cities round about them.
+
+35:3 And the cities shall they have to dwell in; and the suburbs of
+them shall be for their cattle, and for their goods, and for all their
+beasts.
+
+35:4 And the suburbs of the cities, which ye shall give unto the
+Levites, shall reach from the wall of the city and outward a thousand
+cubits round about.
+
+35:5 And ye shall measure from without the city on the east side two
+thousand cubits, and on the south side two thousand cubits, and on the
+west side two thousand cubits, and on the north side two thousand
+cubits; and the city shall be in the midst: this shall be to them the
+suburbs of the cities.
+
+35:6 And among the cities which ye shall give unto the Levites there
+shall be six cities for refuge, which ye shall appoint for the
+manslayer, that he may flee thither: and to them ye shall add forty
+and two cities.
+
+35:7 So all the cities which ye shall give to the Levites shall be
+forty and eight cities: them shall ye give with their suburbs.
+
+35:8 And the cities which ye shall give shall be of the possession of
+the children of Israel: from them that have many ye shall give many;
+but from them that have few ye shall give few: every one shall give of
+his cities unto the Levites according to his inheritance which he
+inheriteth.
+
+35:9 And the LORD spake unto Moses, saying, 35:10 Speak unto the
+children of Israel, and say unto them, When ye be come over Jordan
+into the land of Canaan; 35:11 Then ye shall appoint you cities to be
+cities of refuge for you; that the slayer may flee thither, which
+killeth any person at unawares.
+
+35:12 And they shall be unto you cities for refuge from the avenger;
+that the manslayer die not, until he stand before the congregation in
+judgment.
+
+35:13 And of these cities which ye shall give six cities shall ye have
+for refuge.
+
+35:14 Ye shall give three cities on this side Jordan, and three cities
+shall ye give in the land of Canaan, which shall be cities of refuge.
+
+35:15 These six cities shall be a refuge, both for the children of
+Israel, and for the stranger, and for the sojourner among them: that
+every one that killeth any person unawares may flee thither.
+
+35:16 And if he smite him with an instrument of iron, so that he die,
+he is a murderer: the murderer shall surely be put to death.
+
+35:17 And if he smite him with throwing a stone, wherewith he may die,
+and he die, he is a murderer: the murderer shall surely be put to
+death.
+
+35:18 Or if he smite him with an hand weapon of wood, wherewith he may
+die, and he die, he is a murderer: the murderer shall surely be put to
+death.
+
+35:19 The revenger of blood himself shall slay the murderer: when he
+meeteth him, he shall slay him.
+
+35:20 But if he thrust him of hatred, or hurl at him by laying of
+wait, that he die; 35:21 Or in enmity smite him with his hand, that he
+die: he that smote him shall surely be put to death; for he is a
+murderer: the revenger of blood shall slay the murderer, when he
+meeteth him.
+
+35:22 But if he thrust him suddenly without enmity, or have cast upon
+him any thing without laying of wait, 35:23 Or with any stone,
+wherewith a man may die, seeing him not, and cast it upon him, that he
+die, and was not his enemy, neither sought his harm: 35:24 Then the
+congregation shall judge between the slayer and the revenger of blood
+according to these judgments: 35:25 And the congregation shall deliver
+the slayer out of the hand of the revenger of blood, and the
+congregation shall restore him to the city of his refuge, whither he
+was fled: and he shall abide in it unto the death of the high priest,
+which was anointed with the holy oil.
+
+35:26 But if the slayer shall at any time come without the border of
+the city of his refuge, whither he was fled; 35:27 And the revenger of
+blood find him without the borders of the city of his refuge, and the
+revenger of blood kill the slayer; he shall not be guilty of blood:
+35:28 Because he should have remained in the city of his refuge until
+the death of the high priest: but after the death of the high priest
+the slayer shall return into the land of his possession.
+
+35:29 So these things shall be for a statute of judgment unto you
+throughout your generations in all your dwellings.
+
+35:30 Whoso killeth any person, the murderer shall be put to death by
+the mouth of witnesses: but one witness shall not testify against any
+person to cause him to die.
+
+35:31 Moreover ye shall take no satisfaction for the life of a
+murderer, which is guilty of death: but he shall be surely put to
+death.
+
+35:32 And ye shall take no satisfaction for him that is fled to the
+city of his refuge, that he should come again to dwell in the land,
+until the death of the priest.
+
+35:33 So ye shall not pollute the land wherein ye are: for blood it
+defileth the land: and the land cannot be cleansed of the blood that
+is shed therein, but by the blood of him that shed it.
+
+35:34 Defile not therefore the land which ye shall inhabit, wherein I
+dwell: for I the LORD dwell among the children of Israel.
+
+36:1 And the chief fathers of the families of the children of Gilead,
+the son of Machir, the son of Manasseh, of the families of the sons of
+Joseph, came near, and spake before Moses, and before the princes, the
+chief fathers of the children of Israel: 36:2 And they said, The LORD
+commanded my lord to give the land for an inheritance by lot to the
+children of Israel: and my lord was commanded by the LORD to give the
+inheritance of Zelophehad our brother unto his daughters.
+
+36:3 And if they be married to any of the sons of the other tribes of
+the children of Israel, then shall their inheritance be taken from the
+inheritance of our fathers, and shall be put to the inheritance of the
+tribe whereunto they are received: so shall it be taken from the lot
+of our inheritance.
+
+36:4 And when the jubile of the children of Israel shall be, then
+shall their inheritance be put unto the inheritance of the tribe
+whereunto they are received: so shall their inheritance be taken away
+from the inheritance of the tribe of our fathers.
+
+36:5 And Moses commanded the children of Israel according to the word
+of the LORD, saying, The tribe of the sons of Joseph hath said well.
+
+36:6 This is the thing which the LORD doth command concerning the
+daughters of Zelophehad, saying, Let them marry to whom they think
+best; only to the family of the tribe of their father shall they
+marry.
+
+36:7 So shall not the inheritance of the children of Israel remove
+from tribe to tribe: for every one of the children of Israel shall
+keep himself to the inheritance of the tribe of his fathers.
+
+36:8 And every daughter, that possesseth an inheritance in any tribe
+of the children of Israel, shall be wife unto one of the family of the
+tribe of her father, that the children of Israel may enjoy every man
+the inheritance of his fathers.
+
+36:9 Neither shall the inheritance remove from one tribe to another
+tribe; but every one of the tribes of the children of Israel shall
+keep himself to his own inheritance.
+
+36:10 Even as the LORD commanded Moses, so did the daughters of
+Zelophehad: 36:11 For Mahlah, Tirzah, and Hoglah, and Milcah, and
+Noah, the daughters of Zelophehad, were married unto their father's
+brothers' sons: 36:12 And they were married into the families of the
+sons of Manasseh the son of Joseph, and their inheritance remained in
+the tribe of the family of their father.
+
+36:13 These are the commandments and the judgments, which the LORD
+commanded by the hand of Moses unto the children of Israel in the
+plains of Moab by Jordan near Jericho.
+
+
+
+
+The Fifth Book of Moses: Called Deuteronomy
+
+
+1:1 These be the words which Moses spake unto all Israel on this side
+Jordan in the wilderness, in the plain over against the Red sea,
+between Paran, and Tophel, and Laban, and Hazeroth, and Dizahab.
+
+1:2 (There are eleven days' journey from Horeb by the way of mount
+Seir unto Kadeshbarnea.) 1:3 And it came to pass in the fortieth
+year, in the eleventh month, on the first day of the month, that Moses
+spake unto the children of Israel, according unto all that the LORD
+had given him in commandment unto them; 1:4 After he had slain Sihon
+the king of the Amorites, which dwelt in Heshbon, and Og the king of
+Bashan, which dwelt at Astaroth in Edrei: 1:5 On this side Jordan, in
+the land of Moab, began Moses to declare this law, saying, 1:6 The
+LORD our God spake unto us in Horeb, saying, Ye have dwelt long enough
+in this mount: 1:7 Turn you, and take your journey, and go to the
+mount of the Amorites, and unto all the places nigh thereunto, in the
+plain, in the hills, and in the vale, and in the south, and by the sea
+side, to the land of the Canaanites, and unto Lebanon, unto the great
+river, the river Euphrates.
+
+1:8 Behold, I have set the land before you: go in and possess the land
+which the LORD sware unto your fathers, Abraham, Isaac, and Jacob, to
+give unto them and to their seed after them.
+
+1:9 And I spake unto you at that time, saying, I am not able to bear
+you myself alone: 1:10 The LORD your God hath multiplied you, and,
+behold, ye are this day as the stars of heaven for multitude.
+
+1:11 (The LORD God of your fathers make you a thousand times so many
+more as ye are, and bless you, as he hath promised you!) 1:12 How can
+I myself alone bear your cumbrance, and your burden, and your strife?
+1:13 Take you wise men, and understanding, and known among your
+tribes, and I will make them rulers over you.
+
+1:14 And ye answered me, and said, The thing which thou hast spoken is
+good for us to do.
+
+1:15 So I took the chief of your tribes, wise men, and known, and made
+them heads over you, captains over thousands, and captains over
+hundreds, and captains over fifties, and captains over tens, and
+officers among your tribes.
+
+1:16 And I charged your judges at that time, saying, Hear the causes
+between your brethren, and judge righteously between every man and his
+brother, and the stranger that is with him.
+
+1:17 Ye shall not respect persons in judgment; but ye shall hear the
+small as well as the great; ye shall not be afraid of the face of man;
+for the judgment is God's: and the cause that is too hard for you,
+bring it unto me, and I will hear it.
+
+1:18 And I commanded you at that time all the things which ye should
+do.
+
+1:19 And when we departed from Horeb, we went through all that great
+and terrible wilderness, which ye saw by the way of the mountain of
+the Amorites, as the LORD our God commanded us; and we came to
+Kadeshbarnea.
+
+1:20 And I said unto you, Ye are come unto the mountain of the
+Amorites, which the LORD our God doth give unto us.
+
+1:21 Behold, the LORD thy God hath set the land before thee: go up and
+possess it, as the LORD God of thy fathers hath said unto thee; fear
+not, neither be discouraged.
+
+1:22 And ye came near unto me every one of you, and said, We will send
+men before us, and they shall search us out the land, and bring us
+word again by what way we must go up, and into what cities we shall
+come.
+
+1:23 And the saying pleased me well: and I took twelve men of you, one
+of a tribe: 1:24 And they turned and went up into the mountain, and
+came unto the valley of Eshcol, and searched it out.
+
+1:25 And they took of the fruit of the land in their hands, and
+brought it down unto us, and brought us word again, and said, It is a
+good land which the LORD our God doth give us.
+
+1:26 Notwithstanding ye would not go up, but rebelled against the
+commandment of the LORD your God: 1:27 And ye murmured in your tents,
+and said, Because the LORD hated us, he hath brought us forth out of
+the land of Egypt, to deliver us into the hand of the Amorites, to
+destroy us.
+
+1:28 Whither shall we go up? our brethren have discouraged our heart,
+saying, The people is greater and taller than we; the cities are great
+and walled up to heaven; and moreover we have seen the sons of the
+Anakims there.
+
+1:29 Then I said unto you, Dread not, neither be afraid of them.
+
+1:30 The LORD your God which goeth before you, he shall fight for you,
+according to all that he did for you in Egypt before your eyes; 1:31
+And in the wilderness, where thou hast seen how that the LORD thy God
+bare thee, as a man doth bear his son, in all the way that ye went,
+until ye came into this place.
+
+1:32 Yet in this thing ye did not believe the LORD your God, 1:33 Who
+went in the way before you, to search you out a place to pitch your
+tents in, in fire by night, to shew you by what way ye should go, and
+in a cloud by day.
+
+1:34 And the LORD heard the voice of your words, and was wroth, and
+sware, saying, 1:35 Surely there shall not one of these men of this
+evil generation see that good land, which I sware to give unto your
+fathers.
+
+1:36 Save Caleb the son of Jephunneh; he shall see it, and to him will
+I give the land that he hath trodden upon, and to his children,
+because he hath wholly followed the LORD.
+
+1:37 Also the LORD was angry with me for your sakes, saying, Thou also
+shalt not go in thither.
+
+1:38 But Joshua the son of Nun, which standeth before thee, he shall
+go in thither: encourage him: for he shall cause Israel to inherit it.
+
+1:39 Moreover your little ones, which ye said should be a prey, and
+your children, which in that day had no knowledge between good and
+evil, they shall go in thither, and unto them will I give it, and they
+shall possess it.
+
+1:40 But as for you, turn you, and take your journey into the
+wilderness by the way of the Red sea.
+
+1:41 Then ye answered and said unto me, We have sinned against the
+LORD, we will go up and fight, according to all that the LORD our God
+commanded us.
+
+And when ye had girded on every man his weapons of war, ye were ready
+to go up into the hill.
+
+1:42 And the LORD said unto me, Say unto them. Go not up, neither
+fight; for I am not among you; lest ye be smitten before your enemies.
+
+1:43 So I spake unto you; and ye would not hear, but rebelled against
+the commandment of the LORD, and went presumptuously up into the hill.
+
+1:44 And the Amorites, which dwelt in that mountain, came out against
+you, and chased you, as bees do, and destroyed you in Seir, even unto
+Hormah.
+
+1:45 And ye returned and wept before the LORD; but the LORD would not
+hearken to your voice, nor give ear unto you.
+
+1:46 So ye abode in Kadesh many days, according unto the days that ye
+abode there.
+
+2:1 Then we turned, and took our journey into the wilderness by the
+way of the Red sea, as the LORD spake unto me: and we compassed mount
+Seir many days.
+
+2:2 And the LORD spake unto me, saying, 2:3 Ye have compassed this
+mountain long enough: turn you northward.
+
+2:4 And command thou the people, saying, Ye are to pass through the
+coast of your brethren the children of Esau, which dwell in Seir; and
+they shall be afraid of you: take ye good heed unto yourselves
+therefore: 2:5 Meddle not with them; for I will not give you of their
+land, no, not so much as a foot breadth; because I have given mount
+Seir unto Esau for a possession.
+
+2:6 Ye shall buy meat of them for money, that ye may eat; and ye shall
+also buy water of them for money, that ye may drink.
+
+2:7 For the LORD thy God hath blessed thee in all the works of thy
+hand: he knoweth thy walking through this great wilderness: these
+forty years the LORD thy God hath been with thee; thou hast lacked
+nothing.
+
+2:8 And when we passed by from our brethren the children of Esau,
+which dwelt in Seir, through the way of the plain from Elath, and from
+Eziongaber, we turned and passed by the way of the wilderness of Moab.
+
+2:9 And the LORD said unto me, Distress not the Moabites, neither
+contend with them in battle: for I will not give thee of their land
+for a possession; because I have given Ar unto the children of Lot for
+a possession.
+
+2:10 The Emims dwelt therein in times past, a people great, and many,
+and tall, as the Anakims; 2:11 Which also were accounted giants, as
+the Anakims; but the Moabites called them Emims.
+
+2:12 The Horims also dwelt in Seir beforetime; but the children of
+Esau succeeded them, when they had destroyed them from before them,
+and dwelt in their stead; as Israel did unto the land of his
+possession, which the LORD gave unto them.
+
+2:13 Now rise up, said I, and get you over the brook Zered. And we
+went over the brook Zered.
+
+2:14 And the space in which we came from Kadeshbarnea, until we were
+come over the brook Zered, was thirty and eight years; until all the
+generation of the men of war were wasted out from among the host, as
+the LORD sware unto them.
+
+2:15 For indeed the hand of the LORD was against them, to destroy them
+from among the host, until they were consumed.
+
+2:16 So it came to pass, when all the men of war were consumed and
+dead from among the people, 2:17 That the LORD spake unto me, saying,
+2:18 Thou art to pass over through Ar, the coast of Moab, this day:
+2:19 And when thou comest nigh over against the children of Ammon,
+distress them not, nor meddle with them: for I will not give thee of
+the land of the children of Ammon any possession; because I have given
+it unto the children of Lot for a possession.
+
+2:20 (That also was accounted a land of giants: giants dwelt therein
+in old time; and the Ammonites call them Zamzummims; 2:21 A people
+great, and many, and tall, as the Anakims; but the LORD destroyed them
+before them; and they succeeded them, and dwelt in their stead: 2:22
+As he did to the children of Esau, which dwelt in Seir, when he
+destroyed the Horims from before them; and they succeeded them, and
+dwelt in their stead even unto this day: 2:23 And the Avims which
+dwelt in Hazerim, even unto Azzah, the Caphtorims, which came forth
+out of Caphtor, destroyed them, and dwelt in their stead.) 2:24 Rise
+ye up, take your journey, and pass over the river Arnon: behold, I
+have given into thine hand Sihon the Amorite, king of Heshbon, and his
+land: begin to possess it, and contend with him in battle.
+
+2:25 This day will I begin to put the dread of thee and the fear of
+thee upon the nations that are under the whole heaven, who shall hear
+report of thee, and shall tremble, and be in anguish because of thee.
+
+2:26 And I sent messengers out of the wilderness of Kedemoth unto
+Sihon king of Heshbon with words of peace, saying, 2:27 Let me pass
+through thy land: I will go along by the high way, I will neither turn
+unto the right hand nor to the left.
+
+2:28 Thou shalt sell me meat for money, that I may eat; and give me
+water for money, that I may drink: only I will pass through on my
+feet; 2:29 (As the children of Esau which dwell in Seir, and the
+Moabites which dwell in Ar, did unto me;) until I shall pass over
+Jordan into the land which the LORD our God giveth us.
+
+2:30 But Sihon king of Heshbon would not let us pass by him: for the
+LORD thy God hardened his spirit, and made his heart obstinate, that
+he might deliver him into thy hand, as appeareth this day.
+
+2:31 And the LORD said unto me, Behold, I have begun to give Sihon and
+his land before thee: begin to possess, that thou mayest inherit his
+land.
+
+2:32 Then Sihon came out against us, he and all his people, to fight
+at Jahaz.
+
+2:33 And the LORD our God delivered him before us; and we smote him,
+and his sons, and all his people.
+
+2:34 And we took all his cities at that time, and utterly destroyed
+the men, and the women, and the little ones, of every city, we left
+none to remain: 2:35 Only the cattle we took for a prey unto
+ourselves, and the spoil of the cities which we took.
+
+2:36 From Aroer, which is by the brink of the river of Arnon, and from
+the city that is by the river, even unto Gilead, there was not one
+city too strong for us: the LORD our God delivered all unto us: 2:37
+Only unto the land of the children of Ammon thou camest not, nor unto
+any place of the river Jabbok, nor unto the cities in the mountains,
+nor unto whatsoever the LORD our God forbad us.
+
+3:1 Then we turned, and went up the way to Bashan: and Og the king of
+Bashan came out against us, he and all his people, to battle at Edrei.
+
+3:2 And the LORD said unto me, Fear him not: for I will deliver him,
+and all his people, and his land, into thy hand; and thou shalt do
+unto him as thou didst unto Sihon king of the Amorites, which dwelt at
+Heshbon.
+
+3:3 So the LORD our God delivered into our hands Og also, the king of
+Bashan, and all his people: and we smote him until none was left to
+him remaining.
+
+3:4 And we took all his cities at that time, there was not a city
+which we took not from them, threescore cities, all the region of
+Argob, the kingdom of Og in Bashan.
+
+3:5 All these cities were fenced with high walls, gates, and bars;
+beside unwalled towns a great many.
+
+3:6 And we utterly destroyed them, as we did unto Sihon king of
+Heshbon, utterly destroying the men, women, and children, of every
+city.
+
+3:7 But all the cattle, and the spoil of the cities, we took for a
+prey to ourselves.
+
+3:8 And we took at that time out of the hand of the two kings of the
+Amorites the land that was on this side Jordan, from the river of
+Arnon unto mount Hermon; 3:9 (Which Hermon the Sidonians call Sirion;
+and the Amorites call it Shenir;) 3:10 All the cities of the plain,
+and all Gilead, and all Bashan, unto Salchah and Edrei, cities of the
+kingdom of Og in Bashan.
+
+3:11 For only Og king of Bashan remained of the remnant of giants;
+behold his bedstead was a bedstead of iron; is it not in Rabbath of
+the children of Ammon? nine cubits was the length thereof, and four
+cubits the breadth of it, after the cubit of a man.
+
+3:12 And this land, which we possessed at that time, from Aroer, which
+is by the river Arnon, and half mount Gilead, and the cities thereof,
+gave I unto the Reubenites and to the Gadites.
+
+3:13 And the rest of Gilead, and all Bashan, being the kingdom of Og,
+gave I unto the half tribe of Manasseh; all the region of Argob, with
+all Bashan, which was called the land of giants.
+
+3:14 Jair the son of Manasseh took all the country of Argob unto the
+coasts of Geshuri and Maachathi; and called them after his own name,
+Bashanhavothjair, unto this day.
+
+3:15 And I gave Gilead unto Machir.
+
+3:16 And unto the Reubenites and unto the Gadites I gave from Gilead
+even unto the river Arnon half the valley, and the border even unto
+the river Jabbok, which is the border of the children of Ammon; 3:17
+The plain also, and Jordan, and the coast thereof, from Chinnereth
+even unto the sea of the plain, even the salt sea, under Ashdothpisgah
+eastward.
+
+3:18 And I commanded you at that time, saying, The LORD your God hath
+given you this land to possess it: ye shall pass over armed before
+your brethren the children of Israel, all that are meet for the war.
+
+3:19 But your wives, and your little ones, and your cattle, (for I
+know that ye have much cattle,) shall abide in your cities which I
+have given you; 3:20 Until the LORD have given rest unto your
+brethren, as well as unto you, and until they also possess the land
+which the LORD your God hath given them beyond Jordan: and then shall
+ye return every man unto his possession, which I have given you.
+
+3:21 And I commanded Joshua at that time, saying, Thine eyes have seen
+all that the LORD your God hath done unto these two kings: so shall
+the LORD do unto all the kingdoms whither thou passest.
+
+3:22 Ye shall not fear them: for the LORD your God he shall fight for
+you.
+
+3:23 And I besought the LORD at that time, saying, 3:24 O Lord GOD,
+thou hast begun to shew thy servant thy greatness, and thy mighty
+hand: for what God is there in heaven or in earth, that can do
+according to thy works, and according to thy might? 3:25 I pray thee,
+let me go over, and see the good land that is beyond Jordan, that
+goodly mountain, and Lebanon.
+
+3:26 But the LORD was wroth with me for your sakes, and would not hear
+me: and the LORD said unto me, Let it suffice thee; speak no more unto
+me of this matter.
+
+3:27 Get thee up into the top of Pisgah, and lift up thine eyes
+westward, and northward, and southward, and eastward, and behold it
+with thine eyes: for thou shalt not go over this Jordan.
+
+3:28 But charge Joshua, and encourage him, and strengthen him: for he
+shall go over before this people, and he shall cause them to inherit
+the land which thou shalt see.
+
+3:29 So we abode in the valley over against Bethpeor.
+
+4:1 Now therefore hearken, O Israel, unto the statutes and unto the
+judgments, which I teach you, for to do them, that ye may live, and go
+in and possess the land which the LORD God of your fathers giveth you.
+
+4:2 Ye shall not add unto the word which I command you, neither shall
+ye diminish ought from it, that ye may keep the commandments of the
+LORD your God which I command you.
+
+4:3 Your eyes have seen what the LORD did because of Baalpeor: for all
+the men that followed Baalpeor, the LORD thy God hath destroyed them
+from among you.
+
+4:4 But ye that did cleave unto the LORD your God are alive every one
+of you this day.
+
+4:5 Behold, I have taught you statutes and judgments, even as the LORD
+my God commanded me, that ye should do so in the land whither ye go to
+possess it.
+
+4:6 Keep therefore and do them; for this is your wisdom and your
+understanding in the sight of the nations, which shall hear all these
+statutes, and say, Surely this great nation is a wise and
+understanding people.
+
+4:7 For what nation is there so great, who hath God so nigh unto them,
+as the LORD our God is in all things that we call upon him for? 4:8
+And what nation is there so great, that hath statutes and judgments so
+righteous as all this law, which I set before you this day? 4:9 Only
+take heed to thyself, and keep thy soul diligently, lest thou forget
+the things which thine eyes have seen, and lest they depart from thy
+heart all the days of thy life: but teach them thy sons, and thy sons'
+sons; 4:10 Specially the day that thou stoodest before the LORD thy
+God in Horeb, when the LORD said unto me, Gather me the people
+together, and I will make them hear my words, that they may learn to
+fear me all the days that they shall live upon the earth, and that
+they may teach their children.
+
+4:11 And ye came near and stood under the mountain; and the mountain
+burned with fire unto the midst of heaven, with darkness, clouds, and
+thick darkness.
+
+4:12 And the LORD spake unto you out of the midst of the fire: ye
+heard the voice of the words, but saw no similitude; only ye heard a
+voice.
+
+4:13 And he declared unto you his covenant, which he commanded you to
+perform, even ten commandments; and he wrote them upon two tables of
+stone.
+
+4:14 And the LORD commanded me at that time to teach you statutes and
+judgments, that ye might do them in the land whither ye go over to
+possess it.
+
+4:15 Take ye therefore good heed unto yourselves; for ye saw no manner
+of similitude on the day that the LORD spake unto you in Horeb out of
+the midst of the fire: 4:16 Lest ye corrupt yourselves, and make you a
+graven image, the similitude of any figure, the likeness of male or
+female, 4:17 The likeness of any beast that is on the earth, the
+likeness of any winged fowl that flieth in the air, 4:18 The likeness
+of any thing that creepeth on the ground, the likeness of any fish
+that is in the waters beneath the earth: 4:19 And lest thou lift up
+thine eyes unto heaven, and when thou seest the sun, and the moon, and
+the stars, even all the host of heaven, shouldest be driven to worship
+them, and serve them, which the LORD thy God hath divided unto all
+nations under the whole heaven.
+
+4:20 But the LORD hath taken you, and brought you forth out of the
+iron furnace, even out of Egypt, to be unto him a people of
+inheritance, as ye are this day.
+
+4:21 Furthermore the LORD was angry with me for your sakes, and sware
+that I should not go over Jordan, and that I should not go in unto
+that good land, which the LORD thy God giveth thee for an inheritance:
+4:22 But I must die in this land, I must not go over Jordan: but ye
+shall go over, and possess that good land.
+
+4:23 Take heed unto yourselves, lest ye forget the covenant of the
+LORD your God, which he made with you, and make you a graven image, or
+the likeness of any thing, which the LORD thy God hath forbidden thee.
+
+4:24 For the LORD thy God is a consuming fire, even a jealous God.
+
+4:25 When thou shalt beget children, and children's children, and ye
+shall have remained long in the land, and shall corrupt yourselves,
+and make a graven image, or the likeness of any thing, and shall do
+evil in the sight of the LORD thy God, to provoke him to anger: 4:26 I
+call heaven and earth to witness against you this day, that ye shall
+soon utterly perish from off the land whereunto ye go over Jordan to
+possess it; ye shall not prolong your days upon it, but shall utterly
+be destroyed.
+
+4:27 And the LORD shall scatter you among the nations, and ye shall be
+left few in number among the heathen, whither the LORD shall lead you.
+
+4:28 And there ye shall serve gods, the work of men's hands, wood and
+stone, which neither see, nor hear, nor eat, nor smell.
+
+4:29 But if from thence thou shalt seek the LORD thy God, thou shalt
+find him, if thou seek him with all thy heart and with all thy soul.
+
+4:30 When thou art in tribulation, and all these things are come upon
+thee, even in the latter days, if thou turn to the LORD thy God, and
+shalt be obedient unto his voice; 4:31 (For the LORD thy God is a
+merciful God;) he will not forsake thee, neither destroy thee, nor
+forget the covenant of thy fathers which he sware unto them.
+
+4:32 For ask now of the days that are past, which were before thee,
+since the day that God created man upon the earth, and ask from the
+one side of heaven unto the other, whether there hath been any such
+thing as this great thing is, or hath been heard like it? 4:33 Did
+ever people hear the voice of God speaking out of the midst of the
+fire, as thou hast heard, and live? 4:34 Or hath God assayed to go
+and take him a nation from the midst of another nation, by
+temptations, by signs, and by wonders, and by war, and by a mighty
+hand, and by a stretched out arm, and by great terrors, according to
+all that the LORD your God did for you in Egypt before your eyes?
+4:35 Unto thee it was shewed, that thou mightest know that the LORD he
+is God; there is none else beside him.
+
+4:36 Out of heaven he made thee to hear his voice, that he might
+instruct thee: and upon earth he shewed thee his great fire; and thou
+heardest his words out of the midst of the fire.
+
+4:37 And because he loved thy fathers, therefore he chose their seed
+after them, and brought thee out in his sight with his mighty power
+out of Egypt; 4:38 To drive out nations from before thee greater and
+mightier than thou art, to bring thee in, to give thee their land for
+an inheritance, as it is this day.
+
+4:39 Know therefore this day, and consider it in thine heart, that the
+LORD he is God in heaven above, and upon the earth beneath: there is
+none else.
+
+4:40 Thou shalt keep therefore his statutes, and his commandments,
+which I command thee this day, that it may go well with thee, and with
+thy children after thee, and that thou mayest prolong thy days upon
+the earth, which the LORD thy God giveth thee, for ever.
+
+4:41 Then Moses severed three cities on this side Jordan toward the
+sunrising; 4:42 That the slayer might flee thither, which should kill
+his neighbour unawares, and hated him not in times past; and that
+fleeing unto one of these cities he might live: 4:43 Namely, Bezer in
+the wilderness, in the plain country, of the Reubenites; and Ramoth in
+Gilead, of the Gadites; and Golan in Bashan, of the Manassites.
+
+4:44 And this is the law which Moses set before the children of
+Israel: 4:45 These are the testimonies, and the statutes, and the
+judgments, which Moses spake unto the children of Israel, after they
+came forth out of Egypt.
+
+4:46 On this side Jordan, in the valley over against Bethpeor, in the
+land of Sihon king of the Amorites, who dwelt at Heshbon, whom Moses
+and the children of Israel smote, after they were come forth out of
+Egypt: 4:47 And they possessed his land, and the land of Og king of
+Bashan, two kings of the Amorites, which were on this side Jordan
+toward the sunrising; 4:48 From Aroer, which is by the bank of the
+river Arnon, even unto mount Sion, which is Hermon, 4:49 And all the
+plain on this side Jordan eastward, even unto the sea of the plain,
+under the springs of Pisgah.
+
+5:1 And Moses called all Israel, and said unto them, Hear, O Israel,
+the statutes and judgments which I speak in your ears this day, that
+ye may learn them, and keep, and do them.
+
+5:2 The LORD our God made a covenant with us in Horeb.
+
+5:3 The LORD made not this covenant with our fathers, but with us,
+even us, who are all of us here alive this day.
+
+5:4 The LORD talked with you face to face in the mount out of the
+midst of the fire, 5:5 (I stood between the LORD and you at that time,
+to shew you the word of the LORD: for ye were afraid by reason of the
+fire, and went not up into the mount;) saying, 5:6 I am the LORD thy
+God, which brought thee out of the land of Egypt, from the house of
+bondage.
+
+5:7 Thou shalt have none other gods before me.
+
+5:8 Thou shalt not make thee any graven image, or any likeness of any
+thing that is in heaven above, or that is in the earth beneath, or
+that is in the waters beneath the earth: 5:9 Thou shalt not bow down
+thyself unto them, nor serve them: for I the LORD thy God am a jealous
+God, visiting the iniquity of the fathers upon the children unto the
+third and fourth generation of them that hate me, 5:10 And shewing
+mercy unto thousands of them that love me and keep my commandments.
+
+5:11 Thou shalt not take the name of the LORD thy God in vain: for the
+LORD will not hold him guiltless that taketh his name in vain.
+
+5:12 Keep the sabbath day to sanctify it, as the LORD thy God hath
+commanded thee.
+
+5:13 Six days thou shalt labour, and do all thy work: 5:14 But the
+seventh day is the sabbath of the LORD thy God: in it thou shalt not
+do any work, thou, nor thy son, nor thy daughter, nor thy manservant,
+nor thy maidservant, nor thine ox, nor thine ass, nor any of thy
+cattle, nor thy stranger that is within thy gates; that thy manservant
+and thy maidservant may rest as well as thou.
+
+5:15 And remember that thou wast a servant in the land of Egypt, and
+that the LORD thy God brought thee out thence through a mighty hand
+and by a stretched out arm: therefore the LORD thy God commanded thee
+to keep the sabbath day.
+
+5:16 Honour thy father and thy mother, as the LORD thy God hath
+commanded thee; that thy days may be prolonged, and that it may go
+well with thee, in the land which the LORD thy God giveth thee.
+
+5:17 Thou shalt not kill.
+
+5:18 Neither shalt thou commit adultery.
+
+5:19 Neither shalt thou steal.
+
+5:20 Neither shalt thou bear false witness against thy neighbour.
+
+5:21 Neither shalt thou desire thy neighbour's wife, neither shalt
+thou covet thy neighbour's house, his field, or his manservant, or his
+maidservant, his ox, or his ass, or any thing that is thy neighbour's.
+
+5:22 These words the LORD spake unto all your assembly in the mount
+out of the midst of the fire, of the cloud, and of the thick darkness,
+with a great voice: and he added no more. And he wrote them in two
+tables of stone, and delivered them unto me.
+
+5:23 And it came to pass, when ye heard the voice out of the midst of
+the darkness, (for the mountain did burn with fire,) that ye came near
+unto me, even all the heads of your tribes, and your elders; 5:24 And
+ye said, Behold, the LORD our God hath shewed us his glory and his
+greatness, and we have heard his voice out of the midst of the fire:
+we have seen this day that God doth talk with man, and he liveth.
+
+5:25 Now therefore why should we die? for this great fire will consume
+us: if we hear the voice of the LORD our God any more, then we shall
+die.
+
+5:26 For who is there of all flesh, that hath heard the voice of the
+living God speaking out of the midst of the fire, as we have, and
+lived? 5:27 Go thou near, and hear all that the LORD our God shall
+say: and speak thou unto us all that the LORD our God shall speak unto
+thee; and we will hear it, and do it.
+
+5:28 And the LORD heard the voice of your words, when ye spake unto
+me; and the LORD said unto me, I have heard the voice of the words of
+this people, which they have spoken unto thee: they have well said all
+that they have spoken.
+
+5:29 O that there were such an heart in them, that they would fear me,
+and keep all my commandments always, that it might be well with them,
+and with their children for ever! 5:30 Go say to them, Get you into
+your tents again.
+
+5:31 But as for thee, stand thou here by me, and I will speak unto
+thee all the commandments, and the statutes, and the judgments, which
+thou shalt teach them, that they may do them in the land which I give
+them to possess it.
+
+5:32 Ye shall observe to do therefore as the LORD your God hath
+commanded you: ye shall not turn aside to the right hand or to the
+left.
+
+5:33 Ye shall walk in all the ways which the LORD your God hath
+commanded you, that ye may live, and that it may be well with you, and
+that ye may prolong your days in the land which ye shall possess.
+
+6:1 Now these are the commandments, the statutes, and the judgments,
+which the LORD your God commanded to teach you, that ye might do them
+in the land whither ye go to possess it: 6:2 That thou mightest fear
+the LORD thy God, to keep all his statutes and his commandments, which
+I command thee, thou, and thy son, and thy son's son, all the days of
+thy life; and that thy days may be prolonged.
+
+6:3 Hear therefore, O Israel, and observe to do it; that it may be
+well with thee, and that ye may increase mightily, as the LORD God of
+thy fathers hath promised thee, in the land that floweth with milk and
+honey.
+
+6:4 Hear, O Israel: The LORD our God is one LORD: 6:5 And thou shalt
+love the LORD thy God with all thine heart, and with all thy soul, and
+with all thy might.
+
+6:6 And these words, which I command thee this day, shall be in thine
+heart: 6:7 And thou shalt teach them diligently unto thy children, and
+shalt talk of them when thou sittest in thine house, and when thou
+walkest by the way, and when thou liest down, and when thou risest up.
+
+6:8 And thou shalt bind them for a sign upon thine hand, and they
+shall be as frontlets between thine eyes.
+
+6:9 And thou shalt write them upon the posts of thy house, and on thy
+gates.
+
+6:10 And it shall be, when the LORD thy God shall have brought thee
+into the land which he sware unto thy fathers, to Abraham, to Isaac,
+and to Jacob, to give thee great and goodly cities, which thou
+buildedst not, 6:11 And houses full of all good things, which thou
+filledst not, and wells digged, which thou diggedst not, vineyards and
+olive trees, which thou plantedst not; when thou shalt have eaten and
+be full; 6:12 Then beware lest thou forget the LORD, which brought
+thee forth out of the land of Egypt, from the house of bondage.
+
+6:13 Thou shalt fear the LORD thy God, and serve him, and shalt swear
+by his name.
+
+6:14 Ye shall not go after other gods, of the gods of the people which
+are round about you; 6:15 (For the LORD thy God is a jealous God among
+you) lest the anger of the LORD thy God be kindled against thee, and
+destroy thee from off the face of the earth.
+
+6:16 Ye shall not tempt the LORD your God, as ye tempted him in
+Massah.
+
+6:17 Ye shall diligently keep the commandments of the LORD your God,
+and his testimonies, and his statutes, which he hath commanded thee.
+
+6:18 And thou shalt do that which is right and good in the sight of
+the LORD: that it may be well with thee, and that thou mayest go in
+and possess the good land which the LORD sware unto thy fathers.
+
+6:19 To cast out all thine enemies from before thee, as the LORD hath
+spoken.
+
+6:20 And when thy son asketh thee in time to come, saying, What mean
+the testimonies, and the statutes, and the judgments, which the LORD
+our God hath commanded you? 6:21 Then thou shalt say unto thy son, We
+were Pharaoh's bondmen in Egypt; and the LORD brought us out of Egypt
+with a mighty hand: 6:22 And the LORD shewed signs and wonders, great
+and sore, upon Egypt, upon Pharaoh, and upon all his household, before
+our eyes: 6:23 And he brought us out from thence, that he might bring
+us in, to give us the land which he sware unto our fathers.
+
+6:24 And the LORD commanded us to do all these statutes, to fear the
+LORD our God, for our good always, that he might preserve us alive, as
+it is at this day.
+
+6:25 And it shall be our righteousness, if we observe to do all these
+commandments before the LORD our God, as he hath commanded us.
+
+7:1 When the LORD thy God shall bring thee into the land whither thou
+goest to possess it, and hath cast out many nations before thee, the
+Hittites, and the Girgashites, and the Amorites, and the Canaanites,
+and the Perizzites, and the Hivites, and the Jebusites, seven nations
+greater and mightier than thou; 7:2 And when the LORD thy God shall
+deliver them before thee; thou shalt smite them, and utterly destroy
+them; thou shalt make no covenant with them, nor shew mercy unto them:
+7:3 Neither shalt thou make marriages with them; thy daughter thou
+shalt not give unto his son, nor his daughter shalt thou take unto thy
+son.
+
+7:4 For they will turn away thy son from following me, that they may
+serve other gods: so will the anger of the LORD be kindled against
+you, and destroy thee suddenly.
+
+7:5 But thus shall ye deal with them; ye shall destroy their altars,
+and break down their images, and cut down their groves, and burn their
+graven images with fire.
+
+7:6 For thou art an holy people unto the LORD thy God: the LORD thy
+God hath chosen thee to be a special people unto himself, above all
+people that are upon the face of the earth.
+
+7:7 The LORD did not set his love upon you, nor choose you, because ye
+were more in number than any people; for ye were the fewest of all
+people: 7:8 But because the LORD loved you, and because he would keep
+the oath which he had sworn unto your fathers, hath the LORD brought
+you out with a mighty hand, and redeemed you out of the house of
+bondmen, from the hand of Pharaoh king of Egypt.
+
+7:9 Know therefore that the LORD thy God, he is God, the faithful God,
+which keepeth covenant and mercy with them that love him and keep his
+commandments to a thousand generations; 7:10 And repayeth them that
+hate him to their face, to destroy them: he will not be slack to him
+that hateth him, he will repay him to his face.
+
+7:11 Thou shalt therefore keep the commandments, and the statutes, and
+the judgments, which I command thee this day, to do them.
+
+7:12 Wherefore it shall come to pass, if ye hearken to these
+judgments, and keep, and do them, that the LORD thy God shall keep
+unto thee the covenant and the mercy which he sware unto thy fathers:
+7:13 And he will love thee, and bless thee, and multiply thee: he will
+also bless the fruit of thy womb, and the fruit of thy land, thy corn,
+and thy wine, and thine oil, the increase of thy kine, and the flocks
+of thy sheep, in the land which he sware unto thy fathers to give
+thee.
+
+7:14 Thou shalt be blessed above all people: there shall not be male
+or female barren among you, or among your cattle.
+
+7:15 And the LORD will take away from thee all sickness, and will put
+none of the evil diseases of Egypt, which thou knowest, upon thee; but
+will lay them upon all them that hate thee.
+
+7:16 And thou shalt consume all the people which the LORD thy God
+shall deliver thee; thine eye shall have no pity upon them: neither
+shalt thou serve their gods; for that will be a snare unto thee.
+
+7:17 If thou shalt say in thine heart, These nations are more than I;
+how can I dispossess them? 7:18 Thou shalt not be afraid of them: but
+shalt well remember what the LORD thy God did unto Pharaoh, and unto
+all Egypt; 7:19 The great temptations which thine eyes saw, and the
+signs, and the wonders, and the mighty hand, and the stretched out
+arm, whereby the LORD thy God brought thee out: so shall the LORD thy
+God do unto all the people of whom thou art afraid.
+
+7:20 Moreover the LORD thy God will send the hornet among them, until
+they that are left, and hide themselves from thee, be destroyed.
+
+7:21 Thou shalt not be affrighted at them: for the LORD thy God is
+among you, a mighty God and terrible.
+
+7:22 And the LORD thy God will put out those nations before thee by
+little and little: thou mayest not consume them at once, lest the
+beasts of the field increase upon thee.
+
+7:23 But the LORD thy God shall deliver them unto thee, and shall
+destroy them with a mighty destruction, until they be destroyed.
+
+7:24 And he shall deliver their kings into thine hand, and thou shalt
+destroy their name from under heaven: there shall no man be able to
+stand before thee, until thou have destroyed them.
+
+7:25 The graven images of their gods shall ye burn with fire: thou
+shalt not desire the silver or gold that is on them, nor take it unto
+thee, lest thou be snared therin: for it is an abomination to the LORD
+thy God.
+
+7:26 Neither shalt thou bring an abomination into thine house, lest
+thou be a cursed thing like it: but thou shalt utterly detest it, and
+thou shalt utterly abhor it; for it is a cursed thing.
+
+8:1 All the commandments which I command thee this day shall ye
+observe to do, that ye may live, and multiply, and go in and possess
+the land which the LORD sware unto your fathers.
+
+8:2 And thou shalt remember all the way which the LORD thy God led
+thee these forty years in the wilderness, to humble thee, and to prove
+thee, to know what was in thine heart, whether thou wouldest keep his
+commandments, or no.
+
+8:3 And he humbled thee, and suffered thee to hunger, and fed thee
+with manna, which thou knewest not, neither did thy fathers know; that
+he might make thee know that man doth not live by bread only, but by
+every word that proceedeth out of the mouth of the LORD doth man live.
+
+8:4 Thy raiment waxed not old upon thee, neither did thy foot swell,
+these forty years.
+
+8:5 Thou shalt also consider in thine heart, that, as a man chasteneth
+his son, so the LORD thy God chasteneth thee.
+
+8:6 Therefore thou shalt keep the commandments of the LORD thy God, to
+walk in his ways, and to fear him.
+
+8:7 For the LORD thy God bringeth thee into a good land, a land of
+brooks of water, of fountains and depths that spring out of valleys
+and hills; 8:8 A land of wheat, and barley, and vines, and fig trees,
+and pomegranates; a land of oil olive, and honey; 8:9 A land wherein
+thou shalt eat bread without scarceness, thou shalt not lack any thing
+in it; a land whose stones are iron, and out of whose hills thou
+mayest dig brass.
+
+8:10 When thou hast eaten and art full, then thou shalt bless the LORD
+thy God for the good land which he hath given thee.
+
+8:11 Beware that thou forget not the LORD thy God, in not keeping his
+commandments, and his judgments, and his statutes, which I command
+thee this day: 8:12 Lest when thou hast eaten and art full, and hast
+built goodly houses, and dwelt therein; 8:13 And when thy herds and
+thy flocks multiply, and thy silver and thy gold is multiplied, and
+all that thou hast is multiplied; 8:14 Then thine heart be lifted up,
+and thou forget the LORD thy God, which brought thee forth out of the
+land of Egypt, from the house of bondage; 8:15 Who led thee through
+that great and terrible wilderness, wherein were fiery serpents, and
+scorpions, and drought, where there was no water; who brought thee
+forth water out of the rock of flint; 8:16 Who fed thee in the
+wilderness with manna, which thy fathers knew not, that he might
+humble thee, and that he might prove thee, to do thee good at thy
+latter end; 8:17 And thou say in thine heart, My power and the might
+of mine hand hath gotten me this wealth.
+
+8:18 But thou shalt remember the LORD thy God: for it is he that
+giveth thee power to get wealth, that he may establish his covenant
+which he sware unto thy fathers, as it is this day.
+
+8:19 And it shall be, if thou do at all forget the LORD thy God, and
+walk after other gods, and serve them, and worship them, I testify
+against you this day that ye shall surely perish.
+
+8:20 As the nations which the LORD destroyeth before your face, so
+shall ye perish; because ye would not be obedient unto the voice of
+the LORD your God.
+
+9:1 Hear, O Israel: Thou art to pass over Jordan this day, to go in to
+possess nations greater and mightier than thyself, cities great and
+fenced up to heaven, 9:2 A people great and tall, the children of the
+Anakims, whom thou knowest, and of whom thou hast heard say, Who can
+stand before the children of Anak! 9:3 Understand therefore this day,
+that the LORD thy God is he which goeth over before thee; as a
+consuming fire he shall destroy them, and he shall bring them down
+before thy face: so shalt thou drive them out, and destroy them
+quickly, as the LORD hath said unto thee.
+
+9:4 Speak not thou in thine heart, after that the LORD thy God hath
+cast them out from before thee, saying, For my righteousness the LORD
+hath brought me in to possess this land: but for the wickedness of
+these nations the LORD doth drive them out from before thee.
+
+9:5 Not for thy righteousness, or for the uprightness of thine heart,
+dost thou go to possess their land: but for the wickedness of these
+nations the LORD thy God doth drive them out from before thee, and
+that he may perform the word which the LORD sware unto thy fathers,
+Abraham, Isaac, and Jacob.
+
+9:6 Understand therefore, that the LORD thy God giveth thee not this
+good land to possess it for thy righteousness; for thou art a
+stiffnecked people.
+
+9:7 Remember, and forget not, how thou provokedst the LORD thy God to
+wrath in the wilderness: from the day that thou didst depart out of
+the land of Egypt, until ye came unto this place, ye have been
+rebellious against the LORD.
+
+9:8 Also in Horeb ye provoked the LORD to wrath, so that the LORD was
+angry with you to have destroyed you.
+
+9:9 When I was gone up into the mount to receive the tables of stone,
+even the tables of the covenant which the LORD made with you, then I
+abode in the mount forty days and forty nights, I neither did eat
+bread nor drink water: 9:10 And the LORD delivered unto me two tables
+of stone written with the finger of God; and on them was written
+according to all the words, which the LORD spake with you in the mount
+out of the midst of the fire in the day of the assembly.
+
+9:11 And it came to pass at the end of forty days and forty nights,
+that the LORD gave me the two tables of stone, even the tables of the
+covenant.
+
+9:12 And the LORD said unto me, Arise, get thee down quickly from
+hence; for thy people which thou hast brought forth out of Egypt have
+corrupted themselves; they are quickly turned aside out of the way
+which I commanded them; they have made them a molten image.
+
+9:13 Furthermore the LORD spake unto me, saying, I have seen this
+people, and, behold, it is a stiffnecked people: 9:14 Let me alone,
+that I may destroy them, and blot out their name from under heaven:
+and I will make of thee a nation mightier and greater than they.
+
+9:15 So I turned and came down from the mount, and the mount burned
+with fire: and the two tables of the covenant were in my two hands.
+
+9:16 And I looked, and, behold, ye had sinned against the LORD your
+God, and had made you a molten calf: ye had turned aside quickly out
+of the way which the LORD had commanded you.
+
+9:17 And I took the two tables, and cast them out of my two hands, and
+brake them before your eyes.
+
+9:18 And I fell down before the LORD, as at the first, forty days and
+forty nights: I did neither eat bread, nor drink water, because of all
+your sins which ye sinned, in doing wickedly in the sight of the LORD,
+to provoke him to anger.
+
+9:19 For I was afraid of the anger and hot displeasure, wherewith the
+LORD was wroth against you to destroy you. But the LORD hearkened unto
+me at that time also.
+
+9:20 And the LORD was very angry with Aaron to have destroyed him: and
+I prayed for Aaron also the same time.
+
+9:21 And I took your sin, the calf which ye had made, and burnt it
+with fire, and stamped it, and ground it very small, even until it was
+as small as dust: and I cast the dust thereof into the brook that
+descended out of the mount.
+
+9:22 And at Taberah, and at Massah, and at Kibrothhattaavah, ye
+provoked the LORD to wrath.
+
+9:23 Likewise when the LORD sent you from Kadeshbarnea, saying, Go up
+and possess the land which I have given you; then ye rebelled against
+the commandment of the LORD your God, and ye believed him not, nor
+hearkened to his voice.
+
+9:24 Ye have been rebellious against the LORD from the day that I knew
+you.
+
+9:25 Thus I fell down before the LORD forty days and forty nights, as
+I fell down at the first; because the LORD had said he would destroy
+you.
+
+9:26 I prayed therefore unto the LORD, and said, O Lord GOD, destroy
+not thy people and thine inheritance, which thou hast redeemed through
+thy greatness, which thou hast brought forth out of Egypt with a
+mighty hand.
+
+9:27 Remember thy servants, Abraham, Isaac, and Jacob; look not unto
+the stubbornness of this people, nor to their wickedness, nor to their
+sin: 9:28 Lest the land whence thou broughtest us out say, Because the
+LORD was not able to bring them into the land which he promised them,
+and because he hated them, he hath brought them out to slay them in
+the wilderness.
+
+9:29 Yet they are thy people and thine inheritance, which thou
+broughtest out by thy mighty power and by thy stretched out arm.
+
+10:1 At that time the LORD said unto me, Hew thee two tables of stone
+like unto the first, and come up unto me into the mount, and make thee
+an ark of wood.
+
+10:2 And I will write on the tables the words that were in the first
+tables which thou brakest, and thou shalt put them in the ark.
+
+10:3 And I made an ark of shittim wood, and hewed two tables of stone
+like unto the first, and went up into the mount, having the two tables
+in mine hand.
+
+10:4 And he wrote on the tables, according to the first writing, the
+ten commandments, which the LORD spake unto you in the mount out of
+the midst of the fire in the day of the assembly: and the LORD gave
+them unto me.
+
+10:5 And I turned myself and came down from the mount, and put the
+tables in the ark which I had made; and there they be, as the LORD
+commanded me.
+
+10:6 And the children of Israel took their journey from Beeroth of the
+children of Jaakan to Mosera: there Aaron died, and there he was
+buried; and Eleazar his son ministered in the priest's office in his
+stead.
+
+10:7 From thence they journeyed unto Gudgodah; and from Gudgodah to
+Jotbath, a land of rivers of waters.
+
+10:8 At that time the LORD separated the tribe of Levi, to bear the
+ark of the covenant of the LORD, to stand before the LORD to minister
+unto him, and to bless in his name, unto this day.
+
+10:9 Wherefore Levi hath no part nor inheritance with his brethren;
+the LORD is his inheritance, according as the LORD thy God promised
+him.
+
+10:10 And I stayed in the mount, according to the first time, forty
+days and forty nights; and the LORD hearkened unto me at that time
+also, and the LORD would not destroy thee.
+
+10:11 And the LORD said unto me, Arise, take thy journey before the
+people, that they may go in and possess the land, which I sware unto
+their fathers to give unto them.
+
+10:12 And now, Israel, what doth the LORD thy God require of thee, but
+to fear the LORD thy God, to walk in all his ways, and to love him,
+and to serve the LORD thy God with all thy heart and with all thy
+soul, 10:13 To keep the commandments of the LORD, and his statutes,
+which I command thee this day for thy good? 10:14 Behold, the heaven
+and the heaven of heavens is the LORD's thy God, the earth also, with
+all that therein is.
+
+10:15 Only the LORD had a delight in thy fathers to love them, and he
+chose their seed after them, even you above all people, as it is this
+day.
+
+10:16 Circumcise therefore the foreskin of your heart, and be no more
+stiffnecked.
+
+10:17 For the LORD your God is God of gods, and Lord of lords, a great
+God, a mighty, and a terrible, which regardeth not persons, nor taketh
+reward: 10:18 He doth execute the judgment of the fatherless and
+widow, and loveth the stranger, in giving him food and raiment.
+
+10:19 Love ye therefore the stranger: for ye were strangers in the
+land of Egypt.
+
+10:20 Thou shalt fear the LORD thy God; him shalt thou serve, and to
+him shalt thou cleave, and swear by his name.
+
+10:21 He is thy praise, and he is thy God, that hath done for thee
+these great and terrible things, which thine eyes have seen.
+
+10:22 Thy fathers went down into Egypt with threescore and ten
+persons; and now the LORD thy God hath made thee as the stars of
+heaven for multitude.
+
+11:1 Therefore thou shalt love the LORD thy God, and keep his charge,
+and his statutes, and his judgments, and his commandments, alway.
+
+11:2 And know ye this day: for I speak not with your children which
+have not known, and which have not seen the chastisement of the LORD
+your God, his greatness, his mighty hand, and his stretched out arm,
+11:3 And his miracles, and his acts, which he did in the midst of
+Egypt unto Pharaoh the king of Egypt, and unto all his land; 11:4 And
+what he did unto the army of Egypt, unto their horses, and to their
+chariots; how he made the water of the Red sea to overflow them as
+they pursued after you, and how the LORD hath destroyed them unto this
+day; 11:5 And what he did unto you in the wilderness, until ye came
+into this place; 11:6 And what he did unto Dathan and Abiram, the sons
+of Eliab, the son of Reuben: how the earth opened her mouth, and
+swallowed them up, and their households, and their tents, and all the
+substance that was in their possession, in the midst of all Israel:
+11:7 But your eyes have seen all the great acts of the LORD which he
+did.
+
+11:8 Therefore shall ye keep all the commandments which I command you
+this day, that ye may be strong, and go in and possess the land,
+whither ye go to possess it; 11:9 And that ye may prolong your days in
+the land, which the LORD sware unto your fathers to give unto them and
+to their seed, a land that floweth with milk and honey.
+
+11:10 For the land, whither thou goest in to possess it, is not as the
+land of Egypt, from whence ye came out, where thou sowedst thy seed,
+and wateredst it with thy foot, as a garden of herbs: 11:11 But the
+land, whither ye go to possess it, is a land of hills and valleys, and
+drinketh water of the rain of heaven: 11:12 A land which the LORD thy
+God careth for: the eyes of the LORD thy God are always upon it, from
+the beginning of the year even unto the end of the year.
+
+11:13 And it shall come to pass, if ye shall hearken diligently unto
+my commandments which I command you this day, to love the LORD your
+God, and to serve him with all your heart and with all your soul,
+11:14 That I will give you the rain of your land in his due season,
+the first rain and the latter rain, that thou mayest gather in thy
+corn, and thy wine, and thine oil.
+
+11:15 And I will send grass in thy fields for thy cattle, that thou
+mayest eat and be full.
+
+11:16 Take heed to yourselves, that your heart be not deceived, and ye
+turn aside, and serve other gods, and worship them; 11:17 And then the
+LORD's wrath be kindled against you, and he shut up the heaven, that
+there be no rain, and that the land yield not her fruit; and lest ye
+perish quickly from off the good land which the LORD giveth you.
+
+11:18 Therefore shall ye lay up these my words in your heart and in
+your soul, and bind them for a sign upon your hand, that they may be
+as frontlets between your eyes.
+
+11:19 And ye shall teach them your children, speaking of them when
+thou sittest in thine house, and when thou walkest by the way, when
+thou liest down, and when thou risest up.
+
+11:20 And thou shalt write them upon the door posts of thine house,
+and upon thy gates: 11:21 That your days may be multiplied, and the
+days of your children, in the land which the LORD sware unto your
+fathers to give them, as the days of heaven upon the earth.
+
+11:22 For if ye shall diligently keep all these commandments which I
+command you, to do them, to love the LORD your God, to walk in all his
+ways, and to cleave unto him; 11:23 Then will the LORD drive out all
+these nations from before you, and ye shall possess greater nations
+and mightier than yourselves.
+
+11:24 Every place whereon the soles of your feet shall tread shall be
+yours: from the wilderness and Lebanon, from the river, the river
+Euphrates, even unto the uttermost sea shall your coast be.
+
+11:25 There shall no man be able to stand before you: for the LORD
+your God shall lay the fear of you and the dread of you upon all the
+land that ye shall tread upon, as he hath said unto you.
+
+11:26 Behold, I set before you this day a blessing and a curse; 11:27
+A blessing, if ye obey the commandments of the LORD your God, which I
+command you this day: 11:28 And a curse, if ye will not obey the
+commandments of the LORD your God, but turn aside out of the way which
+I command you this day, to go after other gods, which ye have not
+known.
+
+11:29 And it shall come to pass, when the LORD thy God hath brought
+thee in unto the land whither thou goest to possess it, that thou
+shalt put the blessing upon mount Gerizim, and the curse upon mount
+Ebal.
+
+11:30 Are they not on the other side Jordan, by the way where the sun
+goeth down, in the land of the Canaanites, which dwell in the
+champaign over against Gilgal, beside the plains of Moreh? 11:31 For
+ye shall pass over Jordan to go in to possess the land which the LORD
+your God giveth you, and ye shall possess it, and dwell therein.
+
+11:32 And ye shall observe to do all the statutes and judgments which
+I set before you this day.
+
+12:1 These are the statutes and judgments, which ye shall observe to
+do in the land, which the LORD God of thy fathers giveth thee to
+possess it, all the days that ye live upon the earth.
+
+12:2 Ye shall utterly destroy all the places, wherein the nations
+which ye shall possess served their gods, upon the high mountains, and
+upon the hills, and under every green tree: 12:3 And ye shall
+overthrow their altars, and break their pillars, and burn their groves
+with fire; and ye shall hew down the graven images of their gods, and
+destroy the names of them out of that place.
+
+12:4 Ye shall not do so unto the LORD your God.
+
+12:5 But unto the place which the LORD your God shall choose out of
+all your tribes to put his name there, even unto his habitation shall
+ye seek, and thither thou shalt come: 12:6 And thither ye shall bring
+your burnt offerings, and your sacrifices, and your tithes, and heave
+offerings of your hand, and your vows, and your freewill offerings,
+and the firstlings of your herds and of your flocks: 12:7 And there ye
+shall eat before the LORD your God, and ye shall rejoice in all that
+ye put your hand unto, ye and your households, wherein the LORD thy
+God hath blessed thee.
+
+12:8 Ye shall not do after all the things that we do here this day,
+every man whatsoever is right in his own eyes.
+
+12:9 For ye are not as yet come to the rest and to the inheritance,
+which the LORD your God giveth you.
+
+12:10 But when ye go over Jordan, and dwell in the land which the LORD
+your God giveth you to inherit, and when he giveth you rest from all
+your enemies round about, so that ye dwell in safety; 12:11 Then there
+shall be a place which the LORD your God shall choose to cause his
+name to dwell there; thither shall ye bring all that I command you;
+your burnt offerings, and your sacrifices, your tithes, and the heave
+offering of your hand, and all your choice vows which ye vow unto the
+LORD: 12:12 And ye shall rejoice before the LORD your God, ye, and
+your sons, and your daughters, and your menservants, and your
+maidservants, and the Levite that is within your gates; forasmuch as
+he hath no part nor inheritance with you.
+
+12:13 Take heed to thyself that thou offer not thy burnt offerings in
+every place that thou seest: 12:14 But in the place which the LORD
+shall choose in one of thy tribes, there thou shalt offer thy burnt
+offerings, and there thou shalt do all that I command thee.
+
+12:15 Notwithstanding thou mayest kill and eat flesh in all thy gates,
+whatsoever thy soul lusteth after, according to the blessing of the
+LORD thy God which he hath given thee: the unclean and the clean may
+eat thereof, as of the roebuck, and as of the hart.
+
+12:16 Only ye shall not eat the blood; ye shall pour it upon the earth
+as water.
+
+12:17 Thou mayest not eat within thy gates the tithe of thy corn, or
+of thy wine, or of thy oil, or the firstlings of thy herds or of thy
+flock, nor any of thy vows which thou vowest, nor thy freewill
+offerings, or heave offering of thine hand: 12:18 But thou must eat
+them before the LORD thy God in the place which the LORD thy God shall
+choose, thou, and thy son, and thy daughter, and thy manservant, and
+thy maidservant, and the Levite that is within thy gates: and thou
+shalt rejoice before the LORD thy God in all that thou puttest thine
+hands unto.
+
+12:19 Take heed to thyself that thou forsake not the Levite as long as
+thou livest upon the earth.
+
+12:20 When the LORD thy God shall enlarge thy border, as he hath
+promised thee, and thou shalt say, I will eat flesh, because thy soul
+longeth to eat flesh; thou mayest eat flesh, whatsoever thy soul
+lusteth after.
+
+12:21 If the place which the LORD thy God hath chosen to put his name
+there be too far from thee, then thou shalt kill of thy herd and of
+thy flock, which the LORD hath given thee, as I have commanded thee,
+and thou shalt eat in thy gates whatsoever thy soul lusteth after.
+
+12:22 Even as the roebuck and the hart is eaten, so thou shalt eat
+them: the unclean and the clean shall eat of them alike.
+
+12:23 Only be sure that thou eat not the blood: for the blood is the
+life; and thou mayest not eat the life with the flesh.
+
+12:24 Thou shalt not eat it; thou shalt pour it upon the earth as
+water.
+
+12:25 Thou shalt not eat it; that it may go well with thee, and with
+thy children after thee, when thou shalt do that which is right in the
+sight of the LORD.
+
+12:26 Only thy holy things which thou hast, and thy vows, thou shalt
+take, and go unto the place which the LORD shall choose: 12:27 And
+thou shalt offer thy burnt offerings, the flesh and the blood, upon
+the altar of the LORD thy God: and the blood of thy sacrifices shall
+be poured out upon the altar of the LORD thy God, and thou shalt eat
+the flesh.
+
+12:28 Observe and hear all these words which I command thee, that it
+may go well with thee, and with thy children after thee for ever, when
+thou doest that which is good and right in the sight of the LORD thy
+God.
+
+12:29 When the LORD thy God shall cut off the nations from before
+thee, whither thou goest to possess them, and thou succeedest them,
+and dwellest in their land; 12:30 Take heed to thyself that thou be
+not snared by following them, after that they be destroyed from before
+thee; and that thou enquire not after their gods, saying, How did
+these nations serve their gods? even so will I do likewise.
+
+12:31 Thou shalt not do so unto the LORD thy God: for every
+abomination to the LORD, which he hateth, have they done unto their
+gods; for even their sons and their daughters they have burnt in the
+fire to their gods.
+
+12:32 What thing soever I command you, observe to do it: thou shalt
+not add thereto, nor diminish from it.
+
+13:1 If there arise among you a prophet, or a dreamer of dreams, and
+giveth thee a sign or a wonder, 13:2 And the sign or the wonder come
+to pass, whereof he spake unto thee, saying, Let us go after other
+gods, which thou hast not known, and let us serve them; 13:3 Thou
+shalt not hearken unto the words of that prophet, or that dreamer of
+dreams: for the LORD your God proveth you, to know whether ye love the
+LORD your God with all your heart and with all your soul.
+
+13:4 Ye shall walk after the LORD your God, and fear him, and keep his
+commandments, and obey his voice, and ye shall serve him, and cleave
+unto him.
+
+13:5 And that prophet, or that dreamer of dreams, shall be put to
+death; because he hath spoken to turn you away from the LORD your God,
+which brought you out of the land of Egypt, and redeemed you out of
+the house of bondage, to thrust thee out of the way which the LORD thy
+God commanded thee to walk in. So shalt thou put the evil away from
+the midst of thee.
+
+13:6 If thy brother, the son of thy mother, or thy son, or thy
+daughter, or the wife of thy bosom, or thy friend, which is as thine
+own soul, entice thee secretly, saying, Let us go and serve other
+gods, which thou hast not known, thou, nor thy fathers; 13:7 Namely,
+of the gods of the people which are round about you, nigh unto thee,
+or far off from thee, from the one end of the earth even unto the
+other end of the earth; 13:8 Thou shalt not consent unto him, nor
+hearken unto him; neither shall thine eye pity him, neither shalt thou
+spare, neither shalt thou conceal him: 13:9 But thou shalt surely kill
+him; thine hand shall be first upon him to put him to death, and
+afterwards the hand of all the people.
+
+13:10 And thou shalt stone him with stones, that he die; because he
+hath sought to thrust thee away from the LORD thy God, which brought
+thee out of the land of Egypt, from the house of bondage.
+
+13:11 And all Israel shall hear, and fear, and shall do no more any
+such wickedness as this is among you.
+
+13:12 If thou shalt hear say in one of thy cities, which the LORD thy
+God hath given thee to dwell there, saying, 13:13 Certain men, the
+children of Belial, are gone out from among you, and have withdrawn
+the inhabitants of their city, saying, Let us go and serve other gods,
+which ye have not known; 13:14 Then shalt thou enquire, and make
+search, and ask diligently; and, behold, if it be truth, and the thing
+certain, that such abomination is wrought among you; 13:15 Thou shalt
+surely smite the inhabitants of that city with the edge of the sword,
+destroying it utterly, and all that is therein, and the cattle
+thereof, with the edge of the sword.
+
+13:16 And thou shalt gather all the spoil of it into the midst of the
+street thereof, and shalt burn with fire the city, and all the spoil
+thereof every whit, for the LORD thy God: and it shall be an heap for
+ever; it shall not be built again.
+
+13:17 And there shall cleave nought of the cursed thing to thine hand:
+that the LORD may turn from the fierceness of his anger, and shew thee
+mercy, and have compassion upon thee, and multiply thee, as he hath
+sworn unto thy fathers; 13:18 When thou shalt hearken to the voice of
+the LORD thy God, to keep all his commandments which I command thee
+this day, to do that which is right in the eyes of the LORD thy God.
+
+14:1 Ye are the children of the LORD your God: ye shall not cut
+yourselves, nor make any baldness between your eyes for the dead.
+
+14:2 For thou art an holy people unto the LORD thy God, and the LORD
+hath chosen thee to be a peculiar people unto himself, above all the
+nations that are upon the earth.
+
+14:3 Thou shalt not eat any abominable thing.
+
+14:4 These are the beasts which ye shall eat: the ox, the sheep, and
+the goat, 14:5 The hart, and the roebuck, and the fallow deer, and the
+wild goat, and the pygarg, and the wild ox, and the chamois.
+
+14:6 And every beast that parteth the hoof, and cleaveth the cleft
+into two claws, and cheweth the cud among the beasts, that ye shall
+eat.
+
+14:7 Nevertheless these ye shall not eat of them that chew the cud, or
+of them that divide the cloven hoof; as the camel, and the hare, and
+the coney: for they chew the cud, but divide not the hoof; therefore
+they are unclean unto you.
+
+14:8 And the swine, because it divideth the hoof, yet cheweth not the
+cud, it is unclean unto you: ye shall not eat of their flesh, nor
+touch their dead carcase.
+
+14:9 These ye shall eat of all that are in the waters: all that have
+fins and scales shall ye eat: 14:10 And whatsoever hath not fins and
+scales ye may not eat; it is unclean unto you.
+
+14:11 Of all clean birds ye shall eat.
+
+14:12 But these are they of which ye shall not eat: the eagle, and the
+ossifrage, and the ospray, 14:13 And the glede, and the kite, and the
+vulture after his kind, 14:14 And every raven after his kind, 14:15
+And the owl, and the night hawk, and the cuckow, and the hawk after
+his kind, 14:16 The little owl, and the great owl, and the swan, 14:17
+And the pelican, and the gier eagle, and the cormorant, 14:18 And the
+stork, and the heron after her kind, and the lapwing, and the bat.
+
+14:19 And every creeping thing that flieth is unclean unto you: they
+shall not be eaten.
+
+14:20 But of all clean fowls ye may eat.
+
+14:21 Ye shall not eat of anything that dieth of itself: thou shalt
+give it unto the stranger that is in thy gates, that he may eat it; or
+thou mayest sell it unto an alien: for thou art an holy people unto
+the LORD thy God.
+
+Thou shalt not seethe a kid in his mother's milk.
+
+14:22 Thou shalt truly tithe all the increase of thy seed, that the
+field bringeth forth year by year.
+
+14:23 And thou shalt eat before the LORD thy God, in the place which
+he shall choose to place his name there, the tithe of thy corn, of thy
+wine, and of thine oil, and the firstlings of thy herds and of thy
+flocks; that thou mayest learn to fear the LORD thy God always.
+
+14:24 And if the way be too long for thee, so that thou art not able
+to carry it; or if the place be too far from thee, which the LORD thy
+God shall choose to set his name there, when the LORD thy God hath
+blessed thee: 14:25 Then shalt thou turn it into money, and bind up
+the money in thine hand, and shalt go unto the place which the LORD
+thy God shall choose: 14:26 And thou shalt bestow that money for
+whatsoever thy soul lusteth after, for oxen, or for sheep, or for
+wine, or for strong drink, or for whatsoever thy soul desireth: and
+thou shalt eat there before the LORD thy God, and thou shalt rejoice,
+thou, and thine household, 14:27 And the Levite that is within thy
+gates; thou shalt not forsake him; for he hath no part nor inheritance
+with thee.
+
+14:28 At the end of three years thou shalt bring forth all the tithe
+of thine increase the same year, and shalt lay it up within thy gates:
+14:29 And the Levite, (because he hath no part nor inheritance with
+thee,) and the stranger, and the fatherless, and the widow, which are
+within thy gates, shall come, and shall eat and be satisfied; that the
+LORD thy God may bless thee in all the work of thine hand which thou
+doest.
+
+15:1 At the end of every seven years thou shalt make a release.
+
+15:2 And this is the manner of the release: Every creditor that
+lendeth ought unto his neighbour shall release it; he shall not exact
+it of his neighbour, or of his brother; because it is called the
+LORD's release.
+
+15:3 Of a foreigner thou mayest exact it again: but that which is
+thine with thy brother thine hand shall release; 15:4 Save when there
+shall be no poor among you; for the LORD shall greatly bless thee in
+the land which the LORD thy God giveth thee for an inheritance to
+possess it: 15:5 Only if thou carefully hearken unto the voice of the
+LORD thy God, to observe to do all these commandments which I command
+thee this day.
+
+15:6 For the LORD thy God blesseth thee, as he promised thee: and thou
+shalt lend unto many nations, but thou shalt not borrow; and thou
+shalt reign over many nations, but they shall not reign over thee.
+
+15:7 If there be among you a poor man of one of thy brethren within
+any of thy gates in thy land which the LORD thy God giveth thee, thou
+shalt not harden thine heart, nor shut thine hand from thy poor
+brother: 15:8 But thou shalt open thine hand wide unto him, and shalt
+surely lend him sufficient for his need, in that which he wanteth.
+
+15:9 Beware that there be not a thought in thy wicked heart, saying,
+The seventh year, the year of release, is at hand; and thine eye be
+evil against thy poor brother, and thou givest him nought; and he cry
+unto the LORD against thee, and it be sin unto thee.
+
+15:10 Thou shalt surely give him, and thine heart shall not be grieved
+when thou givest unto him: because that for this thing the LORD thy
+God shall bless thee in all thy works, and in all that thou puttest
+thine hand unto.
+
+15:11 For the poor shall never cease out of the land: therefore I
+command thee, saying, Thou shalt open thine hand wide unto thy
+brother, to thy poor, and to thy needy, in thy land.
+
+15:12 And if thy brother, an Hebrew man, or an Hebrew woman, be sold
+unto thee, and serve thee six years; then in the seventh year thou
+shalt let him go free from thee.
+
+15:13 And when thou sendest him out free from thee, thou shalt not let
+him go away empty: 15:14 Thou shalt furnish him liberally out of thy
+flock, and out of thy floor, and out of thy winepress: of that
+wherewith the LORD thy God hath blessed thee thou shalt give unto him.
+
+15:15 And thou shalt remember that thou wast a bondman in the land of
+Egypt, and the LORD thy God redeemed thee: therefore I command thee
+this thing to day.
+
+15:16 And it shall be, if he say unto thee, I will not go away from
+thee; because he loveth thee and thine house, because he is well with
+thee; 15:17 Then thou shalt take an aul, and thrust it through his ear
+unto the door, and he shall be thy servant for ever. And also unto thy
+maidservant thou shalt do likewise.
+
+15:18 It shall not seem hard unto thee, when thou sendest him away
+free from thee; for he hath been worth a double hired servant to thee,
+in serving thee six years: and the LORD thy God shall bless thee in
+all that thou doest.
+
+15:19 All the firstling males that come of thy herd and of thy flock
+thou shalt sanctify unto the LORD thy God: thou shalt do no work with
+the firstling of thy bullock, nor shear the firstling of thy sheep.
+
+15:20 Thou shalt eat it before the LORD thy God year by year in the
+place which the LORD shall choose, thou and thy household.
+
+15:21 And if there be any blemish therein, as if it be lame, or blind,
+or have any ill blemish, thou shalt not sacrifice it unto the LORD thy
+God.
+
+15:22 Thou shalt eat it within thy gates: the unclean and the clean
+person shall eat it alike, as the roebuck, and as the hart.
+
+15:23 Only thou shalt not eat the blood thereof; thou shalt pour it
+upon the ground as water.
+
+16:1 Observe the month of Abib, and keep the passover unto the LORD
+thy God: for in the month of Abib the LORD thy God brought thee forth
+out of Egypt by night.
+
+16:2 Thou shalt therefore sacrifice the passover unto the LORD thy
+God, of the flock and the herd, in the place which the LORD shall
+choose to place his name there.
+
+16:3 Thou shalt eat no leavened bread with it; seven days shalt thou
+eat unleavened bread therewith, even the bread of affliction; for thou
+camest forth out of the land of Egypt in haste: that thou mayest
+remember the day when thou camest forth out of the land of Egypt all
+the days of thy life.
+
+16:4 And there shall be no leavened bread seen with thee in all thy
+coast seven days; neither shall there any thing of the flesh, which
+thou sacrificedst the first day at even, remain all night until the
+morning.
+
+16:5 Thou mayest not sacrifice the passover within any of thy gates,
+which the LORD thy God giveth thee: 16:6 But at the place which the
+LORD thy God shall choose to place his name in, there thou shalt
+sacrifice the passover at even, at the going down of the sun, at the
+season that thou camest forth out of Egypt.
+
+16:7 And thou shalt roast and eat it in the place which the LORD thy
+God shall choose: and thou shalt turn in the morning, and go unto thy
+tents.
+
+16:8 Six days thou shalt eat unleavened bread: and on the seventh day
+shall be a solemn assembly to the LORD thy God: thou shalt do no work
+therein.
+
+16:9 Seven weeks shalt thou number unto thee: begin to number the
+seven weeks from such time as thou beginnest to put the sickle to the
+corn.
+
+16:10 And thou shalt keep the feast of weeks unto the LORD thy God
+with a tribute of a freewill offering of thine hand, which thou shalt
+give unto the LORD thy God, according as the LORD thy God hath blessed
+thee: 16:11 And thou shalt rejoice before the LORD thy God, thou, and
+thy son, and thy daughter, and thy manservant, and thy maidservant,
+and the Levite that is within thy gates, and the stranger, and the
+fatherless, and the widow, that are among you, in the place which the
+LORD thy God hath chosen to place his name there.
+
+16:12 And thou shalt remember that thou wast a bondman in Egypt: and
+thou shalt observe and do these statutes.
+
+16:13 Thou shalt observe the feast of tabernacles seven days, after
+that thou hast gathered in thy corn and thy wine: 16:14 And thou shalt
+rejoice in thy feast, thou, and thy son, and thy daughter, and thy
+manservant, and thy maidservant, and the Levite, the stranger, and the
+fatherless, and the widow, that are within thy gates.
+
+16:15 Seven days shalt thou keep a solemn feast unto the LORD thy God
+in the place which the LORD shall choose: because the LORD thy God
+shall bless thee in all thine increase, and in all the works of thine
+hands, therefore thou shalt surely rejoice.
+
+16:16 Three times in a year shall all thy males appear before the LORD
+thy God in the place which he shall choose; in the feast of unleavened
+bread, and in the feast of weeks, and in the feast of tabernacles: and
+they shall not appear before the LORD empty: 16:17 Every man shall
+give as he is able, according to the blessing of the LORD thy God
+which he hath given thee.
+
+16:18 Judges and officers shalt thou make thee in all thy gates, which
+the LORD thy God giveth thee, throughout thy tribes: and they shall
+judge the people with just judgment.
+
+16:19 Thou shalt not wrest judgment; thou shalt not respect persons,
+neither take a gift: for a gift doth blind the eyes of the wise, and
+pervert the words of the righteous.
+
+16:20 That which is altogether just shalt thou follow, that thou
+mayest live, and inherit the land which the LORD thy God giveth thee.
+
+16:21 Thou shalt not plant thee a grove of any trees near unto the
+altar of the LORD thy God, which thou shalt make thee.
+
+16:22 Neither shalt thou set thee up any image; which the LORD thy God
+hateth.
+
+17:1 Thou shalt not sacrifice unto the LORD thy God any bullock, or
+sheep, wherein is blemish, or any evilfavouredness: for that is an
+abomination unto the LORD thy God.
+
+17:2 If there be found among you, within any of thy gates which the
+LORD thy God giveth thee, man or woman, that hath wrought wickedness
+in the sight of the LORD thy God, in transgressing his covenant, 17:3
+And hath gone and served other gods, and worshipped them, either the
+sun, or moon, or any of the host of heaven, which I have not
+commanded; 17:4 And it be told thee, and thou hast heard of it, and
+enquired diligently, and, behold, it be true, and the thing certain,
+that such abomination is wrought in Israel: 17:5 Then shalt thou bring
+forth that man or that woman, which have committed that wicked thing,
+unto thy gates, even that man or that woman, and shalt stone them with
+stones, till they die.
+
+17:6 At the mouth of two witnesses, or three witnesses, shall he that
+is worthy of death be put to death; but at the mouth of one witness he
+shall not be put to death.
+
+17:7 The hands of the witnesses shall be first upon him to put him to
+death, and afterward the hands of all the people. So thou shalt put
+the evil away from among you.
+
+17:8 If there arise a matter too hard for thee in judgment, between
+blood and blood, between plea and plea, and between stroke and stroke,
+being matters of controversy within thy gates: then shalt thou arise,
+and get thee up into the place which the LORD thy God shall choose;
+17:9 And thou shalt come unto the priests the Levites, and unto the
+judge that shall be in those days, and enquire; and they shall shew
+thee the sentence of judgment: 17:10 And thou shalt do according to
+the sentence, which they of that place which the LORD shall choose
+shall shew thee; and thou shalt observe to do according to all that
+they inform thee: 17:11 According to the sentence of the law which
+they shall teach thee, and according to the judgment which they shall
+tell thee, thou shalt do: thou shalt not decline from the sentence
+which they shall shew thee, to the right hand, nor to the left.
+
+17:12 And the man that will do presumptuously, and will not hearken
+unto the priest that standeth to minister there before the LORD thy
+God, or unto the judge, even that man shall die: and thou shalt put
+away the evil from Israel.
+
+17:13 And all the people shall hear, and fear, and do no more
+presumptuously.
+
+17:14 When thou art come unto the land which the LORD thy God giveth
+thee, and shalt possess it, and shalt dwell therein, and shalt say, I
+will set a king over me, like as all the nations that are about me;
+17:15 Thou shalt in any wise set him king over thee, whom the LORD thy
+God shall choose: one from among thy brethren shalt thou set king over
+thee: thou mayest not set a stranger over thee, which is not thy
+brother.
+
+17:16 But he shall not multiply horses to himself, nor cause the
+people to return to Egypt, to the end that he should multiply horses:
+forasmuch as the LORD hath said unto you, Ye shall henceforth return
+no more that way.
+
+17:17 Neither shall he multiply wives to himself, that his heart turn
+not away: neither shall he greatly multiply to himself silver and
+gold.
+
+17:18 And it shall be, when he sitteth upon the throne of his kingdom,
+that he shall write him a copy of this law in a book out of that which
+is before the priests the Levites: 17:19 And it shall be with him, and
+he shall read therein all the days of his life: that he may learn to
+fear the LORD his God, to keep all the words of this law and these
+statutes, to do them: 17:20 That his heart be not lifted up above his
+brethren, and that he turn not aside from the commandment, to the
+right hand, or to the left: to the end that he may prolong his days in
+his kingdom, he, and his children, in the midst of Israel.
+
+18:1 The priests the Levites, and all the tribe of Levi, shall have no
+part nor inheritance with Israel: they shall eat the offerings of the
+LORD made by fire, and his inheritance.
+
+18:2 Therefore shall they have no inheritance among their brethren:
+the LORD is their inheritance, as he hath said unto them.
+
+18:3 And this shall be the priest's due from the people, from them
+that offer a sacrifice, whether it be ox or sheep; and they shall give
+unto the priest the shoulder, and the two cheeks, and the maw.
+
+18:4 The firstfruit also of thy corn, of thy wine, and of thine oil,
+and the first of the fleece of thy sheep, shalt thou give him.
+
+18:5 For the LORD thy God hath chosen him out of all thy tribes, to
+stand to minister in the name of the LORD, him and his sons for ever.
+
+18:6 And if a Levite come from any of thy gates out of all Israel,
+where he sojourned, and come with all the desire of his mind unto the
+place which the LORD shall choose; 18:7 Then he shall minister in the
+name of the LORD his God, as all his brethren the Levites do, which
+stand there before the LORD.
+
+18:8 They shall have like portions to eat, beside that which cometh of
+the sale of his patrimony.
+
+18:9 When thou art come into the land which the LORD thy God giveth
+thee, thou shalt not learn to do after the abominations of those
+nations.
+
+18:10 There shall not be found among you any one that maketh his son
+or his daughter to pass through the fire, or that useth divination, or
+an observer of times, or an enchanter, or a witch.
+
+18:11 Or a charmer, or a consulter with familiar spirits, or a wizard,
+or a necromancer.
+
+18:12 For all that do these things are an abomination unto the LORD:
+and because of these abominations the LORD thy God doth drive them out
+from before thee.
+
+18:13 Thou shalt be perfect with the LORD thy God.
+
+18:14 For these nations, which thou shalt possess, hearkened unto
+observers of times, and unto diviners: but as for thee, the LORD thy
+God hath not suffered thee so to do.
+
+18:15 The LORD thy God will raise up unto thee a Prophet from the
+midst of thee, of thy brethren, like unto me; unto him ye shall
+hearken; 18:16 According to all that thou desiredst of the LORD thy
+God in Horeb in the day of the assembly, saying, Let me not hear again
+the voice of the LORD my God, neither let me see this great fire any
+more, that I die not.
+
+18:17 And the LORD said unto me, They have well spoken that which they
+have spoken.
+
+18:18 I will raise them up a Prophet from among their brethren, like
+unto thee, and will put my words in his mouth; and he shall speak unto
+them all that I shall command him.
+
+18:19 And it shall come to pass, that whosoever will not hearken unto
+my words which he shall speak in my name, I will require it of him.
+
+18:20 But the prophet, which shall presume to speak a word in my name,
+which I have not commanded him to speak, or that shall speak in the
+name of other gods, even that prophet shall die.
+
+18:21 And if thou say in thine heart, How shall we know the word which
+the LORD hath not spoken? 18:22 When a prophet speaketh in the name
+of the LORD, if the thing follow not, nor come to pass, that is the
+thing which the LORD hath not spoken, but the prophet hath spoken it
+presumptuously: thou shalt not be afraid of him.
+
+19:1 When the LORD thy God hath cut off the nations, whose land the
+LORD thy God giveth thee, and thou succeedest them, and dwellest in
+their cities, and in their houses; 19:2 Thou shalt separate three
+cities for thee in the midst of thy land, which the LORD thy God
+giveth thee to possess it.
+
+19:3 Thou shalt prepare thee a way, and divide the coasts of thy land,
+which the LORD thy God giveth thee to inherit, into three parts, that
+every slayer may flee thither.
+
+19:4 And this is the case of the slayer, which shall flee thither,
+that he may live: Whoso killeth his neighbour ignorantly, whom he
+hated not in time past; 19:5 As when a man goeth into the wood with
+his neighbour to hew wood, and his hand fetcheth a stroke with the axe
+to cut down the tree, and the head slippeth from the helve, and
+lighteth upon his neighbour, that he die; he shall flee unto one of
+those cities, and live: 19:6 Lest the avenger of the blood pursue the
+slayer, while his heart is hot, and overtake him, because the way is
+long, and slay him; whereas he was not worthy of death, inasmuch as he
+hated him not in time past.
+
+19:7 Wherefore I command thee, saying, Thou shalt separate three
+cities for thee.
+
+19:8 And if the LORD thy God enlarge thy coast, as he hath sworn unto
+thy fathers, and give thee all the land which he promised to give unto
+thy fathers; 19:9 If thou shalt keep all these commandments to do
+them, which I command thee this day, to love the LORD thy God, and to
+walk ever in his ways; then shalt thou add three cities more for thee,
+beside these three: 19:10 That innocent blood be not shed in thy land,
+which the LORD thy God giveth thee for an inheritance, and so blood be
+upon thee.
+
+19:11 But if any man hate his neighbour, and lie in wait for him, and
+rise up against him, and smite him mortally that he die, and fleeth
+into one of these cities: 19:12 Then the elders of his city shall send
+and fetch him thence, and deliver him into the hand of the avenger of
+blood, that he may die.
+
+19:13 Thine eye shall not pity him, but thou shalt put away the guilt
+of innocent blood from Israel, that it may go well with thee.
+
+19:14 Thou shalt not remove thy neighbour's landmark, which they of
+old time have set in thine inheritance, which thou shalt inherit in
+the land that the LORD thy God giveth thee to possess it.
+
+19:15 One witness shall not rise up against a man for any iniquity, or
+for any sin, in any sin that he sinneth: at the mouth of two
+witnesses, or at the mouth of three witnesses, shall the matter be
+established.
+
+19:16 If a false witness rise up against any man to testify against
+him that which is wrong; 19:17 Then both the men, between whom the
+controversy is, shall stand before the LORD, before the priests and
+the judges, which shall be in those days; 19:18 And the judges shall
+make diligent inquisition: and, behold, if the witness be a false
+witness, and hath testified falsely against his brother; 19:19 Then
+shall ye do unto him, as he had thought to have done unto his brother:
+so shalt thou put the evil away from among you.
+
+19:20 And those which remain shall hear, and fear, and shall
+henceforth commit no more any such evil among you.
+
+19:21 And thine eye shall not pity; but life shall go for life, eye
+for eye, tooth for tooth, hand for hand, foot for foot.
+
+20:1 When thou goest out to battle against thine enemies, and seest
+horses, and chariots, and a people more than thou, be not afraid of
+them: for the LORD thy God is with thee, which brought thee up out of
+the land of Egypt.
+
+20:2 And it shall be, when ye are come nigh unto the battle, that the
+priest shall approach and speak unto the people, 20:3 And shall say
+unto them, Hear, O Israel, ye approach this day unto battle against
+your enemies: let not your hearts faint, fear not, and do not tremble,
+neither be ye terrified because of them; 20:4 For the LORD your God is
+he that goeth with you, to fight for you against your enemies, to save
+you.
+
+20:5 And the officers shall speak unto the people, saying, What man is
+there that hath built a new house, and hath not dedicated it? let him
+go and return to his house, lest he die in the battle, and another man
+dedicate it.
+
+20:6 And what man is he that hath planted a vineyard, and hath not yet
+eaten of it? let him also go and return unto his house, lest he die in
+the battle, and another man eat of it.
+
+20:7 And what man is there that hath betrothed a wife, and hath not
+taken her? let him go and return unto his house, lest he die in the
+battle, and another man take her.
+
+20:8 And the officers shall speak further unto the people, and they
+shall say, What man is there that is fearful and fainthearted? let him
+go and return unto his house, lest his brethren's heart faint as well
+as his heart.
+
+20:9 And it shall be, when the officers have made an end of speaking
+unto the people that they shall make captains of the armies to lead
+the people.
+
+20:10 When thou comest nigh unto a city to fight against it, then
+proclaim peace unto it.
+
+20:11 And it shall be, if it make thee answer of peace, and open unto
+thee, then it shall be, that all the people that is found therein
+shall be tributaries unto thee, and they shall serve thee.
+
+20:12 And if it will make no peace with thee, but will make war
+against thee, then thou shalt besiege it: 20:13 And when the LORD thy
+God hath delivered it into thine hands, thou shalt smite every male
+thereof with the edge of the sword: 20:14 But the women, and the
+little ones, and the cattle, and all that is in the city, even all the
+spoil thereof, shalt thou take unto thyself; and thou shalt eat the
+spoil of thine enemies, which the LORD thy God hath given thee.
+
+20:15 Thus shalt thou do unto all the cities which are very far off
+from thee, which are not of the cities of these nations.
+
+20:16 But of the cities of these people, which the LORD thy God doth
+give thee for an inheritance, thou shalt save alive nothing that
+breatheth: 20:17 But thou shalt utterly destroy them; namely, the
+Hittites, and the Amorites, the Canaanites, and the Perizzites, the
+Hivites, and the Jebusites; as the LORD thy God hath commanded thee:
+20:18 That they teach you not to do after all their abominations,
+which they have done unto their gods; so should ye sin against the
+LORD your God.
+
+20:19 When thou shalt besiege a city a long time, in making war
+against it to take it, thou shalt not destroy the trees thereof by
+forcing an axe against them: for thou mayest eat of them, and thou
+shalt not cut them down (for the tree of the field is man's life) to
+employ them in the siege: 20:20 Only the trees which thou knowest that
+they be not trees for meat, thou shalt destroy and cut them down; and
+thou shalt build bulwarks against the city that maketh war with thee,
+until it be subdued.
+
+21:1 If one be found slain in the land which the LORD thy God giveth
+thee to possess it, lying in the field, and it be not known who hath
+slain him: 21:2 Then thy elders and thy judges shall come forth, and
+they shall measure unto the cities which are round about him that is
+slain: 21:3 And it shall be, that the city which is next unto the
+slain man, even the elders of that city shall take an heifer, which
+hath not been wrought with, and which hath not drawn in the yoke; 21:4
+And the elders of that city shall bring down the heifer unto a rough
+valley, which is neither eared nor sown, and shall strike off the
+heifer's neck there in the valley: 21:5 And the priests the sons of
+Levi shall come near; for them the LORD thy God hath chosen to
+minister unto him, and to bless in the name of the LORD; and by their
+word shall every controversy and every stroke be tried: 21:6 And all
+the elders of that city, that are next unto the slain man, shall wash
+their hands over the heifer that is beheaded in the valley: 21:7 And
+they shall answer and say, Our hands have not shed this blood, neither
+have our eyes seen it.
+
+21:8 Be merciful, O LORD, unto thy people Israel, whom thou hast
+redeemed, and lay not innocent blood unto thy people of Israel's
+charge. And the blood shall be forgiven them.
+
+21:9 So shalt thou put away the guilt of innocent blood from among
+you, when thou shalt do that which is right in the sight of the LORD.
+
+21:10 When thou goest forth to war against thine enemies, and the LORD
+thy God hath delivered them into thine hands, and thou hast taken them
+captive, 21:11 And seest among the captives a beautiful woman, and
+hast a desire unto her, that thou wouldest have her to thy wife; 21:12
+Then thou shalt bring her home to thine house, and she shall shave her
+head, and pare her nails; 21:13 And she shall put the raiment of her
+captivity from off her, and shall remain in thine house, and bewail
+her father and her mother a full month: and after that thou shalt go
+in unto her, and be her husband, and she shall be thy wife.
+
+21:14 And it shall be, if thou have no delight in her, then thou shalt
+let her go whither she will; but thou shalt not sell her at all for
+money, thou shalt not make merchandise of her, because thou hast
+humbled her.
+
+21:15 If a man have two wives, one beloved, and another hated, and
+they have born him children, both the beloved and the hated; and if
+the firstborn son be hers that was hated: 21:16 Then it shall be, when
+he maketh his sons to inherit that which he hath, that he may not make
+the son of the beloved firstborn before the son of the hated, which is
+indeed the firstborn: 21:17 But he shall acknowledge the son of the
+hated for the firstborn, by giving him a double portion of all that he
+hath: for he is the beginning of his strength; the right of the
+firstborn is his.
+
+21:18 If a man have a stubborn and rebellious son, which will not obey
+the voice of his father, or the voice of his mother, and that, when
+they have chastened him, will not hearken unto them: 21:19 Then shall
+his father and his mother lay hold on him, and bring him out unto the
+elders of his city, and unto the gate of his place; 21:20 And they
+shall say unto the elders of his city, This our son is stubborn and
+rebellious, he will not obey our voice; he is a glutton, and a
+drunkard.
+
+21:21 And all the men of his city shall stone him with stones, that he
+die: so shalt thou put evil away from among you; and all Israel shall
+hear, and fear.
+
+21:22 And if a man have committed a sin worthy of death, and he be to
+be put to death, and thou hang him on a tree: 21:23 His body shall not
+remain all night upon the tree, but thou shalt in any wise bury him
+that day; (for he that is hanged is accursed of God;) that thy land be
+not defiled, which the LORD thy God giveth thee for an inheritance.
+
+22:1 Thou shalt not see thy brother's ox or his sheep go astray, and
+hide thyself from them: thou shalt in any case bring them again unto
+thy brother.
+
+22:2 And if thy brother be not nigh unto thee, or if thou know him
+not, then thou shalt bring it unto thine own house, and it shall be
+with thee until thy brother seek after it, and thou shalt restore it
+to him again.
+
+22:3 In like manner shalt thou do with his ass; and so shalt thou do
+with his raiment; and with all lost thing of thy brother's, which he
+hath lost, and thou hast found, shalt thou do likewise: thou mayest
+not hide thyself.
+
+22:4 Thou shalt not see thy brother's ass or his ox fall down by the
+way, and hide thyself from them: thou shalt surely help him to lift
+them up again.
+
+22:5 The woman shall not wear that which pertaineth unto a man,
+neither shall a man put on a woman's garment: for all that do so are
+abomination unto the LORD thy God.
+
+22:6 If a bird's nest chance to be before thee in the way in any tree,
+or on the ground, whether they be young ones, or eggs, and the dam
+sitting upon the young, or upon the eggs, thou shalt not take the dam
+with the young: 22:7 But thou shalt in any wise let the dam go, and
+take the young to thee; that it may be well with thee, and that thou
+mayest prolong thy days.
+
+22:8 When thou buildest a new house, then thou shalt make a battlement
+for thy roof, that thou bring not blood upon thine house, if any man
+fall from thence.
+
+22:9 Thou shalt not sow thy vineyard with divers seeds: lest the fruit
+of thy seed which thou hast sown, and the fruit of thy vineyard, be
+defiled.
+
+22:10 Thou shalt not plow with an ox and an ass together.
+
+22:11 Thou shalt not wear a garment of divers sorts, as of woollen and
+linen together.
+
+22:12 Thou shalt make thee fringes upon the four quarters of thy
+vesture, wherewith thou coverest thyself.
+
+22:13 If any man take a wife, and go in unto her, and hate her, 22:14
+And give occasions of speech against her, and bring up an evil name
+upon her, and say, I took this woman, and when I came to her, I found
+her not a maid: 22:15 Then shall the father of the damsel, and her
+mother, take and bring forth the tokens of the damsel's virginity unto
+the elders of the city in the gate: 22:16 And the damsel's father
+shall say unto the elders, I gave my daughter unto this man to wife,
+and he hateth her; 22:17 And, lo, he hath given occasions of speech
+against her, saying, I found not thy daughter a maid; and yet these
+are the tokens of my daughter's virginity. And they shall spread the
+cloth before the elders of the city.
+
+22:18 And the elders of that city shall take that man and chastise
+him; 22:19 And they shall amerce him in an hundred shekels of silver,
+and give them unto the father of the damsel, because he hath brought
+up an evil name upon a virgin of Israel: and she shall be his wife; he
+may not put her away all his days.
+
+22:20 But if this thing be true, and the tokens of virginity be not
+found for the damsel: 22:21 Then they shall bring out the damsel to
+the door of her father's house, and the men of her city shall stone
+her with stones that she die: because she hath wrought folly in
+Israel, to play the whore in her father's house: so shalt thou put
+evil away from among you.
+
+22:22 If a man be found lying with a woman married to an husband, then
+they shall both of them die, both the man that lay with the woman, and
+the woman: so shalt thou put away evil from Israel.
+
+22:23 If a damsel that is a virgin be betrothed unto an husband, and a
+man find her in the city, and lie with her; 22:24 Then ye shall bring
+them both out unto the gate of that city, and ye shall stone them with
+stones that they die; the damsel, because she cried not, being in the
+city; and the man, because he hath humbled his neighbour's wife: so
+thou shalt put away evil from among you.
+
+22:25 But if a man find a betrothed damsel in the field, and the man
+force her, and lie with her: then the man only that lay with her shall
+die.
+
+22:26 But unto the damsel thou shalt do nothing; there is in the
+damsel no sin worthy of death: for as when a man riseth against his
+neighbour, and slayeth him, even so is this matter: 22:27 For he found
+her in the field, and the betrothed damsel cried, and there was none
+to save her.
+
+22:28 If a man find a damsel that is a virgin, which is not betrothed,
+and lay hold on her, and lie with her, and they be found; 22:29 Then
+the man that lay with her shall give unto the damsel's father fifty
+shekels of silver, and she shall be his wife; because he hath humbled
+her, he may not put her away all his days.
+
+22:30 A man shall not take his father's wife, nor discover his
+father's skirt.
+
+23:1 He that is wounded in the stones, or hath his privy member cut
+off, shall not enter into the congregation of the LORD.
+
+23:2 A bastard shall not enter into the congregation of the LORD; even
+to his tenth generation shall he not enter into the congregation of
+the LORD.
+
+23:3 An Ammonite or Moabite shall not enter into the congregation of
+the LORD; even to their tenth generation shall they not enter into the
+congregation of the LORD for ever: 23:4 Because they met you not with
+bread and with water in the way, when ye came forth out of Egypt; and
+because they hired against thee Balaam the son of Beor of Pethor of
+Mesopotamia, to curse thee.
+
+23:5 Nevertheless the LORD thy God would not hearken unto Balaam; but
+the LORD thy God turned the curse into a blessing unto thee, because
+the LORD thy God loved thee.
+
+23:6 Thou shalt not seek their peace nor their prosperity all thy days
+for ever.
+
+23:7 Thou shalt not abhor an Edomite; for he is thy brother: thou
+shalt not abhor an Egyptian; because thou wast a stranger in his land.
+
+23:8 The children that are begotten of them shall enter into the
+congregation of the LORD in their third generation.
+
+23:9 When the host goeth forth against thine enemies, then keep thee
+from every wicked thing.
+
+23:10 If there be among you any man, that is not clean by reason of
+uncleanness that chanceth him by night, then shall he go abroad out of
+the camp, he shall not come within the camp: 23:11 But it shall be,
+when evening cometh on, he shall wash himself with water: and when the
+sun is down, he shall come into the camp again.
+
+23:12 Thou shalt have a place also without the camp, whither thou
+shalt go forth abroad: 23:13 And thou shalt have a paddle upon thy
+weapon; and it shall be, when thou wilt ease thyself abroad, thou
+shalt dig therewith, and shalt turn back and cover that which cometh
+from thee: 23:14 For the LORD thy God walketh in the midst of thy
+camp, to deliver thee, and to give up thine enemies before thee;
+therefore shall thy camp be holy: that he see no unclean thing in
+thee, and turn away from thee.
+
+23:15 Thou shalt not deliver unto his master the servant which is
+escaped from his master unto thee: 23:16 He shall dwell with thee,
+even among you, in that place which he shall choose in one of thy
+gates, where it liketh him best: thou shalt not oppress him.
+
+23:17 There shall be no whore of the daughters of Israel, nor a
+sodomite of the sons of Israel.
+
+23:18 Thou shalt not bring the hire of a whore, or the price of a dog,
+into the house of the LORD thy God for any vow: for even both these
+are abomination unto the LORD thy God.
+
+23:19 Thou shalt not lend upon usury to thy brother; usury of money,
+usury of victuals, usury of any thing that is lent upon usury: 23:20
+Unto a stranger thou mayest lend upon usury; but unto thy brother thou
+shalt not lend upon usury: that the LORD thy God may bless thee in all
+that thou settest thine hand to in the land whither thou goest to
+possess it.
+
+23:21 When thou shalt vow a vow unto the LORD thy God, thou shalt not
+slack to pay it: for the LORD thy God will surely require it of thee;
+and it would be sin in thee.
+
+23:22 But if thou shalt forbear to vow, it shall be no sin in thee.
+
+23:23 That which is gone out of thy lips thou shalt keep and perform;
+even a freewill offering, according as thou hast vowed unto the LORD
+thy God, which thou hast promised with thy mouth.
+
+23:24 When thou comest into thy neighbour's vineyard, then thou mayest
+eat grapes thy fill at thine own pleasure; but thou shalt not put any
+in thy vessel.
+
+23:25 When thou comest into the standing corn of thy neighbour, then
+thou mayest pluck the ears with thine hand; but thou shalt not move a
+sickle unto thy neighbour's standing corn.
+
+24:1 When a man hath taken a wife, and married her, and it come to
+pass that she find no favour in his eyes, because he hath found some
+uncleanness in her: then let him write her a bill of divorcement, and
+give it in her hand, and send her out of his house.
+
+24:2 And when she is departed out of his house, she may go and be
+another man's wife.
+
+24:3 And if the latter husband hate her, and write her a bill of
+divorcement, and giveth it in her hand, and sendeth her out of his
+house; or if the latter husband die, which took her to be his wife;
+24:4 Her former husband, which sent her away, may not take her again
+to be his wife, after that she is defiled; for that is abomination
+before the LORD: and thou shalt not cause the land to sin, which the
+LORD thy God giveth thee for an inheritance.
+
+24:5 When a man hath taken a new wife, he shall not go out to war,
+neither shall he be charged with any business: but he shall be free at
+home one year, and shall cheer up his wife which he hath taken.
+
+24:6 No man shall take the nether or the upper millstone to pledge:
+for he taketh a man's life to pledge.
+
+24:7 If a man be found stealing any of his brethren of the children of
+Israel, and maketh merchandise of him, or selleth him; then that thief
+shall die; and thou shalt put evil away from among you.
+
+24:8 Take heed in the plague of leprosy, that thou observe diligently,
+and do according to all that the priests the Levites shall teach you:
+as I commanded them, so ye shall observe to do.
+
+24:9 Remember what the LORD thy God did unto Miriam by the way, after
+that ye were come forth out of Egypt.
+
+24:10 When thou dost lend thy brother any thing, thou shalt not go
+into his house to fetch his pledge.
+
+24:11 Thou shalt stand abroad, and the man to whom thou dost lend
+shall bring out the pledge abroad unto thee.
+
+24:12 And if the man be poor, thou shalt not sleep with his pledge:
+24:13 In any case thou shalt deliver him the pledge again when the sun
+goeth down, that he may sleep in his own raiment, and bless thee: and
+it shall be righteousness unto thee before the LORD thy God.
+
+24:14 Thou shalt not oppress an hired servant that is poor and needy,
+whether he be of thy brethren, or of thy strangers that are in thy
+land within thy gates: 24:15 At his day thou shalt give him his hire,
+neither shall the sun go down upon it; for he is poor, and setteth his
+heart upon it: lest he cry against thee unto the LORD, and it be sin
+unto thee.
+
+24:16 The fathers shall not be put to death for the children, neither
+shall the children be put to death for the fathers: every man shall be
+put to death for his own sin.
+
+24:17 Thou shalt not pervert the judgment of the stranger, nor of the
+fatherless; nor take a widow's raiment to pledge: 24:18 But thou shalt
+remember that thou wast a bondman in Egypt, and the LORD thy God
+redeemed thee thence: therefore I command thee to do this thing.
+
+24:19 When thou cuttest down thine harvest in thy field, and hast
+forgot a sheaf in the field, thou shalt not go again to fetch it: it
+shall be for the stranger, for the fatherless, and for the widow: that
+the LORD thy God may bless thee in all the work of thine hands.
+
+24:20 When thou beatest thine olive tree, thou shalt not go over the
+boughs again: it shall be for the stranger, for the fatherless, and
+for the widow.
+
+24:21 When thou gatherest the grapes of thy vineyard, thou shalt not
+glean it afterward: it shall be for the stranger, for the fatherless,
+and for the widow.
+
+24:22 And thou shalt remember that thou wast a bondman in the land of
+Egypt: therefore I command thee to do this thing.
+
+25:1 If there be a controversy between men, and they come unto
+judgment, that the judges may judge them; then they shall justify the
+righteous, and condemn the wicked.
+
+25:2 And it shall be, if the wicked man be worthy to be beaten, that
+the judge shall cause him to lie down, and to be beaten before his
+face, according to his fault, by a certain number.
+
+25:3 Forty stripes he may give him, and not exceed: lest, if he should
+exceed, and beat him above these with many stripes, then thy brother
+should seem vile unto thee.
+
+25:4 Thou shalt not muzzle the ox when he treadeth out the corn.
+
+25:5 If brethren dwell together, and one of them die, and have no
+child, the wife of the dead shall not marry without unto a stranger:
+her husband's brother shall go in unto her, and take her to him to
+wife, and perform the duty of an husband's brother unto her.
+
+25:6 And it shall be, that the firstborn which she beareth shall
+succeed in the name of his brother which is dead, that his name be not
+put out of Israel.
+
+25:7 And if the man like not to take his brother's wife, then let his
+brother's wife go up to the gate unto the elders, and say, My
+husband's brother refuseth to raise up unto his brother a name in
+Israel, he will not perform the duty of my husband's brother.
+
+25:8 Then the elders of his city shall call him, and speak unto him:
+and if he stand to it, and say, I like not to take her; 25:9 Then
+shall his brother's wife come unto him in the presence of the elders,
+and loose his shoe from off his foot, and spit in his face, and shall
+answer and say, So shall it be done unto that man that will not build
+up his brother's house.
+
+25:10 And his name shall be called in Israel, The house of him that
+hath his shoe loosed.
+
+25:11 When men strive together one with another, and the wife of the
+one draweth near for to deliver her husband out of the hand of him
+that smiteth him, and putteth forth her hand, and taketh him by the
+secrets: 25:12 Then thou shalt cut off her hand, thine eye shall not
+pity her.
+
+25:13 Thou shalt not have in thy bag divers weights, a great and a
+small.
+
+25:14 Thou shalt not have in thine house divers measures, a great and
+a small.
+
+25:15 But thou shalt have a perfect and just weight, a perfect and
+just measure shalt thou have: that thy days may be lengthened in the
+land which the LORD thy God giveth thee.
+
+25:16 For all that do such things, and all that do unrighteously, are
+an abomination unto the LORD thy God.
+
+25:17 Remember what Amalek did unto thee by the way, when ye were come
+forth out of Egypt; 25:18 How he met thee by the way, and smote the
+hindmost of thee, even all that were feeble behind thee, when thou
+wast faint and weary; and he feared not God.
+
+25:19 Therefore it shall be, when the LORD thy God hath given thee
+rest from all thine enemies round about, in the land which the LORD
+thy God giveth thee for an inheritance to possess it, that thou shalt
+blot out the remembrance of Amalek from under heaven; thou shalt not
+forget it.
+
+26:1 And it shall be, when thou art come in unto the land which the
+LORD thy God giveth thee for an inheritance, and possessest it, and
+dwellest therein; 26:2 That thou shalt take of the first of all the
+fruit of the earth, which thou shalt bring of thy land that the LORD
+thy God giveth thee, and shalt put it in a basket, and shalt go unto
+the place which the LORD thy God shall choose to place his name there.
+
+26:3 And thou shalt go unto the priest that shall be in those days,
+and say unto him, I profess this day unto the LORD thy God, that I am
+come unto the country which the LORD sware unto our fathers for to
+give us.
+
+26:4 And the priest shall take the basket out of thine hand, and set
+it down before the altar of the LORD thy God.
+
+26:5 And thou shalt speak and say before the LORD thy God, A Syrian
+ready to perish was my father, and he went down into Egypt, and
+sojourned there with a few, and became there a nation, great, mighty,
+and populous: 26:6 And the Egyptians evil entreated us, and afflicted
+us, and laid upon us hard bondage: 26:7 And when we cried unto the
+LORD God of our fathers, the LORD heard our voice, and looked on our
+affliction, and our labour, and our oppression: 26:8 And the LORD
+brought us forth out of Egypt with a mighty hand, and with an
+outstretched arm, and with great terribleness, and with signs, and
+with wonders: 26:9 And he hath brought us into this place, and hath
+given us this land, even a land that floweth with milk and honey.
+
+26:10 And now, behold, I have brought the firstfruits of the land,
+which thou, O LORD, hast given me. And thou shalt set it before the
+LORD thy God, and worship before the LORD thy God: 26:11 And thou
+shalt rejoice in every good thing which the LORD thy God hath given
+unto thee, and unto thine house, thou, and the Levite, and the
+stranger that is among you.
+
+26:12 When thou hast made an end of tithing all the tithes of thine
+increase the third year, which is the year of tithing, and hast given
+it unto the Levite, the stranger, the fatherless, and the widow, that
+they may eat within thy gates, and be filled; 26:13 Then thou shalt
+say before the LORD thy God, I have brought away the hallowed things
+out of mine house, and also have given them unto the Levite, and unto
+the stranger, to the fatherless, and to the widow, according to all
+thy commandments which thou hast commanded me: I have not transgressed
+thy commandments, neither have I forgotten them.
+
+26:14 I have not eaten thereof in my mourning, neither have I taken
+away ought thereof for any unclean use, nor given ought thereof for
+the dead: but I have hearkened to the voice of the LORD my God, and
+have done according to all that thou hast commanded me.
+
+26:15 Look down from thy holy habitation, from heaven, and bless thy
+people Israel, and the land which thou hast given us, as thou swarest
+unto our fathers, a land that floweth with milk and honey.
+
+26:16 This day the LORD thy God hath commanded thee to do these
+statutes and judgments: thou shalt therefore keep and do them with all
+thine heart, and with all thy soul.
+
+26:17 Thou hast avouched the LORD this day to be thy God, and to walk
+in his ways, and to keep his statutes, and his commandments, and his
+judgments, and to hearken unto his voice: 26:18 And the LORD hath
+avouched thee this day to be his peculiar people, as he hath promised
+thee, and that thou shouldest keep all his commandments; 26:19 And to
+make thee high above all nations which he hath made, in praise, and in
+name, and in honour; and that thou mayest be an holy people unto the
+LORD thy God, as he hath spoken.
+
+27:1 And Moses with the elders of Israel commanded the people, saying,
+Keep all the commandments which I command you this day.
+
+27:2 And it shall be on the day when ye shall pass over Jordan unto
+the land which the LORD thy God giveth thee, that thou shalt set thee
+up great stones, and plaister them with plaister: 27:3 And thou shalt
+write upon them all the words of this law, when thou art passed over,
+that thou mayest go in unto the land which the LORD thy God giveth
+thee, a land that floweth with milk and honey; as the LORD God of thy
+fathers hath promised thee.
+
+27:4 Therefore it shall be when ye be gone over Jordan, that ye shall
+set up these stones, which I command you this day, in mount Ebal, and
+thou shalt plaister them with plaister.
+
+27:5 And there shalt thou build an altar unto the LORD thy God, an
+altar of stones: thou shalt not lift up any iron tool upon them.
+
+27:6 Thou shalt build the altar of the LORD thy God of whole stones:
+and thou shalt offer burnt offerings thereon unto the LORD thy God:
+27:7 And thou shalt offer peace offerings, and shalt eat there, and
+rejoice before the LORD thy God.
+
+27:8 And thou shalt write upon the stones all the words of this law
+very plainly.
+
+27:9 And Moses and the priests the Levites spake unto all Israel,
+saying, Take heed, and hearken, O Israel; this day thou art become the
+people of the LORD thy God.
+
+27:10 Thou shalt therefore obey the voice of the LORD thy God, and do
+his commandments and his statutes, which I command thee this day.
+
+27:11 And Moses charged the people the same day, saying, 27:12 These
+shall stand upon mount Gerizim to bless the people, when ye are come
+over Jordan; Simeon, and Levi, and Judah, and Issachar, and Joseph,
+and Benjamin: 27:13 And these shall stand upon mount Ebal to curse;
+Reuben, Gad, and Asher, and Zebulun, Dan, and Naphtali.
+
+27:14 And the Levites shall speak, and say unto all the men of Israel
+with a loud voice, 27:15 Cursed be the man that maketh any graven or
+molten image, an abomination unto the LORD, the work of the hands of
+the craftsman, and putteth it in a secret place. And all the people
+shall answer and say, Amen.
+
+27:16 Cursed be he that setteth light by his father or his mother. And
+all the people shall say, Amen.
+
+27:17 Cursed be he that removeth his neighbour's landmark. And all the
+people shall say, Amen.
+
+27:18 Cursed be he that maketh the blind to wander out of the way. And
+all the people shall say, Amen.
+
+27:19 Cursed be he that perverteth the judgment of the stranger,
+fatherless, and widow. And all the people shall say, Amen.
+
+27:20 Cursed be he that lieth with his father's wife; because he
+uncovereth his father's skirt. And all the people shall say, Amen.
+
+27:21 Cursed be he that lieth with any manner of beast. And all the
+people shall say, Amen.
+
+27:22 Cursed be he that lieth with his sister, the daughter of his
+father, or the daughter of his mother. And all the people shall say,
+Amen.
+
+27:23 Cursed be he that lieth with his mother in law. And all the
+people shall say, Amen.
+
+27:24 Cursed be he that smiteth his neighbour secretly. And all the
+people shall say, Amen.
+
+27:25 Cursed be he that taketh reward to slay an innocent person. And
+all the people shall say, Amen.
+
+27:26 Cursed be he that confirmeth not all the words of this law to do
+them. And all the people shall say, Amen.
+
+28:1 And it shall come to pass, if thou shalt hearken diligently unto
+the voice of the LORD thy God, to observe and to do all his
+commandments which I command thee this day, that the LORD thy God will
+set thee on high above all nations of the earth: 28:2 And all these
+blessings shall come on thee, and overtake thee, if thou shalt hearken
+unto the voice of the LORD thy God.
+
+28:3 Blessed shalt thou be in the city, and blessed shalt thou be in
+the field.
+
+28:4 Blessed shall be the fruit of thy body, and the fruit of thy
+ground, and the fruit of thy cattle, the increase of thy kine, and the
+flocks of thy sheep.
+
+28:5 Blessed shall be thy basket and thy store.
+
+28:6 Blessed shalt thou be when thou comest in, and blessed shalt thou
+be when thou goest out.
+
+28:7 The LORD shall cause thine enemies that rise up against thee to
+be smitten before thy face: they shall come out against thee one way,
+and flee before thee seven ways.
+
+28:8 The LORD shall command the blessing upon thee in thy storehouses,
+and in all that thou settest thine hand unto; and he shall bless thee
+in the land which the LORD thy God giveth thee.
+
+28:9 The LORD shall establish thee an holy people unto himself, as he
+hath sworn unto thee, if thou shalt keep the commandments of the LORD
+thy God, and walk in his ways.
+
+28:10 And all people of the earth shall see that thou art called by
+the name of the LORD; and they shall be afraid of thee.
+
+28:11 And the LORD shall make thee plenteous in goods, in the fruit of
+thy body, and in the fruit of thy cattle, and in the fruit of thy
+ground, in the land which the LORD sware unto thy fathers to give
+thee.
+
+28:12 The LORD shall open unto thee his good treasure, the heaven to
+give the rain unto thy land in his season, and to bless all the work
+of thine hand: and thou shalt lend unto many nations, and thou shalt
+not borrow.
+
+28:13 And the LORD shall make thee the head, and not the tail; and
+thou shalt be above only, and thou shalt not be beneath; if that thou
+hearken unto the commandments of the LORD thy God, which I command
+thee this day, to observe and to do them: 28:14 And thou shalt not go
+aside from any of the words which I command thee this day, to the
+right hand, or to the left, to go after other gods to serve them.
+
+28:15 But it shall come to pass, if thou wilt not hearken unto the
+voice of the LORD thy God, to observe to do all his commandments and
+his statutes which I command thee this day; that all these curses
+shall come upon thee, and overtake thee: 28:16 Cursed shalt thou be in
+the city, and cursed shalt thou be in the field.
+
+28:17 Cursed shall be thy basket and thy store.
+
+28:18 Cursed shall be the fruit of thy body, and the fruit of thy
+land, the increase of thy kine, and the flocks of thy sheep.
+
+28:19 Cursed shalt thou be when thou comest in, and cursed shalt thou
+be when thou goest out.
+
+28:20 The LORD shall send upon thee cursing, vexation, and rebuke, in
+all that thou settest thine hand unto for to do, until thou be
+destroyed, and until thou perish quickly; because of the wickedness of
+thy doings, whereby thou hast forsaken me.
+
+28:21 The LORD shall make the pestilence cleave unto thee, until he
+have consumed thee from off the land, whither thou goest to possess
+it.
+
+28:22 The LORD shall smite thee with a consumption, and with a fever,
+and with an inflammation, and with an extreme burning, and with the
+sword, and with blasting, and with mildew; and they shall pursue thee
+until thou perish.
+
+28:23 And thy heaven that is over thy head shall be brass, and the
+earth that is under thee shall be iron.
+
+28:24 The LORD shall make the rain of thy land powder and dust: from
+heaven shall it come down upon thee, until thou be destroyed.
+
+28:25 The LORD shall cause thee to be smitten before thine enemies:
+thou shalt go out one way against them, and flee seven ways before
+them: and shalt be removed into all the kingdoms of the earth.
+
+28:26 And thy carcase shall be meat unto all fowls of the air, and
+unto the beasts of the earth, and no man shall fray them away.
+
+28:27 The LORD will smite thee with the botch of Egypt, and with the
+emerods, and with the scab, and with the itch, whereof thou canst not
+be healed.
+
+28:28 The LORD shall smite thee with madness, and blindness, and
+astonishment of heart: 28:29 And thou shalt grope at noonday, as the
+blind gropeth in darkness, and thou shalt not prosper in thy ways: and
+thou shalt be only oppressed and spoiled evermore, and no man shall
+save thee.
+
+28:30 Thou shalt betroth a wife, and another man shall lie with her:
+thou shalt build an house, and thou shalt not dwell therein: thou
+shalt plant a vineyard, and shalt not gather the grapes thereof.
+
+28:31 Thine ox shall be slain before thine eyes, and thou shalt not
+eat thereof: thine ass shall be violently taken away from before thy
+face, and shall not be restored to thee: thy sheep shall be given unto
+thine enemies, and thou shalt have none to rescue them.
+
+28:32 Thy sons and thy daughters shall be given unto another people,
+and thine eyes shall look, and fail with longing for them all the day
+long; and there shall be no might in thine hand.
+
+28:33 The fruit of thy land, and all thy labours, shall a nation which
+thou knowest not eat up; and thou shalt be only oppressed and crushed
+alway: 28:34 So that thou shalt be mad for the sight of thine eyes
+which thou shalt see.
+
+28:35 The LORD shall smite thee in the knees, and in the legs, with a
+sore botch that cannot be healed, from the sole of thy foot unto the
+top of thy head.
+
+28:36 The LORD shall bring thee, and thy king which thou shalt set
+over thee, unto a nation which neither thou nor thy fathers have
+known; and there shalt thou serve other gods, wood and stone.
+
+28:37 And thou shalt become an astonishment, a proverb, and a byword,
+among all nations whither the LORD shall lead thee.
+
+28:38 Thou shalt carry much seed out into the field, and shalt gather
+but little in; for the locust shall consume it.
+
+28:39 Thou shalt plant vineyards, and dress them, but shalt neither
+drink of the wine, nor gather the grapes; for the worms shall eat
+them.
+
+28:40 Thou shalt have olive trees throughout all thy coasts, but thou
+shalt not anoint thyself with the oil; for thine olive shall cast his
+fruit.
+
+28:41 Thou shalt beget sons and daughters, but thou shalt not enjoy
+them; for they shall go into captivity.
+
+28:42 All thy trees and fruit of thy land shall the locust consume.
+
+28:43 The stranger that is within thee shall get up above thee very
+high; and thou shalt come down very low.
+
+28:44 He shall lend to thee, and thou shalt not lend to him: he shall
+be the head, and thou shalt be the tail.
+
+28:45 Moreover all these curses shall come upon thee, and shall pursue
+thee, and overtake thee, till thou be destroyed; because thou
+hearkenedst not unto the voice of the LORD thy God, to keep his
+commandments and his statutes which he commanded thee: 28:46 And they
+shall be upon thee for a sign and for a wonder, and upon thy seed for
+ever.
+
+28:47 Because thou servedst not the LORD thy God with joyfulness, and
+with gladness of heart, for the abundance of all things; 28:48
+Therefore shalt thou serve thine enemies which the LORD shall send
+against thee, in hunger, and in thirst, and in nakedness, and in want
+of all things: and he shall put a yoke of iron upon thy neck, until he
+have destroyed thee.
+
+28:49 The LORD shall bring a nation against thee from far, from the
+end of the earth, as swift as the eagle flieth; a nation whose tongue
+thou shalt not understand; 28:50 A nation of fierce countenance, which
+shall not regard the person of the old, nor shew favour to the young:
+28:51 And he shall eat the fruit of thy cattle, and the fruit of thy
+land, until thou be destroyed: which also shall not leave thee either
+corn, wine, or oil, or the increase of thy kine, or flocks of thy
+sheep, until he have destroyed thee.
+
+28:52 And he shall besiege thee in all thy gates, until thy high and
+fenced walls come down, wherein thou trustedst, throughout all thy
+land: and he shall besiege thee in all thy gates throughout all thy
+land, which the LORD thy God hath given thee.
+
+28:53 And thou shalt eat the fruit of thine own body, the flesh of thy
+sons and of thy daughters, which the LORD thy God hath given thee, in
+the siege, and in the straitness, wherewith thine enemies shall
+distress thee: 28:54 So that the man that is tender among you, and
+very delicate, his eye shall be evil toward his brother, and toward
+the wife of his bosom, and toward the remnant of his children which he
+shall leave: 28:55 So that he will not give to any of them of the
+flesh of his children whom he shall eat: because he hath nothing left
+him in the siege, and in the straitness, wherewith thine enemies shall
+distress thee in all thy gates.
+
+28:56 The tender and delicate woman among you, which would not
+adventure to set the sole of her foot upon the ground for delicateness
+and tenderness, her eye shall be evil toward the husband of her bosom,
+and toward her son, and toward her daughter, 28:57 And toward her
+young one that cometh out from between her feet, and toward her
+children which she shall bear: for she shall eat them for want of all
+things secretly in the siege and straitness, wherewith thine enemy
+shall distress thee in thy gates.
+
+28:58 If thou wilt not observe to do all the words of this law that
+are written in this book, that thou mayest fear this glorious and
+fearful name, THE LORD THY GOD; 28:59 Then the LORD will make thy
+plagues wonderful, and the plagues of thy seed, even great plagues,
+and of long continuance, and sore sicknesses, and of long continuance.
+
+28:60 Moreover he will bring upon thee all the diseases of Egypt,
+which thou wast afraid of; and they shall cleave unto thee.
+
+28:61 Also every sickness, and every plague, which is not written in
+the book of this law, them will the LORD bring upon thee, until thou
+be destroyed.
+
+28:62 And ye shall be left few in number, whereas ye were as the stars
+of heaven for multitude; because thou wouldest not obey the voice of
+the LORD thy God.
+
+28:63 And it shall come to pass, that as the LORD rejoiced over you to
+do you good, and to multiply you; so the LORD will rejoice over you to
+destroy you, and to bring you to nought; and ye shall be plucked from
+off the land whither thou goest to possess it.
+
+28:64 And the LORD shall scatter thee among all people, from the one
+end of the earth even unto the other; and there thou shalt serve other
+gods, which neither thou nor thy fathers have known, even wood and
+stone.
+
+28:65 And among these nations shalt thou find no ease, neither shall
+the sole of thy foot have rest: but the LORD shall give thee there a
+trembling heart, and failing of eyes, and sorrow of mind: 28:66 And
+thy life shall hang in doubt before thee; and thou shalt fear day and
+night, and shalt have none assurance of thy life: 28:67 In the morning
+thou shalt say, Would God it were even! and at even thou shalt say,
+Would God it were morning! for the fear of thine heart wherewith thou
+shalt fear, and for the sight of thine eyes which thou shalt see.
+
+28:68 And the LORD shall bring thee into Egypt again with ships, by
+the way whereof I spake unto thee, Thou shalt see it no more again:
+and there ye shall be sold unto your enemies for bondmen and
+bondwomen, and no man shall buy you.
+
+29:1 These are the words of the covenant, which the LORD commanded
+Moses to make with the children of Israel in the land of Moab, beside
+the covenant which he made with them in Horeb.
+
+29:2 And Moses called unto all Israel, and said unto them, Ye have
+seen all that the LORD did before your eyes in the land of Egypt unto
+Pharaoh, and unto all his servants, and unto all his land; 29:3 The
+great temptations which thine eyes have seen, the signs, and those
+great miracles: 29:4 Yet the LORD hath not given you an heart to
+perceive, and eyes to see, and ears to hear, unto this day.
+
+29:5 And I have led you forty years in the wilderness: your clothes
+are not waxen old upon you, and thy shoe is not waxen old upon thy
+foot.
+
+29:6 Ye have not eaten bread, neither have ye drunk wine or strong
+drink: that ye might know that I am the LORD your God.
+
+29:7 And when ye came unto this place, Sihon the king of Heshbon, and
+Og the king of Bashan, came out against us unto battle, and we smote
+them: 29:8 And we took their land, and gave it for an inheritance unto
+the Reubenites, and to the Gadites, and to the half tribe of Manasseh.
+
+29:9 Keep therefore the words of this covenant, and do them, that ye
+may prosper in all that ye do.
+
+29:10 Ye stand this day all of you before the LORD your God; your
+captains of your tribes, your elders, and your officers, with all the
+men of Israel, 29:11 Your little ones, your wives, and thy stranger
+that is in thy camp, from the hewer of thy wood unto the drawer of thy
+water: 29:12 That thou shouldest enter into covenant with the LORD thy
+God, and into his oath, which the LORD thy God maketh with thee this
+day: 29:13 That he may establish thee to day for a people unto
+himself, and that he may be unto thee a God, as he hath said unto
+thee, and as he hath sworn unto thy fathers, to Abraham, to Isaac, and
+to Jacob.
+
+29:14 Neither with you only do I make this covenant and this oath;
+29:15 But with him that standeth here with us this day before the LORD
+our God, and also with him that is not here with us this day: 29:16
+(For ye know how we have dwelt in the land of Egypt; and how we came
+through the nations which ye passed by; 29:17 And ye have seen their
+abominations, and their idols, wood and stone, silver and gold, which
+were among them:) 29:18 Lest there should be among you man, or woman,
+or family, or tribe, whose heart turneth away this day from the LORD
+our God, to go and serve the gods of these nations; lest there should
+be among you a root that beareth gall and wormwood; 29:19 And it come
+to pass, when he heareth the words of this curse, that he bless
+himself in his heart, saying, I shall have peace, though I walk in the
+imagination of mine heart, to add drunkenness to thirst: 29:20 The
+LORD will not spare him, but then the anger of the LORD and his
+jealousy shall smoke against that man, and all the curses that are
+written in this book shall lie upon him, and the LORD shall blot out
+his name from under heaven.
+
+29:21 And the LORD shall separate him unto evil out of all the tribes
+of Israel, according to all the curses of the covenant that are
+written in this book of the law: 29:22 So that the generation to come
+of your children that shall rise up after you, and the stranger that
+shall come from a far land, shall say, when they see the plagues of
+that land, and the sicknesses which the LORD hath laid upon it; 29:23
+And that the whole land thereof is brimstone, and salt, and burning,
+that it is not sown, nor beareth, nor any grass groweth therein, like
+the overthrow of Sodom, and Gomorrah, Admah, and Zeboim, which the
+LORD overthrew in his anger, and in his wrath: 29:24 Even all nations
+shall say, Wherefore hath the LORD done thus unto this land? what
+meaneth the heat of this great anger? 29:25 Then men shall say,
+Because they have forsaken the covenant of the LORD God of their
+fathers, which he made with them when he brought them forth out of the
+land of Egypt: 29:26 For they went and served other gods, and
+worshipped them, gods whom they knew not, and whom he had not given
+unto them: 29:27 And the anger of the LORD was kindled against this
+land, to bring upon it all the curses that are written in this book:
+29:28 And the LORD rooted them out of their land in anger, and in
+wrath, and in great indignation, and cast them into another land, as
+it is this day.
+
+29:29 The secret things belong unto the LORD our God: but those things
+which are revealed belong unto us and to our children for ever, that
+we may do all the words of this law.
+
+30:1 And it shall come to pass, when all these things are come upon
+thee, the blessing and the curse, which I have set before thee, and
+thou shalt call them to mind among all the nations, whither the LORD
+thy God hath driven thee, 30:2 And shalt return unto the LORD thy God,
+and shalt obey his voice according to all that I command thee this
+day, thou and thy children, with all thine heart, and with all thy
+soul; 30:3 That then the LORD thy God will turn thy captivity, and
+have compassion upon thee, and will return and gather thee from all
+the nations, whither the LORD thy God hath scattered thee.
+
+30:4 If any of thine be driven out unto the outmost parts of heaven,
+from thence will the LORD thy God gather thee, and from thence will he
+fetch thee: 30:5 And the LORD thy God will bring thee into the land
+which thy fathers possessed, and thou shalt possess it; and he will do
+thee good, and multiply thee above thy fathers.
+
+30:6 And the LORD thy God will circumcise thine heart, and the heart
+of thy seed, to love the LORD thy God with all thine heart, and with
+all thy soul, that thou mayest live.
+
+30:7 And the LORD thy God will put all these curses upon thine
+enemies, and on them that hate thee, which persecuted thee.
+
+30:8 And thou shalt return and obey the voice of the LORD, and do all
+his commandments which I command thee this day.
+
+30:9 And the LORD thy God will make thee plenteous in every work of
+thine hand, in the fruit of thy body, and in the fruit of thy cattle,
+and in the fruit of thy land, for good: for the LORD will again
+rejoice over thee for good, as he rejoiced over thy fathers: 30:10 If
+thou shalt hearken unto the voice of the LORD thy God, to keep his
+commandments and his statutes which are written in this book of the
+law, and if thou turn unto the LORD thy God with all thine heart, and
+with all thy soul.
+
+30:11 For this commandment which I command thee this day, it is not
+hidden from thee, neither is it far off.
+
+30:12 It is not in heaven, that thou shouldest say, Who shall go up
+for us to heaven, and bring it unto us, that we may hear it, and do
+it? 30:13 Neither is it beyond the sea, that thou shouldest say, Who
+shall go over the sea for us, and bring it unto us, that we may hear
+it, and do it? 30:14 But the word is very nigh unto thee, in thy
+mouth, and in thy heart, that thou mayest do it.
+
+30:15 See, I have set before thee this day life and good, and death
+and evil; 30:16 In that I command thee this day to love the LORD thy
+God, to walk in his ways, and to keep his commandments and his
+statutes and his judgments, that thou mayest live and multiply: and
+the LORD thy God shall bless thee in the land whither thou goest to
+possess it.
+
+30:17 But if thine heart turn away, so that thou wilt not hear, but
+shalt be drawn away, and worship other gods, and serve them; 30:18 I
+denounce unto you this day, that ye shall surely perish, and that ye
+shall not prolong your days upon the land, whither thou passest over
+Jordan to go to possess it.
+
+30:19 I call heaven and earth to record this day against you, that I
+have set before you life and death, blessing and cursing: therefore
+choose life, that both thou and thy seed may live: 30:20 That thou
+mayest love the LORD thy God, and that thou mayest obey his voice, and
+that thou mayest cleave unto him: for he is thy life, and the length
+of thy days: that thou mayest dwell in the land which the LORD sware
+unto thy fathers, to Abraham, to Isaac, and to Jacob, to give them.
+
+31:1 And Moses went and spake these words unto all Israel.
+
+31:2 And he said unto them, I am an hundred and twenty years old this
+day; I can no more go out and come in: also the LORD hath said unto
+me, Thou shalt not go over this Jordan.
+
+31:3 The LORD thy God, he will go over before thee, and he will
+destroy these nations from before thee, and thou shalt possess them:
+and Joshua, he shall go over before thee, as the LORD hath said.
+
+31:4 And the LORD shall do unto them as he did to Sihon and to Og,
+kings of the Amorites, and unto the land of them, whom he destroyed.
+
+31:5 And the LORD shall give them up before your face, that ye may do
+unto them according unto all the commandments which I have commanded
+you.
+
+31:6 Be strong and of a good courage, fear not, nor be afraid of them:
+for the LORD thy God, he it is that doth go with thee; he will not
+fail thee, nor forsake thee.
+
+31:7 And Moses called unto Joshua, and said unto him in the sight of
+all Israel, Be strong and of a good courage: for thou must go with
+this people unto the land which the LORD hath sworn unto their fathers
+to give them; and thou shalt cause them to inherit it.
+
+31:8 And the LORD, he it is that doth go before thee; he will be with
+thee, he will not fail thee, neither forsake thee: fear not, neither
+be dismayed.
+
+31:9 And Moses wrote this law, and delivered it unto the priests the
+sons of Levi, which bare the ark of the covenant of the LORD, and unto
+all the elders of Israel.
+
+31:10 And Moses commanded them, saying, At the end of every seven
+years, in the solemnity of the year of release, in the feast of
+tabernacles, 31:11 When all Israel is come to appear before the LORD
+thy God in the place which he shall choose, thou shalt read this law
+before all Israel in their hearing.
+
+31:12 Gather the people together, men and women, and children, and thy
+stranger that is within thy gates, that they may hear, and that they
+may learn, and fear the LORD your God, and observe to do all the words
+of this law: 31:13 And that their children, which have not known any
+thing, may hear, and learn to fear the LORD your God, as long as ye
+live in the land whither ye go over Jordan to possess it.
+
+31:14 And the LORD said unto Moses, Behold, thy days approach that
+thou must die: call Joshua, and present yourselves in the tabernacle
+of the congregation, that I may give him a charge. And Moses and
+Joshua went, and presented themselves in the tabernacle of the
+congregation.
+
+31:15 And the LORD appeared in the tabernacle in a pillar of a cloud:
+and the pillar of the cloud stood over the door of the tabernacle.
+
+31:16 And the LORD said unto Moses, Behold, thou shalt sleep with thy
+fathers; and this people will rise up, and go a whoring after the gods
+of the strangers of the land, whither they go to be among them, and
+will forsake me, and break my covenant which I have made with them.
+
+31:17 Then my anger shall be kindled against them in that day, and I
+will forsake them, and I will hide my face from them, and they shall
+be devoured, and many evils and troubles shall befall them; so that
+they will say in that day, Are not these evils come upon us, because
+our God is not among us? 31:18 And I will surely hide my face in that
+day for all the evils which they shall have wrought, in that they are
+turned unto other gods.
+
+31:19 Now therefore write ye this song for you, and teach it the
+children of Israel: put it in their mouths, that this song may be a
+witness for me against the children of Israel.
+
+31:20 For when I shall have brought them into the land which I sware
+unto their fathers, that floweth with milk and honey; and they shall
+have eaten and filled themselves, and waxen fat; then will they turn
+unto other gods, and serve them, and provoke me, and break my
+covenant.
+
+31:21 And it shall come to pass, when many evils and troubles are
+befallen them, that this song shall testify against them as a witness;
+for it shall not be forgotten out of the mouths of their seed: for I
+know their imagination which they go about, even now, before I have
+brought them into the land which I sware.
+
+31:22 Moses therefore wrote this song the same day, and taught it the
+children of Israel.
+
+31:23 And he gave Joshua the son of Nun a charge, and said, Be strong
+and of a good courage: for thou shalt bring the children of Israel
+into the land which I sware unto them: and I will be with thee.
+
+31:24 And it came to pass, when Moses had made an end of writing the
+words of this law in a book, until they were finished, 31:25 That
+Moses commanded the Levites, which bare the ark of the covenant of the
+LORD, saying, 31:26 Take this book of the law, and put it in the side
+of the ark of the covenant of the LORD your God, that it may be there
+for a witness against thee.
+
+31:27 For I know thy rebellion, and thy stiff neck: behold, while I am
+yet alive with you this day, ye have been rebellious against the LORD;
+and how much more after my death? 31:28 Gather unto me all the elders
+of your tribes, and your officers, that I may speak these words in
+their ears, and call heaven and earth to record against them.
+
+31:29 For I know that after my death ye will utterly corrupt
+yourselves, and turn aside from the way which I have commanded you;
+and evil will befall you in the latter days; because ye will do evil
+in the sight of the LORD, to provoke him to anger through the work of
+your hands.
+
+31:30 And Moses spake in the ears of all the congregation of Israel
+the words of this song, until they were ended.
+
+32:1 Give ear, O ye heavens, and I will speak; and hear, O earth, the
+words of my mouth.
+
+32:2 My doctrine shall drop as the rain, my speech shall distil as the
+dew, as the small rain upon the tender herb, and as the showers upon
+the grass: 32:3 Because I will publish the name of the LORD: ascribe
+ye greatness unto our God.
+
+32:4 He is the Rock, his work is perfect: for all his ways are
+judgment: a God of truth and without iniquity, just and right is he.
+
+32:5 They have corrupted themselves, their spot is not the spot of his
+children: they are a perverse and crooked generation.
+
+32:6 Do ye thus requite the LORD, O foolish people and unwise? is not
+he thy father that hath bought thee? hath he not made thee, and
+established thee? 32:7 Remember the days of old, consider the years
+of many generations: ask thy father, and he will shew thee; thy
+elders, and they will tell thee.
+
+32:8 When the Most High divided to the nations their inheritance, when
+he separated the sons of Adam, he set the bounds of the people
+according to the number of the children of Israel.
+
+32:9 For the LORD's portion is his people; Jacob is the lot of his
+inheritance.
+
+32:10 He found him in a desert land, and in the waste howling
+wilderness; he led him about, he instructed him, he kept him as the
+apple of his eye.
+
+32:11 As an eagle stirreth up her nest, fluttereth over her young,
+spreadeth abroad her wings, taketh them, beareth them on her wings:
+32:12 So the LORD alone did lead him, and there was no strange god
+with him.
+
+32:13 He made him ride on the high places of the earth, that he might
+eat the increase of the fields; and he made him to suck honey out of
+the rock, and oil out of the flinty rock; 32:14 Butter of kine, and
+milk of sheep, with fat of lambs, and rams of the breed of Bashan, and
+goats, with the fat of kidneys of wheat; and thou didst drink the pure
+blood of the grape.
+
+32:15 But Jeshurun waxed fat, and kicked: thou art waxen fat, thou art
+grown thick, thou art covered with fatness; then he forsook God which
+made him, and lightly esteemed the Rock of his salvation.
+
+32:16 They provoked him to jealousy with strange gods, with
+abominations provoked they him to anger.
+
+32:17 They sacrificed unto devils, not to God; to gods whom they knew
+not, to new gods that came newly up, whom your fathers feared not.
+
+32:18 Of the Rock that begat thee thou art unmindful, and hast
+forgotten God that formed thee.
+
+32:19 And when the LORD saw it, he abhorred them, because of the
+provoking of his sons, and of his daughters.
+
+32:20 And he said, I will hide my face from them, I will see what
+their end shall be: for they are a very froward generation, children
+in whom is no faith.
+
+32:21 They have moved me to jealousy with that which is not God; they
+have provoked me to anger with their vanities: and I will move them to
+jealousy with those which are not a people; I will provoke them to
+anger with a foolish nation.
+
+32:22 For a fire is kindled in mine anger, and shall burn unto the
+lowest hell, and shall consume the earth with her increase, and set on
+fire the foundations of the mountains.
+
+32:23 I will heap mischiefs upon them; I will spend mine arrows upon
+them.
+
+32:24 They shall be burnt with hunger, and devoured with burning heat,
+and with bitter destruction: I will also send the teeth of beasts upon
+them, with the poison of serpents of the dust.
+
+32:25 The sword without, and terror within, shall destroy both the
+young man and the virgin, the suckling also with the man of gray
+hairs.
+
+32:26 I said, I would scatter them into corners, I would make the
+remembrance of them to cease from among men: 32:27 Were it not that I
+feared the wrath of the enemy, lest their adversaries should behave
+themselves strangely, and lest they should say, Our hand is high, and
+the LORD hath not done all this.
+
+32:28 For they are a nation void of counsel, neither is there any
+understanding in them.
+
+32:29 O that they were wise, that they understood this, that they
+would consider their latter end! 32:30 How should one chase a
+thousand, and two put ten thousand to flight, except their Rock had
+sold them, and the LORD had shut them up? 32:31 For their rock is not
+as our Rock, even our enemies themselves being judges.
+
+32:32 For their vine is of the vine of Sodom, and of the fields of
+Gomorrah: their grapes are grapes of gall, their clusters are bitter:
+32:33 Their wine is the poison of dragons, and the cruel venom of
+asps.
+
+32:34 Is not this laid up in store with me, and sealed up among my
+treasures? 32:35 To me belongeth vengeance and recompence; their foot
+shall slide in due time: for the day of their calamity is at hand, and
+the things that shall come upon them make haste.
+
+32:36 For the LORD shall judge his people, and repent himself for his
+servants, when he seeth that their power is gone, and there is none
+shut up, or left.
+
+32:37 And he shall say, Where are their gods, their rock in whom they
+trusted, 32:38 Which did eat the fat of their sacrifices, and drank
+the wine of their drink offerings? let them rise up and help you, and
+be your protection.
+
+32:39 See now that I, even I, am he, and there is no god with me: I
+kill, and I make alive; I wound, and I heal: neither is there any that
+can deliver out of my hand.
+
+32:40 For I lift up my hand to heaven, and say, I live for ever.
+
+32:41 If I whet my glittering sword, and mine hand take hold on
+judgment; I will render vengeance to mine enemies, and will reward
+them that hate me.
+
+32:42 I will make mine arrows drunk with blood, and my sword shall
+devour flesh; and that with the blood of the slain and of the
+captives, from the beginning of revenges upon the enemy.
+
+32:43 Rejoice, O ye nations, with his people: for he will avenge the
+blood of his servants, and will render vengeance to his adversaries,
+and will be merciful unto his land, and to his people.
+
+32:44 And Moses came and spake all the words of this song in the ears
+of the people, he, and Hoshea the son of Nun.
+
+32:45 And Moses made an end of speaking all these words to all Israel:
+32:46 And he said unto them, Set your hearts unto all the words which
+I testify among you this day, which ye shall command your children to
+observe to do, all the words of this law.
+
+32:47 For it is not a vain thing for you; because it is your life: and
+through this thing ye shall prolong your days in the land, whither ye
+go over Jordan to possess it.
+
+32:48 And the LORD spake unto Moses that selfsame day, saying, 32:49
+Get thee up into this mountain Abarim, unto mount Nebo, which is in
+the land of Moab, that is over against Jericho; and behold the land of
+Canaan, which I give unto the children of Israel for a possession:
+32:50 And die in the mount whither thou goest up, and be gathered unto
+thy people; as Aaron thy brother died in mount Hor, and was gathered
+unto his people: 32:51 Because ye trespassed against me among the
+children of Israel at the waters of MeribahKadesh, in the wilderness
+of Zin; because ye sanctified me not in the midst of the children of
+Israel.
+
+32:52 Yet thou shalt see the land before thee; but thou shalt not go
+thither unto the land which I give the children of Israel.
+
+33:1 And this is the blessing, wherewith Moses the man of God blessed
+the children of Israel before his death.
+
+33:2 And he said, The LORD came from Sinai, and rose up from Seir unto
+them; he shined forth from mount Paran, and he came with ten thousands
+of saints: from his right hand went a fiery law for them.
+
+33:3 Yea, he loved the people; all his saints are in thy hand: and
+they sat down at thy feet; every one shall receive of thy words.
+
+33:4 Moses commanded us a law, even the inheritance of the
+congregation of Jacob.
+
+33:5 And he was king in Jeshurun, when the heads of the people and the
+tribes of Israel were gathered together.
+
+33:6 Let Reuben live, and not die; and let not his men be few.
+
+33:7 And this is the blessing of Judah: and he said, Hear, LORD, the
+voice of Judah, and bring him unto his people: let his hands be
+sufficient for him; and be thou an help to him from his enemies.
+
+33:8 And of Levi he said, Let thy Thummim and thy Urim be with thy
+holy one, whom thou didst prove at Massah, and with whom thou didst
+strive at the waters of Meribah; 33:9 Who said unto his father and to
+his mother, I have not seen him; neither did he acknowledge his
+brethren, nor knew his own children: for they have observed thy word,
+and kept thy covenant.
+
+33:10 They shall teach Jacob thy judgments, and Israel thy law: they
+shall put incense before thee, and whole burnt sacrifice upon thine
+altar.
+
+33:11 Bless, LORD, his substance, and accept the work of his hands;
+smite through the loins of them that rise against him, and of them
+that hate him, that they rise not again.
+
+33:12 And of Benjamin he said, The beloved of the LORD shall dwell in
+safety by him; and the Lord shall cover him all the day long, and he
+shall dwell between his shoulders.
+
+33:13 And of Joseph he said, Blessed of the LORD be his land, for the
+precious things of heaven, for the dew, and for the deep that coucheth
+beneath, 33:14 And for the precious fruits brought forth by the sun,
+and for the precious things put forth by the moon, 33:15 And for the
+chief things of the ancient mountains, and for the precious things of
+the lasting hills, 33:16 And for the precious things of the earth and
+fulness thereof, and for the good will of him that dwelt in the bush:
+let the blessing come upon the head of Joseph, and upon the top of the
+head of him that was separated from his brethren.
+
+33:17 His glory is like the firstling of his bullock, and his horns
+are like the horns of unicorns: with them he shall push the people
+together to the ends of the earth: and they are the ten thousands of
+Ephraim, and they are the thousands of Manasseh.
+
+33:18 And of Zebulun he said, Rejoice, Zebulun, in thy going out; and,
+Issachar, in thy tents.
+
+33:19 They shall call the people unto the mountain; there they shall
+offer sacrifices of righteousness: for they shall suck of the
+abundance of the seas, and of treasures hid in the sand.
+
+33:20 And of Gad he said, Blessed be he that enlargeth Gad: he
+dwelleth as a lion, and teareth the arm with the crown of the head.
+
+33:21 And he provided the first part for himself, because there, in a
+portion of the lawgiver, was he seated; and he came with the heads of
+the people, he executed the justice of the LORD, and his judgments
+with Israel.
+
+33:22 And of Dan he said, Dan is a lion's whelp: he shall leap from
+Bashan.
+
+33:23 And of Naphtali he said, O Naphtali, satisfied with favour, and
+full with the blessing of the LORD: possess thou the west and the
+south.
+
+33:24 And of Asher he said, Let Asher be blessed with children; let
+him be acceptable to his brethren, and let him dip his foot in oil.
+
+33:25 Thy shoes shall be iron and brass; and as thy days, so shall thy
+strength be.
+
+33:26 There is none like unto the God of Jeshurun, who rideth upon the
+heaven in thy help, and in his excellency on the sky.
+
+33:27 The eternal God is thy refuge, and underneath are the
+everlasting arms: and he shall thrust out the enemy from before thee;
+and shall say, Destroy them.
+
+33:28 Israel then shall dwell in safety alone: the fountain of Jacob
+shall be upon a land of corn and wine; also his heavens shall drop
+down dew.
+
+33:29 Happy art thou, O Israel: who is like unto thee, O people saved
+by the LORD, the shield of thy help, and who is the sword of thy
+excellency! and thine enemies shall be found liars unto thee; and thou
+shalt tread upon their high places.
+
+34:1 And Moses went up from the plains of Moab unto the mountain of
+Nebo, to the top of Pisgah, that is over against Jericho. And the LORD
+shewed him all the land of Gilead, unto Dan, 34:2 And all Naphtali,
+and the land of Ephraim, and Manasseh, and all the land of Judah, unto
+the utmost sea, 34:3 And the south, and the plain of the valley of
+Jericho, the city of palm trees, unto Zoar.
+
+34:4 And the LORD said unto him, This is the land which I sware unto
+Abraham, unto Isaac, and unto Jacob, saying, I will give it unto thy
+seed: I have caused thee to see it with thine eyes, but thou shalt not
+go over thither.
+
+34:5 So Moses the servant of the LORD died there in the land of Moab,
+according to the word of the LORD.
+
+34:6 And he buried him in a valley in the land of Moab, over against
+Bethpeor: but no man knoweth of his sepulchre unto this day.
+
+34:7 And Moses was an hundred and twenty years old when he died: his
+eye was not dim, nor his natural force abated.
+
+34:8 And the children of Israel wept for Moses in the plains of Moab
+thirty days: so the days of weeping and mourning for Moses were ended.
+
+34:9 And Joshua the son of Nun was full of the spirit of wisdom; for
+Moses had laid his hands upon him: and the children of Israel
+hearkened unto him, and did as the LORD commanded Moses.
+
+34:10 And there arose not a prophet since in Israel like unto Moses,
+whom the LORD knew face to face, 34:11 In all the signs and the
+wonders, which the LORD sent him to do in the land of Egypt to
+Pharaoh, and to all his servants, and to all his land, 34:12 And in
+all that mighty hand, and in all the great terror which Moses shewed
+in the sight of all Israel.
+
+
+
+
+The Book of Joshua
+
+
+1:1 Now after the death of Moses the servant of the LORD it came to
+pass, that the LORD spake unto Joshua the son of Nun, Moses' minister,
+saying, 1:2 Moses my servant is dead; now therefore arise, go over
+this Jordan, thou, and all this people, unto the land which I do give
+to them, even to the children of Israel.
+
+1:3 Every place that the sole of your foot shall tread upon, that have
+I given unto you, as I said unto Moses.
+
+1:4 From the wilderness and this Lebanon even unto the great river,
+the river Euphrates, all the land of the Hittites, and unto the great
+sea toward the going down of the sun, shall be your coast.
+
+1:5 There shall not any man be able to stand before thee all the days
+of thy life: as I was with Moses, so I will be with thee: I will not
+fail thee, nor forsake thee.
+
+1:6 Be strong and of a good courage: for unto this people shalt thou
+divide for an inheritance the land, which I sware unto their fathers
+to give them.
+
+1:7 Only be thou strong and very courageous, that thou mayest observe
+to do according to all the law, which Moses my servant commanded thee:
+turn not from it to the right hand or to the left, that thou mayest
+prosper withersoever thou goest.
+
+1:8 This book of the law shall not depart out of thy mouth; but thou
+shalt meditate therein day and night, that thou mayest observe to do
+according to all that is written therein: for then thou shalt make thy
+way prosperous, and then thou shalt have good success.
+
+1:9 Have not I commanded thee? Be strong and of a good courage; be not
+afraid, neither be thou dismayed: for the LORD thy God is with thee
+whithersoever thou goest.
+
+1:10 Then Joshua commanded the officers of the people, saying, 1:11
+Pass through the host, and command the people, saying, Prepare you
+victuals; for within three days ye shall pass over this Jordan, to go
+in to possess the land, which the LORD your God giveth you to possess
+it.
+
+1:12 And to the Reubenites, and to the Gadites, and to half the tribe
+of Manasseh, spake Joshua, saying, 1:13 Remember the word which Moses
+the servant of the LORD commanded you, saying, The LORD your God hath
+given you rest, and hath given you this land.
+
+1:14 Your wives, your little ones, and your cattle, shall remain in
+the land which Moses gave you on this side Jordan; but ye shall pass
+before your brethren armed, all the mighty men of valour, and help
+them; 1:15 Until the LORD have given your brethren rest, as he hath
+given you, and they also have possessed the land which the LORD your
+God giveth them: then ye shall return unto the land of your
+possession, and enjoy it, which Moses the LORD's servant gave you on
+this side Jordan toward the sunrising.
+
+1:16 And they answered Joshua, saying, All that thou commandest us we
+will do, and whithersoever thou sendest us, we will go.
+
+1:17 According as we hearkened unto Moses in all things, so will we
+hearken unto thee: only the LORD thy God be with thee, as he was with
+Moses.
+
+1:18 Whosoever he be that doth rebel against thy commandment, and will
+not hearken unto thy words in all that thou commandest him, he shall
+be put to death: only be strong and of a good courage.
+
+2:1 And Joshua the son of Nun sent out of Shittim two men to spy
+secretly, saying, Go view the land, even Jericho. And they went, and
+came into an harlot's house, named Rahab, and lodged there.
+
+2:2 And it was told the king of Jericho, saying, Behold, there came
+men in hither to night of the children of Israel to search out the
+country.
+
+2:3 And the king of Jericho sent unto Rahab, saying, Bring forth the
+men that are come to thee, which are entered into thine house: for
+they be come to search out all the country.
+
+2:4 And the woman took the two men, and hid them, and said thus, There
+came men unto me, but I wist not whence they were: 2:5 And it came to
+pass about the time of shutting of the gate, when it was dark, that
+the men went out: whither the men went I wot not: pursue after them
+quickly; for ye shall overtake them.
+
+2:6 But she had brought them up to the roof of the house, and hid them
+with the stalks of flax, which she had laid in order upon the roof.
+
+2:7 And the men pursued after them the way to Jordan unto the fords:
+and as soon as they which pursued after them were gone out, they shut
+the gate.
+
+2:8 And before they were laid down, she came up unto them upon the
+roof; 2:9 And she said unto the men, I know that the LORD hath given
+you the land, and that your terror is fallen upon us, and that all the
+inhabitants of the land faint because of you.
+
+2:10 For we have heard how the LORD dried up the water of the Red sea
+for you, when ye came out of Egypt; and what ye did unto the two kings
+of the Amorites, that were on the other side Jordan, Sihon and Og,
+whom ye utterly destroyed.
+
+2:11 And as soon as we had heard these things, our hearts did melt,
+neither did there remain any more courage in any man, because of you:
+for the LORD your God, he is God in heaven above, and in earth
+beneath.
+
+2:12 Now therefore, I pray you, swear unto me by the LORD, since I
+have shewed you kindness, that ye will also shew kindness unto my
+father's house, and give me a true token: 2:13 And that ye will save
+alive my father, and my mother, and my brethren, and my sisters, and
+all that they have, and deliver our lives from death.
+
+2:14 And the men answered her, Our life for yours, if ye utter not
+this our business. And it shall be, when the LORD hath given us the
+land, that we will deal kindly and truly with thee.
+
+2:15 Then she let them down by a cord through the window: for her
+house was upon the town wall, and she dwelt upon the wall.
+
+2:16 And she said unto them, Get you to the mountain, lest the
+pursuers meet you; and hide yourselves there three days, until the
+pursuers be returned: and afterward may ye go your way.
+
+2:17 And the men said unto her, We will be blameless of this thine
+oath which thou hast made us swear.
+
+2:18 Behold, when we come into the land, thou shalt bind this line of
+scarlet thread in the window which thou didst let us down by: and thou
+shalt bring thy father, and thy mother, and thy brethren, and all thy
+father's household, home unto thee.
+
+2:19 And it shall be, that whosoever shall go out of the doors of thy
+house into the street, his blood shall be upon his head, and we will
+be guiltless: and whosoever shall be with thee in the house, his blood
+shall be on our head, if any hand be upon him.
+
+2:20 And if thou utter this our business, then we will be quit of
+thine oath which thou hast made us to swear.
+
+2:21 And she said, According unto your words, so be it. And she sent
+them away, and they departed: and she bound the scarlet line in the
+window.
+
+2:22 And they went, and came unto the mountain, and abode there three
+days, until the pursuers were returned: and the pursuers sought them
+throughout all the way, but found them not.
+
+2:23 So the two men returned, and descended from the mountain, and
+passed over, and came to Joshua the son of Nun, and told him all
+things that befell them: 2:24 And they said unto Joshua, Truly the
+LORD hath delivered into our hands all the land; for even all the
+inhabitants of the country do faint because of us.
+
+3:1 And Joshua rose early in the morning; and they removed from
+Shittim, and came to Jordan, he and all the children of Israel, and
+lodged there before they passed over.
+
+3:2 And it came to pass after three days, that the officers went
+through the host; 3:3 And they commanded the people, saying, When ye
+see the ark of the covenant of the LORD your God, and the priests the
+Levites bearing it, then ye shall remove from your place, and go after
+it.
+
+3:4 Yet there shall be a space between you and it, about two thousand
+cubits by measure: come not near unto it, that ye may know the way by
+which ye must go: for ye have not passed this way heretofore.
+
+3:5 And Joshua said unto the people, Sanctify yourselves: for to
+morrow the LORD will do wonders among you.
+
+3:6 And Joshua spake unto the priests, saying, Take up the ark of the
+covenant, and pass over before the people. And they took up the ark of
+the covenant, and went before the people.
+
+3:7 And the LORD said unto Joshua, This day will I begin to magnify
+thee in the sight of all Israel, that they may know that, as I was
+with Moses, so I will be with thee.
+
+3:8 And thou shalt command the priests that bear the ark of the
+covenant, saying, When ye are come to the brink of the water of
+Jordan, ye shall stand still in Jordan.
+
+3:9 And Joshua said unto the children of Israel, Come hither, and hear
+the words of the LORD your God.
+
+3:10 And Joshua said, Hereby ye shall know that the living God is
+among you, and that he will without fail drive out from before you the
+Canaanites, and the Hittites, and the Hivites, and the Perizzites, and
+the Girgashites, and the Amorites, and the Jebusites.
+
+3:11 Behold, the ark of the covenant of the LORD of all the earth
+passeth over before you into Jordan.
+
+3:12 Now therefore take you twelve men out of the tribes of Israel,
+out of every tribe a man.
+
+3:13 And it shall come to pass, as soon as the soles of the feet of
+the priests that bear the ark of the LORD, the LORD of all the earth,
+shall rest in the waters of Jordan, that the waters of Jordan shall be
+cut off from the waters that come down from above; and they shall
+stand upon an heap.
+
+3:14 And it came to pass, when the people removed from their tents, to
+pass over Jordan, and the priests bearing the ark of the covenant
+before the people; 3:15 And as they that bare the ark were come unto
+Jordan, and the feet of the priests that bare the ark were dipped in
+the brim of the water, (for Jordan overfloweth all his banks all the
+time of harvest,) 3:16 That the waters which came down from above
+stood and rose up upon an heap very far from the city Adam, that is
+beside Zaretan: and those that came down toward the sea of the plain,
+even the salt sea, failed, and were cut off: and the people passed
+over right against Jericho.
+
+3:17 And the priests that bare the ark of the covenant of the LORD
+stood firm on dry ground in the midst of Jordan, and all the
+Israelites passed over on dry ground, until all the people were passed
+clean over Jordan.
+
+4:1 And it came to pass, when all the people were clean passed over
+Jordan, that the LORD spake unto Joshua, saying, 4:2 Take you twelve
+men out of the people, out of every tribe a man, 4:3 And command ye
+them, saying, Take you hence out of the midst of Jordan, out of the
+place where the priests' feet stood firm, twelve stones, and ye shall
+carry them over with you, and leave them in the lodging place, where
+ye shall lodge this night.
+
+4:4 Then Joshua called the twelve men, whom he had prepared of the
+children of Israel, out of every tribe a man: 4:5 And Joshua said unto
+them, Pass over before the ark of the LORD your God into the midst of
+Jordan, and take you up every man of you a stone upon his shoulder,
+according unto the number of the tribes of the children of Israel: 4:6
+That this may be a sign among you, that when your children ask their
+fathers in time to come, saying, What mean ye by these stones? 4:7
+Then ye shall answer them, That the waters of Jordan were cut off
+before the ark of the covenant of the LORD; when it passed over
+Jordan, the waters of Jordan were cut off: and these stones shall be
+for a memorial unto the children of Israel for ever.
+
+4:8 And the children of Israel did so as Joshua commanded, and took up
+twelve stones out of the midst of Jordan, as the LORD spake unto
+Joshua, according to the number of the tribes of the children of
+Israel, and carried them over with them unto the place where they
+lodged, and laid them down there.
+
+4:9 And Joshua set up twelve stones in the midst of Jordan, in the
+place where the feet of the priests which bare the ark of the covenant
+stood: and they are there unto this day.
+
+4:10 For the priests which bare the ark stood in the midst of Jordan,
+until everything was finished that the LORD commanded Joshua to speak
+unto the people, according to all that Moses commanded Joshua: and the
+people hasted and passed over.
+
+4:11 And it came to pass, when all the people were clean passed over,
+that the ark of the LORD passed over, and the priests, in the presence
+of the people.
+
+4:12 And the children of Reuben, and the children of Gad, and half the
+tribe of Manasseh, passed over armed before the children of Israel, as
+Moses spake unto them: 4:13 About forty thousand prepared for war
+passed over before the LORD unto battle, to the plains of Jericho.
+
+4:14 On that day the LORD magnified Joshua in the sight of all Israel;
+and they feared him, as they feared Moses, all the days of his life.
+
+4:15 And the LORD spake unto Joshua, saying, 4:16 Command the priests
+that bear the ark of the testimony, that they come up out of Jordan.
+
+4:17 Joshua therefore commanded the priests, saying, Come ye up out of
+Jordan.
+
+4:18 And it came to pass, when the priests that bare the ark of the
+covenant of the LORD were come up out of the midst of Jordan, and the
+soles of the priests' feet were lifted up unto the dry land, that the
+waters of Jordan returned unto their place, and flowed over all his
+banks, as they did before.
+
+4:19 And the people came up out of Jordan on the tenth day of the
+first month, and encamped in Gilgal, in the east border of Jericho.
+
+4:20 And those twelve stones, which they took out of Jordan, did
+Joshua pitch in Gilgal.
+
+4:21 And he spake unto the children of Israel, saying, When your
+children shall ask their fathers in time to come, saying, What mean
+these stones? 4:22 Then ye shall let your children know, saying,
+Israel came over this Jordan on dry land.
+
+4:23 For the LORD your God dried up the waters of Jordan from before
+you, until ye were passed over, as the LORD your God did to the Red
+sea, which he dried up from before us, until we were gone over: 4:24
+That all the people of the earth might know the hand of the LORD, that
+it is mighty: that ye might fear the LORD your God for ever.
+
+5:1 And it came to pass, when all the kings of the Amorites, which
+were on the side of Jordan westward, and all the kings of the
+Canaanites, which were by the sea, heard that the LORD had dried up
+the waters of Jordan from before the children of Israel, until we were
+passed over, that their heart melted, neither was there spirit in them
+any more, because of the children of Israel.
+
+5:2 At that time the LORD said unto Joshua, Make thee sharp knives,
+and circumcise again the children of Israel the second time.
+
+5:3 And Joshua made him sharp knives, and circumcised the children of
+Israel at the hill of the foreskins.
+
+5:4 And this is the cause why Joshua did circumcise: All the people
+that came out of Egypt, that were males, even all the men of war, died
+in the wilderness by the way, after they came out of Egypt.
+
+5:5 Now all the people that came out were circumcised: but all the
+people that were born in the wilderness by the way as they came forth
+out of Egypt, them they had not circumcised.
+
+5:6 For the children of Israel walked forty years in the wilderness,
+till all the people that were men of war, which came out of Egypt,
+were consumed, because they obeyed not the voice of the LORD: unto
+whom the LORD sware that he would not shew them the land, which the
+LORD sware unto their fathers that he would give us, a land that
+floweth with milk and honey.
+
+5:7 And their children, whom he raised up in their stead, them Joshua
+circumcised: for they were uncircumcised, because they had not
+circumcised them by the way.
+
+5:8 And it came to pass, when they had done circumcising all the
+people, that they abode in their places in the camp, till they were
+whole.
+
+5:9 And the LORD said unto Joshua, This day have I rolled away the
+reproach of Egypt from off you. Wherefore the name of the place is
+called Gilgal unto this day.
+
+5:10 And the children of Israel encamped in Gilgal, and kept the
+passover on the fourteenth day of the month at even in the plains of
+Jericho.
+
+5:11 And they did eat of the old corn of the land on the morrow after
+the passover, unleavened cakes, and parched corn in the selfsame day.
+
+5:12 And the manna ceased on the morrow after they had eaten of the
+old corn of the land; neither had the children of Israel manna any
+more; but they did eat of the fruit of the land of Canaan that year.
+
+5:13 And it came to pass, when Joshua was by Jericho, that he lifted
+up his eyes and looked, and, behold, there stood a man over against
+him with his sword drawn in his hand: and Joshua went unto him, and
+said unto him, Art thou for us, or for our adversaries? 5:14 And he
+said, Nay; but as captain of the host of the LORD am I now come. And
+Joshua fell on his face to the earth, and did worship, and said unto
+him, What saith my Lord unto his servant? 5:15 And the captain of the
+LORD's host said unto Joshua, Loose thy shoe from off thy foot; for
+the place whereon thou standest is holy. And Joshua did so.
+
+6:1 Now Jericho was straitly shut up because of the children of
+Israel: none went out, and none came in.
+
+6:2 And the LORD said unto Joshua, See, I have given into thine hand
+Jericho, and the king thereof, and the mighty men of valour.
+
+6:3 And ye shall compass the city, all ye men of war, and go round
+about the city once. Thus shalt thou do six days.
+
+6:4 And seven priests shall bear before the ark seven trumpets of
+rams' horns: and the seventh day ye shall compass the city seven
+times, and the priests shall blow with the trumpets.
+
+6:5 And it shall come to pass, that when they make a long blast with
+the ram's horn, and when ye hear the sound of the trumpet, all the
+people shall shout with a great shout; and the wall of the city shall
+fall down flat, and the people shall ascend up every man straight
+before him.
+
+6:6 And Joshua the son of Nun called the priests, and said unto them,
+Take up the ark of the covenant, and let seven priests bear seven
+trumpets of rams' horns before the ark of the LORD.
+
+6:7 And he said unto the people, Pass on, and compass the city, and
+let him that is armed pass on before the ark of the LORD.
+
+6:8 And it came to pass, when Joshua had spoken unto the people, that
+the seven priests bearing the seven trumpets of rams' horns passed on
+before the LORD, and blew with the trumpets: and the ark of the
+covenant of the LORD followed them.
+
+6:9 And the armed men went before the priests that blew with the
+trumpets, and the rereward came after the ark, the priests going on,
+and blowing with the trumpets.
+
+6:10 And Joshua had commanded the people, saying, Ye shall not shout,
+nor make any noise with your voice, neither shall any word proceed out
+of your mouth, until the day I bid you shout; then shall ye shout.
+
+6:11 So the ark of the LORD compassed the city, going about it once:
+and they came into the camp, and lodged in the camp.
+
+6:12 And Joshua rose early in the morning, and the priests took up the
+ark of the LORD.
+
+6:13 And seven priests bearing seven trumpets of rams' horns before
+the ark of the LORD went on continually, and blew with the trumpets:
+and the armed men went before them; but the rereward came after the
+ark of the LORD, the priests going on, and blowing with the trumpets.
+
+6:14 And the second day they compassed the city once, and returned
+into the camp: so they did six days.
+
+6:15 And it came to pass on the seventh day, that they rose early
+about the dawning of the day, and compassed the city after the same
+manner seven times: only on that day they compassed the city seven
+times.
+
+6:16 And it came to pass at the seventh time, when the priests blew
+with the trumpets, Joshua said unto the people, Shout; for the LORD
+hath given you the city.
+
+6:17 And the city shall be accursed, even it, and all that are
+therein, to the LORD: only Rahab the harlot shall live, she and all
+that are with her in the house, because she hid the messengers that we
+sent.
+
+6:18 And ye, in any wise keep yourselves from the accursed thing, lest
+ye make yourselves accursed, when ye take of the accursed thing, and
+make the camp of Israel a curse, and trouble it.
+
+6:19 But all the silver, and gold, and vessels of brass and iron, are
+consecrated unto the LORD: they shall come into the treasury of the
+LORD.
+
+6:20 So the people shouted when the priests blew with the trumpets:
+and it came to pass, when the people heard the sound of the trumpet,
+and the people shouted with a great shout, that the wall fell down
+flat, so that the people went up into the city, every man straight
+before him, and they took the city.
+
+6:21 And they utterly destroyed all that was in the city, both man and
+woman, young and old, and ox, and sheep, and ass, with the edge of the
+sword.
+
+6:22 But Joshua had said unto the two men that had spied out the
+country, Go into the harlot's house, and bring out thence the woman,
+and all that she hath, as ye sware unto her.
+
+6:23 And the young men that were spies went in, and brought out Rahab,
+and her father, and her mother, and her brethren, and all that she
+had; and they brought out all her kindred, and left them without the
+camp of Israel.
+
+6:24 And they burnt the city with fire, and all that was therein: only
+the silver, and the gold, and the vessels of brass and of iron, they
+put into the treasury of the house of the LORD.
+
+6:25 And Joshua saved Rahab the harlot alive, and her father's
+household, and all that she had; and she dwelleth in Israel even unto
+this day; because she hid the messengers, which Joshua sent to spy out
+Jericho.
+
+6:26 And Joshua adjured them at that time, saying, Cursed be the man
+before the LORD, that riseth up and buildeth this city Jericho: he
+shall lay the foundation thereof in his firstborn, and in his youngest
+son shall he set up the gates of it.
+
+6:27 So the LORD was with Joshua; and his fame was noised throughout
+all the country.
+
+7:1 But the children of Israel committed a trespass in the accursed
+thing: for Achan, the son of Carmi, the son of Zabdi, the son of
+Zerah, of the tribe of Judah, took of the accursed thing: and the
+anger of the LORD was kindled against the children of Israel.
+
+7:2 And Joshua sent men from Jericho to Ai, which is beside Bethaven,
+on the east of Bethel, and spake unto them, saying, Go up and view the
+country.
+
+And the men went up and viewed Ai.
+
+7:3 And they returned to Joshua, and said unto him, Let not all the
+people go up; but let about two or three thousand men go up and smite
+Ai; and make not all the people to labour thither; for they are but
+few.
+
+7:4 So there went up thither of the people about three thousand men:
+and they fled before the men of Ai.
+
+7:5 And the men of Ai smote of them about thirty and six men: for they
+chased them from before the gate even unto Shebarim, and smote them in
+the going down: wherefore the hearts of the people melted, and became
+as water.
+
+7:6 And Joshua rent his clothes, and fell to the earth upon his face
+before the ark of the LORD until the eventide, he and the elders of
+Israel, and put dust upon their heads.
+
+7:7 And Joshua said, Alas, O LORD God, wherefore hast thou at all
+brought this people over Jordan, to deliver us into the hand of the
+Amorites, to destroy us? would to God we had been content, and dwelt
+on the other side Jordan! 7:8 O LORD, what shall I say, when Israel
+turneth their backs before their enemies! 7:9 For the Canaanites and
+all the inhabitants of the land shall hear of it, and shall environ us
+round, and cut off our name from the earth: and what wilt thou do unto
+thy great name? 7:10 And the LORD said unto Joshua, Get thee up;
+wherefore liest thou thus upon thy face? 7:11 Israel hath sinned, and
+they have also transgressed my covenant which I commanded them: for
+they have even taken of the accursed thing, and have also stolen, and
+dissembled also, and they have put it even among their own stuff.
+
+7:12 Therefore the children of Israel could not stand before their
+enemies, but turned their backs before their enemies, because they
+were accursed: neither will I be with you any more, except ye destroy
+the accursed from among you.
+
+7:13 Up, sanctify the people, and say, Sanctify yourselves against to
+morrow: for thus saith the LORD God of Israel, There is an accursed
+thing in the midst of thee, O Israel: thou canst not stand before
+thine enemies, until ye take away the accursed thing from among you.
+
+7:14 In the morning therefore ye shall be brought according to your
+tribes: and it shall be, that the tribe which the LORD taketh shall
+come according to the families thereof; and the family which the LORD
+shall take shall come by households; and the household which the LORD
+shall take shall come man by man.
+
+7:15 And it shall be, that he that is taken with the accursed thing
+shall be burnt with fire, he and all that he hath: because he hath
+transgressed the covenant of the LORD, and because he hath wrought
+folly in Israel.
+
+7:16 So Joshua rose up early in the morning, and brought Israel by
+their tribes; and the tribe of Judah was taken: 7:17 And he brought
+the family of Judah; and he took the family of the Zarhites: and he
+brought the family of the Zarhites man by man; and Zabdi was taken:
+7:18 And he brought his household man by man; and Achan, the son of
+Carmi, the son of Zabdi, the son of Zerah, of the tribe of Judah, was
+taken.
+
+7:19 And Joshua said unto Achan, My son, give, I pray thee, glory to
+the LORD God of Israel, and make confession unto him; and tell me now
+what thou hast done; hide it not from me.
+
+7:20 And Achan answered Joshua, and said, Indeed I have sinned against
+the LORD God of Israel, and thus and thus have I done: 7:21 When I saw
+among the spoils a goodly Babylonish garment, and two hundred shekels
+of silver, and a wedge of gold of fifty shekels weight, then I coveted
+them, and took them; and, behold, they are hid in the earth in the
+midst of my tent, and the silver under it.
+
+7:22 So Joshua sent messengers, and they ran unto the tent; and,
+behold, it was hid in his tent, and the silver under it.
+
+7:23 And they took them out of the midst of the tent, and brought them
+unto Joshua, and unto all the children of Israel, and laid them out
+before the LORD.
+
+7:24 And Joshua, and all Israel with him, took Achan the son of Zerah,
+and the silver, and the garment, and the wedge of gold, and his sons,
+and his daughters, and his oxen, and his asses, and his sheep, and his
+tent, and all that he had: and they brought them unto the valley of
+Achor.
+
+7:25 And Joshua said, Why hast thou troubled us? the LORD shall
+trouble thee this day. And all Israel stoned him with stones, and
+burned them with fire, after they had stoned them with stones.
+
+7:26 And they raised over him a great heap of stones unto this day. So
+the LORD turned from the fierceness of his anger. Wherefore the name
+of that place was called, The valley of Achor, unto this day.
+
+8:1 And the LORD said unto Joshua, Fear not, neither be thou dismayed:
+take all the people of war with thee, and arise, go up to Ai: see, I
+have given into thy hand the king of Ai, and his people, and his city,
+and his land: 8:2 And thou shalt do to Ai and her king as thou didst
+unto Jericho and her king: only the spoil thereof, and the cattle
+thereof, shall ye take for a prey unto yourselves: lay thee an ambush
+for the city behind it.
+
+8:3 So Joshua arose, and all the people of war, to go up against Ai:
+and Joshua chose out thirty thousand mighty men of valour, and sent
+them away by night.
+
+8:4 And he commanded them, saying, Behold, ye shall lie in wait
+against the city, even behind the city: go not very far from the city,
+but be ye all ready: 8:5 And I, and all the people that are with me,
+will approach unto the city: and it shall come to pass, when they come
+out against us, as at the first, that we will flee before them, 8:6
+(For they will come out after us) till we have drawn them from the
+city; for they will say, They flee before us, as at the first:
+therefore we will flee before them.
+
+8:7 Then ye shall rise up from the ambush, and seize upon the city:
+for the LORD your God will deliver it into your hand.
+
+8:8 And it shall be, when ye have taken the city, that ye shall set
+the city on fire: according to the commandment of the LORD shall ye
+do. See, I have commanded you.
+
+8:9 Joshua therefore sent them forth: and they went to lie in ambush,
+and abode between Bethel and Ai, on the west side of Ai: but Joshua
+lodged that night among the people.
+
+8:10 And Joshua rose up early in the morning, and numbered the people,
+and went up, he and the elders of Israel, before the people to Ai.
+
+8:11 And all the people, even the people of war that were with him,
+went up, and drew nigh, and came before the city, and pitched on the
+north side of Ai: now there was a valley between them and Ai.
+
+8:12 And he took about five thousand men, and set them to lie in
+ambush between Bethel and Ai, on the west side of the city.
+
+8:13 And when they had set the people, even all the host that was on
+the north of the city, and their liers in wait on the west of the
+city, Joshua went that night into the midst of the valley.
+
+8:14 And it came to pass, when the king of Ai saw it, that they hasted
+and rose up early, and the men of the city went out against Israel to
+battle, he and all his people, at a time appointed, before the plain;
+but he wist not that there were liers in ambush against him behind the
+city.
+
+8:15 And Joshua and all Israel made as if they were beaten before
+them, and fled by the way of the wilderness.
+
+8:16 And all the people that were in Ai were called together to pursue
+after them: and they pursued after Joshua, and were drawn away from
+the city.
+
+8:17 And there was not a man left in Ai or Bethel, that went not out
+after Israel: and they left the city open, and pursued after Israel.
+
+8:18 And the LORD said unto Joshua, Stretch out the spear that is in
+thy hand toward Ai; for I will give it into thine hand. And Joshua
+stretched out the spear that he had in his hand toward the city.
+
+8:19 And the ambush arose quickly out of their place, and they ran as
+soon as he had stretched out his hand: and they entered into the city,
+and took it, and hasted and set the city on fire.
+
+8:20 And when the men of Ai looked behind them, they saw, and, behold,
+the smoke of the city ascended up to heaven, and they had no power to
+flee this way or that way: and the people that fled to the wilderness
+turned back upon the pursuers.
+
+8:21 And when Joshua and all Israel saw that the ambush had taken the
+city, and that the smoke of the city ascended, then they turned again,
+and slew the men of Ai.
+
+8:22 And the other issued out of the city against them; so they were
+in the midst of Israel, some on this side, and some on that side: and
+they smote them, so that they let none of them remain or escape.
+
+8:23 And the king of Ai they took alive, and brought him to Joshua.
+
+8:24 And it came to pass, when Israel had made an end of slaying all
+the inhabitants of Ai in the field, in the wilderness wherein they
+chased them, and when they were all fallen on the edge of the sword,
+until they were consumed, that all the Israelites returned unto Ai,
+and smote it with the edge of the sword.
+
+8:25 And so it was, that all that fell that day, both of men and
+women, were twelve thousand, even all the men of Ai.
+
+8:26 For Joshua drew not his hand back, wherewith he stretched out the
+spear, until he had utterly destroyed all the inhabitants of Ai.
+
+8:27 Only the cattle and the spoil of that city Israel took for a prey
+unto themselves, according unto the word of the LORD which he
+commanded Joshua.
+
+8:28 And Joshua burnt Ai, and made it an heap for ever, even a
+desolation unto this day.
+
+8:29 And the king of Ai he hanged on a tree until eventide: and as
+soon as the sun was down, Joshua commanded that they should take his
+carcase down from the tree, and cast it at the entering of the gate of
+the city, and raise thereon a great heap of stones, that remaineth
+unto this day.
+
+8:30 Then Joshua built an altar unto the LORD God of Israel in mount
+Ebal, 8:31 As Moses the servant of the LORD commanded the children of
+Israel, as it is written in the book of the law of Moses, an altar of
+whole stones, over which no man hath lift up any iron: and they
+offered thereon burnt offerings unto the LORD, and sacrificed peace
+offerings.
+
+8:32 And he wrote there upon the stones a copy of the law of Moses,
+which he wrote in the presence of the children of Israel.
+
+8:33 And all Israel, and their elders, and officers, and their judges,
+stood on this side the ark and on that side before the priests the
+Levites, which bare the ark of the covenant of the LORD, as well the
+stranger, as he that was born among them; half of them over against
+mount Gerizim, and half of them over against mount Ebal; as Moses the
+servant of the LORD had commanded before, that they should bless the
+people of Israel.
+
+8:34 And afterward he read all the words of the law, the blessings and
+cursings, according to all that is written in the book of the law.
+
+8:35 There was not a word of all that Moses commanded, which Joshua
+read not before all the congregation of Israel, with the women, and
+the little ones, and the strangers that were conversant among them.
+
+9:1 And it came to pass, when all the kings which were on this side
+Jordan, in the hills, and in the valleys, and in all the coasts of the
+great sea over against Lebanon, the Hittite, and the Amorite, the
+Canaanite, the Perizzite, the Hivite, and the Jebusite, heard thereof;
+9:2 That they gathered themselves together, to fight with Joshua and
+with Israel, with one accord.
+
+9:3 And when the inhabitants of Gibeon heard what Joshua had done unto
+Jericho and to Ai, 9:4 They did work wilily, and went and made as if
+they had been ambassadors, and took old sacks upon their asses, and
+wine bottles, old, and rent, and bound up; 9:5 And old shoes and
+clouted upon their feet, and old garments upon them; and all the bread
+of their provision was dry and mouldy.
+
+9:6 And they went to Joshua unto the camp at Gilgal, and said unto
+him, and to the men of Israel, We be come from a far country: now
+therefore make ye a league with us.
+
+9:7 And the men of Israel said unto the Hivites, Peradventure ye dwell
+among us; and how shall we make a league with you? 9:8 And they said
+unto Joshua, We are thy servants. And Joshua said unto them, Who are
+ye? and from whence come ye? 9:9 And they said unto him, From a very
+far country thy servants are come because of the name of the LORD thy
+God: for we have heard the fame of him, and all that he did in Egypt,
+9:10 And all that he did to the two kings of the Amorites, that were
+beyond Jordan, to Sihon king of Heshbon, and to Og king of Bashan,
+which was at Ashtaroth.
+
+9:11 Wherefore our elders and all the inhabitants of our country spake
+to us, saying, Take victuals with you for the journey, and go to meet
+them, and say unto them, We are your servants: therefore now make ye a
+league with us.
+
+9:12 This our bread we took hot for our provision out of our houses on
+the day we came forth to go unto you; but now, behold, it is dry, and
+it is mouldy: 9:13 And these bottles of wine, which we filled, were
+new; and, behold, they be rent: and these our garments and our shoes
+are become old by reason of the very long journey.
+
+9:14 And the men took of their victuals, and asked not counsel at the
+mouth of the LORD.
+
+9:15 And Joshua made peace with them, and made a league with them, to
+let them live: and the princes of the congregation sware unto them.
+
+9:16 And it came to pass at the end of three days after they had made
+a league with them, that they heard that they were their neighbours,
+and that they dwelt among them.
+
+9:17 And the children of Israel journeyed, and came unto their cities
+on the third day. Now their cities were Gibeon, and Chephirah, and
+Beeroth, and Kirjathjearim.
+
+9:18 And the children of Israel smote them not, because the princes of
+the congregation had sworn unto them by the LORD God of Israel. And
+all the congregation murmured against the princes.
+
+9:19 But all the princes said unto all the congregation, We have sworn
+unto them by the LORD God of Israel: now therefore we may not touch
+them.
+
+9:20 This we will do to them; we will even let them live, lest wrath
+be upon us, because of the oath which we sware unto them.
+
+9:21 And the princes said unto them, Let them live; but let them be
+hewers of wood and drawers of water unto all the congregation; as the
+princes had promised them.
+
+9:22 And Joshua called for them, and he spake unto them, saying,
+Wherefore have ye beguiled us, saying, We are very far from you; when
+ye dwell among us? 9:23 Now therefore ye are cursed, and there shall
+none of you be freed from being bondmen, and hewers of wood and
+drawers of water for the house of my God.
+
+9:24 And they answered Joshua, and said, Because it was certainly told
+thy servants, how that the LORD thy God commanded his servant Moses to
+give you all the land, and to destroy all the inhabitants of the land
+from before you, therefore we were sore afraid of our lives because of
+you, and have done this thing.
+
+9:25 And now, behold, we are in thine hand: as it seemeth good and
+right unto thee to do unto us, do.
+
+9:26 And so did he unto them, and delivered them out of the hand of
+the children of Israel, that they slew them not.
+
+9:27 And Joshua made them that day hewers of wood and drawers of water
+for the congregation, and for the altar of the LORD, even unto this
+day, in the place which he should choose.
+
+10:1 Now it came to pass, when Adonizedec king of Jerusalem had heard
+how Joshua had taken Ai, and had utterly destroyed it; as he had done
+to Jericho and her king, so he had done to Ai and her king; and how
+the inhabitants of Gibeon had made peace with Israel, and were among
+them; 10:2 That they feared greatly, because Gibeon was a great city,
+as one of the royal cities, and because it was greater than Ai, and
+all the men thereof were mighty.
+
+10:3 Wherefore Adonizedec king of Jerusalem, sent unto Hoham king of
+Hebron, and unto Piram king of Jarmuth, and unto Japhia king of
+Lachish, and unto Debir king of Eglon, saying, 10:4 Come up unto me,
+and help me, that we may smite Gibeon: for it hath made peace with
+Joshua and with the children of Israel.
+
+10:5 Therefore the five kings of the Amorites, the king of Jerusalem,
+the king of Hebron, the king of Jarmuth, the king of Lachish, the king
+of Eglon, gathered themselves together, and went up, they and all
+their hosts, and encamped before Gibeon, and made war against it.
+
+10:6 And the men of Gibeon sent unto Joshua to the camp to Gilgal,
+saying, Slack not thy hand from thy servants; come up to us quickly,
+and save us, and help us: for all the kings of the Amorites that dwell
+in the mountains are gathered together against us.
+
+10:7 So Joshua ascended from Gilgal, he, and all the people of war
+with him, and all the mighty men of valour.
+
+10:8 And the LORD said unto Joshua, Fear them not: for I have
+delivered them into thine hand; there shall not a man of them stand
+before thee.
+
+10:9 Joshua therefore came unto them suddenly, and went up from Gilgal
+all night.
+
+10:10 And the LORD discomfited them before Israel, and slew them with
+a great slaughter at Gibeon, and chased them along the way that goeth
+up to Bethhoron, and smote them to Azekah, and unto Makkedah.
+
+10:11 And it came to pass, as they fled from before Israel, and were
+in the going down to Bethhoron, that the LORD cast down great stones
+from heaven upon them unto Azekah, and they died: they were more which
+died with hailstones than they whom the children of Israel slew with
+the sword.
+
+10:12 Then spake Joshua to the LORD in the day when the LORD delivered
+up the Amorites before the children of Israel, and he said in the
+sight of Israel, Sun, stand thou still upon Gibeon; and thou, Moon, in
+the valley of Ajalon.
+
+10:13 And the sun stood still, and the moon stayed, until the people
+had avenged themselves upon their enemies. Is not this written in the
+book of Jasher? So the sun stood still in the midst of heaven, and
+hasted not to go down about a whole day.
+
+10:14 And there was no day like that before it or after it, that the
+LORD hearkened unto the voice of a man: for the LORD fought for
+Israel.
+
+10:15 And Joshua returned, and all Israel with him, unto the camp to
+Gilgal.
+
+10:16 But these five kings fled, and hid themselves in a cave at
+Makkedah.
+
+10:17 And it was told Joshua, saying, The five kings are found hid in
+a cave at Makkedah.
+
+10:18 And Joshua said, Roll great stones upon the mouth of the cave,
+and set men by it for to keep them: 10:19 And stay ye not, but pursue
+after your enemies, and smite the hindmost of them; suffer them not to
+enter into their cities: for the LORD your God hath delivered them
+into your hand.
+
+10:20 And it came to pass, when Joshua and the children of Israel had
+made an end of slaying them with a very great slaughter, till they
+were consumed, that the rest which remained of them entered into
+fenced cities.
+
+10:21 And all the people returned to the camp to Joshua at Makkedah in
+peace: none moved his tongue against any of the children of Israel.
+
+10:22 Then said Joshua, Open the mouth of the cave, and bring out
+those five kings unto me out of the cave.
+
+10:23 And they did so, and brought forth those five kings unto him out
+of the cave, the king of Jerusalem, the king of Hebron, the king of
+Jarmuth, the king of Lachish, and the king of Eglon.
+
+10:24 And it came to pass, when they brought out those kings unto
+Joshua, that Joshua called for all the men of Israel, and said unto
+the captains of the men of war which went with him, Come near, put
+your feet upon the necks of these kings. And they came near, and put
+their feet upon the necks of them.
+
+10:25 And Joshua said unto them, Fear not, nor be dismayed, be strong
+and of good courage: for thus shall the LORD do to all your enemies
+against whom ye fight.
+
+10:26 And afterward Joshua smote them, and slew them, and hanged them
+on five trees: and they were hanging upon the trees until the evening.
+
+10:27 And it came to pass at the time of the going down of the sun,
+that Joshua commanded, and they took them down off the trees, and cast
+them into the cave wherein they had been hid, and laid great stones in
+the cave's mouth, which remain until this very day.
+
+10:28 And that day Joshua took Makkedah, and smote it with the edge of
+the sword, and the king thereof he utterly destroyed, them, and all
+the souls that were therein; he let none remain: and he did to the
+king of Makkedah as he did unto the king of Jericho.
+
+10:29 Then Joshua passed from Makkedah, and all Israel with him, unto
+Libnah, and fought against Libnah: 10:30 And the LORD delivered it
+also, and the king thereof, into the hand of Israel; and he smote it
+with the edge of the sword, and all the souls that were therein; he
+let none remain in it; but did unto the king thereof as he did unto
+the king of Jericho.
+
+10:31 And Joshua passed from Libnah, and all Israel with him, unto
+Lachish, and encamped against it, and fought against it: 10:32 And the
+LORD delivered Lachish into the hand of Israel, which took it on the
+second day, and smote it with the edge of the sword, and all the souls
+that were therein, according to all that he had done to Libnah.
+
+10:33 Then Horam king of Gezer came up to help Lachish; and Joshua
+smote him and his people, until he had left him none remaining.
+
+10:34 And from Lachish Joshua passed unto Eglon, and all Israel with
+him; and they encamped against it, and fought against it: 10:35 And
+they took it on that day, and smote it with the edge of the sword, and
+all the souls that were therein he utterly destroyed that day,
+according to all that he had done to Lachish.
+
+10:36 And Joshua went up from Eglon, and all Israel with him, unto
+Hebron; and they fought against it: 10:37 And they took it, and smote
+it with the edge of the sword, and the king thereof, and all the
+cities thereof, and all the souls that were therein; he left none
+remaining, according to all that he had done to Eglon; but destroyed
+it utterly, and all the souls that were therein.
+
+10:38 And Joshua returned, and all Israel with him, to Debir; and
+fought against it: 10:39 And he took it, and the king thereof, and all
+the cities thereof; and they smote them with the edge of the sword,
+and utterly destroyed all the souls that were therein; he left none
+remaining: as he had done to Hebron, so he did to Debir, and to the
+king thereof; as he had done also to Libnah, and to her king.
+
+10:40 So Joshua smote all the country of the hills, and of the south,
+and of the vale, and of the springs, and all their kings: he left none
+remaining, but utterly destroyed all that breathed, as the LORD God of
+Israel commanded.
+
+10:41 And Joshua smote them from Kadeshbarnea even unto Gaza, and all
+the country of Goshen, even unto Gibeon.
+
+10:42 And all these kings and their land did Joshua take at one time,
+because the LORD God of Israel fought for Israel.
+
+10:43 And Joshua returned, and all Israel with him, unto the camp to
+Gilgal.
+
+11:1 And it came to pass, when Jabin king of Hazor had heard those
+things, that he sent to Jobab king of Madon, and to the king of
+Shimron, and to the king of Achshaph, 11:2 And to the kings that were
+on the north of the mountains, and of the plains south of Chinneroth,
+and in the valley, and in the borders of Dor on the west, 11:3 And to
+the Canaanite on the east and on the west, and to the Amorite, and the
+Hittite, and the Perizzite, and the Jebusite in the mountains, and to
+the Hivite under Hermon in the land of Mizpeh.
+
+11:4 And they went out, they and all their hosts with them, much
+people, even as the sand that is upon the sea shore in multitude, with
+horses and chariots very many.
+
+11:5 And when all these kings were met together, they came and pitched
+together at the waters of Merom, to fight against Israel.
+
+11:6 And the LORD said unto Joshua, Be not afraid because of them: for
+to morrow about this time will I deliver them up all slain before
+Israel: thou shalt hough their horses, and burn their chariots with
+fire.
+
+11:7 So Joshua came, and all the people of war with him, against them
+by the waters of Merom suddenly; and they fell upon them.
+
+11:8 And the LORD delivered them into the hand of Israel, who smote
+them, and chased them unto great Zidon, and unto Misrephothmaim, and
+unto the valley of Mizpeh eastward; and they smote them, until they
+left them none remaining.
+
+11:9 And Joshua did unto them as the LORD bade him: he houghed their
+horses, and burnt their chariots with fire.
+
+11:10 And Joshua at that time turned back, and took Hazor, and smote
+the king thereof with the sword: for Hazor beforetime was the head of
+all those kingdoms.
+
+11:11 And they smote all the souls that were therein with the edge of
+the sword, utterly destroying them: there was not any left to breathe:
+and he burnt Hazor with fire.
+
+11:12 And all the cities of those kings, and all the kings of them,
+did Joshua take, and smote them with the edge of the sword, and he
+utterly destroyed them, as Moses the servant of the LORD commanded.
+
+11:13 But as for the cities that stood still in their strength, Israel
+burned none of them, save Hazor only; that did Joshua burn.
+
+11:14 And all the spoil of these cities, and the cattle, the children
+of Israel took for a prey unto themselves; but every man they smote
+with the edge of the sword, until they had destroyed them, neither
+left they any to breathe.
+
+11:15 As the LORD commanded Moses his servant, so did Moses command
+Joshua, and so did Joshua; he left nothing undone of all that the LORD
+commanded Moses.
+
+11:16 So Joshua took all that land, the hills, and all the south
+country, and all the land of Goshen, and the valley, and the plain,
+and the mountain of Israel, and the valley of the same; 11:17 Even
+from the mount Halak, that goeth up to Seir, even unto Baalgad in the
+valley of Lebanon under mount Hermon: and all their kings he took, and
+smote them, and slew them.
+
+11:18 Joshua made war a long time with all those kings.
+
+11:19 There was not a city that made peace with the children of
+Israel, save the Hivites the inhabitants of Gibeon: all other they
+took in battle.
+
+11:20 For it was of the LORD to harden their hearts, that they should
+come against Israel in battle, that he might destroy them utterly, and
+that they might have no favour, but that he might destroy them, as the
+LORD commanded Moses.
+
+11:21 And at that time came Joshua, and cut off the Anakims from the
+mountains, from Hebron, from Debir, from Anab, and from all the
+mountains of Judah, and from all the mountains of Israel: Joshua
+destroyed them utterly with their cities.
+
+11:22 There was none of the Anakims left in the land of the children
+of Israel: only in Gaza, in Gath, and in Ashdod, there remained.
+
+11:23 So Joshua took the whole land, according to all that the LORD
+said unto Moses; and Joshua gave it for an inheritance unto Israel
+according to their divisions by their tribes. And the land rested from
+war.
+
+12:1 Now these are the kings of the land, which the children of Israel
+smote, and possessed their land on the other side Jordan toward the
+rising of the sun, from the river Arnon unto mount Hermon, and all the
+plain on the east: 12:2 Sihon king of the Amorites, who dwelt in
+Heshbon, and ruled from Aroer, which is upon the bank of the river
+Arnon, and from the middle of the river, and from half Gilead, even
+unto the river Jabbok, which is the border of the children of Ammon;
+12:3 And from the plain to the sea of Chinneroth on the east, and unto
+the sea of the plain, even the salt sea on the east, the way to
+Bethjeshimoth; and from the south, under Ashdothpisgah: 12:4 And the
+coast of Og king of Bashan, which was of the remnant of the giants,
+that dwelt at Ashtaroth and at Edrei, 12:5 And reigned in mount
+Hermon, and in Salcah, and in all Bashan, unto the border of the
+Geshurites and the Maachathites, and half Gilead, the border of Sihon
+king of Heshbon.
+
+12:6 Them did Moses the servant of the LORD and the children of Israel
+smite: and Moses the servant of the LORD gave it for a possession unto
+the Reubenites, and the Gadites, and the half tribe of Manasseh.
+
+12:7 And these are the kings of the country which Joshua and the
+children of Israel smote on this side Jordan on the west, from Baalgad
+in the valley of Lebanon even unto the mount Halak, that goeth up to
+Seir; which Joshua gave unto the tribes of Israel for a possession
+according to their divisions; 12:8 In the mountains, and in the
+valleys, and in the plains, and in the springs, and in the wilderness,
+and in the south country; the Hittites, the Amorites, and the
+Canaanites, the Perizzites, the Hivites, and the Jebusites: 12:9 The
+king of Jericho, one; the king of Ai, which is beside Bethel, one;
+12:10 The king of Jerusalem, one; the king of Hebron, one; 12:11 The
+king of Jarmuth, one; the king of Lachish, one; 12:12 The king of
+Eglon, one; the king of Gezer, one; 12:13 The king of Debir, one; the
+king of Geder, one; 12:14 The king of Hormah, one; the king of Arad,
+one; 12:15 The king of Libnah, one; the king of Adullam, one; 12:16
+The king of Makkedah, one; the king of Bethel, one; 12:17 The king of
+Tappuah, one; the king of Hepher, one; 12:18 The king of Aphek, one;
+the king of Lasharon, one; 12:19 The king of Madon, one; the king of
+Hazor, one; 12:20 The king of Shimronmeron, one; the king of Achshaph,
+one; 12:21 The king of Taanach, one; the king of Megiddo, one; 12:22
+The king of Kedesh, one; the king of Jokneam of Carmel, one; 12:23 The
+king of Dor in the coast of Dor, one; the king of the nations of
+Gilgal, one; 12:24 The king of Tirzah, one: all the kings thirty and
+one.
+
+13:1 Now Joshua was old and stricken in years; and the LORD said unto
+him, Thou art old and stricken in years, and there remaineth yet very
+much land to be possessed.
+
+13:2 This is the land that yet remaineth: all the borders of the
+Philistines, and all Geshuri, 13:3 From Sihor, which is before Egypt,
+even unto the borders of Ekron northward, which is counted to the
+Canaanite: five lords of the Philistines; the Gazathites, and the
+Ashdothites, the Eshkalonites, the Gittites, and the Ekronites; also
+the Avites: 13:4 From the south, all the land of the Canaanites, and
+Mearah that is beside the Sidonians unto Aphek, to the borders of the
+Amorites: 13:5 And the land of the Giblites, and all Lebanon, toward
+the sunrising, from Baalgad under mount Hermon unto the entering into
+Hamath.
+
+13:6 All the inhabitants of the hill country from Lebanon unto
+Misrephothmaim, and all the Sidonians, them will I drive out from
+before the children of Israel: only divide thou it by lot unto the
+Israelites for an inheritance, as I have commanded thee.
+
+13:7 Now therefore divide this land for an inheritance unto the nine
+tribes, and the half tribe of Manasseh, 13:8 With whom the Reubenites
+and the Gadites have received their inheritance, which Moses gave
+them, beyond Jordan eastward, even as Moses the servant of the LORD
+gave them; 13:9 From Aroer, that is upon the bank of the river Arnon,
+and the city that is in the midst of the river, and all the plain of
+Medeba unto Dibon; 13:10 And all the cities of Sihon king of the
+Amorites, which reigned in Heshbon, unto the border of the children of
+Ammon; 13:11 And Gilead, and the border of the Geshurites and
+Maachathites, and all mount Hermon, and all Bashan unto Salcah; 13:12
+All the kingdom of Og in Bashan, which reigned in Ashtaroth and in
+Edrei, who remained of the remnant of the giants: for these did Moses
+smite, and cast them out.
+
+13:13 Nevertheless the children of Israel expelled not the Geshurites,
+nor the Maachathites: but the Geshurites and the Maachathites dwell
+among the Israelites until this day.
+
+13:14 Only unto the tribes of Levi he gave none inheritance; the
+sacrifices of the LORD God of Israel made by fire are their
+inheritance, as he said unto them.
+
+13:15 And Moses gave unto the tribe of the children of Reuben
+inheritance according to their families.
+
+13:16 And their coast was from Aroer, that is on the bank of the river
+Arnon, and the city that is in the midst of the river, and all the
+plain by Medeba; 13:17 Heshbon, and all her cities that are in the
+plain; Dibon, and Bamothbaal, and Bethbaalmeon, 13:18 And Jahaza, and
+Kedemoth, and Mephaath, 13:19 And Kirjathaim, and Sibmah, and
+Zarethshahar in the mount of the valley, 13:20 And Bethpeor, and
+Ashdothpisgah, and Bethjeshimoth, 13:21 And all the cities of the
+plain, and all the kingdom of Sihon king of the Amorites, which
+reigned in Heshbon, whom Moses smote with the princes of Midian, Evi,
+and Rekem, and Zur, and Hur, and Reba, which were dukes of Sihon,
+dwelling in the country.
+
+13:22 Balaam also the son of Beor, the soothsayer, did the children of
+Israel slay with the sword among them that were slain by them.
+
+13:23 And the border of the children of Reuben was Jordan, and the
+border thereof. This was the inheritance of the children of Reuben
+after their families, the cities and the villages thereof.
+
+13:24 And Moses gave inheritance unto the tribe of Gad, even unto the
+children of Gad according to their families.
+
+13:25 And their coast was Jazer, and all the cities of Gilead, and
+half the land of the children of Ammon, unto Aroer that is before
+Rabbah; 13:26 And from Heshbon unto Ramathmizpeh, and Betonim; and
+from Mahanaim unto the border of Debir; 13:27 And in the valley,
+Betharam, and Bethnimrah, and Succoth, and Zaphon, the rest of the
+kingdom of Sihon king of Heshbon, Jordan and his border, even unto the
+edge of the sea of Chinnereth on the other side Jordan eastward.
+
+13:28 This is the inheritance of the children of Gad after their
+families, the cities, and their villages.
+
+13:29 And Moses gave inheritance unto the half tribe of Manasseh: and
+this was the possession of the half tribe of the children of Manasseh
+by their families.
+
+13:30 And their coast was from Mahanaim, all Bashan, all the kingdom
+of Og king of Bashan, and all the towns of Jair, which are in Bashan,
+threescore cities: 13:31 And half Gilead, and Ashtaroth, and Edrei,
+cities of the kingdom of Og in Bashan, were pertaining unto the
+children of Machir the son of Manasseh, even to the one half of the
+children of Machir by their families.
+
+13:32 These are the countries which Moses did distribute for
+inheritance in the plains of Moab, on the other side Jordan, by
+Jericho, eastward.
+
+13:33 But unto the tribe of Levi Moses gave not any inheritance: the
+LORD God of Israel was their inheritance, as he said unto them.
+
+14:1 And these are the countries which the children of Israel
+inherited in the land of Canaan, which Eleazar the priest, and Joshua
+the son of Nun, and the heads of the fathers of the tribes of the
+children of Israel, distributed for inheritance to them.
+
+14:2 By lot was their inheritance, as the LORD commanded by the hand
+of Moses, for the nine tribes, and for the half tribe.
+
+14:3 For Moses had given the inheritance of two tribes and an half
+tribe on the other side Jordan: but unto the Levites he gave none
+inheritance among them.
+
+14:4 For the children of Joseph were two tribes, Manasseh and Ephraim:
+therefore they gave no part unto the Levites in the land, save cities
+to dwell in, with their suburbs for their cattle and for their
+substance.
+
+14:5 As the LORD commanded Moses, so the children of Israel did, and
+they divided the land.
+
+14:6 Then the children of Judah came unto Joshua in Gilgal: and Caleb
+the son of Jephunneh the Kenezite said unto him, Thou knowest the
+thing that the LORD said unto Moses the man of God concerning me and
+thee in Kadeshbarnea.
+
+14:7 Forty years old was I when Moses the servant of the LORD sent me
+from Kadeshbarnea to espy out the land; and I brought him word again
+as it was in mine heart.
+
+14:8 Nevertheless my brethren that went up with me made the heart of
+the people melt: but I wholly followed the LORD my God.
+
+14:9 And Moses sware on that day, saying, Surely the land whereon thy
+feet have trodden shall be thine inheritance, and thy children's for
+ever, because thou hast wholly followed the LORD my God.
+
+14:10 And now, behold, the LORD hath kept me alive, as he said, these
+forty and five years, even since the LORD spake this word unto Moses,
+while the children of Israel wandered in the wilderness: and now, lo,
+I am this day fourscore and five years old.
+
+14:11 As yet I am as strong this day as I was in the day that Moses
+sent me: as my strength was then, even so is my strength now, for war,
+both to go out, and to come in.
+
+14:12 Now therefore give me this mountain, whereof the LORD spake in
+that day; for thou heardest in that day how the Anakims were there,
+and that the cities were great and fenced: if so be the LORD will be
+with me, then I shall be able to drive them out, as the LORD said.
+
+14:13 And Joshua blessed him, and gave unto Caleb the son of Jephunneh
+Hebron for an inheritance.
+
+14:14 Hebron therefore became the inheritance of Caleb the son of
+Jephunneh the Kenezite unto this day, because that he wholly followed
+the LORD God of Israel.
+
+14:15 And the name of Hebron before was Kirjatharba; which Arba was a
+great man among the Anakims. And the land had rest from war.
+
+15:1 This then was the lot of the tribe of the children of Judah by
+their families; even to the border of Edom the wilderness of Zin
+southward was the uttermost part of the south coast.
+
+15:2 And their south border was from the shore of the salt sea, from
+the bay that looketh southward: 15:3 And it went out to the south side
+to Maalehacrabbim, and passed along to Zin, and ascended up on the
+south side unto Kadeshbarnea, and passed along to Hezron, and went up
+to Adar, and fetched a compass to Karkaa: 15:4 From thence it passed
+toward Azmon, and went out unto the river of Egypt; and the goings out
+of that coast were at the sea: this shall be your south coast.
+
+15:5 And the east border was the salt sea, even unto the end of
+Jordan.
+
+And their border in the north quarter was from the bay of the sea at
+the uttermost part of Jordan: 15:6 And the border went up to
+Bethhogla, and passed along by the north of Betharabah; and the border
+went up to the stone of Bohan the son of Reuben: 15:7 And the border
+went up toward Debir from the valley of Achor, and so northward,
+looking toward Gilgal, that is before the going up to Adummim, which
+is on the south side of the river: and the border passed toward the
+waters of Enshemesh, and the goings out thereof were at Enrogel: 15:8
+And the border went up by the valley of the son of Hinnom unto the
+south side of the Jebusite; the same is Jerusalem: and the border went
+up to the top of the mountain that lieth before the valley of Hinnom
+westward, which is at the end of the valley of the giants northward:
+15:9 And the border was drawn from the top of the hill unto the
+fountain of the water of Nephtoah, and went out to the cities of mount
+Ephron; and the border was drawn to Baalah, which is Kirjathjearim:
+15:10 And the border compassed from Baalah westward unto mount Seir,
+and passed along unto the side of mount Jearim, which is Chesalon, on
+the north side, and went down to Bethshemesh, and passed on to Timnah:
+15:11 And the border went out unto the side of Ekron northward: and
+the border was drawn to Shicron, and passed along to mount Baalah, and
+went out unto Jabneel; and the goings out of the border were at the
+sea.
+
+15:12 And the west border was to the great sea, and the coast thereof.
+
+This is the coast of the children of Judah round about according to
+their families.
+
+15:13 And unto Caleb the son of Jephunneh he gave a part among the
+children of Judah, according to the commandment of the LORD to Joshua,
+even the city of Arba the father of Anak, which city is Hebron.
+
+15:14 And Caleb drove thence the three sons of Anak, Sheshai, and
+Ahiman, and Talmai, the children of Anak.
+
+15:15 And he went up thence to the inhabitants of Debir: and the name
+of Debir before was Kirjathsepher.
+
+15:16 And Caleb said, He that smiteth Kirjathsepher, and taketh it, to
+him will I give Achsah my daughter to wife.
+
+15:17 And Othniel the son of Kenaz, the brother of Caleb, took it: and
+he gave him Achsah his daughter to wife.
+
+15:18 And it came to pass, as she came unto him, that she moved him to
+ask of her father a field: and she lighted off her ass; and Caleb said
+unto her, What wouldest thou? 15:19 Who answered, Give me a blessing;
+for thou hast given me a south land; give me also springs of water.
+And he gave her the upper springs, and the nether springs.
+
+15:20 This is the inheritance of the tribe of the children of Judah
+according to their families.
+
+15:21 And the uttermost cities of the tribe of the children of Judah
+toward the coast of Edom southward were Kabzeel, and Eder, and Jagur,
+15:22 And Kinah, and Dimonah, and Adadah, 15:23 And Kedesh, and Hazor,
+and Ithnan, 15:24 Ziph, and Telem, and Bealoth, 15:25 And Hazor,
+Hadattah, and Kerioth, and Hezron, which is Hazor, 15:26 Amam, and
+Shema, and Moladah, 15:27 And Hazargaddah, and Heshmon, and Bethpalet,
+15:28 And Hazarshual, and Beersheba, and Bizjothjah, 15:29 Baalah, and
+Iim, and Azem, 15:30 And Eltolad, and Chesil, and Hormah, 15:31 And
+Ziklag, and Madmannah, and Sansannah, 15:32 And Lebaoth, and Shilhim,
+and Ain, and Rimmon: all the cities are twenty and nine, with their
+villages: 15:33 And in the valley, Eshtaol, and Zoreah, and Ashnah,
+15:34 And Zanoah, and Engannim, Tappuah, and Enam, 15:35 Jarmuth, and
+Adullam, Socoh, and Azekah, 15:36 And Sharaim, and Adithaim, and
+Gederah, and Gederothaim; fourteen cities with their villages: 15:37
+Zenan, and Hadashah, and Migdalgad, 15:38 And Dilean, and Mizpeh, and
+Joktheel, 15:39 Lachish, and Bozkath, and Eglon, 15:40 And Cabbon, and
+Lahmam, and Kithlish, 15:41 And Gederoth, Bethdagon, and Naamah, and
+Makkedah; sixteen cities with their villages: 15:42 Libnah, and Ether,
+and Ashan, 15:43 And Jiphtah, and Ashnah, and Nezib, 15:44 And Keilah,
+and Achzib, and Mareshah; nine cities with their villages: 15:45
+Ekron, with her towns and her villages: 15:46 From Ekron even unto the
+sea, all that lay near Ashdod, with their villages: 15:47 Ashdod with
+her towns and her villages, Gaza with her towns and her villages, unto
+the river of Egypt, and the great sea, and the border thereof: 15:48
+And in the mountains, Shamir, and Jattir, and Socoh, 15:49 And Dannah,
+and Kirjathsannah, which is Debir, 15:50 And Anab, and Eshtemoh, and
+Anim, 15:51 And Goshen, and Holon, and Giloh; eleven cities with their
+villages: 15:52 Arab, and Dumah, and Eshean, 15:53 And Janum, and
+Bethtappuah, and Aphekah, 15:54 And Humtah, and Kirjatharba, which is
+Hebron, and Zior; nine cities with their villages: 15:55 Maon, Carmel,
+and Ziph, and Juttah, 15:56 And Jezreel, and Jokdeam, and Zanoah,
+15:57 Cain, Gibeah, and Timnah; ten cities with their villages: 15:58
+Halhul, Bethzur, and Gedor, 15:59 And Maarath, and Bethanoth, and
+Eltekon; six cities with their villages: 15:60 Kirjathbaal, which is
+Kirjathjearim, and Rabbah; two cities with their villages: 15:61 In
+the wilderness, Betharabah, Middin, and Secacah, 15:62 And Nibshan,
+and the city of Salt, and Engedi; six cities with their villages.
+
+15:63 As for the Jebusites the inhabitants of Jerusalem, the children
+of Judah could not drive them out; but the Jebusites dwell with the
+children of Judah at Jerusalem unto this day.
+
+16:1 And the lot of the children of Joseph fell from Jordan by
+Jericho, unto the water of Jericho on the east, to the wilderness that
+goeth up from Jericho throughout mount Bethel, 16:2 And goeth out from
+Bethel to Luz, and passeth along unto the borders of Archi to Ataroth,
+16:3 And goeth down westward to the coast of Japhleti, unto the coast
+of Bethhoron the nether, and to Gezer; and the goings out thereof are
+at the sea.
+
+16:4 So the children of Joseph, Manasseh and Ephraim, took their
+inheritance.
+
+16:5 And the border of the children of Ephraim according to their
+families was thus: even the border of their inheritance on the east
+side was Atarothaddar, unto Bethhoron the upper; 16:6 And the border
+went out toward the sea to Michmethah on the north side; and the
+border went about eastward unto Taanathshiloh, and passed by it on the
+east to Janohah; 16:7 And it went down from Janohah to Ataroth, and to
+Naarath, and came to Jericho, and went out at Jordan.
+
+16:8 The border went out from Tappuah westward unto the river Kanah;
+and the goings out thereof were at the sea. This is the inheritance of
+the tribe of the children of Ephraim by their families.
+
+16:9 And the separate cities for the children of Ephraim were among
+the inheritance of the children of Manasseh, all the cities with their
+villages.
+
+16:10 And they drave not out the Canaanites that dwelt in Gezer: but
+the Canaanites dwell among the Ephraimites unto this day, and serve
+under tribute.
+
+17:1 There was also a lot for the tribe of Manasseh; for he was the
+firstborn of Joseph; to wit, for Machir the firstborn of Manasseh, the
+father of Gilead: because he was a man of war, therefore he had Gilead
+and Bashan.
+
+17:2 There was also a lot for the rest of the children of Manasseh by
+their families; for the children of Abiezer, and for the children of
+Helek, and for the children of Asriel, and for the children of
+Shechem, and for the children of Hepher, and for the children of
+Shemida: these were the male children of Manasseh the son of Joseph by
+their families.
+
+17:3 But Zelophehad, the son of Hepher, the son of Gilead, the son of
+Machir, the son of Manasseh, had no sons, but daughters: and these are
+the names of his daughters, Mahlah, and Noah, Hoglah, Milcah, and
+Tirzah.
+
+17:4 And they came near before Eleazar the priest, and before Joshua
+the son of Nun, and before the princes, saying, The LORD commanded
+Moses to give us an inheritance among our brethren. Therefore
+according to the commandment of the LORD he gave them an inheritance
+among the brethren of their father.
+
+17:5 And there fell ten portions to Manasseh, beside the land of
+Gilead and Bashan, which were on the other side Jordan; 17:6 Because
+the daughters of Manasseh had an inheritance among his sons: and the
+rest of Manasseh's sons had the land of Gilead.
+
+17:7 And the coast of Manasseh was from Asher to Michmethah, that
+lieth before Shechem; and the border went along on the right hand unto
+the inhabitants of Entappuah.
+
+17:8 Now Manasseh had the land of Tappuah: but Tappuah on the border
+of Manasseh belonged to the children of Ephraim; 17:9 And the coast
+descended unto the river Kanah, southward of the river: these cities
+of Ephraim are among the cities of Manasseh: the coast of Manasseh
+also was on the north side of the river, and the outgoings of it were
+at the sea: 17:10 Southward it was Ephraim's, and northward it was
+Manasseh's, and the sea is his border; and they met together in Asher
+on the north, and in Issachar on the east.
+
+17:11 And Manasseh had in Issachar and in Asher Bethshean and her
+towns, and Ibleam and her towns, and the inhabitants of Dor and her
+towns, and the inhabitants of Endor and her towns, and the inhabitants
+of Taanach and her towns, and the inhabitants of Megiddo and her
+towns, even three countries.
+
+17:12 Yet the children of Manasseh could not drive out the inhabitants
+of those cities; but the Canaanites would dwell in that land.
+
+17:13 Yet it came to pass, when the children of Israel were waxen
+strong, that they put the Canaanites to tribute, but did not utterly
+drive them out.
+
+17:14 And the children of Joseph spake unto Joshua, saying, Why hast
+thou given me but one lot and one portion to inherit, seeing I am a
+great people, forasmuch as the LORD hath blessed me hitherto? 17:15
+And Joshua answered them, If thou be a great people, then get thee up
+to the wood country, and cut down for thyself there in the land of the
+Perizzites and of the giants, if mount Ephraim be too narrow for thee.
+
+17:16 And the children of Joseph said, The hill is not enough for us:
+and all the Canaanites that dwell in the land of the valley have
+chariots of iron, both they who are of Bethshean and her towns, and
+they who are of the valley of Jezreel.
+
+17:17 And Joshua spake unto the house of Joseph, even to Ephraim and
+to Manasseh, saying, Thou art a great people, and hast great power:
+thou shalt not have one lot only: 17:18 But the mountain shall be
+thine; for it is a wood, and thou shalt cut it down: and the outgoings
+of it shall be thine: for thou shalt drive out the Canaanites, though
+they have iron chariots, and though they be strong.
+
+18:1 And the whole congregation of the children of Israel assembled
+together at Shiloh, and set up the tabernacle of the congregation
+there. And the land was subdued before them.
+
+18:2 And there remained among the children of Israel seven tribes,
+which had not yet received their inheritance.
+
+18:3 And Joshua said unto the children of Israel, How long are ye
+slack to go to possess the land, which the LORD God of your fathers
+hath given you? 18:4 Give out from among you three men for each
+tribe: and I will send them, and they shall rise, and go through the
+land, and describe it according to the inheritance of them; and they
+shall come again to me.
+
+18:5 And they shall divide it into seven parts: Judah shall abide in
+their coast on the south, and the house of Joseph shall abide in their
+coasts on the north.
+
+18:6 Ye shall therefore describe the land into seven parts, and bring
+the description hither to me, that I may cast lots for you here before
+the LORD our God.
+
+18:7 But the Levites have no part among you; for the priesthood of the
+LORD is their inheritance: and Gad, and Reuben, and half the tribe of
+Manasseh, have received their inheritance beyond Jordan on the east,
+which Moses the servant of the LORD gave them.
+
+18:8 And the men arose, and went away: and Joshua charged them that
+went to describe the land, saying, Go and walk through the land, and
+describe it, and come again to me, that I may here cast lots for you
+before the LORD in Shiloh.
+
+18:9 And the men went and passed through the land, and described it by
+cities into seven parts in a book, and came again to Joshua to the
+host at Shiloh.
+
+18:10 And Joshua cast lots for them in Shiloh before the LORD: and
+there Joshua divided the land unto the children of Israel according to
+their divisions.
+
+18:11 And the lot of the tribe of the children of Benjamin came up
+according to their families: and the coast of their lot came forth
+between the children of Judah and the children of Joseph.
+
+18:12 And their border on the north side was from Jordan; and the
+border went up to the side of Jericho on the north side, and went up
+through the mountains westward; and the goings out thereof were at the
+wilderness of Bethaven.
+
+18:13 And the border went over from thence toward Luz, to the side of
+Luz, which is Bethel, southward; and the border descended to
+Atarothadar, near the hill that lieth on the south side of the nether
+Bethhoron.
+
+18:14 And the border was drawn thence, and compassed the corner of the
+sea southward, from the hill that lieth before Bethhoron southward;
+and the goings out thereof were at Kirjathbaal, which is
+Kirjathjearim, a city of the children of Judah: this was the west
+quarter.
+
+18:15 And the south quarter was from the end of Kirjathjearim, and the
+border went out on the west, and went out to the well of waters of
+Nephtoah: 18:16 And the border came down to the end of the mountain
+that lieth before the valley of the son of Hinnom, and which is in the
+valley of the giants on the north, and descended to the valley of
+Hinnom, to the side of Jebusi on the south, and descended to Enrogel,
+18:17 And was drawn from the north, and went forth to Enshemesh, and
+went forth toward Geliloth, which is over against the going up of
+Adummim, and descended to the stone of Bohan the son of Reuben, 18:18
+And passed along toward the side over against Arabah northward, and
+went down unto Arabah: 18:19 And the border passed along to the side
+of Bethhoglah northward: and the outgoings of the border were at the
+north bay of the salt sea at the south end of Jordan: this was the
+south coast.
+
+18:20 And Jordan was the border of it on the east side. This was the
+inheritance of the children of Benjamin, by the coasts thereof round
+about, according to their families.
+
+18:21 Now the cities of the tribe of the children of Benjamin
+according to their families were Jericho, and Bethhoglah, and the
+valley of Keziz, 18:22 And Betharabah, and Zemaraim, and Bethel, 18:23
+And Avim, and Pharah, and Ophrah, 18:24 And Chepharhaammonai, and
+Ophni, and Gaba; twelve cities with their villages: 18:25 Gibeon, and
+Ramah, and Beeroth, 18:26 And Mizpeh, and Chephirah, and Mozah, 18:27
+And Rekem, and Irpeel, and Taralah, 18:28 And Zelah, Eleph, and
+Jebusi, which is Jerusalem, Gibeath, and Kirjath; fourteen cities with
+their villages. This is the inheritance of the children of Benjamin
+according to their families.
+
+19:1 And the second lot came forth to Simeon, even for the tribe of
+the children of Simeon according to their families: and their
+inheritance was within the inheritance of the children of Judah.
+
+19:2 And they had in their inheritance Beersheba, and Sheba, and
+Moladah, 19:3 And Hazarshual, and Balah, and Azem, 19:4 And Eltolad,
+and Bethul, and Hormah, 19:5 And Ziklag, and Bethmarcaboth, and
+Hazarsusah, 19:6 And Bethlebaoth, and Sharuhen; thirteen cities and
+their villages: 19:7 Ain, Remmon, and Ether, and Ashan; four cities
+and their villages: 19:8 And all the villages that were round about
+these cities to Baalathbeer, Ramath of the south. This is the
+inheritance of the tribe of the children of Simeon according to their
+families.
+
+19:9 Out of the portion of the children of Judah was the inheritance
+of the children of Simeon: for the part of the children of Judah was
+too much for them: therefore the children of Simeon had their
+inheritance within the inheritance of them.
+
+19:10 And the third lot came up for the children of Zebulun according
+to their families: and the border of their inheritance was unto Sarid:
+19:11 And their border went up toward the sea, and Maralah, and
+reached to Dabbasheth, and reached to the river that is before
+Jokneam; 19:12 And turned from Sarid eastward toward the sunrising
+unto the border of Chislothtabor, and then goeth out to Daberath, and
+goeth up to Japhia, 19:13 And from thence passeth on along on the east
+to Gittahhepher, to Ittahkazin, and goeth out to Remmonmethoar to
+Neah; 19:14 And the border compasseth it on the north side to
+Hannathon: and the outgoings thereof are in the valley of Jiphthahel:
+19:15 And Kattath, and Nahallal, and Shimron, and Idalah, and
+Bethlehem: twelve cities with their villages.
+
+19:16 This is the inheritance of the children of Zebulun according to
+their families, these cities with their villages.
+
+19:17 And the fourth lot came out to Issachar, for the children of
+Issachar according to their families.
+
+19:18 And their border was toward Jezreel, and Chesulloth, and Shunem,
+19:19 And Haphraim, and Shihon, and Anaharath, 19:20 And Rabbith, and
+Kishion, and Abez, 19:21 And Remeth, and Engannim, and Enhaddah, and
+Bethpazzez; 19:22 And the coast reacheth to Tabor, and Shahazimah, and
+Bethshemesh; and the outgoings of their border were at Jordan: sixteen
+cities with their villages.
+
+19:23 This is the inheritance of the tribe of the children of Issachar
+according to their families, the cities and their villages.
+
+19:24 And the fifth lot came out for the tribe of the children of
+Asher according to their families.
+
+19:25 And their border was Helkath, and Hali, and Beten, and Achshaph,
+19:26 And Alammelech, and Amad, and Misheal; and reacheth to Carmel
+westward, and to Shihorlibnath; 19:27 And turneth toward the sunrising
+to Bethdagon, and reacheth to Zebulun, and to the valley of Jiphthahel
+toward the north side of Bethemek, and Neiel, and goeth out to Cabul
+on the left hand, 19:28 And Hebron, and Rehob, and Hammon, and Kanah,
+even unto great Zidon; 19:29 And then the coast turneth to Ramah, and
+to the strong city Tyre; and the coast turneth to Hosah; and the
+outgoings thereof are at the sea from the coast to Achzib: 19:30 Ummah
+also, and Aphek, and Rehob: twenty and two cities with their villages.
+
+19:31 This is the inheritance of the tribe of the children of Asher
+according to their families, these cities with their villages.
+
+19:32 The sixth lot came out to the children of Naphtali, even for the
+children of Naphtali according to their families.
+
+19:33 And their coast was from Heleph, from Allon to Zaanannim, and
+Adami, Nekeb, and Jabneel, unto Lakum; and the outgoings thereof were
+at Jordan: 19:34 And then the coast turneth westward to Aznothtabor,
+and goeth out from thence to Hukkok, and reacheth to Zebulun on the
+south side, and reacheth to Asher on the west side, and to Judah upon
+Jordan toward the sunrising.
+
+19:35 And the fenced cities are Ziddim, Zer, and Hammath, Rakkath, and
+Chinnereth, 19:36 And Adamah, and Ramah, and Hazor, 19:37 And Kedesh,
+and Edrei, and Enhazor, 19:38 And Iron, and Migdalel, Horem, and
+Bethanath, and Bethshemesh; nineteen cities with their villages.
+
+19:39 This is the inheritance of the tribe of the children of Naphtali
+according to their families, the cities and their villages.
+
+19:40 And the seventh lot came out for the tribe of the children of
+Dan according to their families.
+
+19:41 And the coast of their inheritance was Zorah, and Eshtaol, and
+Irshemesh, 19:42 And Shaalabbin, and Ajalon, and Jethlah, 19:43 And
+Elon, and Thimnathah, and Ekron, 19:44 And Eltekeh, and Gibbethon, and
+Baalath, 19:45 And Jehud, and Beneberak, and Gathrimmon, 19:46 And
+Mejarkon, and Rakkon, with the border before Japho.
+
+19:47 And the coast of the children of Dan went out too little for
+them: therefore the children of Dan went up to fight against Leshem,
+and took it, and smote it with the edge of the sword, and possessed
+it, and dwelt therein, and called Leshem, Dan, after the name of Dan
+their father.
+
+19:48 This is the inheritance of the tribe of the children of Dan
+according to their families, these cities with their villages.
+
+19:49 When they had made an end of dividing the land for inheritance
+by their coasts, the children of Israel gave an inheritance to Joshua
+the son of Nun among them: 19:50 According to the word of the LORD
+they gave him the city which he asked, even Timnathserah in mount
+Ephraim: and he built the city, and dwelt therein.
+
+19:51 These are the inheritances, which Eleazar the priest, and Joshua
+the son of Nun, and the heads of the fathers of the tribes of the
+children of Israel, divided for an inheritance by lot in Shiloh before
+the LORD, at the door of the tabernacle of the congregation. So they
+made an end of dividing the country.
+
+20:1 The LORD also spake unto Joshua, saying, 20:2 Speak to the
+children of Israel, saying, Appoint out for you cities of refuge,
+whereof I spake unto you by the hand of Moses: 20:3 That the slayer
+that killeth any person unawares and unwittingly may flee thither: and
+they shall be your refuge from the avenger of blood.
+
+20:4 And when he that doth flee unto one of those cities shall stand
+at the entering of the gate of the city, and shall declare his cause
+in the ears of the elders of that city, they shall take him into the
+city unto them, and give him a place, that he may dwell among them.
+
+20:5 And if the avenger of blood pursue after him, then they shall not
+deliver the slayer up into his hand; because he smote his neighbour
+unwittingly, and hated him not beforetime.
+
+20:6 And he shall dwell in that city, until he stand before the
+congregation for judgment, and until the death of the high priest that
+shall be in those days: then shall the slayer return, and come unto
+his own city, and unto his own house, unto the city from whence he
+fled.
+
+20:7 And they appointed Kedesh in Galilee in mount Naphtali, and
+Shechem in mount Ephraim, and Kirjatharba, which is Hebron, in the
+mountain of Judah.
+
+20:8 And on the other side Jordan by Jericho eastward, they assigned
+Bezer in the wilderness upon the plain out of the tribe of Reuben, and
+Ramoth in Gilead out of the tribe of Gad, and Golan in Bashan out of
+the tribe of Manasseh.
+
+20:9 These were the cities appointed for all the children of Israel,
+and for the stranger that sojourneth among them, that whosoever
+killeth any person at unawares might flee thither, and not die by the
+hand of the avenger of blood, until he stood before the congregation.
+
+21:1 Then came near the heads of the fathers of the Levites unto
+Eleazar the priest, and unto Joshua the son of Nun, and unto the heads
+of the fathers of the tribes of the children of Israel; 21:2 And they
+spake unto them at Shiloh in the land of Canaan, saying, The LORD
+commanded by the hand of Moses to give us cities to dwell in, with the
+suburbs thereof for our cattle.
+
+21:3 And the children of Israel gave unto the Levites out of their
+inheritance, at the commandment of the LORD, these cities and their
+suburbs.
+
+21:4 And the lot came out for the families of the Kohathites: and the
+children of Aaron the priest, which were of the Levites, had by lot
+out of the tribe of Judah, and out of the tribe of Simeon, and out of
+the tribe of Benjamin, thirteen cities.
+
+21:5 And the rest of the children of Kohath had by lot out of the
+families of the tribe of Ephraim, and out of the tribe of Dan, and out
+of the half tribe of Manasseh, ten cities.
+
+21:6 And the children of Gershon had by lot out of the families of the
+tribe of Issachar, and out of the tribe of Asher, and out of the tribe
+of Naphtali, and out of the half tribe of Manasseh in Bashan, thirteen
+cities.
+
+21:7 The children of Merari by their families had out of the tribe of
+Reuben, and out of the tribe of Gad, and out of the tribe of Zebulun,
+twelve cities.
+
+21:8 And the children of Israel gave by lot unto the Levites these
+cities with their suburbs, as the LORD commanded by the hand of Moses.
+
+21:9 And they gave out of the tribe of the children of Judah, and out
+of the tribe of the children of Simeon, these cities which are here
+mentioned by name.
+
+21:10 Which the children of Aaron, being of the families of the
+Kohathites, who were of the children of Levi, had: for theirs was the
+first lot.
+
+21:11 And they gave them the city of Arba the father of Anak, which
+city is Hebron, in the hill country of Judah, with the suburbs thereof
+round about it.
+
+21:12 But the fields of the city, and the villages thereof, gave they
+to Caleb the son of Jephunneh for his possession.
+
+21:13 Thus they gave to the children of Aaron the priest Hebron with
+her suburbs, to be a city of refuge for the slayer; and Libnah with
+her suburbs, 21:14 And Jattir with her suburbs, and Eshtemoa with her
+suburbs, 21:15 And Holon with her suburbs, and Debir with her suburbs,
+21:16 And Ain with her suburbs, and Juttah with her suburbs, and
+Bethshemesh with her suburbs; nine cities out of those two tribes.
+
+21:17 And out of the tribe of Benjamin, Gibeon with her suburbs, Geba
+with her suburbs, 21:18 Anathoth with her suburbs, and Almon with her
+suburbs; four cities.
+
+21:19 All the cities of the children of Aaron, the priests, were
+thirteen cities with their suburbs.
+
+21:20 And the families of the children of Kohath, the Levites which
+remained of the children of Kohath, even they had the cities of their
+lot out of the tribe of Ephraim.
+
+21:21 For they gave them Shechem with her suburbs in mount Ephraim, to
+be a city of refuge for the slayer; and Gezer with her suburbs, 21:22
+And Kibzaim with her suburbs, and Bethhoron with her suburbs; four
+cities.
+
+21:23 And out of the tribe of Dan, Eltekeh with her suburbs, Gibbethon
+with her suburbs, 21:24 Aijalon with her suburbs, Gathrimmon with her
+suburbs; four cities.
+
+21:25 And out of the half tribe of Manasseh, Tanach with her suburbs,
+and Gathrimmon with her suburbs; two cities.
+
+21:26 All the cities were ten with their suburbs for the families of
+the children of Kohath that remained.
+
+21:27 And unto the children of Gershon, of the families of the
+Levites, out of the other half tribe of Manasseh they gave Golan in
+Bashan with her suburbs, to be a city of refuge for the slayer; and
+Beeshterah with her suburbs; two cities.
+
+21:28 And out of the tribe of Issachar, Kishon with her suburbs,
+Dabareh with her suburbs, 21:29 Jarmuth with her suburbs, Engannim
+with her suburbs; four cities.
+
+21:30 And out of the tribe of Asher, Mishal with her suburbs, Abdon
+with her suburbs, 21:31 Helkath with her suburbs, and Rehob with her
+suburbs; four cities.
+
+21:32 And out of the tribe of Naphtali, Kedesh in Galilee with her
+suburbs, to be a city of refuge for the slayer; and Hammothdor with
+her suburbs, and Kartan with her suburbs; three cities.
+
+21:33 All the cities of the Gershonites according to their families
+were thirteen cities with their suburbs.
+
+21:34 And unto the families of the children of Merari, the rest of the
+Levites, out of the tribe of Zebulun, Jokneam with her suburbs, and
+Kartah with her suburbs, 21:35 Dimnah with her suburbs, Nahalal with
+her suburbs; four cities.
+
+21:36 And out of the tribe of Reuben, Bezer with her suburbs, and
+Jahazah with her suburbs, 21:37 Kedemoth with her suburbs, and
+Mephaath with her suburbs; four cities.
+
+21:38 And out of the tribe of Gad, Ramoth in Gilead with her suburbs,
+to be a city of refuge for the slayer; and Mahanaim with her suburbs,
+21:39 Heshbon with her suburbs, Jazer with her suburbs; four cities in
+all.
+
+21:40 So all the cities for the children of Merari by their families,
+which were remaining of the families of the Levites, were by their lot
+twelve cities.
+
+21:41 All the cities of the Levites within the possession of the
+children of Israel were forty and eight cities with their suburbs.
+
+21:42 These cities were every one with their suburbs round about them:
+thus were all these cities.
+
+21:43 And the LORD gave unto Israel all the land which he sware to
+give unto their fathers; and they possessed it, and dwelt therein.
+
+21:44 And the LORD gave them rest round about, according to all that
+he sware unto their fathers: and there stood not a man of all their
+enemies before them; the LORD delivered all their enemies into their
+hand.
+
+21:45 There failed not ought of any good thing which the LORD had
+spoken unto the house of Israel; all came to pass.
+
+22:1 Then Joshua called the Reubenites, and the Gadites, and the half
+tribe of Manasseh, 22:2 And said unto them, Ye have kept all that
+Moses the servant of the LORD commanded you, and have obeyed my voice
+in all that I commanded you: 22:3 Ye have not left your brethren these
+many days unto this day, but have kept the charge of the commandment
+of the LORD your God.
+
+22:4 And now the LORD your God hath given rest unto your brethren, as
+he promised them: therefore now return ye, and get you unto your
+tents, and unto the land of your possession, which Moses the servant
+of the LORD gave you on the other side Jordan.
+
+22:5 But take diligent heed to do the commandment and the law, which
+Moses the servant of the LORD charged you, to love the LORD your God,
+and to walk in all his ways, and to keep his commandments, and to
+cleave unto him, and to serve him with all your heart and with all
+your soul.
+
+22:6 So Joshua blessed them, and sent them away: and they went unto
+their tents.
+
+22:7 Now to the one half of the tribe of Manasseh Moses had given
+possession in Bashan: but unto the other half thereof gave Joshua
+among their brethren on this side Jordan westward. And when Joshua
+sent them away also unto their tents, then he blessed them, 22:8 And
+he spake unto them, saying, Return with much riches unto your tents,
+and with very much cattle, with silver, and with gold, and with brass,
+and with iron, and with very much raiment: divide the spoil of your
+enemies with your brethren.
+
+22:9 And the children of Reuben and the children of Gad and the half
+tribe of Manasseh returned, and departed from the children of Israel
+out of Shiloh, which is in the land of Canaan, to go unto the country
+of Gilead, to the land of their possession, whereof they were
+possessed, according to the word of the LORD by the hand of Moses.
+
+22:10 And when they came unto the borders of Jordan, that are in the
+land of Canaan, the children of Reuben and the children of Gad and the
+half tribe of Manasseh built there an altar by Jordan, a great altar
+to see to.
+
+22:11 And the children of Israel heard say, Behold, the children of
+Reuben and the children of Gad and the half tribe of Manasseh have
+built an altar over against the land of Canaan, in the borders of
+Jordan, at the passage of the children of Israel.
+
+22:12 And when the children of Israel heard of it, the whole
+congregation of the children of Israel gathered themselves together at
+Shiloh, to go up to war against them.
+
+22:13 And the children of Israel sent unto the children of Reuben, and
+to the children of Gad, and to the half tribe of Manasseh, into the
+land of Gilead, Phinehas the son of Eleazar the priest, 22:14 And with
+him ten princes, of each chief house a prince throughout all the
+tribes of Israel; and each one was an head of the house of their
+fathers among the thousands of Israel.
+
+22:15 And they came unto the children of Reuben, and to the children
+of Gad, and to the half tribe of Manasseh, unto the land of Gilead,
+and they spake with them, saying, 22:16 Thus saith the whole
+congregation of the LORD, What trespass is this that ye have committed
+against the God of Israel, to turn away this day from following the
+LORD, in that ye have builded you an altar, that ye might rebel this
+day against the LORD? 22:17 Is the iniquity of Peor too little for
+us, from which we are not cleansed until this day, although there was
+a plague in the congregation of the LORD, 22:18 But that ye must turn
+away this day from following the LORD? and it will be, seeing ye rebel
+to day against the LORD, that to morrow he will be wroth with the
+whole congregation of Israel.
+
+22:19 Notwithstanding, if the land of your possession be unclean, then
+pass ye over unto the land of the possession of the LORD, wherein the
+LORD's tabernacle dwelleth, and take possession among us: but rebel
+not against the LORD, nor rebel against us, in building you an altar
+beside the altar of the LORD our God.
+
+22:20 Did not Achan the son of Zerah commit a trespass in the accursed
+thing, and wrath fell on all the congregation of Israel? and that man
+perished not alone in his iniquity.
+
+22:21 Then the children of Reuben and the children of Gad and the half
+tribe of Manasseh answered, and said unto the heads of the thousands
+of Israel, 22:22 The LORD God of gods, the LORD God of gods, he
+knoweth, and Israel he shall know; if it be in rebellion, or if in
+transgression against the LORD, (save us not this day,) 22:23 That we
+have built us an altar to turn from following the LORD, or if to offer
+thereon burnt offering or meat offering, or if to offer peace
+offerings thereon, let the LORD himself require it; 22:24 And if we
+have not rather done it for fear of this thing, saying, In time to
+come your children might speak unto our children, saying, What have ye
+to do with the LORD God of Israel? 22:25 For the LORD hath made
+Jordan a border between us and you, ye children of Reuben and children
+of Gad; ye have no part in the LORD: so shall your children make our
+children cease from fearing the LORD.
+
+22:26 Therefore we said, Let us now prepare to build us an altar, not
+for burnt offering, nor for sacrifice: 22:27 But that it may be a
+witness between us, and you, and our generations after us, that we
+might do the service of the LORD before him with our burnt offerings,
+and with our sacrifices, and with our peace offerings; that your
+children may not say to our children in time to come, Ye have no part
+in the LORD.
+
+22:28 Therefore said we, that it shall be, when they should so say to
+us or to our generations in time to come, that we may say again,
+Behold the pattern of the altar of the LORD, which our fathers made,
+not for burnt offerings, nor for sacrifices; but it is a witness
+between us and you.
+
+22:29 God forbid that we should rebel against the LORD, and turn this
+day from following the LORD, to build an altar for burnt offerings,
+for meat offerings, or for sacrifices, beside the altar of the LORD
+our God that is before his tabernacle.
+
+22:30 And when Phinehas the priest, and the princes of the
+congregation and heads of the thousands of Israel which were with him,
+heard the words that the children of Reuben and the children of Gad
+and the children of Manasseh spake, it pleased them.
+
+22:31 And Phinehas the son of Eleazar the priest said unto the
+children of Reuben, and to the children of Gad, and to the children of
+Manasseh, This day we perceive that the LORD is among us, because ye
+have not committed this trespass against the LORD: now ye have
+delivered the children of Israel out of the hand of the LORD.
+
+22:32 And Phinehas the son of Eleazar the priest, and the princes,
+returned from the children of Reuben, and from the children of Gad,
+out of the land of Gilead, unto the land of Canaan, to the children of
+Israel, and brought them word again.
+
+22:33 And the thing pleased the children of Israel; and the children
+of Israel blessed God, and did not intend to go up against them in
+battle, to destroy the land wherein the children of Reuben and Gad
+dwelt.
+
+22:34 And the children of Reuben and the children of Gad called the
+altar Ed: for it shall be a witness between us that the LORD is God.
+
+23:1 And it came to pass a long time after that the LORD had given
+rest unto Israel from all their enemies round about, that Joshua waxed
+old and stricken in age.
+
+23:2 And Joshua called for all Israel, and for their elders, and for
+their heads, and for their judges, and for their officers, and said
+unto them, I am old and stricken in age: 23:3 And ye have seen all
+that the LORD your God hath done unto all these nations because of
+you; for the LORD your God is he that hath fought for you.
+
+23:4 Behold, I have divided unto you by lot these nations that remain,
+to be an inheritance for your tribes, from Jordan, with all the
+nations that I have cut off, even unto the great sea westward.
+
+23:5 And the LORD your God, he shall expel them from before you, and
+drive them from out of your sight; and ye shall possess their land, as
+the LORD your God hath promised unto you.
+
+23:6 Be ye therefore very courageous to keep and to do all that is
+written in the book of the law of Moses, that ye turn not aside
+therefrom to the right hand or to the left; 23:7 That ye come not
+among these nations, these that remain among you; neither make mention
+of the name of their gods, nor cause to swear by them, neither serve
+them, nor bow yourselves unto them: 23:8 But cleave unto the LORD your
+God, as ye have done unto this day.
+
+23:9 For the LORD hath driven out from before you great nations and
+strong: but as for you, no man hath been able to stand before you unto
+this day.
+
+23:10 One man of you shall chase a thousand: for the LORD your God, he
+it is that fighteth for you, as he hath promised you.
+
+23:11 Take good heed therefore unto yourselves, that ye love the LORD
+your God.
+
+23:12 Else if ye do in any wise go back, and cleave unto the remnant
+of these nations, even these that remain among you, and shall make
+marriages with them, and go in unto them, and they to you: 23:13 Know
+for a certainty that the LORD your God will no more drive out any of
+these nations from before you; but they shall be snares and traps unto
+you, and scourges in your sides, and thorns in your eyes, until ye
+perish from off this good land which the LORD your God hath given you.
+
+23:14 And, behold, this day I am going the way of all the earth: and
+ye know in all your hearts and in all your souls, that not one thing
+hath failed of all the good things which the LORD your God spake
+concerning you; all are come to pass unto you, and not one thing hath
+failed thereof.
+
+23:15 Therefore it shall come to pass, that as all good things are
+come upon you, which the LORD your God promised you; so shall the LORD
+bring upon you all evil things, until he have destroyed you from off
+this good land which the LORD your God hath given you.
+
+23:16 When ye have transgressed the covenant of the LORD your God,
+which he commanded you, and have gone and served other gods, and bowed
+yourselves to them; then shall the anger of the LORD be kindled
+against you, and ye shall perish quickly from off the good land which
+he hath given unto you.
+
+24:1 And Joshua gathered all the tribes of Israel to Shechem, and
+called for the elders of Israel, and for their heads, and for their
+judges, and for their officers; and they presented themselves before
+God.
+
+24:2 And Joshua said unto all the people, Thus saith the LORD God of
+Israel, Your fathers dwelt on the other side of the flood in old time,
+even Terah, the father of Abraham, and the father of Nachor: and they
+served other gods.
+
+24:3 And I took your father Abraham from the other side of the flood,
+and led him throughout all the land of Canaan, and multiplied his
+seed, and gave him Isaac.
+
+24:4 And I gave unto Isaac Jacob and Esau: and I gave unto Esau mount
+Seir, to possess it; but Jacob and his children went down into Egypt.
+
+24:5 I sent Moses also and Aaron, and I plagued Egypt, according to
+that which I did among them: and afterward I brought you out.
+
+24:6 And I brought your fathers out of Egypt: and ye came unto the
+sea; and the Egyptians pursued after your fathers with chariots and
+horsemen unto the Red sea.
+
+24:7 And when they cried unto the LORD, he put darkness between you
+and the Egyptians, and brought the sea upon them, and covered them;
+and your eyes have seen what I have done in Egypt: and ye dwelt in the
+wilderness a long season.
+
+24:8 And I brought you into the land of the Amorites, which dwelt on
+the other side Jordan; and they fought with you: and I gave them into
+your hand, that ye might possess their land; and I destroyed them from
+before you.
+
+24:9 Then Balak the son of Zippor, king of Moab, arose and warred
+against Israel, and sent and called Balaam the son of Beor to curse
+you: 24:10 But I would not hearken unto Balaam; therefore he blessed
+you still: so I delivered you out of his hand.
+
+24:11 And you went over Jordan, and came unto Jericho: and the men of
+Jericho fought against you, the Amorites, and the Perizzites, and the
+Canaanites, and the Hittites, and the Girgashites, the Hivites, and
+the Jebusites; and I delivered them into your hand.
+
+24:12 And I sent the hornet before you, which drave them out from
+before you, even the two kings of the Amorites; but not with thy
+sword, nor with thy bow.
+
+24:13 And I have given you a land for which ye did not labour, and
+cities which ye built not, and ye dwell in them; of the vineyards and
+oliveyards which ye planted not do ye eat.
+
+24:14 Now therefore fear the LORD, and serve him in sincerity and in
+truth: and put away the gods which your fathers served on the other
+side of the flood, and in Egypt; and serve ye the LORD.
+
+24:15 And if it seem evil unto you to serve the LORD, choose you this
+day whom ye will serve; whether the gods which your fathers served
+that were on the other side of the flood, or the gods of the Amorites,
+in whose land ye dwell: but as for me and my house, we will serve the
+LORD.
+
+24:16 And the people answered and said, God forbid that we should
+forsake the LORD, to serve other gods; 24:17 For the LORD our God, he
+it is that brought us up and our fathers out of the land of Egypt,
+from the house of bondage, and which did those great signs in our
+sight, and preserved us in all the way wherein we went, and among all
+the people through whom we passed: 24:18 And the LORD drave out from
+before us all the people, even the Amorites which dwelt in the land:
+therefore will we also serve the LORD; for he is our God.
+
+24:19 And Joshua said unto the people, Ye cannot serve the LORD: for
+he is an holy God; he is a jealous God; he will not forgive your
+transgressions nor your sins.
+
+24:20 If ye forsake the LORD, and serve strange gods, then he will
+turn and do you hurt, and consume you, after that he hath done you
+good.
+
+24:21 And the people said unto Joshua, Nay; but we will serve the
+LORD.
+
+24:22 And Joshua said unto the people, Ye are witnesses against
+yourselves that ye have chosen you the LORD, to serve him. And they
+said, We are witnesses.
+
+24:23 Now therefore put away, said he, the strange gods which are
+among you, and incline your heart unto the LORD God of Israel.
+
+24:24 And the people said unto Joshua, The LORD our God will we serve,
+and his voice will we obey.
+
+24:25 So Joshua made a covenant with the people that day, and set them
+a statute and an ordinance in Shechem.
+
+24:26 And Joshua wrote these words in the book of the law of God, and
+took a great stone, and set it up there under an oak, that was by the
+sanctuary of the LORD.
+
+24:27 And Joshua said unto all the people, Behold, this stone shall be
+a witness unto us; for it hath heard all the words of the LORD which
+he spake unto us: it shall be therefore a witness unto you, lest ye
+deny your God.
+
+24:28 So Joshua let the people depart, every man unto his inheritance.
+
+24:29 And it came to pass after these things, that Joshua the son of
+Nun, the servant of the LORD, died, being an hundred and ten years
+old.
+
+24:30 And they buried him in the border of his inheritance in
+Timnathserah, which is in mount Ephraim, on the north side of the hill
+of Gaash.
+
+24:31 And Israel served the LORD all the days of Joshua, and all the
+days of the elders that overlived Joshua, and which had known all the
+works of the LORD, that he had done for Israel.
+
+24:32 And the bones of Joseph, which the children of Israel brought up
+out of Egypt, buried they in Shechem, in a parcel of ground which
+Jacob bought of the sons of Hamor the father of Shechem for an hundred
+pieces of silver: and it became the inheritance of the children of
+Joseph.
+
+24:33 And Eleazar the son of Aaron died; and they buried him in a hill
+that pertained to Phinehas his son, which was given him in mount
+Ephraim.
+
+
+
+
+The Book of Judges
+
+
+1:1 Now after the death of Joshua it came to pass, that the children
+of Israel asked the LORD, saying, Who shall go up for us against the
+Canaanites first, to fight against them? 1:2 And the LORD said, Judah
+shall go up: behold, I have delivered the land into his hand.
+
+1:3 And Judah said unto Simeon his brother, Come up with me into my
+lot, that we may fight against the Canaanites; and I likewise will go
+with thee into thy lot. So Simeon went with him.
+
+1:4 And Judah went up; and the LORD delivered the Canaanites and the
+Perizzites into their hand: and they slew of them in Bezek ten
+thousand men.
+
+1:5 And they found Adonibezek in Bezek: and they fought against him,
+and they slew the Canaanites and the Perizzites.
+
+1:6 But Adonibezek fled; and they pursued after him, and caught him,
+and cut off his thumbs and his great toes.
+
+1:7 And Adonibezek said, Threescore and ten kings, having their thumbs
+and their great toes cut off, gathered their meat under my table: as I
+have done, so God hath requited me. And they brought him to Jerusalem,
+and there he died.
+
+1:8 Now the children of Judah had fought against Jerusalem, and had
+taken it, and smitten it with the edge of the sword, and set the city
+on fire.
+
+1:9 And afterward the children of Judah went down to fight against the
+Canaanites, that dwelt in the mountain, and in the south, and in the
+valley.
+
+1:10 And Judah went against the Canaanites that dwelt in Hebron: (now
+the name of Hebron before was Kirjatharba:) and they slew Sheshai, and
+Ahiman, and Talmai.
+
+1:11 And from thence he went against the inhabitants of Debir: and the
+name of Debir before was Kirjathsepher: 1:12 And Caleb said, He that
+smiteth Kirjathsepher, and taketh it, to him will I give Achsah my
+daughter to wife.
+
+1:13 And Othniel the son of Kenaz, Caleb's younger brother, took it:
+and he gave him Achsah his daughter to wife.
+
+1:14 And it came to pass, when she came to him, that she moved him to
+ask of her father a field: and she lighted from off her ass; and Caleb
+said unto her, What wilt thou? 1:15 And she said unto him, Give me a
+blessing: for thou hast given me a south land; give me also springs of
+water. And Caleb gave her the upper springs and the nether springs.
+
+1:16 And the children of the Kenite, Moses' father in law, went up out
+of the city of palm trees with the children of Judah into the
+wilderness of Judah, which lieth in the south of Arad; and they went
+and dwelt among the people.
+
+1:17 And Judah went with Simeon his brother, and they slew the
+Canaanites that inhabited Zephath, and utterly destroyed it. And the
+name of the city was called Hormah.
+
+1:18 Also Judah took Gaza with the coast thereof, and Askelon with the
+coast thereof, and Ekron with the coast thereof.
+
+1:19 And the LORD was with Judah; and he drave out the inhabitants of
+the mountain; but could not drive out the inhabitants of the valley,
+because they had chariots of iron.
+
+1:20 And they gave Hebron unto Caleb, as Moses said: and he expelled
+thence the three sons of Anak.
+
+1:21 And the children of Benjamin did not drive out the Jebusites that
+inhabited Jerusalem; but the Jebusites dwell with the children of
+Benjamin in Jerusalem unto this day.
+
+1:22 And the house of Joseph, they also went up against Bethel: and
+the LORD was with them.
+
+1:23 And the house of Joseph sent to descry Bethel. (Now the name of
+the city before was Luz.) 1:24 And the spies saw a man come forth out
+of the city, and they said unto him, Shew us, we pray thee, the
+entrance into the city, and we will shew thee mercy.
+
+1:25 And when he shewed them the entrance into the city, they smote
+the city with the edge of the sword; but they let go the man and all
+his family.
+
+1:26 And the man went into the land of the Hittites, and built a city,
+and called the name thereof Luz: which is the name thereof unto this
+day.
+
+1:27 Neither did Manasseh drive out the inhabitants of Bethshean and
+her towns, nor Taanach and her towns, nor the inhabitants of Dor and
+her towns, nor the inhabitants of Ibleam and her towns, nor the
+inhabitants of Megiddo and her towns: but the Canaanites would dwell
+in that land.
+
+1:28 And it came to pass, when Israel was strong, that they put the
+Canaanites to tribute, and did not utterly drive them out.
+
+1:29 Neither did Ephraim drive out the Canaanites that dwelt in Gezer;
+but the Canaanites dwelt in Gezer among them.
+
+1:30 Neither did Zebulun drive out the inhabitants of Kitron, nor the
+inhabitants of Nahalol; but the Canaanites dwelt among them, and
+became tributaries.
+
+1:31 Neither did Asher drive out the inhabitants of Accho, nor the
+inhabitants of Zidon, nor of Ahlab, nor of Achzib, nor of Helbah, nor
+of Aphik, nor of Rehob: 1:32 But the Asherites dwelt among the
+Canaanites, the inhabitants of the land: for they did not drive them
+out.
+
+1:33 Neither did Naphtali drive out the inhabitants of Bethshemesh,
+nor the inhabitants of Bethanath; but he dwelt among the Canaanites,
+the inhabitants of the land: nevertheless the inhabitants of
+Bethshemesh and of Bethanath became tributaries unto them.
+
+1:34 And the Amorites forced the children of Dan into the mountain:
+for they would not suffer them to come down to the valley: 1:35 But
+the Amorites would dwell in mount Heres in Aijalon, and in Shaalbim:
+yet the hand of the house of Joseph prevailed, so that they became
+tributaries.
+
+1:36 And the coast of the Amorites was from the going up to Akrabbim,
+from the rock, and upward.
+
+2:1 And an angel of the LORD came up from Gilgal to Bochim, and said,
+I made you to go up out of Egypt, and have brought you unto the land
+which I sware unto your fathers; and I said, I will never break my
+covenant with you.
+
+2:2 And ye shall make no league with the inhabitants of this land; ye
+shall throw down their altars: but ye have not obeyed my voice: why
+have ye done this? 2:3 Wherefore I also said, I will not drive them
+out from before you; but they shall be as thorns in your sides, and
+their gods shall be a snare unto you.
+
+2:4 And it came to pass, when the angel of the LORD spake these words
+unto all the children of Israel, that the people lifted up their
+voice, and wept.
+
+2:5 And they called the name of that place Bochim: and they sacrificed
+there unto the LORD.
+
+2:6 And when Joshua had let the people go, the children of Israel went
+every man unto his inheritance to possess the land.
+
+2:7 And the people served the LORD all the days of Joshua, and all the
+days of the elders that outlived Joshua, who had seen all the great
+works of the LORD, that he did for Israel.
+
+2:8 And Joshua the son of Nun, the servant of the LORD, died, being an
+hundred and ten years old.
+
+2:9 And they buried him in the border of his inheritance in
+Timnathheres, in the mount of Ephraim, on the north side of the hill
+Gaash.
+
+2:10 And also all that generation were gathered unto their fathers:
+and there arose another generation after them, which knew not the
+LORD, nor yet the works which he had done for Israel.
+
+2:11 And the children of Israel did evil in the sight of the LORD, and
+served Baalim: 2:12 And they forsook the LORD God of their fathers,
+which brought them out of the land of Egypt, and followed other gods,
+of the gods of the people that were round about them, and bowed
+themselves unto them, and provoked the LORD to anger.
+
+2:13 And they forsook the LORD, and served Baal and Ashtaroth.
+
+2:14 And the anger of the LORD was hot against Israel, and he
+delivered them into the hands of spoilers that spoiled them, and he
+sold them into the hands of their enemies round about, so that they
+could not any longer stand before their enemies.
+
+2:15 Whithersoever they went out, the hand of the LORD was against
+them for evil, as the LORD had said, and as the LORD had sworn unto
+them: and they were greatly distressed.
+
+2:16 Nevertheless the LORD raised up judges, which delivered them out
+of the hand of those that spoiled them.
+
+2:17 And yet they would not hearken unto their judges, but they went a
+whoring after other gods, and bowed themselves unto them: they turned
+quickly out of the way which their fathers walked in, obeying the
+commandments of the LORD; but they did not so.
+
+2:18 And when the LORD raised them up judges, then the LORD was with
+the judge, and delivered them out of the hand of their enemies all the
+days of the judge: for it repented the LORD because of their groanings
+by reason of them that oppressed them and vexed them.
+
+2:19 And it came to pass, when the judge was dead, that they returned,
+and corrupted themselves more than their fathers, in following other
+gods to serve them, and to bow down unto them; they ceased not from
+their own doings, nor from their stubborn way.
+
+2:20 And the anger of the LORD was hot against Israel; and he said,
+Because that this people hath transgressed my covenant which I
+commanded their fathers, and have not hearkened unto my voice; 2:21 I
+also will not henceforth drive out any from before them of the nations
+which Joshua left when he died: 2:22 That through them I may prove
+Israel, whether they will keep the way of the LORD to walk therein, as
+their fathers did keep it, or not.
+
+2:23 Therefore the LORD left those nations, without driving them out
+hastily; neither delivered he them into the hand of Joshua.
+
+3:1 Now these are the nations which the LORD left, to prove Israel by
+them, even as many of Israel as had not known all the wars of Canaan;
+3:2 Only that the generations of the children of Israel might know, to
+teach them war, at the least such as before knew nothing thereof; 3:3
+Namely, five lords of the Philistines, and all the Canaanites, and the
+Sidonians, and the Hivites that dwelt in mount Lebanon, from mount
+Baalhermon unto the entering in of Hamath.
+
+3:4 And they were to prove Israel by them, to know whether they would
+hearken unto the commandments of the LORD, which he commanded their
+fathers by the hand of Moses.
+
+3:5 And the children of Israel dwelt among the Canaanites, Hittites,
+and Amorites, and Perizzites, and Hivites, and Jebusites: 3:6 And they
+took their daughters to be their wives, and gave their daughters to
+their sons, and served their gods.
+
+3:7 And the children of Israel did evil in the sight of the LORD, and
+forgat the LORD their God, and served Baalim and the groves.
+
+3:8 Therefore the anger of the LORD was hot against Israel, and he
+sold them into the hand of Chushanrishathaim king of Mesopotamia: and
+the children of Israel served Chushanrishathaim eight years.
+
+3:9 And when the children of Israel cried unto the LORD, the LORD
+raised up a deliverer to the children of Israel, who delivered them,
+even Othniel the son of Kenaz, Caleb's younger brother.
+
+3:10 And the Spirit of the LORD came upon him, and he judged Israel,
+and went out to war: and the LORD delivered Chushanrishathaim king of
+Mesopotamia into his hand; and his hand prevailed against
+Chushanrishathaim.
+
+3:11 And the land had rest forty years. And Othniel the son of Kenaz
+died.
+
+3:12 And the children of Israel did evil again in the sight of the
+LORD: and the LORD strengthened Eglon the king of Moab against Israel,
+because they had done evil in the sight of the LORD.
+
+3:13 And he gathered unto him the children of Ammon and Amalek, and
+went and smote Israel, and possessed the city of palm trees.
+
+3:14 So the children of Israel served Eglon the king of Moab eighteen
+years.
+
+3:15 But when the children of Israel cried unto the LORD, the LORD
+raised them up a deliverer, Ehud the son of Gera, a Benjamite, a man
+lefthanded: and by him the children of Israel sent a present unto
+Eglon the king of Moab.
+
+3:16 But Ehud made him a dagger which had two edges, of a cubit
+length; and he did gird it under his raiment upon his right thigh.
+
+3:17 And he brought the present unto Eglon king of Moab: and Eglon was
+a very fat man.
+
+3:18 And when he had made an end to offer the present, he sent away
+the people that bare the present.
+
+3:19 But he himself turned again from the quarries that were by
+Gilgal, and said, I have a secret errand unto thee, O king: who said,
+Keep silence. And all that stood by him went out from him.
+
+3:20 And Ehud came unto him; and he was sitting in a summer parlour,
+which he had for himself alone. And Ehud said, I have a message from
+God unto thee.
+
+And he arose out of his seat.
+
+3:21 And Ehud put forth his left hand, and took the dagger from his
+right thigh, and thrust it into his belly: 3:22 And the haft also went
+in after the blade; and the fat closed upon the blade, so that he
+could not draw the dagger out of his belly; and the dirt came out.
+
+3:23 Then Ehud went forth through the porch, and shut the doors of the
+parlour upon him, and locked them.
+
+3:24 When he was gone out, his servants came; and when they saw that,
+behold, the doors of the parlour were locked, they said, Surely he
+covereth his feet in his summer chamber.
+
+3:25 And they tarried till they were ashamed: and, behold, he opened
+not the doors of the parlour; therefore they took a key, and opened
+them: and, behold, their lord was fallen down dead on the earth.
+
+3:26 And Ehud escaped while they tarried, and passed beyond the
+quarries, and escaped unto Seirath.
+
+3:27 And it came to pass, when he was come, that he blew a trumpet in
+the mountain of Ephraim, and the children of Israel went down with him
+from the mount, and he before them.
+
+3:28 And he said unto them, Follow after me: for the LORD hath
+delivered your enemies the Moabites into your hand. And they went down
+after him, and took the fords of Jordan toward Moab, and suffered not
+a man to pass over.
+
+3:29 And they slew of Moab at that time about ten thousand men, all
+lusty, and all men of valour; and there escaped not a man.
+
+3:30 So Moab was subdued that day under the hand of Israel. And the
+land had rest fourscore years.
+
+3:31 And after him was Shamgar the son of Anath, which slew of the
+Philistines six hundred men with an ox goad: and he also delivered
+Israel.
+
+4:1 And the children of Israel again did evil in the sight of the
+LORD, when Ehud was dead.
+
+4:2 And the LORD sold them into the hand of Jabin king of Canaan, that
+reigned in Hazor; the captain of whose host was Sisera, which dwelt in
+Harosheth of the Gentiles.
+
+4:3 And the children of Israel cried unto the LORD: for he had nine
+hundred chariots of iron; and twenty years he mightily oppressed the
+children of Israel.
+
+4:4 And Deborah, a prophetess, the wife of Lapidoth, she judged Israel
+at that time.
+
+4:5 And she dwelt under the palm tree of Deborah between Ramah and
+Bethel in mount Ephraim: and the children of Israel came up to her for
+judgment.
+
+4:6 And she sent and called Barak the son of Abinoam out of
+Kedeshnaphtali, and said unto him, Hath not the LORD God of Israel
+commanded, saying, Go and draw toward mount Tabor, and take with thee
+ten thousand men of the children of Naphtali and of the children of
+Zebulun? 4:7 And I will draw unto thee to the river Kishon Sisera,
+the captain of Jabin's army, with his chariots and his multitude; and
+I will deliver him into thine hand.
+
+4:8 And Barak said unto her, If thou wilt go with me, then I will go:
+but if thou wilt not go with me, then I will not go.
+
+4:9 And she said, I will surely go with thee: notwithstanding the
+journey that thou takest shall not be for thine honour; for the LORD
+shall sell Sisera into the hand of a woman. And Deborah arose, and
+went with Barak to Kedesh.
+
+4:10 And Barak called Zebulun and Naphtali to Kedesh; and he went up
+with ten thousand men at his feet: and Deborah went up with him.
+
+4:11 Now Heber the Kenite, which was of the children of Hobab the
+father in law of Moses, had severed himself from the Kenites, and
+pitched his tent unto the plain of Zaanaim, which is by Kedesh.
+
+4:12 And they shewed Sisera that Barak the son of Abinoam was gone up
+to mount Tabor.
+
+4:13 And Sisera gathered together all his chariots, even nine hundred
+chariots of iron, and all the people that were with him, from
+Harosheth of the Gentiles unto the river of Kishon.
+
+4:14 And Deborah said unto Barak, Up; for this is the day in which the
+LORD hath delivered Sisera into thine hand: is not the LORD gone out
+before thee? So Barak went down from mount Tabor, and ten thousand men
+after him.
+
+4:15 And the LORD discomfited Sisera, and all his chariots, and all
+his host, with the edge of the sword before Barak; so that Sisera
+lighted down off his chariot, and fled away on his feet.
+
+4:16 But Barak pursued after the chariots, and after the host, unto
+Harosheth of the Gentiles: and all the host of Sisera fell upon the
+edge of the sword; and there was not a man left.
+
+4:17 Howbeit Sisera fled away on his feet to the tent of Jael the wife
+of Heber the Kenite: for there was peace between Jabin the king of
+Hazor and the house of Heber the Kenite.
+
+4:18 And Jael went out to meet Sisera, and said unto him, Turn in, my
+lord, turn in to me; fear not. And when he had turned in unto her into
+the tent, she covered him with a mantle.
+
+4:19 And he said unto her, Give me, I pray thee, a little water to
+drink; for I am thirsty. And she opened a bottle of milk, and gave him
+drink, and covered him.
+
+4:20 Again he said unto her, Stand in the door of the tent, and it
+shall be, when any man doth come and enquire of thee, and say, Is
+there any man here? that thou shalt say, No.
+
+4:21 Then Jael Heber's wife took a nail of the tent, and took an
+hammer in her hand, and went softly unto him, and smote the nail into
+his temples, and fastened it into the ground: for he was fast asleep
+and weary. So he died.
+
+4:22 And, behold, as Barak pursued Sisera, Jael came out to meet him,
+and said unto him, Come, and I will shew thee the man whom thou
+seekest. And when he came into her tent, behold, Sisera lay dead, and
+the nail was in his temples.
+
+4:23 So God subdued on that day Jabin the king of Canaan before the
+children of Israel.
+
+4:24 And the hand of the children of Israel prospered, and prevailed
+against Jabin the king of Canaan, until they had destroyed Jabin king
+of Canaan.
+
+5:1 Then sang Deborah and Barak the son of Abinoam on that day,
+saying, 5:2 Praise ye the LORD for the avenging of Israel, when the
+people willingly offered themselves.
+
+5:3 Hear, O ye kings; give ear, O ye princes; I, even I, will sing
+unto the LORD; I will sing praise to the LORD God of Israel.
+
+5:4 LORD, when thou wentest out of Seir, when thou marchedst out of
+the field of Edom, the earth trembled, and the heavens dropped, the
+clouds also dropped water.
+
+5:5 The mountains melted from before the LORD, even that Sinai from
+before the LORD God of Israel.
+
+5:6 In the days of Shamgar the son of Anath, in the days of Jael, the
+highways were unoccupied, and the travellers walked through byways.
+
+5:7 The inhabitants of the villages ceased, they ceased in Israel,
+until that I Deborah arose, that I arose a mother in Israel.
+
+5:8 They chose new gods; then was war in the gates: was there a shield
+or spear seen among forty thousand in Israel? 5:9 My heart is toward
+the governors of Israel, that offered themselves willingly among the
+people. Bless ye the LORD.
+
+5:10 Speak, ye that ride on white asses, ye that sit in judgment, and
+walk by the way.
+
+5:11 They that are delivered from the noise of archers in the places
+of drawing water, there shall they rehearse the righteous acts of the
+LORD, even the righteous acts toward the inhabitants of his villages
+in Israel: then shall the people of the LORD go down to the gates.
+
+5:12 Awake, awake, Deborah: awake, awake, utter a song: arise, Barak,
+and lead thy captivity captive, thou son of Abinoam.
+
+5:13 Then he made him that remaineth have dominion over the nobles
+among the people: the LORD made me have dominion over the mighty.
+
+5:14 Out of Ephraim was there a root of them against Amalek; after
+thee, Benjamin, among thy people; out of Machir came down governors,
+and out of Zebulun they that handle the pen of the writer.
+
+5:15 And the princes of Issachar were with Deborah; even Issachar, and
+also Barak: he was sent on foot into the valley. For the divisions of
+Reuben there were great thoughts of heart.
+
+5:16 Why abodest thou among the sheepfolds, to hear the bleatings of
+the flocks? For the divisions of Reuben there were great searchings of
+heart.
+
+5:17 Gilead abode beyond Jordan: and why did Dan remain in ships?
+Asher continued on the sea shore, and abode in his breaches.
+
+5:18 Zebulun and Naphtali were a people that jeoparded their lives
+unto the death in the high places of the field.
+
+5:19 The kings came and fought, then fought the kings of Canaan in
+Taanach by the waters of Megiddo; they took no gain of money.
+
+5:20 They fought from heaven; the stars in their courses fought
+against Sisera.
+
+5:21 The river of Kishon swept them away, that ancient river, the
+river Kishon. O my soul, thou hast trodden down strength.
+
+5:22 Then were the horsehoofs broken by the means of the pransings,
+the pransings of their mighty ones.
+
+5:23 Curse ye Meroz, said the angel of the LORD, curse ye bitterly the
+inhabitants thereof; because they came not to the help of the LORD, to
+the help of the LORD against the mighty.
+
+5:24 Blessed above women shall Jael the wife of Heber the Kenite be,
+blessed shall she be above women in the tent.
+
+5:25 He asked water, and she gave him milk; she brought forth butter
+in a lordly dish.
+
+5:26 She put her hand to the nail, and her right hand to the workmen's
+hammer; and with the hammer she smote Sisera, she smote off his head,
+when she had pierced and stricken through his temples.
+
+5:27 At her feet he bowed, he fell, he lay down: at her feet he bowed,
+he fell: where he bowed, there he fell down dead.
+
+5:28 The mother of Sisera looked out at a window, and cried through
+the lattice, Why is his chariot so long in coming? why tarry the
+wheels of his chariots? 5:29 Her wise ladies answered her, yea, she
+returned answer to herself, 5:30 Have they not sped? have they not
+divided the prey; to every man a damsel or two; to Sisera a prey of
+divers colours, a prey of divers colours of needlework, of divers
+colours of needlework on both sides, meet for the necks of them that
+take the spoil? 5:31 So let all thine enemies perish, O LORD: but let
+them that love him be as the sun when he goeth forth in his might. And
+the land had rest forty years.
+
+6:1 And the children of Israel did evil in the sight of the LORD: and
+the LORD delivered them into the hand of Midian seven years.
+
+6:2 And the hand of Midian prevailed against Israel: and because of
+the Midianites the children of Israel made them the dens which are in
+the mountains, and caves, and strong holds.
+
+6:3 And so it was, when Israel had sown, that the Midianites came up,
+and the Amalekites, and the children of the east, even they came up
+against them; 6:4 And they encamped against them, and destroyed the
+increase of the earth, till thou come unto Gaza, and left no
+sustenance for Israel, neither sheep, nor ox, nor ass.
+
+6:5 For they came up with their cattle and their tents, and they came
+as grasshoppers for multitude; for both they and their camels were
+without number: and they entered into the land to destroy it.
+
+6:6 And Israel was greatly impoverished because of the Midianites; and
+the children of Israel cried unto the LORD.
+
+6:7 And it came to pass, when the children of Israel cried unto the
+LORD because of the Midianites, 6:8 That the LORD sent a prophet unto
+the children of Israel, which said unto them, Thus saith the LORD God
+of Israel, I brought you up from Egypt, and brought you forth out of
+the house of bondage; 6:9 And I delivered you out of the hand of the
+Egyptians, and out of the hand of all that oppressed you, and drave
+them out from before you, and gave you their land; 6:10 And I said
+unto you, I am the LORD your God; fear not the gods of the Amorites,
+in whose land ye dwell: but ye have not obeyed my voice.
+
+6:11 And there came an angel of the LORD, and sat under an oak which
+was in Ophrah, that pertained unto Joash the Abiezrite: and his son
+Gideon threshed wheat by the winepress, to hide it from the
+Midianites.
+
+6:12 And the angel of the LORD appeared unto him, and said unto him,
+The LORD is with thee, thou mighty man of valour.
+
+6:13 And Gideon said unto him, Oh my Lord, if the LORD be with us, why
+then is all this befallen us? and where be all his miracles which our
+fathers told us of, saying, Did not the LORD bring us up from Egypt?
+but now the LORD hath forsaken us, and delivered us into the hands of
+the Midianites.
+
+6:14 And the LORD looked upon him, and said, Go in this thy might, and
+thou shalt save Israel from the hand of the Midianites: have not I
+sent thee? 6:15 And he said unto him, Oh my Lord, wherewith shall I
+save Israel? behold, my family is poor in Manasseh, and I am the
+least in my father's house.
+
+6:16 And the LORD said unto him, Surely I will be with thee, and thou
+shalt smite the Midianites as one man.
+
+6:17 And he said unto him, If now I have found grace in thy sight,
+then shew me a sign that thou talkest with me.
+
+6:18 Depart not hence, I pray thee, until I come unto thee, and bring
+forth my present, and set it before thee. And he said, I will tarry
+until thou come again.
+
+6:19 And Gideon went in, and made ready a kid, and unleavened cakes of
+an ephah of flour: the flesh he put in a basket, and he put the broth
+in a pot, and brought it out unto him under the oak, and presented it.
+
+6:20 And the angel of God said unto him, Take the flesh and the
+unleavened cakes, and lay them upon this rock, and pour out the broth.
+And he did so.
+
+6:21 Then the angel of the LORD put forth the end of the staff that
+was in his hand, and touched the flesh and the unleavened cakes; and
+there rose up fire out of the rock, and consumed the flesh and the
+unleavened cakes. Then the angel of the LORD departed out of his
+sight.
+
+6:22 And when Gideon perceived that he was an angel of the LORD,
+Gideon said, Alas, O LORD God! for because I have seen an angel of the
+LORD face to face.
+
+6:23 And the LORD said unto him, Peace be unto thee; fear not: thou
+shalt not die.
+
+6:24 Then Gideon built an altar there unto the LORD, and called it
+Jehovahshalom: unto this day it is yet in Ophrah of the Abiezrites.
+
+6:25 And it came to pass the same night, that the LORD said unto him,
+Take thy father's young bullock, even the second bullock of seven
+years old, and throw down the altar of Baal that thy father hath, and
+cut down the grove that is by it: 6:26 And build an altar unto the
+LORD thy God upon the top of this rock, in the ordered place, and take
+the second bullock, and offer a burnt sacrifice with the wood of the
+grove which thou shalt cut down.
+
+6:27 Then Gideon took ten men of his servants, and did as the LORD had
+said unto him: and so it was, because he feared his father's
+household, and the men of the city, that he could not do it by day,
+that he did it by night.
+
+6:28 And when the men of the city arose early in the morning, behold,
+the altar of Baal was cast down, and the grove was cut down that was
+by it, and the second bullock was offered upon the altar that was
+built.
+
+6:29 And they said one to another, Who hath done this thing? And when
+they enquired and asked, they said, Gideon the son of Joash hath done
+this thing.
+
+6:30 Then the men of the city said unto Joash, Bring out thy son, that
+he may die: because he hath cast down the altar of Baal, and because
+he hath cut down the grove that was by it.
+
+6:31 And Joash said unto all that stood against him, Will ye plead for
+Baal? will ye save him? he that will plead for him, let him be put to
+death whilst it is yet morning: if he be a god, let him plead for
+himself, because one hath cast down his altar.
+
+6:32 Therefore on that day he called him Jerubbaal, saying, Let Baal
+plead against him, because he hath thrown down his altar.
+
+6:33 Then all the Midianites and the Amalekites and the children of
+the east were gathered together, and went over, and pitched in the
+valley of Jezreel.
+
+6:34 But the Spirit of the LORD came upon Gideon, and he blew a
+trumpet; and Abiezer was gathered after him.
+
+6:35 And he sent messengers throughout all Manasseh; who also was
+gathered after him: and he sent messengers unto Asher, and unto
+Zebulun, and unto Naphtali; and they came up to meet them.
+
+6:36 And Gideon said unto God, If thou wilt save Israel by mine hand,
+as thou hast said, 6:37 Behold, I will put a fleece of wool in the
+floor; and if the dew be on the fleece only, and it be dry upon all
+the earth beside, then shall I know that thou wilt save Israel by mine
+hand, as thou hast said.
+
+6:38 And it was so: for he rose up early on the morrow, and thrust the
+fleece together, and wringed the dew out of the fleece, a bowl full of
+water.
+
+6:39 And Gideon said unto God, Let not thine anger be hot against me,
+and I will speak but this once: let me prove, I pray thee, but this
+once with the fleece; let it now be dry only upon the fleece, and upon
+all the ground let there be dew.
+
+6:40 And God did so that night: for it was dry upon the fleece only,
+and there was dew on all the ground.
+
+7:1 Then Jerubbaal, who is Gideon, and all the people that were with
+him, rose up early, and pitched beside the well of Harod: so that the
+host of the Midianites were on the north side of them, by the hill of
+Moreh, in the valley.
+
+7:2 And the LORD said unto Gideon, The people that are with thee are
+too many for me to give the Midianites into their hands, lest Israel
+vaunt themselves against me, saying, Mine own hand hath saved me.
+
+7:3 Now therefore go to, proclaim in the ears of the people, saying,
+Whosoever is fearful and afraid, let him return and depart early from
+mount Gilead. And there returned of the people twenty and two
+thousand; and there remained ten thousand.
+
+7:4 And the LORD said unto Gideon, The people are yet too many; bring
+them down unto the water, and I will try them for thee there: and it
+shall be, that of whom I say unto thee, This shall go with thee, the
+same shall go with thee; and of whomsoever I say unto thee, This shall
+not go with thee, the same shall not go.
+
+7:5 So he brought down the people unto the water: and the LORD said
+unto Gideon, Every one that lappeth of the water with his tongue, as a
+dog lappeth, him shalt thou set by himself; likewise every one that
+boweth down upon his knees to drink.
+
+7:6 And the number of them that lapped, putting their hand to their
+mouth, were three hundred men: but all the rest of the people bowed
+down upon their knees to drink water.
+
+7:7 And the LORD said unto Gideon, By the three hundred men that
+lapped will I save you, and deliver the Midianites into thine hand:
+and let all the other people go every man unto his place.
+
+7:8 So the people took victuals in their hand, and their trumpets: and
+he sent all the rest of Israel every man unto his tent, and retained
+those three hundred men: and the host of Midian was beneath him in the
+valley.
+
+7:9 And it came to pass the same night, that the LORD said unto him,
+Arise, get thee down unto the host; for I have delivered it into thine
+hand.
+
+7:10 But if thou fear to go down, go thou with Phurah thy servant down
+to the host: 7:11 And thou shalt hear what they say; and afterward
+shall thine hands be strengthened to go down unto the host. Then went
+he down with Phurah his servant unto the outside of the armed men that
+were in the host.
+
+7:12 And the Midianites and the Amalekites and all the children of the
+east lay along in the valley like grasshoppers for multitude; and
+their camels were without number, as the sand by the sea side for
+multitude.
+
+7:13 And when Gideon was come, behold, there was a man that told a
+dream unto his fellow, and said, Behold, I dreamed a dream, and, lo, a
+cake of barley bread tumbled into the host of Midian, and came unto a
+tent, and smote it that it fell, and overturned it, that the tent lay
+along.
+
+7:14 And his fellow answered and said, This is nothing else save the
+sword of Gideon the son of Joash, a man of Israel: for into his hand
+hath God delivered Midian, and all the host.
+
+7:15 And it was so, when Gideon heard the telling of the dream, and
+the interpretation thereof, that he worshipped, and returned into the
+host of Israel, and said, Arise; for the LORD hath delivered into your
+hand the host of Midian.
+
+7:16 And he divided the three hundred men into three companies, and he
+put a trumpet in every man's hand, with empty pitchers, and lamps
+within the pitchers.
+
+7:17 And he said unto them, Look on me, and do likewise: and, behold,
+when I come to the outside of the camp, it shall be that, as I do, so
+shall ye do.
+
+7:18 When I blow with a trumpet, I and all that are with me, then blow
+ye the trumpets also on every side of all the camp, and say, The sword
+of the LORD, and of Gideon.
+
+7:19 So Gideon, and the hundred men that were with him, came unto the
+outside of the camp in the beginning of the middle watch; and they had
+but newly set the watch: and they blew the trumpets, and brake the
+pitchers that were in their hands.
+
+7:20 And the three companies blew the trumpets, and brake the
+pitchers, and held the lamps in their left hands, and the trumpets in
+their right hands to blow withal: and they cried, The sword of the
+LORD, and of Gideon.
+
+7:21 And they stood every man in his place round about the camp; and
+all the host ran, and cried, and fled.
+
+7:22 And the three hundred blew the trumpets, and the LORD set every
+man's sword against his fellow, even throughout all the host: and the
+host fled to Bethshittah in Zererath, and to the border of
+Abelmeholah, unto Tabbath.
+
+7:23 And the men of Israel gathered themselves together out of
+Naphtali, and out of Asher, and out of all Manasseh, and pursued after
+the Midianites.
+
+7:24 And Gideon sent messengers throughout all mount Ephraim, saying,
+come down against the Midianites, and take before them the waters unto
+Bethbarah and Jordan. Then all the men of Ephraim gathered themselves
+together, and took the waters unto Bethbarah and Jordan.
+
+7:25 And they took two princes of the Midianites, Oreb and Zeeb; and
+they slew Oreb upon the rock Oreb, and Zeeb they slew at the winepress
+of Zeeb, and pursued Midian, and brought the heads of Oreb and Zeeb to
+Gideon on the other side Jordan.
+
+8:1 And the men of Ephraim said unto him, Why hast thou served us
+thus, that thou calledst us not, when thou wentest to fight with the
+Midianites? And they did chide with him sharply.
+
+8:2 And he said unto them, What have I done now in comparison of you?
+Is not the gleaning of the grapes of Ephraim better than the vintage
+of Abiezer? 8:3 God hath delivered into your hands the princes of
+Midian, Oreb and Zeeb: and what was I able to do in comparison of you?
+Then their anger was abated toward him, when he had said that.
+
+8:4 And Gideon came to Jordan, and passed over, he, and the three
+hundred men that were with him, faint, yet pursuing them.
+
+8:5 And he said unto the men of Succoth, Give, I pray you, loaves of
+bread unto the people that follow me; for they be faint, and I am
+pursuing after Zebah and Zalmunna, kings of Midian.
+
+8:6 And the princes of Succoth said, Are the hands of Zebah and
+Zalmunna now in thine hand, that we should give bread unto thine army?
+8:7 And Gideon said, Therefore when the LORD hath delivered Zebah and
+Zalmunna into mine hand, then I will tear your flesh with the thorns
+of the wilderness and with briers.
+
+8:8 And he went up thence to Penuel, and spake unto them likewise: and
+the men of Penuel answered him as the men of Succoth had answered him.
+
+8:9 And he spake also unto the men of Penuel, saying, When I come
+again in peace, I will break down this tower.
+
+8:10 Now Zebah and Zalmunna were in Karkor, and their hosts with them,
+about fifteen thousand men, all that were left of all the hosts of the
+children of the east: for there fell an hundred and twenty thousand
+men that drew sword.
+
+8:11 And Gideon went up by the way of them that dwelt in tents on the
+east of Nobah and Jogbehah, and smote the host; for the host was
+secure.
+
+8:12 And when Zebah and Zalmunna fled, he pursued after them, and took
+the two kings of Midian, Zebah and Zalmunna, and discomfited all the
+host.
+
+8:13 And Gideon the son of Joash returned from battle before the sun
+was up, 8:14 And caught a young man of the men of Succoth, and
+enquired of him: and he described unto him the princes of Succoth, and
+the elders thereof, even threescore and seventeen men.
+
+8:15 And he came unto the men of Succoth, and said, Behold Zebah and
+Zalmunna, with whom ye did upbraid me, saying, Are the hands of Zebah
+and Zalmunna now in thine hand, that we should give bread unto thy men
+that are weary? 8:16 And he took the elders of the city, and thorns
+of the wilderness and briers, and with them he taught the men of
+Succoth.
+
+8:17 And he beat down the tower of Penuel, and slew the men of the
+city.
+
+8:18 Then said he unto Zebah and Zalmunna, What manner of men were
+they whom ye slew at Tabor? And they answered, As thou art, so were
+they; each one resembled the children of a king.
+
+8:19 And he said, They were my brethren, even the sons of my mother:
+as the LORD liveth, if ye had saved them alive, I would not slay you.
+
+8:20 And he said unto Jether his firstborn, Up, and slay them. But the
+youth drew not his sword: for he feared, because he was yet a youth.
+
+8:21 Then Zebah and Zalmunna said, Rise thou, and fall upon us: for as
+the man is, so is his strength. And Gideon arose, and slew Zebah and
+Zalmunna, and took away the ornaments that were on their camels'
+necks.
+
+8:22 Then the men of Israel said unto Gideon, Rule thou over us, both
+thou, and thy son, and thy son's son also: for thou hast delivered us
+from the hand of Midian.
+
+8:23 And Gideon said unto them, I will not rule over you, neither
+shall my son rule over you: the LORD shall rule over you.
+
+8:24 And Gideon said unto them, I would desire a request of you, that
+ye would give me every man the earrings of his prey. (For they had
+golden earrings, because they were Ishmaelites.) 8:25 And they
+answered, We will willingly give them. And they spread a garment, and
+did cast therein every man the earrings of his prey.
+
+8:26 And the weight of the golden earrings that he requested was a
+thousand and seven hundred shekels of gold; beside ornaments, and
+collars, and purple raiment that was on the kings of Midian, and
+beside the chains that were about their camels' necks.
+
+8:27 And Gideon made an ephod thereof, and put it in his city, even in
+Ophrah: and all Israel went thither a whoring after it: which thing
+became a snare unto Gideon, and to his house.
+
+8:28 Thus was Midian subdued before the children of Israel, so that
+they lifted up their heads no more. And the country was in quietness
+forty years in the days of Gideon.
+
+8:29 And Jerubbaal the son of Joash went and dwelt in his own house.
+
+8:30 And Gideon had threescore and ten sons of his body begotten: for
+he had many wives.
+
+8:31 And his concubine that was in Shechem, she also bare him a son,
+whose name he called Abimelech.
+
+8:32 And Gideon the son of Joash died in a good old age, and was
+buried in the sepulchre of Joash his father, in Ophrah of the
+Abiezrites.
+
+8:33 And it came to pass, as soon as Gideon was dead, that the
+children of Israel turned again, and went a whoring after Baalim, and
+made Baalberith their god.
+
+8:34 And the children of Israel remembered not the LORD their God, who
+had delivered them out of the hands of all their enemies on every
+side: 8:35 Neither shewed they kindness to the house of Jerubbaal,
+namely, Gideon, according to all the goodness which he had shewed unto
+Israel.
+
+9:1 And Abimelech the son of Jerubbaal went to Shechem unto his
+mother's brethren, and communed with them, and with all the family of
+the house of his mother's father, saying, 9:2 Speak, I pray you, in
+the ears of all the men of Shechem, Whether is better for you, either
+that all the sons of Jerubbaal, which are threescore and ten persons,
+reign over you, or that one reign over you? remember also that I am
+your bone and your flesh.
+
+9:3 And his mother's brethren spake of him in the ears of all the men
+of Shechem all these words: and their hearts inclined to follow
+Abimelech; for they said, He is our brother.
+
+9:4 And they gave him threescore and ten pieces of silver out of the
+house of Baalberith, wherewith Abimelech hired vain and light persons,
+which followed him.
+
+9:5 And he went unto his father's house at Ophrah, and slew his
+brethren the sons of Jerubbaal, being threescore and ten persons, upon
+one stone: notwithstanding yet Jotham the youngest son of Jerubbaal
+was left; for he hid himself.
+
+9:6 And all the men of Shechem gathered together, and all the house of
+Millo, and went, and made Abimelech king, by the plain of the pillar
+that was in Shechem.
+
+9:7 And when they told it to Jotham, he went and stood in the top of
+mount Gerizim, and lifted up his voice, and cried, and said unto them,
+Hearken unto me, ye men of Shechem, that God may hearken unto you.
+
+9:8 The trees went forth on a time to anoint a king over them; and
+they said unto the olive tree, Reign thou over us.
+
+9:9 But the olive tree said unto them, Should I leave my fatness,
+wherewith by me they honour God and man, and go to be promoted over
+the trees? 9:10 And the trees said to the fig tree, Come thou, and
+reign over us.
+
+9:11 But the fig tree said unto them, Should I forsake my sweetness,
+and my good fruit, and go to be promoted over the trees? 9:12 Then
+said the trees unto the vine, Come thou, and reign over us.
+
+9:13 And the vine said unto them, Should I leave my wine, which
+cheereth God and man, and go to be promoted over the trees? 9:14 Then
+said all the trees unto the bramble, Come thou, and reign over us.
+
+9:15 And the bramble said unto the trees, If in truth ye anoint me
+king over you, then come and put your trust in my shadow: and if not,
+let fire come out of the bramble, and devour the cedars of Lebanon.
+
+9:16 Now therefore, if ye have done truly and sincerely, in that ye
+have made Abimelech king, and if ye have dealt well with Jerubbaal and
+his house, and have done unto him according to the deserving of his
+hands; 9:17 (For my father fought for you, and adventured his life
+far, and delivered you out of the hand of Midian: 9:18 And ye are
+risen up against my father's house this day, and have slain his sons,
+threescore and ten persons, upon one stone, and have made Abimelech,
+the son of his maidservant, king over the men of Shechem, because he
+is your brother;) 9:19 If ye then have dealt truly and sincerely with
+Jerubbaal and with his house this day, then rejoice ye in Abimelech,
+and let him also rejoice in you: 9:20 But if not, let fire come out
+from Abimelech, and devour the men of Shechem, and the house of Millo;
+and let fire come out from the men of Shechem, and from the house of
+Millo, and devour Abimelech.
+
+9:21 And Jotham ran away, and fled, and went to Beer, and dwelt there,
+for fear of Abimelech his brother.
+
+9:22 When Abimelech had reigned three years over Israel, 9:23 Then God
+sent an evil spirit between Abimelech and the men of Shechem; and the
+men of Shechem dealt treacherously with Abimelech: 9:24 That the
+cruelty done to the threescore and ten sons of Jerubbaal might come,
+and their blood be laid upon Abimelech their brother, which slew them;
+and upon the men of Shechem, which aided him in the killing of his
+brethren.
+
+9:25 And the men of Shechem set liers in wait for him in the top of
+the mountains, and they robbed all that came along that way by them:
+and it was told Abimelech.
+
+9:26 And Gaal the son of Ebed came with his brethren, and went over to
+Shechem: and the men of Shechem put their confidence in him.
+
+9:27 And they went out into the fields, and gathered their vineyards,
+and trode the grapes, and made merry, and went into the house of their
+god, and did eat and drink, and cursed Abimelech.
+
+9:28 And Gaal the son of Ebed said, Who is Abimelech, and who is
+Shechem, that we should serve him? is not he the son of Jerubbaal? and
+Zebul his officer? serve the men of Hamor the father of Shechem: for
+why should we serve him? 9:29 And would to God this people were under
+my hand! then would I remove Abimelech. And he said to Abimelech,
+Increase thine army, and come out.
+
+9:30 And when Zebul the ruler of the city heard the words of Gaal the
+son of Ebed, his anger was kindled.
+
+9:31 And he sent messengers unto Abimelech privily, saying, Behold,
+Gaal the son of Ebed and his brethren be come to Shechem; and, behold,
+they fortify the city against thee.
+
+9:32 Now therefore up by night, thou and the people that is with thee,
+and lie in wait in the field: 9:33 And it shall be, that in the
+morning, as soon as the sun is up, thou shalt rise early, and set upon
+the city: and, behold, when he and the people that is with him come
+out against thee, then mayest thou do to them as thou shalt find
+occasion.
+
+9:34 And Abimelech rose up, and all the people that were with him, by
+night, and they laid wait against Shechem in four companies.
+
+9:35 And Gaal the son of Ebed went out, and stood in the entering of
+the gate of the city: and Abimelech rose up, and the people that were
+with him, from lying in wait.
+
+9:36 And when Gaal saw the people, he said to Zebul, Behold, there
+come people down from the top of the mountains. And Zebul said unto
+him, Thou seest the shadow of the mountains as if they were men.
+
+9:37 And Gaal spake again, and said, See there come people down by the
+middle of the land, and another company come along by the plain of
+Meonenim.
+
+9:38 Then said Zebul unto him, Where is now thy mouth, wherewith thou
+saidst, Who is Abimelech, that we should serve him? is not this the
+people that thou hast despised? go out, I pray now, and fight with
+them.
+
+9:39 And Gaal went out before the men of Shechem, and fought with
+Abimelech.
+
+9:40 And Abimelech chased him, and he fled before him, and many were
+overthrown and wounded, even unto the entering of the gate.
+
+9:41 And Abimelech dwelt at Arumah: and Zebul thrust out Gaal and his
+brethren, that they should not dwell in Shechem.
+
+9:42 And it came to pass on the morrow, that the people went out into
+the field; and they told Abimelech.
+
+9:43 And he took the people, and divided them into three companies,
+and laid wait in the field, and looked, and, behold, the people were
+come forth out of the city; and he rose up against them, and smote
+them.
+
+9:44 And Abimelech, and the company that was with him, rushed forward,
+and stood in the entering of the gate of the city: and the two other
+companies ran upon all the people that were in the fields, and slew
+them.
+
+9:45 And Abimelech fought against the city all that day; and he took
+the city, and slew the people that was therein, and beat down the
+city, and sowed it with salt.
+
+9:46 And when all the men of the tower of Shechem heard that, they
+entered into an hold of the house of the god Berith.
+
+9:47 And it was told Abimelech, that all the men of the tower of
+Shechem were gathered together.
+
+9:48 And Abimelech gat him up to mount Zalmon, he and all the people
+that were with him; and Abimelech took an axe in his hand, and cut
+down a bough from the trees, and took it, and laid it on his shoulder,
+and said unto the people that were with him, What ye have seen me do,
+make haste, and do as I have done.
+
+9:49 And all the people likewise cut down every man his bough, and
+followed Abimelech, and put them to the hold, and set the hold on fire
+upon them; so that all the men of the tower of Shechem died also,
+about a thousand men and women.
+
+9:50 Then went Abimelech to Thebez, and encamped against Thebez, and
+took it.
+
+9:51 But there was a strong tower within the city, and thither fled
+all the men and women, and all they of the city, and shut it to them,
+and gat them up to the top of the tower.
+
+9:52 And Abimelech came unto the tower, and fought against it, and
+went hard unto the door of the tower to burn it with fire.
+
+9:53 And a certain woman cast a piece of a millstone upon Abimelech's
+head, and all to brake his skull.
+
+9:54 Then he called hastily unto the young man his armourbearer, and
+said unto him, Draw thy sword, and slay me, that men say not of me, A
+women slew him. And his young man thrust him through, and he died.
+
+9:55 And when the men of Israel saw that Abimelech was dead, they
+departed every man unto his place.
+
+9:56 Thus God rendered the wickedness of Abimelech, which he did unto
+his father, in slaying his seventy brethren: 9:57 And all the evil of
+the men of Shechem did God render upon their heads: and upon them came
+the curse of Jotham the son of Jerubbaal.
+
+10:1 And after Abimelech there arose to defend Israel Tola the son of
+Puah, the son of Dodo, a man of Issachar; and he dwelt in Shamir in
+mount Ephraim.
+
+10:2 And he judged Israel twenty and three years, and died, and was
+buried in Shamir.
+
+10:3 And after him arose Jair, a Gileadite, and judged Israel twenty
+and two years.
+
+10:4 And he had thirty sons that rode on thirty ass colts, and they
+had thirty cities, which are called Havothjair unto this day, which
+are in the land of Gilead.
+
+10:5 And Jair died, and was buried in Camon.
+
+10:6 And the children of Israel did evil again in the sight of the
+LORD, and served Baalim, and Ashtaroth, and the gods of Syria, and the
+gods of Zidon, and the gods of Moab, and the gods of the children of
+Ammon, and the gods of the Philistines, and forsook the LORD, and
+served not him.
+
+10:7 And the anger of the LORD was hot against Israel, and he sold
+them into the hands of the Philistines, and into the hands of the
+children of Ammon.
+
+10:8 And that year they vexed and oppressed the children of Israel:
+eighteen years, all the children of Israel that were on the other side
+Jordan in the land of the Amorites, which is in Gilead.
+
+10:9 Moreover the children of Ammon passed over Jordan to fight also
+against Judah, and against Benjamin, and against the house of Ephraim;
+so that Israel was sore distressed.
+
+10:10 And the children of Israel cried unto the LORD, saying, We have
+sinned against thee, both because we have forsaken our God, and also
+served Baalim.
+
+10:11 And the LORD said unto the children of Israel, Did not I deliver
+you from the Egyptians, and from the Amorites, from the children of
+Ammon, and from the Philistines? 10:12 The Zidonians also, and the
+Amalekites, and the Maonites, did oppress you; and ye cried to me, and
+I delivered you out of their hand.
+
+10:13 Yet ye have forsaken me, and served other gods: wherefore I will
+deliver you no more.
+
+10:14 Go and cry unto the gods which ye have chosen; let them deliver
+you in the time of your tribulation.
+
+10:15 And the children of Israel said unto the LORD, We have sinned:
+do thou unto us whatsoever seemeth good unto thee; deliver us only, we
+pray thee, this day.
+
+10:16 And they put away the strange gods from among them, and served
+the LORD: and his soul was grieved for the misery of Israel.
+
+10:17 Then the children of Ammon were gathered together, and encamped
+in Gilead. And the children of Israel assembled themselves together,
+and encamped in Mizpeh.
+
+10:18 And the people and princes of Gilead said one to another, What
+man is he that will begin to fight against the children of Ammon? he
+shall be head over all the inhabitants of Gilead.
+
+11:1 Now Jephthah the Gileadite was a mighty man of valour, and he was
+the son of an harlot: and Gilead begat Jephthah.
+
+11:2 And Gilead's wife bare him sons; and his wife's sons grew up, and
+they thrust out Jephthah, and said unto him, Thou shalt not inherit in
+our father's house; for thou art the son of a strange woman.
+
+11:3 Then Jephthah fled from his brethren, and dwelt in the land of
+Tob: and there were gathered vain men to Jephthah, and went out with
+him.
+
+11:4 And it came to pass in process of time, that the children of
+Ammon made war against Israel.
+
+11:5 And it was so, that when the children of Ammon made war against
+Israel, the elders of Gilead went to fetch Jephthah out of the land of
+Tob: 11:6 And they said unto Jephthah, Come, and be our captain, that
+we may fight with the children of Ammon.
+
+11:7 And Jephthah said unto the elders of Gilead, Did not ye hate me,
+and expel me out of my father's house? and why are ye come unto me now
+when ye are in distress? 11:8 And the elders of Gilead said unto
+Jephthah, Therefore we turn again to thee now, that thou mayest go
+with us, and fight against the children of Ammon, and be our head over
+all the inhabitants of Gilead.
+
+11:9 And Jephthah said unto the elders of Gilead, If ye bring me home
+again to fight against the children of Ammon, and the LORD deliver
+them before me, shall I be your head? 11:10 And the elders of Gilead
+said unto Jephthah, The LORD be witness between us, if we do not so
+according to thy words.
+
+11:11 Then Jephthah went with the elders of Gilead, and the people
+made him head and captain over them: and Jephthah uttered all his
+words before the LORD in Mizpeh.
+
+11:12 And Jephthah sent messengers unto the king of the children of
+Ammon, saying, What hast thou to do with me, that thou art come
+against me to fight in my land? 11:13 And the king of the children of
+Ammon answered unto the messengers of Jephthah, Because Israel took
+away my land, when they came up out of Egypt, from Arnon even unto
+Jabbok, and unto Jordan: now therefore restore those lands again
+peaceably.
+
+11:14 And Jephthah sent messengers again unto the king of the children
+of Ammon: 11:15 And said unto him, Thus saith Jephthah, Israel took
+not away the land of Moab, nor the land of the children of Ammon:
+11:16 But when Israel came up from Egypt, and walked through the
+wilderness unto the Red sea, and came to Kadesh; 11:17 Then Israel
+sent messengers unto the king of Edom, saying, Let me, I pray thee,
+pass through thy land: but the king of Edom would not hearken thereto.
+And in like manner they sent unto the king of Moab: but he would not
+consent: and Israel abode in Kadesh.
+
+11:18 Then they went along through the wilderness, and compassed the
+land of Edom, and the land of Moab, and came by the east side of the
+land of Moab, and pitched on the other side of Arnon, but came not
+within the border of Moab: for Arnon was the border of Moab.
+
+11:19 And Israel sent messengers unto Sihon king of the Amorites, the
+king of Heshbon; and Israel said unto him, Let us pass, we pray thee,
+through thy land into my place.
+
+11:20 But Sihon trusted not Israel to pass through his coast: but
+Sihon gathered all his people together, and pitched in Jahaz, and
+fought against Israel.
+
+11:21 And the LORD God of Israel delivered Sihon and all his people
+into the hand of Israel, and they smote them: so Israel possessed all
+the land of the Amorites, the inhabitants of that country.
+
+11:22 And they possessed all the coasts of the Amorites, from Arnon
+even unto Jabbok, and from the wilderness even unto Jordan.
+
+11:23 So now the LORD God of Israel hath dispossessed the Amorites
+from before his people Israel, and shouldest thou possess it? 11:24
+Wilt not thou possess that which Chemosh thy god giveth thee to
+possess? So whomsoever the LORD our God shall drive out from before
+us, them will we possess.
+
+11:25 And now art thou any thing better than Balak the son of Zippor,
+king of Moab? did he ever strive against Israel, or did he ever fight
+against them, 11:26 While Israel dwelt in Heshbon and her towns, and
+in Aroer and her towns, and in all the cities that be along by the
+coasts of Arnon, three hundred years? why therefore did ye not recover
+them within that time? 11:27 Wherefore I have not sinned against
+thee, but thou doest me wrong to war against me: the LORD the Judge be
+judge this day between the children of Israel and the children of
+Ammon.
+
+11:28 Howbeit the king of the children of Ammon hearkened not unto the
+words of Jephthah which he sent him.
+
+11:29 Then the Spirit of the LORD came upon Jephthah, and he passed
+over Gilead, and Manasseh, and passed over Mizpeh of Gilead, and from
+Mizpeh of Gilead he passed over unto the children of Ammon.
+
+11:30 And Jephthah vowed a vow unto the LORD, and said, If thou shalt
+without fail deliver the children of Ammon into mine hands, 11:31 Then
+it shall be, that whatsoever cometh forth of the doors of my house to
+meet me, when I return in peace from the children of Ammon, shall
+surely be the LORD's, and I will offer it up for a burnt offering.
+
+11:32 So Jephthah passed over unto the children of Ammon to fight
+against them; and the LORD delivered them into his hands.
+
+11:33 And he smote them from Aroer, even till thou come to Minnith,
+even twenty cities, and unto the plain of the vineyards, with a very
+great slaughter. Thus the children of Ammon were subdued before the
+children of Israel.
+
+11:34 And Jephthah came to Mizpeh unto his house, and, behold, his
+daughter came out to meet him with timbrels and with dances: and she
+was his only child; beside her he had neither son nor daughter.
+
+11:35 And it came to pass, when he saw her, that he rent his clothes,
+and said, Alas, my daughter! thou hast brought me very low, and thou
+art one of them that trouble me: for I have opened my mouth unto the
+LORD, and I cannot go back.
+
+11:36 And she said unto him, My father, if thou hast opened thy mouth
+unto the LORD, do to me according to that which hath proceeded out of
+thy mouth; forasmuch as the LORD hath taken vengeance for thee of
+thine enemies, even of the children of Ammon.
+
+11:37 And she said unto her father, Let this thing be done for me: let
+me alone two months, that I may go up and down upon the mountains, and
+bewail my virginity, I and my fellows.
+
+11:38 And he said, Go. And he sent her away for two months: and she
+went with her companions, and bewailed her virginity upon the
+mountains.
+
+11:39 And it came to pass at the end of two months, that she returned
+unto her father, who did with her according to his vow which he had
+vowed: and she knew no man. And it was a custom in Israel, 11:40 That
+the daughters of Israel went yearly to lament the daughter of Jephthah
+the Gileadite four days in a year.
+
+12:1 And the men of Ephraim gathered themselves together, and went
+northward, and said unto Jephthah, Wherefore passedst thou over to
+fight against the children of Ammon, and didst not call us to go with
+thee? we will burn thine house upon thee with fire.
+
+12:2 And Jephthah said unto them, I and my people were at great strife
+with the children of Ammon; and when I called you, ye delivered me not
+out of their hands.
+
+12:3 And when I saw that ye delivered me not, I put my life in my
+hands, and passed over against the children of Ammon, and the LORD
+delivered them into my hand: wherefore then are ye come up unto me
+this day, to fight against me? 12:4 Then Jephthah gathered together
+all the men of Gilead, and fought with Ephraim: and the men of Gilead
+smote Ephraim, because they said, Ye Gileadites are fugitives of
+Ephraim among the Ephraimites, and among the Manassites.
+
+12:5 And the Gileadites took the passages of Jordan before the
+Ephraimites: and it was so, that when those Ephraimites which were
+escaped said, Let me go over; that the men of Gilead said unto him,
+Art thou an Ephraimite? If he said, Nay; 12:6 Then said they unto him,
+Say now Shibboleth: and he said Sibboleth: for he could not frame to
+pronounce it right. Then they took him, and slew him at the passages
+of Jordan: and there fell at that time of the Ephraimites forty and
+two thousand.
+
+12:7 And Jephthah judged Israel six years. Then died Jephthah the
+Gileadite, and was buried in one of the cities of Gilead.
+
+12:8 And after him Ibzan of Bethlehem judged Israel.
+
+12:9 And he had thirty sons, and thirty daughters, whom he sent
+abroad, and took in thirty daughters from abroad for his sons. And he
+judged Israel seven years.
+
+12:10 Then died Ibzan, and was buried at Bethlehem.
+
+12:11 And after him Elon, a Zebulonite, judged Israel; and he judged
+Israel ten years.
+
+12:12 And Elon the Zebulonite died, and was buried in Aijalon in the
+country of Zebulun.
+
+12:13 And after him Abdon the son of Hillel, a Pirathonite, judged
+Israel.
+
+12:14 And he had forty sons and thirty nephews, that rode on
+threescore and ten ass colts: and he judged Israel eight years.
+
+12:15 And Abdon the son of Hillel the Pirathonite died, and was buried
+in Pirathon in the land of Ephraim, in the mount of the Amalekites.
+
+13:1 And the children of Israel did evil again in the sight of the
+LORD; and the LORD delivered them into the hand of the Philistines
+forty years.
+
+13:2 And there was a certain man of Zorah, of the family of the
+Danites, whose name was Manoah; and his wife was barren, and bare not.
+
+13:3 And the angel of the LORD appeared unto the woman, and said unto
+her, Behold now, thou art barren, and bearest not: but thou shalt
+conceive, and bear a son.
+
+13:4 Now therefore beware, I pray thee, and drink not wine nor strong
+drink, and eat not any unclean thing: 13:5 For, lo, thou shalt
+conceive, and bear a son; and no razor shall come on his head: for the
+child shall be a Nazarite unto God from the womb: and he shall begin
+to deliver Israel out of the hand of the Philistines.
+
+13:6 Then the woman came and told her husband, saying, A man of God
+came unto me, and his countenance was like the countenance of an angel
+of God, very terrible: but I asked him not whence he was, neither told
+he me his name: 13:7 But he said unto me, Behold, thou shalt conceive,
+and bear a son; and now drink no wine nor strong drink, neither eat
+any unclean thing: for the child shall be a Nazarite to God from the
+womb to the day of his death.
+
+13:8 Then Manoah intreated the LORD, and said, O my Lord, let the man
+of God which thou didst send come again unto us, and teach us what we
+shall do unto the child that shall be born.
+
+13:9 And God hearkened to the voice of Manoah; and the angel of God
+came again unto the woman as she sat in the field: but Manoah her
+husband was not with her.
+
+13:10 And the woman made haste, and ran, and shewed her husband, and
+said unto him, Behold, the man hath appeared unto me, that came unto
+me the other day.
+
+13:11 And Manoah arose, and went after his wife, and came to the man,
+and said unto him, Art thou the man that spakest unto the woman? And
+he said, I am.
+
+13:12 And Manoah said, Now let thy words come to pass. How shall we
+order the child, and how shall we do unto him? 13:13 And the angel of
+the LORD said unto Manoah, Of all that I said unto the woman let her
+beware.
+
+13:14 She may not eat of any thing that cometh of the vine, neither
+let her drink wine or strong drink, nor eat any unclean thing: all
+that I commanded her let her observe.
+
+13:15 And Manoah said unto the angel of the LORD, I pray thee, let us
+detain thee, until we shall have made ready a kid for thee.
+
+13:16 And the angel of the LORD said unto Manoah, Though thou detain
+me, I will not eat of thy bread: and if thou wilt offer a burnt
+offering, thou must offer it unto the LORD. For Manoah knew not that
+he was an angel of the LORD.
+
+13:17 And Manoah said unto the angel of the LORD, What is thy name,
+that when thy sayings come to pass we may do thee honour? 13:18 And
+the angel of the LORD said unto him, Why askest thou thus after my
+name, seeing it is secret? 13:19 So Manoah took a kid with a meat
+offering, and offered it upon a rock unto the LORD: and the angel did
+wonderously; and Manoah and his wife looked on.
+
+13:20 For it came to pass, when the flame went up toward heaven from
+off the altar, that the angel of the LORD ascended in the flame of the
+altar. And Manoah and his wife looked on it, and fell on their faces
+to the ground.
+
+13:21 But the angel of the LORD did no more appear to Manoah and to
+his wife. Then Manoah knew that he was an angel of the LORD.
+
+13:22 And Manoah said unto his wife, We shall surely die, because we
+have seen God.
+
+13:23 But his wife said unto him, If the LORD were pleased to kill us,
+he would not have received a burnt offering and a meat offering at our
+hands, neither would he have shewed us all these things, nor would as
+at this time have told us such things as these.
+
+13:24 And the woman bare a son, and called his name Samson: and the
+child grew, and the LORD blessed him.
+
+13:25 And the Spirit of the LORD began to move him at times in the
+camp of Dan between Zorah and Eshtaol.
+
+14:1 And Samson went down to Timnath, and saw a woman in Timnath of
+the daughters of the Philistines.
+
+14:2 And he came up, and told his father and his mother, and said, I
+have seen a woman in Timnath of the daughters of the Philistines: now
+therefore get her for me to wife.
+
+14:3 Then his father and his mother said unto him, Is there never a
+woman among the daughters of thy brethren, or among all my people,
+that thou goest to take a wife of the uncircumcised Philistines? And
+Samson said unto his father, Get her for me; for she pleaseth me well.
+
+14:4 But his father and his mother knew not that it was of the LORD,
+that he sought an occasion against the Philistines: for at that time
+the Philistines had dominion over Israel.
+
+14:5 Then went Samson down, and his father and his mother, to Timnath,
+and came to the vineyards of Timnath: and, behold, a young lion roared
+against him.
+
+14:6 And the Spirit of the LORD came mightily upon him, and he rent
+him as he would have rent a kid, and he had nothing in his hand: but
+he told not his father or his mother what he had done.
+
+14:7 And he went down, and talked with the woman; and she pleased
+Samson well.
+
+14:8 And after a time he returned to take her, and he turned aside to
+see the carcase of the lion: and, behold, there was a swarm of bees
+and honey in the carcase of the lion.
+
+14:9 And he took thereof in his hands, and went on eating, and came to
+his father and mother, and he gave them, and they did eat: but he told
+not them that he had taken the honey out of the carcase of the lion.
+
+14:10 So his father went down unto the woman: and Samson made there a
+feast; for so used the young men to do.
+
+14:11 And it came to pass, when they saw him, that they brought thirty
+companions to be with him.
+
+14:12 And Samson said unto them, I will now put forth a riddle unto
+you: if ye can certainly declare it me within the seven days of the
+feast, and find it out, then I will give you thirty sheets and thirty
+change of garments: 14:13 But if ye cannot declare it me, then shall
+ye give me thirty sheets and thirty change of garments. And they said
+unto him, Put forth thy riddle, that we may hear it.
+
+14:14 And he said unto them, Out of the eater came forth meat, and out
+of the strong came forth sweetness. And they could not in three days
+expound the riddle.
+
+14:15 And it came to pass on the seventh day, that they said unto
+Samson's wife, Entice thy husband, that he may declare unto us the
+riddle, lest we burn thee and thy father's house with fire: have ye
+called us to take that we have? is it not so? 14:16 And Samson's wife
+wept before him, and said, Thou dost but hate me, and lovest me not:
+thou hast put forth a riddle unto the children of my people, and hast
+not told it me. And he said unto her, Behold, I have not told it my
+father nor my mother, and shall I tell it thee? 14:17 And she wept
+before him the seven days, while their feast lasted: and it came to
+pass on the seventh day, that he told her, because she lay sore upon
+him: and she told the riddle to the children of her people.
+
+14:18 And the men of the city said unto him on the seventh day before
+the sun went down, What is sweeter than honey? And what is stronger
+than a lion? and he said unto them, If ye had not plowed with my
+heifer, ye had not found out my riddle.
+
+14:19 And the Spirit of the LORD came upon him, and he went down to
+Ashkelon, and slew thirty men of them, and took their spoil, and gave
+change of garments unto them which expounded the riddle. And his anger
+was kindled, and he went up to his father's house.
+
+14:20 But Samson's wife was given to his companion, whom he had used
+as his friend.
+
+15:1 But it came to pass within a while after, in the time of wheat
+harvest, that Samson visited his wife with a kid; and he said, I will
+go in to my wife into the chamber. But her father would not suffer him
+to go in.
+
+15:2 And her father said, I verily thought that thou hadst utterly
+hated her; therefore I gave her to thy companion: is not her younger
+sister fairer than she? take her, I pray thee, instead of her.
+
+15:3 And Samson said concerning them, Now shall I be more blameless
+than the Philistines, though I do them a displeasure.
+
+15:4 And Samson went and caught three hundred foxes, and took
+firebrands, and turned tail to tail, and put a firebrand in the midst
+between two tails.
+
+15:5 And when he had set the brands on fire, he let them go into the
+standing corn of the Philistines, and burnt up both the shocks, and
+also the standing corn, with the vineyards and olives.
+
+15:6 Then the Philistines said, Who hath done this? And they answered,
+Samson, the son in law of the Timnite, because he had taken his wife,
+and given her to his companion. And the Philistines came up, and burnt
+her and her father with fire.
+
+15:7 And Samson said unto them, Though ye have done this, yet will I
+be avenged of you, and after that I will cease.
+
+15:8 And he smote them hip and thigh with a great slaughter: and he
+went down and dwelt in the top of the rock Etam.
+
+15:9 Then the Philistines went up, and pitched in Judah, and spread
+themselves in Lehi.
+
+15:10 And the men of Judah said, Why are ye come up against us? And
+they answered, To bind Samson are we come up, to do to him as he hath
+done to us.
+
+15:11 Then three thousand men of Judah went to the top of the rock
+Etam, and said to Samson, Knowest thou not that the Philistines are
+rulers over us? what is this that thou hast done unto us? And he said
+unto them, As they did unto me, so have I done unto them.
+
+15:12 And they said unto him, We are come down to bind thee, that we
+may deliver thee into the hand of the Philistines. And Samson said
+unto them, Swear unto me, that ye will not fall upon me yourselves.
+
+15:13 And they spake unto him, saying, No; but we will bind thee fast,
+and deliver thee into their hand: but surely we will not kill thee.
+And they bound him with two new cords, and brought him up from the
+rock.
+
+15:14 And when he came unto Lehi, the Philistines shouted against him:
+and the Spirit of the LORD came mightily upon him, and the cords that
+were upon his arms became as flax that was burnt with fire, and his
+bands loosed from off his hands.
+
+15:15 And he found a new jawbone of an ass, and put forth his hand,
+and took it, and slew a thousand men therewith.
+
+15:16 And Samson said, With the jawbone of an ass, heaps upon heaps,
+with the jaw of an ass have I slain a thousand men.
+
+15:17 And it came to pass, when he had made an end of speaking, that
+he cast away the jawbone out of his hand, and called that place
+Ramathlehi.
+
+15:18 And he was sore athirst, and called on the LORD, and said, Thou
+hast given this great deliverance into the hand of thy servant: and
+now shall I die for thirst, and fall into the hand of the
+uncircumcised? 15:19 But God clave an hollow place that was in the
+jaw, and there came water thereout; and when he had drunk, his spirit
+came again, and he revived: wherefore he called the name thereof
+Enhakkore, which is in Lehi unto this day.
+
+15:20 And he judged Israel in the days of the Philistines twenty
+years.
+
+16:1 Then went Samson to Gaza, and saw there an harlot, and went in
+unto her.
+
+16:2 And it was told the Gazites, saying, Samson is come hither. And
+they compassed him in, and laid wait for him all night in the gate of
+the city, and were quiet all the night, saying, In the morning, when
+it is day, we shall kill him.
+
+16:3 And Samson lay till midnight, and arose at midnight, and took the
+doors of the gate of the city, and the two posts, and went away with
+them, bar and all, and put them upon his shoulders, and carried them
+up to the top of an hill that is before Hebron.
+
+16:4 And it came to pass afterward, that he loved a woman in the
+valley of Sorek, whose name was Delilah.
+
+16:5 And the lords of the Philistines came up unto her, and said unto
+her, Entice him, and see wherein his great strength lieth, and by what
+means we may prevail against him, that we may bind him to afflict him;
+and we will give thee every one of us eleven hundred pieces of silver.
+
+16:6 And Delilah said to Samson, Tell me, I pray thee, wherein thy
+great strength lieth, and wherewith thou mightest be bound to afflict
+thee.
+
+16:7 And Samson said unto her, If they bind me with seven green withs
+that were never dried, then shall I be weak, and be as another man.
+
+16:8 Then the lords of the Philistines brought up to her seven green
+withs which had not been dried, and she bound him with them.
+
+16:9 Now there were men lying in wait, abiding with her in the
+chamber.
+
+And she said unto him, The Philistines be upon thee, Samson. And he
+brake the withs, as a thread of tow is broken when it toucheth the
+fire. So his strength was not known.
+
+16:10 And Delilah said unto Samson, Behold, thou hast mocked me, and
+told me lies: now tell me, I pray thee, wherewith thou mightest be
+bound.
+
+16:11 And he said unto her, If they bind me fast with new ropes that
+never were occupied, then shall I be weak, and be as another man.
+
+16:12 Delilah therefore took new ropes, and bound him therewith, and
+said unto him, The Philistines be upon thee, Samson. And there were
+liers in wait abiding in the chamber. And he brake them from off his
+arms like a thread.
+
+16:13 And Delilah said unto Samson, Hitherto thou hast mocked me, and
+told me lies: tell me wherewith thou mightest be bound. And he said
+unto her, If thou weavest the seven locks of my head with the web.
+
+16:14 And she fastened it with the pin, and said unto him, The
+Philistines be upon thee, Samson. And he awaked out of his sleep, and
+went away with the pin of the beam, and with the web.
+
+16:15 And she said unto him, How canst thou say, I love thee, when
+thine heart is not with me? thou hast mocked me these three times, and
+hast not told me wherein thy great strength lieth.
+
+16:16 And it came to pass, when she pressed him daily with her words,
+and urged him, so that his soul was vexed unto death; 16:17 That he
+told her all his heart, and said unto her, There hath not come a razor
+upon mine head; for I have been a Nazarite unto God from my mother's
+womb: if I be shaven, then my strength will go from me, and I shall
+become weak, and be like any other man.
+
+16:18 And when Delilah saw that he had told her all his heart, she
+sent and called for the lords of the Philistines, saying, Come up this
+once, for he hath shewed me all his heart. Then the lords of the
+Philistines came up unto her, and brought money in their hand.
+
+16:19 And she made him sleep upon her knees; and she called for a man,
+and she caused him to shave off the seven locks of his head; and she
+began to afflict him, and his strength went from him.
+
+16:20 And she said, The Philistines be upon thee, Samson. And he awoke
+out of his sleep, and said, I will go out as at other times before,
+and shake myself. And he wist not that the LORD was departed from him.
+
+16:21 But the Philistines took him, and put out his eyes, and brought
+him down to Gaza, and bound him with fetters of brass; and he did
+grind in the prison house.
+
+16:22 Howbeit the hair of his head began to grow again after he was
+shaven.
+
+16:23 Then the lords of the Philistines gathered them together for to
+offer a great sacrifice unto Dagon their god, and to rejoice: for they
+said, Our god hath delivered Samson our enemy into our hand.
+
+16:24 And when the people saw him, they praised their god: for they
+said, Our god hath delivered into our hands our enemy, and the
+destroyer of our country, which slew many of us.
+
+16:25 And it came to pass, when their hearts were merry, that they
+said, Call for Samson, that he may make us sport. And they called for
+Samson out of the prison house; and he made them sport: and they set
+him between the pillars.
+
+16:26 And Samson said unto the lad that held him by the hand, Suffer
+me that I may feel the pillars whereupon the house standeth, that I
+may lean upon them.
+
+16:27 Now the house was full of men and women; and all the lords of
+the Philistines were there; and there were upon the roof about three
+thousand men and women, that beheld while Samson made sport.
+
+16:28 And Samson called unto the LORD, and said, O Lord God, remember
+me, I pray thee, and strengthen me, I pray thee, only this once, O
+God, that I may be at once avenged of the Philistines for my two eyes.
+
+16:29 And Samson took hold of the two middle pillars upon which the
+house stood, and on which it was borne up, of the one with his right
+hand, and of the other with his left.
+
+16:30 And Samson said, Let me die with the Philistines. And he bowed
+himself with all his might; and the house fell upon the lords, and
+upon all the people that were therein. So the dead which he slew at
+his death were more than they which he slew in his life.
+
+16:31 Then his brethren and all the house of his father came down, and
+took him, and brought him up, and buried him between Zorah and Eshtaol
+in the buryingplace of Manoah his father. And he judged Israel twenty
+years.
+
+17:1 And there was a man of mount Ephraim, whose name was Micah.
+
+17:2 And he said unto his mother, The eleven hundred shekels of silver
+that were taken from thee, about which thou cursedst, and spakest of
+also in mine ears, behold, the silver is with me; I took it. And his
+mother said, Blessed be thou of the LORD, my son.
+
+17:3 And when he had restored the eleven hundred shekels of silver to
+his mother, his mother said, I had wholly dedicated the silver unto
+the LORD from my hand for my son, to make a graven image and a molten
+image: now therefore I will restore it unto thee.
+
+17:4 Yet he restored the money unto his mother; and his mother took
+two hundred shekels of silver, and gave them to the founder, who made
+thereof a graven image and a molten image: and they were in the house
+of Micah.
+
+17:5 And the man Micah had an house of gods, and made an ephod, and
+teraphim, and consecrated one of his sons, who became his priest.
+
+17:6 In those days there was no king in Israel, but every man did that
+which was right in his own eyes.
+
+17:7 And there was a young man out of Bethlehemjudah of the family of
+Judah, who was a Levite, and he sojourned there.
+
+17:8 And the man departed out of the city from Bethlehemjudah to
+sojourn where he could find a place: and he came to mount Ephraim to
+the house of Micah, as he journeyed.
+
+17:9 And Micah said unto him, Whence comest thou? And he said unto
+him, I am a Levite of Bethlehemjudah, and I go to sojourn where I may
+find a place.
+
+17:10 And Micah said unto him, Dwell with me, and be unto me a father
+and a priest, and I will give thee ten shekels of silver by the year,
+and a suit of apparel, and thy victuals. So the Levite went in.
+
+17:11 And the Levite was content to dwell with the man; and the young
+man was unto him as one of his sons.
+
+17:12 And Micah consecrated the Levite; and the young man became his
+priest, and was in the house of Micah.
+
+17:13 Then said Micah, Now know I that the LORD will do me good,
+seeing I have a Levite to my priest.
+
+18:1 In those days there was no king in Israel: and in those days the
+tribe of the Danites sought them an inheritance to dwell in; for unto
+that day all their inheritance had not fallen unto them among the
+tribes of Israel.
+
+18:2 And the children of Dan sent of their family five men from their
+coasts, men of valour, from Zorah, and from Eshtaol, to spy out the
+land, and to search it; and they said unto them, Go, search the land:
+who when they came to mount Ephraim, to the house of Micah, they
+lodged there.
+
+18:3 When they were by the house of Micah, they knew the voice of the
+young man the Levite: and they turned in thither, and said unto him,
+Who brought thee hither? and what makest thou in this place? and what
+hast thou here? 18:4 And he said unto them, Thus and thus dealeth
+Micah with me, and hath hired me, and I am his priest.
+
+18:5 And they said unto him, Ask counsel, we pray thee, of God, that
+we may know whether our way which we go shall be prosperous.
+
+18:6 And the priest said unto them, Go in peace: before the LORD is
+your way wherein ye go.
+
+18:7 Then the five men departed, and came to Laish, and saw the people
+that were therein, how they dwelt careless, after the manner of the
+Zidonians, quiet and secure; and there was no magistrate in the land,
+that might put them to shame in any thing; and they were far from the
+Zidonians, and had no business with any man.
+
+18:8 And they came unto their brethren to Zorah and Eshtaol: and their
+brethren said unto them, What say ye? 18:9 And they said, Arise, that
+we may go up against them: for we have seen the land, and, behold, it
+is very good: and are ye still? be not slothful to go, and to enter to
+possess the land.
+
+18:10 When ye go, ye shall come unto a people secure, and to a large
+land: for God hath given it into your hands; a place where there is no
+want of any thing that is in the earth.
+
+18:11 And there went from thence of the family of the Danites, out of
+Zorah and out of Eshtaol, six hundred men appointed with weapons of
+war.
+
+18:12 And they went up, and pitched in Kirjathjearim, in Judah:
+wherefore they called that place Mahanehdan unto this day: behold, it
+is behind Kirjathjearim.
+
+18:13 And they passed thence unto mount Ephraim, and came unto the
+house of Micah.
+
+18:14 Then answered the five men that went to spy out the country of
+Laish, and said unto their brethren, Do ye know that there is in these
+houses an ephod, and teraphim, and a graven image, and a molten image?
+now therefore consider what ye have to do.
+
+18:15 And they turned thitherward, and came to the house of the young
+man the Levite, even unto the house of Micah, and saluted him.
+
+18:16 And the six hundred men appointed with their weapons of war,
+which were of the children of Dan, stood by the entering of the gate.
+
+18:17 And the five men that went to spy out the land went up, and came
+in thither, and took the graven image, and the ephod, and the
+teraphim, and the molten image: and the priest stood in the entering
+of the gate with the six hundred men that were appointed with weapons
+of war.
+
+18:18 And these went into Micah's house, and fetched the carved image,
+the ephod, and the teraphim, and the molten image. Then said the
+priest unto them, What do ye? 18:19 And they said unto him, Hold thy
+peace, lay thine hand upon thy mouth, and go with us, and be to us a
+father and a priest: is it better for thee to be a priest unto the
+house of one man, or that thou be a priest unto a tribe and a family
+in Israel? 18:20 And the priest's heart was glad, and he took the
+ephod, and the teraphim, and the graven image, and went in the midst
+of the people.
+
+18:21 So they turned and departed, and put the little ones and the
+cattle and the carriage before them.
+
+18:22 And when they were a good way from the house of Micah, the men
+that were in the houses near to Micah's house were gathered together,
+and overtook the children of Dan.
+
+18:23 And they cried unto the children of Dan. And they turned their
+faces, and said unto Micah, What aileth thee, that thou comest with
+such a company? 18:24 And he said, Ye have taken away my gods which I
+made, and the priest, and ye are gone away: and what have I more? and
+what is this that ye say unto me, What aileth thee? 18:25 And the
+children of Dan said unto him, Let not thy voice be heard among us,
+lest angry fellows run upon thee, and thou lose thy life, with the
+lives of thy household.
+
+18:26 And the children of Dan went their way: and when Micah saw that
+they were too strong for him, he turned and went back unto his house.
+
+18:27 And they took the things which Micah had made, and the priest
+which he had, and came unto Laish, unto a people that were at quiet
+and secure: and they smote them with the edge of the sword, and burnt
+the city with fire.
+
+18:28 And there was no deliverer, because it was far from Zidon, and
+they had no business with any man; and it was in the valley that lieth
+by Bethrehob. And they built a city, and dwelt therein.
+
+18:29 And they called the name of the city Dan, after the name of Dan
+their father, who was born unto Israel: howbeit the name of the city
+was Laish at the first.
+
+18:30 And the children of Dan set up the graven image: and Jonathan,
+the son of Gershom, the son of Manasseh, he and his sons were priests
+to the tribe of Dan until the day of the captivity of the land.
+
+18:31 And they set them up Micah's graven image, which he made, all
+the time that the house of God was in Shiloh.
+
+19:1 And it came to pass in those days, when there was no king in
+Israel, that there was a certain Levite sojourning on the side of
+mount Ephraim, who took to him a concubine out of Bethlehemjudah.
+
+19:2 And his concubine played the whore against him, and went away
+from him unto her father's house to Bethlehemjudah, and was there four
+whole months.
+
+19:3 And her husband arose, and went after her, to speak friendly unto
+her, and to bring her again, having his servant with him, and a couple
+of asses: and she brought him into her father's house: and when the
+father of the damsel saw him, he rejoiced to meet him.
+
+19:4 And his father in law, the damsel's father, retained him; and he
+abode with him three days: so they did eat and drink, and lodged
+there.
+
+19:5 And it came to pass on the fourth day, when they arose early in
+the morning, that he rose up to depart: and the damsel's father said
+unto his son in law, Comfort thine heart with a morsel of bread, and
+afterward go your way.
+
+19:6 And they sat down, and did eat and drink both of them together:
+for the damsel's father had said unto the man, Be content, I pray
+thee, and tarry all night, and let thine heart be merry.
+
+19:7 And when the man rose up to depart, his father in law urged him:
+therefore he lodged there again.
+
+19:8 And he arose early in the morning on the fifth day to depart; and
+the damsel's father said, Comfort thine heart, I pray thee. And they
+tarried until afternoon, and they did eat both of them.
+
+19:9 And when the man rose up to depart, he, and his concubine, and
+his servant, his father in law, the damsel's father, said unto him,
+Behold, now the day draweth toward evening, I pray you tarry all
+night: behold, the day groweth to an end, lodge here, that thine heart
+may be merry; and to morrow get you early on your way, that thou
+mayest go home.
+
+19:10 But the man would not tarry that night, but he rose up and
+departed, and came over against Jebus, which is Jerusalem; and there
+were with him two asses saddled, his concubine also was with him.
+
+19:11 And when they were by Jebus, the day was far spent; and the
+servant said unto his master, Come, I pray thee, and let us turn in
+into this city of the Jebusites, and lodge in it.
+
+19:12 And his master said unto him, We will not turn aside hither into
+the city of a stranger, that is not of the children of Israel; we will
+pass over to Gibeah.
+
+19:13 And he said unto his servant, Come, and let us draw near to one
+of these places to lodge all night, in Gibeah, or in Ramah.
+
+19:14 And they passed on and went their way; and the sun went down
+upon them when they were by Gibeah, which belongeth to Benjamin.
+
+19:15 And they turned aside thither, to go in and to lodge in Gibeah:
+and when he went in, he sat him down in a street of the city: for
+there was no man that took them into his house to lodging.
+
+19:16 And, behold, there came an old man from his work out of the
+field at even, which was also of mount Ephraim; and he sojourned in
+Gibeah: but the men of the place were Benjamites.
+
+19:17 And when he had lifted up his eyes, he saw a wayfaring man in
+the street of the city: and the old man said, Whither goest thou? and
+whence comest thou? 19:18 And he said unto him, We are passing from
+Bethlehemjudah toward the side of mount Ephraim; from thence am I: and
+I went to Bethlehemjudah, but I am now going to the house of the LORD;
+and there is no man that receiveth me to house.
+
+19:19 Yet there is both straw and provender for our asses; and there
+is bread and wine also for me, and for thy handmaid, and for the young
+man which is with thy servants: there is no want of any thing.
+
+19:20 And the old man said, Peace be with thee; howsoever let all thy
+wants lie upon me; only lodge not in the street.
+
+19:21 So he brought him into his house, and gave provender unto the
+asses: and they washed their feet, and did eat and drink.
+
+19:22 Now as they were making their hearts merry, behold, the men of
+the city, certain sons of Belial, beset the house round about, and
+beat at the door, and spake to the master of the house, the old man,
+saying, Bring forth the man that came into thine house, that we may
+know him.
+
+19:23 And the man, the master of the house, went out unto them, and
+said unto them, Nay, my brethren, nay, I pray you, do not so wickedly;
+seeing that this man is come into mine house, do not this folly.
+
+19:24 Behold, here is my daughter a maiden, and his concubine; them I
+will bring out now, and humble ye them, and do with them what seemeth
+good unto you: but unto this man do not so vile a thing.
+
+19:25 But the men would not hearken to him: so the man took his
+concubine, and brought her forth unto them; and they knew her, and
+abused her all the night until the morning: and when the day began to
+spring, they let her go.
+
+19:26 Then came the woman in the dawning of the day, and fell down at
+the door of the man's house where her lord was, till it was light.
+
+19:27 And her lord rose up in the morning, and opened the doors of the
+house, and went out to go his way: and, behold, the woman his
+concubine was fallen down at the door of the house, and her hands were
+upon the threshold.
+
+19:28 And he said unto her, Up, and let us be going. But none
+answered.
+
+Then the man took her up upon an ass, and the man rose up, and gat him
+unto his place.
+
+19:29 And when he was come into his house, he took a knife, and laid
+hold on his concubine, and divided her, together with her bones, into
+twelve pieces, and sent her into all the coasts of Israel.
+
+19:30 And it was so, that all that saw it said, There was no such deed
+done nor seen from the day that the children of Israel came up out of
+the land of Egypt unto this day: consider of it, take advice, and
+speak your minds.
+
+20:1 Then all the children of Israel went out, and the congregation
+was gathered together as one man, from Dan even to Beersheba, with the
+land of Gilead, unto the LORD in Mizpeh.
+
+20:2 And the chief of all the people, even of all the tribes of
+Israel, presented themselves in the assembly of the people of God,
+four hundred thousand footmen that drew sword.
+
+20:3 (Now the children of Benjamin heard that the children of Israel
+were gone up to Mizpeh.) Then said the children of Israel, Tell us,
+how was this wickedness? 20:4 And the Levite, the husband of the
+woman that was slain, answered and said, I came into Gibeah that
+belongeth to Benjamin, I and my concubine, to lodge.
+
+20:5 And the men of Gibeah rose against me, and beset the house round
+about upon me by night, and thought to have slain me: and my concubine
+have they forced, that she is dead.
+
+20:6 And I took my concubine, and cut her in pieces, and sent her
+throughout all the country of the inheritance of Israel: for they have
+committed lewdness and folly in Israel.
+
+20:7 Behold, ye are all children of Israel; give here your advice and
+counsel.
+
+20:8 And all the people arose as one man, saying, We will not any of
+us go to his tent, neither will we any of us turn into his house.
+
+20:9 But now this shall be the thing which we will do to Gibeah; we
+will go up by lot against it; 20:10 And we will take ten men of an
+hundred throughout all the tribes of Israel, and an hundred of a
+thousand, and a thousand out of ten thousand, to fetch victual for the
+people, that they may do, when they come to Gibeah of Benjamin,
+according to all the folly that they have wrought in Israel.
+
+20:11 So all the men of Israel were gathered against the city, knit
+together as one man.
+
+20:12 And the tribes of Israel sent men through all the tribe of
+Benjamin, saying, What wickedness is this that is done among you?
+20:13 Now therefore deliver us the men, the children of Belial, which
+are in Gibeah, that we may put them to death, and put away evil from
+Israel. But the children of Benjamin would not hearken to the voice of
+their brethren the children of Israel.
+
+20:14 But the children of Benjamin gathered themselves together out of
+the cities unto Gibeah, to go out to battle against the children of
+Israel.
+
+20:15 And the children of Benjamin were numbered at that time out of
+the cities twenty and six thousand men that drew sword, beside the
+inhabitants of Gibeah, which were numbered seven hundred chosen men.
+
+20:16 Among all this people there were seven hundred chosen men
+lefthanded; every one could sling stones at an hair breadth, and not
+miss.
+
+20:17 And the men of Israel, beside Benjamin, were numbered four
+hundred thousand men that drew sword: all these were men of war.
+
+20:18 And the children of Israel arose, and went up to the house of
+God, and asked counsel of God, and said, Which of us shall go up first
+to the battle against the children of Benjamin? And the LORD said,
+Judah shall go up first.
+
+20:19 And the children of Israel rose up in the morning, and encamped
+against Gibeah.
+
+20:20 And the men of Israel went out to battle against Benjamin; and
+the men of Israel put themselves in array to fight against them at
+Gibeah.
+
+20:21 And the children of Benjamin came forth out of Gibeah, and
+destroyed down to the ground of the Israelites that day twenty and two
+thousand men.
+
+20:22 And the people the men of Israel encouraged themselves, and set
+their battle again in array in the place where they put themselves in
+array the first day.
+
+20:23 (And the children of Israel went up and wept before the LORD
+until even, and asked counsel of the LORD, saying, Shall I go up again
+to battle against the children of Benjamin my brother? And the LORD
+said, Go up against him.) 20:24 And the children of Israel came near
+against the children of Benjamin the second day.
+
+20:25 And Benjamin went forth against them out of Gibeah the second
+day, and destroyed down to the ground of the children of Israel again
+eighteen thousand men; all these drew the sword.
+
+20:26 Then all the children of Israel, and all the people, went up,
+and came unto the house of God, and wept, and sat there before the
+LORD, and fasted that day until even, and offered burnt offerings and
+peace offerings before the LORD.
+
+20:27 And the children of Israel enquired of the LORD, (for the ark of
+the covenant of God was there in those days, 20:28 And Phinehas, the
+son of Eleazar, the son of Aaron, stood before it in those days,)
+saying, Shall I yet again go out to battle against the children of
+Benjamin my brother, or shall I cease? And the LORD said, Go up; for
+to morrow I will deliver them into thine hand.
+
+20:29 And Israel set liers in wait round about Gibeah.
+
+20:30 And the children of Israel went up against the children of
+Benjamin on the third day, and put themselves in array against Gibeah,
+as at other times.
+
+20:31 And the children of Benjamin went out against the people, and
+were drawn away from the city; and they began to smite of the people,
+and kill, as at other times, in the highways, of which one goeth up to
+the house of God, and the other to Gibeah in the field, about thirty
+men of Israel.
+
+20:32 And the children of Benjamin said, They are smitten down before
+us, as at the first. But the children of Israel said, Let us flee, and
+draw them from the city unto the highways.
+
+20:33 And all the men of Israel rose up out of their place, and put
+themselves in array at Baaltamar: and the liers in wait of Israel came
+forth out of their places, even out of the meadows of Gibeah.
+
+20:34 And there came against Gibeah ten thousand chosen men out of all
+Israel, and the battle was sore: but they knew not that evil was near
+them.
+
+20:35 And the LORD smote Benjamin before Israel: and the children of
+Israel destroyed of the Benjamites that day twenty and five thousand
+and an hundred men: all these drew the sword.
+
+20:36 So the children of Benjamin saw that they were smitten: for the
+men of Israel gave place to the Benjamites, because they trusted unto
+the liers in wait which they had set beside Gibeah.
+
+20:37 And the liers in wait hasted, and rushed upon Gibeah; and the
+liers in wait drew themselves along, and smote all the city with the
+edge of the sword.
+
+20:38 Now there was an appointed sign between the men of Israel and
+the liers in wait, that they should make a great flame with smoke rise
+up out of the city.
+
+20:39 And when the men of Israel retired in the battle, Benjamin began
+to smite and kill of the men of Israel about thirty persons: for they
+said, Surely they are smitten down before us, as in the first battle.
+
+20:40 But when the flame began to arise up out of the city with a
+pillar of smoke, the Benjamites looked behind them, and, behold, the
+flame of the city ascended up to heaven.
+
+20:41 And when the men of Israel turned again, the men of Benjamin
+were amazed: for they saw that evil was come upon them.
+
+20:42 Therefore they turned their backs before the men of Israel unto
+the way of the wilderness; but the battle overtook them; and them
+which came out of the cities they destroyed in the midst of them.
+
+20:43 Thus they inclosed the Benjamites round about, and chased them,
+and trode them down with ease over against Gibeah toward the
+sunrising.
+
+20:44 And there fell of Benjamin eighteen thousand men; all these were
+men of valour.
+
+20:45 And they turned and fled toward the wilderness unto the rock of
+Rimmon: and they gleaned of them in the highways five thousand men;
+and pursued hard after them unto Gidom, and slew two thousand men of
+them.
+
+20:46 So that all which fell that day of Benjamin were twenty and five
+thousand men that drew the sword; all these were men of valour.
+
+20:47 But six hundred men turned and fled to the wilderness unto the
+rock Rimmon, and abode in the rock Rimmon four months.
+
+20:48 And the men of Israel turned again upon the children of
+Benjamin, and smote them with the edge of the sword, as well the men
+of every city, as the beast, and all that came to hand: also they set
+on fire all the cities that they came to.
+
+21:1 Now the men of Israel had sworn in Mizpeh, saying, There shall
+not any of us give his daughter unto Benjamin to wife.
+
+21:2 And the people came to the house of God, and abode there till
+even before God, and lifted up their voices, and wept sore; 21:3 And
+said, O LORD God of Israel, why is this come to pass in Israel, that
+there should be to day one tribe lacking in Israel? 21:4 And it came
+to pass on the morrow, that the people rose early, and built there an
+altar, and offered burnt offerings and peace offerings.
+
+21:5 And the children of Israel said, Who is there among all the
+tribes of Israel that came not up with the congregation unto the LORD?
+For they had made a great oath concerning him that came not up to the
+LORD to Mizpeh, saying, He shall surely be put to death.
+
+21:6 And the children of Israel repented them for Benjamin their
+brother, and said, There is one tribe cut off from Israel this day.
+
+21:7 How shall we do for wives for them that remain, seeing we have
+sworn by the LORD that we will not give them of our daughters to
+wives? 21:8 And they said, What one is there of the tribes of Israel
+that came not up to Mizpeh to the LORD? And, behold, there came none
+to the camp from Jabeshgilead to the assembly.
+
+21:9 For the people were numbered, and, behold, there were none of the
+inhabitants of Jabeshgilead there.
+
+21:10 And the congregation sent thither twelve thousand men of the
+valiantest, and commanded them, saying, Go and smite the inhabitants
+of Jabeshgilead with the edge of the sword, with the women and the
+children.
+
+21:11 And this is the thing that ye shall do, Ye shall utterly destroy
+every male, and every woman that hath lain by man.
+
+21:12 And they found among the inhabitants of Jabeshgilead four
+hundred young virgins, that had known no man by lying with any male:
+and they brought them unto the camp to Shiloh, which is in the land of
+Canaan.
+
+21:13 And the whole congregation sent some to speak to the children of
+Benjamin that were in the rock Rimmon, and to call peaceably unto
+them.
+
+21:14 And Benjamin came again at that time; and they gave them wives
+which they had saved alive of the women of Jabeshgilead: and yet so
+they sufficed them not.
+
+21:15 And the people repented them for Benjamin, because that the LORD
+had made a breach in the tribes of Israel.
+
+21:16 Then the elders of the congregation said, How shall we do for
+wives for them that remain, seeing the women are destroyed out of
+Benjamin? 21:17 And they said, There must be an inheritance for them
+that be escaped of Benjamin, that a tribe be not destroyed out of
+Israel.
+
+21:18 Howbeit we may not give them wives of our daughters: for the
+children of Israel have sworn, saying, Cursed be he that giveth a wife
+to Benjamin.
+
+21:19 Then they said, Behold, there is a feast of the LORD in Shiloh
+yearly in a place which is on the north side of Bethel, on the east
+side of the highway that goeth up from Bethel to Shechem, and on the
+south of Lebonah.
+
+21:20 Therefore they commanded the children of Benjamin, saying, Go
+and lie in wait in the vineyards; 21:21 And see, and, behold, if the
+daughters of Shiloh come out to dance in dances, then come ye out of
+the vineyards, and catch you every man his wife of the daughters of
+Shiloh, and go to the land of Benjamin.
+
+21:22 And it shall be, when their fathers or their brethren come unto
+us to complain, that we will say unto them, Be favourable unto them
+for our sakes: because we reserved not to each man his wife in the
+war: for ye did not give unto them at this time, that ye should be
+guilty.
+
+21:23 And the children of Benjamin did so, and took them wives,
+according to their number, of them that danced, whom they caught: and
+they went and returned unto their inheritance, and repaired the
+cities, and dwelt in them.
+
+21:24 And the children of Israel departed thence at that time, every
+man to his tribe and to his family, and they went out from thence
+every man to his inheritance.
+
+21:25 In those days there was no king in Israel: every man did that
+which was right in his own eyes.
+
+
+
+
+The Book of Ruth
+
+
+1:1 Now it came to pass in the days when the judges ruled, that there
+was a famine in the land. And a certain man of Bethlehemjudah went to
+sojourn in the country of Moab, he, and his wife, and his two sons.
+
+1:2 And the name of the man was Elimelech, and the name of his wife
+Naomi, and the name of his two sons Mahlon and Chilion, Ephrathites of
+Bethlehemjudah. And they came into the country of Moab, and continued
+there.
+
+1:3 And Elimelech Naomi's husband died; and she was left, and her two
+sons.
+
+1:4 And they took them wives of the women of Moab; the name of the one
+was Orpah, and the name of the other Ruth: and they dwelled there
+about ten years.
+
+1:5 And Mahlon and Chilion died also both of them; and the woman was
+left of her two sons and her husband.
+
+1:6 Then she arose with her daughters in law, that she might return
+from the country of Moab: for she had heard in the country of Moab how
+that the LORD had visited his people in giving them bread.
+
+1:7 Wherefore she went forth out of the place where she was, and her
+two daughters in law with her; and they went on the way to return unto
+the land of Judah.
+
+1:8 And Naomi said unto her two daughters in law, Go, return each to
+her mother's house: the LORD deal kindly with you, as ye have dealt
+with the dead, and with me.
+
+1:9 The LORD grant you that ye may find rest, each of you in the house
+of her husband. Then she kissed them; and they lifted up their voice,
+and wept.
+
+1:10 And they said unto her, Surely we will return with thee unto thy
+people.
+
+1:11 And Naomi said, Turn again, my daughters: why will ye go with me?
+are there yet any more sons in my womb, that they may be your
+husbands? 1:12 Turn again, my daughters, go your way; for I am too
+old to have an husband. If I should say, I have hope, if I should have
+an husband also to night, and should also bear sons; 1:13 Would ye
+tarry for them till they were grown? would ye stay for them from
+having husbands? nay, my daughters; for it grieveth me much for your
+sakes that the hand of the LORD is gone out against me.
+
+1:14 And they lifted up their voice, and wept again: and Orpah kissed
+her mother in law; but Ruth clave unto her.
+
+1:15 And she said, Behold, thy sister in law is gone back unto her
+people, and unto her gods: return thou after thy sister in law.
+
+1:16 And Ruth said, Intreat me not to leave thee, or to return from
+following after thee: for whither thou goest, I will go; and where
+thou lodgest, I will lodge: thy people shall be my people, and thy God
+my God: 1:17 Where thou diest, will I die, and there will I be buried:
+the LORD do so to me, and more also, if ought but death part thee and
+me.
+
+1:18 When she saw that she was stedfastly minded to go with her, then
+she left speaking unto her.
+
+1:19 So they two went until they came to Bethlehem. And it came to
+pass, when they were come to Bethlehem, that all the city was moved
+about them, and they said, Is this Naomi? 1:20 And she said unto
+them, Call me not Naomi, call me Mara: for the Almighty hath dealt
+very bitterly with me.
+
+1:21 I went out full and the LORD hath brought me home again empty:
+why then call ye me Naomi, seeing the LORD hath testified against me,
+and the Almighty hath afflicted me? 1:22 So Naomi returned, and Ruth
+the Moabitess, her daughter in law, with her, which returned out of
+the country of Moab: and they came to Bethlehem in the beginning of
+barley harvest.
+
+2:1 And Naomi had a kinsman of her husband's, a mighty man of wealth,
+of the family of Elimelech; and his name was Boaz.
+
+2:2 And Ruth the Moabitess said unto Naomi, Let me now go to the
+field, and glean ears of corn after him in whose sight I shall find
+grace.
+
+And she said unto her, Go, my daughter.
+
+2:3 And she went, and came, and gleaned in the field after the
+reapers: and her hap was to light on a part of the field belonging
+unto Boaz, who was of the kindred of Elimelech.
+
+2:4 And, behold, Boaz came from Bethlehem, and said unto the reapers,
+The LORD be with you. And they answered him, The LORD bless thee.
+
+2:5 Then said Boaz unto his servant that was set over the reapers,
+Whose damsel is this? 2:6 And the servant that was set over the
+reapers answered and said, It is the Moabitish damsel that came back
+with Naomi out of the country of Moab: 2:7 And she said, I pray you,
+let me glean and gather after the reapers among the sheaves: so she
+came, and hath continued even from the morning until now, that she
+tarried a little in the house.
+
+2:8 Then said Boaz unto Ruth, Hearest thou not, my daughter? Go not to
+glean in another field, neither go from hence, but abide here fast by
+my maidens: 2:9 Let thine eyes be on the field that they do reap, and
+go thou after them: have I not charged the young men that they shall
+not touch thee? and when thou art athirst, go unto the vessels, and
+drink of that which the young men have drawn.
+
+2:10 Then she fell on her face, and bowed herself to the ground, and
+said unto him, Why have I found grace in thine eyes, that thou
+shouldest take knowledge of me, seeing I am a stranger? 2:11 And Boaz
+answered and said unto her, It hath fully been shewed me, all that
+thou hast done unto thy mother in law since the death of thine
+husband: and how thou hast left thy father and thy mother, and the
+land of thy nativity, and art come unto a people which thou knewest
+not heretofore.
+
+2:12 The LORD recompense thy work, and a full reward be given thee of
+the LORD God of Israel, under whose wings thou art come to trust.
+
+2:13 Then she said, Let me find favour in thy sight, my lord; for that
+thou hast comforted me, and for that thou hast spoken friendly unto
+thine handmaid, though I be not like unto one of thine handmaidens.
+
+2:14 And Boaz said unto her, At mealtime come thou hither, and eat of
+the bread, and dip thy morsel in the vinegar. And she sat beside the
+reapers: and he reached her parched corn, and she did eat, and was
+sufficed, and left.
+
+2:15 And when she was risen up to glean, Boaz commanded his young men,
+saying, Let her glean even among the sheaves, and reproach her not:
+2:16 And let fall also some of the handfuls of purpose for her, and
+leave them, that she may glean them, and rebuke her not.
+
+2:17 So she gleaned in the field until even, and beat out that she had
+gleaned: and it was about an ephah of barley.
+
+2:18 And she took it up, and went into the city: and her mother in law
+saw what she had gleaned: and she brought forth, and gave to her that
+she had reserved after she was sufficed.
+
+2:19 And her mother in law said unto her, Where hast thou gleaned to
+day? and where wroughtest thou? blessed be he that did take knowledge
+of thee. And she shewed her mother in law with whom she had wrought,
+and said, The man's name with whom I wrought to day is Boaz.
+
+2:20 And Naomi said unto her daughter in law, Blessed be he of the
+LORD, who hath not left off his kindness to the living and to the
+dead. And Naomi said unto her, The man is near of kin unto us, one of
+our next kinsmen.
+
+2:21 And Ruth the Moabitess said, He said unto me also, Thou shalt
+keep fast by my young men, until they have ended all my harvest.
+
+2:22 And Naomi said unto Ruth her daughter in law, It is good, my
+daughter, that thou go out with his maidens, that they meet thee not
+in any other field.
+
+2:23 So she kept fast by the maidens of Boaz to glean unto the end of
+barley harvest and of wheat harvest; and dwelt with her mother in law.
+
+3:1 Then Naomi her mother in law said unto her, My daughter, shall I
+not seek rest for thee, that it may be well with thee? 3:2 And now is
+not Boaz of our kindred, with whose maidens thou wast? Behold, he
+winnoweth barley to night in the threshingfloor.
+
+3:3 Wash thyself therefore, and anoint thee, and put thy raiment upon
+thee, and get thee down to the floor: but make not thyself known unto
+the man, until he shall have done eating and drinking.
+
+3:4 And it shall be, when he lieth down, that thou shalt mark the
+place where he shall lie, and thou shalt go in, and uncover his feet,
+and lay thee down; and he will tell thee what thou shalt do.
+
+3:5 And she said unto her, All that thou sayest unto me I will do.
+
+3:6 And she went down unto the floor, and did according to all that
+her mother in law bade her.
+
+3:7 And when Boaz had eaten and drunk, and his heart was merry, he
+went to lie down at the end of the heap of corn: and she came softly,
+and uncovered his feet, and laid her down.
+
+3:8 And it came to pass at midnight, that the man was afraid, and
+turned himself: and, behold, a woman lay at his feet.
+
+3:9 And he said, Who art thou? And she answered, I am Ruth thine
+handmaid: spread therefore thy skirt over thine handmaid; for thou art
+a near kinsman.
+
+3:10 And he said, Blessed be thou of the LORD, my daughter: for thou
+hast shewed more kindness in the latter end than at the beginning,
+inasmuch as thou followedst not young men, whether poor or rich.
+
+3:11 And now, my daughter, fear not; I will do to thee all that thou
+requirest: for all the city of my people doth know that thou art a
+virtuous woman.
+
+3:12 And now it is true that I am thy near kinsman: howbeit there is a
+kinsman nearer than I.
+
+3:13 Tarry this night, and it shall be in the morning, that if he will
+perform unto thee the part of a kinsman, well; let him do the
+kinsman's part: but if he will not do the part of a kinsman to thee,
+then will I do the part of a kinsman to thee, as the LORD liveth: lie
+down until the morning.
+
+3:14 And she lay at his feet until the morning: and she rose up before
+one could know another. And he said, Let it not be known that a woman
+came into the floor.
+
+3:15 Also he said, Bring the vail that thou hast upon thee, and hold
+it.
+
+And when she held it, he measured six measures of barley, and laid it
+on her: and she went into the city.
+
+3:16 And when she came to her mother in law, she said, Who art thou,
+my daughter? And she told her all that the man had done to her.
+
+3:17 And she said, These six measures of barley gave he me; for he
+said to me, Go not empty unto thy mother in law.
+
+3:18 Then said she, Sit still, my daughter, until thou know how the
+matter will fall: for the man will not be in rest, until he have
+finished the thing this day.
+
+4:1 Then went Boaz up to the gate, and sat him down there: and,
+behold, the kinsman of whom Boaz spake came by; unto whom he said, Ho,
+such a one! turn aside, sit down here. And he turned aside, and sat
+down.
+
+4:2 And he took ten men of the elders of the city, and said, Sit ye
+down here. And they sat down.
+
+4:3 And he said unto the kinsman, Naomi, that is come again out of the
+country of Moab, selleth a parcel of land, which was our brother
+Elimelech's: 4:4 And I thought to advertise thee, saying, Buy it
+before the inhabitants, and before the elders of my people. If thou
+wilt redeem it, redeem it: but if thou wilt not redeem it, then tell
+me, that I may know: for there is none to redeem it beside thee; and I
+am after thee. And he said, I will redeem it.
+
+4:5 Then said Boaz, What day thou buyest the field of the hand of
+Naomi, thou must buy it also of Ruth the Moabitess, the wife of the
+dead, to raise up the name of the dead upon his inheritance.
+
+4:6 And the kinsman said, I cannot redeem it for myself, lest I mar
+mine own inheritance: redeem thou my right to thyself; for I cannot
+redeem it.
+
+4:7 Now this was the manner in former time in Israel concerning
+redeeming and concerning changing, for to confirm all things; a man
+plucked off his shoe, and gave it to his neighbour: and this was a
+testimony in Israel.
+
+4:8 Therefore the kinsman said unto Boaz, Buy it for thee. So he drew
+off his shoe.
+
+4:9 And Boaz said unto the elders, and unto all the people, Ye are
+witnesses this day, that I have bought all that was Elimelech's, and
+all that was Chilion's and Mahlon's, of the hand of Naomi.
+
+4:10 Moreover Ruth the Moabitess, the wife of Mahlon, have I purchased
+to be my wife, to raise up the name of the dead upon his inheritance,
+that the name of the dead be not cut off from among his brethren, and
+from the gate of his place: ye are witnesses this day.
+
+4:11 And all the people that were in the gate, and the elders, said,
+We are witnesses. The LORD make the woman that is come into thine
+house like Rachel and like Leah, which two did build the house of
+Israel: and do thou worthily in Ephratah, and be famous in Bethlehem:
+4:12 And let thy house be like the house of Pharez, whom Tamar bare
+unto Judah, of the seed which the LORD shall give thee of this young
+woman.
+
+4:13 So Boaz took Ruth, and she was his wife: and when he went in unto
+her, the LORD gave her conception, and she bare a son.
+
+4:14 And the women said unto Naomi, Blessed be the LORD, which hath
+not left thee this day without a kinsman, that his name may be famous
+in Israel.
+
+4:15 And he shall be unto thee a restorer of thy life, and a nourisher
+of thine old age: for thy daughter in law, which loveth thee, which is
+better to thee than seven sons, hath born him.
+
+4:16 And Naomi took the child, and laid it in her bosom, and became
+nurse unto it.
+
+4:17 And the women her neighbours gave it a name, saying, There is a
+son born to Naomi; and they called his name Obed: he is the father of
+Jesse, the father of David.
+
+4:18 Now these are the generations of Pharez: Pharez begat Hezron,
+4:19 And Hezron begat Ram, and Ram begat Amminadab, 4:20 And Amminadab
+begat Nahshon, and Nahshon begat Salmon, 4:21 And Salmon begat Boaz,
+and Boaz begat Obed, 4:22 And Obed begat Jesse, and Jesse begat David.
+
+
+
+
+The First Book of Samuel
+
+Otherwise Called:
+
+The First Book of the Kings
+
+
+1:1 Now there was a certain man of Ramathaimzophim, of mount Ephraim,
+and his name was Elkanah, the son of Jeroham, the son of Elihu, the
+son of Tohu, the son of Zuph, an Ephrathite: 1:2 And he had two wives;
+the name of the one was Hannah, and the name of the other Peninnah:
+and Peninnah had children, but Hannah had no children.
+
+1:3 And this man went up out of his city yearly to worship and to
+sacrifice unto the LORD of hosts in Shiloh. And the two sons of Eli,
+Hophni and Phinehas, the priests of the LORD, were there.
+
+1:4 And when the time was that Elkanah offered, he gave to Peninnah
+his wife, and to all her sons and her daughters, portions: 1:5 But
+unto Hannah he gave a worthy portion; for he loved Hannah: but the
+LORD had shut up her womb.
+
+1:6 And her adversary also provoked her sore, for to make her fret,
+because the LORD had shut up her womb.
+
+1:7 And as he did so year by year, when she went up to the house of
+the LORD, so she provoked her; therefore she wept, and did not eat.
+
+1:8 Then said Elkanah her husband to her, Hannah, why weepest thou?
+and why eatest thou not? and why is thy heart grieved? am not I better
+to thee than ten sons? 1:9 So Hannah rose up after they had eaten in
+Shiloh, and after they had drunk. Now Eli the priest sat upon a seat
+by a post of the temple of the LORD.
+
+1:10 And she was in bitterness of soul, and prayed unto the LORD, and
+wept sore.
+
+1:11 And she vowed a vow, and said, O LORD of hosts, if thou wilt
+indeed look on the affliction of thine handmaid, and remember me, and
+not forget thine handmaid, but wilt give unto thine handmaid a man
+child, then I will give him unto the LORD all the days of his life,
+and there shall no razor come upon his head.
+
+1:12 And it came to pass, as she continued praying before the LORD,
+that Eli marked her mouth.
+
+1:13 Now Hannah, she spake in her heart; only her lips moved, but her
+voice was not heard: therefore Eli thought she had been drunken.
+
+1:14 And Eli said unto her, How long wilt thou be drunken? put away
+thy wine from thee.
+
+1:15 And Hannah answered and said, No, my lord, I am a woman of a
+sorrowful spirit: I have drunk neither wine nor strong drink, but have
+poured out my soul before the LORD.
+
+1:16 Count not thine handmaid for a daughter of Belial: for out of the
+abundance of my complaint and grief have I spoken hitherto.
+
+1:17 Then Eli answered and said, Go in peace: and the God of Israel
+grant thee thy petition that thou hast asked of him.
+
+1:18 And she said, Let thine handmaid find grace in thy sight. So the
+woman went her way, and did eat, and her countenance was no more sad.
+
+1:19 And they rose up in the morning early, and worshipped before the
+LORD, and returned, and came to their house to Ramah: and Elkanah knew
+Hannah his wife; and the LORD remembered her.
+
+1:20 Wherefore it came to pass, when the time was come about after
+Hannah had conceived, that she bare a son, and called his name Samuel,
+saying, Because I have asked him of the LORD.
+
+1:21 And the man Elkanah, and all his house, went up to offer unto the
+LORD the yearly sacrifice, and his vow.
+
+1:22 But Hannah went not up; for she said unto her husband, I will not
+go up until the child be weaned, and then I will bring him, that he
+may appear before the LORD, and there abide for ever.
+
+1:23 And Elkanah her husband said unto her, Do what seemeth thee good;
+tarry until thou have weaned him; only the LORD establish his word. So
+the woman abode, and gave her son suck until she weaned him.
+
+1:24 And when she had weaned him, she took him up with her, with three
+bullocks, and one ephah of flour, and a bottle of wine, and brought
+him unto the house of the LORD in Shiloh: and the child was young.
+
+1:25 And they slew a bullock, and brought the child to Eli.
+
+1:26 And she said, Oh my lord, as thy soul liveth, my lord, I am the
+woman that stood by thee here, praying unto the LORD.
+
+1:27 For this child I prayed; and the LORD hath given me my petition
+which I asked of him: 1:28 Therefore also I have lent him to the LORD;
+as long as he liveth he shall be lent to the LORD. And he worshipped
+the LORD there.
+
+2:1 And Hannah prayed, and said, My heart rejoiceth in the LORD, mine
+horn is exalted in the LORD: my mouth is enlarged over mine enemies;
+because I rejoice in thy salvation.
+
+2:2 There is none holy as the LORD: for there is none beside thee:
+neither is there any rock like our God.
+
+2:3 Talk no more so exceeding proudly; let not arrogancy come out of
+your mouth: for the LORD is a God of knowledge, and by him actions are
+weighed.
+
+2:4 The bows of the mighty men are broken, and they that stumbled are
+girded with strength.
+
+2:5 They that were full have hired out themselves for bread; and they
+that were hungry ceased: so that the barren hath born seven; and she
+that hath many children is waxed feeble.
+
+2:6 The LORD killeth, and maketh alive: he bringeth down to the grave,
+and bringeth up.
+
+2:7 The LORD maketh poor, and maketh rich: he bringeth low, and
+lifteth up.
+
+2:8 He raiseth up the poor out of the dust, and lifteth up the beggar
+from the dunghill, to set them among princes, and to make them inherit
+the throne of glory: for the pillars of the earth are the LORD's, and
+he hath set the world upon them.
+
+2:9 He will keep the feet of his saints, and the wicked shall be
+silent in darkness; for by strength shall no man prevail.
+
+2:10 The adversaries of the LORD shall be broken to pieces; out of
+heaven shall he thunder upon them: the LORD shall judge the ends of
+the earth; and he shall give strength unto his king, and exalt the
+horn of his anointed.
+
+2:11 And Elkanah went to Ramah to his house. And the child did
+minister unto the LORD before Eli the priest.
+
+2:12 Now the sons of Eli were sons of Belial; they knew not the LORD.
+
+2:13 And the priest's custom with the people was, that, when any man
+offered sacrifice, the priest's servant came, while the flesh was in
+seething, with a fleshhook of three teeth in his hand; 2:14 And he
+struck it into the pan, or kettle, or caldron, or pot; all that the
+fleshhook brought up the priest took for himself. So they did in
+Shiloh unto all the Israelites that came thither.
+
+2:15 Also before they burnt the fat, the priest's servant came, and
+said to the man that sacrificed, Give flesh to roast for the priest;
+for he will not have sodden flesh of thee, but raw.
+
+2:16 And if any man said unto him, Let them not fail to burn the fat
+presently, and then take as much as thy soul desireth; then he would
+answer him, Nay; but thou shalt give it me now: and if not, I will
+take it by force.
+
+2:17 Wherefore the sin of the young men was very great before the
+LORD: for men abhorred the offering of the LORD.
+
+2:18 But Samuel ministered before the LORD, being a child, girded with
+a linen ephod.
+
+2:19 Moreover his mother made him a little coat, and brought it to him
+from year to year, when she came up with her husband to offer the
+yearly sacrifice.
+
+2:20 And Eli blessed Elkanah and his wife, and said, The LORD give
+thee seed of this woman for the loan which is lent to the LORD. And
+they went unto their own home.
+
+2:21 And the LORD visited Hannah, so that she conceived, and bare
+three sons and two daughters. And the child Samuel grew before the
+LORD.
+
+2:22 Now Eli was very old, and heard all that his sons did unto all
+Israel; and how they lay with the women that assembled at the door of
+the tabernacle of the congregation.
+
+2:23 And he said unto them, Why do ye such things? for I hear of your
+evil dealings by all this people.
+
+2:24 Nay, my sons; for it is no good report that I hear: ye make the
+LORD's people to transgress.
+
+2:25 If one man sin against another, the judge shall judge him: but if
+a man sin against the LORD, who shall intreat for him? Notwithstanding
+they hearkened not unto the voice of their father, because the LORD
+would slay them.
+
+2:26 And the child Samuel grew on, and was in favour both with the
+LORD, and also with men.
+
+2:27 And there came a man of God unto Eli, and said unto him, Thus
+saith the LORD, Did I plainly appear unto the house of thy father,
+when they were in Egypt in Pharaoh's house? 2:28 And did I choose him
+out of all the tribes of Israel to be my priest, to offer upon mine
+altar, to burn incense, to wear an ephod before me? and did I give
+unto the house of thy father all the offerings made by fire of the
+children of Israel? 2:29 Wherefore kick ye at my sacrifice and at
+mine offering, which I have commanded in my habitation; and honourest
+thy sons above me, to make yourselves fat with the chiefest of all the
+offerings of Israel my people? 2:30 Wherefore the LORD God of Israel
+saith, I said indeed that thy house, and the house of thy father,
+should walk before me for ever: but now the LORD saith, Be it far from
+me; for them that honour me I will honour, and they that despise me
+shall be lightly esteemed.
+
+2:31 Behold, the days come, that I will cut off thine arm, and the arm
+of thy father's house, that there shall not be an old man in thine
+house.
+
+2:32 And thou shalt see an enemy in my habitation, in all the wealth
+which God shall give Israel: and there shall not be an old man in
+thine house for ever.
+
+2:33 And the man of thine, whom I shall not cut off from mine altar,
+shall be to consume thine eyes, and to grieve thine heart: and all the
+increase of thine house shall die in the flower of their age.
+
+2:34 And this shall be a sign unto thee, that shall come upon thy two
+sons, on Hophni and Phinehas; in one day they shall die both of them.
+
+2:35 And I will raise me up a faithful priest, that shall do according
+to that which is in mine heart and in my mind: and I will build him a
+sure house; and he shall walk before mine anointed for ever.
+
+2:36 And it shall come to pass, that every one that is left in thine
+house shall come and crouch to him for a piece of silver and a morsel
+of bread, and shall say, Put me, I pray thee, into one of the priests'
+offices, that I may eat a piece of bread.
+
+3:1 And the child Samuel ministered unto the LORD before Eli. And the
+word of the LORD was precious in those days; there was no open vision.
+
+3:2 And it came to pass at that time, when Eli was laid down in his
+place, and his eyes began to wax dim, that he could not see; 3:3 And
+ere the lamp of God went out in the temple of the LORD, where the ark
+of God was, and Samuel was laid down to sleep; 3:4 That the LORD
+called Samuel: and he answered, Here am I.
+
+3:5 And he ran unto Eli, and said, Here am I; for thou calledst me.
+And he said, I called not; lie down again. And he went and lay down.
+
+3:6 And the LORD called yet again, Samuel. And Samuel arose and went
+to Eli, and said, Here am I; for thou didst call me. And he answered,
+I called not, my son; lie down again.
+
+3:7 Now Samuel did not yet know the LORD, neither was the word of the
+LORD yet revealed unto him.
+
+3:8 And the LORD called Samuel again the third time. And he arose and
+went to Eli, and said, Here am I; for thou didst call me. And Eli
+perceived that the LORD had called the child.
+
+3:9 Therefore Eli said unto Samuel, Go, lie down: and it shall be, if
+he call thee, that thou shalt say, Speak, LORD; for thy servant
+heareth. So Samuel went and lay down in his place.
+
+3:10 And the LORD came, and stood, and called as at other times,
+Samuel, Samuel. Then Samuel answered, Speak; for thy servant heareth.
+
+3:11 And the LORD said to Samuel, Behold, I will do a thing in Israel,
+at which both the ears of every one that heareth it shall tingle.
+
+3:12 In that day I will perform against Eli all things which I have
+spoken concerning his house: when I begin, I will also make an end.
+
+3:13 For I have told him that I will judge his house for ever for the
+iniquity which he knoweth; because his sons made themselves vile, and
+he restrained them not.
+
+3:14 And therefore I have sworn unto the house of Eli, that the
+iniquity of Eli's house shall not be purged with sacrifice nor
+offering for ever.
+
+3:15 And Samuel lay until the morning, and opened the doors of the
+house of the LORD. And Samuel feared to shew Eli the vision.
+
+3:16 Then Eli called Samuel, and said, Samuel, my son. And he
+answered, Here am I.
+
+3:17 And he said, What is the thing that the LORD hath said unto thee?
+I pray thee hide it not from me: God do so to thee, and more also, if
+thou hide any thing from me of all the things that he said unto thee.
+
+3:18 And Samuel told him every whit, and hid nothing from him. And he
+said, It is the LORD: let him do what seemeth him good.
+
+3:19 And Samuel grew, and the LORD was with him, and did let none of
+his words fall to the ground.
+
+3:20 And all Israel from Dan even to Beersheba knew that Samuel was
+established to be a prophet of the LORD.
+
+3:21 And the LORD appeared again in Shiloh: for the LORD revealed
+himself to Samuel in Shiloh by the word of the LORD.
+
+4:1 And the word of Samuel came to all Israel. Now Israel went out
+against the Philistines to battle, and pitched beside Ebenezer: and
+the Philistines pitched in Aphek.
+
+4:2 And the Philistines put themselves in array against Israel: and
+when they joined battle, Israel was smitten before the Philistines:
+and they slew of the army in the field about four thousand men.
+
+4:3 And when the people were come into the camp, the elders of Israel
+said, Wherefore hath the LORD smitten us to day before the
+Philistines? Let us fetch the ark of the covenant of the LORD out of
+Shiloh unto us, that, when it cometh among us, it may save us out of
+the hand of our enemies.
+
+4:4 So the people sent to Shiloh, that they might bring from thence
+the ark of the covenant of the LORD of hosts, which dwelleth between
+the cherubims: and the two sons of Eli, Hophni and Phinehas, were
+there with the ark of the covenant of God.
+
+4:5 And when the ark of the covenant of the LORD came into the camp,
+all Israel shouted with a great shout, so that the earth rang again.
+
+4:6 And when the Philistines heard the noise of the shout, they said,
+What meaneth the noise of this great shout in the camp of the Hebrews?
+And they understood that the ark of the LORD was come into the camp.
+
+4:7 And the Philistines were afraid, for they said, God is come into
+the camp. And they said, Woe unto us! for there hath not been such a
+thing heretofore.
+
+4:8 Woe unto us! who shall deliver us out of the hand of these mighty
+Gods? these are the Gods that smote the Egyptians with all the plagues
+in the wilderness.
+
+4:9 Be strong and quit yourselves like men, O ye Philistines, that ye
+be not servants unto the Hebrews, as they have been to you: quit
+yourselves like men, and fight.
+
+4:10 And the Philistines fought, and Israel was smitten, and they fled
+every man into his tent: and there was a very great slaughter; for
+there fell of Israel thirty thousand footmen.
+
+4:11 And the ark of God was taken; and the two sons of Eli, Hophni and
+Phinehas, were slain.
+
+4:12 And there ran a man of Benjamin out of the army, and came to
+Shiloh the same day with his clothes rent, and with earth upon his
+head.
+
+4:13 And when he came, lo, Eli sat upon a seat by the wayside
+watching: for his heart trembled for the ark of God. And when the man
+came into the city, and told it, all the city cried out.
+
+4:14 And when Eli heard the noise of the crying, he said, What meaneth
+the noise of this tumult? And the man came in hastily, and told Eli.
+
+4:15 Now Eli was ninety and eight years old; and his eyes were dim,
+that he could not see.
+
+4:16 And the man said unto Eli, I am he that came out of the army, and
+I fled to day out of the army. And he said, What is there done, my
+son? 4:17 And the messenger answered and said, Israel is fled before
+the Philistines, and there hath been also a great slaughter among the
+people, and thy two sons also, Hophni and Phinehas, are dead, and the
+ark of God is taken.
+
+4:18 And it came to pass, when he made mention of the ark of God, that
+he fell from off the seat backward by the side of the gate, and his
+neck brake, and he died: for he was an old man, and heavy. And he had
+judged Israel forty years.
+
+4:19 And his daughter in law, Phinehas' wife, was with child, near to
+be delivered: and when she heard the tidings that the ark of God was
+taken, and that her father in law and her husband were dead, she bowed
+herself and travailed; for her pains came upon her.
+
+4:20 And about the time of her death the women that stood by her said
+unto her, Fear not; for thou hast born a son. But she answered not,
+neither did she regard it.
+
+4:21 And she named the child Ichabod, saying, The glory is departed
+from Israel: because the ark of God was taken, and because of her
+father in law and her husband.
+
+4:22 And she said, The glory is departed from Israel: for the ark of
+God is taken.
+
+5:1 And the Philistines took the ark of God, and brought it from
+Ebenezer unto Ashdod.
+
+5:2 When the Philistines took the ark of God, they brought it into the
+house of Dagon, and set it by Dagon.
+
+5:3 And when they of Ashdod arose early on the morrow, behold, Dagon
+was fallen upon his face to the earth before the ark of the LORD. And
+they took Dagon, and set him in his place again.
+
+5:4 And when they arose early on the morrow morning, behold, Dagon was
+fallen upon his face to the ground before the ark of the LORD; and the
+head of Dagon and both the palms of his hands were cut off upon the
+threshold; only the stump of Dagon was left to him.
+
+5:5 Therefore neither the priests of Dagon, nor any that come into
+Dagon's house, tread on the threshold of Dagon in Ashdod unto this
+day.
+
+5:6 But the hand of the LORD was heavy upon them of Ashdod, and he
+destroyed them, and smote them with emerods, even Ashdod and the
+coasts thereof.
+
+5:7 And when the men of Ashdod saw that it was so, they said, The ark
+of the God of Israel shall not abide with us: for his hand is sore
+upon us, and upon Dagon our god.
+
+5:8 They sent therefore and gathered all the lords of the Philistines
+unto them, and said, What shall we do with the ark of the God of
+Israel? And they answered, Let the ark of the God of Israel be carried
+about unto Gath. And they carried the ark of the God of Israel about
+thither.
+
+5:9 And it was so, that, after they had carried it about, the hand of
+the LORD was against the city with a very great destruction: and he
+smote the men of the city, both small and great, and they had emerods
+in their secret parts.
+
+5:10 Therefore they sent the ark of God to Ekron. And it came to pass,
+as the ark of God came to Ekron, that the Ekronites cried out, saying,
+They have brought about the ark of the God of Israel to us, to slay us
+and our people.
+
+5:11 So they sent and gathered together all the lords of the
+Philistines, and said, Send away the ark of the God of Israel, and let
+it go again to his own place, that it slay us not, and our people: for
+there was a deadly destruction throughout all the city; the hand of
+God was very heavy there.
+
+5:12 And the men that died not were smitten with the emerods: and the
+cry of the city went up to heaven.
+
+6:1 And the ark of the LORD was in the country of the Philistines
+seven months.
+
+6:2 And the Philistines called for the priests and the diviners,
+saying, What shall we do to the ark of the LORD? tell us wherewith we
+shall send it to his place.
+
+6:3 And they said, If ye send away the ark of the God of Israel, send
+it not empty; but in any wise return him a trespass offering: then ye
+shall be healed, and it shall be known to you why his hand is not
+removed from you.
+
+6:4 Then said they, What shall be the trespass offering which we shall
+return to him? They answered, Five golden emerods, and five golden
+mice, according to the number of the lords of the Philistines: for one
+plague was on you all, and on your lords.
+
+6:5 Wherefore ye shall make images of your emerods, and images of your
+mice that mar the land; and ye shall give glory unto the God of
+Israel: peradventure he will lighten his hand from off you, and from
+off your gods, and from off your land.
+
+6:6 Wherefore then do ye harden your hearts, as the Egyptians and
+Pharaoh hardened their hearts? when he had wrought wonderfully among
+them, did they not let the people go, and they departed? 6:7 Now
+therefore make a new cart, and take two milch kine, on which there
+hath come no yoke, and tie the kine to the cart, and bring their
+calves home from them: 6:8 And take the ark of the LORD, and lay it
+upon the cart; and put the jewels of gold, which ye return him for a
+trespass offering, in a coffer by the side thereof; and send it away,
+that it may go.
+
+6:9 And see, if it goeth up by the way of his own coast to
+Bethshemesh, then he hath done us this great evil: but if not, then we
+shall know that it is not his hand that smote us: it was a chance that
+happened to us.
+
+6:10 And the men did so; and took two milch kine, and tied them to the
+cart, and shut up their calves at home: 6:11 And they laid the ark of
+the LORD upon the cart, and the coffer with the mice of gold and the
+images of their emerods.
+
+6:12 And the kine took the straight way to the way of Bethshemesh, and
+went along the highway, lowing as they went, and turned not aside to
+the right hand or to the left; and the lords of the Philistines went
+after them unto the border of Bethshemesh.
+
+6:13 And they of Bethshemesh were reaping their wheat harvest in the
+valley: and they lifted up their eyes, and saw the ark, and rejoiced
+to see it.
+
+6:14 And the cart came into the field of Joshua, a Bethshemite, and
+stood there, where there was a great stone: and they clave the wood of
+the cart, and offered the kine a burnt offering unto the LORD.
+
+6:15 And the Levites took down the ark of the LORD, and the coffer
+that was with it, wherein the jewels of gold were, and put them on the
+great stone: and the men of Bethshemesh offered burnt offerings and
+sacrificed sacrifices the same day unto the LORD.
+
+6:16 And when the five lords of the Philistines had seen it, they
+returned to Ekron the same day.
+
+6:17 And these are the golden emerods which the Philistines returned
+for a trespass offering unto the LORD; for Ashdod one, for Gaza one,
+for Askelon one, for Gath one, for Ekron one; 6:18 And the golden
+mice, according to the number of all the cities of the Philistines
+belonging to the five lords, both of fenced cities, and of country
+villages, even unto the great stone of Abel, whereon they set down the
+ark of the LORD: which stone remaineth unto this day in the field of
+Joshua, the Bethshemite.
+
+6:19 And he smote the men of Bethshemesh, because they had looked into
+the ark of the LORD, even he smote of the people fifty thousand and
+threescore and ten men: and the people lamented, because the LORD had
+smitten many of the people with a great slaughter.
+
+6:20 And the men of Bethshemesh said, Who is able to stand before this
+holy LORD God? and to whom shall he go up from us? 6:21 And they sent
+messengers to the inhabitants of Kirjathjearim, saying, The
+Philistines have brought again the ark of the LORD; come ye down, and
+fetch it up to you.
+
+7:1 And the men of Kirjathjearim came, and fetched up the ark of the
+LORD, and brought it into the house of Abinadab in the hill, and
+sanctified Eleazar his son to keep the ark of the LORD.
+
+7:2 And it came to pass, while the ark abode in Kirjathjearim, that
+the time was long; for it was twenty years: and all the house of
+Israel lamented after the LORD.
+
+7:3 And Samuel spake unto all the house of Israel, saying, If ye do
+return unto the LORD with all your hearts, then put away the strange
+gods and Ashtaroth from among you, and prepare your hearts unto the
+LORD, and serve him only: and he will deliver you out of the hand of
+the Philistines.
+
+7:4 Then the children of Israel did put away Baalim and Ashtaroth, and
+served the LORD only.
+
+7:5 And Samuel said, Gather all Israel to Mizpeh, and I will pray for
+you unto the LORD.
+
+7:6 And they gathered together to Mizpeh, and drew water, and poured
+it out before the LORD, and fasted on that day, and said there, We
+have sinned against the LORD. And Samuel judged the children of Israel
+in Mizpeh.
+
+7:7 And when the Philistines heard that the children of Israel were
+gathered together to Mizpeh, the lords of the Philistines went up
+against Israel. And when the children of Israel heard it, they were
+afraid of the Philistines.
+
+7:8 And the children of Israel said to Samuel, Cease not to cry unto
+the LORD our God for us, that he will save us out of the hand of the
+Philistines.
+
+7:9 And Samuel took a sucking lamb, and offered it for a burnt
+offering wholly unto the LORD: and Samuel cried unto the LORD for
+Israel; and the LORD heard him.
+
+7:10 And as Samuel was offering up the burnt offering, the Philistines
+drew near to battle against Israel: but the LORD thundered with a
+great thunder on that day upon the Philistines, and discomfited them;
+and they were smitten before Israel.
+
+7:11 And the men of Israel went out of Mizpeh, and pursued the
+Philistines, and smote them, until they came under Bethcar.
+
+7:12 Then Samuel took a stone, and set it between Mizpeh and Shen, and
+called the name of it Ebenezer, saying, Hitherto hath the LORD helped
+us.
+
+7:13 So the Philistines were subdued, and they came no more into the
+coast of Israel: and the hand of the LORD was against the Philistines
+all the days of Samuel.
+
+7:14 And the cities which the Philistines had taken from Israel were
+restored to Israel, from Ekron even unto Gath; and the coasts thereof
+did Israel deliver out of the hands of the Philistines. And there was
+peace between Israel and the Amorites.
+
+7:15 And Samuel judged Israel all the days of his life.
+
+7:16 And he went from year to year in circuit to Bethel, and Gilgal,
+and Mizpeh, and judged Israel in all those places.
+
+7:17 And his return was to Ramah; for there was his house; and there
+he judged Israel; and there he built an altar unto the LORD.
+
+8:1 And it came to pass, when Samuel was old, that he made his sons
+judges over Israel.
+
+8:2 Now the name of his firstborn was Joel; and the name of his
+second, Abiah: they were judges in Beersheba.
+
+8:3 And his sons walked not in his ways, but turned aside after lucre,
+and took bribes, and perverted judgment.
+
+8:4 Then all the elders of Israel gathered themselves together, and
+came to Samuel unto Ramah, 8:5 And said unto him, Behold, thou art
+old, and thy sons walk not in thy ways: now make us a king to judge us
+like all the nations.
+
+8:6 But the thing displeased Samuel, when they said, Give us a king to
+judge us. And Samuel prayed unto the LORD.
+
+8:7 And the LORD said unto Samuel, Hearken unto the voice of the
+people in all that they say unto thee: for they have not rejected
+thee, but they have rejected me, that I should not reign over them.
+
+8:8 According to all the works which they have done since the day that
+I brought them up out of Egypt even unto this day, wherewith they have
+forsaken me, and served other gods, so do they also unto thee.
+
+8:9 Now therefore hearken unto their voice: howbeit yet protest
+solemnly unto them, and shew them the manner of the king that shall
+reign over them.
+
+8:10 And Samuel told all the words of the LORD unto the people that
+asked of him a king.
+
+8:11 And he said, This will be the manner of the king that shall reign
+over you: He will take your sons, and appoint them for himself, for
+his chariots, and to be his horsemen; and some shall run before his
+chariots.
+
+8:12 And he will appoint him captains over thousands, and captains
+over fifties; and will set them to ear his ground, and to reap his
+harvest, and to make his instruments of war, and instruments of his
+chariots.
+
+8:13 And he will take your daughters to be confectionaries, and to be
+cooks, and to be bakers.
+
+8:14 And he will take your fields, and your vineyards, and your
+oliveyards, even the best of them, and give them to his servants.
+
+8:15 And he will take the tenth of your seed, and of your vineyards,
+and give to his officers, and to his servants.
+
+8:16 And he will take your menservants, and your maidservants, and
+your goodliest young men, and your asses, and put them to his work.
+
+8:17 He will take the tenth of your sheep: and ye shall be his
+servants.
+
+8:18 And ye shall cry out in that day because of your king which ye
+shall have chosen you; and the LORD will not hear you in that day.
+
+8:19 Nevertheless the people refused to obey the voice of Samuel; and
+they said, Nay; but we will have a king over us; 8:20 That we also may
+be like all the nations; and that our king may judge us, and go out
+before us, and fight our battles.
+
+8:21 And Samuel heard all the words of the people, and he rehearsed
+them in the ears of the LORD.
+
+8:22 And the LORD said to Samuel, Hearken unto their voice, and make
+them a king. And Samuel said unto the men of Israel, Go ye every man
+unto his city.
+
+9:1 Now there was a man of Benjamin, whose name was Kish, the son of
+Abiel, the son of Zeror, the son of Bechorath, the son of Aphiah, a
+Benjamite, a mighty man of power.
+
+9:2 And he had a son, whose name was Saul, a choice young man, and a
+goodly: and there was not among the children of Israel a goodlier
+person than he: from his shoulders and upward he was higher than any
+of the people.
+
+9:3 And the asses of Kish Saul's father were lost. And Kish said to
+Saul his son, Take now one of the servants with thee, and arise, go
+seek the asses.
+
+9:4 And he passed through mount Ephraim, and passed through the land
+of Shalisha, but they found them not: then they passed through the
+land of Shalim, and there they were not: and he passed through the
+land of the Benjamites, but they found them not.
+
+9:5 And when they were come to the land of Zuph, Saul said to his
+servant that was with him, Come, and let us return; lest my father
+leave caring for the asses, and take thought for us.
+
+9:6 And he said unto him, Behold now, there is in this city a man of
+God, and he is an honourable man; all that he saith cometh surely to
+pass: now let us go thither; peradventure he can shew us our way that
+we should go.
+
+9:7 Then said Saul to his servant, But, behold, if we go, what shall
+we bring the man? for the bread is spent in our vessels, and there is
+not a present to bring to the man of God: what have we? 9:8 And the
+servant answered Saul again, and said, Behold, I have here at hand the
+fourth part of a shekel of silver: that will I give to the man of God,
+to tell us our way.
+
+9:9 (Beforetime in Israel, when a man went to enquire of God, thus he
+spake, Come, and let us go to the seer: for he that is now called a
+Prophet was beforetime called a Seer.) 9:10 Then said Saul to his
+servant, Well said; come, let us go. So they went unto the city where
+the man of God was.
+
+9:11 And as they went up the hill to the city, they found young
+maidens going out to draw water, and said unto them, Is the seer here?
+9:12 And they answered them, and said, He is; behold, he is before
+you: make haste now, for he came to day to the city; for there is a
+sacrifice of the people to day in the high place: 9:13 As soon as ye
+be come into the city, ye shall straightway find him, before he go up
+to the high place to eat: for the people will not eat until he come,
+because he doth bless the sacrifice; and afterwards they eat that be
+bidden. Now therefore get you up; for about this time ye shall find
+him.
+
+9:14 And they went up into the city: and when they were come into the
+city, behold, Samuel came out against them, for to go up to the high
+place.
+
+9:15 Now the LORD had told Samuel in his ear a day before Saul came,
+saying, 9:16 To morrow about this time I will send thee a man out of
+the land of Benjamin, and thou shalt anoint him to be captain over my
+people Israel, that he may save my people out of the hand of the
+Philistines: for I have looked upon my people, because their cry is
+come unto me.
+
+9:17 And when Samuel saw Saul, the LORD said unto him, Behold the man
+whom I spake to thee of! this same shall reign over my people.
+
+9:18 Then Saul drew near to Samuel in the gate, and said, Tell me, I
+pray thee, where the seer's house is.
+
+9:19 And Samuel answered Saul, and said, I am the seer: go up before
+me unto the high place; for ye shall eat with me to day, and to morrow
+I will let thee go, and will tell thee all that is in thine heart.
+
+9:20 And as for thine asses that were lost three days ago, set not thy
+mind on them; for they are found. And on whom is all the desire of
+Israel? Is it not on thee, and on all thy father's house? 9:21 And
+Saul answered and said, Am not I a Benjamite, of the smallest of the
+tribes of Israel? and my family the least of all the families of the
+tribe of Benjamin? wherefore then speakest thou so to me? 9:22 And
+Samuel took Saul and his servant, and brought them into the parlour,
+and made them sit in the chiefest place among them that were bidden,
+which were about thirty persons.
+
+9:23 And Samuel said unto the cook, Bring the portion which I gave
+thee, of which I said unto thee, Set it by thee.
+
+9:24 And the cook took up the shoulder, and that which was upon it,
+and set it before Saul. And Samuel said, Behold that which is left!
+set it before thee, and eat: for unto this time hath it been kept for
+thee since I said, I have invited the people. So Saul did eat with
+Samuel that day.
+
+9:25 And when they were come down from the high place into the city,
+Samuel communed with Saul upon the top of the house.
+
+9:26 And they arose early: and it came to pass about the spring of the
+day, that Samuel called Saul to the top of the house, saying, Up, that
+I may send thee away. And Saul arose, and they went out both of them,
+he and Samuel, abroad.
+
+9:27 And as they were going down to the end of the city, Samuel said
+to Saul, Bid the servant pass on before us, (and he passed on), but
+stand thou still a while, that I may shew thee the word of God.
+
+10:1 Then Samuel took a vial of oil, and poured it upon his head, and
+kissed him, and said, Is it not because the LORD hath anointed thee to
+be captain over his inheritance? 10:2 When thou art departed from me
+to day, then thou shalt find two men by Rachel's sepulchre in the
+border of Benjamin at Zelzah; and they will say unto thee, The asses
+which thou wentest to seek are found: and, lo, thy father hath left
+the care of the asses, and sorroweth for you, saying, What shall I do
+for my son? 10:3 Then shalt thou go on forward from thence, and thou
+shalt come to the plain of Tabor, and there shall meet thee three men
+going up to God to Bethel, one carrying three kids, and another
+carrying three loaves of bread, and another carrying a bottle of wine:
+10:4 And they will salute thee, and give thee two loaves of bread;
+which thou shalt receive of their hands.
+
+10:5 After that thou shalt come to the hill of God, where is the
+garrison of the Philistines: and it shall come to pass, when thou art
+come thither to the city, that thou shalt meet a company of prophets
+coming down from the high place with a psaltery, and a tabret, and a
+pipe, and a harp, before them; and they shall prophesy: 10:6 And the
+Spirit of the LORD will come upon thee, and thou shalt prophesy with
+them, and shalt be turned into another man.
+
+10:7 And let it be, when these signs are come unto thee, that thou do
+as occasion serve thee; for God is with thee.
+
+10:8 And thou shalt go down before me to Gilgal; and, behold, I will
+come down unto thee, to offer burnt offerings, and to sacrifice
+sacrifices of peace offerings: seven days shalt thou tarry, till I
+come to thee, and shew thee what thou shalt do.
+
+10:9 And it was so, that when he had turned his back to go from
+Samuel, God gave him another heart: and all those signs came to pass
+that day.
+
+10:10 And when they came thither to the hill, behold, a company of
+prophets met him; and the Spirit of God came upon him, and he
+prophesied among them.
+
+10:11 And it came to pass, when all that knew him beforetime saw that,
+behold, he prophesied among the prophets, then the people said one to
+another, What is this that is come unto the son of Kish? Is Saul also
+among the prophets? 10:12 And one of the same place answered and
+said, But who is their father? Therefore it became a proverb, Is Saul
+also among the prophets? 10:13 And when he had made an end of
+prophesying, he came to the high place.
+
+10:14 And Saul's uncle said unto him and to his servant, Whither went
+ye? And he said, To seek the asses: and when we saw that they were no
+where, we came to Samuel.
+
+10:15 And Saul's uncle said, Tell me, I pray thee, what Samuel said
+unto you.
+
+10:16 And Saul said unto his uncle, He told us plainly that the asses
+were found. But of the matter of the kingdom, whereof Samuel spake, he
+told him not.
+
+10:17 And Samuel called the people together unto the LORD to Mizpeh;
+10:18 And said unto the children of Israel, Thus saith the LORD God of
+Israel, I brought up Israel out of Egypt, and delivered you out of the
+hand of the Egyptians, and out of the hand of all kingdoms, and of
+them that oppressed you: 10:19 And ye have this day rejected your God,
+who himself saved you out of all your adversities and your
+tribulations; and ye have said unto him, Nay, but set a king over us.
+Now therefore present yourselves before the LORD by your tribes, and
+by your thousands.
+
+10:20 And when Samuel had caused all the tribes of Israel to come
+near, the tribe of Benjamin was taken.
+
+10:21 When he had caused the tribe of Benjamin to come near by their
+families, the family of Matri was taken, and Saul the son of Kish was
+taken: and when they sought him, he could not be found.
+
+10:22 Therefore they enquired of the LORD further, if the man should
+yet come thither. And the LORD answered, Behold he hath hid himself
+among the stuff.
+
+10:23 And they ran and fetched him thence: and when he stood among the
+people, he was higher than any of the people from his shoulders and
+upward.
+
+10:24 And Samuel said to all the people, See ye him whom the LORD hath
+chosen, that there is none like him among all the people? And all the
+people shouted, and said, God save the king.
+
+10:25 Then Samuel told the people the manner of the kingdom, and wrote
+it in a book, and laid it up before the LORD. And Samuel sent all the
+people away, every man to his house.
+
+10:26 And Saul also went home to Gibeah; and there went with him a
+band of men, whose hearts God had touched.
+
+10:27 But the children of Belial said, How shall this man save us? And
+they despised him, and brought no presents. But he held his peace.
+
+11:1 Then Nahash the Ammonite came up, and encamped against
+Jabeshgilead: and all the men of Jabesh said unto Nahash, Make a
+covenant with us, and we will serve thee.
+
+11:2 And Nahash the Ammonite answered them, On this condition will I
+make a covenant with you, that I may thrust out all your right eyes,
+and lay it for a reproach upon all Israel.
+
+11:3 And the elders of Jabesh said unto him, Give us seven days'
+respite, that we may send messengers unto all the coasts of Israel:
+and then, if there be no man to save us, we will come out to thee.
+
+11:4 Then came the messengers to Gibeah of Saul, and told the tidings
+in the ears of the people: and all the people lifted up their voices,
+and wept.
+
+11:5 And, behold, Saul came after the herd out of the field; and Saul
+said, What aileth the people that they weep? And they told him the
+tidings of the men of Jabesh.
+
+11:6 And the Spirit of God came upon Saul when he heard those tidings,
+and his anger was kindled greatly.
+
+11:7 And he took a yoke of oxen, and hewed them in pieces, and sent
+them throughout all the coasts of Israel by the hands of messengers,
+saying, Whosoever cometh not forth after Saul and after Samuel, so
+shall it be done unto his oxen. And the fear of the LORD fell on the
+people, and they came out with one consent.
+
+11:8 And when he numbered them in Bezek, the children of Israel were
+three hundred thousand, and the men of Judah thirty thousand.
+
+11:9 And they said unto the messengers that came, Thus shall ye say
+unto the men of Jabeshgilead, To morrow, by that time the sun be hot,
+ye shall have help. And the messengers came and shewed it to the men
+of Jabesh; and they were glad.
+
+11:10 Therefore the men of Jabesh said, To morrow we will come out
+unto you, and ye shall do with us all that seemeth good unto you.
+
+11:11 And it was so on the morrow, that Saul put the people in three
+companies; and they came into the midst of the host in the morning
+watch, and slew the Ammonites until the heat of the day: and it came
+to pass, that they which remained were scattered, so that two of them
+were not left together.
+
+11:12 And the people said unto Samuel, Who is he that said, Shall Saul
+reign over us? bring the men, that we may put them to death.
+
+11:13 And Saul said, There shall not a man be put to death this day:
+for to day the LORD hath wrought salvation in Israel.
+
+11:14 Then said Samuel to the people, Come, and let us go to Gilgal,
+and renew the kingdom there.
+
+11:15 And all the people went to Gilgal; and there they made Saul king
+before the LORD in Gilgal; and there they sacrificed sacrifices of
+peace offerings before the LORD; and there Saul and all the men of
+Israel rejoiced greatly.
+
+12:1 And Samuel said unto all Israel, Behold, I have hearkened unto
+your voice in all that ye said unto me, and have made a king over you.
+
+12:2 And now, behold, the king walketh before you: and I am old and
+grayheaded; and, behold, my sons are with you: and I have walked
+before you from my childhood unto this day.
+
+12:3 Behold, here I am: witness against me before the LORD, and before
+his anointed: whose ox have I taken? or whose ass have I taken? or
+whom have I defrauded? whom have I oppressed? or of whose hand have I
+received any bribe to blind mine eyes therewith? and I will restore it
+you.
+
+12:4 And they said, Thou hast not defrauded us, nor oppressed us,
+neither hast thou taken ought of any man's hand.
+
+12:5 And he said unto them, The LORD is witness against you, and his
+anointed is witness this day, that ye have not found ought in my hand.
+And they answered, He is witness.
+
+12:6 And Samuel said unto the people, It is the LORD that advanced
+Moses and Aaron, and that brought your fathers up out of the land of
+Egypt.
+
+12:7 Now therefore stand still, that I may reason with you before the
+LORD of all the righteous acts of the LORD, which he did to you and to
+your fathers.
+
+12:8 When Jacob was come into Egypt, and your fathers cried unto the
+LORD, then the LORD sent Moses and Aaron, which brought forth your
+fathers out of Egypt, and made them dwell in this place.
+
+12:9 And when they forgat the LORD their God, he sold them into the
+hand of Sisera, captain of the host of Hazor, and into the hand of the
+Philistines, and into the hand of the king of Moab, and they fought
+against them.
+
+12:10 And they cried unto the LORD, and said, We have sinned, because
+we have forsaken the LORD, and have served Baalim and Ashtaroth: but
+now deliver us out of the hand of our enemies, and we will serve thee.
+
+12:11 And the LORD sent Jerubbaal, and Bedan, and Jephthah, and
+Samuel, and delivered you out of the hand of your enemies on every
+side, and ye dwelled safe.
+
+12:12 And when ye saw that Nahash the king of the children of Ammon
+came against you, ye said unto me, Nay; but a king shall reign over
+us: when the LORD your God was your king.
+
+12:13 Now therefore behold the king whom ye have chosen, and whom ye
+have desired! and, behold, the LORD hath set a king over you.
+
+12:14 If ye will fear the LORD, and serve him, and obey his voice, and
+not rebel against the commandment of the LORD, then shall both ye and
+also the king that reigneth over you continue following the LORD your
+God: 12:15 But if ye will not obey the voice of the LORD, but rebel
+against the commandment of the LORD, then shall the hand of the LORD
+be against you, as it was against your fathers.
+
+12:16 Now therefore stand and see this great thing, which the LORD
+will do before your eyes.
+
+12:17 Is it not wheat harvest to day? I will call unto the LORD, and
+he shall send thunder and rain; that ye may perceive and see that your
+wickedness is great, which ye have done in the sight of the LORD, in
+asking you a king.
+
+12:18 So Samuel called unto the LORD; and the LORD sent thunder and
+rain that day: and all the people greatly feared the LORD and Samuel.
+
+12:19 And all the people said unto Samuel, Pray for thy servants unto
+the LORD thy God, that we die not: for we have added unto all our sins
+this evil, to ask us a king.
+
+12:20 And Samuel said unto the people, Fear not: ye have done all this
+wickedness: yet turn not aside from following the LORD, but serve the
+LORD with all your heart; 12:21 And turn ye not aside: for then should
+ye go after vain things, which cannot profit nor deliver; for they are
+vain.
+
+12:22 For the LORD will not forsake his people for his great name's
+sake: because it hath pleased the LORD to make you his people.
+
+12:23 Moreover as for me, God forbid that I should sin against the
+LORD in ceasing to pray for you: but I will teach you the good and the
+right way: 12:24 Only fear the LORD, and serve him in truth with all
+your heart: for consider how great things he hath done for you.
+
+12:25 But if ye shall still do wickedly, ye shall be consumed, both ye
+and your king.
+
+13:1 Saul reigned one year; and when he had reigned two years over
+Israel, 13:2 Saul chose him three thousand men of Israel; whereof two
+thousand were with Saul in Michmash and in mount Bethel, and a
+thousand were with Jonathan in Gibeah of Benjamin: and the rest of the
+people he sent every man to his tent.
+
+13:3 And Jonathan smote the garrison of the Philistines that was in
+Geba, and the Philistines heard of it. And Saul blew the trumpet
+throughout all the land, saying, Let the Hebrews hear.
+
+13:4 And all Israel heard say that Saul had smitten a garrison of the
+Philistines, and that Israel also was had in abomination with the
+Philistines. And the people were called together after Saul to Gilgal.
+
+13:5 And the Philistines gathered themselves together to fight with
+Israel, thirty thousand chariots, and six thousand horsemen, and
+people as the sand which is on the sea shore in multitude: and they
+came up, and pitched in Michmash, eastward from Bethaven.
+
+13:6 When the men of Israel saw that they were in a strait, (for the
+people were distressed,) then the people did hide themselves in caves,
+and in thickets, and in rocks, and in high places, and in pits.
+
+13:7 And some of the Hebrews went over Jordan to the land of Gad and
+Gilead. As for Saul, he was yet in Gilgal, and all the people followed
+him trembling.
+
+13:8 And he tarried seven days, according to the set time that Samuel
+had appointed: but Samuel came not to Gilgal; and the people were
+scattered from him.
+
+13:9 And Saul said, Bring hither a burnt offering to me, and peace
+offerings. And he offered the burnt offering.
+
+13:10 And it came to pass, that as soon as he had made an end of
+offering the burnt offering, behold, Samuel came; and Saul went out to
+meet him, that he might salute him.
+
+13:11 And Samuel said, What hast thou done? And Saul said, Because I
+saw that the people were scattered from me, and that thou camest not
+within the days appointed, and that the Philistines gathered
+themselves together at Michmash; 13:12 Therefore said I, The
+Philistines will come down now upon me to Gilgal, and I have not made
+supplication unto the LORD: I forced myself therefore, and offered a
+burnt offering.
+
+13:13 And Samuel said to Saul, Thou hast done foolishly: thou hast not
+kept the commandment of the LORD thy God, which he commanded thee: for
+now would the LORD have established thy kingdom upon Israel for ever.
+
+13:14 But now thy kingdom shall not continue: the LORD hath sought him
+a man after his own heart, and the LORD hath commanded him to be
+captain over his people, because thou hast not kept that which the
+LORD commanded thee.
+
+13:15 And Samuel arose, and gat him up from Gilgal unto Gibeah of
+Benjamin. And Saul numbered the people that were present with him,
+about six hundred men.
+
+13:16 And Saul, and Jonathan his son, and the people that were present
+with them, abode in Gibeah of Benjamin: but the Philistines encamped
+in Michmash.
+
+13:17 And the spoilers came out of the camp of the Philistines in
+three companies: one company turned unto the way that leadeth to
+Ophrah, unto the land of Shual: 13:18 And another company turned the
+way to Bethhoron: and another company turned to the way of the border
+that looketh to the valley of Zeboim toward the wilderness.
+
+13:19 Now there was no smith found throughout all the land of Israel:
+for the Philistines said, Lest the Hebrews make them swords or spears:
+13:20 But all the Israelites went down to the Philistines, to sharpen
+every man his share, and his coulter, and his axe, and his mattock.
+
+13:21 Yet they had a file for the mattocks, and for the coulters, and
+for the forks, and for the axes, and to sharpen the goads.
+
+13:22 So it came to pass in the day of battle, that there was neither
+sword nor spear found in the hand of any of the people that were with
+Saul and Jonathan: but with Saul and with Jonathan his son was there
+found.
+
+13:23 And the garrison of the Philistines went out to the passage of
+Michmash.
+
+14:1 Now it came to pass upon a day, that Jonathan the son of Saul
+said unto the young man that bare his armour, Come, and let us go over
+to the Philistines' garrison, that is on the other side. But he told
+not his father.
+
+14:2 And Saul tarried in the uttermost part of Gibeah under a
+pomegranate tree which is in Migron: and the people that were with him
+were about six hundred men; 14:3 And Ahiah, the son of Ahitub,
+Ichabod's brother, the son of Phinehas, the son of Eli, the LORD's
+priest in Shiloh, wearing an ephod. And the people knew not that
+Jonathan was gone.
+
+14:4 And between the passages, by which Jonathan sought to go over
+unto the Philistines' garrison, there was a sharp rock on the one
+side, and a sharp rock on the other side: and the name of the one was
+Bozez, and the name of the other Seneh.
+
+14:5 The forefront of the one was situate northward over against
+Michmash, and the other southward over against Gibeah.
+
+14:6 And Jonathan said to the young man that bare his armour, Come,
+and let us go over unto the garrison of these uncircumcised: it may be
+that the LORD will work for us: for there is no restraint to the LORD
+to save by many or by few.
+
+14:7 And his armourbearer said unto him, Do all that is in thine
+heart: turn thee; behold, I am with thee according to thy heart.
+
+14:8 Then said Jonathan, Behold, we will pass over unto these men, and
+we will discover ourselves unto them.
+
+14:9 If they say thus unto us, Tarry until we come to you; then we
+will stand still in our place, and will not go up unto them.
+
+14:10 But if they say thus, Come up unto us; then we will go up: for
+the LORD hath delivered them into our hand: and this shall be a sign
+unto us.
+
+14:11 And both of them discovered themselves unto the garrison of the
+Philistines: and the Philistines said, Behold, the Hebrews come forth
+out of the holes where they had hid themselves.
+
+14:12 And the men of the garrison answered Jonathan and his
+armourbearer, and said, Come up to us, and we will shew you a thing.
+And Jonathan said unto his armourbearer, Come up after me: for the
+LORD hath delivered them into the hand of Israel.
+
+14:13 And Jonathan climbed up upon his hands and upon his feet, and
+his armourbearer after him: and they fell before Jonathan; and his
+armourbearer slew after him.
+
+14:14 And that first slaughter, which Jonathan and his armourbearer
+made, was about twenty men, within as it were an half acre of land,
+which a yoke of oxen might plow.
+
+14:15 And there was trembling in the host, in the field, and among all
+the people: the garrison, and the spoilers, they also trembled, and
+the earth quaked: so it was a very great trembling.
+
+14:16 And the watchmen of Saul in Gibeah of Benjamin looked; and,
+behold, the multitude melted away, and they went on beating down one
+another.
+
+14:17 Then said Saul unto the people that were with him, Number now,
+and see who is gone from us. And when they had numbered, behold,
+Jonathan and his armourbearer were not there.
+
+14:18 And Saul said unto Ahiah, Bring hither the ark of God. For the
+ark of God was at that time with the children of Israel.
+
+14:19 And it came to pass, while Saul talked unto the priest, that the
+noise that was in the host of the Philistines went on and increased:
+and Saul said unto the priest, Withdraw thine hand.
+
+14:20 And Saul and all the people that were with him assembled
+themselves, and they came to the battle: and, behold, every man's
+sword was against his fellow, and there was a very great discomfiture.
+
+14:21 Moreover the Hebrews that were with the Philistines before that
+time, which went up with them into the camp from the country round
+about, even they also turned to be with the Israelites that were with
+Saul and Jonathan.
+
+14:22 Likewise all the men of Israel which had hid themselves in mount
+Ephraim, when they heard that the Philistines fled, even they also
+followed hard after them in the battle.
+
+14:23 So the LORD saved Israel that day: and the battle passed over
+unto Bethaven.
+
+14:24 And the men of Israel were distressed that day: for Saul had
+adjured the people, saying, Cursed be the man that eateth any food
+until evening, that I may be avenged on mine enemies. So none of the
+people tasted any food.
+
+14:25 And all they of the land came to a wood; and there was honey
+upon the ground.
+
+14:26 And when the people were come into the wood, behold, the honey
+dropped; but no man put his hand to his mouth: for the people feared
+the oath.
+
+14:27 But Jonathan heard not when his father charged the people with
+the oath: wherefore he put forth the end of the rod that was in his
+hand, and dipped it in an honeycomb, and put his hand to his mouth;
+and his eyes were enlightened.
+
+14:28 Then answered one of the people, and said, Thy father straitly
+charged the people with an oath, saying, Cursed be the man that eateth
+any food this day. And the people were faint.
+
+14:29 Then said Jonathan, My father hath troubled the land: see, I
+pray you, how mine eyes have been enlightened, because I tasted a
+little of this honey.
+
+14:30 How much more, if haply the people had eaten freely to day of
+the spoil of their enemies which they found? for had there not been
+now a much greater slaughter among the Philistines? 14:31 And they
+smote the Philistines that day from Michmash to Aijalon: and the
+people were very faint.
+
+14:32 And the people flew upon the spoil, and took sheep, and oxen,
+and calves, and slew them on the ground: and the people did eat them
+with the blood.
+
+14:33 Then they told Saul, saying, Behold, the people sin against the
+LORD, in that they eat with the blood. And he said, Ye have
+transgressed: roll a great stone unto me this day.
+
+14:34 And Saul said, Disperse yourselves among the people, and say
+unto them, Bring me hither every man his ox, and every man his sheep,
+and slay them here, and eat; and sin not against the LORD in eating
+with the blood.
+
+And all the people brought every man his ox with him that night, and
+slew them there.
+
+14:35 And Saul built an altar unto the LORD: the same was the first
+altar that he built unto the LORD.
+
+14:36 And Saul said, Let us go down after the Philistines by night,
+and spoil them until the morning light, and let us not leave a man of
+them. And they said, Do whatsoever seemeth good unto thee. Then said
+the priest, Let us draw near hither unto God.
+
+14:37 And Saul asked counsel of God, Shall I go down after the
+Philistines? wilt thou deliver them into the hand of Israel? But he
+answered him not that day.
+
+14:38 And Saul said, Draw ye near hither, all the chief of the people:
+and know and see wherein this sin hath been this day.
+
+14:39 For, as the LORD liveth, which saveth Israel, though it be in
+Jonathan my son, he shall surely die. But there was not a man among
+all the people that answered him.
+
+14:40 Then said he unto all Israel, Be ye on one side, and I and
+Jonathan my son will be on the other side. And the people said unto
+Saul, Do what seemeth good unto thee.
+
+14:41 Therefore Saul said unto the LORD God of Israel, Give a perfect
+lot.
+
+And Saul and Jonathan were taken: but the people escaped.
+
+14:42 And Saul said, Cast lots between me and Jonathan my son. And
+Jonathan was taken.
+
+14:43 Then Saul said to Jonathan, Tell me what thou hast done. And
+Jonathan told him, and said, I did but taste a little honey with the
+end of the rod that was in mine hand, and, lo, I must die.
+
+14:44 And Saul answered, God do so and more also: for thou shalt
+surely die, Jonathan.
+
+14:45 And the people said unto Saul, Shall Jonathan die, who hath
+wrought this great salvation in Israel? God forbid: as the LORD
+liveth, there shall not one hair of his head fall to the ground; for
+he hath wrought with God this day. So the people rescued Jonathan,
+that he died not.
+
+14:46 Then Saul went up from following the Philistines: and the
+Philistines went to their own place.
+
+14:47 So Saul took the kingdom over Israel, and fought against all his
+enemies on every side, against Moab, and against the children of
+Ammon, and against Edom, and against the kings of Zobah, and against
+the Philistines: and whithersoever he turned himself, he vexed them.
+
+14:48 And he gathered an host, and smote the Amalekites, and delivered
+Israel out of the hands of them that spoiled them.
+
+14:49 Now the sons of Saul were Jonathan, and Ishui, and Melchishua:
+and the names of his two daughters were these; the name of the
+firstborn Merab, and the name of the younger Michal: 14:50 And the
+name of Saul's wife was Ahinoam, the daughter of Ahimaaz: and the name
+of the captain of his host was Abner, the son of Ner, Saul's uncle.
+
+14:51 And Kish was the father of Saul; and Ner the father of Abner was
+the son of Abiel.
+
+14:52 And there was sore war against the Philistines all the days of
+Saul: and when Saul saw any strong man, or any valiant man, he took
+him unto him.
+
+15:1 Samuel also said unto Saul, The LORD sent me to anoint thee to be
+king over his people, over Israel: now therefore hearken thou unto the
+voice of the words of the LORD.
+
+15:2 Thus saith the LORD of hosts, I remember that which Amalek did to
+Israel, how he laid wait for him in the way, when he came up from
+Egypt.
+
+15:3 Now go and smite Amalek, and utterly destroy all that they have,
+and spare them not; but slay both man and woman, infant and suckling,
+ox and sheep, camel and ass.
+
+15:4 And Saul gathered the people together, and numbered them in
+Telaim, two hundred thousand footmen, and ten thousand men of Judah.
+
+15:5 And Saul came to a city of Amalek, and laid wait in the valley.
+
+15:6 And Saul said unto the Kenites, Go, depart, get you down from
+among the Amalekites, lest I destroy you with them: for ye shewed
+kindness to all the children of Israel, when they came up out of
+Egypt. So the Kenites departed from among the Amalekites.
+
+15:7 And Saul smote the Amalekites from Havilah until thou comest to
+Shur, that is over against Egypt.
+
+15:8 And he took Agag the king of the Amalekites alive, and utterly
+destroyed all the people with the edge of the sword.
+
+15:9 But Saul and the people spared Agag, and the best of the sheep,
+and of the oxen, and of the fatlings, and the lambs, and all that was
+good, and would not utterly destroy them: but every thing that was
+vile and refuse, that they destroyed utterly.
+
+15:10 Then came the word of the LORD unto Samuel, saying, 15:11 It
+repenteth me that I have set up Saul to be king: for he is turned back
+from following me, and hath not performed my commandments. And it
+grieved Samuel; and he cried unto the LORD all night.
+
+15:12 And when Samuel rose early to meet Saul in the morning, it was
+told Samuel, saying, Saul came to Carmel, and, behold, he set him up a
+place, and is gone about, and passed on, and gone down to Gilgal.
+
+15:13 And Samuel came to Saul: and Saul said unto him, Blessed be thou
+of the LORD: I have performed the commandment of the LORD.
+
+15:14 And Samuel said, What meaneth then this bleating of the sheep in
+mine ears, and the lowing of the oxen which I hear? 15:15 And Saul
+said, They have brought them from the Amalekites: for the people
+spared the best of the sheep and of the oxen, to sacrifice unto the
+LORD thy God; and the rest we have utterly destroyed.
+
+15:16 Then Samuel said unto Saul, Stay, and I will tell thee what the
+LORD hath said to me this night. And he said unto him, Say on.
+
+15:17 And Samuel said, When thou wast little in thine own sight, wast
+thou not made the head of the tribes of Israel, and the LORD anointed
+thee king over Israel? 15:18 And the LORD sent thee on a journey, and
+said, Go and utterly destroy the sinners the Amalekites, and fight
+against them until they be consumed.
+
+15:19 Wherefore then didst thou not obey the voice of the LORD, but
+didst fly upon the spoil, and didst evil in the sight of the LORD?
+15:20 And Saul said unto Samuel, Yea, I have obeyed the voice of the
+LORD, and have gone the way which the LORD sent me, and have brought
+Agag the king of Amalek, and have utterly destroyed the Amalekites.
+
+15:21 But the people took of the spoil, sheep and oxen, the chief of
+the things which should have been utterly destroyed, to sacrifice unto
+the LORD thy God in Gilgal.
+
+15:22 And Samuel said, Hath the LORD as great delight in burnt
+offerings and sacrifices, as in obeying the voice of the LORD? Behold,
+to obey is better than sacrifice, and to hearken than the fat of rams.
+
+15:23 For rebellion is as the sin of witchcraft, and stubbornness is
+as iniquity and idolatry. Because thou hast rejected the word of the
+LORD, he hath also rejected thee from being king.
+
+15:24 And Saul said unto Samuel, I have sinned: for I have
+transgressed the commandment of the LORD, and thy words: because I
+feared the people, and obeyed their voice.
+
+15:25 Now therefore, I pray thee, pardon my sin, and turn again with
+me, that I may worship the LORD.
+
+15:26 And Samuel said unto Saul, I will not return with thee: for thou
+hast rejected the word of the LORD, and the LORD hath rejected thee
+from being king over Israel.
+
+15:27 And as Samuel turned about to go away, he laid hold upon the
+skirt of his mantle, and it rent.
+
+15:28 And Samuel said unto him, The LORD hath rent the kingdom of
+Israel from thee this day, and hath given it to a neighbour of thine,
+that is better than thou.
+
+15:29 And also the Strength of Israel will not lie nor repent: for he
+is not a man, that he should repent.
+
+15:30 Then he said, I have sinned: yet honour me now, I pray thee,
+before the elders of my people, and before Israel, and turn again with
+me, that I may worship the LORD thy God.
+
+15:31 So Samuel turned again after Saul; and Saul worshipped the LORD.
+
+15:32 Then said Samuel, Bring ye hither to me Agag the king of the
+Amalekites. And Agag came unto him delicately. And Agag said, Surely
+the bitterness of death is past.
+
+15:33 And Samuel said, As the sword hath made women childless, so
+shall thy mother be childless among women. And Samuel hewed Agag in
+pieces before the LORD in Gilgal.
+
+15:34 Then Samuel went to Ramah; and Saul went up to his house to
+Gibeah of Saul.
+
+15:35 And Samuel came no more to see Saul until the day of his death:
+nevertheless Samuel mourned for Saul: and the LORD repented that he
+had made Saul king over Israel.
+
+16:1 And the LORD said unto Samuel, How long wilt thou mourn for Saul,
+seeing I have rejected him from reigning over Israel? fill thine horn
+with oil, and go, I will send thee to Jesse the Bethlehemite: for I
+have provided me a king among his sons.
+
+16:2 And Samuel said, How can I go? if Saul hear it, he will kill me.
+And the LORD said, Take an heifer with thee, and say, I am come to
+sacrifice to the LORD.
+
+16:3 And call Jesse to the sacrifice, and I will shew thee what thou
+shalt do: and thou shalt anoint unto me him whom I name unto thee.
+
+16:4 And Samuel did that which the LORD spake, and came to Bethlehem.
+And the elders of the town trembled at his coming, and said, Comest
+thou peaceably? 16:5 And he said, Peaceably: I am come to sacrifice
+unto the LORD: sanctify yourselves, and come with me to the sacrifice.
+And he sanctified Jesse and his sons, and called them to the
+sacrifice.
+
+16:6 And it came to pass, when they were come, that he looked on
+Eliab, and said, Surely the LORD's anointed is before him.
+
+16:7 But the LORD said unto Samuel, Look not on his countenance, or on
+the height of his stature; because I have refused him: for the LORD
+seeth not as man seeth; for man looketh on the outward appearance, but
+the LORD looketh on the heart.
+
+16:8 Then Jesse called Abinadab, and made him pass before Samuel. And
+he said, Neither hath the LORD chosen this.
+
+16:9 Then Jesse made Shammah to pass by. And he said, Neither hath the
+LORD chosen this.
+
+16:10 Again, Jesse made seven of his sons to pass before Samuel. And
+Samuel said unto Jesse, The LORD hath not chosen these.
+
+16:11 And Samuel said unto Jesse, Are here all thy children? And he
+said, There remaineth yet the youngest, and, behold, he keepeth the
+sheep. And Samuel said unto Jesse, Send and fetch him: for we will not
+sit down till he come hither.
+
+16:12 And he sent, and brought him in. Now he was ruddy, and withal of
+a beautiful countenance, and goodly to look to. And the LORD said,
+Arise, anoint him: for this is he.
+
+16:13 Then Samuel took the horn of oil, and anointed him in the midst
+of his brethren: and the Spirit of the LORD came upon David from that
+day forward. So Samuel rose up, and went to Ramah.
+
+16:14 But the Spirit of the LORD departed from Saul, and an evil
+spirit from the LORD troubled him.
+
+16:15 And Saul's servants said unto him, Behold now, an evil spirit
+from God troubleth thee.
+
+16:16 Let our lord now command thy servants, which are before thee, to
+seek out a man, who is a cunning player on an harp: and it shall come
+to pass, when the evil spirit from God is upon thee, that he shall
+play with his hand, and thou shalt be well.
+
+16:17 And Saul said unto his servants, Provide me now a man that can
+play well, and bring him to me.
+
+16:18 Then answered one of the servants, and said, Behold, I have seen
+a son of Jesse the Bethlehemite, that is cunning in playing, and a
+mighty valiant man, and a man of war, and prudent in matters, and a
+comely person, and the LORD is with him.
+
+16:19 Wherefore Saul sent messengers unto Jesse, and said, Send me
+David thy son, which is with the sheep.
+
+16:20 And Jesse took an ass laden with bread, and a bottle of wine,
+and a kid, and sent them by David his son unto Saul.
+
+16:21 And David came to Saul, and stood before him: and he loved him
+greatly; and he became his armourbearer.
+
+16:22 And Saul sent to Jesse, saying, Let David, I pray thee, stand
+before me; for he hath found favour in my sight.
+
+16:23 And it came to pass, when the evil spirit from God was upon
+Saul, that David took an harp, and played with his hand: so Saul was
+refreshed, and was well, and the evil spirit departed from him.
+
+17:1 Now the Philistines gathered together their armies to battle, and
+were gathered together at Shochoh, which belongeth to Judah, and
+pitched between Shochoh and Azekah, in Ephesdammim.
+
+17:2 And Saul and the men of Israel were gathered together, and
+pitched by the valley of Elah, and set the battle in array against the
+Philistines.
+
+17:3 And the Philistines stood on a mountain on the one side, and
+Israel stood on a mountain on the other side: and there was a valley
+between them.
+
+17:4 And there went out a champion out of the camp of the Philistines,
+named Goliath, of Gath, whose height was six cubits and a span.
+
+17:5 And he had an helmet of brass upon his head, and he was armed
+with a coat of mail; and the weight of the coat was five thousand
+shekels of brass.
+
+17:6 And he had greaves of brass upon his legs, and a target of brass
+between his shoulders.
+
+17:7 And the staff of his spear was like a weaver's beam; and his
+spear's head weighed six hundred shekels of iron: and one bearing a
+shield went before him.
+
+17:8 And he stood and cried unto the armies of Israel, and said unto
+them, Why are ye come out to set your battle in array? am not I a
+Philistine, and ye servants to Saul? choose you a man for you, and let
+him come down to me.
+
+17:9 If he be able to fight with me, and to kill me, then will we be
+your servants: but if I prevail against him, and kill him, then shall
+ye be our servants, and serve us.
+
+17:10 And the Philistine said, I defy the armies of Israel this day;
+give me a man, that we may fight together.
+
+17:11 When Saul and all Israel heard those words of the Philistine,
+they were dismayed, and greatly afraid.
+
+17:12 Now David was the son of that Ephrathite of Bethlehemjudah,
+whose name was Jesse; and he had eight sons: and the man went among
+men for an old man in the days of Saul.
+
+17:13 And the three eldest sons of Jesse went and followed Saul to the
+battle: and the names of his three sons that went to the battle were
+Eliab the firstborn, and next unto him Abinadab, and the third
+Shammah.
+
+17:14 And David was the youngest: and the three eldest followed Saul.
+
+17:15 But David went and returned from Saul to feed his father's sheep
+at Bethlehem.
+
+17:16 And the Philistine drew near morning and evening, and presented
+himself forty days.
+
+17:17 And Jesse said unto David his son, Take now for thy brethren an
+ephah of this parched corn, and these ten loaves, and run to the camp
+of thy brethren; 17:18 And carry these ten cheeses unto the captain of
+their thousand, and look how thy brethren fare, and take their pledge.
+
+17:19 Now Saul, and they, and all the men of Israel, were in the
+valley of Elah, fighting with the Philistines.
+
+17:20 And David rose up early in the morning, and left the sheep with
+a keeper, and took, and went, as Jesse had commanded him; and he came
+to the trench, as the host was going forth to the fight, and shouted
+for the battle.
+
+17:21 For Israel and the Philistines had put the battle in array, army
+against army.
+
+17:22 And David left his carriage in the hand of the keeper of the
+carriage, and ran into the army, and came and saluted his brethren.
+
+17:23 And as he talked with them, behold, there came up the champion,
+the Philistine of Gath, Goliath by name, out of the armies of the
+Philistines, and spake according to the same words: and David heard
+them.
+
+17:24 And all the men of Israel, when they saw the man, fled from him,
+and were sore afraid.
+
+17:25 And the men of Israel said, Have ye seen this man that is come
+up? surely to defy Israel is he come up: and it shall be, that the
+man who killeth him, the king will enrich him with great riches, and
+will give him his daughter, and make his father's house free in
+Israel.
+
+17:26 And David spake to the men that stood by him, saying, What shall
+be done to the man that killeth this Philistine, and taketh away the
+reproach from Israel? for who is this uncircumcised Philistine, that
+he should defy the armies of the living God? 17:27 And the people
+answered him after this manner, saying, So shall it be done to the man
+that killeth him.
+
+17:28 And Eliab his eldest brother heard when he spake unto the men;
+and Eliab's anger was kindled against David, and he said, Why camest
+thou down hither? and with whom hast thou left those few sheep in the
+wilderness? I know thy pride, and the naughtiness of thine heart; for
+thou art come down that thou mightest see the battle.
+
+17:29 And David said, What have I now done? Is there not a cause?
+17:30 And he turned from him toward another, and spake after the same
+manner: and the people answered him again after the former manner.
+
+17:31 And when the words were heard which David spake, they rehearsed
+them before Saul: and he sent for him.
+
+17:32 And David said to Saul, Let no man's heart fail because of him;
+thy servant will go and fight with this Philistine.
+
+17:33 And Saul said to David, Thou art not able to go against this
+Philistine to fight with him: for thou art but a youth, and he a man
+of war from his youth.
+
+17:34 And David said unto Saul, Thy servant kept his father's sheep,
+and there came a lion, and a bear, and took a lamb out of the flock:
+17:35 And I went out after him, and smote him, and delivered it out of
+his mouth: and when he arose against me, I caught him by his beard,
+and smote him, and slew him.
+
+17:36 Thy servant slew both the lion and the bear: and this
+uncircumcised Philistine shall be as one of them, seeing he hath
+defied the armies of the living God.
+
+17:37 David said moreover, The LORD that delivered me out of the paw
+of the lion, and out of the paw of the bear, he will deliver me out of
+the hand of this Philistine. And Saul said unto David, Go, and the
+LORD be with thee.
+
+17:38 And Saul armed David with his armour, and he put an helmet of
+brass upon his head; also he armed him with a coat of mail.
+
+17:39 And David girded his sword upon his armour, and he assayed to
+go; for he had not proved it. And David said unto Saul, I cannot go
+with these; for I have not proved them. And David put them off him.
+
+17:40 And he took his staff in his hand, and chose him five smooth
+stones out of the brook, and put them in a shepherd's bag which he
+had, even in a scrip; and his sling was in his hand: and he drew near
+to the Philistine.
+
+17:41 And the Philistine came on and drew near unto David; and the man
+that bare the shield went before him.
+
+17:42 And when the Philistine looked about, and saw David, he
+disdained him: for he was but a youth, and ruddy, and of a fair
+countenance.
+
+17:43 And the Philistine said unto David, Am I a dog, that thou comest
+to me with staves? And the Philistine cursed David by his gods.
+
+17:44 And the Philistine said to David, Come to me, and I will give
+thy flesh unto the fowls of the air, and to the beasts of the field.
+
+17:45 Then said David to the Philistine, Thou comest to me with a
+sword, and with a spear, and with a shield: but I come to thee in the
+name of the LORD of hosts, the God of the armies of Israel, whom thou
+hast defied.
+
+17:46 This day will the LORD deliver thee into mine hand; and I will
+smite thee, and take thine head from thee; and I will give the
+carcases of the host of the Philistines this day unto the fowls of the
+air, and to the wild beasts of the earth; that all the earth may know
+that there is a God in Israel.
+
+17:47 And all this assembly shall know that the LORD saveth not with
+sword and spear: for the battle is the LORD's, and he will give you
+into our hands.
+
+17:48 And it came to pass, when the Philistine arose, and came, and
+drew nigh to meet David, that David hastened, and ran toward the army
+to meet the Philistine.
+
+17:49 And David put his hand in his bag, and took thence a stone, and
+slang it, and smote the Philistine in his forehead, that the stone
+sunk into his forehead; and he fell upon his face to the earth.
+
+17:50 So David prevailed over the Philistine with a sling and with a
+stone, and smote the Philistine, and slew him; but there was no sword
+in the hand of David.
+
+17:51 Therefore David ran, and stood upon the Philistine, and took his
+sword, and drew it out of the sheath thereof, and slew him, and cut
+off his head therewith. And when the Philistines saw their champion
+was dead, they fled.
+
+17:52 And the men of Israel and of Judah arose, and shouted, and
+pursued the Philistines, until thou come to the valley, and to the
+gates of Ekron.
+
+And the wounded of the Philistines fell down by the way to Shaaraim,
+even unto Gath, and unto Ekron.
+
+17:53 And the children of Israel returned from chasing after the
+Philistines, and they spoiled their tents.
+
+17:54 And David took the head of the Philistine, and brought it to
+Jerusalem; but he put his armour in his tent.
+
+17:55 And when Saul saw David go forth against the Philistine, he said
+unto Abner, the captain of the host, Abner, whose son is this youth?
+And Abner said, As thy soul liveth, O king, I cannot tell.
+
+17:56 And the king said, Enquire thou whose son the stripling is.
+
+17:57 And as David returned from the slaughter of the Philistine,
+Abner took him, and brought him before Saul with the head of the
+Philistine in his hand.
+
+17:58 And Saul said to him, Whose son art thou, thou young man? And
+David answered, I am the son of thy servant Jesse the Bethlehemite.
+
+18:1 And it came to pass, when he had made an end of speaking unto
+Saul, that the soul of Jonathan was knit with the soul of David, and
+Jonathan loved him as his own soul.
+
+18:2 And Saul took him that day, and would let him go no more home to
+his father's house.
+
+18:3 Then Jonathan and David made a covenant, because he loved him as
+his own soul.
+
+18:4 And Jonathan stripped himself of the robe that was upon him, and
+gave it to David, and his garments, even to his sword, and to his bow,
+and to his girdle.
+
+18:5 And David went out whithersoever Saul sent him, and behaved
+himself wisely: and Saul set him over the men of war, and he was
+accepted in the sight of all the people, and also in the sight of
+Saul's servants.
+
+18:6 And it came to pass as they came, when David was returned from
+the slaughter of the Philistine, that the women came out of all cities
+of Israel, singing and dancing, to meet king Saul, with tabrets, with
+joy, and with instruments of musick.
+
+18:7 And the women answered one another as they played, and said, Saul
+hath slain his thousands, and David his ten thousands.
+
+18:8 And Saul was very wroth, and the saying displeased him; and he
+said, They have ascribed unto David ten thousands, and to me they have
+ascribed but thousands: and what can he have more but the kingdom?
+18:9 And Saul eyed David from that day and forward.
+
+18:10 And it came to pass on the morrow, that the evil spirit from God
+came upon Saul, and he prophesied in the midst of the house: and David
+played with his hand, as at other times: and there was a javelin in
+Saul's hand.
+
+18:11 And Saul cast the javelin; for he said, I will smite David even
+to the wall with it. And David avoided out of his presence twice.
+
+18:12 And Saul was afraid of David, because the LORD was with him, and
+was departed from Saul.
+
+18:13 Therefore Saul removed him from him, and made him his captain
+over a thousand; and he went out and came in before the people.
+
+18:14 And David behaved himself wisely in all his ways; and the LORD
+was with him.
+
+18:15 Wherefore when Saul saw that he behaved himself very wisely, he
+was afraid of him.
+
+18:16 But all Israel and Judah loved David, because he went out and
+came in before them.
+
+18:17 And Saul said to David, Behold my elder daughter Merab, her will
+I give thee to wife: only be thou valiant for me, and fight the LORD's
+battles.
+
+For Saul said, Let not mine hand be upon him, but let the hand of the
+Philistines be upon him.
+
+18:18 And David said unto Saul, Who am I? and what is my life, or my
+father's family in Israel, that I should be son in law to the king?
+18:19 But it came to pass at the time when Merab Saul's daughter
+should have been given to David, that she was given unto Adriel the
+Meholathite to wife.
+
+18:20 And Michal Saul's daughter loved David: and they told Saul, and
+the thing pleased him.
+
+18:21 And Saul said, I will give him her, that she may be a snare to
+him, and that the hand of the Philistines may be against him.
+Wherefore Saul said to David, Thou shalt this day be my son in law in
+the one of the twain.
+
+18:22 And Saul commanded his servants, saying, Commune with David
+secretly, and say, Behold, the king hath delight in thee, and all his
+servants love thee: now therefore be the king's son in law.
+
+18:23 And Saul's servants spake those words in the ears of David. And
+David said, Seemeth it to you a light thing to be a king's son in law,
+seeing that I am a poor man, and lightly esteemed? 18:24 And the
+servants of Saul told him, saying, On this manner spake David.
+
+18:25 And Saul said, Thus shall ye say to David, The king desireth not
+any dowry, but an hundred foreskins of the Philistines, to be avenged
+of the king's enemies. But Saul thought to make David fall by the hand
+of the Philistines.
+
+18:26 And when his servants told David these words, it pleased David
+well to be the king's son in law: and the days were not expired.
+
+18:27 Wherefore David arose and went, he and his men, and slew of the
+Philistines two hundred men; and David brought their foreskins, and
+they gave them in full tale to the king, that he might be the king's
+son in law. And Saul gave him Michal his daughter to wife.
+
+18:28 And Saul saw and knew that the LORD was with David, and that
+Michal Saul's daughter loved him.
+
+18:29 And Saul was yet the more afraid of David; and Saul became
+David's enemy continually.
+
+18:30 Then the princes of the Philistines went forth: and it came to
+pass, after they went forth, that David behaved himself more wisely
+than all the servants of Saul; so that his name was much set by.
+
+19:1 And Saul spake to Jonathan his son, and to all his servants, that
+they should kill David.
+
+19:2 But Jonathan Saul's son delighted much in David: and Jonathan
+told David, saying, Saul my father seeketh to kill thee: now
+therefore, I pray thee, take heed to thyself until the morning, and
+abide in a secret place, and hide thyself: 19:3 And I will go out and
+stand beside my father in the field where thou art, and I will commune
+with my father of thee; and what I see, that I will tell thee.
+
+19:4 And Jonathan spake good of David unto Saul his father, and said
+unto him, Let not the king sin against his servant, against David;
+because he hath not sinned against thee, and because his works have
+been to thee-ward very good: 19:5 For he did put his life in his hand,
+and slew the Philistine, and the LORD wrought a great salvation for
+all Israel: thou sawest it, and didst rejoice: wherefore then wilt
+thou sin against innocent blood, to slay David without a cause? 19:6
+And Saul hearkened unto the voice of Jonathan: and Saul sware, As the
+LORD liveth, he shall not be slain.
+
+19:7 And Jonathan called David, and Jonathan shewed him all those
+things.
+
+And Jonathan brought David to Saul, and he was in his presence, as in
+times past.
+
+19:8 And there was war again: and David went out, and fought with the
+Philistines, and slew them with a great slaughter; and they fled from
+him.
+
+19:9 And the evil spirit from the LORD was upon Saul, as he sat in his
+house with his javelin in his hand: and David played with his hand.
+
+19:10 And Saul sought to smite David even to the wall with the
+javelin: but he slipped away out of Saul's presence, and he smote the
+javelin into the wall: and David fled, and escaped that night.
+
+19:11 Saul also sent messengers unto David's house, to watch him, and
+to slay him in the morning: and Michal David's wife told him, saying,
+If thou save not thy life to night, to morrow thou shalt be slain.
+
+19:12 So Michal let David down through a window: and he went, and
+fled, and escaped.
+
+19:13 And Michal took an image, and laid it in the bed, and put a
+pillow of goats' hair for his bolster, and covered it with a cloth.
+
+19:14 And when Saul sent messengers to take David, she said, He is
+sick.
+
+19:15 And Saul sent the messengers again to see David, saying, Bring
+him up to me in the bed, that I may slay him.
+
+19:16 And when the messengers were come in, behold, there was an image
+in the bed, with a pillow of goats' hair for his bolster.
+
+19:17 And Saul said unto Michal, Why hast thou deceived me so, and
+sent away mine enemy, that he is escaped? And Michal answered Saul, He
+said unto me, Let me go; why should I kill thee? 19:18 So David fled,
+and escaped, and came to Samuel to Ramah, and told him all that Saul
+had done to him. And he and Samuel went and dwelt in Naioth.
+
+19:19 And it was told Saul, saying, Behold, David is at Naioth in
+Ramah.
+
+19:20 And Saul sent messengers to take David: and when they saw the
+company of the prophets prophesying, and Samuel standing as appointed
+over them, the Spirit of God was upon the messengers of Saul, and they
+also prophesied.
+
+19:21 And when it was told Saul, he sent other messengers, and they
+prophesied likewise. And Saul sent messengers again the third time,
+and they prophesied also.
+
+19:22 Then went he also to Ramah, and came to a great well that is in
+Sechu: and he asked and said, Where are Samuel and David? And one
+said, Behold, they be at Naioth in Ramah.
+
+19:23 And he went thither to Naioth in Ramah: and the Spirit of God
+was upon him also, and he went on, and prophesied, until he came to
+Naioth in Ramah.
+
+19:24 And he stripped off his clothes also, and prophesied before
+Samuel in like manner, and lay down naked all that day and all that
+night. Wherefore they say, Is Saul also among the prophets? 20:1 And
+David fled from Naioth in Ramah, and came and said before Jonathan,
+What have I done? what is mine iniquity? and what is my sin before thy
+father, that he seeketh my life? 20:2 And he said unto him, God
+forbid; thou shalt not die: behold, my father will do nothing either
+great or small, but that he will shew it me: and why should my father
+hide this thing from me? it is not so.
+
+20:3 And David sware moreover, and said, Thy father certainly knoweth
+that I have found grace in thine eyes; and he saith, Let not Jonathan
+know this, lest he be grieved: but truly as the LORD liveth, and as
+thy soul liveth, there is but a step between me and death.
+
+20:4 Then said Jonathan unto David, Whatsoever thy soul desireth, I
+will even do it for thee.
+
+20:5 And David said unto Jonathan, Behold, to morrow is the new moon,
+and I should not fail to sit with the king at meat: but let me go,
+that I may hide myself in the field unto the third day at even.
+
+20:6 If thy father at all miss me, then say, David earnestly asked
+leave of me that he might run to Bethlehem his city: for there is a
+yearly sacrifice there for all the family.
+
+20:7 If he say thus, It is well; thy servant shall have peace: but if
+he be very wroth, then be sure that evil is determined by him.
+
+20:8 Therefore thou shalt deal kindly with thy servant; for thou hast
+brought thy servant into a covenant of the LORD with thee:
+notwithstanding, if there be in me iniquity, slay me thyself; for why
+shouldest thou bring me to thy father? 20:9 And Jonathan said, Far be
+it from thee: for if I knew certainly that evil were determined by my
+father to come upon thee, then would not I tell it thee? 20:10 Then
+said David to Jonathan, Who shall tell me? or what if thy father
+answer thee roughly? 20:11 And Jonathan said unto David, Come, and
+let us go out into the field. And they went out both of them into the
+field.
+
+20:12 And Jonathan said unto David, O LORD God of Israel, when I have
+sounded my father about to morrow any time, or the third day, and,
+behold, if there be good toward David, and I then send not unto thee,
+and shew it thee; 20:13 The LORD do so and much more to Jonathan: but
+if it please my father to do thee evil, then I will shew it thee, and
+send thee away, that thou mayest go in peace: and the LORD be with
+thee, as he hath been with my father.
+
+20:14 And thou shalt not only while yet I live shew me the kindness of
+the LORD, that I die not: 20:15 But also thou shalt not cut off thy
+kindness from my house for ever: no, not when the LORD hath cut off
+the enemies of David every one from the face of the earth.
+
+20:16 So Jonathan made a covenant with the house of David, saying, Let
+the LORD even require it at the hand of David's enemies.
+
+20:17 And Jonathan caused David to swear again, because he loved him:
+for he loved him as he loved his own soul.
+
+20:18 Then Jonathan said to David, To morrow is the new moon: and thou
+shalt be missed, because thy seat will be empty.
+
+20:19 And when thou hast stayed three days, then thou shalt go down
+quickly, and come to the place where thou didst hide thyself when the
+business was in hand, and shalt remain by the stone Ezel.
+
+20:20 And I will shoot three arrows on the side thereof, as though I
+shot at a mark.
+
+20:21 And, behold, I will send a lad, saying, Go, find out the arrows.
+If I expressly say unto the lad, Behold, the arrows are on this side
+of thee, take them; then come thou: for there is peace to thee, and no
+hurt; as the LORD liveth.
+
+20:22 But if I say thus unto the young man, Behold, the arrows are
+beyond thee; go thy way: for the LORD hath sent thee away.
+
+20:23 And as touching the matter which thou and I have spoken of,
+behold, the LORD be between thee and me for ever.
+
+20:24 So David hid himself in the field: and when the new moon was
+come, the king sat him down to eat meat.
+
+20:25 And the king sat upon his seat, as at other times, even upon a
+seat by the wall: and Jonathan arose, and Abner sat by Saul's side,
+and David's place was empty.
+
+20:26 Nevertheless Saul spake not any thing that day: for he thought,
+Something hath befallen him, he is not clean; surely he is not clean.
+
+20:27 And it came to pass on the morrow, which was the second day of
+the month, that David's place was empty: and Saul said unto Jonathan
+his son, Wherefore cometh not the son of Jesse to meat, neither
+yesterday, nor to day? 20:28 And Jonathan answered Saul, David
+earnestly asked leave of me to go to Bethlehem: 20:29 And he said, Let
+me go, I pray thee; for our family hath a sacrifice in the city; and
+my brother, he hath commanded me to be there: and now, if I have found
+favour in thine eyes, let me get away, I pray thee, and see my
+brethren. Therefore he cometh not unto the king's table.
+
+20:30 Then Saul's anger was kindled against Jonathan, and he said unto
+him, Thou son of the perverse rebellious woman, do not I know that
+thou hast chosen the son of Jesse to thine own confusion, and unto the
+confusion of thy mother's nakedness? 20:31 For as long as the son of
+Jesse liveth upon the ground, thou shalt not be established, nor thy
+kingdom. Wherefore now send and fetch him unto me, for he shall surely
+die.
+
+20:32 And Jonathan answered Saul his father, and said unto him,
+Wherefore shall he be slain? what hath he done? 20:33 And Saul cast a
+javelin at him to smite him: whereby Jonathan knew that it was
+determined of his father to slay David.
+
+20:34 So Jonathan arose from the table in fierce anger, and did eat no
+meat the second day of the month: for he was grieved for David,
+because his father had done him shame.
+
+20:35 And it came to pass in the morning, that Jonathan went out into
+the field at the time appointed with David, and a little lad with him.
+
+20:36 And he said unto his lad, Run, find out now the arrows which I
+shoot. And as the lad ran, he shot an arrow beyond him.
+
+20:37 And when the lad was come to the place of the arrow which
+Jonathan had shot, Jonathan cried after the lad, and said, Is not the
+arrow beyond thee? 20:38 And Jonathan cried after the lad, Make
+speed, haste, stay not. And Jonathan's lad gathered up the arrows, and
+came to his master.
+
+20:39 But the lad knew not any thing: only Jonathan and David knew the
+matter.
+
+20:40 And Jonathan gave his artillery unto his lad, and said unto him,
+Go, carry them to the city.
+
+20:41 And as soon as the lad was gone, David arose out of a place
+toward the south, and fell on his face to the ground, and bowed
+himself three times: and they kissed one another, and wept one with
+another, until David exceeded.
+
+20:42 And Jonathan said to David, Go in peace, forasmuch as we have
+sworn both of us in the name of the LORD, saying, The LORD be between
+me and thee, and between my seed and thy seed for ever. And he arose
+and departed: and Jonathan went into the city.
+
+21:1 Then came David to Nob to Ahimelech the priest: and Ahimelech was
+afraid at the meeting of David, and said unto him, Why art thou alone,
+and no man with thee? 21:2 And David said unto Ahimelech the priest,
+The king hath commanded me a business, and hath said unto me, Let no
+man know any thing of the business whereabout I send thee, and what I
+have commanded thee: and I have appointed my servants to such and such
+a place.
+
+21:3 Now therefore what is under thine hand? give me five loaves of
+bread in mine hand, or what there is present.
+
+21:4 And the priest answered David, and said, There is no common bread
+under mine hand, but there is hallowed bread; if the young men have
+kept themselves at least from women.
+
+21:5 And David answered the priest, and said unto him, Of a truth
+women have been kept from us about these three days, since I came out,
+and the vessels of the young men are holy, and the bread is in a
+manner common, yea, though it were sanctified this day in the vessel.
+
+21:6 So the priest gave him hallowed bread: for there was no bread
+there but the shewbread, that was taken from before the LORD, to put
+hot bread in the day when it was taken away.
+
+21:7 Now a certain man of the servants of Saul was there that day,
+detained before the LORD; and his name was Doeg, an Edomite, the
+chiefest of the herdmen that belonged to Saul.
+
+21:8 And David said unto Ahimelech, And is there not here under thine
+hand spear or sword? for I have neither brought my sword nor my
+weapons with me, because the king's business required haste.
+
+21:9 And the priest said, The sword of Goliath the Philistine, whom
+thou slewest in the valley of Elah, behold, it is here wrapped in a
+cloth behind the ephod: if thou wilt take that, take it: for there is
+no other save that here. And David said, There is none like that; give
+it me.
+
+21:10 And David arose and fled that day for fear of Saul, and went to
+Achish the king of Gath.
+
+21:11 And the servants of Achish said unto him, Is not this David the
+king of the land? did they not sing one to another of him in dances,
+saying, Saul hath slain his thousands, and David his ten thousands?
+21:12 And David laid up these words in his heart, and was sore afraid
+of Achish the king of Gath.
+
+21:13 And he changed his behaviour before them, and feigned himself
+mad in their hands, and scrabbled on the doors of the gate, and let
+his spittle fall down upon his beard.
+
+21:14 Then said Achish unto his servants, Lo, ye see the man is mad:
+wherefore then have ye brought him to me? 21:15 Have I need of mad
+men, that ye have brought this fellow to play the mad man in my
+presence? shall this fellow come into my house? 22:1 David therefore
+departed thence, and escaped to the cave Adullam: and when his
+brethren and all his father's house heard it, they went down thither
+to him.
+
+22:2 And every one that was in distress, and every one that was in
+debt, and every one that was discontented, gathered themselves unto
+him; and he became a captain over them: and there were with him about
+four hundred men.
+
+22:3 And David went thence to Mizpeh of Moab: and he said unto the
+king of Moab, Let my father and my mother, I pray thee, come forth,
+and be with you, till I know what God will do for me.
+
+22:4 And he brought them before the king of Moab: and they dwelt with
+him all the while that David was in the hold.
+
+22:5 And the prophet Gad said unto David, Abide not in the hold;
+depart, and get thee into the land of Judah. Then David departed, and
+came into the forest of Hareth.
+
+22:6 When Saul heard that David was discovered, and the men that were
+with him, (now Saul abode in Gibeah under a tree in Ramah, having his
+spear in his hand, and all his servants were standing about him;) 22:7
+Then Saul said unto his servants that stood about him, Hear now, ye
+Benjamites; will the son of Jesse give every one of you fields and
+vineyards, and make you all captains of thousands, and captains of
+hundreds; 22:8 That all of you have conspired against me, and there is
+none that sheweth me that my son hath made a league with the son of
+Jesse, and there is none of you that is sorry for me, or sheweth unto
+me that my son hath stirred up my servant against me, to lie in wait,
+as at this day? 22:9 Then answered Doeg the Edomite, which was set
+over the servants of Saul, and said, I saw the son of Jesse coming to
+Nob, to Ahimelech the son of Ahitub.
+
+22:10 And he enquired of the LORD for him, and gave him victuals, and
+gave him the sword of Goliath the Philistine.
+
+22:11 Then the king sent to call Ahimelech the priest, the son of
+Ahitub, and all his father's house, the priests that were in Nob: and
+they came all of them to the king.
+
+22:12 And Saul said, Hear now, thou son of Ahitub. And he answered,
+Here I am, my lord.
+
+22:13 And Saul said unto him, Why have ye conspired against me, thou
+and the son of Jesse, in that thou hast given him bread, and a sword,
+and hast enquired of God for him, that he should rise against me, to
+lie in wait, as at this day? 22:14 Then Ahimelech answered the king,
+and said, And who is so faithful among all thy servants as David,
+which is the king's son in law, and goeth at thy bidding, and is
+honourable in thine house? 22:15 Did I then begin to enquire of God
+for him? be it far from me: let not the king impute any thing unto his
+servant, nor to all the house of my father: for thy servant knew
+nothing of all this, less or more.
+
+22:16 And the king said, Thou shalt surely die, Ahimelech, thou, and
+all thy father's house.
+
+22:17 And the king said unto the footmen that stood about him, Turn,
+and slay the priests of the LORD: because their hand also is with
+David, and because they knew when he fled, and did not shew it to me.
+But the servants of the king would not put forth their hand to fall
+upon the priests of the LORD.
+
+22:18 And the king said to Doeg, Turn thou, and fall upon the priests.
+And Doeg the Edomite turned, and he fell upon the priests, and slew on
+that day fourscore and five persons that did wear a linen ephod.
+
+22:19 And Nob, the city of the priests, smote he with the edge of the
+sword, both men and women, children and sucklings, and oxen, and
+asses, and sheep, with the edge of the sword.
+
+22:20 And one of the sons of Ahimelech the son of Ahitub, named
+Abiathar, escaped, and fled after David.
+
+22:21 And Abiathar shewed David that Saul had slain the LORD's
+priests.
+
+22:22 And David said unto Abiathar, I knew it that day, when Doeg the
+Edomite was there, that he would surely tell Saul: I have occasioned
+the death of all the persons of thy father's house.
+
+22:23 Abide thou with me, fear not: for he that seeketh my life
+seeketh thy life: but with me thou shalt be in safeguard.
+
+23:1 Then they told David, saying, Behold, the Philistines fight
+against Keilah, and they rob the threshingfloors.
+
+23:2 Therefore David enquired of the LORD, saying, Shall I go and
+smite these Philistines? And the LORD said unto David, Go, and smite
+the Philistines, and save Keilah.
+
+23:3 And David's men said unto him, Behold, we be afraid here in
+Judah: how much more then if we come to Keilah against the armies of
+the Philistines? 23:4 Then David enquired of the LORD yet again. And
+the LORD answered him and said, Arise, go down to Keilah; for I will
+deliver the Philistines into thine hand.
+
+23:5 So David and his men went to Keilah, and fought with the
+Philistines, and brought away their cattle, and smote them with a
+great slaughter. So David saved the inhabitants of Keilah.
+
+23:6 And it came to pass, when Abiathar the son of Ahimelech fled to
+David to Keilah, that he came down with an ephod in his hand.
+
+23:7 And it was told Saul that David was come to Keilah. And Saul
+said, God hath delivered him into mine hand; for he is shut in, by
+entering into a town that hath gates and bars.
+
+23:8 And Saul called all the people together to war, to go down to
+Keilah, to besiege David and his men.
+
+23:9 And David knew that Saul secretly practised mischief against him;
+and he said to Abiathar the priest, Bring hither the ephod.
+
+23:10 Then said David, O LORD God of Israel, thy servant hath
+certainly heard that Saul seeketh to come to Keilah, to destroy the
+city for my sake.
+
+23:11 Will the men of Keilah deliver me up into his hand? will Saul
+come down, as thy servant hath heard? O LORD God of Israel, I beseech
+thee, tell thy servant. And the LORD said, He will come down.
+
+23:12 Then said David, Will the men of Keilah deliver me and my men
+into the hand of Saul? And the LORD said, They will deliver thee up.
+
+23:13 Then David and his men, which were about six hundred, arose and
+departed out of Keilah, and went whithersoever they could go. And it
+was told Saul that David was escaped from Keilah; and he forbare to go
+forth.
+
+23:14 And David abode in the wilderness in strong holds, and remained
+in a mountain in the wilderness of Ziph. And Saul sought him every
+day, but God delivered him not into his hand.
+
+23:15 And David saw that Saul was come out to seek his life: and David
+was in the wilderness of Ziph in a wood.
+
+23:16 And Jonathan Saul's son arose, and went to David into the wood,
+and strengthened his hand in God.
+
+23:17 And he said unto him, Fear not: for the hand of Saul my father
+shall not find thee; and thou shalt be king over Israel, and I shall
+be next unto thee; and that also Saul my father knoweth.
+
+23:18 And they two made a covenant before the LORD: and David abode in
+the wood, and Jonathan went to his house.
+
+23:19 Then came up the Ziphites to Saul to Gibeah, saying, Doth not
+David hide himself with us in strong holds in the wood, in the hill of
+Hachilah, which is on the south of Jeshimon? 23:20 Now therefore, O
+king, come down according to all the desire of thy soul to come down;
+and our part shall be to deliver him into the king's hand.
+
+23:21 And Saul said, Blessed be ye of the LORD; for ye have compassion
+on me.
+
+23:22 Go, I pray you, prepare yet, and know and see his place where
+his haunt is, and who hath seen him there: for it is told me that he
+dealeth very subtilly.
+
+23:23 See therefore, and take knowledge of all the lurking places
+where he hideth himself, and come ye again to me with the certainty,
+and I will go with you: and it shall come to pass, if he be in the
+land, that I will search him out throughout all the thousands of
+Judah.
+
+23:24 And they arose, and went to Ziph before Saul: but David and his
+men were in the wilderness of Maon, in the plain on the south of
+Jeshimon.
+
+23:25 Saul also and his men went to seek him. And they told David;
+wherefore he came down into a rock, and abode in the wilderness of
+Maon. And when Saul heard that, he pursued after David in the
+wilderness of Maon.
+
+23:26 And Saul went on this side of the mountain, and David and his
+men on that side of the mountain: and David made haste to get away for
+fear of Saul; for Saul and his men compassed David and his men round
+about to take them.
+
+23:27 But there came a messenger unto Saul, saying, Haste thee, and
+come; for the Philistines have invaded the land.
+
+23:28 Wherefore Saul returned from pursuing after David, and went
+against the Philistines: therefore they called that place
+Selahammahlekoth.
+
+23:29 And David went up from thence, and dwelt in strong holds at
+Engedi.
+
+24:1 And it came to pass, when Saul was returned from following the
+Philistines, that it was told him, saying, Behold, David is in the
+wilderness of Engedi.
+
+24:2 Then Saul took three thousand chosen men out of all Israel, and
+went to seek David and his men upon the rocks of the wild goats.
+
+24:3 And he came to the sheepcotes by the way, where was a cave; and
+Saul went in to cover his feet: and David and his men remained in the
+sides of the cave.
+
+24:4 And the men of David said unto him, Behold the day of which the
+LORD said unto thee, Behold, I will deliver thine enemy into thine
+hand, that thou mayest do to him as it shall seem good unto thee. Then
+David arose, and cut off the skirt of Saul's robe privily.
+
+24:5 And it came to pass afterward, that David's heart smote him,
+because he had cut off Saul's skirt.
+
+24:6 And he said unto his men, The LORD forbid that I should do this
+thing unto my master, the LORD's anointed, to stretch forth mine hand
+against him, seeing he is the anointed of the LORD.
+
+24:7 So David stayed his servants with these words, and suffered them
+not to rise against Saul. But Saul rose up out of the cave, and went
+on his way.
+
+24:8 David also arose afterward, and went out of the cave, and cried
+after Saul, saying, My lord the king. And when Saul looked behind him,
+David stooped with his face to the earth, and bowed himself.
+
+24:9 And David said to Saul, Wherefore hearest thou men's words,
+saying, Behold, David seeketh thy hurt? 24:10 Behold, this day thine
+eyes have seen how that the LORD had delivered thee to day into mine
+hand in the cave: and some bade me kill thee: but mine eye spared
+thee; and I said, I will not put forth mine hand against my lord; for
+he is the LORD's anointed.
+
+24:11 Moreover, my father, see, yea, see the skirt of thy robe in my
+hand: for in that I cut off the skirt of thy robe, and killed thee
+not, know thou and see that there is neither evil nor transgression in
+mine hand, and I have not sinned against thee; yet thou huntest my
+soul to take it.
+
+24:12 The LORD judge between me and thee, and the LORD avenge me of
+thee: but mine hand shall not be upon thee.
+
+24:13 As saith the proverb of the ancients, Wickedness proceedeth from
+the wicked: but mine hand shall not be upon thee.
+
+24:14 After whom is the king of Israel come out? after whom dost thou
+pursue? after a dead dog, after a flea.
+
+24:15 The LORD therefore be judge, and judge between me and thee, and
+see, and plead my cause, and deliver me out of thine hand.
+
+24:16 And it came to pass, when David had made an end of speaking
+these words unto Saul, that Saul said, Is this thy voice, my son
+David? And Saul lifted up his voice, and wept.
+
+24:17 And he said to David, Thou art more righteous than I: for thou
+hast rewarded me good, whereas I have rewarded thee evil.
+
+24:18 And thou hast shewed this day how that thou hast dealt well with
+me: forasmuch as when the LORD had delivered me into thine hand, thou
+killedst me not.
+
+24:19 For if a man find his enemy, will he let him go well away?
+wherefore the LORD reward thee good for that thou hast done unto me
+this day.
+
+24:20 And now, behold, I know well that thou shalt surely be king, and
+that the kingdom of Israel shall be established in thine hand.
+
+24:21 Swear now therefore unto me by the LORD, that thou wilt not cut
+off my seed after me, and that thou wilt not destroy my name out of my
+father's house.
+
+24:22 And David sware unto Saul. And Saul went home; but David and his
+men gat them up unto the hold.
+
+25:1 And Samuel died; and all the Israelites were gathered together,
+and lamented him, and buried him in his house at Ramah. And David
+arose, and went down to the wilderness of Paran.
+
+25:2 And there was a man in Maon, whose possessions were in Carmel;
+and the man was very great, and he had three thousand sheep, and a
+thousand goats: and he was shearing his sheep in Carmel.
+
+25:3 Now the name of the man was Nabal; and the name of his wife
+Abigail: and she was a woman of good understanding, and of a beautiful
+countenance: but the man was churlish and evil in his doings; and he
+was of the house of Caleb.
+
+25:4 And David heard in the wilderness that Nabal did shear his sheep.
+
+25:5 And David sent out ten young men, and David said unto the young
+men, Get you up to Carmel, and go to Nabal, and greet him in my name:
+25:6 And thus shall ye say to him that liveth in prosperity, Peace be
+both to thee, and peace be to thine house, and peace be unto all that
+thou hast.
+
+25:7 And now I have heard that thou hast shearers: now thy shepherds
+which were with us, we hurt them not, neither was there ought missing
+unto them, all the while they were in Carmel.
+
+25:8 Ask thy young men, and they will shew thee. Wherefore let the
+young men find favour in thine eyes: for we come in a good day: give,
+I pray thee, whatsoever cometh to thine hand unto thy servants, and to
+thy son David.
+
+25:9 And when David's young men came, they spake to Nabal according to
+all those words in the name of David, and ceased.
+
+25:10 And Nabal answered David's servants, and said, Who is David? and
+who is the son of Jesse? there be many servants now a days that break
+away every man from his master.
+
+25:11 Shall I then take my bread, and my water, and my flesh that I
+have killed for my shearers, and give it unto men, whom I know not
+whence they be? 25:12 So David's young men turned their way, and went
+again, and came and told him all those sayings.
+
+25:13 And David said unto his men, Gird ye on every man his sword. And
+they girded on every man his sword; and David also girded on his
+sword: and there went up after David about four hundred men; and two
+hundred abode by the stuff.
+
+25:14 But one of the young men told Abigail, Nabal's wife, saying,
+Behold, David sent messengers out of the wilderness to salute our
+master; and he railed on them.
+
+25:15 But the men were very good unto us, and we were not hurt,
+neither missed we any thing, as long as we were conversant with them,
+when we were in the fields: 25:16 They were a wall unto us both by
+night and day, all the while we were with them keeping the sheep.
+
+25:17 Now therefore know and consider what thou wilt do; for evil is
+determined against our master, and against all his household: for he
+is such a son of Belial, that a man cannot speak to him.
+
+25:18 Then Abigail made haste, and took two hundred loaves, and two
+bottles of wine, and five sheep ready dressed, and five measures of
+parched corn, and an hundred clusters of raisins, and two hundred
+cakes of figs, and laid them on asses.
+
+25:19 And she said unto her servants, Go on before me; behold, I come
+after you. But she told not her husband Nabal.
+
+25:20 And it was so, as she rode on the ass, that she came down by the
+covert on the hill, and, behold, David and his men came down against
+her; and she met them.
+
+25:21 Now David had said, Surely in vain have I kept all that this
+fellow hath in the wilderness, so that nothing was missed of all that
+pertained unto him: and he hath requited me evil for good.
+
+25:22 So and more also do God unto the enemies of David, if I leave of
+all that pertain to him by the morning light any that pisseth against
+the wall.
+
+25:23 And when Abigail saw David, she hasted, and lighted off the ass,
+and fell before David on her face, and bowed herself to the ground,
+25:24 And fell at his feet, and said, Upon me, my lord, upon me let
+this iniquity be: and let thine handmaid, I pray thee, speak in thine
+audience, and hear the words of thine handmaid.
+
+25:25 Let not my lord, I pray thee, regard this man of Belial, even
+Nabal: for as his name is, so is he; Nabal is his name, and folly is
+with him: but I thine handmaid saw not the young men of my lord, whom
+thou didst send.
+
+25:26 Now therefore, my lord, as the LORD liveth, and as thy soul
+liveth, seeing the LORD hath withholden thee from coming to shed
+blood, and from avenging thyself with thine own hand, now let thine
+enemies, and they that seek evil to my lord, be as Nabal.
+
+25:27 And now this blessing which thine handmaid hath brought unto my
+lord, let it even be given unto the young men that follow my lord.
+
+25:28 I pray thee, forgive the trespass of thine handmaid: for the
+LORD will certainly make my lord a sure house; because my lord
+fighteth the battles of the LORD, and evil hath not been found in thee
+all thy days.
+
+25:29 Yet a man is risen to pursue thee, and to seek thy soul: but the
+soul of my lord shall be bound in the bundle of life with the LORD thy
+God; and the souls of thine enemies, them shall he sling out, as out
+of the middle of a sling.
+
+25:30 And it shall come to pass, when the LORD shall have done to my
+lord according to all the good that he hath spoken concerning thee,
+and shall have appointed thee ruler over Israel; 25:31 That this shall
+be no grief unto thee, nor offence of heart unto my lord, either that
+thou hast shed blood causeless, or that my lord hath avenged himself:
+but when the LORD shall have dealt well with my lord, then remember
+thine handmaid.
+
+25:32 And David said to Abigail, Blessed be the LORD God of Israel,
+which sent thee this day to meet me: 25:33 And blessed be thy advice,
+and blessed be thou, which hast kept me this day from coming to shed
+blood, and from avenging myself with mine own hand.
+
+25:34 For in very deed, as the LORD God of Israel liveth, which hath
+kept me back from hurting thee, except thou hadst hasted and come to
+meet me, surely there had not been left unto Nabal by the morning
+light any that pisseth against the wall.
+
+25:35 So David received of her hand that which she had brought him,
+and said unto her, Go up in peace to thine house; see, I have
+hearkened to thy voice, and have accepted thy person.
+
+25:36 And Abigail came to Nabal; and, behold, he held a feast in his
+house, like the feast of a king; and Nabal's heart was merry within
+him, for he was very drunken: wherefore she told him nothing, less or
+more, until the morning light.
+
+25:37 But it came to pass in the morning, when the wine was gone out
+of Nabal, and his wife had told him these things, that his heart died
+within him, and he became as a stone.
+
+25:38 And it came to pass about ten days after, that the LORD smote
+Nabal, that he died.
+
+25:39 And when David heard that Nabal was dead, he said, Blessed be
+the LORD, that hath pleaded the cause of my reproach from the hand of
+Nabal, and hath kept his servant from evil: for the LORD hath returned
+the wickedness of Nabal upon his own head. And David sent and communed
+with Abigail, to take her to him to wife.
+
+25:40 And when the servants of David were come to Abigail to Carmel,
+they spake unto her, saying, David sent us unto thee, to take thee to
+him to wife.
+
+25:41 And she arose, and bowed herself on her face to the earth, and
+said, Behold, let thine handmaid be a servant to wash the feet of the
+servants of my lord.
+
+25:42 And Abigail hasted, and arose and rode upon an ass, with five
+damsels of hers that went after her; and she went after the messengers
+of David, and became his wife.
+
+25:43 David also took Ahinoam of Jezreel; and they were also both of
+them his wives.
+
+25:44 But Saul had given Michal his daughter, David's wife, to Phalti
+the son of Laish, which was of Gallim.
+
+26:1 And the Ziphites came unto Saul to Gibeah, saying, Doth not David
+hide himself in the hill of Hachilah, which is before Jeshimon? 26:2
+Then Saul arose, and went down to the wilderness of Ziph, having three
+thousand chosen men of Israel with him, to seek David in the
+wilderness of Ziph.
+
+26:3 And Saul pitched in the hill of Hachilah, which is before
+Jeshimon, by the way. But David abode in the wilderness, and he saw
+that Saul came after him into the wilderness.
+
+26:4 David therefore sent out spies, and understood that Saul was come
+in very deed.
+
+26:5 And David arose, and came to the place where Saul had pitched:
+and David beheld the place where Saul lay, and Abner the son of Ner,
+the captain of his host: and Saul lay in the trench, and the people
+pitched round about him.
+
+26:6 Then answered David and said to Ahimelech the Hittite, and to
+Abishai the son of Zeruiah, brother to Joab, saying, Who will go down
+with me to Saul to the camp? And Abishai said, I will go down with
+thee.
+
+26:7 So David and Abishai came to the people by night: and, behold,
+Saul lay sleeping within the trench, and his spear stuck in the ground
+at his bolster: but Abner and the people lay round about him.
+
+26:8 Then said Abishai to David, God hath delivered thine enemy into
+thine hand this day: now therefore let me smite him, I pray thee, with
+the spear even to the earth at once, and I will not smite him the
+second time.
+
+26:9 And David said to Abishai, Destroy him not: for who can stretch
+forth his hand against the LORD's anointed, and be guiltless? 26:10
+David said furthermore, As the LORD liveth, the LORD shall smite him;
+or his day shall come to die; or he shall descend into battle, and
+perish.
+
+26:11 The LORD forbid that I should stretch forth mine hand against
+the LORD's anointed: but, I pray thee, take thou now the spear that is
+at his bolster, and the cruse of water, and let us go.
+
+26:12 So David took the spear and the cruse of water from Saul's
+bolster; and they gat them away, and no man saw it, nor knew it,
+neither awaked: for they were all asleep; because a deep sleep from
+the LORD was fallen upon them.
+
+26:13 Then David went over to the other side, and stood on the top of
+an hill afar off; a great space being between them: 26:14 And David
+cried to the people, and to Abner the son of Ner, saying, Answerest
+thou not, Abner? Then Abner answered and said, Who art thou that
+criest to the king? 26:15 And David said to Abner, Art not thou a
+valiant man? and who is like to thee in Israel? wherefore then hast
+thou not kept thy lord the king? for there came one of the people in
+to destroy the king thy lord.
+
+26:16 This thing is not good that thou hast done. As the LORD liveth,
+ye are worthy to die, because ye have not kept your master, the LORD's
+anointed.
+
+And now see where the king's spear is, and the cruse of water that was
+at his bolster.
+
+26:17 And Saul knew David's voice, and said, Is this thy voice, my son
+David? And David said, It is my voice, my lord, O king.
+
+26:18 And he said, Wherefore doth my lord thus pursue after his
+servant? for what have I done? or what evil is in mine hand? 26:19
+Now therefore, I pray thee, let my lord the king hear the words of his
+servant. If the LORD have stirred thee up against me, let him accept
+an offering: but if they be the children of men, cursed be they before
+the LORD; for they have driven me out this day from abiding in the
+inheritance of the LORD, saying, Go, serve other gods.
+
+26:20 Now therefore, let not my blood fall to the earth before the
+face of the LORD: for the king of Israel is come out to seek a flea,
+as when one doth hunt a partridge in the mountains.
+
+26:21 Then said Saul, I have sinned: return, my son David: for I will
+no more do thee harm, because my soul was precious in thine eyes this
+day: behold, I have played the fool, and have erred exceedingly.
+
+26:22 And David answered and said, Behold the king's spear! and let
+one of the young men come over and fetch it.
+
+26:23 The LORD render to every man his righteousness and his
+faithfulness; for the LORD delivered thee into my hand to day, but I
+would not stretch forth mine hand against the LORD's anointed.
+
+26:24 And, behold, as thy life was much set by this day in mine eyes,
+so let my life be much set by in the eyes of the LORD, and let him
+deliver me out of all tribulation.
+
+26:25 Then Saul said to David, Blessed be thou, my son David: thou
+shalt both do great things, and also shalt still prevail. So David
+went on his way, and Saul returned to his place.
+
+27:1 And David said in his heart, I shall now perish one day by the
+hand of Saul: there is nothing better for me than that I should
+speedily escape into the land of the Philistines; and Saul shall
+despair of me, to seek me any more in any coast of Israel: so shall I
+escape out of his hand.
+
+27:2 And David arose, and he passed over with the six hundred men that
+were with him unto Achish, the son of Maoch, king of Gath.
+
+27:3 And David dwelt with Achish at Gath, he and his men, every man
+with his household, even David with his two wives, Ahinoam the
+Jezreelitess, and Abigail the Carmelitess, Nabal's wife.
+
+27:4 And it was told Saul that David was fled to Gath: and he sought
+no more again for him.
+
+27:5 And David said unto Achish, If I have now found grace in thine
+eyes, let them give me a place in some town in the country, that I may
+dwell there: for why should thy servant dwell in the royal city with
+thee? 27:6 Then Achish gave him Ziklag that day: wherefore Ziklag
+pertaineth unto the kings of Judah unto this day.
+
+27:7 And the time that David dwelt in the country of the Philistines
+was a full year and four months.
+
+27:8 And David and his men went up, and invaded the Geshurites, and
+the Gezrites, and the Amalekites: for those nations were of old the
+inhabitants of the land, as thou goest to Shur, even unto the land of
+Egypt.
+
+27:9 And David smote the land, and left neither man nor woman alive,
+and took away the sheep, and the oxen, and the asses, and the camels,
+and the apparel, and returned, and came to Achish.
+
+27:10 And Achish said, Whither have ye made a road to day? And David
+said, Against the south of Judah, and against the south of the
+Jerahmeelites, and against the south of the Kenites.
+
+27:11 And David saved neither man nor woman alive, to bring tidings to
+Gath, saying, Lest they should tell on us, saying, So did David, and
+so will be his manner all the while he dwelleth in the country of the
+Philistines.
+
+27:12 And Achish believed David, saying, He hath made his people
+Israel utterly to abhor him; therefore he shall be my servant for
+ever.
+
+28:1 And it came to pass in those days, that the Philistines gathered
+their armies together for warfare, to fight with Israel. And Achish
+said unto David, Know thou assuredly, that thou shalt go out with me
+to battle, thou and thy men.
+
+28:2 And David said to Achish, Surely thou shalt know what thy servant
+can do. And Achish said to David, Therefore will I make thee keeper of
+mine head for ever.
+
+28:3 Now Samuel was dead, and all Israel had lamented him, and buried
+him in Ramah, even in his own city. And Saul had put away those that
+had familiar spirits, and the wizards, out of the land.
+
+28:4 And the Philistines gathered themselves together, and came and
+pitched in Shunem: and Saul gathered all Israel together, and they
+pitched in Gilboa.
+
+28:5 And when Saul saw the host of the Philistines, he was afraid, and
+his heart greatly trembled.
+
+28:6 And when Saul enquired of the LORD, the LORD answered him not,
+neither by dreams, nor by Urim, nor by prophets.
+
+28:7 Then said Saul unto his servants, Seek me a woman that hath a
+familiar spirit, that I may go to her, and enquire of her. And his
+servants said to him, Behold, there is a woman that hath a familiar
+spirit at Endor.
+
+28:8 And Saul disguised himself, and put on other raiment, and he
+went, and two men with him, and they came to the woman by night: and
+he said, I pray thee, divine unto me by the familiar spirit, and bring
+me him up, whom I shall name unto thee.
+
+28:9 And the woman said unto him, Behold, thou knowest what Saul hath
+done, how he hath cut off those that have familiar spirits, and the
+wizards, out of the land: wherefore then layest thou a snare for my
+life, to cause me to die? 28:10 And Saul sware to her by the LORD,
+saying, As the LORD liveth, there shall no punishment happen to thee
+for this thing.
+
+28:11 Then said the woman, Whom shall I bring up unto thee? And he
+said, Bring me up Samuel.
+
+28:12 And when the woman saw Samuel, she cried with a loud voice: and
+the woman spake to Saul, saying, Why hast thou deceived me? for thou
+art Saul.
+
+28:13 And the king said unto her, Be not afraid: for what sawest thou?
+And the woman said unto Saul, I saw gods ascending out of the earth.
+
+28:14 And he said unto her, What form is he of? And she said, An old
+man cometh up; and he is covered with a mantle. And Saul perceived
+that it was Samuel, and he stooped with his face to the ground, and
+bowed himself.
+
+28:15 And Samuel said to Saul, Why hast thou disquieted me, to bring
+me up? And Saul answered, I am sore distressed; for the Philistines
+make war against me, and God is departed from me, and answereth me no
+more, neither by prophets, nor by dreams: therefore I have called
+thee, that thou mayest make known unto me what I shall do.
+
+28:16 Then said Samuel, Wherefore then dost thou ask of me, seeing the
+LORD is departed from thee, and is become thine enemy? 28:17 And the
+LORD hath done to him, as he spake by me: for the LORD hath rent the
+kingdom out of thine hand, and given it to thy neighbour, even to
+David: 28:18 Because thou obeyedst not the voice of the LORD, nor
+executedst his fierce wrath upon Amalek, therefore hath the LORD done
+this thing unto thee this day.
+
+28:19 Moreover the LORD will also deliver Israel with thee into the
+hand of the Philistines: and to morrow shalt thou and thy sons be with
+me: the LORD also shall deliver the host of Israel into the hand of
+the Philistines.
+
+28:20 Then Saul fell straightway all along on the earth, and was sore
+afraid, because of the words of Samuel: and there was no strength in
+him; for he had eaten no bread all the day, nor all the night.
+
+28:21 And the woman came unto Saul, and saw that he was sore troubled,
+and said unto him, Behold, thine handmaid hath obeyed thy voice, and I
+have put my life in my hand, and have hearkened unto thy words which
+thou spakest unto me.
+
+28:22 Now therefore, I pray thee, hearken thou also unto the voice of
+thine handmaid, and let me set a morsel of bread before thee; and eat,
+that thou mayest have strength, when thou goest on thy way.
+
+28:23 But he refused, and said, I will not eat. But his servants,
+together with the woman, compelled him; and he hearkened unto their
+voice. So he arose from the earth, and sat upon the bed.
+
+28:24 And the woman had a fat calf in the house; and she hasted, and
+killed it, and took flour, and kneaded it, and did bake unleavened
+bread thereof: 28:25 And she brought it before Saul, and before his
+servants; and they did eat. Then they rose up, and went away that
+night.
+
+29:1 Now the Philistines gathered together all their armies to Aphek:
+and the Israelites pitched by a fountain which is in Jezreel.
+
+29:2 And the lords of the Philistines passed on by hundreds, and by
+thousands: but David and his men passed on in the rereward with
+Achish.
+
+29:3 Then said the princes of the Philistines, What do these Hebrews
+here? And Achish said unto the princes of the Philistines, Is not
+this David, the servant of Saul the king of Israel, which hath been
+with me these days, or these years, and I have found no fault in him
+since he fell unto me unto this day? 29:4 And the princes of the
+Philistines were wroth with him; and the princes of the Philistines
+said unto him, Make this fellow return, that he may go again to his
+place which thou hast appointed him, and let him not go down with us
+to battle, lest in the battle he be an adversary to us: for wherewith
+should he reconcile himself unto his master? should it not be with the
+heads of these men? 29:5 Is not this David, of whom they sang one to
+another in dances, saying, Saul slew his thousands, and David his ten
+thousands? 29:6 Then Achish called David, and said unto him, Surely,
+as the LORD liveth, thou hast been upright, and thy going out and thy
+coming in with me in the host is good in my sight: for I have not
+found evil in thee since the day of thy coming unto me unto this day:
+nevertheless the lords favour thee not.
+
+29:7 Wherefore now return, and go in peace, that thou displease not
+the lords of the Philistines.
+
+29:8 And David said unto Achish, But what have I done? and what hast
+thou found in thy servant so long as I have been with thee unto this
+day, that I may not go fight against the enemies of my lord the king?
+29:9 And Achish answered and said to David, I know that thou art good
+in my sight, as an angel of God: notwithstanding the princes of the
+Philistines have said, He shall not go up with us to the battle.
+
+29:10 Wherefore now rise up early in the morning with thy master's
+servants that are come with thee: and as soon as ye be up early in the
+morning, and have light, depart.
+
+29:11 So David and his men rose up early to depart in the morning, to
+return into the land of the Philistines. And the Philistines went up
+to Jezreel.
+
+30:1 And it came to pass, when David and his men were come to Ziklag
+on the third day, that the Amalekites had invaded the south, and
+Ziklag, and smitten Ziklag, and burned it with fire; 30:2 And had
+taken the women captives, that were therein: they slew not any, either
+great or small, but carried them away, and went on their way.
+
+30:3 So David and his men came to the city, and, behold, it was burned
+with fire; and their wives, and their sons, and their daughters, were
+taken captives.
+
+30:4 Then David and the people that were with him lifted up their
+voice and wept, until they had no more power to weep.
+
+30:5 And David's two wives were taken captives, Ahinoam the
+Jezreelitess, and Abigail the wife of Nabal the Carmelite.
+
+30:6 And David was greatly distressed; for the people spake of stoning
+him, because the soul of all the people was grieved, every man for his
+sons and for his daughters: but David encouraged himself in the LORD
+his God.
+
+30:7 And David said to Abiathar the priest, Ahimelech's son, I pray
+thee, bring me hither the ephod. And Abiathar brought thither the
+ephod to David.
+
+30:8 And David enquired at the LORD, saying, Shall I pursue after this
+troop? shall I overtake them? And he answered him, Pursue: for thou
+shalt surely overtake them, and without fail recover all.
+
+30:9 So David went, he and the six hundred men that were with him, and
+came to the brook Besor, where those that were left behind stayed.
+
+30:10 But David pursued, he and four hundred men: for two hundred
+abode behind, which were so faint that they could not go over the
+brook Besor.
+
+30:11 And they found an Egyptian in the field, and brought him to
+David, and gave him bread, and he did eat; and they made him drink
+water; 30:12 And they gave him a piece of a cake of figs, and two
+clusters of raisins: and when he had eaten, his spirit came again to
+him: for he had eaten no bread, nor drunk any water, three days and
+three nights.
+
+30:13 And David said unto him, To whom belongest thou? and whence art
+thou? And he said, I am a young man of Egypt, servant to an Amalekite;
+and my master left me, because three days agone I fell sick.
+
+30:14 We made an invasion upon the south of the Cherethites, and upon
+the coast which belongeth to Judah, and upon the south of Caleb; and
+we burned Ziklag with fire.
+
+30:15 And David said to him, Canst thou bring me down to this company?
+And he said, Swear unto me by God, that thou wilt neither kill me, nor
+deliver me into the hands of my master, and I will bring thee down to
+this company.
+
+30:16 And when he had brought him down, behold, they were spread
+abroad upon all the earth, eating and drinking, and dancing, because
+of all the great spoil that they had taken out of the land of the
+Philistines, and out of the land of Judah.
+
+30:17 And David smote them from the twilight even unto the evening of
+the next day: and there escaped not a man of them, save four hundred
+young men, which rode upon camels, and fled.
+
+30:18 And David recovered all that the Amalekites had carried away:
+and David rescued his two wives.
+
+30:19 And there was nothing lacking to them, neither small nor great,
+neither sons nor daughters, neither spoil, nor any thing that they had
+taken to them: David recovered all.
+
+30:20 And David took all the flocks and the herds, which they drave
+before those other cattle, and said, This is David's spoil.
+
+30:21 And David came to the two hundred men, which were so faint that
+they could not follow David, whom they had made also to abide at the
+brook Besor: and they went forth to meet David, and to meet the people
+that were with him: and when David came near to the people, he saluted
+them.
+
+30:22 Then answered all the wicked men and men of Belial, of those
+that went with David, and said, Because they went not with us, we will
+not give them ought of the spoil that we have recovered, save to every
+man his wife and his children, that they may lead them away, and
+depart.
+
+30:23 Then said David, Ye shall not do so, my brethren, with that
+which the LORD hath given us, who hath preserved us, and delivered the
+company that came against us into our hand.
+
+30:24 For who will hearken unto you in this matter? but as his part is
+that goeth down to the battle, so shall his part be that tarrieth by
+the stuff: they shall part alike.
+
+30:25 And it was so from that day forward, that he made it a statute
+and an ordinance for Israel unto this day.
+
+30:26 And when David came to Ziklag, he sent of the spoil unto the
+elders of Judah, even to his friends, saying, Behold a present for you
+of the spoil of the enemies of the LORD; 30:27 To them which were in
+Bethel, and to them which were in south Ramoth, and to them which were
+in Jattir, 30:28 And to them which were in Aroer, and to them which
+were in Siphmoth, and to them which were in Eshtemoa, 30:29 And to
+them which were in Rachal, and to them which were in the cities of the
+Jerahmeelites, and to them which were in the cities of the Kenites,
+30:30 And to them which were in Hormah, and to them which were in
+Chorashan, and to them which were in Athach, 30:31 And to them which
+were in Hebron, and to all the places where David himself and his men
+were wont to haunt.
+
+31:1 Now the Philistines fought against Israel: and the men of Israel
+fled from before the Philistines, and fell down slain in mount Gilboa.
+
+31:2 And the Philistines followed hard upon Saul and upon his sons;
+and the Philistines slew Jonathan, and Abinadab, and Melchishua,
+Saul's sons.
+
+31:3 And the battle went sore against Saul, and the archers hit him;
+and he was sore wounded of the archers.
+
+31:4 Then said Saul unto his armourbearer, Draw thy sword, and thrust
+me through therewith; lest these uncircumcised come and thrust me
+through, and abuse me. But his armourbearer would not; for he was sore
+afraid. Therefore Saul took a sword, and fell upon it.
+
+31:5 And when his armourbearer saw that Saul was dead, he fell
+likewise upon his sword, and died with him.
+
+31:6 So Saul died, and his three sons, and his armourbearer, and all
+his men, that same day together.
+
+31:7 And when the men of Israel that were on the other side of the
+valley, and they that were on the other side Jordan, saw that the men
+of Israel fled, and that Saul and his sons were dead, they forsook the
+cities, and fled; and the Philistines came and dwelt in them.
+
+31:8 And it came to pass on the morrow, when the Philistines came to
+strip the slain, that they found Saul and his three sons fallen in
+mount Gilboa.
+
+31:9 And they cut off his head, and stripped off his armour, and sent
+into the land of the Philistines round about, to publish it in the
+house of their idols, and among the people.
+
+31:10 And they put his armour in the house of Ashtaroth: and they
+fastened his body to the wall of Bethshan.
+
+31:11 And when the inhabitants of Jabeshgilead heard of that which the
+Philistines had done to Saul; 31:12 All the valiant men arose, and
+went all night, and took the body of Saul and the bodies of his sons
+from the wall of Bethshan, and came to Jabesh, and burnt them there.
+
+31:13 And they took their bones, and buried them under a tree at
+Jabesh, and fasted seven days.
+
+
+
+
+The Second Book of Samuel
+
+Otherwise Called:
+
+The Second Book of the Kings
+
+
+1:1 Now it came to pass after the death of Saul, when David was
+returned from the slaughter of the Amalekites, and David had abode two
+days in Ziklag; 1:2 It came even to pass on the third day, that,
+behold, a man came out of the camp from Saul with his clothes rent,
+and earth upon his head: and so it was, when he came to David, that he
+fell to the earth, and did obeisance.
+
+1:3 And David said unto him, From whence comest thou? And he said unto
+him, Out of the camp of Israel am I escaped.
+
+1:4 And David said unto him, How went the matter? I pray thee, tell
+me.
+
+And he answered, That the people are fled from the battle, and many of
+the people also are fallen and dead; and Saul and Jonathan his son are
+dead also.
+
+1:5 And David said unto the young man that told him, How knowest thou
+that Saul and Jonathan his son be dead? 1:6 And the young man that
+told him said, As I happened by chance upon mount Gilboa, behold, Saul
+leaned upon his spear; and, lo, the chariots and horsemen followed
+hard after him.
+
+1:7 And when he looked behind him, he saw me, and called unto me. And
+I answered, Here am I.
+
+1:8 And he said unto me, Who art thou? And I answered him, I am an
+Amalekite.
+
+1:9 He said unto me again, Stand, I pray thee, upon me, and slay me:
+for anguish is come upon me, because my life is yet whole in me.
+
+1:10 So I stood upon him, and slew him, because I was sure that he
+could not live after that he was fallen: and I took the crown that was
+upon his head, and the bracelet that was on his arm, and have brought
+them hither unto my lord.
+
+1:11 Then David took hold on his clothes, and rent them; and likewise
+all the men that were with him: 1:12 And they mourned, and wept, and
+fasted until even, for Saul, and for Jonathan his son, and for the
+people of the LORD, and for the house of Israel; because they were
+fallen by the sword.
+
+1:13 And David said unto the young man that told him, Whence art thou?
+And he answered, I am the son of a stranger, an Amalekite.
+
+1:14 And David said unto him, How wast thou not afraid to stretch
+forth thine hand to destroy the LORD's anointed? 1:15 And David
+called one of the young men, and said, Go near, and fall upon him. And
+he smote him that he died.
+
+1:16 And David said unto him, Thy blood be upon thy head; for thy
+mouth hath testified against thee, saying, I have slain the LORD's
+anointed.
+
+1:17 And David lamented with this lamentation over Saul and over
+Jonathan his son: 1:18 (Also he bade them teach the children of Judah
+the use of the bow: behold, it is written in the book of Jasher.)
+1:19 The beauty of Israel is slain upon thy high places: how are the
+mighty fallen! 1:20 Tell it not in Gath, publish it not in the
+streets of Askelon; lest the daughters of the Philistines rejoice,
+lest the daughters of the uncircumcised triumph.
+
+1:21 Ye mountains of Gilboa, let there be no dew, neither let there be
+rain, upon you, nor fields of offerings: for there the shield of the
+mighty is vilely cast away, the shield of Saul, as though he had not
+been anointed with oil.
+
+1:22 From the blood of the slain, from the fat of the mighty, the bow
+of Jonathan turned not back, and the sword of Saul returned not empty.
+
+1:23 Saul and Jonathan were lovely and pleasant in their lives, and in
+their death they were not divided: they were swifter than eagles, they
+were stronger than lions.
+
+1:24 Ye daughters of Israel, weep over Saul, who clothed you in
+scarlet, with other delights, who put on ornaments of gold upon your
+apparel.
+
+1:25 How are the mighty fallen in the midst of the battle! O Jonathan,
+thou wast slain in thine high places.
+
+1:26 I am distressed for thee, my brother Jonathan: very pleasant hast
+thou been unto me: thy love to me was wonderful, passing the love of
+women.
+
+1:27 How are the mighty fallen, and the weapons of war perished! 2:1
+And it came to pass after this, that David enquired of the LORD,
+saying, Shall I go up into any of the cities of Judah? And the LORD
+said unto him, Go up. And David said, Whither shall I go up? And he
+said, Unto Hebron.
+
+2:2 So David went up thither, and his two wives also, Ahinoam the
+Jezreelitess, and Abigail Nabal's wife the Carmelite.
+
+2:3 And his men that were with him did David bring up, every man with
+his household: and they dwelt in the cities of Hebron.
+
+2:4 And the men of Judah came, and there they anointed David king over
+the house of Judah. And they told David, saying, That the men of
+Jabeshgilead were they that buried Saul.
+
+2:5 And David sent messengers unto the men of Jabeshgilead, and said
+unto them, Blessed be ye of the LORD, that ye have shewed this
+kindness unto your lord, even unto Saul, and have buried him.
+
+2:6 And now the LORD shew kindness and truth unto you: and I also will
+requite you this kindness, because ye have done this thing.
+
+2:7 Therefore now let your hands be strengthened, and be ye valiant:
+for your master Saul is dead, and also the house of Judah have
+anointed me king over them.
+
+2:8 But Abner the son of Ner, captain of Saul's host, took Ishbosheth
+the son of Saul, and brought him over to Mahanaim; 2:9 And made him
+king over Gilead, and over the Ashurites, and over Jezreel, and over
+Ephraim, and over Benjamin, and over all Israel.
+
+2:10 Ishbosheth Saul's son was forty years old when he began to reign
+over Israel, and reigned two years. But the house of Judah followed
+David.
+
+2:11 And the time that David was king in Hebron over the house of
+Judah was seven years and six months.
+
+2:12 And Abner the son of Ner, and the servants of Ishbosheth the son
+of Saul, went out from Mahanaim to Gibeon.
+
+2:13 And Joab the son of Zeruiah, and the servants of David, went out,
+and met together by the pool of Gibeon: and they sat down, the one on
+the one side of the pool, and the other on the other side of the pool.
+
+2:14 And Abner said to Joab, Let the young men now arise, and play
+before us. And Joab said, Let them arise.
+
+2:15 Then there arose and went over by number twelve of Benjamin,
+which pertained to Ishbosheth the son of Saul, and twelve of the
+servants of David.
+
+2:16 And they caught every one his fellow by the head, and thrust his
+sword in his fellow's side; so they fell down together: wherefore that
+place was called Helkathhazzurim, which is in Gibeon.
+
+2:17 And there was a very sore battle that day; and Abner was beaten,
+and the men of Israel, before the servants of David.
+
+2:18 And there were three sons of Zeruiah there, Joab, and Abishai,
+and Asahel: and Asahel was as light of foot as a wild roe.
+
+2:19 And Asahel pursued after Abner; and in going he turned not to the
+right hand nor to the left from following Abner.
+
+2:20 Then Abner looked behind him, and said, Art thou Asahel? And he
+answered, I am.
+
+2:21 And Abner said to him, Turn thee aside to thy right hand or to
+thy left, and lay thee hold on one of the young men, and take thee his
+armour.
+
+But Asahel would not turn aside from following of him.
+
+2:22 And Abner said again to Asahel, Turn thee aside from following
+me: wherefore should I smite thee to the ground? how then should I
+hold up my face to Joab thy brother? 2:23 Howbeit he refused to turn
+aside: wherefore Abner with the hinder end of the spear smote him
+under the fifth rib, that the spear came out behind him; and he fell
+down there, and died in the same place: and it came to pass, that as
+many as came to the place where Asahel fell down and died stood still.
+
+2:24 Joab also and Abishai pursued after Abner: and the sun went down
+when they were come to the hill of Ammah, that lieth before Giah by
+the way of the wilderness of Gibeon.
+
+2:25 And the children of Benjamin gathered themselves together after
+Abner, and became one troop, and stood on the top of an hill.
+
+2:26 Then Abner called to Joab, and said, Shall the sword devour for
+ever? knowest thou not that it will be bitterness in the latter end?
+how long shall it be then, ere thou bid the people return from
+following their brethren? 2:27 And Joab said, As God liveth, unless
+thou hadst spoken, surely then in the morning the people had gone up
+every one from following his brother.
+
+2:28 So Joab blew a trumpet, and all the people stood still, and
+pursued after Israel no more, neither fought they any more.
+
+2:29 And Abner and his men walked all that night through the plain,
+and passed over Jordan, and went through all Bithron, and they came to
+Mahanaim.
+
+2:30 And Joab returned from following Abner: and when he had gathered
+all the people together, there lacked of David's servants nineteen men
+and Asahel.
+
+2:31 But the servants of David had smitten of Benjamin, and of Abner's
+men, so that three hundred and threescore men died.
+
+2:32 And they took up Asahel, and buried him in the sepulchre of his
+father, which was in Bethlehem. And Joab and his men went all night,
+and they came to Hebron at break of day.
+
+3:1 Now there was long war between the house of Saul and the house of
+David: but David waxed stronger and stronger, and the house of Saul
+waxed weaker and weaker.
+
+3:2 And unto David were sons born in Hebron: and his firstborn was
+Amnon, of Ahinoam the Jezreelitess; 3:3 And his second, Chileab, of
+Abigail the wife of Nabal the Carmelite; and the third, Absalom the
+son of Maacah the daughter of Talmai king of Geshur; 3:4 And the
+fourth, Adonijah the son of Haggith; and the fifth, Shephatiah the son
+of Abital; 3:5 And the sixth, Ithream, by Eglah David's wife. These
+were born to David in Hebron.
+
+3:6 And it came to pass, while there was war between the house of Saul
+and the house of David, that Abner made himself strong for the house
+of Saul.
+
+3:7 And Saul had a concubine, whose name was Rizpah, the daughter of
+Aiah: and Ishbosheth said to Abner, Wherefore hast thou gone in unto
+my father's concubine? 3:8 Then was Abner very wroth for the words of
+Ishbosheth, and said, Am I a dog's head, which against Judah do shew
+kindness this day unto the house of Saul thy father, to his brethren,
+and to his friends, and have not delivered thee into the hand of
+David, that thou chargest me to day with a fault concerning this
+woman? 3:9 So do God to Abner, and more also, except, as the LORD
+hath sworn to David, even so I do to him; 3:10 To translate the
+kingdom from the house of Saul, and to set up the throne of David over
+Israel and over Judah, from Dan even to Beersheba.
+
+3:11 And he could not answer Abner a word again, because he feared
+him.
+
+3:12 And Abner sent messengers to David on his behalf, saying, Whose
+is the land? saying also, Make thy league with me, and, behold, my
+hand shall be with thee, to bring about all Israel unto thee.
+
+3:13 And he said, Well; I will make a league with thee: but one thing
+I require of thee, that is, Thou shalt not see my face, except thou
+first bring Michal Saul's daughter, when thou comest to see my face.
+
+3:14 And David sent messengers to Ishbosheth Saul's son, saying,
+Deliver me my wife Michal, which I espoused to me for an hundred
+foreskins of the Philistines.
+
+3:15 And Ishbosheth sent, and took her from her husband, even from
+Phaltiel the son of Laish.
+
+3:16 And her husband went with her along weeping behind her to
+Bahurim.
+
+Then said Abner unto him, Go, return. And he returned.
+
+3:17 And Abner had communication with the elders of Israel, saying, Ye
+sought for David in times past to be king over you: 3:18 Now then do
+it: for the LORD hath spoken of David, saying, By the hand of my
+servant David I will save my people Israel out of the hand of the
+Philistines, and out of the hand of all their enemies.
+
+3:19 And Abner also spake in the ears of Benjamin: and Abner went also
+to speak in the ears of David in Hebron all that seemed good to
+Israel, and that seemed good to the whole house of Benjamin.
+
+3:20 So Abner came to David to Hebron, and twenty men with him. And
+David made Abner and the men that were with him a feast.
+
+3:21 And Abner said unto David, I will arise and go, and will gather
+all Israel unto my lord the king, that they may make a league with
+thee, and that thou mayest reign over all that thine heart desireth.
+And David sent Abner away; and he went in peace.
+
+3:22 And, behold, the servants of David and Joab came from pursuing a
+troop, and brought in a great spoil with them: but Abner was not with
+David in Hebron; for he had sent him away, and he was gone in peace.
+
+3:23 When Joab and all the host that was with him were come, they told
+Joab, saying, Abner the son of Ner came to the king, and he hath sent
+him away, and he is gone in peace.
+
+3:24 Then Joab came to the king, and said, What hast thou done?
+behold, Abner came unto thee; why is it that thou hast sent him away,
+and he is quite gone? 3:25 Thou knowest Abner the son of Ner, that he
+came to deceive thee, and to know thy going out and thy coming in, and
+to know all that thou doest.
+
+3:26 And when Joab was come out from David, he sent messengers after
+Abner, which brought him again from the well of Sirah: but David knew
+it not.
+
+3:27 And when Abner was returned to Hebron, Joab took him aside in the
+gate to speak with him quietly, and smote him there under the fifth
+rib, that he died, for the blood of Asahel his brother.
+
+3:28 And afterward when David heard it, he said, I and my kingdom are
+guiltless before the LORD for ever from the blood of Abner the son of
+Ner: 3:29 Let it rest on the head of Joab, and on all his father's
+house; and let there not fail from the house of Joab one that hath an
+issue, or that is a leper, or that leaneth on a staff, or that falleth
+on the sword, or that lacketh bread.
+
+3:30 So Joab, and Abishai his brother slew Abner, because he had slain
+their brother Asahel at Gibeon in the battle.
+
+3:31 And David said to Joab, and to all the people that were with him,
+Rend your clothes, and gird you with sackcloth, and mourn before
+Abner. And king David himself followed the bier.
+
+3:32 And they buried Abner in Hebron: and the king lifted up his
+voice, and wept at the grave of Abner; and all the people wept.
+
+3:33 And the king lamented over Abner, and said, Died Abner as a fool
+dieth? 3:34 Thy hands were not bound, nor thy feet put into fetters:
+as a man falleth before wicked men, so fellest thou. And all the
+people wept again over him.
+
+3:35 And when all the people came to cause David to eat meat while it
+was yet day, David sware, saying, So do God to me, and more also, if I
+taste bread, or ought else, till the sun be down.
+
+3:36 And all the people took notice of it, and it pleased them: as
+whatsoever the king did pleased all the people.
+
+3:37 For all the people and all Israel understood that day that it was
+not of the king to slay Abner the son of Ner.
+
+3:38 And the king said unto his servants, Know ye not that there is a
+prince and a great man fallen this day in Israel? 3:39 And I am this
+day weak, though anointed king; and these men the sons of Zeruiah be
+too hard for me: the LORD shall reward the doer of evil according to
+his wickedness.
+
+4:1 And when Saul's son heard that Abner was dead in Hebron, his hands
+were feeble, and all the Israelites were troubled.
+
+4:2 And Saul's son had two men that were captains of bands: the name
+of the one was Baanah, and the name of the other Rechab, the sons of
+Rimmon a Beerothite, of the children of Benjamin: (for Beeroth also
+was reckoned to Benjamin.
+
+4:3 And the Beerothites fled to Gittaim, and were sojourners there
+until this day.) 4:4 And Jonathan, Saul's son, had a son that was
+lame of his feet. He was five years old when the tidings came of Saul
+and Jonathan out of Jezreel, and his nurse took him up, and fled: and
+it came to pass, as she made haste to flee, that he fell, and became
+lame. And his name was Mephibosheth.
+
+4:5 And the sons of Rimmon the Beerothite, Rechab and Baanah, went,
+and came about the heat of the day to the house of Ishbosheth, who lay
+on a bed at noon.
+
+4:6 And they came thither into the midst of the house, as though they
+would have fetched wheat; and they smote him under the fifth rib: and
+Rechab and Baanah his brother escaped.
+
+4:7 For when they came into the house, he lay on his bed in his
+bedchamber, and they smote him, and slew him, and beheaded him, and
+took his head, and gat them away through the plain all night.
+
+4:8 And they brought the head of Ishbosheth unto David to Hebron, and
+said to the king, Behold the head of Ishbosheth the son of Saul thine
+enemy, which sought thy life; and the LORD hath avenged my lord the
+king this day of Saul, and of his seed.
+
+4:9 And David answered Rechab and Baanah his brother, the sons of
+Rimmon the Beerothite, and said unto them, As the LORD liveth, who
+hath redeemed my soul out of all adversity, 4:10 When one told me,
+saying, Behold, Saul is dead, thinking to have brought good tidings, I
+took hold of him, and slew him in Ziklag, who thought that I would
+have given him a reward for his tidings: 4:11 How much more, when
+wicked men have slain a righteous person in his own house upon his
+bed? shall I not therefore now require his blood of your hand, and
+take you away from the earth? 4:12 And David commanded his young men,
+and they slew them, and cut off their hands and their feet, and hanged
+them up over the pool in Hebron. But they took the head of Ishbosheth,
+and buried it in the sepulchre of Abner in Hebron.
+
+5:1 Then came all the tribes of Israel to David unto Hebron, and
+spake, saying, Behold, we are thy bone and thy flesh.
+
+5:2 Also in time past, when Saul was king over us, thou wast he that
+leddest out and broughtest in Israel: and the LORD said to thee, Thou
+shalt feed my people Israel, and thou shalt be a captain over Israel.
+
+5:3 So all the elders of Israel came to the king to Hebron; and king
+David made a league with them in Hebron before the LORD: and they
+anointed David king over Israel.
+
+5:4 David was thirty years old when he began to reign, and he reigned
+forty years.
+
+5:5 In Hebron he reigned over Judah seven years and six months: and in
+Jerusalem he reigned thirty and three years over all Israel and Judah.
+
+5:6 And the king and his men went to Jerusalem unto the Jebusites, the
+inhabitants of the land: which spake unto David, saying, Except thou
+take away the blind and the lame, thou shalt not come in hither:
+thinking, David cannot come in hither.
+
+5:7 Nevertheless David took the strong hold of Zion: the same is the
+city of David.
+
+5:8 And David said on that day, Whosoever getteth up to the gutter,
+and smiteth the Jebusites, and the lame and the blind that are hated
+of David's soul, he shall be chief and captain. Wherefore they said,
+The blind and the lame shall not come into the house.
+
+5:9 So David dwelt in the fort, and called it the city of David. And
+David built round about from Millo and inward.
+
+5:10 And David went on, and grew great, and the LORD God of hosts was
+with him.
+
+5:11 And Hiram king of Tyre sent messengers to David, and cedar trees,
+and carpenters, and masons: and they built David an house.
+
+5:12 And David perceived that the LORD had established him king over
+Israel, and that he had exalted his kingdom for his people Israel's
+sake.
+
+5:13 And David took him more concubines and wives out of Jerusalem,
+after he was come from Hebron: and there were yet sons and daughters
+born to David.
+
+5:14 And these be the names of those that were born unto him in
+Jerusalem; Shammuah, and Shobab, and Nathan, and Solomon, 5:15 Ibhar
+also, and Elishua, and Nepheg, and Japhia, 5:16 And Elishama, and
+Eliada, and Eliphalet.
+
+5:17 But when the Philistines heard that they had anointed David king
+over Israel, all the Philistines came up to seek David; and David
+heard of it, and went down to the hold.
+
+5:18 The Philistines also came and spread themselves in the valley of
+Rephaim.
+
+5:19 And David enquired of the LORD, saying, Shall I go up to the
+Philistines? wilt thou deliver them into mine hand? And the LORD said
+unto David, Go up: for I will doubtless deliver the Philistines into
+thine hand.
+
+5:20 And David came to Baalperazim, and David smote them there, and
+said, The LORD hath broken forth upon mine enemies before me, as the
+breach of waters. Therefore he called the name of that place
+Baalperazim.
+
+5:21 And there they left their images, and David and his men burned
+them.
+
+5:22 And the Philistines came up yet again, and spread themselves in
+the valley of Rephaim.
+
+5:23 And when David enquired of the LORD, he said, Thou shalt not go
+up; but fetch a compass behind them, and come upon them over against
+the mulberry trees.
+
+5:24 And let it be, when thou hearest the sound of a going in the tops
+of the mulberry trees, that then thou shalt bestir thyself: for then
+shall the LORD go out before thee, to smite the host of the
+Philistines.
+
+5:25 And David did so, as the LORD had commanded him; and smote the
+Philistines from Geba until thou come to Gazer.
+
+6:1 Again, David gathered together all the chosen men of Israel,
+thirty thousand.
+
+6:2 And David arose, and went with all the people that were with him
+from Baale of Judah, to bring up from thence the ark of God, whose
+name is called by the name of the LORD of hosts that dwelleth between
+the cherubims.
+
+6:3 And they set the ark of God upon a new cart, and brought it out of
+the house of Abinadab that was in Gibeah: and Uzzah and Ahio, the sons
+of Abinadab, drave the new cart.
+
+6:4 And they brought it out of the house of Abinadab which was at
+Gibeah, accompanying the ark of God: and Ahio went before the ark.
+
+6:5 And David and all the house of Israel played before the LORD on
+all manner of instruments made of fir wood, even on harps, and on
+psalteries, and on timbrels, and on cornets, and on cymbals.
+
+6:6 And when they came to Nachon's threshingfloor, Uzzah put forth his
+hand to the ark of God, and took hold of it; for the oxen shook it.
+
+6:7 And the anger of the LORD was kindled against Uzzah; and God smote
+him there for his error; and there he died by the ark of God.
+
+6:8 And David was displeased, because the LORD had made a breach upon
+Uzzah: and he called the name of the place Perezuzzah to this day.
+
+6:9 And David was afraid of the LORD that day, and said, How shall the
+ark of the LORD come to me? 6:10 So David would not remove the ark of
+the LORD unto him into the city of David: but David carried it aside
+into the house of Obededom the Gittite.
+
+6:11 And the ark of the LORD continued in the house of Obededom the
+Gittite three months: and the LORD blessed Obededom, and all his
+household.
+
+6:12 And it was told king David, saying, The LORD hath blessed the
+house of Obededom, and all that pertaineth unto him, because of the
+ark of God. So David went and brought up the ark of God from the house
+of Obededom into the city of David with gladness.
+
+6:13 And it was so, that when they that bare the ark of the LORD had
+gone six paces, he sacrificed oxen and fatlings.
+
+6:14 And David danced before the LORD with all his might; and David
+was girded with a linen ephod.
+
+6:15 So David and all the house of Israel brought up the ark of the
+LORD with shouting, and with the sound of the trumpet.
+
+6:16 And as the ark of the LORD came into the city of David, Michal
+Saul's daughter looked through a window, and saw king David leaping
+and dancing before the LORD; and she despised him in her heart.
+
+6:17 And they brought in the ark of the LORD, and set it in his place,
+in the midst of the tabernacle that David had pitched for it: and
+David offered burnt offerings and peace offerings before the LORD.
+
+6:18 And as soon as David had made an end of offering burnt offerings
+and peace offerings, he blessed the people in the name of the LORD of
+hosts.
+
+6:19 And he dealt among all the people, even among the whole multitude
+of Israel, as well to the women as men, to every one a cake of bread,
+and a good piece of flesh, and a flagon of wine. So all the people
+departed every one to his house.
+
+6:20 Then David returned to bless his household. And Michal the
+daughter of Saul came out to meet David, and said, How glorious was
+the king of Israel to day, who uncovered himself to day in the eyes of
+the handmaids of his servants, as one of the vain fellows shamelessly
+uncovereth himself! 6:21 And David said unto Michal, It was before
+the LORD, which chose me before thy father, and before all his house,
+to appoint me ruler over the people of the LORD, over Israel:
+therefore will I play before the LORD.
+
+6:22 And I will yet be more vile than thus, and will be base in mine
+own sight: and of the maidservants which thou hast spoken of, of them
+shall I be had in honour.
+
+6:23 Therefore Michal the daughter of Saul had no child unto the day
+of her death.
+
+7:1 And it came to pass, when the king sat in his house, and the LORD
+had given him rest round about from all his enemies; 7:2 That the king
+said unto Nathan the prophet, See now, I dwell in an house of cedar,
+but the ark of God dwelleth within curtains.
+
+7:3 And Nathan said to the king, Go, do all that is in thine heart;
+for the LORD is with thee.
+
+7:4 And it came to pass that night, that the word of the LORD came
+unto Nathan, saying, 7:5 Go and tell my servant David, Thus saith the
+LORD, Shalt thou build me an house for me to dwell in? 7:6 Whereas I
+have not dwelt in any house since the time that I brought up the
+children of Israel out of Egypt, even to this day, but have walked in
+a tent and in a tabernacle.
+
+7:7 In all the places wherein I have walked with all the children of
+Israel spake I a word with any of the tribes of Israel, whom I
+commanded to feed my people Israel, saying, Why build ye not me an
+house of cedar? 7:8 Now therefore so shalt thou say unto my servant
+David, Thus saith the LORD of hosts, I took thee from the sheepcote,
+from following the sheep, to be ruler over my people, over Israel: 7:9
+And I was with thee whithersoever thou wentest, and have cut off all
+thine enemies out of thy sight, and have made thee a great name, like
+unto the name of the great men that are in the earth.
+
+7:10 Moreover I will appoint a place for my people Israel, and will
+plant them, that they may dwell in a place of their own, and move no
+more; neither shall the children of wickedness afflict them any more,
+as beforetime, 7:11 And as since the time that I commanded judges to
+be over my people Israel, and have caused thee to rest from all thine
+enemies. Also the LORD telleth thee that he will make thee an house.
+
+7:12 And when thy days be fulfilled, and thou shalt sleep with thy
+fathers, I will set up thy seed after thee, which shall proceed out of
+thy bowels, and I will establish his kingdom.
+
+7:13 He shall build an house for my name, and I will stablish the
+throne of his kingdom for ever.
+
+7:14 I will be his father, and he shall be my son. If he commit
+iniquity, I will chasten him with the rod of men, and with the stripes
+of the children of men: 7:15 But my mercy shall not depart away from
+him, as I took it from Saul, whom I put away before thee.
+
+7:16 And thine house and thy kingdom shall be established for ever
+before thee: thy throne shall be established for ever.
+
+7:17 According to all these words, and according to all this vision,
+so did Nathan speak unto David.
+
+7:18 Then went king David in, and sat before the LORD, and he said,
+Who am I, O Lord GOD? and what is my house, that thou hast brought me
+hitherto? 7:19 And this was yet a small thing in thy sight, O Lord
+GOD; but thou hast spoken also of thy servant's house for a great
+while to come. And is this the manner of man, O Lord GOD? 7:20 And
+what can David say more unto thee? for thou, Lord GOD, knowest thy
+servant.
+
+7:21 For thy word's sake, and according to thine own heart, hast thou
+done all these great things, to make thy servant know them.
+
+7:22 Wherefore thou art great, O LORD God: for there is none like
+thee, neither is there any God beside thee, according to all that we
+have heard with our ears.
+
+7:23 And what one nation in the earth is like thy people, even like
+Israel, whom God went to redeem for a people to himself, and to make
+him a name, and to do for you great things and terrible, for thy land,
+before thy people, which thou redeemedst to thee from Egypt, from the
+nations and their gods? 7:24 For thou hast confirmed to thyself thy
+people Israel to be a people unto thee for ever: and thou, LORD, art
+become their God.
+
+7:25 And now, O LORD God, the word that thou hast spoken concerning
+thy servant, and concerning his house, establish it for ever, and do
+as thou hast said.
+
+7:26 And let thy name be magnified for ever, saying, The LORD of hosts
+is the God over Israel: and let the house of thy servant David be
+established before thee.
+
+7:27 For thou, O LORD of hosts, God of Israel, hast revealed to thy
+servant, saying, I will build thee an house: therefore hath thy
+servant found in his heart to pray this prayer unto thee.
+
+7:28 And now, O Lord GOD, thou art that God, and thy words be true,
+and thou hast promised this goodness unto thy servant: 7:29 Therefore
+now let it please thee to bless the house of thy servant, that it may
+continue for ever before thee: for thou, O Lord GOD, hast spoken it:
+and with thy blessing let the house of thy servant be blessed for
+ever.
+
+8:1 And after this it came to pass that David smote the Philistines,
+and subdued them: and David took Methegammah out of the hand of the
+Philistines.
+
+8:2 And he smote Moab, and measured them with a line, casting them
+down to the ground; even with two lines measured he to put to death,
+and with one full line to keep alive. And so the Moabites became
+David's servants, and brought gifts.
+
+8:3 David smote also Hadadezer, the son of Rehob, king of Zobah, as he
+went to recover his border at the river Euphrates.
+
+8:4 And David took from him a thousand chariots, and seven hundred
+horsemen, and twenty thousand footmen: and David houghed all the
+chariot horses, but reserved of them for an hundred chariots.
+
+8:5 And when the Syrians of Damascus came to succour Hadadezer king of
+Zobah, David slew of the Syrians two and twenty thousand men.
+
+8:6 Then David put garrisons in Syria of Damascus: and the Syrians
+became servants to David, and brought gifts. And the LORD preserved
+David whithersoever he went.
+
+8:7 And David took the shields of gold that were on the servants of
+Hadadezer, and brought them to Jerusalem.
+
+8:8 And from Betah, and from Berothai, cities of Hadadezer, king David
+took exceeding much brass.
+
+8:9 When Toi king of Hamath heard that David had smitten all the host
+of Hadadezer, 8:10 Then Toi sent Joram his son unto king David, to
+salute him, and to bless him, because he had fought against Hadadezer,
+and smitten him: for Hadadezer had wars with Toi. And Joram brought
+with him vessels of silver, and vessels of gold, and vessels of brass:
+8:11 Which also king David did dedicate unto the LORD, with the silver
+and gold that he had dedicated of all nations which he subdued; 8:12
+Of Syria, and of Moab, and of the children of Ammon, and of the
+Philistines, and of Amalek, and of the spoil of Hadadezer, son of
+Rehob, king of Zobah.
+
+8:13 And David gat him a name when he returned from smiting of the
+Syrians in the valley of salt, being eighteen thousand men.
+
+8:14 And he put garrisons in Edom; throughout all Edom put he
+garrisons, and all they of Edom became David's servants. And the LORD
+preserved David whithersoever he went.
+
+8:15 And David reigned over all Israel; and David executed judgment
+and justice unto all his people.
+
+8:16 And Joab the son of Zeruiah was over the host; and Jehoshaphat
+the son of Ahilud was recorder; 8:17 And Zadok the son of Ahitub, and
+Ahimelech the son of Abiathar, were the priests; and Seraiah was the
+scribe; 8:18 And Benaiah the son of Jehoiada was over both the
+Cherethites and the Pelethites; and David's sons were chief rulers.
+
+9:1 And David said, Is there yet any that is left of the house of
+Saul, that I may shew him kindness for Jonathan's sake? 9:2 And there
+was of the house of Saul a servant whose name was Ziba. And when they
+had called him unto David, the king said unto him, Art thou Ziba? And
+he said, Thy servant is he.
+
+9:3 And the king said, Is there not yet any of the house of Saul, that
+I may shew the kindness of God unto him? And Ziba said unto the king,
+Jonathan hath yet a son, which is lame on his feet.
+
+9:4 And the king said unto him, Where is he? And Ziba said unto the
+king, Behold, he is in the house of Machir, the son of Ammiel, in
+Lodebar.
+
+9:5 Then king David sent, and fetched him out of the house of Machir,
+the son of Ammiel, from Lodebar.
+
+9:6 Now when Mephibosheth, the son of Jonathan, the son of Saul, was
+come unto David, he fell on his face, and did reverence. And David
+said, Mephibosheth. And he answered, Behold thy servant! 9:7 And
+David said unto him, Fear not: for I will surely shew thee kindness
+for Jonathan thy father's sake, and will restore thee all the land of
+Saul thy father; and thou shalt eat bread at my table continually.
+
+9:8 And he bowed himself, and said, What is thy servant, that thou
+shouldest look upon such a dead dog as I am? 9:9 Then the king called
+to Ziba, Saul's servant, and said unto him, I have given unto thy
+master's son all that pertained to Saul and to all his house.
+
+9:10 Thou therefore, and thy sons, and thy servants, shall till the
+land for him, and thou shalt bring in the fruits, that thy master's
+son may have food to eat: but Mephibosheth thy master's son shall eat
+bread alway at my table. Now Ziba had fifteen sons and twenty
+servants.
+
+9:11 Then said Ziba unto the king, According to all that my lord the
+king hath commanded his servant, so shall thy servant do. As for
+Mephibosheth, said the king, he shall eat at my table, as one of the
+king's sons.
+
+9:12 And Mephibosheth had a young son, whose name was Micha. And all
+that dwelt in the house of Ziba were servants unto Mephibosheth.
+
+9:13 So Mephibosheth dwelt in Jerusalem: for he did eat continually at
+the king's table; and was lame on both his feet.
+
+10:1 And it came to pass after this, that the king of the children of
+Ammon died, and Hanun his son reigned in his stead.
+
+10:2 Then said David, I will shew kindness unto Hanun the son of
+Nahash, as his father shewed kindness unto me. And David sent to
+comfort him by the hand of his servants for his father. And David's
+servants came into the land of the children of Ammon.
+
+10:3 And the princes of the children of Ammon said unto Hanun their
+lord, Thinkest thou that David doth honour thy father, that he hath
+sent comforters unto thee? hath not David rather sent his servants
+unto thee, to search the city, and to spy it out, and to overthrow it?
+10:4 Wherefore Hanun took David's servants, and shaved off the one
+half of their beards, and cut off their garments in the middle, even
+to their buttocks, and sent them away.
+
+10:5 When they told it unto David, he sent to meet them, because the
+men were greatly ashamed: and the king said, Tarry at Jericho until
+your beards be grown, and then return.
+
+10:6 And when the children of Ammon saw that they stank before David,
+the children of Ammon sent and hired the Syrians of Bethrehob and the
+Syrians of Zoba, twenty thousand footmen, and of king Maacah a
+thousand men, and of Ishtob twelve thousand men.
+
+10:7 And when David heard of it, he sent Joab, and all the host of the
+mighty men.
+
+10:8 And the children of Ammon came out, and put the battle in array
+at the entering in of the gate: and the Syrians of Zoba, and of Rehob,
+and Ishtob, and Maacah, were by themselves in the field.
+
+10:9 When Joab saw that the front of the battle was against him before
+and behind, he chose of all the choice men of Israel, and put them in
+array against the Syrians: 10:10 And the rest of the people he
+delivered into the hand of Abishai his brother, that he might put them
+in array against the children of Ammon.
+
+10:11 And he said, If the Syrians be too strong for me, then thou
+shalt help me: but if the children of Ammon be too strong for thee,
+then I will come and help thee.
+
+10:12 Be of good courage, and let us play the men for our people, and
+for the cities of our God: and the LORD do that which seemeth him
+good.
+
+10:13 And Joab drew nigh, and the people that were with him, unto the
+battle against the Syrians: and they fled before him.
+
+10:14 And when the children of Ammon saw that the Syrians were fled,
+then fled they also before Abishai, and entered into the city. So Joab
+returned from the children of Ammon, and came to Jerusalem.
+
+10:15 And when the Syrians saw that they were smitten before Israel,
+they gathered themselves together.
+
+10:16 And Hadarezer sent, and brought out the Syrians that were beyond
+the river: and they came to Helam; and Shobach the captain of the host
+of Hadarezer went before them.
+
+10:17 And when it was told David, he gathered all Israel together, and
+passed over Jordan, and came to Helam. And the Syrians set themselves
+in array against David, and fought with him.
+
+10:18 And the Syrians fled before Israel; and David slew the men of
+seven hundred chariots of the Syrians, and forty thousand horsemen,
+and smote Shobach the captain of their host, who died there.
+
+10:19 And when all the kings that were servants to Hadarezer saw that
+they were smitten before Israel, they made peace with Israel, and
+served them. So the Syrians feared to help the children of Ammon any
+more.
+
+11:1 And it came to pass, after the year was expired, at the time when
+kings go forth to battle, that David sent Joab, and his servants with
+him, and all Israel; and they destroyed the children of Ammon, and
+besieged Rabbah. But David tarried still at Jerusalem.
+
+11:2 And it came to pass in an eveningtide, that David arose from off
+his bed, and walked upon the roof of the king's house: and from the
+roof he saw a woman washing herself; and the woman was very beautiful
+to look upon.
+
+11:3 And David sent and enquired after the woman. And one said, Is not
+this Bathsheba, the daughter of Eliam, the wife of Uriah the Hittite?
+11:4 And David sent messengers, and took her; and she came in unto
+him, and he lay with her; for she was purified from her uncleanness:
+and she returned unto her house.
+
+11:5 And the woman conceived, and sent and told David, and said, I am
+with child.
+
+11:6 And David sent to Joab, saying, Send me Uriah the Hittite. And
+Joab sent Uriah to David.
+
+11:7 And when Uriah was come unto him, David demanded of him how Joab
+did, and how the people did, and how the war prospered.
+
+11:8 And David said to Uriah, Go down to thy house, and wash thy feet.
+And Uriah departed out of the king's house, and there followed him a
+mess of meat from the king.
+
+11:9 But Uriah slept at the door of the king's house with all the
+servants of his lord, and went not down to his house.
+
+11:10 And when they had told David, saying, Uriah went not down unto
+his house, David said unto Uriah, Camest thou not from thy journey?
+why then didst thou not go down unto thine house? 11:11 And Uriah
+said unto David, The ark, and Israel, and Judah, abide in tents; and
+my lord Joab, and the servants of my lord, are encamped in the open
+fields; shall I then go into mine house, to eat and to drink, and to
+lie with my wife? as thou livest, and as thy soul liveth, I will not
+do this thing.
+
+11:12 And David said to Uriah, Tarry here to day also, and to morrow I
+will let thee depart. So Uriah abode in Jerusalem that day, and the
+morrow.
+
+11:13 And when David had called him, he did eat and drink before him;
+and he made him drunk: and at even he went out to lie on his bed with
+the servants of his lord, but went not down to his house.
+
+11:14 And it came to pass in the morning, that David wrote a letter to
+Joab, and sent it by the hand of Uriah.
+
+11:15 And he wrote in the letter, saying, Set ye Uriah in the
+forefront of the hottest battle, and retire ye from him, that he may
+be smitten, and die.
+
+11:16 And it came to pass, when Joab observed the city, that he
+assigned Uriah unto a place where he knew that valiant men were.
+
+11:17 And the men of the city went out, and fought with Joab: and
+there fell some of the people of the servants of David; and Uriah the
+Hittite died also.
+
+11:18 Then Joab sent and told David all the things concerning the war;
+11:19 And charged the messenger, saying, When thou hast made an end of
+telling the matters of the war unto the king, 11:20 And if so be that
+the king's wrath arise, and he say unto thee, Wherefore approached ye
+so nigh unto the city when ye did fight? knew ye not that they would
+shoot from the wall? 11:21 Who smote Abimelech the son of
+Jerubbesheth? did not a woman cast a piece of a millstone upon him
+from the wall, that he died in Thebez? why went ye nigh the wall? then
+say thou, Thy servant Uriah the Hittite is dead also.
+
+11:22 So the messenger went, and came and shewed David all that Joab
+had sent him for.
+
+11:23 And the messenger said unto David, Surely the men prevailed
+against us, and came out unto us into the field, and we were upon them
+even unto the entering of the gate.
+
+11:24 And the shooters shot from off the wall upon thy servants; and
+some of the king's servants be dead, and thy servant Uriah the Hittite
+is dead also.
+
+11:25 Then David said unto the messenger, Thus shalt thou say unto
+Joab, Let not this thing displease thee, for the sword devoureth one
+as well as another: make thy battle more strong against the city, and
+overthrow it: and encourage thou him.
+
+11:26 And when the wife of Uriah heard that Uriah her husband was
+dead, she mourned for her husband.
+
+11:27 And when the mourning was past, David sent and fetched her to
+his house, and she became his wife, and bare him a son. But the thing
+that David had done displeased the LORD.
+
+12:1 And the LORD sent Nathan unto David. And he came unto him, and
+said unto him, There were two men in one city; the one rich, and the
+other poor.
+
+12:2 The rich man had exceeding many flocks and herds: 12:3 But the
+poor man had nothing, save one little ewe lamb, which he had bought
+and nourished up: and it grew up together with him, and with his
+children; it did eat of his own meat, and drank of his own cup, and
+lay in his bosom, and was unto him as a daughter.
+
+12:4 And there came a traveller unto the rich man, and he spared to
+take of his own flock and of his own herd, to dress for the wayfaring
+man that was come unto him; but took the poor man's lamb, and dressed
+it for the man that was come to him.
+
+12:5 And David's anger was greatly kindled against the man; and he
+said to Nathan, As the LORD liveth, the man that hath done this thing
+shall surely die: 12:6 And he shall restore the lamb fourfold, because
+he did this thing, and because he had no pity.
+
+12:7 And Nathan said to David, Thou art the man. Thus saith the LORD
+God of Israel, I anointed thee king over Israel, and I delivered thee
+out of the hand of Saul; 12:8 And I gave thee thy master's house, and
+thy master's wives into thy bosom, and gave thee the house of Israel
+and of Judah; and if that had been too little, I would moreover have
+given unto thee such and such things.
+
+12:9 Wherefore hast thou despised the commandment of the LORD, to do
+evil in his sight? thou hast killed Uriah the Hittite with the sword,
+and hast taken his wife to be thy wife, and hast slain him with the
+sword of the children of Ammon.
+
+12:10 Now therefore the sword shall never depart from thine house;
+because thou hast despised me, and hast taken the wife of Uriah the
+Hittite to be thy wife.
+
+12:11 Thus saith the LORD, Behold, I will raise up evil against thee
+out of thine own house, and I will take thy wives before thine eyes,
+and give them unto thy neighbour, and he shall lie with thy wives in
+the sight of this sun.
+
+12:12 For thou didst it secretly: but I will do this thing before all
+Israel, and before the sun.
+
+12:13 And David said unto Nathan, I have sinned against the LORD. And
+Nathan said unto David, The LORD also hath put away thy sin; thou
+shalt not die.
+
+12:14 Howbeit, because by this deed thou hast given great occasion to
+the enemies of the LORD to blaspheme, the child also that is born unto
+thee shall surely die.
+
+12:15 And Nathan departed unto his house. And the LORD struck the
+child that Uriah's wife bare unto David, and it was very sick.
+
+12:16 David therefore besought God for the child; and David fasted,
+and went in, and lay all night upon the earth.
+
+12:17 And the elders of his house arose, and went to him, to raise him
+up from the earth: but he would not, neither did he eat bread with
+them.
+
+12:18 And it came to pass on the seventh day, that the child died. And
+the servants of David feared to tell him that the child was dead: for
+they said, Behold, while the child was yet alive, we spake unto him,
+and he would not hearken unto our voice: how will he then vex himself,
+if we tell him that the child is dead? 12:19 But when David saw that
+his servants whispered, David perceived that the child was dead:
+therefore David said unto his servants, Is the child dead? And they
+said, He is dead.
+
+12:20 Then David arose from the earth, and washed, and anointed
+himself, and changed his apparel, and came into the house of the LORD,
+and worshipped: then he came to his own house; and when he required,
+they set bread before him, and he did eat.
+
+12:21 Then said his servants unto him, What thing is this that thou
+hast done? thou didst fast and weep for the child, while it was alive;
+but when the child was dead, thou didst rise and eat bread.
+
+12:22 And he said, While the child was yet alive, I fasted and wept:
+for I said, Who can tell whether GOD will be gracious to me, that the
+child may live? 12:23 But now he is dead, wherefore should I fast?
+can I bring him back again? I shall go to him, but he shall not return
+to me.
+
+12:24 And David comforted Bathsheba his wife, and went in unto her,
+and lay with her: and she bare a son, and he called his name Solomon:
+and the LORD loved him.
+
+12:25 And he sent by the hand of Nathan the prophet; and he called his
+name Jedidiah, because of the LORD.
+
+12:26 And Joab fought against Rabbah of the children of Ammon, and
+took the royal city.
+
+12:27 And Joab sent messengers to David, and said, I have fought
+against Rabbah, and have taken the city of waters.
+
+12:28 Now therefore gather the rest of the people together, and encamp
+against the city, and take it: lest I take the city, and it be called
+after my name.
+
+12:29 And David gathered all the people together, and went to Rabbah,
+and fought against it, and took it.
+
+12:30 And he took their king's crown from off his head, the weight
+whereof was a talent of gold with the precious stones: and it was set
+on David's head. And he brought forth the spoil of the city in great
+abundance.
+
+12:31 And he brought forth the people that were therein, and put them
+under saws, and under harrows of iron, and under axes of iron, and
+made them pass through the brick-kiln: and thus did he unto all the
+cities of the children of Ammon. So David and all the people returned
+unto Jerusalem.
+
+13:1 And it came to pass after this, that Absalom the son of David had
+a fair sister, whose name was Tamar; and Amnon the son of David loved
+her.
+
+13:2 And Amnon was so vexed, that he fell sick for his sister Tamar;
+for she was a virgin; and Amnon thought it hard for him to do anything
+to her.
+
+13:3 But Amnon had a friend, whose name was Jonadab, the son of
+Shimeah David's brother: and Jonadab was a very subtil man.
+
+13:4 And he said unto him, Why art thou, being the king's son, lean
+from day to day? wilt thou not tell me? And Amnon said unto him, I
+love Tamar, my brother Absalom's sister.
+
+13:5 And Jonadab said unto him, Lay thee down on thy bed, and make
+thyself sick: and when thy father cometh to see thee, say unto him, I
+pray thee, let my sister Tamar come, and give me meat, and dress the
+meat in my sight, that I may see it, and eat it at her hand.
+
+13:6 So Amnon lay down, and made himself sick: and when the king was
+come to see him, Amnon said unto the king, I pray thee, let Tamar my
+sister come, and make me a couple of cakes in my sight, that I may eat
+at her hand.
+
+13:7 Then David sent home to Tamar, saying, Go now to thy brother
+Amnon's house, and dress him meat.
+
+13:8 So Tamar went to her brother Amnon's house; and he was laid down.
+And she took flour, and kneaded it, and made cakes in his sight, and
+did bake the cakes.
+
+13:9 And she took a pan, and poured them out before him; but he
+refused to eat. And Amnon said, Have out all men from me. And they
+went out every man from him.
+
+13:10 And Amnon said unto Tamar, Bring the meat into the chamber, that
+I may eat of thine hand. And Tamar took the cakes which she had made,
+and brought them into the chamber to Amnon her brother.
+
+13:11 And when she had brought them unto him to eat, he took hold of
+her, and said unto her, Come lie with me, my sister.
+
+13:12 And she answered him, Nay, my brother, do not force me; for no
+such thing ought to be done in Israel: do not thou this folly.
+
+13:13 And I, whither shall I cause my shame to go? and as for thee,
+thou shalt be as one of the fools in Israel. Now therefore, I pray
+thee, speak unto the king; for he will not withhold me from thee.
+
+13:14 Howbeit he would not hearken unto her voice: but, being stronger
+than she, forced her, and lay with her.
+
+13:15 Then Amnon hated her exceedingly; so that the hatred wherewith
+he hated her was greater than the love wherewith he had loved her. And
+Amnon said unto her, Arise, be gone.
+
+13:16 And she said unto him, There is no cause: this evil in sending
+me away is greater than the other that thou didst unto me. But he
+would not hearken unto her.
+
+13:17 Then he called his servant that ministered unto him, and said,
+Put now this woman out from me, and bolt the door after her.
+
+13:18 And she had a garment of divers colours upon her: for with such
+robes were the king's daughters that were virgins apparelled. Then his
+servant brought her out, and bolted the door after her.
+
+13:19 And Tamar put ashes on her head, and rent her garment of divers
+colours that was on her, and laid her hand on her head, and went on
+crying.
+
+13:20 And Absalom her brother said unto her, Hath Amnon thy brother
+been with thee? but hold now thy peace, my sister: he is thy brother;
+regard not this thing. So Tamar remained desolate in her brother
+Absalom's house.
+
+13:21 But when king David heard of all these things, he was very
+wroth.
+
+13:22 And Absalom spake unto his brother Amnon neither good nor bad:
+for Absalom hated Amnon, because he had forced his sister Tamar.
+
+13:23 And it came to pass after two full years, that Absalom had
+sheepshearers in Baalhazor, which is beside Ephraim: and Absalom
+invited all the king's sons.
+
+13:24 And Absalom came to the king, and said, Behold now, thy servant
+hath sheepshearers; let the king, I beseech thee, and his servants go
+with thy servant.
+
+13:25 And the king said to Absalom, Nay, my son, let us not all now
+go, lest we be chargeable unto thee. And he pressed him: howbeit he
+would not go, but blessed him.
+
+13:26 Then said Absalom, If not, I pray thee, let my brother Amnon go
+with us. And the king said unto him, Why should he go with thee?
+13:27 But Absalom pressed him, that he let Amnon and all the king's
+sons go with him.
+
+13:28 Now Absalom had commanded his servants, saying, Mark ye now when
+Amnon's heart is merry with wine, and when I say unto you, Smite
+Amnon; then kill him, fear not: have not I commanded you? be
+courageous, and be valiant.
+
+13:29 And the servants of Absalom did unto Amnon as Absalom had
+commanded.
+
+Then all the king's sons arose, and every man gat him up upon his
+mule, and fled.
+
+13:30 And it came to pass, while they were in the way, that tidings
+came to David, saying, Absalom hath slain all the king's sons, and
+there is not one of them left.
+
+13:31 Then the king arose, and tare his garments, and lay on the
+earth; and all his servants stood by with their clothes rent.
+
+13:32 And Jonadab, the son of Shimeah David's brother, answered and
+said, Let not my lord suppose that they have slain all the young men
+the king's sons; for Amnon only is dead: for by the appointment of
+Absalom this hath been determined from the day that he forced his
+sister Tamar.
+
+13:33 Now therefore let not my lord the king take the thing to his
+heart, to think that all the king's sons are dead: for Amnon only is
+dead.
+
+13:34 But Absalom fled. And the young man that kept the watch lifted
+up his eyes, and looked, and, behold, there came much people by the
+way of the hill side behind him.
+
+13:35 And Jonadab said unto the king, Behold, the king's sons come: as
+thy servant said, so it is.
+
+13:36 And it came to pass, as soon as he had made an end of speaking,
+that, behold, the king's sons came, and lifted up their voice and
+wept: and the king also and all his servants wept very sore.
+
+13:37 But Absalom fled, and went to Talmai, the son of Ammihud, king
+of Geshur. And David mourned for his son every day.
+
+13:38 So Absalom fled, and went to Geshur, and was there three years.
+
+13:39 And the soul of king David longed to go forth unto Absalom: for
+he was comforted concerning Amnon, seeing he was dead.
+
+14:1 Now Joab the son of Zeruiah perceived that the king's heart was
+toward Absalom.
+
+14:2 And Joab sent to Tekoah, and fetched thence a wise woman, and
+said unto her, I pray thee, feign thyself to be a mourner, and put on
+now mourning apparel, and anoint not thyself with oil, but be as a
+woman that had a long time mourned for the dead: 14:3 And come to the
+king, and speak on this manner unto him. So Joab put the words in her
+mouth.
+
+14:4 And when the woman of Tekoah spake to the king, she fell on her
+face to the ground, and did obeisance, and said, Help, O king.
+
+14:5 And the king said unto her, What aileth thee? And she answered, I
+am indeed a widow woman, and mine husband is dead.
+
+14:6 And thy handmaid had two sons, and they two strove together in
+the field, and there was none to part them, but the one smote the
+other, and slew him.
+
+14:7 And, behold, the whole family is risen against thine handmaid,
+and they said, Deliver him that smote his brother, that we may kill
+him, for the life of his brother whom he slew; and we will destroy the
+heir also: and so they shall quench my coal which is left, and shall
+not leave to my husband neither name nor remainder upon the earth.
+
+14:8 And the king said unto the woman, Go to thine house, and I will
+give charge concerning thee.
+
+14:9 And the woman of Tekoah said unto the king, My lord, O king, the
+iniquity be on me, and on my father's house: and the king and his
+throne be guiltless.
+
+14:10 And the king said, Whoever saith ought unto thee, bring him to
+me, and he shall not touch thee any more.
+
+14:11 Then said she, I pray thee, let the king remember the LORD thy
+God, that thou wouldest not suffer the revengers of blood to destroy
+any more, lest they destroy my son. And he said, As the LORD liveth,
+there shall not one hair of thy son fall to the earth.
+
+14:12 Then the woman said, Let thine handmaid, I pray thee, speak one
+word unto my lord the king. And he said, Say on.
+
+14:13 And the woman said, Wherefore then hast thou thought such a
+thing against the people of God? for the king doth speak this thing as
+one which is faulty, in that the king doth not fetch home again his
+banished.
+
+14:14 For we must needs die, and are as water spilt on the ground,
+which cannot be gathered up again; neither doth God respect any
+person: yet doth he devise means, that his banished be not expelled
+from him.
+
+14:15 Now therefore that I am come to speak of this thing unto my lord
+the king, it is because the people have made me afraid: and thy
+handmaid said, I will now speak unto the king; it may be that the king
+will perform the request of his handmaid.
+
+14:16 For the king will hear, to deliver his handmaid out of the hand
+of the man that would destroy me and my son together out of the
+inheritance of God.
+
+14:17 Then thine handmaid said, The word of my lord the king shall now
+be comfortable: for as an angel of God, so is my lord the king to
+discern good and bad: therefore the LORD thy God will be with thee.
+
+14:18 Then the king answered and said unto the woman, Hide not from
+me, I pray thee, the thing that I shall ask thee. And the woman said,
+Let my lord the king now speak.
+
+14:19 And the king said, Is not the hand of Joab with thee in all
+this? And the woman answered and said, As thy soul liveth, my lord
+the king, none can turn to the right hand or to the left from ought
+that my lord the king hath spoken: for thy servant Joab, he bade me,
+and he put all these words in the mouth of thine handmaid: 14:20 To
+fetch about this form of speech hath thy servant Joab done this thing:
+and my lord is wise, according to the wisdom of an angel of God, to
+know all things that are in the earth.
+
+14:21 And the king said unto Joab, Behold now, I have done this thing:
+go therefore, bring the young man Absalom again.
+
+14:22 And Joab fell to the ground on his face, and bowed himself, and
+thanked the king: and Joab said, To day thy servant knoweth that I
+have found grace in thy sight, my lord, O king, in that the king hath
+fulfilled the request of his servant.
+
+14:23 So Joab arose and went to Geshur, and brought Absalom to
+Jerusalem.
+
+14:24 And the king said, Let him turn to his own house, and let him
+not see my face. So Absalom returned to his own house, and saw not the
+king's face.
+
+14:25 But in all Israel there was none to be so much praised as
+Absalom for his beauty: from the sole of his foot even to the crown of
+his head there was no blemish in him.
+
+14:26 And when he polled his head, (for it was at every year's end
+that he polled it: because the hair was heavy on him, therefore he
+polled it:) he weighed the hair of his head at two hundred shekels
+after the king's weight.
+
+14:27 And unto Absalom there were born three sons, and one daughter,
+whose name was Tamar: she was a woman of a fair countenance.
+
+14:28 So Absalom dwelt two full years in Jerusalem, and saw not the
+king's face.
+
+14:29 Therefore Absalom sent for Joab, to have sent him to the king;
+but he would not come to him: and when he sent again the second time,
+he would not come.
+
+14:30 Therefore he said unto his servants, See, Joab's field is near
+mine, and he hath barley there; go and set it on fire. And Absalom's
+servants set the field on fire.
+
+14:31 Then Joab arose, and came to Absalom unto his house, and said
+unto him, Wherefore have thy servants set my field on fire? 14:32 And
+Absalom answered Joab, Behold, I sent unto thee, saying, Come hither,
+that I may send thee to the king, to say, Wherefore am I come from
+Geshur? it had been good for me to have been there still: now
+therefore let me see the king's face; and if there be any iniquity in
+me, let him kill me.
+
+14:33 So Joab came to the king, and told him: and when he had called
+for Absalom, he came to the king, and bowed himself on his face to the
+ground before the king: and the king kissed Absalom.
+
+15:1 And it came to pass after this, that Absalom prepared him
+chariots and horses, and fifty men to run before him.
+
+15:2 And Absalom rose up early, and stood beside the way of the gate:
+and it was so, that when any man that had a controversy came to the
+king for judgment, then Absalom called unto him, and said, Of what
+city art thou? And he said, Thy servant is of one of the tribes of
+Israel.
+
+15:3 And Absalom said unto him, See, thy matters are good and right;
+but there is no man deputed of the king to hear thee.
+
+15:4 Absalom said moreover, Oh that I were made judge in the land,
+that every man which hath any suit or cause might come unto me, and I
+would do him justice! 15:5 And it was so, that when any man came nigh
+to him to do him obeisance, he put forth his hand, and took him, and
+kissed him.
+
+15:6 And on this manner did Absalom to all Israel that came to the
+king for judgment: so Absalom stole the hearts of the men of Israel.
+
+15:7 And it came to pass after forty years, that Absalom said unto the
+king, I pray thee, let me go and pay my vow, which I have vowed unto
+the LORD, in Hebron.
+
+15:8 For thy servant vowed a vow while I abode at Geshur in Syria,
+saying, If the LORD shall bring me again indeed to Jerusalem, then I
+will serve the LORD.
+
+15:9 And the king said unto him, Go in peace. So he arose, and went to
+Hebron.
+
+15:10 But Absalom sent spies throughout all the tribes of Israel,
+saying, As soon as ye hear the sound of the trumpet, then ye shall
+say, Absalom reigneth in Hebron.
+
+15:11 And with Absalom went two hundred men out of Jerusalem, that
+were called; and they went in their simplicity, and they knew not any
+thing.
+
+15:12 And Absalom sent for Ahithophel the Gilonite, David's
+counsellor, from his city, even from Giloh, while he offered
+sacrifices. And the conspiracy was strong; for the people increased
+continually with Absalom.
+
+15:13 And there came a messenger to David, saying, The hearts of the
+men of Israel are after Absalom.
+
+15:14 And David said unto all his servants that were with him at
+Jerusalem, Arise, and let us flee; for we shall not else escape from
+Absalom: make speed to depart, lest he overtake us suddenly, and bring
+evil upon us, and smite the city with the edge of the sword.
+
+15:15 And the king's servants said unto the king, Behold, thy servants
+are ready to do whatsoever my lord the king shall appoint.
+
+15:16 And the king went forth, and all his household after him. And
+the king left ten women, which were concubines, to keep the house.
+
+15:17 And the king went forth, and all the people after him, and
+tarried in a place that was far off.
+
+15:18 And all his servants passed on beside him; and all the
+Cherethites, and all the Pelethites, and all the Gittites, six hundred
+men which came after him from Gath, passed on before the king.
+
+15:19 Then said the king to Ittai the Gittite, Wherefore goest thou
+also with us? return to thy place, and abide with the king: for thou
+art a stranger, and also an exile.
+
+15:20 Whereas thou camest but yesterday, should I this day make thee
+go up and down with us? seeing I go whither I may, return thou, and
+take back thy brethren: mercy and truth be with thee.
+
+15:21 And Ittai answered the king, and said, As the LORD liveth, and
+as my lord the king liveth, surely in what place my lord the king
+shall be, whether in death or life, even there also will thy servant
+be.
+
+15:22 And David said to Ittai, Go and pass over. And Ittai the Gittite
+passed over, and all his men, and all the little ones that were with
+him.
+
+15:23 And all the country wept with a loud voice, and all the people
+passed over: the king also himself passed over the brook Kidron, and
+all the people passed over, toward the way of the wilderness.
+
+15:24 And lo Zadok also, and all the Levites were with him, bearing
+the ark of the covenant of God: and they set down the ark of God; and
+Abiathar went up, until all the people had done passing out of the
+city.
+
+15:25 And the king said unto Zadok, Carry back the ark of God into the
+city: if I shall find favour in the eyes of the LORD, he will bring me
+again, and shew me both it, and his habitation: 15:26 But if he thus
+say, I have no delight in thee; behold, here am I, let him do to me as
+seemeth good unto him.
+
+15:27 The king said also unto Zadok the priest, Art not thou a seer?
+return into the city in peace, and your two sons with you, Ahimaaz thy
+son, and Jonathan the son of Abiathar.
+
+15:28 See, I will tarry in the plain of the wilderness, until there
+come word from you to certify me.
+
+15:29 Zadok therefore and Abiathar carried the ark of God again to
+Jerusalem: and they tarried there.
+
+15:30 And David went up by the ascent of mount Olivet, and wept as he
+went up, and had his head covered, and he went barefoot: and all the
+people that was with him covered every man his head, and they went up,
+weeping as they went up.
+
+15:31 And one told David, saying, Ahithophel is among the conspirators
+with Absalom. And David said, O LORD, I pray thee, turn the counsel of
+Ahithophel into foolishness.
+
+15:32 And it came to pass, that when David was come to the top of the
+mount, where he worshipped God, behold, Hushai the Archite came to
+meet him with his coat rent, and earth upon his head: 15:33 Unto whom
+David said, If thou passest on with me, then thou shalt be a burden
+unto me: 15:34 But if thou return to the city, and say unto Absalom, I
+will be thy servant, O king; as I have been thy father's servant
+hitherto, so will I now also be thy servant: then mayest thou for me
+defeat the counsel of Ahithophel.
+
+15:35 And hast thou not there with thee Zadok and Abiathar the
+priests? therefore it shall be, that what thing soever thou shalt
+hear out of the king's house, thou shalt tell it to Zadok and Abiathar
+the priests.
+
+15:36 Behold, they have there with them their two sons, Ahimaaz
+Zadok's son, and Jonathan Abiathar's son; and by them ye shall send
+unto me every thing that ye can hear.
+
+15:37 So Hushai David's friend came into the city, and Absalom came
+into Jerusalem.
+
+16:1 And when David was a little past the top of the hill, behold,
+Ziba the servant of Mephibosheth met him, with a couple of asses
+saddled, and upon them two hundred loaves of bread, and an hundred
+bunches of raisins, and an hundred of summer fruits, and a bottle of
+wine.
+
+16:2 And the king said unto Ziba, What meanest thou by these? And Ziba
+said, The asses be for the king's household to ride on; and the bread
+and summer fruit for the young men to eat; and the wine, that such as
+be faint in the wilderness may drink.
+
+16:3 And the king said, And where is thy master's son? And Ziba said
+unto the king, Behold, he abideth at Jerusalem: for he said, To day
+shall the house of Israel restore me the kingdom of my father.
+
+16:4 Then said the king to Ziba, Behold, thine are all that pertained
+unto Mephibosheth. And Ziba said, I humbly beseech thee that I may
+find grace in thy sight, my lord, O king.
+
+16:5 And when king David came to Bahurim, behold, thence came out a
+man of the family of the house of Saul, whose name was Shimei, the son
+of Gera: he came forth, and cursed still as he came.
+
+16:6 And he cast stones at David, and at all the servants of king
+David: and all the people and all the mighty men were on his right
+hand and on his left.
+
+16:7 And thus said Shimei when he cursed, Come out, come out, thou
+bloody man, and thou man of Belial: 16:8 The LORD hath returned upon
+thee all the blood of the house of Saul, in whose stead thou hast
+reigned; and the LORD hath delivered the kingdom into the hand of
+Absalom thy son: and, behold, thou art taken in thy mischief, because
+thou art a bloody man.
+
+16:9 Then said Abishai the son of Zeruiah unto the king, Why should
+this dead dog curse my lord the king? let me go over, I pray thee, and
+take off his head.
+
+16:10 And the king said, What have I to do with you, ye sons of
+Zeruiah? so let him curse, because the LORD hath said unto him, Curse
+David. Who shall then say, Wherefore hast thou done so? 16:11 And
+David said to Abishai, and to all his servants, Behold, my son, which
+came forth of my bowels, seeketh my life: how much more now may this
+Benjamite do it? let him alone, and let him curse; for the LORD hath
+bidden him.
+
+16:12 It may be that the LORD will look on mine affliction, and that
+the LORD will requite me good for his cursing this day.
+
+16:13 And as David and his men went by the way, Shimei went along on
+the hill's side over against him, and cursed as he went, and threw
+stones at him, and cast dust.
+
+16:14 And the king, and all the people that were with him, came weary,
+and refreshed themselves there.
+
+16:15 And Absalom, and all the people the men of Israel, came to
+Jerusalem, and Ahithophel with him.
+
+16:16 And it came to pass, when Hushai the Archite, David's friend,
+was come unto Absalom, that Hushai said unto Absalom, God save the
+king, God save the king.
+
+16:17 And Absalom said to Hushai, Is this thy kindness to thy friend?
+why wentest thou not with thy friend? 16:18 And Hushai said unto
+Absalom, Nay; but whom the LORD, and this people, and all the men of
+Israel, choose, his will I be, and with him will I abide.
+
+16:19 And again, whom should I serve? should I not serve in the
+presence of his son? as I have served in thy father's presence, so
+will I be in thy presence.
+
+16:20 Then said Absalom to Ahithophel, Give counsel among you what we
+shall do.
+
+16:21 And Ahithophel said unto Absalom, Go in unto thy father's
+concubines, which he hath left to keep the house; and all Israel shall
+hear that thou art abhorred of thy father: then shall the hands of all
+that are with thee be strong.
+
+16:22 So they spread Absalom a tent upon the top of the house; and
+Absalom went in unto his father's concubines in the sight of all
+Israel.
+
+16:23 And the counsel of Ahithophel, which he counselled in those
+days, was as if a man had enquired at the oracle of God: so was all
+the counsel of Ahithophel both with David and with Absalom.
+
+17:1 Moreover Ahithophel said unto Absalom, Let me now choose out
+twelve thousand men, and I will arise and pursue after David this
+night: 17:2 And I will come upon him while he is weary and weak
+handed, and will make him afraid: and all the people that are with him
+shall flee; and I will smite the king only: 17:3 And I will bring back
+all the people unto thee: the man whom thou seekest is as if all
+returned: so all the people shall be in peace.
+
+17:4 And the saying pleased Absalom well, and all the elders of
+Israel.
+
+17:5 Then said Absalom, Call now Hushai the Archite also, and let us
+hear likewise what he saith.
+
+17:6 And when Hushai was come to Absalom, Absalom spake unto him,
+saying, Ahithophel hath spoken after this manner: shall we do after
+his saying? if not; speak thou.
+
+17:7 And Hushai said unto Absalom, The counsel that Ahithophel hath
+given is not good at this time.
+
+17:8 For, said Hushai, thou knowest thy father and his men, that they
+be mighty men, and they be chafed in their minds, as a bear robbed of
+her whelps in the field: and thy father is a man of war, and will not
+lodge with the people.
+
+17:9 Behold, he is hid now in some pit, or in some other place: and it
+will come to pass, when some of them be overthrown at the first, that
+whosoever heareth it will say, There is a slaughter among the people
+that follow Absalom.
+
+17:10 And he also that is valiant, whose heart is as the heart of a
+lion, shall utterly melt: for all Israel knoweth that thy father is a
+mighty man, and they which be with him are valiant men.
+
+17:11 Therefore I counsel that all Israel be generally gathered unto
+thee, from Dan even to Beersheba, as the sand that is by the sea for
+multitude; and that thou go to battle in thine own person.
+
+17:12 So shall we come upon him in some place where he shall be found,
+and we will light upon him as the dew falleth on the ground: and of
+him and of all the men that are with him there shall not be left so
+much as one.
+
+17:13 Moreover, if he be gotten into a city, then shall all Israel
+bring ropes to that city, and we will draw it into the river, until
+there be not one small stone found there.
+
+17:14 And Absalom and all the men of Israel said, The counsel of
+Hushai the Archite is better than the counsel of Ahithophel. For the
+LORD had appointed to defeat the good counsel of Ahithophel, to the
+intent that the LORD might bring evil upon Absalom.
+
+17:15 Then said Hushai unto Zadok and to Abiathar the priests, Thus
+and thus did Ahithophel counsel Absalom and the elders of Israel; and
+thus and thus have I counselled.
+
+17:16 Now therefore send quickly, and tell David, saying, Lodge not
+this night in the plains of the wilderness, but speedily pass over;
+lest the king be swallowed up, and all the people that are with him.
+
+17:17 Now Jonathan and Ahimaaz stayed by Enrogel; for they might not
+be seen to come into the city: and a wench went and told them; and
+they went and told king David.
+
+17:18 Nevertheless a lad saw them, and told Absalom: but they went
+both of them away quickly, and came to a man's house in Bahurim, which
+had a well in his court; whither they went down.
+
+17:19 And the woman took and spread a covering over the well's mouth,
+and spread ground corn thereon; and the thing was not known.
+
+17:20 And when Absalom's servants came to the woman to the house, they
+said, Where is Ahimaaz and Jonathan? And the woman said unto them,
+They be gone over the brook of water. And when they had sought and
+could not find them, they returned to Jerusalem.
+
+17:21 And it came to pass, after they were departed, that they came up
+out of the well, and went and told king David, and said unto David,
+Arise, and pass quickly over the water: for thus hath Ahithophel
+counselled against you.
+
+17:22 Then David arose, and all the people that were with him, and
+they passed over Jordan: by the morning light there lacked not one of
+them that was not gone over Jordan.
+
+17:23 And when Ahithophel saw that his counsel was not followed, he
+saddled his ass, and arose, and gat him home to his house, to his
+city, and put his household in order, and hanged himself, and died,
+and was buried in the sepulchre of his father.
+
+17:24 Then David came to Mahanaim. And Absalom passed over Jordan, he
+and all the men of Israel with him.
+
+17:25 And Absalom made Amasa captain of the host instead of Joab:
+which Amasa was a man's son, whose name was Ithra an Israelite, that
+went in to Abigail the daughter of Nahash, sister to Zeruiah Joab's
+mother.
+
+17:26 So Israel and Absalom pitched in the land of Gilead.
+
+17:27 And it came to pass, when David was come to Mahanaim, that Shobi
+the son of Nahash of Rabbah of the children of Ammon, and Machir the
+son of Ammiel of Lodebar, and Barzillai the Gileadite of Rogelim,
+17:28 Brought beds, and basons, and earthen vessels, and wheat, and
+barley, and flour, and parched corn, and beans, and lentiles, and
+parched pulse, 17:29 And honey, and butter, and sheep, and cheese of
+kine, for David, and for the people that were with him, to eat: for
+they said, The people is hungry, and weary, and thirsty, in the
+wilderness.
+
+18:1 And David numbered the people that were with him, and set
+captains of thousands, and captains of hundreds over them.
+
+18:2 And David sent forth a third part of the people under the hand of
+Joab, and a third part under the hand of Abishai the son of Zeruiah,
+Joab's brother, and a third part under the hand of Ittai the Gittite.
+And the king said unto the people, I will surely go forth with you
+myself also.
+
+18:3 But the people answered, Thou shalt not go forth: for if we flee
+away, they will not care for us; neither if half of us die, will they
+care for us: but now thou art worth ten thousand of us: therefore now
+it is better that thou succour us out of the city.
+
+18:4 And the king said unto them, What seemeth you best I will do. And
+the king stood by the gate side, and all the people came out by
+hundreds and by thousands.
+
+18:5 And the king commanded Joab and Abishai and Ittai, saying, Deal
+gently for my sake with the young man, even with Absalom. And all the
+people heard when the king gave all the captains charge concerning
+Absalom.
+
+18:6 So the people went out into the field against Israel: and the
+battle was in the wood of Ephraim; 18:7 Where the people of Israel
+were slain before the servants of David, and there was there a great
+slaughter that day of twenty thousand men.
+
+18:8 For the battle was there scattered over the face of all the
+country: and the wood devoured more people that day than the sword
+devoured.
+
+18:9 And Absalom met the servants of David. And Absalom rode upon a
+mule, and the mule went under the thick boughs of a great oak, and his
+head caught hold of the oak, and he was taken up between the heaven
+and the earth; and the mule that was under him went away.
+
+18:10 And a certain man saw it, and told Joab, and said, Behold, I saw
+Absalom hanged in an oak.
+
+18:11 And Joab said unto the man that told him, And, behold, thou
+sawest him, and why didst thou not smite him there to the ground? and
+I would have given thee ten shekels of silver, and a girdle.
+
+18:12 And the man said unto Joab, Though I should receive a thousand
+shekels of silver in mine hand, yet would I not put forth mine hand
+against the king's son: for in our hearing the king charged thee and
+Abishai and Ittai, saying, Beware that none touch the young man
+Absalom.
+
+18:13 Otherwise I should have wrought falsehood against mine own life:
+for there is no matter hid from the king, and thou thyself wouldest
+have set thyself against me.
+
+18:14 Then said Joab, I may not tarry thus with thee. And he took
+three darts in his hand, and thrust them through the heart of Absalom,
+while he was yet alive in the midst of the oak.
+
+18:15 And ten young men that bare Joab's armour compassed about and
+smote Absalom, and slew him.
+
+18:16 And Joab blew the trumpet, and the people returned from pursuing
+after Israel: for Joab held back the people.
+
+18:17 And they took Absalom, and cast him into a great pit in the
+wood, and laid a very great heap of stones upon him: and all Israel
+fled every one to his tent.
+
+18:18 Now Absalom in his lifetime had taken and reared up for himself
+a pillar, which is in the king's dale: for he said, I have no son to
+keep my name in remembrance: and he called the pillar after his own
+name: and it is called unto this day, Absalom's place.
+
+18:19 Then said Ahimaaz the son of Zadok, Let me now run, and bear the
+king tidings, how that the LORD hath avenged him of his enemies.
+
+18:20 And Joab said unto him, Thou shalt not bear tidings this day,
+but thou shalt bear tidings another day: but this day thou shalt bear
+no tidings, because the king's son is dead.
+
+18:21 Then said Joab to Cushi, Go tell the king what thou hast seen.
+And Cushi bowed himself unto Joab, and ran.
+
+18:22 Then said Ahimaaz the son of Zadok yet again to Joab, But
+howsoever, let me, I pray thee, also run after Cushi. And Joab said,
+Wherefore wilt thou run, my son, seeing that thou hast no tidings
+ready? 18:23 But howsoever, said he, let me run. And he said unto
+him, Run. Then Ahimaaz ran by the way of the plain, and overran Cushi.
+
+18:24 And David sat between the two gates: and the watchman went up to
+the roof over the gate unto the wall, and lifted up his eyes, and
+looked, and behold a man running alone.
+
+18:25 And the watchman cried, and told the king. And the king said, If
+he be alone, there is tidings in his mouth. And he came apace, and
+drew near.
+
+18:26 And the watchman saw another man running: and the watchman
+called unto the porter, and said, Behold another man running alone.
+And the king said, He also bringeth tidings.
+
+18:27 And the watchman said, Me thinketh the running of the foremost
+is like the running of Ahimaaz the son of Zadok. And the king said, He
+is a good man, and cometh with good tidings.
+
+18:28 And Ahimaaz called, and said unto the king, All is well. And he
+fell down to the earth upon his face before the king, and said,
+Blessed be the LORD thy God, which hath delivered up the men that
+lifted up their hand against my lord the king.
+
+18:29 And the king said, Is the young man Absalom safe? And Ahimaaz
+answered, When Joab sent the king's servant, and me thy servant, I saw
+a great tumult, but I knew not what it was.
+
+18:30 And the king said unto him, Turn aside, and stand here. And he
+turned aside, and stood still.
+
+18:31 And, behold, Cushi came; and Cushi said, Tidings, my lord the
+king: for the LORD hath avenged thee this day of all them that rose up
+against thee.
+
+18:32 And the king said unto Cushi, Is the young man Absalom safe? And
+Cushi answered, The enemies of my lord the king, and all that rise
+against thee to do thee hurt, be as that young man is.
+
+18:33 And the king was much moved, and went up to the chamber over the
+gate, and wept: and as he went, thus he said, O my son Absalom, my
+son, my son Absalom! would God I had died for thee, O Absalom, my son,
+my son! 19:1 And it was told Joab, Behold, the king weepeth and
+mourneth for Absalom.
+
+19:2 And the victory that day was turned into mourning unto all the
+people: for the people heard say that day how the king was grieved for
+his son.
+
+19:3 And the people gat them by stealth that day into the city, as
+people being ashamed steal away when they flee in battle.
+
+19:4 But the king covered his face, and the king cried with a loud
+voice, O my son Absalom, O Absalom, my son, my son! 19:5 And Joab
+came into the house to the king, and said, Thou hast shamed this day
+the faces of all thy servants, which this day have saved thy life, and
+the lives of thy sons and of thy daughters, and the lives of thy
+wives, and the lives of thy concubines; 19:6 In that thou lovest thine
+enemies, and hatest thy friends. For thou hast declared this day, that
+thou regardest neither princes nor servants: for this day I perceive,
+that if Absalom had lived, and all we had died this day, then it had
+pleased thee well.
+
+19:7 Now therefore arise, go forth, and speak comfortably unto thy
+servants: for I swear by the LORD, if thou go not forth, there will
+not tarry one with thee this night: and that will be worse unto thee
+than all the evil that befell thee from thy youth until now.
+
+19:8 Then the king arose, and sat in the gate. And they told unto all
+the people, saying, Behold, the king doth sit in the gate. And all the
+people came before the king: for Israel had fled every man to his
+tent.
+
+19:9 And all the people were at strife throughout all the tribes of
+Israel, saying, The king saved us out of the hand of our enemies, and
+he delivered us out of the hand of the Philistines; and now he is fled
+out of the land for Absalom.
+
+19:10 And Absalom, whom we anointed over us, is dead in battle. Now
+therefore why speak ye not a word of bringing the king back? 19:11
+And king David sent to Zadok and to Abiathar the priests, saying,
+Speak unto the elders of Judah, saying, Why are ye the last to bring
+the king back to his house? seeing the speech of all Israel is come to
+the king, even to his house.
+
+19:12 Ye are my brethren, ye are my bones and my flesh: wherefore then
+are ye the last to bring back the king? 19:13 And say ye to Amasa,
+Art thou not of my bone, and of my flesh? God do so to me, and more
+also, if thou be not captain of the host before me continually in the
+room of Joab.
+
+19:14 And he bowed the heart of all the men of Judah, even as the
+heart of one man; so that they sent this word unto the king, Return
+thou, and all thy servants.
+
+19:15 So the king returned, and came to Jordan. And Judah came to
+Gilgal, to go to meet the king, to conduct the king over Jordan.
+
+19:16 And Shimei the son of Gera, a Benjamite, which was of Bahurim,
+hasted and came down with the men of Judah to meet king David.
+
+19:17 And there were a thousand men of Benjamin with him, and Ziba the
+servant of the house of Saul, and his fifteen sons and his twenty
+servants with him; and they went over Jordan before the king.
+
+19:18 And there went over a ferry boat to carry over the king's
+household, and to do what he thought good. And Shimei the son of Gera
+fell down before the king, as he was come over Jordan; 19:19 And said
+unto the king, Let not my lord impute iniquity unto me, neither do
+thou remember that which thy servant did perversely the day that my
+lord the king went out of Jerusalem, that the king should take it to
+his heart.
+
+19:20 For thy servant doth know that I have sinned: therefore, behold,
+I am come the first this day of all the house of Joseph to go down to
+meet my lord the king.
+
+19:21 But Abishai the son of Zeruiah answered and said, Shall not
+Shimei be put to death for this, because he cursed the LORD's
+anointed? 19:22 And David said, What have I to do with you, ye sons
+of Zeruiah, that ye should this day be adversaries unto me? shall
+there any man be put to death this day in Israel? for do not I know
+that I am this day king over Israel? 19:23 Therefore the king said
+unto Shimei, Thou shalt not die. And the king sware unto him.
+
+19:24 And Mephibosheth the son of Saul came down to meet the king, and
+had neither dressed his feet, nor trimmed his beard, nor washed his
+clothes, from the day the king departed until the day he came again in
+peace.
+
+19:25 And it came to pass, when he was come to Jerusalem to meet the
+king, that the king said unto him, Wherefore wentest not thou with me,
+Mephibosheth? 19:26 And he answered, My lord, O king, my servant
+deceived me: for thy servant said, I will saddle me an ass, that I may
+ride thereon, and go to the king; because thy servant is lame.
+
+19:27 And he hath slandered thy servant unto my lord the king; but my
+lord the king is as an angel of God: do therefore what is good in
+thine eyes.
+
+19:28 For all of my father's house were but dead men before my lord
+the king: yet didst thou set thy servant among them that did eat at
+thine own table. What right therefore have I yet to cry any more unto
+the king? 19:29 And the king said unto him, Why speakest thou any
+more of thy matters? I have said, Thou and Ziba divide the land.
+
+19:30 And Mephibosheth said unto the king, Yea, let him take all,
+forasmuch as my lord the king is come again in peace unto his own
+house.
+
+19:31 And Barzillai the Gileadite came down from Rogelim, and went
+over Jordan with the king, to conduct him over Jordan.
+
+19:32 Now Barzillai was a very aged man, even fourscore years old: and
+he had provided the king of sustenance while he lay at Mahanaim; for
+he was a very great man.
+
+19:33 And the king said unto Barzillai, Come thou over with me, and I
+will feed thee with me in Jerusalem.
+
+19:34 And Barzillai said unto the king, How long have I to live, that
+I should go up with the king unto Jerusalem? 19:35 I am this day
+fourscore years old: and can I discern between good and evil? can thy
+servant taste what I eat or what I drink? can I hear any more the
+voice of singing men and singing women? wherefore then should thy
+servant be yet a burden unto my lord the king? 19:36 Thy servant will
+go a little way over Jordan with the king: and why should the king
+recompense it me with such a reward? 19:37 Let thy servant, I pray
+thee, turn back again, that I may die in mine own city, and be buried
+by the grave of my father and of my mother. But behold thy servant
+Chimham; let him go over with my lord the king; and do to him what
+shall seem good unto thee.
+
+19:38 And the king answered, Chimham shall go over with me, and I will
+do to him that which shall seem good unto thee: and whatsoever thou
+shalt require of me, that will I do for thee.
+
+19:39 And all the people went over Jordan. And when the king was come
+over, the king kissed Barzillai, and blessed him; and he returned unto
+his own place.
+
+19:40 Then the king went on to Gilgal, and Chimham went on with him:
+and all the people of Judah conducted the king, and also half the
+people of Israel.
+
+19:41 And, behold, all the men of Israel came to the king, and said
+unto the king, Why have our brethren the men of Judah stolen thee
+away, and have brought the king, and his household, and all David's
+men with him, over Jordan? 19:42 And all the men of Judah answered
+the men of Israel, Because the king is near of kin to us: wherefore
+then be ye angry for this matter? have we eaten at all of the king's
+cost? or hath he given us any gift? 19:43 And the men of Israel
+answered the men of Judah, and said, We have ten parts in the king,
+and we have also more right in David than ye: why then did ye despise
+us, that our advice should not be first had in bringing back our king?
+And the words of the men of Judah were fiercer than the words of the
+men of Israel.
+
+20:1 And there happened to be there a man of Belial, whose name was
+Sheba, the son of Bichri, a Benjamite: and he blew a trumpet, and
+said, We have no part in David, neither have we inheritance in the son
+of Jesse: every man to his tents, O Israel.
+
+20:2 So every man of Israel went up from after David, and followed
+Sheba the son of Bichri: but the men of Judah clave unto their king,
+from Jordan even to Jerusalem.
+
+20:3 And David came to his house at Jerusalem; and the king took the
+ten women his concubines, whom he had left to keep the house, and put
+them in ward, and fed them, but went not in unto them. So they were
+shut up unto the day of their death, living in widowhood.
+
+20:4 Then said the king to Amasa, Assemble me the men of Judah within
+three days, and be thou here present.
+
+20:5 So Amasa went to assemble the men of Judah: but he tarried longer
+than the set time which he had appointed him.
+
+20:6 And David said to Abishai, Now shall Sheba the son of Bichri do
+us more harm than did Absalom: take thou thy lord's servants, and
+pursue after him, lest he get him fenced cities, and escape us.
+
+20:7 And there went out after him Joab's men, and the Cherethites, and
+the Pelethites, and all the mighty men: and they went out of
+Jerusalem, to pursue after Sheba the son of Bichri.
+
+20:8 When they were at the great stone which is in Gibeon, Amasa went
+before them. And Joab's garment that he had put on was girded unto
+him, and upon it a girdle with a sword fastened upon his loins in the
+sheath thereof; and as he went forth it fell out.
+
+20:9 And Joab said to Amasa, Art thou in health, my brother? And Joab
+took Amasa by the beard with the right hand to kiss him.
+
+20:10 But Amasa took no heed to the sword that was in Joab's hand: so
+he smote him therewith in the fifth rib, and shed out his bowels to
+the ground, and struck him not again; and he died. So Joab and Abishai
+his brother pursued after Sheba the son of Bichri.
+
+20:11 And one of Joab's men stood by him, and said, He that favoureth
+Joab, and he that is for David, let him go after Joab.
+
+20:12 And Amasa wallowed in blood in the midst of the highway. And
+when the man saw that all the people stood still, he removed Amasa out
+of the highway into the field, and cast a cloth upon him, when he saw
+that every one that came by him stood still.
+
+20:13 When he was removed out of the highway, all the people went on
+after Joab, to pursue after Sheba the son of Bichri.
+
+20:14 And he went through all the tribes of Israel unto Abel, and to
+Bethmaachah, and all the Berites: and they were gathered together, and
+went also after him.
+
+20:15 And they came and besieged him in Abel of Bethmaachah, and they
+cast up a bank against the city, and it stood in the trench: and all
+the people that were with Joab battered the wall, to throw it down.
+
+20:16 Then cried a wise woman out of the city, Hear, hear; say, I pray
+you, unto Joab, Come near hither, that I may speak with thee.
+
+20:17 And when he was come near unto her, the woman said, Art thou
+Joab? And he answered, I am he. Then she said unto him, Hear the
+words of thine handmaid. And he answered, I do hear.
+
+20:18 Then she spake, saying, They were wont to speak in old time,
+saying, They shall surely ask counsel at Abel: and so they ended the
+matter.
+
+20:19 I am one of them that are peaceable and faithful in Israel: thou
+seekest to destroy a city and a mother in Israel: why wilt thou
+swallow up the inheritance of the LORD? 20:20 And Joab answered and
+said, Far be it, far be it from me, that I should swallow up or
+destroy.
+
+20:21 The matter is not so: but a man of mount Ephraim, Sheba the son
+of Bichri by name, hath lifted up his hand against the king, even
+against David: deliver him only, and I will depart from the city. And
+the woman said unto Joab, Behold, his head shall be thrown to thee
+over the wall.
+
+20:22 Then the woman went unto all the people in her wisdom. And they
+cut off the head of Sheba the son of Bichri, and cast it out to Joab.
+And he blew a trumpet, and they retired from the city, every man to
+his tent. And Joab returned to Jerusalem unto the king.
+
+20:23 Now Joab was over all the host of Israel: and Benaiah the son of
+Jehoiada was over the Cherethites and over the Pelethites: 20:24 And
+Adoram was over the tribute: and Jehoshaphat the son of Ahilud was
+recorder: 20:25 And Sheva was scribe: and Zadok and Abiathar were the
+priests: 20:26 And Ira also the Jairite was a chief ruler about David.
+
+21:1 Then there was a famine in the days of David three years, year
+after year; and David enquired of the LORD. And the LORD answered, It
+is for Saul, and for his bloody house, because he slew the Gibeonites.
+
+21:2 And the king called the Gibeonites, and said unto them; (now the
+Gibeonites were not of the children of Israel, but of the remnant of
+the Amorites; and the children of Israel had sworn unto them: and Saul
+sought to slay them in his zeal to the children of Israel and Judah.)
+21:3 Wherefore David said unto the Gibeonites, What shall I do for
+you? and wherewith shall I make the atonement, that ye may bless the
+inheritance of the LORD? 21:4 And the Gibeonites said unto him, We
+will have no silver nor gold of Saul, nor of his house; neither for us
+shalt thou kill any man in Israel. And he said, What ye shall say,
+that will I do for you.
+
+21:5 And they answered the king, The man that consumed us, and that
+devised against us that we should be destroyed from remaining in any
+of the coasts of Israel, 21:6 Let seven men of his sons be delivered
+unto us, and we will hang them up unto the LORD in Gibeah of Saul,
+whom the LORD did choose. And the king said, I will give them.
+
+21:7 But the king spared Mephibosheth, the son of Jonathan the son of
+Saul, because of the LORD's oath that was between them, between David
+and Jonathan the son of Saul.
+
+21:8 But the king took the two sons of Rizpah the daughter of Aiah,
+whom she bare unto Saul, Armoni and Mephibosheth; and the five sons of
+Michal the daughter of Saul, whom she brought up for Adriel the son of
+Barzillai the Meholathite: 21:9 And he delivered them into the hands
+of the Gibeonites, and they hanged them in the hill before the LORD:
+and they fell all seven together, and were put to death in the days of
+harvest, in the first days, in the beginning of barley harvest.
+
+21:10 And Rizpah the daughter of Aiah took sackcloth, and spread it
+for her upon the rock, from the beginning of harvest until water
+dropped upon them out of heaven, and suffered neither the birds of the
+air to rest on them by day, nor the beasts of the field by night.
+
+21:11 And it was told David what Rizpah the daughter of Aiah, the
+concubine of Saul, had done.
+
+21:12 And David went and took the bones of Saul and the bones of
+Jonathan his son from the men of Jabeshgilead, which had stolen them
+from the street of Bethshan, where the Philistines had hanged them,
+when the Philistines had slain Saul in Gilboa: 21:13 And he brought up
+from thence the bones of Saul and the bones of Jonathan his son; and
+they gathered the bones of them that were hanged.
+
+21:14 And the bones of Saul and Jonathan his son buried they in the
+country of Benjamin in Zelah, in the sepulchre of Kish his father: and
+they performed all that the king commanded. And after that God was
+intreated for the land.
+
+21:15 Moreover the Philistines had yet war again with Israel; and
+David went down, and his servants with him, and fought against the
+Philistines: and David waxed faint.
+
+21:16 And Ishbibenob, which was of the sons of the giant, the weight
+of whose spear weighed three hundred shekels of brass in weight, he
+being girded with a new sword, thought to have slain David.
+
+21:17 But Abishai the son of Zeruiah succoured him, and smote the
+Philistine, and killed him. Then the men of David sware unto him,
+saying, Thou shalt go no more out with us to battle, that thou quench
+not the light of Israel.
+
+21:18 And it came to pass after this, that there was again a battle
+with the Philistines at Gob: then Sibbechai the Hushathite slew Saph,
+which was of the sons of the giant.
+
+21:19 And there was again a battle in Gob with the Philistines, where
+Elhanan the son of Jaareoregim, a Bethlehemite, slew the brother of
+Goliath the Gittite, the staff of whose spear was like a weaver's
+beam.
+
+21:20 And there was yet a battle in Gath, where was a man of great
+stature, that had on every hand six fingers, and on every foot six
+toes, four and twenty in number; and he also was born to the giant.
+
+21:21 And when he defied Israel, Jonathan the son of Shimeah the
+brother of David slew him.
+
+21:22 These four were born to the giant in Gath, and fell by the hand
+of David, and by the hand of his servants.
+
+22:1 And David spake unto the LORD the words of this song in the day
+that the LORD had delivered him out of the hand of all his enemies,
+and out of the hand of Saul: 22:2 And he said, The LORD is my rock,
+and my fortress, and my deliverer; 22:3 The God of my rock; in him
+will I trust: he is my shield, and the horn of my salvation, my high
+tower, and my refuge, my saviour; thou savest me from violence.
+
+22:4 I will call on the LORD, who is worthy to be praised: so shall I
+be saved from mine enemies.
+
+22:5 When the waves of death compassed me, the floods of ungodly men
+made me afraid; 22:6 The sorrows of hell compassed me about; the
+snares of death prevented me; 22:7 In my distress I called upon the
+LORD, and cried to my God: and he did hear my voice out of his temple,
+and my cry did enter into his ears.
+
+22:8 Then the earth shook and trembled; the foundations of heaven
+moved and shook, because he was wroth.
+
+22:9 There went up a smoke out of his nostrils, and fire out of his
+mouth devoured: coals were kindled by it.
+
+22:10 He bowed the heavens also, and came down; and darkness was under
+his feet.
+
+22:11 And he rode upon a cherub, and did fly: and he was seen upon the
+wings of the wind.
+
+22:12 And he made darkness pavilions round about him, dark waters, and
+thick clouds of the skies.
+
+22:13 Through the brightness before him were coals of fire kindled.
+
+22:14 The LORD thundered from heaven, and the most High uttered his
+voice.
+
+22:15 And he sent out arrows, and scattered them; lightning, and
+discomfited them.
+
+22:16 And the channels of the sea appeared, the foundations of the
+world were discovered, at the rebuking of the LORD, at the blast of
+the breath of his nostrils.
+
+22:17 He sent from above, he took me; he drew me out of many waters;
+22:18 He delivered me from my strong enemy, and from them that hated
+me: for they were too strong for me.
+
+22:19 They prevented me in the day of my calamity: but the LORD was my
+stay.
+
+22:20 He brought me forth also into a large place: he delivered me,
+because he delighted in me.
+
+22:21 The LORD rewarded me according to my righteousness: according to
+the cleanness of my hands hath he recompensed me.
+
+22:22 For I have kept the ways of the LORD, and have not wickedly
+departed from my God.
+
+22:23 For all his judgments were before me: and as for his statutes, I
+did not depart from them.
+
+22:24 I was also upright before him, and have kept myself from mine
+iniquity.
+
+22:25 Therefore the LORD hath recompensed me according to my
+righteousness; according to my cleanness in his eye sight.
+
+22:26 With the merciful thou wilt shew thyself merciful, and with the
+upright man thou wilt shew thyself upright.
+
+22:27 With the pure thou wilt shew thyself pure; and with the froward
+thou wilt shew thyself unsavoury.
+
+22:28 And the afflicted people thou wilt save: but thine eyes are upon
+the haughty, that thou mayest bring them down.
+
+22:29 For thou art my lamp, O LORD: and the LORD will lighten my
+darkness.
+
+22:30 For by thee I have run through a troop: by my God have I leaped
+over a wall.
+
+22:31 As for God, his way is perfect; the word of the LORD is tried:
+he is a buckler to all them that trust in him.
+
+22:32 For who is God, save the LORD? and who is a rock, save our God?
+22:33 God is my strength and power: and he maketh my way perfect.
+
+22:34 He maketh my feet like hinds' feet: and setteth me upon my high
+places.
+
+22:35 He teacheth my hands to war; so that a bow of steel is broken by
+mine arms.
+
+22:36 Thou hast also given me the shield of thy salvation: and thy
+gentleness hath made me great.
+
+22:37 Thou hast enlarged my steps under me; so that my feet did not
+slip.
+
+22:38 I have pursued mine enemies, and destroyed them; and turned not
+again until I had consumed them.
+
+22:39 And I have consumed them, and wounded them, that they could not
+arise: yea, they are fallen under my feet.
+
+22:40 For thou hast girded me with strength to battle: them that rose
+up against me hast thou subdued under me.
+
+22:41 Thou hast also given me the necks of mine enemies, that I might
+destroy them that hate me.
+
+22:42 They looked, but there was none to save; even unto the LORD, but
+he answered them not.
+
+22:43 Then did I beat them as small as the dust of the earth, I did
+stamp them as the mire of the street, and did spread them abroad.
+
+22:44 Thou also hast delivered me from the strivings of my people,
+thou hast kept me to be head of the heathen: a people which I knew not
+shall serve me.
+
+22:45 Strangers shall submit themselves unto me: as soon as they hear,
+they shall be obedient unto me.
+
+22:46 Strangers shall fade away, and they shall be afraid out of their
+close places.
+
+22:47 The LORD liveth; and blessed be my rock; and exalted be the God
+of the rock of my salvation.
+
+22:48 It is God that avengeth me, and that bringeth down the people
+under me.
+
+22:49 And that bringeth me forth from mine enemies: thou also hast
+lifted me up on high above them that rose up against me: thou hast
+delivered me from the violent man.
+
+22:50 Therefore I will give thanks unto thee, O LORD, among the
+heathen, and I will sing praises unto thy name.
+
+22:51 He is the tower of salvation for his king: and sheweth mercy to
+his anointed, unto David, and to his seed for evermore.
+
+23:1 Now these be the last words of David. David the son of Jesse
+said, and the man who was raised up on high, the anointed of the God
+of Jacob, and the sweet psalmist of Israel, said, 23:2 The Spirit of
+the LORD spake by me, and his word was in my tongue.
+
+23:3 The God of Israel said, the Rock of Israel spake to me, He that
+ruleth over men must be just, ruling in the fear of God.
+
+23:4 And he shall be as the light of the morning, when the sun riseth,
+even a morning without clouds; as the tender grass springing out of
+the earth by clear shining after rain.
+
+23:5 Although my house be not so with God; yet he hath made with me an
+everlasting covenant, ordered in all things, and sure: for this is all
+my salvation, and all my desire, although he make it not to grow.
+
+23:6 But the sons of Belial shall be all of them as thorns thrust
+away, because they cannot be taken with hands: 23:7 But the man that
+shall touch them must be fenced with iron and the staff of a spear;
+and they shall be utterly burned with fire in the same place.
+
+23:8 These be the names of the mighty men whom David had: The
+Tachmonite that sat in the seat, chief among the captains; the same
+was Adino the Eznite: he lift up his spear against eight hundred, whom
+he slew at one time.
+
+23:9 And after him was Eleazar the son of Dodo the Ahohite, one of the
+three mighty men with David, when they defied the Philistines that
+were there gathered together to battle, and the men of Israel were
+gone away: 23:10 He arose, and smote the Philistines until his hand
+was weary, and his hand clave unto the sword: and the LORD wrought a
+great victory that day; and the people returned after him only to
+spoil.
+
+23:11 And after him was Shammah the son of Agee the Hararite. And the
+Philistines were gathered together into a troop, where was a piece of
+ground full of lentiles: and the people fled from the Philistines.
+
+23:12 But he stood in the midst of the ground, and defended it, and
+slew the Philistines: and the LORD wrought a great victory.
+
+23:13 And three of the thirty chief went down, and came to David in
+the harvest time unto the cave of Adullam: and the troop of the
+Philistines pitched in the valley of Rephaim.
+
+23:14 And David was then in an hold, and the garrison of the
+Philistines was then in Bethlehem.
+
+23:15 And David longed, and said, Oh that one would give me drink of
+the water of the well of Bethlehem, which is by the gate! 23:16 And
+the three mighty men brake through the host of the Philistines, and
+drew water out of the well of Bethlehem, that was by the gate, and
+took it, and brought it to David: nevertheless he would not drink
+thereof, but poured it out unto the LORD.
+
+23:17 And he said, Be it far from me, O LORD, that I should do this:
+is not this the blood of the men that went in jeopardy of their lives?
+therefore he would not drink it. These things did these three mighty
+men.
+
+23:18 And Abishai, the brother of Joab, the son of Zeruiah, was chief
+among three. And he lifted up his spear against three hundred, and
+slew them, and had the name among three.
+
+23:19 Was he not most honourable of three? therefore he was their
+captain: howbeit he attained not unto the first three.
+
+23:20 And Benaiah the son of Jehoiada, the son of a valiant man, of
+Kabzeel, who had done many acts, he slew two lionlike men of Moab: he
+went down also and slew a lion in the midst of a pit in time of snow:
+23:21 And he slew an Egyptian, a goodly man: and the Egyptian had a
+spear in his hand; but he went down to him with a staff, and plucked
+the spear out of the Egyptian's hand, and slew him with his own spear.
+
+23:22 These things did Benaiah the son of Jehoiada, and had the name
+among three mighty men.
+
+23:23 He was more honourable than the thirty, but he attained not to
+the first three. And David set him over his guard.
+
+23:24 Asahel the brother of Joab was one of the thirty; Elhanan the
+son of Dodo of Bethlehem, 23:25 Shammah the Harodite, Elika the
+Harodite, 23:26 Helez the Paltite, Ira the son of Ikkesh the Tekoite,
+23:27 Abiezer the Anethothite, Mebunnai the Hushathite, 23:28 Zalmon
+the Ahohite, Maharai the Netophathite, 23:29 Heleb the son of Baanah,
+a Netophathite, Ittai the son of Ribai out of Gibeah of the children
+of Benjamin, 23:30 Benaiah the Pirathonite, Hiddai of the brooks of
+Gaash, 23:31 Abialbon the Arbathite, Azmaveth the Barhumite, 23:32
+Eliahba the Shaalbonite, of the sons of Jashen, Jonathan, 23:33
+Shammah the Hararite, Ahiam the son of Sharar the Hararite, 23:34
+Eliphelet the son of Ahasbai, the son of the Maachathite, Eliam the
+son of Ahithophel the Gilonite, 23:35 Hezrai the Carmelite, Paarai the
+Arbite, 23:36 Igal the son of Nathan of Zobah, Bani the Gadite, 23:37
+Zelek the Ammonite, Nahari the Beerothite, armourbearer to Joab the
+son of Zeruiah, 23:38 Ira an Ithrite, Gareb an Ithrite, 23:39 Uriah
+the Hittite: thirty and seven in all.
+
+24:1 And again the anger of the LORD was kindled against Israel, and
+he moved David against them to say, Go, number Israel and Judah.
+
+24:2 For the king said to Joab the captain of the host, which was with
+him, Go now through all the tribes of Israel, from Dan even to
+Beersheba, and number ye the people, that I may know the number of the
+people.
+
+24:3 And Joab said unto the king, Now the LORD thy God add unto the
+people, how many soever they be, an hundredfold, and that the eyes of
+my lord the king may see it: but why doth my lord the king delight in
+this thing? 24:4 Notwithstanding the king's word prevailed against
+Joab, and against the captains of the host. And Joab and the captains
+of the host went out from the presence of the king, to number the
+people of Israel.
+
+24:5 And they passed over Jordan, and pitched in Aroer, on the right
+side of the city that lieth in the midst of the river of Gad, and
+toward Jazer: 24:6 Then they came to Gilead, and to the land of
+Tahtimhodshi; and they came to Danjaan, and about to Zidon, 24:7 And
+came to the strong hold of Tyre, and to all the cities of the Hivites,
+and of the Canaanites: and they went out to the south of Judah, even
+to Beersheba.
+
+24:8 So when they had gone through all the land, they came to
+Jerusalem at the end of nine months and twenty days.
+
+24:9 And Joab gave up the sum of the number of the people unto the
+king: and there were in Israel eight hundred thousand valiant men that
+drew the sword; and the men of Judah were five hundred thousand men.
+
+24:10 And David's heart smote him after that he had numbered the
+people.
+
+And David said unto the LORD, I have sinned greatly in that I have
+done: and now, I beseech thee, O LORD, take away the iniquity of thy
+servant; for I have done very foolishly.
+
+24:11 For when David was up in the morning, the word of the LORD came
+unto the prophet Gad, David's seer, saying, 24:12 Go and say unto
+David, Thus saith the LORD, I offer thee three things; choose thee one
+of them, that I may do it unto thee.
+
+24:13 So Gad came to David, and told him, and said unto him, Shall
+seven years of famine come unto thee in thy land? or wilt thou flee
+three months before thine enemies, while they pursue thee? or that
+there be three days' pestilence in thy land? now advise, and see what
+answer I shall return to him that sent me.
+
+24:14 And David said unto Gad, I am in a great strait: let us fall now
+into the hand of the LORD; for his mercies are great: and let me not
+fall into the hand of man.
+
+24:15 So the LORD sent a pestilence upon Israel from the morning even
+to the time appointed: and there died of the people from Dan even to
+Beersheba seventy thousand men.
+
+24:16 And when the angel stretched out his hand upon Jerusalem to
+destroy it, the LORD repented him of the evil, and said to the angel
+that destroyed the people, It is enough: stay now thine hand. And the
+angel of the LORD was by the threshingplace of Araunah the Jebusite.
+
+24:17 And David spake unto the LORD when he saw the angel that smote
+the people, and said, Lo, I have sinned, and I have done wickedly: but
+these sheep, what have they done? let thine hand, I pray thee, be
+against me, and against my father's house.
+
+24:18 And Gad came that day to David, and said unto him, Go up, rear
+an altar unto the LORD in the threshingfloor of Araunah the Jebusite.
+
+24:19 And David, according to the saying of Gad, went up as the LORD
+commanded.
+
+24:20 And Araunah looked, and saw the king and his servants coming on
+toward him: and Araunah went out, and bowed himself before the king on
+his face upon the ground.
+
+24:21 And Araunah said, Wherefore is my lord the king come to his
+servant? And David said, To buy the threshingfloor of thee, to build
+an altar unto the LORD, that the plague may be stayed from the people.
+
+24:22 And Araunah said unto David, Let my lord the king take and offer
+up what seemeth good unto him: behold, here be oxen for burnt
+sacrifice, and threshing instruments and other instruments of the oxen
+for wood.
+
+24:23 All these things did Araunah, as a king, give unto the king. And
+Araunah said unto the king, The LORD thy God accept thee.
+
+24:24 And the king said unto Araunah, Nay; but I will surely buy it of
+thee at a price: neither will I offer burnt offerings unto the LORD my
+God of that which doth cost me nothing. So David bought the
+threshingfloor and the oxen for fifty shekels of silver.
+
+24:25 And David built there an altar unto the LORD, and offered burnt
+offerings and peace offerings. So the LORD was intreated for the land,
+and the plague was stayed from Israel.
+
+
+
+
+The First Book of the Kings
+
+Commonly Called:
+
+The Third Book of the Kings
+
+
+1:1 Now king David was old and stricken in years; and they covered
+him with clothes, but he gat no heat.
+
+1:2 Wherefore his servants said unto him, Let there be sought for my
+lord the king a young virgin: and let her stand before the king, and
+let her cherish him, and let her lie in thy bosom, that my lord the
+king may get heat.
+
+1:3 So they sought for a fair damsel throughout all the coasts of
+Israel, and found Abishag a Shunammite, and brought her to the king.
+
+1:4 And the damsel was very fair, and cherished the king, and
+ministered to him: but the king knew her not.
+
+1:5 Then Adonijah the son of Haggith exalted himself, saying, I will
+be king: and he prepared him chariots and horsemen, and fifty men to
+run before him.
+
+1:6 And his father had not displeased him at any time in saying, Why
+hast thou done so? and he also was a very goodly man; and his mother
+bare him after Absalom.
+
+1:7 And he conferred with Joab the son of Zeruiah, and with Abiathar
+the priest: and they following Adonijah helped him.
+
+1:8 But Zadok the priest, and Benaiah the son of Jehoiada, and Nathan
+the prophet, and Shimei, and Rei, and the mighty men which belonged to
+David, were not with Adonijah.
+
+1:9 And Adonijah slew sheep and oxen and fat cattle by the stone of
+Zoheleth, which is by Enrogel, and called all his brethren the king's
+sons, and all the men of Judah the king's servants: 1:10 But Nathan
+the prophet, and Benaiah, and the mighty men, and Solomon his brother,
+he called not.
+
+1:11 Wherefore Nathan spake unto Bathsheba the mother of Solomon,
+saying, Hast thou not heard that Adonijah the son of Haggith doth
+reign, and David our lord knoweth it not? 1:12 Now therefore come,
+let me, I pray thee, give thee counsel, that thou mayest save thine
+own life, and the life of thy son Solomon.
+
+1:13 Go and get thee in unto king David, and say unto him, Didst not
+thou, my lord, O king, swear unto thine handmaid, saying, Assuredly
+Solomon thy son shall reign after me, and he shall sit upon my throne?
+why then doth Adonijah reign? 1:14 Behold, while thou yet talkest
+there with the king, I also will come in after thee, and confirm thy
+words.
+
+1:15 And Bathsheba went in unto the king into the chamber: and the
+king was very old; and Abishag the Shunammite ministered unto the
+king.
+
+1:16 And Bathsheba bowed, and did obeisance unto the king. And the
+king said, What wouldest thou? 1:17 And she said unto him, My lord,
+thou swarest by the LORD thy God unto thine handmaid, saying,
+Assuredly Solomon thy son shall reign after me, and he shall sit upon
+my throne.
+
+1:18 And now, behold, Adonijah reigneth; and now, my lord the king,
+thou knowest it not: 1:19 And he hath slain oxen and fat cattle and
+sheep in abundance, and hath called all the sons of the king, and
+Abiathar the priest, and Joab the captain of the host: but Solomon thy
+servant hath he not called.
+
+1:20 And thou, my lord, O king, the eyes of all Israel are upon thee,
+that thou shouldest tell them who shall sit on the throne of my lord
+the king after him.
+
+1:21 Otherwise it shall come to pass, when my lord the king shall
+sleep with his fathers, that I and my son Solomon shall be counted
+offenders.
+
+1:22 And, lo, while she yet talked with the king, Nathan the prophet
+also came in.
+
+1:23 And they told the king, saying, Behold Nathan the prophet. And
+when he was come in before the king, he bowed himself before the king
+with his face to the ground.
+
+1:24 And Nathan said, My lord, O king, hast thou said, Adonijah shall
+reign after me, and he shall sit upon my throne? 1:25 For he is gone
+down this day, and hath slain oxen and fat cattle and sheep in
+abundance, and hath called all the king's sons, and the captains of
+the host, and Abiathar the priest; and, behold, they eat and drink
+before him, and say, God save king Adonijah.
+
+1:26 But me, even me thy servant, and Zadok the priest, and Benaiah
+the son of Jehoiada, and thy servant Solomon, hath he not called.
+
+1:27 Is this thing done by my lord the king, and thou hast not shewed
+it unto thy servant, who should sit on the throne of my lord the king
+after him? 1:28 Then king David answered and said, Call me Bathsheba.
+And she came into the king's presence, and stood before the king.
+
+1:29 And the king sware, and said, As the LORD liveth, that hath
+redeemed my soul out of all distress, 1:30 Even as I sware unto thee
+by the LORD God of Israel, saying, Assuredly Solomon thy son shall
+reign after me, and he shall sit upon my throne in my stead; even so
+will I certainly do this day.
+
+1:31 Then Bathsheba bowed with her face to the earth, and did
+reverence to the king, and said, Let my lord king David live for ever.
+
+1:32 And king David said, Call me Zadok the priest, and Nathan the
+prophet, and Benaiah the son of Jehoiada. And they came before the
+king.
+
+1:33 The king also said unto them, Take with you the servants of your
+lord, and cause Solomon my son to ride upon mine own mule, and bring
+him down to Gihon: 1:34 And let Zadok the priest and Nathan the
+prophet anoint him there king over Israel: and blow ye with the
+trumpet, and say, God save king Solomon.
+
+1:35 Then ye shall come up after him, that he may come and sit upon my
+throne; for he shall be king in my stead: and I have appointed him to
+be ruler over Israel and over Judah.
+
+1:36 And Benaiah the son of Jehoiada answered the king, and said,
+Amen: the LORD God of my lord the king say so too.
+
+1:37 As the LORD hath been with my lord the king, even so be he with
+Solomon, and make his throne greater than the throne of my lord king
+David.
+
+1:38 So Zadok the priest, and Nathan the prophet, and Benaiah the son
+of Jehoiada, and the Cherethites, and the Pelethites, went down, and
+caused Solomon to ride upon king David's mule, and brought him to
+Gihon.
+
+1:39 And Zadok the priest took an horn of oil out of the tabernacle,
+and anointed Solomon. And they blew the trumpet; and all the people
+said, God save king Solomon.
+
+1:40 And all the people came up after him, and the people piped with
+pipes, and rejoiced with great joy, so that the earth rent with the
+sound of them.
+
+1:41 And Adonijah and all the guests that were with him heard it as
+they had made an end of eating. And when Joab heard the sound of the
+trumpet, he said, Wherefore is this noise of the city being in an
+uproar? 1:42 And while he yet spake, behold, Jonathan the son of
+Abiathar the priest came; and Adonijah said unto him, Come in; for
+thou art a valiant man, and bringest good tidings.
+
+1:43 And Jonathan answered and said to Adonijah, Verily our lord king
+David hath made Solomon king.
+
+1:44 And the king hath sent with him Zadok the priest, and Nathan the
+prophet, and Benaiah the son of Jehoiada, and the Cherethites, and the
+Pelethites, and they have caused him to ride upon the king's mule:
+1:45 And Zadok the priest and Nathan the prophet have anointed him
+king in Gihon: and they are come up from thence rejoicing, so that the
+city rang again. This is the noise that ye have heard.
+
+1:46 And also Solomon sitteth on the throne of the kingdom.
+
+1:47 And moreover the king's servants came to bless our lord king
+David, saying, God make the name of Solomon better than thy name, and
+make his throne greater than thy throne. And the king bowed himself
+upon the bed.
+
+1:48 And also thus said the king, Blessed be the LORD God of Israel,
+which hath given one to sit on my throne this day, mine eyes even
+seeing it.
+
+1:49 And all the guests that were with Adonijah were afraid, and rose
+up, and went every man his way.
+
+1:50 And Adonijah feared because of Solomon, and arose, and went, and
+caught hold on the horns of the altar.
+
+1:51 And it was told Solomon, saying, Behold, Adonijah feareth king
+Solomon: for, lo, he hath caught hold on the horns of the altar,
+saying, Let king Solomon swear unto me today that he will not slay his
+servant with the sword.
+
+1:52 And Solomon said, If he will shew himself a worthy man, there
+shall not an hair of him fall to the earth: but if wickedness shall be
+found in him, he shall die.
+
+1:53 So king Solomon sent, and they brought him down from the altar.
+And he came and bowed himself to king Solomon: and Solomon said unto
+him, Go to thine house.
+
+2:1 Now the days of David drew nigh that he should die; and he charged
+Solomon his son, saying, 2:2 I go the way of all the earth: be thou
+strong therefore, and shew thyself a man; 2:3 And keep the charge of
+the LORD thy God, to walk in his ways, to keep his statutes, and his
+commandments, and his judgments, and his testimonies, as it is written
+in the law of Moses, that thou mayest prosper in all that thou doest,
+and whithersoever thou turnest thyself: 2:4 That the LORD may continue
+his word which he spake concerning me, saying, If thy children take
+heed to their way, to walk before me in truth with all their heart and
+with all their soul, there shall not fail thee (said he) a man on the
+throne of Israel.
+
+2:5 Moreover thou knowest also what Joab the son of Zeruiah did to me,
+and what he did to the two captains of the hosts of Israel, unto Abner
+the son of Ner, and unto Amasa the son of Jether, whom he slew, and
+shed the blood of war in peace, and put the blood of war upon his
+girdle that was about his loins, and in his shoes that were on his
+feet.
+
+2:6 Do therefore according to thy wisdom, and let not his hoar head go
+down to the grave in peace.
+
+2:7 But shew kindness unto the sons of Barzillai the Gileadite, and
+let them be of those that eat at thy table: for so they came to me
+when I fled because of Absalom thy brother.
+
+2:8 And, behold, thou hast with thee Shimei the son of Gera, a
+Benjamite of Bahurim, which cursed me with a grievous curse in the day
+when I went to Mahanaim: but he came down to meet me at Jordan, and I
+sware to him by the LORD, saying, I will not put thee to death with
+the sword.
+
+2:9 Now therefore hold him not guiltless: for thou art a wise man, and
+knowest what thou oughtest to do unto him; but his hoar head bring
+thou down to the grave with blood.
+
+2:10 So David slept with his fathers, and was buried in the city of
+David.
+
+2:11 And the days that David reigned over Israel were forty years:
+seven years reigned he in Hebron, and thirty and three years reigned
+he in Jerusalem.
+
+2:12 Then sat Solomon upon the throne of David his father; and his
+kingdom was established greatly.
+
+2:13 And Adonijah the son of Haggith came to Bathsheba the mother of
+Solomon. And she said, Comest thou peaceably? And he said, Peaceably.
+
+2:14 He said moreover, I have somewhat to say unto thee. And she said,
+Say on.
+
+2:15 And he said, Thou knowest that the kingdom was mine, and that all
+Israel set their faces on me, that I should reign: howbeit the kingdom
+is turned about, and is become my brother's: for it was his from the
+LORD.
+
+2:16 And now I ask one petition of thee, deny me not. And she said
+unto him, Say on.
+
+2:17 And he said, Speak, I pray thee, unto Solomon the king, (for he
+will not say thee nay,) that he give me Abishag the Shunammite to
+wife.
+
+2:18 And Bathsheba said, Well; I will speak for thee unto the king.
+
+2:19 Bathsheba therefore went unto king Solomon, to speak unto him for
+Adonijah. And the king rose up to meet her, and bowed himself unto
+her, and sat down on his throne, and caused a seat to be set for the
+king's mother; and she sat on his right hand.
+
+2:20 Then she said, I desire one small petition of thee; I pray thee,
+say me not nay. And the king said unto her, Ask on, my mother: for I
+will not say thee nay.
+
+2:21 And she said, Let Abishag the Shunammite be given to Adonijah thy
+brother to wife.
+
+2:22 And king Solomon answered and said unto his mother, And why dost
+thou ask Abishag the Shunammite for Adonijah? ask for him the kingdom
+also; for he is mine elder brother; even for him, and for Abiathar the
+priest, and for Joab the son of Zeruiah.
+
+2:23 Then king Solomon sware by the LORD, saying, God do so to me, and
+more also, if Adonijah have not spoken this word against his own life.
+
+2:24 Now therefore, as the LORD liveth, which hath established me, and
+set me on the throne of David my father, and who hath made me an
+house, as he promised, Adonijah shall be put to death this day.
+
+2:25 And king Solomon sent by the hand of Benaiah the son of Jehoiada;
+and he fell upon him that he died.
+
+2:26 And unto Abiathar the priest said the king, Get thee to Anathoth,
+unto thine own fields; for thou art worthy of death: but I will not at
+this time put thee to death, because thou barest the ark of the LORD
+God before David my father, and because thou hast been afflicted in
+all wherein my father was afflicted.
+
+2:27 So Solomon thrust out Abiathar from being priest unto the LORD;
+that he might fulfil the word of the LORD, which he spake concerning
+the house of Eli in Shiloh.
+
+2:28 Then tidings came to Joab: for Joab had turned after Adonijah,
+though he turned not after Absalom. And Joab fled unto the tabernacle
+of the LORD, and caught hold on the horns of the altar.
+
+2:29 And it was told king Solomon that Joab was fled unto the
+tabernacle of the LORD; and, behold, he is by the altar. Then Solomon
+sent Benaiah the son of Jehoiada, saying, Go, fall upon him.
+
+2:30 And Benaiah came to the tabernacle of the LORD, and said unto
+him, Thus saith the king, Come forth. And he said, Nay; but I will die
+here. And Benaiah brought the king word again, saying, Thus said Joab,
+and thus he answered me.
+
+2:31 And the king said unto him, Do as he hath said, and fall upon
+him, and bury him; that thou mayest take away the innocent blood,
+which Joab shed, from me, and from the house of my father.
+
+2:32 And the LORD shall return his blood upon his own head, who fell
+upon two men more righteous and better than he, and slew them with the
+sword, my father David not knowing thereof, to wit, Abner the son of
+Ner, captain of the host of Israel, and Amasa the son of Jether,
+captain of the host of Judah.
+
+2:33 Their blood shall therefore return upon the head of Joab, and
+upon the head of his seed for ever: but upon David, and upon his seed,
+and upon his house, and upon his throne, shall there be peace for ever
+from the LORD.
+
+2:34 So Benaiah the son of Jehoiada went up, and fell upon him, and
+slew him: and he was buried in his own house in the wilderness.
+
+2:35 And the king put Benaiah the son of Jehoiada in his room over the
+host: and Zadok the priest did the king put in the room of Abiathar.
+
+2:36 And the king sent and called for Shimei, and said unto him, Build
+thee an house in Jerusalem, and dwell there, and go not forth thence
+any whither.
+
+2:37 For it shall be, that on the day thou goest out, and passest over
+the brook Kidron, thou shalt know for certain that thou shalt surely
+die: thy blood shall be upon thine own head.
+
+2:38 And Shimei said unto the king, The saying is good: as my lord the
+king hath said, so will thy servant do. And Shimei dwelt in Jerusalem
+many days.
+
+2:39 And it came to pass at the end of three years, that two of the
+servants of Shimei ran away unto Achish son of Maachah king of Gath.
+And they told Shimei, saying, Behold, thy servants be in Gath.
+
+2:40 And Shimei arose, and saddled his ass, and went to Gath to Achish
+to seek his servants: and Shimei went, and brought his servants from
+Gath.
+
+2:41 And it was told Solomon that Shimei had gone from Jerusalem to
+Gath, and was come again.
+
+2:42 And the king sent and called for Shimei, and said unto him, Did I
+not make thee to swear by the LORD, and protested unto thee, saying,
+Know for a certain, on the day thou goest out, and walkest abroad any
+whither, that thou shalt surely die? and thou saidst unto me, The word
+that I have heard is good.
+
+2:43 Why then hast thou not kept the oath of the LORD, and the
+commandment that I have charged thee with? 2:44 The king said
+moreover to Shimei, Thou knowest all the wickedness which thine heart
+is privy to, that thou didst to David my father: therefore the LORD
+shall return thy wickedness upon thine own head; 2:45 And king Solomon
+shall be blessed, and the throne of David shall be established before
+the LORD for ever.
+
+2:46 So the king commanded Benaiah the son of Jehoiada; which went
+out, and fell upon him, that he died. And the kingdom was established
+in the hand of Solomon.
+
+3:1 And Solomon made affinity with Pharaoh king of Egypt, and took
+Pharaoh's daughter, and brought her into the city of David, until he
+had made an end of building his own house, and the house of the LORD,
+and the wall of Jerusalem round about.
+
+3:2 Only the people sacrificed in high places, because there was no
+house built unto the name of the LORD, until those days.
+
+3:3 And Solomon loved the LORD, walking in the statutes of David his
+father: only he sacrificed and burnt incense in high places.
+
+3:4 And the king went to Gibeon to sacrifice there; for that was the
+great high place: a thousand burnt offerings did Solomon offer upon
+that altar.
+
+3:5 In Gibeon the LORD appeared to Solomon in a dream by night: and
+God said, Ask what I shall give thee.
+
+3:6 And Solomon said, Thou hast shewed unto thy servant David my
+father great mercy, according as he walked before thee in truth, and
+in righteousness, and in uprightness of heart with thee; and thou hast
+kept for him this great kindness, that thou hast given him a son to
+sit on his throne, as it is this day.
+
+3:7 And now, O LORD my God, thou hast made thy servant king instead of
+David my father: and I am but a little child: I know not how to go out
+or come in.
+
+3:8 And thy servant is in the midst of thy people which thou hast
+chosen, a great people, that cannot be numbered nor counted for
+multitude.
+
+3:9 Give therefore thy servant an understanding heart to judge thy
+people, that I may discern between good and bad: for who is able to
+judge this thy so great a people? 3:10 And the speech pleased the
+LORD, that Solomon had asked this thing.
+
+3:11 And God said unto him, Because thou hast asked this thing, and
+hast not asked for thyself long life; neither hast asked riches for
+thyself, nor hast asked the life of thine enemies; but hast asked for
+thyself understanding to discern judgment; 3:12 Behold, I have done
+according to thy words: lo, I have given thee a wise and an
+understanding heart; so that there was none like thee before thee,
+neither after thee shall any arise like unto thee.
+
+3:13 And I have also given thee that which thou hast not asked, both
+riches, and honour: so that there shall not be any among the kings
+like unto thee all thy days.
+
+3:14 And if thou wilt walk in my ways, to keep my statutes and my
+commandments, as thy father David did walk, then I will lengthen thy
+days.
+
+3:15 And Solomon awoke; and, behold, it was a dream. And he came to
+Jerusalem, and stood before the ark of the covenant of the LORD, and
+offered up burnt offerings, and offered peace offerings, and made a
+feast to all his servants.
+
+3:16 Then came there two women, that were harlots, unto the king, and
+stood before him.
+
+3:17 And the one woman said, O my lord, I and this woman dwell in one
+house; and I was delivered of a child with her in the house.
+
+3:18 And it came to pass the third day after that I was delivered,
+that this woman was delivered also: and we were together; there was no
+stranger with us in the house, save we two in the house.
+
+3:19 And this woman's child died in the night; because she overlaid
+it.
+
+3:20 And she arose at midnight, and took my son from beside me, while
+thine handmaid slept, and laid it in her bosom, and laid her dead
+child in my bosom.
+
+3:21 And when I rose in the morning to give my child suck, behold, it
+was dead: but when I had considered it in the morning, behold, it was
+not my son, which I did bear.
+
+3:22 And the other woman said, Nay; but the living is my son, and the
+dead is thy son. And this said, No; but the dead is thy son, and the
+living is my son. Thus they spake before the king.
+
+3:23 Then said the king, The one saith, This is my son that liveth,
+and thy son is the dead: and the other saith, Nay; but thy son is the
+dead, and my son is the living.
+
+3:24 And the king said, Bring me a sword. And they brought a sword
+before the king.
+
+3:25 And the king said, Divide the living child in two, and give half
+to the one, and half to the other.
+
+3:26 Then spake the woman whose the living child was unto the king,
+for her bowels yearned upon her son, and she said, O my lord, give her
+the living child, and in no wise slay it. But the other said, Let it
+be neither mine nor thine, but divide it.
+
+3:27 Then the king answered and said, Give her the living child, and
+in no wise slay it: she is the mother thereof.
+
+3:28 And all Israel heard of the judgment which the king had judged;
+and they feared the king: for they saw that the wisdom of God was in
+him, to do judgment.
+
+4:1 So king Solomon was king over all Israel.
+
+4:2 And these were the princes which he had; Azariah the son of Zadok
+the priest, 4:3 Elihoreph and Ahiah, the sons of Shisha, scribes;
+Jehoshaphat the son of Ahilud, the recorder.
+
+4:4 And Benaiah the son of Jehoiada was over the host: and Zadok and
+Abiathar were the priests: 4:5 And Azariah the son of Nathan was over
+the officers: and Zabud the son of Nathan was principal officer, and
+the king's friend: 4:6 And Ahishar was over the household: and
+Adoniram the son of Abda was over the tribute.
+
+4:7 And Solomon had twelve officers over all Israel, which provided
+victuals for the king and his household: each man his month in a year
+made provision.
+
+4:8 And these are their names: The son of Hur, in mount Ephraim: 4:9
+The son of Dekar, in Makaz, and in Shaalbim, and Bethshemesh, and
+Elonbethhanan: 4:10 The son of Hesed, in Aruboth; to him pertained
+Sochoh, and all the land of Hepher: 4:11 The son of Abinadab, in all
+the region of Dor; which had Taphath the daughter of Solomon to wife:
+4:12 Baana the son of Ahilud; to him pertained Taanach and Megiddo,
+and all Bethshean, which is by Zartanah beneath Jezreel, from
+Bethshean to Abelmeholah, even unto the place that is beyond Jokneam:
+4:13 The son of Geber, in Ramothgilead; to him pertained the towns of
+Jair the son of Manasseh, which are in Gilead; to him also pertained
+the region of Argob, which is in Bashan, threescore great cities with
+walls and brasen bars: 4:14 Ahinadab the son of Iddo had Mahanaim:
+4:15 Ahimaaz was in Naphtali; he also took Basmath the daughter of
+Solomon to wife: 4:16 Baanah the son of Hushai was in Asher and in
+Aloth: 4:17 Jehoshaphat the son of Paruah, in Issachar: 4:18 Shimei
+the son of Elah, in Benjamin: 4:19 Geber the son of Uri was in the
+country of Gilead, in the country of Sihon king of the Amorites, and
+of Og king of Bashan; and he was the only officer which was in the
+land.
+
+4:20 Judah and Israel were many, as the sand which is by the sea in
+multitude, eating and drinking, and making merry.
+
+4:21 And Solomon reigned over all kingdoms from the river unto the
+land of the Philistines, and unto the border of Egypt: they brought
+presents, and served Solomon all the days of his life.
+
+4:22 And Solomon's provision for one day was thirty measures of fine
+flour, and threescore measures of meal, 4:23 Ten fat oxen, and twenty
+oxen out of the pastures, and an hundred sheep, beside harts, and
+roebucks, and fallowdeer, and fatted fowl.
+
+4:24 For he had dominion over all the region on this side the river,
+from Tiphsah even to Azzah, over all the kings on this side the river:
+and he had peace on all sides round about him.
+
+4:25 And Judah and Israel dwelt safely, every man under his vine and
+under his fig tree, from Dan even to Beersheba, all the days of
+Solomon.
+
+4:26 And Solomon had forty thousand stalls of horses for his chariots,
+and twelve thousand horsemen.
+
+4:27 And those officers provided victual for king Solomon, and for all
+that came unto king Solomon's table, every man in his month: they
+lacked nothing.
+
+4:28 Barley also and straw for the horses and dromedaries brought they
+unto the place where the officers were, every man according to his
+charge.
+
+4:29 And God gave Solomon wisdom and understanding exceeding much, and
+largeness of heart, even as the sand that is on the sea shore.
+
+4:30 And Solomon's wisdom excelled the wisdom of all the children of
+the east country, and all the wisdom of Egypt.
+
+4:31 For he was wiser than all men; than Ethan the Ezrahite, and
+Heman, and Chalcol, and Darda, the sons of Mahol: and his fame was in
+all nations round about.
+
+4:32 And he spake three thousand proverbs: and his songs were a
+thousand and five.
+
+4:33 And he spake of trees, from the cedar tree that is in Lebanon
+even unto the hyssop that springeth out of the wall: he spake also of
+beasts, and of fowl, and of creeping things, and of fishes.
+
+4:34 And there came of all people to hear the wisdom of Solomon, from
+all kings of the earth, which had heard of his wisdom.
+
+5:1 And Hiram king of Tyre sent his servants unto Solomon; for he had
+heard that they had anointed him king in the room of his father: for
+Hiram was ever a lover of David.
+
+5:2 And Solomon sent to Hiram, saying, 5:3 Thou knowest how that David
+my father could not build an house unto the name of the LORD his God
+for the wars which were about him on every side, until the LORD put
+them under the soles of his feet.
+
+5:4 But now the LORD my God hath given me rest on every side, so that
+there is neither adversary nor evil occurrent.
+
+5:5 And, behold, I purpose to build an house unto the name of the LORD
+my God, as the LORD spake unto David my father, saying, Thy son, whom
+I will set upon thy throne in thy room, he shall build an house unto
+my name.
+
+5:6 Now therefore command thou that they hew me cedar trees out of
+Lebanon; and my servants shall be with thy servants: and unto thee
+will I give hire for thy servants according to all that thou shalt
+appoint: for thou knowest that there is not among us any that can
+skill to hew timber like unto the Sidonians.
+
+5:7 And it came to pass, when Hiram heard the words of Solomon, that
+he rejoiced greatly, and said, Blessed be the LORD this day, which
+hath given unto David a wise son over this great people.
+
+5:8 And Hiram sent to Solomon, saying, I have considered the things
+which thou sentest to me for: and I will do all thy desire concerning
+timber of cedar, and concerning timber of fir.
+
+5:9 My servants shall bring them down from Lebanon unto the sea: and I
+will convey them by sea in floats unto the place that thou shalt
+appoint me, and will cause them to be discharged there, and thou shalt
+receive them: and thou shalt accomplish my desire, in giving food for
+my household.
+
+5:10 So Hiram gave Solomon cedar trees and fir trees according to all
+his desire.
+
+5:11 And Solomon gave Hiram twenty thousand measures of wheat for food
+to his household, and twenty measures of pure oil: thus gave Solomon
+to Hiram year by year.
+
+5:12 And the LORD gave Solomon wisdom, as he promised him: and there
+was peace between Hiram and Solomon; and they two made a league
+together.
+
+5:13 And king Solomon raised a levy out of all Israel; and the levy
+was thirty thousand men.
+
+5:14 And he sent them to Lebanon, ten thousand a month by courses: a
+month they were in Lebanon, and two months at home: and Adoniram was
+over the levy.
+
+5:15 And Solomon had threescore and ten thousand that bare burdens,
+and fourscore thousand hewers in the mountains; 5:16 Beside the chief
+of Solomon's officers which were over the work, three thousand and
+three hundred, which ruled over the people that wrought in the work.
+
+5:17 And the king commanded, and they brought great stones, costly
+stones, and hewed stones, to lay the foundation of the house.
+
+5:18 And Solomon's builders and Hiram's builders did hew them, and the
+stonesquarers: so they prepared timber and stones to build the house.
+
+6:1 And it came to pass in the four hundred and eightieth year after
+the children of Israel were come out of the land of Egypt, in the
+fourth year of Solomon's reign over Israel, in the month Zif, which is
+the second month, that he began to build the house of the LORD.
+
+6:2 And the house which king Solomon built for the LORD, the length
+thereof was threescore cubits, and the breadth thereof twenty cubits,
+and the height thereof thirty cubits.
+
+6:3 And the porch before the temple of the house, twenty cubits was
+the length thereof, according to the breadth of the house; and ten
+cubits was the breadth thereof before the house.
+
+6:4 And for the house he made windows of narrow lights.
+
+6:5 And against the wall of the house he built chambers round about,
+against the walls of the house round about, both of the temple and of
+the oracle: and he made chambers round about: 6:6 The nethermost
+chamber was five cubits broad, and the middle was six cubits broad,
+and the third was seven cubits broad: for without in the wall of the
+house he made narrowed rests round about, that the beams should not be
+fastened in the walls of the house.
+
+6:7 And the house, when it was in building, was built of stone made
+ready before it was brought thither: so that there was neither hammer
+nor axe nor any tool of iron heard in the house, while it was in
+building.
+
+6:8 The door for the middle chamber was in the right side of the
+house: and they went up with winding stairs into the middle chamber,
+and out of the middle into the third.
+
+6:9 So he built the house, and finished it; and covered the house with
+beams and boards of cedar.
+
+6:10 And then he built chambers against all the house, five cubits
+high: and they rested on the house with timber of cedar.
+
+6:11 And the word of the LORD came to Solomon, saying, 6:12 Concerning
+this house which thou art in building, if thou wilt walk in my
+statutes, and execute my judgments, and keep all my commandments to
+walk in them; then will I perform my word with thee, which I spake
+unto David thy father: 6:13 And I will dwell among the children of
+Israel, and will not forsake my people Israel.
+
+6:14 So Solomon built the house, and finished it.
+
+6:15 And he built the walls of the house within with boards of cedar,
+both the floor of the house, and the walls of the ceiling: and he
+covered them on the inside with wood, and covered the floor of the
+house with planks of fir.
+
+6:16 And he built twenty cubits on the sides of the house, both the
+floor and the walls with boards of cedar: he even built them for it
+within, even for the oracle, even for the most holy place.
+
+6:17 And the house, that is, the temple before it, was forty cubits
+long.
+
+6:18 And the cedar of the house within was carved with knops and open
+flowers: all was cedar; there was no stone seen.
+
+6:19 And the oracle he prepared in the house within, to set there the
+ark of the covenant of the LORD.
+
+6:20 And the oracle in the forepart was twenty cubits in length, and
+twenty cubits in breadth, and twenty cubits in the height thereof: and
+he overlaid it with pure gold; and so covered the altar which was of
+cedar.
+
+6:21 So Solomon overlaid the house within with pure gold: and he made
+a partition by the chains of gold before the oracle; and he overlaid
+it with gold.
+
+6:22 And the whole house he overlaid with gold, until he had finished
+all the house: also the whole altar that was by the oracle he overlaid
+with gold.
+
+6:23 And within the oracle he made two cherubims of olive tree, each
+ten cubits high.
+
+6:24 And five cubits was the one wing of the cherub, and five cubits
+the other wing of the cherub: from the uttermost part of the one wing
+unto the uttermost part of the other were ten cubits.
+
+6:25 And the other cherub was ten cubits: both the cherubims were of
+one measure and one size.
+
+6:26 The height of the one cherub was ten cubits, and so was it of the
+other cherub.
+
+6:27 And he set the cherubims within the inner house: and they
+stretched forth the wings of the cherubims, so that the wing of the
+one touched the one wall, and the wing of the other cherub touched the
+other wall; and their wings touched one another in the midst of the
+house.
+
+6:28 And he overlaid the cherubims with gold.
+
+6:29 And he carved all the walls of the house round about with carved
+figures of cherubims and palm trees and open flowers, within and
+without.
+
+6:30 And the floors of the house he overlaid with gold, within and
+without.
+
+6:31 And for the entering of the oracle he made doors of olive tree:
+the lintel and side posts were a fifth part of the wall.
+
+6:32 The two doors also were of olive tree; and he carved upon them
+carvings of cherubims and palm trees and open flowers, and overlaid
+them with gold, and spread gold upon the cherubims, and upon the palm
+trees.
+
+6:33 So also made he for the door of the temple posts of olive tree, a
+fourth part of the wall.
+
+6:34 And the two doors were of fir tree: the two leaves of the one
+door were folding, and the two leaves of the other door were folding.
+
+6:35 And he carved thereon cherubims and palm trees and open flowers:
+and covered them with gold fitted upon the carved work.
+
+6:36 And he built the inner court with three rows of hewed stone, and
+a row of cedar beams.
+
+6:37 In the fourth year was the foundation of the house of the LORD
+laid, in the month Zif: 6:38 And in the eleventh year, in the month
+Bul, which is the eighth month, was the house finished throughout all
+the parts thereof, and according to all the fashion of it. So was he
+seven years in building it.
+
+7:1 But Solomon was building his own house thirteen years, and he
+finished all his house.
+
+7:2 He built also the house of the forest of Lebanon; the length
+thereof was an hundred cubits, and the breadth thereof fifty cubits,
+and the height thereof thirty cubits, upon four rows of cedar pillars,
+with cedar beams upon the pillars.
+
+7:3 And it was covered with cedar above upon the beams, that lay on
+forty five pillars, fifteen in a row.
+
+7:4 And there were windows in three rows, and light was against light
+in three ranks.
+
+7:5 And all the doors and posts were square, with the windows: and
+light was against light in three ranks.
+
+7:6 And he made a porch of pillars; the length thereof was fifty
+cubits, and the breadth thereof thirty cubits: and the porch was
+before them: and the other pillars and the thick beam were before
+them.
+
+7:7 Then he made a porch for the throne where he might judge, even the
+porch of judgment: and it was covered with cedar from one side of the
+floor to the other.
+
+7:8 And his house where he dwelt had another court within the porch,
+which was of the like work. Solomon made also an house for Pharaoh's
+daughter, whom he had taken to wife, like unto this porch.
+
+7:9 All these were of costly stones, according to the measures of
+hewed stones, sawed with saws, within and without, even from the
+foundation unto the coping, and so on the outside toward the great
+court.
+
+7:10 And the foundation was of costly stones, even great stones,
+stones of ten cubits, and stones of eight cubits.
+
+7:11 And above were costly stones, after the measures of hewed stones,
+and cedars.
+
+7:12 And the great court round about was with three rows of hewed
+stones, and a row of cedar beams, both for the inner court of the
+house of the LORD, and for the porch of the house.
+
+7:13 And king Solomon sent and fetched Hiram out of Tyre.
+
+7:14 He was a widow's son of the tribe of Naphtali, and his father was
+a man of Tyre, a worker in brass: and he was filled with wisdom, and
+understanding, and cunning to work all works in brass. And he came to
+king Solomon, and wrought all his work.
+
+7:15 For he cast two pillars of brass, of eighteen cubits high apiece:
+and a line of twelve cubits did compass either of them about.
+
+7:16 And he made two chapiters of molten brass, to set upon the tops
+of the pillars: the height of the one chapiter was five cubits, and
+the height of the other chapiter was five cubits: 7:17 And nets of
+checker work, and wreaths of chain work, for the chapiters which were
+upon the top of the pillars; seven for the one chapiter, and seven for
+the other chapiter.
+
+7:18 And he made the pillars, and two rows round about upon the one
+network, to cover the chapiters that were upon the top, with
+pomegranates: and so did he for the other chapiter.
+
+7:19 And the chapiters that were upon the top of the pillars were of
+lily work in the porch, four cubits.
+
+7:20 And the chapiters upon the two pillars had pomegranates also
+above, over against the belly which was by the network: and the
+pomegranates were two hundred in rows round about upon the other
+chapiter.
+
+7:21 And he set up the pillars in the porch of the temple: and he set
+up the right pillar, and called the name thereof Jachin: and he set up
+the left pillar, and called the name thereof Boaz.
+
+7:22 And upon the top of the pillars was lily work: so was the work of
+the pillars finished.
+
+7:23 And he made a molten sea, ten cubits from the one brim to the
+other: it was round all about, and his height was five cubits: and a
+line of thirty cubits did compass it round about.
+
+7:24 And under the brim of it round about there were knops compassing
+it, ten in a cubit, compassing the sea round about: the knops were
+cast in two rows, when it was cast.
+
+7:25 It stood upon twelve oxen, three looking toward the north, and
+three looking toward the west, and three looking toward the south, and
+three looking toward the east: and the sea was set above upon them,
+and all their hinder parts were inward.
+
+7:26 And it was an hand breadth thick, and the brim thereof was
+wrought like the brim of a cup, with flowers of lilies: it contained
+two thousand baths.
+
+7:27 And he made ten bases of brass; four cubits was the length of one
+base, and four cubits the breadth thereof, and three cubits the height
+of it.
+
+7:28 And the work of the bases was on this manner: they had borders,
+and the borders were between the ledges: 7:29 And on the borders that
+were between the ledges were lions, oxen, and cherubims: and upon the
+ledges there was a base above: and beneath the lions and oxen were
+certain additions made of thin work.
+
+7:30 And every base had four brasen wheels, and plates of brass: and
+the four corners thereof had undersetters: under the laver were
+undersetters molten, at the side of every addition.
+
+7:31 And the mouth of it within the chapiter and above was a cubit:
+but the mouth thereof was round after the work of the base, a cubit
+and an half: and also upon the mouth of it were gravings with their
+borders, foursquare, not round.
+
+7:32 And under the borders were four wheels; and the axletrees of the
+wheels were joined to the base: and the height of a wheel was a cubit
+and half a cubit.
+
+7:33 And the work of the wheels was like the work of a chariot wheel:
+their axletrees, and their naves, and their felloes, and their spokes,
+were all molten.
+
+7:34 And there were four undersetters to the four corners of one base:
+and the undersetters were of the very base itself.
+
+7:35 And in the top of the base was there a round compass of half a
+cubit high: and on the top of the base the ledges thereof and the
+borders thereof were of the same.
+
+7:36 For on the plates of the ledges thereof, and on the borders
+thereof, he graved cherubims, lions, and palm trees, according to the
+proportion of every one, and additions round about.
+
+7:37 After this manner he made the ten bases: all of them had one
+casting, one measure, and one size.
+
+7:38 Then made he ten lavers of brass: one laver contained forty
+baths: and every laver was four cubits: and upon every one of the ten
+bases one laver.
+
+7:39 And he put five bases on the right side of the house, and five on
+the left side of the house: and he set the sea on the right side of
+the house eastward over against the south.
+
+7:40 And Hiram made the lavers, and the shovels, and the basons. So
+Hiram made an end of doing all the work that he made king Solomon for
+the house of the LORD: 7:41 The two pillars, and the two bowls of the
+chapiters that were on the top of the two pillars; and the two
+networks, to cover the two bowls of the chapiters which were upon the
+top of the pillars; 7:42 And four hundred pomegranates for the two
+networks, even two rows of pomegranates for one network, to cover the
+two bowls of the chapiters that were upon the pillars; 7:43 And the
+ten bases, and ten lavers on the bases; 7:44 And one sea, and twelve
+oxen under the sea; 7:45 And the pots, and the shovels, and the
+basons: and all these vessels, which Hiram made to king Solomon for
+the house of the LORD, were of bright brass.
+
+7:46 In the plain of Jordan did the king cast them, in the clay ground
+between Succoth and Zarthan.
+
+7:47 And Solomon left all the vessels unweighed, because they were
+exceeding many: neither was the weight of the brass found out.
+
+7:48 And Solomon made all the vessels that pertained unto the house of
+the LORD: the altar of gold, and the table of gold, whereupon the
+shewbread was, 7:49 And the candlesticks of pure gold, five on the
+right side, and five on the left, before the oracle, with the flowers,
+and the lamps, and the tongs of gold, 7:50 And the bowls, and the
+snuffers, and the basons, and the spoons, and the censers of pure
+gold; and the hinges of gold, both for the doors of the inner house,
+the most holy place, and for the doors of the house, to wit, of the
+temple.
+
+7:51 So was ended all the work that king Solomon made for the house of
+the LORD. And Solomon brought in the things which David his father had
+dedicated; even the silver, and the gold, and the vessels, did he put
+among the treasures of the house of the LORD.
+
+8:1 Then Solomon assembled the elders of Israel, and all the heads of
+the tribes, the chief of the fathers of the children of Israel, unto
+king Solomon in Jerusalem, that they might bring up the ark of the
+covenant of the LORD out of the city of David, which is Zion.
+
+8:2 And all the men of Israel assembled themselves unto king Solomon
+at the feast in the month Ethanim, which is the seventh month.
+
+8:3 And all the elders of Israel came, and the priests took up the
+ark.
+
+8:4 And they brought up the ark of the LORD, and the tabernacle of the
+congregation, and all the holy vessels that were in the tabernacle,
+even those did the priests and the Levites bring up.
+
+8:5 And king Solomon, and all the congregation of Israel, that were
+assembled unto him, were with him before the ark, sacrificing sheep
+and oxen, that could not be told nor numbered for multitude.
+
+8:6 And the priests brought in the ark of the covenant of the LORD
+unto his place, into the oracle of the house, to the most holy place,
+even under the wings of the cherubims.
+
+8:7 For the cherubims spread forth their two wings over the place of
+the ark, and the cherubims covered the ark and the staves thereof
+above.
+
+8:8 And they drew out the staves, that the ends of the staves were
+seen out in the holy place before the oracle, and they were not seen
+without: and there they are unto this day.
+
+8:9 There was nothing in the ark save the two tables of stone, which
+Moses put there at Horeb, when the LORD made a covenant with the
+children of Israel, when they came out of the land of Egypt.
+
+8:10 And it came to pass, when the priests were come out of the holy
+place, that the cloud filled the house of the LORD, 8:11 So that the
+priests could not stand to minister because of the cloud: for the
+glory of the LORD had filled the house of the LORD.
+
+8:12 Then spake Solomon, The LORD said that he would dwell in the
+thick darkness.
+
+8:13 I have surely built thee an house to dwell in, a settled place
+for thee to abide in for ever.
+
+8:14 And the king turned his face about, and blessed all the
+congregation of Israel: (and all the congregation of Israel stood;)
+8:15 And he said, Blessed be the LORD God of Israel, which spake with
+his mouth unto David my father, and hath with his hand fulfilled it,
+saying, 8:16 Since the day that I brought forth my people Israel out
+of Egypt, I chose no city out of all the tribes of Israel to build an
+house, that my name might be therein; but I chose David to be over my
+people Israel.
+
+8:17 And it was in the heart of David my father to build an house for
+the name of the LORD God of Israel.
+
+8:18 And the LORD said unto David my father, Whereas it was in thine
+heart to build an house unto my name, thou didst well that it was in
+thine heart.
+
+8:19 Nevertheless thou shalt not build the house; but thy son that
+shall come forth out of thy loins, he shall build the house unto my
+name.
+
+8:20 And the LORD hath performed his word that he spake, and I am
+risen up in the room of David my father, and sit on the throne of
+Israel, as the LORD promised, and have built an house for the name of
+the LORD God of Israel.
+
+8:21 And I have set there a place for the ark, wherein is the covenant
+of the LORD, which he made with our fathers, when he brought them out
+of the land of Egypt.
+
+8:22 And Solomon stood before the altar of the LORD in the presence of
+all the congregation of Israel, and spread forth his hands toward
+heaven: 8:23 And he said, LORD God of Israel, there is no God like
+thee, in heaven above, or on earth beneath, who keepest covenant and
+mercy with thy servants that walk before thee with all their heart:
+8:24 Who hast kept with thy servant David my father that thou
+promisedst him: thou spakest also with thy mouth, and hast fulfilled
+it with thine hand, as it is this day.
+
+8:25 Therefore now, LORD God of Israel, keep with thy servant David my
+father that thou promisedst him, saying, There shall not fail thee a
+man in my sight to sit on the throne of Israel; so that thy children
+take heed to their way, that they walk before me as thou hast walked
+before me.
+
+8:26 And now, O God of Israel, let thy word, I pray thee, be verified,
+which thou spakest unto thy servant David my father.
+
+8:27 But will God indeed dwell on the earth? behold, the heaven and
+heaven of heavens cannot contain thee; how much less this house that I
+have builded? 8:28 Yet have thou respect unto the prayer of thy
+servant, and to his supplication, O LORD my God, to hearken unto the
+cry and to the prayer, which thy servant prayeth before thee to day:
+8:29 That thine eyes may be open toward this house night and day, even
+toward the place of which thou hast said, My name shall be there: that
+thou mayest hearken unto the prayer which thy servant shall make
+toward this place.
+
+8:30 And hearken thou to the supplication of thy servant, and of thy
+people Israel, when they shall pray toward this place: and hear thou
+in heaven thy dwelling place: and when thou hearest, forgive.
+
+8:31 If any man trespass against his neighbour, and an oath be laid
+upon him to cause him to swear, and the oath come before thine altar
+in this house: 8:32 Then hear thou in heaven, and do, and judge thy
+servants, condemning the wicked, to bring his way upon his head; and
+justifying the righteous, to give him according to his righteousness.
+
+8:33 When thy people Israel be smitten down before the enemy, because
+they have sinned against thee, and shall turn again to thee, and
+confess thy name, and pray, and make supplication unto thee in this
+house: 8:34 Then hear thou in heaven, and forgive the sin of thy
+people Israel, and bring them again unto the land which thou gavest
+unto their fathers.
+
+8:35 When heaven is shut up, and there is no rain, because they have
+sinned against thee; if they pray toward this place, and confess thy
+name, and turn from their sin, when thou afflictest them: 8:36 Then
+hear thou in heaven, and forgive the sin of thy servants, and of thy
+people Israel, that thou teach them the good way wherein they should
+walk, and give rain upon thy land, which thou hast given to thy people
+for an inheritance.
+
+8:37 If there be in the land famine, if there be pestilence, blasting,
+mildew, locust, or if there be caterpiller; if their enemy besiege
+them in the land of their cities; whatsoever plague, whatsoever
+sickness there be; 8:38 What prayer and supplication soever be made by
+any man, or by all thy people Israel, which shall know every man the
+plague of his own heart, and spread forth his hands toward this house:
+8:39 Then hear thou in heaven thy dwelling place, and forgive, and do,
+and give to every man according to his ways, whose heart thou knowest;
+(for thou, even thou only, knowest the hearts of all the children of
+men;) 8:40 That they may fear thee all the days that they live in the
+land which thou gavest unto our fathers.
+
+8:41 Moreover concerning a stranger, that is not of thy people Israel,
+but cometh out of a far country for thy name's sake; 8:42 (For they
+shall hear of thy great name, and of thy strong hand, and of thy
+stretched out arm;) when he shall come and pray toward this house;
+8:43 Hear thou in heaven thy dwelling place, and do according to all
+that the stranger calleth to thee for: that all people of the earth
+may know thy name, to fear thee, as do thy people Israel; and that
+they may know that this house, which I have builded, is called by thy
+name.
+
+8:44 If thy people go out to battle against their enemy, whithersoever
+thou shalt send them, and shall pray unto the LORD toward the city
+which thou hast chosen, and toward the house that I have built for thy
+name: 8:45 Then hear thou in heaven their prayer and their
+supplication, and maintain their cause.
+
+8:46 If they sin against thee, (for there is no man that sinneth not,)
+and thou be angry with them, and deliver them to the enemy, so that
+they carry them away captives unto the land of the enemy, far or near;
+8:47 Yet if they shall bethink themselves in the land whither they
+were carried captives, and repent, and make supplication unto thee in
+the land of them that carried them captives, saying, We have sinned,
+and have done perversely, we have committed wickedness; 8:48 And so
+return unto thee with all their heart, and with all their soul, in the
+land of their enemies, which led them away captive, and pray unto thee
+toward their land, which thou gavest unto their fathers, the city
+which thou hast chosen, and the house which I have built for thy name:
+8:49 Then hear thou their prayer and their supplication in heaven thy
+dwelling place, and maintain their cause, 8:50 And forgive thy people
+that have sinned against thee, and all their transgressions wherein
+they have transgressed against thee, and give them compassion before
+them who carried them captive, that they may have compassion on them:
+8:51 For they be thy people, and thine inheritance, which thou
+broughtest forth out of Egypt, from the midst of the furnace of iron:
+8:52 That thine eyes may be open unto the supplication of thy servant,
+and unto the supplication of thy people Israel, to hearken unto them
+in all that they call for unto thee.
+
+8:53 For thou didst separate them from among all the people of the
+earth, to be thine inheritance, as thou spakest by the hand of Moses
+thy servant, when thou broughtest our fathers out of Egypt, O LORD
+God.
+
+8:54 And it was so, that when Solomon had made an end of praying all
+this prayer and supplication unto the LORD, he arose from before the
+altar of the LORD, from kneeling on his knees with his hands spread up
+to heaven.
+
+8:55 And he stood, and blessed all the congregation of Israel with a
+loud voice, saying, 8:56 Blessed be the LORD, that hath given rest
+unto his people Israel, according to all that he promised: there hath
+not failed one word of all his good promise, which he promised by the
+hand of Moses his servant.
+
+8:57 The LORD our God be with us, as he was with our fathers: let him
+not leave us, nor forsake us: 8:58 That he may incline our hearts unto
+him, to walk in all his ways, and to keep his commandments, and his
+statutes, and his judgments, which he commanded our fathers.
+
+8:59 And let these my words, wherewith I have made supplication before
+the LORD, be nigh unto the LORD our God day and night, that he
+maintain the cause of his servant, and the cause of his people Israel
+at all times, as the matter shall require: 8:60 That all the people of
+the earth may know that the LORD is God, and that there is none else.
+
+8:61 Let your heart therefore be perfect with the LORD our God, to
+walk in his statutes, and to keep his commandments, as at this day.
+
+8:62 And the king, and all Israel with him, offered sacrifice before
+the LORD.
+
+8:63 And Solomon offered a sacrifice of peace offerings, which he
+offered unto the LORD, two and twenty thousand oxen, and an hundred
+and twenty thousand sheep. So the king and all the children of Israel
+dedicated the house of the LORD.
+
+8:64 The same day did the king hallow the middle of the court that was
+before the house of the LORD: for there he offered burnt offerings,
+and meat offerings, and the fat of the peace offerings: because the
+brasen altar that was before the LORD was too little to receive the
+burnt offerings, and meat offerings, and the fat of the peace
+offerings.
+
+8:65 And at that time Solomon held a feast, and all Israel with him, a
+great congregation, from the entering in of Hamath unto the river of
+Egypt, before the LORD our God, seven days and seven days, even
+fourteen days.
+
+8:66 On the eighth day he sent the people away: and they blessed the
+king, and went unto their tents joyful and glad of heart for all the
+goodness that the LORD had done for David his servant, and for Israel
+his people.
+
+9:1 And it came to pass, when Solomon had finished the building of the
+house of the LORD, and the king's house, and all Solomon's desire
+which he was pleased to do, 9:2 That the LORD appeared to Solomon the
+second time, as he had appeared unto him at Gibeon.
+
+9:3 And the LORD said unto him, I have heard thy prayer and thy
+supplication, that thou hast made before me: I have hallowed this
+house, which thou hast built, to put my name there for ever; and mine
+eyes and mine heart shall be there perpetually.
+
+9:4 And if thou wilt walk before me, as David thy father walked, in
+integrity of heart, and in uprightness, to do according to all that I
+have commanded thee, and wilt keep my statutes and my judgments: 9:5
+Then I will establish the throne of thy kingdom upon Israel for ever,
+as I promised to David thy father, saying, There shall not fail thee a
+man upon the throne of Israel.
+
+9:6 But if ye shall at all turn from following me, ye or your
+children, and will not keep my commandments and my statutes which I
+have set before you, but go and serve other gods, and worship them:
+9:7 Then will I cut off Israel out of the land which I have given
+them; and this house, which I have hallowed for my name, will I cast
+out of my sight; and Israel shall be a proverb and a byword among all
+people: 9:8 And at this house, which is high, every one that passeth
+by it shall be astonished, and shall hiss; and they shall say, Why
+hath the LORD done thus unto this land, and to this house? 9:9 And
+they shall answer, Because they forsook the LORD their God, who
+brought forth their fathers out of the land of Egypt, and have taken
+hold upon other gods, and have worshipped them, and served them:
+therefore hath the LORD brought upon them all this evil.
+
+9:10 And it came to pass at the end of twenty years, when Solomon had
+built the two houses, the house of the LORD, and the king's house,
+9:11 (Now Hiram the king of Tyre had furnished Solomon with cedar
+trees and fir trees, and with gold, according to all his desire,) that
+then king Solomon gave Hiram twenty cities in the land of Galilee.
+
+9:12 And Hiram came out from Tyre to see the cities which Solomon had
+given him; and they pleased him not.
+
+9:13 And he said, What cities are these which thou hast given me, my
+brother? And he called them the land of Cabul unto this day.
+
+9:14 And Hiram sent to the king sixscore talents of gold.
+
+9:15 And this is the reason of the levy which king Solomon raised; for
+to build the house of the LORD, and his own house, and Millo, and the
+wall of Jerusalem, and Hazor, and Megiddo, and Gezer.
+
+9:16 For Pharaoh king of Egypt had gone up, and taken Gezer, and burnt
+it with fire, and slain the Canaanites that dwelt in the city, and
+given it for a present unto his daughter, Solomon's wife.
+
+9:17 And Solomon built Gezer, and Bethhoron the nether, 9:18 And
+Baalath, and Tadmor in the wilderness, in the land, 9:19 And all the
+cities of store that Solomon had, and cities for his chariots, and
+cities for his horsemen, and that which Solomon desired to build in
+Jerusalem, and in Lebanon, and in all the land of his dominion.
+
+9:20 And all the people that were left of the Amorites, Hittites,
+Perizzites, Hivites, and Jebusites, which were not of the children of
+Israel, 9:21 Their children that were left after them in the land,
+whom the children of Israel also were not able utterly to destroy,
+upon those did Solomon levy a tribute of bondservice unto this day.
+
+9:22 But of the children of Israel did Solomon make no bondmen: but
+they were men of war, and his servants, and his princes, and his
+captains, and rulers of his chariots, and his horsemen.
+
+9:23 These were the chief of the officers that were over Solomon's
+work, five hundred and fifty, which bare rule over the people that
+wrought in the work.
+
+9:24 But Pharaoh's daughter came up out of the city of David unto her
+house which Solomon had built for her: then did he build Millo.
+
+9:25 And three times in a year did Solomon offer burnt offerings and
+peace offerings upon the altar which he built unto the LORD, and he
+burnt incense upon the altar that was before the LORD. So he finished
+the house.
+
+9:26 And king Solomon made a navy of ships in Eziongeber, which is
+beside Eloth, on the shore of the Red sea, in the land of Edom.
+
+9:27 And Hiram sent in the navy his servants, shipmen that had
+knowledge of the sea, with the servants of Solomon.
+
+9:28 And they came to Ophir, and fetched from thence gold, four
+hundred and twenty talents, and brought it to king Solomon.
+
+10:1 And when the queen of Sheba heard of the fame of Solomon
+concerning the name of the LORD, she came to prove him with hard
+questions.
+
+10:2 And she came to Jerusalem with a very great train, with camels
+that bare spices, and very much gold, and precious stones: and when
+she was come to Solomon, she communed with him of all that was in her
+heart.
+
+10:3 And Solomon told her all her questions: there was not any thing
+hid from the king, which he told her not.
+
+10:4 And when the queen of Sheba had seen all Solomon's wisdom, and
+the house that he had built, 10:5 And the meat of his table, and the
+sitting of his servants, and the attendance of his ministers, and
+their apparel, and his cupbearers, and his ascent by which he went up
+unto the house of the LORD; there was no more spirit in her.
+
+10:6 And she said to the king, It was a true report that I heard in
+mine own land of thy acts and of thy wisdom.
+
+10:7 Howbeit I believed not the words, until I came, and mine eyes had
+seen it: and, behold, the half was not told me: thy wisdom and
+prosperity exceedeth the fame which I heard.
+
+10:8 Happy are thy men, happy are these thy servants, which stand
+continually before thee, and that hear thy wisdom.
+
+10:9 Blessed be the LORD thy God, which delighted in thee, to set thee
+on the throne of Israel: because the LORD loved Israel for ever,
+therefore made he thee king, to do judgment and justice.
+
+10:10 And she gave the king an hundred and twenty talents of gold, and
+of spices very great store, and precious stones: there came no more
+such abundance of spices as these which the queen of Sheba gave to
+king Solomon.
+
+10:11 And the navy also of Hiram, that brought gold from Ophir,
+brought in from Ophir great plenty of almug trees, and precious
+stones.
+
+10:12 And the king made of the almug trees pillars for the house of
+the LORD, and for the king's house, harps also and psalteries for
+singers: there came no such almug trees, nor were seen unto this day.
+
+10:13 And king Solomon gave unto the queen of Sheba all her desire,
+whatsoever she asked, beside that which Solomon gave her of his royal
+bounty.
+
+So she turned and went to her own country, she and her servants.
+
+10:14 Now the weight of gold that came to Solomon in one year was six
+hundred threescore and six talents of gold, 10:15 Beside that he had
+of the merchantmen, and of the traffick of the spice merchants, and of
+all the kings of Arabia, and of the governors of the country.
+
+10:16 And king Solomon made two hundred targets of beaten gold: six
+hundred shekels of gold went to one target.
+
+10:17 And he made three hundred shields of beaten gold; three pound of
+gold went to one shield: and the king put them in the house of the
+forest of Lebanon.
+
+10:18 Moreover the king made a great throne of ivory, and overlaid it
+with the best gold.
+
+10:19 The throne had six steps, and the top of the throne was round
+behind: and there were stays on either side on the place of the seat,
+and two lions stood beside the stays.
+
+10:20 And twelve lions stood there on the one side and on the other
+upon the six steps: there was not the like made in any kingdom.
+
+10:21 And all king Solomon's drinking vessels were of gold, and all
+the vessels of the house of the forest of Lebanon were of pure gold;
+none were of silver: it was nothing accounted of in the days of
+Solomon.
+
+10:22 For the king had at sea a navy of Tharshish with the navy of
+Hiram: once in three years came the navy of Tharshish, bringing gold,
+and silver, ivory, and apes, and peacocks.
+
+10:23 So king Solomon exceeded all the kings of the earth for riches
+and for wisdom.
+
+10:24 And all the earth sought to Solomon, to hear his wisdom, which
+God had put in his heart.
+
+10:25 And they brought every man his present, vessels of silver, and
+vessels of gold, and garments, and armour, and spices, horses, and
+mules, a rate year by year.
+
+10:26 And Solomon gathered together chariots and horsemen: and he had
+a thousand and four hundred chariots, and twelve thousand horsemen,
+whom he bestowed in the cities for chariots, and with the king at
+Jerusalem.
+
+10:27 And the king made silver to be in Jerusalem as stones, and
+cedars made he to be as the sycomore trees that are in the vale, for
+abundance.
+
+10:28 And Solomon had horses brought out of Egypt, and linen yarn: the
+king's merchants received the linen yarn at a price.
+
+10:29 And a chariot came up and went out of Egypt for six hundred
+shekels of silver, and an horse for an hundred and fifty: and so for
+all the kings of the Hittites, and for the kings of Syria, did they
+bring them out by their means.
+
+11:1 But king Solomon loved many strange women, together with the
+daughter of Pharaoh, women of the Moabites, Ammonites, Edomites,
+Zidonians, and Hittites: 11:2 Of the nations concerning which the LORD
+said unto the children of Israel, Ye shall not go in to them, neither
+shall they come in unto you: for surely they will turn away your heart
+after their gods: Solomon clave unto these in love.
+
+11:3 And he had seven hundred wives, princesses, and three hundred
+concubines: and his wives turned away his heart.
+
+11:4 For it came to pass, when Solomon was old, that his wives turned
+away his heart after other gods: and his heart was not perfect with
+the LORD his God, as was the heart of David his father.
+
+11:5 For Solomon went after Ashtoreth the goddess of the Zidonians,
+and after Milcom the abomination of the Ammonites.
+
+11:6 And Solomon did evil in the sight of the LORD, and went not fully
+after the LORD, as did David his father.
+
+11:7 Then did Solomon build an high place for Chemosh, the abomination
+of Moab, in the hill that is before Jerusalem, and for Molech, the
+abomination of the children of Ammon.
+
+11:8 And likewise did he for all his strange wives, which burnt
+incense and sacrificed unto their gods.
+
+11:9 And the LORD was angry with Solomon, because his heart was turned
+from the LORD God of Israel, which had appeared unto him twice, 11:10
+And had commanded him concerning this thing, that he should not go
+after other gods: but he kept not that which the LORD commanded.
+
+11:11 Wherefore the LORD said unto Solomon, Forasmuch as this is done
+of thee, and thou hast not kept my covenant and my statutes, which I
+have commanded thee, I will surely rend the kingdom from thee, and
+will give it to thy servant.
+
+11:12 Notwithstanding in thy days I will not do it for David thy
+father's sake: but I will rend it out of the hand of thy son.
+
+11:13 Howbeit I will not rend away all the kingdom; but will give one
+tribe to thy son for David my servant's sake, and for Jerusalem's sake
+which I have chosen.
+
+11:14 And the LORD stirred up an adversary unto Solomon, Hadad the
+Edomite: he was of the king's seed in Edom.
+
+11:15 For it came to pass, when David was in Edom, and Joab the
+captain of the host was gone up to bury the slain, after he had
+smitten every male in Edom; 11:16 (For six months did Joab remain
+there with all Israel, until he had cut off every male in Edom:) 11:17
+That Hadad fled, he and certain Edomites of his father's servants with
+him, to go into Egypt; Hadad being yet a little child.
+
+11:18 And they arose out of Midian, and came to Paran: and they took
+men with them out of Paran, and they came to Egypt, unto Pharaoh king
+of Egypt; which gave him an house, and appointed him victuals, and
+gave him land.
+
+11:19 And Hadad found great favour in the sight of Pharaoh, so that he
+gave him to wife the sister of his own wife, the sister of Tahpenes
+the queen.
+
+11:20 And the sister of Tahpenes bare him Genubath his son, whom
+Tahpenes weaned in Pharaoh's house: and Genubath was in Pharaoh's
+household among the sons of Pharaoh.
+
+11:21 And when Hadad heard in Egypt that David slept with his fathers,
+and that Joab the captain of the host was dead, Hadad said to Pharaoh,
+Let me depart, that I may go to mine own country.
+
+11:22 Then Pharaoh said unto him, But what hast thou lacked with me,
+that, behold, thou seekest to go to thine own country? And he
+answered, Nothing: howbeit let me go in any wise.
+
+11:23 And God stirred him up another adversary, Rezon the son of
+Eliadah, which fled from his lord Hadadezer king of Zobah: 11:24 And
+he gathered men unto him, and became captain over a band, when David
+slew them of Zobah: and they went to Damascus, and dwelt therein, and
+reigned in Damascus.
+
+11:25 And he was an adversary to Israel all the days of Solomon,
+beside the mischief that Hadad did: and he abhorred Israel, and
+reigned over Syria.
+
+11:26 And Jeroboam the son of Nebat, an Ephrathite of Zereda,
+Solomon's servant, whose mother's name was Zeruah, a widow woman, even
+he lifted up his hand against the king.
+
+11:27 And this was the cause that he lifted up his hand against the
+king: Solomon built Millo, and repaired the breaches of the city of
+David his father.
+
+11:28 And the man Jeroboam was a mighty man of valour: and Solomon
+seeing the young man that he was industrious, he made him ruler over
+all the charge of the house of Joseph.
+
+11:29 And it came to pass at that time when Jeroboam went out of
+Jerusalem, that the prophet Ahijah the Shilonite found him in the way;
+and he had clad himself with a new garment; and they two were alone in
+the field: 11:30 And Ahijah caught the new garment that was on him,
+and rent it in twelve pieces: 11:31 And he said to Jeroboam, Take thee
+ten pieces: for thus saith the LORD, the God of Israel, Behold, I will
+rend the kingdom out of the hand of Solomon, and will give ten tribes
+to thee: 11:32 (But he shall have one tribe for my servant David's
+sake, and for Jerusalem's sake, the city which I have chosen out of
+all the tribes of Israel:) 11:33 Because that they have forsaken me,
+and have worshipped Ashtoreth the goddess of the Zidonians, Chemosh
+the god of the Moabites, and Milcom the god of the children of Ammon,
+and have not walked in my ways, to do that which is right in mine
+eyes, and to keep my statutes and my judgments, as did David his
+father.
+
+11:34 Howbeit I will not take the whole kingdom out of his hand: but I
+will make him prince all the days of his life for David my servant's
+sake, whom I chose, because he kept my commandments and my statutes:
+11:35 But I will take the kingdom out of his son's hand, and will give
+it unto thee, even ten tribes.
+
+11:36 And unto his son will I give one tribe, that David my servant
+may have a light alway before me in Jerusalem, the city which I have
+chosen me to put my name there.
+
+11:37 And I will take thee, and thou shalt reign according to all that
+thy soul desireth, and shalt be king over Israel.
+
+11:38 And it shall be, if thou wilt hearken unto all that I command
+thee, and wilt walk in my ways, and do that is right in my sight, to
+keep my statutes and my commandments, as David my servant did; that I
+will be with thee, and build thee a sure house, as I built for David,
+and will give Israel unto thee.
+
+11:39 And I will for this afflict the seed of David, but not for ever.
+
+11:40 Solomon sought therefore to kill Jeroboam. And Jeroboam arose,
+and fled into Egypt, unto Shishak king of Egypt, and was in Egypt
+until the death of Solomon.
+
+11:41 And the rest of the acts of Solomon, and all that he did, and
+his wisdom, are they not written in the book of the acts of Solomon?
+11:42 And the time that Solomon reigned in Jerusalem over all Israel
+was forty years.
+
+11:43 And Solomon slept with his fathers, and was buried in the city
+of David his father: and Rehoboam his son reigned in his stead.
+
+12:1 And Rehoboam went to Shechem: for all Israel were come to Shechem
+to make him king.
+
+12:2 And it came to pass, when Jeroboam the son of Nebat, who was yet
+in Egypt, heard of it, (for he was fled from the presence of king
+Solomon, and Jeroboam dwelt in Egypt;) 12:3 That they sent and called
+him. And Jeroboam and all the congregation of Israel came, and spake
+unto Rehoboam, saying, 12:4 Thy father made our yoke grievous: now
+therefore make thou the grievous service of thy father, and his heavy
+yoke which he put upon us, lighter, and we will serve thee.
+
+12:5 And he said unto them, Depart yet for three days, then come again
+to me. And the people departed.
+
+12:6 And king Rehoboam consulted with the old men, that stood before
+Solomon his father while he yet lived, and said, How do ye advise that
+I may answer this people? 12:7 And they spake unto him, saying, If
+thou wilt be a servant unto this people this day, and wilt serve them,
+and answer them, and speak good words to them, then they will be thy
+servants for ever.
+
+12:8 But he forsook the counsel of the old men, which they had given
+him, and consulted with the young men that were grown up with him, and
+which stood before him: 12:9 And he said unto them, What counsel give
+ye that we may answer this people, who have spoken to me, saying, Make
+the yoke which thy father did put upon us lighter? 12:10 And the
+young men that were grown up with him spake unto him, saying, Thus
+shalt thou speak unto this people that spake unto thee, saying, Thy
+father made our yoke heavy, but make thou it lighter unto us; thus
+shalt thou say unto them, My little finger shall be thicker than my
+father's loins.
+
+12:11 And now whereas my father did lade you with a heavy yoke, I will
+add to your yoke: my father hath chastised you with whips, but I will
+chastise you with scorpions.
+
+12:12 So Jeroboam and all the people came to Rehoboam the third day,
+as the king had appointed, saying, Come to me again the third day.
+
+12:13 And the king answered the people roughly, and forsook the old
+men's counsel that they gave him; 12:14 And spake to them after the
+counsel of the young men, saying, My father made your yoke heavy, and
+I will add to your yoke: my father also chastised you with whips, but
+I will chastise you with scorpions.
+
+12:15 Wherefore the king hearkened not unto the people; for the cause
+was from the LORD, that he might perform his saying, which the LORD
+spake by Ahijah the Shilonite unto Jeroboam the son of Nebat.
+
+12:16 So when all Israel saw that the king hearkened not unto them,
+the people answered the king, saying, What portion have we in David?
+neither have we inheritance in the son of Jesse: to your tents, O
+Israel: now see to thine own house, David. So Israel departed unto
+their tents.
+
+12:17 But as for the children of Israel which dwelt in the cities of
+Judah, Rehoboam reigned over them.
+
+12:18 Then king Rehoboam sent Adoram, who was over the tribute; and
+all Israel stoned him with stones, that he died. Therefore king
+Rehoboam made speed to get him up to his chariot, to flee to
+Jerusalem.
+
+12:19 So Israel rebelled against the house of David unto this day.
+
+12:20 And it came to pass, when all Israel heard that Jeroboam was
+come again, that they sent and called him unto the congregation, and
+made him king over all Israel: there was none that followed the house
+of David, but the tribe of Judah only.
+
+12:21 And when Rehoboam was come to Jerusalem, he assembled all the
+house of Judah, with the tribe of Benjamin, an hundred and fourscore
+thousand chosen men, which were warriors, to fight against the house
+of Israel, to bring the kingdom again to Rehoboam the son of Solomon.
+
+12:22 But the word of God came unto Shemaiah the man of God, saying,
+12:23 Speak unto Rehoboam, the son of Solomon, king of Judah, and unto
+all the house of Judah and Benjamin, and to the remnant of the people,
+saying, 12:24 Thus saith the LORD, Ye shall not go up, nor fight
+against your brethren the children of Israel: return every man to his
+house; for this thing is from me. They hearkened therefore to the word
+of the LORD, and returned to depart, according to the word of the
+LORD.
+
+12:25 Then Jeroboam built Shechem in mount Ephraim, and dwelt therein;
+and went out from thence, and built Penuel.
+
+12:26 And Jeroboam said in his heart, Now shall the kingdom return to
+the house of David: 12:27 If this people go up to do sacrifice in the
+house of the LORD at Jerusalem, then shall the heart of this people
+turn again unto their lord, even unto Rehoboam king of Judah, and they
+shall kill me, and go again to Rehoboam king of Judah.
+
+12:28 Whereupon the king took counsel, and made two calves of gold,
+and said unto them, It is too much for you to go up to Jerusalem:
+behold thy gods, O Israel, which brought thee up out of the land of
+Egypt.
+
+12:29 And he set the one in Bethel, and the other put he in Dan.
+
+12:30 And this thing became a sin: for the people went to worship
+before the one, even unto Dan.
+
+12:31 And he made an house of high places, and made priests of the
+lowest of the people, which were not of the sons of Levi.
+
+12:32 And Jeroboam ordained a feast in the eighth month, on the
+fifteenth day of the month, like unto the feast that is in Judah, and
+he offered upon the altar. So did he in Bethel, sacrificing unto the
+calves that he had made: and he placed in Bethel the priests of the
+high places which he had made.
+
+12:33 So he offered upon the altar which he had made in Bethel the
+fifteenth day of the eighth month, even in the month which he had
+devised of his own heart; and ordained a feast unto the children of
+Israel: and he offered upon the altar, and burnt incense.
+
+13:1 And, behold, there came a man of God out of Judah by the word of
+the LORD unto Bethel: and Jeroboam stood by the altar to burn incense.
+
+13:2 And he cried against the altar in the word of the LORD, and said,
+O altar, altar, thus saith the LORD; Behold, a child shall be born
+unto the house of David, Josiah by name; and upon thee shall he offer
+the priests of the high places that burn incense upon thee, and men's
+bones shall be burnt upon thee.
+
+13:3 And he gave a sign the same day, saying, This is the sign which
+the LORD hath spoken; Behold, the altar shall be rent, and the ashes
+that are upon it shall be poured out.
+
+13:4 And it came to pass, when king Jeroboam heard the saying of the
+man of God, which had cried against the altar in Bethel, that he put
+forth his hand from the altar, saying, Lay hold on him. And his hand,
+which he put forth against him, dried up, so that he could not pull it
+in again to him.
+
+13:5 The altar also was rent, and the ashes poured out from the altar,
+according to the sign which the man of God had given by the word of
+the LORD.
+
+13:6 And the king answered and said unto the man of God, Intreat now
+the face of the LORD thy God, and pray for me, that my hand may be
+restored me again. And the man of God besought the LORD, and the
+king's hand was restored him again, and became as it was before.
+
+13:7 And the king said unto the man of God, Come home with me, and
+refresh thyself, and I will give thee a reward.
+
+13:8 And the man of God said unto the king, If thou wilt give me half
+thine house, I will not go in with thee, neither will I eat bread nor
+drink water in this place: 13:9 For so was it charged me by the word
+of the LORD, saying, Eat no bread, nor drink water, nor turn again by
+the same way that thou camest.
+
+13:10 So he went another way, and returned not by the way that he came
+to Bethel.
+
+13:11 Now there dwelt an old prophet in Bethel; and his sons came and
+told him all the works that the man of God had done that day in
+Bethel: the words which he had spoken unto the king, them they told
+also to their father.
+
+13:12 And their father said unto them, What way went he? For his sons
+had seen what way the man of God went, which came from Judah.
+
+13:13 And he said unto his sons, Saddle me the ass. So they saddled
+him the ass: and he rode thereon, 13:14 And went after the man of God,
+and found him sitting under an oak: and he said unto him, Art thou the
+man of God that camest from Judah? And he said, I am.
+
+13:15 Then he said unto him, Come home with me, and eat bread.
+
+13:16 And he said, I may not return with thee, nor go in with thee:
+neither will I eat bread nor drink water with thee in this place:
+13:17 For it was said to me by the word of the LORD, Thou shalt eat no
+bread nor drink water there, nor turn again to go by the way that thou
+camest.
+
+13:18 He said unto him, I am a prophet also as thou art; and an angel
+spake unto me by the word of the LORD, saying, Bring him back with
+thee into thine house, that he may eat bread and drink water. But he
+lied unto him.
+
+13:19 So he went back with him, and did eat bread in his house, and
+drank water.
+
+13:20 And it came to pass, as they sat at the table, that the word of
+the LORD came unto the prophet that brought him back: 13:21 And he
+cried unto the man of God that came from Judah, saying, Thus saith the
+LORD, Forasmuch as thou hast disobeyed the mouth of the LORD, and hast
+not kept the commandment which the LORD thy God commanded thee, 13:22
+But camest back, and hast eaten bread and drunk water in the place, of
+the which the Lord did say to thee, Eat no bread, and drink no water;
+thy carcase shall not come unto the sepulchre of thy fathers.
+
+13:23 And it came to pass, after he had eaten bread, and after he had
+drunk, that he saddled for him the ass, to wit, for the prophet whom
+he had brought back.
+
+13:24 And when he was gone, a lion met him by the way, and slew him:
+and his carcase was cast in the way, and the ass stood by it, the lion
+also stood by the carcase.
+
+13:25 And, behold, men passed by, and saw the carcase cast in the way,
+and the lion standing by the carcase: and they came and told it in the
+city where the old prophet dwelt.
+
+13:26 And when the prophet that brought him back from the way heard
+thereof, he said, It is the man of God, who was disobedient unto the
+word of the LORD: therefore the LORD hath delivered him unto the lion,
+which hath torn him, and slain him, according to the word of the LORD,
+which he spake unto him.
+
+13:27 And he spake to his sons, saying, Saddle me the ass. And they
+saddled him.
+
+13:28 And he went and found his carcase cast in the way, and the ass
+and the lion standing by the carcase: the lion had not eaten the
+carcase, nor torn the ass.
+
+13:29 And the prophet took up the carcase of the man of God, and laid
+it upon the ass, and brought it back: and the old prophet came to the
+city, to mourn and to bury him.
+
+13:30 And he laid his carcase in his own grave; and they mourned over
+him, saying, Alas, my brother! 13:31 And it came to pass, after he
+had buried him, that he spake to his sons, saying, When I am dead,
+then bury me in the sepulchre wherein the man of God is buried; lay my
+bones beside his bones: 13:32 For the saying which he cried by the
+word of the LORD against the altar in Bethel, and against all the
+houses of the high places which are in the cities of Samaria, shall
+surely come to pass.
+
+13:33 After this thing Jeroboam returned not from his evil way, but
+made again of the lowest of the people priests of the high places:
+whosoever would, he consecrated him, and he became one of the priests
+of the high places.
+
+13:34 And this thing became sin unto the house of Jeroboam, even to
+cut it off, and to destroy it from off the face of the earth.
+
+14:1 At that time Abijah the son of Jeroboam fell sick.
+
+14:2 And Jeroboam said to his wife, Arise, I pray thee, and disguise
+thyself, that thou be not known to be the wife of Jeroboam; and get
+thee to Shiloh: behold, there is Ahijah the prophet, which told me
+that I should be king over this people.
+
+14:3 And take with thee ten loaves, and cracknels, and a cruse of
+honey, and go to him: he shall tell thee what shall become of the
+child.
+
+14:4 And Jeroboam's wife did so, and arose, and went to Shiloh, and
+came to the house of Ahijah. But Ahijah could not see; for his eyes
+were set by reason of his age.
+
+14:5 And the LORD said unto Ahijah, Behold, the wife of Jeroboam
+cometh to ask a thing of thee for her son; for he is sick: thus and
+thus shalt thou say unto her: for it shall be, when she cometh in,
+that she shall feign herself to be another woman.
+
+14:6 And it was so, when Ahijah heard the sound of her feet, as she
+came in at the door, that he said, Come in, thou wife of Jeroboam; why
+feignest thou thyself to be another? for I am sent to thee with heavy
+tidings.
+
+14:7 Go, tell Jeroboam, Thus saith the LORD God of Israel, Forasmuch
+as I exalted thee from among the people, and made thee prince over my
+people Israel, 14:8 And rent the kingdom away from the house of David,
+and gave it thee: and yet thou hast not been as my servant David, who
+kept my commandments, and who followed me with all his heart, to do
+that only which was right in mine eyes; 14:9 But hast done evil above
+all that were before thee: for thou hast gone and made thee other
+gods, and molten images, to provoke me to anger, and hast cast me
+behind thy back: 14:10 Therefore, behold, I will bring evil upon the
+house of Jeroboam, and will cut off from Jeroboam him that pisseth
+against the wall, and him that is shut up and left in Israel, and will
+take away the remnant of the house of Jeroboam, as a man taketh away
+dung, till it be all gone.
+
+14:11 Him that dieth of Jeroboam in the city shall the dogs eat; and
+him that dieth in the field shall the fowls of the air eat: for the
+LORD hath spoken it.
+
+14:12 Arise thou therefore, get thee to thine own house: and when thy
+feet enter into the city, the child shall die.
+
+14:13 And all Israel shall mourn for him, and bury him: for he only of
+Jeroboam shall come to the grave, because in him there is found some
+good thing toward the LORD God of Israel in the house of Jeroboam.
+
+14:14 Moreover the LORD shall raise him up a king over Israel, who
+shall cut off the house of Jeroboam that day: but what? even now.
+
+14:15 For the LORD shall smite Israel, as a reed is shaken in the
+water, and he shall root up Israel out of this good land, which he
+gave to their fathers, and shall scatter them beyond the river,
+because they have made their groves, provoking the LORD to anger.
+
+14:16 And he shall give Israel up because of the sins of Jeroboam, who
+did sin, and who made Israel to sin.
+
+14:17 And Jeroboam's wife arose, and departed, and came to Tirzah: and
+when she came to the threshold of the door, the child died; 14:18 And
+they buried him; and all Israel mourned for him, according to the word
+of the LORD, which he spake by the hand of his servant Ahijah the
+prophet.
+
+14:19 And the rest of the acts of Jeroboam, how he warred, and how he
+reigned, behold, they are written in the book of the chronicles of the
+kings of Israel.
+
+14:20 And the days which Jeroboam reigned were two and twenty years:
+and he slept with his fathers, and Nadab his son reigned in his stead.
+
+14:21 And Rehoboam the son of Solomon reigned in Judah. Rehoboam was
+forty and one years old when he began to reign, and he reigned
+seventeen years in Jerusalem, the city which the LORD did choose out
+of all the tribes of Israel, to put his name there. And his mother's
+name was Naamah an Ammonitess.
+
+14:22 And Judah did evil in the sight of the LORD, and they provoked
+him to jealousy with their sins which they had committed, above all
+that their fathers had done.
+
+14:23 For they also built them high places, and images, and groves, on
+every high hill, and under every green tree.
+
+14:24 And there were also sodomites in the land: and they did
+according to all the abominations of the nations which the LORD cast
+out before the children of Israel.
+
+14:25 And it came to pass in the fifth year of king Rehoboam, that
+Shishak king of Egypt came up against Jerusalem: 14:26 And he took
+away the treasures of the house of the LORD, and the treasures of the
+king's house; he even took away all: and he took away all the shields
+of gold which Solomon had made.
+
+14:27 And king Rehoboam made in their stead brasen shields, and
+committed them unto the hands of the chief of the guard, which kept
+the door of the king's house.
+
+14:28 And it was so, when the king went into the house of the LORD,
+that the guard bare them, and brought them back into the guard
+chamber.
+
+14:29 Now the rest of the acts of Rehoboam, and all that he did, are
+they not written in the book of the chronicles of the kings of Judah?
+14:30 And there was war between Rehoboam and Jeroboam all their days.
+
+14:31 And Rehoboam slept with his fathers, and was buried with his
+fathers in the city of David. And his mother's name was Naamah an
+Ammonitess. And Abijam his son reigned in his stead.
+
+15:1 Now in the eighteenth year of king Jeroboam the son of Nebat
+reigned Abijam over Judah.
+
+15:2 Three years reigned he in Jerusalem. and his mother's name was
+Maachah, the daughter of Abishalom.
+
+15:3 And he walked in all the sins of his father, which he had done
+before him: and his heart was not perfect with the LORD his God, as
+the heart of David his father.
+
+15:4 Nevertheless for David's sake did the LORD his God give him a
+lamp in Jerusalem, to set up his son after him, and to establish
+Jerusalem: 15:5 Because David did that which was right in the eyes of
+the LORD, and turned not aside from any thing that he commanded him
+all the days of his life, save only in the matter of Uriah the
+Hittite.
+
+15:6 And there was war between Rehoboam and Jeroboam all the days of
+his life.
+
+15:7 Now the rest of the acts of Abijam, and all that he did, are they
+not written in the book of the chronicles of the kings of Judah? And
+there was war between Abijam and Jeroboam.
+
+15:8 And Abijam slept with his fathers; and they buried him in the
+city of David: and Asa his son reigned in his stead.
+
+15:9 And in the twentieth year of Jeroboam king of Israel reigned Asa
+over Judah.
+
+15:10 And forty and one years reigned he in Jerusalem. And his
+mother's name was Maachah, the daughter of Abishalom.
+
+15:11 And Asa did that which was right in the eyes of the LORD, as did
+David his father.
+
+15:12 And he took away the sodomites out of the land, and removed all
+the idols that his fathers had made.
+
+15:13 And also Maachah his mother, even her he removed from being
+queen, because she had made an idol in a grove; and Asa destroyed her
+idol, and burnt it by the brook Kidron.
+
+15:14 But the high places were not removed: nevertheless Asa's heart
+was perfect with the LORD all his days.
+
+15:15 And he brought in the things which his father had dedicated, and
+the things which himself had dedicated, into the house of the LORD,
+silver, and gold, and vessels.
+
+15:16 And there was war between Asa and Baasha king of Israel all
+their days.
+
+15:17 And Baasha king of Israel went up against Judah, and built
+Ramah, that he might not suffer any to go out or come in to Asa king
+of Judah.
+
+15:18 Then Asa took all the silver and the gold that were left in the
+treasures of the house of the LORD, and the treasures of the king's
+house, and delivered them into the hand of his servants: and king Asa
+sent them to Benhadad, the son of Tabrimon, the son of Hezion, king of
+Syria, that dwelt at Damascus, saying, 15:19 There is a league between
+me and thee, and between my father and thy father: behold, I have sent
+unto thee a present of silver and gold; come and break thy league with
+Baasha king of Israel, that he may depart from me.
+
+15:20 So Benhadad hearkened unto king Asa, and sent the captains of
+the hosts which he had against the cities of Israel, and smote Ijon,
+and Dan, and Abelbethmaachah, and all Cinneroth, with all the land of
+Naphtali.
+
+15:21 And it came to pass, when Baasha heard thereof, that he left off
+building of Ramah, and dwelt in Tirzah.
+
+15:22 Then king Asa made a proclamation throughout all Judah; none was
+exempted: and they took away the stones of Ramah, and the timber
+thereof, wherewith Baasha had builded; and king Asa built with them
+Geba of Benjamin, and Mizpah.
+
+15:23 The rest of all the acts of Asa, and all his might, and all that
+he did, and the cities which he built, are they not written in the
+book of the chronicles of the kings of Judah? Nevertheless in the time
+of his old age he was diseased in his feet.
+
+15:24 And Asa slept with his fathers, and was buried with his fathers
+in the city of David his father: and Jehoshaphat his son reigned in
+his stead.
+
+15:25 And Nadab the son of Jeroboam began to reign over Israel in the
+second year of Asa king of Judah, and reigned over Israel two years.
+
+15:26 And he did evil in the sight of the LORD, and walked in the way
+of his father, and in his sin wherewith he made Israel to sin.
+
+15:27 And Baasha the son of Ahijah, of the house of Issachar,
+conspired against him; and Baasha smote him at Gibbethon, which
+belonged to the Philistines; for Nadab and all Israel laid siege to
+Gibbethon.
+
+15:28 Even in the third year of Asa king of Judah did Baasha slay him,
+and reigned in his stead.
+
+15:29 And it came to pass, when he reigned, that he smote all the
+house of Jeroboam; he left not to Jeroboam any that breathed, until he
+had destroyed him, according unto the saying of the LORD, which he
+spake by his servant Ahijah the Shilonite: 15:30 Because of the sins
+of Jeroboam which he sinned, and which he made Israel sin, by his
+provocation wherewith he provoked the LORD God of Israel to anger.
+
+15:31 Now the rest of the acts of Nadab, and all that he did, are they
+not written in the book of the chronicles of the kings of Israel?
+15:32 And there was war between Asa and Baasha king of Israel all
+their days.
+
+15:33 In the third year of Asa king of Judah began Baasha the son of
+Ahijah to reign over all Israel in Tirzah, twenty and four years.
+
+15:34 And he did evil in the sight of the LORD, and walked in the way
+of Jeroboam, and in his sin wherewith he made Israel to sin.
+
+16:1 Then the word of the LORD came to Jehu the son of Hanani against
+Baasha, saying, 16:2 Forasmuch as I exalted thee out of the dust, and
+made thee prince over my people Israel; and thou hast walked in the
+way of Jeroboam, and hast made my people Israel to sin, to provoke me
+to anger with their sins; 16:3 Behold, I will take away the posterity
+of Baasha, and the posterity of his house; and will make thy house
+like the house of Jeroboam the son of Nebat.
+
+16:4 Him that dieth of Baasha in the city shall the dogs eat; and him
+that dieth of his in the fields shall the fowls of the air eat.
+
+16:5 Now the rest of the acts of Baasha, and what he did, and his
+might, are they not written in the book of the chronicles of the kings
+of Israel? 16:6 So Baasha slept with his fathers, and was buried in
+Tirzah: and Elah his son reigned in his stead.
+
+16:7 And also by the hand of the prophet Jehu the son of Hanani came
+the word of the LORD against Baasha, and against his house, even for
+all the evil that he did in the sight of the LORD, in provoking him to
+anger with the work of his hands, in being like the house of Jeroboam;
+and because he killed him.
+
+16:8 In the twenty and sixth year of Asa king of Judah began Elah the
+son of Baasha to reign over Israel in Tirzah, two years.
+
+16:9 And his servant Zimri, captain of half his chariots, conspired
+against him, as he was in Tirzah, drinking himself drunk in the house
+of Arza steward of his house in Tirzah.
+
+16:10 And Zimri went in and smote him, and killed him, in the twenty
+and seventh year of Asa king of Judah, and reigned in his stead.
+
+16:11 And it came to pass, when he began to reign, as soon as he sat
+on his throne, that he slew all the house of Baasha: he left him not
+one that pisseth against a wall, neither of his kinsfolks, nor of his
+friends.
+
+16:12 Thus did Zimri destroy all the house of Baasha, according to the
+word of the LORD, which he spake against Baasha by Jehu the prophet.
+
+16:13 For all the sins of Baasha, and the sins of Elah his son, by
+which they sinned, and by which they made Israel to sin, in provoking
+the LORD God of Israel to anger with their vanities.
+
+16:14 Now the rest of the acts of Elah, and all that he did, are they
+not written in the book of the chronicles of the kings of Israel?
+16:15 In the twenty and seventh year of Asa king of Judah did Zimri
+reign seven days in Tirzah. And the people were encamped against
+Gibbethon, which belonged to the Philistines.
+
+16:16 And the people that were encamped heard say, Zimri hath
+conspired, and hath also slain the king: wherefore all Israel made
+Omri, the captain of the host, king over Israel that day in the camp.
+
+16:17 And Omri went up from Gibbethon, and all Israel with him, and
+they besieged Tirzah.
+
+16:18 And it came to pass, when Zimri saw that the city was taken,
+that he went into the palace of the king's house, and burnt the king's
+house over him with fire, and died.
+
+16:19 For his sins which he sinned in doing evil in the sight of the
+LORD, in walking in the way of Jeroboam, and in his sin which he did,
+to make Israel to sin.
+
+16:20 Now the rest of the acts of Zimri, and his treason that he
+wrought, are they not written in the book of the chronicles of the
+kings of Israel? 16:21 Then were the people of Israel divided into
+two parts: half of the people followed Tibni the son of Ginath, to
+make him king; and half followed Omri.
+
+16:22 But the people that followed Omri prevailed against the people
+that followed Tibni the son of Ginath: so Tibni died, and Omri
+reigned.
+
+16:23 In the thirty and first year of Asa king of Judah began Omri to
+reign over Israel, twelve years: six years reigned he in Tirzah.
+
+16:24 And he bought the hill Samaria of Shemer for two talents of
+silver, and built on the hill, and called the name of the city which
+he built, after the name of Shemer, owner of the hill, Samaria.
+
+16:25 But Omri wrought evil in the eyes of the LORD, and did worse
+than all that were before him.
+
+16:26 For he walked in all the way of Jeroboam the son of Nebat, and
+in his sin wherewith he made Israel to sin, to provoke the LORD God of
+Israel to anger with their vanities.
+
+16:27 Now the rest of the acts of Omri which he did, and his might
+that he shewed, are they not written in the book of the chronicles of
+the kings of Israel? 16:28 So Omri slept with his fathers, and was
+buried in Samaria: and Ahab his son reigned in his stead.
+
+16:29 And in the thirty and eighth year of Asa king of Judah began
+Ahab the son of Omri to reign over Israel: and Ahab the son of Omri
+reigned over Israel in Samaria twenty and two years.
+
+16:30 And Ahab the son of Omri did evil in the sight of the LORD above
+all that were before him.
+
+16:31 And it came to pass, as if it had been a light thing for him to
+walk in the sins of Jeroboam the son of Nebat, that he took to wife
+Jezebel the daughter of Ethbaal king of the Zidonians, and went and
+served Baal, and worshipped him.
+
+16:32 And he reared up an altar for Baal in the house of Baal, which
+he had built in Samaria.
+
+16:33 And Ahab made a grove; and Ahab did more to provoke the LORD God
+of Israel to anger than all the kings of Israel that were before him.
+
+16:34 In his days did Hiel the Bethelite build Jericho: he laid the
+foundation thereof in Abiram his firstborn, and set up the gates
+thereof in his youngest son Segub, according to the word of the LORD,
+which he spake by Joshua the son of Nun.
+
+17:1 And Elijah the Tishbite, who was of the inhabitants of Gilead,
+said unto Ahab, As the LORD God of Israel liveth, before whom I stand,
+there shall not be dew nor rain these years, but according to my word.
+
+17:2 And the word of the LORD came unto him, saying, 17:3 Get thee
+hence, and turn thee eastward, and hide thyself by the brook Cherith,
+that is before Jordan.
+
+17:4 And it shall be, that thou shalt drink of the brook; and I have
+commanded the ravens to feed thee there.
+
+17:5 So he went and did according unto the word of the LORD: for he
+went and dwelt by the brook Cherith, that is before Jordan.
+
+17:6 And the ravens brought him bread and flesh in the morning, and
+bread and flesh in the evening; and he drank of the brook.
+
+17:7 And it came to pass after a while, that the brook dried up,
+because there had been no rain in the land.
+
+17:8 And the word of the LORD came unto him, saying, 17:9 Arise, get
+thee to Zarephath, which belongeth to Zidon, and dwell there: behold,
+I have commanded a widow woman there to sustain thee.
+
+17:10 So he arose and went to Zarephath. And when he came to the gate
+of the city, behold, the widow woman was there gathering of sticks:
+and he called to her, and said, Fetch me, I pray thee, a little water
+in a vessel, that I may drink.
+
+17:11 And as she was going to fetch it, he called to her, and said,
+Bring me, I pray thee, a morsel of bread in thine hand.
+
+17:12 And she said, As the LORD thy God liveth, I have not a cake, but
+an handful of meal in a barrel, and a little oil in a cruse: and,
+behold, I am gathering two sticks, that I may go in and dress it for
+me and my son, that we may eat it, and die.
+
+17:13 And Elijah said unto her, Fear not; go and do as thou hast said:
+but make me thereof a little cake first, and bring it unto me, and
+after make for thee and for thy son.
+
+17:14 For thus saith the LORD God of Israel, The barrel of meal shall
+not waste, neither shall the cruse of oil fail, until the day that the
+LORD sendeth rain upon the earth.
+
+17:15 And she went and did according to the saying of Elijah: and she,
+and he, and her house, did eat many days.
+
+17:16 And the barrel of meal wasted not, neither did the cruse of oil
+fail, according to the word of the LORD, which he spake by Elijah.
+
+17:17 And it came to pass after these things, that the son of the
+woman, the mistress of the house, fell sick; and his sickness was so
+sore, that there was no breath left in him.
+
+17:18 And she said unto Elijah, What have I to do with thee, O thou
+man of God? art thou come unto me to call my sin to remembrance, and
+to slay my son? 17:19 And he said unto her, Give me thy son. And he
+took him out of her bosom, and carried him up into a loft, where he
+abode, and laid him upon his own bed.
+
+17:20 And he cried unto the LORD, and said, O LORD my God, hast thou
+also brought evil upon the widow with whom I sojourn, by slaying her
+son? 17:21 And he stretched himself upon the child three times, and
+cried unto the LORD, and said, O LORD my God, I pray thee, let this
+child's soul come into him again.
+
+17:22 And the LORD heard the voice of Elijah; and the soul of the
+child came into him again, and he revived.
+
+17:23 And Elijah took the child, and brought him down out of the
+chamber into the house, and delivered him unto his mother: and Elijah
+said, See, thy son liveth.
+
+17:24 And the woman said to Elijah, Now by this I know that thou art a
+man of God, and that the word of the LORD in thy mouth is truth.
+
+18:1 And it came to pass after many days, that the word of the LORD
+came to Elijah in the third year, saying, Go, shew thyself unto Ahab;
+and I will send rain upon the earth.
+
+18:2 And Elijah went to shew himself unto Ahab. And there was a sore
+famine in Samaria.
+
+18:3 And Ahab called Obadiah, which was the governor of his house.
+(Now Obadiah feared the LORD greatly: 18:4 For it was so, when Jezebel
+cut off the prophets of the LORD, that Obadiah took an hundred
+prophets, and hid them by fifty in a cave, and fed them with bread and
+water.) 18:5 And Ahab said unto Obadiah, Go into the land, unto all
+fountains of water, and unto all brooks: peradventure we may find
+grass to save the horses and mules alive, that we lose not all the
+beasts.
+
+18:6 So they divided the land between them to pass throughout it: Ahab
+went one way by himself, and Obadiah went another way by himself.
+
+18:7 And as Obadiah was in the way, behold, Elijah met him: and he
+knew him, and fell on his face, and said, Art thou that my lord
+Elijah? 18:8 And he answered him, I am: go, tell thy lord, Behold,
+Elijah is here.
+
+18:9 And he said, What have I sinned, that thou wouldest deliver thy
+servant into the hand of Ahab, to slay me? 18:10 As the LORD thy God
+liveth, there is no nation or kingdom, whither my lord hath not sent
+to seek thee: and when they said, He is not there; he took an oath of
+the kingdom and nation, that they found thee not.
+
+18:11 And now thou sayest, Go, tell thy lord, Behold, Elijah is here.
+
+18:12 And it shall come to pass, as soon as I am gone from thee, that
+the Spirit of the LORD shall carry thee whither I know not; and so
+when I come and tell Ahab, and he cannot find thee, he shall slay me:
+but I thy servant fear the LORD from my youth.
+
+18:13 Was it not told my lord what I did when Jezebel slew the
+prophets of the LORD, how I hid an hundred men of the LORD's prophets
+by fifty in a cave, and fed them with bread and water? 18:14 And now
+thou sayest, Go, tell thy lord, Behold, Elijah is here: and he shall
+slay me.
+
+18:15 And Elijah said, As the LORD of hosts liveth, before whom I
+stand, I will surely shew myself unto him to day.
+
+18:16 So Obadiah went to meet Ahab, and told him: and Ahab went to
+meet Elijah.
+
+18:17 And it came to pass, when Ahab saw Elijah, that Ahab said unto
+him, Art thou he that troubleth Israel? 18:18 And he answered, I have
+not troubled Israel; but thou, and thy father's house, in that ye have
+forsaken the commandments of the LORD, and thou hast followed Baalim.
+
+18:19 Now therefore send, and gather to me all Israel unto mount
+Carmel, and the prophets of Baal four hundred and fifty, and the
+prophets of the groves four hundred, which eat at Jezebel's table.
+
+18:20 So Ahab sent unto all the children of Israel, and gathered the
+prophets together unto mount Carmel.
+
+18:21 And Elijah came unto all the people, and said, How long halt ye
+between two opinions? if the LORD be God, follow him: but if Baal,
+then follow him. And the people answered him not a word.
+
+18:22 Then said Elijah unto the people, I, even I only, remain a
+prophet of the LORD; but Baal's prophets are four hundred and fifty
+men.
+
+18:23 Let them therefore give us two bullocks; and let them choose one
+bullock for themselves, and cut it in pieces, and lay it on wood, and
+put no fire under: and I will dress the other bullock, and lay it on
+wood, and put no fire under: 18:24 And call ye on the name of your
+gods, and I will call on the name of the LORD: and the God that
+answereth by fire, let him be God. And all the people answered and
+said, It is well spoken.
+
+18:25 And Elijah said unto the prophets of Baal, Choose you one
+bullock for yourselves, and dress it first; for ye are many; and call
+on the name of your gods, but put no fire under.
+
+18:26 And they took the bullock which was given them, and they dressed
+it, and called on the name of Baal from morning even until noon,
+saying, O Baal, hear us. But there was no voice, nor any that
+answered. And they leaped upon the altar which was made.
+
+18:27 And it came to pass at noon, that Elijah mocked them, and said,
+Cry aloud: for he is a god; either he is talking, or he is pursuing,
+or he is in a journey, or peradventure he sleepeth, and must be
+awaked.
+
+18:28 And they cried aloud, and cut themselves after their manner with
+knives and lancets, till the blood gushed out upon them.
+
+18:29 And it came to pass, when midday was past, and they prophesied
+until the time of the offering of the evening sacrifice, that there
+was neither voice, nor any to answer, nor any that regarded.
+
+18:30 And Elijah said unto all the people, Come near unto me. And all
+the people came near unto him. And he repaired the altar of the LORD
+that was broken down.
+
+18:31 And Elijah took twelve stones, according to the number of the
+tribes of the sons of Jacob, unto whom the word of the LORD came,
+saying, Israel shall be thy name: 18:32 And with the stones he built
+an altar in the name of the LORD: and he made a trench about the
+altar, as great as would contain two measures of seed.
+
+18:33 And he put the wood in order, and cut the bullock in pieces, and
+laid him on the wood, and said, Fill four barrels with water, and pour
+it on the burnt sacrifice, and on the wood.
+
+18:34 And he said, Do it the second time. And they did it the second
+time.
+
+And he said, Do it the third time. And they did it the third time.
+
+18:35 And the water ran round about the altar; and he filled the
+trench also with water.
+
+18:36 And it came to pass at the time of the offering of the evening
+sacrifice, that Elijah the prophet came near, and said, LORD God of
+Abraham, Isaac, and of Israel, let it be known this day that thou art
+God in Israel, and that I am thy servant, and that I have done all
+these things at thy word.
+
+18:37 Hear me, O LORD, hear me, that this people may know that thou
+art the LORD God, and that thou hast turned their heart back again.
+
+18:38 Then the fire of the LORD fell, and consumed the burnt
+sacrifice, and the wood, and the stones, and the dust, and licked up
+the water that was in the trench.
+
+18:39 And when all the people saw it, they fell on their faces: and
+they said, The LORD, he is the God; the LORD, he is the God.
+
+18:40 And Elijah said unto them, Take the prophets of Baal; let not
+one of them escape. And they took them: and Elijah brought them down
+to the brook Kishon, and slew them there.
+
+18:41 And Elijah said unto Ahab, Get thee up, eat and drink; for there
+is a sound of abundance of rain.
+
+18:42 So Ahab went up to eat and to drink. And Elijah went up to the
+top of Carmel; and he cast himself down upon the earth, and put his
+face between his knees, 18:43 And said to his servant, Go up now, look
+toward the sea. And he went up, and looked, and said, There is
+nothing. And he said, Go again seven times.
+
+18:44 And it came to pass at the seventh time, that he said, Behold,
+there ariseth a little cloud out of the sea, like a man's hand. And he
+said, Go up, say unto Ahab, Prepare thy chariot, and get thee down
+that the rain stop thee not.
+
+18:45 And it came to pass in the mean while, that the heaven was black
+with clouds and wind, and there was a great rain. And Ahab rode, and
+went to Jezreel.
+
+18:46 And the hand of the LORD was on Elijah; and he girded up his
+loins, and ran before Ahab to the entrance of Jezreel.
+
+19:1 And Ahab told Jezebel all that Elijah had done, and withal how he
+had slain all the prophets with the sword.
+
+19:2 Then Jezebel sent a messenger unto Elijah, saying, So let the
+gods do to me, and more also, if I make not thy life as the life of
+one of them by to morrow about this time.
+
+19:3 And when he saw that, he arose, and went for his life, and came
+to Beersheba, which belongeth to Judah, and left his servant there.
+
+19:4 But he himself went a day's journey into the wilderness, and came
+and sat down under a juniper tree: and he requested for himself that
+he might die; and said, It is enough; now, O LORD, take away my life;
+for I am not better than my fathers.
+
+19:5 And as he lay and slept under a juniper tree, behold, then an
+angel touched him, and said unto him, Arise and eat.
+
+19:6 And he looked, and, behold, there was a cake baken on the coals,
+and a cruse of water at his head. And he did eat and drink, and laid
+him down again.
+
+19:7 And the angel of the LORD came again the second time, and touched
+him, and said, Arise and eat; because the journey is too great for
+thee.
+
+19:8 And he arose, and did eat and drink, and went in the strength of
+that meat forty days and forty nights unto Horeb the mount of God.
+
+19:9 And he came thither unto a cave, and lodged there; and, behold,
+the word of the LORD came to him, and he said unto him, What doest
+thou here, Elijah? 19:10 And he said, I have been very jealous for
+the LORD God of hosts: for the children of Israel have forsaken thy
+covenant, thrown down thine altars, and slain thy prophets with the
+sword; and I, even I only, am left; and they seek my life, to take it
+away.
+
+19:11 And he said, Go forth, and stand upon the mount before the LORD.
+
+And, behold, the LORD passed by, and a great and strong wind rent the
+mountains, and brake in pieces the rocks before the LORD; but the LORD
+was not in the wind: and after the wind an earthquake; but the LORD
+was not in the earthquake: 19:12 And after the earthquake a fire; but
+the LORD was not in the fire: and after the fire a still small voice.
+
+19:13 And it was so, when Elijah heard it, that he wrapped his face in
+his mantle, and went out, and stood in the entering in of the cave.
+And, behold, there came a voice unto him, and said, What doest thou
+here, Elijah? 19:14 And he said, I have been very jealous for the
+LORD God of hosts: because the children of Israel have forsaken thy
+covenant, thrown down thine altars, and slain thy prophets with the
+sword; and I, even I only, am left; and they seek my life, to take it
+away.
+
+19:15 And the LORD said unto him, Go, return on thy way to the
+wilderness of Damascus: and when thou comest, anoint Hazael to be king
+over Syria: 19:16 And Jehu the son of Nimshi shalt thou anoint to be
+king over Israel: and Elisha the son of Shaphat of Abelmeholah shalt
+thou anoint to be prophet in thy room.
+
+19:17 And it shall come to pass, that him that escapeth the sword of
+Hazael shall Jehu slay: and him that escapeth from the sword of Jehu
+shall Elisha slay.
+
+19:18 Yet I have left me seven thousand in Israel, all the knees which
+have not bowed unto Baal, and every mouth which hath not kissed him.
+
+19:19 So he departed thence, and found Elisha the son of Shaphat, who
+was plowing with twelve yoke of oxen before him, and he with the
+twelfth: and Elijah passed by him, and cast his mantle upon him.
+
+19:20 And he left the oxen, and ran after Elijah, and said, Let me, I
+pray thee, kiss my father and my mother, and then I will follow thee.
+And he said unto him, Go back again: for what have I done to thee?
+19:21 And he returned back from him, and took a yoke of oxen, and slew
+them, and boiled their flesh with the instruments of the oxen, and
+gave unto the people, and they did eat. Then he arose, and went after
+Elijah, and ministered unto him.
+
+20:1 And Benhadad the king of Syria gathered all his host together:
+and there were thirty and two kings with him, and horses, and
+chariots; and he went up and besieged Samaria, and warred against it.
+
+20:2 And he sent messengers to Ahab king of Israel into the city, and
+said unto him, Thus saith Benhadad, 20:3 Thy silver and thy gold is
+mine; thy wives also and thy children, even the goodliest, are mine.
+
+20:4 And the king of Israel answered and said, My lord, O king,
+according to thy saying, I am thine, and all that I have.
+
+20:5 And the messengers came again, and said, Thus speaketh Benhadad,
+saying, Although I have sent unto thee, saying, Thou shalt deliver me
+thy silver, and thy gold, and thy wives, and thy children; 20:6 Yet I
+will send my servants unto thee to morrow about this time, and they
+shall search thine house, and the houses of thy servants; and it shall
+be, that whatsoever is pleasant in thine eyes, they shall put it in
+their hand, and take it away.
+
+20:7 Then the king of Israel called all the elders of the land, and
+said, Mark, I pray you, and see how this man seeketh mischief: for he
+sent unto me for my wives, and for my children, and for my silver, and
+for my gold; and I denied him not.
+
+20:8 And all the elders and all the people said unto him, Hearken not
+unto him, nor consent.
+
+20:9 Wherefore he said unto the messengers of Benhadad, Tell my lord
+the king, All that thou didst send for to thy servant at the first I
+will do: but this thing I may not do. And the messengers departed, and
+brought him word again.
+
+20:10 And Benhadad sent unto him, and said, The gods do so unto me,
+and more also, if the dust of Samaria shall suffice for handfuls for
+all the people that follow me.
+
+20:11 And the king of Israel answered and said, Tell him, Let not him
+that girdeth on his harness boast himself as he that putteth it off.
+
+20:12 And it came to pass, when Ben-hadad heard this message, as he
+was drinking, he and the kings in the pavilions, that he said unto his
+servants, Set yourselves in array. And they set themselves in array
+against the city.
+
+20:13 And, behold, there came a prophet unto Ahab king of Israel,
+saying, Thus saith the LORD, Hast thou seen all this great multitude?
+behold, I will deliver it into thine hand this day; and thou shalt
+know that I am the LORD.
+
+20:14 And Ahab said, By whom? And he said, Thus saith the LORD, Even
+by the young men of the princes of the provinces. Then he said, Who
+shall order the battle? And he answered, Thou.
+
+20:15 Then he numbered the young men of the princes of the provinces,
+and they were two hundred and thirty two: and after them he numbered
+all the people, even all the children of Israel, being seven thousand.
+
+20:16 And they went out at noon. But Benhadad was drinking himself
+drunk in the pavilions, he and the kings, the thirty and two kings
+that helped him.
+
+20:17 And the young men of the princes of the provinces went out
+first; and Benhadad sent out, and they told him, saying, There are men
+come out of Samaria.
+
+20:18 And he said, Whether they be come out for peace, take them
+alive; or whether they be come out for war, take them alive.
+
+20:19 So these young men of the princes of the provinces came out of
+the city, and the army which followed them.
+
+20:20 And they slew every one his man: and the Syrians fled; and
+Israel pursued them: and Benhadad the king of Syria escaped on an
+horse with the horsemen.
+
+20:21 And the king of Israel went out, and smote the horses and
+chariots, and slew the Syrians with a great slaughter.
+
+20:22 And the prophet came to the king of Israel, and said unto him,
+Go, strengthen thyself, and mark, and see what thou doest: for at the
+return of the year the king of Syria will come up against thee.
+
+20:23 And the servants of the king of Syria said unto him, Their gods
+are gods of the hills; therefore they were stronger than we; but let
+us fight against them in the plain, and surely we shall be stronger
+than they.
+
+20:24 And do this thing, Take the kings away, every man out of his
+place, and put captains in their rooms: 20:25 And number thee an army,
+like the army that thou hast lost, horse for horse, and chariot for
+chariot: and we will fight against them in the plain, and surely we
+shall be stronger than they. And he hearkened unto their voice, and
+did so.
+
+20:26 And it came to pass at the return of the year, that Benhadad
+numbered the Syrians, and went up to Aphek, to fight against Israel.
+
+20:27 And the children of Israel were numbered, and were all present,
+and went against them: and the children of Israel pitched before them
+like two little flocks of kids; but the Syrians filled the country.
+
+20:28 And there came a man of God, and spake unto the king of Israel,
+and said, Thus saith the LORD, Because the Syrians have said, The LORD
+is God of the hills, but he is not God of the valleys, therefore will
+I deliver all this great multitude into thine hand, and ye shall know
+that I am the LORD.
+
+20:29 And they pitched one over against the other seven days. And so
+it was, that in the seventh day the battle was joined: and the
+children of Israel slew of the Syrians an hundred thousand footmen in
+one day.
+
+20:30 But the rest fled to Aphek, into the city; and there a wall fell
+upon twenty and seven thousand of the men that were left. And Benhadad
+fled, and came into the city, into an inner chamber.
+
+20:31 And his servants said unto him, Behold now, we have heard that
+the kings of the house of Israel are merciful kings: let us, I pray
+thee, put sackcloth on our loins, and ropes upon our heads, and go out
+to the king of Israel: peradventure he will save thy life.
+
+20:32 So they girded sackcloth on their loins, and put ropes on their
+heads, and came to the king of Israel, and said, Thy servant Benhadad
+saith, I pray thee, let me live. And he said, Is he yet alive? he is
+my brother.
+
+20:33 Now the men did diligently observe whether any thing would come
+from him, and did hastily catch it: and they said, Thy brother
+Benhadad. Then he said, Go ye, bring him. Then Benhadad came forth to
+him; and he caused him to come up into the chariot.
+
+20:34 And Ben-hadad said unto him, The cities, which my father took
+from thy father, I will restore; and thou shalt make streets for thee
+in Damascus, as my father made in Samaria. Then said Ahab, I will send
+thee away with this covenant. So he made a covenant with him, and sent
+him away.
+
+20:35 And a certain man of the sons of the prophets said unto his
+neighbour in the word of the LORD, Smite me, I pray thee. And the man
+refused to smite him.
+
+20:36 Then said he unto him, Because thou hast not obeyed the voice of
+the LORD, behold, as soon as thou art departed from me, a lion shall
+slay thee.
+
+And as soon as he was departed from him, a lion found him, and slew
+him.
+
+20:37 Then he found another man, and said, Smite me, I pray thee. And
+the man smote him, so that in smiting he wounded him.
+
+20:38 So the prophet departed, and waited for the king by the way, and
+disguised himself with ashes upon his face.
+
+20:39 And as the king passed by, he cried unto the king: and he said,
+Thy servant went out into the midst of the battle; and, behold, a man
+turned aside, and brought a man unto me, and said, Keep this man: if
+by any means he be missing, then shall thy life be for his life, or
+else thou shalt pay a talent of silver.
+
+20:40 And as thy servant was busy here and there, he was gone. And the
+king of Israel said unto him, So shall thy judgment be; thyself hast
+decided it.
+
+20:41 And he hasted, and took the ashes away from his face; and the
+king of Israel discerned him that he was of the prophets.
+
+20:42 And he said unto him, Thus saith the LORD, Because thou hast let
+go out of thy hand a man whom I appointed to utter destruction,
+therefore thy life shall go for his life, and thy people for his
+people.
+
+20:43 And the king of Israel went to his house heavy and displeased,
+and came to Samaria.
+
+21:1 And it came to pass after these things, that Naboth the
+Jezreelite had a vineyard, which was in Jezreel, hard by the palace of
+Ahab king of Samaria.
+
+21:2 And Ahab spake unto Naboth, saying, Give me thy vineyard, that I
+may have it for a garden of herbs, because it is near unto my house:
+and I will give thee for it a better vineyard than it; or, if it seem
+good to thee, I will give thee the worth of it in money.
+
+21:3 And Naboth said to Ahab, The LORD forbid it me, that I should
+give the inheritance of my fathers unto thee.
+
+21:4 And Ahab came into his house heavy and displeased because of the
+word which Naboth the Jezreelite had spoken to him: for he had said, I
+will not give thee the inheritance of my fathers. And he laid him down
+upon his bed, and turned away his face, and would eat no bread.
+
+21:5 But Jezebel his wife came to him, and said unto him, Why is thy
+spirit so sad, that thou eatest no bread? 21:6 And he said unto her,
+Because I spake unto Naboth the Jezreelite, and said unto him, Give me
+thy vineyard for money; or else, if it please thee, I will give thee
+another vineyard for it: and he answered, I will not give thee my
+vineyard.
+
+21:7 And Jezebel his wife said unto him, Dost thou now govern the
+kingdom of Israel? arise, and eat bread, and let thine heart be merry:
+I will give thee the vineyard of Naboth the Jezreelite.
+
+21:8 So she wrote letters in Ahab's name, and sealed them with his
+seal, and sent the letters unto the elders and to the nobles that were
+in his city, dwelling with Naboth.
+
+21:9 And she wrote in the letters, saying, Proclaim a fast, and set
+Naboth on high among the people: 21:10 And set two men, sons of
+Belial, before him, to bear witness against him, saying, Thou didst
+blaspheme God and the king. And then carry him out, and stone him,
+that he may die.
+
+21:11 And the men of his city, even the elders and the nobles who were
+the inhabitants in his city, did as Jezebel had sent unto them, and as
+it was written in the letters which she had sent unto them.
+
+21:12 They proclaimed a fast, and set Naboth on high among the people.
+
+21:13 And there came in two men, children of Belial, and sat before
+him: and the men of Belial witnessed against him, even against Naboth,
+in the presence of the people, saying, Naboth did blaspheme God and
+the king. Then they carried him forth out of the city, and stoned him
+with stones, that he died.
+
+21:14 Then they sent to Jezebel, saying, Naboth is stoned, and is
+dead.
+
+21:15 And it came to pass, when Jezebel heard that Naboth was stoned,
+and was dead, that Jezebel said to Ahab, Arise, take possession of the
+vineyard of Naboth the Jezreelite, which he refused to give thee for
+money: for Naboth is not alive, but dead.
+
+21:16 And it came to pass, when Ahab heard that Naboth was dead, that
+Ahab rose up to go down to the vineyard of Naboth the Jezreelite, to
+take possession of it.
+
+21:17 And the word of the LORD came to Elijah the Tishbite, saying,
+21:18 Arise, go down to meet Ahab king of Israel, which is in Samaria:
+behold, he is in the vineyard of Naboth, whither he is gone down to
+possess it.
+
+21:19 And thou shalt speak unto him, saying, Thus saith the LORD, Hast
+thou killed, and also taken possession? And thou shalt speak unto him,
+saying, Thus saith the LORD, In the place where dogs licked the blood
+of Naboth shall dogs lick thy blood, even thine.
+
+21:20 And Ahab said to Elijah, Hast thou found me, O mine enemy? And
+he answered, I have found thee: because thou hast sold thyself to work
+evil in the sight of the LORD.
+
+21:21 Behold, I will bring evil upon thee, and will take away thy
+posterity, and will cut off from Ahab him that pisseth against the
+wall, and him that is shut up and left in Israel, 21:22 And will make
+thine house like the house of Jeroboam the son of Nebat, and like the
+house of Baasha the son of Ahijah, for the provocation wherewith thou
+hast provoked me to anger, and made Israel to sin.
+
+21:23 And of Jezebel also spake the LORD, saying, The dogs shall eat
+Jezebel by the wall of Jezreel.
+
+21:24 Him that dieth of Ahab in the city the dogs shall eat; and him
+that dieth in the field shall the fowls of the air eat.
+
+21:25 But there was none like unto Ahab, which did sell himself to
+work wickedness in the sight of the LORD, whom Jezebel his wife
+stirred up.
+
+21:26 And he did very abominably in following idols, according to all
+things as did the Amorites, whom the LORD cast out before the children
+of Israel.
+
+21:27 And it came to pass, when Ahab heard those words, that he rent
+his clothes, and put sackcloth upon his flesh, and fasted, and lay in
+sackcloth, and went softly.
+
+21:28 And the word of the LORD came to Elijah the Tishbite, saying,
+21:29 Seest thou how Ahab humbleth himself before me? because he
+humbleth himself before me, I will not bring the evil in his days: but
+in his son's days will I bring the evil upon his house.
+
+22:1 And they continued three years without war between Syria and
+Israel.
+
+22:2 And it came to pass in the third year, that Jehoshaphat the king
+of Judah came down to the king of Israel.
+
+22:3 And the king of Israel said unto his servants, Know ye that
+Ramoth in Gilead is ours, and we be still, and take it not out of the
+hand of the king of Syria? 22:4 And he said unto Jehoshaphat, Wilt
+thou go with me to battle to Ramothgilead? And Jehoshaphat said to the
+king of Israel, I am as thou art, my people as thy people, my horses
+as thy horses.
+
+22:5 And Jehoshaphat said unto the king of Israel, Enquire, I pray
+thee, at the word of the LORD to day.
+
+22:6 Then the king of Israel gathered the prophets together, about
+four hundred men, and said unto them, Shall I go against Ramothgilead
+to battle, or shall I forbear? And they said, Go up; for the LORD
+shall deliver it into the hand of the king.
+
+22:7 And Jehoshaphat said, Is there not here a prophet of the LORD
+besides, that we might enquire of him? 22:8 And the king of Israel
+said unto Jehoshaphat, There is yet one man, Micaiah the son of Imlah,
+by whom we may enquire of the LORD: but I hate him; for he doth not
+prophesy good concerning me, but evil. And Jehoshaphat said, Let not
+the king say so.
+
+22:9 Then the king of Israel called an officer, and said, Hasten
+hither Micaiah the son of Imlah.
+
+22:10 And the king of Israel and Jehoshaphat the king of Judah sat
+each on his throne, having put on their robes, in a void place in the
+entrance of the gate of Samaria; and all the prophets prophesied
+before them.
+
+22:11 And Zedekiah the son of Chenaanah made him horns of iron: and he
+said, Thus saith the LORD, With these shalt thou push the Syrians,
+until thou have consumed them.
+
+22:12 And all the prophets prophesied so, saying, Go up to
+Ramothgilead, and prosper: for the LORD shall deliver it into the
+king's hand.
+
+22:13 And the messenger that was gone to call Micaiah spake unto him,
+saying, Behold now, the words of the prophets declare good unto the
+king with one mouth: let thy word, I pray thee, be like the word of
+one of them, and speak that which is good.
+
+22:14 And Micaiah said, As the LORD liveth, what the LORD saith unto
+me, that will I speak.
+
+22:15 So he came to the king. And the king said unto him, Micaiah,
+shall we go against Ramothgilead to battle, or shall we forbear? And
+he answered him, Go, and prosper: for the LORD shall deliver it into
+the hand of the king.
+
+22:16 And the king said unto him, How many times shall I adjure thee
+that thou tell me nothing but that which is true in the name of the
+LORD? 22:17 And he said, I saw all Israel scattered upon the hills,
+as sheep that have not a shepherd: and the LORD said, These have no
+master: let them return every man to his house in peace.
+
+22:18 And the king of Israel said unto Jehoshaphat, Did I not tell
+thee that he would prophesy no good concerning me, but evil? 22:19
+And he said, Hear thou therefore the word of the LORD: I saw the LORD
+sitting on his throne, and all the host of heaven standing by him on
+his right hand and on his left.
+
+22:20 And the LORD said, Who shall persuade Ahab, that he may go up
+and fall at Ramothgilead? And one said on this manner, and another
+said on that manner.
+
+22:21 And there came forth a spirit, and stood before the LORD, and
+said, I will persuade him.
+
+22:22 And the LORD said unto him, Wherewith? And he said, I will go
+forth, and I will be a lying spirit in the mouth of all his prophets.
+And he said, Thou shalt persude him, and prevail also: go forth, and
+do so.
+
+22:23 Now therefore, behold, the LORD hath put a lying spirit in the
+mouth of all these thy prophets, and the LORD hath spoken evil
+concerning thee.
+
+22:24 But Zedekiah the son of Chenaanah went near, and smote Micaiah
+on the cheek, and said, Which way went the Spirit of the LORD from me
+to speak unto thee? 22:25 And Micaiah said, Behold, thou shalt see in
+that day, when thou shalt go into an inner chamber to hide thyself.
+
+22:26 And the king of Israel said, Take Micaiah, and carry him back
+unto Amon the governor of the city, and to Joash the king's son; 22:27
+And say, Thus saith the king, Put this fellow in the prison, and feed
+him with bread of affliction and with water of affliction, until I
+come in peace.
+
+22:28 And Micaiah said, If thou return at all in peace, the LORD hath
+not spoken by me. And he said, Hearken, O people, every one of you.
+
+22:29 So the king of Israel and Jehoshaphat the king of Judah went up
+to Ramothgilead.
+
+22:30 And the king of Israel said unto Jehoshaphat, I will disguise
+myself, and enter into the battle; but put thou on thy robes. And the
+king of Israel disguised himself, and went into the battle.
+
+22:31 But the king of Syria commanded his thirty and two captains that
+had rule over his chariots, saying, Fight neither with small nor
+great, save only with the king of Israel.
+
+22:32 And it came to pass, when the captains of the chariots saw
+Jehoshaphat, that they said, Surely it is the king of Israel. And they
+turned aside to fight against him: and Jehoshaphat cried out.
+
+22:33 And it came to pass, when the captains of the chariots perceived
+that it was not the king of Israel, that they turned back from
+pursuing him.
+
+22:34 And a certain man drew a bow at a venture, and smote the king of
+Israel between the joints of the harness: wherefore he said unto the
+driver of his chariot, Turn thine hand, and carry me out of the host;
+for I am wounded.
+
+22:35 And the battle increased that day: and the king was stayed up in
+his chariot against the Syrians, and died at even: and the blood ran
+out of the wound into the midst of the chariot.
+
+22:36 And there went a proclamation throughout the host about the
+going down of the sun, saying, Every man to his city, and every man to
+his own country.
+
+22:37 So the king died, and was brought to Samaria; and they buried
+the king in Samaria.
+
+22:38 And one washed the chariot in the pool of Samaria; and the dogs
+licked up his blood; and they washed his armour; according unto the
+word of the LORD which he spake.
+
+22:39 Now the rest of the acts of Ahab, and all that he did, and the
+ivory house which he made, and all the cities that he built, are they
+not written in the book of the chronicles of the kings of Israel?
+22:40 So Ahab slept with his fathers; and Ahaziah his son reigned in
+his stead.
+
+22:41 And Jehoshaphat the son of Asa began to reign over Judah in the
+fourth year of Ahab king of Israel.
+
+22:42 Jehoshaphat was thirty and five years old when he began to
+reign; and he reigned twenty and five years in Jerusalem. And his
+mother's name was Azubah the daughter of Shilhi.
+
+22:43 And he walked in all the ways of Asa his father; he turned not
+aside from it, doing that which was right in the eyes of the LORD:
+nevertheless the high places were not taken away; for the people
+offered and burnt incense yet in the high places.
+
+22:44 And Jehoshaphat made peace with the king of Israel.
+
+22:45 Now the rest of the acts of Jehoshaphat, and his might that he
+shewed, and how he warred, are they not written in the book of the
+chronicles of the kings of Judah? 22:46 And the remnant of the
+sodomites, which remained in the days of his father Asa, he took out
+of the land.
+
+22:47 There was then no king in Edom: a deputy was king.
+
+22:48 Jehoshaphat made ships of Tharshish to go to Ophir for gold: but
+they went not; for the ships were broken at Eziongeber.
+
+22:49 Then said Ahaziah the son of Ahab unto Jehoshaphat, Let my
+servants go with thy servants in the ships. But Jehoshaphat would not.
+
+22:50 And Jehoshaphat slept with his fathers, and was buried with his
+fathers in the city of David his father: and Jehoram his son reigned
+in his stead.
+
+22:51 Ahaziah the son of Ahab began to reign over Israel in Samaria
+the seventeenth year of Jehoshaphat king of Judah, and reigned two
+years over Israel.
+
+22:52 And he did evil in the sight of the LORD, and walked in the way
+of his father, and in the way of his mother, and in the way of
+Jeroboam the son of Nebat, who made Israel to sin: 22:53 For he served
+Baal, and worshipped him, and provoked to anger the LORD God of
+Israel, according to all that his father had done.
+
+
+
+
+The Second Book of the Kings
+
+Commonly Called:
+
+The Fourth Book of the Kings
+
+
+1:1 Then Moab rebelled against Israel after the death of Ahab.
+
+1:2 And Ahaziah fell down through a lattice in his upper chamber that
+was in Samaria, and was sick: and he sent messengers, and said unto
+them, Go, enquire of Baalzebub the god of Ekron whether I shall
+recover of this disease.
+
+1:3 But the angel of the LORD said to Elijah the Tishbite, Arise, go
+up to meet the messengers of the king of Samaria, and say unto them,
+Is it not because there is not a God in Israel, that ye go to enquire
+of Baalzebub the god of Ekron? 1:4 Now therefore thus saith the LORD,
+Thou shalt not come down from that bed on which thou art gone up, but
+shalt surely die. And Elijah departed.
+
+1:5 And when the messengers turned back unto him, he said unto them,
+Why are ye now turned back? 1:6 And they said unto him, There came a
+man up to meet us, and said unto us, Go, turn again unto the king that
+sent you, and say unto him, Thus saith the LORD, Is it not because
+there is not a God in Israel, that thou sendest to enquire of
+Baalzebub the god of Ekron? therefore thou shalt not come down from
+that bed on which thou art gone up, but shalt surely die.
+
+1:7 And he said unto them, What manner of man was he which came up to
+meet you, and told you these words? 1:8 And they answered him, He was
+an hairy man, and girt with a girdle of leather about his loins. And
+he said, It is Elijah the Tishbite.
+
+1:9 Then the king sent unto him a captain of fifty with his fifty. And
+he went up to him: and, behold, he sat on the top of an hill. And he
+spake unto him, Thou man of God, the king hath said, Come down.
+
+1:10 And Elijah answered and said to the captain of fifty, If I be a
+man of God, then let fire come down from heaven, and consume thee and
+thy fifty.
+
+And there came down fire from heaven, and consumed him and his fifty.
+
+1:11 Again also he sent unto him another captain of fifty with his
+fifty.
+
+And he answered and said unto him, O man of God, thus hath the king
+said, Come down quickly.
+
+1:12 And Elijah answered and said unto them, If I be a man of God, let
+fire come down from heaven, and consume thee and thy fifty. And the
+fire of God came down from heaven, and consumed him and his fifty.
+
+1:13 And he sent again a captain of the third fifty with his fifty.
+And the third captain of fifty went up, and came and fell on his knees
+before Elijah, and besought him, and said unto him, O man of God, I
+pray thee, let my life, and the life of these fifty thy servants, be
+precious in thy sight.
+
+1:14 Behold, there came fire down from heaven, and burnt up the two
+captains of the former fifties with their fifties: therefore let my
+life now be precious in thy sight.
+
+1:15 And the angel of the LORD said unto Elijah, Go down with him: be
+not afraid of him. And he arose, and went down with him unto the king.
+
+1:16 And he said unto him, Thus saith the LORD, Forasmuch as thou hast
+sent messengers to enquire of Baalzebub the god of Ekron, is it not
+because there is no God in Israel to enquire of his word? therefore
+thou shalt not come down off that bed on which thou art gone up, but
+shalt surely die.
+
+1:17 So he died according to the word of the LORD which Elijah had
+spoken.
+
+And Jehoram reigned in his stead in the second year of Jehoram the son
+of Jehoshaphat king of Judah; because he had no son.
+
+1:18 Now the rest of the acts of Ahaziah which he did, are they not
+written in the book of the chronicles of the kings of Israel? 2:1 And
+it came to pass, when the LORD would take up Elijah into heaven by a
+whirlwind, that Elijah went with Elisha from Gilgal.
+
+2:2 And Elijah said unto Elisha, Tarry here, I pray thee; for the LORD
+hath sent me to Bethel. And Elisha said unto him, As the LORD liveth,
+and as thy soul liveth, I will not leave thee. So they went down to
+Bethel.
+
+2:3 And the sons of the prophets that were at Bethel came forth to
+Elisha, and said unto him, Knowest thou that the LORD will take away
+thy master from thy head to day? And he said, Yea, I know it; hold ye
+your peace.
+
+2:4 And Elijah said unto him, Elisha, tarry here, I pray thee; for the
+LORD hath sent me to Jericho. And he said, As the LORD liveth, and as
+thy soul liveth, I will not leave thee. So they came to Jericho.
+
+2:5 And the sons of the prophets that were at Jericho came to Elisha,
+and said unto him, Knowest thou that the LORD will take away thy
+master from thy head to day? And he answered, Yea, I know it; hold ye
+your peace.
+
+2:6 And Elijah said unto him, Tarry, I pray thee, here; for the LORD
+hath sent me to Jordan. And he said, As the LORD liveth, and as thy
+soul liveth, I will not leave thee. And they two went on.
+
+2:7 And fifty men of the sons of the prophets went, and stood to view
+afar off: and they two stood by Jordan.
+
+2:8 And Elijah took his mantle, and wrapped it together, and smote the
+waters, and they were divided hither and thither, so that they two
+went over on dry ground.
+
+2:9 And it came to pass, when they were gone over, that Elijah said
+unto Elisha, Ask what I shall do for thee, before I be taken away from
+thee. And Elisha said, I pray thee, let a double portion of thy spirit
+be upon me.
+
+2:10 And he said, Thou hast asked a hard thing: nevertheless, if thou
+see me when I am taken from thee, it shall be so unto thee; but if
+not, it shall not be so.
+
+2:11 And it came to pass, as they still went on, and talked, that,
+behold, there appeared a chariot of fire, and horses of fire, and
+parted them both asunder; and Elijah went up by a whirlwind into
+heaven.
+
+2:12 And Elisha saw it, and he cried, My father, my father, the
+chariot of Israel, and the horsemen thereof. And he saw him no more:
+and he took hold of his own clothes, and rent them in two pieces.
+
+2:13 He took up also the mantle of Elijah that fell from him, and went
+back, and stood by the bank of Jordan; 2:14 And he took the mantle of
+Elijah that fell from him, and smote the waters, and said, Where is
+the LORD God of Elijah? and when he also had smitten the waters, they
+parted hither and thither: and Elisha went over.
+
+2:15 And when the sons of the prophets which were to view at Jericho
+saw him, they said, The spirit of Elijah doth rest on Elisha. And they
+came to meet him, and bowed themselves to the ground before him.
+
+2:16 And they said unto him, Behold now, there be with thy servants
+fifty strong men; let them go, we pray thee, and seek thy master: lest
+peradventure the Spirit of the LORD hath taken him up, and cast him
+upon some mountain, or into some valley. And he said, Ye shall not
+send.
+
+2:17 And when they urged him till he was ashamed, he said, Send. They
+sent therefore fifty men; and they sought three days, but found him
+not.
+
+2:18 And when they came again to him, (for he tarried at Jericho,) he
+said unto them, Did I not say unto you, Go not? 2:19 And the men of
+the city said unto Elisha, Behold, I pray thee, the situation of this
+city is pleasant, as my lord seeth: but the water is naught, and the
+ground barren.
+
+2:20 And he said, Bring me a new cruse, and put salt therein. And they
+brought it to him.
+
+2:21 And he went forth unto the spring of the waters, and cast the
+salt in there, and said, Thus saith the LORD, I have healed these
+waters; there shall not be from thence any more death or barren land.
+
+2:22 So the waters were healed unto this day, according to the saying
+of Elisha which he spake.
+
+2:23 And he went up from thence unto Bethel: and as he was going up by
+the way, there came forth little children out of the city, and mocked
+him, and said unto him, Go up, thou bald head; go up, thou bald head.
+
+2:24 And he turned back, and looked on them, and cursed them in the
+name of the LORD. And there came forth two she bears out of the wood,
+and tare forty and two children of them.
+
+2:25 And he went from thence to mount Carmel, and from thence he
+returned to Samaria.
+
+3:1 Now Jehoram the son of Ahab began to reign over Israel in Samaria
+the eighteenth year of Jehoshaphat king of Judah, and reigned twelve
+years.
+
+3:2 And he wrought evil in the sight of the LORD; but not like his
+father, and like his mother: for he put away the image of Baal that
+his father had made.
+
+3:3 Nevertheless he cleaved unto the sins of Jeroboam the son of
+Nebat, which made Israel to sin; he departed not therefrom.
+
+3:4 And Mesha king of Moab was a sheepmaster, and rendered unto the
+king of Israel an hundred thousand lambs, and an hundred thousand
+rams, with the wool.
+
+3:5 But it came to pass, when Ahab was dead, that the king of Moab
+rebelled against the king of Israel.
+
+3:6 And king Jehoram went out of Samaria the same time, and numbered
+all Israel.
+
+3:7 And he went and sent to Jehoshaphat the king of Judah, saying, The
+king of Moab hath rebelled against me: wilt thou go with me against
+Moab to battle? And he said, I will go up: I am as thou art, my people
+as thy people, and my horses as thy horses.
+
+3:8 And he said, Which way shall we go up? And he answered, The way
+through the wilderness of Edom.
+
+3:9 So the king of Israel went, and the king of Judah, and the king of
+Edom: and they fetched a compass of seven days' journey: and there was
+no water for the host, and for the cattle that followed them.
+
+3:10 And the king of Israel said, Alas! that the LORD hath called
+these three kings together, to deliver them into the hand of Moab!
+3:11 But Jehoshaphat said, Is there not here a prophet of the LORD,
+that we may enquire of the LORD by him? And one of the king of
+Israel's servants answered and said, Here is Elisha the son of
+Shaphat, which poured water on the hands of Elijah.
+
+3:12 And Jehoshaphat said, The word of the LORD is with him. So the
+king of Israel and Jehoshaphat and the king of Edom went down to him.
+
+3:13 And Elisha said unto the king of Israel, What have I to do with
+thee? get thee to the prophets of thy father, and to the prophets of
+thy mother.
+
+And the king of Israel said unto him, Nay: for the LORD hath called
+these three kings together, to deliver them into the hand of Moab.
+
+3:14 And Elisha said, As the LORD of hosts liveth, before whom I
+stand, surely, were it not that I regard the presence of Jehoshaphat
+the king of Judah, I would not look toward thee, nor see thee.
+
+3:15 But now bring me a minstrel. And it came to pass, when the
+minstrel played, that the hand of the LORD came upon him.
+
+3:16 And he said, Thus saith the LORD, Make this valley full of
+ditches.
+
+3:17 For thus saith the LORD, Ye shall not see wind, neither shall ye
+see rain; yet that valley shall be filled with water, that ye may
+drink, both ye, and your cattle, and your beasts.
+
+3:18 And this is but a light thing in the sight of the LORD: he will
+deliver the Moabites also into your hand.
+
+3:19 And ye shall smite every fenced city, and every choice city, and
+shall fell every good tree, and stop all wells of water, and mar every
+good piece of land with stones.
+
+3:20 And it came to pass in the morning, when the meat offering was
+offered, that, behold, there came water by the way of Edom, and the
+country was filled with water.
+
+3:21 And when all the Moabites heard that the kings were come up to
+fight against them, they gathered all that were able to put on armour,
+and upward, and stood in the border.
+
+3:22 And they rose up early in the morning, and the sun shone upon the
+water, and the Moabites saw the water on the other side as red as
+blood: 3:23 And they said, This is blood: the kings are surely slain,
+and they have smitten one another: now therefore, Moab, to the spoil.
+
+3:24 And when they came to the camp of Israel, the Israelites rose up
+and smote the Moabites, so that they fled before them: but they went
+forward smiting the Moabites, even in their country.
+
+3:25 And they beat down the cities, and on every good piece of land
+cast every man his stone, and filled it; and they stopped all the
+wells of water, and felled all the good trees: only in Kirharaseth
+left they the stones thereof; howbeit the slingers went about it, and
+smote it.
+
+3:26 And when the king of Moab saw that the battle was too sore for
+him, he took with him seven hundred men that drew swords, to break
+through even unto the king of Edom: but they could not.
+
+3:27 Then he took his eldest son that should have reigned in his
+stead, and offered him for a burnt offering upon the wall. And there
+was great indignation against Israel: and they departed from him, and
+returned to their own land.
+
+4:1 Now there cried a certain woman of the wives of the sons of the
+prophets unto Elisha, saying, Thy servant my husband is dead; and thou
+knowest that thy servant did fear the LORD: and the creditor is come
+to take unto him my two sons to be bondmen.
+
+4:2 And Elisha said unto her, What shall I do for thee? tell me, what
+hast thou in the house? And she said, Thine handmaid hath not any
+thing in the house, save a pot of oil.
+
+4:3 Then he said, Go, borrow thee vessels abroad of all thy
+neighbours, even empty vessels; borrow not a few.
+
+4:4 And when thou art come in, thou shalt shut the door upon thee and
+upon thy sons, and shalt pour out into all those vessels, and thou
+shalt set aside that which is full.
+
+4:5 So she went from him, and shut the door upon her and upon her
+sons, who brought the vessels to her; and she poured out.
+
+4:6 And it came to pass, when the vessels were full, that she said
+unto her son, Bring me yet a vessel. And he said unto her, There is
+not a vessel more. And the oil stayed.
+
+4:7 Then she came and told the man of God. And he said, Go, sell the
+oil, and pay thy debt, and live thou and thy children of the rest.
+
+4:8 And it fell on a day, that Elisha passed to Shunem, where was a
+great woman; and she constrained him to eat bread. And so it was, that
+as oft as he passed by, he turned in thither to eat bread.
+
+4:9 And she said unto her husband, Behold now, I perceive that this is
+an holy man of God, which passeth by us continually.
+
+4:10 Let us make a little chamber, I pray thee, on the wall; and let
+us set for him there a bed, and a table, and a stool, and a
+candlestick: and it shall be, when he cometh to us, that he shall turn
+in thither.
+
+4:11 And it fell on a day, that he came thither, and he turned into
+the chamber, and lay there.
+
+4:12 And he said to Gehazi his servant, Call this Shunammite. And when
+he had called her, she stood before him.
+
+4:13 And he said unto him, Say now unto her, Behold, thou hast been
+careful for us with all this care; what is to be done for thee?
+wouldest thou be spoken for to the king, or to the captain of the
+host? And she answered, I dwell among mine own people.
+
+4:14 And he said, What then is to be done for her? And Gehazi
+answered, Verily she hath no child, and her husband is old.
+
+4:15 And he said, Call her. And when he had called her, she stood in
+the door.
+
+4:16 And he said, About this season, according to the time of life,
+thou shalt embrace a son. And she said, Nay, my lord, thou man of God,
+do not lie unto thine handmaid.
+
+4:17 And the woman conceived, and bare a son at that season that
+Elisha had said unto her, according to the time of life.
+
+4:18 And when the child was grown, it fell on a day, that he went out
+to his father to the reapers.
+
+4:19 And he said unto his father, My head, my head. And he said to a
+lad, Carry him to his mother.
+
+4:20 And when he had taken him, and brought him to his mother, he sat
+on her knees till noon, and then died.
+
+4:21 And she went up, and laid him on the bed of the man of God, and
+shut the door upon him, and went out.
+
+4:22 And she called unto her husband, and said, Send me, I pray thee,
+one of the young men, and one of the asses, that I may run to the man
+of God, and come again.
+
+4:23 And he said, Wherefore wilt thou go to him to day? it is neither
+new moon, nor sabbath. And she said, It shall be well.
+
+4:24 Then she saddled an ass, and said to her servant, Drive, and go
+forward; slack not thy riding for me, except I bid thee.
+
+4:25 So she went and came unto the man of God to mount Carmel. And it
+came to pass, when the man of God saw her afar off, that he said to
+Gehazi his servant, Behold, yonder is that Shunammite: 4:26 Run now, I
+pray thee, to meet her, and say unto her, Is it well with thee? is it
+well with thy husband? is it well with the child? And she answered, It
+is well: 4:27 And when she came to the man of God to the hill, she
+caught him by the feet: but Gehazi came near to thrust her away. And
+the man of God said, Let her alone; for her soul is vexed within her:
+and the LORD hath hid it from me, and hath not told me.
+
+4:28 Then she said, Did I desire a son of my lord? did I not say, Do
+not deceive me? 4:29 Then he said to Gehazi, Gird up thy loins, and
+take my staff in thine hand, and go thy way: if thou meet any man,
+salute him not; and if any salute thee, answer him not again: and lay
+my staff upon the face of the child.
+
+4:30 And the mother of the child said, As the LORD liveth, and as thy
+soul liveth, I will not leave thee. And he arose, and followed her.
+
+4:31 And Gehazi passed on before them, and laid the staff upon the
+face of the child; but there was neither voice, nor hearing. Wherefore
+he went again to meet him, and told him, saying, The child is not
+awaked.
+
+4:32 And when Elisha was come into the house, behold, the child was
+dead, and laid upon his bed.
+
+4:33 He went in therefore, and shut the door upon them twain, and
+prayed unto the LORD.
+
+4:34 And he went up, and lay upon the child, and put his mouth upon
+his mouth, and his eyes upon his eyes, and his hands upon his hands:
+and stretched himself upon the child; and the flesh of the child waxed
+warm.
+
+4:35 Then he returned, and walked in the house to and fro; and went
+up, and stretched himself upon him: and the child sneezed seven times,
+and the child opened his eyes.
+
+4:36 And he called Gehazi, and said, Call this Shunammite. So he
+called her. And when she was come in unto him, he said, Take up thy
+son.
+
+4:37 Then she went in, and fell at his feet, and bowed herself to the
+ground, and took up her son, and went out.
+
+4:38 And Elisha came again to Gilgal: and there was a dearth in the
+land; and the sons of the prophets were sitting before him: and he
+said unto his servant, Set on the great pot, and seethe pottage for
+the sons of the prophets.
+
+4:39 And one went out into the field to gather herbs, and found a wild
+vine, and gathered thereof wild gourds his lap full, and came and
+shred them into the pot of pottage: for they knew them not.
+
+4:40 So they poured out for the men to eat. And it came to pass, as
+they were eating of the pottage, that they cried out, and said, O thou
+man of God, there is death in the pot. And they could not eat thereof.
+
+4:41 But he said, Then bring meal. And he cast it into the pot; and he
+said, Pour out for the people, that they may eat. And there was no
+harm in the pot.
+
+4:42 And there came a man from Baalshalisha, and brought the man of
+God bread of the firstfruits, twenty loaves of barley, and full ears
+of corn in the husk thereof. And he said, Give unto the people, that
+they may eat.
+
+4:43 And his servitor said, What, should I set this before an hundred
+men? He said again, Give the people, that they may eat: for thus
+saith the LORD, They shall eat, and shall leave thereof.
+
+4:44 So he set it before them, and they did eat, and left thereof,
+according to the word of the LORD.
+
+5:1 Now Naaman, captain of the host of the king of Syria, was a great
+man with his master, and honourable, because by him the LORD had given
+deliverance unto Syria: he was also a mighty man in valour, but he was
+a leper.
+
+5:2 And the Syrians had gone out by companies, and had brought away
+captive out of the land of Israel a little maid; and she waited on
+Naaman's wife.
+
+5:3 And she said unto her mistress, Would God my lord were with the
+prophet that is in Samaria! for he would recover him of his leprosy.
+
+5:4 And one went in, and told his lord, saying, Thus and thus said the
+maid that is of the land of Israel.
+
+5:5 And the king of Syria said, Go to, go, and I will send a letter
+unto the king of Israel. And he departed, and took with him ten
+talents of silver, and six thousand pieces of gold, and ten changes of
+raiment.
+
+5:6 And he brought the letter to the king of Israel, saying, Now when
+this letter is come unto thee, behold, I have therewith sent Naaman my
+servant to thee, that thou mayest recover him of his leprosy.
+
+5:7 And it came to pass, when the king of Israel had read the letter,
+that he rent his clothes, and said, Am I God, to kill and to make
+alive, that this man doth send unto me to recover a man of his
+leprosy? wherefore consider, I pray you, and see how he seeketh a
+quarrel against me.
+
+5:8 And it was so, when Elisha the man of God had heard that the king
+of Israel had rent his clothes, that he sent to the king, saying,
+Wherefore hast thou rent thy clothes? let him come now to me, and he
+shall know that there is a prophet in Israel.
+
+5:9 So Naaman came with his horses and with his chariot, and stood at
+the door of the house of Elisha.
+
+5:10 And Elisha sent a messenger unto him, saying, Go and wash in
+Jordan seven times, and thy flesh shall come again to thee, and thou
+shalt be clean.
+
+5:11 But Naaman was wroth, and went away, and said, Behold, I thought,
+He will surely come out to me, and stand, and call on the name of the
+LORD his God, and strike his hand over the place, and recover the
+leper.
+
+5:12 Are not Abana and Pharpar, rivers of Damascus, better than all
+the waters of Israel? may I not wash in them, and be clean? So he
+turned and went away in a rage.
+
+5:13 And his servants came near, and spake unto him, and said, My
+father, if the prophet had bid thee do some great thing, wouldest thou
+not have done it? how much rather then, when he saith to thee, Wash,
+and be clean? 5:14 Then went he down, and dipped himself seven times
+in Jordan, according to the saying of the man of God: and his flesh
+came again like unto the flesh of a little child, and he was clean.
+
+5:15 And he returned to the man of God, he and all his company, and
+came, and stood before him: and he said, Behold, now I know that there
+is no God in all the earth, but in Israel: now therefore, I pray thee,
+take a blessing of thy servant.
+
+5:16 But he said, As the LORD liveth, before whom I stand, I will
+receive none. And he urged him to take it; but he refused.
+
+5:17 And Naaman said, Shall there not then, I pray thee, be given to
+thy servant two mules' burden of earth? for thy servant will
+henceforth offer neither burnt offering nor sacrifice unto other gods,
+but unto the LORD.
+
+5:18 In this thing the LORD pardon thy servant, that when my master
+goeth into the house of Rimmon to worship there, and he leaneth on my
+hand, and I bow myself in the house of Rimmon: when I bow down myself
+in the house of Rimmon, the LORD pardon thy servant in this thing.
+
+5:19 And he said unto him, Go in peace. So he departed from him a
+little way.
+
+5:20 But Gehazi, the servant of Elisha the man of God, said, Behold,
+my master hath spared Naaman this Syrian, in not receiving at his
+hands that which he brought: but, as the LORD liveth, I will run after
+him, and take somewhat of him.
+
+5:21 So Gehazi followed after Naaman. And when Naaman saw him running
+after him, he lighted down from the chariot to meet him, and said, Is
+all well? 5:22 And he said, All is well. My master hath sent me,
+saying, Behold, even now there be come to me from mount Ephraim two
+young men of the sons of the prophets: give them, I pray thee, a
+talent of silver, and two changes of garments.
+
+5:23 And Naaman said, Be content, take two talents. And he urged him,
+and bound two talents of silver in two bags, with two changes of
+garments, and laid them upon two of his servants; and they bare them
+before him.
+
+5:24 And when he came to the tower, he took them from their hand, and
+bestowed them in the house: and he let the men go, and they departed.
+
+5:25 But he went in, and stood before his master. And Elisha said unto
+him, Whence comest thou, Gehazi? And he said, Thy servant went no
+whither.
+
+5:26 And he said unto him, Went not mine heart with thee, when the man
+turned again from his chariot to meet thee? Is it a time to receive
+money, and to receive garments, and oliveyards, and vineyards, and
+sheep, and oxen, and menservants, and maidservants? 5:27 The leprosy
+therefore of Naaman shall cleave unto thee, and unto thy seed for
+ever. And he went out from his presence a leper as white as snow.
+
+6:1 And the sons of the prophets said unto Elisha, Behold now, the
+place where we dwell with thee is too strait for us.
+
+6:2 Let us go, we pray thee, unto Jordan, and take thence every man a
+beam, and let us make us a place there, where we may dwell. And he
+answered, Go ye.
+
+6:3 And one said, Be content, I pray thee, and go with thy servants.
+And he answered, I will go.
+
+6:4 So he went with them. And when they came to Jordan, they cut down
+wood.
+
+6:5 But as one was felling a beam, the axe head fell into the water:
+and he cried, and said, Alas, master! for it was borrowed.
+
+6:6 And the man of God said, Where fell it? And he shewed him the
+place.
+
+And he cut down a stick, and cast it in thither; and the iron did
+swim.
+
+6:7 Therefore said he, Take it up to thee. And he put out his hand,
+and took it.
+
+6:8 Then the king of Syria warred against Israel, and took counsel
+with his servants, saying, In such and such a place shall be my camp.
+
+6:9 And the man of God sent unto the king of Israel, saying, Beware
+that thou pass not such a place; for thither the Syrians are come
+down.
+
+6:10 And the king of Israel sent to the place which the man of God
+told him and warned him of, and saved himself there, not once nor
+twice.
+
+6:11 Therefore the heart of the king of Syria was sore troubled for
+this thing; and he called his servants, and said unto them, Will ye
+not shew me which of us is for the king of Israel? 6:12 And one of
+his servants said, None, my lord, O king: but Elisha, the prophet that
+is in Israel, telleth the king of Israel the words that thou speakest
+in thy bedchamber.
+
+6:13 And he said, Go and spy where he is, that I may send and fetch
+him.
+
+And it was told him, saying, Behold, he is in Dothan.
+
+6:14 Therefore sent he thither horses, and chariots, and a great host:
+and they came by night, and compassed the city about.
+
+6:15 And when the servant of the man of God was risen early, and gone
+forth, behold, an host compassed the city both with horses and
+chariots. And his servant said unto him, Alas, my master! how shall we
+do? 6:16 And he answered, Fear not: for they that be with us are more
+than they that be with them.
+
+6:17 And Elisha prayed, and said, LORD, I pray thee, open his eyes,
+that he may see. And the LORD opened the eyes of the young man; and he
+saw: and, behold, the mountain was full of horses and chariots of fire
+round about Elisha.
+
+6:18 And when they came down to him, Elisha prayed unto the LORD, and
+said, Smite this people, I pray thee, with blindness. And he smote
+them with blindness according to the word of Elisha.
+
+6:19 And Elisha said unto them, This is not the way, neither is this
+the city: follow me, and I will bring you to the man whom ye seek. But
+he led them to Samaria.
+
+6:20 And it came to pass, when they were come into Samaria, that
+Elisha said, LORD, open the eyes of these men, that they may see. And
+the LORD opened their eyes, and they saw; and, behold, they were in
+the midst of Samaria.
+
+6:21 And the king of Israel said unto Elisha, when he saw them, My
+father, shall I smite them? shall I smite them? 6:22 And he answered,
+Thou shalt not smite them: wouldest thou smite those whom thou hast
+taken captive with thy sword and with thy bow? set bread and water
+before them, that they may eat and drink, and go to their master.
+
+6:23 And he prepared great provision for them: and when they had eaten
+and drunk, he sent them away, and they went to their master. So the
+bands of Syria came no more into the land of Israel.
+
+6:24 And it came to pass after this, that Benhadad king of Syria
+gathered all his host, and went up, and besieged Samaria.
+
+6:25 And there was a great famine in Samaria: and, behold, they
+besieged it, until an ass's head was sold for fourscore pieces of
+silver, and the fourth part of a cab of dove's dung for five pieces of
+silver.
+
+6:26 And as the king of Israel was passing by upon the wall, there
+cried a woman unto him, saying, Help, my lord, O king.
+
+6:27 And he said, If the LORD do not help thee, whence shall I help
+thee? out of the barnfloor, or out of the winepress? 6:28 And the
+king said unto her, What aileth thee? And she answered, This woman
+said unto me, Give thy son, that we may eat him to day, and we will
+eat my son to morrow.
+
+6:29 So we boiled my son, and did eat him: and I said unto her on the
+next day, Give thy son, that we may eat him: and she hath hid her son.
+
+6:30 And it came to pass, when the king heard the words of the woman,
+that he rent his clothes; and he passed by upon the wall, and the
+people looked, and, behold, he had sackcloth within upon his flesh.
+
+6:31 Then he said, God do so and more also to me, if the head of
+Elisha the son of Shaphat shall stand on him this day.
+
+6:32 But Elisha sat in his house, and the elders sat with him; and the
+king sent a man from before him: but ere the messenger came to him, he
+said to the elders, See ye how this son of a murderer hath sent to
+take away mine head? look, when the messenger cometh, shut the door,
+and hold him fast at the door: is not the sound of his master's feet
+behind him? 6:33 And while he yet talked with them, behold, the
+messenger came down unto him: and he said, Behold, this evil is of the
+LORD; what should I wait for the LORD any longer? 7:1 Then Elisha
+said, Hear ye the word of the LORD; Thus saith the LORD, To morrow
+about this time shall a measure of fine flour be sold for a shekel,
+and two measures of barley for a shekel, in the gate of Samaria.
+
+7:2 Then a lord on whose hand the king leaned answered the man of God,
+and said, Behold, if the LORD would make windows in heaven, might this
+thing be? And he said, Behold, thou shalt see it with thine eyes, but
+shalt not eat thereof.
+
+7:3 And there were four leprous men at the entering in of the gate:
+and they said one to another, Why sit we here until we die? 7:4 If we
+say, We will enter into the city, then the famine is in the city, and
+we shall die there: and if we sit still here, we die also. Now
+therefore come, and let us fall unto the host of the Syrians: if they
+save us alive, we shall live; and if they kill us, we shall but die.
+
+7:5 And they rose up in the twilight, to go unto the camp of the
+Syrians: and when they were come to the uttermost part of the camp of
+Syria, behold, there was no man there.
+
+7:6 For the LORD had made the host of the Syrians to hear a noise of
+chariots, and a noise of horses, even the noise of a great host: and
+they said one to another, Lo, the king of Israel hath hired against us
+the kings of the Hittites, and the kings of the Egyptians, to come
+upon us.
+
+7:7 Wherefore they arose and fled in the twilight, and left their
+tents, and their horses, and their asses, even the camp as it was, and
+fled for their life.
+
+7:8 And when these lepers came to the uttermost part of the camp, they
+went into one tent, and did eat and drink, and carried thence silver,
+and gold, and raiment, and went and hid it; and came again, and
+entered into another tent, and carried thence also, and went and hid
+it.
+
+7:9 Then they said one to another, We do not well: this day is a day
+of good tidings, and we hold our peace: if we tarry till the morning
+light, some mischief will come upon us: now therefore come, that we
+may go and tell the king's household.
+
+7:10 So they came and called unto the porter of the city: and they
+told them, saying, We came to the camp of the Syrians, and, behold,
+there was no man there, neither voice of man, but horses tied, and
+asses tied, and the tents as they were.
+
+7:11 And he called the porters; and they told it to the king's house
+within.
+
+7:12 And the king arose in the night, and said unto his servants, I
+will now shew you what the Syrians have done to us. They know that we
+be hungry; therefore are they gone out of the camp to hide themselves
+in the field, saying, When they come out of the city, we shall catch
+them alive, and get into the city.
+
+7:13 And one of his servants answered and said, Let some take, I pray
+thee, five of the horses that remain, which are left in the city,
+(behold, they are as all the multitude of Israel that are left in it:
+behold, I say, they are even as all the multitude of the Israelites
+that are consumed:) and let us send and see.
+
+7:14 They took therefore two chariot horses; and the king sent after
+the host of the Syrians, saying, Go and see.
+
+7:15 And they went after them unto Jordan: and, lo, all the way was
+full of garments and vessels, which the Syrians had cast away in their
+haste. And the messengers returned, and told the king.
+
+7:16 And the people went out, and spoiled the tents of the Syrians. So
+a measure of fine flour was sold for a shekel, and two measures of
+barley for a shekel, according to the word of the LORD.
+
+7:17 And the king appointed the lord on whose hand he leaned to have
+the charge of the gate: and the people trode upon him in the gate, and
+he died, as the man of God had said, who spake when the king came down
+to him.
+
+7:18 And it came to pass as the man of God had spoken to the king,
+saying, Two measures of barley for a shekel, and a measure of fine
+flour for a shekel, shall be to morrow about this time in the gate of
+Samaria: 7:19 And that lord answered the man of God, and said, Now,
+behold, if the LORD should make windows in heaven, might such a thing
+be? And he said, Behold, thou shalt see it with thine eyes, but shalt
+not eat thereof.
+
+7:20 And so it fell out unto him: for the people trode upon him in the
+gate, and he died.
+
+8:1 Then spake Elisha unto the woman, whose son he had restored to
+life, saying, Arise, and go thou and thine household, and sojourn
+wheresoever thou canst sojourn: for the LORD hath called for a famine;
+and it shall also come upon the land seven years.
+
+8:2 And the woman arose, and did after the saying of the man of God:
+and she went with her household, and sojourned in the land of the
+Philistines seven years.
+
+8:3 And it came to pass at the seven years' end, that the woman
+returned out of the land of the Philistines: and she went forth to cry
+unto the king for her house and for her land.
+
+8:4 And the king talked with Gehazi the servant of the man of God,
+saying, Tell me, I pray thee, all the great things that Elisha hath
+done.
+
+8:5 And it came to pass, as he was telling the king how he had
+restored a dead body to life, that, behold, the woman, whose son he
+had restored to life, cried to the king for her house and for her
+land. And Gehazi said, My lord, O king, this is the woman, and this is
+her son, whom Elisha restored to life.
+
+8:6 And when the king asked the woman, she told him. So the king
+appointed unto her a certain officer, saying, Restore all that was
+hers, and all the fruits of the field since the day that she left the
+land, even until now.
+
+8:7 And Elisha came to Damascus; and Benhadad the king of Syria was
+sick; and it was told him, saying, The man of God is come hither.
+
+8:8 And the king said unto Hazael, Take a present in thine hand, and
+go, meet the man of God, and enquire of the LORD by him, saying, Shall
+I recover of this disease? 8:9 So Hazael went to meet him, and took a
+present with him, even of every good thing of Damascus, forty camels'
+burden, and came and stood before him, and said, Thy son Benhadad king
+of Syria hath sent me to thee, saying, Shall I recover of this
+disease? 8:10 And Elisha said unto him, Go, say unto him, Thou mayest
+certainly recover: howbeit the LORD hath shewed me that he shall
+surely die.
+
+8:11 And he settled his countenance stedfastly, until he was ashamed:
+and the man of God wept.
+
+8:12 And Hazael said, Why weepeth my lord? And he answered, Because I
+know the evil that thou wilt do unto the children of Israel: their
+strong holds wilt thou set on fire, and their young men wilt thou slay
+with the sword, and wilt dash their children, and rip up their women
+with child.
+
+8:13 And Hazael said, But what, is thy servant a dog, that he should
+do this great thing? And Elisha answered, The LORD hath shewed me that
+thou shalt be king over Syria.
+
+8:14 So he departed from Elisha, and came to his master; who said to
+him, What said Elisha to thee? And he answered, He told me that thou
+shouldest surely recover.
+
+8:15 And it came to pass on the morrow, that he took a thick cloth,
+and dipped it in water, and spread it on his face, so that he died:
+and Hazael reigned in his stead.
+
+8:16 And in the fifth year of Joram the son of Ahab king of Israel,
+Jehoshaphat being then king of Judah, Jehoram the son of Je hoshaphat
+king of Judah began to reign.
+
+8:17 Thirty and two years old was he when he began to reign; and he
+reigned eight years in Jerusalem.
+
+8:18 And he walked in the way of the kings of Israel, as did the house
+of Ahab: for the daughter of Ahab was his wife: and he did evil in the
+sight of the LORD.
+
+8:19 Yet the LORD would not destroy Judah for David his servant's
+sake, as he promised him to give him alway a light, and to his
+children.
+
+8:20 In his days Edom revolted from under the hand of Judah, and made
+a king over themselves.
+
+8:21 So Joram went over to Zair, and all the chariots with him: and he
+rose by night, and smote the Edomites which compassed him about, and
+the captains of the chariots: and the people fled into their tents.
+
+8:22 Yet Edom revolted from under the hand of Judah unto this day.
+Then Libnah revolted at the same time.
+
+8:23 And the rest of the acts of Joram, and all that he did, are they
+not written in the book of the chronicles of the kings of Judah? 8:24
+And Joram slept with his fathers, and was buried with his fathers in
+the city of David: and Ahaziah his son reigned in his stead.
+
+8:25 In the twelfth year of Joram the son of Ahab king of Israel did
+Ahaziah the son of Jehoram king of Judah begin to reign.
+
+8:26 Two and twenty years old was Ahaziah when he began to reign; and
+he reigned one year in Jerusalem. And his mother's name was Athaliah,
+the daughter of Omri king of Israel.
+
+8:27 And he walked in the way of the house of Ahab, and did evil in
+the sight of the LORD, as did the house of Ahab: for he was the son in
+law of the house of Ahab.
+
+8:28 And he went with Joram the son of Ahab to the war against Hazael
+king of Syria in Ramothgilead; and the Syrians wounded Joram.
+
+8:29 And king Joram went back to be healed in Jezreel of the wounds
+which the Syrians had given him at Ramah, when he fought against
+Hazael king of Syria. And Ahaziah the son of Jehoram king of Judah
+went down to see Joram the son of Ahab in Jezreel, because he was
+sick.
+
+9:1 And Elisha the prophet called one of the children of the prophets,
+and said unto him, Gird up thy loins, and take this box of oil in
+thine hand, and go to Ramothgilead: 9:2 And when thou comest thither,
+look out there Jehu the son of Jehoshaphat the son of Nimshi, and go
+in, and make him arise up from among his brethren, and carry him to an
+inner chamber; 9:3 Then take the box of oil, and pour it on his head,
+and say, Thus saith the LORD, I have anointed thee king over Israel.
+Then open the door, and flee, and tarry not.
+
+9:4 So the young man, even the young man the prophet, went to
+Ramothgilead.
+
+9:5 And when he came, behold, the captains of the host were sitting;
+and he said, I have an errand to thee, O captain. And Jehu said, Unto
+which of all us? And he said, To thee, O captain.
+
+9:6 And he arose, and went into the house; and he poured the oil on
+his head, and said unto him, Thus saith the LORD God of Israel, I have
+anointed thee king over the people of the LORD, even over Israel.
+
+9:7 And thou shalt smite the house of Ahab thy master, that I may
+avenge the blood of my servants the prophets, and the blood of all the
+servants of the LORD, at the hand of Jezebel.
+
+9:8 For the whole house of Ahab shall perish: and I will cut off from
+Ahab him that pisseth against the wall, and him that is shut up and
+left in Israel: 9:9 And I will make the house of Ahab like the house
+of Jeroboam the son of Nebat, and like the house of Baasha the son of
+Ahijah: 9:10 And the dogs shall eat Jezebel in the portion of Jezreel,
+and there shall be none to bury her. And he opened the door, and fled.
+
+9:11 Then Jehu came forth to the servants of his lord: and one said
+unto him, Is all well? wherefore came this mad fellow to thee? And he
+said unto them, Ye know the man, and his communication.
+
+9:12 And they said, It is false; tell us now. And he said, Thus and
+thus spake he to me, saying, Thus saith the LORD, I have anointed thee
+king over Israel.
+
+9:13 Then they hasted, and took every man his garment, and put it
+under him on the top of the stairs, and blew with trumpets, saying,
+Jehu is king.
+
+9:14 So Jehu the son of Jehoshaphat the son of Nimshi conspired
+against Joram. (Now Joram had kept Ramothgilead, he and all Israel,
+because of Hazael king of Syria.
+
+9:15 But king Joram was returned to be healed in Jezreel of the wounds
+which the Syrians had given him, when he fought with Hazael king of
+Syria.) And Jehu said, If it be your minds, then let none go forth
+nor escape out of the city to go to tell it in Jezreel.
+
+9:16 So Jehu rode in a chariot, and went to Jezreel; for Joram lay
+there.
+
+And Ahaziah king of Judah was come down to see Joram.
+
+9:17 And there stood a watchman on the tower in Jezreel, and he spied
+the company of Jehu as he came, and said, I see a company. And Joram
+said, Take an horseman, and send to meet them, and let him say, Is it
+peace? 9:18 So there went one on horseback to meet him, and said,
+Thus saith the king, Is it peace? And Jehu said, What hast thou to do
+with peace? turn thee behind me. And the watchman told, saying, The
+messenger came to them, but he cometh not again.
+
+9:19 Then he sent out a second on horseback, which came to them, and
+said, Thus saith the king, Is it peace? And Jehu answered, What hast
+thou to do with peace? turn thee behind me.
+
+9:20 And the watchman told, saying, He came even unto them, and cometh
+not again: and the driving is like the driving of Jehu the son of
+Nimshi; for he driveth furiously.
+
+9:21 And Joram said, Make ready. And his chariot was made ready. And
+Joram king of Israel and Ahaziah king of Judah went out, each in his
+chariot, and they went out against Jehu, and met him in the portion of
+Naboth the Jezreelite.
+
+9:22 And it came to pass, when Joram saw Jehu, that he said, Is it
+peace, Jehu? And he answered, What peace, so long as the whoredoms of
+thy mother Jezebel and her witchcrafts are so many? 9:23 And Joram
+turned his hands, and fled, and said to Ahaziah, There is treachery, O
+Ahaziah.
+
+9:24 And Jehu drew a bow with his full strength, and smote Jehoram
+between his arms, and the arrow went out at his heart, and he sunk
+down in his chariot.
+
+9:25 Then said Jehu to Bidkar his captain, Take up, and cast him in
+the portion of the field of Naboth the Jezreelite: for remember how
+that, when I and thou rode together after Ahab his father, the LORD
+laid this burden upon him; 9:26 Surely I have seen yesterday the blood
+of Naboth, and the blood of his sons, saith the LORD; and I will
+requite thee in this plat, saith the LORD. Now therefore take and cast
+him into the plat of ground, according to the word of the LORD.
+
+9:27 But when Ahaziah the king of Judah saw this, he fled by the way
+of the garden house. And Jehu followed after him, and said, Smite him
+also in the chariot. And they did so at the going up to Gur, which is
+by Ibleam.
+
+And he fled to Megiddo, and died there.
+
+9:28 And his servants carried him in a chariot to Jerusalem, and
+buried him in his sepulchre with his fathers in the city of David.
+
+9:29 And in the eleventh year of Joram the son of Ahab began Ahaziah
+to reign over Judah.
+
+9:30 And when Jehu was come to Jezreel, Jezebel heard of it; and she
+painted her face, and tired her head, and looked out at a window.
+
+9:31 And as Jehu entered in at the gate, she said, Had Zimri peace,
+who slew his master? 9:32 And he lifted up his face to the window,
+and said, Who is on my side? who? And there looked out to him two or
+three eunuchs.
+
+9:33 And he said, Throw her down. So they threw her down: and some of
+her blood was sprinkled on the wall, and on the horses: and he trode
+her under foot.
+
+9:34 And when he was come in, he did eat and drink, and said, Go, see
+now this cursed woman, and bury her: for she is a king's daughter.
+
+9:35 And they went to bury her: but they found no more of her than the
+skull, and the feet, and the palms of her hands.
+
+9:36 Wherefore they came again, and told him. And he said, This is the
+word of the LORD, which he spake by his servant Elijah the Tishbite,
+saying, In the portion of Jezreel shall dogs eat the flesh of Jezebel:
+9:37 And the carcase of Jezebel shall be as dung upon the face of the
+field in the portion of Jezreel; so that they shall not say, This is
+Jezebel.
+
+10:1 And Ahab had seventy sons in Samaria. And Jehu wrote letters, and
+sent to Samaria, unto the rulers of Jezreel, to the elders, and to
+them that brought up Ahab's children, saying, 10:2 Now as soon as this
+letter cometh to you, seeing your master's sons are with you, and
+there are with you chariots and horses, a fenced city also, and
+armour; 10:3 Look even out the best and meetest of your master's sons,
+and set him on his father's throne, and fight for your master's house.
+
+10:4 But they were exceedingly afraid, and said, Behold, two kings
+stood not before him: how then shall we stand? 10:5 And he that was
+over the house, and he that was over the city, the elders also, and
+the bringers up of the children, sent to Jehu, saying, We are thy
+servants, and will do all that thou shalt bid us; we will not make any
+king: do thou that which is good in thine eyes.
+
+10:6 Then he wrote a letter the second time to them, saying, If ye be
+mine, and if ye will hearken unto my voice, take ye the heads of the
+men your master's sons, and come to me to Jezreel by to morrow this
+time. Now the king's sons, being seventy persons, were with the great
+men of the city, which brought them up.
+
+10:7 And it came to pass, when the letter came to them, that they took
+the king's sons, and slew seventy persons, and put their heads in
+baskets, and sent him them to Jezreel.
+
+10:8 And there came a messenger, and told him, saying, They have
+brought the heads of the king's sons. And he said, Lay ye them in two
+heaps at the entering in of the gate until the morning.
+
+10:9 And it came to pass in the morning, that he went out, and stood,
+and said to all the people, Ye be righteous: behold, I conspired
+against my master, and slew him: but who slew all these? 10:10 Know
+now that there shall fall unto the earth nothing of the word of the
+LORD, which the LORD spake concerning the house of Ahab: for the LORD
+hath done that which he spake by his servant Elijah.
+
+10:11 So Jehu slew all that remained of the house of Ahab in Jezreel,
+and all his great men, and his kinsfolks, and his priests, until he
+left him none remaining.
+
+10:12 And he arose and departed, and came to Samaria. And as he was at
+the shearing house in the way, 10:13 Jehu met with the brethren of
+Ahaziah king of Judah, and said, Who are ye? And they answered, We are
+the brethren of Ahaziah; and we go down to salute the children of the
+king and the children of the queen.
+
+10:14 And he said, Take them alive. And they took them alive, and slew
+them at the pit of the shearing house, even two and forty men; neither
+left he any of them.
+
+10:15 And when he was departed thence, he lighted on Jehonadab the son
+of Rechab coming to meet him: and he saluted him, and said to him, Is
+thine heart right, as my heart is with thy heart? And Jehonadab
+answered, It is. If it be, give me thine hand. And he gave him his
+hand; and he took him up to him into the chariot.
+
+10:16 And he said, Come with me, and see my zeal for the LORD. So they
+made him ride in his chariot.
+
+10:17 And when he came to Samaria, he slew all that remained unto Ahab
+in Samaria, till he had destroyed him, according to the saying of the
+LORD, which he spake to Elijah.
+
+10:18 And Jehu gathered all the people together, and said unto them,
+Ahab served Baal a little; but Jehu shall serve him much.
+
+10:19 Now therefore call unto me all the prophets of Baal, all his
+servants, and all his priests; let none be wanting: for I have a great
+sacrifice to do to Baal; whosoever shall be wanting, he shall not
+live. But Jehu did it in subtilty, to the intent that he might destroy
+the worshippers of Baal.
+
+10:20 And Jehu said, Proclaim a solemn assembly for Baal. And they
+proclaimed it.
+
+10:21 And Jehu sent through all Israel: and all the worshippers of
+Baal came, so that there was not a man left that came not. And they
+came into the house of Baal; and the house of Baal was full from one
+end to another.
+
+10:22 And he said unto him that was over the vestry, Bring forth
+vestments for all the worshippers of Baal. And he brought them forth
+vestments.
+
+10:23 And Jehu went, and Jehonadab the son of Rechab, into the house
+of Baal, and said unto the worshippers of Baal, Search, and look that
+there be here with you none of the servants of the LORD, but the
+worshippers of Baal only.
+
+10:24 And when they went in to offer sacrifices and burnt offerings,
+Jehu appointed fourscore men without, and said, If any of the men whom
+I have brought into your hands escape, he that letteth him go, his
+life shall be for the life of him.
+
+10:25 And it came to pass, as soon as he had made an end of offering
+the burnt offering, that Jehu said to the guard and to the captains,
+Go in, and slay them; let none come forth. And they smote them with
+the edge of the sword; and the guard and the captains cast them out,
+and went to the city of the house of Baal.
+
+10:26 And they brought forth the images out of the house of Baal, and
+burned them.
+
+10:27 And they brake down the image of Baal, and brake down the house
+of Baal, and made it a draught house unto this day.
+
+10:28 Thus Jehu destroyed Baal out of Israel.
+
+10:29 Howbeit from the sins of Jeroboam the son of Nebat, who made
+Israel to sin, Jehu departed not from after them, to wit, the golden
+calves that were in Bethel, and that were in Dan.
+
+10:30 And the LORD said unto Jehu, Because thou hast done well in
+executing that which is right in mine eyes, and hast done unto the
+house of Ahab according to all that was in mine heart, thy children of
+the fourth generation shall sit on the throne of Israel.
+
+10:31 But Jehu took no heed to walk in the law of the LORD God of
+Israel with all his heart: for he departed not from the sins of
+Jeroboam, which made Israel to sin.
+
+10:32 In those days the LORD began to cut Israel short: and Hazael
+smote them in all the coasts of Israel; 10:33 From Jordan eastward,
+all the land of Gilead, the Gadites, and the Reubenites, and the
+Manassites, from Aroer, which is by the river Arnon, even Gilead and
+Bashan.
+
+10:34 Now the rest of the acts of Jehu, and all that he did, and all
+his might, are they not written in the book of the chronicles of the
+kings of Israel? 10:35 And Jehu slept with his fathers: and they
+buried him in Samaria. And Jehoahaz his son reigned in his stead.
+
+10:36 And the time that Jehu reigned over Israel in Samaria was twenty
+and eight years.
+
+11:1 And when Athaliah the mother of Ahaziah saw that her son was
+dead, she arose and destroyed all the seed royal.
+
+11:2 But Jehosheba, the daughter of king Joram, sister of Ahaziah,
+took Joash the son of Ahaziah, and stole him from among the king's
+sons which were slain; and they hid him, even him and his nurse, in
+the bedchamber from Athaliah, so that he was not slain.
+
+11:3 And he was with her hid in the house of the LORD six years. And
+Athaliah did reign over the land.
+
+11:4 And the seventh year Jehoiada sent and fetched the rulers over
+hundreds, with the captains and the guard, and brought them to him
+into the house of the LORD, and made a covenant with them, and took an
+oath of them in the house of the LORD, and shewed them the king's son.
+
+11:5 And he commanded them, saying, This is the thing that ye shall
+do; A third part of you that enter in on the sabbath shall even be
+keepers of the watch of the king's house; 11:6 And a third part shall
+be at the gate of Sur; and a third part at the gate behind the guard:
+so shall ye keep the watch of the house, that it be not broken down.
+
+11:7 And two parts of all you that go forth on the sabbath, even they
+shall keep the watch of the house of the LORD about the king.
+
+11:8 And ye shall compass the king round about, every man with his
+weapons in his hand: and he that cometh within the ranges, let him be
+slain: and be ye with the king as he goeth out and as he cometh in.
+
+11:9 And the captains over the hundreds did according to all things
+that Jehoiada the priest commanded: and they took every man his men
+that were to come in on the sabbath, with them that should go out on
+the sabbath, and came to Jehoiada the priest.
+
+11:10 And to the captains over hundreds did the priest give king
+David's spears and shields, that were in the temple of the LORD.
+
+11:11 And the guard stood, every man with his weapons in his hand,
+round about the king, from the right corner of the temple to the left
+corner of the temple, along by the altar and the temple.
+
+11:12 And he brought forth the king's son, and put the crown upon him,
+and gave him the testimony; and they made him king, and anointed him;
+and they clapped their hands, and said, God save the king.
+
+11:13 And when Athaliah heard the noise of the guard and of the
+people, she came to the people into the temple of the LORD.
+
+11:14 And when she looked, behold, the king stood by a pillar, as the
+manner was, and the princes and the trumpeters by the king, and all
+the people of the land rejoiced, and blew with trumpets: and Athaliah
+rent her clothes, and cried, Treason, Treason.
+
+11:15 But Jehoiada the priest commanded the captains of the hundreds,
+the officers of the host, and said unto them, Have her forth without
+the ranges: and him that followeth her kill with the sword. For the
+priest had said, Let her not be slain in the house of the LORD.
+
+11:16 And they laid hands on her; and she went by the way by the which
+the horses came into the king's house: and there was she slain.
+
+11:17 And Jehoiada made a covenant between the LORD and the king and
+the people, that they should be the LORD's people; between the king
+also and the people.
+
+11:18 And all the people of the land went into the house of Baal, and
+brake it down; his altars and his images brake they in pieces
+thoroughly, and slew Mattan the priest of Baal before the altars. And
+the priest appointed officers over the house of the LORD.
+
+11:19 And he took the rulers over hundreds, and the captains, and the
+guard, and all the people of the land; and they brought down the king
+from the house of the LORD, and came by the way of the gate of the
+guard to the king's house. And he sat on the throne of the kings.
+
+11:20 And all the people of the land rejoiced, and the city was in
+quiet: and they slew Athaliah with the sword beside the king's house.
+
+11:21 Seven years old was Jehoash when he began to reign.
+
+12:1 In the seventh year of Jehu Jehoash began to reign; and forty
+years reigned he in Jerusalem. And his mother's name was Zibiah of
+Beersheba.
+
+12:2 And Jehoash did that which was right in the sight of the LORD all
+his days wherein Jehoiada the priest instructed him.
+
+12:3 But the high places were not taken away: the people still
+sacrificed and burnt incense in the high places.
+
+12:4 And Jehoash said to the priests, All the money of the dedicated
+things that is brought into the house of the LORD, even the money of
+every one that passeth the account, the money that every man is set
+at, and all the money that cometh into any man's heart to bring into
+the house of the LORD, 12:5 Let the priests take it to them, every man
+of his acquaintance: and let them repair the breaches of the house,
+wheresoever any breach shall be found.
+
+12:6 But it was so, that in the three and twentieth year of king
+Jehoash the priests had not repaired the breaches of the house.
+
+12:7 Then king Jehoash called for Jehoiada the priest, and the other
+priests, and said unto them, Why repair ye not the breaches of the
+house? now therefore receive no more money of your acquaintance, but
+deliver it for the breaches of the house.
+
+12:8 And the priests consented to receive no more money of the people,
+neither to repair the breaches of the house.
+
+12:9 But Jehoiada the priest took a chest, and bored a hole in the lid
+of it, and set it beside the altar, on the right side as one cometh
+into the house of the LORD: and the priests that kept the door put
+therein all the money that was brought into the house of the LORD.
+
+12:10 And it was so, when they saw that there was much money in the
+chest, that the king's scribe and the high priest came up, and they
+put up in bags, and told the money that was found in the house of the
+LORD.
+
+12:11 And they gave the money, being told, into the hands of them that
+did the work, that had the oversight of the house of the LORD: and
+they laid it out to the carpenters and builders, that wrought upon the
+house of the LORD, 12:12 And to masons, and hewers of stone, and to
+buy timber and hewed stone to repair the breaches of the house of the
+LORD, and for all that was laid out for the house to repair it.
+
+12:13 Howbeit there were not made for the house of the LORD bowls of
+silver, snuffers, basons, trumpets, any vessels of gold, or vessels of
+silver, of the money that was brought into the house of the LORD:
+12:14 But they gave that to the workmen, and repaired therewith the
+house of the LORD.
+
+12:15 Moreover they reckoned not with the men, into whose hand they
+delivered the money to be bestowed on workmen: for they dealt
+faithfully.
+
+12:16 The trespass money and sin money was not brought into the house
+of the LORD: it was the priests'.
+
+12:17 Then Hazael king of Syria went up, and fought against Gath, and
+took it: and Hazael set his face to go up to Jerusalem.
+
+12:18 And Jehoash king of Judah took all the hallowed things that
+Jehoshaphat, and Jehoram, and Ahaziah, his fathers, kings of Judah,
+had dedicated, and his own hallowed things, and all the gold that was
+found in the treasures of the house of the LORD, and in the king's
+house, and sent it to Hazael king of Syria: and he went away from
+Jerusalem.
+
+12:19 And the rest of the acts of Joash, and all that he did, are they
+not written in the book of the chronicles of the kings of Judah?
+12:20 And his servants arose, and made a conspiracy, and slew Joash in
+the house of Millo, which goeth down to Silla.
+
+12:21 For Jozachar the son of Shimeath, and Jehozabad the son of
+Shomer, his servants, smote him, and he died; and they buried him with
+his fathers in the city of David: and Amaziah his son reigned in his
+stead.
+
+13:1 In the three and twentieth year of Joash the son of Ahaziah king
+of Judah Jehoahaz the son of Jehu began to reign over Israel in
+Samaria, and reigned seventeen years.
+
+13:2 And he did that which was evil in the sight of the LORD, and
+followed the sins of Jeroboam the son of Nebat, which made Israel to
+sin; he departed not therefrom.
+
+13:3 And the anger of the LORD was kindled against Israel, and he
+delivered them into the hand of Hazael king of Syria, and into the
+hand of Benhadad the son of Hazael, all their days.
+
+13:4 And Jehoahaz besought the LORD, and the LORD hearkened unto him:
+for he saw the oppression of Israel, because the king of Syria
+oppressed them.
+
+13:5 (And the LORD gave Israel a saviour, so that they went out from
+under the hand of the Syrians: and the children of Israel dwelt in
+their tents, as beforetime.
+
+13:6 Nevertheless they departed not from the sins of the house of
+Jeroboam, who made Israel sin, but walked therein: and there remained
+the grove also in Samaria.) 13:7 Neither did he leave of the people
+to Jehoahaz but fifty horsemen, and ten chariots, and ten thousand
+footmen; for the king of Syria had destroyed them, and had made them
+like the dust by threshing.
+
+13:8 Now the rest of the acts of Jehoahaz, and all that he did, and
+his might, are they not written in the book of the chronicles of the
+kings of Israel? 13:9 And Jehoahaz slept with his fathers; and they
+buried him in Samaria: and Joash his son reigned in his stead.
+
+13:10 In the thirty and seventh year of Joash king of Judah began
+Jehoash the son of Jehoahaz to reign over Israel in Samaria, and
+reigned sixteen years.
+
+13:11 And he did that which was evil in the sight of the LORD; he
+departed not from all the sins of Jeroboam the son of Nebat, who made
+Israel sin: but he walked therein.
+
+13:12 And the rest of the acts of Joash, and all that he did, and his
+might wherewith he fought against Amaziah king of Judah, are they not
+written in the book of the chronicles of the kings of Israel? 13:13
+And Joash slept with his fathers; and Jeroboam sat upon his throne:
+and Joash was buried in Samaria with the kings of Israel.
+
+13:14 Now Elisha was fallen sick of his sickness whereof he died. And
+Joash the king of Israel came down unto him, and wept over his face,
+and said, O my father, my father, the chariot of Israel, and the
+horsemen thereof.
+
+13:15 And Elisha said unto him, Take bow and arrows. And he took unto
+him bow and arrows.
+
+13:16 And he said to the king of Israel, Put thine hand upon the bow.
+And he put his hand upon it: and Elisha put his hands upon the king's
+hands.
+
+13:17 And he said, Open the window eastward. And he opened it. Then
+Elisha said, Shoot. And he shot. And he said, The arrow of the LORD's
+deliverance, and the arrow of deliverance from Syria: for thou shalt
+smite the Syrians in Aphek, till thou have consumed them.
+
+13:18 And he said, Take the arrows. And he took them. And he said unto
+the king of Israel, Smite upon the ground. And he smote thrice, and
+stayed.
+
+13:19 And the man of God was wroth with him, and said, Thou shouldest
+have smitten five or six times; then hadst thou smitten Syria till
+thou hadst consumed it: whereas now thou shalt smite Syria but thrice.
+
+13:20 And Elisha died, and they buried him. And the bands of the
+Moabites invaded the land at the coming in of the year.
+
+13:21 And it came to pass, as they were burying a man, that, behold,
+they spied a band of men; and they cast the man into the sepulchre of
+Elisha: and when the man was let down, and touched the bones of
+Elisha, he revived, and stood up on his feet.
+
+13:22 But Hazael king of Syria oppressed Israel all the days of
+Jehoahaz.
+
+13:23 And the LORD was gracious unto them, and had compassion on them,
+and had respect unto them, because of his covenant with Abraham,
+Isaac, and Jacob, and would not destroy them, neither cast he them
+from his presence as yet.
+
+13:24 So Hazael king of Syria died; and Benhadad his son reigned in
+his stead.
+
+13:25 And Jehoash the son of Jehoahaz took again out of the hand of
+Benhadad the son of Hazael the cities, which he had taken out of the
+hand of Jehoahaz his father by war. Three times did Joash beat him,
+and recovered the cities of Israel.
+
+14:1 In the second year of Joash son of Jehoahaz king of Israel
+reigned Amaziah the son of Joash king of Judah.
+
+14:2 He was twenty and five years old when he began to reign, and
+reigned twenty and nine years in Jerusalem. And his mother's name was
+Jehoaddan of Jerusalem.
+
+14:3 And he did that which was right in the sight of the LORD, yet not
+like David his father: he did according to all things as Joash his
+father did.
+
+14:4 Howbeit the high places were not taken away: as yet the people
+did sacrifice and burnt incense on the high places.
+
+14:5 And it came to pass, as soon as the kingdom was confirmed in his
+hand, that he slew his servants which had slain the king his father.
+
+14:6 But the children of the murderers he slew not: according unto
+that which is written in the book of the law of Moses, wherein the
+LORD commanded, saying, The fathers shall not be put to death for the
+children, nor the children be put to death for the fathers; but every
+man shall be put to death for his own sin.
+
+14:7 He slew of Edom in the valley of salt ten thousand, and took
+Selah by war, and called the name of it Joktheel unto this day.
+
+14:8 Then Amaziah sent messengers to Jehoash, the son of Jehoahaz son
+of Jehu, king of Israel, saying, Come, let us look one another in the
+face.
+
+14:9 And Jehoash the king of Israel sent to Amaziah king of Judah,
+saying, The thistle that was in Lebanon sent to the cedar that was in
+Lebanon, saying, Give thy daughter to my son to wife: and there passed
+by a wild beast that was in Lebanon, and trode down the thistle.
+
+14:10 Thou hast indeed smitten Edom, and thine heart hath lifted thee
+up: glory of this, and tarry at home: for why shouldest thou meddle to
+thy hurt, that thou shouldest fall, even thou, and Judah with thee?
+14:11 But Amaziah would not hear. Therefore Jehoash king of Israel
+went up; and he and Amaziah king of Judah looked one another in the
+face at Bethshemesh, which belongeth to Judah.
+
+14:12 And Judah was put to the worse before Israel; and they fled
+every man to their tents.
+
+14:13 And Jehoash king of Israel took Amaziah king of Judah, the son
+of Jehoash the son of Ahaziah, at Bethshemesh, and came to Jerusalem,
+and brake down the wall of Jerusalem from the gate of Ephraim unto the
+corner gate, four hundred cubits.
+
+14:14 And he took all the gold and silver, and all the vessels that
+were found in the house of the LORD, and in the treasures of the
+king's house, and hostages, and returned to Samaria.
+
+14:15 Now the rest of the acts of Jehoash which he did, and his might,
+and how he fought with Amaziah king of Judah, are they not written in
+the book of the chronicles of the kings of Israel? 14:16 And Jehoash
+slept with his fathers, and was buried in Samaria with the kings of
+Israel; and Jeroboam his son reigned in his stead.
+
+14:17 And Amaziah the son of Joash king of Judah lived after the death
+of Jehoash son of Jehoahaz king of Israel fifteen years.
+
+14:18 And the rest of the acts of Amaziah, are they not written in the
+book of the chronicles of the kings of Judah? 14:19 Now they made a
+conspiracy against him in Jerusalem: and he fled to Lachish; but they
+sent after him to Lachish, and slew him there.
+
+14:20 And they brought him on horses: and he was buried at Jerusalem
+with his fathers in the city of David.
+
+14:21 And all the people of Judah took Azariah, which was sixteen
+years old, and made him king instead of his father Amaziah.
+
+14:22 He built Elath, and restored it to Judah, after that the king
+slept with his fathers.
+
+14:23 In the fifteenth year of Amaziah the son of Joash king of Judah
+Jeroboam the son of Joash king of Israel began to reign in Samaria,
+and reigned forty and one years.
+
+14:24 And he did that which was evil in the sight of the LORD: he
+departed not from all the sins of Jeroboam the son of Nebat, who made
+Israel to sin.
+
+14:25 He restored the coast of Israel from the entering of Hamath unto
+the sea of the plain, according to the word of the LORD God of Israel,
+which he spake by the hand of his servant Jonah, the son of Amittai,
+the prophet, which was of Gathhepher.
+
+14:26 For the LORD saw the affliction of Israel, that it was very
+bitter: for there was not any shut up, nor any left, nor any helper
+for Israel.
+
+14:27 And the LORD said not that he would blot out the name of Israel
+from under heaven: but he saved them by the hand of Jeroboam the son
+of Joash.
+
+14:28 Now the rest of the acts of Jeroboam, and all that he did, and
+his might, how he warred, and how he recovered Damascus, and Hamath,
+which belonged to Judah, for Israel, are they not written in the book
+of the chronicles of the kings of Israel? 14:29 And Jeroboam slept
+with his fathers, even with the kings of Israel; and Zachariah his son
+reigned in his stead.
+
+15:1 In the twenty and seventh year of Jeroboam king of Israel began
+Azariah son of Amaziah king of Judah to reign.
+
+15:2 Sixteen years old was he when he began to reign, and he reigned
+two and fifty years in Jerusalem. And his mother's name was Jecholiah
+of Jerusalem.
+
+15:3 And he did that which was right in the sight of the LORD,
+according to all that his father Amaziah had done; 15:4 Save that the
+high places were not removed: the people sacrificed and burnt incense
+still on the high places.
+
+15:5 And the LORD smote the king, so that he was a leper unto the day
+of his death, and dwelt in a several house. And Jotham the king's son
+was over the house, judging the people of the land.
+
+15:6 And the rest of the acts of Azariah, and all that he did, are
+they not written in the book of the chronicles of the kings of Judah?
+15:7 So Azariah slept with his fathers; and they buried him with his
+fathers in the city of David: and Jotham his son reigned in his stead.
+
+15:8 In the thirty and eighth year of Azariah king of Judah did
+Zachariah the son of Jeroboam reign over Israel in Samaria six months.
+
+15:9 And he did that which was evil in the sight of the LORD, as his
+fathers had done: he departed not from the sins of Jeroboam the son of
+Nebat, who made Israel to sin.
+
+15:10 And Shallum the son of Jabesh conspired against him, and smote
+him before the people, and slew him, and reigned in his stead.
+
+15:11 And the rest of the acts of Zachariah, behold, they are written
+in the book of the chronicles of the kings of Israel.
+
+15:12 This was the word of the LORD which he spake unto Jehu, saying,
+Thy sons shall sit on the throne of Israel unto the fourth generation.
+And so it came to pass.
+
+15:13 Shallum the son of Jabesh began to reign in the nine and
+thirtieth year of Uzziah king of Judah; and he reigned a full month in
+Samaria.
+
+15:14 For Menahem the son of Gadi went up from Tirzah, and came to
+Samaria, and smote Shallum the son of Jabesh in Samaria, and slew him,
+and reigned in his stead.
+
+15:15 And the rest of the acts of Shallum, and his conspiracy which he
+made, behold, they are written in the book of the chronicles of the
+kings of Israel.
+
+15:16 Then Menahem smote Tiphsah, and all that were therein, and the
+coasts thereof from Tirzah: because they opened not to him, therefore
+he smote it; and all the women therein that were with child he ripped
+up.
+
+15:17 In the nine and thirtieth year of Azariah king of Judah began
+Menahem the son of Gadi to reign over Israel, and reigned ten years in
+Samaria.
+
+15:18 And he did that which was evil in the sight of the LORD: he
+departed not all his days from the sins of Jeroboam the son of Nebat,
+who made Israel to sin.
+
+15:19 And Pul the king of Assyria came against the land: and Menahem
+gave Pul a thousand talents of silver, that his hand might be with him
+to confirm the kingdom in his hand.
+
+15:20 And Menahem exacted the money of Israel, even of all the mighty
+men of wealth, of each man fifty shekels of silver, to give to the
+king of Assyria. So the king of Assyria turned back, and stayed not
+there in the land.
+
+15:21 And the rest of the acts of Menahem, and all that he did, are
+they not written in the book of the chronicles of the kings of Israel?
+15:22 And Menahem slept with his fathers; and Pekahiah his son reigned
+in his stead.
+
+15:23 In the fiftieth year of Azariah king of Judah Pekahiah the son
+of Menahem began to reign over Israel in Samaria, and reigned two
+years.
+
+15:24 And he did that which was evil in the sight of the LORD: he
+departed not from the sins of Jeroboam the son of Nebat, who made
+Israel to sin.
+
+15:25 But Pekah the son of Remaliah, a captain of his, conspired
+against him, and smote him in Samaria, in the palace of the king's
+house, with Argob and Arieh, and with him fifty men of the Gileadites:
+and he killed him, and reigned in his room.
+
+15:26 And the rest of the acts of Pekahiah, and all that he did,
+behold, they are written in the book of the chronicles of the kings of
+Israel.
+
+15:27 In the two and fiftieth year of Azariah king of Judah Pekah the
+son of Remaliah began to reign over Israel in Samaria, and reigned
+twenty years.
+
+15:28 And he did that which was evil in the sight of the LORD: he
+departed not from the sins of Jeroboam the son of Nebat, who made
+Israel to sin.
+
+15:29 In the days of Pekah king of Israel came Tiglathpileser king of
+Assyria, and took Ijon, and Abelbethmaachah, and Janoah, and Kedesh,
+and Hazor, and Gilead, and Galilee, all the land of Naphtali, and
+carried them captive to Assyria.
+
+15:30 And Hoshea the son of Elah made a conspiracy against Pekah the
+son of Remaliah, and smote him, and slew him, and reigned in his
+stead, in the twentieth year of Jotham the son of Uzziah.
+
+15:31 And the rest of the acts of Pekah, and all that he did, behold,
+they are written in the book of the chronicles of the kings of Israel.
+
+15:32 In the second year of Pekah the son of Remaliah king of Israel
+began Jotham the son of Uzziah king of Judah to reign.
+
+15:33 Five and twenty years old was he when he began to reign, and he
+reigned sixteen years in Jerusalem. And his mother's name was Jerusha,
+the daughter of Zadok.
+
+15:34 And he did that which was right in the sight of the LORD: he did
+according to all that his father Uzziah had done.
+
+15:35 Howbeit the high places were not removed: the people sacrificed
+and burned incense still in the high places. He built the higher gate
+of the house of the LORD.
+
+15:36 Now the rest of the acts of Jotham, and all that he did, are
+they not written in the book of the chronicles of the kings of Judah?
+15:37 In those days the LORD began to send against Judah Rezin the
+king of Syria, and Pekah the son of Remaliah.
+
+15:38 And Jotham slept with his fathers, and was buried with his
+fathers in the city of David his father: and Ahaz his son reigned in
+his stead.
+
+16:1 In the seventeenth year of Pekah the son of Remaliah Ahaz the son
+of Jotham king of Judah began to reign.
+
+16:2 Twenty years old was Ahaz when he began to reign, and reigned
+sixteen years in Jerusalem, and did not that which was right in the
+sight of the LORD his God, like David his father.
+
+16:3 But he walked in the way of the kings of Israel, yea, and made
+his son to pass through the fire, according to the abominations of the
+heathen, whom the LORD cast out from before the children of Israel.
+
+16:4 And he sacrificed and burnt incense in the high places, and on
+the hills, and under every green tree.
+
+16:5 Then Rezin king of Syria and Pekah son of Remaliah king of Israel
+came up to Jerusalem to war: and they besieged Ahaz, but could not
+overcome him.
+
+16:6 At that time Rezin king of Syria recovered Elath to Syria, and
+drave the Jews from Elath: and the Syrians came to Elath, and dwelt
+there unto this day.
+
+16:7 So Ahaz sent messengers to Tiglathpileser king of Assyria,
+saying, I am thy servant and thy son: come up, and save me out of the
+hand of the king of Syria, and out of the hand of the king of Israel,
+which rise up against me.
+
+16:8 And Ahaz took the silver and gold that was found in the house of
+the LORD, and in the treasures of the king's house, and sent it for a
+present to the king of Assyria.
+
+16:9 And the king of Assyria hearkened unto him: for the king of
+Assyria went up against Damascus, and took it, and carried the people
+of it captive to Kir, and slew Rezin.
+
+16:10 And king Ahaz went to Damascus to meet Tiglathpileser king of
+Assyria, and saw an altar that was at Damascus: and king Ahaz sent to
+Urijah the priest the fashion of the altar, and the pattern of it,
+according to all the workmanship thereof.
+
+16:11 And Urijah the priest built an altar according to all that king
+Ahaz had sent from Damascus: so Urijah the priest made it against king
+Ahaz came from Damascus.
+
+16:12 And when the king was come from Damascus, the king saw the
+altar: and the king approached to the altar, and offered thereon.
+
+16:13 And he burnt his burnt offering and his meat offering, and
+poured his drink offering, and sprinkled the blood of his peace
+offerings, upon the altar.
+
+16:14 And he brought also the brasen altar, which was before the LORD,
+from the forefront of the house, from between the altar and the house
+of the LORD, and put it on the north side of the altar.
+
+16:15 And king Ahaz commanded Urijah the priest, saying, Upon the
+great altar burn the morning burnt offering, and the evening meat
+offering, and the king's burnt sacrifice, and his meat offering, with
+the burnt offering of all the people of the land, and their meat
+offering, and their drink offerings; and sprinkle upon it all the
+blood of the burnt offering, and all the blood of the sacrifice: and
+the brasen altar shall be for me to enquire by.
+
+16:16 Thus did Urijah the priest, according to all that king Ahaz
+commanded.
+
+16:17 And king Ahaz cut off the borders of the bases, and removed the
+laver from off them; and took down the sea from off the brasen oxen
+that were under it, and put it upon the pavement of stones.
+
+16:18 And the covert for the sabbath that they had built in the house,
+and the king's entry without, turned he from the house of the LORD for
+the king of Assyria.
+
+16:19 Now the rest of the acts of Ahaz which he did, are they not
+written in the book of the chronicles of the kings of Judah? 16:20
+And Ahaz slept with his fathers, and was buried with his fathers in
+the city of David: and Hezekiah his son reigned in his stead.
+
+17:1 In the twelfth year of Ahaz king of Judah began Hoshea the son of
+Elah to reign in Samaria over Israel nine years.
+
+17:2 And he did that which was evil in the sight of the LORD, but not
+as the kings of Israel that were before him.
+
+17:3 Against him came up Shalmaneser king of Assyria; and Hoshea
+became his servant, and gave him presents.
+
+17:4 And the king of Assyria found conspiracy in Hoshea: for he had
+sent messengers to So king of Egypt, and brought no present to the
+king of Assyria, as he had done year by year: therefore the king of
+Assyria shut him up, and bound him in prison.
+
+17:5 Then the king of Assyria came up throughout all the land, and
+went up to Samaria, and besieged it three years.
+
+17:6 In the ninth year of Hoshea the king of Assyria took Samaria, and
+carried Israel away into Assyria, and placed them in Halah and in
+Habor by the river of Gozan, and in the cities of the Medes.
+
+17:7 For so it was, that the children of Israel had sinned against the
+LORD their God, which had brought them up out of the land of Egypt,
+from under the hand of Pharaoh king of Egypt, and had feared other
+gods, 17:8 And walked in the statutes of the heathen, whom the LORD
+cast out from before the children of Israel, and of the kings of
+Israel, which they had made.
+
+17:9 And the children of Israel did secretly those things that were
+not right against the LORD their God, and they built them high places
+in all their cities, from the tower of the watchmen to the fenced
+city.
+
+17:10 And they set them up images and groves in every high hill, and
+under every green tree: 17:11 And there they burnt incense in all the
+high places, as did the heathen whom the LORD carried away before
+them; and wrought wicked things to provoke the LORD to anger: 17:12
+For they served idols, whereof the LORD had said unto them, Ye shall
+not do this thing.
+
+17:13 Yet the LORD testified against Israel, and against Judah, by all
+the prophets, and by all the seers, saying, Turn ye from your evil
+ways, and keep my commandments and my statutes, according to all the
+law which I commanded your fathers, and which I sent to you by my
+servants the prophets.
+
+17:14 Notwithstanding they would not hear, but hardened their necks,
+like to the neck of their fathers, that did not believe in the LORD
+their God.
+
+17:15 And they rejected his statutes, and his covenant that he made
+with their fathers, and his testimonies which he testified against
+them; and they followed vanity, and became vain, and went after the
+heathen that were round about them, concerning whom the LORD had
+charged them, that they should not do like them.
+
+17:16 And they left all the commandments of the LORD their God, and
+made them molten images, even two calves, and made a grove, and
+worshipped all the host of heaven, and served Baal.
+
+17:17 And they caused their sons and their daughters to pass through
+the fire, and used divination and enchantments, and sold themselves to
+do evil in the sight of the LORD, to provoke him to anger.
+
+17:18 Therefore the LORD was very angry with Israel, and removed them
+out of his sight: there was none left but the tribe of Judah only.
+
+17:19 Also Judah kept not the commandments of the LORD their God, but
+walked in the statutes of Israel which they made.
+
+17:20 And the LORD rejected all the seed of Israel, and afflicted
+them, and delivered them into the hand of spoilers, until he had cast
+them out of his sight.
+
+17:21 For he rent Israel from the house of David; and they made
+Jeroboam the son of Nebat king: and Jeroboam drave Israel from
+following the LORD, and made them sin a great sin.
+
+17:22 For the children of Israel walked in all the sins of Jeroboam
+which he did; they departed not from them; 17:23 Until the LORD
+removed Israel out of his sight, as he had said by all his servants
+the prophets. So was Israel carried away out of their own land to
+Assyria unto this day.
+
+17:24 And the king of Assyria brought men from Babylon, and from
+Cuthah, and from Ava, and from Hamath, and from Sepharvaim, and placed
+them in the cities of Samaria instead of the children of Israel: and
+they possessed Samaria, and dwelt in the cities thereof.
+
+17:25 And so it was at the beginning of their dwelling there, that
+they feared not the LORD: therefore the LORD sent lions among them,
+which slew some of them.
+
+17:26 Wherefore they spake to the king of Assyria, saying, The nations
+which thou hast removed, and placed in the cities of Samaria, know not
+the manner of the God of the land: therefore he hath sent lions among
+them, and, behold, they slay them, because they know not the manner of
+the God of the land.
+
+17:27 Then the king of Assyria commanded, saying, Carry thither one of
+the priests whom ye brought from thence; and let them go and dwell
+there, and let him teach them the manner of the God of the land.
+
+17:28 Then one of the priests whom they had carried away from Samaria
+came and dwelt in Bethel, and taught them how they should fear the
+LORD.
+
+17:29 Howbeit every nation made gods of their own, and put them in the
+houses of the high places which the Samaritans had made, every nation
+in their cities wherein they dwelt.
+
+17:30 And the men of Babylon made Succothbenoth, and the men of Cuth
+made Nergal, and the men of Hamath made Ashima, 17:31 And the Avites
+made Nibhaz and Tartak, and the Sepharvites burnt their children in
+fire to Adrammelech and Anammelech, the gods of Sepharvaim.
+
+17:32 So they feared the LORD, and made unto themselves of the lowest
+of them priests of the high places, which sacrificed for them in the
+houses of the high places.
+
+17:33 They feared the LORD, and served their own gods, after the
+manner of the nations whom they carried away from thence.
+
+17:34 Unto this day they do after the former manners: they fear not
+the LORD, neither do they after their statutes, or after their
+ordinances, or after the law and commandment which the LORD commanded
+the children of Jacob, whom he named Israel; 17:35 With whom the LORD
+had made a covenant, and charged them, saying, Ye shall not fear other
+gods, nor bow yourselves to them, nor serve them, nor sacrifice to
+them: 17:36 But the LORD, who brought you up out of the land of Egypt
+with great power and a stretched out arm, him shall ye fear, and him
+shall ye worship, and to him shall ye do sacrifice.
+
+17:37 And the statutes, and the ordinances, and the law, and the
+commandment, which he wrote for you, ye shall observe to do for
+evermore; and ye shall not fear other gods.
+
+17:38 And the covenant that I have made with you ye shall not forget;
+neither shall ye fear other gods.
+
+17:39 But the LORD your God ye shall fear; and he shall deliver you
+out of the hand of all your enemies.
+
+17:40 Howbeit they did not hearken, but they did after their former
+manner.
+
+17:41 So these nations feared the LORD, and served their graven
+images, both their children, and their children's children: as did
+their fathers, so do they unto this day.
+
+18:1 Now it came to pass in the third year of Hoshea son of Elah king
+of Israel, that Hezekiah the son of Ahaz king of Judah began to reign.
+
+18:2 Twenty and five years old was he when he began to reign; and he
+reigned twenty and nine years in Jerusalem. His mother's name also was
+Abi, the daughter of Zachariah.
+
+18:3 And he did that which was right in the sight of the LORD,
+according to all that David his father did.
+
+18:4 He removed the high places, and brake the images, and cut down
+the groves, and brake in pieces the brasen serpent that Moses had
+made: for unto those days the children of Israel did burn incense to
+it: and he called it Nehushtan.
+
+18:5 He trusted in the LORD God of Israel; so that after him was none
+like him among all the kings of Judah, nor any that were before him.
+
+18:6 For he clave to the LORD, and departed not from following him,
+but kept his commandments, which the LORD commanded Moses.
+
+18:7 And the LORD was with him; and he prospered whithersoever he went
+forth: and he rebelled against the king of Assyria, and served him
+not.
+
+18:8 He smote the Philistines, even unto Gaza, and the borders
+thereof, from the tower of the watchmen to the fenced city.
+
+18:9 And it came to pass in the fourth year of king Hezekiah, which
+was the seventh year of Hoshea son of Elah king of Israel, that
+Shalmaneser king of Assyria came up against Samaria, and besieged it.
+
+18:10 And at the end of three years they took it: even in the sixth
+year of Hezekiah, that is in the ninth year of Hoshea king of Israel,
+Samaria was taken.
+
+18:11 And the king of Assyria did carry away Israel unto Assyria, and
+put them in Halah and in Habor by the river of Gozan, and in the
+cities of the Medes: 18:12 Because they obeyed not the voice of the
+LORD their God, but transgressed his covenant, and all that Moses the
+servant of the LORD commanded, and would not hear them, nor do them.
+
+18:13 Now in the fourteenth year of king Hezekiah did Sennacherib king
+of Assyria come up against all the fenced cities of Judah, and took
+them.
+
+18:14 And Hezekiah king of Judah sent to the king of Assyria to
+Lachish, saying, I have offended; return from me: that which thou
+puttest on me will I bear. And the king of Assyria appointed unto
+Hezekiah king of Judah three hundred talents of silver and thirty
+talents of gold.
+
+18:15 And Hezekiah gave him all the silver that was found in the house
+of the LORD, and in the treasures of the king's house.
+
+18:16 At that time did Hezekiah cut off the gold from the doors of the
+temple of the LORD, and from the pillars which Hezekiah king of Judah
+had overlaid, and gave it to the king of Assyria.
+
+18:17 And the king of Assyria sent Tartan and Rabsaris and Rabshakeh
+from Lachish to king Hezekiah with a great host against Jerusalem. And
+they went up and came to Jerusalem. And when they were come up, they
+came and stood by the conduit of the upper pool, which is in the
+highway of the fuller's field.
+
+18:18 And when they had called to the king, there came out to them
+Eliakim the son of Hilkiah, which was over the household, and Shebna
+the scribe, and Joah the son of Asaph the recorder.
+
+18:19 And Rabshakeh said unto them, Speak ye now to Hezekiah, Thus
+saith the great king, the king of Assyria, What confidence is this
+wherein thou trustest? 18:20 Thou sayest, (but they are but vain
+words,) I have counsel and strength for the war. Now on whom dost thou
+trust, that thou rebellest against me? 18:21 Now, behold, thou
+trustest upon the staff of this bruised reed, even upon Egypt, on
+which if a man lean, it will go into his hand, and pierce it: so is
+Pharaoh king of Egypt unto all that trust on him.
+
+18:22 But if ye say unto me, We trust in the LORD our God: is not that
+he, whose high places and whose altars Hezekiah hath taken away, and
+hath said to Judah and Jerusalem, Ye shall worship before this altar
+in Jerusalem? 18:23 Now therefore, I pray thee, give pledges to my
+lord the king of Assyria, and I will deliver thee two thousand horses,
+if thou be able on thy part to set riders upon them.
+
+18:24 How then wilt thou turn away the face of one captain of the
+least of my master's servants, and put thy trust on Egypt for chariots
+and for horsemen? 18:25 Am I now come up without the LORD against
+this place to destroy it? The LORD said to me, Go up against this
+land, and destroy it.
+
+18:26 Then said Eliakim the son of Hilkiah, and Shebna, and Joah, unto
+Rabshakeh, Speak, I pray thee, to thy servants in the Syrian language;
+for we understand it: and talk not with us in the Jews' language in
+the ears of the people that are on the wall.
+
+18:27 But Rabshakeh said unto them, Hath my master sent me to thy
+master, and to thee, to speak these words? hath he not sent me to the
+men which sit on the wall, that they may eat their own dung, and drink
+their own piss with you? 18:28 Then Rabshakeh stood and cried with a
+loud voice in the Jews' language, and spake, saying, Hear the word of
+the great king, the king of Assyria: 18:29 Thus saith the king, Let
+not Hezekiah deceive you: for he shall not be able to deliver you out
+of his hand: 18:30 Neither let Hezekiah make you trust in the LORD,
+saying, The LORD will surely deliver us, and this city shall not be
+delivered into the hand of the king of Assyria.
+
+18:31 Hearken not to Hezekiah: for thus saith the king of Assyria,
+Make an agreement with me by a present, and come out to me, and then
+eat ye every man of his own vine, and every one of his fig tree, and
+drink ye every one the waters of his cistern: 18:32 Until I come and
+take you away to a land like your own land, a land of corn and wine, a
+land of bread and vineyards, a land of oil olive and of honey, that ye
+may live, and not die: and hearken not unto Hezekiah, when he
+persuadeth you, saying, The LORD will deliver us.
+
+18:33 Hath any of the gods of the nations delivered at all his land
+out of the hand of the king of Assyria? 18:34 Where are the gods of
+Hamath, and of Arpad? where are the gods of Sepharvaim, Hena, and
+Ivah? have they delivered Samaria out of mine hand? 18:35 Who are
+they among all the gods of the countries, that have delivered their
+country out of mine hand, that the LORD should deliver Jerusalem out
+of mine hand? 18:36 But the people held their peace, and answered him
+not a word: for the king's commandment was, saying, Answer him not.
+
+18:37 Then came Eliakim the son of Hilkiah, which was over the
+household, and Shebna the scribe, and Joah the son of Asaph the
+recorder, to Hezekiah with their clothes rent, and told him the words
+of Rabshakeh.
+
+19:1 And it came to pass, when king Hezekiah heard it, that he rent
+his clothes, and covered himself with sackcloth, and went into the
+house of the LORD.
+
+19:2 And he sent Eliakim, which was over the household, and Shebna the
+scribe, and the elders of the priests, covered with sackcloth, to
+Isaiah the prophet the son of Amoz.
+
+19:3 And they said unto him, Thus saith Hezekiah, This day is a day of
+trouble, and of rebuke, and blasphemy; for the children are come to
+the birth, and there is not strength to bring forth.
+
+19:4 It may be the LORD thy God will hear all the words of Rabshakeh,
+whom the king of Assyria his master hath sent to reproach the living
+God; and will reprove the words which the LORD thy God hath heard:
+wherefore lift up thy prayer for the remnant that are left.
+
+19:5 So the servants of king Hezekiah came to Isaiah.
+
+19:6 And Isaiah said unto them, Thus shall ye say to your master, Thus
+saith the LORD, Be not afraid of the words which thou hast heard, with
+which the servants of the king of Assyria have blasphemed me.
+
+19:7 Behold, I will send a blast upon him, and he shall hear a rumour,
+and shall return to his own land; and I will cause him to fall by the
+sword in his own land.
+
+19:8 So Rabshakeh returned, and found the king of Assyria warring
+against Libnah: for he had heard that he was departed from Lachish.
+
+19:9 And when he heard say of Tirhakah king of Ethiopia, Behold, he is
+come out to fight against thee: he sent messengers again unto
+Hezekiah, saying, 19:10 Thus shall ye speak to Hezekiah king of Judah,
+saying, Let not thy God in whom thou trustest deceive thee, saying,
+Jerusalem shall not be delivered into the hand of the king of Assyria.
+
+19:11 Behold, thou hast heard what the kings of Assyria have done to
+all lands, by destroying them utterly: and shalt thou be delivered?
+19:12 Have the gods of the nations delivered them which my fathers
+have destroyed; as Gozan, and Haran, and Rezeph, and the children of
+Eden which were in Thelasar? 19:13 Where is the king of Hamath, and
+the king of Arpad, and the king of the city of Sepharvaim, of Hena,
+and Ivah? 19:14 And Hezekiah received the letter of the hand of the
+messengers, and read it: and Hezekiah went up into the house of the
+LORD, and spread it before the LORD.
+
+19:15 And Hezekiah prayed before the LORD, and said, O LORD God of
+Israel, which dwellest between the cherubims, thou art the God, even
+thou alone, of all the kingdoms of the earth; thou hast made heaven
+and earth.
+
+19:16 LORD, bow down thine ear, and hear: open, LORD, thine eyes, and
+see: and hear the words of Sennacherib, which hath sent him to
+reproach the living God.
+
+19:17 Of a truth, LORD, the kings of Assyria have destroyed the
+nations and their lands, 19:18 And have cast their gods into the fire:
+for they were no gods, but the work of men's hands, wood and stone:
+therefore they have destroyed them.
+
+19:19 Now therefore, O LORD our God, I beseech thee, save thou us out
+of his hand, that all the kingdoms of the earth may know that thou art
+the LORD God, even thou only.
+
+19:20 Then Isaiah the son of Amoz sent to Hezekiah, saying, Thus saith
+the LORD God of Israel, That which thou hast prayed to me against
+Sennacherib king of Assyria I have heard.
+
+19:21 This is the word that the LORD hath spoken concerning him; The
+virgin the daughter of Zion hath despised thee, and laughed thee to
+scorn; the daughter of Jerusalem hath shaken her head at thee.
+
+19:22 Whom hast thou reproached and blasphemed? and against whom hast
+thou exalted thy voice, and lifted up thine eyes on high? even against
+the Holy One of Israel.
+
+19:23 By thy messengers thou hast reproached the LORD, and hast said,
+With the multitude of my chariots I am come up to the height of the
+mountains, to the sides of Lebanon, and will cut down the tall cedar
+trees thereof, and the choice fir trees thereof: and I will enter into
+the lodgings of his borders, and into the forest of his Carmel.
+
+19:24 I have digged and drunk strange waters, and with the sole of my
+feet have I dried up all the rivers of besieged places.
+
+19:25 Hast thou not heard long ago how I have done it, and of ancient
+times that I have formed it? now have I brought it to pass, that thou
+shouldest be to lay waste fenced cities into ruinous heaps.
+
+19:26 Therefore their inhabitants were of small power, they were
+dismayed and confounded; they were as the grass of the field, and as
+the green herb, as the grass on the house tops, and as corn blasted
+before it be grown up.
+
+19:27 But I know thy abode, and thy going out, and thy coming in, and
+thy rage against me.
+
+19:28 Because thy rage against me and thy tumult is come up into mine
+ears, therefore I will put my hook in thy nose, and my bridle in thy
+lips, and I will turn thee back by the way by which thou camest.
+
+19:29 And this shall be a sign unto thee, Ye shall eat this year such
+things as grow of themselves, and in the second year that which
+springeth of the same; and in the third year sow ye, and reap, and
+plant vineyards, and eat the fruits thereof.
+
+19:30 And the remnant that is escaped of the house of Judah shall yet
+again take root downward, and bear fruit upward.
+
+19:31 For out of Jerusalem shall go forth a remnant, and they that
+escape out of mount Zion: the zeal of the LORD of hosts shall do this.
+
+19:32 Therefore thus saith the LORD concerning the king of Assyria, He
+shall not come into this city, nor shoot an arrow there, nor come
+before it with shield, nor cast a bank against it.
+
+19:33 By the way that he came, by the same shall he return, and shall
+not come into this city, saith the LORD.
+
+19:34 For I will defend this city, to save it, for mine own sake, and
+for my servant David's sake.
+
+19:35 And it came to pass that night, that the angel of the LORD went
+out, and smote in the camp of the Assyrians an hundred fourscore and
+five thousand: and when they arose early in the morning, behold, they
+were all dead corpses.
+
+19:36 So Sennacherib king of Assyria departed, and went and returned,
+and dwelt at Nineveh.
+
+19:37 And it came to pass, as he was worshipping in the house of
+Nisroch his god, that Adrammelech and Sharezer his sons smote him with
+the sword: and they escaped into the land of Armenia. And Esarhaddon
+his son reigned in his stead.
+
+20:1 In those days was Hezekiah sick unto death. And the prophet
+Isaiah the son of Amoz came to him, and said unto him, Thus saith the
+LORD, Set thine house in order; for thou shalt die, and not live.
+
+20:2 Then he turned his face to the wall, and prayed unto the LORD,
+saying, 20:3 I beseech thee, O LORD, remember now how I have walked
+before thee in truth and with a perfect heart, and have done that
+which is good in thy sight. And Hezekiah wept sore.
+
+20:4 And it came to pass, afore Isaiah was gone out into the middle
+court, that the word of the LORD came to him, saying, 20:5 Turn again,
+and tell Hezekiah the captain of my people, Thus saith the LORD, the
+God of David thy father, I have heard thy prayer, I have seen thy
+tears: behold, I will heal thee: on the third day thou shalt go up
+unto the house of the LORD.
+
+20:6 And I will add unto thy days fifteen years; and I will deliver
+thee and this city out of the hand of the king of Assyria; and I will
+defend this city for mine own sake, and for my servant David's sake.
+
+20:7 And Isaiah said, Take a lump of figs. And they took and laid it
+on the boil, and he recovered.
+
+20:8 And Hezekiah said unto Isaiah, What shall be the sign that the
+LORD will heal me, and that I shall go up into the house of the LORD
+the third day? 20:9 And Isaiah said, This sign shalt thou have of the
+LORD, that the LORD will do the thing that he hath spoken: shall the
+shadow go forward ten degrees, or go back ten degrees? 20:10 And
+Hezekiah answered, It is a light thing for the shadow to go down ten
+degrees: nay, but let the shadow return backward ten degrees.
+
+20:11 And Isaiah the prophet cried unto the LORD: and he brought the
+shadow ten degrees backward, by which it had gone down in the dial of
+Ahaz.
+
+20:12 At that time Berodachbaladan, the son of Baladan, king of
+Babylon, sent letters and a present unto Hezekiah: for he had heard
+that Hezekiah had been sick.
+
+20:13 And Hezekiah hearkened unto them, and shewed them all the house
+of his precious things, the silver, and the gold, and the spices, and
+the precious ointment, and all the house of his armour, and all that
+was found in his treasures: there was nothing in his house, nor in all
+his dominion, that Hezekiah shewed them not.
+
+20:14 Then came Isaiah the prophet unto king Hezekiah, and said unto
+him, What said these men? and from whence came they unto thee? And
+Hezekiah said, They are come from a far country, even from Babylon.
+
+20:15 And he said, What have they seen in thine house? And Hezekiah
+answered, All the things that are in mine house have they seen: there
+is nothing among my treasures that I have not shewed them.
+
+20:16 And Isaiah said unto Hezekiah, Hear the word of the LORD.
+
+20:17 Behold, the days come, that all that is in thine house, and that
+which thy fathers have laid up in store unto this day, shall be
+carried into Babylon: nothing shall be left, saith the LORD.
+
+20:18 And of thy sons that shall issue from thee, which thou shalt
+beget, shall they take away; and they shall be eunuchs in the palace
+of the king of Babylon.
+
+20:19 Then said Hezekiah unto Isaiah, Good is the word of the LORD
+which thou hast spoken. And he said, Is it not good, if peace and
+truth be in my days? 20:20 And the rest of the acts of Hezekiah, and
+all his might, and how he made a pool, and a conduit, and brought
+water into the city, are they not written in the book of the
+chronicles of the kings of Judah? 20:21 And Hezekiah slept with his
+fathers: and Manasseh his son reigned in his stead.
+
+21:1 Manasseh was twelve years old when he began to reign, and reigned
+fifty and five years in Jerusalem. And his mother's name was
+Hephzibah.
+
+21:2 And he did that which was evil in the sight of the LORD, after
+the abominations of the heathen, whom the LORD cast out before the
+children of Israel.
+
+21:3 For he built up again the high places which Hezekiah his father
+had destroyed; and he reared up altars for Baal, and made a grove, as
+did Ahab king of Israel; and worshipped all the host of heaven, and
+served them.
+
+21:4 And he built altars in the house of the LORD, of which the LORD
+said, In Jerusalem will I put my name.
+
+21:5 And he built altars for all the host of heaven in the two courts
+of the house of the LORD.
+
+21:6 And he made his son pass through the fire, and observed times,
+and used enchantments, and dealt with familiar spirits and wizards: he
+wrought much wickedness in the sight of the LORD, to provoke him to
+anger.
+
+21:7 And he set a graven image of the grove that he had made in the
+house, of which the LORD said to David, and to Solomon his son, In
+this house, and in Jerusalem, which I have chosen out of all tribes of
+Israel, will I put my name for ever: 21:8 Neither will I make the feet
+of Israel move any more out of the land which I gave their fathers;
+only if they will observe to do according to all that I have commanded
+them, and according to all the law that my servant Moses commanded
+them.
+
+21:9 But they hearkened not: and Manasseh seduced them to do more evil
+than did the nations whom the LORD destroyed before the children of
+Israel.
+
+21:10 And the LORD spake by his servants the prophets, saying, 21:11
+Because Manasseh king of Judah hath done these abominations, and hath
+done wickedly above all that the Amorites did, which were before him,
+and hath made Judah also to sin with his idols: 21:12 Therefore thus
+saith the LORD God of Israel, Behold, I am bringing such evil upon
+Jerusalem and Judah, that whosoever heareth of it, both his ears shall
+tingle.
+
+21:13 And I will stretch over Jerusalem the line of Samaria, and the
+plummet of the house of Ahab: and I will wipe Jerusalem as a man
+wipeth a dish, wiping it, and turning it upside down.
+
+21:14 And I will forsake the remnant of mine inheritance, and deliver
+them into the hand of their enemies; and they shall become a prey and
+a spoil to all their enemies; 21:15 Because they have done that which
+was evil in my sight, and have provoked me to anger, since the day
+their fathers came forth out of Egypt, even unto this day.
+
+21:16 Moreover Manasseh shed innocent blood very much, till he had
+filled Jerusalem from one end to another; beside his sin wherewith he
+made Judah to sin, in doing that which was evil in the sight of the
+LORD.
+
+21:17 Now the rest of the acts of Manasseh, and all that he did, and
+his sin that he sinned, are they not written in the book of the
+chronicles of the kings of Judah? 21:18 And Manasseh slept with his
+fathers, and was buried in the garden of his own house, in the garden
+of Uzza: and Amon his son reigned in his stead.
+
+21:19 Amon was twenty and two years old when he began to reign, and he
+reigned two years in Jerusalem. And his mother's name was
+Meshullemeth, the daughter of Haruz of Jotbah.
+
+21:20 And he did that which was evil in the sight of the LORD, as his
+father Manasseh did.
+
+21:21 And he walked in all the way that his father walked in, and
+served the idols that his father served, and worshipped them: 21:22
+And he forsook the LORD God of his fathers, and walked not in the way
+of the LORD.
+
+21:23 And the servants of Amon conspired against him, and slew the
+king in his own house.
+
+21:24 And the people of the land slew all them that had conspired
+against king Amon; and the people of the land made Josiah his son king
+in his stead.
+
+21:25 Now the rest of the acts of Amon which he did, are they not
+written in the book of the chronicles of the kings of Judah? 21:26
+And he was buried in his sepulchre in the garden of Uzza: and Josiah
+his son reigned in his stead.
+
+22:1 Josiah was eight years old when he began to reign, and he reigned
+thirty and one years in Jerusalem. And his mother's name was Jedidah,
+the daughter of Adaiah of Boscath.
+
+22:2 And he did that which was right in the sight of the LORD, and
+walked in all the way of David his father, and turned not aside to the
+right hand or to the left.
+
+22:3 And it came to pass in the eighteenth year of king Josiah, that
+the king sent Shaphan the son of Azaliah, the son of Meshullam, the
+scribe, to the house of the LORD, saying, 22:4 Go up to Hilkiah the
+high priest, that he may sum the silver which is brought into the
+house of the LORD, which the keepers of the door have gathered of the
+people: 22:5 And let them deliver it into the hand of the doers of the
+work, that have the oversight of the house of the LORD: and let them
+give it to the doers of the work which is in the house of the LORD, to
+repair the breaches of the house, 22:6 Unto carpenters, and builders,
+and masons, and to buy timber and hewn stone to repair the house.
+
+22:7 Howbeit there was no reckoning made with them of the money that
+was delivered into their hand, because they dealt faithfully.
+
+22:8 And Hilkiah the high priest said unto Shaphan the scribe, I have
+found the book of the law in the house of the LORD. And Hilkiah gave
+the book to Shaphan, and he read it.
+
+22:9 And Shaphan the scribe came to the king, and brought the king
+word again, and said, Thy servants have gathered the money that was
+found in the house, and have delivered it into the hand of them that
+do the work, that have the oversight of the house of the LORD.
+
+22:10 And Shaphan the scribe shewed the king, saying, Hilkiah the
+priest hath delivered me a book. And Shaphan read it before the king.
+
+22:11 And it came to pass, when the king had heard the words of the
+book of the law, that he rent his clothes.
+
+22:12 And the king commanded Hilkiah the priest, and Ahikam the son of
+Shaphan, and Achbor the son of Michaiah, and Shaphan the scribe, and
+Asahiah a servant of the king's, saying, 22:13 Go ye, enquire of the
+LORD for me, and for the people, and for all Judah, concerning the
+words of this book that is found: for great is the wrath of the LORD
+that is kindled against us, because our fathers have not hearkened
+unto the words of this book, to do according unto all that which is
+written concerning us.
+
+22:14 So Hilkiah the priest, and Ahikam, and Achbor, and Shaphan, and
+Asahiah, went unto Huldah the prophetess, the wife of Shallum the son
+of Tikvah, the son of Harhas, keeper of the wardrobe; (now she dwelt
+in Jerusalem in the college;) and they communed with her.
+
+22:15 And she said unto them, Thus saith the LORD God of Israel, Tell
+the man that sent you to me, 22:16 Thus saith the LORD, Behold, I will
+bring evil upon this place, and upon the inhabitants thereof, even all
+the words of the book which the king of Judah hath read: 22:17 Because
+they have forsaken me, and have burned incense unto other gods, that
+they might provoke me to anger with all the works of their hands;
+therefore my wrath shall be kindled against this place, and shall not
+be quenched.
+
+22:18 But to the king of Judah which sent you to enquire of the LORD,
+thus shall ye say to him, Thus saith the LORD God of Israel, As
+touching the words which thou hast heard; 22:19 Because thine heart
+was tender, and thou hast humbled thyself before the LORD, when thou
+heardest what I spake against this place, and against the inhabitants
+thereof, that they should become a desolation and a curse, and hast
+rent thy clothes, and wept before me; I also have heard thee, saith
+the LORD.
+
+22:20 Behold therefore, I will gather thee unto thy fathers, and thou
+shalt be gathered into thy grave in peace; and thine eyes shall not
+see all the evil which I will bring upon this place. And they brought
+the king word again.
+
+23:1 And the king sent, and they gathered unto him all the elders of
+Judah and of Jerusalem.
+
+23:2 And the king went up into the house of the LORD, and all the men
+of Judah and all the inhabitants of Jerusalem with him, and the
+priests, and the prophets, and all the people, both small and great:
+and he read in their ears all the words of the book of the covenant
+which was found in the house of the LORD.
+
+23:3 And the king stood by a pillar, and made a covenant before the
+LORD, to walk after the LORD, and to keep his commandments and his
+testimonies and his statutes with all their heart and all their soul,
+to perform the words of this covenant that were written in this book.
+And all the people stood to the covenant.
+
+23:4 And the king commanded Hilkiah the high priest, and the priests
+of the second order, and the keepers of the door, to bring forth out
+of the temple of the LORD all the vessels that were made for Baal, and
+for the grove, and for all the host of heaven: and he burned them
+without Jerusalem in the fields of Kidron, and carried the ashes of
+them unto Bethel.
+
+23:5 And he put down the idolatrous priests, whom the kings of Judah
+had ordained to burn incense in the high places in the cities of
+Judah, and in the places round about Jerusalem; them also that burned
+incense unto Baal, to the sun, and to the moon, and to the planets,
+and to all the host of heaven.
+
+23:6 And he brought out the grove from the house of the LORD, without
+Jerusalem, unto the brook Kidron, and burned it at the brook Kidron,
+and stamped it small to powder, and cast the powder thereof upon the
+graves of the children of the people.
+
+23:7 And he brake down the houses of the sodomites, that were by the
+house of the LORD, where the women wove hangings for the grove.
+
+23:8 And he brought all the priests out of the cities of Judah, and
+defiled the high places where the priests had burned incense, from
+Geba to Beersheba, and brake down the high places of the gates that
+were in the entering in of the gate of Joshua the governor of the
+city, which were on a man's left hand at the gate of the city.
+
+23:9 Nevertheless the priests of the high places came not up to the
+altar of the LORD in Jerusalem, but they did eat of the unleavened
+bread among their brethren.
+
+23:10 And he defiled Topheth, which is in the valley of the children
+of Hinnom, that no man might make his son or his daughter to pass
+through the fire to Molech.
+
+23:11 And he took away the horses that the kings of Judah had given to
+the sun, at the entering in of the house of the LORD, by the chamber
+of Nathanmelech the chamberlain, which was in the suburbs, and burned
+the chariots of the sun with fire.
+
+23:12 And the altars that were on the top of the upper chamber of
+Ahaz, which the kings of Judah had made, and the altars which Manasseh
+had made in the two courts of the house of the LORD, did the king beat
+down, and brake them down from thence, and cast the dust of them into
+the brook Kidron.
+
+23:13 And the high places that were before Jerusalem, which were on
+the right hand of the mount of corruption, which Solomon the king of
+Israel had builded for Ashtoreth the abomination of the Zidonians, and
+for Chemosh the abomination of the Moabites, and for Milcom the
+abomination of the children of Ammon, did the king defile.
+
+23:14 And he brake in pieces the images, and cut down the groves, and
+filled their places with the bones of men.
+
+23:15 Moreover the altar that was at Bethel, and the high place which
+Jeroboam the son of Nebat, who made Israel to sin, had made, both that
+altar and the high place he brake down, and burned the high place, and
+stamped it small to powder, and burned the grove.
+
+23:16 And as Josiah turned himself, he spied the sepulchres that were
+there in the mount, and sent, and took the bones out of the
+sepulchres, and burned them upon the altar, and polluted it, according
+to the word of the LORD which the man of God proclaimed, who
+proclaimed these words.
+
+23:17 Then he said, What title is that that I see? And the men of the
+city told him, It is the sepulchre of the man of God, which came from
+Judah, and proclaimed these things that thou hast done against the
+altar of Bethel.
+
+23:18 And he said, Let him alone; let no man move his bones. So they
+let his bones alone, with the bones of the prophet that came out of
+Samaria.
+
+23:19 And all the houses also of the high places that were in the
+cities of Samaria, which the kings of Israel had made to provoke the
+Lord to anger, Josiah took away, and did to them according to all the
+acts that he had done in Bethel.
+
+23:20 And he slew all the priests of the high places that were there
+upon the altars, and burned men's bones upon them, and returned to
+Jerusalem.
+
+23:21 And the king commanded all the people, saying, Keep the passover
+unto the LORD your God, as it is written in the book of this covenant.
+
+23:22 Surely there was not holden such a passover from the days of the
+judges that judged Israel, nor in all the days of the kings of Israel,
+nor of the kings of Judah; 23:23 But in the eighteenth year of king
+Josiah, wherein this passover was holden to the LORD in Jerusalem.
+
+23:24 Moreover the workers with familiar spirits, and the wizards, and
+the images, and the idols, and all the abominations that were spied in
+the land of Judah and in Jerusalem, did Josiah put away, that he might
+perform the words of the law which were written in the book that
+Hilkiah the priest found in the house of the LORD.
+
+23:25 And like unto him was there no king before him, that turned to
+the LORD with all his heart, and with all his soul, and with all his
+might, according to all the law of Moses; neither after him arose
+there any like him.
+
+23:26 Notwithstanding the LORD turned not from the fierceness of his
+great wrath, wherewith his anger was kindled against Judah, because of
+all the provocations that Manasseh had provoked him withal.
+
+23:27 And the LORD said, I will remove Judah also out of my sight, as
+I have removed Israel, and will cast off this city Jerusalem which I
+have chosen, and the house of which I said, My name shall be there.
+
+23:28 Now the rest of the acts of Josiah, and all that he did, are
+they not written in the book of the chronicles of the kings of Judah?
+23:29 In his days Pharaohnechoh king of Egypt went up against the king
+of Assyria to the river Euphrates: and king Josiah went against him;
+and he slew him at Megiddo, when he had seen him.
+
+23:30 And his servants carried him in a chariot dead from Megiddo, and
+brought him to Jerusalem, and buried him in his own sepulchre. And the
+people of the land took Jehoahaz the son of Josiah, and anointed him,
+and made him king in his father's stead.
+
+23:31 Jehoahaz was twenty and three years old when he began to reign;
+and he reigned three months in Jerusalem. And his mother's name was
+Hamutal, the daughter of Jeremiah of Libnah.
+
+23:32 And he did that which was evil in the sight of the LORD,
+according to all that his fathers had done.
+
+23:33 And Pharaohnechoh put him in bands at Riblah in the land of
+Hamath, that he might not reign in Jerusalem; and put the land to a
+tribute of an hundred talents of silver, and a talent of gold.
+
+23:34 And Pharaohnechoh made Eliakim the son of Josiah king in the
+room of Josiah his father, and turned his name to Jehoiakim, and took
+Jehoahaz away: and he came to Egypt, and died there.
+
+23:35 And Jehoiakim gave the silver and the gold to Pharaoh; but he
+taxed the land to give the money according to the commandment of
+Pharaoh: he exacted the silver and the gold of the people of the land,
+of every one according to his taxation, to give it unto Pharaohnechoh.
+
+23:36 Jehoiakim was twenty and five years old when he began to reign;
+and he reigned eleven years in Jerusalem. And his mother's name was
+Zebudah, the daughter of Pedaiah of Rumah.
+
+23:37 And he did that which was evil in the sight of the LORD,
+according to all that his fathers had done.
+
+24:1 In his days Nebuchadnezzar king of Babylon came up, and Jehoiakim
+became his servant three years: then he turned and rebelled against
+him.
+
+24:2 And the LORD sent against him bands of the Chaldees, and bands of
+the Syrians, and bands of the Moabites, and bands of the children of
+Ammon, and sent them against Judah to destroy it, according to the
+word of the LORD, which he spake by his servants the prophets.
+
+24:3 Surely at the commandment of the LORD came this upon Judah, to
+remove them out of his sight, for the sins of Manasseh, according to
+all that he did; 24:4 And also for the innocent blood that he shed:
+for he filled Jerusalem with innocent blood; which the LORD would not
+pardon.
+
+24:5 Now the rest of the acts of Jehoiakim, and all that he did, are
+they not written in the book of the chronicles of the kings of Judah?
+24:6 So Jehoiakim slept with his fathers: and Jehoiachin his son
+reigned in his stead.
+
+24:7 And the king of Egypt came not again any more out of his land:
+for the king of Babylon had taken from the river of Egypt unto the
+river Euphrates all that pertained to the king of Egypt.
+
+24:8 Jehoiachin was eighteen years old when he began to reign, and he
+reigned in Jerusalem three months. And his mother's name was Nehushta,
+the daughter of Elnathan of Jerusalem.
+
+24:9 And he did that which was evil in the sight of the LORD,
+according to all that his father had done.
+
+24:10 At that time the servants of Nebuchadnezzar king of Babylon came
+up against Jerusalem, and the city was besieged.
+
+24:11 And Nebuchadnezzar king of Babylon came against the city, and
+his servants did besiege it.
+
+24:12 And Jehoiachin the king of Judah went out to the king of
+Babylon, he, and his mother, and his servants, and his princes, and
+his officers: and the king of Babylon took him in the eighth year of
+his reign.
+
+24:13 And he carried out thence all the treasures of the house of the
+LORD, and the treasures of the king's house, and cut in pieces all the
+vessels of gold which Solomon king of Israel had made in the temple of
+the LORD, as the LORD had said.
+
+24:14 And he carried away all Jerusalem, and all the princes, and all
+the mighty men of valour, even ten thousand captives, and all the
+craftsmen and smiths: none remained, save the poorest sort of the
+people of the land.
+
+24:15 And he carried away Jehoiachin to Babylon, and the king's
+mother, and the king's wives, and his officers, and the mighty of the
+land, those carried he into captivity from Jerusalem to Babylon.
+
+24:16 And all the men of might, even seven thousand, and craftsmen and
+smiths a thousand, all that were strong and apt for war, even them the
+king of Babylon brought captive to Babylon.
+
+24:17 And the king of Babylon made Mattaniah his father's brother king
+in his stead, and changed his name to Zedekiah.
+
+24:18 Zedekiah was twenty and one years old when he began to reign,
+and he reigned eleven years in Jerusalem. And his mother's name was
+Hamutal, the daughter of Jeremiah of Libnah.
+
+24:19 And he did that which was evil in the sight of the LORD,
+according to all that Jehoiakim had done.
+
+24:20 For through the anger of the LORD it came to pass in Jerusalem
+and Judah, until he had cast them out from his presence, that Zedekiah
+rebelled against the king of Babylon.
+
+25:1 And it came to pass in the ninth year of his reign, in the tenth
+month, in the tenth day of the month, that Nebuchadnezzar king of
+Babylon came, he, and all his host, against Jerusalem, and pitched
+against it; and they built forts against it round about.
+
+25:2 And the city was besieged unto the eleventh year of king
+Zedekiah.
+
+25:3 And on the ninth day of the fourth month the famine prevailed in
+the city, and there was no bread for the people of the land.
+
+25:4 And the city was broken up, and all the men of war fled by night
+by the way of the gate between two walls, which is by the king's
+garden: (now the Chaldees were against the city round about:) and the
+king went the way toward the plain.
+
+25:5 And the army of the Chaldees pursued after the king, and overtook
+him in the plains of Jericho: and all his army were scattered from
+him.
+
+25:6 So they took the king, and brought him up to the king of Babylon
+to Riblah; and they gave judgment upon him.
+
+25:7 And they slew the sons of Zedekiah before his eyes, and put out
+the eyes of Zedekiah, and bound him with fetters of brass, and carried
+him to Babylon.
+
+25:8 And in the fifth month, on the seventh day of the month, which is
+the nineteenth year of king Nebuchadnezzar king of Babylon, came
+Nebuzaradan, captain of the guard, a servant of the king of Babylon,
+unto Jerusalem: 25:9 And he burnt the house of the LORD, and the
+king's house, and all the houses of Jerusalem, and every great man's
+house burnt he with fire.
+
+25:10 And all the army of the Chaldees, that were with the captain of
+the guard, brake down the walls of Jerusalem round about.
+
+25:11 Now the rest of the people that were left in the city, and the
+fugitives that fell away to the king of Babylon, with the remnant of
+the multitude, did Nebuzaradan the captain of the guard carry away.
+
+25:12 But the captain of the guard left of the door of the poor of the
+land to be vinedressers and husbandmen.
+
+25:13 And the pillars of brass that were in the house of the LORD, and
+the bases, and the brasen sea that was in the house of the LORD, did
+the Chaldees break in pieces, and carried the brass of them to
+Babylon.
+
+25:14 And the pots, and the shovels, and the snuffers, and the spoons,
+and all the vessels of brass wherewith they ministered, took they
+away.
+
+25:15 And the firepans, and the bowls, and such things as were of
+gold, in gold, and of silver, in silver, the captain of the guard took
+away.
+
+25:16 The two pillars, one sea, and the bases which Solomon had made
+for the house of the LORD; the brass of all these vessels was without
+weight.
+
+25:17 The height of the one pillar was eighteen cubits, and the
+chapiter upon it was brass: and the height of the chapiter three
+cubits; and the wreathen work, and pomegranates upon the chapiter
+round about, all of brass: and like unto these had the second pillar
+with wreathen work.
+
+25:18 And the captain of the guard took Seraiah the chief priest, and
+Zephaniah the second priest, and the three keepers of the door: 25:19
+And out of the city he took an officer that was set over the men of
+war, and five men of them that were in the king's presence, which were
+found in the city, and the principal scribe of the host, which
+mustered the people of the land, and threescore men of the people of
+the land that were found in the city: 25:20 And Nebuzaradan captain of
+the guard took these, and brought them to the king of Babylon to
+Riblah: 25:21 And the king of Babylon smote them, and slew them at
+Riblah in the land of Hamath. So Judah was carried away out of their
+land.
+
+25:22 And as for the people that remained in the land of Judah, whom
+Nebuchadnezzar king of Babylon had left, even over them he made
+Gedaliah the son of Ahikam, the son of Shaphan, ruler.
+
+25:23 And when all the captains of the armies, they and their men,
+heard that the king of Babylon had made Gedaliah governor, there came
+to Gedaliah to Mizpah, even Ishmael the son of Nethaniah, and Johanan
+the son of Careah, and Seraiah the son of Tanhumeth the Netophathite,
+and Jaazaniah the son of a Maachathite, they and their men.
+
+25:24 And Gedaliah sware to them, and to their men, and said unto
+them, Fear not to be the servants of the Chaldees: dwell in the land,
+and serve the king of Babylon; and it shall be well with you.
+
+25:25 But it came to pass in the seventh month, that Ishmael the son
+of Nethaniah, the son of Elishama, of the seed royal, came, and ten
+men with him, and smote Gedaliah, that he died, and the Jews and the
+Chaldees that were with him at Mizpah.
+
+25:26 And all the people, both small and great, and the captains of
+the armies, arose, and came to Egypt: for they were afraid of the
+Chaldees.
+
+25:27 And it came to pass in the seven and thirtieth year of the
+captivity of Jehoiachin king of Judah, in the twelfth month, on the
+seven and twentieth day of the month, that Evilmerodach king of
+Babylon in the year that he began to reign did lift up the head of
+Jehoiachin king of Judah out of prison; 25:28 And he spake kindly to
+him, and set his throne above the throne of the kings that were with
+him in Babylon; 25:29 And changed his prison garments: and he did eat
+bread continually before him all the days of his life.
+
+25:30 And his allowance was a continual allowance given him of the
+king, a daily rate for every day, all the days of his life.
+
+
+
+
+The First Book of the Chronicles
+
+
+1:1 Adam, Sheth, Enosh, 1:2 Kenan, Mahalaleel, Jered, 1:3 Henoch,
+Methuselah, Lamech, 1:4 Noah, Shem, Ham, and Japheth.
+
+1:5 The sons of Japheth; Gomer, and Magog, and Madai, and Javan, and
+Tubal, and Meshech, and Tiras.
+
+1:6 And the sons of Gomer; Ashchenaz, and Riphath, and Togarmah.
+
+1:7 And the sons of Javan; Elishah, and Tarshish, Kittim, and Dodanim.
+
+1:8 The sons of Ham; Cush, and Mizraim, Put, and Canaan.
+
+1:9 And the sons of Cush; Seba, and Havilah, and Sabta, and Raamah,
+and Sabtecha. And the sons of Raamah; Sheba, and Dedan.
+
+1:10 And Cush begat Nimrod: he began to be mighty upon the earth.
+
+1:11 And Mizraim begat Ludim, and Anamim, and Lehabim, and Naphtuhim,
+1:12 And Pathrusim, and Casluhim, (of whom came the Philistines,) and
+Caphthorim.
+
+1:13 And Canaan begat Zidon his firstborn, and Heth, 1:14 The Jebusite
+also, and the Amorite, and the Girgashite, 1:15 And the Hivite, and
+the Arkite, and the Sinite, 1:16 And the Arvadite, and the Zemarite,
+and the Hamathite.
+
+1:17 The sons of Shem; Elam, and Asshur, and Arphaxad, and Lud, and
+Aram, and Uz, and Hul, and Gether, and Meshech.
+
+1:18 And Arphaxad begat Shelah, and Shelah begat Eber.
+
+1:19 And unto Eber were born two sons: the name of the one was Peleg;
+because in his days the earth was divided: and his brother's name was
+Joktan.
+
+1:20 And Joktan begat Almodad, and Sheleph, and Hazarmaveth, and
+Jerah, 1:21 Hadoram also, and Uzal, and Diklah, 1:22 And Ebal, and
+Abimael, and Sheba, 1:23 And Ophir, and Havilah, and Jobab. All these
+were the sons of Joktan.
+
+1:24 Shem, Arphaxad, Shelah, 1:25 Eber, Peleg, Reu, 1:26 Serug, Nahor,
+Terah, 1:27 Abram; the same is Abraham.
+
+1:28 The sons of Abraham; Isaac, and Ishmael.
+
+1:29 These are their generations: The firstborn of Ishmael, Nebaioth;
+then Kedar, and Adbeel, and Mibsam, 1:30 Mishma, and Dumah, Massa,
+Hadad, and Tema, 1:31 Jetur, Naphish, and Kedemah. These are the sons
+of Ishmael.
+
+1:32 Now the sons of Keturah, Abraham's concubine: she bare Zimran,
+and Jokshan, and Medan, and Midian, and Ishbak, and Shuah. And the
+sons of Jokshan; Sheba, and Dedan.
+
+1:33 And the sons of Midian; Ephah, and Epher, and Henoch, and Abida,
+and Eldaah. All these are the sons of Keturah.
+
+1:34 And Abraham begat Isaac. The sons of Isaac; Esau and Israel.
+
+1:35 The sons of Esau; Eliphaz, Reuel, and Jeush, and Jaalam, and
+Korah.
+
+1:36 The sons of Eliphaz; Teman, and Omar, Zephi, and Gatam, Kenaz,
+and Timna, and Amalek.
+
+1:37 The sons of Reuel; Nahath, Zerah, Shammah, and Mizzah.
+
+1:38 And the sons of Seir; Lotan, and Shobal, and Zibeon, and Anah,
+and Dishon, and Ezar, and Dishan.
+
+1:39 And the sons of Lotan; Hori, and Homam: and Timna was Lotan's
+sister.
+
+1:40 The sons of Shobal; Alian, and Manahath, and Ebal, Shephi, and
+Onam.
+
+and the sons of Zibeon; Aiah, and Anah.
+
+1:41 The sons of Anah; Dishon. And the sons of Dishon; Amram, and
+Eshban, and Ithran, and Cheran.
+
+1:42 The sons of Ezer; Bilhan, and Zavan, and Jakan. The sons of
+Dishan; Uz, and Aran.
+
+1:43 Now these are the kings that reigned in the land of Edom before
+any king reigned over the children of Israel; Bela the son of Beor:
+and the name of his city was Dinhabah.
+
+1:44 And when Bela was dead, Jobab the son of Zerah of Bozrah reigned
+in his stead.
+
+1:45 And when Jobab was dead, Husham of the land of the Temanites
+reigned in his stead.
+
+1:46 And when Husham was dead, Hadad the son of Bedad, which smote
+Midian in the field of Moab, reigned in his stead: and the name of his
+city was Avith.
+
+1:47 And when Hadad was dead, Samlah of Masrekah reigned in his stead.
+
+1:48 And when Samlah was dead, Shaul of Rehoboth by the river reigned
+in his stead.
+
+1:49 And when Shaul was dead, Baalhanan the son of Achbor reigned in
+his stead.
+
+1:50 And when Baalhanan was dead, Hadad reigned in his stead: and the
+name of his city was Pai; and his wife's name was Mehetabel, the
+daughter of Matred, the daughter of Mezahab.
+
+1:51 Hadad died also. And the dukes of Edom were; duke Timnah, duke
+Aliah, duke Jetheth, 1:52 Duke Aholibamah, duke Elah, duke Pinon, 1:53
+Duke Kenaz, duke Teman, duke Mibzar, 1:54 Duke Magdiel, duke Iram.
+These are the dukes of Edom.
+
+2:1 These are the sons of Israel; Reuben, Simeon, Levi, and Judah,
+Issachar, and Zebulun, 2:2 Dan, Joseph, and Benjamin, Naphtali, Gad,
+and Asher.
+
+2:3 The sons of Judah; Er, and Onan, and Shelah: which three were born
+unto him of the daughter of Shua the Canaanitess. And Er, the
+firstborn of Judah, was evil in the sight of the LORD; and he slew
+him.
+
+2:4 And Tamar his daughter in law bore him Pharez and Zerah. All the
+sons of Judah were five.
+
+2:5 The sons of Pharez; Hezron, and Hamul.
+
+2:6 And the sons of Zerah; Zimri, and Ethan, and Heman, and Calcol,
+and Dara: five of them in all.
+
+2:7 And the sons of Carmi; Achar, the troubler of Israel, who
+transgressed in the thing accursed.
+
+2:8 And the sons of Ethan; Azariah.
+
+2:9 The sons also of Hezron, that were born unto him; Jerahmeel, and
+Ram, and Chelubai.
+
+2:10 And Ram begat Amminadab; and Amminadab begat Nahshon, prince of
+the children of Judah; 2:11 And Nahshon begat Salma, and Salma begat
+Boaz, 2:12 And Boaz begat Obed, and Obed begat Jesse, 2:13 And Jesse
+begat his firstborn Eliab, and Abinadab the second, and Shimma the
+third, 2:14 Nethaneel the fourth, Raddai the fifth, 2:15 Ozem the
+sixth, David the seventh: 2:16 Whose sisters were Zeruiah, and
+Abigail. And the sons of Zeruiah; Abishai, and Joab, and Asahel,
+three.
+
+2:17 And Abigail bare Amasa: and the father of Amasa was Jether the
+Ishmeelite.
+
+2:18 And Caleb the son of Hezron begat children of Azubah his wife,
+and of Jerioth: her sons are these; Jesher, and Shobab, and Ardon.
+
+2:19 And when Azubah was dead, Caleb took unto him Ephrath, which bare
+him Hur.
+
+2:20 And Hur begat Uri, and Uri begat Bezaleel.
+
+2:21 And afterward Hezron went in to the daughter of Machir the father
+of Gilead, whom he married when he was threescore years old; and she
+bare him Segub.
+
+2:22 And Segub begat Jair, who had three and twenty cities in the land
+of Gilead.
+
+2:23 And he took Geshur, and Aram, with the towns of Jair, from them,
+with Kenath, and the towns thereof, even threescore cities. All these
+belonged to the sons of Machir the father of Gilead.
+
+2:24 And after that Hezron was dead in Calebephratah, then Abiah
+Hezron's wife bare him Ashur the father of Tekoa.
+
+2:25 And the sons of Jerahmeel the firstborn of Hezron were, Ram the
+firstborn, and Bunah, and Oren, and Ozem, and Ahijah.
+
+2:26 Jerahmeel had also another wife, whose name was Atarah; she was
+the mother of Onam.
+
+2:27 And the sons of Ram the firstborn of Jerahmeel were, Maaz, and
+Jamin, and Eker.
+
+2:28 And the sons of Onam were, Shammai, and Jada. And the sons of
+Shammai; Nadab and Abishur.
+
+2:29 And the name of the wife of Abishur was Abihail, and she bare him
+Ahban, and Molid.
+
+2:30 And the sons of Nadab; Seled, and Appaim: but Seled died without
+children.
+
+2:31 And the sons of Appaim; Ishi. And the sons of Ishi; Sheshan. And
+the children of Sheshan; Ahlai.
+
+2:32 And the sons of Jada the brother of Shammai; Jether, and
+Jonathan: and Jether died without children.
+
+2:33 And the sons of Jonathan; Peleth, and Zaza. These were the sons
+of Jerahmeel.
+
+2:34 Now Sheshan had no sons, but daughters. And Sheshan had a
+servant, an Egyptian, whose name was Jarha.
+
+2:35 And Sheshan gave his daughter to Jarha his servant to wife; and
+she bare him Attai.
+
+2:36 And Attai begat Nathan, and Nathan begat Zabad, 2:37 And Zabad
+begat Ephlal, and Ephlal begat Obed, 2:38 And Obed begat Jehu, and
+Jehu begat Azariah, 2:39 And Azariah begat Helez, and Helez begat
+Eleasah, 2:40 And Eleasah begat Sisamai, and Sisamai begat Shallum,
+2:41 And Shallum begat Jekamiah, and Jekamiah begat Elishama.
+
+2:42 Now the sons of Caleb the brother of Jerahmeel were, Mesha his
+firstborn, which was the father of Ziph; and the sons of Mareshah the
+father of Hebron.
+
+2:43 And the sons of Hebron; Korah, and Tappuah, and Rekem, and Shema.
+
+2:44 And Shema begat Raham, the father of Jorkoam: and Rekem begat
+Shammai.
+
+2:45 And the son of Shammai was Maon: and Maon was the father of
+Bethzur.
+
+2:46 And Ephah, Caleb's concubine, bare Haran, and Moza, and Gazez:
+and Haran begat Gazez.
+
+2:47 And the sons of Jahdai; Regem, and Jotham, and Gesham, and Pelet,
+and Ephah, and Shaaph.
+
+2:48 Maachah, Caleb's concubine, bare Sheber, and Tirhanah.
+
+2:49 She bare also Shaaph the father of Madmannah, Sheva the father of
+Machbenah, and the father of Gibea: and the daughter of Caleb was
+Achsa.
+
+2:50 These were the sons of Caleb the son of Hur, the firstborn of
+Ephratah; Shobal the father of Kirjathjearim.
+
+2:51 Salma the father of Bethlehem, Hareph the father of Bethgader.
+
+2:52 And Shobal the father of Kirjathjearim had sons; Haroeh, and half
+of the Manahethites.
+
+2:53 And the families of Kirjathjearim; the Ithrites, and the Puhites,
+and the Shumathites, and the Mishraites; of them came the Zareathites,
+and the Eshtaulites, 2:54 The sons of Salma; Bethlehem, and the
+Netophathites, Ataroth, the house of Joab, and half of the
+Manahethites, the Zorites.
+
+2:55 And the families of the scribes which dwelt at Jabez; the
+Tirathites, the Shimeathites, and Suchathites. These are the Kenites
+that came of Hemath, the father of the house of Rechab.
+
+3:1 Now these were the sons of David, which were born unto him in
+Hebron; the firstborn Amnon, of Ahinoam the Jezreelitess; the second
+Daniel, of Abigail the Carmelitess: 3:2 The third, Absalom the son of
+Maachah the daughter of Talmai king of Geshur: the fourth, Adonijah
+the son of Haggith: 3:3 The fifth, Shephatiah of Abital: the sixth,
+Ithream by Eglah his wife.
+
+3:4 These six were born unto him in Hebron; and there he reigned seven
+years and six months: and in Jerusalem he reigned thirty and three
+years.
+
+3:5 And these were born unto him in Jerusalem; Shimea, and Shobab, and
+Nathan, and Solomon, four, of Bathshua the daughter of Ammiel: 3:6
+Ibhar also, and Elishama, and Eliphelet, 3:7 And Nogah, and Nepheg,
+and Japhia, 3:8 And Elishama, and Eliada, and Eliphelet, nine.
+
+3:9 These were all the sons of David, beside the sons of the
+concubines, and Tamar their sister.
+
+3:10 And Solomon's son was Rehoboam, Abia his son, Asa his son,
+Jehoshaphat his son, 3:11 Joram his son, Ahaziah his son, Joash his
+son, 3:12 Amaziah his son, Azariah his son, Jotham his son, 3:13 Ahaz
+his son, Hezekiah his son, Manasseh his son, 3:14 Amon his son, Josiah
+his son.
+
+3:15 And the sons of Josiah were, the firstborn Johanan, the second
+Jehoiakim, the third Zedekiah, the fourth Shallum.
+
+3:16 And the sons of Jehoiakim: Jeconiah his son, Zedekiah his son.
+
+3:17 And the sons of Jeconiah; Assir, Salathiel his son, 3:18
+Malchiram also, and Pedaiah, and Shenazar, Jecamiah, Hoshama, and
+Nedabiah.
+
+3:19 And the sons of Pedaiah were, Zerubbabel, and Shimei: and the
+sons of Zerubbabel; Meshullam, and Hananiah, and Shelomith their
+sister: 3:20 And Hashubah, and Ohel, and Berechiah, and Hasadiah,
+Jushabhesed, five.
+
+3:21 And the sons of Hananiah; Pelatiah, and Jesaiah: the sons of
+Rephaiah, the sons of Arnan, the sons of Obadiah, the sons of
+Shechaniah.
+
+3:22 And the sons of Shechaniah; Shemaiah: and the sons of Shemaiah;
+Hattush, and Igeal, and Bariah, and Neariah, and Shaphat, six.
+
+3:23 And the sons of Neariah; Elioenai, and Hezekiah, and Azrikam,
+three.
+
+3:24 And the sons of Elioenai were, Hodaiah, and Eliashib, and
+Pelaiah, and Akkub, and Johanan, and Dalaiah, and Anani, seven.
+
+4:1 The sons of Judah; Pharez, Hezron, and Carmi, and Hur, and Shobal.
+
+4:2 And Reaiah the son of Shobal begat Jahath; and Jahath begat
+Ahumai, and Lahad. These are the families of the Zorathites.
+
+4:3 And these were of the father of Etam; Jezreel, and Ishma, and
+Idbash: and the name of their sister was Hazelelponi: 4:4 And Penuel
+the father of Gedor, and Ezer the father of Hushah. These are the sons
+of Hur, the firstborn of Ephratah, the father of Bethlehem.
+
+4:5 And Ashur the father of Tekoa had two wives, Helah and Naarah.
+
+4:6 And Naarah bare him Ahuzam, and Hepher, and Temeni, and
+Haahashtari.
+
+These were the sons of Naarah.
+
+4:7 And the sons of Helah were, Zereth, and Jezoar, and Ethnan.
+
+4:8 And Coz begat Anub, and Zobebah, and the families of Aharhel the
+son of Harum.
+
+4:9 And Jabez was more honourable than his brethren: and his mother
+called his name Jabez, saying, Because I bare him with sorrow.
+
+4:10 And Jabez called on the God of Israel, saying, Oh that thou
+wouldest bless me indeed, and enlarge my coast, and that thine hand
+might be with me, and that thou wouldest keep me from evil, that it
+may not grieve me! And God granted him that which he requested.
+
+4:11 And Chelub the brother of Shuah begat Mehir, which was the father
+of Eshton.
+
+4:12 And Eshton begat Bethrapha, and Paseah, and Tehinnah the father
+of Irnahash. These are the men of Rechah.
+
+4:13 And the sons of Kenaz; Othniel, and Seraiah: and the sons of
+Othniel; Hathath.
+
+4:14 And Meonothai begat Ophrah: and Seraiah begat Joab, the father of
+the valley of Charashim; for they were craftsmen.
+
+4:15 And the sons of Caleb the son of Jephunneh; Iru, Elah, and Naam:
+and the sons of Elah, even Kenaz.
+
+4:16 And the sons of Jehaleleel; Ziph, and Ziphah, Tiria, and Asareel.
+
+4:17 And the sons of Ezra were, Jether, and Mered, and Epher, and
+Jalon: and she bare Miriam, and Shammai, and Ishbah the father of
+Eshtemoa.
+
+4:18 And his wife Jehudijah bare Jered the father of Gedor, and Heber
+the father of Socho, and Jekuthiel the father of Zanoah. And these are
+the sons of Bithiah the daughter of Pharaoh, which Mered took.
+
+4:19 And the sons of his wife Hodiah the sister of Naham, the father
+of Keilah the Garmite, and Eshtemoa the Maachathite.
+
+4:20 And the sons of Shimon were, Amnon, and Rinnah, Benhanan, and
+Tilon.
+
+And the sons of Ishi were, Zoheth, and Benzoheth.
+
+4:21 The sons of Shelah the son of Judah were, Er the father of Lecah,
+and Laadah the father of Mareshah, and the families of the house of
+them that wrought fine linen, of the house of Ashbea, 4:22 And Jokim,
+and the men of Chozeba, and Joash, and Saraph, who had the dominion in
+Moab, and Jashubilehem. And these are ancient things.
+
+4:23 These were the potters, and those that dwelt among plants and
+hedges: there they dwelt with the king for his work.
+
+4:24 The sons of Simeon were, Nemuel, and Jamin, Jarib, Zerah, and
+Shaul: 4:25 Shallum his son, Mibsam his son, Mishma his son.
+
+4:26 And the sons of Mishma; Hamuel his son, Zacchur his son, Shimei
+his son.
+
+4:27 And Shimei had sixteen sons and six daughters: but his brethren
+had not many children, neither did all their family multiply, like to
+the children of Judah.
+
+4:28 And they dwelt at Beersheba, and Moladah, and Hazarshual, 4:29
+And at Bilhah, and at Ezem, and at Tolad, 4:30 And at Bethuel, and at
+Hormah, and at Ziklag, 4:31 And at Bethmarcaboth, and Hazarsusim, and
+at Bethbirei, and at Shaaraim. These were their cities unto the reign
+of David.
+
+4:32 And their villages were, Etam, and Ain, Rimmon, and Tochen, and
+Ashan, five cities: 4:33 And all their villages that were round about
+the same cities, unto Baal. These were their habitations, and their
+genealogy.
+
+4:34 And Meshobab, and Jamlech, and Joshah, the son of Amaziah, 4:35
+And Joel, and Jehu the son of Josibiah, the son of Seraiah, the son of
+Asiel, 4:36 And Elioenai, and Jaakobah, and Jeshohaiah, and Asaiah,
+and Adiel, and Jesimiel, and Benaiah, 4:37 And Ziza the son of Shiphi,
+the son of Allon, the son of Jedaiah, the son of Shimri, the son of
+Shemaiah; 4:38 These mentioned by their names were princes in their
+families: and the house of their fathers increased greatly.
+
+4:39 And they went to the entrance of Gedor, even unto the east side
+of the valley, to seek pasture for their flocks.
+
+4:40 And they found fat pasture and good, and the land was wide, and
+quiet, and peaceable; for they of Ham had dwelt there of old.
+
+4:41 And these written by name came in the days of Hezekiah king of
+Judah, and smote their tents, and the habitations that were found
+there, and destroyed them utterly unto this day, and dwelt in their
+rooms: because there was pasture there for their flocks.
+
+4:42 And some of them, even of the sons of Simeon, five hundred men,
+went to mount Seir, having for their captains Pelatiah, and Neariah,
+and Rephaiah, and Uzziel, the sons of Ishi.
+
+4:43 And they smote the rest of the Amalekites that were escaped, and
+dwelt there unto this day.
+
+5:1 Now the sons of Reuben the firstborn of Israel, (for he was the
+firstborn; but forasmuch as he defiled his father's bed, his
+birthright was given unto the sons of Joseph the son of Israel: and
+the genealogy is not to be reckoned after the birthright.
+
+5:2 For Judah prevailed above his brethren, and of him came the chief
+ruler; but the birthright was Joseph's:) 5:3 The sons, I say, of
+Reuben the firstborn of Israel were, Hanoch, and Pallu, Hezron, and
+Carmi.
+
+5:4 The sons of Joel; Shemaiah his son, Gog his son, Shimei his son,
+5:5 Micah his son, Reaia his son, Baal his son, 5:6 Beerah his son,
+whom Tilgathpilneser king of Assyria carried away captive: he was
+prince of the Reubenites.
+
+5:7 And his brethren by their families, when the genealogy of their
+generations was reckoned, were the chief, Jeiel, and Zechariah, 5:8
+And Bela the son of Azaz, the son of Shema, the son of Joel, who dwelt
+in Aroer, even unto Nebo and Baalmeon: 5:9 And eastward he inhabited
+unto the entering in of the wilderness from the river Euphrates:
+because their cattle were multiplied in the land of Gilead.
+
+5:10 And in the days of Saul they made war with the Hagarites, who
+fell by their hand: and they dwelt in their tents throughout all the
+east land of Gilead.
+
+5:11 And the children of Gad dwelt over against them, in the land of
+Bashan unto Salcah: 5:12 Joel the chief, and Shapham the next, and
+Jaanai, and Shaphat in Bashan.
+
+5:13 And their brethren of the house of their fathers were, Michael,
+and Meshullam, and Sheba, and Jorai, and Jachan, and Zia, and Heber,
+seven.
+
+5:14 These are the children of Abihail the son of Huri, the son of
+Jaroah, the son of Gilead, the son of Michael, the son of Jeshishai,
+the son of Jahdo, the son of Buz; 5:15 Ahi the son of Abdiel, the son
+of Guni, chief of the house of their fathers.
+
+5:16 And they dwelt in Gilead in Bashan, and in her towns, and in all
+the suburbs of Sharon, upon their borders.
+
+5:17 All these were reckoned by genealogies in the days of Jotham king
+of Judah, and in the days of Jeroboam king of Israel.
+
+5:18 The sons of Reuben, and the Gadites, and half the tribe of
+Manasseh, of valiant men, men able to bear buckler and sword, and to
+shoot with bow, and skilful in war, were four and forty thousand seven
+hundred and threescore, that went out to the war.
+
+5:19 And they made war with the Hagarites, with Jetur, and Nephish,
+and Nodab.
+
+5:20 And they were helped against them, and the Hagarites were
+delivered into their hand, and all that were with them: for they cried
+to God in the battle, and he was intreated of them; because they put
+their trust in him.
+
+5:21 And they took away their cattle; of their camels fifty thousand,
+and of sheep two hundred and fifty thousand, and of asses two
+thousand, and of men an hundred thousand.
+
+5:22 For there fell down many slain, because the war was of God. And
+they dwelt in their steads until the captivity.
+
+5:23 And the children of the half tribe of Manasseh dwelt in the land:
+they increased from Bashan unto Baalhermon and Senir, and unto mount
+Hermon.
+
+5:24 And these were the heads of the house of their fathers, even
+Epher, and Ishi, and Eliel, and Azriel, and Jeremiah, and Hodaviah,
+and Jahdiel, mighty men of valour, famous men, and heads of the house
+of their fathers.
+
+5:25 And they transgressed against the God of their fathers, and went
+a whoring after the gods of the people of the land, whom God destroyed
+before them.
+
+5:26 And the God of Israel stirred up the spirit of Pul king of
+Assyria, and the spirit of Tilgathpilneser king of Assyria, and he
+carried them away, even the Reubenites, and the Gadites, and the half
+tribe of Manasseh, and brought them unto Halah, and Habor, and Hara,
+and to the river Gozan, unto this day.
+
+6:1 The sons of Levi; Gershon, Kohath, and Merari.
+
+6:2 And the sons of Kohath; Amram, Izhar, and Hebron, and Uzziel.
+
+6:3 And the children of Amram; Aaron, and Moses, and Miriam. The sons
+also of Aaron; Nadab, and Abihu, Eleazar, and Ithamar.
+
+6:4 Eleazar begat Phinehas, Phinehas begat Abishua, 6:5 And Abishua
+begat Bukki, and Bukki begat Uzzi, 6:6 And Uzzi begat Zerahiah, and
+Zerahiah begat Meraioth, 6:7 Meraioth begat Amariah, and Amariah begat
+Ahitub, 6:8 And Ahitub begat Zadok, and Zadok begat Ahimaaz, 6:9 And
+Ahimaaz begat Azariah, and Azariah begat Johanan, 6:10 And Johanan
+begat Azariah, (he it is that executed the priest's office in the
+temple that Solomon built in Jerusalem:) 6:11 And Azariah begat
+Amariah, and Amariah begat Ahitub, 6:12 And Ahitub begat Zadok, and
+Zadok begat Shallum, 6:13 And Shallum begat Hilkiah, and Hilkiah begat
+Azariah, 6:14 And Azariah begat Seraiah, and Seraiah begat Jehozadak,
+6:15 And Jehozadak went into captivity, when the LORD carried away
+Judah and Jerusalem by the hand of Nebuchadnezzar.
+
+6:16 The sons of Levi; Gershom, Kohath, and Merari.
+
+6:17 And these be the names of the sons of Gershom; Libni, and Shimei.
+
+6:18 And the sons of Kohath were, Amram, and Izhar, and Hebron, and
+Uzziel.
+
+6:19 The sons of Merari; Mahli, and Mushi. And these are the families
+of the Levites according to their fathers.
+
+6:20 Of Gershom; Libni his son, Jahath his son, Zimmah his son, 6:21
+Joah his son, Iddo his son, Zerah his son, Jeaterai his son.
+
+6:22 The sons of Kohath; Amminadab his son, Korah his son, Assir his
+son, 6:23 Elkanah his son, and Ebiasaph his son, and Assir his son,
+6:24 Tahath his son, Uriel his son, Uzziah his son, and Shaul his son.
+
+6:25 And the sons of Elkanah; Amasai, and Ahimoth.
+
+6:26 As for Elkanah: the sons of Elkanah; Zophai his son, and Nahath
+his son, 6:27 Eliab his son, Jeroham his son, Elkanah his son.
+
+6:28 And the sons of Samuel; the firstborn Vashni, and Abiah.
+
+6:29 The sons of Merari; Mahli, Libni his son, Shimei his son, Uzza
+his son, 6:30 Shimea his son, Haggiah his son, Asaiah his son.
+
+6:31 And these are they whom David set over the service of song in the
+house of the LORD, after that the ark had rest.
+
+6:32 And they ministered before the dwelling place of the tabernacle
+of the congregation with singing, until Solomon had built the house of
+the LORD in Jerusalem: and then they waited on their office according
+to their order.
+
+6:33 And these are they that waited with their children. Of the sons
+of the Kohathites: Heman a singer, the son of Joel, the son of
+Shemuel, 6:34 The son of Elkanah, the son of Jeroham, the son of
+Eliel, the son of Toah, 6:35 The son of Zuph, the son of Elkanah, the
+son of Mahath, the son of Amasai, 6:36 The son of Elkanah, the son of
+Joel, the son of Azariah, the son of Zephaniah, 6:37 The son of
+Tahath, the son of Assir, the son of Ebiasaph, the son of Korah, 6:38
+The son of Izhar, the son of Kohath, the son of Levi, the son of
+Israel.
+
+6:39 And his brother Asaph, who stood on his right hand, even Asaph
+the son of Berachiah, the son of Shimea, 6:40 The son of Michael, the
+son of Baaseiah, the son of Malchiah, 6:41 The son of Ethni, the son
+of Zerah, the son of Adaiah, 6:42 The son of Ethan, the son of Zimmah,
+the son of Shimei, 6:43 The son of Jahath, the son of Gershom, the son
+of Levi.
+
+6:44 And their brethren the sons of Merari stood on the left hand:
+Ethan the son of Kishi, the son of Abdi, the son of Malluch, 6:45 The
+son of Hashabiah, the son of Amaziah, the son of Hilkiah, 6:46 The son
+of Amzi, the son of Bani, the son of Shamer, 6:47 The son of Mahli,
+the son of Mushi, the son of Merari, the son of Levi.
+
+6:48 Their brethren also the Levites were appointed unto all manner of
+service of the tabernacle of the house of God.
+
+6:49 But Aaron and his sons offered upon the altar of the burnt
+offering, and on the altar of incense, and were appointed for all the
+work of the place most holy, and to make an atonement for Israel,
+according to all that Moses the servant of God had commanded.
+
+6:50 And these are the sons of Aaron; Eleazar his son, Phinehas his
+son, Abishua his son, 6:51 Bukki his son, Uzzi his son, Zerahiah his
+son, 6:52 Meraioth his son, Amariah his son, Ahitub his son, 6:53
+Zadok his son, Ahimaaz his son.
+
+6:54 Now these are their dwelling places throughout their castles in
+their coasts, of the sons of Aaron, of the families of the Kohathites:
+for theirs was the lot.
+
+6:55 And they gave them Hebron in the land of Judah, and the suburbs
+thereof round about it.
+
+6:56 But the fields of the city, and the villages thereof, they gave
+to Caleb the son of Jephunneh.
+
+6:57 And to the sons of Aaron they gave the cities of Judah, namely,
+Hebron, the city of refuge, and Libnah with her suburbs, and Jattir,
+and Eshtemoa, with their suburbs, 6:58 And Hilen with her suburbs,
+Debir with her suburbs, 6:59 And Ashan with her suburbs, and
+Bethshemesh with her suburbs: 6:60 And out of the tribe of Benjamin;
+Geba with her suburbs, and Alemeth with her suburbs, and Anathoth with
+her suburbs. All their cities throughout their families were thirteen
+cities.
+
+6:61 And unto the sons of Kohath, which were left of the family of
+that tribe, were cities given out of the half tribe, namely, out of
+the half tribe of Manasseh, by lot, ten cities.
+
+6:62 And to the sons of Gershom throughout their families out of the
+tribe of Issachar, and out of the tribe of Asher, and out of the tribe
+of Naphtali, and out of the tribe of Manasseh in Bashan, thirteen
+cities.
+
+6:63 Unto the sons of Merari were given by lot, throughout their
+families, out of the tribe of Reuben, and out of the tribe of Gad, and
+out of the tribe of Zebulun, twelve cities.
+
+6:64 And the children of Israel gave to the Levites these cities with
+their suburbs.
+
+6:65 And they gave by lot out of the tribe of the children of Judah,
+and out of the tribe of the children of Simeon, and out of the tribe
+of the children of Benjamin, these cities, which are called by their
+names.
+
+6:66 And the residue of the families of the sons of Kohath had cities
+of their coasts out of the tribe of Ephraim.
+
+6:67 And they gave unto them, of the cities of refuge, Shechem in
+mount Ephraim with her suburbs; they gave also Gezer with her suburbs,
+6:68 And Jokmeam with her suburbs, and Bethhoron with her suburbs,
+6:69 And Aijalon with her suburbs, and Gathrimmon with her suburbs:
+6:70 And out of the half tribe of Manasseh; Aner with her suburbs, and
+Bileam with her suburbs, for the family of the remnant of the sons of
+Kohath.
+
+6:71 Unto the sons of Gershom were given out of the family of the half
+tribe of Manasseh, Golan in Bashan with her suburbs, and Ashtaroth
+with her suburbs: 6:72 And out of the tribe of Issachar; Kedesh with
+her suburbs, Daberath with her suburbs, 6:73 And Ramoth with her
+suburbs, and Anem with her suburbs: 6:74 And out of the tribe of
+Asher; Mashal with her suburbs, and Abdon with her suburbs, 6:75 And
+Hukok with her suburbs, and Rehob with her suburbs: 6:76 And out of
+the tribe of Naphtali; Kedesh in Galilee with her suburbs, and Hammon
+with her suburbs, and Kirjathaim with her suburbs.
+
+6:77 Unto the rest of the children of Merari were given out of the
+tribe of Zebulun, Rimmon with her suburbs, Tabor with her suburbs:
+6:78 And on the other side Jordan by Jericho, on the east side of
+Jordan, were given them out of the tribe of Reuben, Bezer in the
+wilderness with her suburbs, and Jahzah with her suburbs, 6:79
+Kedemoth also with her suburbs, and Mephaath with her suburbs: 6:80
+And out of the tribe of Gad; Ramoth in Gilead with her suburbs, and
+Mahanaim with her suburbs, 6:81 And Heshbon with her suburbs, and
+Jazer with her suburbs.
+
+7:1 Now the sons of Issachar were, Tola, and Puah, Jashub, and
+Shimrom, four.
+
+7:2 And the sons of Tola; Uzzi, and Rephaiah, and Jeriel, and Jahmai,
+and Jibsam, and Shemuel, heads of their father's house, to wit, of
+Tola: they were valiant men of might in their generations; whose
+number was in the days of David two and twenty thousand and six
+hundred.
+
+7:3 And the sons of Uzzi; Izrahiah: and the sons of Izrahiah; Michael,
+and Obadiah, and Joel, Ishiah, five: all of them chief men.
+
+7:4 And with them, by their generations, after the house of their
+fathers, were bands of soldiers for war, six and thirty thousand men:
+for they had many wives and sons.
+
+7:5 And their brethren among all the families of Issachar were valiant
+men of might, reckoned in all by their genealogies fourscore and seven
+thousand.
+
+7:6 The sons of Benjamin; Bela, and Becher, and Jediael, three.
+
+7:7 And the sons of Bela; Ezbon, and Uzzi, and Uzziel, and Jerimoth,
+and Iri, five; heads of the house of their fathers, mighty men of
+valour; and were reckoned by their genealogies twenty and two thousand
+and thirty and four.
+
+7:8 And the sons of Becher; Zemira, and Joash, and Eliezer, and
+Elioenai, and Omri, and Jerimoth, and Abiah, and Anathoth, and
+Alameth. All these are the sons of Becher.
+
+7:9 And the number of them, after their genealogy by their
+generations, heads of the house of their fathers, mighty men of
+valour, was twenty thousand and two hundred.
+
+7:10 The sons also of Jediael; Bilhan: and the sons of Bilhan; Jeush,
+and Benjamin, and Ehud, and Chenaanah, and Zethan, and Tharshish, and
+Ahishahar.
+
+7:11 All these the sons of Jediael, by the heads of their fathers,
+mighty men of valour, were seventeen thousand and two hundred
+soldiers, fit to go out for war and battle.
+
+7:12 Shuppim also, and Huppim, the children of Ir, and Hushim, the
+sons of Aher.
+
+7:13 The sons of Naphtali; Jahziel, and Guni, and Jezer, and Shallum,
+the sons of Bilhah.
+
+7:14 The sons of Manasseh; Ashriel, whom she bare: (but his concubine
+the Aramitess bare Machir the father of Gilead: 7:15 And Machir took
+to wife the sister of Huppim and Shuppim, whose sister's name was
+Maachah;) and the name of the second was Zelophehad: and Zelophehad
+had daughters.
+
+7:16 And Maachah the wife of Machir bare a son, and she called his
+name Peresh; and the name of his brother was Sheresh; and his sons
+were Ulam and Rakem.
+
+7:17 And the sons of Ulam; Bedan. These were the sons of Gilead, the
+son of Machir, the son of Manasseh.
+
+7:18 And his sister Hammoleketh bare Ishod, and Abiezer, and Mahalah.
+
+7:19 And the sons of Shemidah were, Ahian, and Shechem, and Likhi, and
+Aniam.
+
+7:20 And the sons of Ephraim; Shuthelah, and Bered his son, and Tahath
+his son, and Eladah his son, and Tahath his son, 7:21 And Zabad his
+son, and Shuthelah his son, and Ezer, and Elead, whom the men of Gath
+that were born in that land slew, because they came down to take away
+their cattle.
+
+7:22 And Ephraim their father mourned many days, and his brethren came
+to comfort him.
+
+7:23 And when he went in to his wife, she conceived, and bare a son,
+and he called his name Beriah, because it went evil with his house.
+
+7:24 (And his daughter was Sherah, who built Bethhoron the nether, and
+the upper, and Uzzensherah.) 7:25 And Rephah was his son, also
+Resheph, and Telah his son, and Tahan his son.
+
+7:26 Laadan his son, Ammihud his son, Elishama his son.
+
+7:27 Non his son, Jehoshuah his son.
+
+7:28 And their possessions and habitations were, Bethel and the towns
+thereof, and eastward Naaran, and westward Gezer, with the towns
+thereof; Shechem also and the towns thereof, unto Gaza and the towns
+thereof: 7:29 And by the borders of the children of Manasseh,
+Bethshean and her towns, Taanach and her towns, Megiddo and her towns,
+Dor and her towns. In these dwelt the children of Joseph the son of
+Israel.
+
+7:30 The sons of Asher; Imnah, and Isuah, and Ishuai, and Beriah, and
+Serah their sister.
+
+7:31 And the sons of Beriah; Heber, and Malchiel, who is the father of
+Birzavith.
+
+7:32 And Heber begat Japhlet, and Shomer, and Hotham, and Shua their
+sister.
+
+7:33 And the sons of Japhlet; Pasach, and Bimhal, and Ashvath. These
+are the children of Japhlet.
+
+7:34 And the sons of Shamer; Ahi, and Rohgah, Jehubbah, and Aram.
+
+7:35 And the sons of his brother Helem; Zophah, and Imna, and Shelesh,
+and Amal.
+
+7:36 The sons of Zophah; Suah, and Harnepher, and Shual, and Beri, and
+Imrah, 7:37 Bezer, and Hod, and Shamma, and Shilshah, and Ithran, and
+Beera.
+
+7:38 And the sons of Jether; Jephunneh, and Pispah, and Ara.
+
+7:39 And the sons of Ulla; Arah, and Haniel, and Rezia.
+
+7:40 All these were the children of Asher, heads of their father's
+house, choice and mighty men of valour, chief of the princes. And the
+number throughout the genealogy of them that were apt to the war and
+to battle was twenty and six thousand men.
+
+8:1 Now Benjamin begat Bela his firstborn, Ashbel the second, and
+Aharah the third, 8:2 Nohah the fourth, and Rapha the fifth.
+
+8:3 And the sons of Bela were, Addar, and Gera, and Abihud, 8:4 And
+Abishua, and Naaman, and Ahoah, 8:5 And Gera, and Shephuphan, and
+Huram.
+
+8:6 And these are the sons of Ehud: these are the heads of the fathers
+of the inhabitants of Geba, and they removed them to Manahath: 8:7 And
+Naaman, and Ahiah, and Gera, he removed them, and begat Uzza, and
+Ahihud.
+
+8:8 And Shaharaim begat children in the country of Moab, after he had
+sent them away; Hushim and Baara were his wives.
+
+8:9 And he begat of Hodesh his wife, Jobab, and Zibia, and Mesha, and
+Malcham, 8:10 And Jeuz, and Shachia, and Mirma. These were his sons,
+heads of the fathers.
+
+8:11 And of Hushim he begat Abitub, and Elpaal.
+
+8:12 The sons of Elpaal; Eber, and Misham, and Shamed, who built Ono,
+and Lod, with the towns thereof: 8:13 Beriah also, and Shema, who were
+heads of the fathers of the inhabitants of Aijalon, who drove away the
+inhabitants of Gath: 8:14 And Ahio, Shashak, and Jeremoth, 8:15 And
+Zebadiah, and Arad, and Ader, 8:16 And Michael, and Ispah, and Joha,
+the sons of Beriah; 8:17 And Zebadiah, and Meshullam, and Hezeki, and
+Heber, 8:18 Ishmerai also, and Jezliah, and Jobab, the sons of Elpaal;
+8:19 And Jakim, and Zichri, and Zabdi, 8:20 And Elienai, and Zilthai,
+and Eliel, 8:21 And Adaiah, and Beraiah, and Shimrath, the sons of
+Shimhi; 8:22 And Ishpan, and Heber, and Eliel, 8:23 And Abdon, and
+Zichri, and Hanan, 8:24 And Hananiah, and Elam, and Antothijah, 8:25
+And Iphedeiah, and Penuel, the sons of Shashak; 8:26 And Shamsherai,
+and Shehariah, and Athaliah, 8:27 And Jaresiah, and Eliah, and Zichri,
+the sons of Jeroham.
+
+8:28 These were heads of the fathers, by their generations, chief men.
+
+These dwelt in Jerusalem.
+
+8:29 And at Gibeon dwelt the father of Gibeon; whose wife's name was
+Maachah: 8:30 And his firstborn son Abdon, and Zur, and Kish, and
+Baal, and Nadab, 8:31 And Gedor, and Ahio, and Zacher.
+
+8:32 And Mikloth begat Shimeah. And these also dwelt with their
+brethren in Jerusalem, over against them.
+
+8:33 And Ner begat Kish, and Kish begat Saul, and Saul begat Jonathan,
+and Malchishua, and Abinadab, and Eshbaal.
+
+8:34 And the son of Jonathan was Meribbaal; and Meribbaal begat Micah.
+
+8:35 And the sons of Micah were, Pithon, and Melech, and Tarea, and
+Ahaz.
+
+8:36 And Ahaz begat Jehoadah; and Jehoadah begat Alemeth, and
+Azmaveth, and Zimri; and Zimri begat Moza, 8:37 And Moza begat Binea:
+Rapha was his son, Eleasah his son, Azel his son: 8:38 And Azel had
+six sons, whose names are these, Azrikam, Bocheru, and Ishmael, and
+Sheariah, and Obadiah, and Hanan. All these were the sons of Azel.
+
+8:39 And the sons of Eshek his brother were, Ulam his firstborn,
+Jehush the second, and Eliphelet the third.
+
+8:40 And the sons of Ulam were mighty men of valour, archers, and had
+many sons, and sons' sons, an hundred and fifty. All these are of the
+sons of Benjamin.
+
+9:1 So all Israel were reckoned by genealogies; and, behold, they were
+written in the book of the kings of Israel and Judah, who were carried
+away to Babylon for their transgression.
+
+9:2 Now the first inhabitants that dwelt in their possessions in their
+cities were, the Israelites, the priests, Levites, and the Nethinims.
+
+9:3 And in Jerusalem dwelt of the children of Judah, and of the
+children of Benjamin, and of the children of Ephraim, and Manasseh;
+9:4 Uthai the son of Ammihud, the son of Omri, the son of Imri, the
+son of Bani, of the children of Pharez the son of Judah.
+
+9:5 And of the Shilonites; Asaiah the firstborn, and his sons.
+
+9:6 And of the sons of Zerah; Jeuel, and their brethren, six hundred
+and ninety.
+
+9:7 And of the sons of Benjamin; Sallu the son of Meshullam, the son
+of Hodaviah, the son of Hasenuah, 9:8 And Ibneiah the son of Jeroham,
+and Elah the son of Uzzi, the son of Michri, and Meshullam the son of
+Shephathiah, the son of Reuel, the son of Ibnijah; 9:9 And their
+brethren, according to their generations, nine hundred and fifty and
+six. All these men were chief of the fathers in the house of their
+fathers.
+
+9:10 And of the priests; Jedaiah, and Jehoiarib, and Jachin, 9:11 And
+Azariah the son of Hilkiah, the son of Meshullam, the son of Zadok,
+the son of Meraioth, the son of Ahitub, the ruler of the house of God;
+9:12 And Adaiah the son of Jeroham, the son of Pashur, the son of
+Malchijah, and Maasiai the son of Adiel, the son of Jahzerah, the son
+of Meshullam, the son of Meshillemith, the son of Immer; 9:13 And
+their brethren, heads of the house of their fathers, a thousand and
+seven hundred and threescore; very able men for the work of the
+service of the house of God.
+
+9:14 And of the Levites; Shemaiah the son of Hasshub, the son of
+Azrikam, the son of Hashabiah, of the sons of Merari; 9:15 And
+Bakbakkar, Heresh, and Galal, and Mattaniah the son of Micah, the son
+of Zichri, the son of Asaph; 9:16 And Obadiah the son of Shemaiah, the
+son of Galal, the son of Jeduthun, and Berechiah the son of Asa, the
+son of Elkanah, that dwelt in the villages of the Netophathites.
+
+9:17 And the porters were, Shallum, and Akkub, and Talmon, and Ahiman,
+and their brethren: Shallum was the chief; 9:18 Who hitherto waited in
+the king's gate eastward: they were porters in the companies of the
+children of Levi.
+
+9:19 And Shallum the son of Kore, the son of Ebiasaph, the son of
+Korah, and his brethren, of the house of his father, the Korahites,
+were over the work of the service, keepers of the gates of the
+tabernacle: and their fathers, being over the host of the LORD, were
+keepers of the entry.
+
+9:20 And Phinehas the son of Eleazar was the ruler over them in time
+past, and the LORD was with him.
+
+9:21 And Zechariah the son of Meshelemiah was porter of the door of
+the tabernacle of the congregation.
+
+9:22 All these which were chosen to be porters in the gates were two
+hundred and twelve. These were reckoned by their genealogy in their
+villages, whom David and Samuel the seer did ordain in their set
+office.
+
+9:23 So they and their children had the oversight of the gates of the
+house of the LORD, namely, the house of the tabernacle, by wards.
+
+9:24 In four quarters were the porters, toward the east, west, north,
+and south.
+
+9:25 And their brethren, which were in their villages, were to come
+after seven days from time to time with them.
+
+9:26 For these Levites, the four chief porters, were in their set
+office, and were over the chambers and treasuries of the house of God.
+
+9:27 And they lodged round about the house of God, because the charge
+was upon them, and the opening thereof every morning pertained to
+them.
+
+9:28 And certain of them had the charge of the ministering vessels,
+that they should bring them in and out by tale.
+
+9:29 Some of them also were appointed to oversee the vessels, and all
+the instruments of the sanctuary, and the fine flour, and the wine,
+and the oil, and the frankincense, and the spices.
+
+9:30 And some of the sons of the priests made the ointment of the
+spices.
+
+9:31 And Mattithiah, one of the Levites, who was the firstborn of
+Shallum the Korahite, had the set office over the things that were
+made in the pans.
+
+9:32 And other of their brethren, of the sons of the Kohathites, were
+over the shewbread, to prepare it every sabbath.
+
+9:33 And these are the singers, chief of the fathers of the Levites,
+who remaining in the chambers were free: for they were employed in
+that work day and night.
+
+9:34 These chief fathers of the Levites were chief throughout their
+generations; these dwelt at Jerusalem.
+
+9:35 And in Gibeon dwelt the father of Gibeon, Jehiel, whose wife's
+name was Maachah: 9:36 And his firstborn son Abdon, then Zur, and
+Kish, and Baal, and Ner, and Nadab.
+
+9:37 And Gedor, and Ahio, and Zechariah, and Mikloth.
+
+9:38 And Mikloth begat Shimeam. And they also dwelt with their
+brethren at Jerusalem, over against their brethren.
+
+9:39 And Ner begat Kish; and Kish begat Saul; and Saul begat Jonathan,
+and Malchishua, and Abinadab, and Eshbaal.
+
+9:40 And the son of Jonathan was Meribbaal: and Meribbaal begat Micah.
+
+9:41 And the sons of Micah were, Pithon, and Melech, and Tahrea, and
+Ahaz.
+
+9:42 And Ahaz begat Jarah; and Jarah begat Alemeth, and Azmaveth, and
+Zimri; and Zimri begat Moza; 9:43 And Moza begat Binea; and Rephaiah
+his son, Eleasah his son, Azel his son.
+
+9:44 And Azel had six sons, whose names are these, Azrikam, Bocheru,
+and Ishmael, and Sheariah, and Obadiah, and Hanan: these were the sons
+of Azel.
+
+10:1 Now the Philistines fought against Israel; and the men of Israel
+fled from before the Philistines, and fell down slain in mount Gilboa.
+
+10:2 And the Philistines followed hard after Saul, and after his sons;
+and the Philistines slew Jonathan, and Abinadab, and Malchishua, the
+sons of Saul.
+
+10:3 And the battle went sore against Saul, and the archers hit him,
+and he was wounded of the archers.
+
+10:4 Then said Saul to his armourbearer, Draw thy sword, and thrust me
+through therewith; lest these uncircumcised come and abuse me. But his
+armourbearer would not; for he was sore afraid. So Saul took a sword,
+and fell upon it.
+
+10:5 And when his armourbearer saw that Saul was dead, he fell
+likewise on the sword, and died.
+
+10:6 So Saul died, and his three sons, and all his house died
+together.
+
+10:7 And when all the men of Israel that were in the valley saw that
+they fled, and that Saul and his sons were dead, then they forsook
+their cities, and fled: and the Philistines came and dwelt in them.
+
+10:8 And it came to pass on the morrow, when the Philistines came to
+strip the slain, that they found Saul and his sons fallen in mount
+Gilboa.
+
+10:9 And when they had stripped him, they took his head, and his
+armour, and sent into the land of the Philistines round about, to
+carry tidings unto their idols, and to the people.
+
+10:10 And they put his armour in the house of their gods, and fastened
+his head in the temple of Dagon.
+
+10:11 And when all Jabeshgilead heard all that the Philistines had
+done to Saul, 10:12 They arose, all the valiant men, and took away the
+body of Saul, and the bodies of his sons, and brought them to Jabesh,
+and buried their bones under the oak in Jabesh, and fasted seven days.
+
+10:13 So Saul died for his transgression which he committed against
+the LORD, even against the word of the LORD, which he kept not, and
+also for asking counsel of one that had a familiar spirit, to enquire
+of it; 10:14 And enquired not of the LORD: therefore he slew him, and
+turned the kingdom unto David the son of Jesse.
+
+11:1 Then all Israel gathered themselves to David unto Hebron, saying,
+Behold, we are thy bone and thy flesh.
+
+11:2 And moreover in time past, even when Saul was king, thou wast he
+that leddest out and broughtest in Israel: and the LORD thy God said
+unto thee, Thou shalt feed my people Israel, and thou shalt be ruler
+over my people Israel.
+
+11:3 Therefore came all the elders of Israel to the king to Hebron;
+and David made a covenant with them in Hebron before the LORD; and
+they anointed David king over Israel, according to the word of the
+LORD by Samuel.
+
+11:4 And David and all Israel went to Jerusalem, which is Jebus; where
+the Jebusites were, the inhabitants of the land.
+
+11:5 And the inhabitants of Jebus said to David, Thou shalt not come
+hither. Nevertheless David took the castle of Zion, which is the city
+of David.
+
+11:6 And David said, Whosoever smiteth the Jebusites first shall be
+chief and captain. So Joab the son of Zeruiah went first up, and was
+chief.
+
+11:7 And David dwelt in the castle; therefore they called it the city
+of David.
+
+11:8 And he built the city round about, even from Millo round about:
+and Joab repaired the rest of the city.
+
+11:9 So David waxed greater and greater: for the LORD of hosts was
+with him.
+
+11:10 These also are the chief of the mighty men whom David had, who
+strengthened themselves with him in his kingdom, and with all Israel,
+to make him king, according to the word of the LORD concerning Israel.
+
+11:11 And this is the number of the mighty men whom David had;
+Jashobeam, an Hachmonite, the chief of the captains: he lifted up his
+spear against three hundred slain by him at one time.
+
+11:12 And after him was Eleazar the son of Dodo, the Ahohite, who was
+one of the three mighties.
+
+11:13 He was with David at Pasdammim, and there the Philistines were
+gathered together to battle, where was a parcel of ground full of
+barley; and the people fled from before the Philistines.
+
+11:14 And they set themselves in the midst of that parcel, and
+delivered it, and slew the Philistines; and the LORD saved them by a
+great deliverance.
+
+11:15 Now three of the thirty captains went down to the rock to David,
+into the cave of Adullam; and the host of the Philistines encamped in
+the valley of Rephaim.
+
+11:16 And David was then in the hold, and the Philistines' garrison
+was then at Bethlehem.
+
+11:17 And David longed, and said, Oh that one would give me drink of
+the water of the well of Bethlehem, that is at the gate! 11:18 And
+the three brake through the host of the Philistines, and drew water
+out of the well of Bethlehem, that was by the gate, and took it, and
+brought it to David: but David would not drink of it, but poured it
+out to the LORD.
+
+11:19 And said, My God forbid it me, that I should do this thing:
+shall I drink the blood of these men that have put their lives in
+jeopardy? for with the jeopardy of their lives they brought it.
+Therefore he would not drink it.
+
+These things did these three mightiest.
+
+11:20 And Abishai the brother of Joab, he was chief of the three: for
+lifting up his spear against three hundred, he slew them, and had a
+name among the three.
+
+11:21 Of the three, he was more honourable than the two; for he was
+their captain: howbeit he attained not to the first three.
+
+11:22 Benaiah the son of Jehoiada, the son of a valiant man of
+Kabzeel, who had done many acts; he slew two lionlike men of Moab:
+also he went down and slew a lion in a pit in a snowy day.
+
+11:23 And he slew an Egyptian, a man of great stature, five cubits
+high; and in the Egyptian's hand was a spear like a weaver's beam; and
+he went down to him with a staff, and plucked the spear out of the
+Egyptian's hand, and slew him with his own spear.
+
+11:24 These things did Benaiah the son of Jehoiada, and had the name
+among the three mighties.
+
+11:25 Behold, he was honourable among the thirty, but attained not to
+the first three: and David set him over his guard.
+
+11:26 Also the valiant men of the armies were, Asahel the brother of
+Joab, Elhanan the son of Dodo of Bethlehem, 11:27 Shammoth the
+Harorite, Helez the Pelonite, 11:28 Ira the son of Ikkesh the Tekoite,
+Abiezer the Antothite, 11:29 Sibbecai the Hushathite, Ilai the
+Ahohite, 11:30 Maharai the Netophathite, Heled the son of Baanah the
+Netophathite, 11:31 Ithai the son of Ribai of Gibeah, that pertained
+to the children of Benjamin, Benaiah the Pirathonite, 11:32 Hurai of
+the brooks of Gaash, Abiel the Arbathite, 11:33 Azmaveth the
+Baharumite, Eliahba the Shaalbonite, 11:34 The sons of Hashem the
+Gizonite, Jonathan the son of Shage the Hararite, 11:35 Ahiam the son
+of Sacar the Hararite, Eliphal the son of Ur, 11:36 Hepher the
+Mecherathite, Ahijah the Pelonite, 11:37 Hezro the Carmelite, Naarai
+the son of Ezbai, 11:38 Joel the brother of Nathan, Mibhar the son of
+Haggeri, 11:39 Zelek the Ammonite, Naharai the Berothite, the
+armourbearer of Joab the son of Zeruiah, 11:40 Ira the Ithrite, Gareb
+the Ithrite, 11:41 Uriah the Hittite, Zabad the son of Ahlai, 11:42
+Adina the son of Shiza the Reubenite, a captain of the Reubenites, and
+thirty with him, 11:43 Hanan the son of Maachah, and Joshaphat the
+Mithnite, 11:44 Uzzia the Ashterathite, Shama and Jehiel the sons of
+Hothan the Aroerite, 11:45 Jediael the son of Shimri, and Joha his
+brother, the Tizite, 11:46 Eliel the Mahavite, and Jeribai, and
+Joshaviah, the sons of Elnaam, and Ithmah the Moabite, 11:47 Eliel,
+and Obed, and Jasiel the Mesobaite.
+
+12:1 Now these are they that came to David to Ziklag, while he yet
+kept himself close because of Saul the son of Kish: and they were
+among the mighty men, helpers of the war.
+
+12:2 They were armed with bows, and could use both the right hand and
+the left in hurling stones and shooting arrows out of a bow, even of
+Saul's brethren of Benjamin.
+
+12:3 The chief was Ahiezer, then Joash, the sons of Shemaah the
+Gibeathite; and Jeziel, and Pelet, the sons of Azmaveth; and Berachah,
+and Jehu the Antothite.
+
+12:4 And Ismaiah the Gibeonite, a mighty man among the thirty, and
+over the thirty; and Jeremiah, and Jahaziel, and Johanan, and Josabad
+the Gederathite, 12:5 Eluzai, and Jerimoth, and Bealiah, and
+Shemariah, and Shephatiah the Haruphite, 12:6 Elkanah, and Jesiah, and
+Azareel, and Joezer, and Jashobeam, the Korhites, 12:7 And Joelah, and
+Zebadiah, the sons of Jeroham of Gedor.
+
+12:8 And of the Gadites there separated themselves unto David into the
+hold to the wilderness men of might, and men of war fit for the
+battle, that could handle shield and buckler, whose faces were like
+the faces of lions, and were as swift as the roes upon the mountains;
+12:9 Ezer the first, Obadiah the second, Eliab the third, 12:10
+Mishmannah the fourth, Jeremiah the fifth, 12:11 Attai the sixth,
+Eliel the seventh, 12:12 Johanan the eighth, Elzabad the ninth, 12:13
+Jeremiah the tenth, Machbanai the eleventh.
+
+12:14 These were of the sons of Gad, captains of the host: one of the
+least was over an hundred, and the greatest over a thousand.
+
+12:15 These are they that went over Jordan in the first month, when it
+had overflown all his banks; and they put to flight all them of the
+valleys, both toward the east, and toward the west.
+
+12:16 And there came of the children of Benjamin and Judah to the hold
+unto David.
+
+12:17 And David went out to meet them, and answered and said unto
+them, If ye be come peaceably unto me to help me, mine heart shall be
+knit unto you: but if ye be come to betray me to mine enemies, seeing
+there is no wrong in mine hands, the God of our fathers look thereon,
+and rebuke it.
+
+12:18 Then the spirit came upon Amasai, who was chief of the captains,
+and he said, Thine are we, David, and on thy side, thou son of Jesse:
+peace, peace be unto thee, and peace be to thine helpers; for thy God
+helpeth thee.
+
+Then David received them, and made them captains of the band.
+
+12:19 And there fell some of Manasseh to David, when he came with the
+Philistines against Saul to battle: but they helped them not: for the
+lords of the Philistines upon advisement sent him away, saying, He
+will fall to his master Saul to the jeopardy of our heads.
+
+12:20 As he went to Ziklag, there fell to him of Manasseh, Adnah, and
+Jozabad, and Jediael, and Michael, and Jozabad, and Elihu, and
+Zilthai, captains of the thousands that were of Manasseh.
+
+12:21 And they helped David against the band of the rovers: for they
+were all mighty men of valour, and were captains in the host.
+
+12:22 For at that time day by day there came to David to help him,
+until it was a great host, like the host of God.
+
+12:23 And these are the numbers of the bands that were ready armed to
+the war, and came to David to Hebron, to turn the kingdom of Saul to
+him, according to the word of the LORD.
+
+12:24 The children of Judah that bare shield and spear were six
+thousand and eight hundred, ready armed to the war.
+
+12:25 Of the children of Simeon, mighty men of valour for the war,
+seven thousand and one hundred.
+
+12:26 Of the children of Levi four thousand and six hundred.
+
+12:27 And Jehoiada was the leader of the Aaronites, and with him were
+three thousand and seven hundred; 12:28 And Zadok, a young man mighty
+of valour, and of his father's house twenty and two captains.
+
+12:29 And of the children of Benjamin, the kindred of Saul, three
+thousand: for hitherto the greatest part of them had kept the ward of
+the house of Saul.
+
+12:30 And of the children of Ephraim twenty thousand and eight
+hundred, mighty men of valour, famous throughout the house of their
+fathers.
+
+12:31 And of the half tribe of Manasseh eighteen thousand, which were
+expressed by name, to come and make David king.
+
+12:32 And of the children of Issachar, which were men that had
+understanding of the times, to know what Israel ought to do; the heads
+of them were two hundred; and all their brethren were at their
+commandment.
+
+12:33 Of Zebulun, such as went forth to battle, expert in war, with
+all instruments of war, fifty thousand, which could keep rank: they
+were not of double heart.
+
+12:34 And of Naphtali a thousand captains, and with them with shield
+and spear thirty and seven thousand.
+
+12:35 And of the Danites expert in war twenty and eight thousand and
+six hundred.
+
+12:36 And of Asher, such as went forth to battle, expert in war, forty
+thousand.
+
+12:37 And on the other side of Jordan, of the Reubenites, and the
+Gadites, and of the half tribe of Manasseh, with all manner of
+instruments of war for the battle, an hundred and twenty thousand.
+
+12:38 All these men of war, that could keep rank, came with a perfect
+heart to Hebron, to make David king over all Israel: and all the rest
+also of Israel were of one heart to make David king.
+
+12:39 And there they were with David three days, eating and drinking:
+for their brethren had prepared for them.
+
+12:40 Moreover they that were nigh them, even unto Issachar and
+Zebulun and Naphtali, brought bread on asses, and on camels, and on
+mules, and on oxen, and meat, meal, cakes of figs, and bunches of
+raisins, and wine, and oil, and oxen, and sheep abundantly: for there
+was joy in Israel.
+
+13:1 And David consulted with the captains of thousands and hundreds,
+and with every leader.
+
+13:2 And David said unto all the congregation of Israel, If it seem
+good unto you, and that it be of the LORD our God, let us send abroad
+unto our brethren every where, that are left in all the land of
+Israel, and with them also to the priests and Levites which are in
+their cities and suburbs, that they may gather themselves unto us:
+13:3 And let us bring again the ark of our God to us: for we enquired
+not at it in the days of Saul.
+
+13:4 And all the congregation said that they would do so: for the
+thing was right in the eyes of all the people.
+
+13:5 So David gathered all Israel together, from Shihor of Egypt even
+unto the entering of Hemath, to bring the ark of God from
+Kirjathjearim.
+
+13:6 And David went up, and all Israel, to Baalah, that is, to
+Kirjathjearim, which belonged to Judah, to bring up thence the ark of
+God the LORD, that dwelleth between the cherubims, whose name is
+called on it.
+
+13:7 And they carried the ark of God in a new cart out of the house of
+Abinadab: and Uzza and Ahio drave the cart.
+
+13:8 And David and all Israel played before God with all their might,
+and with singing, and with harps, and with psalteries, and with
+timbrels, and with cymbals, and with trumpets.
+
+13:9 And when they came unto the threshingfloor of Chidon, Uzza put
+forth his hand to hold the ark; for the oxen stumbled.
+
+13:10 And the anger of the LORD was kindled against Uzza, and he smote
+him, because he put his hand to the ark: and there he died before God.
+
+13:11 And David was displeased, because the LORD had made a breach
+upon Uzza: wherefore that place is called Perezuzza to this day.
+
+13:12 And David was afraid of God that day, saying, How shall I bring
+the ark of God home to me? 13:13 So David brought not the ark home to
+himself to the city of David, but carried it aside into the house of
+Obededom the Gittite.
+
+13:14 And the ark of God remained with the family of Obededom in his
+house three months. And the LORD blessed the house of Obededom, and
+all that he had.
+
+14:1 Now Hiram king of Tyre sent messengers to David, and timber of
+cedars, with masons and carpenters, to build him an house.
+
+14:2 And David perceived that the LORD had confirmed him king over
+Israel, for his kingdom was lifted up on high, because of his people
+Israel.
+
+14:3 And David took more wives at Jerusalem: and David begat more sons
+and daughters.
+
+14:4 Now these are the names of his children which he had in
+Jerusalem; Shammua, and Shobab, Nathan, and Solomon, 14:5 And Ibhar,
+and Elishua, and Elpalet, 14:6 And Nogah, and Nepheg, and Japhia, 14:7
+And Elishama, and Beeliada, and Eliphalet.
+
+14:8 And when the Philistines heard that David was anointed king over
+all Israel, all the Philistines went up to seek David. And David heard
+of it, and went out against them.
+
+14:9 And the Philistines came and spread themselves in the valley of
+Rephaim.
+
+14:10 And David enquired of God, saying, Shall I go up against the
+Philistines? And wilt thou deliver them into mine hand? And the LORD
+said unto him, Go up; for I will deliver them into thine hand.
+
+14:11 So they came up to Baalperazim; and David smote them there. Then
+David said, God hath broken in upon mine enemies by mine hand like the
+breaking forth of waters: therefore they called the name of that place
+Baalperazim.
+
+14:12 And when they had left their gods there, David gave a
+commandment, and they were burned with fire.
+
+14:13 And the Philistines yet again spread themselves abroad in the
+valley.
+
+14:14 Therefore David enquired again of God; and God said unto him, Go
+not up after them; turn away from them, and come upon them over
+against the mulberry trees.
+
+14:15 And it shall be, when thou shalt hear a sound of going in the
+tops of the mulberry trees, that then thou shalt go out to battle: for
+God is gone forth before thee to smite the host of the Philistines.
+
+14:16 David therefore did as God commanded him: and they smote the
+host of the Philistines from Gibeon even to Gazer.
+
+14:17 And the fame of David went out into all lands; and the LORD
+brought the fear of him upon all nations.
+
+15:1 And David made him houses in the city of David, and prepared a
+place for the ark of God, and pitched for it a tent.
+
+15:2 Then David said, None ought to carry the ark of God but the
+Levites: for them hath the LORD chosen to carry the ark of God, and to
+minister unto him for ever.
+
+15:3 And David gathered all Israel together to Jerusalem, to bring up
+the ark of the LORD unto his place, which he had prepared for it.
+
+15:4 And David assembled the children of Aaron, and the Levites: 15:5
+Of the sons of Kohath; Uriel the chief, and his brethren an hundred
+and twenty: 15:6 Of the sons of Merari; Asaiah the chief, and his
+brethren two hundred and twenty: 15:7 Of the sons of Gershom; Joel the
+chief and his brethren an hundred and thirty: 15:8 Of the sons of
+Elizaphan; Shemaiah the chief, and his brethren two hundred: 15:9 Of
+the sons of Hebron; Eliel the chief, and his brethren fourscore: 15:10
+Of the sons of Uzziel; Amminadab the chief, and his brethren an
+hundred and twelve.
+
+15:11 And David called for Zadok and Abiathar the priests, and for the
+Levites, for Uriel, Asaiah, and Joel, Shemaiah, and Eliel, and
+Amminadab, 15:12 And said unto them, Ye are the chief of the fathers
+of the Levites: sanctify yourselves, both ye and your brethren, that
+ye may bring up the ark of the LORD God of Israel unto the place that
+I have prepared for it.
+
+15:13 For because ye did it not at the first, the LORD our God made a
+breach upon us, for that we sought him not after the due order.
+
+15:14 So the priests and the Levites sanctified themselves to bring up
+the ark of the LORD God of Israel.
+
+15:15 And the children of the Levites bare the ark of God upon their
+shoulders with the staves thereon, as Moses commanded according to the
+word of the LORD.
+
+15:16 And David spake to the chief of the Levites to appoint their
+brethren to be the singers with instruments of musick, psalteries and
+harps and cymbals, sounding, by lifting up the voice with joy.
+
+15:17 So the Levites appointed Heman the son of Joel; and of his
+brethren, Asaph the son of Berechiah; and of the sons of Merari their
+brethren, Ethan the son of Kushaiah; 15:18 And with them their
+brethren of the second degree, Zechariah, Ben, and Jaaziel, and
+Shemiramoth, and Jehiel, and Unni, Eliab, and Benaiah, and Maaseiah,
+and Mattithiah, and Elipheleh, and Mikneiah, and Obededom, and Jeiel,
+the porters.
+
+15:19 So the singers, Heman, Asaph, and Ethan, were appointed to sound
+with cymbals of brass; 15:20 And Zechariah, and Aziel, and
+Shemiramoth, and Jehiel, and Unni, and Eliab, and Maaseiah, and
+Benaiah, with psalteries on Alamoth; 15:21 And Mattithiah, and
+Elipheleh, and Mikneiah, and Obededom, and Jeiel, and Azaziah, with
+harps on the Sheminith to excel.
+
+15:22 And Chenaniah, chief of the Levites, was for song: he instructed
+about the song, because he was skilful.
+
+15:23 And Berechiah and Elkanah were doorkeepers for the ark.
+
+15:24 And Shebaniah, and Jehoshaphat, and Nethaneel, and Amasai, and
+Zechariah, and Benaiah, and Eliezer, the priests, did blow with the
+trumpets before the ark of God: and Obededom and Jehiah were
+doorkeepers for the ark.
+
+15:25 So David, and the elders of Israel, and the captains over
+thousands, went to bring up the ark of the covenant of the LORD out of
+the house of Obededom with joy.
+
+15:26 And it came to pass, when God helped the Levites that bare the
+ark of the covenant of the LORD, that they offered seven bullocks and
+seven rams.
+
+15:27 And David was clothed with a robe of fine linen, and all the
+Levites that bare the ark, and the singers, and Chenaniah the master
+of the song with the singers: David also had upon him an ephod of
+linen.
+
+15:28 Thus all Israel brought up the ark of the covenant of the LORD
+with shouting, and with sound of the cornet, and with trumpets, and
+with cymbals, making a noise with psalteries and harps.
+
+15:29 And it came to pass, as the ark of the covenant of the LORD came
+to the city of David, that Michal, the daughter of Saul looking out at
+a window saw king David dancing and playing: and she despised him in
+her heart.
+
+16:1 So they brought the ark of God, and set it in the midst of the
+tent that David had pitched for it: and they offered burnt sacrifices
+and peace offerings before God.
+
+16:2 And when David had made an end of offering the burnt offerings
+and the peace offerings, he blessed the people in the name of the
+LORD.
+
+16:3 And he dealt to every one of Israel, both man and woman, to every
+one a loaf of bread, and a good piece of flesh, and a flagon of wine.
+
+16:4 And he appointed certain of the Levites to minister before the
+ark of the LORD, and to record, and to thank and praise the LORD God
+of Israel: 16:5 Asaph the chief, and next to him Zechariah, Jeiel, and
+Shemiramoth, and Jehiel, and Mattithiah, and Eliab, and Benaiah, and
+Obededom: and Jeiel with psalteries and with harps; but Asaph made a
+sound with cymbals; 16:6 Benaiah also and Jahaziel the priests with
+trumpets continually before the ark of the covenant of God.
+
+16:7 Then on that day David delivered first this psalm to thank the
+LORD into the hand of Asaph and his brethren.
+
+16:8 Give thanks unto the LORD, call upon his name, make known his
+deeds among the people.
+
+16:9 Sing unto him, sing psalms unto him, talk ye of all his wondrous
+works.
+
+16:10 Glory ye in his holy name: let the heart of them rejoice that
+seek the LORD.
+
+16:11 Seek the LORD and his strength, seek his face continually.
+
+16:12 Remember his marvellous works that he hath done, his wonders,
+and the judgments of his mouth; 16:13 O ye seed of Israel his servant,
+ye children of Jacob, his chosen ones.
+
+16:14 He is the LORD our God; his judgments are in all the earth.
+
+16:15 Be ye mindful always of his covenant; the word which he
+commanded to a thousand generations; 16:16 Even of the covenant which
+he made with Abraham, and of his oath unto Isaac; 16:17 And hath
+confirmed the same to Jacob for a law, and to Israel for an
+everlasting covenant, 16:18 Saying, Unto thee will I give the land of
+Canaan, the lot of your inheritance; 16:19 When ye were but few, even
+a few, and strangers in it.
+
+16:20 And when they went from nation to nation, and from one kingdom
+to another people; 16:21 He suffered no man to do them wrong: yea, he
+reproved kings for their sakes, 16:22 Saying, Touch not mine anointed,
+and do my prophets no harm.
+
+16:23 Sing unto the LORD, all the earth; shew forth from day to day
+his salvation.
+
+16:24 Declare his glory among the heathen; his marvellous works among
+all nations.
+
+16:25 For great is the LORD, and greatly to be praised: he also is to
+be feared above all gods.
+
+16:26 For all the gods of the people are idols: but the LORD made the
+heavens.
+
+16:27 Glory and honour are in his presence; strength and gladness are
+in his place.
+
+16:28 Give unto the LORD, ye kindreds of the people, give unto the
+LORD glory and strength.
+
+16:29 Give unto the LORD the glory due unto his name: bring an
+offering, and come before him: worship the LORD in the beauty of
+holiness.
+
+16:30 Fear before him, all the earth: the world also shall be stable,
+that it be not moved.
+
+16:31 Let the heavens be glad, and let the earth rejoice: and let men
+say among the nations, The LORD reigneth.
+
+16:32 Let the sea roar, and the fulness thereof: let the fields
+rejoice, and all that is therein.
+
+16:33 Then shall the trees of the wood sing out at the presence of the
+LORD, because he cometh to judge the earth.
+
+16:34 O give thanks unto the LORD; for he is good; for his mercy
+endureth for ever.
+
+16:35 And say ye, Save us, O God of our salvation, and gather us
+together, and deliver us from the heathen, that we may give thanks to
+thy holy name, and glory in thy praise.
+
+16:36 Blessed be the LORD God of Israel for ever and ever. And all the
+people said, Amen, and praised the LORD.
+
+16:37 So he left there before the ark of the covenant of the LORD
+Asaph and his brethren, to minister before the ark continually, as
+every day's work required: 16:38 And Obededom with their brethren,
+threescore and eight; Obededom also the son of Jeduthun and Hosah to
+be porters: 16:39 And Zadok the priest, and his brethren the priests,
+before the tabernacle of the LORD in the high place that was at
+Gibeon, 16:40 To offer burnt offerings unto the LORD upon the altar of
+the burnt offering continually morning and evening, and to do
+according to all that is written in the law of the LORD, which he
+commanded Israel; 16:41 And with them Heman and Jeduthun, and the rest
+that were chosen, who were expressed by name, to give thanks to the
+LORD, because his mercy endureth for ever; 16:42 And with them Heman
+and Jeduthun with trumpets and cymbals for those that should make a
+sound, and with musical instruments of God. And the sons of Jeduthun
+were porters.
+
+16:43 And all the people departed every man to his house: and David
+returned to bless his house.
+
+17:1 Now it came to pass, as David sat in his house, that David said
+to Nathan the prophet, Lo, I dwell in an house of cedars, but the ark
+of the covenant of the LORD remaineth under curtains.
+
+17:2 Then Nathan said unto David, Do all that is in thine heart; for
+God is with thee.
+
+17:3 And it came to pass the same night, that the word of God came to
+Nathan, saying, 17:4 Go and tell David my servant, Thus saith the
+LORD, Thou shalt not build me an house to dwell in: 17:5 For I have
+not dwelt in an house since the day that I brought up Israel unto this
+day; but have gone from tent to tent, and from one tabernacle to
+another.
+
+17:6 Wheresoever I have walked with all Israel, spake I a word to any
+of the judges of Israel, whom I commanded to feed my people, saying,
+Why have ye not built me an house of cedars? 17:7 Now therefore thus
+shalt thou say unto my servant David, Thus saith the LORD of hosts, I
+took thee from the sheepcote, even from following the sheep, that thou
+shouldest be ruler over my people Israel: 17:8 And I have been with
+thee whithersoever thou hast walked, and have cut off all thine
+enemies from before thee, and have made thee a name like the name of
+the great men that are in the earth.
+
+17:9 Also I will ordain a place for my people Israel, and will plant
+them, and they shall dwell in their place, and shall be moved no more;
+neither shall the children of wickedness waste them any more, as at
+the beginning, 17:10 And since the time that I commanded judges to be
+over my people Israel. Moreover I will subdue all thine enemies.
+Furthermore I tell thee that the LORD will build thee an house.
+
+17:11 And it shall come to pass, when thy days be expired that thou
+must go to be with thy fathers, that I will raise up thy seed after
+thee, which shall be of thy sons; and I will establish his kingdom.
+
+17:12 He shall build me an house, and I will stablish his throne for
+ever.
+
+17:13 I will be his father, and he shall be my son: and I will not
+take my mercy away from him, as I took it from him that was before
+thee: 17:14 But I will settle him in mine house and in my kingdom for
+ever: and his throne shall be established for evermore.
+
+17:15 According to all these words, and according to all this vision,
+so did Nathan speak unto David.
+
+17:16 And David the king came and sat before the LORD, and said, Who
+am I, O LORD God, and what is mine house, that thou hast brought me
+hitherto? 17:17 And yet this was a small thing in thine eyes, O God;
+for thou hast also spoken of thy servant's house for a great while to
+come, and hast regarded me according to the estate of a man of high
+degree, O LORD God.
+
+17:18 What can David speak more to thee for the honour of thy servant?
+for thou knowest thy servant.
+
+17:19 O LORD, for thy servant's sake, and according to thine own
+heart, hast thou done all this greatness, in making known all these
+great things.
+
+17:20 O LORD, there is none like thee, neither is there any God beside
+thee, according to all that we have heard with our ears.
+
+17:21 And what one nation in the earth is like thy people Israel, whom
+God went to redeem to be his own people, to make thee a name of
+greatness and terribleness, by driving out nations from before thy
+people whom thou hast redeemed out of Egypt? 17:22 For thy people
+Israel didst thou make thine own people for ever; and thou, LORD,
+becamest their God.
+
+17:23 Therefore now, LORD, let the thing that thou hast spoken
+concerning thy servant and concerning his house be established for
+ever, and do as thou hast said.
+
+17:24 Let it even be established, that thy name may be magnified for
+ever, saying, The LORD of hosts is the God of Israel, even a God to
+Israel: and let the house of David thy servant be established before
+thee.
+
+17:25 For thou, O my God, hast told thy servant that thou wilt build
+him an house: therefore thy servant hath found in his heart to pray
+before thee.
+
+17:26 And now, LORD, thou art God, and hast promised this goodness
+unto thy servant: 17:27 Now therefore let it please thee to bless the
+house of thy servant, that it may be before thee for ever: for thou
+blessest, O LORD, and it shall be blessed for ever.
+
+18:1 Now after this it came to pass, that David smote the Philistines,
+and subdued them, and took Gath and her towns out of the hand of the
+Philistines.
+
+18:2 And he smote Moab; and the Moabites became David's servants, and
+brought gifts.
+
+18:3 And David smote Hadarezer king of Zobah unto Hamath, as he went
+to stablish his dominion by the river Euphrates.
+
+18:4 And David took from him a thousand chariots, and seven thousand
+horsemen, and twenty thousand footmen: David also houghed all the
+chariot horses, but reserved of them an hundred chariots.
+
+18:5 And when the Syrians of Damascus came to help Hadarezer king of
+Zobah, David slew of the Syrians two and twenty thousand men.
+
+18:6 Then David put garrisons in Syriadamascus; and the Syrians became
+David's servants, and brought gifts. Thus the LORD preserved David
+whithersoever he went.
+
+18:7 And David took the shields of gold that were on the servants of
+Hadarezer, and brought them to Jerusalem.
+
+18:8 Likewise from Tibhath, and from Chun, cities of Hadarezer,
+brought David very much brass, wherewith Solomon made the brasen sea,
+and the pillars, and the vessels of brass.
+
+18:9 Now when Tou king of Hamath heard how David had smitten all the
+host of Hadarezer king of Zobah; 18:10 He sent Hadoram his son to king
+David, to enquire of his welfare, and to congratulate him, because he
+had fought against Hadarezer, and smitten him; (for Hadarezer had war
+with Tou;) and with him all manner of vessels of gold and silver and
+brass.
+
+18:11 Them also king David dedicated unto the LORD, with the silver
+and the gold that he brought from all these nations; from Edom, and
+from Moab, and from the children of Ammon, and from the Philistines,
+and from Amalek.
+
+18:12 Moreover Abishai the son of Zeruiah slew of the Edomites in the
+valley of salt eighteen thousand.
+
+18:13 And he put garrisons in Edom; and all the Edomites became
+David's servants. Thus the LORD preserved David whithersoever he went.
+
+18:14 So David reigned over all Israel, and executed judgment and
+justice among all his people.
+
+18:15 And Joab the son of Zeruiah was over the host; and Jehoshaphat
+the son of Ahilud, recorder.
+
+18:16 And Zadok the son of Ahitub, and Abimelech the son of Abiathar,
+were the priests; and Shavsha was scribe; 18:17 And Benaiah the son of
+Jehoiada was over the Cherethites and the Pelethites; and the sons of
+David were chief about the king.
+
+19:1 Now it came to pass after this, that Nahash the king of the
+children of Ammon died, and his son reigned in his stead.
+
+19:2 And David said, I will shew kindness unto Hanun the son of
+Nahash, because his father shewed kindness to me. And David sent
+messengers to comfort him concerning his father. So the servants of
+David came into the land of the children of Ammon to Hanun, to comfort
+him.
+
+19:3 But the princes of the children of Ammon said to Hanun, Thinkest
+thou that David doth honour thy father, that he hath sent comforters
+unto thee? are not his servants come unto thee for to search, and to
+overthrow, and to spy out the land? 19:4 Wherefore Hanun took David's
+servants, and shaved them, and cut off their garments in the midst
+hard by their buttocks, and sent them away.
+
+19:5 Then there went certain, and told David how the men were served.
+And he sent to meet them: for the men were greatly ashamed. And the
+king said, Tarry at Jericho until your beards be grown, and then
+return.
+
+19:6 And when the children of Ammon saw that they had made themselves
+odious to David, Hanun and the children of Ammon sent a thousand
+talents of silver to hire them chariots and horsemen out of
+Mesopotamia, and out of Syriamaachah, and out of Zobah.
+
+19:7 So they hired thirty and two thousand chariots, and the king of
+Maachah and his people; who came and pitched before Medeba. And the
+children of Ammon gathered themselves together from their cities, and
+came to battle.
+
+19:8 And when David heard of it, he sent Joab, and all the host of the
+mighty men.
+
+19:9 And the children of Ammon came out, and put the battle in array
+before the gate of the city: and the kings that were come were by
+themselves in the field.
+
+19:10 Now when Joab saw that the battle was set against him before and
+behind, he chose out of all the choice of Israel, and put them in
+array against the Syrians.
+
+19:11 And the rest of the people he delivered unto the hand of Abishai
+his brother, and they set themselves in array against the children of
+Ammon.
+
+19:12 And he said, If the Syrians be too strong for me, then thou
+shalt help me: but if the children of Ammon be too strong for thee,
+then I will help thee.
+
+19:13 Be of good courage, and let us behave ourselves valiantly for
+our people, and for the cities of our God: and let the LORD do that
+which is good in his sight.
+
+19:14 So Joab and the people that were with him drew nigh before the
+Syrians unto the battle; and they fled before him.
+
+19:15 And when the children of Ammon saw that the Syrians were fled,
+they likewise fled before Abishai his brother, and entered into the
+city. Then Joab came to Jerusalem.
+
+19:16 And when the Syrians saw that they were put to the worse before
+Israel, they sent messengers, and drew forth the Syrians that were
+beyond the river: and Shophach the captain of the host of Hadarezer
+went before them.
+
+19:17 And it was told David; and he gathered all Israel, and passed
+over Jordan, and came upon them, and set the battle in array against
+them. So when David had put the battle in array against the Syrians,
+they fought with him.
+
+19:18 But the Syrians fled before Israel; and David slew of the
+Syrians seven thousand men which fought in chariots, and forty
+thousand footmen, and killed Shophach the captain of the host.
+
+19:19 And when the servants of Hadarezer saw that they were put to the
+worse before Israel, they made peace with David, and became his
+servants: neither would the Syrians help the children of Ammon any
+more.
+
+20:1 And it came to pass, that after the year was expired, at the time
+that kings go out to battle, Joab led forth the power of the army, and
+wasted the country of the children of Ammon, and came and besieged
+Rabbah. But David tarried at Jerusalem. And Joab smote Rabbah, and
+destroyed it.
+
+20:2 And David took the crown of their king from off his head, and
+found it to weigh a talent of gold, and there were precious stones in
+it; and it was set upon David's head: and he brought also exceeding
+much spoil out of the city.
+
+20:3 And he brought out the people that were in it, and cut them with
+saws, and with harrows of iron, and with axes. Even so dealt David
+with all the cities of the children of Ammon. And David and all the
+people returned to Jerusalem.
+
+20:4 And it came to pass after this, that there arose war at Gezer
+with the Philistines; at which time Sibbechai the Hushathite slew
+Sippai, that was of the children of the giant: and they were subdued.
+
+20:5 And there was war again with the Philistines; and Elhanan the son
+of Jair slew Lahmi the brother of Goliath the Gittite, whose spear
+staff was like a weaver's beam.
+
+20:6 And yet again there was war at Gath, where was a man of great
+stature, whose fingers and toes were four and twenty, six on each
+hand, and six on each foot and he also was the son of the giant.
+
+20:7 But when he defied Israel, Jonathan the son of Shimea David's
+brother slew him.
+
+20:8 These were born unto the giant in Gath; and they fell by the hand
+of David, and by the hand of his servants.
+
+21:1 And Satan stood up against Israel, and provoked David to number
+Israel.
+
+21:2 And David said to Joab and to the rulers of the people, Go,
+number Israel from Beersheba even to Dan; and bring the number of them
+to me, that I may know it.
+
+21:3 And Joab answered, The LORD make his people an hundred times so
+many more as they be: but, my lord the king, are they not all my
+lord's servants? why then doth my lord require this thing? why will
+he be a cause of trespass to Israel? 21:4 Nevertheless the king's
+word prevailed against Joab. Wherefore Joab departed, and went
+throughout all Israel, and came to Jerusalem.
+
+21:5 And Joab gave the sum of the number of the people unto David. And
+all they of Israel were a thousand thousand and an hundred thousand
+men that drew sword: and Judah was four hundred threescore and ten
+thousand men that drew sword.
+
+21:6 But Levi and Benjamin counted he not among them: for the king's
+word was abominable to Joab.
+
+21:7 And God was displeased with this thing; therefore he smote
+Israel.
+
+21:8 And David said unto God, I have sinned greatly, because I have
+done this thing: but now, I beseech thee, do away the iniquity of thy
+servant; for I have done very foolishly.
+
+21:9 And the LORD spake unto Gad, David's seer, saying, 21:10 Go and
+tell David, saying, Thus saith the LORD, I offer thee three things:
+choose thee one of them, that I may do it unto thee.
+
+21:11 So Gad came to David, and said unto him, Thus saith the LORD,
+Choose thee 21:12 Either three years' famine; or three months to be
+destroyed before thy foes, while that the sword of thine enemies
+overtaketh thee; or else three days the sword of the LORD, even the
+pestilence, in the land, and the angel of the LORD destroying
+throughout all the coasts of Israel. Now therefore advise thyself what
+word I shall bring again to him that sent me.
+
+21:13 And David said unto Gad, I am in a great strait: let me fall now
+into the hand of the LORD; for very great are his mercies: but let me
+not fall into the hand of man.
+
+21:14 So the LORD sent pestilence upon Israel: and there fell of
+Israel seventy thousand men.
+
+21:15 And God sent an angel unto Jerusalem to destroy it: and as he
+was destroying, the LORD beheld, and he repented him of the evil, and
+said to the angel that destroyed, It is enough, stay now thine hand.
+And the angel of the LORD stood by the threshingfloor of Ornan the
+Jebusite.
+
+21:16 And David lifted up his eyes, and saw the angel of the LORD
+stand between the earth and the heaven, having a drawn sword in his
+hand stretched out over Jerusalem. Then David and the elders of
+Israel, who were clothed in sackcloth, fell upon their faces.
+
+21:17 And David said unto God, Is it not I that commanded the people
+to be numbered? even I it is that have sinned and done evil indeed;
+but as for these sheep, what have they done? let thine hand, I pray
+thee, O LORD my God, be on me, and on my father's house; but not on
+thy people, that they should be plagued.
+
+21:18 Then the angel of the LORD commanded Gad to say to David, that
+David should go up, and set up an altar unto the LORD in the
+threshingfloor of Ornan the Jebusite.
+
+21:19 And David went up at the saying of Gad, which he spake in the
+name of the LORD.
+
+21:20 And Ornan turned back, and saw the angel; and his four sons with
+him hid themselves. Now Ornan was threshing wheat.
+
+21:21 And as David came to Ornan, Ornan looked and saw David, and went
+out of the threshingfloor, and bowed himself to David with his face to
+the ground.
+
+21:22 Then David said to Ornan, Grant me the place of this
+threshingfloor, that I may build an altar therein unto the LORD: thou
+shalt grant it me for the full price: that the plague may be stayed
+from the people.
+
+21:23 And Ornan said unto David, Take it to thee, and let my lord the
+king do that which is good in his eyes: lo, I give thee the oxen also
+for burnt offerings, and the threshing instruments for wood, and the
+wheat for the meat offering; I give it all.
+
+21:24 And king David said to Ornan, Nay; but I will verily buy it for
+the full price: for I will not take that which is thine for the LORD,
+nor offer burnt offerings without cost.
+
+21:25 So David gave to Ornan for the place six hundred shekels of gold
+by weight.
+
+21:26 And David built there an altar unto the LORD, and offered burnt
+offerings and peace offerings, and called upon the LORD; and he
+answered him from heaven by fire upon the altar of burnt offering.
+
+21:27 And the LORD commanded the angel; and he put up his sword again
+into the sheath thereof.
+
+21:28 At that time when David saw that the LORD had answered him in
+the threshingfloor of Ornan the Jebusite, then he sacrificed there.
+
+21:29 For the tabernacle of the LORD, which Moses made in the
+wilderness, and the altar of the burnt offering, were at that season
+in the high place at Gibeon.
+
+21:30 But David could not go before it to enquire of God: for he was
+afraid because of the sword of the angel of the LORD.
+
+22:1 Then David said, This is the house of the LORD God, and this is
+the altar of the burnt offering for Israel.
+
+22:2 And David commanded to gather together the strangers that were in
+the land of Israel; and he set masons to hew wrought stones to build
+the house of God.
+
+22:3 And David prepared iron in abundance for the nails for the doors
+of the gates, and for the joinings; and brass in abundance without
+weight; 22:4 Also cedar trees in abundance: for the Zidonians and they
+of Tyre brought much cedar wood to David.
+
+22:5 And David said, Solomon my son is young and tender, and the house
+that is to be builded for the LORD must be exceeding magnifical, of
+fame and of glory throughout all countries: I will therefore now make
+preparation for it. So David prepared abundantly before his death.
+
+22:6 Then he called for Solomon his son, and charged him to build an
+house for the LORD God of Israel.
+
+22:7 And David said to Solomon, My son, as for me, it was in my mind
+to build an house unto the name of the LORD my God: 22:8 But the word
+of the LORD came to me, saying, Thou hast shed blood abundantly, and
+hast made great wars: thou shalt not build an house unto my name,
+because thou hast shed much blood upon the earth in my sight.
+
+22:9 Behold, a son shall be born to thee, who shall be a man of rest;
+and I will give him rest from all his enemies round about: for his
+name shall be Solomon, and I will give peace and quietness unto Israel
+in his days.
+
+22:10 He shall build an house for my name; and he shall be my son, and
+I will be his father; and I will establish the throne of his kingdom
+over Israel for ever.
+
+22:11 Now, my son, the LORD be with thee; and prosper thou, and build
+the house of the LORD thy God, as he hath said of thee.
+
+22:12 Only the LORD give thee wisdom and understanding, and give thee
+charge concerning Israel, that thou mayest keep the law of the LORD
+thy God.
+
+22:13 Then shalt thou prosper, if thou takest heed to fulfil the
+statutes and judgments which the LORD charged Moses with concerning
+Israel: be strong, and of good courage; dread not, nor be dismayed.
+
+22:14 Now, behold, in my trouble I have prepared for the house of the
+LORD an hundred thousand talents of gold, and a thousand thousand
+talents of silver; and of brass and iron without weight; for it is in
+abundance: timber also and stone have I prepared; and thou mayest add
+thereto.
+
+22:15 Moreover there are workmen with thee in abundance, hewers and
+workers of stone and timber, and all manner of cunning men for every
+manner of work.
+
+22:16 Of the gold, the silver, and the brass, and the iron, there is
+no number. Arise therefore, and be doing, and the LORD be with thee.
+
+22:17 David also commanded all the princes of Israel to help Solomon
+his son, saying, 22:18 Is not the LORD your God with you? and hath he
+not given you rest on every side? for he hath given the inhabitants of
+the land into mine hand; and the land is subdued before the LORD, and
+before his people.
+
+22:19 Now set your heart and your soul to seek the LORD your God;
+arise therefore, and build ye the sanctuary of the LORD God, to bring
+the ark of the covenant of the LORD, and the holy vessels of God, into
+the house that is to be built to the name of the LORD.
+
+23:1 So when David was old and full of days, he made Solomon his son
+king over Israel.
+
+23:2 And he gathered together all the princes of Israel, with the
+priests and the Levites.
+
+23:3 Now the Levites were numbered from the age of thirty years and
+upward: and their number by their polls, man by man, was thirty and
+eight thousand.
+
+23:4 Of which, twenty and four thousand were to set forward the work
+of the house of the LORD; and six thousand were officers and judges:
+23:5 Moreover four thousand were porters; and four thousand praised
+the LORD with the instruments which I made, said David, to praise
+therewith.
+
+23:6 And David divided them into courses among the sons of Levi,
+namely, Gershon, Kohath, and Merari.
+
+23:7 Of the Gershonites were, Laadan, and Shimei.
+
+23:8 The sons of Laadan; the chief was Jehiel, and Zetham, and Joel,
+three.
+
+23:9 The sons of Shimei; Shelomith, and Haziel, and Haran, three.
+These were the chief of the fathers of Laadan.
+
+23:10 And the sons of Shimei were, Jahath, Zina, and Jeush, and
+Beriah.
+
+These four were the sons of Shimei.
+
+23:11 And Jahath was the chief, and Zizah the second: but Jeush and
+Beriah had not many sons; therefore they were in one reckoning,
+according to their father's house.
+
+23:12 The sons of Kohath; Amram, Izhar, Hebron, and Uzziel, four.
+
+23:13 The sons of Amram; Aaron and Moses: and Aaron was separated,
+that he should sanctify the most holy things, he and his sons for
+ever, to burn incense before the LORD, to minister unto him, and to
+bless in his name for ever.
+
+23:14 Now concerning Moses the man of God, his sons were named of the
+tribe of Levi.
+
+23:15 The sons of Moses were, Gershom, and Eliezer.
+
+23:16 Of the sons of Gershom, Shebuel was the chief.
+
+23:17 And the sons of Eliezer were, Rehabiah the chief. And Eliezer
+had none other sons; but the sons of Rehabiah were very many.
+
+23:18 Of the sons of Izhar; Shelomith the chief.
+
+23:19 Of the sons of Hebron; Jeriah the first, Amariah the second,
+Jahaziel the third, and Jekameam the fourth.
+
+23:20 Of the sons of Uzziel; Micah the first and Jesiah the second.
+
+23:21 The sons of Merari; Mahli, and Mushi. The sons of Mahli;
+Eleazar, and Kish.
+
+23:22 And Eleazar died, and had no sons, but daughters: and their
+brethren the sons of Kish took them.
+
+23:23 The sons of Mushi; Mahli, and Eder, and Jeremoth, three.
+
+23:24 These were the sons of Levi after the house of their fathers;
+even the chief of the fathers, as they were counted by number of names
+by their polls, that did the work for the service of the house of the
+LORD, from the age of twenty years and upward.
+
+23:25 For David said, The LORD God of Israel hath given rest unto his
+people, that they may dwell in Jerusalem for ever: 23:26 And also unto
+the Levites; they shall no more carry the tabernacle, nor any vessels
+of it for the service thereof.
+
+23:27 For by the last words of David the Levites were numbered from
+twenty years old and above: 23:28 Because their office was to wait on
+the sons of Aaron for the service of the house of the LORD, in the
+courts, and in the chambers, and in the purifying of all holy things,
+and the work of the service of the house of God; 23:29 Both for the
+shewbread, and for the fine flour for meat offering, and for the
+unleavened cakes, and for that which is baked in the pan, and for that
+which is fried, and for all manner of measure and size; 23:30 And to
+stand every morning to thank and praise the LORD, and likewise at
+even: 23:31 And to offer all burnt sacrifices unto the LORD in the
+sabbaths, in the new moons, and on the set feasts, by number,
+according to the order commanded unto them, continually before the
+LORD: 23:32 And that they should keep the charge of the tabernacle of
+the congregation, and the charge of the holy place, and the charge of
+the sons of Aaron their brethren, in the service of the house of the
+LORD.
+
+24:1 Now these are the divisions of the sons of Aaron. The sons of
+Aaron; Nadab, and Abihu, Eleazar, and Ithamar.
+
+24:2 But Nadab and Abihu died before their father, and had no
+children: therefore Eleazar and Ithamar executed the priest's office.
+
+24:3 And David distributed them, both Zadok of the sons of Eleazar,
+and Ahimelech of the sons of Ithamar, according to their offices in
+their service.
+
+24:4 And there were more chief men found of the sons of Eleazar than
+of the sons of Ithamar, and thus were they divided. Among the sons of
+Eleazar there were sixteen chief men of the house of their fathers,
+and eight among the sons of Ithamar according to the house of their
+fathers.
+
+24:5 Thus were they divided by lot, one sort with another; for the
+governors of the sanctuary, and governors of the house of God, were of
+the sons of Eleazar, and of the sons of Ithamar.
+
+24:6 And Shemaiah the son of Nethaneel the scribe, one of the Levites,
+wrote them before the king, and the princes, and Zadok the priest, and
+Ahimelech the son of Abiathar, and before the chief of the fathers of
+the priests and Levites: one principal household being taken for
+Eleazar, and one taken for Ithamar.
+
+24:7 Now the first lot came forth to Jehoiarib, the second to Jedaiah,
+24:8 The third to Harim, the fourth to Seorim, 24:9 The fifth to
+Malchijah, the sixth to Mijamin, 24:10 The seventh to Hakkoz, the
+eighth to Abijah, 24:11 The ninth to Jeshuah, the tenth to Shecaniah,
+24:12 The eleventh to Eliashib, the twelfth to Jakim, 24:13 The
+thirteenth to Huppah, the fourteenth to Jeshebeab, 24:14 The fifteenth
+to Bilgah, the sixteenth to Immer, 24:15 The seventeenth to Hezir, the
+eighteenth to Aphses, 24:16 The nineteenth to Pethahiah, the twentieth
+to Jehezekel, 24:17 The one and twentieth to Jachin, the two and
+twentieth to Gamul, 24:18 The three and twentieth to Delaiah, the four
+and twentieth to Maaziah.
+
+24:19 These were the orderings of them in their service to come into
+the house of the LORD, according to their manner, under Aaron their
+father, as the LORD God of Israel had commanded him.
+
+24:20 And the rest of the sons of Levi were these: Of the sons of
+Amram; Shubael: of the sons of Shubael; Jehdeiah.
+
+24:21 Concerning Rehabiah: of the sons of Rehabiah, the first was
+Isshiah.
+
+24:22 Of the Izharites; Shelomoth: of the sons of Shelomoth; Jahath.
+
+24:23 And the sons of Hebron; Jeriah the first, Amariah the second,
+Jahaziel the third, Jekameam the fourth.
+
+24:24 Of the sons of Uzziel; Michah: of the sons of Michah; Shamir.
+
+24:25 The brother of Michah was Isshiah: of the sons of Isshiah;
+Zechariah.
+
+24:26 The sons of Merari were Mahli and Mushi: the sons of Jaaziah;
+Beno.
+
+24:27 The sons of Merari by Jaaziah; Beno, and Shoham, and Zaccur, and
+Ibri.
+
+24:28 Of Mahli came Eleazar, who had no sons.
+
+24:29 Concerning Kish: the son of Kish was Jerahmeel.
+
+24:30 The sons also of Mushi; Mahli, and Eder, and Jerimoth. These
+were the sons of the Levites after the house of their fathers.
+
+24:31 These likewise cast lots over against their brethren the sons of
+Aaron in the presence of David the king, and Zadok, and Ahimelech, and
+the chief of the fathers of the priests and Levites, even the
+principal fathers over against their younger brethren.
+
+25:1 Moreover David and the captains of the host separated to the
+service of the sons of Asaph, and of Heman, and of Jeduthun, who
+should prophesy with harps, with psalteries, and with cymbals: and the
+number of the workmen according to their service was: 25:2 Of the sons
+of Asaph; Zaccur, and Joseph, and Nethaniah, and Asarelah, the sons of
+Asaph under the hands of Asaph, which prophesied according to the
+order of the king.
+
+25:3 Of Jeduthun: the sons of Jeduthun; Gedaliah, and Zeri, and
+Jeshaiah, Hashabiah, and Mattithiah, six, under the hands of their
+father Jeduthun, who prophesied with a harp, to give thanks and to
+praise the LORD.
+
+25:4 Of Heman: the sons of Heman: Bukkiah, Mattaniah, Uzziel, Shebuel,
+and Jerimoth, Hananiah, Hanani, Eliathah, Giddalti, and Romamtiezer,
+Joshbekashah, Mallothi, Hothir, and Mahazioth: 25:5 All these were the
+sons of Heman the king's seer in the words of God, to lift up the
+horn. And God gave to Heman fourteen sons and three daughters.
+
+25:6 All these were under the hands of their father for song in the
+house of the LORD, with cymbals, psalteries, and harps, for the
+service of the house of God, according to the king's order to Asaph,
+Jeduthun, and Heman.
+
+25:7 So the number of them, with their brethren that were instructed
+in the songs of the LORD, even all that were cunning, was two hundred
+fourscore and eight.
+
+25:8 And they cast lots, ward against ward, as well the small as the
+great, the teacher as the scholar.
+
+25:9 Now the first lot came forth for Asaph to Joseph: the second to
+Gedaliah, who with his brethren and sons were twelve: 25:10 The third
+to Zaccur, he, his sons, and his brethren, were twelve: 25:11 The
+fourth to Izri, he, his sons, and his brethren, were twelve: 25:12 The
+fifth to Nethaniah, he, his sons, and his brethren, were twelve: 25:13
+The sixth to Bukkiah, he, his sons, and his brethren, were twelve:
+25:14 The seventh to Jesharelah, he, his sons, and his brethren, were
+twelve: 25:15 The eighth to Jeshaiah, he, his sons, and his brethren,
+were twelve: 25:16 The ninth to Mattaniah, he, his sons, and his
+brethren, were twelve: 25:17 The tenth to Shimei, he, his sons, and
+his brethren, were twelve: 25:18 The eleventh to Azareel, he, his
+sons, and his brethren, were twelve: 25:19 The twelfth to Hashabiah,
+he, his sons, and his brethren, were twelve: 25:20 The thirteenth to
+Shubael, he, his sons, and his brethren, were twelve: 25:21 The
+fourteenth to Mattithiah, he, his sons, and his brethren, were twelve:
+25:22 The fifteenth to Jeremoth, he, his sons, and his brethren, were
+twelve: 25:23 The sixteenth to Hananiah, he, his sons, and his
+brethren, were twelve: 25:24 The seventeenth to Joshbekashah, he, his
+sons, and his brethren, were twelve: 25:25 The eighteenth to Hanani,
+he, his sons, and his brethren, were twelve: 25:26 The nineteenth to
+Mallothi, he, his sons, and his brethren, were twelve: 25:27 The
+twentieth to Eliathah, he, his sons, and his brethren, were twelve:
+25:28 The one and twentieth to Hothir, he, his sons, and his brethren,
+were twelve: 25:29 The two and twentieth to Giddalti, he, his sons,
+and his brethren, were twelve: 25:30 The three and twentieth to
+Mahazioth, he, his sons, and his brethren, were twelve: 25:31 The four
+and twentieth to Romamtiezer, he, his sons, and his brethren, were
+twelve.
+
+26:1 Concerning the divisions of the porters: Of the Korhites was
+Meshelemiah the son of Kore, of the sons of Asaph.
+
+26:2 And the sons of Meshelemiah were, Zechariah the firstborn,
+Jediael the second, Zebadiah the third, Jathniel the fourth, 26:3 Elam
+the fifth, Jehohanan the sixth, Elioenai the seventh.
+
+26:4 Moreover the sons of Obededom were, Shemaiah the firstborn,
+Jehozabad the second, Joah the third, and Sacar the fourth, and
+Nethaneel the fifth.
+
+26:5 Ammiel the sixth, Issachar the seventh, Peulthai the eighth: for
+God blessed him.
+
+26:6 Also unto Shemaiah his son were sons born, that ruled throughout
+the house of their father: for they were mighty men of valour.
+
+26:7 The sons of Shemaiah; Othni, and Rephael, and Obed, Elzabad,
+whose brethren were strong men, Elihu, and Semachiah.
+
+26:8 All these of the sons of Obededom: they and their sons and their
+brethren, able men for strength for the service, were threescore and
+two of Obededom.
+
+26:9 And Meshelemiah had sons and brethren, strong men, eighteen.
+
+26:10 Also Hosah, of the children of Merari, had sons; Simri the
+chief, (for though he was not the firstborn, yet his father made him
+the chief;) 26:11 Hilkiah the second, Tebaliah the third, Zechariah
+the fourth: all the sons and brethren of Hosah were thirteen.
+
+26:12 Among these were the divisions of the porters, even among the
+chief men, having wards one against another, to minister in the house
+of the LORD.
+
+26:13 And they cast lots, as well the small as the great, according to
+the house of their fathers, for every gate.
+
+26:14 And the lot eastward fell to Shelemiah. Then for Zechariah his
+son, a wise counsellor, they cast lots; and his lot came out
+northward.
+
+26:15 To Obededom southward; and to his sons the house of Asuppim.
+
+26:16 To Shuppim and Hosah the lot came forth westward, with the gate
+Shallecheth, by the causeway of the going up, ward against ward.
+
+26:17 Eastward were six Levites, northward four a day, southward four
+a day, and toward Asuppim two and two.
+
+26:18 At Parbar westward, four at the causeway, and two at Parbar.
+
+26:19 These are the divisions of the porters among the sons of Kore,
+and among the sons of Merari.
+
+26:20 And of the Levites, Ahijah was over the treasures of the house
+of God, and over the treasures of the dedicated things.
+
+26:21 As concerning the sons of Laadan; the sons of the Gershonite
+Laadan, chief fathers, even of Laadan the Gershonite, were Jehieli.
+
+26:22 The sons of Jehieli; Zetham, and Joel his brother, which were
+over the treasures of the house of the LORD.
+
+26:23 Of the Amramites, and the Izharites, the Hebronites, and the
+Uzzielites: 26:24 And Shebuel the son of Gershom, the son of Moses,
+was ruler of the treasures.
+
+26:25 And his brethren by Eliezer; Rehabiah his son, and Jeshaiah his
+son, and Joram his son, and Zichri his son, and Shelomith his son.
+
+26:26 Which Shelomith and his brethren were over all the treasures of
+the dedicated things, which David the king, and the chief fathers, the
+captains over thousands and hundreds, and the captains of the host,
+had dedicated.
+
+26:27 Out of the spoils won in battles did they dedicate to maintain
+the house of the LORD.
+
+26:28 And all that Samuel the seer, and Saul the son of Kish, and
+Abner the son of Ner, and Joab the son of Zeruiah, had dedicated; and
+whosoever had dedicated any thing, it was under the hand of Shelomith,
+and of his brethren.
+
+26:29 Of the Izharites, Chenaniah and his sons were for the outward
+business over Israel, for officers and judges.
+
+26:30 And of the Hebronites, Hashabiah and his brethren, men of
+valour, a thousand and seven hundred, were officers among them of
+Israel on this side Jordan westward in all the business of the LORD,
+and in the service of the king.
+
+26:31 Among the Hebronites was Jerijah the chief, even among the
+Hebronites, according to the generations of his fathers. In the
+fortieth year of the reign of David they were sought for, and there
+were found among them mighty men of valour at Jazer of Gilead.
+
+26:32 And his brethren, men of valour, were two thousand and seven
+hundred chief fathers, whom king David made rulers over the
+Reubenites, the Gadites, and the half tribe of Manasseh, for every
+matter pertaining to God, and affairs of the king.
+
+27:1 Now the children of Israel after their number, to wit, the chief
+fathers and captains of thousands and hundreds, and their officers
+that served the king in any matter of the courses, which came in and
+went out month by month throughout all the months of the year, of
+every course were twenty and four thousand.
+
+27:2 Over the first course for the first month was Jashobeam the son
+of Zabdiel: and in his course were twenty and four thousand.
+
+27:3 Of the children of Perez was the chief of all the captains of the
+host for the first month.
+
+27:4 And over the course of the second month was Dodai an Ahohite, and
+of his course was Mikloth also the ruler: in his course likewise were
+twenty and four thousand.
+
+27:5 The third captain of the host for the third month was Benaiah the
+son of Jehoiada, a chief priest: and in his course were twenty and
+four thousand.
+
+27:6 This is that Benaiah, who was mighty among the thirty, and above
+the thirty: and in his course was Ammizabad his son.
+
+27:7 The fourth captain for the fourth month was Asahel the brother of
+Joab, and Zebadiah his son after him: and in his course were twenty
+and four thousand.
+
+27:8 The fifth captain for the fifth month was Shamhuth the Izrahite:
+and in his course were twenty and four thousand.
+
+27:9 The sixth captain for the sixth month was Ira the son of Ikkesh
+the Tekoite: and in his course were twenty and four thousand.
+
+27:10 The seventh captain for the seventh month was Helez the
+Pelonite, of the children of Ephraim: and in his course were twenty
+and four thousand.
+
+27:11 The eighth captain for the eighth month was Sibbecai the
+Hushathite, of the Zarhites: and in his course were twenty and four
+thousand.
+
+27:12 The ninth captain for the ninth month was Abiezer the
+Anetothite, of the Benjamites: and in his course were twenty and four
+thousand.
+
+27:13 The tenth captain for the tenth month was Maharai the
+Netophathite, of the Zarhites: and in his course were twenty and four
+thousand.
+
+27:14 The eleventh captain for the eleventh month was Benaiah the
+Pirathonite, of the children of Ephraim: and in his course were twenty
+and four thousand.
+
+27:15 The twelfth captain for the twelfth month was Heldai the
+Netophathite, of Othniel: and in his course were twenty and four
+thousand.
+
+27:16 Furthermore over the tribes of Israel: the ruler of the
+Reubenites was Eliezer the son of Zichri: of the Simeonites,
+Shephatiah the son of Maachah: 27:17 Of the Levites, Hashabiah the son
+of Kemuel: of the Aaronites, Zadok: 27:18 Of Judah, Elihu, one of the
+brethren of David: of Issachar, Omri the son of Michael: 27:19 Of
+Zebulun, Ishmaiah the son of Obadiah: of Naphtali, Jerimoth the son of
+Azriel: 27:20 Of the children of Ephraim, Hoshea the son of Azaziah:
+of the half tribe of Manasseh, Joel the son of Pedaiah: 27:21 Of the
+half tribe of Manasseh in Gilead, Iddo the son of Zechariah: of
+Benjamin, Jaasiel the son of Abner: 27:22 Of Dan, Azareel the son of
+Jeroham. These were the princes of the tribes of Israel.
+
+27:23 But David took not the number of them from twenty years old and
+under: because the LORD had said he would increase Israel like to the
+stars of the heavens.
+
+27:24 Joab the son of Zeruiah began to number, but he finished not,
+because there fell wrath for it against Israel; neither was the number
+put in the account of the chronicles of king David.
+
+27:25 And over the king's treasures was Azmaveth the son of Adiel: and
+over the storehouses in the fields, in the cities, and in the
+villages, and in the castles, was Jehonathan the son of Uzziah: 27:26
+And over them that did the work of the field for tillage of the ground
+was Ezri the son of Chelub: 27:27 And over the vineyards was Shimei
+the Ramathite: over the increase of the vineyards for the wine cellars
+was Zabdi the Shiphmite: 27:28 And over the olive trees and the
+sycomore trees that were in the low plains was Baalhanan the Gederite:
+and over the cellars of oil was Joash: 27:29 And over the herds that
+fed in Sharon was Shitrai the Sharonite: and over the herds that were
+in the valleys was Shaphat the son of Adlai: 27:30 Over the camels
+also was Obil the Ishmaelite: and over the asses was Jehdeiah the
+Meronothite: 27:31 And over the flocks was Jaziz the Hagerite. All
+these were the rulers of the substance which was king David's.
+
+27:32 Also Jonathan David's uncle was a counsellor, a wise man, and a
+scribe: and Jehiel the son of Hachmoni was with the king's sons: 27:33
+And Ahithophel was the king's counsellor: and Hushai the Archite was
+the king's companion: 27:34 And after Ahithophel was Jehoiada the son
+of Benaiah, and Abiathar: and the general of the king's army was Joab.
+
+28:1 And David assembled all the princes of Israel, the princes of the
+tribes, and the captains of the companies that ministered to the king
+by course, and the captains over the thousands, and captains over the
+hundreds, and the stewards over all the substance and possession of
+the king, and of his sons, with the officers, and with the mighty men,
+and with all the valiant men, unto Jerusalem.
+
+28:2 Then David the king stood up upon his feet, and said, Hear me, my
+brethren, and my people: As for me, I had in mine heart to build an
+house of rest for the ark of the covenant of the LORD, and for the
+footstool of our God, and had made ready for the building: 28:3 But
+God said unto me, Thou shalt not build an house for my name, because
+thou hast been a man of war, and hast shed blood.
+
+28:4 Howbeit the LORD God of Israel chose me before all the house of
+my father to be king over Israel for ever: for he hath chosen Judah to
+be the ruler; and of the house of Judah, the house of my father; and
+among the sons of my father he liked me to make me king over all
+Israel: 28:5 And of all my sons, (for the LORD hath given me many
+sons,) he hath chosen Solomon my son to sit upon the throne of the
+kingdom of the LORD over Israel.
+
+28:6 And he said unto me, Solomon thy son, he shall build my house and
+my courts: for I have chosen him to be my son, and I will be his
+father.
+
+28:7 Moreover I will establish his kingdom for ever, if he be constant
+to do my commandments and my judgments, as at this day.
+
+28:8 Now therefore in the sight of all Israel the congregation of the
+LORD, and in the audience of our God, keep and seek for all the
+commandments of the LORD your God: that ye may possess this good land,
+and leave it for an inheritance for your children after you for ever.
+
+28:9 And thou, Solomon my son, know thou the God of thy father, and
+serve him with a perfect heart and with a willing mind: for the LORD
+searcheth all hearts, and understandeth all the imaginations of the
+thoughts: if thou seek him, he will be found of thee; but if thou
+forsake him, he will cast thee off for ever.
+
+28:10 Take heed now; for the LORD hath chosen thee to build an house
+for the sanctuary: be strong, and do it.
+
+28:11 Then David gave to Solomon his son the pattern of the porch, and
+of the houses thereof, and of the treasuries thereof, and of the upper
+chambers thereof, and of the inner parlours thereof, and of the place
+of the mercy seat, 28:12 And the pattern of all that he had by the
+spirit, of the courts of the house of the LORD, and of all the
+chambers round about, of the treasuries of the house of God, and of
+the treasuries of the dedicated things: 28:13 Also for the courses of
+the priests and the Levites, and for all the work of the service of
+the house of the LORD, and for all the vessels of service in the house
+of the LORD.
+
+28:14 He gave of gold by weight for things of gold, for all
+instruments of all manner of service; silver also for all instruments
+of silver by weight, for all instruments of every kind of service:
+28:15 Even the weight for the candlesticks of gold, and for their
+lamps of gold, by weight for every candlestick, and for the lamps
+thereof: and for the candlesticks of silver by weight, both for the
+candlestick, and also for the lamps thereof, according to the use of
+every candlestick.
+
+28:16 And by weight he gave gold for the tables of shewbread, for
+every table; and likewise silver for the tables of silver: 28:17 Also
+pure gold for the fleshhooks, and the bowls, and the cups: and for the
+golden basons he gave gold by weight for every bason; and likewise
+silver by weight for every bason of silver: 28:18 And for the altar of
+incense refined gold by weight; and gold for the pattern of the
+chariot of the cherubims, that spread out their wings, and covered the
+ark of the covenant of the LORD.
+
+28:19 All this, said David, the LORD made me understand in writing by
+his hand upon me, even all the works of this pattern.
+
+28:20 And David said to Solomon his son, Be strong and of good
+courage, and do it: fear not, nor be dismayed: for the LORD God, even
+my God, will be with thee; he will not fail thee, nor forsake thee,
+until thou hast finished all the work for the service of the house of
+the LORD.
+
+28:21 And, behold, the courses of the priests and the Levites, even
+they shall be with thee for all the service of the house of God: and
+there shall be with thee for all manner of workmanship every willing
+skilful man, for any manner of service: also the princes and all the
+people will be wholly at thy commandment.
+
+29:1 Furthermore David the king said unto all the congregation,
+Solomon my son, whom alone God hath chosen, is yet young and tender,
+and the work is great: for the palace is not for man, but for the LORD
+God.
+
+29:2 Now I have prepared with all my might for the house of my God the
+gold for things to be made of gold, and the silver for things of
+silver, and the brass for things of brass, the iron for things of
+iron, and wood for things of wood; onyx stones, and stones to be set,
+glistering stones, and of divers colours, and all manner of precious
+stones, and marble stones in abundance.
+
+29:3 Moreover, because I have set my affection to the house of my God,
+I have of mine own proper good, of gold and silver, which I have given
+to the house of my God, over and above all that I have prepared for
+the holy house.
+
+29:4 Even three thousand talents of gold, of the gold of Ophir, and
+seven thousand talents of refined silver, to overlay the walls of the
+houses withal: 29:5 The gold for things of gold, and the silver for
+things of silver, and for all manner of work to be made by the hands
+of artificers. And who then is willing to consecrate his service this
+day unto the LORD? 29:6 Then the chief of the fathers and princes of
+the tribes of Israel and the captains of thousands and of hundreds,
+with the rulers of the king's work, offered willingly, 29:7 And gave
+for the service of the house of God of gold five thousand talents and
+ten thousand drams, and of silver ten thousand talents, and of brass
+eighteen thousand talents, and one hundred thousand talents of iron.
+
+29:8 And they with whom precious stones were found gave them to the
+treasure of the house of the LORD, by the hand of Jehiel the
+Gershonite.
+
+29:9 Then the people rejoiced, for that they offered willingly,
+because with perfect heart they offered willingly to the LORD: and
+David the king also rejoiced with great joy.
+
+29:10 Wherefore David blessed the LORD before all the congregation:
+and David said, Blessed be thou, LORD God of Israel our father, for
+ever and ever.
+
+29:11 Thine, O LORD is the greatness, and the power, and the glory,
+and the victory, and the majesty: for all that is in the heaven and in
+the earth is thine; thine is the kingdom, O LORD, and thou art exalted
+as head above all.
+
+29:12 Both riches and honour come of thee, and thou reignest over all;
+and in thine hand is power and might; and in thine hand it is to make
+great, and to give strength unto all.
+
+29:13 Now therefore, our God, we thank thee, and praise thy glorious
+name.
+
+29:14 But who am I, and what is my people, that we should be able to
+offer so willingly after this sort? for all things come of thee, and
+of thine own have we given thee.
+
+29:15 For we are strangers before thee, and sojourners, as were all
+our fathers: our days on the earth are as a shadow, and there is none
+abiding.
+
+29:16 O LORD our God, all this store that we have prepared to build
+thee an house for thine holy name cometh of thine hand, and is all
+thine own.
+
+29:17 I know also, my God, that thou triest the heart, and hast
+pleasure in uprightness. As for me, in the uprightness of mine heart I
+have willingly offered all these things: and now have I seen with joy
+thy people, which are present here, to offer willingly unto thee.
+
+29:18 O LORD God of Abraham, Isaac, and of Israel, our fathers, keep
+this for ever in the imagination of the thoughts of the heart of thy
+people, and prepare their heart unto thee: 29:19 And give unto Solomon
+my son a perfect heart, to keep thy commandments, thy testimonies, and
+thy statutes, and to do all these things, and to build the palace, for
+the which I have made provision.
+
+29:20 And David said to all the congregation, Now bless the LORD your
+God.
+
+And all the congregation blessed the LORD God of their fathers, and
+bowed down their heads, and worshipped the LORD, and the king.
+
+29:21 And they sacrificed sacrifices unto the LORD, and offered burnt
+offerings unto the LORD, on the morrow after that day, even a thousand
+bullocks, a thousand rams, and a thousand lambs, with their drink
+offerings, and sacrifices in abundance for all Israel: 29:22 And did
+eat and drink before the LORD on that day with great gladness. And
+they made Solomon the son of David king the second time, and anointed
+him unto the LORD to be the chief governor, and Zadok to be priest.
+
+29:23 Then Solomon sat on the throne of the LORD as king instead of
+David his father, and prospered; and all Israel obeyed him.
+
+29:24 And all the princes, and the mighty men, and all the sons
+likewise of king David, submitted themselves unto Solomon the king.
+
+29:25 And the LORD magnified Solomon exceedingly in the sight of all
+Israel, and bestowed upon him such royal majesty as had not been on
+any king before him in Israel.
+
+29:26 Thus David the son of Jesse reigned over all Israel.
+
+29:27 And the time that he reigned over Israel was forty years; seven
+years reigned he in Hebron, and thirty and three years reigned he in
+Jerusalem.
+
+29:28 And he died in a good old age, full of days, riches, and honour:
+and Solomon his son reigned in his stead.
+
+29:29 Now the acts of David the king, first and last, behold, they are
+written in the book of Samuel the seer, and in the book of Nathan the
+prophet, and in the book of Gad the seer, 29:30 With all his reign and
+his might, and the times that went over him, and over Israel, and over
+all the kingdoms of the countries.
+
+
+
+
+The Second Book of the Chronicles
+
+
+1:1 And Solomon the son of David was strengthened in his kingdom, and
+the LORD his God was with him, and magnified him exceedingly.
+
+1:2 Then Solomon spake unto all Israel, to the captains of thousands
+and of hundreds, and to the judges, and to every governor in all
+Israel, the chief of the fathers.
+
+1:3 So Solomon, and all the congregation with him, went to the high
+place that was at Gibeon; for there was the tabernacle of the
+congregation of God, which Moses the servant of the LORD had made in
+the wilderness.
+
+1:4 But the ark of God had David brought up from Kirjathjearim to the
+place which David had prepared for it: for he had pitched a tent for
+it at Jerusalem.
+
+1:5 Moreover the brasen altar, that Bezaleel the son of Uri, the son
+of Hur, had made, he put before the tabernacle of the LORD: and
+Solomon and the congregation sought unto it.
+
+1:6 And Solomon went up thither to the brasen altar before the LORD,
+which was at the tabernacle of the congregation, and offered a
+thousand burnt offerings upon it.
+
+1:7 In that night did God appear unto Solomon, and said unto him, Ask
+what I shall give thee.
+
+1:8 And Solomon said unto God, Thou hast shewed great mercy unto David
+my father, and hast made me to reign in his stead.
+
+1:9 Now, O LORD God, let thy promise unto David my father be
+established: for thou hast made me king over a people like the dust of
+the earth in multitude.
+
+1:10 Give me now wisdom and knowledge, that I may go out and come in
+before this people: for who can judge this thy people, that is so
+great? 1:11 And God said to Solomon, Because this was in thine heart,
+and thou hast not asked riches, wealth, or honour, nor the life of
+thine enemies, neither yet hast asked long life; but hast asked wisdom
+and knowledge for thyself, that thou mayest judge my people, over whom
+I have made thee king: 1:12 Wisdom and knowledge is granted unto thee;
+and I will give thee riches, and wealth, and honour, such as none of
+the kings have had that have been before thee, neither shall there any
+after thee have the like.
+
+1:13 Then Solomon came from his journey to the high place that was at
+Gibeon to Jerusalem, from before the tabernacle of the congregation,
+and reigned over Israel.
+
+1:14 And Solomon gathered chariots and horsemen: and he had a thousand
+and four hundred chariots, and twelve thousand horsemen, which he
+placed in the chariot cities, and with the king at Jerusalem.
+
+1:15 And the king made silver and gold at Jerusalem as plenteous as
+stones, and cedar trees made he as the sycomore trees that are in the
+vale for abundance.
+
+1:16 And Solomon had horses brought out of Egypt, and linen yarn: the
+king's merchants received the linen yarn at a price.
+
+1:17 And they fetched up, and brought forth out of Egypt a chariot for
+six hundred shekels of silver, and an horse for an hundred and fifty:
+and so brought they out horses for all the kings of the Hittites, and
+for the kings of Syria, by their means.
+
+2:1 And Solomon determined to build an house for the name of the LORD,
+and an house for his kingdom.
+
+2:2 And Solomon told out threescore and ten thousand men to bear
+burdens, and fourscore thousand to hew in the mountain, and three
+thousand and six hundred to oversee them.
+
+2:3 And Solomon sent to Huram the king of Tyre, saying, As thou didst
+deal with David my father, and didst send him cedars to build him an
+house to dwell therein, even so deal with me.
+
+2:4 Behold, I build an house to the name of the LORD my God, to
+dedicate it to him, and to burn before him sweet incense, and for the
+continual shewbread, and for the burnt offerings morning and evening,
+on the sabbaths, and on the new moons, and on the solemn feasts of the
+LORD our God. This is an ordinance for ever to Israel.
+
+2:5 And the house which I build is great: for great is our God above
+all gods.
+
+2:6 But who is able to build him an house, seeing the heaven and
+heaven of heavens cannot contain him? who am I then, that I should
+build him an house, save only to burn sacrifice before him? 2:7 Send
+me now therefore a man cunning to work in gold, and in silver, and in
+brass, and in iron, and in purple, and crimson, and blue, and that can
+skill to grave with the cunning men that are with me in Judah and in
+Jerusalem, whom David my father did provide.
+
+2:8 Send me also cedar trees, fir trees, and algum trees, out of
+Lebanon: for I know that thy servants can skill to cut timber in
+Lebanon; and, behold, my servants shall be with thy servants, 2:9 Even
+to prepare me timber in abundance: for the house which I am about to
+build shall be wonderful great.
+
+2:10 And, behold, I will give to thy servants, the hewers that cut
+timber, twenty thousand measures of beaten wheat, and twenty thousand
+measures of barley, and twenty thousand baths of wine, and twenty
+thousand baths of oil.
+
+2:11 Then Huram the king of Tyre answered in writing, which he sent to
+Solomon, Because the LORD hath loved his people, he hath made thee
+king over them.
+
+2:12 Huram said moreover, Blessed be the LORD God of Israel, that made
+heaven and earth, who hath given to David the king a wise son, endued
+with prudence and understanding, that might build an house for the
+LORD, and an house for his kingdom.
+
+2:13 And now I have sent a cunning man, endued with understanding, of
+Huram my father's, 2:14 The son of a woman of the daughters of Dan,
+and his father was a man of Tyre, skilful to work in gold, and in
+silver, in brass, in iron, in stone, and in timber, in purple, in
+blue, and in fine linen, and in crimson; also to grave any manner of
+graving, and to find out every device which shall be put to him, with
+thy cunning men, and with the cunning men of my lord David thy father.
+
+2:15 Now therefore the wheat, and the barley, the oil, and the wine,
+which my lord hath spoken of, let him send unto his servants: 2:16 And
+we will cut wood out of Lebanon, as much as thou shalt need: and we
+will bring it to thee in floats by sea to Joppa; and thou shalt carry
+it up to Jerusalem.
+
+2:17 And Solomon numbered all the strangers that were in the land of
+Israel, after the numbering wherewith David his father had numbered
+them; and they were found an hundred and fifty thousand and three
+thousand and six hundred.
+
+2:18 And he set threescore and ten thousand of them to be bearers of
+burdens, and fourscore thousand to be hewers in the mountain, and
+three thousand and six hundred overseers to set the people a work.
+
+3:1 Then Solomon began to build the house of the LORD at Jerusalem in
+mount Moriah, where the Lord appeared unto David his father, in the
+place that David had prepared in the threshingfloor of Ornan the
+Jebusite.
+
+3:2 And he began to build in the second day of the second month, in
+the fourth year of his reign.
+
+3:3 Now these are the things wherein Solomon was instructed for the
+building of the house of God. The length by cubits after the first
+measure was threescore cubits, and the breadth twenty cubits.
+
+3:4 And the porch that was in the front of the house, the length of it
+was according to the breadth of the house, twenty cubits, and the
+height was an hundred and twenty: and he overlaid it within with pure
+gold.
+
+3:5 And the greater house he cieled with fir tree, which he overlaid
+with fine gold, and set thereon palm trees and chains.
+
+3:6 And he garnished the house with precious stones for beauty: and
+the gold was gold of Parvaim.
+
+3:7 He overlaid also the house, the beams, the posts, and the walls
+thereof, and the doors thereof, with gold; and graved cherubims on the
+walls.
+
+3:8 And he made the most holy house, the length whereof was according
+to the breadth of the house, twenty cubits, and the breadth thereof
+twenty cubits: and he overlaid it with fine gold, amounting to six
+hundred talents.
+
+3:9 And the weight of the nails was fifty shekels of gold. And he
+overlaid the upper chambers with gold.
+
+3:10 And in the most holy house he made two cherubims of image work,
+and overlaid them with gold.
+
+3:11 And the wings of the cherubims were twenty cubits long: one wing
+of the one cherub was five cubits, reaching to the wall of the house:
+and the other wing was likewise five cubits, reaching to the wing of
+the other cherub.
+
+3:12 And one wing of the other cherub was five cubits, reaching to the
+wall of the house: and the other wing was five cubits also, joining to
+the wing of the other cherub.
+
+3:13 The wings of these cherubims spread themselves forth twenty
+cubits: and they stood on their feet, and their faces were inward.
+
+3:14 And he made the vail of blue, and purple, and crimson, and fine
+linen, and wrought cherubims thereon.
+
+3:15 Also he made before the house two pillars of thirty and five
+cubits high, and the chapiter that was on the top of each of them was
+five cubits.
+
+3:16 And he made chains, as in the oracle, and put them on the heads
+of the pillars; and made an hundred pomegranates, and put them on the
+chains.
+
+3:17 And he reared up the pillars before the temple, one on the right
+hand, and the other on the left; and called the name of that on the
+right hand Jachin, and the name of that on the left Boaz.
+
+4:1 Moreover he made an altar of brass, twenty cubits the length
+thereof, and twenty cubits the breadth thereof, and ten cubits the
+height thereof.
+
+4:2 Also he made a molten sea of ten cubits from brim to brim, round
+in compass, and five cubits the height thereof; and a line of thirty
+cubits did compass it round about.
+
+4:3 And under it was the similitude of oxen, which did compass it
+round about: ten in a cubit, compassing the sea round about. Two rows
+of oxen were cast, when it was cast.
+
+4:4 It stood upon twelve oxen, three looking toward the north, and
+three looking toward the west, and three looking toward the south, and
+three looking toward the east: and the sea was set above upon them,
+and all their hinder parts were inward.
+
+4:5 And the thickness of it was an handbreadth, and the brim of it
+like the work of the brim of a cup, with flowers of lilies; and it
+received and held three thousand baths.
+
+4:6 He made also ten lavers, and put five on the right hand, and five
+on the left, to wash in them: such things as they offered for the
+burnt offering they washed in them; but the sea was for the priests to
+wash in.
+
+4:7 And he made ten candlesticks of gold according to their form, and
+set them in the temple, five on the right hand, and five on the left.
+
+4:8 He made also ten tables, and placed them in the temple, five on
+the right side, and five on the left. And he made an hundred basons of
+gold.
+
+4:9 Furthermore he made the court of the priests, and the great court,
+and doors for the court, and overlaid the doors of them with brass.
+
+4:10 And he set the sea on the right side of the east end, over
+against the south.
+
+4:11 And Huram made the pots, and the shovels, and the basons. And
+Huram finished the work that he was to make for king Solomon for the
+house of God; 4:12 To wit, the two pillars, and the pommels, and the
+chapiters which were on the top of the two pillars, and the two
+wreaths to cover the two pommels of the chapiters which were on the
+top of the pillars; 4:13 And four hundred pomegranates on the two
+wreaths; two rows of pomegranates on each wreath, to cover the two
+pommels of the chapiters which were upon the pillars.
+
+4:14 He made also bases, and lavers made he upon the bases; 4:15 One
+sea, and twelve oxen under it.
+
+4:16 The pots also, and the shovels, and the fleshhooks, and all their
+instruments, did Huram his father make to king Solomon for the house
+of the LORD of bright brass.
+
+4:17 In the plain of Jordan did the king cast them, in the clay ground
+between Succoth and Zeredathah.
+
+4:18 Thus Solomon made all these vessels in great abundance: for the
+weight of the brass could not be found out.
+
+4:19 And Solomon made all the vessels that were for the house of God,
+the golden altar also, and the tables whereon the shewbread was set;
+4:20 Moreover the candlesticks with their lamps, that they should burn
+after the manner before the oracle, of pure gold; 4:21 And the
+flowers, and the lamps, and the tongs, made he of gold, and that
+perfect gold; 4:22 And the snuffers, and the basons, and the spoons,
+and the censers, of pure gold: and the entry of the house, the inner
+doors thereof for the most holy place, and the doors of the house of
+the temple, were of gold.
+
+5:1 Thus all the work that Solomon made for the house of the LORD was
+finished: and Solomon brought in all the things that David his father
+had dedicated; and the silver, and the gold, and all the instruments,
+put he among the treasures of the house of God.
+
+5:2 Then Solomon assembled the elders of Israel, and all the heads of
+the tribes, the chief of the fathers of the children of Israel, unto
+Jerusalem, to bring up the ark of the covenant of the LORD out of the
+city of David, which is Zion.
+
+5:3 Wherefore all the men of Israel assembled themselves unto the king
+in the feast which was in the seventh month.
+
+5:4 And all the elders of Israel came; and the Levites took up the
+ark.
+
+5:5 And they brought up the ark, and the tabernacle of the
+congregation, and all the holy vessels that were in the tabernacle,
+these did the priests and the Levites bring up.
+
+5:6 Also king Solomon, and all the congregation of Israel that were
+assembled unto him before the ark, sacrificed sheep and oxen, which
+could not be told nor numbered for multitude.
+
+5:7 And the priests brought in the ark of the covenant of the LORD
+unto his place, to the oracle of the house, into the most holy place,
+even under the wings of the cherubims: 5:8 For the cherubims spread
+forth their wings over the place of the ark, and the cherubims covered
+the ark and the staves thereof above.
+
+5:9 And they drew out the staves of the ark, that the ends of the
+staves were seen from the ark before the oracle; but they were not
+seen without. And there it is unto this day.
+
+5:10 There was nothing in the ark save the two tables which Moses put
+therein at Horeb, when the LORD made a covenant with the children of
+Israel, when they came out of Egypt.
+
+5:11 And it came to pass, when the priests were come out of the holy
+place: (for all the priests that were present were sanctified, and did
+not then wait by course: 5:12 Also the Levites which were the singers,
+all of them of Asaph, of Heman, of Jeduthun, with their sons and their
+brethren, being arrayed in white linen, having cymbals and psalteries
+and harps, stood at the east end of the altar, and with them an
+hundred and twenty priests sounding with trumpets:) 5:13 It came even
+to pass, as the trumpeters and singers were as one, to make one sound
+to be heard in praising and thanking the LORD; and when they lifted up
+their voice with the trumpets and cymbals and instruments of musick,
+and praised the LORD, saying, For he is good; for his mercy endureth
+for ever: that then the house was filled with a cloud, even the house
+of the LORD; 5:14 So that the priests could not stand to minister by
+reason of the cloud: for the glory of the LORD had filled the house of
+God.
+
+6:1 Then said Solomon, The LORD hath said that he would dwell in the
+thick darkness.
+
+6:2 But I have built an house of habitation for thee, and a place for
+thy dwelling for ever.
+
+6:3 And the king turned his face, and blessed the whole congregation
+of Israel: and all the congregation of Israel stood.
+
+6:4 And he said, Blessed be the LORD God of Israel, who hath with his
+hands fulfilled that which he spake with his mouth to my father David,
+saying, 6:5 Since the day that I brought forth my people out of the
+land of Egypt I chose no city among all the tribes of Israel to build
+an house in, that my name might be there; neither chose I any man to
+be a ruler over my people Israel: 6:6 But I have chosen Jerusalem,
+that my name might be there; and have chosen David to be over my
+people Israel.
+
+6:7 Now it was in the heart of David my father to build an house for
+the name of the LORD God of Israel.
+
+6:8 But the LORD said to David my father, Forasmuch as it was in thine
+heart to build an house for my name, thou didst well in that it was in
+thine heart: 6:9 Notwithstanding thou shalt not build the house; but
+thy son which shall come forth out of thy loins, he shall build the
+house for my name.
+
+6:10 The LORD therefore hath performed his word that he hath spoken:
+for I am risen up in the room of David my father, and am set on the
+throne of Israel, as the LORD promised, and have built the house for
+the name of the LORD God of Israel.
+
+6:11 And in it have I put the ark, wherein is the covenant of the
+LORD, that he made with the children of Israel.
+
+6:12 And he stood before the altar of the LORD in the presence of all
+the congregation of Israel, and spread forth his hands: 6:13 For
+Solomon had made a brasen scaffold of five cubits long, and five
+cubits broad, and three cubits high, and had set it in the midst of
+the court: and upon it he stood, and kneeled down upon his knees
+before all the congregation of Israel, and spread forth his hands
+toward heaven.
+
+6:14 And said, O LORD God of Israel, there is no God like thee in the
+heaven, nor in the earth; which keepest covenant, and shewest mercy
+unto thy servants, that walk before thee with all their hearts: 6:15
+Thou which hast kept with thy servant David my father that which thou
+hast promised him; and spakest with thy mouth, and hast fulfilled it
+with thine hand, as it is this day.
+
+6:16 Now therefore, O LORD God of Israel, keep with thy servant David
+my father that which thou hast promised him, saying, There shall not
+fail thee a man in my sight to sit upon the throne of Israel; yet so
+that thy children take heed to their way to walk in my law, as thou
+hast walked before me.
+
+6:17 Now then, O LORD God of Israel, let thy word be verified, which
+thou hast spoken unto thy servant David.
+
+6:18 But will God in very deed dwell with men on the earth? behold,
+heaven and the heaven of heavens cannot contain thee; how much less
+this house which I have built! 6:19 Have respect therefore to the
+prayer of thy servant, and to his supplication, O LORD my God, to
+hearken unto the cry and the prayer which thy servant prayeth before
+thee: 6:20 That thine eyes may be open upon this house day and night,
+upon the place whereof thou hast said that thou wouldest put thy name
+there; to hearken unto the prayer which thy servant prayeth toward
+this place.
+
+6:21 Hearken therefore unto the supplications of thy servant, and of
+thy people Israel, which they shall make toward this place: hear thou
+from thy dwelling place, even from heaven; and when thou hearest,
+forgive.
+
+6:22 If a man sin against his neighbour, and an oath be laid upon him
+to make him swear, and the oath come before thine altar in this house;
+6:23 Then hear thou from heaven, and do, and judge thy servants, by
+requiting the wicked, by recompensing his way upon his own head; and
+by justifying the righteous, by giving him according to his
+righteousness.
+
+6:24 And if thy people Israel be put to the worse before the enemy,
+because they have sinned against thee; and shall return and confess
+thy name, and pray and make supplication before thee in this house;
+6:25 Then hear thou from the heavens, and forgive the sin of thy
+people Israel, and bring them again unto the land which thou gavest to
+them and to their fathers.
+
+6:26 When the heaven is shut up, and there is no rain, because they
+have sinned against thee; yet if they pray toward this place, and
+confess thy name, and turn from their sin, when thou dost afflict
+them; 6:27 Then hear thou from heaven, and forgive the sin of thy
+servants, and of thy people Israel, when thou hast taught them the
+good way, wherein they should walk; and send rain upon thy land, which
+thou hast given unto thy people for an inheritance.
+
+6:28 If there be dearth in the land, if there be pestilence, if there
+be blasting, or mildew, locusts, or caterpillers; if their enemies
+besiege them in the cities of their land; whatsoever sore or
+whatsoever sickness there be: 6:29 Then what prayer or what
+supplication soever shall be made of any man, or of all thy people
+Israel, when every one shall know his own sore and his own grief, and
+shall spread forth his hands in this house: 6:30 Then hear thou from
+heaven thy dwelling place, and forgive, and render unto every man
+according unto all his ways, whose heart thou knowest; (for thou only
+knowest the hearts of the children of men:) 6:31 That they may fear
+thee, to walk in thy ways, so long as they live in the land which thou
+gavest unto our fathers.
+
+6:32 Moreover concerning the stranger, which is not of thy people
+Israel, but is come from a far country for thy great name's sake, and
+thy mighty hand, and thy stretched out arm; if they come and pray in
+this house; 6:33 Then hear thou from the heavens, even from thy
+dwelling place, and do according to all that the stranger calleth to
+thee for; that all people of the earth may know thy name, and fear
+thee, as doth thy people Israel, and may know that this house which I
+have built is called by thy name.
+
+6:34 If thy people go out to war against their enemies by the way that
+thou shalt send them, and they pray unto thee toward this city which
+thou hast chosen, and the house which I have built for thy name; 6:35
+Then hear thou from the heavens their prayer and their supplication,
+and maintain their cause.
+
+6:36 If they sin against thee, (for there is no man which sinneth
+not,) and thou be angry with them, and deliver them over before their
+enemies, and they carry them away captives unto a land far off or
+near; 6:37 Yet if they bethink themselves in the land whither they are
+carried captive, and turn and pray unto thee in the land of their
+captivity, saying, We have sinned, we have done amiss, and have dealt
+wickedly; 6:38 If they return to thee with all their heart and with
+all their soul in the land of their captivity, whither they have
+carried them captives, and pray toward their land, which thou gavest
+unto their fathers, and toward the city which thou hast chosen, and
+toward the house which I have built for thy name: 6:39 Then hear thou
+from the heavens, even from thy dwelling place, their prayer and their
+supplications, and maintain their cause, and forgive thy people which
+have sinned against thee.
+
+6:40 Now, my God, let, I beseech thee, thine eyes be open, and let
+thine ears be attent unto the prayer that is made in this place.
+
+6:41 Now therefore arise, O LORD God, into thy resting place, thou,
+and the ark of thy strength: let thy priests, O LORD God, be clothed
+with salvation, and let thy saints rejoice in goodness.
+
+6:42 O LORD God, turn not away the face of thine anointed: remember
+the mercies of David thy servant.
+
+7:1 Now when Solomon had made an end of praying, the fire came down
+from heaven, and consumed the burnt offering and the sacrifices; and
+the glory of the LORD filled the house.
+
+7:2 And the priests could not enter into the house of the LORD,
+because the glory of the LORD had filled the LORD's house.
+
+7:3 And when all the children of Israel saw how the fire came down,
+and the glory of the LORD upon the house, they bowed themselves with
+their faces to the ground upon the pavement, and worshipped, and
+praised the LORD, saying, For he is good; for his mercy endureth for
+ever.
+
+7:4 Then the king and all the people offered sacrifices before the
+LORD.
+
+7:5 And king Solomon offered a sacrifice of twenty and two thousand
+oxen, and an hundred and twenty thousand sheep: so the king and all
+the people dedicated the house of God.
+
+7:6 And the priests waited on their offices: the Levites also with
+instruments of musick of the LORD, which David the king had made to
+praise the LORD, because his mercy endureth for ever, when David
+praised by their ministry; and the priests sounded trumpets before
+them, and all Israel stood.
+
+7:7 Moreover Solomon hallowed the middle of the court that was before
+the house of the LORD: for there he offered burnt offerings, and the
+fat of the peace offerings, because the brasen altar which Solomon had
+made was not able to receive the burnt offerings, and the meat
+offerings, and the fat.
+
+7:8 Also at the same time Solomon kept the feast seven days, and all
+Israel with him, a very great congregation, from the entering in of
+Hamath unto the river of Egypt.
+
+7:9 And in the eighth day they made a solemn assembly: for they kept
+the dedication of the altar seven days, and the feast seven days.
+
+7:10 And on the three and twentieth day of the seventh month he sent
+the people away into their tents, glad and merry in heart for the
+goodness that the LORD had shewed unto David, and to Solomon, and to
+Israel his people.
+
+7:11 Thus Solomon finished the house of the LORD, and the king's
+house: and all that came into Solomon's heart to make in the house of
+the LORD, and in his own house, he prosperously effected.
+
+7:12 And the LORD appeared to Solomon by night, and said unto him, I
+have heard thy prayer, and have chosen this place to myself for an
+house of sacrifice.
+
+7:13 If I shut up heaven that there be no rain, or if I command the
+locusts to devour the land, or if I send pestilence among my people;
+7:14 If my people, which are called by my name, shall humble
+themselves, and pray, and seek my face, and turn from their wicked
+ways; then will I hear from heaven, and will forgive their sin, and
+will heal their land.
+
+7:15 Now mine eyes shall be open, and mine ears attent unto the prayer
+that is made in this place.
+
+7:16 For now have I chosen and sanctified this house, that my name may
+be there for ever: and mine eyes and mine heart shall be there
+perpetually.
+
+7:17 And as for thee, if thou wilt walk before me, as David thy father
+walked, and do according to all that I have commanded thee, and shalt
+observe my statutes and my judgments; 7:18 Then will I stablish the
+throne of thy kingdom, according as I have covenanted with David thy
+father, saying, There shall not fail thee a man to be ruler in Israel.
+
+7:19 But if ye turn away, and forsake my statutes and my commandments,
+which I have set before you, and shall go and serve other gods, and
+worship them; 7:20 Then will I pluck them up by the roots out of my
+land which I have given them; and this house, which I have sanctified
+for my name, will I cast out of my sight, and will make it to be a
+proverb and a byword among all nations.
+
+7:21 And this house, which is high, shall be an astonishment to every
+one that passeth by it; so that he shall say, Why hath the LORD done
+thus unto this land, and unto this house? 7:22 And it shall be
+answered, Because they forsook the LORD God of their fathers, which
+brought them forth out of the land of Egypt, and laid hold on other
+gods, and worshipped them, and served them: therefore hath he brought
+all this evil upon them.
+
+8:1 And it came to pass at the end of twenty years, wherein Solomon
+had built the house of the LORD, and his own house, 8:2 That the
+cities which Huram had restored to Solomon, Solomon built them, and
+caused the children of Israel to dwell there.
+
+8:3 And Solomon went to Hamathzobah, and prevailed against it.
+
+8:4 And he built Tadmor in the wilderness, and all the store cities,
+which he built in Hamath.
+
+8:5 Also he built Bethhoron the upper, and Bethhoron the nether,
+fenced cities, with walls, gates, and bars; 8:6 And Baalath, and all
+the store cities that Solomon had, and all the chariot cities, and the
+cities of the horsemen, and all that Solomon desired to build in
+Jerusalem, and in Lebanon, and throughout all the land of his
+dominion.
+
+8:7 As for all the people that were left of the Hittites, and the
+Amorites, and the Perizzites, and the Hivites, and the Jebusites,
+which were not of Israel, 8:8 But of their children, who were left
+after them in the land, whom the children of Israel consumed not, them
+did Solomon make to pay tribute until this day.
+
+8:9 But of the children of Israel did Solomon make no servants for his
+work; but they were men of war, and chief of his captains, and
+captains of his chariots and horsemen.
+
+8:10 And these were the chief of king Solomon's officers, even two
+hundred and fifty, that bare rule over the people.
+
+8:11 And Solomon brought up the daughter of Pharaoh out of the city of
+David unto the house that he had built for her: for he said, My wife
+shall not dwell in the house of David king of Israel, because the
+places are holy, whereunto the ark of the LORD hath come.
+
+8:12 Then Solomon offered burnt offerings unto the LORD on the altar
+of the LORD, which he had built before the porch, 8:13 Even after a
+certain rate every day, offering according to the commandment of
+Moses, on the sabbaths, and on the new moons, and on the solemn
+feasts, three times in the year, even in the feast of unleavened
+bread, and in the feast of weeks, and in the feast of tabernacles.
+
+8:14 And he appointed, according to the order of David his father, the
+courses of the priests to their service, and the Levites to their
+charges, to praise and minister before the priests, as the duty of
+every day required: the porters also by their courses at every gate:
+for so had David the man of God commanded.
+
+8:15 And they departed not from the commandment of the king unto the
+priests and Levites concerning any matter, or concerning the
+treasures.
+
+8:16 Now all the work of Solomon was prepared unto the day of the
+foundation of the house of the LORD, and until it was finished. So the
+house of the LORD was perfected.
+
+8:17 Then went Solomon to Eziongeber, and to Eloth, at the sea side in
+the land of Edom.
+
+8:18 And Huram sent him by the hands of his servants ships, and
+servants that had knowledge of the sea; and they went with the
+servants of Solomon to Ophir, and took thence four hundred and fifty
+talents of gold, and brought them to king Solomon.
+
+9:1 And when the queen of Sheba heard of the fame of Solomon, she came
+to prove Solomon with hard questions at Jerusalem, with a very great
+company, and camels that bare spices, and gold in abundance, and
+precious stones: and when she was come to Solomon, she communed with
+him of all that was in her heart.
+
+9:2 And Solomon told her all her questions: and there was nothing hid
+from Solomon which he told her not.
+
+9:3 And when the queen of Sheba had seen the wisdom of Solomon, and
+the house that he had built, 9:4 And the meat of his table, and the
+sitting of his servants, and the attendance of his ministers, and
+their apparel; his cupbearers also, and their apparel; and his ascent
+by which he went up into the house of the LORD; there was no more
+spirit in her.
+
+9:5 And she said to the king, It was a true report which I heard in
+mine own land of thine acts, and of thy wisdom: 9:6 Howbeit I believed
+not their words, until I came, and mine eyes had seen it: and, behold,
+the one half of the greatness of thy wisdom was not told me: for thou
+exceedest the fame that I heard.
+
+9:7 Happy are thy men, and happy are these thy servants, which stand
+continually before thee, and hear thy wisdom.
+
+9:8 Blessed be the LORD thy God, which delighted in thee to set thee
+on his throne, to be king for the LORD thy God: because thy God loved
+Israel, to establish them for ever, therefore made he thee king over
+them, to do judgment and justice.
+
+9:9 And she gave the king an hundred and twenty talents of gold, and
+of spices great abundance, and precious stones: neither was there any
+such spice as the queen of Sheba gave king Solomon.
+
+9:10 And the servants also of Huram, and the servants of Solomon,
+which brought gold from Ophir, brought algum trees and precious
+stones.
+
+9:11 And the king made of the algum trees terraces to the house of the
+LORD, and to the king's palace, and harps and psalteries for singers:
+and there were none such seen before in the land of Judah.
+
+9:12 And king Solomon gave to the queen of Sheba all her desire,
+whatsoever she asked, beside that which she had brought unto the king.
+So she turned, and went away to her own land, she and her servants.
+
+9:13 Now the weight of gold that came to Solomon in one year was six
+hundred and threescore and six talents of gold; 9:14 Beside that which
+chapmen and merchants brought. And all the kings of Arabia and
+governors of the country brought gold and silver to Solomon.
+
+9:15 And king Solomon made two hundred targets of beaten gold: six
+hundred shekels of beaten gold went to one target.
+
+9:16 And three hundred shields made he of beaten gold: three hundred
+shekels of gold went to one shield. And the king put them in the house
+of the forest of Lebanon.
+
+9:17 Moreover the king made a great throne of ivory, and overlaid it
+with pure gold.
+
+9:18 And there were six steps to the throne, with a footstool of gold,
+which were fastened to the throne, and stays on each side of the
+sitting place, and two lions standing by the stays: 9:19 And twelve
+lions stood there on the one side and on the other upon the six steps.
+There was not the like made in any kingdom.
+
+9:20 And all the drinking vessels of king Solomon were of gold, and
+all the vessels of the house of the forest of Lebanon were of pure
+gold: none were of silver; it was not any thing accounted of in the
+days of Solomon.
+
+9:21 For the king's ships went to Tarshish with the servants of Huram:
+every three years once came the ships of Tarshish bringing gold, and
+silver, ivory, and apes, and peacocks.
+
+9:22 And king Solomon passed all the kings of the earth in riches and
+wisdom.
+
+9:23 And all the kings of the earth sought the presence of Solomon, to
+hear his wisdom, that God had put in his heart.
+
+9:24 And they brought every man his present, vessels of silver, and
+vessels of gold, and raiment, harness, and spices, horses, and mules,
+a rate year by year.
+
+9:25 And Solomon had four thousand stalls for horses and chariots, and
+twelve thousand horsemen; whom he bestowed in the chariot cities, and
+with the king at Jerusalem.
+
+9:26 And he reigned over all the kings from the river even unto the
+land of the Philistines, and to the border of Egypt.
+
+9:27 And the king made silver in Jerusalem as stones, and cedar trees
+made he as the sycomore trees that are in the low plains in abundance.
+
+9:28 And they brought unto Solomon horses out of Egypt, and out of all
+lands.
+
+9:29 Now the rest of the acts of Solomon, first and last, are they not
+written in the book of Nathan the prophet, and in the prophecy of
+Ahijah the Shilonite, and in the visions of Iddo the seer against
+Jeroboam the son of Nebat? 9:30 And Solomon reigned in Jerusalem over
+all Israel forty years.
+
+9:31 And Solomon slept with his fathers, and he was buried in the city
+of David his father: and Rehoboam his son reigned in his stead.
+
+10:1 And Rehoboam went to Shechem: for to Shechem were all Israel come
+to make him king.
+
+10:2 And it came to pass, when Jeroboam the son of Nebat, who was in
+Egypt, whither he fled from the presence of Solomon the king, heard
+it, that Jeroboam returned out of Egypt.
+
+10:3 And they sent and called him. So Jeroboam and all Israel came and
+spake to Rehoboam, saying, 10:4 Thy father made our yoke grievous: now
+therefore ease thou somewhat the grievous servitude of thy father, and
+his heavy yoke that he put upon us, and we will serve thee.
+
+10:5 And he said unto them, Come again unto me after three days. And
+the people departed.
+
+10:6 And king Rehoboam took counsel with the old men that had stood
+before Solomon his father while he yet lived, saying, What counsel
+give ye me to return answer to this people? 10:7 And they spake unto
+him, saying, If thou be kind to this people, and please them, and
+speak good words to them, they will be thy servants for ever.
+
+10:8 But he forsook the counsel which the old men gave him, and took
+counsel with the young men that were brought up with him, that stood
+before him.
+
+10:9 And he said unto them, What advice give ye that we may return
+answer to this people, which have spoken to me, saying, Ease somewhat
+the yoke that thy father did put upon us? 10:10 And the young men
+that were brought up with him spake unto him, saying, Thus shalt thou
+answer the people that spake unto thee, saying, Thy father made our
+yoke heavy, but make thou it somewhat lighter for us; thus shalt thou
+say unto them, My little finger shall be thicker than my father's
+loins.
+
+10:11 For whereas my father put a heavy yoke upon you, I will put more
+to your yoke: my father chastised you with whips, but I will chastise
+you with scorpions.
+
+10:12 So Jeroboam and all the people came to Rehoboam on the third
+day, as the king bade, saying, Come again to me on the third day.
+
+10:13 And the king answered them roughly; and king Rehoboam forsook
+the counsel of the old men, 10:14 And answered them after the advice
+of the young men, saying, My father made your yoke heavy, but I will
+add thereto: my father chastised you with whips, but I will chastise
+you with scorpions.
+
+10:15 So the king hearkened not unto the people: for the cause was of
+God, that the LORD might perform his word, which he spake by the hand
+of Ahijah the Shilonite to Jeroboam the son of Nebat.
+
+10:16 And when all Israel saw that the king would not hearken unto
+them, the people answered the king, saying, What portion have we in
+David? and we have none inheritance in the son of Jesse: every man to
+your tents, O Israel: and now, David, see to thine own house. So all
+Israel went to their tents.
+
+10:17 But as for the children of Israel that dwelt in the cities of
+Judah, Rehoboam reigned over them.
+
+10:18 Then king Rehoboam sent Hadoram that was over the tribute; and
+the children of Israel stoned him with stones, that he died. But king
+Rehoboam made speed to get him up to his chariot, to flee to
+Jerusalem.
+
+10:19 And Israel rebelled against the house of David unto this day.
+
+11:1 And when Rehoboam was come to Jerusalem, he gathered of the house
+of Judah and Benjamin an hundred and fourscore thousand chosen men,
+which were warriors, to fight against Israel, that he might bring the
+kingdom again to Rehoboam.
+
+11:2 But the word of the LORD came to Shemaiah the man of God, saying,
+11:3 Speak unto Rehoboam the son of Solomon, king of Judah, and to all
+Israel in Judah and Benjamin, saying, 11:4 Thus saith the LORD, Ye
+shall not go up, nor fight against your brethren: return every man to
+his house: for this thing is done of me. And they obeyed the words of
+the LORD, and returned from going against Jeroboam.
+
+11:5 And Rehoboam dwelt in Jerusalem, and built cities for defence in
+Judah.
+
+11:6 He built even Bethlehem, and Etam, and Tekoa, 11:7 And Bethzur,
+and Shoco, and Adullam, 11:8 And Gath, and Mareshah, and Ziph, 11:9
+And Adoraim, and Lachish, and Azekah, 11:10 And Zorah, and Aijalon,
+and Hebron, which are in Judah and in Benjamin fenced cities.
+
+11:11 And he fortified the strong holds, and put captains in them, and
+store of victual, and of oil and wine.
+
+11:12 And in every several city he put shields and spears, and made
+them exceeding strong, having Judah and Benjamin on his side.
+
+11:13 And the priests and the Levites that were in all Israel resorted
+to him out of all their coasts.
+
+11:14 For the Levites left their suburbs and their possession, and
+came to Judah and Jerusalem: for Jeroboam and his sons had cast them
+off from executing the priest's office unto the LORD: 11:15 And he
+ordained him priests for the high places, and for the devils, and for
+the calves which he had made.
+
+11:16 And after them out of all the tribes of Israel such as set their
+hearts to seek the LORD God of Israel came to Jerusalem, to sacrifice
+unto the LORD God of their fathers.
+
+11:17 So they strengthened the kingdom of Judah, and made Rehoboam the
+son of Solomon strong, three years: for three years they walked in the
+way of David and Solomon.
+
+11:18 And Rehoboam took him Mahalath the daughter of Jerimoth the son
+of David to wife, and Abihail the daughter of Eliab the son of Jesse;
+11:19 Which bare him children; Jeush, and Shamariah, and Zaham.
+
+11:20 And after her he took Maachah the daughter of Absalom; which
+bare him Abijah, and Attai, and Ziza, and Shelomith.
+
+11:21 And Rehoboam loved Maachah the daughter of Absalom above all his
+wives and his concubines: (for he took eighteen wives, and threescore
+concubines; and begat twenty and eight sons, and threescore
+daughters.) 11:22 And Rehoboam made Abijah the son of Maachah the
+chief, to be ruler among his brethren: for he thought to make him
+king.
+
+11:23 And he dealt wisely, and dispersed of all his children
+throughout all the countries of Judah and Benjamin, unto every fenced
+city: and he gave them victual in abundance. And he desired many
+wives.
+
+12:1 And it came to pass, when Rehoboam had established the kingdom,
+and had strengthened himself, he forsook the law of the LORD, and all
+Israel with him.
+
+12:2 And it came to pass, that in the fifth year of king Rehoboam
+Shishak king of Egypt came up against Jerusalem, because they had
+transgressed against the LORD, 12:3 With twelve hundred chariots, and
+threescore thousand horsemen: and the people were without number that
+came with him out of Egypt; the Lubims, the Sukkiims, and the
+Ethiopians.
+
+12:4 And he took the fenced cities which pertained to Judah, and came
+to Jerusalem.
+
+12:5 Then came Shemaiah the prophet to Rehoboam, and to the princes of
+Judah, that were gathered together to Jerusalem because of Shishak,
+and said unto them, Thus saith the LORD, Ye have forsaken me, and
+therefore have I also left you in the hand of Shishak.
+
+12:6 Whereupon the princes of Israel and the king humbled themselves;
+and they said, The LORD is righteous.
+
+12:7 And when the LORD saw that they humbled themselves, the word of
+the LORD came to Shemaiah, saying, They have humbled themselves;
+therefore I will not destroy them, but I will grant them some
+deliverance; and my wrath shall not be poured out upon Jerusalem by
+the hand of Shishak.
+
+12:8 Nevertheless they shall be his servants; that they may know my
+service, and the service of the kingdoms of the countries.
+
+12:9 So Shishak king of Egypt came up against Jerusalem, and took away
+the treasures of the house of the LORD, and the treasures of the
+king's house; he took all: he carried away also the shields of gold
+which Solomon had made.
+
+12:10 Instead of which king Rehoboam made shields of brass, and
+committed them to the hands of the chief of the guard, that kept the
+entrance of the king's house.
+
+12:11 And when the king entered into the house of the LORD, the guard
+came and fetched them, and brought them again into the guard chamber.
+
+12:12 And when he humbled himself, the wrath of the LORD turned from
+him, that he would not destroy him altogether: and also in Judah
+things went well.
+
+12:13 So king Rehoboam strengthened himself in Jerusalem, and reigned:
+for Rehoboam was one and forty years old when he began to reign, and
+he reigned seventeen years in Jerusalem, the city which the LORD had
+chosen out of all the tribes of Israel, to put his name there. And his
+mother's name was Naamah an Ammonitess.
+
+12:14 And he did evil, because he prepared not his heart to seek the
+LORD.
+
+12:15 Now the acts of Rehoboam, first and last, are they not written
+in the book of Shemaiah the prophet, and of Iddo the seer concerning
+genealogies? And there were wars between Rehoboam and Jeroboam
+continually.
+
+12:16 And Rehoboam slept with his fathers, and was buried in the city
+of David: and Abijah his son reigned in his stead.
+
+13:1 Now in the eighteenth year of king Jeroboam began Abijah to reign
+over Judah.
+
+13:2 He reigned three years in Jerusalem. His mother's name also was
+Michaiah the daughter of Uriel of Gibeah. And there was war between
+Abijah and Jeroboam.
+
+13:3 And Abijah set the battle in array with an army of valiant men of
+war, even four hundred thousand chosen men: Jeroboam also set the
+battle in array against him with eight hundred thousand chosen men,
+being mighty men of valour.
+
+13:4 And Abijah stood up upon mount Zemaraim, which is in mount
+Ephraim, and said, Hear me, thou Jeroboam, and all Israel; 13:5 Ought
+ye not to know that the LORD God of Israel gave the kingdom over
+Israel to David for ever, even to him and to his sons by a covenant of
+salt? 13:6 Yet Jeroboam the son of Nebat, the servant of Solomon the
+son of David, is risen up, and hath rebelled against his lord.
+
+13:7 And there are gathered unto him vain men, the children of Belial,
+and have strengthened themselves against Rehoboam the son of Solomon,
+when Rehoboam was young and tenderhearted, and could not withstand
+them.
+
+13:8 And now ye think to withstand the kingdom of the LORD in the hand
+of the sons of David; and ye be a great multitude, and there are with
+your golden calves, which Jeroboam made you for gods.
+
+13:9 Have ye not cast out the priests of the LORD, the sons of Aaron,
+and the Levites, and have made you priests after the manner of the
+nations of other lands? so that whosoever cometh to consecrate himself
+with a young bullock and seven rams, the same may be a priest of them
+that are no gods.
+
+13:10 But as for us, the LORD is our God, and we have not forsaken
+him; and the priests, which minister unto the LORD, are the sons of
+Aaron, and the Levites wait upon their business: 13:11 And they burn
+unto the LORD every morning and every evening burnt sacrifices and
+sweet incense: the shewbread also set they in order upon the pure
+table; and the candlestick of gold with the lamps thereof, to burn
+every evening: for we keep the charge of the LORD our God; but ye have
+forsaken him.
+
+13:12 And, behold, God himself is with us for our captain, and his
+priests with sounding trumpets to cry alarm against you. O children of
+Israel, fight ye not against the LORD God of your fathers; for ye
+shall not prosper.
+
+13:13 But Jeroboam caused an ambushment to come about behind them: so
+they were before Judah, and the ambushment was behind them.
+
+13:14 And when Judah looked back, behold, the battle was before and
+behind: and they cried unto the LORD, and the priests sounded with the
+trumpets.
+
+13:15 Then the men of Judah gave a shout: and as the men of Judah
+shouted, it came to pass, that God smote Jeroboam and all Israel
+before Abijah and Judah.
+
+13:16 And the children of Israel fled before Judah: and God delivered
+them into their hand.
+
+13:17 And Abijah and his people slew them with a great slaughter: so
+there fell down slain of Israel five hundred thousand chosen men.
+
+13:18 Thus the children of Israel were brought under at that time, and
+the children of Judah prevailed, because they relied upon the LORD God
+of their fathers.
+
+13:19 And Abijah pursued after Jeroboam, and took cities from him,
+Bethel with the towns thereof, and Jeshanah with the towns thereof,
+and Ephraim with the towns thereof.
+
+13:20 Neither did Jeroboam recover strength again in the days of
+Abijah: and the LORD struck him, and he died.
+
+13:21 But Abijah waxed mighty, and married fourteen wives, and begat
+twenty and two sons, and sixteen daughters.
+
+13:22 And the rest of the acts of Abijah, and his ways, and his
+sayings, are written in the story of the prophet Iddo.
+
+14:1 So Abijah slept with his fathers, and they buried him in the city
+of David: and Asa his son reigned in his stead. In his days the land
+was quiet ten years.
+
+14:2 And Asa did that which was good and right in the eyes of the LORD
+his God: 14:3 For he took away the altars of the strange gods, and the
+high places, and brake down the images, and cut down the groves: 14:4
+And commanded Judah to seek the LORD God of their fathers, and to do
+the law and the commandment.
+
+14:5 Also he took away out of all the cities of Judah the high places
+and the images: and the kingdom was quiet before him.
+
+14:6 And he built fenced cities in Judah: for the land had rest, and
+he had no war in those years; because the LORD had given him rest.
+
+14:7 Therefore he said unto Judah, Let us build these cities, and make
+about them walls, and towers, gates, and bars, while the land is yet
+before us; because we have sought the LORD our God, we have sought
+him, and he hath given us rest on every side. So they built and
+prospered.
+
+14:8 And Asa had an army of men that bare targets and spears, out of
+Judah three hundred thousand; and out of Benjamin, that bare shields
+and drew bows, two hundred and fourscore thousand: all these were
+mighty men of valour.
+
+14:9 And there came out against them Zerah the Ethiopian with an host
+of a thousand thousand, and three hundred chariots; and came unto
+Mareshah.
+
+14:10 Then Asa went out against him, and they set the battle in array
+in the valley of Zephathah at Mareshah.
+
+14:11 And Asa cried unto the LORD his God, and said, LORD, it is
+nothing with thee to help, whether with many, or with them that have
+no power: help us, O LORD our God; for we rest on thee, and in thy
+name we go against this multitude. O LORD, thou art our God; let no
+man prevail against thee.
+
+14:12 So the LORD smote the Ethiopians before Asa, and before Judah;
+and the Ethiopians fled.
+
+14:13 And Asa and the people that were with him pursued them unto
+Gerar: and the Ethiopians were overthrown, that they could not recover
+themselves; for they were destroyed before the LORD, and before his
+host; and they carried away very much spoil.
+
+14:14 And they smote all the cities round about Gerar; for the fear of
+the LORD came upon them: and they spoiled all the cities; for there
+was exceeding much spoil in them.
+
+14:15 They smote also the tents of cattle, and carried away sheep and
+camels in abundance, and returned to Jerusalem.
+
+15:1 And the Spirit of God came upon Azariah the son of Oded: 15:2 And
+he went out to meet Asa, and said unto him, Hear ye me, Asa, and all
+Judah and Benjamin; The LORD is with you, while ye be with him; and if
+ye seek him, he will be found of you; but if ye forsake him, he will
+forsake you.
+
+15:3 Now for a long season Israel hath been without the true God, and
+without a teaching priest, and without law.
+
+15:4 But when they in their trouble did turn unto the LORD God of
+Israel, and sought him, he was found of them.
+
+15:5 And in those times there was no peace to him that went out, nor
+to him that came in, but great vexations were upon all the inhabitants
+of the countries.
+
+15:6 And nation was destroyed of nation, and city of city: for God did
+vex them with all adversity.
+
+15:7 Be ye strong therefore, and let not your hands be weak: for your
+work shall be rewarded.
+
+15:8 And when Asa heard these words, and the prophecy of Oded the
+prophet, he took courage, and put away the abominable idols out of all
+the land of Judah and Benjamin, and out of the cities which he had
+taken from mount Ephraim, and renewed the altar of the LORD, that was
+before the porch of the LORD.
+
+15:9 And he gathered all Judah and Benjamin, and the strangers with
+them out of Ephraim and Manasseh, and out of Simeon: for they fell to
+him out of Israel in abundance, when they saw that the LORD his God
+was with him.
+
+15:10 So they gathered themselves together at Jerusalem in the third
+month, in the fifteenth year of the reign of Asa.
+
+15:11 And they offered unto the LORD the same time, of the spoil which
+they had brought, seven hundred oxen and seven thousand sheep.
+
+15:12 And they entered into a covenant to seek the LORD God of their
+fathers with all their heart and with all their soul; 15:13 That
+whosoever would not seek the LORD God of Israel should be put to
+death, whether small or great, whether man or woman.
+
+15:14 And they sware unto the LORD with a loud voice, and with
+shouting, and with trumpets, and with cornets.
+
+15:15 And all Judah rejoiced at the oath: for they had sworn with all
+their heart, and sought him with their whole desire; and he was found
+of them: and the LORD gave them rest round about.
+
+15:16 And also concerning Maachah the mother of Asa the king, he
+removed her from being queen, because she had made an idol in a grove:
+and Asa cut down her idol, and stamped it, and burnt it at the brook
+Kidron.
+
+15:17 But the high places were not taken away out of Israel:
+nevertheless the heart of Asa was perfect all his days.
+
+15:18 And he brought into the house of God the things that his father
+had dedicated, and that he himself had dedicated, silver, and gold,
+and vessels.
+
+15:19 And there was no more war unto the five and thirtieth year of
+the reign of Asa.
+
+16:1 In the six and thirtieth year of the reign of Asa Baasha king of
+Israel came up against Judah, and built Ramah, to the intent that he
+might let none go out or come in to Asa king of Judah.
+
+16:2 Then Asa brought out silver and gold out of the treasures of the
+house of the LORD and of the king's house, and sent to Benhadad king
+of Syria, that dwelt at Damascus, saying, 16:3 There is a league
+between me and thee, as there was between my father and thy father:
+behold, I have sent thee silver and gold; go, break thy league with
+Baasha king of Israel, that he may depart from me.
+
+16:4 And Benhadad hearkened unto king Asa, and sent the captains of
+his armies against the cities of Israel; and they smote Ijon, and Dan,
+and Abelmaim, and all the store cities of Naphtali.
+
+16:5 And it came to pass, when Baasha heard it, that he left off
+building of Ramah, and let his work cease.
+
+16:6 Then Asa the king took all Judah; and they carried away the
+stones of Ramah, and the timber thereof, wherewith Baasha was
+building; and he built therewith Geba and Mizpah.
+
+16:7 And at that time Hanani the seer came to Asa king of Judah, and
+said unto him, Because thou hast relied on the king of Syria, and not
+relied on the LORD thy God, therefore is the host of the king of Syria
+escaped out of thine hand.
+
+16:8 Were not the Ethiopians and the Lubims a huge host, with very
+many chariots and horsemen? yet, because thou didst rely on the LORD,
+he delivered them into thine hand.
+
+16:9 For the eyes of the LORD run to and fro throughout the whole
+earth, to shew himself strong in the behalf of them whose heart is
+perfect toward him. Herein thou hast done foolishly: therefore from
+henceforth thou shalt have wars.
+
+16:10 Then Asa was wroth with the seer, and put him in a prison house;
+for he was in a rage with him because of this thing. And Asa oppressed
+some of the people the same time.
+
+16:11 And, behold, the acts of Asa, first and last, lo, they are
+written in the book of the kings of Judah and Israel.
+
+16:12 And Asa in the thirty and ninth year of his reign was diseased
+in his feet, until his disease was exceeding great: yet in his disease
+he sought not to the LORD, but to the physicians.
+
+16:13 And Asa slept with his fathers, and died in the one and fortieth
+year of his reign.
+
+16:14 And they buried him in his own sepulchres, which he had made for
+himself in the city of David, and laid him in the bed which was filled
+with sweet odours and divers kinds of spices prepared by the
+apothecaries' art: and they made a very great burning for him.
+
+17:1 And Jehoshaphat his son reigned in his stead, and strengthened
+himself against Israel.
+
+17:2 And he placed forces in all the fenced cities of Judah, and set
+garrisons in the land of Judah, and in the cities of Ephraim, which
+Asa his father had taken.
+
+17:3 And the LORD was with Jehoshaphat, because he walked in the first
+ways of his father David, and sought not unto Baalim; 17:4 But sought
+to the Lord God of his father, and walked in his commandments, and not
+after the doings of Israel.
+
+17:5 Therefore the LORD stablished the kingdom in his hand; and all
+Judah brought to Jehoshaphat presents; and he had riches and honour in
+abundance.
+
+17:6 And his heart was lifted up in the ways of the LORD: moreover he
+took away the high places and groves out of Judah.
+
+17:7 Also in the third year of his reign he sent to his princes, even
+to Benhail, and to Obadiah, and to Zechariah, and to Nethaneel, and to
+Michaiah, to teach in the cities of Judah.
+
+17:8 And with them he sent Levites, even Shemaiah, and Nethaniah, and
+Zebadiah, and Asahel, and Shemiramoth, and Jehonathan, and Adonijah,
+and Tobijah, and Tobadonijah, Levites; and with them Elishama and
+Jehoram, priests.
+
+17:9 And they taught in Judah, and had the book of the law of the LORD
+with them, and went about throughout all the cities of Judah, and
+taught the people.
+
+17:10 And the fear of the LORD fell upon all the kingdoms of the lands
+that were round about Judah, so that they made no war against
+Jehoshaphat.
+
+17:11 Also some of the Philistines brought Jehoshaphat presents, and
+tribute silver; and the Arabians brought him flocks, seven thousand
+and seven hundred rams, and seven thousand and seven hundred he goats.
+
+17:12 And Jehoshaphat waxed great exceedingly; and he built in Judah
+castles, and cities of store.
+
+17:13 And he had much business in the cities of Judah: and the men of
+war, mighty men of valour, were in Jerusalem.
+
+17:14 And these are the numbers of them according to the house of
+their fathers: Of Judah, the captains of thousands; Adnah the chief,
+and with him mighty men of valour three hundred thousand.
+
+17:15 And next to him was Jehohanan the captain, and with him two
+hundred and fourscore thousand.
+
+17:16 And next him was Amasiah the son of Zichri, who willingly
+offered himself unto the LORD; and with him two hundred thousand
+mighty men of valour.
+
+17:17 And of Benjamin; Eliada a mighty man of valour, and with him
+armed men with bow and shield two hundred thousand.
+
+17:18 And next him was Jehozabad, and with him an hundred and
+fourscore thousand ready prepared for the war.
+
+17:19 These waited on the king, beside those whom the king put in the
+fenced cities throughout all Judah.
+
+18:1 Now Jehoshaphat had riches and honour in abundance, and joined
+affinity with Ahab.
+
+18:2 And after certain years he went down to Ahab to Samaria. And Ahab
+killed sheep and oxen for him in abundance, and for the people that he
+had with him, and persuaded him to go up with him to Ramothgilead.
+
+18:3 And Ahab king of Israel said unto Jehoshaphat king of Judah, Wilt
+thou go with me to Ramothgilead? And he answered him, I am as thou
+art, and my people as thy people; and we will be with thee in the war.
+
+18:4 And Jehoshaphat said unto the king of Israel, Enquire, I pray
+thee, at the word of the LORD to day.
+
+18:5 Therefore the king of Israel gathered together of prophets four
+hundred men, and said unto them, Shall we go to Ramothgilead to
+battle, or shall I forbear? And they said, Go up; for God will deliver
+it into the king's hand.
+
+18:6 But Jehoshaphat said, Is there not here a prophet of the LORD
+besides, that we might enquire of him? 18:7 And the king of Israel
+said unto Jehoshaphat, There is yet one man, by whom we may enquire of
+the LORD: but I hate him; for he never prophesied good unto me, but
+always evil: the same is Micaiah the son of Imla. And Jehoshaphat
+said, Let not the king say so.
+
+18:8 And the king of Israel called for one of his officers, and said,
+Fetch quickly Micaiah the son of Imla.
+
+18:9 And the king of Israel and Jehoshaphat king of Judah sat either
+of them on his throne, clothed in their robes, and they sat in a void
+place at the entering in of the gate of Samaria; and all the prophets
+prophesied before them.
+
+18:10 And Zedekiah the son of Chenaanah had made him horns of iron,
+and said, Thus saith the LORD, With these thou shalt push Syria until
+they be consumed.
+
+18:11 And all the prophets prophesied so, saying, Go up to
+Ramothgilead, and prosper: for the LORD shall deliver it into the hand
+of the king.
+
+18:12 And the messenger that went to call Micaiah spake to him,
+saying, Behold, the words of the prophets declare good to the king
+with one assent; let thy word therefore, I pray thee, be like one of
+their's, and speak thou good.
+
+18:13 And Micaiah said, As the LORD liveth, even what my God saith,
+that will I speak.
+
+18:14 And when he was come to the king, the king said unto him,
+Micaiah, shall we go to Ramothgilead to battle, or shall I forbear?
+And he said, Go ye up, and prosper, and they shall be delivered into
+your hand.
+
+18:15 And the king said to him, How many times shall I adjure thee
+that thou say nothing but the truth to me in the name of the LORD?
+18:16 Then he said, I did see all Israel scattered upon the mountains,
+as sheep that have no shepherd: and the LORD said, These have no
+master; let them return therefore every man to his house in peace.
+
+18:17 And the king of Israel said to Jehoshaphat, Did I not tell thee
+that he would not prophesy good unto me, but evil? 18:18 Again he
+said, Therefore hear the word of the LORD; I saw the LORD sitting upon
+his throne, and all the host of heaven standing on his right hand and
+on his left.
+
+18:19 And the LORD said, Who shall entice Ahab king of Israel, that he
+may go up and fall at Ramothgilead? And one spake saying after this
+manner, and another saying after that manner.
+
+18:20 Then there came out a spirit, and stood before the LORD, and
+said, I will entice him. And the LORD said unto him, Wherewith? 18:21
+And he said, I will go out, and be a lying spirit in the mouth of all
+his prophets. And the Lord said, Thou shalt entice him, and thou shalt
+also prevail: go out, and do even so.
+
+18:22 Now therefore, behold, the LORD hath put a lying spirit in the
+mouth of these thy prophets, and the LORD hath spoken evil against
+thee.
+
+18:23 Then Zedekiah the son of Chenaanah came near, and smote Micaiah
+upon the cheek, and said, Which way went the Spirit of the LORD from
+me to speak unto thee? 18:24 And Micaiah said, Behold, thou shalt see
+on that day when thou shalt go into an inner chamber to hide thyself.
+
+18:25 Then the king of Israel said, Take ye Micaiah, and carry him
+back to Amon the governor of the city, and to Joash the king's son;
+18:26 And say, Thus saith the king, Put this fellow in the prison, and
+feed him with bread of affliction and with water of affliction, until
+I return in peace.
+
+18:27 And Micaiah said, If thou certainly return in peace, then hath
+not the LORD spoken by me. And he said, Hearken, all ye people.
+
+18:28 So the king of Israel and Jehoshaphat the king of Judah went up
+to Ramothgilead.
+
+18:29 And the king of Israel said unto Jehoshaphat, I will disguise
+myself, and I will go to the battle; but put thou on thy robes. So the
+king of Israel disguised himself; and they went to the battle.
+
+18:30 Now the king of Syria had commanded the captains of the chariots
+that were with him, saying, Fight ye not with small or great, save
+only with the king of Israel.
+
+18:31 And it came to pass, when the captains of the chariots saw
+Jehoshaphat, that they said, It is the king of Israel. Therefore they
+compassed about him to fight: but Jehoshaphat cried out, and the LORD
+helped him; and God moved them to depart from him.
+
+18:32 For it came to pass, that, when the captains of the chariots
+perceived that it was not the king of Israel, they turned back again
+from pursuing him.
+
+18:33 And a certain man drew a bow at a venture, and smote the king of
+Israel between the joints of the harness: therefore he said to his
+chariot man, Turn thine hand, that thou mayest carry me out of the
+host; for I am wounded.
+
+18:34 And the battle increased that day: howbeit the king of Israel
+stayed himself up in his chariot against the Syrians until the even:
+and about the time of the sun going down he died.
+
+19:1 And Jehoshaphat the king of Judah returned to his house in peace
+to Jerusalem.
+
+19:2 And Jehu the son of Hanani the seer went out to meet him, and
+said to king Jehoshaphat, Shouldest thou help the ungodly, and love
+them that hate the LORD? therefore is wrath upon thee from before the
+LORD.
+
+19:3 Nevertheless there are good things found in thee, in that thou
+hast taken away the groves out of the land, and hast prepared thine
+heart to seek God.
+
+19:4 And Jehoshaphat dwelt at Jerusalem: and he went out again through
+the people from Beersheba to mount Ephraim, and brought them back unto
+the LORD God of their fathers.
+
+19:5 And he set judges in the land throughout all the fenced cities of
+Judah, city by city, 19:6 And said to the judges, Take heed what ye
+do: for ye judge not for man, but for the LORD, who is with you in the
+judgment.
+
+19:7 Wherefore now let the fear of the LORD be upon you; take heed and
+do it: for there is no iniquity with the LORD our God, nor respect of
+persons, nor taking of gifts.
+
+19:8 Moreover in Jerusalem did Jehoshaphat set of the Levites, and of
+the priests, and of the chief of the fathers of Israel, for the
+judgment of the LORD, and for controversies, when they returned to
+Jerusalem.
+
+19:9 And he charged them, saying, Thus shall ye do in the fear of the
+LORD, faithfully, and with a perfect heart.
+
+19:10 And what cause soever shall come to you of your brethren that
+dwell in your cities, between blood and blood, between law and
+commandment, statutes and judgments, ye shall even warn them that they
+trespass not against the LORD, and so wrath come upon you, and upon
+your brethren: this do, and ye shall not trespass.
+
+19:11 And, behold, Amariah the chief priest is over you in all matters
+of the LORD; and Zebadiah the son of Ishmael, the ruler of the house
+of Judah, for all the king's matters: also the Levites shall be
+officers before you. Deal courageously, and the LORD shall be with the
+good.
+
+20:1 It came to pass after this also, that the children of Moab, and
+the children of Ammon, and with them other beside the Ammonites, came
+against Jehoshaphat to battle.
+
+20:2 Then there came some that told Jehoshaphat, saying, There cometh
+a great multitude against thee from beyond the sea on this side Syria;
+and, behold, they be in Hazazontamar, which is Engedi.
+
+20:3 And Jehoshaphat feared, and set himself to seek the LORD, and
+proclaimed a fast throughout all Judah.
+
+20:4 And Judah gathered themselves together, to ask help of the LORD:
+even out of all the cities of Judah they came to seek the LORD.
+
+20:5 And Jehoshaphat stood in the congregation of Judah and Jerusalem,
+in the house of the LORD, before the new court, 20:6 And said, O LORD
+God of our fathers, art not thou God in heaven? and rulest not thou
+over all the kingdoms of the heathen? and in thine hand is there not
+power and might, so that none is able to withstand thee? 20:7 Art not
+thou our God, who didst drive out the inhabitants of this land before
+thy people Israel, and gavest it to the seed of Abraham thy friend for
+ever? 20:8 And they dwelt therein, and have built thee a sanctuary
+therein for thy name, saying, 20:9 If, when evil cometh upon us, as
+the sword, judgment, or pestilence, or famine, we stand before this
+house, and in thy presence, (for thy name is in this house,) and cry
+unto thee in our affliction, then thou wilt hear and help.
+
+20:10 And now, behold, the children of Ammon and Moab and mount Seir,
+whom thou wouldest not let Israel invade, when they came out of the
+land of Egypt, but they turned from them, and destroyed them not;
+20:11 Behold, I say, how they reward us, to come to cast us out of thy
+possession, which thou hast given us to inherit.
+
+20:12 O our God, wilt thou not judge them? for we have no might
+against this great company that cometh against us; neither know we
+what to do: but our eyes are upon thee.
+
+20:13 And all Judah stood before the LORD, with their little ones,
+their wives, and their children.
+
+20:14 Then upon Jahaziel the son of Zechariah, the son of Benaiah, the
+son of Jeiel, the son of Mattaniah, a Levite of the sons of Asaph,
+came the Spirit of the LORD in the midst of the congregation; 20:15
+And he said, Hearken ye, all Judah, and ye inhabitants of Jerusalem,
+and thou king Jehoshaphat, Thus saith the LORD unto you, Be not afraid
+nor dismayed by reason of this great multitude; for the battle is not
+yours, but God's.
+
+20:16 To morrow go ye down against them: behold, they come up by the
+cliff of Ziz; and ye shall find them at the end of the brook, before
+the wilderness of Jeruel.
+
+20:17 Ye shall not need to fight in this battle: set yourselves, stand
+ye still, and see the salvation of the LORD with you, O Judah and
+Jerusalem: fear not, nor be dismayed; to morrow go out against them:
+for the LORD will be with you.
+
+20:18 And Jehoshaphat bowed his head with his face to the ground: and
+all Judah and the inhabitants of Jerusalem fell before the LORD,
+worshipping the LORD.
+
+20:19 And the Levites, of the children of the Kohathites, and of the
+children of the Korhites, stood up to praise the LORD God of Israel
+with a loud voice on high.
+
+20:20 And they rose early in the morning, and went forth into the
+wilderness of Tekoa: and as they went forth, Jehoshaphat stood and
+said, Hear me, O Judah, and ye inhabitants of Jerusalem; Believe in
+the LORD your God, so shall ye be established; believe his prophets,
+so shall ye prosper.
+
+20:21 And when he had consulted with the people, he appointed singers
+unto the LORD, and that should praise the beauty of holiness, as they
+went out before the army, and to say, Praise the LORD; for his mercy
+endureth for ever.
+
+20:22 And when they began to sing and to praise, the LORD set
+ambushments against the children of Ammon, Moab, and mount Seir, which
+were come against Judah; and they were smitten.
+
+20:23 For the children of Ammon and Moab stood up against the
+inhabitants of mount Seir, utterly to slay and destroy them: and when
+they had made an end of the inhabitants of Seir, every one helped to
+destroy another.
+
+20:24 And when Judah came toward the watch tower in the wilderness,
+they looked unto the multitude, and, behold, they were dead bodies
+fallen to the earth, and none escaped.
+
+20:25 And when Jehoshaphat and his people came to take away the spoil
+of them, they found among them in abundance both riches with the dead
+bodies, and precious jewels, which they stripped off for themselves,
+more than they could carry away: and they were three days in gathering
+of the spoil, it was so much.
+
+20:26 And on the fourth day they assembled themselves in the valley of
+Berachah; for there they blessed the LORD: therefore the name of the
+same place was called, The valley of Berachah, unto this day.
+
+20:27 Then they returned, every man of Judah and Jerusalem, and
+Jehoshaphat in the forefront of them, to go again to Jerusalem with
+joy; for the LORD had made them to rejoice over their enemies.
+
+20:28 And they came to Jerusalem with psalteries and harps and
+trumpets unto the house of the LORD.
+
+20:29 And the fear of God was on all the kingdoms of those countries,
+when they had heard that the LORD fought against the enemies of
+Israel.
+
+20:30 So the realm of Jehoshaphat was quiet: for his God gave him rest
+round about.
+
+20:31 And Jehoshaphat reigned over Judah: he was thirty and five years
+old when he began to reign, and he reigned twenty and five years in
+Jerusalem.
+
+And his mother's name was Azubah the daughter of Shilhi.
+
+20:32 And he walked in the way of Asa his father, and departed not
+from it, doing that which was right in the sight of the LORD.
+
+20:33 Howbeit the high places were not taken away: for as yet the
+people had not prepared their hearts unto the God of their fathers.
+
+20:34 Now the rest of the acts of Jehoshaphat, first and last, behold,
+they are written in the book of Jehu the son of Hanani, who is
+mentioned in the book of the kings of Israel.
+
+20:35 And after this did Jehoshaphat king of Judah join himself with
+Ahaziah king of Israel, who did very wickedly: 20:36 And he joined
+himself with him to make ships to go to Tarshish: and they made the
+ships in Eziongaber.
+
+20:37 Then Eliezer the son of Dodavah of Mareshah prophesied against
+Jehoshaphat, saying, Because thou hast joined thyself with Ahaziah,
+the LORD hath broken thy works. And the ships were broken, that they
+were not able to go to Tarshish.
+
+21:1 Now Jehoshaphat slept with his fathers, and was buried with his
+fathers in the city of David. And Jehoram his son reigned in his
+stead.
+
+21:2 And he had brethren the sons of Jehoshaphat, Azariah, and Jehiel,
+and Zechariah, and Azariah, and Michael, and Shephatiah: all these
+were the sons of Jehoshaphat king of Israel.
+
+21:3 And their father gave them great gifts of silver, and of gold,
+and of precious things, with fenced cities in Judah: but the kingdom
+gave he to Jehoram; because he was the firstborn.
+
+21:4 Now when Jehoram was risen up to the kingdom of his father, he
+strengthened himself, and slew all his brethren with the sword, and
+divers also of the princes of Israel.
+
+21:5 Jehoram was thirty and two years old when he began to reign, and
+he reigned eight years in Jerusalem.
+
+21:6 And he walked in the way of the kings of Israel, like as did the
+house of Ahab: for he had the daughter of Ahab to wife: and he wrought
+that which was evil in the eyes of the LORD.
+
+21:7 Howbeit the LORD would not destroy the house of David, because of
+the covenant that he had made with David, and as he promised to give a
+light to him and to his sons for ever.
+
+21:8 In his days the Edomites revolted from under the dominion of
+Judah, and made themselves a king.
+
+21:9 Then Jehoram went forth with his princes, and all his chariots
+with him: and he rose up by night, and smote the Edomites which
+compassed him in, and the captains of the chariots.
+
+21:10 So the Edomites revolted from under the hand of Judah unto this
+day.
+
+The same time also did Libnah revolt from under his hand; because he
+had forsaken the LORD God of his fathers.
+
+21:11 Moreover he made high places in the mountains of Judah and
+caused the inhabitants of Jerusalem to commit fornication, and
+compelled Judah thereto.
+
+21:12 And there came a writing to him from Elijah the prophet, saying,
+Thus saith the LORD God of David thy father, Because thou hast not
+walked in the ways of Jehoshaphat thy father, nor in the ways of Asa
+king of Judah, 21:13 But hast walked in the way of the kings of
+Israel, and hast made Judah and the inhabitants of Jerusalem to go a
+whoring, like to the whoredoms of the house of Ahab, and also hast
+slain thy brethren of thy father's house, which were better than
+thyself: 21:14 Behold, with a great plague will the LORD smite thy
+people, and thy children, and thy wives, and all thy goods: 21:15 And
+thou shalt have great sickness by disease of thy bowels, until thy
+bowels fall out by reason of the sickness day by day.
+
+21:16 Moreover the LORD stirred up against Jehoram the spirit of the
+Philistines, and of the Arabians, that were near the Ethiopians: 21:17
+And they came up into Judah, and brake into it, and carried away all
+the substance that was found in the king's house, and his sons also,
+and his wives; so that there was never a son left him, save Jehoahaz,
+the youngest of his sons.
+
+21:18 And after all this the LORD smote him in his bowels with an
+incurable disease.
+
+21:19 And it came to pass, that in process of time, after the end of
+two years, his bowels fell out by reason of his sickness: so he died
+of sore diseases. And his people made no burning for him, like the
+burning of his fathers.
+
+21:20 Thirty and two years old was he when he began to reign, and he
+reigned in Jerusalem eight years, and departed without being desired.
+Howbeit they buried him in the city of David, but not in the
+sepulchres of the kings.
+
+22:1 And the inhabitants of Jerusalem made Ahaziah his youngest son
+king in his stead: for the band of men that came with the Arabians to
+the camp had slain all the eldest. So Ahaziah the son of Jehoram king
+of Judah reigned.
+
+22:2 Forty and two years old was Ahaziah when he began to reign, and
+he reigned one year in Jerusalem. His mother's name also was Athaliah
+the daughter of Omri.
+
+22:3 He also walked in the ways of the house of Ahab: for his mother
+was his counsellor to do wickedly.
+
+22:4 Wherefore he did evil in the sight of the LORD like the house of
+Ahab: for they were his counsellors after the death of his father to
+his destruction.
+
+22:5 He walked also after their counsel, and went with Jehoram the son
+of Ahab king of Israel to war against Hazael king of Syria at
+Ramothgilead: and the Syrians smote Joram.
+
+22:6 And he returned to be healed in Jezreel because of the wounds
+which were given him at Ramah, when he fought with Hazael king of
+Syria. And Azariah the son of Jehoram king of Judah went down to see
+Jehoram the son of Ahab at Jezreel, because he was sick.
+
+22:7 And the destruction of Ahaziah was of God by coming to Joram: for
+when he was come, he went out with Jehoram against Jehu the son of
+Nimshi, whom the LORD had anointed to cut off the house of Ahab.
+
+22:8 And it came to pass, that, when Jehu was executing judgment upon
+the house of Ahab, and found the princes of Judah, and the sons of the
+brethren of Ahaziah, that ministered to Ahaziah, he slew them.
+
+22:9 And he sought Ahaziah: and they caught him, (for he was hid in
+Samaria,) and brought him to Jehu: and when they had slain him, they
+buried him: Because, said they, he is the son of Jehoshaphat, who
+sought the LORD with all his heart. So the house of Ahaziah had no
+power to keep still the kingdom.
+
+22:10 But when Athaliah the mother of Ahaziah saw that her son was
+dead, she arose and destroyed all the seed royal of the house of
+Judah.
+
+22:11 But Jehoshabeath, the daughter of the king, took Joash the son
+of Ahaziah, and stole him from among the king's sons that were slain,
+and put him and his nurse in a bedchamber. So Jehoshabeath, the
+daughter of king Jehoram, the wife of Jehoiada the priest, (for she
+was the sister of Ahaziah,) hid him from Athaliah, so that she slew
+him not.
+
+22:12 And he was with them hid in the house of God six years: and
+Athaliah reigned over the land.
+
+23:1 And in the seventh year Jehoiada strengthened himself, and took
+the captains of hundreds, Azariah the son of Jeroham, and Ishmael the
+son of Jehohanan, and Azariah the son of Obed, and Maaseiah the son of
+Adaiah, and Elishaphat the son of Zichri, into covenant with him.
+
+23:2 And they went about in Judah, and gathered the Levites out of all
+the cities of Judah, and the chief of the fathers of Israel, and they
+came to Jerusalem.
+
+23:3 And all the congregation made a covenant with the king in the
+house of God. And he said unto them, Behold, the king's son shall
+reign, as the LORD hath said of the sons of David.
+
+23:4 This is the thing that ye shall do; A third part of you entering
+on the sabbath, of the priests and of the Levites, shall be porters of
+the doors; 23:5 And a third part shall be at the king's house; and a
+third part at the gate of the foundation: and all the people shall be
+in the courts of the house of the LORD.
+
+23:6 But let none come into the house of the LORD, save the priests,
+and they that minister of the Levites; they shall go in, for they are
+holy: but all the people shall keep the watch of the LORD.
+
+23:7 And the Levites shall compass the king round about, every man
+with his weapons in his hand; and whosoever else cometh into the
+house, he shall be put to death: but be ye with the king when he
+cometh in, and when he goeth out.
+
+23:8 So the Levites and all Judah did according to all things that
+Jehoiada the priest had commanded, and took every man his men that
+were to come in on the sabbath, with them that were to go out on the
+sabbath: for Jehoiada the priest dismissed not the courses.
+
+23:9 Moreover Jehoiada the priest delivered to the captains of
+hundreds spears, and bucklers, and shields, that had been king
+David's, which were in the house of God.
+
+23:10 And he set all the people, every man having his weapon in his
+hand, from the right side of the temple to the left side of the
+temple, along by the altar and the temple, by the king round about.
+
+23:11 Then they brought out the king's son, and put upon him the
+crown, and gave him the testimony, and made him king. And Jehoiada and
+his sons anointed him, and said, God save the king.
+
+23:12 Now when Athaliah heard the noise of the people running and
+praising the king, she came to the people into the house of the LORD:
+23:13 And she looked, and, behold, the king stood at his pillar at the
+entering in, and the princes and the trumpets by the king: and all the
+people of the land rejoiced, and sounded with trumpets, also the
+singers with instruments of musick, and such as taught to sing praise.
+Then Athaliah rent her clothes, and said, Treason, Treason.
+
+23:14 Then Jehoiada the priest brought out the captains of hundreds
+that were set over the host, and said unto them, Have her forth of the
+ranges: and whoso followeth her, let him be slain with the sword. For
+the priest said, Slay her not in the house of the LORD.
+
+23:15 So they laid hands on her; and when she was come to the entering
+of the horse gate by the king's house, they slew her there.
+
+23:16 And Jehoiada made a covenant between him, and between all the
+people, and between the king, that they should be the LORD's people.
+
+23:17 Then all the people went to the house of Baal, and brake it
+down, and brake his altars and his images in pieces, and slew Mattan
+the priest of Baal before the altars.
+
+23:18 Also Jehoiada appointed the offices of the house of the LORD by
+the hand of the priests the Levites, whom David had distributed in the
+house of the LORD, to offer the burnt offerings of the LORD, as it is
+written in the law of Moses, with rejoicing and with singing, as it
+was ordained by David.
+
+23:19 And he set the porters at the gates of the house of the LORD,
+that none which was unclean in any thing should enter in.
+
+23:20 And he took the captains of hundreds, and the nobles, and the
+governors of the people, and all the people of the land, and brought
+down the king from the house of the LORD: and they came through the
+high gate into the king's house, and set the king upon the throne of
+the kingdom.
+
+23:21 And all the people of the land rejoiced: and the city was quiet,
+after that they had slain Athaliah with the sword.
+
+24:1 Joash was seven years old when he began to reign, and he reigned
+forty years in Jerusalem. His mother's name also was Zibiah of
+Beersheba.
+
+24:2 And Joash did that which was right in the sight of the LORD all
+the days of Jehoiada the priest.
+
+24:3 And Jehoiada took for him two wives; and he begat sons and
+daughters.
+
+24:4 And it came to pass after this, that Joash was minded to repair
+the house of the LORD.
+
+24:5 And he gathered together the priests and the Levites, and said to
+them, Go out unto the cities of Judah, and gather of all Israel money
+to repair the house of your God from year to year, and see that ye
+hasten the matter. Howbeit the Levites hastened it not.
+
+24:6 And the king called for Jehoiada the chief, and said unto him,
+Why hast thou not required of the Levites to bring in out of Judah and
+out of Jerusalem the collection, according to the commandment of Moses
+the servant of the LORD, and of the congregation of Israel, for the
+tabernacle of witness? 24:7 For the sons of Athaliah, that wicked
+woman, had broken up the house of God; and also all the dedicated
+things of the house of the LORD did they bestow upon Baalim.
+
+24:8 And at the king's commandment they made a chest, and set it
+without at the gate of the house of the LORD.
+
+24:9 And they made a proclamation through Judah and Jerusalem, to
+bring in to the LORD the collection that Moses the servant of God laid
+upon Israel in the wilderness.
+
+24:10 And all the princes and all the people rejoiced, and brought in,
+and cast into the chest, until they had made an end.
+
+24:11 Now it came to pass, that at what time the chest was brought
+unto the king's office by the hand of the Levites, and when they saw
+that there was much money, the king's scribe and the high priest's
+officer came and emptied the chest, and took it, and carried it to his
+place again. Thus they did day by day, and gathered money in
+abundance.
+
+24:12 And the king and Jehoiada gave it to such as did the work of the
+service of the house of the LORD, and hired masons and carpenters to
+repair the house of the LORD, and also such as wrought iron and brass
+to mend the house of the LORD.
+
+24:13 So the workmen wrought, and the work was perfected by them, and
+they set the house of God in his state, and strengthened it.
+
+24:14 And when they had finished it, they brought the rest of the
+money before the king and Jehoiada, whereof were made vessels for the
+house of the LORD, even vessels to minister, and to offer withal, and
+spoons, and vessels of gold and silver. And they offered burnt
+offerings in the house of the LORD continually all the days of
+Jehoiada.
+
+24:15 But Jehoiada waxed old, and was full of days when he died; an
+hundred and thirty years old was he when he died.
+
+24:16 And they buried him in the city of David among the kings,
+because he had done good in Israel, both toward God, and toward his
+house.
+
+24:17 Now after the death of Jehoiada came the princes of Judah, and
+made obeisance to the king. Then the king hearkened unto them.
+
+24:18 And they left the house of the LORD God of their fathers, and
+served groves and idols: and wrath came upon Judah and Jerusalem for
+this their trespass.
+
+24:19 Yet he sent prophets to them, to bring them again unto the LORD;
+and they testified against them: but they would not give ear.
+
+24:20 And the Spirit of God came upon Zechariah the son of Jehoiada
+the priest, which stood above the people, and said unto them, Thus
+saith God, Why transgress ye the commandments of the LORD, that ye
+cannot prosper? because ye have forsaken the LORD, he hath also
+forsaken you.
+
+24:21 And they conspired against him, and stoned him with stones at
+the commandment of the king in the court of the house of the LORD.
+
+24:22 Thus Joash the king remembered not the kindness which Jehoiada
+his father had done to him, but slew his son. And when he died, he
+said, The LORD look upon it, and require it.
+
+24:23 And it came to pass at the end of the year, that the host of
+Syria came up against him: and they came to Judah and Jerusalem, and
+destroyed all the princes of the people from among the people, and
+sent all the spoil of them unto the king of Damascus.
+
+24:24 For the army of the Syrians came with a small company of men,
+and the LORD delivered a very great host into their hand, because they
+had forsaken the LORD God of their fathers. So they executed judgment
+against Joash.
+
+24:25 And when they were departed from him, (for they left him in
+great diseases,) his own servants conspired against him for the blood
+of the sons of Jehoiada the priest, and slew him on his bed, and he
+died: and they buried him in the city of David, but they buried him
+not in the sepulchres of the kings.
+
+24:26 And these are they that conspired against him; Zabad the son of
+Shimeath an Ammonitess, and Jehozabad the son of Shimrith a Moabitess.
+
+24:27 Now concerning his sons, and the greatness of the burdens laid
+upon him, and the repairing of the house of God, behold, they are
+written in the story of the book of the kings. And Amaziah his son
+reigned in his stead.
+
+25:1 Amaziah was twenty and five years old when he began to reign, and
+he reigned twenty and nine years in Jerusalem. And his mother's name
+was Jehoaddan of Jerusalem.
+
+25:2 And he did that which was right in the sight of the LORD, but not
+with a perfect heart.
+
+25:3 Now it came to pass, when the kingdom was established to him,
+that he slew his servants that had killed the king his father.
+
+25:4 But he slew not their children, but did as it is written in the
+law in the book of Moses, where the LORD commanded, saying, The
+fathers shall not die for the children, neither shall the children die
+for the fathers, but every man shall die for his own sin.
+
+25:5 Moreover Amaziah gathered Judah together, and made them captains
+over thousands, and captains over hundreds, according to the houses of
+their fathers, throughout all Judah and Benjamin: and he numbered them
+from twenty years old and above, and found them three hundred thousand
+choice men, able to go forth to war, that could handle spear and
+shield.
+
+25:6 He hired also an hundred thousand mighty men of valour out of
+Israel for an hundred talents of silver.
+
+25:7 But there came a man of God to him, saying, O king, let not the
+army of Israel go with thee; for the LORD is not with Israel, to wit,
+with all the children of Ephraim.
+
+25:8 But if thou wilt go, do it; be strong for the battle: God shall
+make thee fall before the enemy: for God hath power to help, and to
+cast down.
+
+25:9 And Amaziah said to the man of God, But what shall we do for the
+hundred talents which I have given to the army of Israel? And the man
+of God answered, The LORD is able to give thee much more than this.
+
+25:10 Then Amaziah separated them, to wit, the army that was come to
+him out of Ephraim, to go home again: wherefore their anger was
+greatly kindled against Judah, and they returned home in great anger.
+
+25:11 And Amaziah strengthened himself, and led forth his people, and
+went to the valley of salt, and smote of the children of Seir ten
+thousand.
+
+25:12 And other ten thousand left alive did the children of Judah
+carry away captive, and brought them unto the top of the rock, and
+cast them down from the top of the rock, that they all were broken in
+pieces.
+
+25:13 But the soldiers of the army which Amaziah sent back, that they
+should not go with him to battle, fell upon the cities of Judah, from
+Samaria even unto Bethhoron, and smote three thousand of them, and
+took much spoil.
+
+25:14 Now it came to pass, after that Amaziah was come from the
+slaughter of the Edomites, that he brought the gods of the children of
+Seir, and set them up to be his gods, and bowed down himself before
+them, and burned incense unto them.
+
+25:15 Wherefore the anger of the LORD was kindled against Amaziah, and
+he sent unto him a prophet, which said unto him, Why hast thou sought
+after the gods of the people, which could not deliver their own people
+out of thine hand? 25:16 And it came to pass, as he talked with him,
+that the king said unto him, Art thou made of the king's counsel?
+forbear; why shouldest thou be smitten? Then the prophet forbare, and
+said, I know that God hath determined to destroy thee, because thou
+hast done this, and hast not hearkened unto my counsel.
+
+25:17 Then Amaziah king of Judah took advice, and sent to Joash, the
+son of Jehoahaz, the son of Jehu, king of Israel, saying, Come, let us
+see one another in the face.
+
+25:18 And Joash king of Israel sent to Amaziah king of Judah, saying,
+The thistle that was in Lebanon sent to the cedar that was in Lebanon,
+saying, Give thy daughter to my son to wife: and there passed by a
+wild beast that was in Lebanon, and trode down the thistle.
+
+25:19 Thou sayest, Lo, thou hast smitten the Edomites; and thine heart
+lifteth thee up to boast: abide now at home; why shouldest thou meddle
+to thine hurt, that thou shouldest fall, even thou, and Judah with
+thee? 25:20 But Amaziah would not hear; for it came of God, that he
+might deliver them into the hand of their enemies, because they sought
+after the gods of Edom.
+
+25:21 So Joash the king of Israel went up; and they saw one another in
+the face, both he and Amaziah king of Judah, at Bethshemesh, which
+belongeth to Judah.
+
+25:22 And Judah was put to the worse before Israel, and they fled
+every man to his tent.
+
+25:23 And Joash the king of Israel took Amaziah king of Judah, the son
+of Joash, the son of Jehoahaz, at Bethshemesh, and brought him to
+Jerusalem, and brake down the wall of Jerusalem from the gate of
+Ephraim to the corner gate, four hundred cubits.
+
+25:24 And he took all the gold and the silver, and all the vessels
+that were found in the house of God with Obededom, and the treasures
+of the king's house, the hostages also, and returned to Samaria.
+
+25:25 And Amaziah the son of Joash king of Judah lived after the death
+of Joash son of Jehoahaz king of Israel fifteen years.
+
+25:26 Now the rest of the acts of Amaziah, first and last, behold, are
+they not written in the book of the kings of Judah and Israel? 25:27
+Now after the time that Amaziah did turn away from following the LORD
+they made a conspiracy against him in Jerusalem; and he fled to
+Lachish: but they sent to Lachish after him, and slew him there.
+
+25:28 And they brought him upon horses, and buried him with his
+fathers in the city of Judah.
+
+26:1 Then all the people of Judah took Uzziah, who was sixteen years
+old, and made him king in the room of his father Amaziah.
+
+26:2 He built Eloth, and restored it to Judah, after that the king
+slept with his fathers.
+
+26:3 Sixteen years old was Uzziah when he began to reign, and he
+reigned fifty and two years in Jerusalem. His mother's name also was
+Jecoliah of Jerusalem.
+
+26:4 And he did that which was right in the sight of the LORD,
+according to all that his father Amaziah did.
+
+26:5 And he sought God in the days of Zechariah, who had understanding
+in the visions of God: and as long as he sought the LORD, God made him
+to prosper.
+
+26:6 And he went forth and warred against the Philistines, and brake
+down the wall of Gath, and the wall of Jabneh, and the wall of Ashdod,
+and built cities about Ashdod, and among the Philistines.
+
+26:7 And God helped him against the Philistines, and against the
+Arabians that dwelt in Gurbaal, and the Mehunims.
+
+26:8 And the Ammonites gave gifts to Uzziah: and his name spread
+abroad even to the entering in of Egypt; for he strengthened himself
+exceedingly.
+
+26:9 Moreover Uzziah built towers in Jerusalem at the corner gate, and
+at the valley gate, and at the turning of the wall, and fortified
+them.
+
+26:10 Also he built towers in the desert, and digged many wells: for
+he had much cattle, both in the low country, and in the plains:
+husbandmen also, and vine dressers in the mountains, and in Carmel:
+for he loved husbandry.
+
+26:11 Moreover Uzziah had an host of fighting men, that went out to
+war by bands, according to the number of their account by the hand of
+Jeiel the scribe and Maaseiah the ruler, under the hand of Hananiah,
+one of the king's captains.
+
+26:12 The whole number of the chief of the fathers of the mighty men
+of valour were two thousand and six hundred.
+
+26:13 And under their hand was an army, three hundred thousand and
+seven thousand and five hundred, that made war with mighty power, to
+help the king against the enemy.
+
+26:14 And Uzziah prepared for them throughout all the host shields,
+and spears, and helmets, and habergeons, and bows, and slings to cast
+stones.
+
+26:15 And he made in Jerusalem engines, invented by cunning men, to be
+on the towers and upon the bulwarks, to shoot arrows and great stones
+withal.
+
+And his name spread far abroad; for he was marvellously helped, till
+he was strong.
+
+26:16 But when he was strong, his heart was lifted up to his
+destruction: for he transgressed against the LORD his God, and went
+into the temple of the LORD to burn incense upon the altar of incense.
+
+26:17 And Azariah the priest went in after him, and with him fourscore
+priests of the LORD, that were valiant men: 26:18 And they withstood
+Uzziah the king, and said unto him, It appertaineth not unto thee,
+Uzziah, to burn incense unto the LORD, but to the priests the sons of
+Aaron, that are consecrated to burn incense: go out of the sanctuary;
+for thou hast trespassed; neither shall it be for thine honour from
+the LORD God.
+
+26:19 Then Uzziah was wroth, and had a censer in his hand to burn
+incense: and while he was wroth with the priests, the leprosy even
+rose up in his forehead before the priests in the house of the LORD,
+from beside the incense altar.
+
+26:20 And Azariah the chief priest, and all the priests, looked upon
+him, and, behold, he was leprous in his forehead, and they thrust him
+out from thence; yea, himself hasted also to go out, because the LORD
+had smitten him.
+
+26:21 And Uzziah the king was a leper unto the day of his death, and
+dwelt in a several house, being a leper; for he was cut off from the
+house of the LORD: and Jotham his son was over the king's house,
+judging the people of the land.
+
+26:22 Now the rest of the acts of Uzziah, first and last, did Isaiah
+the prophet, the son of Amoz, write.
+
+26:23 So Uzziah slept with his fathers, and they buried him with his
+fathers in the field of the burial which belonged to the kings; for
+they said, He is a leper: and Jotham his son reigned in his stead.
+
+27:1 Jotham was twenty and five years old when he began to reign, and
+he reigned sixteen years in Jerusalem. His mother's name also was
+Jerushah, the daughter of Zadok.
+
+27:2 And he did that which was right in the sight of the LORD,
+according to all that his father Uzziah did: howbeit he entered not
+into the temple of the LORD. And the people did yet corruptly.
+
+27:3 He built the high gate of the house of the LORD, and on the wall
+of Ophel he built much.
+
+27:4 Moreover he built cities in the mountains of Judah, and in the
+forests he built castles and towers.
+
+27:5 He fought also with the king of the Ammonites, and prevailed
+against them. And the children of Ammon gave him the same year an
+hundred talents of silver, and ten thousand measures of wheat, and ten
+thousand of barley. So much did the children of Ammon pay unto him,
+both the second year, and the third.
+
+27:6 So Jotham became mighty, because he prepared his ways before the
+LORD his God.
+
+27:7 Now the rest of the acts of Jotham, and all his wars, and his
+ways, lo, they are written in the book of the kings of Israel and
+Judah.
+
+27:8 He was five and twenty years old when he began to reign, and
+reigned sixteen years in Jerusalem.
+
+27:9 And Jotham slept with his fathers, and they buried him in the
+city of David: and Ahaz his son reigned in his stead.
+
+28:1 Ahaz was twenty years old when he began to reign, and he reigned
+sixteen years in Jerusalem: but he did not that which was right in the
+sight of the LORD, like David his father: 28:2 For he walked in the
+ways of the kings of Israel, and made also molten images for Baalim.
+
+28:3 Moreover he burnt incense in the valley of the son of Hinnom, and
+burnt his children in the fire, after the abominations of the heathen
+whom the LORD had cast out before the children of Israel.
+
+28:4 He sacrificed also and burnt incense in the high places, and on
+the hills, and under every green tree.
+
+28:5 Wherefore the LORD his God delivered him into the hand of the
+king of Syria; and they smote him, and carried away a great multitude
+of them captives, and brought them to Damascus. And he was also
+delivered into the hand of the king of Israel, who smote him with a
+great slaughter.
+
+28:6 For Pekah the son of Remaliah slew in Judah an hundred and twenty
+thousand in one day, which were all valiant men; because they had
+forsaken the LORD God of their fathers.
+
+28:7 And Zichri, a mighty man of Ephraim, slew Maaseiah the king's
+son, and Azrikam the governor of the house, and Elkanah that was next
+to the king.
+
+28:8 And the children of Israel carried away captive of their brethren
+two hundred thousand, women, sons, and daughters, and took also away
+much spoil from them, and brought the spoil to Samaria.
+
+28:9 But a prophet of the LORD was there, whose name was Oded: and he
+went out before the host that came to Samaria, and said unto them,
+Behold, because the LORD God of your fathers was wroth with Judah, he
+hath delivered them into your hand, and ye have slain them in a rage
+that reacheth up unto heaven.
+
+28:10 And now ye purpose to keep under the children of Judah and
+Jerusalem for bondmen and bondwomen unto you: but are there not with
+you, even with you, sins against the LORD your God? 28:11 Now hear me
+therefore, and deliver the captives again, which ye have taken captive
+of your brethren: for the fierce wrath of the LORD is upon you.
+
+28:12 Then certain of the heads of the children of Ephraim, Azariah
+the son of Johanan, Berechiah the son of Meshillemoth, and Jehizkiah
+the son of Shallum, and Amasa the son of Hadlai, stood up against them
+that came from the war, 28:13 And said unto them, Ye shall not bring
+in the captives hither: for whereas we have offended against the LORD
+already, ye intend to add more to our sins and to our trespass: for
+our trespass is great, and there is fierce wrath against Israel.
+
+28:14 So the armed men left the captives and the spoil before the
+princes and all the congregation.
+
+28:15 And the men which were expressed by name rose up, and took the
+captives, and with the spoil clothed all that were naked among them,
+and arrayed them, and shod them, and gave them to eat and to drink,
+and anointed them, and carried all the feeble of them upon asses, and
+brought them to Jericho, the city of palm trees, to their brethren:
+then they returned to Samaria.
+
+28:16 At that time did king Ahaz send unto the kings of Assyria to
+help him.
+
+28:17 For again the Edomites had come and smitten Judah, and carried
+away captives.
+
+28:18 The Philistines also had invaded the cities of the low country,
+and of the south of Judah, and had taken Bethshemesh, and Ajalon, and
+Gederoth, and Shocho with the villages thereof, and Timnah with the
+villages thereof, Gimzo also and the villages thereof: and they dwelt
+there.
+
+28:19 For the LORD brought Judah low because of Ahaz king of Israel;
+for he made Judah naked, and transgressed sore against the LORD.
+
+28:20 And Tilgathpilneser king of Assyria came unto him, and
+distressed him, but strengthened him not.
+
+28:21 For Ahaz took away a portion out of the house of the LORD, and
+out of the house of the king, and of the princes, and gave it unto the
+king of Assyria: but he helped him not.
+
+28:22 And in the time of his distress did he trespass yet more against
+the LORD: this is that king Ahaz.
+
+28:23 For he sacrificed unto the gods of Damascus, which smote him:
+and he said, Because the gods of the kings of Syria help them,
+therefore will I sacrifice to them, that they may help me. But they
+were the ruin of him, and of all Israel.
+
+28:24 And Ahaz gathered together the vessels of the house of God, and
+cut in pieces the vessels of the house of God, and shut up the doors
+of the house of the LORD, and he made him altars in every corner of
+Jerusalem.
+
+28:25 And in every several city of Judah he made high places to burn
+incense unto other gods, and provoked to anger the LORD God of his
+fathers.
+
+28:26 Now the rest of his acts and of all his ways, first and last,
+behold, they are written in the book of the kings of Judah and Israel.
+
+28:27 And Ahaz slept with his fathers, and they buried him in the
+city, even in Jerusalem: but they brought him not into the sepulchres
+of the kings of Israel: and Hezekiah his son reigned in his stead.
+
+29:1 Hezekiah began to reign when he was five and twenty years old,
+and he reigned nine and twenty years in Jerusalem. And his mother's
+name was Abijah, the daughter of Zechariah.
+
+29:2 And he did that which was right in the sight of the LORD,
+according to all that David his father had done.
+
+29:3 He in the first year of his reign, in the first month, opened the
+doors of the house of the LORD, and repaired them.
+
+29:4 And he brought in the priests and the Levites, and gathered them
+together into the east street, 29:5 And said unto them, Hear me, ye
+Levites, sanctify now yourselves, and sanctify the house of the LORD
+God of your fathers, and carry forth the filthiness out of the holy
+place.
+
+29:6 For our fathers have trespassed, and done that which was evil in
+the eyes of the LORD our God, and have forsaken him, and have turned
+away their faces from the habitation of the LORD, and turned their
+backs.
+
+29:7 Also they have shut up the doors of the porch, and put out the
+lamps, and have not burned incense nor offered burnt offerings in the
+holy place unto the God of Israel.
+
+29:8 Wherefore the wrath of the LORD was upon Judah and Jerusalem, and
+he hath delivered them to trouble, to astonishment, and to hissing, as
+ye see with your eyes.
+
+29:9 For, lo, our fathers have fallen by the sword, and our sons and
+our daughters and our wives are in captivity for this.
+
+29:10 Now it is in mine heart to make a covenant with the LORD God of
+Israel, that his fierce wrath may turn away from us.
+
+29:11 My sons, be not now negligent: for the LORD hath chosen you to
+stand before him, to serve him, and that ye should minister unto him,
+and burn incense.
+
+29:12 Then the Levites arose, Mahath the son of Amasai, and Joel the
+son of Azariah, of the sons of the Kohathites: and of the sons of
+Merari, Kish the son of Abdi, and Azariah the son of Jehalelel: and of
+the Gershonites; Joah the son of Zimmah, and Eden the son of Joah:
+29:13 And of the sons of Elizaphan; Shimri, and Jeiel: and of the sons
+of Asaph; Zechariah, and Mattaniah: 29:14 And of the sons of Heman;
+Jehiel, and Shimei: and of the sons of Jeduthun; Shemaiah, and Uzziel.
+
+29:15 And they gathered their brethren, and sanctified themselves, and
+came, according to the commandment of the king, by the words of the
+LORD, to cleanse the house of the LORD.
+
+29:16 And the priests went into the inner part of the house of the
+LORD, to cleanse it, and brought out all the uncleanness that they
+found in the temple of the LORD into the court of the house of the
+LORD. And the Levites took it, to carry it out abroad into the brook
+Kidron.
+
+29:17 Now they began on the first day of the first month to sanctify,
+and on the eighth day of the month came they to the porch of the LORD:
+so they sanctified the house of the LORD in eight days; and in the
+sixteenth day of the first month they made an end.
+
+29:18 Then they went in to Hezekiah the king, and said, We have
+cleansed all the house of the LORD, and the altar of burnt offering,
+with all the vessels thereof, and the shewbread table, with all the
+vessels thereof.
+
+29:19 Moreover all the vessels, which king Ahaz in his reign did cast
+away in his transgression, have we prepared and sanctified, and,
+behold, they are before the altar of the LORD.
+
+29:20 Then Hezekiah the king rose early, and gathered the rulers of
+the city, and went up to the house of the LORD.
+
+29:21 And they brought seven bullocks, and seven rams, and seven
+lambs, and seven he goats, for a sin offering for the kingdom, and for
+the sanctuary, and for Judah. And he commanded the priests the sons of
+Aaron to offer them on the altar of the LORD.
+
+29:22 So they killed the bullocks, and the priests received the blood,
+and sprinkled it on the altar: likewise, when they had killed the
+rams, they sprinkled the blood upon the altar: they killed also the
+lambs, and they sprinkled the blood upon the altar.
+
+29:23 And they brought forth the he goats for the sin offering before
+the king and the congregation; and they laid their hands upon them:
+29:24 And the priests killed them, and they made reconciliation with
+their blood upon the altar, to make an atonement for all Israel: for
+the king commanded that the burnt offering and the sin offering should
+be made for all Israel.
+
+29:25 And he set the Levites in the house of the LORD with cymbals,
+with psalteries, and with harps, according to the commandment of
+David, and of Gad the king's seer, and Nathan the prophet: for so was
+the commandment of the LORD by his prophets.
+
+29:26 And the Levites stood with the instruments of David, and the
+priests with the trumpets.
+
+29:27 And Hezekiah commanded to offer the burnt offering upon the
+altar.
+
+And when the burnt offering began, the song of the LORD began also
+with the trumpets, and with the instruments ordained by David king of
+Israel.
+
+29:28 And all the congregation worshipped, and the singers sang, and
+the trumpeters sounded: and all this continued until the burnt
+offering was finished.
+
+29:29 And when they had made an end of offering, the king and all that
+were present with him bowed themselves, and worshipped.
+
+29:30 Moreover Hezekiah the king and the princes commanded the Levites
+to sing praise unto the LORD with the words of David, and of Asaph the
+seer. And they sang praises with gladness, and they bowed their heads
+and worshipped.
+
+29:31 Then Hezekiah answered and said, Now ye have consecrated
+yourselves unto the LORD, come near and bring sacrifices and thank
+offerings into the house of the LORD. And the congregation brought in
+sacrifices and thank offerings; and as many as were of a free heart
+burnt offerings.
+
+29:32 And the number of the burnt offerings, which the congregation
+brought, was threescore and ten bullocks, an hundred rams, and two
+hundred lambs: all these were for a burnt offering to the LORD.
+
+29:33 And the consecrated things were six hundred oxen and three
+thousand sheep.
+
+29:34 But the priests were too few, so that they could not flay all
+the burnt offerings: wherefore their brethren the Levites did help
+them, till the work was ended, and until the other priests had
+sanctified themselves: for the Levites were more upright in heart to
+sanctify themselves than the priests.
+
+29:35 And also the burnt offerings were in abundance, with the fat of
+the peace offerings, and the drink offerings for every burnt offering.
+So the service of the house of the LORD was set in order.
+
+29:36 And Hezekiah rejoiced, and all the people, that God had prepared
+the people: for the thing was done suddenly.
+
+30:1 And Hezekiah sent to all Israel and Judah, and wrote letters also
+to Ephraim and Manasseh, that they should come to the house of the
+LORD at Jerusalem, to keep the passover unto the LORD God of Israel.
+
+30:2 For the king had taken counsel, and his princes, and all the
+congregation in Jerusalem, to keep the passover in the second month.
+
+30:3 For they could not keep it at that time, because the priests had
+not sanctified themselves sufficiently, neither had the people
+gathered themselves together to Jerusalem.
+
+30:4 And the thing pleased the king and all the congregation.
+
+30:5 So they established a decree to make proclamation throughout all
+Israel, from Beersheba even to Dan, that they should come to keep the
+passover unto the LORD God of Israel at Jerusalem: for they had not
+done it of a long time in such sort as it was written.
+
+30:6 So the posts went with the letters from the king and his princes
+throughout all Israel and Judah, and according to the commandment of
+the king, saying, Ye children of Israel, turn again unto the LORD God
+of Abraham, Isaac, and Israel, and he will return to the remnant of
+you, that are escaped out of the hand of the kings of Assyria.
+
+30:7 And be not ye like your fathers, and like your brethren, which
+trespassed against the LORD God of their fathers, who therefore gave
+them up to desolation, as ye see.
+
+30:8 Now be ye not stiffnecked, as your fathers were, but yield
+yourselves unto the LORD, and enter into his sanctuary, which he hath
+sanctified for ever: and serve the LORD your God, that the fierceness
+of his wrath may turn away from you.
+
+30:9 For if ye turn again unto the LORD, your brethren and your
+children shall find compassion before them that lead them captive, so
+that they shall come again into this land: for the LORD your God is
+gracious and merciful, and will not turn away his face from you, if ye
+return unto him.
+
+30:10 So the posts passed from city to city through the country of
+Ephraim and Manasseh even unto Zebulun: but they laughed them to
+scorn, and mocked them.
+
+30:11 Nevertheless divers of Asher and Manasseh and of Zebulun humbled
+themselves, and came to Jerusalem.
+
+30:12 Also in Judah the hand of God was to give them one heart to do
+the commandment of the king and of the princes, by the word of the
+LORD.
+
+30:13 And there assembled at Jerusalem much people to keep the feast
+of unleavened bread in the second month, a very great congregation.
+
+30:14 And they arose and took away the altars that were in Jerusalem,
+and all the altars for incense took they away, and cast them into the
+brook Kidron.
+
+30:15 Then they killed the passover on the fourteenth day of the
+second month: and the priests and the Levites were ashamed, and
+sanctified themselves, and brought in the burnt offerings into the
+house of the LORD.
+
+30:16 And they stood in their place after their manner, according to
+the law of Moses the man of God: the priests sprinkled the blood,
+which they received of the hand of the Levites.
+
+30:17 For there were many in the congregation that were not
+sanctified: therefore the Levites had the charge of the killing of the
+passovers for every one that was not clean, to sanctify them unto the
+LORD.
+
+30:18 For a multitude of the people, even many of Ephraim, and
+Manasseh, Issachar, and Zebulun, had not cleansed themselves, yet did
+they eat the passover otherwise than it was written. But Hezekiah
+prayed for them, saying, The good LORD pardon every one 30:19 That
+prepareth his heart to seek God, the LORD God of his fathers, though
+he be not cleansed according to the purification of the sanctuary.
+
+30:20 And the LORD hearkened to Hezekiah, and healed the people.
+
+30:21 And the children of Israel that were present at Jerusalem kept
+the feast of unleavened bread seven days with great gladness: and the
+Levites and the priests praised the LORD day by day, singing with loud
+instruments unto the LORD.
+
+30:22 And Hezekiah spake comfortably unto all the Levites that taught
+the good knowledge of the LORD: and they did eat throughout the feast
+seven days, offering peace offerings, and making confession to the
+LORD God of their fathers.
+
+30:23 And the whole assembly took counsel to keep other seven days:
+and they kept other seven days with gladness.
+
+30:24 For Hezekiah king of Judah did give to the congregation a
+thousand bullocks and seven thousand sheep; and the princes gave to
+the congregation a thousand bullocks and ten thousand sheep: and a
+great number of priests sanctified themselves.
+
+30:25 And all the congregation of Judah, with the priests and the
+Levites, and all the congregation that came out of Israel, and the
+strangers that came out of the land of Israel, and that dwelt in
+Judah, rejoiced.
+
+30:26 So there was great joy in Jerusalem: for since the time of
+Solomon the son of David king of Israel there was not the like in
+Jerusalem.
+
+30:27 Then the priests the Levites arose and blessed the people: and
+their voice was heard, and their prayer came up to his holy dwelling
+place, even unto heaven.
+
+31:1 Now when all this was finished, all Israel that were present went
+out to the cities of Judah, and brake the images in pieces, and cut
+down the groves, and threw down the high places and the altars out of
+all Judah and Benjamin, in Ephraim also and Manasseh, until they had
+utterly destroyed them all. Then all the children of Israel returned,
+every man to his possession, into their own cities.
+
+31:2 And Hezekiah appointed the courses of the priests and the Levites
+after their courses, every man according to his service, the priests
+and Levites for burnt offerings and for peace offerings, to minister,
+and to give thanks, and to praise in the gates of the tents of the
+LORD.
+
+31:3 He appointed also the king's portion of his substance for the
+burnt offerings, to wit, for the morning and evening burnt offerings,
+and the burnt offerings for the sabbaths, and for the new moons, and
+for the set feasts, as it is written in the law of the LORD.
+
+31:4 Moreover he commanded the people that dwelt in Jerusalem to give
+the portion of the priests and the Levites, that they might be
+encouraged in the law of the LORD.
+
+31:5 And as soon as the commandment came abroad, the children of
+Israel brought in abundance the firstfruits of corn, wine, and oil,
+and honey, and of all the increase of the field; and the tithe of all
+things brought they in abundantly.
+
+31:6 And concerning the children of Israel and Judah, that dwelt in
+the cities of Judah, they also brought in the tithe of oxen and sheep,
+and the tithe of holy things which were consecrated unto the LORD
+their God, and laid them by heaps.
+
+31:7 In the third month they began to lay the foundation of the heaps,
+and finished them in the seventh month.
+
+31:8 And when Hezekiah and the princes came and saw the heaps, they
+blessed the LORD, and his people Israel.
+
+31:9 Then Hezekiah questioned with the priests and the Levites
+concerning the heaps.
+
+31:10 And Azariah the chief priest of the house of Zadok answered him,
+and said, Since the people began to bring the offerings into the house
+of the LORD, we have had enough to eat, and have left plenty: for the
+LORD hath blessed his people; and that which is left is this great
+store.
+
+31:11 Then Hezekiah commanded to prepare chambers in the house of the
+LORD; and they prepared them, 31:12 And brought in the offerings and
+the tithes and the dedicated things faithfully: over which Cononiah
+the Levite was ruler, and Shimei his brother was the next.
+
+31:13 And Jehiel, and Azaziah, and Nahath, and Asahel, and Jerimoth,
+and Jozabad, and Eliel, and Ismachiah, and Mahath, and Benaiah, were
+overseers under the hand of Cononiah and Shimei his brother, at the
+commandment of Hezekiah the king, and Azariah the ruler of the house
+of God.
+
+31:14 And Kore the son of Imnah the Levite, the porter toward the
+east, was over the freewill offerings of God, to distribute the
+oblations of the LORD, and the most holy things.
+
+31:15 And next him were Eden, and Miniamin, and Jeshua, and Shemaiah,
+Amariah, and Shecaniah, in the cities of the priests, in their set
+office, to give to their brethren by courses, as well to the great as
+to the small: 31:16 Beside their genealogy of males, from three years
+old and upward, even unto every one that entereth into the house of
+the LORD, his daily portion for their service in their charges
+according to their courses; 31:17 Both to the genealogy of the priests
+by the house of their fathers, and the Levites from twenty years old
+and upward, in their charges by their courses; 31:18 And to the
+genealogy of all their little ones, their wives, and their sons, and
+their daughters, through all the congregation: for in their set office
+they sanctified themselves in holiness: 31:19 Also of the sons of
+Aaron the priests, which were in the fields of the suburbs of their
+cities, in every several city, the men that were expressed by name, to
+give portions to all the males among the priests, and to all that were
+reckoned by genealogies among the Levites.
+
+31:20 And thus did Hezekiah throughout all Judah, and wrought that
+which was good and right and truth before the LORD his God.
+
+31:21 And in every work that he began in the service of the house of
+God, and in the law, and in the commandments, to seek his God, he did
+it with all his heart, and prospered.
+
+32:1 After these things, and the establishment thereof, Sennacherib
+king of Assyria came, and entered into Judah, and encamped against the
+fenced cities, and thought to win them for himself.
+
+32:2 And when Hezekiah saw that Sennacherib was come, and that he was
+purposed to fight against Jerusalem, 32:3 He took counsel with his
+princes and his mighty men to stop the waters of the fountains which
+were without the city: and they did help him.
+
+32:4 So there was gathered much people together, who stopped all the
+fountains, and the brook that ran through the midst of the land,
+saying, Why should the kings of Assyria come, and find much water?
+32:5 Also he strengthened himself, and built up all the wall that was
+broken, and raised it up to the towers, and another wall without, and
+repaired Millo in the city of David, and made darts and shields in
+abundance.
+
+32:6 And he set captains of war over the people, and gathered them
+together to him in the street of the gate of the city, and spake
+comfortably to them, saying, 32:7 Be strong and courageous, be not
+afraid nor dismayed for the king of Assyria, nor for all the multitude
+that is with him: for there be more with us than with him: 32:8 With
+him is an arm of flesh; but with us is the LORD our God to help us,
+and to fight our battles. And the people rested themselves upon the
+words of Hezekiah king of Judah.
+
+32:9 After this did Sennacherib king of Assyria send his servants to
+Jerusalem, (but he himself laid siege against Lachish, and all his
+power with him,) unto Hezekiah king of Judah, and unto all Judah that
+were at Jerusalem, saying, 32:10 Thus saith Sennacherib king of
+Assyria, Whereon do ye trust, that ye abide in the siege in Jerusalem?
+32:11 Doth not Hezekiah persuade you to give over yourselves to die by
+famine and by thirst, saying, The LORD our God shall deliver us out of
+the hand of the king of Assyria? 32:12 Hath not the same Hezekiah
+taken away his high places and his altars, and commanded Judah and
+Jerusalem, saying, Ye shall worship before one altar, and burn incense
+upon it? 32:13 Know ye not what I and my fathers have done unto all
+the people of other lands? were the gods of the nations of those lands
+any ways able to deliver their lands out of mine hand? 32:14 Who was
+there among all the gods of those nations that my fathers utterly
+destroyed, that could deliver his people out of mine hand, that your
+God should be able to deliver you out of mine hand? 32:15 Now
+therefore let not Hezekiah deceive you, nor persuade you on this
+manner, neither yet believe him: for no god of any nation or kingdom
+was able to deliver his people out of mine hand, and out of the hand
+of my fathers: how much less shall your God deliver you out of mine
+hand? 32:16 And his servants spake yet more against the LORD God, and
+against his servant Hezekiah.
+
+32:17 He wrote also letters to rail on the LORD God of Israel, and to
+speak against him, saying, As the gods of the nations of other lands
+have not delivered their people out of mine hand, so shall not the God
+of Hezekiah deliver his people out of mine hand.
+
+32:18 Then they cried with a loud voice in the Jews' speech unto the
+people of Jerusalem that were on the wall, to affright them, and to
+trouble them; that they might take the city.
+
+32:19 And they spake against the God of Jerusalem, as against the gods
+of the people of the earth, which were the work of the hands of man.
+
+32:20 And for this cause Hezekiah the king, and the prophet Isaiah the
+son of Amoz, prayed and cried to heaven.
+
+32:21 And the LORD sent an angel, which cut off all the mighty men of
+valour, and the leaders and captains in the camp of the king of
+Assyria. So he returned with shame of face to his own land. And when
+he was come into the house of his god, they that came forth of his own
+bowels slew him there with the sword.
+
+32:22 Thus the LORD saved Hezekiah and the inhabitants of Jerusalem
+from the hand of Sennacherib the king of Assyria, and from the hand of
+all other, and guided them on every side.
+
+32:23 And many brought gifts unto the LORD to Jerusalem, and presents
+to Hezekiah king of Judah: so that he was magnified in the sight of
+all nations from thenceforth.
+
+32:24 In those days Hezekiah was sick to the death, and prayed unto
+the LORD: and he spake unto him, and he gave him a sign.
+
+32:25 But Hezekiah rendered not again according to the benefit done
+unto him; for his heart was lifted up: therefore there was wrath upon
+him, and upon Judah and Jerusalem.
+
+32:26 Notwithstanding Hezekiah humbled himself for the pride of his
+heart, both he and the inhabitants of Jerusalem, so that the wrath of
+the LORD came not upon them in the days of Hezekiah.
+
+32:27 And Hezekiah had exceeding much riches and honour: and he made
+himself treasuries for silver, and for gold, and for precious stones,
+and for spices, and for shields, and for all manner of pleasant
+jewels; 32:28 Storehouses also for the increase of corn, and wine, and
+oil; and stalls for all manner of beasts, and cotes for flocks.
+
+32:29 Moreover he provided him cities, and possessions of flocks and
+herds in abundance: for God had given him substance very much.
+
+32:30 This same Hezekiah also stopped the upper watercourse of Gihon,
+and brought it straight down to the west side of the city of David.
+And Hezekiah prospered in all his works.
+
+32:31 Howbeit in the business of the ambassadors of the princes of
+Babylon, who sent unto him to enquire of the wonder that was done in
+the land, God left him, to try him, that he might know all that was in
+his heart.
+
+32:32 Now the rest of the acts of Hezekiah, and his goodness, behold,
+they are written in the vision of Isaiah the prophet, the son of Amoz,
+and in the book of the kings of Judah and Israel.
+
+32:33 And Hezekiah slept with his fathers, and they buried him in the
+chiefest of the sepulchres of the sons of David: and all Judah and the
+inhabitants of Jerusalem did him honour at his death. And Manasseh his
+son reigned in his stead.
+
+33:1 Manasseh was twelve years old when he began to reign, and he
+reigned fifty and five years in Jerusalem: 33:2 But did that which was
+evil in the sight of the LORD, like unto the abominations of the
+heathen, whom the LORD had cast out before the children of Israel.
+
+33:3 For he built again the high places which Hezekiah his father had
+broken down, and he reared up altars for Baalim, and made groves, and
+worshipped all the host of heaven, and served them.
+
+33:4 Also he built altars in the house of the LORD, whereof the LORD
+had said, In Jerusalem shall my name be for ever.
+
+33:5 And he built altars for all the host of heaven in the two courts
+of the house of the LORD.
+
+33:6 And he caused his children to pass through the fire in the valley
+of the son of Hinnom: also he observed times, and used enchantments,
+and used witchcraft, and dealt with a familiar spirit, and with
+wizards: he wrought much evil in the sight of the LORD, to provoke him
+to anger.
+
+33:7 And he set a carved image, the idol which he had made, in the
+house of God, of which God had said to David and to Solomon his son,
+In this house, and in Jerusalem, which I have chosen before all the
+tribes of Israel, will I put my name for ever: 33:8 Neither will I any
+more remove the foot of Israel from out of the land which I have
+appointed for your fathers; so that they will take heed to do all that
+I have commanded them, according to the whole law and the statutes and
+the ordinances by the hand of Moses.
+
+33:9 So Manasseh made Judah and the inhabitants of Jerusalem to err,
+and to do worse than the heathen, whom the LORD had destroyed before
+the children of Israel.
+
+33:10 And the LORD spake to Manasseh, and to his people: but they
+would not hearken.
+
+33:11 Wherefore the LORD brought upon them the captains of the host of
+the king of Assyria, which took Manasseh among the thorns, and bound
+him with fetters, and carried him to Babylon.
+
+33:12 And when he was in affliction, he besought the LORD his God, and
+humbled himself greatly before the God of his fathers, 33:13 And
+prayed unto him: and he was intreated of him, and heard his
+supplication, and brought him again to Jerusalem into his kingdom.
+Then Manasseh knew that the LORD he was God.
+
+33:14 Now after this he built a wall without the city of David, on the
+west side of Gihon, in the valley, even to the entering in at the fish
+gate, and compassed about Ophel, and raised it up a very great height,
+and put captains of war in all the fenced cities of Judah.
+
+33:15 And he took away the strange gods, and the idol out of the house
+of the LORD, and all the altars that he had built in the mount of the
+house of the LORD, and in Jerusalem, and cast them out of the city.
+
+33:16 And he repaired the altar of the LORD, and sacrificed thereon
+peace offerings and thank offerings, and commanded Judah to serve the
+LORD God of Israel.
+
+33:17 Nevertheless the people did sacrifice still in the high places,
+yet unto the LORD their God only.
+
+33:18 Now the rest of the acts of Manasseh, and his prayer unto his
+God, and the words of the seers that spake to him in the name of the
+LORD God of Israel, behold, they are written in the book of the kings
+of Israel.
+
+33:19 His prayer also, and how God was intreated of him, and all his
+sins, and his trespass, and the places wherein he built high places,
+and set up groves and graven images, before he was humbled: behold,
+they are written among the sayings of the seers.
+
+33:20 So Manasseh slept with his fathers, and they buried him in his
+own house: and Amon his son reigned in his stead.
+
+33:21 Amon was two and twenty years old when he began to reign, and
+reigned two years in Jerusalem.
+
+33:22 But he did that which was evil in the sight of the LORD, as did
+Manasseh his father: for Amon sacrificed unto all the carved images
+which Manasseh his father had made, and served them; 33:23 And humbled
+not himself before the LORD, as Manasseh his father had humbled
+himself; but Amon trespassed more and more.
+
+33:24 And his servants conspired against him, and slew him in his own
+house.
+
+33:25 But the people of the land slew all them that had conspired
+against king Amon; and the people of the land made Josiah his son king
+in his stead.
+
+34:1 Josiah was eight years old when he began to reign, and he reigned
+in Jerusalem one and thirty years.
+
+34:2 And he did that which was right in the sight of the LORD, and
+walked in the ways of David his father, and declined neither to the
+right hand, nor to the left.
+
+34:3 For in the eighth year of his reign, while he was yet young, he
+began to seek after the God of David his father: and in the twelfth
+year he began to purge Judah and Jerusalem from the high places, and
+the groves, and the carved images, and the molten images.
+
+34:4 And they brake down the altars of Baalim in his presence; and the
+images, that were on high above them, he cut down; and the groves, and
+the carved images, and the molten images, he brake in pieces, and made
+dust of them, and strowed it upon the graves of them that had
+sacrificed unto them.
+
+34:5 And he burnt the bones of the priests upon their altars, and
+cleansed Judah and Jerusalem.
+
+34:6 And so did he in the cities of Manasseh, and Ephraim, and Simeon,
+even unto Naphtali, with their mattocks round about.
+
+34:7 And when he had broken down the altars and the groves, and had
+beaten the graven images into powder, and cut down all the idols
+throughout all the land of Israel, he returned to Jerusalem.
+
+34:8 Now in the eighteenth year of his reign, when he had purged the
+land, and the house, he sent Shaphan the son of Azaliah, and Maaseiah
+the governor of the city, and Joah the son of Joahaz the recorder, to
+repair the house of the LORD his God.
+
+34:9 And when they came to Hilkiah the high priest, they delivered the
+money that was brought into the house of God, which the Levites that
+kept the doors had gathered of the hand of Manasseh and Ephraim, and
+of all the remnant of Israel, and of all Judah and Benjamin; and they
+returned to Jerusalem.
+
+34:10 And they put it in the hand of the workmen that had the
+oversight of the house of the LORD, and they gave it to the workmen
+that wrought in the house of the LORD, to repair and amend the house:
+34:11 Even to the artificers and builders gave they it, to buy hewn
+stone, and timber for couplings, and to floor the houses which the
+kings of Judah had destroyed.
+
+34:12 And the men did the work faithfully: and the overseers of them
+were Jahath and Obadiah, the Levites, of the sons of Merari; and
+Zechariah and Meshullam, of the sons of the Kohathites, to set it
+forward; and other of the Levites, all that could skill of instruments
+of musick.
+
+34:13 Also they were over the bearers of burdens, and were overseers
+of all that wrought the work in any manner of service: and of the
+Levites there were scribes, and officers, and porters.
+
+34:14 And when they brought out the money that was brought into the
+house of the LORD, Hilkiah the priest found a book of the law of the
+LORD given by Moses.
+
+34:15 And Hilkiah answered and said to Shaphan the scribe, I have
+found the book of the law in the house of the LORD. And Hilkiah
+delivered the book to Shaphan.
+
+34:16 And Shaphan carried the book to the king, and brought the king
+word back again, saying, All that was committed to thy servants, they
+do it.
+
+34:17 And they have gathered together the money that was found in the
+house of the LORD, and have delivered it into the hand of the
+overseers, and to the hand of the workmen.
+
+34:18 Then Shaphan the scribe told the king, saying, Hilkiah the
+priest hath given me a book. And Shaphan read it before the king.
+
+34:19 And it came to pass, when the king had heard the words of the
+law, that he rent his clothes.
+
+34:20 And the king commanded Hilkiah, and Ahikam the son of Shaphan,
+and Abdon the son of Micah, and Shaphan the scribe, and Asaiah a
+servant of the king's, saying, 34:21 Go, enquire of the LORD for me,
+and for them that are left in Israel and in Judah, concerning the
+words of the book that is found: for great is the wrath of the LORD
+that is poured out upon us, because our fathers have not kept the word
+of the LORD, to do after all that is written in this book.
+
+34:22 And Hilkiah, and they that the king had appointed, went to
+Huldah the prophetess, the wife of Shallum the son of Tikvath, the son
+of Hasrah, keeper of the wardrobe; (now she dwelt in Jerusalem in the
+college:) and they spake to her to that effect.
+
+34:23 And she answered them, Thus saith the LORD God of Israel, Tell
+ye the man that sent you to me, 34:24 Thus saith the LORD, Behold, I
+will bring evil upon this place, and upon the inhabitants thereof,
+even all the curses that are written in the book which they have read
+before the king of Judah: 34:25 Because they have forsaken me, and
+have burned incense unto other gods, that they might provoke me to
+anger with all the works of their hands; therefore my wrath shall be
+poured out upon this place, and shall not be quenched.
+
+34:26 And as for the king of Judah, who sent you to enquire of the
+LORD, so shall ye say unto him, Thus saith the LORD God of Israel
+concerning the words which thou hast heard; 34:27 Because thine heart
+was tender, and thou didst humble thyself before God, when thou
+heardest his words against this place, and against the inhabitants
+thereof, and humbledst thyself before me, and didst rend thy clothes,
+and weep before me; I have even heard thee also, saith the LORD.
+
+34:28 Behold, I will gather thee to thy fathers, and thou shalt be
+gathered to thy grave in peace, neither shall thine eyes see all the
+evil that I will bring upon this place, and upon the inhabitants of
+the same. So they brought the king word again.
+
+34:29 Then the king sent and gathered together all the elders of Judah
+and Jerusalem.
+
+34:30 And the king went up into the house of the LORD, and all the men
+of Judah, and the inhabitants of Jerusalem, and the priests, and the
+Levites, and all the people, great and small: and he read in their
+ears all the words of the book of the covenant that was found in the
+house of the LORD.
+
+34:31 And the king stood in his place, and made a covenant before the
+LORD, to walk after the LORD, and to keep his commandments, and his
+testimonies, and his statutes, with all his heart, and with all his
+soul, to perform the words of the covenant which are written in this
+book.
+
+34:32 And he caused all that were present in Jerusalem and Benjamin to
+stand to it. And the inhabitants of Jerusalem did according to the
+covenant of God, the God of their fathers.
+
+34:33 And Josiah took away all the abominations out of all the
+countries that pertained to the children of Israel, and made all that
+were present in Israel to serve, even to serve the LORD their God. And
+all his days they departed not from following the LORD, the God of
+their fathers.
+
+35:1 Moreover Josiah kept a passover unto the LORD in Jerusalem: and
+they killed the passover on the fourteenth day of the first month.
+
+35:2 And he set the priests in their charges, and encouraged them to
+the service of the house of the LORD, 35:3 And said unto the Levites
+that taught all Israel, which were holy unto the LORD, Put the holy
+ark in the house which Solomon the son of David king of Israel did
+build; it shall not be a burden upon your shoulders: serve now the
+LORD your God, and his people Israel, 35:4 And prepare yourselves by
+the houses of your fathers, after your courses, according to the
+writing of David king of Israel, and according to the writing of
+Solomon his son.
+
+35:5 And stand in the holy place according to the divisions of the
+families of the fathers of your brethren the people, and after the
+division of the families of the Levites.
+
+35:6 So kill the passover, and sanctify yourselves, and prepare your
+brethren, that they may do according to the word of the LORD by the
+hand of Moses.
+
+35:7 And Josiah gave to the people, of the flock, lambs and kids, all
+for the passover offerings, for all that were present, to the number
+of thirty thousand, and three thousand bullocks: these were of the
+king's substance.
+
+35:8 And his princes gave willingly unto the people, to the priests,
+and to the Levites: Hilkiah and Zechariah and Jehiel, rulers of the
+house of God, gave unto the priests for the passover offerings two
+thousand and six hundred small cattle and three hundred oxen.
+
+35:9 Conaniah also, and Shemaiah and Nethaneel, his brethren, and
+Hashabiah and Jeiel and Jozabad, chief of the Levites, gave unto the
+Levites for passover offerings five thousand small cattle, and five
+hundred oxen.
+
+35:10 So the service was prepared, and the priests stood in their
+place, and the Levites in their courses, according to the king's
+commandment.
+
+35:11 And they killed the passover, and the priests sprinkled the
+blood from their hands, and the Levites flayed them.
+
+35:12 And they removed the burnt offerings, that they might give
+according to the divisions of the families of the people, to offer
+unto the LORD, as it is written in the book of Moses. And so did they
+with the oxen.
+
+35:13 And they roasted the passover with fire according to the
+ordinance: but the other holy offerings sod they in pots, and in
+caldrons, and in pans, and divided them speedily among all the people.
+
+35:14 And afterward they made ready for themselves, and for the
+priests: because the priests the sons of Aaron were busied in offering
+of burnt offerings and the fat until night; therefore the Levites
+prepared for themselves, and for the priests the sons of Aaron.
+
+35:15 And the singers the sons of Asaph were in their place, according
+to the commandment of David, and Asaph, and Heman, and Jeduthun the
+king's seer; and the porters waited at every gate; they might not
+depart from their service; for their brethren the Levites prepared for
+them.
+
+35:16 So all the service of the LORD was prepared the same day, to
+keep the passover, and to offer burnt offerings upon the altar of the
+LORD, according to the commandment of king Josiah.
+
+35:17 And the children of Israel that were present kept the passover
+at that time, and the feast of unleavened bread seven days.
+
+35:18 And there was no passover like to that kept in Israel from the
+days of Samuel the prophet; neither did all the kings of Israel keep
+such a passover as Josiah kept, and the priests, and the Levites, and
+all Judah and Israel that were present, and the inhabitants of
+Jerusalem.
+
+35:19 In the eighteenth year of the reign of Josiah was this passover
+kept.
+
+35:20 After all this, when Josiah had prepared the temple, Necho king
+of Egypt came up to fight against Charchemish by Euphrates: and Josiah
+went out against him.
+
+35:21 But he sent ambassadors to him, saying, What have I to do with
+thee, thou king of Judah? I come not against thee this day, but
+against the house wherewith I have war: for God commanded me to make
+haste: forbear thee from meddling with God, who is with me, that he
+destroy thee not.
+
+35:22 Nevertheless Josiah would not turn his face from him, but
+disguised himself, that he might fight with him, and hearkened not
+unto the words of Necho from the mouth of God, and came to fight in
+the valley of Megiddo.
+
+35:23 And the archers shot at king Josiah; and the king said to his
+servants, Have me away; for I am sore wounded.
+
+35:24 His servants therefore took him out of that chariot, and put him
+in the second chariot that he had; and they brought him to Jerusalem,
+and he died, and was buried in one of the sepulchres of his fathers.
+And all Judah and Jerusalem mourned for Josiah.
+
+35:25 And Jeremiah lamented for Josiah: and all the singing men and
+the singing women spake of Josiah in their lamentations to this day,
+and made them an ordinance in Israel: and, behold, they are written in
+the lamentations.
+
+35:26 Now the rest of the acts of Josiah, and his goodness, according
+to that which was written in the law of the LORD, 35:27 And his deeds,
+first and last, behold, they are written in the book of the kings of
+Israel and Judah.
+
+36:1 Then the people of the land took Jehoahaz the son of Josiah, and
+made him king in his father's stead in Jerusalem.
+
+36:2 Jehoahaz was twenty and three years old when he began to reign,
+and he reigned three months in Jerusalem.
+
+36:3 And the king of Egypt put him down at Jerusalem, and condemned
+the land in an hundred talents of silver and a talent of gold.
+
+36:4 And the king of Egypt made Eliakim his brother king over Judah
+and Jerusalem, and turned his name to Jehoiakim. And Necho took
+Jehoahaz his brother, and carried him to Egypt.
+
+36:5 Jehoiakim was twenty and five years old when he began to reign,
+and he reigned eleven years in Jerusalem: and he did that which was
+evil in the sight of the LORD his God.
+
+36:6 Against him came up Nebuchadnezzar king of Babylon, and bound him
+in fetters, to carry him to Babylon.
+
+36:7 Nebuchadnezzar also carried of the vessels of the house of the
+LORD to Babylon, and put them in his temple at Babylon.
+
+36:8 Now the rest of the acts of Jehoiakim, and his abominations which
+he did, and that which was found in him, behold, they are written in
+the book of the kings of Israel and Judah: and Jehoiachin his son
+reigned in his stead.
+
+36:9 Jehoiachin was eight years old when he began to reign, and he
+reigned three months and ten days in Jerusalem: and he did that which
+was evil in the sight of the LORD.
+
+36:10 And when the year was expired, king Nebuchadnezzar sent, and
+brought him to Babylon, with the goodly vessels of the house of the
+LORD, and made Zedekiah his brother king over Judah and Jerusalem.
+
+36:11 Zedekiah was one and twenty years old when he began to reign,
+and reigned eleven years in Jerusalem.
+
+36:12 And he did that which was evil in the sight of the LORD his God,
+and humbled not himself before Jeremiah the prophet speaking from the
+mouth of the LORD.
+
+36:13 And he also rebelled against king Nebuchadnezzar, who had made
+him swear by God: but he stiffened his neck, and hardened his heart
+from turning unto the LORD God of Israel.
+
+36:14 Moreover all the chief of the priests, and the people,
+transgressed very much after all the abominations of the heathen; and
+polluted the house of the LORD which he had hallowed in Jerusalem.
+
+36:15 And the LORD God of their fathers sent to them by his
+messengers, rising up betimes, and sending; because he had compassion
+on his people, and on his dwelling place: 36:16 But they mocked the
+messengers of God, and despised his words, and misused his prophets,
+until the wrath of the LORD arose against his people, till there was
+no remedy.
+
+36:17 Therefore he brought upon them the king of the Chaldees, who
+slew their young men with the sword in the house of their sanctuary,
+and had no compassion upon young man or maiden, old man, or him that
+stooped for age: he gave them all into his hand.
+
+36:18 And all the vessels of the house of God, great and small, and
+the treasures of the house of the LORD, and the treasures of the king,
+and of his princes; all these he brought to Babylon.
+
+36:19 And they burnt the house of God, and brake down the wall of
+Jerusalem, and burnt all the palaces thereof with fire, and destroyed
+all the goodly vessels thereof.
+
+36:20 And them that had escaped from the sword carried he away to
+Babylon; where they were servants to him and his sons until the reign
+of the kingdom of Persia: 36:21 To fulfil the word of the LORD by the
+mouth of Jeremiah, until the land had enjoyed her sabbaths: for as
+long as she lay desolate she kept sabbath, to fulfil threescore and
+ten years.
+
+36:22 Now in the first year of Cyrus king of Persia, that the word of
+the LORD spoken by the mouth of Jeremiah might be accomplished, the
+LORD stirred up the spirit of Cyrus king of Persia, that he made a
+proclamation throughout all his kingdom, and put it also in writing,
+saying, 36:23 Thus saith Cyrus king of Persia, All the kingdoms of the
+earth hath the LORD God of heaven given me; and he hath charged me to
+build him an house in Jerusalem, which is in Judah. Who is there among
+you of all his people? The LORD his God be with him, and let him go up.
+
+
+
+
+Ezra
+
+
+1:1 Now in the first year of Cyrus king of Persia, that the word of
+the LORD by the mouth of Jeremiah might be fulfilled, the LORD stirred
+up the spirit of Cyrus king of Persia, that he made a proclamation
+throughout all his kingdom, and put it also in writing, saying, 1:2
+Thus saith Cyrus king of Persia, The LORD God of heaven hath given me
+all the kingdoms of the earth; and he hath charged me to build him an
+house at Jerusalem, which is in Judah.
+
+1:3 Who is there among you of all his people? his God be with him, and
+let him go up to Jerusalem, which is in Judah, and build the house of
+the LORD God of Israel, (he is the God,) which is in Jerusalem.
+
+1:4 And whosoever remaineth in any place where he sojourneth, let the
+men of his place help him with silver, and with gold, and with goods,
+and with beasts, beside the freewill offering for the house of God
+that is in Jerusalem.
+
+1:5 Then rose up the chief of the fathers of Judah and Benjamin, and
+the priests, and the Levites, with all them whose spirit God had
+raised, to go up to build the house of the LORD which is in Jerusalem.
+
+1:6 And all they that were about them strengthened their hands with
+vessels of silver, with gold, with goods, and with beasts, and with
+precious things, beside all that was willingly offered.
+
+1:7 Also Cyrus the king brought forth the vessels of the house of the
+LORD, which Nebuchadnezzar had brought forth out of Jerusalem, and had
+put them in the house of his gods; 1:8 Even those did Cyrus king of
+Persia bring forth by the hand of Mithredath the treasurer, and
+numbered them unto Sheshbazzar, the prince of Judah.
+
+1:9 And this is the number of them: thirty chargers of gold, a
+thousand chargers of silver, nine and twenty knives, 1:10 Thirty
+basons of gold, silver basons of a second sort four hundred and ten,
+and other vessels a thousand.
+
+1:11 All the vessels of gold and of silver were five thousand and four
+hundred. All these did Sheshbazzar bring up with them of the captivity
+that were brought up from Babylon unto Jerusalem.
+
+2:1 Now these are the children of the province that went up out of the
+captivity, of those which had been carried away, whom Nebuchadnezzar
+the king of Babylon had carried away unto Babylon, and came again unto
+Jerusalem and Judah, every one unto his city; 2:2 Which came with
+Zerubbabel: Jeshua, Nehemiah, Seraiah, Reelaiah, Mordecai, Bilshan,
+Mizpar, Bigvai, Rehum, Baanah. The number of the men of the people of
+Israel: 2:3 The children of Parosh, two thousand an hundred seventy
+and two.
+
+2:4 The children of Shephatiah, three hundred seventy and two.
+
+2:5 The children of Arah, seven hundred seventy and five.
+
+2:6 The children of Pahathmoab, of the children of Jeshua and Joab,
+two thousand eight hundred and twelve.
+
+2:7 The children of Elam, a thousand two hundred fifty and four.
+
+2:8 The children of Zattu, nine hundred forty and five.
+
+2:9 The children of Zaccai, seven hundred and threescore.
+
+2:10 The children of Bani, six hundred forty and two.
+
+2:11 The children of Bebai, six hundred twenty and three.
+
+2:12 The children of Azgad, a thousand two hundred twenty and two.
+
+2:13 The children of Adonikam, six hundred sixty and six.
+
+2:14 The children of Bigvai, two thousand fifty and six.
+
+2:15 The children of Adin, four hundred fifty and four.
+
+2:16 The children of Ater of Hezekiah, ninety and eight.
+
+2:17 The children of Bezai, three hundred twenty and three.
+
+2:18 The children of Jorah, an hundred and twelve.
+
+2:19 The children of Hashum, two hundred twenty and three.
+
+2:20 The children of Gibbar, ninety and five.
+
+2:21 The children of Bethlehem, an hundred twenty and three.
+
+2:22 The men of Netophah, fifty and six.
+
+2:23 The men of Anathoth, an hundred twenty and eight.
+
+2:24 The children of Azmaveth, forty and two.
+
+2:25 The children of Kirjatharim, Chephirah, and Beeroth, seven
+hundred and forty and three.
+
+2:26 The children of Ramah and Gaba, six hundred twenty and one.
+
+2:27 The men of Michmas, an hundred twenty and two.
+
+2:28 The men of Bethel and Ai, two hundred twenty and three.
+
+2:29 The children of Nebo, fifty and two.
+
+2:30 The children of Magbish, an hundred fifty and six.
+
+2:31 The children of the other Elam, a thousand two hundred fifty and
+four.
+
+2:32 The children of Harim, three hundred and twenty.
+
+2:33 The children of Lod, Hadid, and Ono, seven hundred twenty and
+five.
+
+2:34 The children of Jericho, three hundred forty and five.
+
+2:35 The children of Senaah, three thousand and six hundred and
+thirty.
+
+2:36 The priests: the children of Jedaiah, of the house of Jeshua,
+nine hundred seventy and three.
+
+2:37 The children of Immer, a thousand fifty and two.
+
+2:38 The children of Pashur, a thousand two hundred forty and seven.
+
+2:39 The children of Harim, a thousand and seventeen.
+
+2:40 The Levites: the children of Jeshua and Kadmiel, of the children
+of Hodaviah, seventy and four.
+
+2:41 The singers: the children of Asaph, an hundred twenty and eight.
+
+2:42 The children of the porters: the children of Shallum, the
+children of Ater, the children of Talmon, the children of Akkub, the
+children of Hatita, the children of Shobai, in all an hundred thirty
+and nine.
+
+2:43 The Nethinims: the children of Ziha, the children of Hasupha, the
+children of Tabbaoth, 2:44 The children of Keros, the children of
+Siaha, the children of Padon, 2:45 The children of Lebanah, the
+children of Hagabah, the children of Akkub, 2:46 The children of
+Hagab, the children of Shalmai, the children of Hanan, 2:47 The
+children of Giddel, the children of Gahar, the children of Reaiah,
+2:48 The children of Rezin, the children of Nekoda, the children of
+Gazzam, 2:49 The children of Uzza, the children of Paseah, the
+children of Besai, 2:50 The children of Asnah, the children of
+Mehunim, the children of Nephusim, 2:51 The children of Bakbuk, the
+children of Hakupha, the children of Harhur, 2:52 The children of
+Bazluth, the children of Mehida, the children of Harsha, 2:53 The
+children of Barkos, the children of Sisera, the children of Thamah,
+2:54 The children of Neziah, the children of Hatipha.
+
+2:55 The children of Solomon's servants: the children of Sotai, the
+children of Sophereth, the children of Peruda, 2:56 The children of
+Jaalah, the children of Darkon, the children of Giddel, 2:57 The
+children of Shephatiah, the children of Hattil, the children of
+Pochereth of Zebaim, the children of Ami.
+
+2:58 All the Nethinims, and the children of Solomon's servants, were
+three hundred ninety and two.
+
+2:59 And these were they which went up from Telmelah, Telharsa,
+Cherub, Addan, and Immer: but they could not shew their father's
+house, and their seed, whether they were of Israel: 2:60 The children
+of Delaiah, the children of Tobiah, the children of Nekoda, six
+hundred fifty and two.
+
+2:61 And of the children of the priests: the children of Habaiah, the
+children of Koz, the children of Barzillai; which took a wife of the
+daughters of Barzillai the Gileadite, and was called after their name:
+2:62 These sought their register among those that were reckoned by
+genealogy, but they were not found: therefore were they, as polluted,
+put from the priesthood.
+
+2:63 And the Tirshatha said unto them, that they should not eat of the
+most holy things, till there stood up a priest with Urim and with
+Thummim.
+
+2:64 The whole congregation together was forty and two thousand three
+hundred and threescore, 2:65 Beside their servants and their maids, of
+whom there were seven thousand three hundred thirty and seven: and
+there were among them two hundred singing men and singing women.
+
+2:66 Their horses were seven hundred thirty and six; their mules, two
+hundred forty and five; 2:67 Their camels, four hundred thirty and
+five; their asses, six thousand seven hundred and twenty.
+
+2:68 And some of the chief of the fathers, when they came to the house
+of the LORD which is at Jerusalem, offered freely for the house of God
+to set it up in his place: 2:69 They gave after their ability unto the
+treasure of the work threescore and one thousand drams of gold, and
+five thousand pound of silver, and one hundred priests' garments.
+
+2:70 So the priests, and the Levites, and some of the people, and the
+singers, and the porters, and the Nethinims, dwelt in their cities,
+and all Israel in their cities.
+
+3:1 And when the seventh month was come, and the children of Israel
+were in the cities, the people gathered themselves together as one man
+to Jerusalem.
+
+3:2 Then stood up Jeshua the son of Jozadak, and his brethren the
+priests, and Zerubbabel the son of Shealtiel, and his brethren, and
+builded the altar of the God of Israel, to offer burnt offerings
+thereon, as it is written in the law of Moses the man of God.
+
+3:3 And they set the altar upon his bases; for fear was upon them
+because of the people of those countries: and they offered burnt
+offerings thereon unto the LORD, even burnt offerings morning and
+evening.
+
+3:4 They kept also the feast of tabernacles, as it is written, and
+offered the daily burnt offerings by number, according to the custom,
+as the duty of every day required; 3:5 And afterward offered the
+continual burnt offering, both of the new moons, and of all the set
+feasts of the LORD that were consecrated, and of every one that
+willingly offered a freewill offering unto the LORD.
+
+3:6 From the first day of the seventh month began they to offer burnt
+offerings unto the LORD. But the foundation of the temple of the LORD
+was not yet laid.
+
+3:7 They gave money also unto the masons, and to the carpenters; and
+meat, and drink, and oil, unto them of Zidon, and to them of Tyre, to
+bring cedar trees from Lebanon to the sea of Joppa, according to the
+grant that they had of Cyrus king of Persia.
+
+3:8 Now in the second year of their coming unto the house of God at
+Jerusalem, in the second month, began Zerubbabel the son of Shealtiel,
+and Jeshua the son of Jozadak, and the remnant of their brethren the
+priests and the Levites, and all they that were come out of the
+captivity unto Jerusalem; and appointed the Levites, from twenty years
+old and upward, to set forward the work of the house of the LORD.
+
+3:9 Then stood Jeshua with his sons and his brethren, Kadmiel and his
+sons, the sons of Judah, together, to set forward the workmen in the
+house of God: the sons of Henadad, with their sons and their brethren
+the Levites.
+
+3:10 And when the builders laid the foundation of the temple of the
+LORD, they set the priests in their apparel with trumpets, and the
+Levites the sons of Asaph with cymbals, to praise the LORD, after the
+ordinance of David king of Israel.
+
+3:11 And they sang together by course in praising and giving thanks
+unto the LORD; because he is good, for his mercy endureth for ever
+toward Israel.
+
+And all the people shouted with a great shout, when they praised the
+LORD, because the foundation of the house of the LORD was laid.
+
+3:12 But many of the priests and Levites and chief of the fathers, who
+were ancient men, that had seen the first house, when the foundation
+of this house was laid before their eyes, wept with a loud voice; and
+many shouted aloud for joy: 3:13 So that the people could not discern
+the noise of the shout of joy from the noise of the weeping of the
+people: for the people shouted with a loud shout, and the noise was
+heard afar off.
+
+4:1 Now when the adversaries of Judah and Benjamin heard that the
+children of the captivity builded the temple unto the LORD God of
+Israel; 4:2 Then they came to Zerubbabel, and to the chief of the
+fathers, and said unto them, Let us build with you: for we seek your
+God, as ye do; and we do sacrifice unto him since the days of
+Esarhaddon king of Assur, which brought us up hither.
+
+4:3 But Zerubbabel, and Jeshua, and the rest of the chief of the
+fathers of Israel, said unto them, Ye have nothing to do with us to
+build an house unto our God; but we ourselves together will build unto
+the LORD God of Israel, as king Cyrus the king of Persia hath
+commanded us.
+
+4:4 Then the people of the land weakened the hands of the people of
+Judah, and troubled them in building, 4:5 And hired counsellors
+against them, to frustrate their purpose, all the days of Cyrus king
+of Persia, even until the reign of Darius king of Persia.
+
+4:6 And in the reign of Ahasuerus, in the beginning of his reign,
+wrote they unto him an accusation against the inhabitants of Judah and
+Jerusalem.
+
+4:7 And in the days of Artaxerxes wrote Bishlam, Mithredath, Tabeel,
+and the rest of their companions, unto Artaxerxes king of Persia; and
+the writing of the letter was written in the Syrian tongue, and
+interpreted in the Syrian tongue.
+
+4:8 Rehum the chancellor and Shimshai the scribe wrote a letter
+against Jerusalem to Artaxerxes the king in this sort: 4:9 Then wrote
+Rehum the chancellor, and Shimshai the scribe, and the rest of their
+companions; the Dinaites, the Apharsathchites, the Tarpelites, the
+Apharsites, the Archevites, the Babylonians, the Susanchites, the
+Dehavites, and the Elamites, 4:10 And the rest of the nations whom the
+great and noble Asnapper brought over, and set in the cities of
+Samaria, and the rest that are on this side the river, and at such a
+time.
+
+4:11 This is the copy of the letter that they sent unto him, even unto
+Artaxerxes the king; Thy servants the men on this side the river, and
+at such a time.
+
+4:12 Be it known unto the king, that the Jews which came up from thee
+to us are come unto Jerusalem, building the rebellious and the bad
+city, and have set up the walls thereof, and joined the foundations.
+
+4:13 Be it known now unto the king, that, if this city be builded, and
+the walls set up again, then will they not pay toll, tribute, and
+custom, and so thou shalt endamage the revenue of the kings.
+
+4:14 Now because we have maintenance from the king's palace, and it
+was not meet for us to see the king's dishonour, therefore have we
+sent and certified the king; 4:15 That search may be made in the book
+of the records of thy fathers: so shalt thou find in the book of the
+records, and know that this city is a rebellious city, and hurtful
+unto kings and provinces, and that they have moved sedition within the
+same of old time: for which cause was this city destroyed.
+
+4:16 We certify the king that, if this city be builded again, and the
+walls thereof set up, by this means thou shalt have no portion on this
+side the river.
+
+4:17 Then sent the king an answer unto Rehum the chancellor, and to
+Shimshai the scribe, and to the rest of their companions that dwell in
+Samaria, and unto the rest beyond the river, Peace, and at such a
+time.
+
+4:18 The letter which ye sent unto us hath been plainly read before
+me.
+
+4:19 And I commanded, and search hath been made, and it is found that
+this city of old time hath made insurrection against kings, and that
+rebellion and sedition have been made therein.
+
+4:20 There have been mighty kings also over Jerusalem, which have
+ruled over all countries beyond the river; and toll, tribute, and
+custom, was paid unto them.
+
+4:21 Give ye now commandment to cause these men to cease, and that
+this city be not builded, until another commandment shall be given
+from me.
+
+4:22 Take heed now that ye fail not to do this: why should damage grow
+to the hurt of the kings? 4:23 Now when the copy of king Artaxerxes'
+letter was read before Rehum, and Shimshai the scribe, and their
+companions, they went up in haste to Jerusalem unto the Jews, and made
+them to cease by force and power.
+
+4:24 Then ceased the work of the house of God which is at Jerusalem.
+So it ceased unto the second year of the reign of Darius king of
+Persia.
+
+5:1 Then the prophets, Haggai the prophet, and Zechariah the son of
+Iddo, prophesied unto the Jews that were in Judah and Jerusalem in the
+name of the God of Israel, even unto them.
+
+5:2 Then rose up Zerubbabel the son of Shealtiel, and Jeshua the son
+of Jozadak, and began to build the house of God which is at Jerusalem:
+and with them were the prophets of God helping them.
+
+5:3 At the same time came to them Tatnai, governor on this side the
+river, and Shetharboznai and their companions, and said thus unto
+them, Who hath commanded you to build this house, and to make up this
+wall? 5:4 Then said we unto them after this manner, What are the
+names of the men that make this building? 5:5 But the eye of their
+God was upon the elders of the Jews, that they could not cause them to
+cease, till the matter came to Darius: and then they returned answer
+by letter concerning this matter.
+
+5:6 The copy of the letter that Tatnai, governor on this side the
+river, and Shetharboznai and his companions the Apharsachites, which
+were on this side the river, sent unto Darius the king: 5:7 They sent
+a letter unto him, wherein was written thus; Unto Darius the king, all
+peace.
+
+5:8 Be it known unto the king, that we went into the province of
+Judea, to the house of the great God, which is builded with great
+stones, and timber is laid in the walls, and this work goeth fast on,
+and prospereth in their hands.
+
+5:9 Then asked we those elders, and said unto them thus, Who commanded
+you to build this house, and to make up these walls? 5:10 We asked
+their names also, to certify thee, that we might write the names of
+the men that were the chief of them.
+
+5:11 And thus they returned us answer, saying, We are the servants of
+the God of heaven and earth, and build the house that was builded
+these many years ago, which a great king of Israel builded and set up.
+
+5:12 But after that our fathers had provoked the God of heaven unto
+wrath, he gave them into the hand of Nebuchadnezzar the king of
+Babylon, the Chaldean, who destroyed this house, and carried the
+people away into Babylon.
+
+5:13 But in the first year of Cyrus the king of Babylon the same king
+Cyrus made a decree to build this house of God.
+
+5:14 And the vessels also of gold and silver of the house of God,
+which Nebuchadnezzar took out of the temple that was in Jerusalem, and
+brought them into the temple of Babylon, those did Cyrus the king take
+out of the temple of Babylon, and they were delivered unto one, whose
+name was Sheshbazzar, whom he had made governor; 5:15 And said unto
+him, Take these vessels, go, carry them into the temple that is in
+Jerusalem, and let the house of God be builded in his place.
+
+5:16 Then came the same Sheshbazzar, and laid the foundation of the
+house of God which is in Jerusalem: and since that time even until now
+hath it been in building, and yet it is not finished.
+
+5:17 Now therefore, if it seem good to the king, let there be search
+made in the king's treasure house, which is there at Babylon, whether
+it be so, that a decree was made of Cyrus the king to build this house
+of God at Jerusalem, and let the king send his pleasure to us
+concerning this matter.
+
+6:1 Then Darius the king made a decree, and search was made in the
+house of the rolls, where the treasures were laid up in Babylon.
+
+6:2 And there was found at Achmetha, in the palace that is in the
+province of the Medes, a roll, and therein was a record thus written:
+6:3 In the first year of Cyrus the king the same Cyrus the king made a
+decree concerning the house of God at Jerusalem, Let the house be
+builded, the place where they offered sacrifices, and let the
+foundations thereof be strongly laid; the height thereof threescore
+cubits, and the breadth thereof threescore cubits; 6:4 With three rows
+of great stones, and a row of new timber: and let the expenses be
+given out of the king's house: 6:5 And also let the golden and silver
+vessels of the house of God, which Nebuchadnezzar took forth out of
+the temple which is at Jerusalem, and brought unto Babylon, be
+restored, and brought again unto the temple which is at Jerusalem,
+every one to his place, and place them in the house of God.
+
+6:6 Now therefore, Tatnai, governor beyond the river, Shetharboznai,
+and your companions the Apharsachites, which are beyond the river, be
+ye far from thence: 6:7 Let the work of this house of God alone; let
+the governor of the Jews and the elders of the Jews build this house
+of God in his place.
+
+6:8 Moreover I make a decree what ye shall do to the elders of these
+Jews for the building of this house of God: that of the king's goods,
+even of the tribute beyond the river, forthwith expenses be given unto
+these men, that they be not hindered.
+
+6:9 And that which they have need of, both young bullocks, and rams,
+and lambs, for the burnt offerings of the God of heaven, wheat, salt,
+wine, and oil, according to the appointment of the priests which are
+at Jerusalem, let it be given them day by day without fail: 6:10 That
+they may offer sacrifices of sweet savours unto the God of heaven, and
+pray for the life of the king, and of his sons.
+
+6:11 Also I have made a decree, that whosoever shall alter this word,
+let timber be pulled down from his house, and being set up, let him be
+hanged thereon; and let his house be made a dunghill for this.
+
+6:12 And the God that hath caused his name to dwell there destroy all
+kings and people, that shall put to their hand to alter and to destroy
+this house of God which is at Jerusalem. I Darius have made a decree;
+let it be done with speed.
+
+6:13 Then Tatnai, governor on this side the river, Shetharboznai, and
+their companions, according to that which Darius the king had sent, so
+they did speedily.
+
+6:14 And the elders of the Jews builded, and they prospered through
+the prophesying of Haggai the prophet and Zechariah the son of Iddo.
+And they builded, and finished it, according to the commandment of the
+God of Israel, and according to the commandment of Cyrus, and Darius,
+and Artaxerxes king of Persia.
+
+6:15 And this house was finished on the third day of the month Adar,
+which was in the sixth year of the reign of Darius the king.
+
+6:16 And the children of Israel, the priests, and the Levites, and the
+rest of the children of the captivity, kept the dedication of this
+house of God with joy.
+
+6:17 And offered at the dedication of this house of God an hundred
+bullocks, two hundred rams, four hundred lambs; and for a sin offering
+for all Israel, twelve he goats, according to the number of the tribes
+of Israel.
+
+6:18 And they set the priests in their divisions, and the Levites in
+their courses, for the service of God, which is at Jerusalem; as it is
+written in the book of Moses.
+
+6:19 And the children of the captivity kept the passover upon the
+fourteenth day of the first month.
+
+6:20 For the priests and the Levites were purified together, all of
+them were pure, and killed the passover for all the children of the
+captivity, and for their brethren the priests, and for themselves.
+
+6:21 And the children of Israel, which were come again out of
+captivity, and all such as had separated themselves unto them from the
+filthiness of the heathen of the land, to seek the LORD God of Israel,
+did eat, 6:22 And kept the feast of unleavened bread seven days with
+joy: for the LORD had made them joyful, and turned the heart of the
+king of Assyria unto them, to strengthen their hands in the work of
+the house of God, the God of Israel.
+
+7:1 Now after these things, in the reign of Artaxerxes king of Persia,
+Ezra the son of Seraiah, the son of Azariah, the son of Hilkiah, 7:2
+The son of Shallum, the son of Zadok, the son of Ahitub, 7:3 The son
+of Amariah, the son of Azariah, the son of Meraioth, 7:4 The son of
+Zerahiah, the son of Uzzi, the son of Bukki, 7:5 The son of Abishua,
+the son of Phinehas, the son of Eleazar, the son of Aaron the chief
+priest: 7:6 This Ezra went up from Babylon; and he was a ready scribe
+in the law of Moses, which the LORD God of Israel had given: and the
+king granted him all his request, according to the hand of the LORD
+his God upon him.
+
+7:7 And there went up some of the children of Israel, and of the
+priests, and the Levites, and the singers, and the porters, and the
+Nethinims, unto Jerusalem, in the seventh year of Artaxerxes the king.
+
+7:8 And he came to Jerusalem in the fifth month, which was in the
+seventh year of the king.
+
+7:9 For upon the first day of the first month began he to go up from
+Babylon, and on the first day of the fifth month came he to Jerusalem,
+according to the good hand of his God upon him.
+
+7:10 For Ezra had prepared his heart to seek the law of the LORD, and
+to do it, and to teach in Israel statutes and judgments.
+
+7:11 Now this is the copy of the letter that the king Artaxerxes gave
+unto Ezra the priest, the scribe, even a scribe of the words of the
+commandments of the LORD, and of his statutes to Israel.
+
+7:12 Artaxerxes, king of kings, unto Ezra the priest, a scribe of the
+law of the God of heaven, perfect peace, and at such a time.
+
+7:13 I make a decree, that all they of the people of Israel, and of
+his priests and Levites, in my realm, which are minded of their own
+freewill to go up to Jerusalem, go with thee.
+
+7:14 Forasmuch as thou art sent of the king, and of his seven
+counsellors, to enquire concerning Judah and Jerusalem, according to
+the law of thy God which is in thine hand; 7:15 And to carry the
+silver and gold, which the king and his counsellors have freely
+offered unto the God of Israel, whose habitation is in Jerusalem, 7:16
+And all the silver and gold that thou canst find in all the province
+of Babylon, with the freewill offering of the people, and of the
+priests, offering willingly for the house of their God which is in
+Jerusalem: 7:17 That thou mayest buy speedily with this money
+bullocks, rams, lambs, with their meat offerings and their drink
+offerings, and offer them upon the altar of the house of your God
+which is in Jerusalem.
+
+7:18 And whatsoever shall seem good to thee, and to thy brethren, to
+do with the rest of the silver and the gold, that do after the will of
+your God.
+
+7:19 The vessels also that are given thee for the service of the house
+of thy God, those deliver thou before the God of Jerusalem.
+
+7:20 And whatsoever more shall be needful for the house of thy God,
+which thou shalt have occasion to bestow, bestow it out of the king's
+treasure house.
+
+7:21 And I, even I Artaxerxes the king, do make a decree to all the
+treasurers which are beyond the river, that whatsoever Ezra the
+priest, the scribe of the law of the God of heaven, shall require of
+you, it be done speedily, 7:22 Unto an hundred talents of silver, and
+to an hundred measures of wheat, and to an hundred baths of wine, and
+to an hundred baths of oil, and salt without prescribing how much.
+
+7:23 Whatsoever is commanded by the God of heaven, let it be
+diligently done for the house of the God of heaven: for why should
+there be wrath against the realm of the king and his sons? 7:24 Also
+we certify you, that touching any of the priests and Levites, singers,
+porters, Nethinims, or ministers of this house of God, it shall not be
+lawful to impose toll, tribute, or custom, upon them.
+
+7:25 And thou, Ezra, after the wisdom of thy God, that is in thine
+hand, set magistrates and judges, which may judge all the people that
+are beyond the river, all such as know the laws of thy God; and teach
+ye them that know them not.
+
+7:26 And whosoever will not do the law of thy God, and the law of the
+king, let judgment be executed speedily upon him, whether it be unto
+death, or to banishment, or to confiscation of goods, or to
+imprisonment.
+
+7:27 Blessed be the LORD God of our fathers, which hath put such a
+thing as this in the king's heart, to beautify the house of the LORD
+which is in Jerusalem: 7:28 And hath extended mercy unto me before the
+king, and his counsellors, and before all the king's mighty princes.
+And I was strengthened as the hand of the LORD my God was upon me, and
+I gathered together out of Israel chief men to go up with me.
+
+8:1 These are now the chief of their fathers, and this is the
+genealogy of them that went up with me from Babylon, in the reign of
+Artaxerxes the king.
+
+8:2 Of the sons of Phinehas; Gershom: of the sons of Ithamar; Daniel:
+of the sons of David; Hattush.
+
+8:3 Of the sons of Shechaniah, of the sons of Pharosh; Zechariah: and
+with him were reckoned by genealogy of the males an hundred and fifty.
+
+8:4 Of the sons of Pahathmoab; Elihoenai the son of Zerahiah, and with
+him two hundred males.
+
+8:5 Of the sons of Shechaniah; the son of Jahaziel, and with him three
+hundred males.
+
+8:6 Of the sons also of Adin; Ebed the son of Jonathan, and with him
+fifty males.
+
+8:7 And of the sons of Elam; Jeshaiah the son of Athaliah, and with
+him seventy males.
+
+8:8 And of the sons of Shephatiah; Zebadiah the son of Michael, and
+with him fourscore males.
+
+8:9 Of the sons of Joab; Obadiah the son of Jehiel, and with him two
+hundred and eighteen males.
+
+8:10 And of the sons of Shelomith; the son of Josiphiah, and with him
+an hundred and threescore males.
+
+8:11 And of the sons of Bebai; Zechariah the son of Bebai, and with
+him twenty and eight males.
+
+8:12 And of the sons of Azgad; Johanan the son of Hakkatan, and with
+him an hundred and ten males.
+
+8:13 And of the last sons of Adonikam, whose names are these,
+Eliphelet, Jeiel, and Shemaiah, and with them threescore males.
+
+8:14 Of the sons also of Bigvai; Uthai, and Zabbud, and with them
+seventy males.
+
+8:15 And I gathered them together to the river that runneth to Ahava;
+and there abode we in tents three days: and I viewed the people, and
+the priests, and found there none of the sons of Levi.
+
+8:16 Then sent I for Eliezer, for Ariel, for Shemaiah, and for
+Elnathan, and for Jarib, and for Elnathan, and for Nathan, and for
+Zechariah, and for Meshullam, chief men; also for Joiarib, and for
+Elnathan, men of understanding.
+
+8:17 And I sent them with commandment unto Iddo the chief at the place
+Casiphia, and I told them what they should say unto Iddo, and to his
+brethren the Nethinims, at the place Casiphia, that they should bring
+unto us ministers for the house of our God.
+
+8:18 And by the good hand of our God upon us they brought us a man of
+understanding, of the sons of Mahli, the son of Levi, the son of
+Israel; and Sherebiah, with his sons and his brethren, eighteen; 8:19
+And Hashabiah, and with him Jeshaiah of the sons of Merari, his
+brethren and their sons, twenty; 8:20 Also of the Nethinims, whom
+David and the princes had appointed for the service of the Levites,
+two hundred and twenty Nethinims: all of them were expressed by name.
+
+8:21 Then I proclaimed a fast there, at the river of Ahava, that we
+might afflict ourselves before our God, to seek of him a right way for
+us, and for our little ones, and for all our substance.
+
+8:22 For I was ashamed to require of the king a band of soldiers and
+horsemen to help us against the enemy in the way: because we had
+spoken unto the king, saying, The hand of our God is upon all them for
+good that seek him; but his power and his wrath is against all them
+that forsake him.
+
+8:23 So we fasted and besought our God for this: and he was intreated
+of us.
+
+8:24 Then I separated twelve of the chief of the priests, Sherebiah,
+Hashabiah, and ten of their brethren with them, 8:25 And weighed unto
+them the silver, and the gold, and the vessels, even the offering of
+the house of our God, which the king, and his counsellors, and his
+lords, and all Israel there present, had offered: 8:26 I even weighed
+unto their hand six hundred and fifty talents of silver, and silver
+vessels an hundred talents, and of gold an hundred talents; 8:27 Also
+twenty basons of gold, of a thousand drams; and two vessels of fine
+copper, precious as gold.
+
+8:28 And I said unto them, Ye are holy unto the LORD; the vessels are
+holy also; and the silver and the gold are a freewill offering unto
+the LORD God of your fathers.
+
+8:29 Watch ye, and keep them, until ye weigh them before the chief of
+the priests and the Levites, and chief of the fathers of Israel, at
+Jerusalem, in the chambers of the house of the LORD.
+
+8:30 So took the priests and the Levites the weight of the silver, and
+the gold, and the vessels, to bring them to Jerusalem unto the house
+of our God.
+
+8:31 Then we departed from the river of Ahava on the twelfth day of
+the first month, to go unto Jerusalem: and the hand of our God was
+upon us, and he delivered us from the hand of the enemy, and of such
+as lay in wait by the way.
+
+8:32 And we came to Jerusalem, and abode there three days.
+
+8:33 Now on the fourth day was the silver and the gold and the vessels
+weighed in the house of our God by the hand of Meremoth the son of
+Uriah the priest; and with him was Eleazar the son of Phinehas; and
+with them was Jozabad the son of Jeshua, and Noadiah the son of
+Binnui, Levites; 8:34 By number and by weight of every one: and all
+the weight was written at that time.
+
+8:35 Also the children of those that had been carried away, which were
+come out of the captivity, offered burnt offerings unto the God of
+Israel, twelve bullocks for all Israel, ninety and six rams, seventy
+and seven lambs, twelve he goats for a sin offering: all this was a
+burnt offering unto the LORD.
+
+8:36 And they delivered the king's commissions unto the king's
+lieutenants, and to the governors on this side the river: and they
+furthered the people, and the house of God.
+
+9:1 Now when these things were done, the princes came to me, saying,
+The people of Israel, and the priests, and the Levites, have not
+separated themselves from the people of the lands, doing according to
+their abominations, even of the Canaanites, the Hittites, the
+Perizzites, the Jebusites, the Ammonites, the Moabites, the Egyptians,
+and the Amorites.
+
+9:2 For they have taken of their daughters for themselves, and for
+their sons: so that the holy seed have mingled themselves with the
+people of those lands: yea, the hand of the princes and rulers hath
+been chief in this trespass.
+
+9:3 And when I heard this thing, I rent my garment and my mantle, and
+plucked off the hair of my head and of my beard, and sat down
+astonied.
+
+9:4 Then were assembled unto me every one that trembled at the words
+of the God of Israel, because of the transgression of those that had
+been carried away; and I sat astonied until the evening sacrifice.
+
+9:5 And at the evening sacrifice I arose up from my heaviness; and
+having rent my garment and my mantle, I fell upon my knees, and spread
+out my hands unto the LORD my God, 9:6 And said, O my God, I am
+ashamed and blush to lift up my face to thee, my God: for our
+iniquities are increased over our head, and our trespass is grown up
+unto the heavens.
+
+9:7 Since the days of our fathers have we been in a great trespass
+unto this day; and for our iniquities have we, our kings, and our
+priests, been delivered into the hand of the kings of the lands, to
+the sword, to captivity, and to a spoil, and to confusion of face, as
+it is this day.
+
+9:8 And now for a little space grace hath been shewed from the LORD
+our God, to leave us a remnant to escape, and to give us a nail in his
+holy place, that our God may lighten our eyes, and give us a little
+reviving in our bondage.
+
+9:9 For we were bondmen; yet our God hath not forsaken us in our
+bondage, but hath extended mercy unto us in the sight of the kings of
+Persia, to give us a reviving, to set up the house of our God, and to
+repair the desolations thereof, and to give us a wall in Judah and in
+Jerusalem.
+
+9:10 And now, O our God, what shall we say after this? for we have
+forsaken thy commandments, 9:11 Which thou hast commanded by thy
+servants the prophets, saying, The land, unto which ye go to possess
+it, is an unclean land with the filthiness of the people of the lands,
+with their abominations, which have filled it from one end to another
+with their uncleanness.
+
+9:12 Now therefore give not your daughters unto their sons, neither
+take their daughters unto your sons, nor seek their peace or their
+wealth for ever: that ye may be strong, and eat the good of the land,
+and leave it for an inheritance to your children for ever.
+
+9:13 And after all that is come upon us for our evil deeds, and for
+our great trespass, seeing that thou our God hast punished us less
+than our iniquities deserve, and hast given us such deliverance as
+this; 9:14 Should we again break thy commandments, and join in
+affinity with the people of these abominations? wouldest not thou be
+angry with us till thou hadst consumed us, so that there should be no
+remnant nor escaping? 9:15 O LORD God of Israel, thou art righteous:
+for we remain yet escaped, as it is this day: behold, we are before
+thee in our trespasses: for we cannot stand before thee because of
+this.
+
+10:1 Now when Ezra had prayed, and when he had confessed, weeping and
+casting himself down before the house of God, there assembled unto him
+out of Israel a very great congregation of men and women and children:
+for the people wept very sore.
+
+10:2 And Shechaniah the son of Jehiel, one of the sons of Elam,
+answered and said unto Ezra, We have trespassed against our God, and
+have taken strange wives of the people of the land: yet now there is
+hope in Israel concerning this thing.
+
+10:3 Now therefore let us make a covenant with our God to put away all
+the wives, and such as are born of them, according to the counsel of
+my lord, and of those that tremble at the commandment of our God; and
+let it be done according to the law.
+
+10:4 Arise; for this matter belongeth unto thee: we also will be with
+thee: be of good courage, and do it.
+
+10:5 Then arose Ezra, and made the chief priests, the Levites, and all
+Israel, to swear that they should do according to this word. And they
+sware.
+
+10:6 Then Ezra rose up from before the house of God, and went into the
+chamber of Johanan the son of Eliashib: and when he came thither, he
+did eat no bread, nor drink water: for he mourned because of the
+transgression of them that had been carried away.
+
+10:7 And they made proclamation throughout Judah and Jerusalem unto
+all the children of the captivity, that they should gather themselves
+together unto Jerusalem; 10:8 And that whosoever would not come within
+three days, according to the counsel of the princes and the elders,
+all his substance should be forfeited, and himself separated from the
+congregation of those that had been carried away.
+
+10:9 Then all the men of Judah and Benjamin gathered themselves
+together unto Jerusalem within three days. It was the ninth month, on
+the twentieth day of the month; and all the people sat in the street
+of the house of God, trembling because of this matter, and for the
+great rain.
+
+10:10 And Ezra the priest stood up, and said unto them, Ye have
+transgressed, and have taken strange wives, to increase the trespass
+of Israel.
+
+10:11 Now therefore make confession unto the LORD God of your fathers,
+and do his pleasure: and separate yourselves from the people of the
+land, and from the strange wives.
+
+10:12 Then all the congregation answered and said with a loud voice,
+As thou hast said, so must we do.
+
+10:13 But the people are many, and it is a time of much rain, and we
+are not able to stand without, neither is this a work of one day or
+two: for we are many that have transgressed in this thing.
+
+10:14 Let now our rulers of all the congregation stand, and let all
+them which have taken strange wives in our cities come at appointed
+times, and with them the elders of every city, and the judges thereof,
+until the fierce wrath of our God for this matter be turned from us.
+
+10:15 Only Jonathan the son of Asahel and Jahaziah the son of Tikvah
+were employed about this matter: and Meshullam and Shabbethai the
+Levite helped them.
+
+10:16 And the children of the captivity did so. And Ezra the priest,
+with certain chief of the fathers, after the house of their fathers,
+and all of them by their names, were separated, and sat down in the
+first day of the tenth month to examine the matter.
+
+10:17 And they made an end with all the men that had taken strange
+wives by the first day of the first month.
+
+10:18 And among the sons of the priests there were found that had
+taken strange wives: namely, of the sons of Jeshua the son of Jozadak,
+and his brethren; Maaseiah, and Eliezer, and Jarib, and Gedaliah.
+
+10:19 And they gave their hands that they would put away their wives;
+and being guilty, they offered a ram of the flock for their trespass.
+
+10:20 And of the sons of Immer; Hanani, and Zebadiah.
+
+10:21 And of the sons of Harim; Maaseiah, and Elijah, and Shemaiah,
+and Jehiel, and Uzziah.
+
+10:22 And of the sons of Pashur; Elioenai, Maaseiah, Ishmael,
+Nethaneel, Jozabad, and Elasah.
+
+10:23 Also of the Levites; Jozabad, and Shimei, and Kelaiah, (the same
+is Kelita,) Pethahiah, Judah, and Eliezer.
+
+10:24 Of the singers also; Eliashib: and of the porters; Shallum, and
+Telem, and Uri.
+
+10:25 Moreover of Israel: of the sons of Parosh; Ramiah, and Jeziah,
+and Malchiah, and Miamin, and Eleazar, and Malchijah, and Benaiah.
+
+10:26 And of the sons of Elam; Mattaniah, Zechariah, and Jehiel, and
+Abdi, and Jeremoth, and Eliah.
+
+10:27 And of the sons of Zattu; Elioenai, Eliashib, Mattaniah, and
+Jeremoth, and Zabad, and Aziza.
+
+10:28 Of the sons also of Bebai; Jehohanan, Hananiah, Zabbai, and
+Athlai.
+
+10:29 And of the sons of Bani; Meshullam, Malluch, and Adaiah, Jashub,
+and Sheal, and Ramoth.
+
+10:30 And of the sons of Pahathmoab; Adna, and Chelal, Benaiah,
+Maaseiah, Mattaniah, Bezaleel, and Binnui, and Manasseh.
+
+10:31 And of the sons of Harim; Eliezer, Ishijah, Malchiah, Shemaiah,
+Shimeon, 10:32 Benjamin, Malluch, and Shemariah.
+
+10:33 Of the sons of Hashum; Mattenai, Mattathah, Zabad, Eliphelet,
+Jeremai, Manasseh, and Shimei.
+
+10:34 Of the sons of Bani; Maadai, Amram, and Uel, 10:35 Benaiah,
+Bedeiah, Chelluh, 10:36 Vaniah, Meremoth, Eliashib, 10:37 Mattaniah,
+Mattenai, and Jaasau, 10:38 And Bani, and Binnui, Shimei, 10:39 And
+Shelemiah, and Nathan, and Adaiah, 10:40 Machnadebai, Shashai, Sharai,
+10:41 Azareel, and Shelemiah, Shemariah, 10:42 Shallum, Amariah, and
+Joseph.
+
+10:43 Of the sons of Nebo; Jeiel, Mattithiah, Zabad, Zebina, Jadau,
+and Joel, Benaiah.
+
+10:44 All these had taken strange wives: and some of them had wives by
+whom they had children.
+
+
+
+
+The Book of Nehemiah
+
+
+1:1 The words of Nehemiah the son of Hachaliah. And it came to pass
+in the month Chisleu, in the twentieth year, as I was in Shushan the
+palace, 1:2 That Hanani, one of my brethren, came, he and certain men
+of Judah; and I asked them concerning the Jews that had escaped, which
+were left of the captivity, and concerning Jerusalem.
+
+1:3 And they said unto me, The remnant that are left of the captivity
+there in the province are in great affliction and reproach: the wall
+of Jerusalem also is broken down, and the gates thereof are burned
+with fire.
+
+1:4 And it came to pass, when I heard these words, that I sat down and
+wept, and mourned certain days, and fasted, and prayed before the God
+of heaven, 1:5 And said, I beseech thee, O LORD God of heaven, the
+great and terrible God, that keepeth covenant and mercy for them that
+love him and observe his commandments: 1:6 Let thine ear now be
+attentive, and thine eyes open, that thou mayest hear the prayer of
+thy servant, which I pray before thee now, day and night, for the
+children of Israel thy servants, and confess the sins of the children
+of Israel, which we have sinned against thee: both I and my father's
+house have sinned.
+
+1:7 We have dealt very corruptly against thee, and have not kept the
+commandments, nor the statutes, nor the judgments, which thou
+commandedst thy servant Moses.
+
+1:8 Remember, I beseech thee, the word that thou commandedst thy
+servant Moses, saying, If ye transgress, I will scatter you abroad
+among the nations: 1:9 But if ye turn unto me, and keep my
+commandments, and do them; though there were of you cast out unto the
+uttermost part of the heaven, yet will I gather them from thence, and
+will bring them unto the place that I have chosen to set my name
+there.
+
+1:10 Now these are thy servants and thy people, whom thou hast
+redeemed by thy great power, and by thy strong hand.
+
+1:11 O LORD, I beseech thee, let now thine ear be attentive to the
+prayer of thy servant, and to the prayer of thy servants, who desire
+to fear thy name: and prosper, I pray thee, thy servant this day, and
+grant him mercy in the sight of this man. For I was the king's
+cupbearer.
+
+2:1 And it came to pass in the month Nisan, in the twentieth year of
+Artaxerxes the king, that wine was before him: and I took up the wine,
+and gave it unto the king. Now I had not been beforetime sad in his
+presence.
+
+2:2 Wherefore the king said unto me, Why is thy countenance sad,
+seeing thou art not sick? this is nothing else but sorrow of heart.
+Then I was very sore afraid, 2:3 And said unto the king, Let the king
+live for ever: why should not my countenance be sad, when the city,
+the place of my fathers' sepulchres, lieth waste, and the gates
+thereof are consumed with fire? 2:4 Then the king said unto me, For
+what dost thou make request? So I prayed to the God of heaven.
+
+2:5 And I said unto the king, If it please the king, and if thy
+servant have found favour in thy sight, that thou wouldest send me
+unto Judah, unto the city of my fathers' sepulchres, that I may build
+it.
+
+2:6 And the king said unto me, (the queen also sitting by him,) For
+how long shall thy journey be? and when wilt thou return? So it
+pleased the king to send me; and I set him a time.
+
+2:7 Moreover I said unto the king, If it please the king, let letters
+be given me to the governors beyond the river, that they may convey me
+over till I come into Judah; 2:8 And a letter unto Asaph the keeper of
+the king's forest, that he may give me timber to make beams for the
+gates of the palace which appertained to the house, and for the wall
+of the city, and for the house that I shall enter into. And the king
+granted me, according to the good hand of my God upon me.
+
+2:9 Then I came to the governors beyond the river, and gave them the
+king's letters. Now the king had sent captains of the army and
+horsemen with me.
+
+2:10 When Sanballat the Horonite, and Tobiah the servant, the
+Ammonite, heard of it, it grieved them exceedingly that there was come
+a man to seek the welfare of the children of Israel.
+
+2:11 So I came to Jerusalem, and was there three days.
+
+2:12 And I arose in the night, I and some few men with me; neither
+told I any man what my God had put in my heart to do at Jerusalem:
+neither was there any beast with me, save the beast that I rode upon.
+
+2:13 And I went out by night by the gate of the valley, even before
+the dragon well, and to the dung port, and viewed the walls of
+Jerusalem, which were broken down, and the gates thereof were consumed
+with fire.
+
+2:14 Then I went on to the gate of the fountain, and to the king's
+pool: but there was no place for the beast that was under me to pass.
+
+2:15 Then went I up in the night by the brook, and viewed the wall,
+and turned back, and entered by the gate of the valley, and so
+returned.
+
+2:16 And the rulers knew not whither I went, or what I did; neither
+had I as yet told it to the Jews, nor to the priests, nor to the
+nobles, nor to the rulers, nor to the rest that did the work.
+
+2:17 Then said I unto them, Ye see the distress that we are in, how
+Jerusalem lieth waste, and the gates thereof are burned with fire:
+come, and let us build up the wall of Jerusalem, that we be no more a
+reproach.
+
+2:18 Then I told them of the hand of my God which was good upon me; as
+also the king's words that he had spoken unto me. And they said, Let
+us rise up and build. So they strengthened their hands for this good
+work.
+
+2:19 But when Sanballat the Horonite, and Tobiah the servant, the
+Ammonite, and Geshem the Arabian, heard it, they laughed us to scorn,
+and despised us, and said, What is this thing that ye do? will ye
+rebel against the king? 2:20 Then answered I them, and said unto
+them, The God of heaven, he will prosper us; therefore we his servants
+will arise and build: but ye have no portion, nor right, nor memorial,
+in Jerusalem.
+
+3:1 Then Eliashib the high priest rose up with his brethren the
+priests, and they builded the sheep gate; they sanctified it, and set
+up the doors of it; even unto the tower of Meah they sanctified it,
+unto the tower of Hananeel.
+
+3:2 And next unto him builded the men of Jericho. And next to them
+builded Zaccur the son of Imri.
+
+3:3 But the fish gate did the sons of Hassenaah build, who also laid
+the beams thereof, and set up the doors thereof, the locks thereof,
+and the bars thereof.
+
+3:4 And next unto them repaired Meremoth the son of Urijah, the son of
+Koz. And next unto them repaired Meshullam the son of Berechiah, the
+son of Meshezabeel. And next unto them repaired Zadok the son of
+Baana.
+
+3:5 And next unto them the Tekoites repaired; but their nobles put not
+their necks to the work of their LORD.
+
+3:6 Moreover the old gate repaired Jehoiada the son of Paseah, and
+Meshullam the son of Besodeiah; they laid the beams thereof, and set
+up the doors thereof, and the locks thereof, and the bars thereof.
+
+3:7 And next unto them repaired Melatiah the Gibeonite, and Jadon the
+Meronothite, the men of Gibeon, and of Mizpah, unto the throne of the
+governor on this side the river.
+
+3:8 Next unto him repaired Uzziel the son of Harhaiah, of the
+goldsmiths.
+
+Next unto him also repaired Hananiah the son of one of the
+apothecaries, and they fortified Jerusalem unto the broad wall.
+
+3:9 And next unto them repaired Rephaiah the son of Hur, the ruler of
+the half part of Jerusalem.
+
+3:10 And next unto them repaired Jedaiah the son of Harumaph, even
+over against his house. And next unto him repaired Hattush the son of
+Hashabniah.
+
+3:11 Malchijah the son of Harim, and Hashub the son of Pahathmoab,
+repaired the other piece, and the tower of the furnaces.
+
+3:12 And next unto him repaired Shallum the son of Halohesh, the ruler
+of the half part of Jerusalem, he and his daughters.
+
+3:13 The valley gate repaired Hanun, and the inhabitants of Zanoah;
+they built it, and set up the doors thereof, the locks thereof, and
+the bars thereof, and a thousand cubits on the wall unto the dung
+gate.
+
+3:14 But the dung gate repaired Malchiah the son of Rechab, the ruler
+of part of Bethhaccerem; he built it, and set up the doors thereof,
+the locks thereof, and the bars thereof.
+
+3:15 But the gate of the fountain repaired Shallun the son of
+Colhozeh, the ruler of part of Mizpah; he built it, and covered it,
+and set up the doors thereof, the locks thereof, and the bars thereof,
+and the wall of the pool of Siloah by the king's garden, and unto the
+stairs that go down from the city of David.
+
+3:16 After him repaired Nehemiah the son of Azbuk, the ruler of the
+half part of Bethzur, unto the place over against the sepulchres of
+David, and to the pool that was made, and unto the house of the
+mighty.
+
+3:17 After him repaired the Levites, Rehum the son of Bani. Next unto
+him repaired Hashabiah, the ruler of the half part of Keilah, in his
+part.
+
+3:18 After him repaired their brethren, Bavai the son of Henadad, the
+ruler of the half part of Keilah.
+
+3:19 And next to him repaired Ezer the son of Jeshua, the ruler of
+Mizpah, another piece over against the going up to the armoury at the
+turning of the wall.
+
+3:20 After him Baruch the son of Zabbai earnestly repaired the other
+piece, from the turning of the wall unto the door of the house of
+Eliashib the high priest.
+
+3:21 After him repaired Meremoth the son of Urijah the son of Koz
+another piece, from the door of the house of Eliashib even to the end
+of the house of Eliashib.
+
+3:22 And after him repaired the priests, the men of the plain.
+
+3:23 After him repaired Benjamin and Hashub over against their house.
+
+After him repaired Azariah the son of Maaseiah the son of Ananiah by
+his house.
+
+3:24 After him repaired Binnui the son of Henadad another piece, from
+the house of Azariah unto the turning of the wall, even unto the
+corner.
+
+3:25 Palal the son of Uzai, over against the turning of the wall, and
+the tower which lieth out from the king's high house, that was by the
+court of the prison. After him Pedaiah the son of Parosh.
+
+3:26 Moreover the Nethinims dwelt in Ophel, unto the place over
+against the water gate toward the east, and the tower that lieth out.
+
+3:27 After them the Tekoites repaired another piece, over against the
+great tower that lieth out, even unto the wall of Ophel.
+
+3:28 From above the horse gate repaired the priests, every one over
+against his house.
+
+3:29 After them repaired Zadok the son of Immer over against his
+house.
+
+After him repaired also Shemaiah the son of Shechaniah, the keeper of
+the east gate.
+
+3:30 After him repaired Hananiah the son of Shelemiah, and Hanun the
+sixth son of Zalaph, another piece. After him repaired Meshullam the
+son of Berechiah over against his chamber.
+
+3:31 After him repaired Malchiah the goldsmith's son unto the place of
+the Nethinims, and of the merchants, over against the gate Miphkad,
+and to the going up of the corner.
+
+3:32 And between the going up of the corner unto the sheep gate
+repaired the goldsmiths and the merchants.
+
+4:1 But it came to pass, that when Sanballat heard that we builded the
+wall, he was wroth, and took great indignation, and mocked the Jews.
+
+4:2 And he spake before his brethren and the army of Samaria, and
+said, What do these feeble Jews? will they fortify themselves? will
+they sacrifice? will they make an end in a day? will they revive the
+stones out of the heaps of the rubbish which are burned? 4:3 Now
+Tobiah the Ammonite was by him, and he said, Even that which they
+build, if a fox go up, he shall even break down their stone wall.
+
+4:4 Hear, O our God; for we are despised: and turn their reproach upon
+their own head, and give them for a prey in the land of captivity: 4:5
+And cover not their iniquity, and let not their sin be blotted out
+from before thee: for they have provoked thee to anger before the
+builders.
+
+4:6 So built we the wall; and all the wall was joined together unto
+the half thereof: for the people had a mind to work.
+
+4:7 But it came to pass, that when Sanballat, and Tobiah, and the
+Arabians, and the Ammonites, and the Ashdodites, heard that the walls
+of Jerusalem were made up, and that the breaches began to be stopped,
+then they were very wroth, 4:8 And conspired all of them together to
+come and to fight against Jerusalem, and to hinder it.
+
+4:9 Nevertheless we made our prayer unto our God, and set a watch
+against them day and night, because of them.
+
+4:10 And Judah said, The strength of the bearers of burdens is
+decayed, and there is much rubbish; so that we are not able to build
+the wall.
+
+4:11 And our adversaries said, They shall not know, neither see, till
+we come in the midst among them, and slay them, and cause the work to
+cease.
+
+4:12 And it came to pass, that when the Jews which dwelt by them came,
+they said unto us ten times, From all places whence ye shall return
+unto us they will be upon you.
+
+4:13 Therefore set I in the lower places behind the wall, and on the
+higher places, I even set the people after their families with their
+swords, their spears, and their bows.
+
+4:14 And I looked, and rose up, and said unto the nobles, and to the
+rulers, and to the rest of the people, Be not ye afraid of them:
+remember the LORD, which is great and terrible, and fight for your
+brethren, your sons, and your daughters, your wives, and your houses.
+
+4:15 And it came to pass, when our enemies heard that it was known
+unto us, and God had brought their counsel to nought, that we returned
+all of us to the wall, every one unto his work.
+
+4:16 And it came to pass from that time forth, that the half of my
+servants wrought in the work, and the other half of them held both the
+spears, the shields, and the bows, and the habergeons; and the rulers
+were behind all the house of Judah.
+
+4:17 They which builded on the wall, and they that bare burdens, with
+those that laded, every one with one of his hands wrought in the work,
+and with the other hand held a weapon.
+
+4:18 For the builders, every one had his sword girded by his side, and
+so builded. And he that sounded the trumpet was by me.
+
+4:19 And I said unto the nobles, and to the rulers, and to the rest of
+the people, The work is great and large, and we are separated upon the
+wall, one far from another.
+
+4:20 In what place therefore ye hear the sound of the trumpet, resort
+ye thither unto us: our God shall fight for us.
+
+4:21 So we laboured in the work: and half of them held the spears from
+the rising of the morning till the stars appeared.
+
+4:22 Likewise at the same time said I unto the people, Let every one
+with his servant lodge within Jerusalem, that in the night they may be
+a guard to us, and labour on the day.
+
+4:23 So neither I, nor my brethren, nor my servants, nor the men of
+the guard which followed me, none of us put off our clothes, saving
+that every one put them off for washing.
+
+5:1 And there was a great cry of the people and of their wives against
+their brethren the Jews.
+
+5:2 For there were that said, We, our sons, and our daughters, are
+many: therefore we take up corn for them, that we may eat, and live.
+
+5:3 Some also there were that said, We have mortgaged our lands,
+vineyards, and houses, that we might buy corn, because of the dearth.
+
+5:4 There were also that said, We have borrowed money for the king's
+tribute, and that upon our lands and vineyards.
+
+5:5 Yet now our flesh is as the flesh of our brethren, our children as
+their children: and, lo, we bring into bondage our sons and our
+daughters to be servants, and some of our daughters are brought unto
+bondage already: neither is it in our power to redeem them; for other
+men have our lands and vineyards.
+
+5:6 And I was very angry when I heard their cry and these words.
+
+5:7 Then I consulted with myself, and I rebuked the nobles, and the
+rulers, and said unto them, Ye exact usury, every one of his brother.
+And I set a great assembly against them.
+
+5:8 And I said unto them, We after our ability have redeemed our
+brethren the Jews, which were sold unto the heathen; and will ye even
+sell your brethren? or shall they be sold unto us? Then held they
+their peace, and found nothing to answer.
+
+5:9 Also I said, It is not good that ye do: ought ye not to walk in
+the fear of our God because of the reproach of the heathen our
+enemies? 5:10 I likewise, and my brethren, and my servants, might
+exact of them money and corn: I pray you, let us leave off this usury.
+
+5:11 Restore, I pray you, to them, even this day, their lands, their
+vineyards, their oliveyards, and their houses, also the hundredth part
+of the money, and of the corn, the wine, and the oil, that ye exact of
+them.
+
+5:12 Then said they, We will restore them, and will require nothing of
+them; so will we do as thou sayest. Then I called the priests, and
+took an oath of them, that they should do according to this promise.
+
+5:13 Also I shook my lap, and said, So God shake out every man from
+his house, and from his labour, that performeth not this promise, even
+thus be he shaken out, and emptied. And all the congregation said,
+Amen, and praised the LORD. And the people did according to this
+promise.
+
+5:14 Moreover from the time that I was appointed to be their governor
+in the land of Judah, from the twentieth year even unto the two and
+thirtieth year of Artaxerxes the king, that is, twelve years, I and my
+brethren have not eaten the bread of the governor.
+
+5:15 But the former governors that had been before me were chargeable
+unto the people, and had taken of them bread and wine, beside forty
+shekels of silver; yea, even their servants bare rule over the people:
+but so did not I, because of the fear of God.
+
+5:16 Yea, also I continued in the work of this wall, neither bought we
+any land: and all my servants were gathered thither unto the work.
+
+5:17 Moreover there were at my table an hundred and fifty of the Jews
+and rulers, beside those that came unto us from among the heathen that
+are about us.
+
+5:18 Now that which was prepared for me daily was one ox and six
+choice sheep; also fowls were prepared for me, and once in ten days
+store of all sorts of wine: yet for all this required not I the bread
+of the governor, because the bondage was heavy upon this people.
+
+5:19 Think upon me, my God, for good, according to all that I have
+done for this people.
+
+6:1 Now it came to pass when Sanballat, and Tobiah, and Geshem the
+Arabian, and the rest of our enemies, heard that I had builded the
+wall, and that there was no breach left therein; (though at that time
+I had not set up the doors upon the gates;) 6:2 That Sanballat and
+Geshem sent unto me, saying, Come, let us meet together in some one of
+the villages in the plain of Ono. But they thought to do me mischief.
+
+6:3 And I sent messengers unto them, saying, I am doing a great work,
+so that I cannot come down: why should the work cease, whilst I leave
+it, and come down to you? 6:4 Yet they sent unto me four times after
+this sort; and I answered them after the same manner.
+
+6:5 Then sent Sanballat his servant unto me in like manner the fifth
+time with an open letter in his hand; 6:6 Wherein was written, It is
+reported among the heathen, and Gashmu saith it, that thou and the
+Jews think to rebel: for which cause thou buildest the wall, that thou
+mayest be their king, according to these words.
+
+6:7 And thou hast also appointed prophets to preach of thee at
+Jerusalem, saying, There is a king in Judah: and now shall it be
+reported to the king according to these words. Come now therefore, and
+let us take counsel together.
+
+6:8 Then I sent unto him, saying, There are no such things done as
+thou sayest, but thou feignest them out of thine own heart.
+
+6:9 For they all made us afraid, saying, Their hands shall be weakened
+from the work, that it be not done. Now therefore, O God, strengthen
+my hands.
+
+6:10 Afterward I came unto the house of Shemaiah the son of Delaiah
+the son of Mehetabeel, who was shut up; and he said, Let us meet
+together in the house of God, within the temple, and let us shut the
+doors of the temple: for they will come to slay thee; yea, in the
+night will they come to slay thee.
+
+6:11 And I said, Should such a man as I flee? and who is there, that,
+being as I am, would go into the temple to save his life? I will not
+go in.
+
+6:12 And, lo, I perceived that God had not sent him; but that he
+pronounced this prophecy against me: for Tobiah and Sanballat had
+hired him.
+
+6:13 Therefore was he hired, that I should be afraid, and do so, and
+sin, and that they might have matter for an evil report, that they
+might reproach me.
+
+6:14 My God, think thou upon Tobiah and Sanballat according to these
+their works, and on the prophetess Noadiah, and the rest of the
+prophets, that would have put me in fear.
+
+6:15 So the wall was finished in the twenty and fifth day of the month
+Elul, in fifty and two days.
+
+6:16 And it came to pass, that when all our enemies heard thereof, and
+all the heathen that were about us saw these things, they were much
+cast down in their own eyes: for they perceived that this work was
+wrought of our God.
+
+6:17 Moreover in those days the nobles of Judah sent many letters unto
+Tobiah, and the letters of Tobiah came unto them.
+
+6:18 For there were many in Judah sworn unto him, because he was the
+son in law of Shechaniah the son of Arah; and his son Johanan had
+taken the daughter of Meshullam the son of Berechiah.
+
+6:19 Also they reported his good deeds before me, and uttered my words
+to him. And Tobiah sent letters to put me in fear.
+
+7:1 Now it came to pass, when the wall was built, and I had set up the
+doors, and the porters and the singers and the Levites were appointed,
+7:2 That I gave my brother Hanani, and Hananiah the ruler of the
+palace, charge over Jerusalem: for he was a faithful man, and feared
+God above many.
+
+7:3 And I said unto them, Let not the gates of Jerusalem be opened
+until the sun be hot; and while they stand by, let them shut the
+doors, and bar them: and appoint watches of the inhabitants of
+Jerusalem, every one in his watch, and every one to be over against
+his house.
+
+7:4 Now the city was large and great: but the people were few therein,
+and the houses were not builded.
+
+7:5 And my God put into mine heart to gather together the nobles, and
+the rulers, and the people, that they might be reckoned by genealogy.
+And I found a register of the genealogy of them which came up at the
+first, and found written therein, 7:6 These are the children of the
+province, that went up out of the captivity, of those that had been
+carried away, whom Nebuchadnezzar the king of Babylon had carried
+away, and came again to Jerusalem and to Judah, every one unto his
+city; 7:7 Who came with Zerubbabel, Jeshua, Nehemiah, Azariah,
+Raamiah, Nahamani, Mordecai, Bilshan, Mispereth, Bigvai, Nehum,
+Baanah. The number, I say, of the men of the people of Israel was
+this; 7:8 The children of Parosh, two thousand an hundred seventy and
+two.
+
+7:9 The children of Shephatiah, three hundred seventy and two.
+
+7:10 The children of Arah, six hundred fifty and two.
+
+7:11 The children of Pahathmoab, of the children of Jeshua and Joab,
+two thousand and eight hundred and eighteen.
+
+7:12 The children of Elam, a thousand two hundred fifty and four.
+
+7:13 The children of Zattu, eight hundred forty and five.
+
+7:14 The children of Zaccai, seven hundred and threescore.
+
+7:15 The children of Binnui, six hundred forty and eight.
+
+7:16 The children of Bebai, six hundred twenty and eight.
+
+7:17 The children of Azgad, two thousand three hundred twenty and two.
+
+7:18 The children of Adonikam, six hundred threescore and seven.
+
+7:19 The children of Bigvai, two thousand threescore and seven.
+
+7:20 The children of Adin, six hundred fifty and five.
+
+7:21 The children of Ater of Hezekiah, ninety and eight.
+
+7:22 The children of Hashum, three hundred twenty and eight.
+
+7:23 The children of Bezai, three hundred twenty and four.
+
+7:24 The children of Hariph, an hundred and twelve.
+
+7:25 The children of Gibeon, ninety and five.
+
+7:26 The men of Bethlehem and Netophah, an hundred fourscore and
+eight.
+
+7:27 The men of Anathoth, an hundred twenty and eight.
+
+7:28 The men of Bethazmaveth, forty and two.
+
+7:29 The men of Kirjathjearim, Chephirah, and Beeroth, seven hundred
+forty and three.
+
+7:30 The men of Ramah and Gaba, six hundred twenty and one.
+
+7:31 The men of Michmas, an hundred and twenty and two.
+
+7:32 The men of Bethel and Ai, an hundred twenty and three.
+
+7:33 The men of the other Nebo, fifty and two.
+
+7:34 The children of the other Elam, a thousand two hundred fifty and
+four.
+
+7:35 The children of Harim, three hundred and twenty.
+
+7:36 The children of Jericho, three hundred forty and five.
+
+7:37 The children of Lod, Hadid, and Ono, seven hundred twenty and
+one.
+
+7:38 The children of Senaah, three thousand nine hundred and thirty.
+
+7:39 The priests: the children of Jedaiah, of the house of Jeshua,
+nine hundred seventy and three.
+
+7:40 The children of Immer, a thousand fifty and two.
+
+7:41 The children of Pashur, a thousand two hundred forty and seven.
+
+7:42 The children of Harim, a thousand and seventeen.
+
+7:43 The Levites: the children of Jeshua, of Kadmiel, and of the
+children of Hodevah, seventy and four.
+
+7:44 The singers: the children of Asaph, an hundred forty and eight.
+
+7:45 The porters: the children of Shallum, the children of Ater, the
+children of Talmon, the children of Akkub, the children of Hatita, the
+children of Shobai, an hundred thirty and eight.
+
+7:46 The Nethinims: the children of Ziha, the children of Hashupha,
+the children of Tabbaoth, 7:47 The children of Keros, the children of
+Sia, the children of Padon, 7:48 The children of Lebana, the children
+of Hagaba, the children of Shalmai, 7:49 The children of Hanan, the
+children of Giddel, the children of Gahar, 7:50 The children of
+Reaiah, the children of Rezin, the children of Nekoda, 7:51 The
+children of Gazzam, the children of Uzza, the children of Phaseah,
+7:52 The children of Besai, the children of Meunim, the children of
+Nephishesim, 7:53 The children of Bakbuk, the children of Hakupha, the
+children of Harhur, 7:54 The children of Bazlith, the children of
+Mehida, the children of Harsha, 7:55 The children of Barkos, the
+children of Sisera, the children of Tamah, 7:56 The children of
+Neziah, the children of Hatipha.
+
+7:57 The children of Solomon's servants: the children of Sotai, the
+children of Sophereth, the children of Perida, 7:58 The children of
+Jaala, the children of Darkon, the children of Giddel, 7:59 The
+children of Shephatiah, the children of Hattil, the children of
+Pochereth of Zebaim, the children of Amon.
+
+7:60 All the Nethinims, and the children of Solomon's servants, were
+three hundred ninety and two.
+
+7:61 And these were they which went up also from Telmelah, Telharesha,
+Cherub, Addon, and Immer: but they could not shew their father's
+house, nor their seed, whether they were of Israel.
+
+7:62 The children of Delaiah, the children of Tobiah, the children of
+Nekoda, six hundred forty and two.
+
+7:63 And of the priests: the children of Habaiah, the children of Koz,
+the children of Barzillai, which took one of the daughters of
+Barzillai the Gileadite to wife, and was called after their name.
+
+7:64 These sought their register among those that were reckoned by
+genealogy, but it was not found: therefore were they, as polluted, put
+from the priesthood.
+
+7:65 And the Tirshatha said unto them, that they should not eat of the
+most holy things, till there stood up a priest with Urim and Thummim.
+
+7:66 The whole congregation together was forty and two thousand three
+hundred and threescore, 7:67 Beside their manservants and their
+maidservants, of whom there were seven thousand three hundred thirty
+and seven: and they had two hundred forty and five singing men and
+singing women.
+
+7:68 Their horses, seven hundred thirty and six: their mules, two
+hundred forty and five: 7:69 Their camels, four hundred thirty and
+five: six thousand seven hundred and twenty asses.
+
+7:70 And some of the chief of the fathers gave unto the work. The
+Tirshatha gave to the treasure a thousand drams of gold, fifty basons,
+five hundred and thirty priests' garments.
+
+7:71 And some of the chief of the fathers gave to the treasure of the
+work twenty thousand drams of gold, and two thousand and two hundred
+pound of silver.
+
+7:72 And that which the rest of the people gave was twenty thousand
+drams of gold, and two thousand pound of silver, and threescore and
+seven priests' garments.
+
+7:73 So the priests, and the Levites, and the porters, and the
+singers, and some of the people, and the Nethinims, and all Israel,
+dwelt in their cities; and when the seventh month came, the children
+of Israel were in their cities.
+
+8:1 And all the people gathered themselves together as one man into
+the street that was before the water gate; and they spake unto Ezra
+the scribe to bring the book of the law of Moses, which the LORD had
+commanded to Israel.
+
+8:2 And Ezra the priest brought the law before the congregation both
+of men and women, and all that could hear with understanding, upon the
+first day of the seventh month.
+
+8:3 And he read therein before the street that was before the water
+gate from the morning until midday, before the men and the women, and
+those that could understand; and the ears of all the people were
+attentive unto the book of the law.
+
+8:4 And Ezra the scribe stood upon a pulpit of wood, which they had
+made for the purpose; and beside him stood Mattithiah, and Shema, and
+Anaiah, and Urijah, and Hilkiah, and Maaseiah, on his right hand; and
+on his left hand, Pedaiah, and Mishael, and Malchiah, and Hashum, and
+Hashbadana, Zechariah, and Meshullam.
+
+8:5 And Ezra opened the book in the sight of all the people; (for he
+was above all the people;) and when he opened it, all the people stood
+up: 8:6 And Ezra blessed the LORD, the great God. And all the people
+answered, Amen, Amen, with lifting up their hands: and they bowed
+their heads, and worshipped the LORD with their faces to the ground.
+
+8:7 Also Jeshua, and Bani, and Sherebiah, Jamin, Akkub, Shabbethai,
+Hodijah, Maaseiah, Kelita, Azariah, Jozabad, Hanan, Pelaiah, and the
+Levites, caused the people to understand the law: and the people stood
+in their place.
+
+8:8 So they read in the book in the law of God distinctly, and gave
+the sense, and caused them to understand the reading.
+
+8:9 And Nehemiah, which is the Tirshatha, and Ezra the priest the
+scribe, and the Levites that taught the people, said unto all the
+people, This day is holy unto the LORD your God; mourn not, nor weep.
+For all the people wept, when they heard the words of the law.
+
+8:10 Then he said unto them, Go your way, eat the fat, and drink the
+sweet, and send portions unto them for whom nothing is prepared: for
+this day is holy unto our LORD: neither be ye sorry; for the joy of
+the LORD is your strength.
+
+8:11 So the Levites stilled all the people, saying, Hold your peace,
+for the day is holy; neither be ye grieved.
+
+8:12 And all the people went their way to eat, and to drink, and to
+send portions, and to make great mirth, because they had understood
+the words that were declared unto them.
+
+8:13 And on the second day were gathered together the chief of the
+fathers of all the people, the priests, and the Levites, unto Ezra the
+scribe, even to understand the words of the law.
+
+8:14 And they found written in the law which the LORD had commanded by
+Moses, that the children of Israel should dwell in booths in the feast
+of the seventh month: 8:15 And that they should publish and proclaim
+in all their cities, and in Jerusalem, saying, Go forth unto the
+mount, and fetch olive branches, and pine branches, and myrtle
+branches, and palm branches, and branches of thick trees, to make
+booths, as it is written.
+
+8:16 So the people went forth, and brought them, and made themselves
+booths, every one upon the roof of his house, and in their courts, and
+in the courts of the house of God, and in the street of the water
+gate, and in the street of the gate of Ephraim.
+
+8:17 And all the congregation of them that were come again out of the
+captivity made booths, and sat under the booths: for since the days of
+Jeshua the son of Nun unto that day had not the children of Israel
+done so. And there was very great gladness.
+
+8:18 Also day by day, from the first day unto the last day, he read in
+the book of the law of God. And they kept the feast seven days; and on
+the eighth day was a solemn assembly, according unto the manner.
+
+9:1 Now in the twenty and fourth day of this month the children of
+Israel were assembled with fasting, and with sackclothes, and earth
+upon them.
+
+9:2 And the seed of Israel separated themselves from all strangers,
+and stood and confessed their sins, and the iniquities of their
+fathers.
+
+9:3 And they stood up in their place, and read in the book of the law
+of the LORD their God one fourth part of the day; and another fourth
+part they confessed, and worshipped the LORD their God.
+
+9:4 Then stood up upon the stairs, of the Levites, Jeshua, and Bani,
+Kadmiel, Shebaniah, Bunni, Sherebiah, Bani, and Chenani, and cried
+with a loud voice unto the LORD their God.
+
+9:5 Then the Levites, Jeshua, and Kadmiel, Bani, Hashabniah,
+Sherebiah, Hodijah, Shebaniah, and Pethahiah, said, Stand up and bless
+the LORD your God for ever and ever: and blessed be thy glorious name,
+which is exalted above all blessing and praise.
+
+9:6 Thou, even thou, art LORD alone; thou hast made heaven, the heaven
+of heavens, with all their host, the earth, and all things that are
+therein, the seas, and all that is therein, and thou preservest them
+all; and the host of heaven worshippeth thee.
+
+9:7 Thou art the LORD the God, who didst choose Abram, and broughtest
+him forth out of Ur of the Chaldees, and gavest him the name of
+Abraham; 9:8 And foundest his heart faithful before thee, and madest a
+covenant with him to give the land of the Canaanites, the Hittites,
+the Amorites, and the Perizzites, and the Jebusites, and the
+Girgashites, to give it, I say, to his seed, and hast performed thy
+words; for thou art righteous: 9:9 And didst see the affliction of our
+fathers in Egypt, and heardest their cry by the Red sea; 9:10 And
+shewedst signs and wonders upon Pharaoh, and on all his servants, and
+on all the people of his land: for thou knewest that they dealt
+proudly against them. So didst thou get thee a name, as it is this
+day.
+
+9:11 And thou didst divide the sea before them, so that they went
+through the midst of the sea on the dry land; and their persecutors
+thou threwest into the deeps, as a stone into the mighty waters.
+
+9:12 Moreover thou leddest them in the day by a cloudy pillar; and in
+the night by a pillar of fire, to give them light in the way wherein
+they should go.
+
+9:13 Thou camest down also upon mount Sinai, and spakest with them
+from heaven, and gavest them right judgments, and true laws, good
+statutes and commandments: 9:14 And madest known unto them thy holy
+sabbath, and commandedst them precepts, statutes, and laws, by the
+hand of Moses thy servant: 9:15 And gavest them bread from heaven for
+their hunger, and broughtest forth water for them out of the rock for
+their thirst, and promisedst them that they should go in to possess
+the land which thou hadst sworn to give them.
+
+9:16 But they and our fathers dealt proudly, and hardened their necks,
+and hearkened not to thy commandments, 9:17 And refused to obey,
+neither were mindful of thy wonders that thou didst among them; but
+hardened their necks, and in their rebellion appointed a captain to
+return to their bondage: but thou art a God ready to pardon, gracious
+and merciful, slow to anger, and of great kindness, and forsookest
+them not.
+
+9:18 Yea, when they had made them a molten calf, and said, This is thy
+God that brought thee up out of Egypt, and had wrought great
+provocations; 9:19 Yet thou in thy manifold mercies forsookest them
+not in the wilderness: the pillar of the cloud departed not from them
+by day, to lead them in the way; neither the pillar of fire by night,
+to shew them light, and the way wherein they should go.
+
+9:20 Thou gavest also thy good spirit to instruct them, and
+withheldest not thy manna from their mouth, and gavest them water for
+their thirst.
+
+9:21 Yea, forty years didst thou sustain them in the wilderness, so
+that they lacked nothing; their clothes waxed not old, and their feet
+swelled not.
+
+9:22 Moreover thou gavest them kingdoms and nations, and didst divide
+them into corners: so they possessed the land of Sihon, and the land
+of the king of Heshbon, and the land of Og king of Bashan.
+
+9:23 Their children also multipliedst thou as the stars of heaven, and
+broughtest them into the land, concerning which thou hadst promised to
+their fathers, that they should go in to possess it.
+
+9:24 So the children went in and possessed the land, and thou
+subduedst before them the inhabitants of the land, the Canaanites, and
+gavest them into their hands, with their kings, and the people of the
+land, that they might do with them as they would.
+
+9:25 And they took strong cities, and a fat land, and possessed houses
+full of all goods, wells digged, vineyards, and oliveyards, and fruit
+trees in abundance: so they did eat, and were filled, and became fat,
+and delighted themselves in thy great goodness.
+
+9:26 Nevertheless they were disobedient, and rebelled against thee,
+and cast thy law behind their backs, and slew thy prophets which
+testified against them to turn them to thee, and they wrought great
+provocations.
+
+9:27 Therefore thou deliveredst them into the hand of their enemies,
+who vexed them: and in the time of their trouble, when they cried unto
+thee, thou heardest them from heaven; and according to thy manifold
+mercies thou gavest them saviours, who saved them out of the hand of
+their enemies.
+
+9:28 But after they had rest, they did evil again before thee:
+therefore leftest thou them in the land of their enemies, so that they
+had the dominion over them: yet when they returned, and cried unto
+thee, thou heardest them from heaven; and many times didst thou
+deliver them according to thy mercies; 9:29 And testifiedst against
+them, that thou mightest bring them again unto thy law: yet they dealt
+proudly, and hearkened not unto thy commandments, but sinned against
+thy judgments, (which if a man do, he shall live in them;) and
+withdrew the shoulder, and hardened their neck, and would not hear.
+
+9:30 Yet many years didst thou forbear them, and testifiedst against
+them by thy spirit in thy prophets: yet would they not give ear:
+therefore gavest thou them into the hand of the people of the lands.
+
+9:31 Nevertheless for thy great mercies' sake thou didst not utterly
+consume them, nor forsake them; for thou art a gracious and merciful
+God.
+
+9:32 Now therefore, our God, the great, the mighty, and the terrible
+God, who keepest covenant and mercy, let not all the trouble seem
+little before thee, that hath come upon us, on our kings, on our
+princes, and on our priests, and on our prophets, and on our fathers,
+and on all thy people, since the time of the kings of Assyria unto
+this day.
+
+9:33 Howbeit thou art just in all that is brought upon us; for thou
+hast done right, but we have done wickedly: 9:34 Neither have our
+kings, our princes, our priests, nor our fathers, kept thy law, nor
+hearkened unto thy commandments and thy testimonies, wherewith thou
+didst testify against them.
+
+9:35 For they have not served thee in their kingdom, and in thy great
+goodness that thou gavest them, and in the large and fat land which
+thou gavest before them, neither turned they from their wicked works.
+
+9:36 Behold, we are servants this day, and for the land that thou
+gavest unto our fathers to eat the fruit thereof and the good thereof,
+behold, we are servants in it: 9:37 And it yieldeth much increase unto
+the kings whom thou hast set over us because of our sins: also they
+have dominion over our bodies, and over our cattle, at their pleasure,
+and we are in great distress.
+
+9:38 And because of all this we make a sure covenant, and write it;
+and our princes, Levites, and priests, seal unto it.
+
+10:1 Now those that sealed were, Nehemiah, the Tirshatha, the son of
+Hachaliah, and Zidkijah, 10:2 Seraiah, Azariah, Jeremiah, 10:3 Pashur,
+Amariah, Malchijah, 10:4 Hattush, Shebaniah, Malluch, 10:5 Harim,
+Meremoth, Obadiah, 10:6 Daniel, Ginnethon, Baruch, 10:7 Meshullam,
+Abijah, Mijamin, 10:8 Maaziah, Bilgai, Shemaiah: these were the
+priests.
+
+10:9 And the Levites: both Jeshua the son of Azaniah, Binnui of the
+sons of Henadad, Kadmiel; 10:10 And their brethren, Shebaniah,
+Hodijah, Kelita, Pelaiah, Hanan, 10:11 Micha, Rehob, Hashabiah, 10:12
+Zaccur, Sherebiah, Shebaniah, 10:13 Hodijah, Bani, Beninu.
+
+10:14 The chief of the people; Parosh, Pahathmoab, Elam, Zatthu, Bani,
+10:15 Bunni, Azgad, Bebai, 10:16 Adonijah, Bigvai, Adin, 10:17 Ater,
+Hizkijah, Azzur, 10:18 Hodijah, Hashum, Bezai, 10:19 Hariph, Anathoth,
+Nebai, 10:20 Magpiash, Meshullam, Hezir, 10:21 Meshezabeel, Zadok,
+Jaddua, 10:22 Pelatiah, Hanan, Anaiah, 10:23 Hoshea, Hananiah, Hashub,
+10:24 Hallohesh, Pileha, Shobek, 10:25 Rehum, Hashabnah, Maaseiah,
+10:26 And Ahijah, Hanan, Anan, 10:27 Malluch, Harim, Baanah.
+
+10:28 And the rest of the people, the priests, the Levites, the
+porters, the singers, the Nethinims, and all they that had separated
+themselves from the people of the lands unto the law of God, their
+wives, their sons, and their daughters, every one having knowledge,
+and having understanding; 10:29 They clave to their brethren, their
+nobles, and entered into a curse, and into an oath, to walk in God's
+law, which was given by Moses the servant of God, and to observe and
+do all the commandments of the LORD our Lord, and his judgments and
+his statutes; 10:30 And that we would not give our daughters unto the
+people of the land, not take their daughters for our sons: 10:31 And
+if the people of the land bring ware or any victuals on the sabbath
+day to sell, that we would not buy it of them on the sabbath, or on
+the holy day: and that we would leave the seventh year, and the
+exaction of every debt.
+
+10:32 Also we made ordinances for us, to charge ourselves yearly with
+the third part of a shekel for the service of the house of our God;
+10:33 For the shewbread, and for the continual meat offering, and for
+the continual burnt offering, of the sabbaths, of the new moons, for
+the set feasts, and for the holy things, and for the sin offerings to
+make an atonement for Israel, and for all the work of the house of our
+God.
+
+10:34 And we cast the lots among the priests, the Levites, and the
+people, for the wood offering, to bring it into the house of our God,
+after the houses of our fathers, at times appointed year by year, to
+burn upon the altar of the LORD our God, as it is written in the law:
+10:35 And to bring the firstfruits of our ground, and the firstfruits
+of all fruit of all trees, year by year, unto the house of the LORD:
+10:36 Also the firstborn of our sons, and of our cattle, as it is
+written in the law, and the firstlings of our herds and of our flocks,
+to bring to the house of our God, unto the priests that minister in
+the house of our God: 10:37 And that we should bring the firstfruits
+of our dough, and our offerings, and the fruit of all manner of trees,
+of wine and of oil, unto the priests, to the chambers of the house of
+our God; and the tithes of our ground unto the Levites, that the same
+Levites might have the tithes in all the cities of our tillage.
+
+10:38 And the priest the son of Aaron shall be with the Levites, when
+the Levites take tithes: and the Levites shall bring up the tithe of
+the tithes unto the house of our God, to the chambers, into the
+treasure house.
+
+10:39 For the children of Israel and the children of Levi shall bring
+the offering of the corn, of the new wine, and the oil, unto the
+chambers, where are the vessels of the sanctuary, and the priests that
+minister, and the porters, and the singers: and we will not forsake
+the house of our God.
+
+11:1 And the rulers of the people dwelt at Jerusalem: the rest of the
+people also cast lots, to bring one of ten to dwell in Jerusalem the
+holy city, and nine parts to dwell in other cities.
+
+11:2 And the people blessed all the men, that willingly offered
+themselves to dwell at Jerusalem.
+
+11:3 Now these are the chief of the province that dwelt in Jerusalem:
+but in the cities of Judah dwelt every one in his possession in their
+cities, to wit, Israel, the priests, and the Levites, and the
+Nethinims, and the children of Solomon's servants.
+
+11:4 And at Jerusalem dwelt certain of the children of Judah, and of
+the children of Benjamin. Of the children of Judah; Athaiah the son of
+Uzziah, the son of Zechariah, the son of Amariah, the son of
+Shephatiah, the son of Mahalaleel, of the children of Perez; 11:5 And
+Maaseiah the son of Baruch, the son of Colhozeh, the son of Hazaiah,
+the son of Adaiah, the son of Joiarib, the son of Zechariah, the son
+of Shiloni.
+
+11:6 All the sons of Perez that dwelt at Jerusalem were four hundred
+threescore and eight valiant men.
+
+11:7 And these are the sons of Benjamin; Sallu the son of Meshullam,
+the son of Joed, the son of Pedaiah, the son of Kolaiah, the son of
+Maaseiah, the son of Ithiel, the son of Jesaiah.
+
+11:8 And after him Gabbai, Sallai, nine hundred twenty and eight.
+
+11:9 And Joel the son of Zichri was their overseer: and Judah the son
+of Senuah was second over the city.
+
+11:10 Of the priests: Jedaiah the son of Joiarib, Jachin.
+
+11:11 Seraiah the son of Hilkiah, the son of Meshullam, the son of
+Zadok, the son of Meraioth, the son of Ahitub, was the ruler of the
+house of God.
+
+11:12 And their brethren that did the work of the house were eight
+hundred twenty and two: and Adaiah the son of Jeroham, the son of
+Pelaliah, the son of Amzi, the son of Zechariah, the son of Pashur,
+the son of Malchiah.
+
+11:13 And his brethren, chief of the fathers, two hundred forty and
+two: and Amashai the son of Azareel, the son of Ahasai, the son of
+Meshillemoth, the son of Immer, 11:14 And their brethren, mighty men
+of valour, an hundred twenty and eight: and their overseer was
+Zabdiel, the son of one of the great men.
+
+11:15 Also of the Levites: Shemaiah the son of Hashub, the son of
+Azrikam, the son of Hashabiah, the son of Bunni; 11:16 And Shabbethai
+and Jozabad, of the chief of the Levites, had the oversight of the
+outward business of the house of God.
+
+11:17 And Mattaniah the son of Micha, the son of Zabdi, the son of
+Asaph, was the principal to begin the thanksgiving in prayer: and
+Bakbukiah the second among his brethren, and Abda the son of Shammua,
+the son of Galal, the son of Jeduthun.
+
+11:18 All the Levites in the holy city were two hundred fourscore and
+four.
+
+11:19 Moreover the porters, Akkub, Talmon, and their brethren that
+kept the gates, were an hundred seventy and two.
+
+11:20 And the residue of Israel, of the priests, and the Levites, were
+in all the cities of Judah, every one in his inheritance.
+
+11:21 But the Nethinims dwelt in Ophel: and Ziha and Gispa were over
+the Nethinims.
+
+11:22 The overseer also of the Levites at Jerusalem was Uzzi the son
+of Bani, the son of Hashabiah, the son of Mattaniah, the son of Micha.
+Of the sons of Asaph, the singers were over the business of the house
+of God.
+
+11:23 For it was the king's commandment concerning them, that a
+certain portion should be for the singers, due for every day.
+
+11:24 And Pethahiah the son of Meshezabeel, of the children of Zerah
+the son of Judah, was at the king's hand in all matters concerning the
+people.
+
+11:25 And for the villages, with their fields, some of the children of
+Judah dwelt at Kirjatharba, and in the villages thereof, and at Dibon,
+and in the villages thereof, and at Jekabzeel, and in the villages
+thereof, 11:26 And at Jeshua, and at Moladah, and at Bethphelet, 11:27
+And at Hazarshual, and at Beersheba, and in the villages thereof,
+11:28 And at Ziklag, and at Mekonah, and in the villages thereof,
+11:29 And at Enrimmon, and at Zareah, and at Jarmuth, 11:30 Zanoah,
+Adullam, and in their villages, at Lachish, and the fields thereof, at
+Azekah, and in the villages thereof. And they dwelt from Beersheba
+unto the valley of Hinnom.
+
+11:31 The children also of Benjamin from Geba dwelt at Michmash, and
+Aija, and Bethel, and in their villages.
+
+11:32 And at Anathoth, Nob, Ananiah, 11:33 Hazor, Ramah, Gittaim,
+11:34 Hadid, Zeboim, Neballat, 11:35 Lod, and Ono, the valley of
+craftsmen.
+
+11:36 And of the Levites were divisions in Judah, and in Benjamin.
+
+12:1 Now these are the priests and the Levites that went up with
+Zerubbabel the son of Shealtiel, and Jeshua: Seraiah, Jeremiah, Ezra,
+12:2 Amariah, Malluch, Hattush, 12:3 Shechaniah, Rehum, Meremoth, 12:4
+Iddo, Ginnetho, Abijah, 12:5 Miamin, Maadiah, Bilgah, 12:6 Shemaiah,
+and Joiarib, Jedaiah, 12:7 Sallu, Amok, Hilkiah, Jedaiah. These were
+the chief of the priests and of their brethren in the days of Jeshua.
+
+12:8 Moreover the Levites: Jeshua, Binnui, Kadmiel, Sherebiah, Judah,
+and Mattaniah, which was over the thanksgiving, he and his brethren.
+
+12:9 Also Bakbukiah and Unni, their brethren, were over against them
+in the watches.
+
+12:10 And Jeshua begat Joiakim, Joiakim also begat Eliashib, and
+Eliashib begat Joiada, 12:11 And Joiada begat Jonathan, and Jonathan
+begat Jaddua.
+
+12:12 And in the days of Joiakim were priests, the chief of the
+fathers: of Seraiah, Meraiah; of Jeremiah, Hananiah; 12:13 Of Ezra,
+Meshullam; of Amariah, Jehohanan; 12:14 Of Melicu, Jonathan; of
+Shebaniah, Joseph; 12:15 Of Harim, Adna; of Meraioth, Helkai; 12:16 Of
+Iddo, Zechariah; of Ginnethon, Meshullam; 12:17 Of Abijah, Zichri; of
+Miniamin, of Moadiah, Piltai: 12:18 Of Bilgah, Shammua; of Shemaiah,
+Jehonathan; 12:19 And of Joiarib, Mattenai; of Jedaiah, Uzzi; 12:20 Of
+Sallai, Kallai; of Amok, Eber; 12:21 Of Hilkiah, Hashabiah; of
+Jedaiah, Nethaneel.
+
+12:22 The Levites in the days of Eliashib, Joiada, and Johanan, and
+Jaddua, were recorded chief of the fathers: also the priests, to the
+reign of Darius the Persian.
+
+12:23 The sons of Levi, the chief of the fathers, were written in the
+book of the chronicles, even until the days of Johanan the son of
+Eliashib.
+
+12:24 And the chief of the Levites: Hashabiah, Sherebiah, and Jeshua
+the son of Kadmiel, with their brethren over against them, to praise
+and to give thanks, according to the commandment of David the man of
+God, ward over against ward.
+
+12:25 Mattaniah, and Bakbukiah, Obadiah, Meshullam, Talmon, Akkub,
+were porters keeping the ward at the thresholds of the gates.
+
+12:26 These were in the days of Joiakim the son of Jeshua, the son of
+Jozadak, and in the days of Nehemiah the governor, and of Ezra the
+priest, the scribe.
+
+12:27 And at the dedication of the wall of Jerusalem they sought the
+Levites out of all their places, to bring them to Jerusalem, to keep
+the dedication with gladness, both with thanksgivings, and with
+singing, with cymbals, psalteries, and with harps.
+
+12:28 And the sons of the singers gathered themselves together, both
+out of the plain country round about Jerusalem, and from the villages
+of Netophathi; 12:29 Also from the house of Gilgal, and out of the
+fields of Geba and Azmaveth: for the singers had builded them villages
+round about Jerusalem.
+
+12:30 And the priests and the Levites purified themselves, and
+purified the people, and the gates, and the wall.
+
+12:31 Then I brought up the princes of Judah upon the wall, and
+appointed two great companies of them that gave thanks, whereof one
+went on the right hand upon the wall toward the dung gate: 12:32 And
+after them went Hoshaiah, and half of the princes of Judah, 12:33 And
+Azariah, Ezra, and Meshullam, 12:34 Judah, and Benjamin, and Shemaiah,
+and Jeremiah, 12:35 And certain of the priests' sons with trumpets;
+namely, Zechariah the son of Jonathan, the son of Shemaiah, the son of
+Mattaniah, the son of Michaiah, the son of Zaccur, the son of Asaph:
+12:36 And his brethren, Shemaiah, and Azarael, Milalai, Gilalai, Maai,
+Nethaneel, and Judah, Hanani, with the musical instruments of David
+the man of God, and Ezra the scribe before them.
+
+12:37 And at the fountain gate, which was over against them, they went
+up by the stairs of the city of David, at the going up of the wall,
+above the house of David, even unto the water gate eastward.
+
+12:38 And the other company of them that gave thanks went over against
+them, and I after them, and the half of the people upon the wall, from
+beyond the tower of the furnaces even unto the broad wall; 12:39 And
+from above the gate of Ephraim, and above the old gate, and above the
+fish gate, and the tower of Hananeel, and the tower of Meah, even unto
+the sheep gate: and they stood still in the prison gate.
+
+12:40 So stood the two companies of them that gave thanks in the house
+of God, and I, and the half of the rulers with me: 12:41 And the
+priests; Eliakim, Maaseiah, Miniamin, Michaiah, Elioenai, Zechariah,
+and Hananiah, with trumpets; 12:42 And Maaseiah, and Shemaiah, and
+Eleazar, and Uzzi, and Jehohanan, and Malchijah, and Elam, and Ezer.
+And the singers sang loud, with Jezrahiah their overseer.
+
+12:43 Also that day they offered great sacrifices, and rejoiced: for
+God had made them rejoice with great joy: the wives also and the
+children rejoiced: so that the joy of Jerusalem was heard even afar
+off.
+
+12:44 And at that time were some appointed over the chambers for the
+treasures, for the offerings, for the firstfruits, and for the tithes,
+to gather into them out of the fields of the cities the portions of
+the law for the priests and Levites: for Judah rejoiced for the
+priests and for the Levites that waited.
+
+12:45 And both the singers and the porters kept the ward of their God,
+and the ward of the purification, according to the commandment of
+David, and of Solomon his son.
+
+12:46 For in the days of David and Asaph of old there were chief of
+the singers, and songs of praise and thanksgiving unto God.
+
+12:47 And all Israel in the days of Zerubbabel, and in the days of
+Nehemiah, gave the portions of the singers and the porters, every day
+his portion: and they sanctified holy things unto the Levites; and the
+Levites sanctified them unto the children of Aaron.
+
+13:1 On that day they read in the book of Moses in the audience of the
+people; and therein was found written, that the Ammonite and the
+Moabite should not come into the congregation of God for ever; 13:2
+Because they met not the children of Israel with bread and with water,
+but hired Balaam against them, that he should curse them: howbeit our
+God turned the curse into a blessing.
+
+13:3 Now it came to pass, when they had heard the law, that they
+separated from Israel all the mixed multitude.
+
+13:4 And before this, Eliashib the priest, having the oversight of the
+chamber of the house of our God, was allied unto Tobiah: 13:5 And he
+had prepared for him a great chamber, where aforetime they laid the
+meat offerings, the frankincense, and the vessels, and the tithes of
+the corn, the new wine, and the oil, which was commanded to be given
+to the Levites, and the singers, and the porters; and the offerings of
+the priests.
+
+13:6 But in all this time was not I at Jerusalem: for in the two and
+thirtieth year of Artaxerxes king of Babylon came I unto the king, and
+after certain days obtained I leave of the king: 13:7 And I came to
+Jerusalem, and understood of the evil that Eliashib did for Tobiah, in
+preparing him a chamber in the courts of the house of God.
+
+13:8 And it grieved me sore: therefore I cast forth all the household
+stuff to Tobiah out of the chamber.
+
+13:9 Then I commanded, and they cleansed the chambers: and thither
+brought I again the vessels of the house of God, with the meat
+offering and the frankincense.
+
+13:10 And I perceived that the portions of the Levites had not been
+given them: for the Levites and the singers, that did the work, were
+fled every one to his field.
+
+13:11 Then contended I with the rulers, and said, Why is the house of
+God forsaken? And I gathered them together, and set them in their
+place.
+
+13:12 Then brought all Judah the tithe of the corn and the new wine
+and the oil unto the treasuries.
+
+13:13 And I made treasurers over the treasuries, Shelemiah the priest,
+and Zadok the scribe, and of the Levites, Pedaiah: and next to them
+was Hanan the son of Zaccur, the son of Mattaniah: for they were
+counted faithful, and their office was to distribute unto their
+brethren.
+
+13:14 Remember me, O my God, concerning this, and wipe not out my good
+deeds that I have done for the house of my God, and for the offices
+thereof.
+
+13:15 In those days saw I in Judah some treading wine presses on the
+sabbath, and bringing in sheaves, and lading asses; as also wine,
+grapes, and figs, and all manner of burdens, which they brought into
+Jerusalem on the sabbath day: and I testified against them in the day
+wherein they sold victuals.
+
+13:16 There dwelt men of Tyre also therein, which brought fish, and
+all manner of ware, and sold on the sabbath unto the children of
+Judah, and in Jerusalem.
+
+13:17 Then I contended with the nobles of Judah, and said unto them,
+What evil thing is this that ye do, and profane the sabbath day?
+13:18 Did not your fathers thus, and did not our God bring all this
+evil upon us, and upon this city? yet ye bring more wrath upon Israel
+by profaning the sabbath.
+
+13:19 And it came to pass, that when the gates of Jerusalem began to
+be dark before the sabbath, I commanded that the gates should be shut,
+and charged that they should not be opened till after the sabbath: and
+some of my servants set I at the gates, that there should no burden be
+brought in on the sabbath day.
+
+13:20 So the merchants and sellers of all kind of ware lodged without
+Jerusalem once or twice.
+
+13:21 Then I testified against them, and said unto them, Why lodge ye
+about the wall? if ye do so again, I will lay hands on you. From that
+time forth came they no more on the sabbath.
+
+13:22 And I commanded the Levites that they should cleanse themselves,
+and that they should come and keep the gates, to sanctify the sabbath
+day.
+
+Remember me, O my God, concerning this also, and spare me according to
+the greatness of thy mercy.
+
+13:23 In those days also saw I Jews that had married wives of Ashdod,
+of Ammon, and of Moab: 13:24 And their children spake half in the
+speech of Ashdod, and could not speak in the Jews' language, but
+according to the language of each people.
+
+13:25 And I contended with them, and cursed them, and smote certain of
+them, and plucked off their hair, and made them swear by God, saying,
+Ye shall not give your daughters unto their sons, nor take their
+daughters unto your sons, or for yourselves.
+
+13:26 Did not Solomon king of Israel sin by these things? yet among
+many nations was there no king like him, who was beloved of his God,
+and God made him king over all Israel: nevertheless even him did
+outlandish women cause to sin.
+
+13:27 Shall we then hearken unto you to do all this great evil, to
+transgress against our God in marrying strange wives? 13:28 And one
+of the sons of Joiada, the son of Eliashib the high priest, was son in
+law to Sanballat the Horonite: therefore I chased him from me.
+
+13:29 Remember them, O my God, because they have defiled the
+priesthood, and the covenant of the priesthood, and of the Levites.
+
+13:30 Thus cleansed I them from all strangers, and appointed the wards
+of the priests and the Levites, every one in his business; 13:31 And
+for the wood offering, at times appointed, and for the firstfruits.
+Remember me, O my God, for good.
+
+
+
+
+The Book of Esther
+
+
+1:1 Now it came to pass in the days of Ahasuerus, (this is Ahasuerus
+which reigned, from India even unto Ethiopia, over an hundred and
+seven and twenty provinces:) 1:2 That in those days, when the king
+Ahasuerus sat on the throne of his kingdom, which was in Shushan the
+palace, 1:3 In the third year of his reign, he made a feast unto all
+his princes and his servants; the power of Persia and Media, the
+nobles and princes of the provinces, being before him: 1:4 When he
+shewed the riches of his glorious kingdom and the honour of his
+excellent majesty many days, even an hundred and fourscore days.
+
+1:5 And when these days were expired, the king made a feast unto all
+the people that were present in Shushan the palace, both unto great
+and small, seven days, in the court of the garden of the king's
+palace; 1:6 Where were white, green, and blue, hangings, fastened with
+cords of fine linen and purple to silver rings and pillars of marble:
+the beds were of gold and silver, upon a pavement of red, and blue,
+and white, and black, marble.
+
+1:7 And they gave them drink in vessels of gold, (the vessels being
+diverse one from another,) and royal wine in abundance, according to
+the state of the king.
+
+1:8 And the drinking was according to the law; none did compel: for so
+the king had appointed to all the officers of his house, that they
+should do according to every man's pleasure.
+
+1:9 Also Vashti the queen made a feast for the women in the royal
+house which belonged to king Ahasuerus.
+
+1:10 On the seventh day, when the heart of the king was merry with
+wine, he commanded Mehuman, Biztha, Harbona, Bigtha, and Abagtha,
+Zethar, and Carcas, the seven chamberlains that served in the presence
+of Ahasuerus the king, 1:11 To bring Vashti the queen before the king
+with the crown royal, to shew the people and the princes her beauty:
+for she was fair to look on.
+
+1:12 But the queen Vashti refused to come at the king's commandment by
+his chamberlains: therefore was the king very wroth, and his anger
+burned in him.
+
+1:13 Then the king said to the wise men, which knew the times, (for so
+was the king's manner toward all that knew law and judgment: 1:14 And
+the next unto him was Carshena, Shethar, Admatha, Tarshish, Meres,
+Marsena, and Memucan, the seven princes of Persia and Media, which saw
+the king's face, and which sat the first in the kingdom;) 1:15 What
+shall we do unto the queen Vashti according to law, because she hath
+not performed the commandment of the king Ahasuerus by the
+chamberlains? 1:16 And Memucan answered before the king and the
+princes, Vashti the queen hath not done wrong to the king only, but
+also to all the princes, and to all the people that are in all the
+provinces of the king Ahasuerus.
+
+1:17 For this deed of the queen shall come abroad unto all women, so
+that they shall despise their husbands in their eyes, when it shall be
+reported, The king Ahasuerus commanded Vashti the queen to be brought
+in before him, but she came not.
+
+1:18 Likewise shall the ladies of Persia and Media say this day unto
+all the king's princes, which have heard of the deed of the queen.
+Thus shall there arise too much contempt and wrath.
+
+1:19 If it please the king, let there go a royal commandment from him,
+and let it be written among the laws of the Persians and the Medes,
+that it be not altered, That Vashti come no more before king
+Ahasuerus; and let the king give her royal estate unto another that is
+better than she.
+
+1:20 And when the king's decree which he shall make shall be published
+throughout all his empire, (for it is great,) all the wives shall give
+to their husbands honour, both to great and small.
+
+1:21 And the saying pleased the king and the princes; and the king did
+according to the word of Memucan: 1:22 For he sent letters into all
+the king's provinces, into every province according to the writing
+thereof, and to every people after their language, that every man
+should bear rule in his own house, and that it should be published
+according to the language of every people.
+
+2:1 After these things, when the wrath of king Ahasuerus was appeased,
+he remembered Vashti, and what she had done, and what was decreed
+against her.
+
+2:2 Then said the king's servants that ministered unto him, Let there
+be fair young virgins sought for the king: 2:3 And let the king
+appoint officers in all the provinces of his kingdom, that they may
+gather together all the fair young virgins unto Shushan the palace, to
+the house of the women, unto the custody of Hege the king's
+chamberlain, keeper of the women; and let their things for
+purification be given them: 2:4 And let the maiden which pleaseth the
+king be queen instead of Vashti.
+
+And the thing pleased the king; and he did so.
+
+2:5 Now in Shushan the palace there was a certain Jew, whose name was
+Mordecai, the son of Jair, the son of Shimei, the son of Kish, a
+Benjamite; 2:6 Who had been carried away from Jerusalem with the
+captivity which had been carried away with Jeconiah king of Judah,
+whom Nebuchadnezzar the king of Babylon had carried away.
+
+2:7 And he brought up Hadassah, that is, Esther, his uncle's daughter:
+for she had neither father nor mother, and the maid was fair and
+beautiful; whom Mordecai, when her father and mother were dead, took
+for his own daughter.
+
+2:8 So it came to pass, when the king's commandment and his decree was
+heard, and when many maidens were gathered together unto Shushan the
+palace, to the custody of Hegai, that Esther was brought also unto the
+king's house, to the custody of Hegai, keeper of the women.
+
+2:9 And the maiden pleased him, and she obtained kindness of him; and
+he speedily gave her her things for purification, with such things as
+belonged to her, and seven maidens, which were meet to be given her,
+out of the king's house: and he preferred her and her maids unto the
+best place of the house of the women.
+
+2:10 Esther had not shewed her people nor her kindred: for Mordecai
+had charged her that she should not shew it.
+
+2:11 And Mordecai walked every day before the court of the women's
+house, to know how Esther did, and what should become of her.
+
+2:12 Now when every maid's turn was come to go in to king Ahasuerus,
+after that she had been twelve months, according to the manner of the
+women, (for so were the days of their purifications accomplished, to
+wit, six months with oil of myrrh, and six months with sweet odours,
+and with other things for the purifying of the women;) 2:13 Then thus
+came every maiden unto the king; whatsoever she desired was given her
+to go with her out of the house of the women unto the king's house.
+
+2:14 In the evening she went, and on the morrow she returned into the
+second house of the women, to the custody of Shaashgaz, the king's
+chamberlain, which kept the concubines: she came in unto the king no
+more, except the king delighted in her, and that she were called by
+name.
+
+2:15 Now when the turn of Esther, the daughter of Abihail the uncle of
+Mordecai, who had taken her for his daughter, was come to go in unto
+the king, she required nothing but what Hegai the king's chamberlain,
+the keeper of the women, appointed. And Esther obtained favour in the
+sight of all them that looked upon her.
+
+2:16 So Esther was taken unto king Ahasuerus into his house royal in
+the tenth month, which is the month Tebeth, in the seventh year of his
+reign.
+
+2:17 And the king loved Esther above all the women, and she obtained
+grace and favour in his sight more than all the virgins; so that he
+set the royal crown upon her head, and made her queen instead of
+Vashti.
+
+2:18 Then the king made a great feast unto all his princes and his
+servants, even Esther's feast; and he made a release to the provinces,
+and gave gifts, according to the state of the king.
+
+2:19 And when the virgins were gathered together the second time, then
+Mordecai sat in the king's gate.
+
+2:20 Esther had not yet shewed her kindred nor her people; as Mordecai
+had charged her: for Esther did the commandment of Mordecai, like as
+when she was brought up with him.
+
+2:21 In those days, while Mordecai sat in the king's gate, two of the
+king's chamberlains, Bigthan and Teresh, of those which kept the door,
+were wroth, and sought to lay hands on the king Ahasuerus.
+
+2:22 And the thing was known to Mordecai, who told it unto Esther the
+queen; and Esther certified the king thereof in Mordecai's name.
+
+2:23 And when inquisition was made of the matter, it was found out;
+therefore they were both hanged on a tree: and it was written in the
+book of the chronicles before the king.
+
+3:1 After these things did king Ahasuerus promote Haman the son of
+Hammedatha the Agagite, and advanced him, and set his seat above all
+the princes that were with him.
+
+3:2 And all the king's servants, that were in the king's gate, bowed,
+and reverenced Haman: for the king had so commanded concerning him.
+But Mordecai bowed not, nor did him reverence.
+
+3:3 Then the king's servants, which were in the king's gate, said unto
+Mordecai, Why transgressest thou the king's commandment? 3:4 Now it
+came to pass, when they spake daily unto him, and he hearkened not
+unto them, that they told Haman, to see whether Mordecai's matters
+would stand: for he had told them that he was a Jew.
+
+3:5 And when Haman saw that Mordecai bowed not, nor did him reverence,
+then was Haman full of wrath.
+
+3:6 And he thought scorn to lay hands on Mordecai alone; for they had
+shewed him the people of Mordecai: wherefore Haman sought to destroy
+all the Jews that were throughout the whole kingdom of Ahasuerus, even
+the people of Mordecai.
+
+3:7 In the first month, that is, the month Nisan, in the twelfth year
+of king Ahasuerus, they cast Pur, that is, the lot, before Haman from
+day to day, and from month to month, to the twelfth month, that is,
+the month Adar.
+
+3:8 And Haman said unto king Ahasuerus, There is a certain people
+scattered abroad and dispersed among the people in all the provinces
+of thy kingdom; and their laws are diverse from all people; neither
+keep they the king's laws: therefore it is not for the king's profit
+to suffer them.
+
+3:9 If it please the king, let it be written that they may be
+destroyed: and I will pay ten thousand talents of silver to the hands
+of those that have the charge of the business, to bring it into the
+king's treasuries.
+
+3:10 And the king took his ring from his hand, and gave it unto Haman
+the son of Hammedatha the Agagite, the Jews' enemy.
+
+3:11 And the king said unto Haman, The silver is given to thee, the
+people also, to do with them as it seemeth good to thee.
+
+3:12 Then were the king's scribes called on the thirteenth day of the
+first month, and there was written according to all that Haman had
+commanded unto the king's lieutenants, and to the governors that were
+over every province, and to the rulers of every people of every
+province according to the writing thereof, and to every people after
+their language; in the name of king Ahasuerus was it written, and
+sealed with the king's ring.
+
+3:13 And the letters were sent by posts into all the king's provinces,
+to destroy, to kill, and to cause to perish, all Jews, both young and
+old, little children and women, in one day, even upon the thirteenth
+day of the twelfth month, which is the month Adar, and to take the
+spoil of them for a prey.
+
+3:14 The copy of the writing for a commandment to be given in every
+province was published unto all people, that they should be ready
+against that day.
+
+3:15 The posts went out, being hastened by the king's commandment, and
+the decree was given in Shushan the palace. And the king and Haman sat
+down to drink; but the city Shushan was perplexed.
+
+4:1 When Mordecai perceived all that was done, Mordecai rent his
+clothes, and put on sackcloth with ashes, and went out into the midst
+of the city, and cried with a loud and a bitter cry; 4:2 And came even
+before the king's gate: for none might enter into the king's gate
+clothed with sackcloth.
+
+4:3 And in every province, whithersoever the king's commandment and
+his decree came, there was great mourning among the Jews, and fasting,
+and weeping, and wailing; and many lay in sackcloth and ashes.
+
+4:4 So Esther's maids and her chamberlains came and told it her. Then
+was the queen exceedingly grieved; and she sent raiment to clothe
+Mordecai, and to take away his sackcloth from him: but he received it
+not.
+
+4:5 Then called Esther for Hatach, one of the king's chamberlains,
+whom he had appointed to attend upon her, and gave him a commandment
+to Mordecai, to know what it was, and why it was.
+
+4:6 So Hatach went forth to Mordecai unto the street of the city,
+which was before the king's gate.
+
+4:7 And Mordecai told him of all that had happened unto him, and of
+the sum of the money that Haman had promised to pay to the king's
+treasuries for the Jews, to destroy them.
+
+4:8 Also he gave him the copy of the writing of the decree that was
+given at Shushan to destroy them, to shew it unto Esther, and to
+declare it unto her, and to charge her that she should go in unto the
+king, to make supplication unto him, and to make request before him
+for her people.
+
+4:9 And Hatach came and told Esther the words of Mordecai.
+
+4:10 Again Esther spake unto Hatach, and gave him commandment unto
+Mordecai; 4:11 All the king's servants, and the people of the king's
+provinces, do know, that whosoever, whether man or women, shall come
+unto the king into the inner court, who is not called, there is one
+law of his to put him to death, except such to whom the king shall
+hold out the golden sceptre, that he may live: but I have not been
+called to come in unto the king these thirty days.
+
+4:12 And they told to Mordecai Esther's words.
+
+4:13 Then Mordecai commanded to answer Esther, Think not with thyself
+that thou shalt escape in the king's house, more than all the Jews.
+
+4:14 For if thou altogether holdest thy peace at this time, then shall
+there enlargement and deliverance arise to the Jews from another
+place; but thou and thy father's house shall be destroyed: and who
+knoweth whether thou art come to the kingdom for such a time as this?
+4:15 Then Esther bade them return Mordecai this answer, 4:16 Go,
+gather together all the Jews that are present in Shushan, and fast ye
+for me, and neither eat nor drink three days, night or day: I also and
+my maidens will fast likewise; and so will I go in unto the king,
+which is not according to the law: and if I perish, I perish.
+
+4:17 So Mordecai went his way, and did according to all that Esther
+had commanded him.
+
+5:1 Now it came to pass on the third day, that Esther put on her royal
+apparel, and stood in the inner court of the king's house, over
+against the king's house: and the king sat upon his royal throne in
+the royal house, over against the gate of the house.
+
+5:2 And it was so, when the king saw Esther the queen standing in the
+court, that she obtained favour in his sight: and the king held out to
+Esther the golden sceptre that was in his hand. So Esther drew near,
+and touched the top of the sceptre.
+
+5:3 Then said the king unto her, What wilt thou, queen Esther? and
+what is thy request? it shall be even given thee to the half of the
+kingdom.
+
+5:4 And Esther answered, If it seem good unto the king, let the king
+and Haman come this day unto the banquet that I have prepared for him.
+
+5:5 Then the king said, Cause Haman to make haste, that he may do as
+Esther hath said. So the king and Haman came to the banquet that
+Esther had prepared.
+
+5:6 And the king said unto Esther at the banquet of wine, What is thy
+petition? and it shall be granted thee: and what is thy request? even
+to the half of the kingdom it shall be performed.
+
+5:7 Then answered Esther, and said, My petition and my request is; 5:8
+If I have found favour in the sight of the king, and if it please the
+king to grant my petition, and to perform my request, let the king and
+Haman come to the banquet that I shall prepare for them, and I will do
+to morrow as the king hath said.
+
+5:9 Then went Haman forth that day joyful and with a glad heart: but
+when Haman saw Mordecai in the king's gate, that he stood not up, nor
+moved for him, he was full of indignation against Mordecai.
+
+5:10 Nevertheless Haman refrained himself: and when he came home, he
+sent and called for his friends, and Zeresh his wife.
+
+5:11 And Haman told them of the glory of his riches, and the multitude
+of his children, and all the things wherein the king had promoted him,
+and how he had advanced him above the princes and servants of the
+king.
+
+5:12 Haman said moreover, Yea, Esther the queen did let no man come in
+with the king unto the banquet that she had prepared but myself; and
+to morrow am I invited unto her also with the king.
+
+5:13 Yet all this availeth me nothing, so long as I see Mordecai the
+Jew sitting at the king's gate.
+
+5:14 Then said Zeresh his wife and all his friends unto him, Let a
+gallows be made of fifty cubits high, and to morrow speak thou unto
+the king that Mordecai may be hanged thereon: then go thou in merrily
+with the king unto the banquet. And the thing pleased Haman; and he
+caused the gallows to be made.
+
+6:1 On that night could not the king sleep, and he commanded to bring
+the book of records of the chronicles; and they were read before the
+king.
+
+6:2 And it was found written, that Mordecai had told of Bigthana and
+Teresh, two of the king's chamberlains, the keepers of the door, who
+sought to lay hand on the king Ahasuerus.
+
+6:3 And the king said, What honour and dignity hath been done to
+Mordecai for this? Then said the king's servants that ministered unto
+him, There is nothing done for him.
+
+6:4 And the king said, Who is in the court? Now Haman was come into
+the outward court of the king's house, to speak unto the king to hang
+Mordecai on the gallows that he had prepared for him.
+
+6:5 And the king's servants said unto him, Behold, Haman standeth in
+the court. And the king said, Let him come in.
+
+6:6 So Haman came in. And the king said unto him, What shall be done
+unto the man whom the king delighteth to honour? Now Haman thought in
+his heart, To whom would the king delight to do honour more than to
+myself? 6:7 And Haman answered the king, For the man whom the king
+delighteth to honour, 6:8 Let the royal apparel be brought which the
+king useth to wear, and the horse that the king rideth upon, and the
+crown royal which is set upon his head: 6:9 And let this apparel and
+horse be delivered to the hand of one of the king's most noble
+princes, that they may array the man withal whom the king delighteth
+to honour, and bring him on horseback through the street of the city,
+and proclaim before him, Thus shall it be done to the man whom the
+king delighteth to honour.
+
+6:10 Then the king said to Haman, Make haste, and take the apparel and
+the horse, as thou hast said, and do even so to Mordecai the Jew, that
+sitteth at the king's gate: let nothing fail of all that thou hast
+spoken.
+
+6:11 Then took Haman the apparel and the horse, and arrayed Mordecai,
+and brought him on horseback through the street of the city, and
+proclaimed before him, Thus shall it be done unto the man whom the
+king delighteth to honour.
+
+6:12 And Mordecai came again to the king's gate. But Haman hasted to
+his house mourning, and having his head covered.
+
+6:13 And Haman told Zeresh his wife and all his friends every thing
+that had befallen him. Then said his wise men and Zeresh his wife unto
+him, If Mordecai be of the seed of the Jews, before whom thou hast
+begun to fall, thou shalt not prevail against him, but shalt surely
+fall before him.
+
+6:14 And while they were yet talking with him, came the king's
+chamberlains, and hasted to bring Haman unto the banquet that Esther
+had prepared.
+
+7:1 So the king and Haman came to banquet with Esther the queen.
+
+7:2 And the king said again unto Esther on the second day at the
+banquet of wine, What is thy petition, queen Esther? and it shall be
+granted thee: and what is thy request? and it shall be performed, even
+to the half of the kingdom.
+
+7:3 Then Esther the queen answered and said, If I have found favour in
+thy sight, O king, and if it please the king, let my life be given me
+at my petition, and my people at my request: 7:4 For we are sold, I
+and my people, to be destroyed, to be slain, and to perish. But if we
+had been sold for bondmen and bondwomen, I had held my tongue,
+although the enemy could not countervail the king's damage.
+
+7:5 Then the king Ahasuerus answered and said unto Esther the queen,
+Who is he, and where is he, that durst presume in his heart to do so?
+7:6 And Esther said, The adversary and enemy is this wicked Haman.
+Then Haman was afraid before the king and the queen.
+
+7:7 And the king arising from the banquet of wine in his wrath went
+into the palace garden: and Haman stood up to make request for his
+life to Esther the queen; for he saw that there was evil determined
+against him by the king.
+
+7:8 Then the king returned out of the palace garden into the place of
+the banquet of wine; and Haman was fallen upon the bed whereon Esther
+was. Then said the king, Will he force the queen also before me in the
+house? As the word went out of king's mouth, they covered Haman's
+face.
+
+7:9 And Harbonah, one of the chamberlains, said before the king,
+Behold also, the gallows fifty cubits high, which Haman had made for
+Mordecai, who spoken good for the king, standeth in the house of
+Haman. Then the king said, Hang him thereon.
+
+7:10 So they hanged Haman on the gallows that he had prepared for
+Mordecai. Then was the king's wrath pacified.
+
+8:1 On that day did the king Ahasuerus give the house of Haman the
+Jews' enemy unto Esther the queen. And Mordecai came before the king;
+for Esther had told what he was unto her.
+
+8:2 And the king took off his ring, which he had taken from Haman, and
+gave it unto Mordecai. And Esther set Mordecai over the house of
+Haman.
+
+8:3 And Esther spake yet again before the king, and fell down at his
+feet, and besought him with tears to put away the mischief of Haman
+the Agagite, and his device that he had devised against the Jews.
+
+8:4 Then the king held out the golden sceptre toward Esther. So Esther
+arose, and stood before the king, 8:5 And said, If it please the king,
+and if I have favour in his sight, and the thing seem right before the
+king, and I be pleasing in his eyes, let it be written to reverse the
+letters devised by Haman the son of Hammedatha the Agagite, which he
+wrote to destroy the Jews which are in all the king's provinces: 8:6
+For how can I endure to see the evil that shall come unto my people?
+or how can I endure to see the destruction of my kindred? 8:7 Then
+the king Ahasuerus said unto Esther the queen and to Mordecai the Jew,
+Behold, I have given Esther the house of Haman, and him they have
+hanged upon the gallows, because he laid his hand upon the Jews.
+
+8:8 Write ye also for the Jews, as it liketh you, in the king's name,
+and seal it with the king's ring: for the writing which is written in
+the king's name, and sealed with the king's ring, may no man reverse.
+
+8:9 Then were the king's scribes called at that time in the third
+month, that is, the month Sivan, on the three and twentieth day
+thereof; and it was written according to all that Mordecai commanded
+unto the Jews, and to the lieutenants, and the deputies and rulers of
+the provinces which are from India unto Ethiopia, an hundred twenty
+and seven provinces, unto every province according to the writing
+thereof, and unto every people after their language, and to the Jews
+according to their writing, and according to their language.
+
+8:10 And he wrote in the king Ahasuerus' name, and sealed it with the
+king's ring, and sent letters by posts on horseback, and riders on
+mules, camels, and young dromedaries: 8:11 Wherein the king granted
+the Jews which were in every city to gather themselves together, and
+to stand for their life, to destroy, to slay and to cause to perish,
+all the power of the people and province that would assault them, both
+little ones and women, and to take the spoil of them for a prey, 8:12
+Upon one day in all the provinces of king Ahasuerus, namely, upon the
+thirteenth day of the twelfth month, which is the month Adar.
+
+8:13 The copy of the writing for a commandment to be given in every
+province was published unto all people, and that the Jews should be
+ready against that day to avenge themselves on their enemies.
+
+8:14 So the posts that rode upon mules and camels went out, being
+hastened and pressed on by the king's commandment. And the decree was
+given at Shushan the palace.
+
+8:15 And Mordecai went out from the presence of the king in royal
+apparel of blue and white, and with a great crown of gold, and with a
+garment of fine linen and purple: and the city of Shushan rejoiced and
+was glad.
+
+8:16 The Jews had light, and gladness, and joy, and honour.
+
+8:17 And in every province, and in every city, whithersoever the
+king's commandment and his decree came, the Jews had joy and gladness,
+a feast and a good day. And many of the people of the land became
+Jews; for the fear of the Jews fell upon them.
+
+9:1 Now in the twelfth month, that is, the month Adar, on the
+thirteenth day of the same, when the king's commandment and his decree
+drew near to be put in execution, in the day that the enemies of the
+Jews hoped to have power over them, (though it was turned to the
+contrary, that the Jews had rule over them that hated them;) 9:2 The
+Jews gathered themselves together in their cities throughout all the
+provinces of the king Ahasuerus, to lay hand on such as sought their
+hurt: and no man could withstand them; for the fear of them fell upon
+all people.
+
+9:3 And all the rulers of the provinces, and the lieutenants, and the
+deputies, and officers of the king, helped the Jews; because the fear
+of Mordecai fell upon them.
+
+9:4 For Mordecai was great in the king's house, and his fame went out
+throughout all the provinces: for this man Mordecai waxed greater and
+greater.
+
+9:5 Thus the Jews smote all their enemies with the stroke of the
+sword, and slaughter, and destruction, and did what they would unto
+those that hated them.
+
+9:6 And in Shushan the palace the Jews slew and destroyed five hundred
+men.
+
+9:7 And Parshandatha, and Dalphon, and Aspatha, 9:8 And Poratha, and
+Adalia, and Aridatha, 9:9 And Parmashta, and Arisai, and Aridai, and
+Vajezatha, 9:10 The ten sons of Haman the son of Hammedatha, the enemy
+of the Jews, slew they; but on the spoil laid they not their hand.
+
+9:11 On that day the number of those that were slain in Shushan the
+palace was brought before the king.
+
+9:12 And the king said unto Esther the queen, The Jews have slain and
+destroyed five hundred men in Shushan the palace, and the ten sons of
+Haman; what have they done in the rest of the king's provinces? now
+what is thy petition? and it shall be granted thee: or what is thy
+request further? and it shall be done.
+
+9:13 Then said Esther, If it please the king, let it be granted to the
+Jews which are in Shushan to do to morrow also according unto this
+day's decree, and let Haman's ten sons be hanged upon the gallows.
+
+9:14 And the king commanded it so to be done: and the decree was given
+at Shushan; and they hanged Haman's ten sons.
+
+9:15 For the Jews that were in Shushan gathered themselves together on
+the fourteenth day also of the month Adar, and slew three hundred men
+at Shushan; but on the prey they laid not their hand.
+
+9:16 But the other Jews that were in the king's provinces gathered
+themselves together, and stood for their lives, and had rest from
+their enemies, and slew of their foes seventy and five thousand, but
+they laid not their hands on the prey, 9:17 On the thirteenth day of
+the month Adar; and on the fourteenth day of the same rested they, and
+made it a day of feasting and gladness.
+
+9:18 But the Jews that were at Shushan assembled together on the
+thirteenth day thereof, and on the fourteenth thereof; and on the
+fifteenth day of the same they rested, and made it a day of feasting
+and gladness.
+
+9:19 Therefore the Jews of the villages, that dwelt in the unwalled
+towns, made the fourteenth day of the month Adar a day of gladness and
+feasting, and a good day, and of sending portions one to another.
+
+9:20 And Mordecai wrote these things, and sent letters unto all the
+Jews that were in all the provinces of the king Ahasuerus, both nigh
+and far, 9:21 To stablish this among them, that they should keep the
+fourteenth day of the month Adar, and the fifteenth day of the same,
+yearly, 9:22 As the days wherein the Jews rested from their enemies,
+and the month which was turned unto them from sorrow to joy, and from
+mourning into a good day: that they should make them days of feasting
+and joy, and of sending portions one to another, and gifts to the
+poor.
+
+9:23 And the Jews undertook to do as they had begun, and as Mordecai
+had written unto them; 9:24 Because Haman the son of Hammedatha, the
+Agagite, the enemy of all the Jews, had devised against the Jews to
+destroy them, and had cast Pur, that is, the lot, to consume them, and
+to destroy them; 9:25 But when Esther came before the king, he
+commanded by letters that his wicked device, which he devised against
+the Jews, should return upon his own head, and that he and his sons
+should be hanged on the gallows.
+
+9:26 Wherefore they called these days Purim after the name of Pur.
+
+Therefore for all the words of this letter, and of that which they had
+seen concerning this matter, and which had come unto them, 9:27 The
+Jews ordained, and took upon them, and upon their seed, and upon all
+such as joined themselves unto them, so as it should not fail, that
+they would keep these two days according to their writing, and
+according to their appointed time every year; 9:28 And that these days
+should be remembered and kept throughout every generation, every
+family, every province, and every city; and that these days of Purim
+should not fail from among the Jews, nor the memorial of them perish
+from their seed.
+
+9:29 Then Esther the queen, the daughter of Abihail, and Mordecai the
+Jew, wrote with all authority, to confirm this second letter of Purim.
+
+9:30 And he sent the letters unto all the Jews, to the hundred twenty
+and seven provinces of the kingdom of Ahasuerus, with words of peace
+and truth, 9:31 To confirm these days of Purim in their times
+appointed, according as Mordecai the Jew and Esther the queen had
+enjoined them, and as they had decreed for themselves and for their
+seed, the matters of the fastings and their cry.
+
+9:32 And the decree of Esther confirmed these matters of Purim; and it
+was written in the book.
+
+10:1 And the king Ahasuerus laid a tribute upon the land, and upon the
+isles of the sea.
+
+10:2 And all the acts of his power and of his might, and the
+declaration of the greatness of Mordecai, whereunto the king advanced
+him, are they not written in the book of the chronicles of the kings
+of Media and Persia? 10:3 For Mordecai the Jew was next unto king
+Ahasuerus, and great among the Jews, and accepted of the multitude of
+his brethren, seeking the wealth of his people, and speaking peace to
+all his seed.
+
+
+
+
+The Book of Job
+
+
+1:1 There was a man in the land of Uz, whose name was Job; and that
+man was perfect and upright, and one that feared God, and eschewed evil.
+
+1:2 And there were born unto him seven sons and three daughters.
+
+1:3 His substance also was seven thousand sheep, and three thousand
+camels, and five hundred yoke of oxen, and five hundred she asses, and
+a very great household; so that this man was the greatest of all the
+men of the east.
+
+1:4 And his sons went and feasted in their houses, every one his day;
+and sent and called for their three sisters to eat and to drink with
+them.
+
+1:5 And it was so, when the days of their feasting were gone about,
+that Job sent and sanctified them, and rose up early in the morning,
+and offered burnt offerings according to the number of them all: for
+Job said, It may be that my sons have sinned, and cursed God in their
+hearts. Thus did Job continually.
+
+1:6 Now there was a day when the sons of God came to present
+themselves before the LORD, and Satan came also among them.
+
+1:7 And the LORD said unto Satan, Whence comest thou? Then Satan
+answered the LORD, and said, From going to and fro in the earth, and
+from walking up and down in it.
+
+1:8 And the LORD said unto Satan, Hast thou considered my servant Job,
+that there is none like him in the earth, a perfect and an upright
+man, one that feareth God, and escheweth evil? 1:9 Then Satan
+answered the LORD, and said, Doth Job fear God for nought? 1:10 Hast
+not thou made an hedge about him, and about his house, and about all
+that he hath on every side? thou hast blessed the work of his hands,
+and his substance is increased in the land.
+
+1:11 But put forth thine hand now, and touch all that he hath, and he
+will curse thee to thy face.
+
+1:12 And the LORD said unto Satan, Behold, all that he hath is in thy
+power; only upon himself put not forth thine hand. So Satan went forth
+from the presence of the LORD.
+
+1:13 And there was a day when his sons and his daughters were eating
+and drinking wine in their eldest brother's house: 1:14 And there came
+a messenger unto Job, and said, The oxen were plowing, and the asses
+feeding beside them: 1:15 And the Sabeans fell upon them, and took
+them away; yea, they have slain the servants with the edge of the
+sword; and I only am escaped alone to tell thee.
+
+1:16 While he was yet speaking, there came also another, and said, The
+fire of God is fallen from heaven, and hath burned up the sheep, and
+the servants, and consumed them; and I only am escaped alone to tell
+thee.
+
+1:17 While he was yet speaking, there came also another, and said, The
+Chaldeans made out three bands, and fell upon the camels, and have
+carried them away, yea, and slain the servants with the edge of the
+sword; and I only am escaped alone to tell thee.
+
+1:18 While he was yet speaking, there came also another, and said, Thy
+sons and thy daughters were eating and drinking wine in their eldest
+brother's house: 1:19 And, behold, there came a great wind from the
+wilderness, and smote the four corners of the house, and it fell upon
+the young men, and they are dead; and I only am escaped alone to tell
+thee.
+
+1:20 Then Job arose, and rent his mantle, and shaved his head, and
+fell down upon the ground, and worshipped, 1:21 And said, Naked came I
+out of my mother's womb, and naked shall I return thither: the LORD
+gave, and the LORD hath taken away; blessed be the name of the LORD.
+
+1:22 In all this Job sinned not, nor charged God foolishly.
+
+2:1 Again there was a day when the sons of God came to present
+themselves before the LORD, and Satan came also among them to present
+himself before the LORD.
+
+2:2 And the LORD said unto Satan, From whence comest thou? And Satan
+answered the LORD, and said, From going to and fro in the earth, and
+from walking up and down in it.
+
+2:3 And the LORD said unto Satan, Hast thou considered my servant Job,
+that there is none like him in the earth, a perfect and an upright
+man, one that feareth God, and escheweth evil? and still he holdeth
+fast his integrity, although thou movedst me against him, to destroy
+him without cause.
+
+2:4 And Satan answered the LORD, and said, Skin for skin, yea, all
+that a man hath will he give for his life.
+
+2:5 But put forth thine hand now, and touch his bone and his flesh,
+and he will curse thee to thy face.
+
+2:6 And the LORD said unto Satan, Behold, he is in thine hand; but
+save his life.
+
+2:7 So went Satan forth from the presence of the LORD, and smote Job
+with sore boils from the sole of his foot unto his crown.
+
+2:8 And he took him a potsherd to scrape himself withal; and he sat
+down among the ashes.
+
+2:9 Then said his wife unto him, Dost thou still retain thine
+integrity? curse God, and die.
+
+2:10 But he said unto her, Thou speakest as one of the foolish women
+speaketh. What? shall we receive good at the hand of God, and shall we
+not receive evil? In all this did not Job sin with his lips.
+
+2:11 Now when Job's three friends heard of all this evil that was come
+upon him, they came every one from his own place; Eliphaz the
+Temanite, and Bildad the Shuhite, and Zophar the Naamathite: for they
+had made an appointment together to come to mourn with him and to
+comfort him.
+
+2:12 And when they lifted up their eyes afar off, and knew him not,
+they lifted up their voice, and wept; and they rent every one his
+mantle, and sprinkled dust upon their heads toward heaven.
+
+2:13 So they sat down with him upon the ground seven days and seven
+nights, and none spake a word unto him: for they saw that his grief
+was very great.
+
+3:1 After this opened Job his mouth, and cursed his day.
+
+3:2 And Job spake, and said, 3:3 Let the day perish wherein I was
+born, and the night in which it was said, There is a man child
+conceived.
+
+3:4 Let that day be darkness; let not God regard it from above,
+neither let the light shine upon it.
+
+3:5 Let darkness and the shadow of death stain it; let a cloud dwell
+upon it; let the blackness of the day terrify it.
+
+3:6 As for that night, let darkness seize upon it; let it not be
+joined unto the days of the year, let it not come into the number of
+the months.
+
+3:7 Lo, let that night be solitary, let no joyful voice come therein.
+
+3:8 Let them curse it that curse the day, who are ready to raise up
+their mourning.
+
+3:9 Let the stars of the twilight thereof be dark; let it look for
+light, but have none; neither let it see the dawning of the day: 3:10
+Because it shut not up the doors of my mother's womb, nor hid sorrow
+from mine eyes.
+
+3:11 Why died I not from the womb? why did I not give up the ghost
+when I came out of the belly? 3:12 Why did the knees prevent me? or
+why the breasts that I should suck? 3:13 For now should I have lain
+still and been quiet, I should have slept: then had I been at rest,
+3:14 With kings and counsellors of the earth, which build desolate
+places for themselves; 3:15 Or with princes that had gold, who filled
+their houses with silver: 3:16 Or as an hidden untimely birth I had
+not been; as infants which never saw light.
+
+3:17 There the wicked cease from troubling; and there the weary be at
+rest.
+
+3:18 There the prisoners rest together; they hear not the voice of the
+oppressor.
+
+3:19 The small and great are there; and the servant is free from his
+master.
+
+3:20 Wherefore is light given to him that is in misery, and life unto
+the bitter in soul; 3:21 Which long for death, but it cometh not; and
+dig for it more than for hid treasures; 3:22 Which rejoice
+exceedingly, and are glad, when they can find the grave? 3:23 Why is
+light given to a man whose way is hid, and whom God hath hedged in?
+3:24 For my sighing cometh before I eat, and my roarings are poured
+out like the waters.
+
+3:25 For the thing which I greatly feared is come upon me, and that
+which I was afraid of is come unto me.
+
+3:26 I was not in safety, neither had I rest, neither was I quiet; yet
+trouble came.
+
+4:1 Then Eliphaz the Temanite answered and said, 4:2 If we assay to
+commune with thee, wilt thou be grieved? but who can withhold himself
+from speaking? 4:3 Behold, thou hast instructed many, and thou hast
+strengthened the weak hands.
+
+4:4 Thy words have upholden him that was falling, and thou hast
+strengthened the feeble knees.
+
+4:5 But now it is come upon thee, and thou faintest; it toucheth thee,
+and thou art troubled.
+
+4:6 Is not this thy fear, thy confidence, thy hope, and the
+uprightness of thy ways? 4:7 Remember, I pray thee, who ever
+perished, being innocent? or where were the righteous cut off? 4:8
+Even as I have seen, they that plow iniquity, and sow wickedness, reap
+the same.
+
+4:9 By the blast of God they perish, and by the breath of his nostrils
+are they consumed.
+
+4:10 The roaring of the lion, and the voice of the fierce lion, and
+the teeth of the young lions, are broken.
+
+4:11 The old lion perisheth for lack of prey, and the stout lion's
+whelps are scattered abroad.
+
+4:12 Now a thing was secretly brought to me, and mine ear received a
+little thereof.
+
+4:13 In thoughts from the visions of the night, when deep sleep
+falleth on men, 4:14 Fear came upon me, and trembling, which made all
+my bones to shake.
+
+4:15 Then a spirit passed before my face; the hair of my flesh stood
+up: 4:16 It stood still, but I could not discern the form thereof: an
+image was before mine eyes, there was silence, and I heard a voice,
+saying, 4:17 Shall mortal man be more just than God? shall a man be
+more pure than his maker? 4:18 Behold, he put no trust in his
+servants; and his angels he charged with folly: 4:19 How much less in
+them that dwell in houses of clay, whose foundation is in the dust,
+which are crushed before the moth? 4:20 They are destroyed from
+morning to evening: they perish for ever without any regarding it.
+
+4:21 Doth not their excellency which is in them go away? they die,
+even without wisdom.
+
+5:1 Call now, if there be any that will answer thee; and to which of
+the saints wilt thou turn? 5:2 For wrath killeth the foolish man, and
+envy slayeth the silly one.
+
+5:3 I have seen the foolish taking root: but suddenly I cursed his
+habitation.
+
+5:4 His children are far from safety, and they are crushed in the
+gate, neither is there any to deliver them.
+
+5:5 Whose harvest the hungry eateth up, and taketh it even out of the
+thorns, and the robber swalloweth up their substance.
+
+5:6 Although affliction cometh not forth of the dust, neither doth
+trouble spring out of the ground; 5:7 Yet man is born unto trouble, as
+the sparks fly upward.
+
+5:8 I would seek unto God, and unto God would I commit my cause: 5:9
+Which doeth great things and unsearchable; marvellous things without
+number: 5:10 Who giveth rain upon the earth, and sendeth waters upon
+the fields: 5:11 To set up on high those that be low; that those which
+mourn may be exalted to safety.
+
+5:12 He disappointeth the devices of the crafty, so that their hands
+cannot perform their enterprise.
+
+5:13 He taketh the wise in their own craftiness: and the counsel of
+the froward is carried headlong.
+
+5:14 They meet with darkness in the day time, and grope in the noonday
+as in the night.
+
+5:15 But he saveth the poor from the sword, from their mouth, and from
+the hand of the mighty.
+
+5:16 So the poor hath hope, and iniquity stoppeth her mouth.
+
+5:17 Behold, happy is the man whom God correcteth: therefore despise
+not thou the chastening of the Almighty: 5:18 For he maketh sore, and
+bindeth up: he woundeth, and his hands make whole.
+
+5:19 He shall deliver thee in six troubles: yea, in seven there shall
+no evil touch thee.
+
+5:20 In famine he shall redeem thee from death: and in war from the
+power of the sword.
+
+5:21 Thou shalt be hid from the scourge of the tongue: neither shalt
+thou be afraid of destruction when it cometh.
+
+5:22 At destruction and famine thou shalt laugh: neither shalt thou be
+afraid of the beasts of the earth.
+
+5:23 For thou shalt be in league with the stones of the field: and the
+beasts of the field shall be at peace with thee.
+
+5:24 And thou shalt know that thy tabernacle shall be in peace; and
+thou shalt visit thy habitation, and shalt not sin.
+
+5:25 Thou shalt know also that thy seed shall be great, and thine
+offspring as the grass of the earth.
+
+5:26 Thou shalt come to thy grave in a full age, like as a shock of
+corn cometh in in his season.
+
+5:27 Lo this, we have searched it, so it is; hear it, and know thou it
+for thy good.
+
+6:1 But Job answered and said, 6:2 Oh that my grief were throughly
+weighed, and my calamity laid in the balances together! 6:3 For now
+it would be heavier than the sand of the sea: therefore my words are
+swallowed up.
+
+6:4 For the arrows of the Almighty are within me, the poison whereof
+drinketh up my spirit: the terrors of God do set themselves in array
+against me.
+
+6:5 Doth the wild ass bray when he hath grass? or loweth the ox over
+his fodder? 6:6 Can that which is unsavoury be eaten without salt? or
+is there any taste in the white of an egg? 6:7 The things that my
+soul refused to touch are as my sorrowful meat.
+
+6:8 Oh that I might have my request; and that God would grant me the
+thing that I long for! 6:9 Even that it would please God to destroy
+me; that he would let loose his hand, and cut me off! 6:10 Then
+should I yet have comfort; yea, I would harden myself in sorrow: let
+him not spare; for I have not concealed the words of the Holy One.
+
+6:11 What is my strength, that I should hope? and what is mine end,
+that I should prolong my life? 6:12 Is my strength the strength of
+stones? or is my flesh of brass? 6:13 Is not my help in me? and is
+wisdom driven quite from me? 6:14 To him that is afflicted pity
+should be shewed from his friend; but he forsaketh the fear of the
+Almighty.
+
+6:15 My brethren have dealt deceitfully as a brook, and as the stream
+of brooks they pass away; 6:16 Which are blackish by reason of the
+ice, and wherein the snow is hid: 6:17 What time they wax warm, they
+vanish: when it is hot, they are consumed out of their place.
+
+6:18 The paths of their way are turned aside; they go to nothing, and
+perish.
+
+6:19 The troops of Tema looked, the companies of Sheba waited for
+them.
+
+6:20 They were confounded because they had hoped; they came thither,
+and were ashamed.
+
+6:21 For now ye are nothing; ye see my casting down, and are afraid.
+
+6:22 Did I say, Bring unto me? or, Give a reward for me of your
+substance? 6:23 Or, Deliver me from the enemy's hand? or, Redeem me
+from the hand of the mighty? 6:24 Teach me, and I will hold my
+tongue: and cause me to understand wherein I have erred.
+
+6:25 How forcible are right words! but what doth your arguing reprove?
+6:26 Do ye imagine to reprove words, and the speeches of one that is
+desperate, which are as wind? 6:27 Yea, ye overwhelm the fatherless,
+and ye dig a pit for your friend.
+
+6:28 Now therefore be content, look upon me; for it is evident unto
+you if I lie.
+
+6:29 Return, I pray you, let it not be iniquity; yea, return again, my
+righteousness is in it.
+
+6:30 Is there iniquity in my tongue? cannot my taste discern perverse
+things? 7:1 Is there not an appointed time to man upon earth? are not
+his days also like the days of an hireling? 7:2 As a servant
+earnestly desireth the shadow, and as an hireling looketh for the
+reward of his work: 7:3 So am I made to possess months of vanity, and
+wearisome nights are appointed to me.
+
+7:4 When I lie down, I say, When shall I arise, and the night be gone?
+and I am full of tossings to and fro unto the dawning of the day.
+
+7:5 My flesh is clothed with worms and clods of dust; my skin is
+broken, and become loathsome.
+
+7:6 My days are swifter than a weaver's shuttle, and are spent without
+hope.
+
+7:7 O remember that my life is wind: mine eye shall no more see good.
+
+7:8 The eye of him that hath seen me shall see me no more: thine eyes
+are upon me, and I am not.
+
+7:9 As the cloud is consumed and vanisheth away: so he that goeth down
+to the grave shall come up no more.
+
+7:10 He shall return no more to his house, neither shall his place
+know him any more.
+
+7:11 Therefore I will not refrain my mouth; I will speak in the
+anguish of my spirit; I will complain in the bitterness of my soul.
+
+7:12 Am I a sea, or a whale, that thou settest a watch over me? 7:13
+When I say, My bed shall comfort me, my couch shall ease my
+complaints; 7:14 Then thou scarest me with dreams, and terrifiest me
+through visions: 7:15 So that my soul chooseth strangling, and death
+rather than my life.
+
+7:16 I loathe it; I would not live alway: let me alone; for my days
+are vanity.
+
+7:17 What is man, that thou shouldest magnify him? and that thou
+shouldest set thine heart upon him? 7:18 And that thou shouldest
+visit him every morning, and try him every moment? 7:19 How long wilt
+thou not depart from me, nor let me alone till I swallow down my
+spittle? 7:20 I have sinned; what shall I do unto thee, O thou
+preserver of men? why hast thou set me as a mark against thee, so
+that I am a burden to myself? 7:21 And why dost thou not pardon my
+transgression, and take away my iniquity? for now shall I sleep in the
+dust; and thou shalt seek me in the morning, but I shall not be.
+
+8:1 Then answered Bildad the Shuhite, and said, 8:2 How long wilt thou
+speak these things? and how long shall the words of thy mouth be like
+a strong wind? 8:3 Doth God pervert judgment? or doth the Almighty
+pervert justice? 8:4 If thy children have sinned against him, and he
+have cast them away for their transgression; 8:5 If thou wouldest seek
+unto God betimes, and make thy supplication to the Almighty; 8:6 If
+thou wert pure and upright; surely now he would awake for thee, and
+make the habitation of thy righteousness prosperous.
+
+8:7 Though thy beginning was small, yet thy latter end should greatly
+increase.
+
+8:8 For enquire, I pray thee, of the former age, and prepare thyself
+to the search of their fathers: 8:9 (For we are but of yesterday, and
+know nothing, because our days upon earth are a shadow:) 8:10 Shall
+not they teach thee, and tell thee, and utter words out of their
+heart? 8:11 Can the rush grow up without mire? can the flag grow
+without water? 8:12 Whilst it is yet in his greenness, and not cut
+down, it withereth before any other herb.
+
+8:13 So are the paths of all that forget God; and the hypocrite's hope
+shall perish: 8:14 Whose hope shall be cut off, and whose trust shall
+be a spider's web.
+
+8:15 He shall lean upon his house, but it shall not stand: he shall
+hold it fast, but it shall not endure.
+
+8:16 He is green before the sun, and his branch shooteth forth in his
+garden.
+
+8:17 His roots are wrapped about the heap, and seeth the place of
+stones.
+
+8:18 If he destroy him from his place, then it shall deny him, saying,
+I have not seen thee.
+
+8:19 Behold, this is the joy of his way, and out of the earth shall
+others grow.
+
+8:20 Behold, God will not cast away a perfect man, neither will he
+help the evil doers: 8:21 Till he fill thy mouth with laughing, and
+thy lips with rejoicing.
+
+8:22 They that hate thee shall be clothed with shame; and the dwelling
+place of the wicked shall come to nought.
+
+9:1 Then Job answered and said, 9:2 I know it is so of a truth: but
+how should man be just with God? 9:3 If he will contend with him, he
+cannot answer him one of a thousand.
+
+9:4 He is wise in heart, and mighty in strength: who hath hardened
+himself against him, and hath prospered? 9:5 Which removeth the
+mountains, and they know not: which overturneth them in his anger.
+
+9:6 Which shaketh the earth out of her place, and the pillars thereof
+tremble.
+
+9:7 Which commandeth the sun, and it riseth not; and sealeth up the
+stars.
+
+9:8 Which alone spreadeth out the heavens, and treadeth upon the waves
+of the sea.
+
+9:9 Which maketh Arcturus, Orion, and Pleiades, and the chambers of
+the south.
+
+9:10 Which doeth great things past finding out; yea, and wonders
+without number.
+
+9:11 Lo, he goeth by me, and I see him not: he passeth on also, but I
+perceive him not.
+
+9:12 Behold, he taketh away, who can hinder him? who will say unto
+him, What doest thou? 9:13 If God will not withdraw his anger, the
+proud helpers do stoop under him.
+
+9:14 How much less shall I answer him, and choose out my words to
+reason with him? 9:15 Whom, though I were righteous, yet would I not
+answer, but I would make supplication to my judge.
+
+9:16 If I had called, and he had answered me; yet would I not believe
+that he had hearkened unto my voice.
+
+9:17 For he breaketh me with a tempest, and multiplieth my wounds
+without cause.
+
+9:18 He will not suffer me to take my breath, but filleth me with
+bitterness.
+
+9:19 If I speak of strength, lo, he is strong: and if of judgment, who
+shall set me a time to plead? 9:20 If I justify myself, mine own
+mouth shall condemn me: if I say, I am perfect, it shall also prove me
+perverse.
+
+9:21 Though I were perfect, yet would I not know my soul: I would
+despise my life.
+
+9:22 This is one thing, therefore I said it, He destroyeth the perfect
+and the wicked.
+
+9:23 If the scourge slay suddenly, he will laugh at the trial of the
+innocent.
+
+9:24 The earth is given into the hand of the wicked: he covereth the
+faces of the judges thereof; if not, where, and who is he? 9:25 Now
+my days are swifter than a post: they flee away, they see no good.
+
+9:26 They are passed away as the swift ships: as the eagle that
+hasteth to the prey.
+
+9:27 If I say, I will forget my complaint, I will leave off my
+heaviness, and comfort myself: 9:28 I am afraid of all my sorrows, I
+know that thou wilt not hold me innocent.
+
+9:29 If I be wicked, why then labour I in vain? 9:30 If I wash myself
+with snow water, and make my hands never so clean; 9:31 Yet shalt thou
+plunge me in the ditch, and mine own clothes shall abhor me.
+
+9:32 For he is not a man, as I am, that I should answer him, and we
+should come together in judgment.
+
+9:33 Neither is there any daysman betwixt us, that might lay his hand
+upon us both.
+
+9:34 Let him take his rod away from me, and let not his fear terrify
+me: 9:35 Then would I speak, and not fear him; but it is not so with
+me.
+
+10:1 My soul is weary of my life; I will leave my complaint upon
+myself; I will speak in the bitterness of my soul.
+
+10:2 I will say unto God, Do not condemn me; shew me wherefore thou
+contendest with me.
+
+10:3 Is it good unto thee that thou shouldest oppress, that thou
+shouldest despise the work of thine hands, and shine upon the counsel
+of the wicked? 10:4 Hast thou eyes of flesh? or seest thou as man
+seeth? 10:5 Are thy days as the days of man? are thy years as man's
+days, 10:6 That thou enquirest after mine iniquity, and searchest
+after my sin? 10:7 Thou knowest that I am not wicked; and there is
+none that can deliver out of thine hand.
+
+10:8 Thine hands have made me and fashioned me together round about;
+yet thou dost destroy me.
+
+10:9 Remember, I beseech thee, that thou hast made me as the clay; and
+wilt thou bring me into dust again? 10:10 Hast thou not poured me out
+as milk, and curdled me like cheese? 10:11 Thou hast clothed me with
+skin and flesh, and hast fenced me with bones and sinews.
+
+10:12 Thou hast granted me life and favour, and thy visitation hath
+preserved my spirit.
+
+10:13 And these things hast thou hid in thine heart: I know that this
+is with thee.
+
+10:14 If I sin, then thou markest me, and thou wilt not acquit me from
+mine iniquity.
+
+10:15 If I be wicked, woe unto me; and if I be righteous, yet will I
+not lift up my head. I am full of confusion; therefore see thou mine
+affliction; 10:16 For it increaseth. Thou huntest me as a fierce lion:
+and again thou shewest thyself marvellous upon me.
+
+10:17 Thou renewest thy witnesses against me, and increasest thine
+indignation upon me; changes and war are against me.
+
+10:18 Wherefore then hast thou brought me forth out of the womb? Oh
+that I had given up the ghost, and no eye had seen me! 10:19 I should
+have been as though I had not been; I should have been carried from
+the womb to the grave.
+
+10:20 Are not my days few? cease then, and let me alone, that I may
+take comfort a little, 10:21 Before I go whence I shall not return,
+even to the land of darkness and the shadow of death; 10:22 A land of
+darkness, as darkness itself; and of the shadow of death, without any
+order, and where the light is as darkness.
+
+11:1 Then answered Zophar the Naamathite, and said, 11:2 Should not
+the multitude of words be answered? and should a man full of talk be
+justified? 11:3 Should thy lies make men hold their peace? and when
+thou mockest, shall no man make thee ashamed? 11:4 For thou hast
+said, My doctrine is pure, and I am clean in thine eyes.
+
+11:5 But oh that God would speak, and open his lips against thee; 11:6
+And that he would shew thee the secrets of wisdom, that they are
+double to that which is! Know therefore that God exacteth of thee less
+than thine iniquity deserveth.
+
+11:7 Canst thou by searching find out God? canst thou find out the
+Almighty unto perfection? 11:8 It is as high as heaven; what canst
+thou do? deeper than hell; what canst thou know? 11:9 The measure
+thereof is longer than the earth, and broader than the sea.
+
+11:10 If he cut off, and shut up, or gather together, then who can
+hinder him? 11:11 For he knoweth vain men: he seeth wickedness also;
+will he not then consider it? 11:12 For vain men would be wise,
+though man be born like a wild ass's colt.
+
+11:13 If thou prepare thine heart, and stretch out thine hands toward
+him; 11:14 If iniquity be in thine hand, put it far away, and let not
+wickedness dwell in thy tabernacles.
+
+11:15 For then shalt thou lift up thy face without spot; yea, thou
+shalt be stedfast, and shalt not fear: 11:16 Because thou shalt forget
+thy misery, and remember it as waters that pass away: 11:17 And thine
+age shall be clearer than the noonday: thou shalt shine forth, thou
+shalt be as the morning.
+
+11:18 And thou shalt be secure, because there is hope; yea, thou shalt
+dig about thee, and thou shalt take thy rest in safety.
+
+11:19 Also thou shalt lie down, and none shall make thee afraid; yea,
+many shall make suit unto thee.
+
+11:20 But the eyes of the wicked shall fail, and they shall not
+escape, and their hope shall be as the giving up of the ghost.
+
+12:1 And Job answered and said, 12:2 No doubt but ye are the people,
+and wisdom shall die with you.
+
+12:3 But I have understanding as well as you; I am not inferior to
+you: yea, who knoweth not such things as these? 12:4 I am as one
+mocked of his neighbour, who calleth upon God, and he answereth him:
+the just upright man is laughed to scorn.
+
+12:5 He that is ready to slip with his feet is as a lamp despised in
+the thought of him that is at ease.
+
+12:6 The tabernacles of robbers prosper, and they that provoke God are
+secure; into whose hand God bringeth abundantly.
+
+12:7 But ask now the beasts, and they shall teach thee; and the fowls
+of the air, and they shall tell thee: 12:8 Or speak to the earth, and
+it shall teach thee: and the fishes of the sea shall declare unto
+thee.
+
+12:9 Who knoweth not in all these that the hand of the LORD hath
+wrought this? 12:10 In whose hand is the soul of every living thing,
+and the breath of all mankind.
+
+12:11 Doth not the ear try words? and the mouth taste his meat? 12:12
+With the ancient is wisdom; and in length of days understanding.
+
+12:13 With him is wisdom and strength, he hath counsel and
+understanding.
+
+12:14 Behold, he breaketh down, and it cannot be built again: he
+shutteth up a man, and there can be no opening.
+
+12:15 Behold, he withholdeth the waters, and they dry up: also he
+sendeth them out, and they overturn the earth.
+
+12:16 With him is strength and wisdom: the deceived and the deceiver
+are his.
+
+12:17 He leadeth counsellors away spoiled, and maketh the judges
+fools.
+
+12:18 He looseth the bond of kings, and girdeth their loins with a
+girdle.
+
+12:19 He leadeth princes away spoiled, and overthroweth the mighty.
+
+12:20 He removeth away the speech of the trusty, and taketh away the
+understanding of the aged.
+
+12:21 He poureth contempt upon princes, and weakeneth the strength of
+the mighty.
+
+12:22 He discovereth deep things out of darkness, and bringeth out to
+light the shadow of death.
+
+12:23 He increaseth the nations, and destroyeth them: he enlargeth the
+nations, and straiteneth them again.
+
+12:24 He taketh away the heart of the chief of the people of the
+earth, and causeth them to wander in a wilderness where there is no
+way.
+
+12:25 They grope in the dark without light, and he maketh them to
+stagger like a drunken man.
+
+13:1 Lo, mine eye hath seen all this, mine ear hath heard and
+understood it.
+
+13:2 What ye know, the same do I know also: I am not inferior unto
+you.
+
+13:3 Surely I would speak to the Almighty, and I desire to reason with
+God.
+
+13:4 But ye are forgers of lies, ye are all physicians of no value.
+
+13:5 O that ye would altogether hold your peace! and it should be your
+wisdom.
+
+13:6 Hear now my reasoning, and hearken to the pleadings of my lips.
+
+13:7 Will ye speak wickedly for God? and talk deceitfully for him?
+13:8 Will ye accept his person? will ye contend for God? 13:9 Is it
+good that he should search you out? or as one man mocketh another, do
+ye so mock him? 13:10 He will surely reprove you, if ye do secretly
+accept persons.
+
+13:11 Shall not his excellency make you afraid? and his dread fall
+upon you? 13:12 Your remembrances are like unto ashes, your bodies to
+bodies of clay.
+
+13:13 Hold your peace, let me alone, that I may speak, and let come on
+me what will.
+
+13:14 Wherefore do I take my flesh in my teeth, and put my life in
+mine hand? 13:15 Though he slay me, yet will I trust in him: but I
+will maintain mine own ways before him.
+
+13:16 He also shall be my salvation: for an hypocrite shall not come
+before him.
+
+13:17 Hear diligently my speech, and my declaration with your ears.
+
+13:18 Behold now, I have ordered my cause; I know that I shall be
+justified.
+
+13:19 Who is he that will plead with me? for now, if I hold my tongue,
+I shall give up the ghost.
+
+13:20 Only do not two things unto me: then will I not hide myself from
+thee.
+
+13:21 Withdraw thine hand far from me: and let not thy dread make me
+afraid.
+
+13:22 Then call thou, and I will answer: or let me speak, and answer
+thou me.
+
+13:23 How many are mine iniquities and sins? make me to know my
+transgression and my sin.
+
+13:24 Wherefore hidest thou thy face, and holdest me for thine enemy?
+13:25 Wilt thou break a leaf driven to and fro? and wilt thou pursue
+the dry stubble? 13:26 For thou writest bitter things against me, and
+makest me to possess the iniquities of my youth.
+
+13:27 Thou puttest my feet also in the stocks, and lookest narrowly
+unto all my paths; thou settest a print upon the heels of my feet.
+
+13:28 And he, as a rotten thing, consumeth, as a garment that is moth
+eaten.
+
+14:1 Man that is born of a woman is of few days and full of trouble.
+
+14:2 He cometh forth like a flower, and is cut down: he fleeth also as
+a shadow, and continueth not.
+
+14:3 And doth thou open thine eyes upon such an one, and bringest me
+into judgment with thee? 14:4 Who can bring a clean thing out of an
+unclean? not one.
+
+14:5 Seeing his days are determined, the number of his months are with
+thee, thou hast appointed his bounds that he cannot pass; 14:6 Turn
+from him, that he may rest, till he shall accomplish, as an hireling,
+his day.
+
+14:7 For there is hope of a tree, if it be cut down, that it will
+sprout again, and that the tender branch thereof will not cease.
+
+14:8 Though the root thereof wax old in the earth, and the stock
+thereof die in the ground; 14:9 Yet through the scent of water it will
+bud, and bring forth boughs like a plant.
+
+14:10 But man dieth, and wasteth away: yea, man giveth up the ghost,
+and where is he? 14:11 As the waters fail from the sea, and the flood
+decayeth and drieth up: 14:12 So man lieth down, and riseth not: till
+the heavens be no more, they shall not awake, nor be raised out of
+their sleep.
+
+14:13 O that thou wouldest hide me in the grave, that thou wouldest
+keep me secret, until thy wrath be past, that thou wouldest appoint me
+a set time, and remember me! 14:14 If a man die, shall he live again?
+all the days of my appointed time will I wait, till my change come.
+
+14:15 Thou shalt call, and I will answer thee: thou wilt have a desire
+to the work of thine hands.
+
+14:16 For now thou numberest my steps: dost thou not watch over my
+sin? 14:17 My transgression is sealed up in a bag, and thou sewest up
+mine iniquity.
+
+14:18 And surely the mountains falling cometh to nought, and the rock
+is removed out of his place.
+
+14:19 The waters wear the stones: thou washest away the things which
+grow out of the dust of the earth; and thou destroyest the hope of
+man.
+
+14:20 Thou prevailest for ever against him, and he passeth: thou
+changest his countenance, and sendest him away.
+
+14:21 His sons come to honour, and he knoweth it not; and they are
+brought low, but he perceiveth it not of them.
+
+14:22 But his flesh upon him shall have pain, and his soul within him
+shall mourn.
+
+15:1 Then answered Eliphaz the Temanite, and said, 15:2 Should a wise
+man utter vain knowledge, and fill his belly with the east wind? 15:3
+Should he reason with unprofitable talk? or with speeches wherewith he
+can do no good? 15:4 Yea, thou castest off fear, and restrainest
+prayer before God.
+
+15:5 For thy mouth uttereth thine iniquity, and thou choosest the
+tongue of the crafty.
+
+15:6 Thine own mouth condemneth thee, and not I: yea, thine own lips
+testify against thee.
+
+15:7 Art thou the first man that was born? or wast thou made before
+the hills? 15:8 Hast thou heard the secret of God? and dost thou
+restrain wisdom to thyself? 15:9 What knowest thou, that we know not?
+what understandest thou, which is not in us? 15:10 With us are both
+the grayheaded and very aged men, much elder than thy father.
+
+15:11 Are the consolations of God small with thee? is there any secret
+thing with thee? 15:12 Why doth thine heart carry thee away? and what
+do thy eyes wink at, 15:13 That thou turnest thy spirit against God,
+and lettest such words go out of thy mouth? 15:14 What is man, that
+he should be clean? and he which is born of a woman, that he should be
+righteous? 15:15 Behold, he putteth no trust in his saints; yea, the
+heavens are not clean in his sight.
+
+15:16 How much more abominable and filthy is man, which drinketh
+iniquity like water? 15:17 I will shew thee, hear me; and that which
+I have seen I will declare; 15:18 Which wise men have told from their
+fathers, and have not hid it: 15:19 Unto whom alone the earth was
+given, and no stranger passed among them.
+
+15:20 The wicked man travaileth with pain all his days, and the number
+of years is hidden to the oppressor.
+
+15:21 A dreadful sound is in his ears: in prosperity the destroyer
+shall come upon him.
+
+15:22 He believeth not that he shall return out of darkness, and he is
+waited for of the sword.
+
+15:23 He wandereth abroad for bread, saying, Where is it? he knoweth
+that the day of darkness is ready at his hand.
+
+15:24 Trouble and anguish shall make him afraid; they shall prevail
+against him, as a king ready to the battle.
+
+15:25 For he stretcheth out his hand against God, and strengtheneth
+himself against the Almighty.
+
+15:26 He runneth upon him, even on his neck, upon the thick bosses of
+his bucklers: 15:27 Because he covereth his face with his fatness, and
+maketh collops of fat on his flanks.
+
+15:28 And he dwelleth in desolate cities, and in houses which no man
+inhabiteth, which are ready to become heaps.
+
+15:29 He shall not be rich, neither shall his substance continue,
+neither shall he prolong the perfection thereof upon the earth.
+
+15:30 He shall not depart out of darkness; the flame shall dry up his
+branches, and by the breath of his mouth shall he go away.
+
+15:31 Let not him that is deceived trust in vanity: for vanity shall
+be his recompence.
+
+15:32 It shall be accomplished before his time, and his branch shall
+not be green.
+
+15:33 He shall shake off his unripe grape as the vine, and shall cast
+off his flower as the olive.
+
+15:34 For the congregation of hypocrites shall be desolate, and fire
+shall consume the tabernacles of bribery.
+
+15:35 They conceive mischief, and bring forth vanity, and their belly
+prepareth deceit.
+
+16:1 Then Job answered and said, 16:2 I have heard many such things:
+miserable comforters are ye all.
+
+16:3 Shall vain words have an end? or what emboldeneth thee that thou
+answerest? 16:4 I also could speak as ye do: if your soul were in my
+soul's stead, I could heap up words against you, and shake mine head
+at you.
+
+16:5 But I would strengthen you with my mouth, and the moving of my
+lips should asswage your grief.
+
+16:6 Though I speak, my grief is not asswaged: and though I forbear,
+what am I eased? 16:7 But now he hath made me weary: thou hast made
+desolate all my company.
+
+16:8 And thou hast filled me with wrinkles, which is a witness against
+me: and my leanness rising up in me beareth witness to my face.
+
+16:9 He teareth me in his wrath, who hateth me: he gnasheth upon me
+with his teeth; mine enemy sharpeneth his eyes upon me.
+
+16:10 They have gaped upon me with their mouth; they have smitten me
+upon the cheek reproachfully; they have gathered themselves together
+against me.
+
+16:11 God hath delivered me to the ungodly, and turned me over into
+the hands of the wicked.
+
+16:12 I was at ease, but he hath broken me asunder: he hath also taken
+me by my neck, and shaken me to pieces, and set me up for his mark.
+
+16:13 His archers compass me round about, he cleaveth my reins
+asunder, and doth not spare; he poureth out my gall upon the ground.
+
+16:14 He breaketh me with breach upon breach, he runneth upon me like
+a giant.
+
+16:15 I have sewed sackcloth upon my skin, and defiled my horn in the
+dust.
+
+16:16 My face is foul with weeping, and on my eyelids is the shadow of
+death; 16:17 Not for any injustice in mine hands: also my prayer is
+pure.
+
+16:18 O earth, cover not thou my blood, and let my cry have no place.
+
+16:19 Also now, behold, my witness is in heaven, and my record is on
+high.
+
+16:20 My friends scorn me: but mine eye poureth out tears unto God.
+
+16:21 O that one might plead for a man with God, as a man pleadeth for
+his neighbour! 16:22 When a few years are come, then I shall go the
+way whence I shall not return.
+
+17:1 My breath is corrupt, my days are extinct, the graves are ready
+for me.
+
+17:2 Are there not mockers with me? and doth not mine eye continue in
+their provocation? 17:3 Lay down now, put me in a surety with thee;
+who is he that will strike hands with me? 17:4 For thou hast hid
+their heart from understanding: therefore shalt thou not exalt them.
+
+17:5 He that speaketh flattery to his friends, even the eyes of his
+children shall fail.
+
+17:6 He hath made me also a byword of the people; and aforetime I was
+as a tabret.
+
+17:7 Mine eye also is dim by reason of sorrow, and all my members are
+as a shadow.
+
+17:8 Upright men shall be astonied at this, and the innocent shall
+stir up himself against the hypocrite.
+
+17:9 The righteous also shall hold on his way, and he that hath clean
+hands shall be stronger and stronger.
+
+17:10 But as for you all, do ye return, and come now: for I cannot
+find one wise man among you.
+
+17:11 My days are past, my purposes are broken off, even the thoughts
+of my heart.
+
+17:12 They change the night into day: the light is short because of
+darkness.
+
+17:13 If I wait, the grave is mine house: I have made my bed in the
+darkness.
+
+17:14 I have said to corruption, Thou art my father: to the worm, Thou
+art my mother, and my sister.
+
+17:15 And where is now my hope? as for my hope, who shall see it?
+17:16 They shall go down to the bars of the pit, when our rest
+together is in the dust.
+
+18:1 Then answered Bildad the Shuhite, and said, 18:2 How long will it
+be ere ye make an end of words? mark, and afterwards we will speak.
+
+18:3 Wherefore are we counted as beasts, and reputed vile in your
+sight? 18:4 He teareth himself in his anger: shall the earth be
+forsaken for thee? and shall the rock be removed out of his place?
+18:5 Yea, the light of the wicked shall be put out, and the spark of
+his fire shall not shine.
+
+18:6 The light shall be dark in his tabernacle, and his candle shall
+be put out with him.
+
+18:7 The steps of his strength shall be straitened, and his own
+counsel shall cast him down.
+
+18:8 For he is cast into a net by his own feet, and he walketh upon a
+snare.
+
+18:9 The gin shall take him by the heel, and the robber shall prevail
+against him.
+
+18:10 The snare is laid for him in the ground, and a trap for him in
+the way.
+
+18:11 Terrors shall make him afraid on every side, and shall drive him
+to his feet.
+
+18:12 His strength shall be hungerbitten, and destruction shall be
+ready at his side.
+
+18:13 It shall devour the strength of his skin: even the firstborn of
+death shall devour his strength.
+
+18:14 His confidence shall be rooted out of his tabernacle, and it
+shall bring him to the king of terrors.
+
+18:15 It shall dwell in his tabernacle, because it is none of his:
+brimstone shall be scattered upon his habitation.
+
+18:16 His roots shall be dried up beneath, and above shall his branch
+be cut off.
+
+18:17 His remembrance shall perish from the earth, and he shall have
+no name in the street.
+
+18:18 He shall be driven from light into darkness, and chased out of
+the world.
+
+18:19 He shall neither have son nor nephew among his people, nor any
+remaining in his dwellings.
+
+18:20 They that come after him shall be astonied at his day, as they
+that went before were affrighted.
+
+18:21 Surely such are the dwellings of the wicked, and this is the
+place of him that knoweth not God.
+
+19:1 Then Job answered and said, 19:2 How long will ye vex my soul,
+and break me in pieces with words? 19:3 These ten times have ye
+reproached me: ye are not ashamed that ye make yourselves strange to
+me.
+
+19:4 And be it indeed that I have erred, mine error remaineth with
+myself.
+
+19:5 If indeed ye will magnify yourselves against me, and plead
+against me my reproach: 19:6 Know now that God hath overthrown me, and
+hath compassed me with his net.
+
+19:7 Behold, I cry out of wrong, but I am not heard: I cry aloud, but
+there is no judgment.
+
+19:8 He hath fenced up my way that I cannot pass, and he hath set
+darkness in my paths.
+
+19:9 He hath stripped me of my glory, and taken the crown from my
+head.
+
+19:10 He hath destroyed me on every side, and I am gone: and mine hope
+hath he removed like a tree.
+
+19:11 He hath also kindled his wrath against me, and he counteth me
+unto him as one of his enemies.
+
+19:12 His troops come together, and raise up their way against me, and
+encamp round about my tabernacle.
+
+19:13 He hath put my brethren far from me, and mine acquaintance are
+verily estranged from me.
+
+19:14 My kinsfolk have failed, and my familiar friends have forgotten
+me.
+
+19:15 They that dwell in mine house, and my maids, count me for a
+stranger: I am an alien in their sight.
+
+19:16 I called my servant, and he gave me no answer; I intreated him
+with my mouth.
+
+19:17 My breath is strange to my wife, though I intreated for the
+children's sake of mine own body.
+
+19:18 Yea, young children despised me; I arose, and they spake against
+me.
+
+19:19 All my inward friends abhorred me: and they whom I loved are
+turned against me.
+
+19:20 My bone cleaveth to my skin and to my flesh, and I am escaped
+with the skin of my teeth.
+
+19:21 Have pity upon me, have pity upon me, O ye my friends; for the
+hand of God hath touched me.
+
+19:22 Why do ye persecute me as God, and are not satisfied with my
+flesh? 19:23 Oh that my words were now written! oh that they were
+printed in a book! 19:24 That they were graven with an iron pen and
+lead in the rock for ever! 19:25 For I know that my redeemer liveth,
+and that he shall stand at the latter day upon the earth: 19:26 And
+though after my skin worms destroy this body, yet in my flesh shall I
+see God: 19:27 Whom I shall see for myself, and mine eyes shall
+behold, and not another; though my reins be consumed within me.
+
+19:28 But ye should say, Why persecute we him, seeing the root of the
+matter is found in me? 19:29 Be ye afraid of the sword: for wrath
+bringeth the punishments of the sword, that ye may know there is a
+judgment.
+
+20:1 Then answered Zophar the Naamathite, and said, 20:2 Therefore do
+my thoughts cause me to answer, and for this I make haste.
+
+20:3 I have heard the check of my reproach, and the spirit of my
+understanding causeth me to answer.
+
+20:4 Knowest thou not this of old, since man was placed upon earth,
+20:5 That the triumphing of the wicked is short, and the joy of the
+hypocrite but for a moment? 20:6 Though his excellency mount up to
+the heavens, and his head reach unto the clouds; 20:7 Yet he shall
+perish for ever like his own dung: they which have seen him shall say,
+Where is he? 20:8 He shall fly away as a dream, and shall not be
+found: yea, he shall be chased away as a vision of the night.
+
+20:9 The eye also which saw him shall see him no more; neither shall
+his place any more behold him.
+
+20:10 His children shall seek to please the poor, and his hands shall
+restore their goods.
+
+20:11 His bones are full of the sin of his youth, which shall lie down
+with him in the dust.
+
+20:12 Though wickedness be sweet in his mouth, though he hide it under
+his tongue; 20:13 Though he spare it, and forsake it not; but keep it
+still within his mouth: 20:14 Yet his meat in his bowels is turned, it
+is the gall of asps within him.
+
+20:15 He hath swallowed down riches, and he shall vomit them up again:
+God shall cast them out of his belly.
+
+20:16 He shall suck the poison of asps: the viper's tongue shall slay
+him.
+
+20:17 He shall not see the rivers, the floods, the brooks of honey and
+butter.
+
+20:18 That which he laboured for shall he restore, and shall not
+swallow it down: according to his substance shall the restitution be,
+and he shall not rejoice therein.
+
+20:19 Because he hath oppressed and hath forsaken the poor; because he
+hath violently taken away an house which he builded not; 20:20 Surely
+he shall not feel quietness in his belly, he shall not save of that
+which he desired.
+
+20:21 There shall none of his meat be left; therefore shall no man
+look for his goods.
+
+20:22 In the fulness of his sufficiency he shall be in straits: every
+hand of the wicked shall come upon him.
+
+20:23 When he is about to fill his belly, God shall cast the fury of
+his wrath upon him, and shall rain it upon him while he is eating.
+
+20:24 He shall flee from the iron weapon, and the bow of steel shall
+strike him through.
+
+20:25 It is drawn, and cometh out of the body; yea, the glittering
+sword cometh out of his gall: terrors are upon him.
+
+20:26 All darkness shall be hid in his secret places: a fire not blown
+shall consume him; it shall go ill with him that is left in his
+tabernacle.
+
+20:27 The heaven shall reveal his iniquity; and the earth shall rise
+up against him.
+
+20:28 The increase of his house shall depart, and his goods shall flow
+away in the day of his wrath.
+
+20:29 This is the portion of a wicked man from God, and the heritage
+appointed unto him by God.
+
+21:1 But Job answered and said, 21:2 Hear diligently my speech, and
+let this be your consolations.
+
+21:3 Suffer me that I may speak; and after that I have spoken, mock
+on.
+
+21:4 As for me, is my complaint to man? and if it were so, why should
+not my spirit be troubled? 21:5 Mark me, and be astonished, and lay
+your hand upon your mouth.
+
+21:6 Even when I remember I am afraid, and trembling taketh hold on my
+flesh.
+
+21:7 Wherefore do the wicked live, become old, yea, are mighty in
+power? 21:8 Their seed is established in their sight with them, and
+their offspring before their eyes.
+
+21:9 Their houses are safe from fear, neither is the rod of God upon
+them.
+
+21:10 Their bull gendereth, and faileth not; their cow calveth, and
+casteth not her calf.
+
+21:11 They send forth their little ones like a flock, and their
+children dance.
+
+21:12 They take the timbrel and harp, and rejoice at the sound of the
+organ.
+
+21:13 They spend their days in wealth, and in a moment go down to the
+grave.
+
+21:14 Therefore they say unto God, Depart from us; for we desire not
+the knowledge of thy ways.
+
+21:15 What is the Almighty, that we should serve him? and what profit
+should we have, if we pray unto him? 21:16 Lo, their good is not in
+their hand: the counsel of the wicked is far from me.
+
+21:17 How oft is the candle of the wicked put out! and how oft cometh
+their destruction upon them! God distributeth sorrows in his anger.
+
+21:18 They are as stubble before the wind, and as chaff that the storm
+carrieth away.
+
+21:19 God layeth up his iniquity for his children: he rewardeth him,
+and he shall know it.
+
+21:20 His eyes shall see his destruction, and he shall drink of the
+wrath of the Almighty.
+
+21:21 For what pleasure hath he in his house after him, when the
+number of his months is cut off in the midst? 21:22 Shall any teach
+God knowledge? seeing he judgeth those that are high.
+
+21:23 One dieth in his full strength, being wholly at ease and quiet.
+
+21:24 His breasts are full of milk, and his bones are moistened with
+marrow.
+
+21:25 And another dieth in the bitterness of his soul, and never
+eateth with pleasure.
+
+21:26 They shall lie down alike in the dust, and the worms shall cover
+them.
+
+21:27 Behold, I know your thoughts, and the devices which ye
+wrongfully imagine against me.
+
+21:28 For ye say, Where is the house of the prince? and where are the
+dwelling places of the wicked? 21:29 Have ye not asked them that go
+by the way? and do ye not know their tokens, 21:30 That the wicked is
+reserved to the day of destruction? they shall be brought forth to the
+day of wrath.
+
+21:31 Who shall declare his way to his face? and who shall repay him
+what he hath done? 21:32 Yet shall he be brought to the grave, and
+shall remain in the tomb.
+
+21:33 The clods of the valley shall be sweet unto him, and every man
+shall draw after him, as there are innumerable before him.
+
+21:34 How then comfort ye me in vain, seeing in your answers there
+remaineth falsehood? 22:1 Then Eliphaz the Temanite answered and
+said, 22:2 Can a man be profitable unto God, as he that is wise may be
+profitable unto himself? 22:3 Is it any pleasure to the Almighty,
+that thou art righteous? or is it gain to him, that thou makest thy
+ways perfect? 22:4 Will he reprove thee for fear of thee? will he
+enter with thee into judgment? 22:5 Is not thy wickedness great? and
+thine iniquities infinite? 22:6 For thou hast taken a pledge from thy
+brother for nought, and stripped the naked of their clothing.
+
+22:7 Thou hast not given water to the weary to drink, and thou hast
+withholden bread from the hungry.
+
+22:8 But as for the mighty man, he had the earth; and the honourable
+man dwelt in it.
+
+22:9 Thou hast sent widows away empty, and the arms of the fatherless
+have been broken.
+
+22:10 Therefore snares are round about thee, and sudden fear troubleth
+thee; 22:11 Or darkness, that thou canst not see; and abundance of
+waters cover thee.
+
+22:12 Is not God in the height of heaven? and behold the height of the
+stars, how high they are! 22:13 And thou sayest, How doth God know?
+can he judge through the dark cloud? 22:14 Thick clouds are a
+covering to him, that he seeth not; and he walketh in the circuit of
+heaven.
+
+22:15 Hast thou marked the old way which wicked men have trodden?
+22:16 Which were cut down out of time, whose foundation was overflown
+with a flood: 22:17 Which said unto God, Depart from us: and what can
+the Almighty do for them? 22:18 Yet he filled their houses with good
+things: but the counsel of the wicked is far from me.
+
+22:19 The righteous see it, and are glad: and the innocent laugh them
+to scorn.
+
+22:20 Whereas our substance is not cut down, but the remnant of them
+the fire consumeth.
+
+22:21 Acquaint now thyself with him, and be at peace: thereby good
+shall come unto thee.
+
+22:22 Receive, I pray thee, the law from his mouth, and lay up his
+words in thine heart.
+
+22:23 If thou return to the Almighty, thou shalt be built up, thou
+shalt put away iniquity far from thy tabernacles.
+
+22:24 Then shalt thou lay up gold as dust, and the gold of Ophir as
+the stones of the brooks.
+
+22:25 Yea, the Almighty shall be thy defence, and thou shalt have
+plenty of silver.
+
+22:26 For then shalt thou have thy delight in the Almighty, and shalt
+lift up thy face unto God.
+
+22:27 Thou shalt make thy prayer unto him, and he shall hear thee, and
+thou shalt pay thy vows.
+
+22:28 Thou shalt also decree a thing, and it shall be established unto
+thee: and the light shall shine upon thy ways.
+
+22:29 When men are cast down, then thou shalt say, There is lifting
+up; and he shall save the humble person.
+
+22:30 He shall deliver the island of the innocent: and it is delivered
+by the pureness of thine hands.
+
+23:1 Then Job answered and said, 23:2 Even to day is my complaint
+bitter: my stroke is heavier than my groaning.
+
+23:3 Oh that I knew where I might find him! that I might come even to
+his seat! 23:4 I would order my cause before him, and fill my mouth
+with arguments.
+
+23:5 I would know the words which he would answer me, and understand
+what he would say unto me.
+
+23:6 Will he plead against me with his great power? No; but he would
+put strength in me.
+
+23:7 There the righteous might dispute with him; so should I be
+delivered for ever from my judge.
+
+23:8 Behold, I go forward, but he is not there; and backward, but I
+cannot perceive him: 23:9 On the left hand, where he doth work, but I
+cannot behold him: he hideth himself on the right hand, that I cannot
+see him: 23:10 But he knoweth the way that I take: when he hath tried
+me, I shall come forth as gold.
+
+23:11 My foot hath held his steps, his way have I kept, and not
+declined.
+
+23:12 Neither have I gone back from the commandment of his lips; I
+have esteemed the words of his mouth more than my necessary food.
+
+23:13 But he is in one mind, and who can turn him? and what his soul
+desireth, even that he doeth.
+
+23:14 For he performeth the thing that is appointed for me: and many
+such things are with him.
+
+23:15 Therefore am I troubled at his presence: when I consider, I am
+afraid of him.
+
+23:16 For God maketh my heart soft, and the Almighty troubleth me:
+23:17 Because I was not cut off before the darkness, neither hath he
+covered the darkness from my face.
+
+24:1 Why, seeing times are not hidden from the Almighty, do they that
+know him not see his days? 24:2 Some remove the landmarks; they
+violently take away flocks, and feed thereof.
+
+24:3 They drive away the ass of the fatherless, they take the widow's
+ox for a pledge.
+
+24:4 They turn the needy out of the way: the poor of the earth hide
+themselves together.
+
+24:5 Behold, as wild asses in the desert, go they forth to their work;
+rising betimes for a prey: the wilderness yieldeth food for them and
+for their children.
+
+24:6 They reap every one his corn in the field: and they gather the
+vintage of the wicked.
+
+24:7 They cause the naked to lodge without clothing, that they have no
+covering in the cold.
+
+24:8 They are wet with the showers of the mountains, and embrace the
+rock for want of a shelter.
+
+24:9 They pluck the fatherless from the breast, and take a pledge of
+the poor.
+
+24:10 They cause him to go naked without clothing, and they take away
+the sheaf from the hungry; 24:11 Which make oil within their walls,
+and tread their winepresses, and suffer thirst.
+
+24:12 Men groan from out of the city, and the soul of the wounded
+crieth out: yet God layeth not folly to them.
+
+24:13 They are of those that rebel against the light; they know not
+the ways thereof, nor abide in the paths thereof.
+
+24:14 The murderer rising with the light killeth the poor and needy,
+and in the night is as a thief.
+
+24:15 The eye also of the adulterer waiteth for the twilight, saying,
+No eye shall see me: and disguiseth his face.
+
+24:16 In the dark they dig through houses, which they had marked for
+themselves in the daytime: they know not the light.
+
+24:17 For the morning is to them even as the shadow of death: if one
+know them, they are in the terrors of the shadow of death.
+
+24:18 He is swift as the waters; their portion is cursed in the earth:
+he beholdeth not the way of the vineyards.
+
+24:19 Drought and heat consume the snow waters: so doth the grave
+those which have sinned.
+
+24:20 The womb shall forget him; the worm shall feed sweetly on him;
+he shall be no more remembered; and wickedness shall be broken as a
+tree.
+
+24:21 He evil entreateth the barren that beareth not: and doeth not
+good to the widow.
+
+24:22 He draweth also the mighty with his power: he riseth up, and no
+man is sure of life.
+
+24:23 Though it be given him to be in safety, whereon he resteth; yet
+his eyes are upon their ways.
+
+24:24 They are exalted for a little while, but are gone and brought
+low; they are taken out of the way as all other, and cut off as the
+tops of the ears of corn.
+
+24:25 And if it be not so now, who will make me a liar, and make my
+speech nothing worth? 25:1 Then answered Bildad the Shuhite, and
+said, 25:2 Dominion and fear are with him, he maketh peace in his high
+places.
+
+25:3 Is there any number of his armies? and upon whom doth not his
+light arise? 25:4 How then can man be justified with God? or how can
+he be clean that is born of a woman? 25:5 Behold even to the moon,
+and it shineth not; yea, the stars are not pure in his sight.
+
+25:6 How much less man, that is a worm? and the son of man, which is a
+worm? 26:1 But Job answered and said, 26:2 How hast thou helped him
+that is without power? how savest thou the arm that hath no strength?
+26:3 How hast thou counselled him that hath no wisdom? and how hast
+thou plentifully declared the thing as it is? 26:4 To whom hast thou
+uttered words? and whose spirit came from thee? 26:5 Dead things are
+formed from under the waters, and the inhabitants thereof.
+
+26:6 Hell is naked before him, and destruction hath no covering.
+
+26:7 He stretcheth out the north over the empty place, and hangeth the
+earth upon nothing.
+
+26:8 He bindeth up the waters in his thick clouds; and the cloud is
+not rent under them.
+
+26:9 He holdeth back the face of his throne, and spreadeth his cloud
+upon it.
+
+26:10 He hath compassed the waters with bounds, until the day and
+night come to an end.
+
+26:11 The pillars of heaven tremble and are astonished at his reproof.
+
+26:12 He divideth the sea with his power, and by his understanding he
+smiteth through the proud.
+
+26:13 By his spirit he hath garnished the heavens; his hand hath
+formed the crooked serpent.
+
+26:14 Lo, these are parts of his ways: but how little a portion is
+heard of him? but the thunder of his power who can understand? 27:1
+Moreover Job continued his parable, and said, 27:2 As God liveth, who
+hath taken away my judgment; and the Almighty, who hath vexed my soul;
+27:3 All the while my breath is in me, and the spirit of God is in my
+nostrils; 27:4 My lips shall not speak wickedness, nor my tongue utter
+deceit.
+
+27:5 God forbid that I should justify you: till I die I will not
+remove mine integrity from me.
+
+27:6 My righteousness I hold fast, and will not let it go: my heart
+shall not reproach me so long as I live.
+
+27:7 Let mine enemy be as the wicked, and he that riseth up against me
+as the unrighteous.
+
+27:8 For what is the hope of the hypocrite, though he hath gained,
+when God taketh away his soul? 27:9 Will God hear his cry when
+trouble cometh upon him? 27:10 Will he delight himself in the
+Almighty? will he always call upon God? 27:11 I will teach you by the
+hand of God: that which is with the Almighty will I not conceal.
+
+27:12 Behold, all ye yourselves have seen it; why then are ye thus
+altogether vain? 27:13 This is the portion of a wicked man with God,
+and the heritage of oppressors, which they shall receive of the
+Almighty.
+
+27:14 If his children be multiplied, it is for the sword: and his
+offspring shall not be satisfied with bread.
+
+27:15 Those that remain of him shall be buried in death: and his
+widows shall not weep.
+
+27:16 Though he heap up silver as the dust, and prepare raiment as the
+clay; 27:17 He may prepare it, but the just shall put it on, and the
+innocent shall divide the silver.
+
+27:18 He buildeth his house as a moth, and as a booth that the keeper
+maketh.
+
+27:19 The rich man shall lie down, but he shall not be gathered: he
+openeth his eyes, and he is not.
+
+27:20 Terrors take hold on him as waters, a tempest stealeth him away
+in the night.
+
+27:21 The east wind carrieth him away, and he departeth: and as a
+storm hurleth him out of his place.
+
+27:22 For God shall cast upon him, and not spare: he would fain flee
+out of his hand.
+
+27:23 Men shall clap their hands at him, and shall hiss him out of his
+place.
+
+28:1 Surely there is a vein for the silver, and a place for gold where
+they fine it.
+
+28:2 Iron is taken out of the earth, and brass is molten out of the
+stone.
+
+28:3 He setteth an end to darkness, and searcheth out all perfection:
+the stones of darkness, and the shadow of death.
+
+28:4 The flood breaketh out from the inhabitant; even the waters
+forgotten of the foot: they are dried up, they are gone away from men.
+
+28:5 As for the earth, out of it cometh bread: and under it is turned
+up as it were fire.
+
+28:6 The stones of it are the place of sapphires: and it hath dust of
+gold.
+
+28:7 There is a path which no fowl knoweth, and which the vulture's
+eye hath not seen: 28:8 The lion's whelps have not trodden it, nor the
+fierce lion passed by it.
+
+28:9 He putteth forth his hand upon the rock; he overturneth the
+mountains by the roots.
+
+28:10 He cutteth out rivers among the rocks; and his eye seeth every
+precious thing.
+
+28:11 He bindeth the floods from overflowing; and the thing that is
+hid bringeth he forth to light.
+
+28:12 But where shall wisdom be found? and where is the place of
+understanding? 28:13 Man knoweth not the price thereof; neither is it
+found in the land of the living.
+
+28:14 The depth saith, It is not in me: and the sea saith, It is not
+with me.
+
+28:15 It cannot be gotten for gold, neither shall silver be weighed
+for the price thereof.
+
+28:16 It cannot be valued with the gold of Ophir, with the precious
+onyx, or the sapphire.
+
+28:17 The gold and the crystal cannot equal it: and the exchange of it
+shall not be for jewels of fine gold.
+
+28:18 No mention shall be made of coral, or of pearls: for the price
+of wisdom is above rubies.
+
+28:19 The topaz of Ethiopia shall not equal it, neither shall it be
+valued with pure gold.
+
+28:20 Whence then cometh wisdom? and where is the place of
+understanding? 28:21 Seeing it is hid from the eyes of all living,
+and kept close from the fowls of the air.
+
+28:22 Destruction and death say, We have heard the fame thereof with
+our ears.
+
+28:23 God understandeth the way thereof, and he knoweth the place
+thereof.
+
+28:24 For he looketh to the ends of the earth, and seeth under the
+whole heaven; 28:25 To make the weight for the winds; and he weigheth
+the waters by measure.
+
+28:26 When he made a decree for the rain, and a way for the lightning
+of the thunder: 28:27 Then did he see it, and declare it; he prepared
+it, yea, and searched it out.
+
+28:28 And unto man he said, Behold, the fear of the LORD, that is
+wisdom; and to depart from evil is understanding.
+
+29:1 Moreover Job continued his parable, and said, 29:2 Oh that I were
+as in months past, as in the days when God preserved me; 29:3 When his
+candle shined upon my head, and when by his light I walked through
+darkness; 29:4 As I was in the days of my youth, when the secret of
+God was upon my tabernacle; 29:5 When the Almighty was yet with me,
+when my children were about me; 29:6 When I washed my steps with
+butter, and the rock poured me out rivers of oil; 29:7 When I went out
+to the gate through the city, when I prepared my seat in the street!
+29:8 The young men saw me, and hid themselves: and the aged arose, and
+stood up.
+
+29:9 The princes refrained talking, and laid their hand on their
+mouth.
+
+29:10 The nobles held their peace, and their tongue cleaved to the
+roof of their mouth.
+
+29:11 When the ear heard me, then it blessed me; and when the eye saw
+me, it gave witness to me: 29:12 Because I delivered the poor that
+cried, and the fatherless, and him that had none to help him.
+
+29:13 The blessing of him that was ready to perish came upon me: and I
+caused the widow's heart to sing for joy.
+
+29:14 I put on righteousness, and it clothed me: my judgment was as a
+robe and a diadem.
+
+29:15 I was eyes to the blind, and feet was I to the lame.
+
+29:16 I was a father to the poor: and the cause which I knew not I
+searched out.
+
+29:17 And I brake the jaws of the wicked, and plucked the spoil out of
+his teeth.
+
+29:18 Then I said, I shall die in my nest, and I shall multiply my
+days as the sand.
+
+29:19 My root was spread out by the waters, and the dew lay all night
+upon my branch.
+
+29:20 My glory was fresh in me, and my bow was renewed in my hand.
+
+29:21 Unto me men gave ear, and waited, and kept silence at my
+counsel.
+
+29:22 After my words they spake not again; and my speech dropped upon
+them.
+
+29:23 And they waited for me as for the rain; and they opened their
+mouth wide as for the latter rain.
+
+29:24 If I laughed on them, they believed it not; and the light of my
+countenance they cast not down.
+
+29:25 I chose out their way, and sat chief, and dwelt as a king in the
+army, as one that comforteth the mourners.
+
+30:1 But now they that are younger than I have me in derision, whose
+fathers I would have disdained to have set with the dogs of my flock.
+
+30:2 Yea, whereto might the strength of their hands profit me, in whom
+old age was perished? 30:3 For want and famine they were solitary;
+fleeing into the wilderness in former time desolate and waste.
+
+30:4 Who cut up mallows by the bushes, and juniper roots for their
+meat.
+
+30:5 They were driven forth from among men, (they cried after them as
+after a thief;) 30:6 To dwell in the cliffs of the valleys, in caves
+of the earth, and in the rocks.
+
+30:7 Among the bushes they brayed; under the nettles they were
+gathered together.
+
+30:8 They were children of fools, yea, children of base men: they were
+viler than the earth.
+
+30:9 And now am I their song, yea, I am their byword.
+
+30:10 They abhor me, they flee far from me, and spare not to spit in
+my face.
+
+30:11 Because he hath loosed my cord, and afflicted me, they have also
+let loose the bridle before me.
+
+30:12 Upon my right hand rise the youth; they push away my feet, and
+they raise up against me the ways of their destruction.
+
+30:13 They mar my path, they set forward my calamity, they have no
+helper.
+
+30:14 They came upon me as a wide breaking in of waters: in the
+desolation they rolled themselves upon me.
+
+30:15 Terrors are turned upon me: they pursue my soul as the wind: and
+my welfare passeth away as a cloud.
+
+30:16 And now my soul is poured out upon me; the days of affliction
+have taken hold upon me.
+
+30:17 My bones are pierced in me in the night season: and my sinews
+take no rest.
+
+30:18 By the great force of my disease is my garment changed: it
+bindeth me about as the collar of my coat.
+
+30:19 He hath cast me into the mire, and I am become like dust and
+ashes.
+
+30:20 I cry unto thee, and thou dost not hear me: I stand up, and thou
+regardest me not.
+
+30:21 Thou art become cruel to me: with thy strong hand thou opposest
+thyself against me.
+
+30:22 Thou liftest me up to the wind; thou causest me to ride upon it,
+and dissolvest my substance.
+
+30:23 For I know that thou wilt bring me to death, and to the house
+appointed for all living.
+
+30:24 Howbeit he will not stretch out his hand to the grave, though
+they cry in his destruction.
+
+30:25 Did not I weep for him that was in trouble? was not my soul
+grieved for the poor? 30:26 When I looked for good, then evil came
+unto me: and when I waited for light, there came darkness.
+
+30:27 My bowels boiled, and rested not: the days of affliction
+prevented me.
+
+30:28 I went mourning without the sun: I stood up, and I cried in the
+congregation.
+
+30:29 I am a brother to dragons, and a companion to owls.
+
+30:30 My skin is black upon me, and my bones are burned with heat.
+
+30:31 My harp also is turned to mourning, and my organ into the voice
+of them that weep.
+
+31:1 I made a covenant with mine eyes; why then should I think upon a
+maid? 31:2 For what portion of God is there from above? and what
+inheritance of the Almighty from on high? 31:3 Is not destruction to
+the wicked? and a strange punishment to the workers of iniquity? 31:4
+Doth not he see my ways, and count all my steps? 31:5 If I have
+walked with vanity, or if my foot hath hasted to deceit; 31:6 Let me
+be weighed in an even balance that God may know mine integrity.
+
+31:7 If my step hath turned out of the way, and mine heart walked
+after mine eyes, and if any blot hath cleaved to mine hands; 31:8 Then
+let me sow, and let another eat; yea, let my offspring be rooted out.
+
+31:9 If mine heart have been deceived by a woman, or if I have laid
+wait at my neighbour's door; 31:10 Then let my wife grind unto
+another, and let others bow down upon her.
+
+31:11 For this is an heinous crime; yea, it is an iniquity to be
+punished by the judges.
+
+31:12 For it is a fire that consumeth to destruction, and would root
+out all mine increase.
+
+31:13 If I did despise the cause of my manservant or of my
+maidservant, when they contended with me; 31:14 What then shall I do
+when God riseth up? and when he visiteth, what shall I answer him?
+31:15 Did not he that made me in the womb make him? and did not one
+fashion us in the womb? 31:16 If I have withheld the poor from their
+desire, or have caused the eyes of the widow to fail; 31:17 Or have
+eaten my morsel myself alone, and the fatherless hath not eaten
+thereof; 31:18 (For from my youth he was brought up with me, as with a
+father, and I have guided her from my mother's womb;) 31:19 If I have
+seen any perish for want of clothing, or any poor without covering;
+31:20 If his loins have not blessed me, and if he were not warmed with
+the fleece of my sheep; 31:21 If I have lifted up my hand against the
+fatherless, when I saw my help in the gate: 31:22 Then let mine arm
+fall from my shoulder blade, and mine arm be broken from the bone.
+
+31:23 For destruction from God was a terror to me, and by reason of
+his highness I could not endure.
+
+31:24 If I have made gold my hope, or have said to the fine gold, Thou
+art my confidence; 31:25 If I rejoice because my wealth was great, and
+because mine hand had gotten much; 31:26 If I beheld the sun when it
+shined, or the moon walking in brightness; 31:27 And my heart hath
+been secretly enticed, or my mouth hath kissed my hand: 31:28 This
+also were an iniquity to be punished by the judge: for I should have
+denied the God that is above.
+
+31:29 If I rejoice at the destruction of him that hated me, or lifted
+up myself when evil found him: 31:30 Neither have I suffered my mouth
+to sin by wishing a curse to his soul.
+
+31:31 If the men of my tabernacle said not, Oh that we had of his
+flesh! we cannot be satisfied.
+
+31:32 The stranger did not lodge in the street: but I opened my doors
+to the traveller.
+
+31:33 If I covered my transgressions as Adam, by hiding mine iniquity
+in my bosom: 31:34 Did I fear a great multitude, or did the contempt
+of families terrify me, that I kept silence, and went not out of the
+door? 31:35 Oh that one would hear me! behold, my desire is, that the
+Almighty would answer me, and that mine adversary had written a book.
+
+31:36 Surely I would take it upon my shoulder, and bind it as a crown
+to me.
+
+31:37 I would declare unto him the number of my steps; as a prince
+would I go near unto him.
+
+31:38 If my land cry against me, or that the furrows likewise thereof
+complain; 31:39 If I have eaten the fruits thereof without money, or
+have caused the owners thereof to lose their life: 31:40 Let thistles
+grow instead of wheat, and cockle instead of barley.
+
+The words of Job are ended.
+
+32:1 So these three men ceased to answer Job, because he was righteous
+in his own eyes.
+
+32:2 Then was kindled the wrath of Elihu the son of Barachel the
+Buzite, of the kindred of Ram: against Job was his wrath kindled,
+because he justified himself rather than God.
+
+32:3 Also against his three friends was his wrath kindled, because
+they had found no answer, and yet had condemned Job.
+
+32:4 Now Elihu had waited till Job had spoken, because they were elder
+than he.
+
+32:5 When Elihu saw that there was no answer in the mouth of these
+three men, then his wrath was kindled.
+
+32:6 And Elihu the son of Barachel the Buzite answered and said, I am
+young, and ye are very old; wherefore I was afraid, and durst not shew
+you mine opinion.
+
+32:7 I said, Days should speak, and multitude of years should teach
+wisdom.
+
+32:8 But there is a spirit in man: and the inspiration of the Almighty
+giveth them understanding.
+
+32:9 Great men are not always wise: neither do the aged understand
+judgment.
+
+32:10 Therefore I said, Hearken to me; I also will shew mine opinion.
+
+32:11 Behold, I waited for your words; I gave ear to your reasons,
+whilst ye searched out what to say.
+
+32:12 Yea, I attended unto you, and, behold, there was none of you
+that convinced Job, or that answered his words: 32:13 Lest ye should
+say, We have found out wisdom: God thrusteth him down, not man.
+
+32:14 Now he hath not directed his words against me: neither will I
+answer him with your speeches.
+
+32:15 They were amazed, they answered no more: they left off speaking.
+
+32:16 When I had waited, (for they spake not, but stood still, and
+answered no more;) 32:17 I said, I will answer also my part, I also
+will shew mine opinion.
+
+32:18 For I am full of matter, the spirit within me constraineth me.
+
+32:19 Behold, my belly is as wine which hath no vent; it is ready to
+burst like new bottles.
+
+32:20 I will speak, that I may be refreshed: I will open my lips and
+answer.
+
+32:21 Let me not, I pray you, accept any man's person, neither let me
+give flattering titles unto man.
+
+32:22 For I know not to give flattering titles; in so doing my maker
+would soon take me away.
+
+33:1 Wherefore, Job, I pray thee, hear my speeches, and hearken to all
+my words.
+
+33:2 Behold, now I have opened my mouth, my tongue hath spoken in my
+mouth.
+
+33:3 My words shall be of the uprightness of my heart: and my lips
+shall utter knowledge clearly.
+
+33:4 The spirit of God hath made me, and the breath of the Almighty
+hath given me life.
+
+33:5 If thou canst answer me, set thy words in order before me, stand
+up.
+
+33:6 Behold, I am according to thy wish in God's stead: I also am
+formed out of the clay.
+
+33:7 Behold, my terror shall not make thee afraid, neither shall my
+hand be heavy upon thee.
+
+33:8 Surely thou hast spoken in mine hearing, and I have heard the
+voice of thy words, saying, 33:9 I am clean without transgression, I
+am innocent; neither is there iniquity in me.
+
+33:10 Behold, he findeth occasions against me, he counteth me for his
+enemy, 33:11 He putteth my feet in the stocks, he marketh all my
+paths.
+
+33:12 Behold, in this thou art not just: I will answer thee, that God
+is greater than man.
+
+33:13 Why dost thou strive against him? for he giveth not account of
+any of his matters.
+
+33:14 For God speaketh once, yea twice, yet man perceiveth it not.
+
+33:15 In a dream, in a vision of the night, when deep sleep falleth
+upon men, in slumberings upon the bed; 33:16 Then he openeth the ears
+of men, and sealeth their instruction, 33:17 That he may withdraw man
+from his purpose, and hide pride from man.
+
+33:18 He keepeth back his soul from the pit, and his life from
+perishing by the sword.
+
+33:19 He is chastened also with pain upon his bed, and the multitude
+of his bones with strong pain: 33:20 So that his life abhorreth bread,
+and his soul dainty meat.
+
+33:21 His flesh is consumed away, that it cannot be seen; and his
+bones that were not seen stick out.
+
+33:22 Yea, his soul draweth near unto the grave, and his life to the
+destroyers.
+
+33:23 If there be a messenger with him, an interpreter, one among a
+thousand, to shew unto man his uprightness: 33:24 Then he is gracious
+unto him, and saith, Deliver him from going down to the pit: I have
+found a ransom.
+
+33:25 His flesh shall be fresher than a child's: he shall return to
+the days of his youth: 33:26 He shall pray unto God, and he will be
+favourable unto him: and he shall see his face with joy: for he will
+render unto man his righteousness.
+
+33:27 He looketh upon men, and if any say, I have sinned, and
+perverted that which was right, and it profited me not; 33:28 He will
+deliver his soul from going into the pit, and his life shall see the
+light.
+
+33:29 Lo, all these things worketh God oftentimes with man, 33:30 To
+bring back his soul from the pit, to be enlightened with the light of
+the living.
+
+33:31 Mark well, O Job, hearken unto me: hold thy peace, and I will
+speak.
+
+33:32 If thou hast anything to say, answer me: speak, for I desire to
+justify thee.
+
+33:33 If not, hearken unto me: hold thy peace, and I shall teach thee
+wisdom.
+
+34:1 Furthermore Elihu answered and said, 34:2 Hear my words, O ye
+wise men; and give ear unto me, ye that have knowledge.
+
+34:3 For the ear trieth words, as the mouth tasteth meat.
+
+34:4 Let us choose to us judgment: let us know among ourselves what is
+good.
+
+34:5 For Job hath said, I am righteous: and God hath taken away my
+judgment.
+
+34:6 Should I lie against my right? my wound is incurable without
+transgression.
+
+34:7 What man is like Job, who drinketh up scorning like water? 34:8
+Which goeth in company with the workers of iniquity, and walketh with
+wicked men.
+
+34:9 For he hath said, It profiteth a man nothing that he should
+delight himself with God.
+
+34:10 Therefore hearken unto me ye men of understanding: far be it
+from God, that he should do wickedness; and from the Almighty, that he
+should commit iniquity.
+
+34:11 For the work of a man shall he render unto him, and cause every
+man to find according to his ways.
+
+34:12 Yea, surely God will not do wickedly, neither will the Almighty
+pervert judgment.
+
+34:13 Who hath given him a charge over the earth? or who hath disposed
+the whole world? 34:14 If he set his heart upon man, if he gather
+unto himself his spirit and his breath; 34:15 All flesh shall perish
+together, and man shall turn again unto dust.
+
+34:16 If now thou hast understanding, hear this: hearken to the voice
+of my words.
+
+34:17 Shall even he that hateth right govern? and wilt thou condemn
+him that is most just? 34:18 Is it fit to say to a king, Thou art
+wicked? and to princes, Ye are ungodly? 34:19 How much less to him
+that accepteth not the persons of princes, nor regardeth the rich more
+than the poor? for they all are the work of his hands.
+
+34:20 In a moment shall they die, and the people shall be troubled at
+midnight, and pass away: and the mighty shall be taken away without
+hand.
+
+34:21 For his eyes are upon the ways of man, and he seeth all his
+goings.
+
+34:22 There is no darkness, nor shadow of death, where the workers of
+iniquity may hide themselves.
+
+34:23 For he will not lay upon man more than right; that he should
+enter into judgment with God.
+
+34:24 He shall break in pieces mighty men without number, and set
+others in their stead.
+
+34:25 Therefore he knoweth their works, and he overturneth them in the
+night, so that they are destroyed.
+
+34:26 He striketh them as wicked men in the open sight of others;
+34:27 Because they turned back from him, and would not consider any of
+his ways: 34:28 So that they cause the cry of the poor to come unto
+him, and he heareth the cry of the afflicted.
+
+34:29 When he giveth quietness, who then can make trouble? and when he
+hideth his face, who then can behold him? whether it be done against a
+nation, or against a man only: 34:30 That the hypocrite reign not,
+lest the people be ensnared.
+
+34:31 Surely it is meet to be said unto God, I have borne
+chastisement, I will not offend any more: 34:32 That which I see not
+teach thou me: if I have done iniquity, I will do no more.
+
+34:33 Should it be according to thy mind? he will recompense it,
+whether thou refuse, or whether thou choose; and not I: therefore
+speak what thou knowest.
+
+34:34 Let men of understanding tell me, and let a wise man hearken
+unto me.
+
+34:35 Job hath spoken without knowledge, and his words were without
+wisdom.
+
+34:36 My desire is that Job may be tried unto the end because of his
+answers for wicked men.
+
+34:37 For he addeth rebellion unto his sin, he clappeth his hands
+among us, and multiplieth his words against God.
+
+35:1 Elihu spake moreover, and said, 35:2 Thinkest thou this to be
+right, that thou saidst, My righteousness is more than God's? 35:3
+For thou saidst, What advantage will it be unto thee? and, What profit
+shall I have, if I be cleansed from my sin? 35:4 I will answer thee,
+and thy companions with thee.
+
+35:5 Look unto the heavens, and see; and behold the clouds which are
+higher than thou.
+
+35:6 If thou sinnest, what doest thou against him? or if thy
+transgressions be multiplied, what doest thou unto him? 35:7 If thou
+be righteous, what givest thou him? or what receiveth he of thine
+hand? 35:8 Thy wickedness may hurt a man as thou art; and thy
+righteousness may profit the son of man.
+
+35:9 By reason of the multitude of oppressions they make the oppressed
+to cry: they cry out by reason of the arm of the mighty.
+
+35:10 But none saith, Where is God my maker, who giveth songs in the
+night; 35:11 Who teacheth us more than the beasts of the earth, and
+maketh us wiser than the fowls of heaven? 35:12 There they cry, but
+none giveth answer, because of the pride of evil men.
+
+35:13 Surely God will not hear vanity, neither will the Almighty
+regard it.
+
+35:14 Although thou sayest thou shalt not see him, yet judgment is
+before him; therefore trust thou in him.
+
+35:15 But now, because it is not so, he hath visited in his anger; yet
+he knoweth it not in great extremity: 35:16 Therefore doth Job open
+his mouth in vain; he multiplieth words without knowledge.
+
+36:1 Elihu also proceeded, and said, 36:2 Suffer me a little, and I
+will shew thee that I have yet to speak on God's behalf.
+
+36:3 I will fetch my knowledge from afar, and will ascribe
+righteousness to my Maker.
+
+36:4 For truly my words shall not be false: he that is perfect in
+knowledge is with thee.
+
+36:5 Behold, God is mighty, and despiseth not any: he is mighty in
+strength and wisdom.
+
+36:6 He preserveth not the life of the wicked: but giveth right to the
+poor.
+
+36:7 He withdraweth not his eyes from the righteous: but with kings
+are they on the throne; yea, he doth establish them for ever, and they
+are exalted.
+
+36:8 And if they be bound in fetters, and be holden in cords of
+affliction; 36:9 Then he sheweth them their work, and their
+transgressions that they have exceeded.
+
+36:10 He openeth also their ear to discipline, and commandeth that
+they return from iniquity.
+
+36:11 If they obey and serve him, they shall spend their days in
+prosperity, and their years in pleasures.
+
+36:12 But if they obey not, they shall perish by the sword, and they
+shall die without knowledge.
+
+36:13 But the hypocrites in heart heap up wrath: they cry not when he
+bindeth them.
+
+36:14 They die in youth, and their life is among the unclean.
+
+36:15 He delivereth the poor in his affliction, and openeth their ears
+in oppression.
+
+36:16 Even so would he have removed thee out of the strait into a
+broad place, where there is no straitness; and that which should be
+set on thy table should be full of fatness.
+
+36:17 But thou hast fulfilled the judgment of the wicked: judgment and
+justice take hold on thee.
+
+36:18 Because there is wrath, beware lest he take thee away with his
+stroke: then a great ransom cannot deliver thee.
+
+36:19 Will he esteem thy riches? no, not gold, nor all the forces of
+strength.
+
+36:20 Desire not the night, when people are cut off in their place.
+
+36:21 Take heed, regard not iniquity: for this hast thou chosen rather
+than affliction.
+
+36:22 Behold, God exalteth by his power: who teacheth like him? 36:23
+Who hath enjoined him his way? or who can say, Thou hast wrought
+iniquity? 36:24 Remember that thou magnify his work, which men
+behold.
+
+36:25 Every man may see it; man may behold it afar off.
+
+36:26 Behold, God is great, and we know him not, neither can the
+number of his years be searched out.
+
+36:27 For he maketh small the drops of water: they pour down rain
+according to the vapour thereof: 36:28 Which the clouds do drop and
+distil upon man abundantly.
+
+36:29 Also can any understand the spreadings of the clouds, or the
+noise of his tabernacle? 36:30 Behold, he spreadeth his light upon
+it, and covereth the bottom of the sea.
+
+36:31 For by them judgeth he the people; he giveth meat in abundance.
+
+36:32 With clouds he covereth the light; and commandeth it not to
+shine by the cloud that cometh betwixt.
+
+36:33 The noise thereof sheweth concerning it, the cattle also
+concerning the vapour.
+
+37:1 At this also my heart trembleth, and is moved out of his place.
+
+37:2 Hear attentively the noise of his voice, and the sound that goeth
+out of his mouth.
+
+37:3 He directeth it under the whole heaven, and his lightning unto
+the ends of the earth.
+
+37:4 After it a voice roareth: he thundereth with the voice of his
+excellency; and he will not stay them when his voice is heard.
+
+37:5 God thundereth marvellously with his voice; great things doeth
+he, which we cannot comprehend.
+
+37:6 For he saith to the snow, Be thou on the earth; likewise to the
+small rain, and to the great rain of his strength.
+
+37:7 He sealeth up the hand of every man; that all men may know his
+work.
+
+37:8 Then the beasts go into dens, and remain in their places.
+
+37:9 Out of the south cometh the whirlwind: and cold out of the north.
+
+37:10 By the breath of God frost is given: and the breadth of the
+waters is straitened.
+
+37:11 Also by watering he wearieth the thick cloud: he scattereth his
+bright cloud: 37:12 And it is turned round about by his counsels: that
+they may do whatsoever he commandeth them upon the face of the world
+in the earth.
+
+37:13 He causeth it to come, whether for correction, or for his land,
+or for mercy.
+
+37:14 Hearken unto this, O Job: stand still, and consider the wondrous
+works of God.
+
+37:15 Dost thou know when God disposed them, and caused the light of
+his cloud to shine? 37:16 Dost thou know the balancings of the
+clouds, the wondrous works of him which is perfect in knowledge?
+37:17 How thy garments are warm, when he quieteth the earth by the
+south wind? 37:18 Hast thou with him spread out the sky, which is
+strong, and as a molten looking glass? 37:19 Teach us what we shall
+say unto him; for we cannot order our speech by reason of darkness.
+
+37:20 Shall it be told him that I speak? if a man speak, surely he
+shall be swallowed up.
+
+37:21 And now men see not the bright light which is in the clouds: but
+the wind passeth, and cleanseth them.
+
+37:22 Fair weather cometh out of the north: with God is terrible
+majesty.
+
+37:23 Touching the Almighty, we cannot find him out: he is excellent
+in power, and in judgment, and in plenty of justice: he will not
+afflict.
+
+37:24 Men do therefore fear him: he respecteth not any that are wise
+of heart.
+
+38:1 Then the LORD answered Job out of the whirlwind, and said, 38:2
+Who is this that darkeneth counsel by words without knowledge? 38:3
+Gird up now thy loins like a man; for I will demand of thee, and
+answer thou me.
+
+38:4 Where wast thou when I laid the foundations of the earth?
+declare, if thou hast understanding.
+
+38:5 Who hath laid the measures thereof, if thou knowest? or who hath
+stretched the line upon it? 38:6 Whereupon are the foundations
+thereof fastened? or who laid the corner stone thereof; 38:7 When the
+morning stars sang together, and all the sons of God shouted for joy?
+38:8 Or who shut up the sea with doors, when it brake forth, as if it
+had issued out of the womb? 38:9 When I made the cloud the garment
+thereof, and thick darkness a swaddlingband for it, 38:10 And brake up
+for it my decreed place, and set bars and doors, 38:11 And said,
+Hitherto shalt thou come, but no further: and here shall thy proud
+waves be stayed? 38:12 Hast thou commanded the morning since thy
+days; and caused the dayspring to know his place; 38:13 That it might
+take hold of the ends of the earth, that the wicked might be shaken
+out of it? 38:14 It is turned as clay to the seal; and they stand as
+a garment.
+
+38:15 And from the wicked their light is withholden, and the high arm
+shall be broken.
+
+38:16 Hast thou entered into the springs of the sea? or hast thou
+walked in the search of the depth? 38:17 Have the gates of death been
+opened unto thee? or hast thou seen the doors of the shadow of death?
+38:18 Hast thou perceived the breadth of the earth? declare if thou
+knowest it all.
+
+38:19 Where is the way where light dwelleth? and as for darkness,
+where is the place thereof, 38:20 That thou shouldest take it to the
+bound thereof, and that thou shouldest know the paths to the house
+thereof? 38:21 Knowest thou it, because thou wast then born? or
+because the number of thy days is great? 38:22 Hast thou entered into
+the treasures of the snow? or hast thou seen the treasures of the
+hail, 38:23 Which I have reserved against the time of trouble, against
+the day of battle and war? 38:24 By what way is the light parted,
+which scattereth the east wind upon the earth? 38:25 Who hath divided
+a watercourse for the overflowing of waters, or a way for the
+lightning of thunder; 38:26 To cause it to rain on the earth, where no
+man is; on the wilderness, wherein there is no man; 38:27 To satisfy
+the desolate and waste ground; and to cause the bud of the tender herb
+to spring forth? 38:28 Hath the rain a father? or who hath begotten
+the drops of dew? 38:29 Out of whose womb came the ice? and the hoary
+frost of heaven, who hath gendered it? 38:30 The waters are hid as
+with a stone, and the face of the deep is frozen.
+
+38:31 Canst thou bind the sweet influences of Pleiades, or loose the
+bands of Orion? 38:32 Canst thou bring forth Mazzaroth in his season?
+or canst thou guide Arcturus with his sons? 38:33 Knowest thou the
+ordinances of heaven? canst thou set the dominion thereof in the
+earth? 38:34 Canst thou lift up thy voice to the clouds, that
+abundance of waters may cover thee? 38:35 Canst thou send lightnings,
+that they may go and say unto thee, Here we are? 38:36 Who hath put
+wisdom in the inward parts? or who hath given understanding to the
+heart? 38:37 Who can number the clouds in wisdom? or who can stay the
+bottles of heaven, 38:38 When the dust groweth into hardness, and the
+clods cleave fast together? 38:39 Wilt thou hunt the prey for the
+lion? or fill the appetite of the young lions, 38:40 When they couch
+in their dens, and abide in the covert to lie in wait? 38:41 Who
+provideth for the raven his food? when his young ones cry unto God,
+they wander for lack of meat.
+
+39:1 Knowest thou the time when the wild goats of the rock bring
+forth? or canst thou mark when the hinds do calve? 39:2 Canst thou
+number the months that they fulfil? or knowest thou the time when they
+bring forth? 39:3 They bow themselves, they bring forth their young
+ones, they cast out their sorrows.
+
+39:4 Their young ones are in good liking, they grow up with corn; they
+go forth, and return not unto them.
+
+39:5 Who hath sent out the wild ass free? or who hath loosed the bands
+of the wild ass? 39:6 Whose house I have made the wilderness, and the
+barren land his dwellings.
+
+39:7 He scorneth the multitude of the city, neither regardeth he the
+crying of the driver.
+
+39:8 The range of the mountains is his pasture, and he searcheth after
+every green thing.
+
+39:9 Will the unicorn be willing to serve thee, or abide by thy crib?
+39:10 Canst thou bind the unicorn with his band in the furrow? or will
+he harrow the valleys after thee? 39:11 Wilt thou trust him, because
+his strength is great? or wilt thou leave thy labour to him? 39:12
+Wilt thou believe him, that he will bring home thy seed, and gather it
+into thy barn? 39:13 Gavest thou the goodly wings unto the peacocks?
+or wings and feathers unto the ostrich? 39:14 Which leaveth her eggs
+in the earth, and warmeth them in dust, 39:15 And forgetteth that the
+foot may crush them, or that the wild beast may break them.
+
+39:16 She is hardened against her young ones, as though they were not
+her's: her labour is in vain without fear; 39:17 Because God hath
+deprived her of wisdom, neither hath he imparted to her understanding.
+
+39:18 What time she lifteth up herself on high, she scorneth the horse
+and his rider.
+
+39:19 Hast thou given the horse strength? hast thou clothed his neck
+with thunder? 39:20 Canst thou make him afraid as a grasshopper? the
+glory of his nostrils is terrible.
+
+39:21 He paweth in the valley, and rejoiceth in his strength: he goeth
+on to meet the armed men.
+
+39:22 He mocketh at fear, and is not affrighted; neither turneth he
+back from the sword.
+
+39:23 The quiver rattleth against him, the glittering spear and the
+shield.
+
+39:24 He swalloweth the ground with fierceness and rage: neither
+believeth he that it is the sound of the trumpet.
+
+39:25 He saith among the trumpets, Ha, ha; and he smelleth the battle
+afar off, the thunder of the captains, and the shouting.
+
+39:26 Doth the hawk fly by thy wisdom, and stretch her wings toward
+the south? 39:27 Doth the eagle mount up at thy command, and make her
+nest on high? 39:28 She dwelleth and abideth on the rock, upon the
+crag of the rock, and the strong place.
+
+39:29 From thence she seeketh the prey, and her eyes behold afar off.
+
+39:30 Her young ones also suck up blood: and where the slain are,
+there is she.
+
+40:1 Moreover the LORD answered Job, and said, 40:2 Shall he that
+contendeth with the Almighty instruct him? he that reproveth God, let
+him answer it.
+
+40:3 Then Job answered the LORD, and said, 40:4 Behold, I am vile;
+what shall I answer thee? I will lay mine hand upon my mouth.
+
+40:5 Once have I spoken; but I will not answer: yea, twice; but I will
+proceed no further.
+
+40:6 Then answered the LORD unto Job out of the whirlwind, and said,
+40:7 Gird up thy loins now like a man: I will demand of thee, and
+declare thou unto me.
+
+40:8 Wilt thou also disannul my judgment? wilt thou condemn me, that
+thou mayest be righteous? 40:9 Hast thou an arm like God? or canst
+thou thunder with a voice like him? 40:10 Deck thyself now with
+majesty and excellency; and array thyself with glory and beauty.
+
+40:11 Cast abroad the rage of thy wrath: and behold every one that is
+proud, and abase him.
+
+40:12 Look on every one that is proud, and bring him low; and tread
+down the wicked in their place.
+
+40:13 Hide them in the dust together; and bind their faces in secret.
+
+40:14 Then will I also confess unto thee that thine own right hand can
+save thee.
+
+40:15 Behold now behemoth, which I made with thee; he eateth grass as
+an ox.
+
+40:16 Lo now, his strength is in his loins, and his force is in the
+navel of his belly.
+
+40:17 He moveth his tail like a cedar: the sinews of his stones are
+wrapped together.
+
+40:18 His bones are as strong pieces of brass; his bones are like bars
+of iron.
+
+40:19 He is the chief of the ways of God: he that made him can make
+his sword to approach unto him.
+
+40:20 Surely the mountains bring him forth food, where all the beasts
+of the field play.
+
+40:21 He lieth under the shady trees, in the covert of the reed, and
+fens.
+
+40:22 The shady trees cover him with their shadow; the willows of the
+brook compass him about.
+
+40:23 Behold, he drinketh up a river, and hasteth not: he trusteth
+that he can draw up Jordan into his mouth.
+
+40:24 He taketh it with his eyes: his nose pierceth through snares.
+
+41:1 Canst thou draw out leviathan with an hook? or his tongue with a
+cord which thou lettest down? 41:2 Canst thou put an hook into his
+nose? or bore his jaw through with a thorn? 41:3 Will he make many
+supplications unto thee? will he speak soft words unto thee? 41:4
+Will he make a covenant with thee? wilt thou take him for a servant
+for ever? 41:5 Wilt thou play with him as with a bird? or wilt thou
+bind him for thy maidens? 41:6 Shall the companions make a banquet of
+him? shall they part him among the merchants? 41:7 Canst thou fill
+his skin with barbed irons? or his head with fish spears? 41:8 Lay
+thine hand upon him, remember the battle, do no more.
+
+41:9 Behold, the hope of him is in vain: shall not one be cast down
+even at the sight of him? 41:10 None is so fierce that dare stir him
+up: who then is able to stand before me? 41:11 Who hath prevented me,
+that I should repay him? whatsoever is under the whole heaven is mine.
+
+41:12 I will not conceal his parts, nor his power, nor his comely
+proportion.
+
+41:13 Who can discover the face of his garment? or who can come to him
+with his double bridle? 41:14 Who can open the doors of his face? his
+teeth are terrible round about.
+
+41:15 His scales are his pride, shut up together as with a close seal.
+
+41:16 One is so near to another, that no air can come between them.
+
+41:17 They are joined one to another, they stick together, that they
+cannot be sundered.
+
+41:18 By his neesings a light doth shine, and his eyes are like the
+eyelids of the morning.
+
+41:19 Out of his mouth go burning lamps, and sparks of fire leap out.
+
+41:20 Out of his nostrils goeth smoke, as out of a seething pot or
+caldron.
+
+41:21 His breath kindleth coals, and a flame goeth out of his mouth.
+
+41:22 In his neck remaineth strength, and sorrow is turned into joy
+before him.
+
+41:23 The flakes of his flesh are joined together: they are firm in
+themselves; they cannot be moved.
+
+41:24 His heart is as firm as a stone; yea, as hard as a piece of the
+nether millstone.
+
+41:25 When he raiseth up himself, the mighty are afraid: by reason of
+breakings they purify themselves.
+
+41:26 The sword of him that layeth at him cannot hold: the spear, the
+dart, nor the habergeon.
+
+41:27 He esteemeth iron as straw, and brass as rotten wood.
+
+41:28 The arrow cannot make him flee: slingstones are turned with him
+into stubble.
+
+41:29 Darts are counted as stubble: he laugheth at the shaking of a
+spear.
+
+41:30 Sharp stones are under him: he spreadeth sharp pointed things
+upon the mire.
+
+41:31 He maketh the deep to boil like a pot: he maketh the sea like a
+pot of ointment.
+
+41:32 He maketh a path to shine after him; one would think the deep to
+be hoary.
+
+41:33 Upon earth there is not his like, who is made without fear.
+
+41:34 He beholdeth all high things: he is a king over all the children
+of pride.
+
+42:1 Then Job answered the LORD, and said, 42:2 I know that thou canst
+do every thing, and that no thought can be withholden from thee.
+
+42:3 Who is he that hideth counsel without knowledge? therefore have I
+uttered that I understood not; things too wonderful for me, which I
+knew not.
+
+42:4 Hear, I beseech thee, and I will speak: I will demand of thee,
+and declare thou unto me.
+
+42:5 I have heard of thee by the hearing of the ear: but now mine eye
+seeth thee.
+
+42:6 Wherefore I abhor myself, and repent in dust and ashes.
+
+42:7 And it was so, that after the LORD had spoken these words unto
+Job, the LORD said to Eliphaz the Temanite, My wrath is kindled
+against thee, and against thy two friends: for ye have not spoken of
+me the thing that is right, as my servant Job hath.
+
+42:8 Therefore take unto you now seven bullocks and seven rams, and go
+to my servant Job, and offer up for yourselves a burnt offering; and
+my servant Job shall pray for you: for him will I accept: lest I deal
+with you after your folly, in that ye have not spoken of me the thing
+which is right, like my servant Job.
+
+42:9 So Eliphaz the Temanite and Bildad the Shuhite and Zophar the
+Naamathite went, and did according as the LORD commanded them: the
+LORD also accepted Job.
+
+42:10 And the LORD turned the captivity of Job, when he prayed for his
+friends: also the LORD gave Job twice as much as he had before.
+
+42:11 Then came there unto him all his brethren, and all his sisters,
+and all they that had been of his acquaintance before, and did eat
+bread with him in his house: and they bemoaned him, and comforted him
+over all the evil that the LORD had brought upon him: every man also
+gave him a piece of money, and every one an earring of gold.
+
+42:12 So the LORD blessed the latter end of Job more than his
+beginning: for he had fourteen thousand sheep, and six thousand
+camels, and a thousand yoke of oxen, and a thousand she asses.
+
+42:13 He had also seven sons and three daughters.
+
+42:14 And he called the name of the first, Jemima; and the name of the
+second, Kezia; and the name of the third, Kerenhappuch.
+
+42:15 And in all the land were no women found so fair as the daughters
+of Job: and their father gave them inheritance among their brethren.
+
+42:16 After this lived Job an hundred and forty years, and saw his
+sons, and his sons' sons, even four generations.
+
+42:17 So Job died, being old and full of days.
+
+
+
+
+The Book of Psalms
+
+
+1:1 Blessed is the man that walketh not in the counsel of the ungodly,
+nor standeth in the way of sinners, nor sitteth in the seat of the
+scornful.
+
+1:2 But his delight is in the law of the LORD; and in his law doth he
+meditate day and night.
+
+1:3 And he shall be like a tree planted by the rivers of water, that
+bringeth forth his fruit in his season; his leaf also shall not
+wither; and whatsoever he doeth shall prosper.
+
+1:4 The ungodly are not so: but are like the chaff which the wind
+driveth away.
+
+1:5 Therefore the ungodly shall not stand in the judgment, nor sinners
+in the congregation of the righteous.
+
+1:6 For the LORD knoweth the way of the righteous: but the way of the
+ungodly shall perish.
+
+
+
+2:1 Why do the heathen rage, and the people imagine a vain thing?
+
+2:2 The kings of the earth set themselves, and the rulers take counsel
+together, against the LORD, and against his anointed, saying,
+
+2:3 Let us break their bands asunder, and cast away their cords from
+us.
+
+2:4 He that sitteth in the heavens shall laugh: the LORD shall have
+them in derision.
+
+2:5 Then shall he speak unto them in his wrath, and vex them in his
+sore displeasure.
+
+2:6 Yet have I set my king upon my holy hill of Zion.
+
+2:7 I will declare the decree: the LORD hath said unto me, Thou art my
+Son; this day have I begotten thee.
+
+2:8 Ask of me, and I shall give thee the heathen for thine
+inheritance, and the uttermost parts of the earth for thy possession.
+
+2:9 Thou shalt break them with a rod of iron; thou shalt dash them in
+pieces like a potter's vessel.
+
+2:10 Be wise now therefore, O ye kings: be instructed, ye judges of
+the earth.
+
+2:11 Serve the LORD with fear, and rejoice with trembling.
+
+2:12 Kiss the Son, lest he be angry, and ye perish from the way, when
+his wrath is kindled but a little. Blessed are all they that put their
+trust in him.
+
+
+
+3:1 Lord, how are they increased that trouble me! many are they that
+rise up against me.
+
+3:2 Many there be which say of my soul, There is no help for him in
+God.
+
+Selah.
+
+3:3 But thou, O LORD, art a shield for me; my glory, and the lifter up
+of mine head.
+
+3:4 I cried unto the LORD with my voice, and he heard me out of his
+holy hill. Selah.
+
+3:5 I laid me down and slept; I awaked; for the LORD sustained me.
+
+3:6 I will not be afraid of ten thousands of people, that have set
+themselves against me round about.
+
+3:7 Arise, O LORD; save me, O my God: for thou hast smitten all mine
+enemies upon the cheek bone; thou hast broken the teeth of the
+ungodly.
+
+3:8 Salvation belongeth unto the LORD: thy blessing is upon thy
+people.
+
+Selah.
+
+
+
+4:1 Hear me when I call, O God of my righteousness: thou hast enlarged
+me when I was in distress; have mercy upon me, and hear my prayer.
+
+4:2 O ye sons of men, how long will ye turn my glory into shame? how
+long will ye love vanity, and seek after leasing? Selah.
+
+4:3 But know that the LORD hath set apart him that is godly for
+himself: the LORD will hear when I call unto him.
+
+4:4 Stand in awe, and sin not: commune with your own heart upon your
+bed, and be still. Selah.
+
+4:5 Offer the sacrifices of righteousness, and put your trust in the
+LORD.
+
+4:6 There be many that say, Who will shew us any good? LORD, lift thou
+up the light of thy countenance upon us.
+
+4:7 Thou hast put gladness in my heart, more than in the time that
+their corn and their wine increased.
+
+4:8 I will both lay me down in peace, and sleep: for thou, LORD, only
+makest me dwell in safety.
+
+
+
+5:1 Give ear to my words, O LORD, consider my meditation.
+
+5:2 Hearken unto the voice of my cry, my King, and my God: for unto
+thee will I pray.
+
+5:3 My voice shalt thou hear in the morning, O LORD; in the morning
+will I direct my prayer unto thee, and will look up.
+
+5:4 For thou art not a God that hath pleasure in wickedness: neither
+shall evil dwell with thee.
+
+5:5 The foolish shall not stand in thy sight: thou hatest all workers
+of iniquity.
+
+5:6 Thou shalt destroy them that speak leasing: the LORD will abhor
+the bloody and deceitful man.
+
+5:7 But as for me, I will come into thy house in the multitude of thy
+mercy: and in thy fear will I worship toward thy holy temple.
+
+5:8 Lead me, O LORD, in thy righteousness because of mine enemies;
+make thy way straight before my face.
+
+5:9 For there is no faithfulness in their mouth; their inward part is
+very wickedness; their throat is an open sepulchre; they flatter with
+their tongue.
+
+5:10 Destroy thou them, O God; let them fall by their own counsels;
+cast them out in the multitude of their transgressions; for they have
+rebelled against thee.
+
+5:11 But let all those that put their trust in thee rejoice: let them
+ever shout for joy, because thou defendest them: let them also that
+love thy name be joyful in thee.
+
+5:12 For thou, LORD, wilt bless the righteous; with favour wilt thou
+compass him as with a shield.
+
+
+
+6:1 O LORD, rebuke me not in thine anger, neither chasten me in thy
+hot displeasure.
+
+6:2 Have mercy upon me, O LORD; for I am weak: O LORD, heal me; for my
+bones are vexed.
+
+6:3 My soul is also sore vexed: but thou, O LORD, how long?
+
+6:4 Return, O LORD, deliver my soul: oh save me for thy mercies' sake.
+
+6:5 For in death there is no remembrance of thee: in the grave who
+shall give thee thanks?
+
+6:6 I am weary with my groaning; all the night make I my bed to swim;
+I water my couch with my tears.
+
+6:7 Mine eye is consumed because of grief; it waxeth old because of
+all mine enemies.
+
+6:8 Depart from me, all ye workers of iniquity; for the LORD hath
+heard the voice of my weeping.
+
+6:9 The LORD hath heard my supplication; the LORD will receive my
+prayer.
+
+6:10 Let all mine enemies be ashamed and sore vexed: let them return
+and be ashamed suddenly.
+
+
+
+7:1 O LORD my God, in thee do I put my trust: save me from all them
+that persecute me, and deliver me:
+
+7:2 Lest he tear my soul like a lion, rending it in pieces, while
+there is none to deliver.
+
+7:3 O LORD my God, If I have done this; if there be iniquity in my
+hands;
+
+7:4 If I have rewarded evil unto him that was at peace with me; (yea,
+I have delivered him that without cause is mine enemy:)
+
+7:5 Let the enemy persecute my soul, and take it; yea, let him tread
+down my life upon the earth, and lay mine honour in the dust. Selah.
+
+7:6 Arise, O LORD, in thine anger, lift up thyself because of the rage
+of mine enemies: and awake for me to the judgment that thou hast
+commanded.
+
+7:7 So shall the congregation of the people compass thee about: for
+their sakes therefore return thou on high.
+
+7:8 The LORD shall judge the people: judge me, O LORD, according to my
+righteousness, and according to mine integrity that is in me.
+
+7:9 Oh let the wickedness of the wicked come to an end; but establish
+the just: for the righteous God trieth the hearts and reins.
+
+7:10 My defence is of God, which saveth the upright in heart.
+
+7:11 God judgeth the righteous, and God is angry with the wicked every
+day.
+
+7:12 If he turn not, he will whet his sword; he hath bent his bow, and
+made it ready.
+
+7:13 He hath also prepared for him the instruments of death; he
+ordaineth his arrows against the persecutors.
+
+7:14 Behold, he travaileth with iniquity, and hath conceived mischief,
+and brought forth falsehood.
+
+7:15 He made a pit, and digged it, and is fallen into the ditch which
+he made.
+
+7:16 His mischief shall return upon his own head, and his violent
+dealing shall come down upon his own pate.
+
+7:17 I will praise the LORD according to his righteousness: and will
+sing praise to the name of the LORD most high.
+
+
+
+8:1 O LORD, our Lord, how excellent is thy name in all the earth! who
+hast set thy glory above the heavens.
+
+8:2 Out of the mouth of babes and sucklings hast thou ordained
+strength because of thine enemies, that thou mightest still the enemy
+and the avenger.
+
+8:3 When I consider thy heavens, the work of thy fingers, the moon and
+the stars, which thou hast ordained;
+
+8:4 What is man, that thou art mindful of him? and the son of man,
+that thou visitest him?
+
+8:5 For thou hast made him a little lower than the angels, and hast
+crowned him with glory and honour.
+
+8:6 Thou madest him to have dominion over the works of thy hands; thou
+hast put all things under his feet:
+
+8:7 All sheep and oxen, yea, and the beasts of the field;
+
+8:8 The fowl of the air, and the fish of the sea, and whatsoever
+passeth through the paths of the seas.
+
+8:9 O LORD our Lord, how excellent is thy name in all the earth!
+
+
+9:1 I will praise thee, O LORD, with my whole heart; I will shew forth
+all thy marvellous works.
+
+9:2 I will be glad and rejoice in thee: I will sing praise to thy
+name, O thou most High.
+
+9:3 When mine enemies are turned back, they shall fall and perish at
+thy presence.
+
+9:4 For thou hast maintained my right and my cause; thou satest in the
+throne judging right.
+
+9:5 Thou hast rebuked the heathen, thou hast destroyed the wicked,
+thou hast put out their name for ever and ever.
+
+9:6 O thou enemy, destructions are come to a perpetual end: and thou
+hast destroyed cities; their memorial is perished with them.
+
+9:7 But the LORD shall endure for ever: he hath prepared his throne
+for judgment.
+
+9:8 And he shall judge the world in righteousness, he shall minister
+judgment to the people in uprightness.
+
+9:9 The LORD also will be a refuge for the oppressed, a refuge in
+times of trouble.
+
+9:10 And they that know thy name will put their trust in thee: for
+thou, LORD, hast not forsaken them that seek thee.
+
+9:11 Sing praises to the LORD, which dwelleth in Zion: declare among
+the people his doings.
+
+9:12 When he maketh inquisition for blood, he remembereth them: he
+forgetteth not the cry of the humble.
+
+9:13 Have mercy upon me, O LORD; consider my trouble which I suffer of
+them that hate me, thou that liftest me up from the gates of death:
+
+9:14 That I may shew forth all thy praise in the gates of the daughter
+of Zion: I will rejoice in thy salvation.
+
+9:15 The heathen are sunk down in the pit that they made: in the net
+which they hid is their own foot taken.
+
+9:16 The LORD is known by the judgment which he executeth: the wicked
+is snared in the work of his own hands. Higgaion. Selah.
+
+9:17 The wicked shall be turned into hell, and all the nations that
+forget God.
+
+9:18 For the needy shall not alway be forgotten: the expectation of
+the poor shall not perish for ever.
+
+9:19 Arise, O LORD; let not man prevail: let the heathen be judged in
+thy sight.
+
+9:20 Put them in fear, O LORD: that the nations may know themselves to
+be but men. Selah.
+
+
+
+10:1 Why standest thou afar off, O LORD? why hidest thou thyself in
+times of trouble?
+
+10:2 The wicked in his pride doth persecute the poor: let them be
+taken in the devices that they have imagined.
+
+10:3 For the wicked boasteth of his heart's desire, and blesseth the
+covetous, whom the LORD abhorreth.
+
+10:4 The wicked, through the pride of his countenance, will not seek
+after God: God is not in all his thoughts.
+
+10:5 His ways are always grievous; thy judgments are far above out of
+his sight: as for all his enemies, he puffeth at them.
+
+10:6 He hath said in his heart, I shall not be moved: for I shall
+never be in adversity.
+
+10:7 His mouth is full of cursing and deceit and fraud: under his
+tongue is mischief and vanity.
+
+10:8 He sitteth in the lurking places of the villages: in the secret
+places doth he murder the innocent: his eyes are privily set against
+the poor.
+
+10:9 He lieth in wait secretly as a lion in his den: he lieth in wait
+to catch the poor: he doth catch the poor, when he draweth him into
+his net.
+
+10:10 He croucheth, and humbleth himself, that the poor may fall by
+his strong ones.
+
+10:11 He hath said in his heart, God hath forgotten: he hideth his
+face; he will never see it.
+
+10:12 Arise, O LORD; O God, lift up thine hand: forget not the humble.
+
+10:13 Wherefore doth the wicked contemn God? he hath said in his
+heart, Thou wilt not require it.
+
+10:14 Thou hast seen it; for thou beholdest mischief and spite, to
+requite it with thy hand: the poor committeth himself unto thee; thou
+art the helper of the fatherless.
+
+10:15 Break thou the arm of the wicked and the evil man: seek out his
+wickedness till thou find none.
+
+10:16 The LORD is King for ever and ever: the heathen are perished out
+of his land.
+
+10:17 LORD, thou hast heard the desire of the humble: thou wilt
+prepare their heart, thou wilt cause thine ear to hear:
+
+10:18 To judge the fatherless and the oppressed, that the man of the
+earth may no more oppress.
+
+
+
+11:1 In the LORD put I my trust: how say ye to my soul, Flee as a bird
+to your mountain?
+
+11:2 For, lo, the wicked bend their bow, they make ready their arrow
+upon the string, that they may privily shoot at the upright in heart.
+
+11:3 If the foundations be destroyed, what can the righteous do?
+
+11:4 The LORD is in his holy temple, the LORD's throne is in heaven:
+his eyes behold, his eyelids try, the children of men.
+
+11:5 The LORD trieth the righteous: but the wicked and him that loveth
+violence his soul hateth.
+
+11:6 Upon the wicked he shall rain snares, fire and brimstone, and an
+horrible tempest: this shall be the portion of their cup.
+
+11:7 For the righteous LORD loveth righteousness; his countenance doth
+behold the upright.
+
+
+
+12:1 Help, LORD; for the godly man ceaseth; for the faithful fail from
+among the children of men.
+
+12:2 They speak vanity every one with his neighbour: with flattering
+lips and with a double heart do they speak.
+
+12:3 The LORD shall cut off all flattering lips, and the tongue that
+speaketh proud things:
+
+12:4 Who have said, With our tongue will we prevail; our lips are our
+own: who is lord over us?
+
+12:5 For the oppression of the poor, for the sighing of the needy, now
+will I arise, saith the LORD; I will set him in safety from him that
+puffeth at him.
+
+12:6 The words of the LORD are pure words: as silver tried in a
+furnace of earth, purified seven times.
+
+12:7 Thou shalt keep them, O LORD, thou shalt preserve them from this
+generation for ever.
+
+12:8 The wicked walk on every side, when the vilest men are exalted.
+
+
+
+13:1 How long wilt thou forget me, O LORD? for ever? how long wilt
+thou hide thy face from me?
+
+13:2 How long shall I take counsel in my soul, having sorrow in my
+heart daily? how long shall mine enemy be exalted over me?
+
+13:3 Consider and hear me, O LORD my God: lighten mine eyes, lest I
+sleep the sleep of death;
+
+13:4 Lest mine enemy say, I have prevailed against him; and those that
+trouble me rejoice when I am moved.
+
+13:5 But I have trusted in thy mercy; my heart shall rejoice in thy
+salvation.
+
+13:6 I will sing unto the LORD, because he hath dealt bountifully with
+me.
+
+
+
+14:1 The fool hath said in his heart, There is no God. They are
+corrupt, they have done abominable works, there is none that doeth
+good.
+
+14:2 The LORD looked down from heaven upon the children of men, to see
+if there were any that did understand, and seek God.
+
+14:3 They are all gone aside, they are all together become filthy:
+there is none that doeth good, no, not one.
+
+14:4 Have all the workers of iniquity no knowledge? who eat up my
+people as they eat bread, and call not upon the LORD.
+
+14:5 There were they in great fear: for God is in the generation of
+the righteous.
+
+14:6 Ye have shamed the counsel of the poor, because the LORD is his
+refuge.
+
+14:7 Oh that the salvation of Israel were come out of Zion! when the
+LORD bringeth back the captivity of his people, Jacob shall rejoice,
+and Israel shall be glad.
+
+
+
+15:1 Lord, who shall abide in thy tabernacle? who shall dwell in thy
+holy hill?
+
+15:2 He that walketh uprightly, and worketh righteousness, and
+speaketh the truth in his heart.
+
+15:3 He that backbiteth not with his tongue, nor doeth evil to his
+neighbour, nor taketh up a reproach against his neighbour.
+
+15:4 In whose eyes a vile person is contemned; but he honoureth them
+that fear the LORD. He that sweareth to his own hurt, and changeth
+not.
+
+15:5 He that putteth not out his money to usury, nor taketh reward
+against the innocent. He that doeth these things shall never be moved.
+
+
+
+16:1 Preserve me, O God: for in thee do I put my trust.
+
+16:2 O my soul, thou hast said unto the LORD, Thou art my Lord: my
+goodness extendeth not to thee;
+
+16:3 But to the saints that are in the earth, and to the excellent, in
+whom is all my delight.
+
+16:4 Their sorrows shall be multiplied that hasten after another god:
+their drink offerings of blood will I not offer, nor take up their
+names into my lips.
+
+16:5 The LORD is the portion of mine inheritance and of my cup: thou
+maintainest my lot.
+
+16:6 The lines are fallen unto me in pleasant places; yea, I have a
+goodly heritage.
+
+16:7 I will bless the LORD, who hath given me counsel: my reins also
+instruct me in the night seasons.
+
+16:8 I have set the LORD always before me: because he is at my right
+hand, I shall not be moved.
+
+16:9 Therefore my heart is glad, and my glory rejoiceth: my flesh also
+shall rest in hope.
+
+16:10 For thou wilt not leave my soul in hell; neither wilt thou
+suffer thine Holy One to see corruption.
+
+16:11 Thou wilt shew me the path of life: in thy presence is fulness
+of joy; at thy right hand there are pleasures for evermore.
+
+
+
+17:1 Hear the right, O LORD, attend unto my cry, give ear unto my
+prayer, that goeth not out of feigned lips.
+
+17:2 Let my sentence come forth from thy presence; let thine eyes
+behold the things that are equal.
+
+17:3 Thou hast proved mine heart; thou hast visited me in the night;
+thou hast tried me, and shalt find nothing; I am purposed that my
+mouth shall not transgress.
+
+17:4 Concerning the works of men, by the word of thy lips I have kept
+me from the paths of the destroyer.
+
+17:5 Hold up my goings in thy paths, that my footsteps slip not.
+
+17:6 I have called upon thee, for thou wilt hear me, O God: incline
+thine ear unto me, and hear my speech.
+
+17:7 Shew thy marvellous lovingkindness, O thou that savest by thy
+right hand them which put their trust in thee from those that rise up
+against them.
+
+17:8 Keep me as the apple of the eye, hide me under the shadow of thy
+wings,
+
+17:9 From the wicked that oppress me, from my deadly enemies, who
+compass me about.
+
+17:10 They are inclosed in their own fat: with their mouth they speak
+proudly.
+
+17:11 They have now compassed us in our steps: they have set their
+eyes bowing down to the earth;
+
+17:12 Like as a lion that is greedy of his prey, and as it were a
+young lion lurking in secret places.
+
+17:13 Arise, O LORD, disappoint him, cast him down: deliver my soul
+from the wicked, which is thy sword:
+
+17:14 From men which are thy hand, O LORD, from men of the world,
+which have their portion in this life, and whose belly thou fillest
+with thy hid treasure: they are full of children, and leave the rest
+of their substance to their babes.
+
+17:15 As for me, I will behold thy face in righteousness: I shall be
+satisfied, when I awake, with thy likeness.
+
+
+
+18:1 I will love thee, O LORD, my strength.
+
+18:2 The LORD is my rock, and my fortress, and my deliverer; my God,
+my strength, in whom I will trust; my buckler, and the horn of my
+salvation, and my high tower.
+
+18:3 I will call upon the LORD, who is worthy to be praised: so shall
+I be saved from mine enemies.
+
+18:4 The sorrows of death compassed me, and the floods of ungodly men
+made me afraid.
+
+18:5 The sorrows of hell compassed me about: the snares of death
+prevented me.
+
+18:6 In my distress I called upon the LORD, and cried unto my God: he
+heard my voice out of his temple, and my cry came before him, even
+into his ears.
+
+18:7 Then the earth shook and trembled; the foundations also of the
+hills moved and were shaken, because he was wroth.
+
+18:8 There went up a smoke out of his nostrils, and fire out of his
+mouth devoured: coals were kindled by it.
+
+18:9 He bowed the heavens also, and came down: and darkness was under
+his feet.
+
+18:10 And he rode upon a cherub, and did fly: yea, he did fly upon the
+wings of the wind.
+
+18:11 He made darkness his secret place; his pavilion round about him
+were dark waters and thick clouds of the skies.
+
+18:12 At the brightness that was before him his thick clouds passed,
+hail stones and coals of fire.
+
+18:13 The LORD also thundered in the heavens, and the Highest gave his
+voice; hail stones and coals of fire.
+
+18:14 Yea, he sent out his arrows, and scattered them; and he shot out
+lightnings, and discomfited them.
+
+18:15 Then the channels of waters were seen, and the foundations of
+the world were discovered at thy rebuke, O LORD, at the blast of the
+breath of thy nostrils.
+
+18:16 He sent from above, he took me, he drew me out of many waters.
+
+18:17 He delivered me from my strong enemy, and from them which hated
+me: for they were too strong for me.
+
+18:18 They prevented me in the day of my calamity: but the LORD was my
+stay.
+
+18:19 He brought me forth also into a large place; he delivered me,
+because he delighted in me.
+
+18:20 The LORD rewarded me according to my righteousness; according to
+the cleanness of my hands hath he recompensed me.
+
+18:21 For I have kept the ways of the LORD, and have not wickedly
+departed from my God.
+
+18:22 For all his judgments were before me, and I did not put away his
+statutes from me.
+
+18:23 I was also upright before him, and I kept myself from mine
+iniquity.
+
+18:24 Therefore hath the LORD recompensed me according to my
+righteousness, according to the cleanness of my hands in his eyesight.
+
+18:25 With the merciful thou wilt shew thyself merciful; with an
+upright man thou wilt shew thyself upright;
+
+18:26 With the pure thou wilt shew thyself pure; and with the froward
+thou wilt shew thyself froward.
+
+18:27 For thou wilt save the afflicted people; but wilt bring down
+high looks.
+
+18:28 For thou wilt light my candle: the LORD my God will enlighten my
+darkness.
+
+18:29 For by thee I have run through a troop; and by my God have I
+leaped over a wall.
+
+18:30 As for God, his way is perfect: the word of the LORD is tried:
+he is a buckler to all those that trust in him.
+
+18:31 For who is God save the LORD? or who is a rock save our God?
+
+18:32 It is God that girdeth me with strength, and maketh my way
+perfect.
+
+18:33 He maketh my feet like hinds' feet, and setteth me upon my high
+places.
+
+18:34 He teacheth my hands to war, so that a bow of steel is broken by
+mine arms.
+
+18:35 Thou hast also given me the shield of thy salvation: and thy
+right hand hath holden me up, and thy gentleness hath made me great.
+
+18:36 Thou hast enlarged my steps under me, that my feet did not slip.
+
+18:37 I have pursued mine enemies, and overtaken them: neither did I
+turn again till they were consumed.
+
+18:38 I have wounded them that they were not able to rise: they are
+fallen under my feet.
+
+18:39 For thou hast girded me with strength unto the battle: thou hast
+subdued under me those that rose up against me.
+
+18:40 Thou hast also given me the necks of mine enemies; that I might
+destroy them that hate me.
+
+18:41 They cried, but there was none to save them: even unto the LORD,
+but he answered them not.
+
+18:42 Then did I beat them small as the dust before the wind: I did
+cast them out as the dirt in the streets.
+
+18:43 Thou hast delivered me from the strivings of the people; and
+thou hast made me the head of the heathen: a people whom I have not
+known shall serve me.
+
+18:44 As soon as they hear of me, they shall obey me: the strangers
+shall submit themselves unto me.
+
+18:45 The strangers shall fade away, and be afraid out of their close
+places.
+
+18:46 The LORD liveth; and blessed be my rock; and let the God of my
+salvation be exalted.
+
+18:47 It is God that avengeth me, and subdueth the people under me.
+
+18:48 He delivereth me from mine enemies: yea, thou liftest me up
+above those that rise up against me: thou hast delivered me from the
+violent man.
+
+18:49 Therefore will I give thanks unto thee, O LORD, among the
+heathen, and sing praises unto thy name.
+
+18:50 Great deliverance giveth he to his king; and sheweth mercy to
+his anointed, to David, and to his seed for evermore.
+
+
+
+19:1 The heavens declare the glory of God; and the firmament sheweth
+his handywork.
+
+19:2 Day unto day uttereth speech, and night unto night sheweth
+knowledge.
+
+19:3 There is no speech nor language, where their voice is not heard.
+
+19:4 Their line is gone out through all the earth, and their words to
+the end of the world. In them hath he set a tabernacle for the sun,
+
+19:5 Which is as a bridegroom coming out of his chamber, and rejoiceth
+as a strong man to run a race.
+
+19:6 His going forth is from the end of the heaven, and his circuit
+unto the ends of it: and there is nothing hid from the heat thereof.
+
+19:7 The law of the LORD is perfect, converting the soul: the
+testimony of the LORD is sure, making wise the simple.
+
+19:8 The statutes of the LORD are right, rejoicing the heart: the
+commandment of the LORD is pure, enlightening the eyes.
+
+19:9 The fear of the LORD is clean, enduring for ever: the judgments
+of the LORD are true and righteous altogether.
+
+19:10 More to be desired are they than gold, yea, than much fine gold:
+sweeter also than honey and the honeycomb.
+
+19:11 Moreover by them is thy servant warned: and in keeping of them
+there is great reward.
+
+19:12 Who can understand his errors? cleanse thou me from secret
+faults.
+
+19:13 Keep back thy servant also from presumptuous sins; let them not
+have dominion over me: then shall I be upright, and I shall be
+innocent from the great transgression.
+
+19:14 Let the words of my mouth, and the meditation of my heart, be
+acceptable in thy sight, O LORD, my strength, and my redeemer.
+
+
+
+20:1 The LORD hear thee in the day of trouble; the name of the God of
+Jacob defend thee;
+
+20:2 Send thee help from the sanctuary, and strengthen thee out of
+Zion;
+
+20:3 Remember all thy offerings, and accept thy burnt sacrifice;
+Selah.
+
+20:4 Grant thee according to thine own heart, and fulfil all thy
+counsel.
+
+20:5 We will rejoice in thy salvation, and in the name of our God we
+will set up our banners: the LORD fulfil all thy petitions.
+
+20:6 Now know I that the LORD saveth his anointed; he will hear him
+from his holy heaven with the saving strength of his right hand.
+
+20:7 Some trust in chariots, and some in horses: but we will remember
+the name of the LORD our God.
+
+20:8 They are brought down and fallen: but we are risen, and stand
+upright.
+
+20:9 Save, LORD: let the king hear us when we call.
+
+
+
+21:1 The king shall joy in thy strength, O LORD; and in thy salvation
+how greatly shall he rejoice!
+
+21:2 Thou hast given him his heart's desire, and hast not withholden
+the request of his lips. Selah.
+
+21:3 For thou preventest him with the blessings of goodness: thou
+settest a crown of pure gold on his head.
+
+21:4 He asked life of thee, and thou gavest it him, even length of
+days for ever and ever.
+
+21:5 His glory is great in thy salvation: honour and majesty hast thou
+laid upon him.
+
+21:6 For thou hast made him most blessed for ever: thou hast made him
+exceeding glad with thy countenance.
+
+21:7 For the king trusteth in the LORD, and through the mercy of the
+most High he shall not be moved.
+
+21:8 Thine hand shall find out all thine enemies: thy right hand shall
+find out those that hate thee.
+
+21:9 Thou shalt make them as a fiery oven in the time of thine anger:
+the LORD shall swallow them up in his wrath, and the fire shall devour
+them.
+
+21:10 Their fruit shalt thou destroy from the earth, and their seed
+from among the children of men.
+
+21:11 For they intended evil against thee: they imagined a mischievous
+device, which they are not able to perform.
+
+21:12 Therefore shalt thou make them turn their back, when thou shalt
+make ready thine arrows upon thy strings against the face of them.
+
+21:13 Be thou exalted, LORD, in thine own strength: so will we sing
+and praise thy power.
+
+
+
+22:1 My God, my God, why hast thou forsaken me? why art thou so far
+from helping me, and from the words of my roaring?
+
+22:2 O my God, I cry in the day time, but thou hearest not; and in the
+night season, and am not silent.
+
+22:3 But thou art holy, O thou that inhabitest the praises of Israel.
+
+22:4 Our fathers trusted in thee: they trusted, and thou didst deliver
+them.
+
+22:5 They cried unto thee, and were delivered: they trusted in thee,
+and were not confounded.
+
+22:6 But I am a worm, and no man; a reproach of men, and despised of
+the people.
+
+22:7 All they that see me laugh me to scorn: they shoot out the lip,
+they shake the head, saying,
+
+22:8 He trusted on the LORD that he would deliver him: let him deliver
+him, seeing he delighted in him.
+
+22:9 But thou art he that took me out of the womb: thou didst make me
+hope when I was upon my mother's breasts.
+
+22:10 I was cast upon thee from the womb: thou art my God from my
+mother's belly.
+
+22:11 Be not far from me; for trouble is near; for there is none to
+help.
+
+22:12 Many bulls have compassed me: strong bulls of Bashan have beset
+me round.
+
+22:13 They gaped upon me with their mouths, as a ravening and a
+roaring lion.
+
+22:14 I am poured out like water, and all my bones are out of joint:
+my heart is like wax; it is melted in the midst of my bowels.
+
+22:15 My strength is dried up like a potsherd; and my tongue cleaveth
+to my jaws; and thou hast brought me into the dust of death.
+
+22:16 For dogs have compassed me: the assembly of the wicked have
+inclosed me: they pierced my hands and my feet.
+
+22:17 I may tell all my bones: they look and stare upon me.
+
+22:18 They part my garments among them, and cast lots upon my vesture.
+
+22:19 But be not thou far from me, O LORD: O my strength, haste thee
+to help me.
+
+22:20 Deliver my soul from the sword; my darling from the power of the
+dog.
+
+22:21 Save me from the lion's mouth: for thou hast heard me from the
+horns of the unicorns.
+
+22:22 I will declare thy name unto my brethren: in the midst of the
+congregation will I praise thee.
+
+22:23 Ye that fear the LORD, praise him; all ye the seed of Jacob,
+glorify him; and fear him, all ye the seed of Israel.
+
+22:24 For he hath not despised nor abhorred the affliction of the
+afflicted; neither hath he hid his face from him; but when he cried
+unto him, he heard.
+
+22:25 My praise shall be of thee in the great congregation: I will pay
+my vows before them that fear him.
+
+22:26 The meek shall eat and be satisfied: they shall praise the LORD
+that seek him: your heart shall live for ever.
+
+22:27 All the ends of the world shall remember and turn unto the LORD:
+and all the kindreds of the nations shall worship before thee.
+
+22:28 For the kingdom is the LORD's: and he is the governor among the
+nations.
+
+22:29 All they that be fat upon earth shall eat and worship: all they
+that go down to the dust shall bow before him: and none can keep alive
+his own soul.
+
+22:30 A seed shall serve him; it shall be accounted to the Lord for a
+generation.
+
+22:31 They shall come, and shall declare his righteousness unto a
+people that shall be born, that he hath done this.
+
+
+
+23:1 The LORD is my shepherd; I shall not want.
+
+23:2 He maketh me to lie down in green pastures: he leadeth me beside
+the still waters.
+
+23:3 He restoreth my soul: he leadeth me in the paths of righteousness
+for his name's sake.
+
+23:4 Yea, though I walk through the valley of the shadow of death, I
+will fear no evil: for thou art with me; thy rod and thy staff they
+comfort me.
+
+23:5 Thou preparest a table before me in the presence of mine enemies:
+thou anointest my head with oil; my cup runneth over.
+
+23:6 Surely goodness and mercy shall follow me all the days of my
+life: and I will dwell in the house of the LORD for ever.
+
+
+
+24:1 The earth is the LORD's, and the fulness thereof; the world, and
+they that dwell therein.
+
+24:2 For he hath founded it upon the seas, and established it upon the
+floods.
+
+24:3 Who shall ascend into the hill of the LORD? or who shall stand in
+his holy place?
+
+24:4 He that hath clean hands, and a pure heart; who hath not lifted
+up his soul unto vanity, nor sworn deceitfully.
+
+24:5 He shall receive the blessing from the LORD, and righteousness
+from the God of his salvation.
+
+24:6 This is the generation of them that seek him, that seek thy face,
+O Jacob. Selah.
+
+24:7 Lift up your heads, O ye gates; and be ye lift up, ye everlasting
+doors; and the King of glory shall come in.
+
+24:8 Who is this King of glory? The LORD strong and mighty, the LORD
+mighty in battle.
+
+24:9 Lift up your heads, O ye gates; even lift them up, ye everlasting
+doors; and the King of glory shall come in.
+
+24:10 Who is this King of glory? The LORD of hosts, he is the King of
+glory. Selah.
+
+
+
+25:1 Unto thee, O LORD, do I lift up my soul.
+
+25:2 O my God, I trust in thee: let me not be ashamed, let not mine
+enemies triumph over me.
+
+25:3 Yea, let none that wait on thee be ashamed: let them be ashamed
+which transgress without cause.
+
+25:4 Shew me thy ways, O LORD; teach me thy paths.
+
+25:5 Lead me in thy truth, and teach me: for thou art the God of my
+salvation; on thee do I wait all the day.
+
+25:6 Remember, O LORD, thy tender mercies and thy lovingkindnesses;
+for they have been ever of old.
+
+25:7 Remember not the sins of my youth, nor my transgressions:
+according to thy mercy remember thou me for thy goodness' sake, O
+LORD.
+
+25:8 Good and upright is the LORD: therefore will he teach sinners in
+the way.
+
+25:9 The meek will he guide in judgment: and the meek will he teach
+his way.
+
+25:10 All the paths of the LORD are mercy and truth unto such as keep
+his covenant and his testimonies.
+
+25:11 For thy name's sake, O LORD, pardon mine iniquity; for it is
+great.
+
+25:12 What man is he that feareth the LORD? him shall he teach in the
+way that he shall choose.
+
+25:13 His soul shall dwell at ease; and his seed shall inherit the
+earth.
+
+25:14 The secret of the LORD is with them that fear him; and he will
+shew them his covenant.
+
+25:15 Mine eyes are ever toward the LORD; for he shall pluck my feet
+out of the net.
+
+25:16 Turn thee unto me, and have mercy upon me; for I am desolate and
+afflicted.
+
+25:17 The troubles of my heart are enlarged: O bring thou me out of my
+distresses.
+
+25:18 Look upon mine affliction and my pain; and forgive all my sins.
+
+25:19 Consider mine enemies; for they are many; and they hate me with
+cruel hatred.
+
+25:20 O keep my soul, and deliver me: let me not be ashamed; for I put
+my trust in thee.
+
+25:21 Let integrity and uprightness preserve me; for I wait on thee.
+
+25:22 Redeem Israel, O God, out of all his troubles.
+
+
+
+26:1 Judge me, O LORD; for I have walked in mine integrity: I have
+trusted also in the LORD; therefore I shall not slide.
+
+26:2 Examine me, O LORD, and prove me; try my reins and my heart.
+
+26:3 For thy lovingkindness is before mine eyes: and I have walked in
+thy truth.
+
+26:4 I have not sat with vain persons, neither will I go in with
+dissemblers.
+
+26:5 I have hated the congregation of evil doers; and will not sit
+with the wicked.
+
+26:6 I will wash mine hands in innocency: so will I compass thine
+altar, O LORD:
+
+26:7 That I may publish with the voice of thanksgiving, and tell of
+all thy wondrous works.
+
+26:8 LORD, I have loved the habitation of thy house, and the place
+where thine honour dwelleth.
+
+26:9 Gather not my soul with sinners, nor my life with bloody men:
+
+26:10 In whose hands is mischief, and their right hand is full of
+bribes.
+
+26:11 But as for me, I will walk in mine integrity: redeem me, and be
+merciful unto me.
+
+26:12 My foot standeth in an even place: in the congregations will I
+bless the LORD.
+
+
+
+27:1 The LORD is my light and my salvation; whom shall I fear? the
+LORD is the strength of my life; of whom shall I be afraid?
+
+27:2 When the wicked, even mine enemies and my foes, came upon me to
+eat up my flesh, they stumbled and fell.
+
+27:3 Though an host should encamp against me, my heart shall not fear:
+though war should rise against me, in this will I be confident.
+
+27:4 One thing have I desired of the LORD, that will I seek after;
+that I may dwell in the house of the LORD all the days of my life, to
+behold the beauty of the LORD, and to enquire in his temple.
+
+27:5 For in the time of trouble he shall hide me in his pavilion: in
+the secret of his tabernacle shall he hide me; he shall set me up upon
+a rock.
+
+27:6 And now shall mine head be lifted up above mine enemies round
+about me: therefore will I offer in his tabernacle sacrifices of joy;
+I will sing, yea, I will sing praises unto the LORD.
+
+27:7 Hear, O LORD, when I cry with my voice: have mercy also upon me,
+and answer me.
+
+27:8 When thou saidst, Seek ye my face; my heart said unto thee, Thy
+face, LORD, will I seek.
+
+27:9 Hide not thy face far from me; put not thy servant away in anger:
+thou hast been my help; leave me not, neither forsake me, O God of my
+salvation.
+
+27:10 When my father and my mother forsake me, then the LORD will take
+me up.
+
+27:11 Teach me thy way, O LORD, and lead me in a plain path, because
+of mine enemies.
+
+27:12 Deliver me not over unto the will of mine enemies: for false
+witnesses are risen up against me, and such as breathe out cruelty.
+
+27:13 I had fainted, unless I had believed to see the goodness of the
+LORD in the land of the living.
+
+27:14 Wait on the LORD: be of good courage, and he shall strengthen
+thine heart: wait, I say, on the LORD.
+
+
+
+28:1 Unto thee will I cry, O LORD my rock; be not silent to me: lest,
+if thou be silent to me, I become like them that go down into the pit.
+
+28:2 Hear the voice of my supplications, when I cry unto thee, when I
+lift up my hands toward thy holy oracle.
+
+28:3 Draw me not away with the wicked, and with the workers of
+iniquity, which speak peace to their neighbours, but mischief is in
+their hearts.
+
+28:4 Give them according to their deeds, and according to the
+wickedness of their endeavours: give them after the work of their
+hands; render to them their desert.
+
+28:5 Because they regard not the works of the LORD, nor the operation
+of his hands, he shall destroy them, and not build them up.
+
+28:6 Blessed be the LORD, because he hath heard the voice of my
+supplications.
+
+28:7 The LORD is my strength and my shield; my heart trusted in him,
+and I am helped: therefore my heart greatly rejoiceth; and with my
+song will I praise him.
+
+28:8 The LORD is their strength, and he is the saving strength of his
+anointed.
+
+28:9 Save thy people, and bless thine inheritance: feed them also, and
+lift them up for ever.
+
+
+
+29:1 Give unto the LORD, O ye mighty, give unto the LORD glory and
+strength.
+
+29:2 Give unto the LORD the glory due unto his name; worship the LORD
+in the beauty of holiness.
+
+29:3 The voice of the LORD is upon the waters: the God of glory
+thundereth: the LORD is upon many waters.
+
+29:4 The voice of the LORD is powerful; the voice of the LORD is full
+of majesty.
+
+29:5 The voice of the LORD breaketh the cedars; yea, the LORD breaketh
+the cedars of Lebanon.
+
+29:6 He maketh them also to skip like a calf; Lebanon and Sirion like
+a young unicorn.
+
+29:7 The voice of the LORD divideth the flames of fire.
+
+29:8 The voice of the LORD shaketh the wilderness; the LORD shaketh
+the wilderness of Kadesh.
+
+29:9 The voice of the LORD maketh the hinds to calve, and discovereth
+the forests: and in his temple doth every one speak of his glory.
+
+29:10 The LORD sitteth upon the flood; yea, the LORD sitteth King for
+ever.
+
+29:11 The LORD will give strength unto his people; the LORD will bless
+his people with peace.
+
+
+
+30:1 I will extol thee, O LORD; for thou hast lifted me up, and hast
+not made my foes to rejoice over me.
+
+30:2 O LORD my God, I cried unto thee, and thou hast healed me.
+
+30:3 O LORD, thou hast brought up my soul from the grave: thou hast
+kept me alive, that I should not go down to the pit.
+
+30:4 Sing unto the LORD, O ye saints of his, and give thanks at the
+remembrance of his holiness.
+
+30:5 For his anger endureth but a moment; in his favour is life:
+weeping may endure for a night, but joy cometh in the morning.
+
+30:6 And in my prosperity I said, I shall never be moved.
+
+30:7 LORD, by thy favour thou hast made my mountain to stand strong:
+thou didst hide thy face, and I was troubled.
+
+30:8 I cried to thee, O LORD; and unto the LORD I made supplication.
+
+30:9 What profit is there in my blood, when I go down to the pit?
+Shall the dust praise thee? shall it declare thy truth?
+
+30:10 Hear, O LORD, and have mercy upon me: LORD, be thou my helper.
+
+30:11 Thou hast turned for me my mourning into dancing: thou hast put
+off my sackcloth, and girded me with gladness;
+
+30:12 To the end that my glory may sing praise to thee, and not be
+silent.
+
+O LORD my God, I will give thanks unto thee for ever.
+
+
+
+31:1 In thee, O LORD, do I put my trust; let me never be ashamed:
+deliver me in thy righteousness.
+
+31:2 Bow down thine ear to me; deliver me speedily: be thou my strong
+rock, for an house of defence to save me.
+
+31:3 For thou art my rock and my fortress; therefore for thy name's
+sake lead me, and guide me.
+
+31:4 Pull me out of the net that they have laid privily for me: for
+thou art my strength.
+
+31:5 Into thine hand I commit my spirit: thou hast redeemed me, O LORD
+God of truth.
+
+31:6 I have hated them that regard lying vanities: but I trust in the
+LORD.
+
+31:7 I will be glad and rejoice in thy mercy: for thou hast considered
+my trouble; thou hast known my soul in adversities;
+
+31:8 And hast not shut me up into the hand of the enemy: thou hast set
+my feet in a large room.
+
+31:9 Have mercy upon me, O LORD, for I am in trouble: mine eye is
+consumed with grief, yea, my soul and my belly.
+
+31:10 For my life is spent with grief, and my years with sighing: my
+strength faileth because of mine iniquity, and my bones are consumed.
+
+31:11 I was a reproach among all mine enemies, but especially among my
+neighbours, and a fear to mine acquaintance: they that did see me
+without fled from me.
+
+31:12 I am forgotten as a dead man out of mind: I am like a broken
+vessel.
+
+31:13 For I have heard the slander of many: fear was on every side:
+while they took counsel together against me, they devised to take away
+my life.
+
+31:14 But I trusted in thee, O LORD: I said, Thou art my God.
+
+31:15 My times are in thy hand: deliver me from the hand of mine
+enemies, and from them that persecute me.
+
+31:16 Make thy face to shine upon thy servant: save me for thy
+mercies' sake.
+
+31:17 Let me not be ashamed, O LORD; for I have called upon thee: let
+the wicked be ashamed, and let them be silent in the grave.
+
+31:18 Let the lying lips be put to silence; which speak grievous
+things proudly and contemptuously against the righteous.
+
+31:19 Oh how great is thy goodness, which thou hast laid up for them
+that fear thee; which thou hast wrought for them that trust in thee
+before the sons of men!
+
+31:20 Thou shalt hide them in the secret of thy presence from the
+pride of man: thou shalt keep them secretly in a pavilion from the
+strife of tongues.
+
+31:21 Blessed be the LORD: for he hath shewed me his marvellous
+kindness in a strong city.
+
+31:22 For I said in my haste, I am cut off from before thine eyes:
+nevertheless thou heardest the voice of my supplications when I cried
+unto thee.
+
+31:23 O love the LORD, all ye his saints: for the LORD preserveth the
+faithful, and plentifully rewardeth the proud doer.
+
+31:24 Be of good courage, and he shall strengthen your heart, all ye
+that hope in the LORD.
+
+
+
+32:1 Blessed is he whose transgression is forgiven, whose sin is
+covered.
+
+32:2 Blessed is the man unto whom the LORD imputeth not iniquity, and
+in whose spirit there is no guile.
+
+32:3 When I kept silence, my bones waxed old through my roaring all
+the day long.
+
+32:4 For day and night thy hand was heavy upon me: my moisture is
+turned into the drought of summer. Selah.
+
+32:5 I acknowledge my sin unto thee, and mine iniquity have I not hid.
+I said, I will confess my transgressions unto the LORD; and thou
+forgavest the iniquity of my sin. Selah.
+
+32:6 For this shall every one that is godly pray unto thee in a time
+when thou mayest be found: surely in the floods of great waters they
+shall not come nigh unto him.
+
+32:7 Thou art my hiding place; thou shalt preserve me from trouble;
+thou shalt compass me about with songs of deliverance. Selah.
+
+32:8 I will instruct thee and teach thee in the way which thou shalt
+go: I will guide thee with mine eye.
+
+32:9 Be ye not as the horse, or as the mule, which have no
+understanding: whose mouth must be held in with bit and bridle, lest
+they come near unto thee.
+
+32:10 Many sorrows shall be to the wicked: but he that trusteth in the
+LORD, mercy shall compass him about.
+
+32:11 Be glad in the LORD, and rejoice, ye righteous: and shout for
+joy, all ye that are upright in heart.
+
+
+
+33:1 Rejoice in the LORD, O ye righteous: for praise is comely for the
+upright.
+
+33:2 Praise the LORD with harp: sing unto him with the psaltery and an
+instrument of ten strings.
+
+33:3 Sing unto him a new song; play skilfully with a loud noise.
+
+33:4 For the word of the LORD is right; and all his works are done in
+truth.
+
+33:5 He loveth righteousness and judgment: the earth is full of the
+goodness of the LORD.
+
+33:6 By the word of the LORD were the heavens made; and all the host
+of them by the breath of his mouth.
+
+33:7 He gathereth the waters of the sea together as an heap: he layeth
+up the depth in storehouses.
+
+33:8 Let all the earth fear the LORD: let all the inhabitants of the
+world stand in awe of him.
+
+33:9 For he spake, and it was done; he commanded, and it stood fast.
+
+33:10 The LORD bringeth the counsel of the heathen to nought: he
+maketh the devices of the people of none effect.
+
+33:11 The counsel of the LORD standeth for ever, the thoughts of his
+heart to all generations.
+
+33:12 Blessed is the nation whose God is the LORD; and the people whom
+he hath chosen for his own inheritance.
+
+33:13 The LORD looketh from heaven; he beholdeth all the sons of men.
+
+33:14 From the place of his habitation he looketh upon all the
+inhabitants of the earth.
+
+33:15 He fashioneth their hearts alike; he considereth all their
+works.
+
+33:16 There is no king saved by the multitude of an host: a mighty man
+is not delivered by much strength.
+
+33:17 An horse is a vain thing for safety: neither shall he deliver
+any by his great strength.
+
+33:18 Behold, the eye of the LORD is upon them that fear him, upon
+them that hope in his mercy;
+
+33:19 To deliver their soul from death, and to keep them alive in
+famine.
+
+33:20 Our soul waiteth for the LORD: he is our help and our shield.
+
+33:21 For our heart shall rejoice in him, because we have trusted in
+his holy name.
+
+33:22 Let thy mercy, O LORD, be upon us, according as we hope in thee.
+
+
+
+34:1 I will bless the LORD at all times: his praise shall continually
+be in my mouth.
+
+34:2 My soul shall make her boast in the LORD: the humble shall hear
+thereof, and be glad.
+
+34:3 O magnify the LORD with me, and let us exalt his name together.
+
+34:4 I sought the LORD, and he heard me, and delivered me from all my
+fears.
+
+34:5 They looked unto him, and were lightened: and their faces were
+not ashamed.
+
+34:6 This poor man cried, and the LORD heard him, and saved him out of
+all his troubles.
+
+34:7 The angel of the LORD encampeth round about them that fear him,
+and delivereth them.
+
+34:8 O taste and see that the LORD is good: blessed is the man that
+trusteth in him.
+
+34:9 O fear the LORD, ye his saints: for there is no want to them that
+fear him.
+
+34:10 The young lions do lack, and suffer hunger: but they that seek
+the LORD shall not want any good thing.
+
+34:11 Come, ye children, hearken unto me: I will teach you the fear of
+the LORD.
+
+34:12 What man is he that desireth life, and loveth many days, that he
+may see good?
+
+34:13 Keep thy tongue from evil, and thy lips from speaking guile.
+
+34:14 Depart from evil, and do good; seek peace, and pursue it.
+
+34:15 The eyes of the LORD are upon the righteous, and his ears are
+open unto their cry.
+
+34:16 The face of the LORD is against them that do evil, to cut off
+the remembrance of them from the earth.
+
+34:17 The righteous cry, and the LORD heareth, and delivereth them out
+of all their troubles.
+
+34:18 The LORD is nigh unto them that are of a broken heart; and
+saveth such as be of a contrite spirit.
+
+34:19 Many are the afflictions of the righteous: but the LORD
+delivereth him out of them all.
+
+34:20 He keepeth all his bones: not one of them is broken.
+
+34:21 Evil shall slay the wicked: and they that hate the righteous
+shall be desolate.
+
+34:22 The LORD redeemeth the soul of his servants: and none of them
+that trust in him shall be desolate.
+
+
+
+35:1 Plead my cause, O LORD, with them that strive with me: fight
+against them that fight against me.
+
+35:2 Take hold of shield and buckler, and stand up for mine help.
+
+35:3 Draw out also the spear, and stop the way against them that
+persecute me: say unto my soul, I am thy salvation.
+
+35:4 Let them be confounded and put to shame that seek after my soul:
+let them be turned back and brought to confusion that devise my hurt.
+
+35:5 Let them be as chaff before the wind: and let the angel of the
+LORD chase them.
+
+35:6 Let their way be dark and slippery: and let the angel of the LORD
+persecute them.
+
+35:7 For without cause have they hid for me their net in a pit, which
+without cause they have digged for my soul.
+
+35:8 Let destruction come upon him at unawares; and let his net that
+he hath hid catch himself: into that very destruction let him fall.
+
+35:9 And my soul shall be joyful in the LORD: it shall rejoice in his
+salvation.
+
+35:10 All my bones shall say, LORD, who is like unto thee, which
+deliverest the poor from him that is too strong for him, yea, the poor
+and the needy from him that spoileth him?
+
+35:11 False witnesses did rise up; they laid to my charge things that
+I knew not.
+
+35:12 They rewarded me evil for good to the spoiling of my soul.
+
+35:13 But as for me, when they were sick, my clothing was sackcloth: I
+humbled my soul with fasting; and my prayer returned into mine own
+bosom.
+
+35:14 I behaved myself as though he had been my friend or brother: I
+bowed down heavily, as one that mourneth for his mother.
+
+35:15 But in mine adversity they rejoiced, and gathered themselves
+together: yea, the abjects gathered themselves together against me,
+and I knew it not; they did tear me, and ceased not:
+
+35:16 With hypocritical mockers in feasts, they gnashed upon me with
+their teeth.
+
+35:17 Lord, how long wilt thou look on? rescue my soul from their
+destructions, my darling from the lions.
+
+35:18 I will give thee thanks in the great congregation: I will praise
+thee among much people.
+
+35:19 Let not them that are mine enemies wrongfully rejoice over me:
+neither let them wink with the eye that hate me without a cause.
+
+35:20 For they speak not peace: but they devise deceitful matters
+against them that are quiet in the land.
+
+35:21 Yea, they opened their mouth wide against me, and said, Aha,
+aha, our eye hath seen it.
+
+35:22 This thou hast seen, O LORD: keep not silence: O Lord, be not
+far from me.
+
+35:23 Stir up thyself, and awake to my judgment, even unto my cause,
+my God and my Lord.
+
+35:24 Judge me, O LORD my God, according to thy righteousness; and let
+them not rejoice over me.
+
+35:25 Let them not say in their hearts, Ah, so would we have it: let
+them not say, We have swallowed him up.
+
+35:26 Let them be ashamed and brought to confusion together that
+rejoice at mine hurt: let them be clothed with shame and dishonour
+that magnify themselves against me.
+
+35:27 Let them shout for joy, and be glad, that favour my righteous
+cause: yea, let them say continually, Let the LORD be magnified, which
+hath pleasure in the prosperity of his servant.
+
+35:28 And my tongue shall speak of thy righteousness and of thy praise
+all the day long.
+
+
+
+36:1 The transgression of the wicked saith within my heart, that there
+is no fear of God before his eyes.
+
+36:2 For he flattereth himself in his own eyes, until his iniquity be
+found to be hateful.
+
+36:3 The words of his mouth are iniquity and deceit: he hath left off
+to be wise, and to do good.
+
+36:4 He deviseth mischief upon his bed; he setteth himself in a way
+that is not good; he abhorreth not evil.
+
+36:5 Thy mercy, O LORD, is in the heavens; and thy faithfulness
+reacheth unto the clouds.
+
+36:6 Thy righteousness is like the great mountains; thy judgments are
+a great deep: O LORD, thou preservest man and beast.
+
+36:7 How excellent is thy lovingkindness, O God! therefore the
+children of men put their trust under the shadow of thy wings.
+
+36:8 They shall be abundantly satisfied with the fatness of thy house;
+and thou shalt make them drink of the river of thy pleasures.
+
+36:9 For with thee is the fountain of life: in thy light shall we see
+light.
+
+36:10 O continue thy lovingkindness unto them that know thee; and thy
+righteousness to the upright in heart.
+
+36:11 Let not the foot of pride come against me, and let not the hand
+of the wicked remove me.
+
+36:12 There are the workers of iniquity fallen: they are cast down,
+and shall not be able to rise.
+
+
+
+37:1 Fret not thyself because of evildoers, neither be thou envious
+against the workers of iniquity.
+
+37:2 For they shall soon be cut down like the grass, and wither as the
+green herb.
+
+37:3 Trust in the LORD, and do good; so shalt thou dwell in the land,
+and verily thou shalt be fed.
+
+37:4 Delight thyself also in the LORD: and he shall give thee the
+desires of thine heart.
+
+37:5 Commit thy way unto the LORD; trust also in him; and he shall
+bring it to pass.
+
+37:6 And he shall bring forth thy righteousness as the light, and thy
+judgment as the noonday.
+
+37:7 Rest in the LORD, and wait patiently for him: fret not thyself
+because of him who prospereth in his way, because of the man who
+bringeth wicked devices to pass.
+
+37:8 Cease from anger, and forsake wrath: fret not thyself in any wise
+to do evil.
+
+37:9 For evildoers shall be cut off: but those that wait upon the
+LORD, they shall inherit the earth.
+
+37:10 For yet a little while, and the wicked shall not be: yea, thou
+shalt diligently consider his place, and it shall not be.
+
+37:11 But the meek shall inherit the earth; and shall delight
+themselves in the abundance of peace.
+
+37:12 The wicked plotteth against the just, and gnasheth upon him with
+his teeth.
+
+37:13 The LORD shall laugh at him: for he seeth that his day is
+coming.
+
+37:14 The wicked have drawn out the sword, and have bent their bow, to
+cast down the poor and needy, and to slay such as be of upright
+conversation.
+
+37:15 Their sword shall enter into their own heart, and their bows
+shall be broken.
+
+37:16 A little that a righteous man hath is better than the riches of
+many wicked.
+
+37:17 For the arms of the wicked shall be broken: but the LORD
+upholdeth the righteous.
+
+37:18 The LORD knoweth the days of the upright: and their inheritance
+shall be for ever.
+
+37:19 They shall not be ashamed in the evil time: and in the days of
+famine they shall be satisfied.
+
+37:20 But the wicked shall perish, and the enemies of the LORD shall
+be as the fat of lambs: they shall consume; into smoke shall they
+consume away.
+
+37:21 The wicked borroweth, and payeth not again: but the righteous
+sheweth mercy, and giveth.
+
+37:22 For such as be blessed of him shall inherit the earth; and they
+that be cursed of him shall be cut off.
+
+37:23 The steps of a good man are ordered by the LORD: and he
+delighteth in his way.
+
+37:24 Though he fall, he shall not be utterly cast down: for the LORD
+upholdeth him with his hand.
+
+37:25 I have been young, and now am old; yet have I not seen the
+righteous forsaken, nor his seed begging bread.
+
+37:26 He is ever merciful, and lendeth; and his seed is blessed.
+
+37:27 Depart from evil, and do good; and dwell for evermore.
+
+37:28 For the LORD loveth judgment, and forsaketh not his saints; they
+are preserved for ever: but the seed of the wicked shall be cut off.
+
+37:29 The righteous shall inherit the land, and dwell therein for
+ever.
+
+37:30 The mouth of the righteous speaketh wisdom, and his tongue
+talketh of judgment.
+
+37:31 The law of his God is in his heart; none of his steps shall
+slide.
+
+37:32 The wicked watcheth the righteous, and seeketh to slay him.
+
+37:33 The LORD will not leave him in his hand, nor condemn him when he
+is judged.
+
+37:34 Wait on the LORD, and keep his way, and he shall exalt thee to
+inherit the land: when the wicked are cut off, thou shalt see it.
+
+37:35 I have seen the wicked in great power, and spreading himself
+like a green bay tree.
+
+37:36 Yet he passed away, and, lo, he was not: yea, I sought him, but
+he could not be found.
+
+37:37 Mark the perfect man, and behold the upright: for the end of
+that man is peace.
+
+37:38 But the transgressors shall be destroyed together: the end of
+the wicked shall be cut off.
+
+37:39 But the salvation of the righteous is of the LORD: he is their
+strength in the time of trouble.
+
+37:40 And the LORD shall help them, and deliver them: he shall deliver
+them from the wicked, and save them, because they trust in him.
+
+
+
+38:1 O lord, rebuke me not in thy wrath: neither chasten me in thy hot
+displeasure.
+
+38:2 For thine arrows stick fast in me, and thy hand presseth me sore.
+
+38:3 There is no soundness in my flesh because of thine anger; neither
+is there any rest in my bones because of my sin.
+
+38:4 For mine iniquities are gone over mine head: as an heavy burden
+they are too heavy for me.
+
+38:5 My wounds stink and are corrupt because of my foolishness.
+
+38:6 I am troubled; I am bowed down greatly; I go mourning all the day
+long.
+
+38:7 For my loins are filled with a loathsome disease: and there is no
+soundness in my flesh.
+
+38:8 I am feeble and sore broken: I have roared by reason of the
+disquietness of my heart.
+
+38:9 Lord, all my desire is before thee; and my groaning is not hid
+from thee.
+
+38:10 My heart panteth, my strength faileth me: as for the light of
+mine eyes, it also is gone from me.
+
+38:11 My lovers and my friends stand aloof from my sore; and my
+kinsmen stand afar off.
+
+38:12 They also that seek after my life lay snares for me: and they
+that seek my hurt speak mischievous things, and imagine deceits all
+the day long.
+
+38:13 But I, as a deaf man, heard not; and I was as a dumb man that
+openeth not his mouth.
+
+38:14 Thus I was as a man that heareth not, and in whose mouth are no
+reproofs.
+
+38:15 For in thee, O LORD, do I hope: thou wilt hear, O Lord my God.
+
+38:16 For I said, Hear me, lest otherwise they should rejoice over me:
+when my foot slippeth, they magnify themselves against me.
+
+38:17 For I am ready to halt, and my sorrow is continually before me.
+
+38:18 For I will declare mine iniquity; I will be sorry for my sin.
+
+38:19 But mine enemies are lively, and they are strong: and they that
+hate me wrongfully are multiplied.
+
+38:20 They also that render evil for good are mine adversaries;
+because I follow the thing that good is.
+
+38:21 Forsake me not, O LORD: O my God, be not far from me.
+
+38:22 Make haste to help me, O Lord my salvation.
+
+
+
+39:1 I said, I will take heed to my ways, that I sin not with my
+tongue: I will keep my mouth with a bridle, while the wicked is before
+me.
+
+39:2 I was dumb with silence, I held my peace, even from good; and my
+sorrow was stirred.
+
+39:3 My heart was hot within me, while I was musing the fire burned:
+then spake I with my tongue,
+
+39:4 LORD, make me to know mine end, and the measure of my days, what
+it is: that I may know how frail I am.
+
+39:5 Behold, thou hast made my days as an handbreadth; and mine age is
+as nothing before thee: verily every man at his best state is
+altogether vanity.
+
+Selah.
+
+39:6 Surely every man walketh in a vain shew: surely they are
+disquieted in vain: he heapeth up riches, and knoweth not who shall
+gather them.
+
+39:7 And now, Lord, what wait I for? my hope is in thee.
+
+39:8 Deliver me from all my transgressions: make me not the reproach
+of the foolish.
+
+39:9 I was dumb, I opened not my mouth; because thou didst it.
+
+39:10 Remove thy stroke away from me: I am consumed by the blow of
+thine hand.
+
+39:11 When thou with rebukes dost correct man for iniquity, thou
+makest his beauty to consume away like a moth: surely every man is
+vanity. Selah.
+
+39:12 Hear my prayer, O LORD, and give ear unto my cry; hold not thy
+peace at my tears: for I am a stranger with thee, and a sojourner, as
+all my fathers were.
+
+39:13 O spare me, that I may recover strength, before I go hence, and
+be no more.
+
+
+
+40:1 I waited patiently for the LORD; and he inclined unto me, and
+heard my cry.
+
+40:2 He brought me up also out of an horrible pit, out of the miry
+clay, and set my feet upon a rock, and established my goings.
+
+40:3 And he hath put a new song in my mouth, even praise unto our God:
+many shall see it, and fear, and shall trust in the LORD.
+
+40:4 Blessed is that man that maketh the LORD his trust, and
+respecteth not the proud, nor such as turn aside to lies.
+
+40:5 Many, O LORD my God, are thy wonderful works which thou hast
+done, and thy thoughts which are to us-ward: they cannot be reckoned
+up in order unto thee: if I would declare and speak of them, they are
+more than can be numbered.
+
+40:6 Sacrifice and offering thou didst not desire; mine ears hast thou
+opened: burnt offering and sin offering hast thou not required.
+
+40:7 Then said I, Lo, I come: in the volume of the book it is written
+of me,
+
+40:8 I delight to do thy will, O my God: yea, thy law is within my
+heart.
+
+40:9 I have preached righteousness in the great congregation: lo, I
+have not refrained my lips, O LORD, thou knowest.
+
+40:10 I have not hid thy righteousness within my heart; I have
+declared thy faithfulness and thy salvation: I have not concealed thy
+lovingkindness and thy truth from the great congregation.
+
+40:11 Withhold not thou thy tender mercies from me, O LORD: let thy
+lovingkindness and thy truth continually preserve me.
+
+40:12 For innumerable evils have compassed me about: mine iniquities
+have taken hold upon me, so that I am not able to look up; they are
+more than the hairs of mine head: therefore my heart faileth me.
+
+40:13 Be pleased, O LORD, to deliver me: O LORD, make haste to help
+me.
+
+40:14 Let them be ashamed and confounded together that seek after my
+soul to destroy it; let them be driven backward and put to shame that
+wish me evil.
+
+40:15 Let them be desolate for a reward of their shame that say unto
+me, Aha, aha.
+
+40:16 Let all those that seek thee rejoice and be glad in thee: let
+such as love thy salvation say continually, The LORD be magnified.
+
+40:17 But I am poor and needy; yet the Lord thinketh upon me: thou art
+my help and my deliverer; make no tarrying, O my God.
+
+
+
+41:1 Blessed is he that considereth the poor: the LORD will deliver
+him in time of trouble.
+
+41:2 The LORD will preserve him, and keep him alive; and he shall be
+blessed upon the earth: and thou wilt not deliver him unto the will of
+his enemies.
+
+41:3 The LORD will strengthen him upon the bed of languishing: thou
+wilt make all his bed in his sickness.
+
+41:4 I said, LORD, be merciful unto me: heal my soul; for I have
+sinned against thee.
+
+41:5 Mine enemies speak evil of me, When shall he die, and his name
+perish?
+
+41:6 And if he come to see me, he speaketh vanity: his heart gathereth
+iniquity to itself; when he goeth abroad, he telleth it.
+
+41:7 All that hate me whisper together against me: against me do they
+devise my hurt.
+
+41:8 An evil disease, say they, cleaveth fast unto him: and now that
+he lieth he shall rise up no more.
+
+41:9 Yea, mine own familiar friend, in whom I trusted, which did eat
+of my bread, hath lifted up his heel against me.
+
+41:10 But thou, O LORD, be merciful unto me, and raise me up, that I
+may requite them.
+
+41:11 By this I know that thou favourest me, because mine enemy doth
+not triumph over me.
+
+41:12 And as for me, thou upholdest me in mine integrity, and settest
+me before thy face for ever.
+
+41:13 Blessed be the LORD God of Israel from everlasting, and to
+everlasting. Amen, and Amen.
+
+
+
+42:1 As the hart panteth after the water brooks, so panteth my soul
+after thee, O God.
+
+42:2 My soul thirsteth for God, for the living God: when shall I come
+and appear before God?
+
+42:3 My tears have been my meat day and night, while they continually
+say unto me, Where is thy God?
+
+42:4 When I remember these things, I pour out my soul in me: for I had
+gone with the multitude, I went with them to the house of God, with
+the voice of joy and praise, with a multitude that kept holyday.
+
+42:5 Why art thou cast down, O my soul? and why art thou disquieted in
+me? hope thou in God: for I shall yet praise him for the help of his
+countenance.
+
+42:6 O my God, my soul is cast down within me: therefore will I
+remember thee from the land of Jordan, and of the Hermonites, from the
+hill Mizar.
+
+42:7 Deep calleth unto deep at the noise of thy waterspouts: all thy
+waves and thy billows are gone over me.
+
+42:8 Yet the LORD will command his lovingkindness in the day time, and
+in the night his song shall be with me, and my prayer unto the God of
+my life.
+
+42:9 I will say unto God my rock, Why hast thou forgotten me? why go I
+mourning because of the oppression of the enemy?
+
+42:10 As with a sword in my bones, mine enemies reproach me; while
+they say daily unto me, Where is thy God?
+
+42:11 Why art thou cast down, O my soul? and why art thou disquieted
+within me? hope thou in God: for I shall yet praise him, who is the
+health of my countenance, and my God.
+
+
+
+43:1 Judge me, O God, and plead my cause against an ungodly nation: O
+deliver me from the deceitful and unjust man.
+
+43:2 For thou art the God of my strength: why dost thou cast me off?
+why go I mourning because of the oppression of the enemy?
+
+43:3 O send out thy light and thy truth: let them lead me; let them
+bring me unto thy holy hill, and to thy tabernacles.
+
+43:4 Then will I go unto the altar of God, unto God my exceeding joy:
+yea, upon the harp will I praise thee, O God my God.
+
+43:5 Why art thou cast down, O my soul? and why art thou disquieted
+within me? hope in God: for I shall yet praise him, who is the health
+of my countenance, and my God.
+
+
+
+44:1 We have heard with our ears, O God, our fathers have told us,
+what work thou didst in their days, in the times of old.
+
+44:2 How thou didst drive out the heathen with thy hand, and plantedst
+them; how thou didst afflict the people, and cast them out.
+
+44:3 For they got not the land in possession by their own sword,
+neither did their own arm save them: but thy right hand, and thine
+arm, and the light of thy countenance, because thou hadst a favour
+unto them.
+
+44:4 Thou art my King, O God: command deliverances for Jacob.
+
+44:5 Through thee will we push down our enemies: through thy name will
+we tread them under that rise up against us.
+
+44:6 For I will not trust in my bow, neither shall my sword save me.
+
+44:7 But thou hast saved us from our enemies, and hast put them to
+shame that hated us.
+
+44:8 In God we boast all the day long, and praise thy name for ever.
+
+Selah.
+
+44:9 But thou hast cast off, and put us to shame; and goest not forth
+with our armies.
+
+44:10 Thou makest us to turn back from the enemy: and they which hate
+us spoil for themselves.
+
+44:11 Thou hast given us like sheep appointed for meat; and hast
+scattered us among the heathen.
+
+44:12 Thou sellest thy people for nought, and dost not increase thy
+wealth by their price.
+
+44:13 Thou makest us a reproach to our neighbours, a scorn and a
+derision to them that are round about us.
+
+44:14 Thou makest us a byword among the heathen, a shaking of the head
+among the people.
+
+44:15 My confusion is continually before me, and the shame of my face
+hath covered me,
+
+44:16 For the voice of him that reproacheth and blasphemeth; by reason
+of the enemy and avenger.
+
+44:17 All this is come upon us; yet have we not forgotten thee,
+neither have we dealt falsely in thy covenant.
+
+44:18 Our heart is not turned back, neither have our steps declined
+from thy way;
+
+44:19 Though thou hast sore broken us in the place of dragons, and
+covered us with the shadow of death.
+
+44:20 If we have forgotten the name of our God, or stretched out our
+hands to a strange god;
+
+44:21 Shall not God search this out? for he knoweth the secrets of the
+heart.
+
+44:22 Yea, for thy sake are we killed all the day long; we are counted
+as sheep for the slaughter.
+
+44:23 Awake, why sleepest thou, O Lord? arise, cast us not off for
+ever.
+
+44:24 Wherefore hidest thou thy face, and forgettest our affliction
+and our oppression?
+
+44:25 For our soul is bowed down to the dust: our belly cleaveth unto
+the earth.
+
+44:26 Arise for our help, and redeem us for thy mercies' sake.
+
+
+
+45:1 My heart is inditing a good matter: I speak of the things which I
+have made touching the king: my tongue is the pen of a ready writer.
+
+45:2 Thou art fairer than the children of men: grace is poured into
+thy lips: therefore God hath blessed thee for ever.
+
+45:3 Gird thy sword upon thy thigh, O most mighty, with thy glory and
+thy majesty.
+
+45:4 And in thy majesty ride prosperously because of truth and
+meekness and righteousness; and thy right hand shall teach thee
+terrible things.
+
+45:5 Thine arrows are sharp in the heart of the king's enemies;
+whereby the people fall under thee.
+
+45:6 Thy throne, O God, is for ever and ever: the sceptre of thy
+kingdom is a right sceptre.
+
+45:7 Thou lovest righteousness, and hatest wickedness: therefore God,
+thy God, hath anointed thee with the oil of gladness above thy
+fellows.
+
+45:8 All thy garments smell of myrrh, and aloes, and cassia, out of
+the ivory palaces, whereby they have made thee glad.
+
+45:9 Kings' daughters were among thy honourable women: upon thy right
+hand did stand the queen in gold of Ophir.
+
+45:10 Hearken, O daughter, and consider, and incline thine ear; forget
+also thine own people, and thy father's house;
+
+45:11 So shall the king greatly desire thy beauty: for he is thy Lord;
+and worship thou him.
+
+45:12 And the daughter of Tyre shall be there with a gift; even the
+rich among the people shall intreat thy favour.
+
+45:13 The king's daughter is all glorious within: her clothing is of
+wrought gold.
+
+45:14 She shall be brought unto the king in raiment of needlework: the
+virgins her companions that follow her shall be brought unto thee.
+
+45:15 With gladness and rejoicing shall they be brought: they shall
+enter into the king's palace.
+
+45:16 Instead of thy fathers shall be thy children, whom thou mayest
+make princes in all the earth.
+
+45:17 I will make thy name to be remembered in all generations:
+therefore shall the people praise thee for ever and ever.
+
+
+
+46:1 God is our refuge and strength, a very present help in trouble.
+
+46:2 Therefore will not we fear, though the earth be removed, and
+though the mountains be carried into the midst of the sea;
+
+46:3 Though the waters thereof roar and be troubled, though the
+mountains shake with the swelling thereof. Selah.
+
+46:4 There is a river, the streams whereof shall make glad the city of
+God, the holy place of the tabernacles of the most High.
+
+46:5 God is in the midst of her; she shall not be moved: God shall
+help her, and that right early.
+
+46:6 The heathen raged, the kingdoms were moved: he uttered his voice,
+the earth melted.
+
+46:7 The LORD of hosts is with us; the God of Jacob is our refuge.
+Selah.
+
+46:8 Come, behold the works of the LORD, what desolations he hath made
+in the earth.
+
+46:9 He maketh wars to cease unto the end of the earth; he breaketh
+the bow, and cutteth the spear in sunder; he burneth the chariot in
+the fire.
+
+46:10 Be still, and know that I am God: I will be exalted among the
+heathen, I will be exalted in the earth.
+
+46:11 The LORD of hosts is with us; the God of Jacob is our refuge.
+Selah.
+
+
+
+47:1 O clap your hands, all ye people; shout unto God with the voice
+of triumph.
+
+47:2 For the LORD most high is terrible; he is a great King over all
+the earth.
+
+47:3 He shall subdue the people under us, and the nations under our
+feet.
+
+47:4 He shall choose our inheritance for us, the excellency of Jacob
+whom he loved. Selah.
+
+47:5 God is gone up with a shout, the LORD with the sound of a
+trumpet.
+
+47:6 Sing praises to God, sing praises: sing praises unto our King,
+sing praises.
+
+47:7 For God is the King of all the earth: sing ye praises with
+understanding.
+
+47:8 God reigneth over the heathen: God sitteth upon the throne of his
+holiness.
+
+47:9 The princes of the people are gathered together, even the people
+of the God of Abraham: for the shields of the earth belong unto God:
+he is greatly exalted.
+
+
+
+48:1 Great is the LORD, and greatly to be praised in the city of our
+God, in the mountain of his holiness.
+
+48:2 Beautiful for situation, the joy of the whole earth, is mount
+Zion, on the sides of the north, the city of the great King.
+
+48:3 God is known in her palaces for a refuge.
+
+48:4 For, lo, the kings were assembled, they passed by together.
+
+48:5 They saw it, and so they marvelled; they were troubled, and
+hasted away.
+
+48:6 Fear took hold upon them there, and pain, as of a woman in
+travail.
+
+48:7 Thou breakest the ships of Tarshish with an east wind.
+
+48:8 As we have heard, so have we seen in the city of the LORD of
+hosts, in the city of our God: God will establish it for ever. Selah.
+
+48:9 We have thought of thy lovingkindness, O God, in the midst of thy
+temple.
+
+48:10 According to thy name, O God, so is thy praise unto the ends of
+the earth: thy right hand is full of righteousness.
+
+48:11 Let mount Zion rejoice, let the daughters of Judah be glad,
+because of thy judgments.
+
+48:12 Walk about Zion, and go round about her: tell the towers
+thereof.
+
+48:13 Mark ye well her bulwarks, consider her palaces; that ye may
+tell it to the generation following.
+
+48:14 For this God is our God for ever and ever: he will be our guide
+even unto death.
+
+
+
+49:1 Hear this, all ye people; give ear, all ye inhabitants of the
+world:
+
+49:2 Both low and high, rich and poor, together.
+
+49:3 My mouth shall speak of wisdom; and the meditation of my heart
+shall be of understanding.
+
+49:4 I will incline mine ear to a parable: I will open my dark saying
+upon the harp.
+
+49:5 Wherefore should I fear in the days of evil, when the iniquity of
+my heels shall compass me about?
+
+49:6 They that trust in their wealth, and boast themselves in the
+multitude of their riches;
+
+49:7 None of them can by any means redeem his brother, nor give to God
+a ransom for him:
+
+49:8 (For the redemption of their soul is precious, and it ceaseth for
+ever:)
+
+49:9 That he should still live for ever, and not see corruption.
+
+49:10 For he seeth that wise men die, likewise the fool and the
+brutish person perish, and leave their wealth to others.
+
+49:11 Their inward thought is, that their houses shall continue for
+ever, and their dwelling places to all generations; they call their
+lands after their own names.
+
+49:12 Nevertheless man being in honour abideth not: he is like the
+beasts that perish.
+
+49:13 This their way is their folly: yet their posterity approve their
+sayings. Selah.
+
+49:14 Like sheep they are laid in the grave; death shall feed on them;
+and the upright shall have dominion over them in the morning; and
+their beauty shall consume in the grave from their dwelling.
+
+49:15 But God will redeem my soul from the power of the grave: for he
+shall receive me. Selah.
+
+49:16 Be not thou afraid when one is made rich, when the glory of his
+house is increased;
+
+49:17 For when he dieth he shall carry nothing away: his glory shall
+not descend after him.
+
+49:18 Though while he lived he blessed his soul: and men will praise
+thee, when thou doest well to thyself.
+
+49:19 He shall go to the generation of his fathers; they shall never
+see light.
+
+49:20 Man that is in honour, and understandeth not, is like the beasts
+that perish.
+
+
+
+50:1 The mighty God, even the LORD, hath spoken, and called the earth
+from the rising of the sun unto the going down thereof.
+
+50:2 Out of Zion, the perfection of beauty, God hath shined.
+
+50:3 Our God shall come, and shall not keep silence: a fire shall
+devour before him, and it shall be very tempestuous round about him.
+
+50:4 He shall call to the heavens from above, and to the earth, that
+he may judge his people.
+
+50:5 Gather my saints together unto me; those that have made a
+covenant with me by sacrifice.
+
+50:6 And the heavens shall declare his righteousness: for God is judge
+himself. Selah.
+
+50:7 Hear, O my people, and I will speak; O Israel, and I will testify
+against thee: I am God, even thy God.
+
+50:8 I will not reprove thee for thy sacrifices or thy burnt
+offerings, to have been continually before me.
+
+50:9 I will take no bullock out of thy house, nor he goats out of thy
+folds.
+
+50:10 For every beast of the forest is mine, and the cattle upon a
+thousand hills.
+
+50:11 I know all the fowls of the mountains: and the wild beasts of
+the field are mine.
+
+50:12 If I were hungry, I would not tell thee: for the world is mine,
+and the fulness thereof.
+
+50:13 Will I eat the flesh of bulls, or drink the blood of goats?
+
+50:14 Offer unto God thanksgiving; and pay thy vows unto the most
+High:
+
+50:15 And call upon me in the day of trouble: I will deliver thee, and
+thou shalt glorify me.
+
+50:16 But unto the wicked God saith, What hast thou to do to declare
+my statutes, or that thou shouldest take my covenant in thy mouth?
+
+50:17 Seeing thou hatest instruction, and casteth my words behind
+thee.
+
+50:18 When thou sawest a thief, then thou consentedst with him, and
+hast been partaker with adulterers.
+
+50:19 Thou givest thy mouth to evil, and thy tongue frameth deceit.
+
+50:20 Thou sittest and speakest against thy brother; thou slanderest
+thine own mother's son.
+
+50:21 These things hast thou done, and I kept silence; thou thoughtest
+that I was altogether such an one as thyself: but I will reprove thee,
+and set them in order before thine eyes.
+
+50:22 Now consider this, ye that forget God, lest I tear you in
+pieces, and there be none to deliver.
+
+50:23 Whoso offereth praise glorifieth me: and to him that ordereth
+his conversation aright will I shew the salvation of God.
+
+
+
+51:1 Have mercy upon me, O God, according to thy lovingkindness:
+according unto the multitude of thy tender mercies blot out my
+transgressions.
+
+51:2 Wash me throughly from mine iniquity, and cleanse me from my sin.
+
+51:3 For I acknowledge my transgressions: and my sin is ever before
+me.
+
+51:4 Against thee, thee only, have I sinned, and done this evil in thy
+sight: that thou mightest be justified when thou speakest, and be
+clear when thou judgest.
+
+51:5 Behold, I was shapen in iniquity; and in sin did my mother
+conceive me.
+
+51:6 Behold, thou desirest truth in the inward parts: and in the
+hidden part thou shalt make me to know wisdom.
+
+51:7 Purge me with hyssop, and I shall be clean: wash me, and I shall
+be whiter than snow.
+
+51:8 Make me to hear joy and gladness; that the bones which thou hast
+broken may rejoice.
+
+51:9 Hide thy face from my sins, and blot out all mine iniquities.
+
+51:10 Create in me a clean heart, O God; and renew a right spirit
+within me.
+
+51:11 Cast me not away from thy presence; and take not thy holy spirit
+from me.
+
+51:12 Restore unto me the joy of thy salvation; and uphold me with thy
+free spirit.
+
+51:13 Then will I teach transgressors thy ways; and sinners shall be
+converted unto thee.
+
+51:14 Deliver me from bloodguiltiness, O God, thou God of my
+salvation: and my tongue shall sing aloud of thy righteousness.
+
+51:15 O Lord, open thou my lips; and my mouth shall shew forth thy
+praise.
+
+51:16 For thou desirest not sacrifice; else would I give it: thou
+delightest not in burnt offering.
+
+51:17 The sacrifices of God are a broken spirit: a broken and a
+contrite heart, O God, thou wilt not despise.
+
+51:18 Do good in thy good pleasure unto Zion: build thou the walls of
+Jerusalem.
+
+51:19 Then shalt thou be pleased with the sacrifices of righteousness,
+with burnt offering and whole burnt offering: then shall they offer
+bullocks upon thine altar.
+
+
+
+52:1 Why boastest thou thyself in mischief, O mighty man? the goodness
+of God endureth continually.
+
+52:2 The tongue deviseth mischiefs; like a sharp razor, working
+deceitfully.
+
+52:3 Thou lovest evil more than good; and lying rather than to speak
+righteousness. Selah.
+
+52:4 Thou lovest all devouring words, O thou deceitful tongue.
+
+52:5 God shall likewise destroy thee for ever, he shall take thee
+away, and pluck thee out of thy dwelling place, and root thee out of
+the land of the living. Selah.
+
+52:6 The righteous also shall see, and fear, and shall laugh at him:
+
+52:7 Lo, this is the man that made not God his strength; but trusted
+in the abundance of his riches, and strengthened himself in his
+wickedness.
+
+52:8 But I am like a green olive tree in the house of God: I trust in
+the mercy of God for ever and ever.
+
+52:9 I will praise thee for ever, because thou hast done it: and I
+will wait on thy name; for it is good before thy saints.
+
+
+
+53:1 The fool hath said in his heart, There is no God. Corrupt are
+they, and have done abominable iniquity: there is none that doeth
+good.
+
+53:2 God looked down from heaven upon the children of men, to see if
+there were any that did understand, that did seek God.
+
+53:3 Every one of them is gone back: they are altogether become
+filthy; there is none that doeth good, no, not one.
+
+53:4 Have the workers of iniquity no knowledge? who eat up my people
+as they eat bread: they have not called upon God.
+
+53:5 There were they in great fear, where no fear was: for God hath
+scattered the bones of him that encampeth against thee: thou hast put
+them to shame, because God hath despised them.
+
+53:6 Oh that the salvation of Israel were come out of Zion! When God
+bringeth back the captivity of his people, Jacob shall rejoice, and
+Israel shall be glad.
+
+
+
+54:1 Save me, O God, by thy name, and judge me by thy strength.
+
+54:2 Hear my prayer, O God; give ear to the words of my mouth.
+
+54:3 For strangers are risen up against me, and oppressors seek after
+my soul: they have not set God before them. Selah.
+
+54:4 Behold, God is mine helper: the Lord is with them that uphold my
+soul.
+
+54:5 He shall reward evil unto mine enemies: cut them off in thy
+truth.
+
+54:6 I will freely sacrifice unto thee: I will praise thy name, O
+LORD; for it is good.
+
+54:7 For he hath delivered me out of all trouble: and mine eye hath
+seen his desire upon mine enemies.
+
+
+
+55:1 Give ear to my prayer, O God; and hide not thyself from my
+supplication.
+
+55:2 Attend unto me, and hear me: I mourn in my complaint, and make a
+noise;
+
+55:3 Because of the voice of the enemy, because of the oppression of
+the wicked: for they cast iniquity upon me, and in wrath they hate me.
+
+55:4 My heart is sore pained within me: and the terrors of death are
+fallen upon me.
+
+55:5 Fearfulness and trembling are come upon me, and horror hath
+overwhelmed me.
+
+55:6 And I said, Oh that I had wings like a dove! for then would I fly
+away, and be at rest.
+
+55:7 Lo, then would I wander far off, and remain in the wilderness.
+Selah.
+
+55:8 I would hasten my escape from the windy storm and tempest.
+
+55:9 Destroy, O Lord, and divide their tongues: for I have seen
+violence and strife in the city.
+
+55:10 Day and night they go about it upon the walls thereof: mischief
+also and sorrow are in the midst of it.
+
+55:11 Wickedness is in the midst thereof: deceit and guile depart not
+from her streets.
+
+55:12 For it was not an enemy that reproached me; then I could have
+borne it: neither was it he that hated me that did magnify himself
+against me; then I would have hid myself from him:
+
+55:13 But it was thou, a man mine equal, my guide, and mine
+acquaintance.
+
+55:14 We took sweet counsel together, and walked unto the house of God
+in company.
+
+55:15 Let death seize upon them, and let them go down quick into hell:
+for wickedness is in their dwellings, and among them.
+
+55:16 As for me, I will call upon God; and the LORD shall save me.
+
+55:17 Evening, and morning, and at noon, will I pray, and cry aloud:
+and he shall hear my voice.
+
+55:18 He hath delivered my soul in peace from the battle that was
+against me: for there were many with me.
+
+55:19 God shall hear, and afflict them, even he that abideth of old.
+
+Selah. Because they have no changes, therefore they fear not God.
+
+55:20 He hath put forth his hands against such as be at peace with
+him: he hath broken his covenant.
+
+55:21 The words of his mouth were smoother than butter, but war was in
+his heart: his words were softer than oil, yet were they drawn swords.
+
+55:22 Cast thy burden upon the LORD, and he shall sustain thee: he
+shall never suffer the righteous to be moved.
+
+55:23 But thou, O God, shalt bring them down into the pit of
+destruction: bloody and deceitful men shall not live out half their
+days; but I will trust in thee.
+
+
+
+56:1 Be merciful unto me, O God: for man would swallow me up; he
+fighting daily oppresseth me.
+
+56:2 Mine enemies would daily swallow me up: for they be many that
+fight against me, O thou most High.
+
+56:3 What time I am afraid, I will trust in thee.
+
+56:4 In God I will praise his word, in God I have put my trust; I will
+not fear what flesh can do unto me.
+
+56:5 Every day they wrest my words: all their thoughts are against me
+for evil.
+
+56:6 They gather themselves together, they hide themselves, they mark
+my steps, when they wait for my soul.
+
+56:7 Shall they escape by iniquity? in thine anger cast down the
+people, O God.
+
+56:8 Thou tellest my wanderings: put thou my tears into thy bottle:
+are they not in thy book?
+
+56:9 When I cry unto thee, then shall mine enemies turn back: this I
+know; for God is for me.
+
+56:10 In God will I praise his word: in the LORD will I praise his
+word.
+
+56:11 In God have I put my trust: I will not be afraid what man can do
+unto me.
+
+56:12 Thy vows are upon me, O God: I will render praises unto thee.
+
+56:13 For thou hast delivered my soul from death: wilt not thou
+deliver my feet from falling, that I may walk before God in the light
+of the living?
+
+
+
+57:1 Be merciful unto me, O God, be merciful unto me: for my soul
+trusteth in thee: yea, in the shadow of thy wings will I make my
+refuge, until these calamities be overpast.
+
+57:2 I will cry unto God most high; unto God that performeth all
+things for me.
+
+57:3 He shall send from heaven, and save me from the reproach of him
+that would swallow me up. Selah. God shall send forth his mercy and
+his truth.
+
+57:4 My soul is among lions: and I lie even among them that are set on
+fire, even the sons of men, whose teeth are spears and arrows, and
+their tongue a sharp sword.
+
+57:5 Be thou exalted, O God, above the heavens; let thy glory be above
+all the earth.
+
+57:6 They have prepared a net for my steps; my soul is bowed down:
+they have digged a pit before me, into the midst whereof they are
+fallen themselves. Selah.
+
+57:7 My heart is fixed, O God, my heart is fixed: I will sing and give
+praise.
+
+57:8 Awake up, my glory; awake, psaltery and harp: I myself will awake
+early.
+
+57:9 I will praise thee, O Lord, among the people: I will sing unto
+thee among the nations.
+
+57:10 For thy mercy is great unto the heavens, and thy truth unto the
+clouds.
+
+57:11 Be thou exalted, O God, above the heavens: let thy glory be
+above all the earth.
+
+
+
+58:1 Do ye indeed speak righteousness, O congregation? do ye judge
+uprightly, O ye sons of men?
+
+58:2 Yea, in heart ye work wickedness; ye weigh the violence of your
+hands in the earth.
+
+58:3 The wicked are estranged from the womb: they go astray as soon as
+they be born, speaking lies.
+
+58:4 Their poison is like the poison of a serpent: they are like the
+deaf adder that stoppeth her ear;
+
+58:5 Which will not hearken to the voice of charmers, charming never
+so wisely.
+
+58:6 Break their teeth, O God, in their mouth: break out the great
+teeth of the young lions, O LORD.
+
+58:7 Let them melt away as waters which run continually: when he
+bendeth his bow to shoot his arrows, let them be as cut in pieces.
+
+58:8 As a snail which melteth, let every one of them pass away: like
+the untimely birth of a woman, that they may not see the sun.
+
+58:9 Before your pots can feel the thorns, he shall take them away as
+with a whirlwind, both living, and in his wrath.
+
+58:10 The righteous shall rejoice when he seeth the vengeance: he
+shall wash his feet in the blood of the wicked.
+
+58:11 So that a man shall say, Verily there is a reward for the
+righteous: verily he is a God that judgeth in the earth.
+
+
+
+59:1 Deliver me from mine enemies, O my God: defend me from them that
+rise up against me.
+
+59:2 Deliver me from the workers of iniquity, and save me from bloody
+men.
+
+59:3 For, lo, they lie in wait for my soul: the mighty are gathered
+against me; not for my transgression, nor for my sin, O LORD.
+
+59:4 They run and prepare themselves without my fault: awake to help
+me, and behold.
+
+59:5 Thou therefore, O LORD God of hosts, the God of Israel, awake to
+visit all the heathen: be not merciful to any wicked transgressors.
+Selah.
+
+59:6 They return at evening: they make a noise like a dog, and go
+round about the city.
+
+59:7 Behold, they belch out with their mouth: swords are in their
+lips: for who, say they, doth hear?
+
+59:8 But thou, O LORD, shalt laugh at them; thou shalt have all the
+heathen in derision.
+
+59:9 Because of his strength will I wait upon thee: for God is my
+defence.
+
+59:10 The God of my mercy shall prevent me: God shall let me see my
+desire upon mine enemies.
+
+59:11 Slay them not, lest my people forget: scatter them by thy power;
+and bring them down, O Lord our shield.
+
+59:12 For the sin of their mouth and the words of their lips let them
+even be taken in their pride: and for cursing and lying which they
+speak.
+
+59:13 Consume them in wrath, consume them, that they may not be: and
+let them know that God ruleth in Jacob unto the ends of the earth.
+Selah.
+
+59:14 And at evening let them return; and let them make a noise like a
+dog, and go round about the city.
+
+59:15 Let them wander up and down for meat, and grudge if they be not
+satisfied.
+
+59:16 But I will sing of thy power; yea, I will sing aloud of thy
+mercy in the morning: for thou hast been my defence and refuge in the
+day of my trouble.
+
+59:17 Unto thee, O my strength, will I sing: for God is my defence,
+and the God of my mercy.
+
+
+
+60:1 O God, thou hast cast us off, thou hast scattered us, thou hast
+been displeased; O turn thyself to us again.
+
+60:2 Thou hast made the earth to tremble; thou hast broken it: heal
+the breaches thereof; for it shaketh.
+
+60:3 Thou hast shewed thy people hard things: thou hast made us to
+drink the wine of astonishment.
+
+60:4 Thou hast given a banner to them that fear thee, that it may be
+displayed because of the truth. Selah.
+
+60:5 That thy beloved may be delivered; save with thy right hand, and
+hear me.
+
+60:6 God hath spoken in his holiness; I will rejoice, I will divide
+Shechem, and mete out the valley of Succoth.
+
+60:7 Gilead is mine, and Manasseh is mine; Ephraim also is the
+strength of mine head; Judah is my lawgiver;
+
+60:8 Moab is my washpot; over Edom will I cast out my shoe: Philistia,
+triumph thou because of me.
+
+60:9 Who will bring me into the strong city? who will lead me into
+Edom?
+
+60:10 Wilt not thou, O God, which hadst cast us off? and thou, O God,
+which didst not go out with our armies?
+
+60:11 Give us help from trouble: for vain is the help of man.
+
+60:12 Through God we shall do valiantly: for he it is that shall tread
+down our enemies.
+
+
+
+61:1 Hear my cry, O God; attend unto my prayer.
+
+61:2 From the end of the earth will I cry unto thee, when my heart is
+overwhelmed: lead me to the rock that is higher than I.
+
+61:3 For thou hast been a shelter for me, and a strong tower from the
+enemy.
+
+61:4 I will abide in thy tabernacle for ever: I will trust in the
+covert of thy wings. Selah.
+
+61:5 For thou, O God, hast heard my vows: thou hast given me the
+heritage of those that fear thy name.
+
+61:6 Thou wilt prolong the king's life: and his years as many
+generations.
+
+61:7 He shall abide before God for ever: O prepare mercy and truth,
+which may preserve him.
+
+61:8 So will I sing praise unto thy name for ever, that I may daily
+perform my vows.
+
+
+
+62:1 Truly my soul waiteth upon God: from him cometh my salvation.
+
+62:2 He only is my rock and my salvation; he is my defence; I shall
+not be greatly moved.
+
+62:3 How long will ye imagine mischief against a man? ye shall be
+slain all of you: as a bowing wall shall ye be, and as a tottering
+fence.
+
+62:4 They only consult to cast him down from his excellency: they
+delight in lies: they bless with their mouth, but they curse inwardly.
+Selah.
+
+62:5 My soul, wait thou only upon God; for my expectation is from him.
+
+62:6 He only is my rock and my salvation: he is my defence; I shall
+not be moved.
+
+62:7 In God is my salvation and my glory: the rock of my strength, and
+my refuge, is in God.
+
+62:8 Trust in him at all times; ye people, pour out your heart before
+him: God is a refuge for us. Selah.
+
+62:9 Surely men of low degree are vanity, and men of high degree are a
+lie: to be laid in the balance, they are altogether lighter than
+vanity.
+
+62:10 Trust not in oppression, and become not vain in robbery: if
+riches increase, set not your heart upon them.
+
+62:11 God hath spoken once; twice have I heard this; that power
+belongeth unto God.
+
+62:12 Also unto thee, O Lord, belongeth mercy: for thou renderest to
+every man according to his work.
+
+
+
+63:1 O God, thou art my God; early will I seek thee: my soul thirsteth
+for thee, my flesh longeth for thee in a dry and thirsty land, where
+no water is;
+
+63:2 To see thy power and thy glory, so as I have seen thee in the
+sanctuary.
+
+63:3 Because thy lovingkindness is better than life, my lips shall
+praise thee.
+
+63:4 Thus will I bless thee while I live: I will lift up my hands in
+thy name.
+
+63:5 My soul shall be satisfied as with marrow and fatness; and my
+mouth shall praise thee with joyful lips:
+
+63:6 When I remember thee upon my bed, and meditate on thee in the
+night watches.
+
+63:7 Because thou hast been my help, therefore in the shadow of thy
+wings will I rejoice.
+
+63:8 My soul followeth hard after thee: thy right hand upholdeth me.
+
+63:9 But those that seek my soul, to destroy it, shall go into the
+lower parts of the earth.
+
+63:10 They shall fall by the sword: they shall be a portion for foxes.
+
+63:11 But the king shall rejoice in God; every one that sweareth by
+him shall glory: but the mouth of them that speak lies shall be
+stopped.
+
+
+
+64:1 Hear my voice, O God, in my prayer: preserve my life from fear of
+the enemy.
+
+64:2 Hide me from the secret counsel of the wicked; from the
+insurrection of the workers of iniquity:
+
+64:3 Who whet their tongue like a sword, and bend their bows to shoot
+their arrows, even bitter words:
+
+64:4 That they may shoot in secret at the perfect: suddenly do they
+shoot at him, and fear not.
+
+64:5 They encourage themselves in an evil matter: they commune of
+laying snares privily; they say, Who shall see them?
+
+64:6 They search out iniquities; they accomplish a diligent search:
+both the inward thought of every one of them, and the heart, is deep.
+
+64:7 But God shall shoot at them with an arrow; suddenly shall they be
+wounded.
+
+64:8 So they shall make their own tongue to fall upon themselves: all
+that see them shall flee away.
+
+64:9 And all men shall fear, and shall declare the work of God; for
+they shall wisely consider of his doing.
+
+64:10 The righteous shall be glad in the LORD, and shall trust in him;
+and all the upright in heart shall glory.
+
+
+
+65:1 Praise waiteth for thee, O God, in Sion: and unto thee shall the
+vow be performed.
+
+65:2 O thou that hearest prayer, unto thee shall all flesh come.
+
+65:3 Iniquities prevail against me: as for our transgressions, thou
+shalt purge them away.
+
+65:4 Blessed is the man whom thou choosest, and causest to approach
+unto thee, that he may dwell in thy courts: we shall be satisfied with
+the goodness of thy house, even of thy holy temple.
+
+65:5 By terrible things in righteousness wilt thou answer us, O God of
+our salvation; who art the confidence of all the ends of the earth,
+and of them that are afar off upon the sea:
+
+65:6 Which by his strength setteth fast the mountains; being girded
+with power:
+
+65:7 Which stilleth the noise of the seas, the noise of their waves,
+and the tumult of the people.
+
+65:8 They also that dwell in the uttermost parts are afraid at thy
+tokens: thou makest the outgoings of the morning and evening to
+rejoice.
+
+65:9 Thou visitest the earth, and waterest it: thou greatly enrichest
+it with the river of God, which is full of water: thou preparest them
+corn, when thou hast so provided for it.
+
+65:10 Thou waterest the ridges thereof abundantly: thou settlest the
+furrows thereof: thou makest it soft with showers: thou blessest the
+springing thereof.
+
+65:11 Thou crownest the year with thy goodness; and thy paths drop
+fatness.
+
+65:12 They drop upon the pastures of the wilderness: and the little
+hills rejoice on every side.
+
+65:13 The pastures are clothed with flocks; the valleys also are
+covered over with corn; they shout for joy, they also sing.
+
+
+
+66:1 Make a joyful noise unto God, all ye lands:
+
+66:2 Sing forth the honour of his name: make his praise glorious.
+
+66:3 Say unto God, How terrible art thou in thy works! through the
+greatness of thy power shall thine enemies submit themselves unto
+thee.
+
+66:4 All the earth shall worship thee, and shall sing unto thee; they
+shall sing to thy name. Selah.
+
+66:5 Come and see the works of God: he is terrible in his doing toward
+the children of men.
+
+66:6 He turned the sea into dry land: they went through the flood on
+foot: there did we rejoice in him.
+
+66:7 He ruleth by his power for ever; his eyes behold the nations: let
+not the rebellious exalt themselves. Selah.
+
+66:8 O bless our God, ye people, and make the voice of his praise to
+be heard:
+
+66:9 Which holdeth our soul in life, and suffereth not our feet to be
+moved.
+
+66:10 For thou, O God, hast proved us: thou hast tried us, as silver
+is tried.
+
+66:11 Thou broughtest us into the net; thou laidst affliction upon our
+loins.
+
+66:12 Thou hast caused men to ride over our heads; we went through
+fire and through water: but thou broughtest us out into a wealthy
+place.
+
+66:13 I will go into thy house with burnt offerings: I will pay thee
+my vows,
+
+66:14 Which my lips have uttered, and my mouth hath spoken, when I was
+in trouble.
+
+66:15 I will offer unto thee burnt sacrifices of fatlings, with the
+incense of rams; I will offer bullocks with goats. Selah.
+
+66:16 Come and hear, all ye that fear God, and I will declare what he
+hath done for my soul.
+
+66:17 I cried unto him with my mouth, and he was extolled with my
+tongue.
+
+66:18 If I regard iniquity in my heart, the Lord will not hear me:
+
+66:19 But verily God hath heard me; he hath attended to the voice of
+my prayer.
+
+66:20 Blessed be God, which hath not turned away my prayer, nor his
+mercy from me.
+
+
+
+67:1 God be merciful unto us, and bless us; and cause his face to
+shine upon us; Selah.
+
+67:2 That thy way may be known upon earth, thy saving health among all
+nations.
+
+67:3 Let the people praise thee, O God; let all the people praise
+thee.
+
+67:4 O let the nations be glad and sing for joy: for thou shalt judge
+the people righteously, and govern the nations upon earth. Selah.
+
+67:5 Let the people praise thee, O God; let all the people praise
+thee.
+
+67:6 Then shall the earth yield her increase; and God, even our own
+God, shall bless us.
+
+67:7 God shall bless us; and all the ends of the earth shall fear him.
+
+
+
+68:1 Let God arise, let his enemies be scattered: let them also that
+hate him flee before him.
+
+68:2 As smoke is driven away, so drive them away: as wax melteth
+before the fire, so let the wicked perish at the presence of God.
+
+68:3 But let the righteous be glad; let them rejoice before God: yea,
+let them exceedingly rejoice.
+
+68:4 Sing unto God, sing praises to his name: extol him that rideth
+upon the heavens by his name JAH, and rejoice before him.
+
+68:5 A father of the fatherless, and a judge of the widows, is God in
+his holy habitation.
+
+68:6 God setteth the solitary in families: he bringeth out those which
+are bound with chains: but the rebellious dwell in a dry land.
+
+68:7 O God, when thou wentest forth before thy people, when thou didst
+march through the wilderness; Selah:
+
+68:8 The earth shook, the heavens also dropped at the presence of God:
+even Sinai itself was moved at the presence of God, the God of Israel.
+
+68:9 Thou, O God, didst send a plentiful rain, whereby thou didst
+confirm thine inheritance, when it was weary.
+
+68:10 Thy congregation hath dwelt therein: thou, O God, hast prepared
+of thy goodness for the poor.
+
+68:11 The Lord gave the word: great was the company of those that
+published it.
+
+68:12 Kings of armies did flee apace: and she that tarried at home
+divided the spoil.
+
+68:13 Though ye have lien among the pots, yet shall ye be as the wings
+of a dove covered with silver, and her feathers with yellow gold.
+
+68:14 When the Almighty scattered kings in it, it was white as snow in
+Salmon.
+
+68:15 The hill of God is as the hill of Bashan; an high hill as the
+hill of Bashan.
+
+68:16 Why leap ye, ye high hills? this is the hill which God desireth
+to dwell in; yea, the LORD will dwell in it for ever.
+
+68:17 The chariots of God are twenty thousand, even thousands of
+angels: the Lord is among them, as in Sinai, in the holy place.
+
+68:18 Thou hast ascended on high, thou hast led captivity captive:
+thou hast received gifts for men; yea, for the rebellious also, that
+the LORD God might dwell among them.
+
+68:19 Blessed be the Lord, who daily loadeth us with benefits, even
+the God of our salvation. Selah.
+
+68:20 He that is our God is the God of salvation; and unto GOD the
+Lord belong the issues from death.
+
+68:21 But God shall wound the head of his enemies, and the hairy scalp
+of such an one as goeth on still in his trespasses.
+
+68:22 The Lord said, I will bring again from Bashan, I will bring my
+people again from the depths of the sea:
+
+68:23 That thy foot may be dipped in the blood of thine enemies, and
+the tongue of thy dogs in the same.
+
+68:24 They have seen thy goings, O God; even the goings of my God, my
+King, in the sanctuary.
+
+68:25 The singers went before, the players on instruments followed
+after; among them were the damsels playing with timbrels.
+
+68:26 Bless ye God in the congregations, even the Lord, from the
+fountain of Israel.
+
+68:27 There is little Benjamin with their ruler, the princes of Judah
+and their council, the princes of Zebulun, and the princes of
+Naphtali.
+
+68:28 Thy God hath commanded thy strength: strengthen, O God, that
+which thou hast wrought for us.
+
+68:29 Because of thy temple at Jerusalem shall kings bring presents
+unto thee.
+
+68:30 Rebuke the company of spearmen, the multitude of the bulls, with
+the calves of the people, till every one submit himself with pieces of
+silver: scatter thou the people that delight in war.
+
+68:31 Princes shall come out of Egypt; Ethiopia shall soon stretch out
+her hands unto God.
+
+68:32 Sing unto God, ye kingdoms of the earth; O sing praises unto the
+Lord; Selah:
+
+68:33 To him that rideth upon the heavens of heavens, which were of
+old; lo, he doth send out his voice, and that a mighty voice.
+
+68:34 Ascribe ye strength unto God: his excellency is over Israel, and
+his strength is in the clouds.
+
+68:35 O God, thou art terrible out of thy holy places: the God of
+Israel is he that giveth strength and power unto his people. Blessed
+be God.
+
+
+
+69:1 Save me, O God; for the waters are come in unto my soul.
+
+69:2 I sink in deep mire, where there is no standing: I am come into
+deep waters, where the floods overflow me.
+
+69:3 I am weary of my crying: my throat is dried: mine eyes fail while
+I wait for my God.
+
+69:4 They that hate me without a cause are more than the hairs of mine
+head: they that would destroy me, being mine enemies wrongfully, are
+mighty: then I restored that which I took not away.
+
+69:5 O God, thou knowest my foolishness; and my sins are not hid from
+thee.
+
+69:6 Let not them that wait on thee, O Lord GOD of hosts, be ashamed
+for my sake: let not those that seek thee be confounded for my sake, O
+God of Israel.
+
+69:7 Because for thy sake I have borne reproach; shame hath covered my
+face.
+
+69:8 I am become a stranger unto my brethren, and an alien unto my
+mother's children.
+
+69:9 For the zeal of thine house hath eaten me up; and the reproaches
+of them that reproached thee are fallen upon me.
+
+69:10 When I wept, and chastened my soul with fasting, that was to my
+reproach.
+
+69:11 I made sackcloth also my garment; and I became a proverb to
+them.
+
+69:12 They that sit in the gate speak against me; and I was the song
+of the drunkards.
+
+69:13 But as for me, my prayer is unto thee, O LORD, in an acceptable
+time: O God, in the multitude of thy mercy hear me, in the truth of
+thy salvation.
+
+69:14 Deliver me out of the mire, and let me not sink: let me be
+delivered from them that hate me, and out of the deep waters.
+
+69:15 Let not the waterflood overflow me, neither let the deep swallow
+me up, and let not the pit shut her mouth upon me.
+
+69:16 Hear me, O LORD; for thy lovingkindness is good: turn unto me
+according to the multitude of thy tender mercies.
+
+69:17 And hide not thy face from thy servant; for I am in trouble:
+hear me speedily.
+
+69:18 Draw nigh unto my soul, and redeem it: deliver me because of
+mine enemies.
+
+69:19 Thou hast known my reproach, and my shame, and my dishonour:
+mine adversaries are all before thee.
+
+69:20 Reproach hath broken my heart; and I am full of heaviness: and I
+looked for some to take pity, but there was none; and for comforters,
+but I found none.
+
+69:21 They gave me also gall for my meat; and in my thirst they gave
+me vinegar to drink.
+
+69:22 Let their table become a snare before them: and that which
+should have been for their welfare, let it become a trap.
+
+69:23 Let their eyes be darkened, that they see not; and make their
+loins continually to shake.
+
+69:24 Pour out thine indignation upon them, and let thy wrathful anger
+take hold of them.
+
+69:25 Let their habitation be desolate; and let none dwell in their
+tents.
+
+69:26 For they persecute him whom thou hast smitten; and they talk to
+the grief of those whom thou hast wounded.
+
+69:27 Add iniquity unto their iniquity: and let them not come into thy
+righteousness.
+
+69:28 Let them be blotted out of the book of the living, and not be
+written with the righteous.
+
+69:29 But I am poor and sorrowful: let thy salvation, O God, set me up
+on high.
+
+69:30 I will praise the name of God with a song, and will magnify him
+with thanksgiving.
+
+69:31 This also shall please the LORD better than an ox or bullock
+that hath horns and hoofs.
+
+69:32 The humble shall see this, and be glad: and your heart shall
+live that seek God.
+
+69:33 For the LORD heareth the poor, and despiseth not his prisoners.
+
+69:34 Let the heaven and earth praise him, the seas, and every thing
+that moveth therein.
+
+69:35 For God will save Zion, and will build the cities of Judah: that
+they may dwell there, and have it in possession.
+
+69:36 The seed also of his servants shall inherit it: and they that
+love his name shall dwell therein.
+
+
+
+70:1 Make haste, O God, to deliver me; make haste to help me, O Lord.
+
+70:2 Let them be ashamed and confounded that seek after my soul: let
+them be turned backward, and put to confusion, that desire my hurt.
+
+70:3 Let them be turned back for a reward of their shame that say,
+Aha, aha.
+
+70:4 Let all those that seek thee rejoice and be glad in thee: and let
+such as love thy salvation say continually, Let God be magnified.
+
+70:5 But I am poor and needy: make haste unto me, O God: thou art my
+help and my deliverer; O LORD, make no tarrying.
+
+
+
+71:1 In thee, O LORD, do I put my trust: let me never be put to
+confusion.
+
+71:2 Deliver me in thy righteousness, and cause me to escape: incline
+thine ear unto me, and save me.
+
+71:3 Be thou my strong habitation, whereunto I may continually resort:
+thou hast given commandment to save me; for thou art my rock and my
+fortress.
+
+71:4 Deliver me, O my God, out of the hand of the wicked, out of the
+hand of the unrighteous and cruel man.
+
+71:5 For thou art my hope, O Lord GOD: thou art my trust from my
+youth.
+
+71:6 By thee have I been holden up from the womb: thou art he that
+took me out of my mother's bowels: my praise shall be continually of
+thee.
+
+71:7 I am as a wonder unto many; but thou art my strong refuge.
+
+71:8 Let my mouth be filled with thy praise and with thy honour all
+the day.
+
+71:9 Cast me not off in the time of old age; forsake me not when my
+strength faileth.
+
+71:10 For mine enemies speak against me; and they that lay wait for my
+soul take counsel together,
+
+71:11 Saying, God hath forsaken him: persecute and take him; for there
+is none to deliver him.
+
+71:12 O God, be not far from me: O my God, make haste for my help.
+
+71:13 Let them be confounded and consumed that are adversaries to my
+soul; let them be covered with reproach and dishonour that seek my
+hurt.
+
+71:14 But I will hope continually, and will yet praise thee more and
+more.
+
+71:15 My mouth shall shew forth thy righteousness and thy salvation
+all the day; for I know not the numbers thereof.
+
+71:16 I will go in the strength of the Lord GOD: I will make mention
+of thy righteousness, even of thine only.
+
+71:17 O God, thou hast taught me from my youth: and hitherto have I
+declared thy wondrous works.
+
+71:18 Now also when I am old and greyheaded, O God, forsake me not;
+until I have shewed thy strength unto this generation, and thy power
+to every one that is to come.
+
+71:19 Thy righteousness also, O God, is very high, who hast done great
+things: O God, who is like unto thee!
+
+71:20 Thou, which hast shewed me great and sore troubles, shalt
+quicken me again, and shalt bring me up again from the depths of the
+earth.
+
+71:21 Thou shalt increase my greatness, and comfort me on every side.
+
+71:22 I will also praise thee with the psaltery, even thy truth, O my
+God: unto thee will I sing with the harp, O thou Holy One of Israel.
+
+71:23 My lips shall greatly rejoice when I sing unto thee; and my
+soul, which thou hast redeemed.
+
+71:24 My tongue also shall talk of thy righteousness all the day long:
+for they are confounded, for they are brought unto shame, that seek my
+hurt.
+
+
+
+72:1 Give the king thy judgments, O God, and thy righteousness unto
+the king's son.
+
+72:2 He shall judge thy people with righteousness, and thy poor with
+judgment.
+
+72:3 The mountains shall bring peace to the people, and the little
+hills, by righteousness.
+
+72:4 He shall judge the poor of the people, he shall save the children
+of the needy, and shall break in pieces the oppressor.
+
+72:5 They shall fear thee as long as the sun and moon endure,
+throughout all generations.
+
+72:6 He shall come down like rain upon the mown grass: as showers that
+water the earth.
+
+72:7 In his days shall the righteous flourish; and abundance of peace
+so long as the moon endureth.
+
+72:8 He shall have dominion also from sea to sea, and from the river
+unto the ends of the earth.
+
+72:9 They that dwell in the wilderness shall bow before him; and his
+enemies shall lick the dust.
+
+72:10 The kings of Tarshish and of the isles shall bring presents: the
+kings of Sheba and Seba shall offer gifts.
+
+72:11 Yea, all kings shall fall down before him: all nations shall
+serve him.
+
+72:12 For he shall deliver the needy when he crieth; the poor also,
+and him that hath no helper.
+
+72:13 He shall spare the poor and needy, and shall save the souls of
+the needy.
+
+72:14 He shall redeem their soul from deceit and violence: and
+precious shall their blood be in his sight.
+
+72:15 And he shall live, and to him shall be given of the gold of
+Sheba: prayer also shall be made for him continually; and daily shall
+he be praised.
+
+72:16 There shall be an handful of corn in the earth upon the top of
+the mountains; the fruit thereof shall shake like Lebanon: and they of
+the city shall flourish like grass of the earth.
+
+72:17 His name shall endure for ever: his name shall be continued as
+long as the sun: and men shall be blessed in him: all nations shall
+call him blessed.
+
+72:18 Blessed be the LORD God, the God of Israel, who only doeth
+wondrous things.
+
+72:19 And blessed be his glorious name for ever: and let the whole
+earth be filled with his glory; Amen, and Amen.
+
+72:20 The prayers of David the son of Jesse are ended.
+
+
+
+73:1 Truly God is good to Israel, even to such as are of a clean
+heart.
+
+73:2 But as for me, my feet were almost gone; my steps had well nigh
+slipped.
+
+73:3 For I was envious at the foolish, when I saw the prosperity of
+the wicked.
+
+73:4 For there are no bands in their death: but their strength is
+firm.
+
+73:5 They are not in trouble as other men; neither are they plagued
+like other men.
+
+73:6 Therefore pride compasseth them about as a chain; violence
+covereth them as a garment.
+
+73:7 Their eyes stand out with fatness: they have more than heart
+could wish.
+
+73:8 They are corrupt, and speak wickedly concerning oppression: they
+speak loftily.
+
+73:9 They set their mouth against the heavens, and their tongue
+walketh through the earth.
+
+73:10 Therefore his people return hither: and waters of a full cup are
+wrung out to them.
+
+73:11 And they say, How doth God know? and is there knowledge in the
+most High?
+
+73:12 Behold, these are the ungodly, who prosper in the world; they
+increase in riches.
+
+73:13 Verily I have cleansed my heart in vain, and washed my hands in
+innocency.
+
+73:14 For all the day long have I been plagued, and chastened every
+morning.
+
+73:15 If I say, I will speak thus; behold, I should offend against the
+generation of thy children.
+
+73:16 When I thought to know this, it was too painful for me;
+
+73:17 Until I went into the sanctuary of God; then understood I their
+end.
+
+73:18 Surely thou didst set them in slippery places: thou castedst
+them down into destruction.
+
+73:19 How are they brought into desolation, as in a moment! they are
+utterly consumed with terrors.
+
+73:20 As a dream when one awaketh; so, O Lord, when thou awakest, thou
+shalt despise their image.
+
+73:21 Thus my heart was grieved, and I was pricked in my reins.
+
+73:22 So foolish was I, and ignorant: I was as a beast before thee.
+
+73:23 Nevertheless I am continually with thee: thou hast holden me by
+my right hand.
+
+73:24 Thou shalt guide me with thy counsel, and afterward receive me
+to glory.
+
+73:25 Whom have I in heaven but thee? and there is none upon earth
+that I desire beside thee.
+
+73:26 My flesh and my heart faileth: but God is the strength of my
+heart, and my portion for ever.
+
+73:27 For, lo, they that are far from thee shall perish: thou hast
+destroyed all them that go a whoring from thee.
+
+73:28 But it is good for me to draw near to God: I have put my trust
+in the Lord GOD, that I may declare all thy works.
+
+
+
+74:1 O God, why hast thou cast us off for ever? why doth thine anger
+smoke against the sheep of thy pasture?
+
+74:2 Remember thy congregation, which thou hast purchased of old; the
+rod of thine inheritance, which thou hast redeemed; this mount Zion,
+wherein thou hast dwelt.
+
+74:3 Lift up thy feet unto the perpetual desolations; even all that
+the enemy hath done wickedly in the sanctuary.
+
+74:4 Thine enemies roar in the midst of thy congregations; they set up
+their ensigns for signs.
+
+74:5 A man was famous according as he had lifted up axes upon the
+thick trees.
+
+74:6 But now they break down the carved work thereof at once with axes
+and hammers.
+
+74:7 They have cast fire into thy sanctuary, they have defiled by
+casting down the dwelling place of thy name to the ground.
+
+74:8 They said in their hearts, Let us destroy them together: they
+have burned up all the synagogues of God in the land.
+
+74:9 We see not our signs: there is no more any prophet: neither is
+there among us any that knoweth how long.
+
+74:10 O God, how long shall the adversary reproach? shall the enemy
+blaspheme thy name for ever?
+
+74:11 Why withdrawest thou thy hand, even thy right hand? pluck it out
+of thy bosom.
+
+74:12 For God is my King of old, working salvation in the midst of the
+earth.
+
+74:13 Thou didst divide the sea by thy strength: thou brakest the
+heads of the dragons in the waters.
+
+74:14 Thou brakest the heads of leviathan in pieces, and gavest him to
+be meat to the people inhabiting the wilderness.
+
+74:15 Thou didst cleave the fountain and the flood: thou driedst up
+mighty rivers.
+
+74:16 The day is thine, the night also is thine: thou hast prepared
+the light and the sun.
+
+74:17 Thou hast set all the borders of the earth: thou hast made
+summer and winter.
+
+74:18 Remember this, that the enemy hath reproached, O LORD, and that
+the foolish people have blasphemed thy name.
+
+74:19 O deliver not the soul of thy turtledove unto the multitude of
+the wicked: forget not the congregation of thy poor for ever.
+
+74:20 Have respect unto the covenant: for the dark places of the earth
+are full of the habitations of cruelty.
+
+74:21 O let not the oppressed return ashamed: let the poor and needy
+praise thy name.
+
+74:22 Arise, O God, plead thine own cause: remember how the foolish
+man reproacheth thee daily.
+
+74:23 Forget not the voice of thine enemies: the tumult of those that
+rise up against thee increaseth continually.
+
+
+
+75:1 Unto thee, O God, do we give thanks, unto thee do we give thanks:
+for that thy name is near thy wondrous works declare.
+
+75:2 When I shall receive the congregation I will judge uprightly.
+
+75:3 The earth and all the inhabitants thereof are dissolved: I bear
+up the pillars of it. Selah.
+
+75:4 I said unto the fools, Deal not foolishly: and to the wicked,
+Lift not up the horn:
+
+75:5 Lift not up your horn on high: speak not with a stiff neck.
+
+75:6 For promotion cometh neither from the east, nor from the west,
+nor from the south.
+
+75:7 But God is the judge: he putteth down one, and setteth up
+another.
+
+75:8 For in the hand of the LORD there is a cup, and the wine is red;
+it is full of mixture; and he poureth out of the same: but the dregs
+thereof, all the wicked of the earth shall wring them out, and drink
+them.
+
+75:9 But I will declare for ever; I will sing praises to the God of
+Jacob.
+
+75:10 All the horns of the wicked also will I cut off; but the horns
+of the righteous shall be exalted.
+
+
+
+76:1 In Judah is God known: his name is great in Israel.
+
+76:2 In Salem also is his tabernacle, and his dwelling place in Zion.
+
+76:3 There brake he the arrows of the bow, the shield, and the sword,
+and the battle. Selah.
+
+76:4 Thou art more glorious and excellent than the mountains of prey.
+
+76:5 The stouthearted are spoiled, they have slept their sleep: and
+none of the men of might have found their hands.
+
+76:6 At thy rebuke, O God of Jacob, both the chariot and horse are
+cast into a dead sleep.
+
+76:7 Thou, even thou, art to be feared: and who may stand in thy sight
+when once thou art angry?
+
+76:8 Thou didst cause judgment to be heard from heaven; the earth
+feared, and was still,
+
+76:9 When God arose to judgment, to save all the meek of the earth.
+Selah.
+
+76:10 Surely the wrath of man shall praise thee: the remainder of
+wrath shalt thou restrain.
+
+76:11 Vow, and pay unto the LORD your God: let all that be round about
+him bring presents unto him that ought to be feared.
+
+76:12 He shall cut off the spirit of princes: he is terrible to the
+kings of the earth.
+
+
+
+77:1 I cried unto God with my voice, even unto God with my voice; and
+he gave ear unto me.
+
+77:2 In the day of my trouble I sought the Lord: my sore ran in the
+night, and ceased not: my soul refused to be comforted.
+
+77:3 I remembered God, and was troubled: I complained, and my spirit
+was overwhelmed. Selah.
+
+77:4 Thou holdest mine eyes waking: I am so troubled that I cannot
+speak.
+
+77:5 I have considered the days of old, the years of ancient times.
+
+77:6 I call to remembrance my song in the night: I commune with mine
+own heart: and my spirit made diligent search.
+
+77:7 Will the Lord cast off for ever? and will he be favourable no
+more?
+
+77:8 Is his mercy clean gone for ever? doth his promise fail for
+evermore?
+
+77:9 Hath God forgotten to be gracious? hath he in anger shut up his
+tender mercies? Selah.
+
+77:10 And I said, This is my infirmity: but I will remember the years
+of the right hand of the most High.
+
+77:11 I will remember the works of the LORD: surely I will remember
+thy wonders of old.
+
+77:12 I will meditate also of all thy work, and talk of thy doings.
+
+77:13 Thy way, O God, is in the sanctuary: who is so great a God as
+our God?
+
+77:14 Thou art the God that doest wonders: thou hast declared thy
+strength among the people.
+
+77:15 Thou hast with thine arm redeemed thy people, the sons of Jacob
+and Joseph. Selah.
+
+77:16 The waters saw thee, O God, the waters saw thee; they were
+afraid: the depths also were troubled.
+
+77:17 The clouds poured out water: the skies sent out a sound: thine
+arrows also went abroad.
+
+77:18 The voice of thy thunder was in the heaven: the lightnings
+lightened the world: the earth trembled and shook.
+
+77:19 Thy way is in the sea, and thy path in the great waters, and thy
+footsteps are not known.
+
+77:20 Thou leddest thy people like a flock by the hand of Moses and
+Aaron.
+
+
+
+78:1 Give ear, O my people, to my law: incline your ears to the words
+of my mouth.
+
+78:2 I will open my mouth in a parable: I will utter dark sayings of
+old:
+
+78:3 Which we have heard and known, and our fathers have told us.
+
+78:4 We will not hide them from their children, shewing to the
+generation to come the praises of the LORD, and his strength, and his
+wonderful works that he hath done.
+
+78:5 For he established a testimony in Jacob, and appointed a law in
+Israel, which he commanded our fathers, that they should make them
+known to their children:
+
+78:6 That the generation to come might know them, even the children
+which should be born; who should arise and declare them to their
+children:
+
+78:7 That they might set their hope in God, and not forget the works
+of God, but keep his commandments:
+
+78:8 And might not be as their fathers, a stubborn and rebellious
+generation; a generation that set not their heart aright, and whose
+spirit was not stedfast with God.
+
+78:9 The children of Ephraim, being armed, and carrying bows, turned
+back in the day of battle.
+
+78:10 They kept not the covenant of God, and refused to walk in his
+law;
+
+78:11 And forgat his works, and his wonders that he had shewed them.
+
+78:12 Marvellous things did he in the sight of their fathers, in the
+land of Egypt, in the field of Zoan.
+
+78:13 He divided the sea, and caused them to pass through; and he made
+the waters to stand as an heap.
+
+78:14 In the daytime also he led them with a cloud, and all the night
+with a light of fire.
+
+78:15 He clave the rocks in the wilderness, and gave them drink as out
+of the great depths.
+
+78:16 He brought streams also out of the rock, and caused waters to
+run down like rivers.
+
+78:17 And they sinned yet more against him by provoking the most High
+in the wilderness.
+
+78:18 And they tempted God in their heart by asking meat for their
+lust.
+
+78:19 Yea, they spake against God; they said, Can God furnish a table
+in the wilderness?
+
+78:20 Behold, he smote the rock, that the waters gushed out, and the
+streams overflowed; can he give bread also? can he provide flesh for
+his people?
+
+78:21 Therefore the LORD heard this, and was wroth: so a fire was
+kindled against Jacob, and anger also came up against Israel;
+
+78:22 Because they believed not in God, and trusted not in his
+salvation:
+
+78:23 Though he had commanded the clouds from above, and opened the
+doors of heaven,
+
+78:24 And had rained down manna upon them to eat, and had given them
+of the corn of heaven.
+
+78:25 Man did eat angels' food: he sent them meat to the full.
+
+78:26 He caused an east wind to blow in the heaven: and by his power
+he brought in the south wind.
+
+78:27 He rained flesh also upon them as dust, and feathered fowls like
+as the sand of the sea:
+
+78:28 And he let it fall in the midst of their camp, round about their
+habitations.
+
+78:29 So they did eat, and were well filled: for he gave them their
+own desire;
+
+78:30 They were not estranged from their lust. But while their meat
+was yet in their mouths,
+
+78:31 The wrath of God came upon them, and slew the fattest of them,
+and smote down the chosen men of Israel.
+
+78:32 For all this they sinned still, and believed not for his
+wondrous works.
+
+78:33 Therefore their days did he consume in vanity, and their years
+in trouble.
+
+78:34 When he slew them, then they sought him: and they returned and
+enquired early after God.
+
+78:35 And they remembered that God was their rock, and the high God
+their redeemer.
+
+78:36 Nevertheless they did flatter him with their mouth, and they
+lied unto him with their tongues.
+
+78:37 For their heart was not right with him, neither were they
+stedfast in his covenant.
+
+78:38 But he, being full of compassion, forgave their iniquity, and
+destroyed them not: yea, many a time turned he his anger away, and did
+not stir up all his wrath.
+
+78:39 For he remembered that they were but flesh; a wind that passeth
+away, and cometh not again.
+
+78:40 How oft did they provoke him in the wilderness, and grieve him
+in the desert!
+
+78:41 Yea, they turned back and tempted God, and limited the Holy One
+of Israel.
+
+78:42 They remembered not his hand, nor the day when he delivered them
+from the enemy.
+
+78:43 How he had wrought his signs in Egypt, and his wonders in the
+field of Zoan.
+
+78:44 And had turned their rivers into blood; and their floods, that
+they could not drink.
+
+78:45 He sent divers sorts of flies among them, which devoured them;
+and frogs, which destroyed them.
+
+78:46 He gave also their increase unto the caterpiller, and their
+labour unto the locust.
+
+78:47 He destroyed their vines with hail, and their sycomore trees
+with frost.
+
+78:48 He gave up their cattle also to the hail, and their flocks to
+hot thunderbolts.
+
+78:49 He cast upon them the fierceness of his anger, wrath, and
+indignation, and trouble, by sending evil angels among them.
+
+78:50 He made a way to his anger; he spared not their soul from death,
+but gave their life over to the pestilence;
+
+78:51 And smote all the firstborn in Egypt; the chief of their
+strength in the tabernacles of Ham:
+
+78:52 But made his own people to go forth like sheep, and guided them
+in the wilderness like a flock.
+
+78:53 And he led them on safely, so that they feared not: but the sea
+overwhelmed their enemies.
+
+78:54 And he brought them to the border of his sanctuary, even to this
+mountain, which his right hand had purchased.
+
+78:55 He cast out the heathen also before them, and divided them an
+inheritance by line, and made the tribes of Israel to dwell in their
+tents.
+
+78:56 Yet they tempted and provoked the most high God, and kept not
+his testimonies:
+
+78:57 But turned back, and dealt unfaithfully like their fathers: they
+were turned aside like a deceitful bow.
+
+78:58 For they provoked him to anger with their high places, and moved
+him to jealousy with their graven images.
+
+78:59 When God heard this, he was wroth, and greatly abhorred Israel:
+
+78:60 So that he forsook the tabernacle of Shiloh, the tent which he
+placed among men;
+
+78:61 And delivered his strength into captivity, and his glory into
+the enemy's hand.
+
+78:62 He gave his people over also unto the sword; and was wroth with
+his inheritance.
+
+78:63 The fire consumed their young men; and their maidens were not
+given to marriage.
+
+78:64 Their priests fell by the sword; and their widows made no
+lamentation.
+
+78:65 Then the LORD awaked as one out of sleep, and like a mighty man
+that shouteth by reason of wine.
+
+78:66 And he smote his enemies in the hinder parts: he put them to a
+perpetual reproach.
+
+78:67 Moreover he refused the tabernacle of Joseph, and chose not the
+tribe of Ephraim:
+
+78:68 But chose the tribe of Judah, the mount Zion which he loved.
+
+78:69 And he built his sanctuary like high palaces, like the earth
+which he hath established for ever.
+
+78:70 He chose David also his servant, and took him from the
+sheepfolds:
+
+78:71 From following the ewes great with young he brought him to feed
+Jacob his people, and Israel his inheritance.
+
+78:72 So he fed them according to the integrity of his heart; and
+guided them by the skilfulness of his hands.
+
+
+
+79:1 O God, the heathen are come into thine inheritance; thy holy
+temple have they defiled; they have laid Jerusalem on heaps.
+
+79:2 The dead bodies of thy servants have they given to be meat unto
+the fowls of the heaven, the flesh of thy saints unto the beasts of
+the earth.
+
+79:3 Their blood have they shed like water round about Jerusalem; and
+there was none to bury them.
+
+79:4 We are become a reproach to our neighbours, a scorn and derision
+to them that are round about us.
+
+79:5 How long, LORD? wilt thou be angry for ever? shall thy jealousy
+burn like fire?
+
+79:6 Pour out thy wrath upon the heathen that have not known thee, and
+upon the kingdoms that have not called upon thy name.
+
+79:7 For they have devoured Jacob, and laid waste his dwelling place.
+
+79:8 O remember not against us former iniquities: let thy tender
+mercies speedily prevent us: for we are brought very low.
+
+79:9 Help us, O God of our salvation, for the glory of thy name: and
+deliver us, and purge away our sins, for thy name's sake.
+
+79:10 Wherefore should the heathen say, Where is their God? let him be
+known among the heathen in our sight by the revenging of the blood of
+thy servants which is shed.
+
+79:11 Let the sighing of the prisoner come before thee; according to
+the greatness of thy power preserve thou those that are appointed to
+die;
+
+79:12 And render unto our neighbours sevenfold into their bosom their
+reproach, wherewith they have reproached thee, O Lord.
+
+79:13 So we thy people and sheep of thy pasture will give thee thanks
+for ever: we will shew forth thy praise to all generations.
+
+
+
+80:1 Give ear, O Shepherd of Israel, thou that leadest Joseph like a
+flock; thou that dwellest between the cherubims, shine forth.
+
+80:2 Before Ephraim and Benjamin and Manasseh stir up thy strength,
+and come and save us.
+
+80:3 Turn us again, O God, and cause thy face to shine; and we shall
+be saved.
+
+80:4 O LORD God of hosts, how long wilt thou be angry against the
+prayer of thy people?
+
+80:5 Thou feedest them with the bread of tears; and givest them tears
+to drink in great measure.
+
+80:6 Thou makest us a strife unto our neighbours: and our enemies
+laugh among themselves.
+
+80:7 Turn us again, O God of hosts, and cause thy face to shine; and
+we shall be saved.
+
+80:8 Thou hast brought a vine out of Egypt: thou hast cast out the
+heathen, and planted it.
+
+80:9 Thou preparedst room before it, and didst cause it to take deep
+root, and it filled the land.
+
+80:10 The hills were covered with the shadow of it, and the boughs
+thereof were like the goodly cedars.
+
+80:11 She sent out her boughs unto the sea, and her branches unto the
+river.
+
+80:12 Why hast thou then broken down her hedges, so that all they
+which pass by the way do pluck her?
+
+80:13 The boar out of the wood doth waste it, and the wild beast of
+the field doth devour it.
+
+80:14 Return, we beseech thee, O God of hosts: look down from heaven,
+and behold, and visit this vine;
+
+80:15 And the vineyard which thy right hand hath planted, and the
+branch that thou madest strong for thyself.
+
+80:16 It is burned with fire, it is cut down: they perish at the
+rebuke of thy countenance.
+
+80:17 Let thy hand be upon the man of thy right hand, upon the son of
+man whom thou madest strong for thyself.
+
+80:18 So will not we go back from thee: quicken us, and we will call
+upon thy name.
+
+80:19 Turn us again, O LORD God of hosts, cause thy face to shine; and
+we shall be saved.
+
+
+
+81:1 Sing aloud unto God our strength: make a joyful noise unto the
+God of Jacob.
+
+81:2 Take a psalm, and bring hither the timbrel, the pleasant harp
+with the psaltery.
+
+81:3 Blow up the trumpet in the new moon, in the time appointed, on
+our solemn feast day.
+
+81:4 For this was a statute for Israel, and a law of the God of Jacob.
+
+81:5 This he ordained in Joseph for a testimony, when he went out
+through the land of Egypt: where I heard a language that I understood
+not.
+
+81:6 I removed his shoulder from the burden: his hands were delivered
+from the pots.
+
+81:7 Thou calledst in trouble, and I delivered thee; I answered thee
+in the secret place of thunder: I proved thee at the waters of
+Meribah.
+
+Selah.
+
+81:8 Hear, O my people, and I will testify unto thee: O Israel, if
+thou wilt hearken unto me;
+
+81:9 There shall no strange god be in thee; neither shalt thou worship
+any strange god.
+
+81:10 I am the LORD thy God, which brought thee out of the land of
+Egypt: open thy mouth wide, and I will fill it.
+
+81:11 But my people would not hearken to my voice; and Israel would
+none of me.
+
+81:12 So I gave them up unto their own hearts' lust: and they walked
+in their own counsels.
+
+81:13 Oh that my people had hearkened unto me, and Israel had walked
+in my ways!
+
+81:14 I should soon have subdued their enemies, and turned my hand
+against their adversaries.
+
+81:15 The haters of the LORD should have submitted themselves unto
+him: but their time should have endured for ever.
+
+81:16 He should have fed them also with the finest of the wheat: and
+with honey out of the rock should I have satisfied thee.
+
+
+
+82:1 God standeth in the congregation of the mighty; he judgeth among
+the gods.
+
+82:2 How long will ye judge unjustly, and accept the persons of the
+wicked? Selah.
+
+82:3 Defend the poor and fatherless: do justice to the afflicted and
+needy.
+
+82:4 Deliver the poor and needy: rid them out of the hand of the
+wicked.
+
+82:5 They know not, neither will they understand; they walk on in
+darkness: all the foundations of the earth are out of course.
+
+82:6 I have said, Ye are gods; and all of you are children of the most
+High.
+
+82:7 But ye shall die like men, and fall like one of the princes.
+
+82:8 Arise, O God, judge the earth: for thou shalt inherit all
+nations.
+
+
+
+83:1 Keep not thou silence, O God: hold not thy peace, and be not
+still, O God.
+
+83:2 For, lo, thine enemies make a tumult: and they that hate thee
+have lifted up the head.
+
+83:3 They have taken crafty counsel against thy people, and consulted
+against thy hidden ones.
+
+83:4 They have said, Come, and let us cut them off from being a
+nation; that the name of Israel may be no more in remembrance.
+
+83:5 For they have consulted together with one consent: they are
+confederate against thee:
+
+83:6 The tabernacles of Edom, and the Ishmaelites; of Moab, and the
+Hagarenes;
+
+83:7 Gebal, and Ammon, and Amalek; the Philistines with the
+inhabitants of Tyre;
+
+83:8 Assur also is joined with them: they have holpen the children of
+Lot.
+
+Selah.
+
+83:9 Do unto them as unto the Midianites; as to Sisera, as to Jabin,
+at the brook of Kison:
+
+83:10 Which perished at Endor: they became as dung for the earth.
+
+83:11 Make their nobles like Oreb, and like Zeeb: yea, all their
+princes as Zebah, and as Zalmunna:
+
+83:12 Who said, Let us take to ourselves the houses of God in
+possession.
+
+83:13 O my God, make them like a wheel; as the stubble before the
+wind.
+
+83:14 As the fire burneth a wood, and as the flame setteth the
+mountains on fire;
+
+83:15 So persecute them with thy tempest, and make them afraid with
+thy storm.
+
+83:16 Fill their faces with shame; that they may seek thy name, O
+LORD.
+
+83:17 Let them be confounded and troubled for ever; yea, let them be
+put to shame, and perish:
+
+83:18 That men may know that thou, whose name alone is JEHOVAH, art
+the most high over all the earth.
+
+
+
+84:1 How amiable are thy tabernacles, O LORD of hosts!
+
+84:2 My soul longeth, yea, even fainteth for the courts of the LORD:
+my heart and my flesh crieth out for the living God.
+
+84:3 Yea, the sparrow hath found an house, and the swallow a nest for
+herself, where she may lay her young, even thine altars, O LORD of
+hosts, my King, and my God.
+
+84:4 Blessed are they that dwell in thy house: they will be still
+praising thee. Selah.
+
+84:5 Blessed is the man whose strength is in thee; in whose heart are
+the ways of them.
+
+84:6 Who passing through the valley of Baca make it a well; the rain
+also filleth the pools.
+
+84:7 They go from strength to strength, every one of them in Zion
+appeareth before God.
+
+84:8 O LORD God of hosts, hear my prayer: give ear, O God of Jacob.
+Selah.
+
+84:9 Behold, O God our shield, and look upon the face of thine
+anointed.
+
+84:10 For a day in thy courts is better than a thousand. I had rather
+be a doorkeeper in the house of my God, than to dwell in the tents of
+wickedness.
+
+84:11 For the LORD God is a sun and shield: the LORD will give grace
+and glory: no good thing will he withhold from them that walk
+uprightly.
+
+84:12 O LORD of hosts, blessed is the man that trusteth in thee.
+
+
+
+85:1 Lord, thou hast been favourable unto thy land: thou hast brought
+back the captivity of Jacob.
+
+85:2 Thou hast forgiven the iniquity of thy people, thou hast covered
+all their sin. Selah.
+
+85:3 Thou hast taken away all thy wrath: thou hast turned thyself from
+the fierceness of thine anger.
+
+85:4 Turn us, O God of our salvation, and cause thine anger toward us
+to cease.
+
+85:5 Wilt thou be angry with us for ever? wilt thou draw out thine
+anger to all generations?
+
+85:6 Wilt thou not revive us again: that thy people may rejoice in
+thee?
+
+85:7 Shew us thy mercy, O LORD, and grant us thy salvation.
+
+85:8 I will hear what God the LORD will speak: for he will speak peace
+unto his people, and to his saints: but let them not turn again to
+folly.
+
+85:9 Surely his salvation is nigh them that fear him; that glory may
+dwell in our land.
+
+85:10 Mercy and truth are met together; righteousness and peace have
+kissed each other.
+
+85:11 Truth shall spring out of the earth; and righteousness shall
+look down from heaven.
+
+85:12 Yea, the LORD shall give that which is good; and our land shall
+yield her increase.
+
+85:13 Righteousness shall go before him; and shall set us in the way
+of his steps.
+
+
+
+86:1 Bow down thine ear, O LORD, hear me: for I am poor and needy.
+
+86:2 Preserve my soul; for I am holy: O thou my God, save thy servant
+that trusteth in thee.
+
+86:3 Be merciful unto me, O Lord: for I cry unto thee daily.
+
+86:4 Rejoice the soul of thy servant: for unto thee, O Lord, do I lift
+up my soul.
+
+86:5 For thou, Lord, art good, and ready to forgive; and plenteous in
+mercy unto all them that call upon thee.
+
+86:6 Give ear, O LORD, unto my prayer; and attend to the voice of my
+supplications.
+
+86:7 In the day of my trouble I will call upon thee: for thou wilt
+answer me.
+
+86:8 Among the gods there is none like unto thee, O Lord; neither are
+there any works like unto thy works.
+
+86:9 All nations whom thou hast made shall come and worship before
+thee, O Lord; and shall glorify thy name.
+
+86:10 For thou art great, and doest wondrous things: thou art God
+alone.
+
+86:11 Teach me thy way, O LORD; I will walk in thy truth: unite my
+heart to fear thy name.
+
+86:12 I will praise thee, O Lord my God, with all my heart: and I will
+glorify thy name for evermore.
+
+86:13 For great is thy mercy toward me: and thou hast delivered my
+soul from the lowest hell.
+
+86:14 O God, the proud are risen against me, and the assemblies of
+violent men have sought after my soul; and have not set thee before
+them.
+
+86:15 But thou, O Lord, art a God full of compassion, and gracious,
+long suffering, and plenteous in mercy and truth.
+
+86:16 O turn unto me, and have mercy upon me; give thy strength unto
+thy servant, and save the son of thine handmaid.
+
+86:17 Shew me a token for good; that they which hate me may see it,
+and be ashamed: because thou, LORD, hast holpen me, and comforted me.
+
+
+
+87:1 His foundation is in the holy mountains.
+
+87:2 The LORD loveth the gates of Zion more than all the dwellings of
+Jacob.
+
+87:3 Glorious things are spoken of thee, O city of God. Selah.
+
+87:4 I will make mention of Rahab and Babylon to them that know me:
+behold Philistia, and Tyre, with Ethiopia; this man was born there.
+
+87:5 And of Zion it shall be said, This and that man was born in her:
+and the highest himself shall establish her.
+
+87:6 The LORD shall count, when he writeth up the people, that this
+man was born there. Selah.
+
+87:7 As well the singers as the players on instruments shall be there:
+all my springs are in thee.
+
+
+
+88:1 O lord God of my salvation, I have cried day and night before
+thee:
+
+88:2 Let my prayer come before thee: incline thine ear unto my cry;
+
+88:3 For my soul is full of troubles: and my life draweth nigh unto
+the grave.
+
+88:4 I am counted with them that go down into the pit: I am as a man
+that hath no strength:
+
+88:5 Free among the dead, like the slain that lie in the grave, whom
+thou rememberest no more: and they are cut off from thy hand.
+
+88:6 Thou hast laid me in the lowest pit, in darkness, in the deeps.
+
+88:7 Thy wrath lieth hard upon me, and thou hast afflicted me with all
+thy waves. Selah.
+
+88:8 Thou hast put away mine acquaintance far from me; thou hast made
+me an abomination unto them: I am shut up, and I cannot come forth.
+
+88:9 Mine eye mourneth by reason of affliction: LORD, I have called
+daily upon thee, I have stretched out my hands unto thee.
+
+88:10 Wilt thou shew wonders to the dead? shall the dead arise and
+praise thee? Selah.
+
+88:11 Shall thy lovingkindness be declared in the grave? or thy
+faithfulness in destruction?
+
+88:12 Shall thy wonders be known in the dark? and thy righteousness in
+the land of forgetfulness?
+
+88:13 But unto thee have I cried, O LORD; and in the morning shall my
+prayer prevent thee.
+
+88:14 LORD, why castest thou off my soul? why hidest thou thy face
+from me?
+
+88:15 I am afflicted and ready to die from my youth up: while I suffer
+thy terrors I am distracted.
+
+88:16 Thy fierce wrath goeth over me; thy terrors have cut me off.
+
+88:17 They came round about me daily like water; they compassed me
+about together.
+
+88:18 Lover and friend hast thou put far from me, and mine
+acquaintance into darkness.
+
+
+
+89:1 I will sing of the mercies of the LORD for ever: with my mouth
+will I make known thy faithfulness to all generations.
+
+89:2 For I have said, Mercy shall be built up for ever: thy
+faithfulness shalt thou establish in the very heavens.
+
+89:3 I have made a covenant with my chosen, I have sworn unto David my
+servant,
+
+89:4 Thy seed will I establish for ever, and build up thy throne to
+all generations. Selah.
+
+89:5 And the heavens shall praise thy wonders, O LORD: thy
+faithfulness also in the congregation of the saints.
+
+89:6 For who in the heaven can be compared unto the LORD? who among
+the sons of the mighty can be likened unto the LORD?
+
+89:7 God is greatly to be feared in the assembly of the saints, and to
+be had in reverence of all them that are about him.
+
+89:8 O LORD God of hosts, who is a strong LORD like unto thee? or to
+thy faithfulness round about thee?
+
+89:9 Thou rulest the raging of the sea: when the waves thereof arise,
+thou stillest them.
+
+89:10 Thou hast broken Rahab in pieces, as one that is slain; thou
+hast scattered thine enemies with thy strong arm.
+
+89:11 The heavens are thine, the earth also is thine: as for the world
+and the fulness thereof, thou hast founded them.
+
+89:12 The north and the south thou hast created them: Tabor and Hermon
+shall rejoice in thy name.
+
+89:13 Thou hast a mighty arm: strong is thy hand, and high is thy
+right hand.
+
+89:14 Justice and judgment are the habitation of thy throne: mercy and
+truth shall go before thy face.
+
+89:15 Blessed is the people that know the joyful sound: they shall
+walk, O LORD, in the light of thy countenance.
+
+89:16 In thy name shall they rejoice all the day: and in thy
+righteousness shall they be exalted.
+
+89:17 For thou art the glory of their strength: and in thy favour our
+horn shall be exalted.
+
+89:18 For the LORD is our defence; and the Holy One of Israel is our
+king.
+
+89:19 Then thou spakest in vision to thy holy one, and saidst, I have
+laid help upon one that is mighty; I have exalted one chosen out of
+the people.
+
+89:20 I have found David my servant; with my holy oil have I anointed
+him:
+
+89:21 With whom my hand shall be established: mine arm also shall
+strengthen him.
+
+89:22 The enemy shall not exact upon him; nor the son of wickedness
+afflict him.
+
+89:23 And I will beat down his foes before his face, and plague them
+that hate him.
+
+89:24 But my faithfulness and my mercy shall be with him: and in my
+name shall his horn be exalted.
+
+89:25 I will set his hand also in the sea, and his right hand in the
+rivers.
+
+89:26 He shall cry unto me, Thou art my father, my God, and the rock
+of my salvation.
+
+89:27 Also I will make him my firstborn, higher than the kings of the
+earth.
+
+89:28 My mercy will I keep for him for evermore, and my covenant shall
+stand fast with him.
+
+89:29 His seed also will I make to endure for ever, and his throne as
+the days of heaven.
+
+89:30 If his children forsake my law, and walk not in my judgments;
+
+89:31 If they break my statutes, and keep not my commandments;
+
+89:32 Then will I visit their transgression with the rod, and their
+iniquity with stripes.
+
+89:33 Nevertheless my lovingkindness will I not utterly take from him,
+nor suffer my faithfulness to fail.
+
+89:34 My covenant will I not break, nor alter the thing that is gone
+out of my lips.
+
+89:35 Once have I sworn by my holiness that I will not lie unto David.
+
+89:36 His seed shall endure for ever, and his throne as the sun before
+me.
+
+89:37 It shall be established for ever as the moon, and as a faithful
+witness in heaven. Selah.
+
+89:38 But thou hast cast off and abhorred, thou hast been wroth with
+thine anointed.
+
+89:39 Thou hast made void the covenant of thy servant: thou hast
+profaned his crown by casting it to the ground.
+
+89:40 Thou hast broken down all his hedges; thou hast brought his
+strong holds to ruin.
+
+89:41 All that pass by the way spoil him: he is a reproach to his
+neighbours.
+
+89:42 Thou hast set up the right hand of his adversaries; thou hast
+made all his enemies to rejoice.
+
+89:43 Thou hast also turned the edge of his sword, and hast not made
+him to stand in the battle.
+
+89:44 Thou hast made his glory to cease, and cast his throne down to
+the ground.
+
+89:45 The days of his youth hast thou shortened: thou hast covered him
+with shame. Selah.
+
+89:46 How long, LORD? wilt thou hide thyself for ever? shall thy wrath
+burn like fire?
+
+89:47 Remember how short my time is: wherefore hast thou made all men
+in vain?
+
+89:48 What man is he that liveth, and shall not see death? shall he
+deliver his soul from the hand of the grave? Selah.
+
+89:49 Lord, where are thy former lovingkindnesses, which thou swarest
+unto David in thy truth?
+
+89:50 Remember, Lord, the reproach of thy servants; how I do bear in
+my bosom the reproach of all the mighty people;
+
+89:51 Wherewith thine enemies have reproached, O LORD; wherewith they
+have reproached the footsteps of thine anointed.
+
+89:52 Blessed be the LORD for evermore. Amen, and Amen.
+
+
+
+90:1 Lord, thou hast been our dwelling place in all generations.
+
+90:2 Before the mountains were brought forth, or ever thou hadst
+formed the earth and the world, even from everlasting to everlasting,
+thou art God.
+
+90:3 Thou turnest man to destruction; and sayest, Return, ye children
+of men.
+
+90:4 For a thousand years in thy sight are but as yesterday when it is
+past, and as a watch in the night.
+
+90:5 Thou carriest them away as with a flood; they are as a sleep: in
+the morning they are like grass which groweth up.
+
+90:6 In the morning it flourisheth, and groweth up; in the evening it
+is cut down, and withereth.
+
+90:7 For we are consumed by thine anger, and by thy wrath are we
+troubled.
+
+90:8 Thou hast set our iniquities before thee, our secret sins in the
+light of thy countenance.
+
+90:9 For all our days are passed away in thy wrath: we spend our years
+as a tale that is told.
+
+90:10 The days of our years are threescore years and ten; and if by
+reason of strength they be fourscore years, yet is their strength
+labour and sorrow; for it is soon cut off, and we fly away.
+
+90:11 Who knoweth the power of thine anger? even according to thy
+fear, so is thy wrath.
+
+90:12 So teach us to number our days, that we may apply our hearts
+unto wisdom.
+
+90:13 Return, O LORD, how long? and let it repent thee concerning thy
+servants.
+
+90:14 O satisfy us early with thy mercy; that we may rejoice and be
+glad all our days.
+
+90:15 Make us glad according to the days wherein thou hast afflicted
+us, and the years wherein we have seen evil.
+
+90:16 Let thy work appear unto thy servants, and thy glory unto their
+children.
+
+90:17 And let the beauty of the LORD our God be upon us: and establish
+thou the work of our hands upon us; yea, the work of our hands
+establish thou it.
+
+
+
+91:1 He that dwelleth in the secret place of the most High shall abide
+under the shadow of the Almighty.
+
+91:2 I will say of the LORD, He is my refuge and my fortress: my God;
+in him will I trust.
+
+91:3 Surely he shall deliver thee from the snare of the fowler, and
+from the noisome pestilence.
+
+91:4 He shall cover thee with his feathers, and under his wings shalt
+thou trust: his truth shall be thy shield and buckler.
+
+91:5 Thou shalt not be afraid for the terror by night; nor for the
+arrow that flieth by day;
+
+91:6 Nor for the pestilence that walketh in darkness; nor for the
+destruction that wasteth at noonday.
+
+91:7 A thousand shall fall at thy side, and ten thousand at thy right
+hand; but it shall not come nigh thee.
+
+91:8 Only with thine eyes shalt thou behold and see the reward of the
+wicked.
+
+91:9 Because thou hast made the LORD, which is my refuge, even the
+most High, thy habitation;
+
+91:10 There shall no evil befall thee, neither shall any plague come
+nigh thy dwelling.
+
+91:11 For he shall give his angels charge over thee, to keep thee in
+all thy ways.
+
+91:12 They shall bear thee up in their hands, lest thou dash thy foot
+against a stone.
+
+91:13 Thou shalt tread upon the lion and adder: the young lion and the
+dragon shalt thou trample under feet.
+
+91:14 Because he hath set his love upon me, therefore will I deliver
+him: I will set him on high, because he hath known my name.
+
+91:15 He shall call upon me, and I will answer him: I will be with him
+in trouble; I will deliver him, and honour him.
+
+91:16 With long life will I satisfy him, and shew him my salvation.
+
+
+
+92:1 It is a good thing to give thanks unto the Lord, and to sing
+praises unto thy name, O most High:
+
+92:2 To shew forth thy lovingkindness in the morning, and thy
+faithfulness every night,
+
+92:3 Upon an instrument of ten strings, and upon the psaltery; upon
+the harp with a solemn sound.
+
+92:4 For thou, LORD, hast made me glad through thy work: I will
+triumph in the works of thy hands.
+
+92:5 O LORD, how great are thy works! and thy thoughts are very deep.
+
+92:6 A brutish man knoweth not; neither doth a fool understand this.
+
+92:7 When the wicked spring as the grass, and when all the workers of
+iniquity do flourish; it is that they shall be destroyed for ever:
+
+92:8 But thou, LORD, art most high for evermore.
+
+92:9 For, lo, thine enemies, O LORD, for, lo, thine enemies shall
+perish; all the workers of iniquity shall be scattered.
+
+92:10 But my horn shalt thou exalt like the horn of an unicorn: I
+shall be anointed with fresh oil.
+
+92:11 Mine eye also shall see my desire on mine enemies, and mine ears
+shall hear my desire of the wicked that rise up against me.
+
+92:12 The righteous shall flourish like the palm tree: he shall grow
+like a cedar in Lebanon.
+
+92:13 Those that be planted in the house of the LORD shall flourish in
+the courts of our God.
+
+92:14 They shall still bring forth fruit in old age; they shall be fat
+and flourishing;
+
+92:15 To shew that the LORD is upright: he is my rock, and there is no
+unrighteousness in him.
+
+
+
+93:1 The LORD reigneth, he is clothed with majesty; the LORD is
+clothed with strength, wherewith he hath girded himself: the world
+also is stablished, that it cannot be moved.
+
+93:2 Thy throne is established of old: thou art from everlasting.
+
+93:3 The floods have lifted up, O LORD, the floods have lifted up
+their voice; the floods lift up their waves.
+
+93:4 The LORD on high is mightier than the noise of many waters, yea,
+than the mighty waves of the sea.
+
+93:5 Thy testimonies are very sure: holiness becometh thine house, O
+LORD, for ever.
+
+
+
+94:1 O Lord God, to whom vengeance belongeth; O God, to whom vengeance
+belongeth, shew thyself.
+
+94:2 Lift up thyself, thou judge of the earth: render a reward to the
+proud.
+
+94:3 LORD, how long shall the wicked, how long shall the wicked
+triumph?
+
+94:4 How long shall they utter and speak hard things? and all the
+workers of iniquity boast themselves?
+
+94:5 They break in pieces thy people, O LORD, and afflict thine
+heritage.
+
+94:6 They slay the widow and the stranger, and murder the fatherless.
+
+94:7 Yet they say, The LORD shall not see, neither shall the God of
+Jacob regard it.
+
+94:8 Understand, ye brutish among the people: and ye fools, when will
+ye be wise?
+
+94:9 He that planted the ear, shall he not hear? he that formed the
+eye, shall he not see?
+
+94:10 He that chastiseth the heathen, shall not he correct? he that
+teacheth man knowledge, shall not he know?
+
+94:11 The LORD knoweth the thoughts of man, that they are vanity.
+
+94:12 Blessed is the man whom thou chastenest, O LORD, and teachest
+him out of thy law;
+
+94:13 That thou mayest give him rest from the days of adversity, until
+the pit be digged for the wicked.
+
+94:14 For the LORD will not cast off his people, neither will he
+forsake his inheritance.
+
+94:15 But judgment shall return unto righteousness: and all the
+upright in heart shall follow it.
+
+94:16 Who will rise up for me against the evildoers? or who will stand
+up for me against the workers of iniquity?
+
+94:17 Unless the LORD had been my help, my soul had almost dwelt in
+silence.
+
+94:18 When I said, My foot slippeth; thy mercy, O LORD, held me up.
+
+94:19 In the multitude of my thoughts within me thy comforts delight
+my soul.
+
+94:20 Shall the throne of iniquity have fellowship with thee, which
+frameth mischief by a law?
+
+94:21 They gather themselves together against the soul of the
+righteous, and condemn the innocent blood.
+
+94:22 But the LORD is my defence; and my God is the rock of my refuge.
+
+94:23 And he shall bring upon them their own iniquity, and shall cut
+them off in their own wickedness; yea, the LORD our God shall cut them
+off.
+
+
+
+95:1 O come, let us sing unto the LORD: let us make a joyful noise to
+the rock of our salvation.
+
+95:2 Let us come before his presence with thanksgiving, and make a
+joyful noise unto him with psalms.
+
+95:3 For the LORD is a great God, and a great King above all gods.
+
+95:4 In his hand are the deep places of the earth: the strength of the
+hills is his also.
+
+95:5 The sea is his, and he made it: and his hands formed the dry
+land.
+
+95:6 O come, let us worship and bow down: let us kneel before the LORD
+our maker.
+
+95:7 For he is our God; and we are the people of his pasture, and the
+sheep of his hand. To day if ye will hear his voice,
+
+95:8 Harden not your heart, as in the provocation, and as in the day
+of temptation in the wilderness:
+
+95:9 When your fathers tempted me, proved me, and saw my work.
+
+95:10 Forty years long was I grieved with this generation, and said,
+It is a people that do err in their heart, and they have not known my
+ways:
+
+95:11 Unto whom I sware in my wrath that they should not enter into my
+rest.
+
+
+
+96:1 O sing unto the LORD a new song: sing unto the LORD, all the
+earth.
+
+96:2 Sing unto the LORD, bless his name; shew forth his salvation from
+day to day.
+
+96:3 Declare his glory among the heathen, his wonders among all
+people.
+
+96:4 For the LORD is great, and greatly to be praised: he is to be
+feared above all gods.
+
+96:5 For all the gods of the nations are idols: but the LORD made the
+heavens.
+
+96:6 Honour and majesty are before him: strength and beauty are in his
+sanctuary.
+
+96:7 Give unto the LORD, O ye kindreds of the people, give unto the
+LORD glory and strength.
+
+96:8 Give unto the LORD the glory due unto his name: bring an
+offering, and come into his courts.
+
+96:9 O worship the LORD in the beauty of holiness: fear before him,
+all the earth.
+
+96:10 Say among the heathen that the LORD reigneth: the world also
+shall be established that it shall not be moved: he shall judge the
+people righteously.
+
+96:11 Let the heavens rejoice, and let the earth be glad; let the sea
+roar, and the fulness thereof.
+
+96:12 Let the field be joyful, and all that is therein: then shall all
+the trees of the wood rejoice
+
+96:13 Before the LORD: for he cometh, for he cometh to judge the
+earth: he shall judge the world with righteousness, and the people
+with his truth.
+
+
+
+97:1 The LORD reigneth; let the earth rejoice; let the multitude of
+isles be glad thereof.
+
+97:2 Clouds and darkness are round about him: righteousness and
+judgment are the habitation of his throne.
+
+97:3 A fire goeth before him, and burneth up his enemies round about.
+
+97:4 His lightnings enlightened the world: the earth saw, and
+trembled.
+
+97:5 The hills melted like wax at the presence of the LORD, at the
+presence of the Lord of the whole earth.
+
+97:6 The heavens declare his righteousness, and all the people see his
+glory.
+
+97:7 Confounded be all they that serve graven images, that boast
+themselves of idols: worship him, all ye gods.
+
+97:8 Zion heard, and was glad; and the daughters of Judah rejoiced
+because of thy judgments, O LORD.
+
+97:9 For thou, LORD, art high above all the earth: thou art exalted
+far above all gods.
+
+97:10 Ye that love the LORD, hate evil: he preserveth the souls of his
+saints; he delivereth them out of the hand of the wicked.
+
+97:11 Light is sown for the righteous, and gladness for the upright in
+heart.
+
+97:12 Rejoice in the LORD, ye righteous; and give thanks at the
+remembrance of his holiness.
+
+
+
+98:1 O sing unto the LORD a new song; for he hath done marvellous
+things: his right hand, and his holy arm, hath gotten him the victory.
+
+98:2 The LORD hath made known his salvation: his righteousness hath he
+openly shewed in the sight of the heathen.
+
+98:3 He hath remembered his mercy and his truth toward the house of
+Israel: all the ends of the earth have seen the salvation of our God.
+
+98:4 Make a joyful noise unto the LORD, all the earth: make a loud
+noise, and rejoice, and sing praise.
+
+98:5 Sing unto the LORD with the harp; with the harp, and the voice of
+a psalm.
+
+98:6 With trumpets and sound of cornet make a joyful noise before the
+LORD, the King.
+
+98:7 Let the sea roar, and the fulness thereof; the world, and they
+that dwell therein.
+
+98:8 Let the floods clap their hands: let the hills be joyful together
+
+98:9 Before the LORD; for he cometh to judge the earth: with
+righteousness shall he judge the world, and the people with equity.
+
+
+
+99:1 The LORD reigneth; let the people tremble: he sitteth between the
+cherubims; let the earth be moved.
+
+99:2 The LORD is great in Zion; and he is high above all the people.
+
+99:3 Let them praise thy great and terrible name; for it is holy.
+
+99:4 The king's strength also loveth judgment; thou dost establish
+equity, thou executest judgment and righteousness in Jacob.
+
+99:5 Exalt ye the LORD our God, and worship at his footstool; for he
+is holy.
+
+99:6 Moses and Aaron among his priests, and Samuel among them that
+call upon his name; they called upon the LORD, and he answered them.
+
+99:7 He spake unto them in the cloudy pillar: they kept his
+testimonies, and the ordinance that he gave them.
+
+99:8 Thou answeredst them, O LORD our God: thou wast a God that
+forgavest them, though thou tookest vengeance of their inventions.
+
+99:9 Exalt the LORD our God, and worship at his holy hill; for the
+LORD our God is holy.
+
+
+
+100:1 Make a joyful noise unto the LORD, all ye lands.
+
+100:2 Serve the LORD with gladness: come before his presence with
+singing.
+
+100:3 Know ye that the LORD he is God: it is he that hath made us, and
+not we ourselves; we are his people, and the sheep of his pasture.
+
+100:4 Enter into his gates with thanksgiving, and into his courts with
+praise: be thankful unto him, and bless his name.
+
+100:5 For the LORD is good; his mercy is everlasting; and his truth
+endureth to all generations.
+
+
+
+101:1 I will sing of mercy and judgment: unto thee, O LORD, will I
+sing.
+
+101:2 I will behave myself wisely in a perfect way. O when wilt thou
+come unto me? I will walk within my house with a perfect heart.
+
+101:3 I will set no wicked thing before mine eyes: I hate the work of
+them that turn aside; it shall not cleave to me.
+
+101:4 A froward heart shall depart from me: I will not know a wicked
+person.
+
+101:5 Whoso privily slandereth his neighbour, him will I cut off: him
+that hath an high look and a proud heart will not I suffer.
+
+101:6 Mine eyes shall be upon the faithful of the land, that they may
+dwell with me: he that walketh in a perfect way, he shall serve me.
+
+101:7 He that worketh deceit shall not dwell within my house: he that
+telleth lies shall not tarry in my sight.
+
+101:8 I will early destroy all the wicked of the land; that I may cut
+off all wicked doers from the city of the LORD.
+
+
+
+102:1 Hear my prayer, O LORD, and let my cry come unto thee.
+
+102:2 Hide not thy face from me in the day when I am in trouble;
+incline thine ear unto me: in the day when I call answer me speedily.
+
+102:3 For my days are consumed like smoke, and my bones are burned as
+an hearth.
+
+102:4 My heart is smitten, and withered like grass; so that I forget
+to eat my bread.
+
+102:5 By reason of the voice of my groaning my bones cleave to my
+skin.
+
+102:6 I am like a pelican of the wilderness: I am like an owl of the
+desert.
+
+102:7 I watch, and am as a sparrow alone upon the house top.
+
+102:8 Mine enemies reproach me all the day; and they that are mad
+against me are sworn against me.
+
+102:9 For I have eaten ashes like bread, and mingled my drink with
+weeping.
+
+102:10 Because of thine indignation and thy wrath: for thou hast
+lifted me up, and cast me down.
+
+102:11 My days are like a shadow that declineth; and I am withered
+like grass.
+
+102:12 But thou, O LORD, shall endure for ever; and thy remembrance
+unto all generations.
+
+102:13 Thou shalt arise, and have mercy upon Zion: for the time to
+favour her, yea, the set time, is come.
+
+102:14 For thy servants take pleasure in her stones, and favour the
+dust thereof.
+
+102:15 So the heathen shall fear the name of the LORD, and all the
+kings of the earth thy glory.
+
+102:16 When the LORD shall build up Zion, he shall appear in his
+glory.
+
+102:17 He will regard the prayer of the destitute, and not despise
+their prayer.
+
+102:18 This shall be written for the generation to come: and the
+people which shall be created shall praise the LORD.
+
+102:19 For he hath looked down from the height of his sanctuary; from
+heaven did the LORD behold the earth;
+
+102:20 To hear the groaning of the prisoner; to loose those that are
+appointed to death;
+
+102:21 To declare the name of the LORD in Zion, and his praise in
+Jerusalem;
+
+102:22 When the people are gathered together, and the kingdoms, to
+serve the LORD.
+
+102:23 He weakened my strength in the way; he shortened my days.
+
+102:24 I said, O my God, take me not away in the midst of my days: thy
+years are throughout all generations.
+
+102:25 Of old hast thou laid the foundation of the earth: and the
+heavens are the work of thy hands.
+
+102:26 They shall perish, but thou shalt endure: yea, all of them
+shall wax old like a garment; as a vesture shalt thou change them, and
+they shall be changed:
+
+102:27 But thou art the same, and thy years shall have no end.
+
+102:28 The children of thy servants shall continue, and their seed
+shall be established before thee.
+
+
+
+103:1 Bless the LORD, O my soul: and all that is within me, bless his
+holy name.
+
+103:2 Bless the LORD, O my soul, and forget not all his benefits:
+
+103:3 Who forgiveth all thine iniquities; who healeth all thy
+diseases;
+
+103:4 Who redeemeth thy life from destruction; who crowneth thee with
+lovingkindness and tender mercies;
+
+103:5 Who satisfieth thy mouth with good things; so that thy youth is
+renewed like the eagle's.
+
+103:6 The LORD executeth righteousness and judgment for all that are
+oppressed.
+
+103:7 He made known his ways unto Moses, his acts unto the children of
+Israel.
+
+103:8 The LORD is merciful and gracious, slow to anger, and plenteous
+in mercy.
+
+103:9 He will not always chide: neither will he keep his anger for
+ever.
+
+103:10 He hath not dealt with us after our sins; nor rewarded us
+according to our iniquities.
+
+103:11 For as the heaven is high above the earth, so great is his
+mercy toward them that fear him.
+
+103:12 As far as the east is from the west, so far hath he removed our
+transgressions from us.
+
+103:13 Like as a father pitieth his children, so the LORD pitieth them
+that fear him.
+
+103:14 For he knoweth our frame; he remembereth that we are dust.
+
+103:15 As for man, his days are as grass: as a flower of the field, so
+he flourisheth.
+
+103:16 For the wind passeth over it, and it is gone; and the place
+thereof shall know it no more.
+
+103:17 But the mercy of the LORD is from everlasting to everlasting
+upon them that fear him, and his righteousness unto children's
+children;
+
+103:18 To such as keep his covenant, and to those that remember his
+commandments to do them.
+
+103:19 The LORD hath prepared his throne in the heavens; and his
+kingdom ruleth over all.
+
+103:20 Bless the LORD, ye his angels, that excel in strength, that do
+his commandments, hearkening unto the voice of his word.
+
+103:21 Bless ye the LORD, all ye his hosts; ye ministers of his, that
+do his pleasure.
+
+103:22 Bless the LORD, all his works in all places of his dominion:
+bless the LORD, O my soul.
+
+
+
+104:1 Bless the LORD, O my soul. O LORD my God, thou art very great;
+thou art clothed with honour and majesty.
+
+104:2 Who coverest thyself with light as with a garment: who
+stretchest out the heavens like a curtain:
+
+104:3 Who layeth the beams of his chambers in the waters: who maketh
+the clouds his chariot: who walketh upon the wings of the wind:
+
+104:4 Who maketh his angels spirits; his ministers a flaming fire:
+
+104:5 Who laid the foundations of the earth, that it should not be
+removed for ever.
+
+104:6 Thou coveredst it with the deep as with a garment: the waters
+stood above the mountains.
+
+104:7 At thy rebuke they fled; at the voice of thy thunder they hasted
+away.
+
+104:8 They go up by the mountains; they go down by the valleys unto
+the place which thou hast founded for them.
+
+104:9 Thou hast set a bound that they may not pass over; that they
+turn not again to cover the earth.
+
+104:10 He sendeth the springs into the valleys, which run among the
+hills.
+
+104:11 They give drink to every beast of the field: the wild asses
+quench their thirst.
+
+104:12 By them shall the fowls of the heaven have their habitation,
+which sing among the branches.
+
+104:13 He watereth the hills from his chambers: the earth is satisfied
+with the fruit of thy works.
+
+104:14 He causeth the grass to grow for the cattle, and herb for the
+service of man: that he may bring forth food out of the earth;
+
+104:15 And wine that maketh glad the heart of man, and oil to make his
+face to shine, and bread which strengtheneth man's heart.
+
+104:16 The trees of the LORD are full of sap; the cedars of Lebanon,
+which he hath planted;
+
+104:17 Where the birds make their nests: as for the stork, the fir
+trees are her house.
+
+104:18 The high hills are a refuge for the wild goats; and the rocks
+for the conies.
+
+104:19 He appointed the moon for seasons: the sun knoweth his going
+down.
+
+104:20 Thou makest darkness, and it is night: wherein all the beasts
+of the forest do creep forth.
+
+104:21 The young lions roar after their prey, and seek their meat from
+God.
+
+104:22 The sun ariseth, they gather themselves together, and lay them
+down in their dens.
+
+104:23 Man goeth forth unto his work and to his labour until the
+evening.
+
+104:24 O LORD, how manifold are thy works! in wisdom hast thou made
+them all: the earth is full of thy riches.
+
+104:25 So is this great and wide sea, wherein are things creeping
+innumerable, both small and great beasts.
+
+104:26 There go the ships: there is that leviathan, whom thou hast
+made to play therein.
+
+104:27 These wait all upon thee; that thou mayest give them their meat
+in due season.
+
+104:28 That thou givest them they gather: thou openest thine hand,
+they are filled with good.
+
+104:29 Thou hidest thy face, they are troubled: thou takest away their
+breath, they die, and return to their dust.
+
+104:30 Thou sendest forth thy spirit, they are created: and thou
+renewest the face of the earth.
+
+104:31 The glory of the LORD shall endure for ever: the LORD shall
+rejoice in his works.
+
+104:32 He looketh on the earth, and it trembleth: he toucheth the
+hills, and they smoke.
+
+104:33 I will sing unto the LORD as long as I live: I will sing praise
+to my God while I have my being.
+
+104:34 My meditation of him shall be sweet: I will be glad in the
+LORD.
+
+104:35 Let the sinners be consumed out of the earth, and let the
+wicked be no more. Bless thou the LORD, O my soul. Praise ye the LORD.
+
+
+
+105:1 O give thanks unto the LORD; call upon his name: make known his
+deeds among the people.
+
+105:2 Sing unto him, sing psalms unto him: talk ye of all his wondrous
+works.
+
+105:3 Glory ye in his holy name: let the heart of them rejoice that
+seek the LORD.
+
+105:4 Seek the LORD, and his strength: seek his face evermore.
+
+105:5 Remember his marvellous works that he hath done; his wonders,
+and the judgments of his mouth;
+
+105:6 O ye seed of Abraham his servant, ye children of Jacob his
+chosen.
+
+105:7 He is the LORD our God: his judgments are in all the earth.
+
+105:8 He hath remembered his covenant for ever, the word which he
+commanded to a thousand generations.
+
+105:9 Which covenant he made with Abraham, and his oath unto Isaac;
+
+105:10 And confirmed the same unto Jacob for a law, and to Israel for
+an everlasting covenant:
+
+105:11 Saying, Unto thee will I give the land of Canaan, the lot of
+your inheritance:
+
+105:12 When they were but a few men in number; yea, very few, and
+strangers in it.
+
+105:13 When they went from one nation to another, from one kingdom to
+another people;
+
+105:14 He suffered no man to do them wrong: yea, he reproved kings for
+their sakes;
+
+105:15 Saying, Touch not mine anointed, and do my prophets no harm.
+
+105:16 Moreover he called for a famine upon the land: he brake the
+whole staff of bread.
+
+105:17 He sent a man before them, even Joseph, who was sold for a
+servant:
+
+105:18 Whose feet they hurt with fetters: he was laid in iron:
+
+105:19 Until the time that his word came: the word of the LORD tried
+him.
+
+105:20 The king sent and loosed him; even the ruler of the people, and
+let him go free.
+
+105:21 He made him lord of his house, and ruler of all his substance:
+
+105:22 To bind his princes at his pleasure; and teach his senators
+wisdom.
+
+105:23 Israel also came into Egypt; and Jacob sojourned in the land of
+Ham.
+
+105:24 And he increased his people greatly; and made them stronger
+than their enemies.
+
+105:25 He turned their heart to hate his people, to deal subtilly with
+his servants.
+
+105:26 He sent Moses his servant; and Aaron whom he had chosen.
+
+105:27 They shewed his signs among them, and wonders in the land of
+Ham.
+
+105:28 He sent darkness, and made it dark; and they rebelled not
+against his word.
+
+105:29 He turned their waters into blood, and slew their fish.
+
+105:30 Their land brought forth frogs in abundance, in the chambers of
+their kings.
+
+105:31 He spake, and there came divers sorts of flies, and lice in all
+their coasts.
+
+105:32 He gave them hail for rain, and flaming fire in their land.
+
+105:33 He smote their vines also and their fig trees; and brake the
+trees of their coasts.
+
+105:34 He spake, and the locusts came, and caterpillers, and that
+without number,
+
+105:35 And did eat up all the herbs in their land, and devoured the
+fruit of their ground.
+
+105:36 He smote also all the firstborn in their land, the chief of all
+their strength.
+
+105:37 He brought them forth also with silver and gold: and there was
+not one feeble person among their tribes.
+
+105:38 Egypt was glad when they departed: for the fear of them fell
+upon them.
+
+105:39 He spread a cloud for a covering; and fire to give light in the
+night.
+
+105:40 The people asked, and he brought quails, and satisfied them
+with the bread of heaven.
+
+105:41 He opened the rock, and the waters gushed out; they ran in the
+dry places like a river.
+
+105:42 For he remembered his holy promise, and Abraham his servant.
+
+105:43 And he brought forth his people with joy, and his chosen with
+gladness:
+
+105:44 And gave them the lands of the heathen: and they inherited the
+labour of the people;
+
+105:45 That they might observe his statutes, and keep his laws. Praise
+ye the LORD.
+
+
+
+106:1 Praise ye the LORD. O give thanks unto the LORD; for he is good:
+for his mercy endureth for ever.
+
+106:2 Who can utter the mighty acts of the LORD? who can shew forth
+all his praise?
+
+106:3 Blessed are they that keep judgment, and he that doeth
+righteousness at all times.
+
+106:4 Remember me, O LORD, with the favour that thou bearest unto thy
+people: O visit me with thy salvation;
+
+106:5 That I may see the good of thy chosen, that I may rejoice in the
+gladness of thy nation, that I may glory with thine inheritance.
+
+106:6 We have sinned with our fathers, we have committed iniquity, we
+have done wickedly.
+
+106:7 Our fathers understood not thy wonders in Egypt; they remembered
+not the multitude of thy mercies; but provoked him at the sea, even at
+the Red sea.
+
+106:8 Nevertheless he saved them for his name's sake, that he might
+make his mighty power to be known.
+
+106:9 He rebuked the Red sea also, and it was dried up: so he led them
+through the depths, as through the wilderness.
+
+106:10 And he saved them from the hand of him that hated them, and
+redeemed them from the hand of the enemy.
+
+106:11 And the waters covered their enemies: there was not one of them
+left.
+
+106:12 Then believed they his words; they sang his praise.
+
+106:13 They soon forgat his works; they waited not for his counsel:
+
+106:14 But lusted exceedingly in the wilderness, and tempted God in
+the desert.
+
+106:15 And he gave them their request; but sent leanness into their
+soul.
+
+106:16 They envied Moses also in the camp, and Aaron the saint of the
+LORD.
+
+106:17 The earth opened and swallowed up Dathan and covered the
+company of Abiram.
+
+106:18 And a fire was kindled in their company; the flame burned up
+the wicked.
+
+106:19 They made a calf in Horeb, and worshipped the molten image.
+
+106:20 Thus they changed their glory into the similitude of an ox that
+eateth grass.
+
+106:21 They forgat God their saviour, which had done great things in
+Egypt;
+
+106:22 Wondrous works in the land of Ham, and terrible things by the
+Red sea.
+
+106:23 Therefore he said that he would destroy them, had not Moses his
+chosen stood before him in the breach, to turn away his wrath, lest he
+should destroy them.
+
+106:24 Yea, they despised the pleasant land, they believed not his
+word:
+
+106:25 But murmured in their tents, and hearkened not unto the voice
+of the LORD.
+
+106:26 Therefore he lifted up his hand against them, to overthrow them
+in the wilderness:
+
+106:27 To overthrow their seed also among the nations, and to scatter
+them in the lands.
+
+106:28 They joined themselves also unto Baalpeor, and ate the
+sacrifices of the dead.
+
+106:29 Thus they provoked him to anger with their inventions: and the
+plague brake in upon them.
+
+106:30 Then stood up Phinehas, and executed judgment: and so the
+plague was stayed.
+
+106:31 And that was counted unto him for righteousness unto all
+generations for evermore.
+
+106:32 They angered him also at the waters of strife, so that it went
+ill with Moses for their sakes:
+
+106:33 Because they provoked his spirit, so that he spake unadvisedly
+with his lips.
+
+106:34 They did not destroy the nations, concerning whom the LORD
+commanded them:
+
+106:35 But were mingled among the heathen, and learned their works.
+
+106:36 And they served their idols: which were a snare unto them.
+
+106:37 Yea, they sacrificed their sons and their daughters unto
+devils,
+
+106:38 And shed innocent blood, even the blood of their sons and of
+their daughters, whom they sacrificed unto the idols of Canaan: and
+the land was polluted with blood.
+
+106:39 Thus were they defiled with their own works, and went a whoring
+with their own inventions.
+
+106:40 Therefore was the wrath of the LORD kindled against his people,
+insomuch that he abhorred his own inheritance.
+
+106:41 And he gave them into the hand of the heathen; and they that
+hated them ruled over them.
+
+106:42 Their enemies also oppressed them, and they were brought into
+subjection under their hand.
+
+106:43 Many times did he deliver them; but they provoked him with
+their counsel, and were brought low for their iniquity.
+
+106:44 Nevertheless he regarded their affliction, when he heard their
+cry:
+
+106:45 And he remembered for them his covenant, and repented according
+to the multitude of his mercies.
+
+106:46 He made them also to be pitied of all those that carried them
+captives.
+
+106:47 Save us, O LORD our God, and gather us from among the heathen,
+to give thanks unto thy holy name, and to triumph in thy praise.
+
+106:48 Blessed be the LORD God of Israel from everlasting to
+everlasting: and let all the people say, Amen. Praise ye the LORD.
+
+
+
+107:1 O give thanks unto the LORD, for he is good: for his mercy
+endureth for ever.
+
+107:2 Let the redeemed of the LORD say so, whom he hath redeemed from
+the hand of the enemy;
+
+107:3 And gathered them out of the lands, from the east, and from the
+west, from the north, and from the south.
+
+107:4 They wandered in the wilderness in a solitary way; they found no
+city to dwell in.
+
+107:5 Hungry and thirsty, their soul fainted in them.
+
+107:6 Then they cried unto the LORD in their trouble, and he delivered
+them out of their distresses.
+
+107:7 And he led them forth by the right way, that they might go to a
+city of habitation.
+
+107:8 Oh that men would praise the LORD for his goodness, and for his
+wonderful works to the children of men!
+
+107:9 For he satisfieth the longing soul, and filleth the hungry soul
+with goodness.
+
+107:10 Such as sit in darkness and in the shadow of death, being bound
+in affliction and iron;
+
+107:11 Because they rebelled against the words of God, and contemned
+the counsel of the most High:
+
+107:12 Therefore he brought down their heart with labour; they fell
+down, and there was none to help.
+
+107:13 Then they cried unto the LORD in their trouble, and he saved
+them out of their distresses.
+
+107:14 He brought them out of darkness and the shadow of death, and
+brake their bands in sunder.
+
+107:15 Oh that men would praise the LORD for his goodness, and for his
+wonderful works to the children of men!
+
+107:16 For he hath broken the gates of brass, and cut the bars of iron
+in sunder.
+
+107:17 Fools because of their transgression, and because of their
+iniquities, are afflicted.
+
+107:18 Their soul abhorreth all manner of meat; and they draw near
+unto the gates of death.
+
+107:19 Then they cry unto the LORD in their trouble, and he saveth
+them out of their distresses.
+
+107:20 He sent his word, and healed them, and delivered them from
+their destructions.
+
+107:21 Oh that men would praise the LORD for his goodness, and for his
+wonderful works to the children of men!
+
+107:22 And let them sacrifice the sacrifices of thanksgiving, and
+declare his works with rejoicing.
+
+107:23 They that go down to the sea in ships, that do business in
+great waters;
+
+107:24 These see the works of the LORD, and his wonders in the deep.
+
+107:25 For he commandeth, and raiseth the stormy wind, which lifteth
+up the waves thereof.
+
+107:26 They mount up to the heaven, they go down again to the depths:
+their soul is melted because of trouble.
+
+107:27 They reel to and fro, and stagger like a drunken man, and are
+at their wit's end.
+
+107:28 Then they cry unto the LORD in their trouble, and he bringeth
+them out of their distresses.
+
+107:29 He maketh the storm a calm, so that the waves thereof are
+still.
+
+107:30 Then are they glad because they be quiet; so he bringeth them
+unto their desired haven.
+
+107:31 Oh that men would praise the LORD for his goodness, and for his
+wonderful works to the children of men!
+
+107:32 Let them exalt him also in the congregation of the people, and
+praise him in the assembly of the elders.
+
+107:33 He turneth rivers into a wilderness, and the watersprings into
+dry ground;
+
+107:34 A fruitful land into barrenness, for the wickedness of them
+that dwell therein.
+
+107:35 He turneth the wilderness into a standing water, and dry ground
+into watersprings.
+
+107:36 And there he maketh the hungry to dwell, that they may prepare
+a city for habitation;
+
+107:37 And sow the fields, and plant vineyards, which may yield fruits
+of increase.
+
+107:38 He blesseth them also, so that they are multiplied greatly; and
+suffereth not their cattle to decrease.
+
+107:39 Again, they are minished and brought low through oppression,
+affliction, and sorrow.
+
+107:40 He poureth contempt upon princes, and causeth them to wander in
+the wilderness, where there is no way.
+
+107:41 Yet setteth he the poor on high from affliction, and maketh him
+families like a flock.
+
+107:42 The righteous shall see it, and rejoice: and all iniquity shall
+stop her mouth.
+
+107:43 Whoso is wise, and will observe these things, even they shall
+understand the lovingkindness of the LORD.
+
+
+
+108:1 O god, my heart is fixed; I will sing and give praise, even with
+my glory.
+
+108:2 Awake, psaltery and harp: I myself will awake early.
+
+108:3 I will praise thee, O LORD, among the people: and I will sing
+praises unto thee among the nations.
+
+108:4 For thy mercy is great above the heavens: and thy truth reacheth
+unto the clouds.
+
+108:5 Be thou exalted, O God, above the heavens: and thy glory above
+all the earth;
+
+108:6 That thy beloved may be delivered: save with thy right hand, and
+answer me.
+
+108:7 God hath spoken in his holiness; I will rejoice, I will divide
+Shechem, and mete out the valley of Succoth.
+
+108:8 Gilead is mine; Manasseh is mine; Ephraim also is the strength
+of mine head; Judah is my lawgiver;
+
+108:9 Moab is my washpot; over Edom will I cast out my shoe; over
+Philistia will I triumph.
+
+108:10 Who will bring me into the strong city? who will lead me into
+Edom?
+
+108:11 Wilt not thou, O God, who hast cast us off? and wilt not thou,
+O God, go forth with our hosts?
+
+108:12 Give us help from trouble: for vain is the help of man.
+
+108:13 Through God we shall do valiantly: for he it is that shall
+tread down our enemies.
+
+
+
+109:1 Hold not thy peace, O God of my praise;
+
+109:2 For the mouth of the wicked and the mouth of the deceitful are
+opened against me: they have spoken against me with a lying tongue.
+
+109:3 They compassed me about also with words of hatred; and fought
+against me without a cause.
+
+109:4 For my love they are my adversaries: but I give myself unto
+prayer.
+
+109:5 And they have rewarded me evil for good, and hatred for my love.
+
+109:6 Set thou a wicked man over him: and let Satan stand at his right
+hand.
+
+109:7 When he shall be judged, let him be condemned: and let his
+prayer become sin.
+
+109:8 Let his days be few; and let another take his office.
+
+109:9 Let his children be fatherless, and his wife a widow.
+
+109:10 Let his children be continually vagabonds, and beg: let them
+seek their bread also out of their desolate places.
+
+109:11 Let the extortioner catch all that he hath; and let the
+strangers spoil his labour.
+
+109:12 Let there be none to extend mercy unto him: neither let there
+be any to favour his fatherless children.
+
+109:13 Let his posterity be cut off; and in the generation following
+let their name be blotted out.
+
+109:14 Let the iniquity of his fathers be remembered with the LORD;
+and let not the sin of his mother be blotted out.
+
+109:15 Let them be before the LORD continually, that he may cut off
+the memory of them from the earth.
+
+109:16 Because that he remembered not to shew mercy, but persecuted
+the poor and needy man, that he might even slay the broken in heart.
+
+109:17 As he loved cursing, so let it come unto him: as he delighted
+not in blessing, so let it be far from him.
+
+109:18 As he clothed himself with cursing like as with his garment, so
+let it come into his bowels like water, and like oil into his bones.
+
+109:19 Let it be unto him as the garment which covereth him, and for a
+girdle wherewith he is girded continually.
+
+109:20 Let this be the reward of mine adversaries from the LORD, and
+of them that speak evil against my soul.
+
+109:21 But do thou for me, O GOD the Lord, for thy name's sake:
+because thy mercy is good, deliver thou me.
+
+109:22 For I am poor and needy, and my heart is wounded within me.
+
+109:23 I am gone like the shadow when it declineth: I am tossed up and
+down as the locust.
+
+109:24 My knees are weak through fasting; and my flesh faileth of
+fatness.
+
+109:25 I became also a reproach unto them: when they looked upon me
+they shaked their heads.
+
+109:26 Help me, O LORD my God: O save me according to thy mercy:
+
+109:27 That they may know that this is thy hand; that thou, LORD, hast
+done it.
+
+109:28 Let them curse, but bless thou: when they arise, let them be
+ashamed; but let thy servant rejoice.
+
+109:29 Let mine adversaries be clothed with shame, and let them cover
+themselves with their own confusion, as with a mantle.
+
+109:30 I will greatly praise the LORD with my mouth; yea, I will
+praise him among the multitude.
+
+109:31 For he shall stand at the right hand of the poor, to save him
+from those that condemn his soul.
+
+
+
+110:1 The LORD said unto my Lord, Sit thou at my right hand, until I
+make thine enemies thy footstool.
+
+110:2 The LORD shall send the rod of thy strength out of Zion: rule
+thou in the midst of thine enemies.
+
+110:3 Thy people shall be willing in the day of thy power, in the
+beauties of holiness from the womb of the morning: thou hast the dew
+of thy youth.
+
+110:4 The LORD hath sworn, and will not repent, Thou art a priest for
+ever after the order of Melchizedek.
+
+110:5 The Lord at thy right hand shall strike through kings in the day
+of his wrath.
+
+110:6 He shall judge among the heathen, he shall fill the places with
+the dead bodies; he shall wound the heads over many countries.
+
+110:7 He shall drink of the brook in the way: therefore shall he lift
+up the head.
+
+
+
+111:1 Praise ye the LORD. I will praise the LORD with my whole heart,
+in the assembly of the upright, and in the congregation.
+
+111:2 The works of the LORD are great, sought out of all them that
+have pleasure therein.
+
+111:3 His work is honourable and glorious: and his righteousness
+endureth for ever.
+
+111:4 He hath made his wonderful works to be remembered: the LORD is
+gracious and full of compassion.
+
+111:5 He hath given meat unto them that fear him: he will ever be
+mindful of his covenant.
+
+111:6 He hath shewed his people the power of his works, that he may
+give them the heritage of the heathen.
+
+111:7 The works of his hands are verity and judgment; all his
+commandments are sure.
+
+111:8 They stand fast for ever and ever, and are done in truth and
+uprightness.
+
+111:9 He sent redemption unto his people: he hath commanded his
+covenant for ever: holy and reverend is his name.
+
+111:10 The fear of the LORD is the beginning of wisdom: a good
+understanding have all they that do his commandments: his praise
+endureth for ever.
+
+
+
+112:1 Praise ye the LORD. Blessed is the man that feareth the LORD,
+that delighteth greatly in his commandments.
+
+112:2 His seed shall be mighty upon earth: the generation of the
+upright shall be blessed.
+
+112:3 Wealth and riches shall be in his house: and his righteousness
+endureth for ever.
+
+112:4 Unto the upright there ariseth light in the darkness: he is
+gracious, and full of compassion, and righteous.
+
+112:5 A good man sheweth favour, and lendeth: he will guide his
+affairs with discretion.
+
+112:6 Surely he shall not be moved for ever: the righteous shall be in
+everlasting remembrance.
+
+112:7 He shall not be afraid of evil tidings: his heart is fixed,
+trusting in the LORD.
+
+112:8 His heart is established, he shall not be afraid, until he see
+his desire upon his enemies.
+
+112:9 He hath dispersed, he hath given to the poor; his righteousness
+endureth for ever; his horn shall be exalted with honour.
+
+112:10 The wicked shall see it, and be grieved; he shall gnash with
+his teeth, and melt away: the desire of the wicked shall perish.
+
+
+
+113:1 Praise ye the LORD. Praise, O ye servants of the LORD, praise
+the name of the LORD.
+
+113:2 Blessed be the name of the LORD from this time forth and for
+evermore.
+
+113:3 From the rising of the sun unto the going down of the same the
+LORD's name is to be praised.
+
+113:4 The LORD is high above all nations, and his glory above the
+heavens.
+
+113:5 Who is like unto the LORD our God, who dwelleth on high,
+
+113:6 Who humbleth himself to behold the things that are in heaven,
+and in the earth!
+
+113:7 He raiseth up the poor out of the dust, and lifteth the needy
+out of the dunghill;
+
+113:8 That he may set him with princes, even with the princes of his
+people.
+
+113:9 He maketh the barren woman to keep house, and to be a joyful
+mother of children. Praise ye the LORD.
+
+
+
+114:1 When Israel went out of Egypt, the house of Jacob from a people
+of strange language;
+
+114:2 Judah was his sanctuary, and Israel his dominion.
+
+114:3 The sea saw it, and fled: Jordan was driven back.
+
+114:4 The mountains skipped like rams, and the little hills like
+lambs.
+
+114:5 What ailed thee, O thou sea, that thou fleddest? thou Jordan,
+that thou wast driven back?
+
+114:6 Ye mountains, that ye skipped like rams; and ye little hills,
+like lambs?
+
+114:7 Tremble, thou earth, at the presence of the Lord, at the
+presence of the God of Jacob;
+
+114:8 Which turned the rock into a standing water, the flint into a
+fountain of waters.
+
+
+
+115:1 Not unto us, O LORD, not unto us, but unto thy name give glory,
+for thy mercy, and for thy truth's sake.
+
+115:2 Wherefore should the heathen say, Where is now their God?
+
+115:3 But our God is in the heavens: he hath done whatsoever he hath
+pleased.
+
+115:4 Their idols are silver and gold, the work of men's hands.
+
+115:5 They have mouths, but they speak not: eyes have they, but they
+see not:
+
+115:6 They have ears, but they hear not: noses have they, but they
+smell not:
+
+115:7 They have hands, but they handle not: feet have they, but they
+walk not: neither speak they through their throat.
+
+115:8 They that make them are like unto them; so is every one that
+trusteth in them.
+
+115:9 O Israel, trust thou in the LORD: he is their help and their
+shield.
+
+115:10 O house of Aaron, trust in the LORD: he is their help and their
+shield.
+
+115:11 Ye that fear the LORD, trust in the LORD: he is their help and
+their shield.
+
+115:12 The LORD hath been mindful of us: he will bless us; he will
+bless the house of Israel; he will bless the house of Aaron.
+
+115:13 He will bless them that fear the LORD, both small and great.
+
+115:14 The LORD shall increase you more and more, you and your
+children.
+
+115:15 Ye are blessed of the LORD which made heaven and earth.
+
+115:16 The heaven, even the heavens, are the LORD's: but the earth
+hath he given to the children of men.
+
+115:17 The dead praise not the LORD, neither any that go down into
+silence.
+
+115:18 But we will bless the LORD from this time forth and for
+evermore.
+
+Praise the LORD.
+
+
+
+116:1 I love the LORD, because he hath heard my voice and my
+supplications.
+
+116:2 Because he hath inclined his ear unto me, therefore will I call
+upon him as long as I live.
+
+116:3 The sorrows of death compassed me, and the pains of hell gat
+hold upon me: I found trouble and sorrow.
+
+116:4 Then called I upon the name of the LORD; O LORD, I beseech thee,
+deliver my soul.
+
+116:5 Gracious is the LORD, and righteous; yea, our God is merciful.
+
+116:6 The LORD preserveth the simple: I was brought low, and he helped
+me.
+
+116:7 Return unto thy rest, O my soul; for the LORD hath dealt
+bountifully with thee.
+
+116:8 For thou hast delivered my soul from death, mine eyes from
+tears, and my feet from falling.
+
+116:9 I will walk before the LORD in the land of the living.
+
+116:10 I believed, therefore have I spoken: I was greatly afflicted:
+
+116:11 I said in my haste, All men are liars.
+
+116:12 What shall I render unto the LORD for all his benefits toward
+me?
+
+116:13 I will take the cup of salvation, and call upon the name of the
+LORD.
+
+116:14 I will pay my vows unto the LORD now in the presence of all his
+people.
+
+116:15 Precious in the sight of the LORD is the death of his saints.
+
+116:16 O LORD, truly I am thy servant; I am thy servant, and the son
+of thine handmaid: thou hast loosed my bonds.
+
+116:17 I will offer to thee the sacrifice of thanksgiving, and will
+call upon the name of the LORD.
+
+116:18 I will pay my vows unto the LORD now in the presence of all his
+people.
+
+116:19 In the courts of the LORD's house, in the midst of thee, O
+Jerusalem. Praise ye the LORD.
+
+
+
+117:1 O praise the LORD, all ye nations: praise him, all ye people.
+
+117:2 For his merciful kindness is great toward us: and the truth of
+the LORD endureth for ever. Praise ye the LORD.
+
+
+
+118:1 O give thanks unto the LORD; for he is good: because his mercy
+endureth for ever.
+
+118:2 Let Israel now say, that his mercy endureth for ever.
+
+118:3 Let the house of Aaron now say, that his mercy endureth for
+ever.
+
+118:4 Let them now that fear the LORD say, that his mercy endureth for
+ever.
+
+118:5 I called upon the LORD in distress: the LORD answered me, and
+set me in a large place.
+
+118:6 The LORD is on my side; I will not fear: what can man do unto
+me?
+
+118:7 The LORD taketh my part with them that help me: therefore shall
+I see my desire upon them that hate me.
+
+118:8 It is better to trust in the LORD than to put confidence in man.
+
+118:9 It is better to trust in the LORD than to put confidence in
+princes.
+
+118:10 All nations compassed me about: but in the name of the LORD
+will I destroy them.
+
+118:11 They compassed me about; yea, they compassed me about: but in
+the name of the LORD I will destroy them.
+
+118:12 They compassed me about like bees: they are quenched as the
+fire of thorns: for in the name of the LORD I will destroy them.
+
+118:13 Thou hast thrust sore at me that I might fall: but the LORD
+helped me.
+
+118:14 The LORD is my strength and song, and is become my salvation.
+
+118:15 The voice of rejoicing and salvation is in the tabernacles of
+the righteous: the right hand of the LORD doeth valiantly.
+
+118:16 The right hand of the LORD is exalted: the right hand of the
+LORD doeth valiantly.
+
+118:17 I shall not die, but live, and declare the works of the LORD.
+
+118:18 The LORD hath chastened me sore: but he hath not given me over
+unto death.
+
+118:19 Open to me the gates of righteousness: I will go into them, and
+I will praise the LORD:
+
+118:20 This gate of the LORD, into which the righteous shall enter.
+
+118:21 I will praise thee: for thou hast heard me, and art become my
+salvation.
+
+118:22 The stone which the builders refused is become the head stone
+of the corner.
+
+118:23 This is the LORD's doing; it is marvellous in our eyes.
+
+118:24 This is the day which the LORD hath made; we will rejoice and
+be glad in it.
+
+118:25 Save now, I beseech thee, O LORD: O LORD, I beseech thee, send
+now prosperity.
+
+118:26 Blessed be he that cometh in the name of the LORD: we have
+blessed you out of the house of the LORD.
+
+118:27 God is the LORD, which hath shewed us light: bind the sacrifice
+with cords, even unto the horns of the altar.
+
+118:28 Thou art my God, and I will praise thee: thou art my God, I
+will exalt thee.
+
+118:29 O give thanks unto the LORD; for he is good: for his mercy
+endureth for ever.
+
+
+
+119:1 Blessed are the undefiled in the way, who walk in the law of the
+LORD.
+
+119:2 Blessed are they that keep his testimonies, and that seek him
+with the whole heart.
+
+119:3 They also do no iniquity: they walk in his ways.
+
+119:4 Thou hast commanded us to keep thy precepts diligently.
+
+119:5 O that my ways were directed to keep thy statutes!
+
+119:6 Then shall I not be ashamed, when I have respect unto all thy
+commandments.
+
+119:7 I will praise thee with uprightness of heart, when I shall have
+learned thy righteous judgments.
+
+119:8 I will keep thy statutes: O forsake me not utterly.
+
+119:9 Wherewithal shall a young man cleanse his way? by taking heed
+thereto according to thy word.
+
+119:10 With my whole heart have I sought thee: O let me not wander
+from thy commandments.
+
+119:11 Thy word have I hid in mine heart, that I might not sin against
+thee.
+
+119:12 Blessed art thou, O LORD: teach me thy statutes.
+
+119:13 With my lips have I declared all the judgments of thy mouth.
+
+119:14 I have rejoiced in the way of thy testimonies, as much as in
+all riches.
+
+119:15 I will meditate in thy precepts, and have respect unto thy
+ways.
+
+119:16 I will delight myself in thy statutes: I will not forget thy
+word.
+
+119:17 Deal bountifully with thy servant, that I may live, and keep
+thy word.
+
+119:18 Open thou mine eyes, that I may behold wondrous things out of
+thy law.
+
+119:19 I am a stranger in the earth: hide not thy commandments from
+me.
+
+119:20 My soul breaketh for the longing that it hath unto thy
+judgments at all times.
+
+119:21 Thou hast rebuked the proud that are cursed, which do err from
+thy commandments.
+
+119:22 Remove from me reproach and contempt; for I have kept thy
+testimonies.
+
+119:23 Princes also did sit and speak against me: but thy servant did
+meditate in thy statutes.
+
+119:24 Thy testimonies also are my delight and my counsellors.
+
+119:25 My soul cleaveth unto the dust: quicken thou me according to
+thy word.
+
+119:26 I have declared my ways, and thou heardest me: teach me thy
+statutes.
+
+119:27 Make me to understand the way of thy precepts: so shall I talk
+of thy wondrous works.
+
+119:28 My soul melteth for heaviness: strengthen thou me according
+unto thy word.
+
+119:29 Remove from me the way of lying: and grant me thy law
+graciously.
+
+119:30 I have chosen the way of truth: thy judgments have I laid
+before me.
+
+119:31 I have stuck unto thy testimonies: O LORD, put me not to shame.
+
+119:32 I will run the way of thy commandments, when thou shalt enlarge
+my heart.
+
+119:33 Teach me, O LORD, the way of thy statutes; and I shall keep it
+unto the end.
+
+119:34 Give me understanding, and I shall keep thy law; yea, I shall
+observe it with my whole heart.
+
+119:35 Make me to go in the path of thy commandments; for therein do I
+delight.
+
+119:36 Incline my heart unto thy testimonies, and not to covetousness.
+
+119:37 Turn away mine eyes from beholding vanity; and quicken thou me
+in thy way.
+
+119:38 Stablish thy word unto thy servant, who is devoted to thy fear.
+
+119:39 Turn away my reproach which I fear: for thy judgments are good.
+
+119:40 Behold, I have longed after thy precepts: quicken me in thy
+righteousness.
+
+119:41 Let thy mercies come also unto me, O LORD, even thy salvation,
+according to thy word.
+
+119:42 So shall I have wherewith to answer him that reproacheth me:
+for I trust in thy word.
+
+119:43 And take not the word of truth utterly out of my mouth; for I
+have hoped in thy judgments.
+
+119:44 So shall I keep thy law continually for ever and ever.
+
+119:45 And I will walk at liberty: for I seek thy precepts.
+
+119:46 I will speak of thy testimonies also before kings, and will not
+be ashamed.
+
+119:47 And I will delight myself in thy commandments, which I have
+loved.
+
+119:48 My hands also will I lift up unto thy commandments, which I
+have loved; and I will meditate in thy statutes.
+
+119:49 Remember the word unto thy servant, upon which thou hast caused
+me to hope.
+
+119:50 This is my comfort in my affliction: for thy word hath
+quickened me.
+
+119:51 The proud have had me greatly in derision: yet have I not
+declined from thy law.
+
+119:52 I remembered thy judgments of old, O LORD; and have comforted
+myself.
+
+119:53 Horror hath taken hold upon me because of the wicked that
+forsake thy law.
+
+119:54 Thy statutes have been my songs in the house of my pilgrimage.
+
+119:55 I have remembered thy name, O LORD, in the night, and have kept
+thy law.
+
+119:56 This I had, because I kept thy precepts.
+
+119:57 Thou art my portion, O LORD: I have said that I would keep thy
+words.
+
+119:58 I intreated thy favour with my whole heart: be merciful unto me
+according to thy word.
+
+119:59 I thought on my ways, and turned my feet unto thy testimonies.
+
+119:60 I made haste, and delayed not to keep thy commandments.
+
+119:61 The bands of the wicked have robbed me: but I have not
+forgotten thy law.
+
+119:62 At midnight I will rise to give thanks unto thee because of thy
+righteous judgments.
+
+119:63 I am a companion of all them that fear thee, and of them that
+keep thy precepts.
+
+119:64 The earth, O LORD, is full of thy mercy: teach me thy statutes.
+
+119:65 Thou hast dealt well with thy servant, O LORD, according unto
+thy word.
+
+119:66 Teach me good judgment and knowledge: for I have believed thy
+commandments.
+
+119:67 Before I was afflicted I went astray: but now have I kept thy
+word.
+
+119:68 Thou art good, and doest good; teach me thy statutes.
+
+119:69 The proud have forged a lie against me: but I will keep thy
+precepts with my whole heart.
+
+119:70 Their heart is as fat as grease; but I delight in thy law.
+
+119:71 It is good for me that I have been afflicted; that I might
+learn thy statutes.
+
+119:72 The law of thy mouth is better unto me than thousands of gold
+and silver.
+
+119:73 Thy hands have made me and fashioned me: give me understanding,
+that I may learn thy commandments.
+
+119:74 They that fear thee will be glad when they see me; because I
+have hoped in thy word.
+
+119:75 I know, O LORD, that thy judgments are right, and that thou in
+faithfulness hast afflicted me.
+
+119:76 Let, I pray thee, thy merciful kindness be for my comfort,
+according to thy word unto thy servant.
+
+119:77 Let thy tender mercies come unto me, that I may live: for thy
+law is my delight.
+
+119:78 Let the proud be ashamed; for they dealt perversely with me
+without a cause: but I will meditate in thy precepts.
+
+119:79 Let those that fear thee turn unto me, and those that have
+known thy testimonies.
+
+119:80 Let my heart be sound in thy statutes; that I be not ashamed.
+
+119:81 My soul fainteth for thy salvation: but I hope in thy word.
+
+119:82 Mine eyes fail for thy word, saying, When wilt thou comfort me?
+
+119:83 For I am become like a bottle in the smoke; yet do I not forget
+thy statutes.
+
+119:84 How many are the days of thy servant? when wilt thou execute
+judgment on them that persecute me?
+
+119:85 The proud have digged pits for me, which are not after thy law.
+
+119:86 All thy commandments are faithful: they persecute me
+wrongfully; help thou me.
+
+119:87 They had almost consumed me upon earth; but I forsook not thy
+precepts.
+
+119:88 Quicken me after thy lovingkindness; so shall I keep the
+testimony of thy mouth.
+
+119:89 For ever, O LORD, thy word is settled in heaven.
+
+119:90 Thy faithfulness is unto all generations: thou hast established
+the earth, and it abideth.
+
+119:91 They continue this day according to thine ordinances: for all
+are thy servants.
+
+119:92 Unless thy law had been my delights, I should then have
+perished in mine affliction.
+
+119:93 I will never forget thy precepts: for with them thou hast
+quickened me.
+
+119:94 I am thine, save me: for I have sought thy precepts.
+
+119:95 The wicked have waited for me to destroy me: but I will
+consider thy testimonies.
+
+119:96 I have seen an end of all perfection: but thy commandment is
+exceeding broad.
+
+119:97 O how I love thy law! it is my meditation all the day.
+
+119:98 Thou through thy commandments hast made me wiser than mine
+enemies: for they are ever with me.
+
+119:99 I have more understanding than all my teachers: for thy
+testimonies are my meditation.
+
+119:100 I understand more than the ancients, because I keep thy
+precepts.
+
+119:101 I have refrained my feet from every evil way, that I might
+keep thy word.
+
+119:102 I have not departed from thy judgments: for thou hast taught
+me.
+
+119:103 How sweet are thy words unto my taste! yea, sweeter than honey
+to my mouth!
+
+119:104 Through thy precepts I get understanding: therefore I hate
+every false way.
+
+119:105 Thy word is a lamp unto my feet, and a light unto my path.
+
+119:106 I have sworn, and I will perform it, that I will keep thy
+righteous judgments.
+
+119:107 I am afflicted very much: quicken me, O LORD, according unto
+thy word.
+
+119:108 Accept, I beseech thee, the freewill offerings of my mouth, O
+LORD, and teach me thy judgments.
+
+119:109 My soul is continually in my hand: yet do I not forget thy
+law.
+
+119:110 The wicked have laid a snare for me: yet I erred not from thy
+precepts.
+
+119:111 Thy testimonies have I taken as an heritage for ever: for they
+are the rejoicing of my heart.
+
+119:112 I have inclined mine heart to perform thy statutes alway, even
+unto the end.
+
+119:113 I hate vain thoughts: but thy law do I love.
+
+119:114 Thou art my hiding place and my shield: I hope in thy word.
+
+119:115 Depart from me, ye evildoers: for I will keep the commandments
+of my God.
+
+119:116 Uphold me according unto thy word, that I may live: and let me
+not be ashamed of my hope.
+
+119:117 Hold thou me up, and I shall be safe: and I will have respect
+unto thy statutes continually.
+
+119:118 Thou hast trodden down all them that err from thy statutes:
+for their deceit is falsehood.
+
+119:119 Thou puttest away all the wicked of the earth like dross:
+therefore I love thy testimonies.
+
+119:120 My flesh trembleth for fear of thee; and I am afraid of thy
+judgments.
+
+119:121 I have done judgment and justice: leave me not to mine
+oppressors.
+
+119:122 Be surety for thy servant for good: let not the proud oppress
+me.
+
+119:123 Mine eyes fail for thy salvation, and for the word of thy
+righteousness.
+
+119:124 Deal with thy servant according unto thy mercy, and teach me
+thy statutes.
+
+119:125 I am thy servant; give me understanding, that I may know thy
+testimonies.
+
+119:126 It is time for thee, LORD, to work: for they have made void
+thy law.
+
+119:127 Therefore I love thy commandments above gold; yea, above fine
+gold.
+
+119:128 Therefore I esteem all thy precepts concerning all things to
+be right; and I hate every false way.
+
+119:129 Thy testimonies are wonderful: therefore doth my soul keep
+them.
+
+119:130 The entrance of thy words giveth light; it giveth
+understanding unto the simple.
+
+119:131 I opened my mouth, and panted: for I longed for thy
+commandments.
+
+119:132 Look thou upon me, and be merciful unto me, as thou usest to
+do unto those that love thy name.
+
+119:133 Order my steps in thy word: and let not any iniquity have
+dominion over me.
+
+119:134 Deliver me from the oppression of man: so will I keep thy
+precepts.
+
+119:135 Make thy face to shine upon thy servant; and teach me thy
+statutes.
+
+119:136 Rivers of waters run down mine eyes, because they keep not thy
+law.
+
+119:137 Righteous art thou, O LORD, and upright are thy judgments.
+
+119:138 Thy testimonies that thou hast commanded are righteous and
+very faithful.
+
+119:139 My zeal hath consumed me, because mine enemies have forgotten
+thy words.
+
+119:140 Thy word is very pure: therefore thy servant loveth it.
+
+119:141 I am small and despised: yet do not I forget thy precepts.
+
+119:142 Thy righteousness is an everlasting righteousness, and thy law
+is the truth.
+
+119:143 Trouble and anguish have taken hold on me: yet thy
+commandments are my delights.
+
+119:144 The righteousness of thy testimonies is everlasting: give me
+understanding, and I shall live.
+
+119:145 I cried with my whole heart; hear me, O LORD: I will keep thy
+statutes.
+
+119:146 I cried unto thee; save me, and I shall keep thy testimonies.
+
+119:147 I prevented the dawning of the morning, and cried: I hoped in
+thy word.
+
+119:148 Mine eyes prevent the night watches, that I might meditate in
+thy word.
+
+119:149 Hear my voice according unto thy lovingkindness: O LORD,
+quicken me according to thy judgment.
+
+119:150 They draw nigh that follow after mischief: they are far from
+thy law.
+
+119:151 Thou art near, O LORD; and all thy commandments are truth.
+
+119:152 Concerning thy testimonies, I have known of old that thou hast
+founded them for ever.
+
+119:153 Consider mine affliction, and deliver me: for I do not forget
+thy law.
+
+119:154 Plead my cause, and deliver me: quicken me according to thy
+word.
+
+119:155 Salvation is far from the wicked: for they seek not thy
+statutes.
+
+119:156 Great are thy tender mercies, O LORD: quicken me according to
+thy judgments.
+
+119:157 Many are my persecutors and mine enemies; yet do I not decline
+from thy testimonies.
+
+119:158 I beheld the transgressors, and was grieved; because they kept
+not thy word.
+
+119:159 Consider how I love thy precepts: quicken me, O LORD,
+according to thy lovingkindness.
+
+119:160 Thy word is true from the beginning: and every one of thy
+righteous judgments endureth for ever.
+
+119:161 Princes have persecuted me without a cause: but my heart
+standeth in awe of thy word.
+
+119:162 I rejoice at thy word, as one that findeth great spoil.
+
+119:163 I hate and abhor lying: but thy law do I love.
+
+119:164 Seven times a day do I praise thee because of thy righteous
+judgments.
+
+119:165 Great peace have they which love thy law: and nothing shall
+offend them.
+
+119:166 LORD, I have hoped for thy salvation, and done thy
+commandments.
+
+119:167 My soul hath kept thy testimonies; and I love them
+exceedingly.
+
+119:168 I have kept thy precepts and thy testimonies: for all my ways
+are before thee.
+
+119:169 Let my cry come near before thee, O LORD: give me
+understanding according to thy word.
+
+119:170 Let my supplication come before thee: deliver me according to
+thy word.
+
+119:171 My lips shall utter praise, when thou hast taught me thy
+statutes.
+
+119:172 My tongue shall speak of thy word: for all thy commandments
+are righteousness.
+
+119:173 Let thine hand help me; for I have chosen thy precepts.
+
+119:174 I have longed for thy salvation, O LORD; and thy law is my
+delight.
+
+119:175 Let my soul live, and it shall praise thee; and let thy
+judgments help me.
+
+119:176 I have gone astray like a lost sheep; seek thy servant; for I
+do not forget thy commandments.
+
+
+
+120:1 In my distress I cried unto the LORD, and he heard me.
+
+120:2 Deliver my soul, O LORD, from lying lips, and from a deceitful
+tongue.
+
+120:3 What shall be given unto thee? or what shall be done unto thee,
+thou false tongue?
+
+120:4 Sharp arrows of the mighty, with coals of juniper.
+
+120:5 Woe is me, that I sojourn in Mesech, that I dwell in the tents
+of Kedar!
+
+120:6 My soul hath long dwelt with him that hateth peace.
+
+120:7 I am for peace: but when I speak, they are for war.
+
+
+
+121:1 I will lift up mine eyes unto the hills, from whence cometh my
+help.
+
+121:2 My help cometh from the LORD, which made heaven and earth.
+
+121:3 He will not suffer thy foot to be moved: he that keepeth thee
+will not slumber.
+
+121:4 Behold, he that keepeth Israel shall neither slumber nor sleep.
+
+121:5 The LORD is thy keeper: the LORD is thy shade upon thy right
+hand.
+
+121:6 The sun shall not smite thee by day, nor the moon by night.
+
+121:7 The LORD shall preserve thee from all evil: he shall preserve
+thy soul.
+
+121:8 The LORD shall preserve thy going out and thy coming in from
+this time forth, and even for evermore.
+
+
+
+122:1 I was glad when they said unto me, Let us go into the house of
+the LORD.
+
+122:2 Our feet shall stand within thy gates, O Jerusalem.
+
+122:3 Jerusalem is builded as a city that is compact together:
+
+122:4 Whither the tribes go up, the tribes of the LORD, unto the
+testimony of Israel, to give thanks unto the name of the LORD.
+
+122:5 For there are set thrones of judgment, the thrones of the house
+of David.
+
+122:6 Pray for the peace of Jerusalem: they shall prosper that love
+thee.
+
+122:7 Peace be within thy walls, and prosperity within thy palaces.
+
+122:8 For my brethren and companions' sakes, I will now say, Peace be
+within thee.
+
+122:9 Because of the house of the LORD our God I will seek thy good.
+
+
+
+123:1 Unto thee lift I up mine eyes, O thou that dwellest in the
+heavens.
+
+123:2 Behold, as the eyes of servants look unto the hand of their
+masters, and as the eyes of a maiden unto the hand of her mistress; so
+our eyes wait upon the LORD our God, until that he have mercy upon us.
+
+123:3 Have mercy upon us, O LORD, have mercy upon us: for we are
+exceedingly filled with contempt.
+
+123:4 Our soul is exceedingly filled with the scorning of those that
+are at ease, and with the contempt of the proud.
+
+
+
+124:1 If it had not been the LORD who was on our side, now may Israel
+say;
+
+124:2 If it had not been the LORD who was on our side, when men rose
+up against us:
+
+124:3 Then they had swallowed us up quick, when their wrath was
+kindled against us:
+
+124:4 Then the waters had overwhelmed us, the stream had gone over our
+soul:
+
+124:5 Then the proud waters had gone over our soul.
+
+124:6 Blessed be the LORD, who hath not given us as a prey to their
+teeth.
+
+124:7 Our soul is escaped as a bird out of the snare of the fowlers:
+the snare is broken, and we are escaped.
+
+124:8 Our help is in the name of the LORD, who made heaven and earth.
+
+
+
+125:1 They that trust in the LORD shall be as mount Zion, which cannot
+be removed, but abideth for ever.
+
+125:2 As the mountains are round about Jerusalem, so the LORD is round
+about his people from henceforth even for ever.
+
+125:3 For the rod of the wicked shall not rest upon the lot of the
+righteous; lest the righteous put forth their hands unto iniquity.
+
+125:4 Do good, O LORD, unto those that be good, and to them that are
+upright in their hearts.
+
+125:5 As for such as turn aside unto their crooked ways, the LORD
+shall lead them forth with the workers of iniquity: but peace shall be
+upon Israel.
+
+
+
+126:1 When the LORD turned again the captivity of Zion, we were like
+them that dream.
+
+126:2 Then was our mouth filled with laughter, and our tongue with
+singing: then said they among the heathen, The LORD hath done great
+things for them.
+
+126:3 The LORD hath done great things for us; whereof we are glad.
+
+126:4 Turn again our captivity, O LORD, as the streams in the south.
+
+126:5 They that sow in tears shall reap in joy.
+
+126:6 He that goeth forth and weepeth, bearing precious seed, shall
+doubtless come again with rejoicing, bringing his sheaves with him.
+
+
+
+127:1 Except the LORD build the house, they labour in vain that build
+it: except the LORD keep the city, the watchman waketh but in vain.
+
+127:2 It is vain for you to rise up early, to sit up late, to eat the
+bread of sorrows: for so he giveth his beloved sleep.
+
+127:3 Lo, children are an heritage of the LORD: and the fruit of the
+womb is his reward.
+
+127:4 As arrows are in the hand of a mighty man; so are children of
+the youth.
+
+127:5 Happy is the man that hath his quiver full of them: they shall
+not be ashamed, but they shall speak with the enemies in the gate.
+
+
+
+128:1 Blessed is every one that feareth the LORD; that walketh in his
+ways.
+
+128:2 For thou shalt eat the labour of thine hands: happy shalt thou
+be, and it shall be well with thee.
+
+128:3 Thy wife shall be as a fruitful vine by the sides of thine
+house: thy children like olive plants round about thy table.
+
+128:4 Behold, that thus shall the man be blessed that feareth the
+LORD.
+
+128:5 The LORD shall bless thee out of Zion: and thou shalt see the
+good of Jerusalem all the days of thy life.
+
+128:6 Yea, thou shalt see thy children's children, and peace upon
+Israel.
+
+
+
+129:1 Many a time have they afflicted me from my youth, may Israel now
+say:
+
+129:2 Many a time have they afflicted me from my youth: yet they have
+not prevailed against me.
+
+129:3 The plowers plowed upon my back: they made long their furrows.
+
+129:4 The LORD is righteous: he hath cut asunder the cords of the
+wicked.
+
+129:5 Let them all be confounded and turned back that hate Zion.
+
+129:6 Let them be as the grass upon the housetops, which withereth
+afore it groweth up:
+
+129:7 Wherewith the mower filleth not his hand; nor he that bindeth
+sheaves his bosom.
+
+129:8 Neither do they which go by say, The blessing of the LORD be
+upon you: we bless you in the name of the LORD.
+
+
+
+130:1 Out of the depths have I cried unto thee, O LORD.
+
+130:2 Lord, hear my voice: let thine ears be attentive to the voice of
+my supplications.
+
+130:3 If thou, LORD, shouldest mark iniquities, O Lord, who shall
+stand?
+
+130:4 But there is forgiveness with thee, that thou mayest be feared.
+
+130:5 I wait for the LORD, my soul doth wait, and in his word do I
+hope.
+
+130:6 My soul waiteth for the Lord more than they that watch for the
+morning: I say, more than they that watch for the morning.
+
+130:7 Let Israel hope in the LORD: for with the LORD there is mercy,
+and with him is plenteous redemption.
+
+130:8 And he shall redeem Israel from all his iniquities.
+
+
+
+131:1 Lord, my heart is not haughty, nor mine eyes lofty: neither do I
+exercise myself in great matters, or in things too high for me.
+
+131:2 Surely I have behaved and quieted myself, as a child that is
+weaned of his mother: my soul is even as a weaned child.
+
+131:3 Let Israel hope in the LORD from henceforth and for ever.
+
+
+
+132:1 Lord, remember David, and all his afflictions:
+
+132:2 How he sware unto the LORD, and vowed unto the mighty God of
+Jacob;
+
+132:3 Surely I will not come into the tabernacle of my house, nor go
+up into my bed;
+
+132:4 I will not give sleep to mine eyes, or slumber to mine eyelids,
+
+132:5 Until I find out a place for the LORD, an habitation for the
+mighty God of Jacob.
+
+132:6 Lo, we heard of it at Ephratah: we found it in the fields of the
+wood.
+
+132:7 We will go into his tabernacles: we will worship at his
+footstool.
+
+132:8 Arise, O LORD, into thy rest; thou, and the ark of thy strength.
+
+132:9 Let thy priests be clothed with righteousness; and let thy
+saints shout for joy.
+
+132:10 For thy servant David's sake turn not away the face of thine
+anointed.
+
+132:11 The LORD hath sworn in truth unto David; he will not turn from
+it; Of the fruit of thy body will I set upon thy throne.
+
+132:12 If thy children will keep my covenant and my testimony that I
+shall teach them, their children shall also sit upon thy throne for
+evermore.
+
+132:13 For the LORD hath chosen Zion; he hath desired it for his
+habitation.
+
+132:14 This is my rest for ever: here will I dwell; for I have desired
+it.
+
+132:15 I will abundantly bless her provision: I will satisfy her poor
+with bread.
+
+132:16 I will also clothe her priests with salvation: and her saints
+shall shout aloud for joy.
+
+132:17 There will I make the horn of David to bud: I have ordained a
+lamp for mine anointed.
+
+132:18 His enemies will I clothe with shame: but upon himself shall
+his crown flourish.
+
+
+
+133:1 Behold, how good and how pleasant it is for brethren to dwell
+together in unity!
+
+133:2 It is like the precious ointment upon the head, that ran down
+upon the beard, even Aaron's beard: that went down to the skirts of
+his garments;
+
+133:3 As the dew of Hermon, and as the dew that descended upon the
+mountains of Zion: for there the LORD commanded the blessing, even
+life for evermore.
+
+
+
+134:1 Behold, bless ye the LORD, all ye servants of the LORD, which by
+night stand in the house of the LORD.
+
+134:2 Lift up your hands in the sanctuary, and bless the LORD.
+
+134:3 The LORD that made heaven and earth bless thee out of Zion.
+
+
+
+135:1 Praise ye the LORD. Praise ye the name of the LORD; praise him,
+O ye servants of the LORD.
+
+135:2 Ye that stand in the house of the LORD, in the courts of the
+house of our God.
+
+135:3 Praise the LORD; for the LORD is good: sing praises unto his
+name; for it is pleasant.
+
+135:4 For the LORD hath chosen Jacob unto himself, and Israel for his
+peculiar treasure.
+
+135:5 For I know that the LORD is great, and that our Lord is above
+all gods.
+
+135:6 Whatsoever the LORD pleased, that did he in heaven, and in
+earth, in the seas, and all deep places.
+
+135:7 He causeth the vapours to ascend from the ends of the earth; he
+maketh lightnings for the rain; he bringeth the wind out of his
+treasuries.
+
+135:8 Who smote the firstborn of Egypt, both of man and beast.
+
+135:9 Who sent tokens and wonders into the midst of thee, O Egypt,
+upon Pharaoh, and upon all his servants.
+
+135:10 Who smote great nations, and slew mighty kings;
+
+135:11 Sihon king of the Amorites, and Og king of Bashan, and all the
+kingdoms of Canaan:
+
+135:12 And gave their land for an heritage, an heritage unto Israel
+his people.
+
+135:13 Thy name, O LORD, endureth for ever; and thy memorial, O LORD,
+throughout all generations.
+
+135:14 For the LORD will judge his people, and he will repent himself
+concerning his servants.
+
+135:15 The idols of the heathen are silver and gold, the work of men's
+hands.
+
+135:16 They have mouths, but they speak not; eyes have they, but they
+see not;
+
+135:17 They have ears, but they hear not; neither is there any breath
+in their mouths.
+
+135:18 They that make them are like unto them: so is every one that
+trusteth in them.
+
+135:19 Bless the LORD, O house of Israel: bless the LORD, O house of
+Aaron:
+
+135:20 Bless the LORD, O house of Levi: ye that fear the LORD, bless
+the LORD.
+
+135:21 Blessed be the LORD out of Zion, which dwelleth at Jerusalem.
+
+Praise ye the LORD.
+
+
+
+136:1 O give thanks unto the LORD; for he is good: for his mercy
+endureth for ever.
+
+136:2 O give thanks unto the God of gods: for his mercy endureth for
+ever.
+
+136:3 O give thanks to the Lord of lords: for his mercy endureth for
+ever.
+
+136:4 To him who alone doeth great wonders: for his mercy endureth for
+ever.
+
+136:5 To him that by wisdom made the heavens: for his mercy endureth
+for ever.
+
+136:6 To him that stretched out the earth above the waters: for his
+mercy endureth for ever.
+
+136:7 To him that made great lights: for his mercy endureth for ever:
+
+136:8 The sun to rule by day: for his mercy endureth for ever:
+
+136:9 The moon and stars to rule by night: for his mercy endureth for
+ever.
+
+136:10 To him that smote Egypt in their firstborn: for his mercy
+endureth for ever:
+
+136:11 And brought out Israel from among them: for his mercy endureth
+for ever:
+
+136:12 With a strong hand, and with a stretched out arm: for his mercy
+endureth for ever.
+
+136:13 To him which divided the Red sea into parts: for his mercy
+endureth for ever:
+
+136:14 And made Israel to pass through the midst of it: for his mercy
+endureth for ever:
+
+136:15 But overthrew Pharaoh and his host in the Red sea: for his
+mercy endureth for ever.
+
+136:16 To him which led his people through the wilderness: for his
+mercy endureth for ever.
+
+136:17 To him which smote great kings: for his mercy endureth for
+ever:
+
+136:18 And slew famous kings: for his mercy endureth for ever:
+
+136:19 Sihon king of the Amorites: for his mercy endureth for ever:
+
+136:20 And Og the king of Bashan: for his mercy endureth for ever:
+
+136:21 And gave their land for an heritage: for his mercy endureth for
+ever:
+
+136:22 Even an heritage unto Israel his servant: for his mercy
+endureth for ever.
+
+136:23 Who remembered us in our low estate: for his mercy endureth for
+ever:
+
+136:24 And hath redeemed us from our enemies: for his mercy endureth
+for ever.
+
+136:25 Who giveth food to all flesh: for his mercy endureth for ever.
+
+136:26 O give thanks unto the God of heaven: for his mercy endureth
+for ever.
+
+
+
+137:1 By the rivers of Babylon, there we sat down, yea, we wept, when
+we remembered Zion.
+
+137:2 We hanged our harps upon the willows in the midst thereof.
+
+137:3 For there they that carried us away captive required of us a
+song; and they that wasted us required of us mirth, saying, Sing us
+one of the songs of Zion.
+
+137:4 How shall we sing the LORD's song in a strange land?
+
+137:5 If I forget thee, O Jerusalem, let my right hand forget her
+cunning.
+
+137:6 If I do not remember thee, let my tongue cleave to the roof of
+my mouth; if I prefer not Jerusalem above my chief joy.
+
+137:7 Remember, O LORD, the children of Edom in the day of Jerusalem;
+who said, Rase it, rase it, even to the foundation thereof.
+
+137:8 O daughter of Babylon, who art to be destroyed; happy shall he
+be, that rewardeth thee as thou hast served us.
+
+137:9 Happy shall he be, that taketh and dasheth thy little ones
+against the stones.
+
+
+
+138:1 I will praise thee with my whole heart: before the gods will I
+sing praise unto thee.
+
+138:2 I will worship toward thy holy temple, and praise thy name for
+thy lovingkindness and for thy truth: for thou hast magnified thy word
+above all thy name.
+
+138:3 In the day when I cried thou answeredst me, and strengthenedst
+me with strength in my soul.
+
+138:4 All the kings of the earth shall praise thee, O LORD, when they
+hear the words of thy mouth.
+
+138:5 Yea, they shall sing in the ways of the LORD: for great is the
+glory of the LORD.
+
+138:6 Though the LORD be high, yet hath he respect unto the lowly: but
+the proud he knoweth afar off.
+
+138:7 Though I walk in the midst of trouble, thou wilt revive me: thou
+shalt stretch forth thine hand against the wrath of mine enemies, and
+thy right hand shall save me.
+
+138:8 The LORD will perfect that which concerneth me: thy mercy, O
+LORD, endureth for ever: forsake not the works of thine own hands.
+
+
+
+139:1 O lord, thou hast searched me, and known me.
+
+139:2 Thou knowest my downsitting and mine uprising, thou
+understandest my thought afar off.
+
+139:3 Thou compassest my path and my lying down, and art acquainted
+with all my ways.
+
+139:4 For there is not a word in my tongue, but, lo, O LORD, thou
+knowest it altogether.
+
+139:5 Thou hast beset me behind and before, and laid thine hand upon
+me.
+
+139:6 Such knowledge is too wonderful for me; it is high, I cannot
+attain unto it.
+
+139:7 Whither shall I go from thy spirit? or whither shall I flee from
+thy presence?
+
+139:8 If I ascend up into heaven, thou art there: if I make my bed in
+hell, behold, thou art there.
+
+139:9 If I take the wings of the morning, and dwell in the uttermost
+parts of the sea;
+
+139:10 Even there shall thy hand lead me, and thy right hand shall
+hold me.
+
+139:11 If I say, Surely the darkness shall cover me; even the night
+shall be light about me.
+
+139:12 Yea, the darkness hideth not from thee; but the night shineth
+as the day: the darkness and the light are both alike to thee.
+
+139:13 For thou hast possessed my reins: thou hast covered me in my
+mother's womb.
+
+139:14 I will praise thee; for I am fearfully and wonderfully made:
+marvellous are thy works; and that my soul knoweth right well.
+
+139:15 My substance was not hid from thee, when I was made in secret,
+and curiously wrought in the lowest parts of the earth.
+
+139:16 Thine eyes did see my substance, yet being unperfect; and in
+thy book all my members were written, which in continuance were
+fashioned, when as yet there was none of them.
+
+139:17 How precious also are thy thoughts unto me, O God! how great is
+the sum of them!
+
+139:18 If I should count them, they are more in number than the sand:
+when I awake, I am still with thee.
+
+139:19 Surely thou wilt slay the wicked, O God: depart from me
+therefore, ye bloody men.
+
+139:20 For they speak against thee wickedly, and thine enemies take
+thy name in vain.
+
+139:21 Do not I hate them, O LORD, that hate thee? and am not I
+grieved with those that rise up against thee?
+
+139:22 I hate them with perfect hatred: I count them mine enemies.
+
+139:23 Search me, O God, and know my heart: try me, and know my
+thoughts:
+
+139:24 And see if there be any wicked way in me, and lead me in the
+way everlasting.
+
+
+
+140:1 Deliver me, O LORD, from the evil man: preserve me from the
+violent man;
+
+140:2 Which imagine mischiefs in their heart; continually are they
+gathered together for war.
+
+140:3 They have sharpened their tongues like a serpent; adders' poison
+is under their lips. Selah.
+
+140:4 Keep me, O LORD, from the hands of the wicked; preserve me from
+the violent man; who have purposed to overthrow my goings.
+
+140:5 The proud have hid a snare for me, and cords; they have spread a
+net by the wayside; they have set gins for me. Selah.
+
+140:6 I said unto the LORD, Thou art my God: hear the voice of my
+supplications, O LORD.
+
+140:7 O GOD the Lord, the strength of my salvation, thou hast covered
+my head in the day of battle.
+
+140:8 Grant not, O LORD, the desires of the wicked: further not his
+wicked device; lest they exalt themselves. Selah.
+
+140:9 As for the head of those that compass me about, let the mischief
+of their own lips cover them.
+
+140:10 Let burning coals fall upon them: let them be cast into the
+fire; into deep pits, that they rise not up again.
+
+140:11 Let not an evil speaker be established in the earth: evil shall
+hunt the violent man to overthrow him.
+
+140:12 I know that the LORD will maintain the cause of the afflicted,
+and the right of the poor.
+
+140:13 Surely the righteous shall give thanks unto thy name: the
+upright shall dwell in thy presence.
+
+
+
+141:1 Lord, I cry unto thee: make haste unto me; give ear unto my
+voice, when I cry unto thee.
+
+141:2 Let my prayer be set forth before thee as incense; and the
+lifting up of my hands as the evening sacrifice.
+
+141:3 Set a watch, O LORD, before my mouth; keep the door of my lips.
+
+141:4 Incline not my heart to any evil thing, to practise wicked works
+with men that work iniquity: and let me not eat of their dainties.
+
+141:5 Let the righteous smite me; it shall be a kindness: and let him
+reprove me; it shall be an excellent oil, which shall not break my
+head: for yet my prayer also shall be in their calamities.
+
+141:6 When their judges are overthrown in stony places, they shall
+hear my words; for they are sweet.
+
+141:7 Our bones are scattered at the grave's mouth, as when one
+cutteth and cleaveth wood upon the earth.
+
+141:8 But mine eyes are unto thee, O GOD the Lord: in thee is my
+trust; leave not my soul destitute.
+
+141:9 Keep me from the snares which they have laid for me, and the
+gins of the workers of iniquity.
+
+141:10 Let the wicked fall into their own nets, whilst that I withal
+escape.
+
+
+
+142:1 I cried unto the LORD with my voice; with my voice unto the LORD
+did I make my supplication.
+
+142:2 I poured out my complaint before him; I shewed before him my
+trouble.
+
+142:3 When my spirit was overwhelmed within me, then thou knewest my
+path.
+
+In the way wherein I walked have they privily laid a snare for me.
+
+142:4 I looked on my right hand, and beheld, but there was no man that
+would know me: refuge failed me; no man cared for my soul.
+
+142:5 I cried unto thee, O LORD: I said, Thou art my refuge and my
+portion in the land of the living.
+
+142:6 Attend unto my cry; for I am brought very low: deliver me from
+my persecutors; for they are stronger than I.
+
+142:7 Bring my soul out of prison, that I may praise thy name: the
+righteous shall compass me about; for thou shalt deal bountifully with
+me.
+
+
+
+143:1 Hear my prayer, O LORD, give ear to my supplications: in thy
+faithfulness answer me, and in thy righteousness.
+
+143:2 And enter not into judgment with thy servant: for in thy sight
+shall no man living be justified.
+
+143:3 For the enemy hath persecuted my soul; he hath smitten my life
+down to the ground; he hath made me to dwell in darkness, as those
+that have been long dead.
+
+143:4 Therefore is my spirit overwhelmed within me; my heart within me
+is desolate.
+
+143:5 I remember the days of old; I meditate on all thy works; I muse
+on the work of thy hands.
+
+143:6 I stretch forth my hands unto thee: my soul thirsteth after
+thee, as a thirsty land. Selah.
+
+143:7 Hear me speedily, O LORD: my spirit faileth: hide not thy face
+from me, lest I be like unto them that go down into the pit.
+
+143:8 Cause me to hear thy lovingkindness in the morning; for in thee
+do I trust: cause me to know the way wherein I should walk; for I lift
+up my soul unto thee.
+
+143:9 Deliver me, O LORD, from mine enemies: I flee unto thee to hide
+me.
+
+143:10 Teach me to do thy will; for thou art my God: thy spirit is
+good; lead me into the land of uprightness.
+
+143:11 Quicken me, O LORD, for thy name's sake: for thy righteousness'
+sake bring my soul out of trouble.
+
+143:12 And of thy mercy cut off mine enemies, and destroy all them
+that afflict my soul: for I am thy servant.
+
+
+
+144:1 Blessed be the LORD my strength which teacheth my hands to war,
+and my fingers to fight:
+
+144:2 My goodness, and my fortress; my high tower, and my deliverer;
+my shield, and he in whom I trust; who subdueth my people under me.
+
+144:3 LORD, what is man, that thou takest knowledge of him! or the son
+of man, that thou makest account of him!
+
+144:4 Man is like to vanity: his days are as a shadow that passeth
+away.
+
+144:5 Bow thy heavens, O LORD, and come down: touch the mountains, and
+they shall smoke.
+
+144:6 Cast forth lightning, and scatter them: shoot out thine arrows,
+and destroy them.
+
+144:7 Send thine hand from above; rid me, and deliver me out of great
+waters, from the hand of strange children;
+
+144:8 Whose mouth speaketh vanity, and their right hand is a right
+hand of falsehood.
+
+144:9 I will sing a new song unto thee, O God: upon a psaltery and an
+instrument of ten strings will I sing praises unto thee.
+
+144:10 It is he that giveth salvation unto kings: who delivereth David
+his servant from the hurtful sword.
+
+144:11 Rid me, and deliver me from the hand of strange children, whose
+mouth speaketh vanity, and their right hand is a right hand of
+falsehood:
+
+144:12 That our sons may be as plants grown up in their youth; that
+our daughters may be as corner stones, polished after the similitude
+of a palace:
+
+144:13 That our garners may be full, affording all manner of store:
+that our sheep may bring forth thousands and ten thousands in our
+streets:
+
+144:14 That our oxen may be strong to labour; that there be no
+breaking in, nor going out; that there be no complaining in our
+streets.
+
+144:15 Happy is that people, that is in such a case: yea, happy is
+that people, whose God is the LORD.
+
+
+
+145:1 I will extol thee, my God, O king; and I will bless thy name for
+ever and ever.
+
+145:2 Every day will I bless thee; and I will praise thy name for ever
+and ever.
+
+145:3 Great is the LORD, and greatly to be praised; and his greatness
+is unsearchable.
+
+145:4 One generation shall praise thy works to another, and shall
+declare thy mighty acts.
+
+145:5 I will speak of the glorious honour of thy majesty, and of thy
+wondrous works.
+
+145:6 And men shall speak of the might of thy terrible acts: and I
+will declare thy greatness.
+
+145:7 They shall abundantly utter the memory of thy great goodness,
+and shall sing of thy righteousness.
+
+145:8 The LORD is gracious, and full of compassion; slow to anger, and
+of great mercy.
+
+145:9 The LORD is good to all: and his tender mercies are over all his
+works.
+
+145:10 All thy works shall praise thee, O LORD; and thy saints shall
+bless thee.
+
+145:11 They shall speak of the glory of thy kingdom, and talk of thy
+power;
+
+145:12 To make known to the sons of men his mighty acts, and the
+glorious majesty of his kingdom.
+
+145:13 Thy kingdom is an everlasting kingdom, and thy dominion
+endureth throughout all generations.
+
+145:14 The LORD upholdeth all that fall, and raiseth up all those that
+be bowed down.
+
+145:15 The eyes of all wait upon thee; and thou givest them their meat
+in due season.
+
+145:16 Thou openest thine hand, and satisfiest the desire of every
+living thing.
+
+145:17 The LORD is righteous in all his ways, and holy in all his
+works.
+
+145:18 The LORD is nigh unto all them that call upon him, to all that
+call upon him in truth.
+
+145:19 He will fulfil the desire of them that fear him: he also will
+hear their cry, and will save them.
+
+145:20 The LORD preserveth all them that love him: but all the wicked
+will he destroy.
+
+145:21 My mouth shall speak the praise of the LORD: and let all flesh
+bless his holy name for ever and ever.
+
+
+
+146:1 Praise ye the LORD. Praise the LORD, O my soul.
+
+146:2 While I live will I praise the LORD: I will sing praises unto my
+God while I have any being.
+
+146:3 Put not your trust in princes, nor in the son of man, in whom
+there is no help.
+
+146:4 His breath goeth forth, he returneth to his earth; in that very
+day his thoughts perish.
+
+146:5 Happy is he that hath the God of Jacob for his help, whose hope
+is in the LORD his God:
+
+146:6 Which made heaven, and earth, the sea, and all that therein is:
+which keepeth truth for ever:
+
+146:7 Which executeth judgment for the oppressed: which giveth food to
+the hungry. The LORD looseth the prisoners:
+
+146:8 The LORD openeth the eyes of the blind: the LORD raiseth them
+that are bowed down: the LORD loveth the righteous:
+
+146:9 The LORD preserveth the strangers; he relieveth the fatherless
+and widow: but the way of the wicked he turneth upside down.
+
+146:10 The LORD shall reign for ever, even thy God, O Zion, unto all
+generations. Praise ye the LORD.
+
+
+
+147:1 Praise ye the LORD: for it is good to sing praises unto our God;
+for it is pleasant; and praise is comely.
+
+147:2 The LORD doth build up Jerusalem: he gathereth together the
+outcasts of Israel.
+
+147:3 He healeth the broken in heart, and bindeth up their wounds.
+
+147:4 He telleth the number of the stars; he calleth them all by their
+names.
+
+147:5 Great is our Lord, and of great power: his understanding is
+infinite.
+
+147:6 The LORD lifteth up the meek: he casteth the wicked down to the
+ground.
+
+147:7 Sing unto the LORD with thanksgiving; sing praise upon the harp
+unto our God:
+
+147:8 Who covereth the heaven with clouds, who prepareth rain for the
+earth, who maketh grass to grow upon the mountains.
+
+147:9 He giveth to the beast his food, and to the young ravens which
+cry.
+
+147:10 He delighteth not in the strength of the horse: he taketh not
+pleasure in the legs of a man.
+
+147:11 The LORD taketh pleasure in them that fear him, in those that
+hope in his mercy.
+
+147:12 Praise the LORD, O Jerusalem; praise thy God, O Zion.
+
+147:13 For he hath strengthened the bars of thy gates; he hath blessed
+thy children within thee.
+
+147:14 He maketh peace in thy borders, and filleth thee with the
+finest of the wheat.
+
+147:15 He sendeth forth his commandment upon earth: his word runneth
+very swiftly.
+
+147:16 He giveth snow like wool: he scattereth the hoarfrost like
+ashes.
+
+147:17 He casteth forth his ice like morsels: who can stand before his
+cold?
+
+147:18 He sendeth out his word, and melteth them: he causeth his wind
+to blow, and the waters flow.
+
+147:19 He sheweth his word unto Jacob, his statutes and his judgments
+unto Israel.
+
+147:20 He hath not dealt so with any nation: and as for his judgments,
+they have not known them. Praise ye the LORD.
+
+
+
+148:1 Praise ye the LORD. Praise ye the LORD from the heavens: praise
+him in the heights.
+
+148:2 Praise ye him, all his angels: praise ye him, all his hosts.
+
+148:3 Praise ye him, sun and moon: praise him, all ye stars of light.
+
+148:4 Praise him, ye heavens of heavens, and ye waters that be above
+the heavens.
+
+148:5 Let them praise the name of the LORD: for he commanded, and they
+were created.
+
+148:6 He hath also stablished them for ever and ever: he hath made a
+decree which shall not pass.
+
+148:7 Praise the LORD from the earth, ye dragons, and all deeps:
+
+148:8 Fire, and hail; snow, and vapours; stormy wind fulfilling his
+word:
+
+148:9 Mountains, and all hills; fruitful trees, and all cedars:
+
+148:10 Beasts, and all cattle; creeping things, and flying fowl:
+
+148:11 Kings of the earth, and all people; princes, and all judges of
+the earth:
+
+148:12 Both young men, and maidens; old men, and children:
+
+148:13 Let them praise the name of the LORD: for his name alone is
+excellent; his glory is above the earth and heaven.
+
+148:14 He also exalteth the horn of his people, the praise of all his
+saints; even of the children of Israel, a people near unto him. Praise
+ye the LORD.
+
+
+
+149:1 Praise ye the LORD. Sing unto the LORD a new song, and his
+praise in the congregation of saints.
+
+149:2 Let Israel rejoice in him that made him: let the children of
+Zion be joyful in their King.
+
+149:3 Let them praise his name in the dance: let them sing praises
+unto him with the timbrel and harp.
+
+149:4 For the LORD taketh pleasure in his people: he will beautify the
+meek with salvation.
+
+149:5 Let the saints be joyful in glory: let them sing aloud upon
+their beds.
+
+149:6 Let the high praises of God be in their mouth, and a two-edged
+sword in their hand;
+
+149:7 To execute vengeance upon the heathen, and punishments upon the
+people;
+
+149:8 To bind their kings with chains, and their nobles with fetters
+of iron;
+
+149:9 To execute upon them the judgment written: this honour have all
+his saints. Praise ye the LORD.
+
+
+
+150:1 Praise ye the LORD. Praise God in his sanctuary: praise him in
+the firmament of his power.
+
+150:2 Praise him for his mighty acts: praise him according to his
+excellent greatness.
+
+150:3 Praise him with the sound of the trumpet: praise him with the
+psaltery and harp.
+
+150:4 Praise him with the timbrel and dance: praise him with stringed
+instruments and organs.
+
+150:5 Praise him upon the loud cymbals: praise him upon the high
+sounding cymbals.
+
+150:6 Let every thing that hath breath praise the LORD. Praise ye the LORD.
+
+
+
+
+The Proverbs
+
+
+1:1 The proverbs of Solomon the son of David, king of Israel; 1:2 To
+know wisdom and instruction; to perceive the words of understanding;
+1:3 To receive the instruction of wisdom, justice, and judgment, and
+equity; 1:4 To give subtilty to the simple, to the young man knowledge
+and discretion.
+
+1:5 A wise man will hear, and will increase learning; and a man of
+understanding shall attain unto wise counsels: 1:6 To understand a
+proverb, and the interpretation; the words of the wise, and their dark
+sayings.
+
+1:7 The fear of the LORD is the beginning of knowledge: but fools
+despise wisdom and instruction.
+
+1:8 My son, hear the instruction of thy father, and forsake not the
+law of thy mother: 1:9 For they shall be an ornament of grace unto thy
+head, and chains about thy neck.
+
+1:10 My son, if sinners entice thee, consent thou not.
+
+1:11 If they say, Come with us, let us lay wait for blood, let us lurk
+privily for the innocent without cause: 1:12 Let us swallow them up
+alive as the grave; and whole, as those that go down into the pit:
+1:13 We shall find all precious substance, we shall fill our houses
+with spoil: 1:14 Cast in thy lot among us; let us all have one purse:
+1:15 My son, walk not thou in the way with them; refrain thy foot from
+their path: 1:16 For their feet run to evil, and make haste to shed
+blood.
+
+1:17 Surely in vain the net is spread in the sight of any bird.
+
+1:18 And they lay wait for their own blood; they lurk privily for
+their own lives.
+
+1:19 So are the ways of every one that is greedy of gain; which taketh
+away the life of the owners thereof.
+
+1:20 Wisdom crieth without; she uttereth her voice in the streets:
+1:21 She crieth in the chief place of concourse, in the openings of
+the gates: in the city she uttereth her words, saying, 1:22 How long,
+ye simple ones, will ye love simplicity? and the scorners delight in
+their scorning, and fools hate knowledge? 1:23 Turn you at my
+reproof: behold, I will pour out my spirit unto you, I will make known
+my words unto you.
+
+1:24 Because I have called, and ye refused; I have stretched out my
+hand, and no man regarded; 1:25 But ye have set at nought all my
+counsel, and would none of my reproof: 1:26 I also will laugh at your
+calamity; I will mock when your fear cometh; 1:27 When your fear
+cometh as desolation, and your destruction cometh as a whirlwind; when
+distress and anguish cometh upon you.
+
+1:28 Then shall they call upon me, but I will not answer; they shall
+seek me early, but they shall not find me: 1:29 For that they hated
+knowledge, and did not choose the fear of the LORD: 1:30 They would
+none of my counsel: they despised all my reproof.
+
+1:31 Therefore shall they eat of the fruit of their own way, and be
+filled with their own devices.
+
+1:32 For the turning away of the simple shall slay them, and the
+prosperity of fools shall destroy them.
+
+1:33 But whoso hearkeneth unto me shall dwell safely, and shall be
+quiet from fear of evil.
+
+2:1 My son, if thou wilt receive my words, and hide my commandments
+with thee; 2:2 So that thou incline thine ear unto wisdom, and apply
+thine heart to understanding; 2:3 Yea, if thou criest after knowledge,
+and liftest up thy voice for understanding; 2:4 If thou seekest her as
+silver, and searchest for her as for hid treasures; 2:5 Then shalt
+thou understand the fear of the LORD, and find the knowledge of God.
+
+2:6 For the LORD giveth wisdom: out of his mouth cometh knowledge and
+understanding.
+
+2:7 He layeth up sound wisdom for the righteous: he is a buckler to
+them that walk uprightly.
+
+2:8 He keepeth the paths of judgment, and preserveth the way of his
+saints.
+
+2:9 Then shalt thou understand righteousness, and judgment, and
+equity; yea, every good path.
+
+2:10 When wisdom entereth into thine heart, and knowledge is pleasant
+unto thy soul; 2:11 Discretion shall preserve thee, understanding
+shall keep thee: 2:12 To deliver thee from the way of the evil man,
+from the man that speaketh froward things; 2:13 Who leave the paths of
+uprightness, to walk in the ways of darkness; 2:14 Who rejoice to do
+evil, and delight in the frowardness of the wicked; 2:15 Whose ways
+are crooked, and they froward in their paths: 2:16 To deliver thee
+from the strange woman, even from the stranger which flattereth with
+her words; 2:17 Which forsaketh the guide of her youth, and forgetteth
+the covenant of her God.
+
+2:18 For her house inclineth unto death, and her paths unto the dead.
+
+2:19 None that go unto her return again, neither take they hold of the
+paths of life.
+
+2:20 That thou mayest walk in the way of good men, and keep the paths
+of the righteous.
+
+2:21 For the upright shall dwell in the land, and the perfect shall
+remain in it.
+
+2:22 But the wicked shall be cut off from the earth, and the
+transgressors shall be rooted out of it.
+
+3:1 My son, forget not my law; but let thine heart keep my
+commandments: 3:2 For length of days, and long life, and peace, shall
+they add to thee.
+
+3:3 Let not mercy and truth forsake thee: bind them about thy neck;
+write them upon the table of thine heart: 3:4 So shalt thou find
+favour and good understanding in the sight of God and man.
+
+3:5 Trust in the LORD with all thine heart; and lean not unto thine
+own understanding.
+
+3:6 In all thy ways acknowledge him, and he shall direct thy paths.
+
+3:7 Be not wise in thine own eyes: fear the LORD, and depart from
+evil.
+
+3:8 It shall be health to thy navel, and marrow to thy bones.
+
+3:9 Honour the LORD with thy substance, and with the firstfruits of
+all thine increase: 3:10 So shall thy barns be filled with plenty, and
+thy presses shall burst out with new wine.
+
+3:11 My son, despise not the chastening of the LORD; neither be weary
+of his correction: 3:12 For whom the LORD loveth he correcteth; even
+as a father the son in whom he delighteth.
+
+3:13 Happy is the man that findeth wisdom, and the man that getteth
+understanding.
+
+3:14 For the merchandise of it is better than the merchandise of
+silver, and the gain thereof than fine gold.
+
+3:15 She is more precious than rubies: and all the things thou canst
+desire are not to be compared unto her.
+
+3:16 Length of days is in her right hand; and in her left hand riches
+and honour.
+
+3:17 Her ways are ways of pleasantness, and all her paths are peace.
+
+3:18 She is a tree of life to them that lay hold upon her: and happy
+is every one that retaineth her.
+
+3:19 The LORD by wisdom hath founded the earth; by understanding hath
+he established the heavens.
+
+3:20 By his knowledge the depths are broken up, and the clouds drop
+down the dew.
+
+3:21 My son, let not them depart from thine eyes: keep sound wisdom
+and discretion: 3:22 So shall they be life unto thy soul, and grace to
+thy neck.
+
+3:23 Then shalt thou walk in thy way safely, and thy foot shall not
+stumble.
+
+3:24 When thou liest down, thou shalt not be afraid: yea, thou shalt
+lie down, and thy sleep shall be sweet.
+
+3:25 Be not afraid of sudden fear, neither of the desolation of the
+wicked, when it cometh.
+
+3:26 For the LORD shall be thy confidence, and shall keep thy foot
+from being taken.
+
+3:27 Withhold not good from them to whom it is due, when it is in the
+power of thine hand to do it.
+
+3:28 Say not unto thy neighbour, Go, and come again, and to morrow I
+will give; when thou hast it by thee.
+
+3:29 Devise not evil against thy neighbour, seeing he dwelleth
+securely by thee.
+
+3:30 Strive not with a man without cause, if he have done thee no
+harm.
+
+3:31 Envy thou not the oppressor, and choose none of his ways.
+
+3:32 For the froward is abomination to the LORD: but his secret is
+with the righteous.
+
+3:33 The curse of the LORD is in the house of the wicked: but he
+blesseth the habitation of the just.
+
+3:34 Surely he scorneth the scorners: but he giveth grace unto the
+lowly.
+
+3:35 The wise shall inherit glory: but shame shall be the promotion of
+fools.
+
+4:1 Hear, ye children, the instruction of a father, and attend to know
+understanding.
+
+4:2 For I give you good doctrine, forsake ye not my law.
+
+4:3 For I was my father's son, tender and only beloved in the sight of
+my mother.
+
+4:4 He taught me also, and said unto me, Let thine heart retain my
+words: keep my commandments, and live.
+
+4:5 Get wisdom, get understanding: forget it not; neither decline from
+the words of my mouth.
+
+4:6 Forsake her not, and she shall preserve thee: love her, and she
+shall keep thee.
+
+4:7 Wisdom is the principal thing; therefore get wisdom: and with all
+thy getting get understanding.
+
+4:8 Exalt her, and she shall promote thee: she shall bring thee to
+honour, when thou dost embrace her.
+
+4:9 She shall give to thine head an ornament of grace: a crown of
+glory shall she deliver to thee.
+
+4:10 Hear, O my son, and receive my sayings; and the years of thy life
+shall be many.
+
+4:11 I have taught thee in the way of wisdom; I have led thee in right
+paths.
+
+4:12 When thou goest, thy steps shall not be straitened; and when thou
+runnest, thou shalt not stumble.
+
+4:13 Take fast hold of instruction; let her not go: keep her; for she
+is thy life.
+
+4:14 Enter not into the path of the wicked, and go not in the way of
+evil men.
+
+4:15 Avoid it, pass not by it, turn from it, and pass away.
+
+4:16 For they sleep not, except they have done mischief; and their
+sleep is taken away, unless they cause some to fall.
+
+4:17 For they eat the bread of wickedness, and drink the wine of
+violence.
+
+4:18 But the path of the just is as the shining light, that shineth
+more and more unto the perfect day.
+
+4:19 The way of the wicked is as darkness: they know not at what they
+stumble.
+
+4:20 My son, attend to my words; incline thine ear unto my sayings.
+
+4:21 Let them not depart from thine eyes; keep them in the midst of
+thine heart.
+
+4:22 For they are life unto those that find them, and health to all
+their flesh.
+
+4:23 Keep thy heart with all diligence; for out of it are the issues
+of life.
+
+4:24 Put away from thee a froward mouth, and perverse lips put far
+from thee.
+
+4:25 Let thine eyes look right on, and let thine eyelids look straight
+before thee.
+
+4:26 Ponder the path of thy feet, and let all thy ways be established.
+
+4:27 Turn not to the right hand nor to the left: remove thy foot from
+evil.
+
+5:1 My son, attend unto my wisdom, and bow thine ear to my
+understanding: 5:2 That thou mayest regard discretion, and that thy
+lips may keep knowledge.
+
+5:3 For the lips of a strange woman drop as an honeycomb, and her
+mouth is smoother than oil: 5:4 But her end is bitter as wormwood,
+sharp as a two-edged sword.
+
+5:5 Her feet go down to death; her steps take hold on hell.
+
+5:6 Lest thou shouldest ponder the path of life, her ways are
+moveable, that thou canst not know them.
+
+5:7 Hear me now therefore, O ye children, and depart not from the
+words of my mouth.
+
+5:8 Remove thy way far from her, and come not nigh the door of her
+house: 5:9 Lest thou give thine honour unto others, and thy years unto
+the cruel: 5:10 Lest strangers be filled with thy wealth; and thy
+labours be in the house of a stranger; 5:11 And thou mourn at the
+last, when thy flesh and thy body are consumed, 5:12 And say, How have
+I hated instruction, and my heart despised reproof; 5:13 And have not
+obeyed the voice of my teachers, nor inclined mine ear to them that
+instructed me! 5:14 I was almost in all evil in the midst of the
+congregation and assembly.
+
+5:15 Drink waters out of thine own cistern, and running waters out of
+thine own well.
+
+5:16 Let thy fountains be dispersed abroad, and rivers of waters in
+the streets.
+
+5:17 Let them be only thine own, and not strangers' with thee.
+
+5:18 Let thy fountain be blessed: and rejoice with the wife of thy
+youth.
+
+5:19 Let her be as the loving hind and pleasant roe; let her breasts
+satisfy thee at all times; and be thou ravished always with her love.
+
+5:20 And why wilt thou, my son, be ravished with a strange woman, and
+embrace the bosom of a stranger? 5:21 For the ways of man are before
+the eyes of the LORD, and he pondereth all his goings.
+
+5:22 His own iniquities shall take the wicked himself, and he shall be
+holden with the cords of his sins.
+
+5:23 He shall die without instruction; and in the greatness of his
+folly he shall go astray.
+
+6:1 My son, if thou be surety for thy friend, if thou hast stricken
+thy hand with a stranger, 6:2 Thou art snared with the words of thy
+mouth, thou art taken with the words of thy mouth.
+
+6:3 Do this now, my son, and deliver thyself, when thou art come into
+the hand of thy friend; go, humble thyself, and make sure thy friend.
+
+6:4 Give not sleep to thine eyes, nor slumber to thine eyelids.
+
+6:5 Deliver thyself as a roe from the hand of the hunter, and as a
+bird from the hand of the fowler.
+
+6:6 Go to the ant, thou sluggard; consider her ways, and be wise: 6:7
+Which having no guide, overseer, or ruler, 6:8 Provideth her meat in
+the summer, and gathereth her food in the harvest.
+
+6:9 How long wilt thou sleep, O sluggard? when wilt thou arise out of
+thy sleep? 6:10 Yet a little sleep, a little slumber, a little
+folding of the hands to sleep: 6:11 So shall thy poverty come as one
+that travelleth, and thy want as an armed man.
+
+6:12 A naughty person, a wicked man, walketh with a froward mouth.
+
+6:13 He winketh with his eyes, he speaketh with his feet, he teacheth
+with his fingers; 6:14 Frowardness is in his heart, he deviseth
+mischief continually; he soweth discord.
+
+6:15 Therefore shall his calamity come suddenly; suddenly shall he be
+broken without remedy.
+
+6:16 These six things doth the LORD hate: yea, seven are an
+abomination unto him: 6:17 A proud look, a lying tongue, and hands
+that shed innocent blood, 6:18 An heart that deviseth wicked
+imaginations, feet that be swift in running to mischief, 6:19 A false
+witness that speaketh lies, and he that soweth discord among brethren.
+
+6:20 My son, keep thy father's commandment, and forsake not the law of
+thy mother: 6:21 Bind them continually upon thine heart, and tie them
+about thy neck.
+
+6:22 When thou goest, it shall lead thee; when thou sleepest, it shall
+keep thee; and when thou awakest, it shall talk with thee.
+
+6:23 For the commandment is a lamp; and the law is light; and reproofs
+of instruction are the way of life: 6:24 To keep thee from the evil
+woman, from the flattery of the tongue of a strange woman.
+
+6:25 Lust not after her beauty in thine heart; neither let her take
+thee with her eyelids.
+
+6:26 For by means of a whorish woman a man is brought to a piece of
+bread: and the adultress will hunt for the precious life.
+
+6:27 Can a man take fire in his bosom, and his clothes not be burned?
+6:28 Can one go upon hot coals, and his feet not be burned? 6:29 So
+he that goeth in to his neighbour's wife; whosoever toucheth her shall
+not be innocent.
+
+6:30 Men do not despise a thief, if he steal to satisfy his soul when
+he is hungry; 6:31 But if he be found, he shall restore sevenfold; he
+shall give all the substance of his house.
+
+6:32 But whoso committeth adultery with a woman lacketh understanding:
+he that doeth it destroyeth his own soul.
+
+6:33 A wound and dishonour shall he get; and his reproach shall not be
+wiped away.
+
+6:34 For jealousy is the rage of a man: therefore he will not spare in
+the day of vengeance.
+
+6:35 He will not regard any ransom; neither will he rest content,
+though thou givest many gifts.
+
+7:1 My son, keep my words, and lay up my commandments with thee.
+
+7:2 Keep my commandments, and live; and my law as the apple of thine
+eye.
+
+7:3 Bind them upon thy fingers, write them upon the table of thine
+heart.
+
+7:4 Say unto wisdom, Thou art my sister; and call understanding thy
+kinswoman: 7:5 That they may keep thee from the strange woman, from
+the stranger which flattereth with her words.
+
+7:6 For at the window of my house I looked through my casement, 7:7
+And beheld among the simple ones, I discerned among the youths, a
+young man void of understanding, 7:8 Passing through the street near
+her corner; and he went the way to her house, 7:9 In the twilight, in
+the evening, in the black and dark night: 7:10 And, behold, there met
+him a woman with the attire of an harlot, and subtil of heart.
+
+7:11 (She is loud and stubborn; her feet abide not in her house: 7:12
+Now is she without, now in the streets, and lieth in wait at every
+corner.) 7:13 So she caught him, and kissed him, and with an impudent
+face said unto him, 7:14 I have peace offerings with me; this day have
+I payed my vows.
+
+7:15 Therefore came I forth to meet thee, diligently to seek thy face,
+and I have found thee.
+
+7:16 I have decked my bed with coverings of tapestry, with carved
+works, with fine linen of Egypt.
+
+7:17 I have perfumed my bed with myrrh, aloes, and cinnamon.
+
+7:18 Come, let us take our fill of love until the morning: let us
+solace ourselves with loves.
+
+7:19 For the goodman is not at home, he is gone a long journey: 7:20
+He hath taken a bag of money with him, and will come home at the day
+appointed.
+
+7:21 With her much fair speech she caused him to yield, with the
+flattering of her lips she forced him.
+
+7:22 He goeth after her straightway, as an ox goeth to the slaughter,
+or as a fool to the correction of the stocks; 7:23 Till a dart strike
+through his liver; as a bird hasteth to the snare, and knoweth not
+that it is for his life.
+
+7:24 Hearken unto me now therefore, O ye children, and attend to the
+words of my mouth.
+
+7:25 Let not thine heart decline to her ways, go not astray in her
+paths.
+
+7:26 For she hath cast down many wounded: yea, many strong men have
+been slain by her.
+
+7:27 Her house is the way to hell, going down to the chambers of
+death.
+
+8:1 Doth not wisdom cry? and understanding put forth her voice? 8:2
+She standeth in the top of high places, by the way in the places of
+the paths.
+
+8:3 She crieth at the gates, at the entry of the city, at the coming
+in at the doors.
+
+8:4 Unto you, O men, I call; and my voice is to the sons of man.
+
+8:5 O ye simple, understand wisdom: and, ye fools, be ye of an
+understanding heart.
+
+8:6 Hear; for I will speak of excellent things; and the opening of my
+lips shall be right things.
+
+8:7 For my mouth shall speak truth; and wickedness is an abomination
+to my lips.
+
+8:8 All the words of my mouth are in righteousness; there is nothing
+froward or perverse in them.
+
+8:9 They are all plain to him that understandeth, and right to them
+that find knowledge.
+
+8:10 Receive my instruction, and not silver; and knowledge rather than
+choice gold.
+
+8:11 For wisdom is better than rubies; and all the things that may be
+desired are not to be compared to it.
+
+8:12 I wisdom dwell with prudence, and find out knowledge of witty
+inventions.
+
+8:13 The fear of the LORD is to hate evil: pride, and arrogancy, and
+the evil way, and the froward mouth, do I hate.
+
+8:14 Counsel is mine, and sound wisdom: I am understanding; I have
+strength.
+
+8:15 By me kings reign, and princes decree justice.
+
+8:16 By me princes rule, and nobles, even all the judges of the earth.
+
+8:17 I love them that love me; and those that seek me early shall find
+me.
+
+8:18 Riches and honour are with me; yea, durable riches and
+righteousness.
+
+8:19 My fruit is better than gold, yea, than fine gold; and my revenue
+than choice silver.
+
+8:20 I lead in the way of righteousness, in the midst of the paths of
+judgment: 8:21 That I may cause those that love me to inherit
+substance; and I will fill their treasures.
+
+8:22 The LORD possessed me in the beginning of his way, before his
+works of old.
+
+8:23 I was set up from everlasting, from the beginning, or ever the
+earth was.
+
+8:24 When there were no depths, I was brought forth; when there were
+no fountains abounding with water.
+
+8:25 Before the mountains were settled, before the hills was I brought
+forth: 8:26 While as yet he had not made the earth, nor the fields,
+nor the highest part of the dust of the world.
+
+8:27 When he prepared the heavens, I was there: when he set a compass
+upon the face of the depth: 8:28 When he established the clouds above:
+when he strengthened the fountains of the deep: 8:29 When he gave to
+the sea his decree, that the waters should not pass his commandment:
+when he appointed the foundations of the earth: 8:30 Then I was by
+him, as one brought up with him: and I was daily his delight,
+rejoicing always before him; 8:31 Rejoicing in the habitable part of
+his earth; and my delights were with the sons of men.
+
+8:32 Now therefore hearken unto me, O ye children: for blessed are
+they that keep my ways.
+
+8:33 Hear instruction, and be wise, and refuse it not.
+
+8:34 Blessed is the man that heareth me, watching daily at my gates,
+waiting at the posts of my doors.
+
+8:35 For whoso findeth me findeth life, and shall obtain favour of the
+LORD.
+
+8:36 But he that sinneth against me wrongeth his own soul: all they
+that hate me love death.
+
+9:1 Wisdom hath builded her house, she hath hewn out her seven
+pillars: 9:2 She hath killed her beasts; she hath mingled her wine;
+she hath also furnished her table.
+
+9:3 She hath sent forth her maidens: she crieth upon the highest
+places of the city, 9:4 Whoso is simple, let him turn in hither: as
+for him that wanteth understanding, she saith to him, 9:5 Come, eat of
+my bread, and drink of the wine which I have mingled.
+
+9:6 Forsake the foolish, and live; and go in the way of understanding.
+
+9:7 He that reproveth a scorner getteth to himself shame: and he that
+rebuketh a wicked man getteth himself a blot.
+
+9:8 Reprove not a scorner, lest he hate thee: rebuke a wise man, and
+he will love thee.
+
+9:9 Give instruction to a wise man, and he will be yet wiser: teach a
+just man, and he will increase in learning.
+
+9:10 The fear of the LORD is the beginning of wisdom: and the
+knowledge of the holy is understanding.
+
+9:11 For by me thy days shall be multiplied, and the years of thy life
+shall be increased.
+
+9:12 If thou be wise, thou shalt be wise for thyself: but if thou
+scornest, thou alone shalt bear it.
+
+9:13 A foolish woman is clamorous: she is simple, and knoweth nothing.
+
+9:14 For she sitteth at the door of her house, on a seat in the high
+places of the city, 9:15 To call passengers who go right on their
+ways: 9:16 Whoso is simple, let him turn in hither: and as for him
+that wanteth understanding, she saith to him, 9:17 Stolen waters are
+sweet, and bread eaten in secret is pleasant.
+
+9:18 But he knoweth not that the dead are there; and that her guests
+are in the depths of hell.
+
+10:1 The proverbs of Solomon. A wise son maketh a glad father: but a
+foolish son is the heaviness of his mother.
+
+10:2 Treasures of wickedness profit nothing: but righteousness
+delivereth from death.
+
+10:3 The LORD will not suffer the soul of the righteous to famish: but
+he casteth away the substance of the wicked.
+
+10:4 He becometh poor that dealeth with a slack hand: but the hand of
+the diligent maketh rich.
+
+10:5 He that gathereth in summer is a wise son: but he that sleepeth
+in harvest is a son that causeth shame.
+
+10:6 Blessings are upon the head of the just: but violence covereth
+the mouth of the wicked.
+
+10:7 The memory of the just is blessed: but the name of the wicked
+shall rot.
+
+10:8 The wise in heart will receive commandments: but a prating fool
+shall fall.
+
+10:9 He that walketh uprightly walketh surely: but he that perverteth
+his ways shall be known.
+
+10:10 He that winketh with the eye causeth sorrow: but a prating fool
+shall fall.
+
+10:11 The mouth of a righteous man is a well of life: but violence
+covereth the mouth of the wicked.
+
+10:12 Hatred stirreth up strifes: but love covereth all sins.
+
+10:13 In the lips of him that hath understanding wisdom is found: but
+a rod is for the back of him that is void of understanding.
+
+10:14 Wise men lay up knowledge: but the mouth of the foolish is near
+destruction.
+
+10:15 The rich man's wealth is his strong city: the destruction of the
+poor is their poverty.
+
+10:16 The labour of the righteous tendeth to life: the fruit of the
+wicked to sin.
+
+10:17 He is in the way of life that keepeth instruction: but he that
+refuseth reproof erreth.
+
+10:18 He that hideth hatred with lying lips, and he that uttereth a
+slander, is a fool.
+
+10:19 In the multitude of words there wanteth not sin: but he that
+refraineth his lips is wise.
+
+10:20 The tongue of the just is as choice silver: the heart of the
+wicked is little worth.
+
+10:21 The lips of the righteous feed many: but fools die for want of
+wisdom.
+
+10:22 The blessing of the LORD, it maketh rich, and he addeth no
+sorrow with it.
+
+10:23 It is as sport to a fool to do mischief: but a man of
+understanding hath wisdom.
+
+10:24 The fear of the wicked, it shall come upon him: but the desire
+of the righteous shall be granted.
+
+10:25 As the whirlwind passeth, so is the wicked no more: but the
+righteous is an everlasting foundation.
+
+10:26 As vinegar to the teeth, and as smoke to the eyes, so is the
+sluggard to them that send him.
+
+10:27 The fear of the LORD prolongeth days: but the years of the
+wicked shall be shortened.
+
+10:28 The hope of the righteous shall be gladness: but the expectation
+of the wicked shall perish.
+
+10:29 The way of the LORD is strength to the upright: but destruction
+shall be to the workers of iniquity.
+
+10:30 The righteous shall never be removed: but the wicked shall not
+inhabit the earth.
+
+10:31 The mouth of the just bringeth forth wisdom: but the froward
+tongue shall be cut out.
+
+10:32 The lips of the righteous know what is acceptable: but the mouth
+of the wicked speaketh frowardness.
+
+11:1 A false balance is abomination to the LORD: but a just weight is
+his delight.
+
+11:2 When pride cometh, then cometh shame: but with the lowly is
+wisdom.
+
+11:3 The integrity of the upright shall guide them: but the
+perverseness of transgressors shall destroy them.
+
+11:4 Riches profit not in the day of wrath: but righteousness
+delivereth from death.
+
+11:5 The righteousness of the perfect shall direct his way: but the
+wicked shall fall by his own wickedness.
+
+11:6 The righteousness of the upright shall deliver them: but
+transgressors shall be taken in their own naughtiness.
+
+11:7 When a wicked man dieth, his expectation shall perish: and the
+hope of unjust men perisheth.
+
+11:8 The righteous is delivered out of trouble, and the wicked cometh
+in his stead.
+
+11:9 An hypocrite with his mouth destroyeth his neighbour: but through
+knowledge shall the just be delivered.
+
+11:10 When it goeth well with the righteous, the city rejoiceth: and
+when the wicked perish, there is shouting.
+
+11:11 By the blessing of the upright the city is exalted: but it is
+overthrown by the mouth of the wicked.
+
+11:12 He that is void of wisdom despiseth his neighbour: but a man of
+understanding holdeth his peace.
+
+11:13 A talebearer revealeth secrets: but he that is of a faithful
+spirit concealeth the matter.
+
+11:14 Where no counsel is, the people fall: but in the multitude of
+counsellors there is safety.
+
+11:15 He that is surety for a stranger shall smart for it: and he that
+hateth suretiship is sure.
+
+11:16 A gracious woman retaineth honour: and strong men retain riches.
+
+11:17 The merciful man doeth good to his own soul: but he that is
+cruel troubleth his own flesh.
+
+11:18 The wicked worketh a deceitful work: but to him that soweth
+righteousness shall be a sure reward.
+
+11:19 As righteousness tendeth to life: so he that pursueth evil
+pursueth it to his own death.
+
+11:20 They that are of a froward heart are abomination to the LORD:
+but such as are upright in their way are his delight.
+
+11:21 Though hand join in hand, the wicked shall not be unpunished:
+but the seed of the righteous shall be delivered.
+
+11:22 As a jewel of gold in a swine's snout, so is a fair woman which
+is without discretion.
+
+11:23 The desire of the righteous is only good: but the expectation of
+the wicked is wrath.
+
+11:24 There is that scattereth, and yet increaseth; and there is that
+withholdeth more than is meet, but it tendeth to poverty.
+
+11:25 The liberal soul shall be made fat: and he that watereth shall
+be watered also himself.
+
+11:26 He that withholdeth corn, the people shall curse him: but
+blessing shall be upon the head of him that selleth it.
+
+11:27 He that diligently seeketh good procureth favour: but he that
+seeketh mischief, it shall come unto him.
+
+11:28 He that trusteth in his riches shall fall; but the righteous
+shall flourish as a branch.
+
+11:29 He that troubleth his own house shall inherit the wind: and the
+fool shall be servant to the wise of heart.
+
+11:30 The fruit of the righteous is a tree of life; and he that
+winneth souls is wise.
+
+11:31 Behold, the righteous shall be recompensed in the earth: much
+more the wicked and the sinner.
+
+12:1 Whoso loveth instruction loveth knowledge: but he that hateth
+reproof is brutish.
+
+12:2 A good man obtaineth favour of the LORD: but a man of wicked
+devices will he condemn.
+
+12:3 A man shall not be established by wickedness: but the root of the
+righteous shall not be moved.
+
+12:4 A virtuous woman is a crown to her husband: but she that maketh
+ashamed is as rottenness in his bones.
+
+12:5 The thoughts of the righteous are right: but the counsels of the
+wicked are deceit.
+
+12:6 The words of the wicked are to lie in wait for blood: but the
+mouth of the upright shall deliver them.
+
+12:7 The wicked are overthrown, and are not: but the house of the
+righteous shall stand.
+
+12:8 A man shall be commended according to his wisdom: but he that is
+of a perverse heart shall be despised.
+
+12:9 He that is despised, and hath a servant, is better than he that
+honoureth himself, and lacketh bread.
+
+12:10 A righteous man regardeth the life of his beast: but the tender
+mercies of the wicked are cruel.
+
+12:11 He that tilleth his land shall be satisfied with bread: but he
+that followeth vain persons is void of understanding.
+
+12:12 The wicked desireth the net of evil men: but the root of the
+righteous yieldeth fruit.
+
+12:13 The wicked is snared by the transgression of his lips: but the
+just shall come out of trouble.
+
+12:14 A man shall be satisfied with good by the fruit of his mouth:
+and the recompence of a man's hands shall be rendered unto him.
+
+12:15 The way of a fool is right in his own eyes: but he that
+hearkeneth unto counsel is wise.
+
+12:16 A fool's wrath is presently known: but a prudent man covereth
+shame.
+
+12:17 He that speaketh truth sheweth forth righteousness: but a false
+witness deceit.
+
+12:18 There is that speaketh like the piercings of a sword: but the
+tongue of the wise is health.
+
+12:19 The lip of truth shall be established for ever: but a lying
+tongue is but for a moment.
+
+12:20 Deceit is in the heart of them that imagine evil: but to the
+counsellors of peace is joy.
+
+12:21 There shall no evil happen to the just: but the wicked shall be
+filled with mischief.
+
+12:22 Lying lips are abomination to the LORD: but they that deal truly
+are his delight.
+
+12:23 A prudent man concealeth knowledge: but the heart of fools
+proclaimeth foolishness.
+
+12:24 The hand of the diligent shall bear rule: but the slothful shall
+be under tribute.
+
+12:25 Heaviness in the heart of man maketh it stoop: but a good word
+maketh it glad.
+
+12:26 The righteous is more excellent than his neighbour: but the way
+of the wicked seduceth them.
+
+12:27 The slothful man roasteth not that which he took in hunting: but
+the substance of a diligent man is precious.
+
+12:28 In the way of righteousness is life: and in the pathway thereof
+there is no death.
+
+13:1 A wise son heareth his father's instruction: but a scorner
+heareth not rebuke.
+
+13:2 A man shall eat good by the fruit of his mouth: but the soul of
+the transgressors shall eat violence.
+
+13:3 He that keepeth his mouth keepeth his life: but he that openeth
+wide his lips shall have destruction.
+
+13:4 The soul of the sluggard desireth, and hath nothing: but the soul
+of the diligent shall be made fat.
+
+13:5 A righteous man hateth lying: but a wicked man is loathsome, and
+cometh to shame.
+
+13:6 Righteousness keepeth him that is upright in the way: but
+wickedness overthroweth the sinner.
+
+13:7 There is that maketh himself rich, yet hath nothing: there is
+that maketh himself poor, yet hath great riches.
+
+13:8 The ransom of a man's life are his riches: but the poor heareth
+not rebuke.
+
+13:9 The light of the righteous rejoiceth: but the lamp of the wicked
+shall be put out.
+
+13:10 Only by pride cometh contention: but with the well advised is
+wisdom.
+
+13:11 Wealth gotten by vanity shall be diminished: but he that
+gathereth by labour shall increase.
+
+13:12 Hope deferred maketh the heart sick: but when the desire cometh,
+it is a tree of life.
+
+13:13 Whoso despiseth the word shall be destroyed: but he that feareth
+the commandment shall be rewarded.
+
+13:14 The law of the wise is a fountain of life, to depart from the
+snares of death.
+
+13:15 Good understanding giveth favour: but the way of transgressors
+is hard.
+
+13:16 Every prudent man dealeth with knowledge: but a fool layeth open
+his folly.
+
+13:17 A wicked messenger falleth into mischief: but a faithful
+ambassador is health.
+
+13:18 Poverty and shame shall be to him that refuseth instruction: but
+he that regardeth reproof shall be honoured.
+
+13:19 The desire accomplished is sweet to the soul: but it is
+abomination to fools to depart from evil.
+
+13:20 He that walketh with wise men shall be wise: but a companion of
+fools shall be destroyed.
+
+13:21 Evil pursueth sinners: but to the righteous good shall be
+repayed.
+
+13:22 A good man leaveth an inheritance to his children's children:
+and the wealth of the sinner is laid up for the just.
+
+13:23 Much food is in the tillage of the poor: but there is that is
+destroyed for want of judgment.
+
+13:24 He that spareth his rod hateth his son: but he that loveth him
+chasteneth him betimes.
+
+13:25 The righteous eateth to the satisfying of his soul: but the
+belly of the wicked shall want.
+
+14:1 Every wise woman buildeth her house: but the foolish plucketh it
+down with her hands.
+
+14:2 He that walketh in his uprightness feareth the LORD: but he that
+is perverse in his ways despiseth him.
+
+14:3 In the mouth of the foolish is a rod of pride: but the lips of
+the wise shall preserve them.
+
+14:4 Where no oxen are, the crib is clean: but much increase is by the
+strength of the ox.
+
+14:5 A faithful witness will not lie: but a false witness will utter
+lies.
+
+14:6 A scorner seeketh wisdom, and findeth it not: but knowledge is
+easy unto him that understandeth.
+
+14:7 Go from the presence of a foolish man, when thou perceivest not
+in him the lips of knowledge.
+
+14:8 The wisdom of the prudent is to understand his way: but the folly
+of fools is deceit.
+
+14:9 Fools make a mock at sin: but among the righteous there is
+favour.
+
+14:10 The heart knoweth his own bitterness; and a stranger doth not
+intermeddle with his joy.
+
+14:11 The house of the wicked shall be overthrown: but the tabernacle
+of the upright shall flourish.
+
+14:12 There is a way which seemeth right unto a man, but the end
+thereof are the ways of death.
+
+14:13 Even in laughter the heart is sorrowful; and the end of that
+mirth is heaviness.
+
+14:14 The backslider in heart shall be filled with his own ways: and a
+good man shall be satisfied from himself.
+
+14:15 The simple believeth every word: but the prudent man looketh
+well to his going.
+
+14:16 A wise man feareth, and departeth from evil: but the fool
+rageth, and is confident.
+
+14:17 He that is soon angry dealeth foolishly: and a man of wicked
+devices is hated.
+
+14:18 The simple inherit folly: but the prudent are crowned with
+knowledge.
+
+14:19 The evil bow before the good; and the wicked at the gates of the
+righteous.
+
+14:20 The poor is hated even of his own neighbour: but the rich hath
+many friends.
+
+14:21 He that despiseth his neighbour sinneth: but he that hath mercy
+on the poor, happy is he.
+
+14:22 Do they not err that devise evil? but mercy and truth shall be
+to them that devise good.
+
+14:23 In all labour there is profit: but the talk of the lips tendeth
+only to penury.
+
+14:24 The crown of the wise is their riches: but the foolishness of
+fools is folly.
+
+14:25 A true witness delivereth souls: but a deceitful witness
+speaketh lies.
+
+14:26 In the fear of the LORD is strong confidence: and his children
+shall have a place of refuge.
+
+14:27 The fear of the LORD is a fountain of life, to depart from the
+snares of death.
+
+14:28 In the multitude of people is the king's honour: but in the want
+of people is the destruction of the prince.
+
+14:29 He that is slow to wrath is of great understanding: but he that
+is hasty of spirit exalteth folly.
+
+14:30 A sound heart is the life of the flesh: but envy the rottenness
+of the bones.
+
+14:31 He that oppresseth the poor reproacheth his Maker: but he that
+honoureth him hath mercy on the poor.
+
+14:32 The wicked is driven away in his wickedness: but the righteous
+hath hope in his death.
+
+14:33 Wisdom resteth in the heart of him that hath understanding: but
+that which is in the midst of fools is made known.
+
+14:34 Righteousness exalteth a nation: but sin is a reproach to any
+people.
+
+14:35 The king's favour is toward a wise servant: but his wrath is
+against him that causeth shame.
+
+15:1 A soft answer turneth away wrath: but grievous words stir up
+anger.
+
+15:2 The tongue of the wise useth knowledge aright: but the mouth of
+fools poureth out foolishness.
+
+15:3 The eyes of the LORD are in every place, beholding the evil and
+the good.
+
+15:4 A wholesome tongue is a tree of life: but perverseness therein is
+a breach in the spirit.
+
+15:5 A fool despiseth his father's instruction: but he that regardeth
+reproof is prudent.
+
+15:6 In the house of the righteous is much treasure: but in the
+revenues of the wicked is trouble.
+
+15:7 The lips of the wise disperse knowledge: but the heart of the
+foolish doeth not so.
+
+15:8 The sacrifice of the wicked is an abomination to the LORD: but
+the prayer of the upright is his delight.
+
+15:9 The way of the wicked is an abomination unto the LORD: but he
+loveth him that followeth after righteousness.
+
+15:10 Correction is grievous unto him that forsaketh the way: and he
+that hateth reproof shall die.
+
+15:11 Hell and destruction are before the LORD: how much more then the
+hearts of the children of men? 15:12 A scorner loveth not one that
+reproveth him: neither will he go unto the wise.
+
+15:13 A merry heart maketh a cheerful countenance: but by sorrow of
+the heart the spirit is broken.
+
+15:14 The heart of him that hath understanding seeketh knowledge: but
+the mouth of fools feedeth on foolishness.
+
+15:15 All the days of the afflicted are evil: but he that is of a
+merry heart hath a continual feast.
+
+15:16 Better is little with the fear of the LORD than great treasure
+and trouble therewith.
+
+15:17 Better is a dinner of herbs where love is, than a stalled ox and
+hatred therewith.
+
+15:18 A wrathful man stirreth up strife: but he that is slow to anger
+appeaseth strife.
+
+15:19 The way of the slothful man is as an hedge of thorns: but the
+way of the righteous is made plain.
+
+15:20 A wise son maketh a glad father: but a foolish man despiseth his
+mother.
+
+15:21 Folly is joy to him that is destitute of wisdom: but a man of
+understanding walketh uprightly.
+
+15:22 Without counsel purposes are disappointed: but in the multitude
+of counsellors they are established.
+
+15:23 A man hath joy by the answer of his mouth: and a word spoken in
+due season, how good is it! 15:24 The way of life is above to the
+wise, that he may depart from hell beneath.
+
+15:25 The LORD will destroy the house of the proud: but he will
+establish the border of the widow.
+
+15:26 The thoughts of the wicked are an abomination to the LORD: but
+the words of the pure are pleasant words.
+
+15:27 He that is greedy of gain troubleth his own house; but he that
+hateth gifts shall live.
+
+15:28 The heart of the righteous studieth to answer: but the mouth of
+the wicked poureth out evil things.
+
+15:29 The LORD is far from the wicked: but he heareth the prayer of
+the righteous.
+
+15:30 The light of the eyes rejoiceth the heart: and a good report
+maketh the bones fat.
+
+15:31 The ear that heareth the reproof of life abideth among the wise.
+
+15:32 He that refuseth instruction despiseth his own soul: but he that
+heareth reproof getteth understanding.
+
+15:33 The fear of the LORD is the instruction of wisdom; and before
+honour is humility.
+
+16:1 The preparations of the heart in man, and the answer of the
+tongue, is from the LORD.
+
+16:2 All the ways of a man are clean in his own eyes; but the LORD
+weigheth the spirits.
+
+16:3 Commit thy works unto the LORD, and thy thoughts shall be
+established.
+
+16:4 The LORD hath made all things for himself: yea, even the wicked
+for the day of evil.
+
+16:5 Every one that is proud in heart is an abomination to the LORD:
+though hand join in hand, he shall not be unpunished.
+
+16:6 By mercy and truth iniquity is purged: and by the fear of the
+LORD men depart from evil.
+
+16:7 When a man's ways please the LORD, he maketh even his enemies to
+be at peace with him.
+
+16:8 Better is a little with righteousness than great revenues without
+right.
+
+16:9 A man's heart deviseth his way: but the LORD directeth his steps.
+
+16:10 A divine sentence is in the lips of the king: his mouth
+transgresseth not in judgment.
+
+16:11 A just weight and balance are the LORD's: all the weights of the
+bag are his work.
+
+16:12 It is an abomination to kings to commit wickedness: for the
+throne is established by righteousness.
+
+16:13 Righteous lips are the delight of kings; and they love him that
+speaketh right.
+
+16:14 The wrath of a king is as messengers of death: but a wise man
+will pacify it.
+
+16:15 In the light of the king's countenance is life; and his favour
+is as a cloud of the latter rain.
+
+16:16 How much better is it to get wisdom than gold! and to get
+understanding rather to be chosen than silver! 16:17 The highway of
+the upright is to depart from evil: he that keepeth his way preserveth
+his soul.
+
+16:18 Pride goeth before destruction, and an haughty spirit before a
+fall.
+
+16:19 Better it is to be of an humble spirit with the lowly, than to
+divide the spoil with the proud.
+
+16:20 He that handleth a matter wisely shall find good: and whoso
+trusteth in the LORD, happy is he.
+
+16:21 The wise in heart shall be called prudent: and the sweetness of
+the lips increaseth learning.
+
+16:22 Understanding is a wellspring of life unto him that hath it: but
+the instruction of fools is folly.
+
+16:23 The heart of the wise teacheth his mouth, and addeth learning to
+his lips.
+
+16:24 Pleasant words are as an honeycomb, sweet to the soul, and
+health to the bones.
+
+16:25 There is a way that seemeth right unto a man, but the end
+thereof are the ways of death.
+
+16:26 He that laboureth laboureth for himself; for his mouth craveth
+it of him.
+
+16:27 An ungodly man diggeth up evil: and in his lips there is as a
+burning fire.
+
+16:28 A froward man soweth strife: and a whisperer separateth chief
+friends.
+
+16:29 A violent man enticeth his neighbour, and leadeth him into the
+way that is not good.
+
+16:30 He shutteth his eyes to devise froward things: moving his lips
+he bringeth evil to pass.
+
+16:31 The hoary head is a crown of glory, if it be found in the way of
+righteousness.
+
+16:32 He that is slow to anger is better than the mighty; and he that
+ruleth his spirit than he that taketh a city.
+
+16:33 The lot is cast into the lap; but the whole disposing thereof is
+of the LORD.
+
+17:1 Better is a dry morsel, and quietness therewith, than an house
+full of sacrifices with strife.
+
+17:2 A wise servant shall have rule over a son that causeth shame, and
+shall have part of the inheritance among the brethren.
+
+17:3 The fining pot is for silver, and the furnace for gold: but the
+LORD trieth the hearts.
+
+17:4 A wicked doer giveth heed to false lips; and a liar giveth ear to
+a naughty tongue.
+
+17:5 Whoso mocketh the poor reproacheth his Maker: and he that is glad
+at calamities shall not be unpunished.
+
+17:6 Children's children are the crown of old men; and the glory of
+children are their fathers.
+
+17:7 Excellent speech becometh not a fool: much less do lying lips a
+prince.
+
+17:8 A gift is as a precious stone in the eyes of him that hath it:
+whithersoever it turneth, it prospereth.
+
+17:9 He that covereth a transgression seeketh love; but he that
+repeateth a matter separateth very friends.
+
+17:10 A reproof entereth more into a wise man than an hundred stripes
+into a fool.
+
+17:11 An evil man seeketh only rebellion: therefore a cruel messenger
+shall be sent against him.
+
+17:12 Let a bear robbed of her whelps meet a man, rather than a fool
+in his folly.
+
+17:13 Whoso rewardeth evil for good, evil shall not depart from his
+house.
+
+17:14 The beginning of strife is as when one letteth out water:
+therefore leave off contention, before it be meddled with.
+
+17:15 He that justifieth the wicked, and he that condemneth the just,
+even they both are abomination to the LORD.
+
+17:16 Wherefore is there a price in the hand of a fool to get wisdom,
+seeing he hath no heart to it? 17:17 A friend loveth at all times,
+and a brother is born for adversity.
+
+17:18 A man void of understanding striketh hands, and becometh surety
+in the presence of his friend.
+
+17:19 He loveth transgression that loveth strife: and he that exalteth
+his gate seeketh destruction.
+
+17:20 He that hath a froward heart findeth no good: and he that hath a
+perverse tongue falleth into mischief.
+
+17:21 He that begetteth a fool doeth it to his sorrow: and the father
+of a fool hath no joy.
+
+17:22 A merry heart doeth good like a medicine: but a broken spirit
+drieth the bones.
+
+17:23 A wicked man taketh a gift out of the bosom to pervert the ways
+of judgment.
+
+17:24 Wisdom is before him that hath understanding; but the eyes of a
+fool are in the ends of the earth.
+
+17:25 A foolish son is a grief to his father, and bitterness to her
+that bare him.
+
+17:26 Also to punish the just is not good, nor to strike princes for
+equity.
+
+17:27 He that hath knowledge spareth his words: and a man of
+understanding is of an excellent spirit.
+
+17:28 Even a fool, when he holdeth his peace, is counted wise: and he
+that shutteth his lips is esteemed a man of understanding.
+
+18:1 Through desire a man, having separated himself, seeketh and
+intermeddleth with all wisdom.
+
+18:2 A fool hath no delight in understanding, but that his heart may
+discover itself.
+
+18:3 When the wicked cometh, then cometh also contempt, and with
+ignominy reproach.
+
+18:4 The words of a man's mouth are as deep waters, and the wellspring
+of wisdom as a flowing brook.
+
+18:5 It is not good to accept the person of the wicked, to overthrow
+the righteous in judgment.
+
+18:6 A fool's lips enter into contention, and his mouth calleth for
+strokes.
+
+18:7 A fool's mouth is his destruction, and his lips are the snare of
+his soul.
+
+18:8 The words of a talebearer are as wounds, and they go down into
+the innermost parts of the belly.
+
+18:9 He also that is slothful in his work is brother to him that is a
+great waster.
+
+18:10 The name of the LORD is a strong tower: the righteous runneth
+into it, and is safe.
+
+18:11 The rich man's wealth is his strong city, and as an high wall in
+his own conceit.
+
+18:12 Before destruction the heart of man is haughty, and before
+honour is humility.
+
+18:13 He that answereth a matter before he heareth it, it is folly and
+shame unto him.
+
+18:14 The spirit of a man will sustain his infirmity; but a wounded
+spirit who can bear? 18:15 The heart of the prudent getteth
+knowledge; and the ear of the wise seeketh knowledge.
+
+18:16 A man's gift maketh room for him, and bringeth him before great
+men.
+
+18:17 He that is first in his own cause seemeth just; but his
+neighbour cometh and searcheth him.
+
+18:18 The lot causeth contentions to cease, and parteth between the
+mighty.
+
+18:19 A brother offended is harder to be won than a strong city: and
+their contentions are like the bars of a castle.
+
+18:20 A man's belly shall be satisfied with the fruit of his mouth;
+and with the increase of his lips shall he be filled.
+
+18:21 Death and life are in the power of the tongue: and they that
+love it shall eat the fruit thereof.
+
+18:22 Whoso findeth a wife findeth a good thing, and obtaineth favour
+of the LORD.
+
+18:23 The poor useth intreaties; but the rich answereth roughly.
+
+18:24 A man that hath friends must shew himself friendly: and there is
+a friend that sticketh closer than a brother.
+
+19:1 Better is the poor that walketh in his integrity, than he that is
+perverse in his lips, and is a fool.
+
+19:2 Also, that the soul be without knowledge, it is not good; and he
+that hasteth with his feet sinneth.
+
+19:3 The foolishness of man perverteth his way: and his heart fretteth
+against the LORD.
+
+19:4 Wealth maketh many friends; but the poor is separated from his
+neighbour.
+
+19:5 A false witness shall not be unpunished, and he that speaketh
+lies shall not escape.
+
+19:6 Many will intreat the favour of the prince: and every man is a
+friend to him that giveth gifts.
+
+19:7 All the brethren of the poor do hate him: how much more do his
+friends go far from him? he pursueth them with words, yet they are
+wanting to him.
+
+19:8 He that getteth wisdom loveth his own soul: he that keepeth
+understanding shall find good.
+
+19:9 A false witness shall not be unpunished, and he that speaketh
+lies shall perish.
+
+19:10 Delight is not seemly for a fool; much less for a servant to
+have rule over princes.
+
+19:11 The discretion of a man deferreth his anger; and it is his glory
+to pass over a transgression.
+
+19:12 The king's wrath is as the roaring of a lion; but his favour is
+as dew upon the grass.
+
+19:13 A foolish son is the calamity of his father: and the contentions
+of a wife are a continual dropping.
+
+19:14 House and riches are the inheritance of fathers: and a prudent
+wife is from the LORD.
+
+19:15 Slothfulness casteth into a deep sleep; and an idle soul shall
+suffer hunger.
+
+19:16 He that keepeth the commandment keepeth his own soul; but he
+that despiseth his ways shall die.
+
+19:17 He that hath pity upon the poor lendeth unto the LORD; and that
+which he hath given will he pay him again.
+
+19:18 Chasten thy son while there is hope, and let not thy soul spare
+for his crying.
+
+19:19 A man of great wrath shall suffer punishment: for if thou
+deliver him, yet thou must do it again.
+
+19:20 Hear counsel, and receive instruction, that thou mayest be wise
+in thy latter end.
+
+19:21 There are many devices in a man's heart; nevertheless the
+counsel of the LORD, that shall stand.
+
+19:22 The desire of a man is his kindness: and a poor man is better
+than a liar.
+
+19:23 The fear of the LORD tendeth to life: and he that hath it shall
+abide satisfied; he shall not be visited with evil.
+
+19:24 A slothful man hideth his hand in his bosom, and will not so
+much as bring it to his mouth again.
+
+19:25 Smite a scorner, and the simple will beware: and reprove one
+that hath understanding, and he will understand knowledge.
+
+19:26 He that wasteth his father, and chaseth away his mother, is a
+son that causeth shame, and bringeth reproach.
+
+19:27 Cease, my son, to hear the instruction that causeth to err from
+the words of knowledge.
+
+19:28 An ungodly witness scorneth judgment: and the mouth of the
+wicked devoureth iniquity.
+
+19:29 Judgments are prepared for scorners, and stripes for the back of
+fools.
+
+20:1 Wine is a mocker, strong drink is raging: and whosoever is
+deceived thereby is not wise.
+
+20:2 The fear of a king is as the roaring of a lion: whoso provoketh
+him to anger sinneth against his own soul.
+
+20:3 It is an honour for a man to cease from strife: but every fool
+will be meddling.
+
+20:4 The sluggard will not plow by reason of the cold; therefore shall
+he beg in harvest, and have nothing.
+
+20:5 Counsel in the heart of man is like deep water; but a man of
+understanding will draw it out.
+
+20:6 Most men will proclaim every one his own goodness: but a faithful
+man who can find? 20:7 The just man walketh in his integrity: his
+children are blessed after him.
+
+20:8 A king that sitteth in the throne of judgment scattereth away all
+evil with his eyes.
+
+20:9 Who can say, I have made my heart clean, I am pure from my sin?
+20:10 Divers weights, and divers measures, both of them are alike
+abomination to the LORD.
+
+20:11 Even a child is known by his doings, whether his work be pure,
+and whether it be right.
+
+20:12 The hearing ear, and the seeing eye, the LORD hath made even
+both of them.
+
+20:13 Love not sleep, lest thou come to poverty; open thine eyes, and
+thou shalt be satisfied with bread.
+
+20:14 It is naught, it is naught, saith the buyer: but when he is gone
+his way, then he boasteth.
+
+20:15 There is gold, and a multitude of rubies: but the lips of
+knowledge are a precious jewel.
+
+20:16 Take his garment that is surety for a stranger: and take a
+pledge of him for a strange woman.
+
+20:17 Bread of deceit is sweet to a man; but afterwards his mouth
+shall be filled with gravel.
+
+20:18 Every purpose is established by counsel: and with good advice
+make war.
+
+20:19 He that goeth about as a talebearer revealeth secrets: therefore
+meddle not with him that flattereth with his lips.
+
+20:20 Whoso curseth his father or his mother, his lamp shall be put
+out in obscure darkness.
+
+20:21 An inheritance may be gotten hastily at the beginning; but the
+end thereof shall not be blessed.
+
+20:22 Say not thou, I will recompense evil; but wait on the LORD, and
+he shall save thee.
+
+20:23 Divers weights are an abomination unto the LORD; and a false
+balance is not good.
+
+20:24 Man's goings are of the LORD; how can a man then understand his
+own way? 20:25 It is a snare to the man who devoureth that which is
+holy, and after vows to make enquiry.
+
+20:26 A wise king scattereth the wicked, and bringeth the wheel over
+them.
+
+20:27 The spirit of man is the candle of the LORD, searching all the
+inward parts of the belly.
+
+20:28 Mercy and truth preserve the king: and his throne is upholden by
+mercy.
+
+20:29 The glory of young men is their strength: and the beauty of old
+men is the grey head.
+
+20:30 The blueness of a wound cleanseth away evil: so do stripes the
+inward parts of the belly.
+
+21:1 The king's heart is in the hand of the LORD, as the rivers of
+water: he turneth it whithersoever he will.
+
+21:2 Every way of a man is right in his own eyes: but the LORD
+pondereth the hearts.
+
+21:3 To do justice and judgment is more acceptable to the LORD than
+sacrifice.
+
+21:4 An high look, and a proud heart, and the plowing of the wicked,
+is sin.
+
+21:5 The thoughts of the diligent tend only to plenteousness; but of
+every one that is hasty only to want.
+
+21:6 The getting of treasures by a lying tongue is a vanity tossed to
+and fro of them that seek death.
+
+21:7 The robbery of the wicked shall destroy them; because they refuse
+to do judgment.
+
+21:8 The way of man is froward and strange: but as for the pure, his
+work is right.
+
+21:9 It is better to dwell in a corner of the housetop, than with a
+brawling woman in a wide house.
+
+21:10 The soul of the wicked desireth evil: his neighbour findeth no
+favour in his eyes.
+
+21:11 When the scorner is punished, the simple is made wise: and when
+the wise is instructed, he receiveth knowledge.
+
+21:12 The righteous man wisely considereth the house of the wicked:
+but God overthroweth the wicked for their wickedness.
+
+21:13 Whoso stoppeth his ears at the cry of the poor, he also shall
+cry himself, but shall not be heard.
+
+21:14 A gift in secret pacifieth anger: and a reward in the bosom
+strong wrath.
+
+21:15 It is joy to the just to do judgment: but destruction shall be
+to the workers of iniquity.
+
+21:16 The man that wandereth out of the way of understanding shall
+remain in the congregation of the dead.
+
+21:17 He that loveth pleasure shall be a poor man: he that loveth wine
+and oil shall not be rich.
+
+21:18 The wicked shall be a ransom for the righteous, and the
+transgressor for the upright.
+
+21:19 It is better to dwell in the wilderness, than with a contentious
+and an angry woman.
+
+21:20 There is treasure to be desired and oil in the dwelling of the
+wise; but a foolish man spendeth it up.
+
+21:21 He that followeth after righteousness and mercy findeth life,
+righteousness, and honour.
+
+21:22 A wise man scaleth the city of the mighty, and casteth down the
+strength of the confidence thereof.
+
+21:23 Whoso keepeth his mouth and his tongue keepeth his soul from
+troubles.
+
+21:24 Proud and haughty scorner is his name, who dealeth in proud
+wrath.
+
+21:25 The desire of the slothful killeth him; for his hands refuse to
+labour.
+
+21:26 He coveteth greedily all the day long: but the righteous giveth
+and spareth not.
+
+21:27 The sacrifice of the wicked is abomination: how much more, when
+he bringeth it with a wicked mind? 21:28 A false witness shall
+perish: but the man that heareth speaketh constantly.
+
+21:29 A wicked man hardeneth his face: but as for the upright, he
+directeth his way.
+
+21:30 There is no wisdom nor understanding nor counsel against the
+LORD.
+
+21:31 The horse is prepared against the day of battle: but safety is
+of the LORD.
+
+22:1 A GOOD name is rather to be chosen than great riches, and loving
+favour rather than silver and gold.
+
+22:2 The rich and poor meet together: the LORD is the maker of them
+all.
+
+22:3 A prudent man foreseeth the evil, and hideth himself: but the
+simple pass on, and are punished.
+
+22:4 By humility and the fear of the LORD are riches, and honour, and
+life.
+
+22:5 Thorns and snares are in the way of the froward: he that doth
+keep his soul shall be far from them.
+
+22:6 Train up a child in the way he should go: and when he is old, he
+will not depart from it.
+
+22:7 The rich ruleth over the poor, and the borrower is servant to the
+lender.
+
+22:8 He that soweth iniquity shall reap vanity: and the rod of his
+anger shall fail.
+
+22:9 He that hath a bountiful eye shall be blessed; for he giveth of
+his bread to the poor.
+
+22:10 Cast out the scorner, and contention shall go out; yea, strife
+and reproach shall cease.
+
+22:11 He that loveth pureness of heart, for the grace of his lips the
+king shall be his friend.
+
+22:12 The eyes of the LORD preserve knowledge, and he overthroweth the
+words of the transgressor.
+
+22:13 The slothful man saith, There is a lion without, I shall be
+slain in the streets.
+
+22:14 The mouth of strange women is a deep pit: he that is abhorred of
+the LORD shall fall therein.
+
+22:15 Foolishness is bound in the heart of a child; but the rod of
+correction shall drive it far from him.
+
+22:16 He that oppresseth the poor to increase his riches, and he that
+giveth to the rich, shall surely come to want.
+
+22:17 Bow down thine ear, and hear the words of the wise, and apply
+thine heart unto my knowledge.
+
+22:18 For it is a pleasant thing if thou keep them within thee; they
+shall withal be fitted in thy lips.
+
+22:19 That thy trust may be in the LORD, I have made known to thee
+this day, even to thee.
+
+22:20 Have not I written to thee excellent things in counsels and
+knowledge, 22:21 That I might make thee know the certainty of the
+words of truth; that thou mightest answer the words of truth to them
+that send unto thee? 22:22 Rob not the poor, because he is poor:
+neither oppress the afflicted in the gate: 22:23 For the LORD will
+plead their cause, and spoil the soul of those that spoiled them.
+
+22:24 Make no friendship with an angry man; and with a furious man
+thou shalt not go: 22:25 Lest thou learn his ways, and get a snare to
+thy soul.
+
+22:26 Be not thou one of them that strike hands, or of them that are
+sureties for debts.
+
+22:27 If thou hast nothing to pay, why should he take away thy bed
+from under thee? 22:28 Remove not the ancient landmark, which thy
+fathers have set.
+
+22:29 Seest thou a man diligent in his business? he shall stand before
+kings; he shall not stand before mean men.
+
+23:1 When thou sittest to eat with a ruler, consider diligently what
+is before thee: 23:2 And put a knife to thy throat, if thou be a man
+given to appetite.
+
+23:3 Be not desirous of his dainties: for they are deceitful meat.
+
+23:4 Labour not to be rich: cease from thine own wisdom.
+
+23:5 Wilt thou set thine eyes upon that which is not? for riches
+certainly make themselves wings; they fly away as an eagle toward
+heaven.
+
+23:6 Eat thou not the bread of him that hath an evil eye, neither
+desire thou his dainty meats: 23:7 For as he thinketh in his heart, so
+is he: Eat and drink, saith he to thee; but his heart is not with
+thee.
+
+23:8 The morsel which thou hast eaten shalt thou vomit up, and lose
+thy sweet words.
+
+23:9 Speak not in the ears of a fool: for he will despise the wisdom
+of thy words.
+
+23:10 Remove not the old landmark; and enter not into the fields of
+the fatherless: 23:11 For their redeemer is mighty; he shall plead
+their cause with thee.
+
+23:12 Apply thine heart unto instruction, and thine ears to the words
+of knowledge.
+
+23:13 Withhold not correction from the child: for if thou beatest him
+with the rod, he shall not die.
+
+23:14 Thou shalt beat him with the rod, and shalt deliver his soul
+from hell.
+
+23:15 My son, if thine heart be wise, my heart shall rejoice, even
+mine.
+
+23:16 Yea, my reins shall rejoice, when thy lips speak right things.
+
+23:17 Let not thine heart envy sinners: but be thou in the fear of the
+LORD all the day long.
+
+23:18 For surely there is an end; and thine expectation shall not be
+cut off.
+
+23:19 Hear thou, my son, and be wise, and guide thine heart in the
+way.
+
+23:20 Be not among winebibbers; among riotous eaters of flesh: 23:21
+For the drunkard and the glutton shall come to poverty: and drowsiness
+shall clothe a man with rags.
+
+23:22 Hearken unto thy father that begat thee, and despise not thy
+mother when she is old.
+
+23:23 Buy the truth, and sell it not; also wisdom, and instruction,
+and understanding.
+
+23:24 The father of the righteous shall greatly rejoice: and he that
+begetteth a wise child shall have joy of him.
+
+23:25 Thy father and thy mother shall be glad, and she that bare thee
+shall rejoice.
+
+23:26 My son, give me thine heart, and let thine eyes observe my ways.
+
+23:27 For a whore is a deep ditch; and a strange woman is a narrow
+pit.
+
+23:28 She also lieth in wait as for a prey, and increaseth the
+transgressors among men.
+
+23:29 Who hath woe? who hath sorrow? who hath contentions? who hath
+babbling? who hath wounds without cause? who hath redness of eyes?
+23:30 They that tarry long at the wine; they that go to seek mixed
+wine.
+
+23:31 Look not thou upon the wine when it is red, when it giveth his
+colour in the cup, when it moveth itself aright.
+
+23:32 At the last it biteth like a serpent, and stingeth like an
+adder.
+
+23:33 Thine eyes shall behold strange women, and thine heart shall
+utter perverse things.
+
+23:34 Yea, thou shalt be as he that lieth down in the midst of the
+sea, or as he that lieth upon the top of a mast.
+
+23:35 They have stricken me, shalt thou say, and I was not sick; they
+have beaten me, and I felt it not: when shall I awake? I will seek it
+yet again.
+
+24:1 Be not thou envious against evil men, neither desire to be with
+them.
+
+24:2 For their heart studieth destruction, and their lips talk of
+mischief.
+
+24:3 Through wisdom is an house builded; and by understanding it is
+established: 24:4 And by knowledge shall the chambers be filled with
+all precious and pleasant riches.
+
+24:5 A wise man is strong; yea, a man of knowledge increaseth
+strength.
+
+24:6 For by wise counsel thou shalt make thy war: and in multitude of
+counsellors there is safety.
+
+24:7 Wisdom is too high for a fool: he openeth not his mouth in the
+gate.
+
+24:8 He that deviseth to do evil shall be called a mischievous person.
+
+24:9 The thought of foolishness is sin: and the scorner is an
+abomination to men.
+
+24:10 If thou faint in the day of adversity, thy strength is small.
+
+24:11 If thou forbear to deliver them that are drawn unto death, and
+those that are ready to be slain; 24:12 If thou sayest, Behold, we
+knew it not; doth not he that pondereth the heart consider it? and he
+that keepeth thy soul, doth not he know it? and shall not he render to
+every man according to his works? 24:13 My son, eat thou honey,
+because it is good; and the honeycomb, which is sweet to thy taste:
+24:14 So shall the knowledge of wisdom be unto thy soul: when thou
+hast found it, then there shall be a reward, and thy expectation shall
+not be cut off.
+
+24:15 Lay not wait, O wicked man, against the dwelling of the
+righteous; spoil not his resting place: 24:16 For a just man falleth
+seven times, and riseth up again: but the wicked shall fall into
+mischief.
+
+24:17 Rejoice not when thine enemy falleth, and let not thine heart be
+glad when he stumbleth: 24:18 Lest the LORD see it, and it displease
+him, and he turn away his wrath from him.
+
+24:19 Fret not thyself because of evil men, neither be thou envious at
+the wicked: 24:20 For there shall be no reward to the evil man; the
+candle of the wicked shall be put out.
+
+24:21 My son, fear thou the LORD and the king: and meddle not with
+them that are given to change: 24:22 For their calamity shall rise
+suddenly; and who knoweth the ruin of them both? 24:23 These things
+also belong to the wise. It is not good to have respect of persons in
+judgment.
+
+24:24 He that saith unto the wicked, Thou are righteous; him shall the
+people curse, nations shall abhor him: 24:25 But to them that rebuke
+him shall be delight, and a good blessing shall come upon them.
+
+24:26 Every man shall kiss his lips that giveth a right answer.
+
+24:27 Prepare thy work without, and make it fit for thyself in the
+field; and afterwards build thine house.
+
+24:28 Be not a witness against thy neighbour without cause; and
+deceive not with thy lips.
+
+24:29 Say not, I will do so to him as he hath done to me: I will
+render to the man according to his work.
+
+24:30 I went by the field of the slothful, and by the vineyard of the
+man void of understanding; 24:31 And, lo, it was all grown over with
+thorns, and nettles had covered the face thereof, and the stone wall
+thereof was broken down.
+
+24:32 Then I saw, and considered it well: I looked upon it, and
+received instruction.
+
+24:33 Yet a little sleep, a little slumber, a little folding of the
+hands to sleep: 24:34 So shall thy poverty come as one that
+travelleth; and thy want as an armed man.
+
+25:1 These are also proverbs of Solomon, which the men of Hezekiah
+king of Judah copied out.
+
+25:2 It is the glory of God to conceal a thing: but the honour of
+kings is to search out a matter.
+
+25:3 The heaven for height, and the earth for depth, and the heart of
+kings is unsearchable.
+
+25:4 Take away the dross from the silver, and there shall come forth a
+vessel for the finer.
+
+25:5 Take away the wicked from before the king, and his throne shall
+be established in righteousness.
+
+25:6 Put not forth thyself in the presence of the king, and stand not
+in the place of great men: 25:7 For better it is that it be said unto
+thee, Come up hither; than that thou shouldest be put lower in the
+presence of the prince whom thine eyes have seen.
+
+25:8 Go not forth hastily to strive, lest thou know not what to do in
+the end thereof, when thy neighbour hath put thee to shame.
+
+25:9 Debate thy cause with thy neighbour himself; and discover not a
+secret to another: 25:10 Lest he that heareth it put thee to shame,
+and thine infamy turn not away.
+
+25:11 A word fitly spoken is like apples of gold in pictures of
+silver.
+
+25:12 As an earring of gold, and an ornament of fine gold, so is a
+wise reprover upon an obedient ear.
+
+25:13 As the cold of snow in the time of harvest, so is a faithful
+messenger to them that send him: for he refresheth the soul of his
+masters.
+
+25:14 Whoso boasteth himself of a false gift is like clouds and wind
+without rain.
+
+25:15 By long forbearing is a prince persuaded, and a soft tongue
+breaketh the bone.
+
+25:16 Hast thou found honey? eat so much as is sufficient for thee,
+lest thou be filled therewith, and vomit it.
+
+25:17 Withdraw thy foot from thy neighbour's house; lest he be weary
+of thee, and so hate thee.
+
+25:18 A man that beareth false witness against his neighbour is a
+maul, and a sword, and a sharp arrow.
+
+25:19 Confidence in an unfaithful man in time of trouble is like a
+broken tooth, and a foot out of joint.
+
+25:20 As he that taketh away a garment in cold weather, and as vinegar
+upon nitre, so is he that singeth songs to an heavy heart.
+
+25:21 If thine enemy be hungry, give him bread to eat; and if he be
+thirsty, give him water to drink: 25:22 For thou shalt heap coals of
+fire upon his head, and the LORD shall reward thee.
+
+25:23 The north wind driveth away rain: so doth an angry countenance a
+backbiting tongue.
+
+25:24 It is better to dwell in the corner of the housetop, than with a
+brawling woman and in a wide house.
+
+25:25 As cold waters to a thirsty soul, so is good news from a far
+country.
+
+25:26 A righteous man falling down before the wicked is as a troubled
+fountain, and a corrupt spring.
+
+25:27 It is not good to eat much honey: so for men to search their own
+glory is not glory.
+
+25:28 He that hath no rule over his own spirit is like a city that is
+broken down, and without walls.
+
+26:1 As snow in summer, and as rain in harvest, so honour is not
+seemly for a fool.
+
+26:2 As the bird by wandering, as the swallow by flying, so the curse
+causeless shall not come.
+
+26:3 A whip for the horse, a bridle for the ass, and a rod for the
+fool's back.
+
+26:4 Answer not a fool according to his folly, lest thou also be like
+unto him.
+
+26:5 Answer a fool according to his folly, lest he be wise in his own
+conceit.
+
+26:6 He that sendeth a message by the hand of a fool cutteth off the
+feet, and drinketh damage.
+
+26:7 The legs of the lame are not equal: so is a parable in the mouth
+of fools.
+
+26:8 As he that bindeth a stone in a sling, so is he that giveth
+honour to a fool.
+
+26:9 As a thorn goeth up into the hand of a drunkard, so is a parable
+in the mouths of fools.
+
+26:10 The great God that formed all things both rewardeth the fool,
+and rewardeth transgressors.
+
+26:11 As a dog returneth to his vomit, so a fool returneth to his
+folly.
+
+26:12 Seest thou a man wise in his own conceit? there is more hope of
+a fool than of him.
+
+26:13 The slothful man saith, There is a lion in the way; a lion is in
+the streets.
+
+26:14 As the door turneth upon his hinges, so doth the slothful upon
+his bed.
+
+26:15 The slothful hideth his hand in his bosom; it grieveth him to
+bring it again to his mouth.
+
+26:16 The sluggard is wiser in his own conceit than seven men that can
+render a reason.
+
+26:17 He that passeth by, and meddleth with strife belonging not to
+him, is like one that taketh a dog by the ears.
+
+26:18 As a mad man who casteth firebrands, arrows, and death, 26:19 So
+is the man that deceiveth his neighbour, and saith, Am not I in sport?
+26:20 Where no wood is, there the fire goeth out: so where there is no
+talebearer, the strife ceaseth.
+
+26:21 As coals are to burning coals, and wood to fire; so is a
+contentious man to kindle strife.
+
+26:22 The words of a talebearer are as wounds, and they go down into
+the innermost parts of the belly.
+
+26:23 Burning lips and a wicked heart are like a potsherd covered with
+silver dross.
+
+26:24 He that hateth dissembleth with his lips, and layeth up deceit
+within him; 26:25 When he speaketh fair, believe him not: for there
+are seven abominations in his heart.
+
+26:26 Whose hatred is covered by deceit, his wickedness shall be
+shewed before the whole congregation.
+
+26:27 Whoso diggeth a pit shall fall therein: and he that rolleth a
+stone, it will return upon him.
+
+26:28 A lying tongue hateth those that are afflicted by it; and a
+flattering mouth worketh ruin.
+
+27:1 Boast not thyself of to morrow; for thou knowest not what a day
+may bring forth.
+
+27:2 Let another man praise thee, and not thine own mouth; a stranger,
+and not thine own lips.
+
+27:3 A stone is heavy, and the sand weighty; but a fool's wrath is
+heavier than them both.
+
+27:4 Wrath is cruel, and anger is outrageous; but who is able to stand
+before envy? 27:5 Open rebuke is better than secret love.
+
+27:6 Faithful are the wounds of a friend; but the kisses of an enemy
+are deceitful.
+
+27:7 The full soul loatheth an honeycomb; but to the hungry soul every
+bitter thing is sweet.
+
+27:8 As a bird that wandereth from her nest, so is a man that
+wandereth from his place.
+
+27:9 Ointment and perfume rejoice the heart: so doth the sweetness of
+a man's friend by hearty counsel.
+
+27:10 Thine own friend, and thy father's friend, forsake not; neither
+go into thy brother's house in the day of thy calamity: for better is
+a neighbour that is near than a brother far off.
+
+27:11 My son, be wise, and make my heart glad, that I may answer him
+that reproacheth me.
+
+27:12 A prudent man foreseeth the evil, and hideth himself; but the
+simple pass on, and are punished.
+
+27:13 Take his garment that is surety for a stranger, and take a
+pledge of him for a strange woman.
+
+27:14 He that blesseth his friend with a loud voice, rising early in
+the morning, it shall be counted a curse to him.
+
+27:15 A continual dropping in a very rainy day and a contentious woman
+are alike.
+
+27:16 Whosoever hideth her hideth the wind, and the ointment of his
+right hand, which bewrayeth itself.
+
+27:17 Iron sharpeneth iron; so a man sharpeneth the countenance of his
+friend.
+
+27:18 Whoso keepeth the fig tree shall eat the fruit thereof: so he
+that waiteth on his master shall be honoured.
+
+27:19 As in water face answereth to face, so the heart of man to man.
+
+27:20 Hell and destruction are never full; so the eyes of man are
+never satisfied.
+
+27:21 As the fining pot for silver, and the furnace for gold; so is a
+man to his praise.
+
+27:22 Though thou shouldest bray a fool in a mortar among wheat with a
+pestle, yet will not his foolishness depart from him.
+
+27:23 Be thou diligent to know the state of thy flocks, and look well
+to thy herds.
+
+27:24 For riches are not for ever: and doth the crown endure to every
+generation? 27:25 The hay appeareth, and the tender grass sheweth
+itself, and herbs of the mountains are gathered.
+
+27:26 The lambs are for thy clothing, and the goats are the price of
+the field.
+
+27:27 And thou shalt have goats' milk enough for thy food, for the
+food of thy household, and for the maintenance for thy maidens.
+
+28:1 The wicked flee when no man pursueth: but the righteous are bold
+as a lion.
+
+28:2 For the transgression of a land many are the princes thereof: but
+by a man of understanding and knowledge the state thereof shall be
+prolonged.
+
+28:3 A poor man that oppresseth the poor is like a sweeping rain which
+leaveth no food.
+
+28:4 They that forsake the law praise the wicked: but such as keep the
+law contend with them.
+
+28:5 Evil men understand not judgment: but they that seek the LORD
+understand all things.
+
+28:6 Better is the poor that walketh in his uprightness, than he that
+is perverse in his ways, though he be rich.
+
+28:7 Whoso keepeth the law is a wise son: but he that is a companion
+of riotous men shameth his father.
+
+28:8 He that by usury and unjust gain increaseth his substance, he
+shall gather it for him that will pity the poor.
+
+28:9 He that turneth away his ear from hearing the law, even his
+prayer shall be abomination.
+
+28:10 Whoso causeth the righteous to go astray in an evil way, he
+shall fall himself into his own pit: but the upright shall have good
+things in possession.
+
+28:11 The rich man is wise in his own conceit; but the poor that hath
+understanding searcheth him out.
+
+28:12 When righteous men do rejoice, there is great glory: but when
+the wicked rise, a man is hidden.
+
+28:13 He that covereth his sins shall not prosper: but whoso
+confesseth and forsaketh them shall have mercy.
+
+28:14 Happy is the man that feareth alway: but he that hardeneth his
+heart shall fall into mischief.
+
+28:15 As a roaring lion, and a ranging bear; so is a wicked ruler over
+the poor people.
+
+28:16 The prince that wanteth understanding is also a great oppressor:
+but he that hateth covetousness shall prolong his days.
+
+28:17 A man that doeth violence to the blood of any person shall flee
+to the pit; let no man stay him.
+
+28:18 Whoso walketh uprightly shall be saved: but he that is perverse
+in his ways shall fall at once.
+
+28:19 He that tilleth his land shall have plenty of bread: but he that
+followeth after vain persons shall have poverty enough.
+
+28:20 A faithful man shall abound with blessings: but he that maketh
+haste to be rich shall not be innocent.
+
+28:21 To have respect of persons is not good: for for a piece of bread
+that man will transgress.
+
+28:22 He that hasteth to be rich hath an evil eye, and considereth not
+that poverty shall come upon him.
+
+28:23 He that rebuketh a man afterwards shall find more favour than he
+that flattereth with the tongue.
+
+28:24 Whoso robbeth his father or his mother, and saith, It is no
+transgression; the same is the companion of a destroyer.
+
+28:25 He that is of a proud heart stirreth up strife: but he that
+putteth his trust in the LORD shall be made fat.
+
+28:26 He that trusteth in his own heart is a fool: but whoso walketh
+wisely, he shall be delivered.
+
+28:27 He that giveth unto the poor shall not lack: but he that hideth
+his eyes shall have many a curse.
+
+28:28 When the wicked rise, men hide themselves: but when they perish,
+the righteous increase.
+
+29:1 He, that being often reproved hardeneth his neck, shall suddenly
+be destroyed, and that without remedy.
+
+29:2 When the righteous are in authority, the people rejoice: but when
+the wicked beareth rule, the people mourn.
+
+29:3 Whoso loveth wisdom rejoiceth his father: but he that keepeth
+company with harlots spendeth his substance.
+
+29:4 The king by judgment establisheth the land: but he that receiveth
+gifts overthroweth it.
+
+29:5 A man that flattereth his neighbour spreadeth a net for his feet.
+
+29:6 In the transgression of an evil man there is a snare: but the
+righteous doth sing and rejoice.
+
+29:7 The righteous considereth the cause of the poor: but the wicked
+regardeth not to know it.
+
+29:8 Scornful men bring a city into a snare: but wise men turn away
+wrath.
+
+29:9 If a wise man contendeth with a foolish man, whether he rage or
+laugh, there is no rest.
+
+29:10 The bloodthirsty hate the upright: but the just seek his soul.
+
+29:11 A fool uttereth all his mind: but a wise man keepeth it in till
+afterwards.
+
+29:12 If a ruler hearken to lies, all his servants are wicked.
+
+29:13 The poor and the deceitful man meet together: the LORD
+lighteneth both their eyes.
+
+29:14 The king that faithfully judgeth the poor, his throne shall be
+established for ever.
+
+29:15 The rod and reproof give wisdom: but a child left to himself
+bringeth his mother to shame.
+
+29:16 When the wicked are multiplied, transgression increaseth: but
+the righteous shall see their fall.
+
+29:17 Correct thy son, and he shall give thee rest; yea, he shall give
+delight unto thy soul.
+
+29:18 Where there is no vision, the people perish: but he that keepeth
+the law, happy is he.
+
+29:19 A servant will not be corrected by words: for though he
+understand he will not answer.
+
+29:20 Seest thou a man that is hasty in his words? there is more hope
+of a fool than of him.
+
+29:21 He that delicately bringeth up his servant from a child shall
+have him become his son at the length.
+
+29:22 An angry man stirreth up strife, and a furious man aboundeth in
+transgression.
+
+29:23 A man's pride shall bring him low: but honour shall uphold the
+humble in spirit.
+
+29:24 Whoso is partner with a thief hateth his own soul: he heareth
+cursing, and bewrayeth it not.
+
+29:25 The fear of man bringeth a snare: but whoso putteth his trust in
+the LORD shall be safe.
+
+29:26 Many seek the ruler's favour; but every man's judgment cometh
+from the LORD.
+
+29:27 An unjust man is an abomination to the just: and he that is
+upright in the way is abomination to the wicked.
+
+30:1 The words of Agur the son of Jakeh, even the prophecy: the man
+spake unto Ithiel, even unto Ithiel and Ucal, 30:2 Surely I am more
+brutish than any man, and have not the understanding of a man.
+
+30:3 I neither learned wisdom, nor have the knowledge of the holy.
+
+30:4 Who hath ascended up into heaven, or descended? who hath gathered
+the wind in his fists? who hath bound the waters in a garment? who
+hath established all the ends of the earth? what is his name, and what
+is his son's name, if thou canst tell? 30:5 Every word of God is
+pure: he is a shield unto them that put their trust in him.
+
+30:6 Add thou not unto his words, lest he reprove thee, and thou be
+found a liar.
+
+30:7 Two things have I required of thee; deny me them not before I
+die: 30:8 Remove far from me vanity and lies: give me neither poverty
+nor riches; feed me with food convenient for me: 30:9 Lest I be full,
+and deny thee, and say, Who is the LORD? or lest I be poor, and steal,
+and take the name of my God in vain.
+
+30:10 Accuse not a servant unto his master, lest he curse thee, and
+thou be found guilty.
+
+30:11 There is a generation that curseth their father, and doth not
+bless their mother.
+
+30:12 There is a generation that are pure in their own eyes, and yet
+is not washed from their filthiness.
+
+30:13 There is a generation, O how lofty are their eyes! and their
+eyelids are lifted up.
+
+30:14 There is a generation, whose teeth are as swords, and their jaw
+teeth as knives, to devour the poor from off the earth, and the needy
+from among men.
+
+30:15 The horseleach hath two daughters, crying, Give, give. There are
+three things that are never satisfied, yea, four things say not, It is
+enough: 30:16 The grave; and the barren womb; the earth that is not
+filled with water; and the fire that saith not, It is enough.
+
+30:17 The eye that mocketh at his father, and despiseth to obey his
+mother, the ravens of the valley shall pick it out, and the young
+eagles shall eat it.
+
+30:18 There be three things which are too wonderful for me, yea, four
+which I know not: 30:19 The way of an eagle in the air; the way of a
+serpent upon a rock; the way of a ship in the midst of the sea; and
+the way of a man with a maid.
+
+30:20 Such is the way of an adulterous woman; she eateth, and wipeth
+her mouth, and saith, I have done no wickedness.
+
+30:21 For three things the earth is disquieted, and for four which it
+cannot bear: 30:22 For a servant when he reigneth; and a fool when he
+is filled with meat; 30:23 For an odious woman when she is married;
+and an handmaid that is heir to her mistress.
+
+30:24 There be four things which are little upon the earth, but they
+are exceeding wise: 30:25 The ants are a people not strong, yet they
+prepare their meat in the summer; 30:26 The conies are but a feeble
+folk, yet make they their houses in the rocks; 30:27 The locusts have
+no king, yet go they forth all of them by bands; 30:28 The spider
+taketh hold with her hands, and is in kings' palaces.
+
+30:29 There be three things which go well, yea, four are comely in
+going: 30:30 A lion which is strongest among beasts, and turneth not
+away for any; 30:31 A greyhound; an he goat also; and a king, against
+whom there is no rising up.
+
+30:32 If thou hast done foolishly in lifting up thyself, or if thou
+hast thought evil, lay thine hand upon thy mouth.
+
+30:33 Surely the churning of milk bringeth forth butter, and the
+wringing of the nose bringeth forth blood: so the forcing of wrath
+bringeth forth strife.
+
+31:1 The words of king Lemuel, the prophecy that his mother taught
+him.
+
+31:2 What, my son? and what, the son of my womb? and what, the son of
+my vows? 31:3 Give not thy strength unto women, nor thy ways to that
+which destroyeth kings.
+
+31:4 It is not for kings, O Lemuel, it is not for kings to drink wine;
+nor for princes strong drink: 31:5 Lest they drink, and forget the
+law, and pervert the judgment of any of the afflicted.
+
+31:6 Give strong drink unto him that is ready to perish, and wine unto
+those that be of heavy hearts.
+
+31:7 Let him drink, and forget his poverty, and remember his misery no
+more.
+
+31:8 Open thy mouth for the dumb in the cause of all such as are
+appointed to destruction.
+
+31:9 Open thy mouth, judge righteously, and plead the cause of the
+poor and needy.
+
+31:10 Who can find a virtuous woman? for her price is far above
+rubies.
+
+31:11 The heart of her husband doth safely trust in her, so that he
+shall have no need of spoil.
+
+31:12 She will do him good and not evil all the days of her life.
+
+31:13 She seeketh wool, and flax, and worketh willingly with her
+hands.
+
+31:14 She is like the merchants' ships; she bringeth her food from
+afar.
+
+31:15 She riseth also while it is yet night, and giveth meat to her
+household, and a portion to her maidens.
+
+31:16 She considereth a field, and buyeth it: with the fruit of her
+hands she planteth a vineyard.
+
+31:17 She girdeth her loins with strength, and strengtheneth her arms.
+
+31:18 She perceiveth that her merchandise is good: her candle goeth
+not out by night.
+
+31:19 She layeth her hands to the spindle, and her hands hold the
+distaff.
+
+31:20 She stretcheth out her hand to the poor; yea, she reacheth forth
+her hands to the needy.
+
+31:21 She is not afraid of the snow for her household: for all her
+household are clothed with scarlet.
+
+31:22 She maketh herself coverings of tapestry; her clothing is silk
+and purple.
+
+31:23 Her husband is known in the gates, when he sitteth among the
+elders of the land.
+
+31:24 She maketh fine linen, and selleth it; and delivereth girdles
+unto the merchant.
+
+31:25 Strength and honour are her clothing; and she shall rejoice in
+time to come.
+
+31:26 She openeth her mouth with wisdom; and in her tongue is the law
+of kindness.
+
+31:27 She looketh well to the ways of her household, and eateth not
+the bread of idleness.
+
+31:28 Her children arise up, and call her blessed; her husband also,
+and he praiseth her.
+
+31:29 Many daughters have done virtuously, but thou excellest them
+all.
+
+31:30 Favour is deceitful, and beauty is vain: but a woman that
+feareth the LORD, she shall be praised.
+
+31:31 Give her of the fruit of her hands; and let her own works praise
+her in the gates.
+
+
+
+
+Ecclesiastes
+
+or
+
+The Preacher
+
+
+1:1 The words of the Preacher, the son of David, king in Jerusalem.
+
+1:2 Vanity of vanities, saith the Preacher, vanity of vanities; all is
+vanity.
+
+1:3 What profit hath a man of all his labour which he taketh under the
+sun? 1:4 One generation passeth away, and another generation cometh:
+but the earth abideth for ever.
+
+1:5 The sun also ariseth, and the sun goeth down, and hasteth to his
+place where he arose.
+
+1:6 The wind goeth toward the south, and turneth about unto the north;
+it whirleth about continually, and the wind returneth again according
+to his circuits.
+
+1:7 All the rivers run into the sea; yet the sea is not full; unto the
+place from whence the rivers come, thither they return again.
+
+1:8 All things are full of labour; man cannot utter it: the eye is not
+satisfied with seeing, nor the ear filled with hearing.
+
+1:9 The thing that hath been, it is that which shall be; and that
+which is done is that which shall be done: and there is no new thing
+under the sun.
+
+1:10 Is there any thing whereof it may be said, See, this is new? it
+hath been already of old time, which was before us.
+
+1:11 There is no remembrance of former things; neither shall there be
+any remembrance of things that are to come with those that shall come
+after.
+
+1:12 I the Preacher was king over Israel in Jerusalem.
+
+1:13 And I gave my heart to seek and search out by wisdom concerning
+all things that are done under heaven: this sore travail hath God
+given to the sons of man to be exercised therewith.
+
+1:14 I have seen all the works that are done under the sun; and,
+behold, all is vanity and vexation of spirit.
+
+1:15 That which is crooked cannot be made straight: and that which is
+wanting cannot be numbered.
+
+1:16 I communed with mine own heart, saying, Lo, I am come to great
+estate, and have gotten more wisdom than all they that have been
+before me in Jerusalem: yea, my heart had great experience of wisdom
+and knowledge.
+
+1:17 And I gave my heart to know wisdom, and to know madness and
+folly: I perceived that this also is vexation of spirit.
+
+1:18 For in much wisdom is much grief: and he that increaseth
+knowledge increaseth sorrow.
+
+2:1 I said in mine heart, Go to now, I will prove thee with mirth,
+therefore enjoy pleasure: and, behold, this also is vanity.
+
+2:2 I said of laughter, It is mad: and of mirth, What doeth it? 2:3 I
+sought in mine heart to give myself unto wine, yet acquainting mine
+heart with wisdom; and to lay hold on folly, till I might see what was
+that good for the sons of men, which they should do under the heaven
+all the days of their life.
+
+2:4 I made me great works; I builded me houses; I planted me
+vineyards: 2:5 I made me gardens and orchards, and I planted trees in
+them of all kind of fruits: 2:6 I made me pools of water, to water
+therewith the wood that bringeth forth trees: 2:7 I got me servants
+and maidens, and had servants born in my house; also I had great
+possessions of great and small cattle above all that were in Jerusalem
+before me: 2:8 I gathered me also silver and gold, and the peculiar
+treasure of kings and of the provinces: I gat me men singers and women
+singers, and the delights of the sons of men, as musical instruments,
+and that of all sorts.
+
+2:9 So I was great, and increased more than all that were before me in
+Jerusalem: also my wisdom remained with me.
+
+2:10 And whatsoever mine eyes desired I kept not from them, I withheld
+not my heart from any joy; for my heart rejoiced in all my labour: and
+this was my portion of all my labour.
+
+2:11 Then I looked on all the works that my hands had wrought, and on
+the labour that I had laboured to do: and, behold, all was vanity and
+vexation of spirit, and there was no profit under the sun.
+
+2:12 And I turned myself to behold wisdom, and madness, and folly: for
+what can the man do that cometh after the king? even that which hath
+been already done.
+
+2:13 Then I saw that wisdom excelleth folly, as far as light excelleth
+darkness.
+
+2:14 The wise man's eyes are in his head; but the fool walketh in
+darkness: and I myself perceived also that one event happeneth to them
+all.
+
+2:15 Then said I in my heart, As it happeneth to the fool, so it
+happeneth even to me; and why was I then more wise? Then I said in my
+heart, that this also is vanity.
+
+2:16 For there is no remembrance of the wise more than of the fool for
+ever; seeing that which now is in the days to come shall all be
+forgotten.
+
+And how dieth the wise man? as the fool.
+
+2:17 Therefore I hated life; because the work that is wrought under
+the sun is grievous unto me: for all is vanity and vexation of spirit.
+
+2:18 Yea, I hated all my labour which I had taken under the sun:
+because I should leave it unto the man that shall be after me.
+
+2:19 And who knoweth whether he shall be a wise man or a fool? yet
+shall he have rule over all my labour wherein I have laboured, and
+wherein I have shewed myself wise under the sun. This is also vanity.
+
+2:20 Therefore I went about to cause my heart to despair of all the
+labour which I took under the sun.
+
+2:21 For there is a man whose labour is in wisdom, and in knowledge,
+and in equity; yet to a man that hath not laboured therein shall he
+leave it for his portion. This also is vanity and a great evil.
+
+2:22 For what hath man of all his labour, and of the vexation of his
+heart, wherein he hath laboured under the sun? 2:23 For all his days
+are sorrows, and his travail grief; yea, his heart taketh not rest in
+the night. This is also vanity.
+
+2:24 There is nothing better for a man, than that he should eat and
+drink, and that he should make his soul enjoy good in his labour. This
+also I saw, that it was from the hand of God.
+
+2:25 For who can eat, or who else can hasten hereunto, more than I?
+2:26 For God giveth to a man that is good in his sight wisdom, and
+knowledge, and joy: but to the sinner he giveth travail, to gather and
+to heap up, that he may give to him that is good before God. This also
+is vanity and vexation of spirit.
+
+3:1 To every thing there is a season, and a time to every purpose
+under the heaven: 3:2 A time to be born, and a time to die; a time to
+plant, and a time to pluck up that which is planted; 3:3 A time to
+kill, and a time to heal; a time to break down, and a time to build
+up; 3:4 A time to weep, and a time to laugh; a time to mourn, and a
+time to dance; 3:5 A time to cast away stones, and a time to gather
+stones together; a time to embrace, and a time to refrain from
+embracing; 3:6 A time to get, and a time to lose; a time to keep, and
+a time to cast away; 3:7 A time to rend, and a time to sew; a time to
+keep silence, and a time to speak; 3:8 A time to love, and a time to
+hate; a time of war, and a time of peace.
+
+3:9 What profit hath he that worketh in that wherein he laboureth?
+3:10 I have seen the travail, which God hath given to the sons of men
+to be exercised in it.
+
+3:11 He hath made every thing beautiful in his time: also he hath set
+the world in their heart, so that no man can find out the work that
+God maketh from the beginning to the end.
+
+3:12 I know that there is no good in them, but for a man to rejoice,
+and to do good in his life.
+
+3:13 And also that every man should eat and drink, and enjoy the good
+of all his labour, it is the gift of God.
+
+3:14 I know that, whatsoever God doeth, it shall be for ever: nothing
+can be put to it, nor any thing taken from it: and God doeth it, that
+men should fear before him.
+
+3:15 That which hath been is now; and that which is to be hath already
+been; and God requireth that which is past.
+
+3:16 And moreover I saw under the sun the place of judgment, that
+wickedness was there; and the place of righteousness, that iniquity
+was there.
+
+3:17 I said in mine heart, God shall judge the righteous and the
+wicked: for there is a time there for every purpose and for every
+work.
+
+3:18 I said in mine heart concerning the estate of the sons of men,
+that God might manifest them, and that they might see that they
+themselves are beasts.
+
+3:19 For that which befalleth the sons of men befalleth beasts; even
+one thing befalleth them: as the one dieth, so dieth the other; yea,
+they have all one breath; so that a man hath no preeminence above a
+beast: for all is vanity.
+
+3:20 All go unto one place; all are of the dust, and all turn to dust
+again.
+
+3:21 Who knoweth the spirit of man that goeth upward, and the spirit
+of the beast that goeth downward to the earth? 3:22 Wherefore I
+perceive that there is nothing better, than that a man should rejoice
+in his own works; for that is his portion: for who shall bring him to
+see what shall be after him? 4:1 So I returned, and considered all
+the oppressions that are done under the sun: and behold the tears of
+such as were oppressed, and they had no comforter; and on the side of
+their oppressors there was power; but they had no comforter.
+
+4:2 Wherefore I praised the dead which are already dead more than the
+living which are yet alive.
+
+4:3 Yea, better is he than both they, which hath not yet been, who
+hath not seen the evil work that is done under the sun.
+
+4:4 Again, I considered all travail, and every right work, that for
+this a man is envied of his neighbour. This is also vanity and
+vexation of spirit.
+
+4:5 The fool foldeth his hands together, and eateth his own flesh.
+
+4:6 Better is an handful with quietness, than both the hands full with
+travail and vexation of spirit.
+
+4:7 Then I returned, and I saw vanity under the sun.
+
+4:8 There is one alone, and there is not a second; yea, he hath
+neither child nor brother: yet is there no end of all his labour;
+neither is his eye satisfied with riches; neither saith he, For whom
+do I labour, and bereave my soul of good? This is also vanity, yea, it
+is a sore travail.
+
+4:9 Two are better than one; because they have a good reward for their
+labour.
+
+4:10 For if they fall, the one will lift up his fellow: but woe to him
+that is alone when he falleth; for he hath not another to help him up.
+
+4:11 Again, if two lie together, then they have heat: but how can one
+be warm alone? 4:12 And if one prevail against him, two shall
+withstand him; and a threefold cord is not quickly broken.
+
+4:13 Better is a poor and a wise child than an old and foolish king,
+who will no more be admonished.
+
+4:14 For out of prison he cometh to reign; whereas also he that is
+born in his kingdom becometh poor.
+
+4:15 I considered all the living which walk under the sun, with the
+second child that shall stand up in his stead.
+
+4:16 There is no end of all the people, even of all that have been
+before them: they also that come after shall not rejoice in him.
+Surely this also is vanity and vexation of spirit.
+
+5:1 Keep thy foot when thou goest to the house of God, and be more
+ready to hear, than to give the sacrifice of fools: for they consider
+not that they do evil.
+
+5:2 Be not rash with thy mouth, and let not thine heart be hasty to
+utter any thing before God: for God is in heaven, and thou upon earth:
+therefore let thy words be few.
+
+5:3 For a dream cometh through the multitude of business; and a fool's
+voice is known by multitude of words.
+
+5:4 When thou vowest a vow unto God, defer not to pay it; for he hath
+no pleasure in fools: pay that which thou hast vowed.
+
+5:5 Better is it that thou shouldest not vow, than that thou shouldest
+vow and not pay.
+
+5:6 Suffer not thy mouth to cause thy flesh to sin; neither say thou
+before the angel, that it was an error: wherefore should God be angry
+at thy voice, and destroy the work of thine hands? 5:7 For in the
+multitude of dreams and many words there are also divers vanities: but
+fear thou God.
+
+5:8 If thou seest the oppression of the poor, and violent perverting
+of judgment and justice in a province, marvel not at the matter: for
+he that is higher than the highest regardeth; and there be higher than
+they.
+
+5:9 Moreover the profit of the earth is for all: the king himself is
+served by the field.
+
+5:10 He that loveth silver shall not be satisfied with silver; nor he
+that loveth abundance with increase: this is also vanity.
+
+5:11 When goods increase, they are increased that eat them: and what
+good is there to the owners thereof, saving the beholding of them with
+their eyes? 5:12 The sleep of a labouring man is sweet, whether he
+eat little or much: but the abundance of the rich will not suffer him
+to sleep.
+
+5:13 There is a sore evil which I have seen under the sun, namely,
+riches kept for the owners thereof to their hurt.
+
+5:14 But those riches perish by evil travail: and he begetteth a son,
+and there is nothing in his hand.
+
+5:15 As he came forth of his mother's womb, naked shall he return to
+go as he came, and shall take nothing of his labour, which he may
+carry away in his hand.
+
+5:16 And this also is a sore evil, that in all points as he came, so
+shall he go: and what profit hath he that hath laboured for the wind?
+5:17 All his days also he eateth in darkness, and he hath much sorrow
+and wrath with his sickness.
+
+5:18 Behold that which I have seen: it is good and comely for one to
+eat and to drink, and to enjoy the good of all his labour that he
+taketh under the sun all the days of his life, which God giveth him:
+for it is his portion.
+
+5:19 Every man also to whom God hath given riches and wealth, and hath
+given him power to eat thereof, and to take his portion, and to
+rejoice in his labour; this is the gift of God.
+
+5:20 For he shall not much remember the days of his life; because God
+answereth him in the joy of his heart.
+
+6:1 There is an evil which I have seen under the sun, and it is common
+among men: 6:2 A man to whom God hath given riches, wealth, and
+honour, so that he wanteth nothing for his soul of all that he
+desireth, yet God giveth him not power to eat thereof, but a stranger
+eateth it: this is vanity, and it is an evil disease.
+
+6:3 If a man beget an hundred children, and live many years, so that
+the days of his years be many, and his soul be not filled with good,
+and also that he have no burial; I say, that an untimely birth is
+better than he.
+
+6:4 For he cometh in with vanity, and departeth in darkness, and his
+name shall be covered with darkness.
+
+6:5 Moreover he hath not seen the sun, nor known any thing: this hath
+more rest than the other.
+
+6:6 Yea, though he live a thousand years twice told, yet hath he seen
+no good: do not all go to one place? 6:7 All the labour of man is for
+his mouth, and yet the appetite is not filled.
+
+6:8 For what hath the wise more than the fool? what hath the poor,
+that knoweth to walk before the living? 6:9 Better is the sight of
+the eyes than the wandering of the desire: this is also vanity and
+vexation of spirit.
+
+6:10 That which hath been is named already, and it is known that it is
+man: neither may he contend with him that is mightier than he.
+
+6:11 Seeing there be many things that increase vanity, what is man the
+better? 6:12 For who knoweth what is good for man in this life, all
+the days of his vain life which he spendeth as a shadow? for who can
+tell a man what shall be after him under the sun? 7:1 A good name is
+better than precious ointment; and the day of death than the day of
+one's birth.
+
+7:2 It is better to go to the house of mourning, than to go to the
+house of feasting: for that is the end of all men; and the living will
+lay it to his heart.
+
+7:3 Sorrow is better than laughter: for by the sadness of the
+countenance the heart is made better.
+
+7:4 The heart of the wise is in the house of mourning; but the heart
+of fools is in the house of mirth.
+
+7:5 It is better to hear the rebuke of the wise, than for a man to
+hear the song of fools.
+
+7:6 For as the crackling of thorns under a pot, so is the laughter of
+the fool: this also is vanity.
+
+7:7 Surely oppression maketh a wise man mad; and a gift destroyeth the
+heart.
+
+7:8 Better is the end of a thing than the beginning thereof: and the
+patient in spirit is better than the proud in spirit.
+
+7:9 Be not hasty in thy spirit to be angry: for anger resteth in the
+bosom of fools.
+
+7:10 Say not thou, What is the cause that the former days were better
+than these? for thou dost not enquire wisely concerning this.
+
+7:11 Wisdom is good with an inheritance: and by it there is profit to
+them that see the sun.
+
+7:12 For wisdom is a defence, and money is a defence: but the
+excellency of knowledge is, that wisdom giveth life to them that have
+it.
+
+7:13 Consider the work of God: for who can make that straight, which
+he hath made crooked? 7:14 In the day of prosperity be joyful, but in
+the day of adversity consider: God also hath set the one over against
+the other, to the end that man should find nothing after him.
+
+7:15 All things have I seen in the days of my vanity: there is a just
+man that perisheth in his righteousness, and there is a wicked man
+that prolongeth his life in his wickedness.
+
+7:16 Be not righteous over much; neither make thyself over wise: why
+shouldest thou destroy thyself ? 7:17 Be not over much wicked,
+neither be thou foolish: why shouldest thou die before thy time? 7:18
+It is good that thou shouldest take hold of this; yea, also from this
+withdraw not thine hand: for he that feareth God shall come forth of
+them all.
+
+7:19 Wisdom strengtheneth the wise more than ten mighty men which are
+in the city.
+
+7:20 For there is not a just man upon earth, that doeth good, and
+sinneth not.
+
+7:21 Also take no heed unto all words that are spoken; lest thou hear
+thy servant curse thee: 7:22 For oftentimes also thine own heart
+knoweth that thou thyself likewise hast cursed others.
+
+7:23 All this have I proved by wisdom: I said, I will be wise; but it
+was far from me.
+
+7:24 That which is far off, and exceeding deep, who can find it out?
+7:25 I applied mine heart to know, and to search, and to seek out
+wisdom, and the reason of things, and to know the wickedness of folly,
+even of foolishness and madness: 7:26 And I find more bitter than
+death the woman, whose heart is snares and nets, and her hands as
+bands: whoso pleaseth God shall escape from her; but the sinner shall
+be taken by her.
+
+7:27 Behold, this have I found, saith the preacher, counting one by
+one, to find out the account: 7:28 Which yet my soul seeketh, but I
+find not: one man among a thousand have I found; but a woman among all
+those have I not found.
+
+7:29 Lo, this only have I found, that God hath made man upright; but
+they have sought out many inventions.
+
+8:1 Who is as the wise man? and who knoweth the interpretation of a
+thing? a man's wisdom maketh his face to shine, and the boldness of
+his face shall be changed.
+
+8:2 I counsel thee to keep the king's commandment, and that in regard
+of the oath of God.
+
+8:3 Be not hasty to go out of his sight: stand not in an evil thing;
+for he doeth whatsoever pleaseth him.
+
+8:4 Where the word of a king is, there is power: and who may say unto
+him, What doest thou? 8:5 Whoso keepeth the commandment shall feel no
+evil thing: and a wise man's heart discerneth both time and judgment.
+
+8:6 Because to every purpose there is time and judgment, therefore the
+misery of man is great upon him.
+
+8:7 For he knoweth not that which shall be: for who can tell him when
+it shall be? 8:8 There is no man that hath power over the spirit to
+retain the spirit; neither hath he power in the day of death: and
+there is no discharge in that war; neither shall wickedness deliver
+those that are given to it.
+
+8:9 All this have I seen, and applied my heart unto every work that is
+done under the sun: there is a time wherein one man ruleth over
+another to his own hurt.
+
+8:10 And so I saw the wicked buried, who had come and gone from the
+place of the holy, and they were forgotten in the city where they had
+so done: this is also vanity.
+
+8:11 Because sentence against an evil work is not executed speedily,
+therefore the heart of the sons of men is fully set in them to do
+evil.
+
+8:12 Though a sinner do evil an hundred times, and his days be
+prolonged, yet surely I know that it shall be well with them that fear
+God, which fear before him: 8:13 But it shall not be well with the
+wicked, neither shall he prolong his days, which are as a shadow;
+because he feareth not before God.
+
+8:14 There is a vanity which is done upon the earth; that there be
+just men, unto whom it happeneth according to the work of the wicked;
+again, there be wicked men, to whom it happeneth according to the work
+of the righteous: I said that this also is vanity.
+
+8:15 Then I commended mirth, because a man hath no better thing under
+the sun, than to eat, and to drink, and to be merry: for that shall
+abide with him of his labour the days of his life, which God giveth
+him under the sun.
+
+8:16 When I applied mine heart to know wisdom, and to see the business
+that is done upon the earth: (for also there is that neither day nor
+night seeth sleep with his eyes:) 8:17 Then I beheld all the work of
+God, that a man cannot find out the work that is done under the sun:
+because though a man labour to seek it out, yet he shall not find it;
+yea farther; though a wise man think to know it, yet shall he not be
+able to find it.
+
+9:1 For all this I considered in my heart even to declare all this,
+that the righteous, and the wise, and their works, are in the hand of
+God: no man knoweth either love or hatred by all that is before them.
+
+9:2 All things come alike to all: there is one event to the righteous,
+and to the wicked; to the good and to the clean, and to the unclean;
+to him that sacrificeth, and to him that sacrificeth not: as is the
+good, so is the sinner; and he that sweareth, as he that feareth an
+oath.
+
+9:3 This is an evil among all things that are done under the sun, that
+there is one event unto all: yea, also the heart of the sons of men is
+full of evil, and madness is in their heart while they live, and after
+that they go to the dead.
+
+9:4 For to him that is joined to all the living there is hope: for a
+living dog is better than a dead lion.
+
+9:5 For the living know that they shall die: but the dead know not any
+thing, neither have they any more a reward; for the memory of them is
+forgotten.
+
+9:6 Also their love, and their hatred, and their envy, is now
+perished; neither have they any more a portion for ever in any thing
+that is done under the sun.
+
+9:7 Go thy way, eat thy bread with joy, and drink thy wine with a
+merry heart; for God now accepteth thy works.
+
+9:8 Let thy garments be always white; and let thy head lack no
+ointment.
+
+9:9 Live joyfully with the wife whom thou lovest all the days of the
+life of thy vanity, which he hath given thee under the sun, all the
+days of thy vanity: for that is thy portion in this life, and in thy
+labour which thou takest under the sun.
+
+9:10 Whatsoever thy hand findeth to do, do it with thy might; for
+there is no work, nor device, nor knowledge, nor wisdom, in the grave,
+whither thou goest.
+
+9:11 I returned, and saw under the sun, that the race is not to the
+swift, nor the battle to the strong, neither yet bread to the wise,
+nor yet riches to men of understanding, nor yet favour to men of
+skill; but time and chance happeneth to them all.
+
+9:12 For man also knoweth not his time: as the fishes that are taken
+in an evil net, and as the birds that are caught in the snare; so are
+the sons of men snared in an evil time, when it falleth suddenly upon
+them.
+
+9:13 This wisdom have I seen also under the sun, and it seemed great
+unto me: 9:14 There was a little city, and few men within it; and
+there came a great king against it, and besieged it, and built great
+bulwarks against it: 9:15 Now there was found in it a poor wise man,
+and he by his wisdom delivered the city; yet no man remembered that
+same poor man.
+
+9:16 Then said I, Wisdom is better than strength: nevertheless the
+poor man's wisdom is despised, and his words are not heard.
+
+9:17 The words of wise men are heard in quiet more than the cry of him
+that ruleth among fools.
+
+9:18 Wisdom is better than weapons of war: but one sinner destroyeth
+much good.
+
+10:1 Dead flies cause the ointment of the apothecary to send forth a
+stinking savour: so doth a little folly him that is in reputation for
+wisdom and honour.
+
+10:2 A wise man's heart is at his right hand; but a fool's heart at
+his left.
+
+10:3 Yea also, when he that is a fool walketh by the way, his wisdom
+faileth him, and he saith to every one that he is a fool.
+
+10:4 If the spirit of the ruler rise up against thee, leave not thy
+place; for yielding pacifieth great offences.
+
+10:5 There is an evil which I have seen under the sun, as an error
+which proceedeth from the ruler: 10:6 Folly is set in great dignity,
+and the rich sit in low place.
+
+10:7 I have seen servants upon horses, and princes walking as servants
+upon the earth.
+
+10:8 He that diggeth a pit shall fall into it; and whoso breaketh an
+hedge, a serpent shall bite him.
+
+10:9 Whoso removeth stones shall be hurt therewith; and he that
+cleaveth wood shall be endangered thereby.
+
+10:10 If the iron be blunt, and he do not whet the edge, then must he
+put to more strength: but wisdom is profitable to direct.
+
+10:11 Surely the serpent will bite without enchantment; and a babbler
+is no better.
+
+10:12 The words of a wise man's mouth are gracious; but the lips of a
+fool will swallow up himself.
+
+10:13 The beginning of the words of his mouth is foolishness: and the
+end of his talk is mischievous madness.
+
+10:14 A fool also is full of words: a man cannot tell what shall be;
+and what shall be after him, who can tell him? 10:15 The labour of
+the foolish wearieth every one of them, because he knoweth not how to
+go to the city.
+
+10:16 Woe to thee, O land, when thy king is a child, and thy princes
+eat in the morning! 10:17 Blessed art thou, O land, when thy king is
+the son of nobles, and thy princes eat in due season, for strength,
+and not for drunkenness! 10:18 By much slothfulness the building
+decayeth; and through idleness of the hands the house droppeth
+through.
+
+10:19 A feast is made for laughter, and wine maketh merry: but money
+answereth all things.
+
+10:20 Curse not the king, no not in thy thought; and curse not the
+rich in thy bedchamber: for a bird of the air shall carry the voice,
+and that which hath wings shall tell the matter.
+
+11:1 Cast thy bread upon the waters: for thou shalt find it after many
+days.
+
+11:2 Give a portion to seven, and also to eight; for thou knowest not
+what evil shall be upon the earth.
+
+11:3 If the clouds be full of rain, they empty themselves upon the
+earth: and if the tree fall toward the south, or toward the north, in
+the place where the tree falleth, there it shall be.
+
+11:4 He that observeth the wind shall not sow; and he that regardeth
+the clouds shall not reap.
+
+11:5 As thou knowest not what is the way of the spirit, nor how the
+bones do grow in the womb of her that is with child: even so thou
+knowest not the works of God who maketh all.
+
+11:6 In the morning sow thy seed, and in the evening withhold not
+thine hand: for thou knowest not whether shall prosper, either this or
+that, or whether they both shall be alike good.
+
+11:7 Truly the light is sweet, and a pleasant thing it is for the eyes
+to behold the sun: 11:8 But if a man live many years, and rejoice in
+them all; yet let him remember the days of darkness; for they shall be
+many. All that cometh is vanity.
+
+11:9 Rejoice, O young man, in thy youth; and let thy heart cheer thee
+in the days of thy youth, and walk in the ways of thine heart, and in
+the sight of thine eyes: but know thou, that for all these things God
+will bring thee into judgment.
+
+11:10 Therefore remove sorrow from thy heart, and put away evil from
+thy flesh: for childhood and youth are vanity.
+
+12:1 Remember now thy Creator in the days of thy youth, while the evil
+days come not, nor the years draw nigh, when thou shalt say, I have no
+pleasure in them; 12:2 While the sun, or the light, or the moon, or
+the stars, be not darkened, nor the clouds return after the rain: 12:3
+In the day when the keepers of the house shall tremble, and the strong
+men shall bow themselves, and the grinders cease because they are few,
+and those that look out of the windows be darkened, 12:4 And the doors
+shall be shut in the streets, when the sound of the grinding is low,
+and he shall rise up at the voice of the bird, and all the daughters
+of musick shall be brought low; 12:5 Also when they shall be afraid of
+that which is high, and fears shall be in the way, and the almond tree
+shall flourish, and the grasshopper shall be a burden, and desire
+shall fail: because man goeth to his long home, and the mourners go
+about the streets: 12:6 Or ever the silver cord be loosed, or the
+golden bowl be broken, or the pitcher be broken at the fountain, or
+the wheel broken at the cistern.
+
+12:7 Then shall the dust return to the earth as it was: and the spirit
+shall return unto God who gave it.
+
+12:8 Vanity of vanities, saith the preacher; all is vanity.
+
+12:9 And moreover, because the preacher was wise, he still taught the
+people knowledge; yea, he gave good heed, and sought out, and set in
+order many proverbs.
+
+12:10 The preacher sought to find out acceptable words: and that which
+was written was upright, even words of truth.
+
+12:11 The words of the wise are as goads, and as nails fastened by the
+masters of assemblies, which are given from one shepherd.
+
+12:12 And further, by these, my son, be admonished: of making many
+books there is no end; and much study is a weariness of the flesh.
+
+12:13 Let us hear the conclusion of the whole matter: Fear God, and
+keep his commandments: for this is the whole duty of man.
+
+12:14 For God shall bring every work into judgment, with every secret
+thing, whether it be good, or whether it be evil.
+
+
+
+
+The Song of Solomon
+
+
+1:1 The song of songs, which is Solomon's.
+
+1:2 Let him kiss me with the kisses of his mouth: for thy love is
+better than wine.
+
+1:3 Because of the savour of thy good ointments thy name is as
+ointment poured forth, therefore do the virgins love thee.
+
+1:4 Draw me, we will run after thee: the king hath brought me into his
+chambers: we will be glad and rejoice in thee, we will remember thy
+love more than wine: the upright love thee.
+
+1:5 I am black, but comely, O ye daughters of Jerusalem, as the tents
+of Kedar, as the curtains of Solomon.
+
+1:6 Look not upon me, because I am black, because the sun hath looked
+upon me: my mother's children were angry with me; they made me the
+keeper of the vineyards; but mine own vineyard have I not kept.
+
+1:7 Tell me, O thou whom my soul loveth, where thou feedest, where
+thou makest thy flock to rest at noon: for why should I be as one that
+turneth aside by the flocks of thy companions? 1:8 If thou know not,
+O thou fairest among women, go thy way forth by the footsteps of the
+flock, and feed thy kids beside the shepherds' tents.
+
+1:9 I have compared thee, O my love, to a company of horses in
+Pharaoh's chariots.
+
+1:10 Thy cheeks are comely with rows of jewels, thy neck with chains
+of gold.
+
+1:11 We will make thee borders of gold with studs of silver.
+
+1:12 While the king sitteth at his table, my spikenard sendeth forth
+the smell thereof.
+
+1:13 A bundle of myrrh is my well-beloved unto me; he shall lie all
+night betwixt my breasts.
+
+1:14 My beloved is unto me as a cluster of camphire in the vineyards
+of Engedi.
+
+1:15 Behold, thou art fair, my love; behold, thou art fair; thou hast
+doves' eyes.
+
+1:16 Behold, thou art fair, my beloved, yea, pleasant: also our bed is
+green.
+
+1:17 The beams of our house are cedar, and our rafters of fir.
+
+2:1 I am the rose of Sharon, and the lily of the valleys.
+
+2:2 As the lily among thorns, so is my love among the daughters.
+
+2:3 As the apple tree among the trees of the wood, so is my beloved
+among the sons. I sat down under his shadow with great delight, and
+his fruit was sweet to my taste.
+
+2:4 He brought me to the banqueting house, and his banner over me was
+love.
+
+2:5 Stay me with flagons, comfort me with apples: for I am sick of
+love.
+
+2:6 His left hand is under my head, and his right hand doth embrace
+me.
+
+2:7 I charge you, O ye daughters of Jerusalem, by the roes, and by the
+hinds of the field, that ye stir not up, nor awake my love, till he
+please.
+
+2:8 The voice of my beloved! behold, he cometh leaping upon the
+mountains, skipping upon the hills.
+
+2:9 My beloved is like a roe or a young hart: behold, he standeth
+behind our wall, he looketh forth at the windows, shewing himself
+through the lattice.
+
+2:10 My beloved spake, and said unto me, Rise up, my love, my fair
+one, and come away.
+
+2:11 For, lo, the winter is past, the rain is over and gone; 2:12 The
+flowers appear on the earth; the time of the singing of birds is come,
+and the voice of the turtle is heard in our land; 2:13 The fig tree
+putteth forth her green figs, and the vines with the tender grape give
+a good smell. Arise, my love, my fair one, and come away.
+
+2:14 O my dove, that art in the clefts of the rock, in the secret
+places of the stairs, let me see thy countenance, let me hear thy
+voice; for sweet is thy voice, and thy countenance is comely.
+
+2:15 Take us the foxes, the little foxes, that spoil the vines: for
+our vines have tender grapes.
+
+2:16 My beloved is mine, and I am his: he feedeth among the lilies.
+
+2:17 Until the day break, and the shadows flee away, turn, my beloved,
+and be thou like a roe or a young hart upon the mountains of Bether.
+
+3:1 By night on my bed I sought him whom my soul loveth: I sought him,
+but I found him not.
+
+3:2 I will rise now, and go about the city in the streets, and in the
+broad ways I will seek him whom my soul loveth: I sought him, but I
+found him not.
+
+3:3 The watchmen that go about the city found me: to whom I said, Saw
+ye him whom my soul loveth? 3:4 It was but a little that I passed
+from them, but I found him whom my soul loveth: I held him, and would
+not let him go, until I had brought him into my mother's house, and
+into the chamber of her that conceived me.
+
+3:5 I charge you, O ye daughters of Jerusalem, by the roes, and by the
+hinds of the field, that ye stir not up, nor awake my love, till he
+please.
+
+3:6 Who is this that cometh out of the wilderness like pillars of
+smoke, perfumed with myrrh and frankincense, with all powders of the
+merchant? 3:7 Behold his bed, which is Solomon's; threescore valiant
+men are about it, of the valiant of Israel.
+
+3:8 They all hold swords, being expert in war: every man hath his
+sword upon his thigh because of fear in the night.
+
+3:9 King Solomon made himself a chariot of the wood of Lebanon.
+
+3:10 He made the pillars thereof of silver, the bottom thereof of
+gold, the covering of it of purple, the midst thereof being paved with
+love, for the daughters of Jerusalem.
+
+3:11 Go forth, O ye daughters of Zion, and behold king Solomon with
+the crown wherewith his mother crowned him in the day of his
+espousals, and in the day of the gladness of his heart.
+
+4:1 Behold, thou art fair, my love; behold, thou art fair; thou hast
+doves' eyes within thy locks: thy hair is as a flock of goats, that
+appear from mount Gilead.
+
+4:2 Thy teeth are like a flock of sheep that are even shorn, which
+came up from the washing; whereof every one bear twins, and none is
+barren among them.
+
+4:3 Thy lips are like a thread of scarlet, and thy speech is comely:
+thy temples are like a piece of a pomegranate within thy locks.
+
+4:4 Thy neck is like the tower of David builded for an armoury,
+whereon there hang a thousand bucklers, all shields of mighty men.
+
+4:5 Thy two breasts are like two young roes that are twins, which feed
+among the lilies.
+
+4:6 Until the day break, and the shadows flee away, I will get me to
+the mountain of myrrh, and to the hill of frankincense.
+
+4:7 Thou art all fair, my love; there is no spot in thee.
+
+4:8 Come with me from Lebanon, my spouse, with me from Lebanon: look
+from the top of Amana, from the top of Shenir and Hermon, from the
+lions' dens, from the mountains of the leopards.
+
+4:9 Thou hast ravished my heart, my sister, my spouse; thou hast
+ravished my heart with one of thine eyes, with one chain of thy neck.
+
+4:10 How fair is thy love, my sister, my spouse! how much better is
+thy love than wine! and the smell of thine ointments than all spices!
+4:11 Thy lips, O my spouse, drop as the honeycomb: honey and milk are
+under thy tongue; and the smell of thy garments is like the smell of
+Lebanon.
+
+4:12 A garden inclosed is my sister, my spouse; a spring shut up, a
+fountain sealed.
+
+4:13 Thy plants are an orchard of pomegranates, with pleasant fruits;
+camphire, with spikenard, 4:14 Spikenard and saffron; calamus and
+cinnamon, with all trees of frankincense; myrrh and aloes, with all
+the chief spices: 4:15 A fountain of gardens, a well of living waters,
+and streams from Lebanon.
+
+4:16 Awake, O north wind; and come, thou south; blow upon my garden,
+that the spices thereof may flow out. Let my beloved come into his
+garden, and eat his pleasant fruits.
+
+5:1 I am come into my garden, my sister, my spouse: I have gathered my
+myrrh with my spice; I have eaten my honeycomb with my honey; I have
+drunk my wine with my milk: eat, O friends; drink, yea, drink
+abundantly, O beloved.
+
+5:2 I sleep, but my heart waketh: it is the voice of my beloved that
+knocketh, saying, Open to me, my sister, my love, my dove, my
+undefiled: for my head is filled with dew, and my locks with the drops
+of the night.
+
+5:3 I have put off my coat; how shall I put it on? I have washed my
+feet; how shall I defile them? 5:4 My beloved put in his hand by the
+hole of the door, and my bowels were moved for him.
+
+5:5 I rose up to open to my beloved; and my hands dropped with myrrh,
+and my fingers with sweet smelling myrrh, upon the handles of the
+lock.
+
+5:6 I opened to my beloved; but my beloved had withdrawn himself, and
+was gone: my soul failed when he spake: I sought him, but I could not
+find him; I called him, but he gave me no answer.
+
+5:7 The watchmen that went about the city found me, they smote me,
+they wounded me; the keepers of the walls took away my veil from me.
+
+5:8 I charge you, O daughters of Jerusalem, if ye find my beloved,
+that ye tell him, that I am sick of love.
+
+5:9 What is thy beloved more than another beloved, O thou fairest
+among women? what is thy beloved more than another beloved, that thou
+dost so charge us? 5:10 My beloved is white and ruddy, the chiefest
+among ten thousand.
+
+5:11 His head is as the most fine gold, his locks are bushy, and black
+as a raven.
+
+5:12 His eyes are as the eyes of doves by the rivers of waters, washed
+with milk, and fitly set.
+
+5:13 His cheeks are as a bed of spices, as sweet flowers: his lips
+like lilies, dropping sweet smelling myrrh.
+
+5:14 His hands are as gold rings set with the beryl: his belly is as
+bright ivory overlaid with sapphires.
+
+5:15 His legs are as pillars of marble, set upon sockets of fine gold:
+his countenance is as Lebanon, excellent as the cedars.
+
+5:16 His mouth is most sweet: yea, he is altogether lovely. This is my
+beloved, and this is my friend, O daughters of Jerusalem.
+
+6:1 Whither is thy beloved gone, O thou fairest among women? whither
+is thy beloved turned aside? that we may seek him with thee.
+
+6:2 My beloved is gone down into his garden, to the beds of spices, to
+feed in the gardens, and to gather lilies.
+
+6:3 I am my beloved's, and my beloved is mine: he feedeth among the
+lilies.
+
+6:4 Thou art beautiful, O my love, as Tirzah, comely as Jerusalem,
+terrible as an army with banners.
+
+6:5 Turn away thine eyes from me, for they have overcome me: thy hair
+is as a flock of goats that appear from Gilead.
+
+6:6 Thy teeth are as a flock of sheep which go up from the washing,
+whereof every one beareth twins, and there is not one barren among
+them.
+
+6:7 As a piece of a pomegranate are thy temples within thy locks.
+
+6:8 There are threescore queens, and fourscore concubines, and virgins
+without number.
+
+6:9 My dove, my undefiled is but one; she is the only one of her
+mother, she is the choice one of her that bare her. The daughters saw
+her, and blessed her; yea, the queens and the concubines, and they
+praised her.
+
+6:10 Who is she that looketh forth as the morning, fair as the moon,
+clear as the sun, and terrible as an army with banners? 6:11 I went
+down into the garden of nuts to see the fruits of the valley, and to
+see whether the vine flourished and the pomegranates budded.
+
+6:12 Or ever I was aware, my soul made me like the chariots of
+Amminadib.
+
+6:13 Return, return, O Shulamite; return, return, that we may look
+upon thee. What will ye see in the Shulamite? As it were the company
+of two armies.
+
+7:1 How beautiful are thy feet with shoes, O prince's daughter! the
+joints of thy thighs are like jewels, the work of the hands of a
+cunning workman.
+
+7:2 Thy navel is like a round goblet, which wanteth not liquor: thy
+belly is like an heap of wheat set about with lilies.
+
+7:3 Thy two breasts are like two young roes that are twins.
+
+7:4 Thy neck is as a tower of ivory; thine eyes like the fishpools in
+Heshbon, by the gate of Bathrabbim: thy nose is as the tower of
+Lebanon which looketh toward Damascus.
+
+7:5 Thine head upon thee is like Carmel, and the hair of thine head
+like purple; the king is held in the galleries.
+
+7:6 How fair and how pleasant art thou, O love, for delights! 7:7
+This thy stature is like to a palm tree, and thy breasts to clusters
+of grapes.
+
+7:8 I said, I will go up to the palm tree, I will take hold of the
+boughs thereof: now also thy breasts shall be as clusters of the vine,
+and the smell of thy nose like apples; 7:9 And the roof of thy mouth
+like the best wine for my beloved, that goeth down sweetly, causing
+the lips of those that are asleep to speak.
+
+7:10 I am my beloved's, and his desire is toward me.
+
+7:11 Come, my beloved, let us go forth into the field; let us lodge in
+the villages.
+
+7:12 Let us get up early to the vineyards; let us see if the vine
+flourish, whether the tender grape appear, and the pomegranates bud
+forth: there will I give thee my loves.
+
+7:13 The mandrakes give a smell, and at our gates are all manner of
+pleasant fruits, new and old, which I have laid up for thee, O my
+beloved.
+
+8:1 O that thou wert as my brother, that sucked the breasts of my
+mother! when I should find thee without, I would kiss thee; yea, I
+should not be despised.
+
+8:2 I would lead thee, and bring thee into my mother's house, who
+would instruct me: I would cause thee to drink of spiced wine of the
+juice of my pomegranate.
+
+8:3 His left hand should be under my head, and his right hand should
+embrace me.
+
+8:4 I charge you, O daughters of Jerusalem, that ye stir not up, nor
+awake my love, until he please.
+
+8:5 Who is this that cometh up from the wilderness, leaning upon her
+beloved? I raised thee up under the apple tree: there thy mother
+brought thee forth: there she brought thee forth that bare thee.
+
+8:6 Set me as a seal upon thine heart, as a seal upon thine arm: for
+love is strong as death; jealousy is cruel as the grave: the coals
+thereof are coals of fire, which hath a most vehement flame.
+
+8:7 Many waters cannot quench love, neither can the floods drown it:
+if a man would give all the substance of his house for love, it would
+utterly be contemned.
+
+8:8 We have a little sister, and she hath no breasts: what shall we do
+for our sister in the day when she shall be spoken for? 8:9 If she be
+a wall, we will build upon her a palace of silver: and if she be a
+door, we will inclose her with boards of cedar.
+
+8:10 I am a wall, and my breasts like towers: then was I in his eyes
+as one that found favour.
+
+8:11 Solomon had a vineyard at Baalhamon; he let out the vineyard unto
+keepers; every one for the fruit thereof was to bring a thousand
+pieces of silver.
+
+8:12 My vineyard, which is mine, is before me: thou, O Solomon, must
+have a thousand, and those that keep the fruit thereof two hundred.
+
+8:13 Thou that dwellest in the gardens, the companions hearken to thy
+voice: cause me to hear it.
+
+8:14 Make haste, my beloved, and be thou like to a roe or to a young
+hart upon the mountains of spices.
+
+
+
+
+The Book of the Prophet Isaiah
+
+
+1:1 The vision of Isaiah the son of Amoz, which he saw concerning
+Judah and Jerusalem in the days of Uzziah, Jotham, Ahaz, and Hezekiah,
+kings of Judah.
+
+1:2 Hear, O heavens, and give ear, O earth: for the LORD hath spoken,
+I have nourished and brought up children, and they have rebelled
+against me.
+
+1:3 The ox knoweth his owner, and the ass his master's crib: but
+Israel doth not know, my people doth not consider.
+
+1:4 Ah sinful nation, a people laden with iniquity, a seed of
+evildoers, children that are corrupters: they have forsaken the LORD,
+they have provoked the Holy One of Israel unto anger, they are gone
+away backward.
+
+1:5 Why should ye be stricken any more? ye will revolt more and more:
+the whole head is sick, and the whole heart faint.
+
+1:6 From the sole of the foot even unto the head there is no soundness
+in it; but wounds, and bruises, and putrifying sores: they have not
+been closed, neither bound up, neither mollified with ointment.
+
+1:7 Your country is desolate, your cities are burned with fire: your
+land, strangers devour it in your presence, and it is desolate, as
+overthrown by strangers.
+
+1:8 And the daughter of Zion is left as a cottage in a vineyard, as a
+lodge in a garden of cucumbers, as a besieged city.
+
+1:9 Except the LORD of hosts had left unto us a very small remnant, we
+should have been as Sodom, and we should have been like unto Gomorrah.
+
+1:10 Hear the word of the LORD, ye rulers of Sodom; give ear unto the
+law of our God, ye people of Gomorrah.
+
+1:11 To what purpose is the multitude of your sacrifices unto me?
+saith the LORD: I am full of the burnt offerings of rams, and the fat
+of fed beasts; and I delight not in the blood of bullocks, or of
+lambs, or of he goats.
+
+1:12 When ye come to appear before me, who hath required this at your
+hand, to tread my courts? 1:13 Bring no more vain oblations; incense
+is an abomination unto me; the new moons and sabbaths, the calling of
+assemblies, I cannot away with; it is iniquity, even the solemn
+meeting.
+
+1:14 Your new moons and your appointed feasts my soul hateth: they are
+a trouble unto me; I am weary to bear them.
+
+1:15 And when ye spread forth your hands, I will hide mine eyes from
+you: yea, when ye make many prayers, I will not hear: your hands are
+full of blood.
+
+1:16 Wash you, make you clean; put away the evil of your doings from
+before mine eyes; cease to do evil; 1:17 Learn to do well; seek
+judgment, relieve the oppressed, judge the fatherless, plead for the
+widow.
+
+1:18 Come now, and let us reason together, saith the LORD: though your
+sins be as scarlet, they shall be as white as snow; though they be red
+like crimson, they shall be as wool.
+
+1:19 If ye be willing and obedient, ye shall eat the good of the land:
+1:20 But if ye refuse and rebel, ye shall be devoured with the sword:
+for the mouth of the LORD hath spoken it.
+
+1:21 How is the faithful city become an harlot! it was full of
+judgment; righteousness lodged in it; but now murderers.
+
+1:22 Thy silver is become dross, thy wine mixed with water: 1:23 Thy
+princes are rebellious, and companions of thieves: every one loveth
+gifts, and followeth after rewards: they judge not the fatherless,
+neither doth the cause of the widow come unto them.
+
+1:24 Therefore saith the LORD, the LORD of hosts, the mighty One of
+Israel, Ah, I will ease me of mine adversaries, and avenge me of mine
+enemies: 1:25 And I will turn my hand upon thee, and purely purge away
+thy dross, and take away all thy tin: 1:26 And I will restore thy
+judges as at the first, and thy counsellors as at the beginning:
+afterward thou shalt be called, The city of righteousness, the
+faithful city.
+
+1:27 Zion shall be redeemed with judgment, and her converts with
+righteousness.
+
+1:28 And the destruction of the transgressors and of the sinners shall
+be together, and they that forsake the LORD shall be consumed.
+
+1:29 For they shall be ashamed of the oaks which ye have desired, and
+ye shall be confounded for the gardens that ye have chosen.
+
+1:30 For ye shall be as an oak whose leaf fadeth, and as a garden that
+hath no water.
+
+1:31 And the strong shall be as tow, and the maker of it as a spark,
+and they shall both burn together, and none shall quench them.
+
+2:1 The word that Isaiah the son of Amoz saw concerning Judah and
+Jerusalem.
+
+2:2 And it shall come to pass in the last days, that the mountain of
+the LORD's house shall be established in the top of the mountains, and
+shall be exalted above the hills; and all nations shall flow unto it.
+
+2:3 And many people shall go and say, Come ye, and let us go up to the
+mountain of the LORD, to the house of the God of Jacob; and he will
+teach us of his ways, and we will walk in his paths: for out of Zion
+shall go forth the law, and the word of the LORD from Jerusalem.
+
+2:4 And he shall judge among the nations, and shall rebuke many
+people: and they shall beat their swords into plowshares, and their
+spears into pruninghooks: nation shall not lift up sword against
+nation, neither shall they learn war any more.
+
+2:5 O house of Jacob, come ye, and let us walk in the light of the
+LORD.
+
+2:6 Therefore thou hast forsaken thy people the house of Jacob,
+because they be replenished from the east, and are soothsayers like
+the Philistines, and they please themselves in the children of
+strangers.
+
+2:7 Their land also is full of silver and gold, neither is there any
+end of their treasures; their land is also full of horses, neither is
+there any end of their chariots: 2:8 Their land also is full of idols;
+they worship the work of their own hands, that which their own fingers
+have made: 2:9 And the mean man boweth down, and the great man
+humbleth himself: therefore forgive them not.
+
+2:10 Enter into the rock, and hide thee in the dust, for fear of the
+LORD, and for the glory of his majesty.
+
+2:11 The lofty looks of man shall be humbled, and the haughtiness of
+men shall be bowed down, and the LORD alone shall be exalted in that
+day.
+
+2:12 For the day of the LORD of hosts shall be upon every one that is
+proud and lofty, and upon every one that is lifted up; and he shall be
+brought low: 2:13 And upon all the cedars of Lebanon, that are high
+and lifted up, and upon all the oaks of Bashan, 2:14 And upon all the
+high mountains, and upon all the hills that are lifted up, 2:15 And
+upon every high tower, and upon every fenced wall, 2:16 And upon all
+the ships of Tarshish, and upon all pleasant pictures.
+
+2:17 And the loftiness of man shall be bowed down, and the haughtiness
+of men shall be made low: and the LORD alone shall be exalted in that
+day.
+
+2:18 And the idols he shall utterly abolish.
+
+2:19 And they shall go into the holes of the rocks, and into the caves
+of the earth, for fear of the LORD, and for the glory of his majesty,
+when he ariseth to shake terribly the earth.
+
+2:20 In that day a man shall cast his idols of silver, and his idols
+of gold, which they made each one for himself to worship, to the moles
+and to the bats; 2:21 To go into the clefts of the rocks, and into the
+tops of the ragged rocks, for fear of the LORD, and for the glory of
+his majesty, when he ariseth to shake terribly the earth.
+
+2:22 Cease ye from man, whose breath is in his nostrils: for wherein
+is he to be accounted of ? 3:1 For, behold, the Lord, the LORD of
+hosts, doth take away from Jerusalem and from Judah the stay and the
+staff, the whole stay of bread, and the whole stay of water.
+
+3:2 The mighty man, and the man of war, the judge, and the prophet,
+and the prudent, and the ancient, 3:3 The captain of fifty, and the
+honourable man, and the counsellor, and the cunning artificer, and the
+eloquent orator.
+
+3:4 And I will give children to be their princes, and babes shall rule
+over them.
+
+3:5 And the people shall be oppressed, every one by another, and every
+one by his neighbour: the child shall behave himself proudly against
+the ancient, and the base against the honourable.
+
+3:6 When a man shall take hold of his brother of the house of his
+father, saying, Thou hast clothing, be thou our ruler, and let this
+ruin be under thy hand: 3:7 In that day shall he swear, saying, I will
+not be an healer; for in my house is neither bread nor clothing: make
+me not a ruler of the people.
+
+3:8 For Jerusalem is ruined, and Judah is fallen: because their tongue
+and their doings are against the LORD, to provoke the eyes of his
+glory.
+
+3:9 The shew of their countenance doth witness against them; and they
+declare their sin as Sodom, they hide it not. Woe unto their soul! for
+they have rewarded evil unto themselves.
+
+3:10 Say ye to the righteous, that it shall be well with him: for they
+shall eat the fruit of their doings.
+
+3:11 Woe unto the wicked! it shall be ill with him: for the reward of
+his hands shall be given him.
+
+3:12 As for my people, children are their oppressors, and women rule
+over them. O my people, they which lead thee cause thee to err, and
+destroy the way of thy paths.
+
+3:13 The LORD standeth up to plead, and standeth to judge the people.
+
+3:14 The LORD will enter into judgment with the ancients of his
+people, and the princes thereof: for ye have eaten up the vineyard;
+the spoil of the poor is in your houses.
+
+3:15 What mean ye that ye beat my people to pieces, and grind the
+faces of the poor? saith the Lord GOD of hosts.
+
+3:16 Moreover the LORD saith, Because the daughters of Zion are
+haughty, and walk with stretched forth necks and wanton eyes, walking
+and mincing as they go, and making a tinkling with their feet: 3:17
+Therefore the LORD will smite with a scab the crown of the head of the
+daughters of Zion, and the LORD will discover their secret parts.
+
+3:18 In that day the Lord will take away the bravery of their tinkling
+ornaments about their feet, and their cauls, and their round tires
+like the moon, 3:19 The chains, and the bracelets, and the mufflers,
+3:20 The bonnets, and the ornaments of the legs, and the headbands,
+and the tablets, and the earrings, 3:21 The rings, and nose jewels,
+3:22 The changeable suits of apparel, and the mantles, and the
+wimples, and the crisping pins, 3:23 The glasses, and the fine linen,
+and the hoods, and the vails.
+
+3:24 And it shall come to pass, that instead of sweet smell there
+shall be stink; and instead of a girdle a rent; and instead of well
+set hair baldness; and instead of a stomacher a girding of sackcloth;
+and burning instead of beauty.
+
+3:25 Thy men shall fall by the sword, and thy mighty in the war.
+
+3:26 And her gates shall lament and mourn; and she being desolate
+shall sit upon the ground.
+
+4:1 And in that day seven women shall take hold of one man, saying, We
+will eat our own bread, and wear our own apparel: only let us be
+called by thy name, to take away our reproach.
+
+4:2 In that day shall the branch of the LORD be beautiful and
+glorious, and the fruit of the earth shall be excellent and comely for
+them that are escaped of Israel.
+
+4:3 And it shall come to pass, that he that is left in Zion, and he
+that remaineth in Jerusalem, shall be called holy, even every one that
+is written among the living in Jerusalem: 4:4 When the Lord shall have
+washed away the filth of the daughters of Zion, and shall have purged
+the blood of Jerusalem from the midst thereof by the spirit of
+judgment, and by the spirit of burning.
+
+4:5 And the LORD will create upon every dwelling place of mount Zion,
+and upon her assemblies, a cloud and smoke by day, and the shining of
+a flaming fire by night: for upon all the glory shall be a defence.
+
+4:6 And there shall be a tabernacle for a shadow in the day time from
+the heat, and for a place of refuge, and for a covert from storm and
+from rain.
+
+5:1 Now will I sing to my wellbeloved a song of my beloved touching
+his vineyard. My wellbeloved hath a vineyard in a very fruitful hill:
+5:2 And he fenced it, and gathered out the stones thereof, and planted
+it with the choicest vine, and built a tower in the midst of it, and
+also made a winepress therein: and he looked that it should bring
+forth grapes, and it brought forth wild grapes.
+
+5:3 And now, O inhabitants of Jerusalem, and men of Judah, judge, I
+pray you, betwixt me and my vineyard.
+
+5:4 What could have been done more to my vineyard, that I have not
+done in it? wherefore, when I looked that it should bring forth
+grapes, brought it forth wild grapes? 5:5 And now go to; I will tell
+you what I will do to my vineyard: I will take away the hedge thereof,
+and it shall be eaten up; and break down the wall thereof, and it
+shall be trodden down: 5:6 And I will lay it waste: it shall not be
+pruned, nor digged; but there shall come up briers and thorns: I will
+also command the clouds that they rain no rain upon it.
+
+5:7 For the vineyard of the LORD of hosts is the house of Israel, and
+the men of Judah his pleasant plant: and he looked for judgment, but
+behold oppression; for righteousness, but behold a cry.
+
+5:8 Woe unto them that join house to house, that lay field to field,
+till there be no place, that they may be placed alone in the midst of
+the earth! 5:9 In mine ears said the LORD of hosts, Of a truth many
+houses shall be desolate, even great and fair, without inhabitant.
+
+5:10 Yea, ten acres of vineyard shall yield one bath, and the seed of
+an homer shall yield an ephah.
+
+5:11 Woe unto them that rise up early in the morning, that they may
+follow strong drink; that continue until night, till wine inflame
+them! 5:12 And the harp, and the viol, the tabret, and pipe, and
+wine, are in their feasts: but they regard not the work of the LORD,
+neither consider the operation of his hands.
+
+5:13 Therefore my people are gone into captivity, because they have no
+knowledge: and their honourable men are famished, and their multitude
+dried up with thirst.
+
+5:14 Therefore hell hath enlarged herself, and opened her mouth
+without measure: and their glory, and their multitude, and their pomp,
+and he that rejoiceth, shall descend into it.
+
+5:15 And the mean man shall be brought down, and the mighty man shall
+be humbled, and the eyes of the lofty shall be humbled: 5:16 But the
+LORD of hosts shall be exalted in judgment, and God that is holy shall
+be sanctified in righteousness.
+
+5:17 Then shall the lambs feed after their manner, and the waste
+places of the fat ones shall strangers eat.
+
+5:18 Woe unto them that draw iniquity with cords of vanity, and sin as
+it were with a cart rope: 5:19 That say, Let him make speed, and
+hasten his work, that we may see it: and let the counsel of the Holy
+One of Israel draw nigh and come, that we may know it! 5:20 Woe unto
+them that call evil good, and good evil; that put darkness for light,
+and light for darkness; that put bitter for sweet, and sweet for
+bitter! 5:21 Woe unto them that are wise in their own eyes, and
+prudent in their own sight! 5:22 Woe unto them that are mighty to
+drink wine, and men of strength to mingle strong drink: 5:23 Which
+justify the wicked for reward, and take away the righteousness of the
+righteous from him! 5:24 Therefore as the fire devoureth the stubble,
+and the flame consumeth the chaff, so their root shall be as
+rottenness, and their blossom shall go up as dust: because they have
+cast away the law of the LORD of hosts, and despised the word of the
+Holy One of Israel.
+
+5:25 Therefore is the anger of the LORD kindled against his people,
+and he hath stretched forth his hand against them, and hath smitten
+them: and the hills did tremble, and their carcases were torn in the
+midst of the streets.
+
+For all this his anger is not turned away, but his hand is stretched
+out still.
+
+5:26 And he will lift up an ensign to the nations from far, and will
+hiss unto them from the end of the earth: and, behold, they shall come
+with speed swiftly: 5:27 None shall be weary nor stumble among them;
+none shall slumber nor sleep; neither shall the girdle of their loins
+be loosed, nor the latchet of their shoes be broken: 5:28 Whose arrows
+are sharp, and all their bows bent, their horses' hoofs shall be
+counted like flint, and their wheels like a whirlwind: 5:29 Their
+roaring shall be like a lion, they shall roar like young lions: yea,
+they shall roar, and lay hold of the prey, and shall carry it away
+safe, and none shall deliver it.
+
+5:30 And in that day they shall roar against them like the roaring of
+the sea: and if one look unto the land, behold darkness and sorrow,
+and the light is darkened in the heavens thereof.
+
+6:1 In the year that king Uzziah died I saw also the LORD sitting upon
+a throne, high and lifted up, and his train filled the temple.
+
+6:2 Above it stood the seraphims: each one had six wings; with twain
+he covered his face, and with twain he covered his feet, and with
+twain he did fly.
+
+6:3 And one cried unto another, and said, Holy, holy, holy, is the
+LORD of hosts: the whole earth is full of his glory.
+
+6:4 And the posts of the door moved at the voice of him that cried,
+and the house was filled with smoke.
+
+6:5 Then said I, Woe is me! for I am undone; because I am a man of
+unclean lips, and I dwell in the midst of a people of unclean lips:
+for mine eyes have seen the King, the LORD of hosts.
+
+6:6 Then flew one of the seraphims unto me, having a live coal in his
+hand, which he had taken with the tongs from off the altar: 6:7 And he
+laid it upon my mouth, and said, Lo, this hath touched thy lips; and
+thine iniquity is taken away, and thy sin purged.
+
+6:8 Also I heard the voice of the Lord, saying, Whom shall I send, and
+who will go for us? Then said I, Here am I; send me.
+
+6:9 And he said, Go, and tell this people, Hear ye indeed, but
+understand not; and see ye indeed, but perceive not.
+
+6:10 Make the heart of this people fat, and make their ears heavy, and
+shut their eyes; lest they see with their eyes, and hear with their
+ears, and understand with their heart, and convert, and be healed.
+
+6:11 Then said I, Lord, how long? And he answered, Until the cities be
+wasted without inhabitant, and the houses without man, and the land be
+utterly desolate, 6:12 And the LORD have removed men far away, and
+there be a great forsaking in the midst of the land.
+
+6:13 But yet in it shall be a tenth, and it shall return, and shall be
+eaten: as a teil tree, and as an oak, whose substance is in them, when
+they cast their leaves: so the holy seed shall be the substance
+thereof.
+
+7:1 And it came to pass in the days of Ahaz the son of Jotham, the son
+of Uzziah, king of Judah, that Rezin the king of Syria, and Pekah the
+son of Remaliah, king of Israel, went up toward Jerusalem to war
+against it, but could not prevail against it.
+
+7:2 And it was told the house of David, saying, Syria is confederate
+with Ephraim. And his heart was moved, and the heart of his people, as
+the trees of the wood are moved with the wind.
+
+7:3 Then said the LORD unto Isaiah, Go forth now to meet Ahaz, thou,
+and Shearjashub thy son, at the end of the conduit of the upper pool
+in the highway of the fuller's field; 7:4 And say unto him, Take heed,
+and be quiet; fear not, neither be fainthearted for the two tails of
+these smoking firebrands, for the fierce anger of Rezin with Syria,
+and of the son of Remaliah.
+
+7:5 Because Syria, Ephraim, and the son of Remaliah, have taken evil
+counsel against thee, saying, 7:6 Let us go up against Judah, and vex
+it, and let us make a breach therein for us, and set a king in the
+midst of it, even the son of Tabeal: 7:7 Thus saith the Lord GOD, It
+shall not stand, neither shall it come to pass.
+
+7:8 For the head of Syria is Damascus, and the head of Damascus is
+Rezin; and within threescore and five years shall Ephraim be broken,
+that it be not a people.
+
+7:9 And the head of Ephraim is Samaria, and the head of Samaria is
+Remaliah's son. If ye will not believe, surely ye shall not be
+established.
+
+7:10 Moreover the LORD spake again unto Ahaz, saying, 7:11 Ask thee a
+sign of the LORD thy God; ask it either in the depth, or in the height
+above.
+
+7:12 But Ahaz said, I will not ask, neither will I tempt the LORD.
+
+7:13 And he said, Hear ye now, O house of David; Is it a small thing
+for you to weary men, but will ye weary my God also? 7:14 Therefore
+the Lord himself shall give you a sign; Behold, a virgin shall
+conceive, and bear a son, and shall call his name Immanuel.
+
+7:15 Butter and honey shall he eat, that he may know to refuse the
+evil, and choose the good.
+
+7:16 For before the child shall know to refuse the evil, and choose
+the good, the land that thou abhorrest shall be forsaken of both her
+kings.
+
+7:17 The LORD shall bring upon thee, and upon thy people, and upon thy
+father's house, days that have not come, from the day that Ephraim
+departed from Judah; even the king of Assyria.
+
+7:18 And it shall come to pass in that day, that the LORD shall hiss
+for the fly that is in the uttermost part of the rivers of Egypt, and
+for the bee that is in the land of Assyria.
+
+7:19 And they shall come, and shall rest all of them in the desolate
+valleys, and in the holes of the rocks, and upon all thorns, and upon
+all bushes.
+
+7:20 In the same day shall the Lord shave with a razor that is hired,
+namely, by them beyond the river, by the king of Assyria, the head,
+and the hair of the feet: and it shall also consume the beard.
+
+7:21 And it shall come to pass in that day, that a man shall nourish a
+young cow, and two sheep; 7:22 And it shall come to pass, for the
+abundance of milk that they shall give he shall eat butter: for butter
+and honey shall every one eat that is left in the land.
+
+7:23 And it shall come to pass in that day, that every place shall be,
+where there were a thousand vines at a thousand silverlings, it shall
+even be for briers and thorns.
+
+7:24 With arrows and with bows shall men come thither; because all the
+land shall become briers and thorns.
+
+7:25 And on all hills that shall be digged with the mattock, there
+shall not come thither the fear of briers and thorns: but it shall be
+for the sending forth of oxen, and for the treading of lesser cattle.
+
+8:1 Moreover the LORD said unto me, Take thee a great roll, and write
+in it with a man's pen concerning Mahershalalhashbaz.
+
+8:2 And I took unto me faithful witnesses to record, Uriah the priest,
+and Zechariah the son of Jeberechiah.
+
+8:3 And I went unto the prophetess; and she conceived, and bare a son.
+
+Then said the LORD to me, Call his name Mahershalalhashbaz.
+
+8:4 For before the child shall have knowledge to cry, My father, and
+my mother, the riches of Damascus and the spoil of Samaria shall be
+taken away before the king of Assyria.
+
+8:5 The LORD spake also unto me again, saying, 8:6 Forasmuch as this
+people refuseth the waters of Shiloah that go softly, and rejoice in
+Rezin and Remaliah's son; 8:7 Now therefore, behold, the Lord bringeth
+up upon them the waters of the river, strong and many, even the king
+of Assyria, and all his glory: and he shall come up over all his
+channels, and go over all his banks: 8:8 And he shall pass through
+Judah; he shall overflow and go over, he shall reach even to the neck;
+and the stretching out of his wings shall fill the breadth of thy
+land, O Immanuel.
+
+8:9 Associate yourselves, O ye people, and ye shall be broken in
+pieces; and give ear, all ye of far countries: gird yourselves, and ye
+shall be broken in pieces; gird yourselves, and ye shall be broken in
+pieces.
+
+8:10 Take counsel together, and it shall come to nought; speak the
+word, and it shall not stand: for God is with us.
+
+8:11 For the LORD spake thus to me with a strong hand, and instructed
+me that I should not walk in the way of this people, saying, 8:12 Say
+ye not, A confederacy, to all them to whom this people shall say, A
+confederacy; neither fear ye their fear, nor be afraid.
+
+8:13 Sanctify the LORD of hosts himself; and let him be your fear, and
+let him be your dread.
+
+8:14 And he shall be for a sanctuary; but for a stone of stumbling and
+for a rock of offence to both the houses of Israel, for a gin and for
+a snare to the inhabitants of Jerusalem.
+
+8:15 And many among them shall stumble, and fall, and be broken, and
+be snared, and be taken.
+
+8:16 Bind up the testimony, seal the law among my disciples.
+
+8:17 And I will wait upon the LORD, that hideth his face from the
+house of Jacob, and I will look for him.
+
+8:18 Behold, I and the children whom the LORD hath given me are for
+signs and for wonders in Israel from the LORD of hosts, which dwelleth
+in mount Zion.
+
+8:19 And when they shall say unto you, Seek unto them that have
+familiar spirits, and unto wizards that peep, and that mutter: should
+not a people seek unto their God? for the living to the dead? 8:20 To
+the law and to the testimony: if they speak not according to this
+word, it is because there is no light in them.
+
+8:21 And they shall pass through it, hardly bestead and hungry: and it
+shall come to pass, that when they shall be hungry, they shall fret
+themselves, and curse their king and their God, and look upward.
+
+8:22 And they shall look unto the earth; and behold trouble and
+darkness, dimness of anguish; and they shall be driven to darkness.
+
+9:1 Nevertheless the dimness shall not be such as was in her vexation,
+when at the first he lightly afflicted the land of Zebulun and the
+land of Naphtali, and afterward did more grievously afflict her by the
+way of the sea, beyond Jordan, in Galilee of the nations.
+
+9:2 The people that walked in darkness have seen a great light: they
+that dwell in the land of the shadow of death, upon them hath the
+light shined.
+
+9:3 Thou hast multiplied the nation, and not increased the joy: they
+joy before thee according to the joy in harvest, and as men rejoice
+when they divide the spoil.
+
+9:4 For thou hast broken the yoke of his burden, and the staff of his
+shoulder, the rod of his oppressor, as in the day of Midian.
+
+9:5 For every battle of the warrior is with confused noise, and
+garments rolled in blood; but this shall be with burning and fuel of
+fire.
+
+9:6 For unto us a child is born, unto us a son is given: and the
+government shall be upon his shoulder: and his name shall be called
+Wonderful, Counsellor, The mighty God, The everlasting Father, The
+Prince of Peace.
+
+9:7 Of the increase of his government and peace there shall be no end,
+upon the throne of David, and upon his kingdom, to order it, and to
+establish it with judgment and with justice from henceforth even for
+ever. The zeal of the LORD of hosts will perform this.
+
+9:8 The Lord sent a word into Jacob, and it hath lighted upon Israel.
+
+9:9 And all the people shall know, even Ephraim and the inhabitant of
+Samaria, that say in the pride and stoutness of heart, 9:10 The bricks
+are fallen down, but we will build with hewn stones: the sycomores are
+cut down, but we will change them into cedars.
+
+9:11 Therefore the LORD shall set up the adversaries of Rezin against
+him, and join his enemies together; 9:12 The Syrians before, and the
+Philistines behind; and they shall devour Israel with open mouth. For
+all this his anger is not turned away, but his hand is stretched out
+still.
+
+9:13 For the people turneth not unto him that smiteth them, neither do
+they seek the LORD of hosts.
+
+9:14 Therefore the LORD will cut off from Israel head and tail, branch
+and rush, in one day.
+
+9:15 The ancient and honourable, he is the head; and the prophet that
+teacheth lies, he is the tail.
+
+9:16 For the leaders of this people cause them to err; and they that
+are led of them are destroyed.
+
+9:17 Therefore the LORD shall have no joy in their young men, neither
+shall have mercy on their fatherless and widows: for every one is an
+hypocrite and an evildoer, and every mouth speaketh folly. For all
+this his anger is not turned away, but his hand is stretched out
+still.
+
+9:18 For wickedness burneth as the fire: it shall devour the briers
+and thorns, and shall kindle in the thickets of the forest, and they
+shall mount up like the lifting up of smoke.
+
+9:19 Through the wrath of the LORD of hosts is the land darkened, and
+the people shall be as the fuel of the fire: no man shall spare his
+brother.
+
+9:20 And he shall snatch on the right hand, and be hungry; and he
+shall eat on the left hand, and they shall not be satisfied: they
+shall eat every man the flesh of his own arm: 9:21 Manasseh, Ephraim;
+and Ephraim, Manasseh: and they together shall be against Judah. For
+all this his anger is not turned away, but his hand is stretched out
+still.
+
+10:1 Woe unto them that decree unrighteous decrees, and that write
+grievousness which they have prescribed; 10:2 To turn aside the needy
+from judgment, and to take away the right from the poor of my people,
+that widows may be their prey, and that they may rob the fatherless!
+10:3 And what will ye do in the day of visitation, and in the
+desolation which shall come from far? to whom will ye flee for help?
+and where will ye leave your glory? 10:4 Without me they shall bow
+down under the prisoners, and they shall fall under the slain. For all
+this his anger is not turned away, but his hand is stretched out
+still.
+
+10:5 O Assyrian, the rod of mine anger, and the staff in their hand is
+mine indignation.
+
+10:6 I will send him against an hypocritical nation, and against the
+people of my wrath will I give him a charge, to take the spoil, and to
+take the prey, and to tread them down like the mire of the streets.
+
+10:7 Howbeit he meaneth not so, neither doth his heart think so; but
+it is in his heart to destroy and cut off nations not a few.
+
+10:8 For he saith, Are not my princes altogether kings? 10:9 Is not
+Calno as Carchemish? is not Hamath as Arpad? is not Samaria as
+Damascus? 10:10 As my hand hath found the kingdoms of the idols, and
+whose graven images did excel them of Jerusalem and of Samaria; 10:11
+Shall I not, as I have done unto Samaria and her idols, so do to
+Jerusalem and her idols? 10:12 Wherefore it shall come to pass, that
+when the Lord hath performed his whole work upon mount Zion and on
+Jerusalem, I will punish the fruit of the stout heart of the king of
+Assyria, and the glory of his high looks.
+
+10:13 For he saith, By the strength of my hand I have done it, and by
+my wisdom; for I am prudent: and I have removed the bounds of the
+people, and have robbed their treasures, and I have put down the
+inhabitants like a valiant man: 10:14 And my hand hath found as a nest
+the riches of the people: and as one gathereth eggs that are left,
+have I gathered all the earth; and there was none that moved the wing,
+or opened the mouth, or peeped.
+
+10:15 Shall the axe boast itself against him that heweth therewith? or
+shall the saw magnify itself against him that shaketh it? as if the
+rod should shake itself against them that lift it up, or as if the
+staff should lift up itself, as if it were no wood.
+
+10:16 Therefore shall the Lord, the Lord of hosts, send among his fat
+ones leanness; and under his glory he shall kindle a burning like the
+burning of a fire.
+
+10:17 And the light of Israel shall be for a fire, and his Holy One
+for a flame: and it shall burn and devour his thorns and his briers in
+one day; 10:18 And shall consume the glory of his forest, and of his
+fruitful field, both soul and body: and they shall be as when a
+standard-bearer fainteth.
+
+10:19 And the rest of the trees of his forest shall be few, that a
+child may write them.
+
+10:20 And it shall come to pass in that day, that the remnant of
+Israel, and such as are escaped of the house of Jacob, shall no more
+again stay upon him that smote them; but shall stay upon the LORD, the
+Holy One of Israel, in truth.
+
+10:21 The remnant shall return, even the remnant of Jacob, unto the
+mighty God.
+
+10:22 For though thy people Israel be as the sand of the sea, yet a
+remnant of them shall return: the consumption decreed shall overflow
+with righteousness.
+
+10:23 For the Lord GOD of hosts shall make a consumption, even
+determined, in the midst of all the land.
+
+10:24 Therefore thus saith the Lord GOD of hosts, O my people that
+dwellest in Zion, be not afraid of the Assyrian: he shall smite thee
+with a rod, and shall lift up his staff against thee, after the manner
+of Egypt.
+
+10:25 For yet a very little while, and the indignation shall cease,
+and mine anger in their destruction.
+
+10:26 And the LORD of hosts shall stir up a scourge for him according
+to the slaughter of Midian at the rock of Oreb: and as his rod was
+upon the sea, so shall he lift it up after the manner of Egypt.
+
+10:27 And it shall come to pass in that day, that his burden shall be
+taken away from off thy shoulder, and his yoke from off thy neck, and
+the yoke shall be destroyed because of the anointing.
+
+10:28 He is come to Aiath, he is passed to Migron; at Michmash he hath
+laid up his carriages: 10:29 They are gone over the passage: they have
+taken up their lodging at Geba; Ramah is afraid; Gibeah of Saul is
+fled.
+
+10:30 Lift up thy voice, O daughter of Gallim: cause it to be heard
+unto Laish, O poor Anathoth.
+
+10:31 Madmenah is removed; the inhabitants of Gebim gather themselves
+to flee.
+
+10:32 As yet shall he remain at Nob that day: he shall shake his hand
+against the mount of the daughter of Zion, the hill of Jerusalem.
+
+10:33 Behold, the Lord, the LORD of hosts, shall lop the bough with
+terror: and the high ones of stature shall be hewn down, and the
+haughty shall be humbled.
+
+10:34 And he shall cut down the thickets of the forest with iron, and
+Lebanon shall fall by a mighty one.
+
+11:1 And there shall come forth a rod out of the stem of Jesse, and a
+Branch shall grow out of his roots: 11:2 And the spirit of the LORD
+shall rest upon him, the spirit of wisdom and understanding, the
+spirit of counsel and might, the spirit of knowledge and of the fear
+of the LORD; 11:3 And shall make him of quick understanding in the
+fear of the LORD: and he shall not judge after the sight of his eyes,
+neither reprove after the hearing of his ears: 11:4 But with
+righteousness shall he judge the poor, and reprove with equity for the
+meek of the earth: and he shall smite the earth: with the rod of his
+mouth, and with the breath of his lips shall he slay the wicked.
+
+11:5 And righteousness shall be the girdle of his loins, and
+faithfulness the girdle of his reins.
+
+11:6 The wolf also shall dwell with the lamb, and the leopard shall
+lie down with the kid; and the calf and the young lion and the fatling
+together; and a little child shall lead them.
+
+11:7 And the cow and the bear shall feed; their young ones shall lie
+down together: and the lion shall eat straw like the ox.
+
+11:8 And the sucking child shall play on the hole of the asp, and the
+weaned child shall put his hand on the cockatrice' den.
+
+11:9 They shall not hurt nor destroy in all my holy mountain: for the
+earth shall be full of the knowledge of the LORD, as the waters cover
+the sea.
+
+11:10 And in that day there shall be a root of Jesse, which shall
+stand for an ensign of the people; to it shall the Gentiles seek: and
+his rest shall be glorious.
+
+11:11 And it shall come to pass in that day, that the Lord shall set
+his hand again the second time to recover the remnant of his people,
+which shall be left, from Assyria, and from Egypt, and from Pathros,
+and from Cush, and from Elam, and from Shinar, and from Hamath, and
+from the islands of the sea.
+
+11:12 And he shall set up an ensign for the nations, and shall
+assemble the outcasts of Israel, and gather together the dispersed of
+Judah from the four corners of the earth.
+
+11:13 The envy also of Ephraim shall depart, and the adversaries of
+Judah shall be cut off: Ephraim shall not envy Judah, and Judah shall
+not vex Ephraim.
+
+11:14 But they shall fly upon the shoulders of the Philistines toward
+the west; they shall spoil them of the east together: they shall lay
+their hand upon Edom and Moab; and the children of Ammon shall obey
+them.
+
+11:15 And the LORD shall utterly destroy the tongue of the Egyptian
+sea; and with his mighty wind shall he shake his hand over the river,
+and shall smite it in the seven streams, and make men go over dryshod.
+
+11:16 And there shall be an highway for the remnant of his people,
+which shall be left, from Assyria; like as it was to Israel in the day
+that he came up out of the land of Egypt.
+
+12:1 And in that day thou shalt say, O LORD, I will praise thee:
+though thou wast angry with me, thine anger is turned away, and thou
+comfortedst me.
+
+12:2 Behold, God is my salvation; I will trust, and not be afraid: for
+the LORD JEHOVAH is my strength and my song; he also is become my
+salvation.
+
+12:3 Therefore with joy shall ye draw water out of the wells of
+salvation.
+
+12:4 And in that day shall ye say, Praise the LORD, call upon his
+name, declare his doings among the people, make mention that his name
+is exalted.
+
+12:5 Sing unto the LORD; for he hath done excellent things: this is
+known in all the earth.
+
+12:6 Cry out and shout, thou inhabitant of Zion: for great is the Holy
+One of Israel in the midst of thee.
+
+13:1 The burden of Babylon, which Isaiah the son of Amoz did see.
+
+13:2 Lift ye up a banner upon the high mountain, exalt the voice unto
+them, shake the hand, that they may go into the gates of the nobles.
+
+13:3 I have commanded my sanctified ones, I have also called my mighty
+ones for mine anger, even them that rejoice in my highness.
+
+13:4 The noise of a multitude in the mountains, like as of a great
+people; a tumultuous noise of the kingdoms of nations gathered
+together: the LORD of hosts mustereth the host of the battle.
+
+13:5 They come from a far country, from the end of heaven, even the
+LORD, and the weapons of his indignation, to destroy the whole land.
+
+13:6 Howl ye; for the day of the LORD is at hand; it shall come as a
+destruction from the Almighty.
+
+13:7 Therefore shall all hands be faint, and every man's heart shall
+melt: 13:8 And they shall be afraid: pangs and sorrows shall take hold
+of them; they shall be in pain as a woman that travaileth: they shall
+be amazed one at another; their faces shall be as flames.
+
+13:9 Behold, the day of the LORD cometh, cruel both with wrath and
+fierce anger, to lay the land desolate: and he shall destroy the
+sinners thereof out of it.
+
+13:10 For the stars of heaven and the constellations thereof shall not
+give their light: the sun shall be darkened in his going forth, and
+the moon shall not cause her light to shine.
+
+13:11 And I will punish the world for their evil, and the wicked for
+their iniquity; and I will cause the arrogancy of the proud to cease,
+and will lay low the haughtiness of the terrible.
+
+13:12 I will make a man more precious than fine gold; even a man than
+the golden wedge of Ophir.
+
+13:13 Therefore I will shake the heavens, and the earth shall remove
+out of her place, in the wrath of the LORD of hosts, and in the day of
+his fierce anger.
+
+13:14 And it shall be as the chased roe, and as a sheep that no man
+taketh up: they shall every man turn to his own people, and flee every
+one into his own land.
+
+13:15 Every one that is found shall be thrust through; and every one
+that is joined unto them shall fall by the sword.
+
+13:16 Their children also shall be dashed to pieces before their eyes;
+their houses shall be spoiled, and their wives ravished.
+
+13:17 Behold, I will stir up the Medes against them, which shall not
+regard silver; and as for gold, they shall not delight in it.
+
+13:18 Their bows also shall dash the young men to pieces; and they
+shall have no pity on the fruit of the womb; their eyes shall not
+spare children.
+
+13:19 And Babylon, the glory of kingdoms, the beauty of the Chaldees'
+excellency, shall be as when God overthrew Sodom and Gomorrah.
+
+13:20 It shall never be inhabited, neither shall it be dwelt in from
+generation to generation: neither shall the Arabian pitch tent there;
+neither shall the shepherds make their fold there.
+
+13:21 But wild beasts of the desert shall lie there; and their houses
+shall be full of doleful creatures; and owls shall dwell there, and
+satyrs shall dance there.
+
+13:22 And the wild beasts of the islands shall cry in their desolate
+houses, and dragons in their pleasant palaces: and her time is near to
+come, and her days shall not be prolonged.
+
+14:1 For the LORD will have mercy on Jacob, and will yet choose
+Israel, and set them in their own land: and the strangers shall be
+joined with them, and they shall cleave to the house of Jacob.
+
+14:2 And the people shall take them, and bring them to their place:
+and the house of Israel shall possess them in the land of the LORD for
+servants and handmaids: and they shall take them captives, whose
+captives they were; and they shall rule over their oppressors.
+
+14:3 And it shall come to pass in the day that the LORD shall give
+thee rest from thy sorrow, and from thy fear, and from the hard
+bondage wherein thou wast made to serve, 14:4 That thou shalt take up
+this proverb against the king of Babylon, and say, How hath the
+oppressor ceased! the golden city ceased! 14:5 The LORD hath broken
+the staff of the wicked, and the sceptre of the rulers.
+
+14:6 He who smote the people in wrath with a continual stroke, he that
+ruled the nations in anger, is persecuted, and none hindereth.
+
+14:7 The whole earth is at rest, and is quiet: they break forth into
+singing.
+
+14:8 Yea, the fir trees rejoice at thee, and the cedars of Lebanon,
+saying, Since thou art laid down, no feller is come up against us.
+
+14:9 Hell from beneath is moved for thee to meet thee at thy coming:
+it stirreth up the dead for thee, even all the chief ones of the
+earth; it hath raised up from their thrones all the kings of the
+nations.
+
+14:10 All they shall speak and say unto thee, Art thou also become
+weak as we? art thou become like unto us? 14:11 Thy pomp is brought
+down to the grave, and the noise of thy viols: the worm is spread
+under thee, and the worms cover thee.
+
+14:12 How art thou fallen from heaven, O Lucifer, son of the morning!
+how art thou cut down to the ground, which didst weaken the nations!
+14:13 For thou hast said in thine heart, I will ascend into heaven, I
+will exalt my throne above the stars of God: I will sit also upon the
+mount of the congregation, in the sides of the north: 14:14 I will
+ascend above the heights of the clouds; I will be like the most High.
+
+14:15 Yet thou shalt be brought down to hell, to the sides of the pit.
+
+14:16 They that see thee shall narrowly look upon thee, and consider
+thee, saying, Is this the man that made the earth to tremble, that did
+shake kingdoms; 14:17 That made the world as a wilderness, and
+destroyed the cities thereof; that opened not the house of his
+prisoners? 14:18 All the kings of the nations, even all of them, lie
+in glory, every one in his own house.
+
+14:19 But thou art cast out of thy grave like an abominable branch,
+and as the raiment of those that are slain, thrust through with a
+sword, that go down to the stones of the pit; as a carcase trodden
+under feet.
+
+14:20 Thou shalt not be joined with them in burial, because thou hast
+destroyed thy land, and slain thy people: the seed of evildoers shall
+never be renowned.
+
+14:21 Prepare slaughter for his children for the iniquity of their
+fathers; that they do not rise, nor possess the land, nor fill the
+face of the world with cities.
+
+14:22 For I will rise up against them, saith the LORD of hosts, and
+cut off from Babylon the name, and remnant, and son, and nephew, saith
+the LORD.
+
+14:23 I will also make it a possession for the bittern, and pools of
+water: and I will sweep it with the besom of destruction, saith the
+LORD of hosts.
+
+14:24 The LORD of hosts hath sworn, saying, Surely as I have thought,
+so shall it come to pass; and as I have purposed, so shall it stand:
+14:25 That I will break the Assyrian in my land, and upon my mountains
+tread him under foot: then shall his yoke depart from off them, and
+his burden depart from off their shoulders.
+
+14:26 This is the purpose that is purposed upon the whole earth: and
+this is the hand that is stretched out upon all the nations.
+
+14:27 For the LORD of hosts hath purposed, and who shall disannul it?
+and his hand is stretched out, and who shall turn it back? 14:28 In
+the year that king Ahaz died was this burden.
+
+14:29 Rejoice not thou, whole Palestina, because the rod of him that
+smote thee is broken: for out of the serpent's root shall come forth a
+cockatrice, and his fruit shall be a fiery flying serpent.
+
+14:30 And the firstborn of the poor shall feed, and the needy shall
+lie down in safety: and I will kill thy root with famine, and he shall
+slay thy remnant.
+
+14:31 Howl, O gate; cry, O city; thou, whole Palestina, art dissolved:
+for there shall come from the north a smoke, and none shall be alone
+in his appointed times.
+
+14:32 What shall one then answer the messengers of the nation? That
+the LORD hath founded Zion, and the poor of his people shall trust in
+it.
+
+15:1 The burden of Moab. Because in the night Ar of Moab is laid
+waste, and brought to silence; because in the night Kir of Moab is
+laid waste, and brought to silence; 15:2 He is gone up to Bajith, and
+to Dibon, the high places, to weep: Moab shall howl over Nebo, and
+over Medeba: on all their heads shall be baldness, and every beard cut
+off.
+
+15:3 In their streets they shall gird themselves with sackcloth: on
+the tops of their houses, and in their streets, every one shall howl,
+weeping abundantly.
+
+15:4 And Heshbon shall cry, and Elealeh: their voice shall be heard
+even unto Jahaz: therefore the armed soldiers of Moab shall cry out;
+his life shall be grievous unto him.
+
+15:5 My heart shall cry out for Moab; his fugitives shall flee unto
+Zoar, an heifer of three years old: for by the mounting up of Luhith
+with weeping shall they go it up; for in the way of Horonaim they
+shall raise up a cry of destruction.
+
+15:6 For the waters of Nimrim shall be desolate: for the hay is
+withered away, the grass faileth, there is no green thing.
+
+15:7 Therefore the abundance they have gotten, and that which they
+have laid up, shall they carry away to the brook of the willows.
+
+15:8 For the cry is gone round about the borders of Moab; the howling
+thereof unto Eglaim, and the howling thereof unto Beerelim.
+
+15:9 For the waters of Dimon shall be full of blood: for I will bring
+more upon Dimon, lions upon him that escapeth of Moab, and upon the
+remnant of the land.
+
+16:1 Send ye the lamb to the ruler of the land from Sela to the
+wilderness, unto the mount of the daughter of Zion.
+
+16:2 For it shall be, that, as a wandering bird cast out of the nest,
+so the daughters of Moab shall be at the fords of Arnon.
+
+16:3 Take counsel, execute judgment; make thy shadow as the night in
+the midst of the noonday; hide the outcasts; bewray not him that
+wandereth.
+
+16:4 Let mine outcasts dwell with thee, Moab; be thou a covert to them
+from the face of the spoiler: for the extortioner is at an end, the
+spoiler ceaseth, the oppressors are consumed out of the land.
+
+16:5 And in mercy shall the throne be established: and he shall sit
+upon it in truth in the tabernacle of David, judging, and seeking
+judgment, and hasting righteousness.
+
+16:6 We have heard of the pride of Moab; he is very proud: even of his
+haughtiness, and his pride, and his wrath: but his lies shall not be
+so.
+
+16:7 Therefore shall Moab howl for Moab, every one shall howl: for the
+foundations of Kirhareseth shall ye mourn; surely they are stricken.
+
+16:8 For the fields of Heshbon languish, and the vine of Sibmah: the
+lords of the heathen have broken down the principal plants thereof,
+they are come even unto Jazer, they wandered through the wilderness:
+her branches are stretched out, they are gone over the sea.
+
+16:9 Therefore I will bewail with the weeping of Jazer the vine of
+Sibmah: I will water thee with my tears, O Heshbon, and Elealeh: for
+the shouting for thy summer fruits and for thy harvest is fallen.
+
+16:10 And gladness is taken away, and joy out of the plentiful field;
+and in the vineyards there shall be no singing, neither shall there be
+shouting: the treaders shall tread out no wine in their presses; I
+have made their vintage shouting to cease.
+
+16:11 Wherefore my bowels shall sound like an harp for Moab, and mine
+inward parts for Kirharesh.
+
+16:12 And it shall come to pass, when it is seen that Moab is weary on
+the high place, that he shall come to his sanctuary to pray; but he
+shall not prevail.
+
+16:13 This is the word that the LORD hath spoken concerning Moab since
+that time.
+
+16:14 But now the LORD hath spoken, saying, Within three years, as the
+years of an hireling, and the glory of Moab shall be contemned, with
+all that great multitude; and the remnant shall be very small and
+feeble.
+
+17:1 The burden of Damascus. Behold, Damascus is taken away from being
+a city, and it shall be a ruinous heap.
+
+17:2 The cities of Aroer are forsaken: they shall be for flocks, which
+shall lie down, and none shall make them afraid.
+
+17:3 The fortress also shall cease from Ephraim, and the kingdom from
+Damascus, and the remnant of Syria: they shall be as the glory of the
+children of Israel, saith the LORD of hosts.
+
+17:4 And in that day it shall come to pass, that the glory of Jacob
+shall be made thin, and the fatness of his flesh shall wax lean.
+
+17:5 And it shall be as when the harvestman gathereth the corn, and
+reapeth the ears with his arm; and it shall be as he that gathereth
+ears in the valley of Rephaim.
+
+17:6 Yet gleaning grapes shall be left in it, as the shaking of an
+olive tree, two or three berries in the top of the uppermost bough,
+four or five in the outmost fruitful branches thereof, saith the LORD
+God of Israel.
+
+17:7 At that day shall a man look to his Maker, and his eyes shall
+have respect to the Holy One of Israel.
+
+17:8 And he shall not look to the altars, the work of his hands,
+neither shall respect that which his fingers have made, either the
+groves, or the images.
+
+17:9 In that day shall his strong cities be as a forsaken bough, and
+an uppermost branch, which they left because of the children of
+Israel: and there shall be desolation.
+
+17:10 Because thou hast forgotten the God of thy salvation, and hast
+not been mindful of the rock of thy strength, therefore shalt thou
+plant pleasant plants, and shalt set it with strange slips: 17:11 In
+the day shalt thou make thy plant to grow, and in the morning shalt
+thou make thy seed to flourish: but the harvest shall be a heap in the
+day of grief and of desperate sorrow.
+
+17:12 Woe to the multitude of many people, which make a noise like the
+noise of the seas; and to the rushing of nations, that make a rushing
+like the rushing of mighty waters! 17:13 The nations shall rush like
+the rushing of many waters: but God shall rebuke them, and they shall
+flee far off, and shall be chased as the chaff of the mountains before
+the wind, and like a rolling thing before the whirlwind.
+
+17:14 And behold at eveningtide trouble; and before the morning he is
+not.
+
+This is the portion of them that spoil us, and the lot of them that
+rob us.
+
+18:1 Woe to the land shadowing with wings, which is beyond the rivers
+of Ethiopia: 18:2 That sendeth ambassadors by the sea, even in vessels
+of bulrushes upon the waters, saying, Go, ye swift messengers, to a
+nation scattered and peeled, to a people terrible from their beginning
+hitherto; a nation meted out and trodden down, whose land the rivers
+have spoiled! 18:3 All ye inhabitants of the world, and dwellers on
+the earth, see ye, when he lifteth up an ensign on the mountains; and
+when he bloweth a trumpet, hear ye.
+
+18:4 For so the LORD said unto me, I will take my rest, and I will
+consider in my dwelling place like a clear heat upon herbs, and like a
+cloud of dew in the heat of harvest.
+
+18:5 For afore the harvest, when the bud is perfect, and the sour
+grape is ripening in the flower, he shall both cut off the sprigs with
+pruning hooks, and take away and cut down the branches.
+
+18:6 They shall be left together unto the fowls of the mountains, and
+to the beasts of the earth: and the fowls shall summer upon them, and
+all the beasts of the earth shall winter upon them.
+
+18:7 In that time shall the present be brought unto the LORD of hosts
+of a people scattered and peeled, and from a people terrible from
+their beginning hitherto; a nation meted out and trodden under foot,
+whose land the rivers have spoiled, to the place of the name of the
+LORD of hosts, the mount Zion.
+
+19:1 The burden of Egypt. Behold, the LORD rideth upon a swift cloud,
+and shall come into Egypt: and the idols of Egypt shall be moved at
+his presence, and the heart of Egypt shall melt in the midst of it.
+
+19:2 And I will set the Egyptians against the Egyptians: and they
+shall fight every one against his brother, and every one against his
+neighbour; city against city, and kingdom against kingdom.
+
+19:3 And the spirit of Egypt shall fail in the midst thereof; and I
+will destroy the counsel thereof: and they shall seek to the idols,
+and to the charmers, and to them that have familiar spirits, and to
+the wizards.
+
+19:4 And the Egyptians will I give over into the hand of a cruel lord;
+and a fierce king shall rule over them, saith the Lord, the LORD of
+hosts.
+
+19:5 And the waters shall fail from the sea, and the river shall be
+wasted and dried up.
+
+19:6 And they shall turn the rivers far away; and the brooks of
+defence shall be emptied and dried up: the reeds and flags shall
+wither.
+
+19:7 The paper reeds by the brooks, by the mouth of the brooks, and
+every thing sown by the brooks, shall wither, be driven away, and be
+no more.
+
+19:8 The fishers also shall mourn, and all they that cast angle into
+the brooks shall lament, and they that spread nets upon the waters
+shall languish.
+
+19:9 Moreover they that work in fine flax, and they that weave
+networks, shall be confounded.
+
+19:10 And they shall be broken in the purposes thereof, all that make
+sluices and ponds for fish.
+
+19:11 Surely the princes of Zoan are fools, the counsel of the wise
+counsellors of Pharaoh is become brutish: how say ye unto Pharaoh, I
+am the son of the wise, the son of ancient kings? 19:12 Where are
+they? where are thy wise men? and let them tell thee now, and let them
+know what the LORD of hosts hath purposed upon Egypt.
+
+19:13 The princes of Zoan are become fools, the princes of Noph are
+deceived; they have also seduced Egypt, even they that are the stay of
+the tribes thereof.
+
+19:14 The LORD hath mingled a perverse spirit in the midst thereof:
+and they have caused Egypt to err in every work thereof, as a drunken
+man staggereth in his vomit.
+
+19:15 Neither shall there be any work for Egypt, which the head or
+tail, branch or rush, may do.
+
+19:16 In that day shall Egypt be like unto women: and it shall be
+afraid and fear because of the shaking of the hand of the LORD of
+hosts, which he shaketh over it.
+
+19:17 And the land of Judah shall be a terror unto Egypt, every one
+that maketh mention thereof shall be afraid in himself, because of the
+counsel of the LORD of hosts, which he hath determined against it.
+
+19:18 In that day shall five cities in the land of Egypt speak the
+language of Canaan, and swear to the LORD of hosts; one shall be
+called, The city of destruction.
+
+19:19 In that day shall there be an altar to the LORD in the midst of
+the land of Egypt, and a pillar at the border thereof to the LORD.
+
+19:20 And it shall be for a sign and for a witness unto the LORD of
+hosts in the land of Egypt: for they shall cry unto the LORD because
+of the oppressors, and he shall send them a saviour, and a great one,
+and he shall deliver them.
+
+19:21 And the LORD shall be known to Egypt, and the Egyptians shall
+know the LORD in that day, and shall do sacrifice and oblation; yea,
+they shall vow a vow unto the LORD, and perform it.
+
+19:22 And the LORD shall smite Egypt: he shall smite and heal it: and
+they shall return even to the LORD, and he shall be intreated of them,
+and shall heal them.
+
+19:23 In that day shall there be a highway out of Egypt to Assyria,
+and the Assyrian shall come into Egypt, and the Egyptian into Assyria,
+and the Egyptians shall serve with the Assyrians.
+
+19:24 In that day shall Israel be the third with Egypt and with
+Assyria, even a blessing in the midst of the land: 19:25 Whom the LORD
+of hosts shall bless, saying, Blessed be Egypt my people, and Assyria
+the work of my hands, and Israel mine inheritance.
+
+20:1 In the year that Tartan came unto Ashdod, (when Sargon the king
+of Assyria sent him,) and fought against Ashdod, and took it; 20:2 At
+the same time spake the LORD by Isaiah the son of Amoz, saying, Go and
+loose the sackcloth from off thy loins, and put off thy shoe from thy
+foot. And he did so, walking naked and barefoot.
+
+20:3 And the LORD said, Like as my servant Isaiah hath walked naked
+and barefoot three years for a sign and wonder upon Egypt and upon
+Ethiopia; 20:4 So shall the king of Assyria lead away the Egyptians
+prisoners, and the Ethiopians captives, young and old, naked and
+barefoot, even with their buttocks uncovered, to the shame of Egypt.
+
+20:5 And they shall be afraid and ashamed of Ethiopia their
+expectation, and of Egypt their glory.
+
+20:6 And the inhabitant of this isle shall say in that day, Behold,
+such is our expectation, whither we flee for help to be delivered from
+the king of Assyria: and how shall we escape? 21:1 The burden of the
+desert of the sea. As whirlwinds in the south pass through; so it
+cometh from the desert, from a terrible land.
+
+21:2 A grievous vision is declared unto me; the treacherous dealer
+dealeth treacherously, and the spoiler spoileth. Go up, O Elam:
+besiege, O Media; all the sighing thereof have I made to cease.
+
+21:3 Therefore are my loins filled with pain: pangs have taken hold
+upon me, as the pangs of a woman that travaileth: I was bowed down at
+the hearing of it; I was dismayed at the seeing of it.
+
+21:4 My heart panted, fearfulness affrighted me: the night of my
+pleasure hath he turned into fear unto me.
+
+21:5 Prepare the table, watch in the watchtower, eat, drink: arise, ye
+princes, and anoint the shield.
+
+21:6 For thus hath the LORD said unto me, Go, set a watchman, let him
+declare what he seeth.
+
+21:7 And he saw a chariot with a couple of horsemen, a chariot of
+asses, and a chariot of camels; and he hearkened diligently with much
+heed: 21:8 And he cried, A lion: My lord, I stand continually upon the
+watchtower in the daytime, and I am set in my ward whole nights: 21:9
+And, behold, here cometh a chariot of men, with a couple of horsemen.
+
+And he answered and said, Babylon is fallen, is fallen; and all the
+graven images of her gods he hath broken unto the ground.
+
+21:10 O my threshing, and the corn of my floor: that which I have
+heard of the LORD of hosts, the God of Israel, have I declared unto
+you.
+
+21:11 The burden of Dumah. He calleth to me out of Seir, Watchman,
+what of the night? Watchman, what of the night? 21:12 The watchman
+said, The morning cometh, and also the night: if ye will enquire,
+enquire ye: return, come.
+
+21:13 The burden upon Arabia. In the forest in Arabia shall ye lodge,
+O ye travelling companies of Dedanim.
+
+21:14 The inhabitants of the land of Tema brought water to him that
+was thirsty, they prevented with their bread him that fled.
+
+21:15 For they fled from the swords, from the drawn sword, and from
+the bent bow, and from the grievousness of war.
+
+21:16 For thus hath the LORD said unto me, Within a year, according to
+the years of an hireling, and all the glory of Kedar shall fail: 21:17
+And the residue of the number of archers, the mighty men of the
+children of Kedar, shall be diminished: for the LORD God of Israel
+hath spoken it.
+
+22:1 The burden of the valley of vision. What aileth thee now, that
+thou art wholly gone up to the housetops? 22:2 Thou that art full of
+stirs, a tumultuous city, joyous city: thy slain men are not slain
+with the sword, nor dead in battle.
+
+22:3 All thy rulers are fled together, they are bound by the archers:
+all that are found in thee are bound together, which have fled from
+far.
+
+22:4 Therefore said I, Look away from me; I will weep bitterly, labour
+not to comfort me, because of the spoiling of the daughter of my
+people.
+
+22:5 For it is a day of trouble, and of treading down, and of
+perplexity by the Lord GOD of hosts in the valley of vision, breaking
+down the walls, and of crying to the mountains.
+
+22:6 And Elam bare the quiver with chariots of men and horsemen, and
+Kir uncovered the shield.
+
+22:7 And it shall come to pass, that thy choicest valleys shall be
+full of chariots, and the horsemen shall set themselves in array at
+the gate.
+
+22:8 And he discovered the covering of Judah, and thou didst look in
+that day to the armour of the house of the forest.
+
+22:9 Ye have seen also the breaches of the city of David, that they
+are many: and ye gathered together the waters of the lower pool.
+
+22:10 And ye have numbered the houses of Jerusalem, and the houses
+have ye broken down to fortify the wall.
+
+22:11 Ye made also a ditch between the two walls for the water of the
+old pool: but ye have not looked unto the maker thereof, neither had
+respect unto him that fashioned it long ago.
+
+22:12 And in that day did the Lord GOD of hosts call to weeping, and
+to mourning, and to baldness, and to girding with sackcloth: 22:13 And
+behold joy and gladness, slaying oxen, and killing sheep, eating
+flesh, and drinking wine: let us eat and drink; for to morrow we shall
+die.
+
+22:14 And it was revealed in mine ears by the LORD of hosts, Surely
+this iniquity shall not be purged from you till ye die, saith the Lord
+GOD of hosts.
+
+22:15 Thus saith the Lord GOD of hosts, Go, get thee unto this
+treasurer, even unto Shebna, which is over the house, and say, 22:16
+What hast thou here? and whom hast thou here, that thou hast hewed
+thee out a sepulchre here, as he that heweth him out a sepulchre on
+high, and that graveth an habitation for himself in a rock? 22:17
+Behold, the LORD will carry thee away with a mighty captivity, and
+will surely cover thee.
+
+22:18 He will surely violently turn and toss thee like a ball into a
+large country: there shalt thou die, and there the chariots of thy
+glory shall be the shame of thy lord's house.
+
+22:19 And I will drive thee from thy station, and from thy state shall
+he pull thee down.
+
+22:20 And it shall come to pass in that day, that I will call my
+servant Eliakim the son of Hilkiah: 22:21 And I will clothe him with
+thy robe, and strengthen him with thy girdle, and I will commit thy
+government into his hand: and he shall be a father to the inhabitants
+of Jerusalem, and to the house of Judah.
+
+22:22 And the key of the house of David will I lay upon his shoulder;
+so he shall open, and none shall shut; and he shall shut, and none
+shall open.
+
+22:23 And I will fasten him as a nail in a sure place; and he shall be
+for a glorious throne to his father's house.
+
+22:24 And they shall hang upon him all the glory of his father's
+house, the offspring and the issue, all vessels of small quantity,
+from the vessels of cups, even to all the vessels of flagons.
+
+22:25 In that day, saith the LORD of hosts, shall the nail that is
+fastened in the sure place be removed, and be cut down, and fall; and
+the burden that was upon it shall be cut off: for the LORD hath spoken
+it.
+
+23:1 The burden of Tyre. Howl, ye ships of Tarshish; for it is laid
+waste, so that there is no house, no entering in: from the land of
+Chittim it is revealed to them.
+
+23:2 Be still, ye inhabitants of the isle; thou whom the merchants of
+Zidon, that pass over the sea, have replenished.
+
+23:3 And by great waters the seed of Sihor, the harvest of the river,
+is her revenue; and she is a mart of nations.
+
+23:4 Be thou ashamed, O Zidon: for the sea hath spoken, even the
+strength of the sea, saying, I travail not, nor bring forth children,
+neither do I nourish up young men, nor bring up virgins.
+
+23:5 As at the report concerning Egypt, so shall they be sorely pained
+at the report of Tyre.
+
+23:6 Pass ye over to Tarshish; howl, ye inhabitants of the isle.
+
+23:7 Is this your joyous city, whose antiquity is of ancient days? her
+own feet shall carry her afar off to sojourn.
+
+23:8 Who hath taken this counsel against Tyre, the crowning city,
+whose merchants are princes, whose traffickers are the honourable of
+the earth? 23:9 The LORD of hosts hath purposed it, to stain the
+pride of all glory, and to bring into contempt all the honourable of
+the earth.
+
+23:10 Pass through thy land as a river, O daughter of Tarshish: there
+is no more strength.
+
+23:11 He stretched out his hand over the sea, he shook the kingdoms:
+the LORD hath given a commandment against the merchant city, to
+destroy the strong holds thereof.
+
+23:12 And he said, Thou shalt no more rejoice, O thou oppressed
+virgin, daughter of Zidon: arise, pass over to Chittim; there also
+shalt thou have no rest.
+
+23:13 Behold the land of the Chaldeans; this people was not, till the
+Assyrian founded it for them that dwell in the wilderness: they set up
+the towers thereof, they raised up the palaces thereof; and he brought
+it to ruin.
+
+23:14 Howl, ye ships of Tarshish: for your strength is laid waste.
+
+23:15 And it shall come to pass in that day, that Tyre shall be
+forgotten seventy years, according to the days of one king: after the
+end of seventy years shall Tyre sing as an harlot.
+
+23:16 Take an harp, go about the city, thou harlot that hast been
+forgotten; make sweet melody, sing many songs, that thou mayest be
+remembered.
+
+23:17 And it shall come to pass after the end of seventy years, that
+the LORD will visit Tyre, and she shall turn to her hire, and shall
+commit fornication with all the kingdoms of the world upon the face of
+the earth.
+
+23:18 And her merchandise and her hire shall be holiness to the LORD:
+it shall not be treasured nor laid up; for her merchandise shall be
+for them that dwell before the LORD, to eat sufficiently, and for
+durable clothing.
+
+24:1 Behold, the LORD maketh the earth empty, and maketh it waste, and
+turneth it upside down, and scattereth abroad the inhabitants thereof.
+
+24:2 And it shall be, as with the people, so with the priest; as with
+the servant, so with his master; as with the maid, so with her
+mistress; as with the buyer, so with the seller; as with the lender,
+so with the borrower; as with the taker of usury, so with the giver of
+usury to him.
+
+24:3 The land shall be utterly emptied, and utterly spoiled: for the
+LORD hath spoken this word.
+
+24:4 The earth mourneth and fadeth away, the world languisheth and
+fadeth away, the haughty people of the earth do languish.
+
+24:5 The earth also is defiled under the inhabitants thereof; because
+they have transgressed the laws, changed the ordinance, broken the
+everlasting covenant.
+
+24:6 Therefore hath the curse devoured the earth, and they that dwell
+therein are desolate: therefore the inhabitants of the earth are
+burned, and few men left.
+
+24:7 The new wine mourneth, the vine languisheth, all the merryhearted
+do sigh.
+
+24:8 The mirth of tabrets ceaseth, the noise of them that rejoice
+endeth, the joy of the harp ceaseth.
+
+24:9 They shall not drink wine with a song; strong drink shall be
+bitter to them that drink it.
+
+24:10 The city of confusion is broken down: every house is shut up,
+that no man may come in.
+
+24:11 There is a crying for wine in the streets; all joy is darkened,
+the mirth of the land is gone.
+
+24:12 In the city is left desolation, and the gate is smitten with
+destruction.
+
+24:13 When thus it shall be in the midst of the land among the people,
+there shall be as the shaking of an olive tree, and as the gleaning
+grapes when the vintage is done.
+
+24:14 They shall lift up their voice, they shall sing for the majesty
+of the LORD, they shall cry aloud from the sea.
+
+24:15 Wherefore glorify ye the LORD in the fires, even the name of the
+LORD God of Israel in the isles of the sea.
+
+24:16 From the uttermost part of the earth have we heard songs, even
+glory to the righteous. But I said, My leanness, my leanness, woe unto
+me! the treacherous dealers have dealt treacherously; yea, the
+treacherous dealers have dealt very treacherously.
+
+24:17 Fear, and the pit, and the snare, are upon thee, O inhabitant of
+the earth.
+
+24:18 And it shall come to pass, that he who fleeth from the noise of
+the fear shall fall into the pit; and he that cometh up out of the
+midst of the pit shall be taken in the snare: for the windows from on
+high are open, and the foundations of the earth do shake.
+
+24:19 The earth is utterly broken down, the earth is clean dissolved,
+the earth is moved exceedingly.
+
+24:20 The earth shall reel to and fro like a drunkard, and shall be
+removed like a cottage; and the transgression thereof shall be heavy
+upon it; and it shall fall, and not rise again.
+
+24:21 And it shall come to pass in that day, that the LORD shall
+punish the host of the high ones that are on high, and the kings of
+the earth upon the earth.
+
+24:22 And they shall be gathered together, as prisoners are gathered
+in the pit, and shall be shut up in the prison, and after many days
+shall they be visited.
+
+24:23 Then the moon shall be confounded, and the sun ashamed, when the
+LORD of hosts shall reign in mount Zion, and in Jerusalem, and before
+his ancients gloriously.
+
+25:1 O Lord, thou art my God; I will exalt thee, I will praise thy
+name; for thou hast done wonderful things; thy counsels of old are
+faithfulness and truth.
+
+25:2 For thou hast made of a city an heap; of a defenced city a ruin:
+a palace of strangers to be no city; it shall never be built.
+
+25:3 Therefore shall the strong people glorify thee, the city of the
+terrible nations shall fear thee.
+
+25:4 For thou hast been a strength to the poor, a strength to the
+needy in his distress, a refuge from the storm, a shadow from the
+heat, when the blast of the terrible ones is as a storm against the
+wall.
+
+25:5 Thou shalt bring down the noise of strangers, as the heat in a
+dry place; even the heat with the shadow of a cloud: the branch of the
+terrible ones shall be brought low.
+
+25:6 And in this mountain shall the LORD of hosts make unto all people
+a feast of fat things, a feast of wines on the lees, of fat things
+full of marrow, of wines on the lees well refined.
+
+25:7 And he will destroy in this mountain the face of the covering
+cast over all people, and the vail that is spread over all nations.
+
+25:8 He will swallow up death in victory; and the Lord GOD will wipe
+away tears from off all faces; and the rebuke of his people shall he
+take away from off all the earth: for the LORD hath spoken it.
+
+25:9 And it shall be said in that day, Lo, this is our God; we have
+waited for him, and he will save us: this is the LORD; we have waited
+for him, we will be glad and rejoice in his salvation.
+
+25:10 For in this mountain shall the hand of the LORD rest, and Moab
+shall be trodden down under him, even as straw is trodden down for the
+dunghill.
+
+25:11 And he shall spread forth his hands in the midst of them, as he
+that swimmeth spreadeth forth his hands to swim: and he shall bring
+down their pride together with the spoils of their hands.
+
+25:12 And the fortress of the high fort of thy walls shall he bring
+down, lay low, and bring to the ground, even to the dust.
+
+26:1 In that day shall this song be sung in the land of Judah; We have
+a strong city; salvation will God appoint for walls and bulwarks.
+
+26:2 Open ye the gates, that the righteous nation which keepeth the
+truth may enter in.
+
+26:3 Thou wilt keep him in perfect peace, whose mind is stayed on
+thee: because he trusteth in thee.
+
+26:4 Trust ye in the LORD for ever: for in the LORD JEHOVAH is
+everlasting strength: 26:5 For he bringeth down them that dwell on
+high; the lofty city, he layeth it low; he layeth it low, even to the
+ground; he bringeth it even to the dust.
+
+26:6 The foot shall tread it down, even the feet of the poor, and the
+steps of the needy.
+
+26:7 The way of the just is uprightness: thou, most upright, dost
+weigh the path of the just.
+
+26:8 Yea, in the way of thy judgments, O LORD, have we waited for
+thee; the desire of our soul is to thy name, and to the remembrance of
+thee.
+
+26:9 With my soul have I desired thee in the night; yea, with my
+spirit within me will I seek thee early: for when thy judgments are in
+the earth, the inhabitants of the world will learn righteousness.
+
+26:10 Let favour be shewed to the wicked, yet will he not learn
+righteousness: in the land of uprightness will he deal unjustly, and
+will not behold the majesty of the LORD.
+
+26:11 LORD, when thy hand is lifted up, they will not see: but they
+shall see, and be ashamed for their envy at the people; yea, the fire
+of thine enemies shall devour them.
+
+26:12 LORD, thou wilt ordain peace for us: for thou also hast wrought
+all our works in us.
+
+26:13 O LORD our God, other lords beside thee have had dominion over
+us: but by thee only will we make mention of thy name.
+
+26:14 They are dead, they shall not live; they are deceased, they
+shall not rise: therefore hast thou visited and destroyed them, and
+made all their memory to perish.
+
+26:15 Thou hast increased the nation, O LORD, thou hast increased the
+nation: thou art glorified: thou hadst removed it far unto all the
+ends of the earth.
+
+26:16 LORD, in trouble have they visited thee, they poured out a
+prayer when thy chastening was upon them.
+
+26:17 Like as a woman with child, that draweth near the time of her
+delivery, is in pain, and crieth out in her pangs; so have we been in
+thy sight, O LORD.
+
+26:18 We have been with child, we have been in pain, we have as it
+were brought forth wind; we have not wrought any deliverance in the
+earth; neither have the inhabitants of the world fallen.
+
+26:19 Thy dead men shall live, together with my dead body shall they
+arise. Awake and sing, ye that dwell in dust: for thy dew is as the
+dew of herbs, and the earth shall cast out the dead.
+
+26:20 Come, my people, enter thou into thy chambers, and shut thy
+doors about thee: hide thyself as it were for a little moment, until
+the indignation be overpast.
+
+26:21 For, behold, the LORD cometh out of his place to punish the
+inhabitants of the earth for their iniquity: the earth also shall
+disclose her blood, and shall no more cover her slain.
+
+27:1 In that day the LORD with his sore and great and strong sword
+shall punish leviathan the piercing serpent, even leviathan that
+crooked serpent; and he shall slay the dragon that is in the sea.
+
+27:2 In that day sing ye unto her, A vineyard of red wine.
+
+27:3 I the LORD do keep it; I will water it every moment: lest any
+hurt it, I will keep it night and day.
+
+27:4 Fury is not in me: who would set the briers and thorns against me
+in battle? I would go through them, I would burn them together.
+
+27:5 Or let him take hold of my strength, that he may make peace with
+me; and he shall make peace with me.
+
+27:6 He shall cause them that come of Jacob to take root: Israel shall
+blossom and bud, and fill the face of the world with fruit.
+
+27:7 Hath he smitten him, as he smote those that smote him? or is he
+slain according to the slaughter of them that are slain by him? 27:8
+In measure, when it shooteth forth, thou wilt debate with it: he
+stayeth his rough wind in the day of the east wind.
+
+27:9 By this therefore shall the iniquity of Jacob be purged; and this
+is all the fruit to take away his sin; when he maketh all the stones
+of the altar as chalkstones that are beaten in sunder, the groves and
+images shall not stand up.
+
+27:10 Yet the defenced city shall be desolate, and the habitation
+forsaken, and left like a wilderness: there shall the calf feed, and
+there shall he lie down, and consume the branches thereof.
+
+27:11 When the boughs thereof are withered, they shall be broken off:
+the women come, and set them on fire: for it is a people of no
+understanding: therefore he that made them will not have mercy on
+them, and he that formed them will shew them no favour.
+
+27:12 And it shall come to pass in that day, that the LORD shall beat
+off from the channel of the river unto the stream of Egypt, and ye
+shall be gathered one by one, O ye children of Israel.
+
+27:13 And it shall come to pass in that day, that the great trumpet
+shall be blown, and they shall come which were ready to perish in the
+land of Assyria, and the outcasts in the land of Egypt, and shall
+worship the LORD in the holy mount at Jerusalem.
+
+28:1 Woe to the crown of pride, to the drunkards of Ephraim, whose
+glorious beauty is a fading flower, which are on the head of the fat
+valleys of them that are overcome with wine! 28:2 Behold, the Lord
+hath a mighty and strong one, which as a tempest of hail and a
+destroying storm, as a flood of mighty waters overflowing, shall cast
+down to the earth with the hand.
+
+28:3 The crown of pride, the drunkards of Ephraim, shall be trodden
+under feet: 28:4 And the glorious beauty, which is on the head of the
+fat valley, shall be a fading flower, and as the hasty fruit before
+the summer; which when he that looketh upon it seeth, while it is yet
+in his hand he eateth it up.
+
+28:5 In that day shall the LORD of hosts be for a crown of glory, and
+for a diadem of beauty, unto the residue of his people, 28:6 And for a
+spirit of judgment to him that sitteth in judgment, and for strength
+to them that turn the battle to the gate.
+
+28:7 But they also have erred through wine, and through strong drink
+are out of the way; the priest and the prophet have erred through
+strong drink, they are swallowed up of wine, they are out of the way
+through strong drink; they err in vision, they stumble in judgment.
+
+28:8 For all tables are full of vomit and filthiness, so that there is
+no place clean.
+
+28:9 Whom shall he teach knowledge? and whom shall he make to
+understand doctrine? them that are weaned from the milk, and drawn
+from the breasts.
+
+28:10 For precept must be upon precept, precept upon precept; line
+upon line, line upon line; here a little, and there a little: 28:11
+For with stammering lips and another tongue will he speak to this
+people.
+
+28:12 To whom he said, This is the rest wherewith ye may cause the
+weary to rest; and this is the refreshing: yet they would not hear.
+
+28:13 But the word of the LORD was unto them precept upon precept,
+precept upon precept; line upon line, line upon line; here a little,
+and there a little; that they might go, and fall backward, and be
+broken, and snared, and taken.
+
+28:14 Wherefore hear the word of the LORD, ye scornful men, that rule
+this people which is in Jerusalem.
+
+28:15 Because ye have said, We have made a covenant with death, and
+with hell are we at agreement; when the overflowing scourge shall pass
+through, it shall not come unto us: for we have made lies our refuge,
+and under falsehood have we hid ourselves: 28:16 Therefore thus saith
+the Lord GOD, Behold, I lay in Zion for a foundation a stone, a tried
+stone, a precious corner stone, a sure foundation: he that believeth
+shall not make haste.
+
+28:17 Judgment also will I lay to the line, and righteousness to the
+plummet: and the hail shall sweep away the refuge of lies, and the
+waters shall overflow the hiding place.
+
+28:18 And your covenant with death shall be disannulled, and your
+agreement with hell shall not stand; when the overflowing scourge
+shall pass through, then ye shall be trodden down by it.
+
+28:19 From the time that it goeth forth it shall take you: for morning
+by morning shall it pass over, by day and by night: and it shall be a
+vexation only to understand the report.
+
+28:20 For the bed is shorter than that a man can stretch himself on
+it: and the covering narrower than that he can wrap himself in it.
+
+28:21 For the LORD shall rise up as in mount Perazim, he shall be
+wroth as in the valley of Gibeon, that he may do his work, his strange
+work; and bring to pass his act, his strange act.
+
+28:22 Now therefore be ye not mockers, lest your bands be made strong:
+for I have heard from the Lord GOD of hosts a consumption, even
+determined upon the whole earth.
+
+28:23 Give ye ear, and hear my voice; hearken, and hear my speech.
+
+28:24 Doth the plowman plow all day to sow? doth he open and break the
+clods of his ground? 28:25 When he hath made plain the face thereof,
+doth he not cast abroad the fitches, and scatter the cummin, and cast
+in the principal wheat and the appointed barley and the rie in their
+place? 28:26 For his God doth instruct him to discretion, and doth
+teach him.
+
+28:27 For the fitches are not threshed with a threshing instrument,
+neither is a cart wheel turned about upon the cummin; but the fitches
+are beaten out with a staff, and the cummin with a rod.
+
+28:28 Bread corn is bruised; because he will not ever be threshing it,
+nor break it with the wheel of his cart, nor bruise it with his
+horsemen.
+
+28:29 This also cometh forth from the LORD of hosts, which is
+wonderful in counsel, and excellent in working.
+
+29:1 Woe to Ariel, to Ariel, the city where David dwelt! add ye year
+to year; let them kill sacrifices.
+
+29:2 Yet I will distress Ariel, and there shall be heaviness and
+sorrow: and it shall be unto me as Ariel.
+
+29:3 And I will camp against thee round about, and will lay siege
+against thee with a mount, and I will raise forts against thee.
+
+29:4 And thou shalt be brought down, and shalt speak out of the
+ground, and thy speech shall be low out of the dust, and thy voice
+shall be, as of one that hath a familiar spirit, out of the ground,
+and thy speech shall whisper out of the dust.
+
+29:5 Moreover the multitude of thy strangers shall be like small dust,
+and the multitude of the terrible ones shall be as chaff that passeth
+away: yea, it shall be at an instant suddenly.
+
+29:6 Thou shalt be visited of the LORD of hosts with thunder, and with
+earthquake, and great noise, with storm and tempest, and the flame of
+devouring fire.
+
+29:7 And the multitude of all the nations that fight against Ariel,
+even all that fight against her and her munition, and that distress
+her, shall be as a dream of a night vision.
+
+29:8 It shall even be as when an hungry man dreameth, and, behold, he
+eateth; but he awaketh, and his soul is empty: or as when a thirsty
+man dreameth, and, behold, he drinketh; but he awaketh, and, behold,
+he is faint, and his soul hath appetite: so shall the multitude of all
+the nations be, that fight against mount Zion.
+
+29:9 Stay yourselves, and wonder; cry ye out, and cry: they are
+drunken, but not with wine; they stagger, but not with strong drink.
+
+29:10 For the LORD hath poured out upon you the spirit of deep sleep,
+and hath closed your eyes: the prophets and your rulers, the seers
+hath he covered.
+
+29:11 And the vision of all is become unto you as the words of a book
+that is sealed, which men deliver to one that is learned, saying, Read
+this, I pray thee: and he saith, I cannot; for it is sealed: 29:12 And
+the book is delivered to him that is not learned, saying, Read this, I
+pray thee: and he saith, I am not learned.
+
+29:13 Wherefore the Lord said, Forasmuch as this people draw near me
+with their mouth, and with their lips do honour me, but have removed
+their heart far from me, and their fear toward me is taught by the
+precept of men: 29:14 Therefore, behold, I will proceed to do a
+marvellous work among this people, even a marvellous work and a
+wonder: for the wisdom of their wise men shall perish, and the
+understanding of their prudent men shall be hid.
+
+29:15 Woe unto them that seek deep to hide their counsel from the
+LORD, and their works are in the dark, and they say, Who seeth us? and
+who knoweth us? 29:16 Surely your turning of things upside down shall
+be esteemed as the potter's clay: for shall the work say of him that
+made it, He made me not? or shall the thing framed say of him that
+framed it, He had no understanding? 29:17 Is it not yet a very little
+while, and Lebanon shall be turned into a fruitful field, and the
+fruitful field shall be esteemed as a forest? 29:18 And in that day
+shall the deaf hear the words of the book, and the eyes of the blind
+shall see out of obscurity, and out of darkness.
+
+29:19 The meek also shall increase their joy in the LORD, and the poor
+among men shall rejoice in the Holy One of Israel.
+
+29:20 For the terrible one is brought to nought, and the scorner is
+consumed, and all that watch for iniquity are cut off: 29:21 That make
+a man an offender for a word, and lay a snare for him that reproveth
+in the gate, and turn aside the just for a thing of nought.
+
+29:22 Therefore thus saith the LORD, who redeemed Abraham, concerning
+the house of Jacob, Jacob shall not now be ashamed, neither shall his
+face now wax pale.
+
+29:23 But when he seeth his children, the work of mine hands, in the
+midst of him, they shall sanctify my name, and sanctify the Holy One
+of Jacob, and shall fear the God of Israel.
+
+29:24 They also that erred in spirit shall come to understanding, and
+they that murmured shall learn doctrine.
+
+30:1 Woe to the rebellious children, saith the LORD, that take
+counsel, but not of me; and that cover with a covering, but not of my
+spirit, that they may add sin to sin: 30:2 That walk to go down into
+Egypt, and have not asked at my mouth; to strengthen themselves in the
+strength of Pharaoh, and to trust in the shadow of Egypt! 30:3
+Therefore shall the strength of Pharaoh be your shame, and the trust
+in the shadow of Egypt your confusion.
+
+30:4 For his princes were at Zoan, and his ambassadors came to Hanes.
+
+30:5 They were all ashamed of a people that could not profit them, nor
+be an help nor profit, but a shame, and also a reproach.
+
+30:6 The burden of the beasts of the south: into the land of trouble
+and anguish, from whence come the young and old lion, the viper and
+fiery flying serpent, they will carry their riches upon the shoulders
+of young asses, and their treasures upon the bunches of camels, to a
+people that shall not profit them.
+
+30:7 For the Egyptians shall help in vain, and to no purpose:
+therefore have I cried concerning this, Their strength is to sit
+still.
+
+30:8 Now go, write it before them in a table, and note it in a book,
+that it may be for the time to come for ever and ever: 30:9 That this
+is a rebellious people, lying children, children that will not hear
+the law of the LORD: 30:10 Which say to the seers, See not; and to the
+prophets, Prophesy not unto us right things, speak unto us smooth
+things, prophesy deceits: 30:11 Get you out of the way, turn aside out
+of the path, cause the Holy One of Israel to cease from before us.
+
+30:12 Wherefore thus saith the Holy One of Israel, Because ye despise
+this word, and trust in oppression and perverseness, and stay thereon:
+30:13 Therefore this iniquity shall be to you as a breach ready to
+fall, swelling out in a high wall, whose breaking cometh suddenly at
+an instant.
+
+30:14 And he shall break it as the breaking of the potters' vessel
+that is broken in pieces; he shall not spare: so that there shall not
+be found in the bursting of it a sherd to take fire from the hearth,
+or to take water withal out of the pit.
+
+30:15 For thus saith the Lord GOD, the Holy One of Israel; In
+returning and rest shall ye be saved; in quietness and in confidence
+shall be your strength: and ye would not.
+
+30:16 But ye said, No; for we will flee upon horses; therefore shall
+ye flee: and, We will ride upon the swift; therefore shall they that
+pursue you be swift.
+
+30:17 One thousand shall flee at the rebuke of one; at the rebuke of
+five shall ye flee: till ye be left as a beacon upon the top of a
+mountain, and as an ensign on an hill.
+
+30:18 And therefore will the LORD wait, that he may be gracious unto
+you, and therefore will he be exalted, that he may have mercy upon
+you: for the LORD is a God of judgment: blessed are all they that wait
+for him.
+
+30:19 For the people shall dwell in Zion at Jerusalem: thou shalt weep
+no more: he will be very gracious unto thee at the voice of thy cry;
+when he shall hear it, he will answer thee.
+
+30:20 And though the Lord give you the bread of adversity, and the
+water of affliction, yet shall not thy teachers be removed into a
+corner any more, but thine eyes shall see thy teachers: 30:21 And
+thine ears shall hear a word behind thee, saying, This is the way,
+walk ye in it, when ye turn to the right hand, and when ye turn to the
+left.
+
+30:22 Ye shall defile also the covering of thy graven images of
+silver, and the ornament of thy molten images of gold: thou shalt cast
+them away as a menstruous cloth; thou shalt say unto it, Get thee
+hence.
+
+30:23 Then shall he give the rain of thy seed, that thou shalt sow the
+ground withal; and bread of the increase of the earth, and it shall be
+fat and plenteous: in that day shall thy cattle feed in large
+pastures.
+
+30:24 The oxen likewise and the young asses that ear the ground shall
+eat clean provender, which hath been winnowed with the shovel and with
+the fan.
+
+30:25 And there shall be upon every high mountain, and upon every high
+hill, rivers and streams of waters in the day of the great slaughter,
+when the towers fall.
+
+30:26 Moreover the light of the moon shall be as the light of the sun,
+and the light of the sun shall be sevenfold, as the light of seven
+days, in the day that the LORD bindeth up the breach of his people,
+and healeth the stroke of their wound.
+
+30:27 Behold, the name of the LORD cometh from far, burning with his
+anger, and the burden thereof is heavy: his lips are full of
+indignation, and his tongue as a devouring fire: 30:28 And his breath,
+as an overflowing stream, shall reach to the midst of the neck, to
+sift the nations with the sieve of vanity: and there shall be a bridle
+in the jaws of the people, causing them to err.
+
+30:29 Ye shall have a song, as in the night when a holy solemnity is
+kept; and gladness of heart, as when one goeth with a pipe to come
+into the mountain of the LORD, to the mighty One of Israel.
+
+30:30 And the LORD shall cause his glorious voice to be heard, and
+shall shew the lighting down of his arm, with the indignation of his
+anger, and with the flame of a devouring fire, with scattering, and
+tempest, and hailstones.
+
+30:31 For through the voice of the LORD shall the Assyrian be beaten
+down, which smote with a rod.
+
+30:32 And in every place where the grounded staff shall pass, which
+the LORD shall lay upon him, it shall be with tabrets and harps: and
+in battles of shaking will he fight with it.
+
+30:33 For Tophet is ordained of old; yea, for the king it is prepared;
+he hath made it deep and large: the pile thereof is fire and much
+wood; the breath of the LORD, like a stream of brimstone, doth kindle
+it.
+
+31:1 Woe to them that go down to Egypt for help; and stay on horses,
+and trust in chariots, because they are many; and in horsemen, because
+they are very strong; but they look not unto the Holy One of Israel,
+neither seek the LORD! 31:2 Yet he also is wise, and will bring evil,
+and will not call back his words: but will arise against the house of
+the evildoers, and against the help of them that work iniquity.
+
+31:3 Now the Egyptians are men, and not God; and their horses flesh,
+and not spirit. When the LORD shall stretch out his hand, both he that
+helpeth shall fall, and he that is holpen shall fall down, and they
+all shall fail together.
+
+31:4 For thus hath the LORD spoken unto me, Like as the lion and the
+young lion roaring on his prey, when a multitude of shepherds is
+called forth against him, he will not be afraid of their voice, nor
+abase himself for the noise of them: so shall the LORD of hosts come
+down to fight for mount Zion, and for the hill thereof.
+
+31:5 As birds flying, so will the LORD of hosts defend Jerusalem;
+defending also he will deliver it; and passing over he will preserve
+it.
+
+31:6 Turn ye unto him from whom the children of Israel have deeply
+revolted.
+
+31:7 For in that day every man shall cast away his idols of silver,
+and his idols of gold, which your own hands have made unto you for a
+sin.
+
+31:8 Then shall the Assyrian fall with the sword, not of a mighty man;
+and the sword, not of a mean man, shall devour him: but he shall flee
+from the sword, and his young men shall be discomfited.
+
+31:9 And he shall pass over to his strong hold for fear, and his
+princes shall be afraid of the ensign, saith the LORD, whose fire is
+in Zion, and his furnace in Jerusalem.
+
+32:1 Behold, a king shall reign in righteousness, and princes shall
+rule in judgment.
+
+32:2 And a man shall be as an hiding place from the wind, and a covert
+from the tempest; as rivers of water in a dry place, as the shadow of
+a great rock in a weary land.
+
+32:3 And the eyes of them that see shall not be dim, and the ears of
+them that hear shall hearken.
+
+32:4 The heart also of the rash shall understand knowledge, and the
+tongue of the stammerers shall be ready to speak plainly.
+
+32:5 The vile person shall be no more called liberal, nor the churl
+said to be bountiful.
+
+32:6 For the vile person will speak villany, and his heart will work
+iniquity, to practise hypocrisy, and to utter error against the LORD,
+to make empty the soul of the hungry, and he will cause the drink of
+the thirsty to fail.
+
+32:7 The instruments also of the churl are evil: he deviseth wicked
+devices to destroy the poor with lying words, even when the needy
+speaketh right.
+
+32:8 But the liberal deviseth liberal things; and by liberal things
+shall he stand.
+
+32:9 Rise up, ye women that are at ease; hear my voice, ye careless
+daughters; give ear unto my speech.
+
+32:10 Many days and years shall ye be troubled, ye careless women: for
+the vintage shall fail, the gathering shall not come.
+
+32:11 Tremble, ye women that are at ease; be troubled, ye careless
+ones: strip you, and make you bare, and gird sackcloth upon your
+loins.
+
+32:12 They shall lament for the teats, for the pleasant fields, for
+the fruitful vine.
+
+32:13 Upon the land of my people shall come up thorns and briers; yea,
+upon all the houses of joy in the joyous city: 32:14 Because the
+palaces shall be forsaken; the multitude of the city shall be left;
+the forts and towers shall be for dens for ever, a joy of wild asses,
+a pasture of flocks; 32:15 Until the spirit be poured upon us from on
+high, and the wilderness be a fruitful field, and the fruitful field
+be counted for a forest.
+
+32:16 Then judgment shall dwell in the wilderness, and righteousness
+remain in the fruitful field.
+
+32:17 And the work of righteousness shall be peace; and the effect of
+righteousness quietness and assurance for ever.
+
+32:18 And my people shall dwell in a peaceable habitation, and in sure
+dwellings, and in quiet resting places; 32:19 When it shall hail,
+coming down on the forest; and the city shall be low in a low place.
+
+32:20 Blessed are ye that sow beside all waters, that send forth
+thither the feet of the ox and the ass.
+
+33:1 Woe to thee that spoilest, and thou wast not spoiled; and dealest
+treacherously, and they dealt not treacherously with thee! when thou
+shalt cease to spoil, thou shalt be spoiled; and when thou shalt make
+an end to deal treacherously, they shall deal treacherously with thee.
+
+33:2 O LORD, be gracious unto us; we have waited for thee: be thou
+their arm every morning, our salvation also in the time of trouble.
+
+33:3 At the noise of the tumult the people fled; at the lifting up of
+thyself the nations were scattered.
+
+33:4 And your spoil shall be gathered like the gathering of the
+caterpiller: as the running to and fro of locusts shall he run upon
+them.
+
+33:5 The LORD is exalted; for he dwelleth on high: he hath filled Zion
+with judgment and righteousness.
+
+33:6 And wisdom and knowledge shall be the stability of thy times, and
+strength of salvation: the fear of the LORD is his treasure.
+
+33:7 Behold, their valiant ones shall cry without: the ambassadors of
+peace shall weep bitterly.
+
+33:8 The highways lie waste, the wayfaring man ceaseth: he hath broken
+the covenant, he hath despised the cities, he regardeth no man.
+
+33:9 The earth mourneth and languisheth: Lebanon is ashamed and hewn
+down: Sharon is like a wilderness; and Bashan and Carmel shake off
+their fruits.
+
+33:10 Now will I rise, saith the LORD; now will I be exalted; now will
+I lift up myself.
+
+33:11 Ye shall conceive chaff, ye shall bring forth stubble: your
+breath, as fire, shall devour you.
+
+33:12 And the people shall be as the burnings of lime: as thorns cut
+up shall they be burned in the fire.
+
+33:13 Hear, ye that are far off, what I have done; and, ye that are
+near, acknowledge my might.
+
+33:14 The sinners in Zion are afraid; fearfulness hath surprised the
+hypocrites. Who among us shall dwell with the devouring fire? who
+among us shall dwell with everlasting burnings? 33:15 He that walketh
+righteously, and speaketh uprightly; he that despiseth the gain of
+oppressions, that shaketh his hands from holding of bribes, that
+stoppeth his ears from hearing of blood, and shutteth his eyes from
+seeing evil; 33:16 He shall dwell on high: his place of defence shall
+be the munitions of rocks: bread shall be given him; his waters shall
+be sure.
+
+33:17 Thine eyes shall see the king in his beauty: they shall behold
+the land that is very far off.
+
+33:18 Thine heart shall meditate terror. Where is the scribe? where is
+the receiver? where is he that counted the towers? 33:19 Thou shalt
+not see a fierce people, a people of a deeper speech than thou canst
+perceive; of a stammering tongue, that thou canst not understand.
+
+33:20 Look upon Zion, the city of our solemnities: thine eyes shall
+see Jerusalem a quiet habitation, a tabernacle that shall not be taken
+down; not one of the stakes thereof shall ever be removed, neither
+shall any of the cords thereof be broken.
+
+33:21 But there the glorious LORD will be unto us a place of broad
+rivers and streams; wherein shall go no galley with oars, neither
+shall gallant ship pass thereby.
+
+33:22 For the LORD is our judge, the LORD is our lawgiver, the LORD is
+our king; he will save us.
+
+33:23 Thy tacklings are loosed; they could not well strengthen their
+mast, they could not spread the sail: then is the prey of a great
+spoil divided; the lame take the prey.
+
+33:24 And the inhabitant shall not say, I am sick: the people that
+dwell therein shall be forgiven their iniquity.
+
+34:1 Come near, ye nations, to hear; and hearken, ye people: let the
+earth hear, and all that is therein; the world, and all things that
+come forth of it.
+
+34:2 For the indignation of the LORD is upon all nations, and his fury
+upon all their armies: he hath utterly destroyed them, he hath
+delivered them to the slaughter.
+
+34:3 Their slain also shall be cast out, and their stink shall come up
+out of their carcases, and the mountains shall be melted with their
+blood.
+
+34:4 And all the host of heaven shall be dissolved, and the heavens
+shall be rolled together as a scroll: and all their host shall fall
+down, as the leaf falleth off from the vine, and as a falling fig from
+the fig tree.
+
+34:5 For my sword shall be bathed in heaven: behold, it shall come
+down upon Idumea, and upon the people of my curse, to judgment.
+
+34:6 The sword of the LORD is filled with blood, it is made fat with
+fatness, and with the blood of lambs and goats, with the fat of the
+kidneys of rams: for the LORD hath a sacrifice in Bozrah, and a great
+slaughter in the land of Idumea.
+
+34:7 And the unicorns shall come down with them, and the bullocks with
+the bulls; and their land shall be soaked with blood, and their dust
+made fat with fatness.
+
+34:8 For it is the day of the LORD's vengeance, and the year of
+recompences for the controversy of Zion.
+
+34:9 And the streams thereof shall be turned into pitch, and the dust
+thereof into brimstone, and the land thereof shall become burning
+pitch.
+
+34:10 It shall not be quenched night nor day; the smoke thereof shall
+go up for ever: from generation to generation it shall lie waste; none
+shall pass through it for ever and ever.
+
+34:11 But the cormorant and the bittern shall possess it; the owl also
+and the raven shall dwell in it: and he shall stretch out upon it the
+line of confusion, and the stones of emptiness.
+
+34:12 They shall call the nobles thereof to the kingdom, but none
+shall be there, and all her princes shall be nothing.
+
+34:13 And thorns shall come up in her palaces, nettles and brambles in
+the fortresses thereof: and it shall be an habitation of dragons, and
+a court for owls.
+
+34:14 The wild beasts of the desert shall also meet with the wild
+beasts of the island, and the satyr shall cry to his fellow; the
+screech owl also shall rest there, and find for herself a place of
+rest.
+
+34:15 There shall the great owl make her nest, and lay, and hatch, and
+gather under her shadow: there shall the vultures also be gathered,
+every one with her mate.
+
+34:16 Seek ye out of the book of the LORD, and read: no one of these
+shall fail, none shall want her mate: for my mouth it hath commanded,
+and his spirit it hath gathered them.
+
+34:17 And he hath cast the lot for them, and his hand hath divided it
+unto them by line: they shall possess it for ever, from generation to
+generation shall they dwell therein.
+
+35:1 The wilderness and the solitary place shall be glad for them; and
+the desert shall rejoice, and blossom as the rose.
+
+35:2 It shall blossom abundantly, and rejoice even with joy and
+singing: the glory of Lebanon shall be given unto it, the excellency
+of Carmel and Sharon, they shall see the glory of the LORD, and the
+excellency of our God.
+
+35:3 Strengthen ye the weak hands, and confirm the feeble knees.
+
+35:4 Say to them that are of a fearful heart, Be strong, fear not:
+behold, your God will come with vengeance, even God with a recompence;
+he will come and save you.
+
+35:5 Then the eyes of the blind shall be opened, and the ears of the
+deaf shall be unstopped.
+
+35:6 Then shall the lame man leap as an hart, and the tongue of the
+dumb sing: for in the wilderness shall waters break out, and streams
+in the desert.
+
+35:7 And the parched ground shall become a pool, and the thirsty land
+springs of water: in the habitation of dragons, where each lay, shall
+be grass with reeds and rushes.
+
+35:8 And an highway shall be there, and a way, and it shall be called
+The way of holiness; the unclean shall not pass over it; but it shall
+be for those: the wayfaring men, though fools, shall not err therein.
+
+35:9 No lion shall be there, nor any ravenous beast shall go up
+thereon, it shall not be found there; but the redeemed shall walk
+there: 35:10 And the ransomed of the LORD shall return, and come to
+Zion with songs and everlasting joy upon their heads: they shall
+obtain joy and gladness, and sorrow and sighing shall flee away.
+
+36:1 Now it came to pass in the fourteenth year of king Hezekiah, that
+Sennacherib king of Assyria came up against all the defenced cities of
+Judah, and took them.
+
+36:2 And the king of Assyria sent Rabshakeh from Lachish to Jerusalem
+unto king Hezekiah with a great army. And he stood by the conduit of
+the upper pool in the highway of the fuller's field.
+
+36:3 Then came forth unto him Eliakim, Hilkiah's son, which was over
+the house, and Shebna the scribe, and Joah, Asaph's son, the recorder.
+
+36:4 And Rabshakeh said unto them, Say ye now to Hezekiah, Thus saith
+the great king, the king of Assyria, What confidence is this wherein
+thou trustest? 36:5 I say, sayest thou, (but they are but vain words)
+I have counsel and strength for war: now on whom dost thou trust, that
+thou rebellest against me? 36:6 Lo, thou trustest in the staff of
+this broken reed, on Egypt; whereon if a man lean, it will go into his
+hand, and pierce it: so is Pharaoh king of Egypt to all that trust in
+him.
+
+36:7 But if thou say to me, We trust in the LORD our God: is it not
+he, whose high places and whose altars Hezekiah hath taken away, and
+said to Judah and to Jerusalem, Ye shall worship before this altar?
+36:8 Now therefore give pledges, I pray thee, to my master the king of
+Assyria, and I will give thee two thousand horses, if thou be able on
+thy part to set riders upon them.
+
+36:9 How then wilt thou turn away the face of one captain of the least
+of my master's servants, and put thy trust on Egypt for chariots and
+for horsemen? 36:10 And am I now come up without the LORD against
+this land to destroy it? the LORD said unto me, Go up against this
+land, and destroy it.
+
+36:11 Then said Eliakim and Shebna and Joah unto Rabshakeh, Speak, I
+pray thee, unto thy servants in the Syrian language; for we understand
+it: and speak not to us in the Jews' language, in the ears of the
+people that are on the wall.
+
+36:12 But Rabshakeh said, Hath my master sent me to thy master and to
+thee to speak these words? hath he not sent me to the men that sit
+upon the wall, that they may eat their own dung, and drink their own
+piss with you? 36:13 Then Rabshakeh stood, and cried with a loud
+voice in the Jews' language, and said, Hear ye the words of the great
+king, the king of Assyria.
+
+36:14 Thus saith the king, Let not Hezekiah deceive you: for he shall
+not be able to deliver you.
+
+36:15 Neither let Hezekiah make you trust in the LORD, saying, The
+LORD will surely deliver us: this city shall not be delivered into the
+hand of the king of Assyria.
+
+36:16 Hearken not to Hezekiah: for thus saith the king of Assyria,
+Make an agreement with me by a present, and come out to me: and eat ye
+every one of his vine, and every one of his fig tree, and drink ye
+every one the waters of his own cistern; 36:17 Until I come and take
+you away to a land like your own land, a land of corn and wine, a land
+of bread and vineyards.
+
+36:18 Beware lest Hezekiah persuade you, saying, the LORD will deliver
+us.
+
+Hath any of the gods of the nations delivered his land out of the hand
+of the king of Assyria? 36:19 Where are the gods of Hamath and
+Arphad? where are the gods of Sepharvaim? and have they delivered
+Samaria out of my hand? 36:20 Who are they among all the gods of
+these lands, that have delivered their land out of my hand, that the
+LORD should deliver Jerusalem out of my hand? 36:21 But they held
+their peace, and answered him not a word: for the king's commandment
+was, saying, Answer him not.
+
+36:22 Then came Eliakim, the son of Hilkiah, that was over the
+household, and Shebna the scribe, and Joah, the son of Asaph, the
+recorder, to Hezekiah with their clothes rent, and told him the words
+of Rabshakeh.
+
+37:1 And it came to pass, when king Hezekiah heard it, that he rent
+his clothes, and covered himself with sackcloth, and went into the
+house of the LORD.
+
+37:2 And he sent Eliakim, who was over the household, and Shebna the
+scribe, and the elders of the priests covered with sackcloth, unto
+Isaiah the prophet the son of Amoz.
+
+37:3 And they said unto him, Thus saith Hezekiah, This day is a day of
+trouble, and of rebuke, and of blasphemy: for the children are come to
+the birth, and there is not strength to bring forth.
+
+37:4 It may be the LORD thy God will hear the words of Rabshakeh, whom
+the king of Assyria his master hath sent to reproach the living God,
+and will reprove the words which the LORD thy God hath heard:
+wherefore lift up thy prayer for the remnant that is left.
+
+37:5 So the servants of king Hezekiah came to Isaiah.
+
+37:6 And Isaiah said unto them, Thus shall ye say unto your master,
+Thus saith the LORD, Be not afraid of the words that thou hast heard,
+wherewith the servants of the king of Assyria have blasphemed me.
+
+37:7 Behold, I will send a blast upon him, and he shall hear a rumour,
+and return to his own land; and I will cause him to fall by the sword
+in his own land.
+
+37:8 So Rabshakeh returned, and found the king of Assyria warring
+against Libnah: for he had heard that he was departed from Lachish.
+
+37:9 And he heard say concerning Tirhakah king of Ethiopia, He is come
+forth to make war with thee. And when he heard it, he sent messengers
+to Hezekiah, saying, 37:10 Thus shall ye speak to Hezekiah king of
+Judah, saying, Let not thy God, in whom thou trustest, deceive thee,
+saying, Jerusalem shall not be given into the hand of the king of
+Assyria.
+
+37:11 Behold, thou hast heard what the kings of Assyria have done to
+all lands by destroying them utterly; and shalt thou be delivered?
+37:12 Have the gods of the nations delivered them which my fathers
+have destroyed, as Gozan, and Haran, and Rezeph, and the children of
+Eden which were in Telassar? 37:13 Where is the king of Hamath, and
+the king of Arphad, and the king of the city of Sepharvaim, Hena, and
+Ivah? 37:14 And Hezekiah received the letter from the hand of the
+messengers, and read it: and Hezekiah went up unto the house of the
+LORD, and spread it before the LORD.
+
+37:15 And Hezekiah prayed unto the LORD, saying, 37:16 O LORD of
+hosts, God of Israel, that dwellest between the cherubims, thou art
+the God, even thou alone, of all the kingdoms of the earth: thou hast
+made heaven and earth.
+
+37:17 Incline thine ear, O LORD, and hear; open thine eyes, O LORD,
+and see: and hear all the words of Sennacherib, which hath sent to
+reproach the living God.
+
+37:18 Of a truth, LORD, the kings of Assyria have laid waste all the
+nations, and their countries, 37:19 And have cast their gods into the
+fire: for they were no gods, but the work of men's hands, wood and
+stone: therefore they have destroyed them.
+
+37:20 Now therefore, O LORD our God, save us from his hand, that all
+the kingdoms of the earth may know that thou art the LORD, even thou
+only.
+
+37:21 Then Isaiah the son of Amoz sent unto Hezekiah, saying, Thus
+saith the LORD God of Israel, Whereas thou hast prayed to me against
+Sennacherib king of Assyria: 37:22 This is the word which the LORD
+hath spoken concerning him; The virgin, the daughter of Zion, hath
+despised thee, and laughed thee to scorn; the daughter of Jerusalem
+hath shaken her head at thee.
+
+37:23 Whom hast thou reproached and blasphemed? and against whom hast
+thou exalted thy voice, and lifted up thine eyes on high? even against
+the Holy One of Israel.
+
+37:24 By thy servants hast thou reproached the Lord, and hast said, By
+the multitude of my chariots am I come up to the height of the
+mountains, to the sides of Lebanon; and I will cut down the tall
+cedars thereof, and the choice fir trees thereof: and I will enter
+into the height of his border, and the forest of his Carmel.
+
+37:25 I have digged, and drunk water; and with the sole of my feet
+have I dried up all the rivers of the besieged places.
+
+37:26 Hast thou not heard long ago, how I have done it; and of ancient
+times, that I have formed it? now have I brought it to pass, that thou
+shouldest be to lay waste defenced cities into ruinous heaps.
+
+37:27 Therefore their inhabitants were of small power, they were
+dismayed and confounded: they were as the grass of the field, and as
+the green herb, as the grass on the housetops, and as corn blasted
+before it be grown up.
+
+37:28 But I know thy abode, and thy going out, and thy coming in, and
+thy rage against me.
+
+37:29 Because thy rage against me, and thy tumult, is come up into
+mine ears, therefore will I put my hook in thy nose, and my bridle in
+thy lips, and I will turn thee back by the way by which thou camest.
+
+37:30 And this shall be a sign unto thee, Ye shall eat this year such
+as groweth of itself; and the second year that which springeth of the
+same: and in the third year sow ye, and reap, and plant vineyards, and
+eat the fruit thereof.
+
+37:31 And the remnant that is escaped of the house of Judah shall
+again take root downward, and bear fruit upward: 37:32 For out of
+Jerusalem shall go forth a remnant, and they that escape out of mount
+Zion: the zeal of the LORD of hosts shall do this.
+
+37:33 Therefore thus saith the LORD concerning the king of Assyria, He
+shall not come into this city, nor shoot an arrow there, nor come
+before it with shields, nor cast a bank against it.
+
+37:34 By the way that he came, by the same shall he return, and shall
+not come into this city, saith the LORD.
+
+37:35 For I will defend this city to save it for mine own sake, and
+for my servant David's sake.
+
+37:36 Then the angel of the LORD went forth, and smote in the camp of
+the Assyrians a hundred and fourscore and five thousand: and when they
+arose early in the morning, behold, they were all dead corpses.
+
+37:37 So Sennacherib king of Assyria departed, and went and returned,
+and dwelt at Nineveh.
+
+37:38 And it came to pass, as he was worshipping in the house of
+Nisroch his god, that Adrammelech and Sharezer his sons smote him with
+the sword; and they escaped into the land of Armenia: and Esarhaddon
+his son reigned in his stead.
+
+38:1 In those days was Hezekiah sick unto death. And Isaiah the
+prophet the son of Amoz came unto him, and said unto him, Thus saith
+the LORD, Set thine house in order: for thou shalt die, and not live.
+
+38:2 Then Hezekiah turned his face toward the wall, and prayed unto
+the LORD, 38:3 And said, Remember now, O LORD, I beseech thee, how I
+have walked before thee in truth and with a perfect heart, and have
+done that which is good in thy sight. And Hezekiah wept sore.
+
+38:4 Then came the word of the LORD to Isaiah, saying, 38:5 Go, and
+say to Hezekiah, Thus saith the LORD, the God of David thy father, I
+have heard thy prayer, I have seen thy tears: behold, I will add unto
+thy days fifteen years.
+
+38:6 And I will deliver thee and this city out of the hand of the king
+of Assyria: and I will defend this city.
+
+38:7 And this shall be a sign unto thee from the LORD, that the LORD
+will do this thing that he hath spoken; 38:8 Behold, I will bring
+again the shadow of the degrees, which is gone down in the sun dial of
+Ahaz, ten degrees backward. So the sun returned ten degrees, by which
+degrees it was gone down.
+
+38:9 The writing of Hezekiah king of Judah, when he had been sick, and
+was recovered of his sickness: 38:10 I said in the cutting off of my
+days, I shall go to the gates of the grave: I am deprived of the
+residue of my years.
+
+38:11 I said, I shall not see the LORD, even the LORD, in the land of
+the living: I shall behold man no more with the inhabitants of the
+world.
+
+38:12 Mine age is departed, and is removed from me as a shepherd's
+tent: I have cut off like a weaver my life: he will cut me off with
+pining sickness: from day even to night wilt thou make an end of me.
+
+38:13 I reckoned till morning, that, as a lion, so will he break all
+my bones: from day even to night wilt thou make an end of me.
+
+38:14 Like a crane or a swallow, so did I chatter: I did mourn as a
+dove: mine eyes fail with looking upward: O LORD, I am oppressed;
+undertake for me.
+
+38:15 What shall I say? he hath both spoken unto me, and himself hath
+done it: I shall go softly all my years in the bitterness of my soul.
+
+38:16 O LORD, by these things men live, and in all these things is the
+life of my spirit: so wilt thou recover me, and make me to live.
+
+38:17 Behold, for peace I had great bitterness: but thou hast in love
+to my soul delivered it from the pit of corruption: for thou hast cast
+all my sins behind thy back.
+
+38:18 For the grave cannot praise thee, death can not celebrate thee:
+they that go down into the pit cannot hope for thy truth.
+
+38:19 The living, the living, he shall praise thee, as I do this day:
+the father to the children shall make known thy truth.
+
+38:20 The LORD was ready to save me: therefore we will sing my songs
+to the stringed instruments all the days of our life in the house of
+the LORD.
+
+38:21 For Isaiah had said, Let them take a lump of figs, and lay it
+for a plaister upon the boil, and he shall recover.
+
+38:22 Hezekiah also had said, What is the sign that I shall go up to
+the house of the LORD? 39:1 At that time Merodachbaladan, the son of
+Baladan, king of Babylon, sent letters and a present to Hezekiah: for
+he had heard that he had been sick, and was recovered.
+
+39:2 And Hezekiah was glad of them, and shewed them the house of his
+precious things, the silver, and the gold, and the spices, and the
+precious ointment, and all the house of his armour, and all that was
+found in his treasures: there was nothing in his house, nor in all his
+dominion, that Hezekiah shewed them not.
+
+39:3 Then came Isaiah the prophet unto king Hezekiah, and said unto
+him, What said these men? and from whence came they unto thee? And
+Hezekiah said, They are come from a far country unto me, even from
+Babylon.
+
+39:4 Then said he, What have they seen in thine house? And Hezekiah
+answered, All that is in mine house have they seen: there is nothing
+among my treasures that I have not shewed them.
+
+39:5 Then said Isaiah to Hezekiah, Hear the word of the LORD of hosts:
+39:6 Behold, the days come, that all that is in thine house, and that
+which thy fathers have laid up in store until this day, shall be
+carried to Babylon: nothing shall be left, saith the LORD.
+
+39:7 And of thy sons that shall issue from thee, which thou shalt
+beget, shall they take away; and they shall be eunuchs in the palace
+of the king of Babylon.
+
+39:8 Then said Hezekiah to Isaiah, Good is the word of the LORD which
+thou hast spoken. He said moreover, For there shall be peace and truth
+in my days.
+
+40:1 Comfort ye, comfort ye my people, saith your God.
+
+40:2 Speak ye comfortably to Jerusalem, and cry unto her, that her
+warfare is accomplished, that her iniquity is pardoned: for she hath
+received of the LORD's hand double for all her sins.
+
+40:3 The voice of him that crieth in the wilderness, Prepare ye the
+way of the LORD, make straight in the desert a highway for our God.
+
+40:4 Every valley shall be exalted, and every mountain and hill shall
+be made low: and the crooked shall be made straight, and the rough
+places plain: 40:5 And the glory of the LORD shall be revealed, and
+all flesh shall see it together: for the mouth of the LORD hath spoken
+it.
+
+40:6 The voice said, Cry. And he said, What shall I cry? All flesh is
+grass, and all the goodliness thereof is as the flower of the field:
+40:7 The grass withereth, the flower fadeth: because the spirit of the
+LORD bloweth upon it: surely the people is grass.
+
+40:8 The grass withereth, the flower fadeth: but the word of our God
+shall stand for ever.
+
+40:9 O Zion, that bringest good tidings, get thee up into the high
+mountain; O Jerusalem, that bringest good tidings, lift up thy voice
+with strength; lift it up, be not afraid; say unto the cities of
+Judah, Behold your God! 40:10 Behold, the Lord GOD will come with
+strong hand, and his arm shall rule for him: behold, his reward is
+with him, and his work before him.
+
+40:11 He shall feed his flock like a shepherd: he shall gather the
+lambs with his arm, and carry them in his bosom, and shall gently lead
+those that are with young.
+
+40:12 Who hath measured the waters in the hollow of his hand, and
+meted out heaven with the span, and comprehended the dust of the earth
+in a measure, and weighed the mountains in scales, and the hills in a
+balance? 40:13 Who hath directed the Spirit of the LORD, or being his
+counsellor hath taught him? 40:14 With whom took he counsel, and who
+instructed him, and taught him in the path of judgment, and taught him
+knowledge, and shewed to him the way of understanding? 40:15 Behold,
+the nations are as a drop of a bucket, and are counted as the small
+dust of the balance: behold, he taketh up the isles as a very little
+thing.
+
+40:16 And Lebanon is not sufficient to burn, nor the beasts thereof
+sufficient for a burnt offering.
+
+40:17 All nations before him are as nothing; and they are counted to
+him less than nothing, and vanity.
+
+40:18 To whom then will ye liken God? or what likeness will ye compare
+unto him? 40:19 The workman melteth a graven image, and the goldsmith
+spreadeth it over with gold, and casteth silver chains.
+
+40:20 He that is so impoverished that he hath no oblation chooseth a
+tree that will not rot; he seeketh unto him a cunning workman to
+prepare a graven image, that shall not be moved.
+
+40:21 Have ye not known? have ye not heard? hath it not been told you
+from the beginning? have ye not understood from the foundations of the
+earth? 40:22 It is he that sitteth upon the circle of the earth, and
+the inhabitants thereof are as grasshoppers; that stretcheth out the
+heavens as a curtain, and spreadeth them out as a tent to dwell in:
+40:23 That bringeth the princes to nothing; he maketh the judges of
+the earth as vanity.
+
+40:24 Yea, they shall not be planted; yea, they shall not be sown:
+yea, their stock shall not take root in the earth: and he shall also
+blow upon them, and they shall wither, and the whirlwind shall take
+them away as stubble.
+
+40:25 To whom then will ye liken me, or shall I be equal? saith the
+Holy One.
+
+40:26 Lift up your eyes on high, and behold who hath created these
+things, that bringeth out their host by number: he calleth them all by
+names by the greatness of his might, for that he is strong in power;
+not one faileth.
+
+40:27 Why sayest thou, O Jacob, and speakest, O Israel, My way is hid
+from the LORD, and my judgment is passed over from my God? 40:28 Hast
+thou not known? hast thou not heard, that the everlasting God, the
+LORD, the Creator of the ends of the earth, fainteth not, neither is
+weary? there is no searching of his understanding.
+
+40:29 He giveth power to the faint; and to them that have no might he
+increaseth strength.
+
+40:30 Even the youths shall faint and be weary, and the young men
+shall utterly fall: 40:31 But they that wait upon the LORD shall renew
+their strength; they shall mount up with wings as eagles; they shall
+run, and not be weary; and they shall walk, and not faint.
+
+41:1 Keep silence before me, O islands; and let the people renew their
+strength: let them come near; then let them speak: let us come near
+together to judgment.
+
+41:2 Who raised up the righteous man from the east, called him to his
+foot, gave the nations before him, and made him rule over kings? he
+gave them as the dust to his sword, and as driven stubble to his bow.
+
+41:3 He pursued them, and passed safely; even by the way that he had
+not gone with his feet.
+
+41:4 Who hath wrought and done it, calling the generations from the
+beginning? I the LORD, the first, and with the last; I am he.
+
+41:5 The isles saw it, and feared; the ends of the earth were afraid,
+drew near, and came.
+
+41:6 They helped every one his neighbour; and every one said to his
+brother, Be of good courage.
+
+41:7 So the carpenter encouraged the goldsmith, and he that smootheth
+with the hammer him that smote the anvil, saying, It is ready for the
+sodering: and he fastened it with nails, that it should not be moved.
+
+41:8 But thou, Israel, art my servant, Jacob whom I have chosen, the
+seed of Abraham my friend.
+
+41:9 Thou whom I have taken from the ends of the earth, and called
+thee from the chief men thereof, and said unto thee, Thou art my
+servant; I have chosen thee, and not cast thee away.
+
+41:10 Fear thou not; for I am with thee: be not dismayed; for I am thy
+God: I will strengthen thee; yea, I will help thee; yea, I will uphold
+thee with the right hand of my righteousness.
+
+41:11 Behold, all they that were incensed against thee shall be
+ashamed and confounded: they shall be as nothing; and they that strive
+with thee shall perish.
+
+41:12 Thou shalt seek them, and shalt not find them, even them that
+contended with thee: they that war against thee shall be as nothing,
+and as a thing of nought.
+
+41:13 For I the LORD thy God will hold thy right hand, saying unto
+thee, Fear not; I will help thee.
+
+41:14 Fear not, thou worm Jacob, and ye men of Israel; I will help
+thee, saith the LORD, and thy redeemer, the Holy One of Israel.
+
+41:15 Behold, I will make thee a new sharp threshing instrument having
+teeth: thou shalt thresh the mountains, and beat them small, and shalt
+make the hills as chaff.
+
+41:16 Thou shalt fan them, and the wind shall carry them away, and the
+whirlwind shall scatter them: and thou shalt rejoice in the LORD, and
+shalt glory in the Holy One of Israel.
+
+41:17 When the poor and needy seek water, and there is none, and their
+tongue faileth for thirst, I the LORD will hear them, I the God of
+Israel will not forsake them.
+
+41:18 I will open rivers in high places, and fountains in the midst of
+the valleys: I will make the wilderness a pool of water, and the dry
+land springs of water.
+
+41:19 I will plant in the wilderness the cedar, the shittah tree, and
+the myrtle, and the oil tree; I will set in the desert the fir tree,
+and the pine, and the box tree together: 41:20 That they may see, and
+know, and consider, and understand together, that the hand of the LORD
+hath done this, and the Holy One of Israel hath created it.
+
+41:21 Produce your cause, saith the LORD; bring forth your strong
+reasons, saith the King of Jacob.
+
+41:22 Let them bring them forth, and shew us what shall happen: let
+them shew the former things, what they be, that we may consider them,
+and know the latter end of them; or declare us things for to come.
+
+41:23 Shew the things that are to come hereafter, that we may know
+that ye are gods: yea, do good, or do evil, that we may be dismayed,
+and behold it together.
+
+41:24 Behold, ye are of nothing, and your work of nought: an
+abomination is he that chooseth you.
+
+41:25 I have raised up one from the north, and he shall come: from the
+rising of the sun shall he call upon my name: and he shall come upon
+princes as upon morter, and as the potter treadeth clay.
+
+41:26 Who hath declared from the beginning, that we may know? and
+beforetime, that we may say, He is righteous? yea, there is none that
+sheweth, yea, there is none that declareth, yea, there is none that
+heareth your words.
+
+41:27 The first shall say to Zion, Behold, behold them: and I will
+give to Jerusalem one that bringeth good tidings.
+
+41:28 For I beheld, and there was no man; even among them, and there
+was no counsellor, that, when I asked of them, could answer a word.
+
+41:29 Behold, they are all vanity; their works are nothing: their
+molten images are wind and confusion.
+
+42:1 Behold my servant, whom I uphold; mine elect, in whom my soul
+delighteth; I have put my spirit upon him: he shall bring forth
+judgment to the Gentiles.
+
+42:2 He shall not cry, nor lift up, nor cause his voice to be heard in
+the street.
+
+42:3 A bruised reed shall he not break, and the smoking flax shall he
+not quench: he shall bring forth judgment unto truth.
+
+42:4 He shall not fail nor be discouraged, till he have set judgment
+in the earth: and the isles shall wait for his law.
+
+42:5 Thus saith God the LORD, he that created the heavens, and
+stretched them out; he that spread forth the earth, and that which
+cometh out of it; he that giveth breath unto the people upon it, and
+spirit to them that walk therein: 42:6 I the LORD have called thee in
+righteousness, and will hold thine hand, and will keep thee, and give
+thee for a covenant of the people, for a light of the Gentiles; 42:7
+To open the blind eyes, to bring out the prisoners from the prison,
+and them that sit in darkness out of the prison house.
+
+42:8 I am the LORD: that is my name: and my glory will I not give to
+another, neither my praise to graven images.
+
+42:9 Behold, the former things are come to pass, and new things do I
+declare: before they spring forth I tell you of them.
+
+42:10 Sing unto the LORD a new song, and his praise from the end of
+the earth, ye that go down to the sea, and all that is therein; the
+isles, and the inhabitants thereof.
+
+42:11 Let the wilderness and the cities thereof lift up their voice,
+the villages that Kedar doth inhabit: let the inhabitants of the rock
+sing, let them shout from the top of the mountains.
+
+42:12 Let them give glory unto the LORD, and declare his praise in the
+islands.
+
+42:13 The LORD shall go forth as a mighty man, he shall stir up
+jealousy like a man of war: he shall cry, yea, roar; he shall prevail
+against his enemies.
+
+42:14 I have long time holden my peace; I have been still, and
+refrained myself: now will I cry like a travailing woman; I will
+destroy and devour at once.
+
+42:15 I will make waste mountains and hills, and dry up all their
+herbs; and I will make the rivers islands, and I will dry up the
+pools.
+
+42:16 And I will bring the blind by a way that they knew not; I will
+lead them in paths that they have not known: I will make darkness
+light before them, and crooked things straight. These things will I do
+unto them, and not forsake them.
+
+42:17 They shall be turned back, they shall be greatly ashamed, that
+trust in graven images, that say to the molten images, Ye are our
+gods.
+
+42:18 Hear, ye deaf; and look, ye blind, that ye may see.
+
+42:19 Who is blind, but my servant? or deaf, as my messenger that I
+sent? who is blind as he that is perfect, and blind as the LORD's
+servant? 42:20 Seeing many things, but thou observest not; opening
+the ears, but he heareth not.
+
+42:21 The LORD is well pleased for his righteousness' sake; he will
+magnify the law, and make it honourable.
+
+42:22 But this is a people robbed and spoiled; they are all of them
+snared in holes, and they are hid in prison houses: they are for a
+prey, and none delivereth; for a spoil, and none saith, Restore.
+
+42:23 Who among you will give ear to this? who will hearken and hear
+for the time to come? 42:24 Who gave Jacob for a spoil, and Israel to
+the robbers? did not the LORD, he against whom we have sinned? for
+they would not walk in his ways, neither were they obedient unto his
+law.
+
+42:25 Therefore he hath poured upon him the fury of his anger, and the
+strength of battle: and it hath set him on fire round about, yet he
+knew not; and it burned him, yet he laid it not to heart.
+
+43:1 But now thus saith the LORD that created thee, O Jacob, and he
+that formed thee, O Israel, Fear not: for I have redeemed thee, I have
+called thee by thy name; thou art mine.
+
+43:2 When thou passest through the waters, I will be with thee; and
+through the rivers, they shall not overflow thee: when thou walkest
+through the fire, thou shalt not be burned; neither shall the flame
+kindle upon thee.
+
+43:3 For I am the LORD thy God, the Holy One of Israel, thy Saviour: I
+gave Egypt for thy ransom, Ethiopia and Seba for thee.
+
+43:4 Since thou wast precious in my sight, thou hast been honourable,
+and I have loved thee: therefore will I give men for thee, and people
+for thy life.
+
+43:5 Fear not: for I am with thee: I will bring thy seed from the
+east, and gather thee from the west; 43:6 I will say to the north,
+Give up; and to the south, Keep not back: bring my sons from far, and
+my daughters from the ends of the earth; 43:7 Even every one that is
+called by my name: for I have created him for my glory, I have formed
+him; yea, I have made him.
+
+43:8 Bring forth the blind people that have eyes, and the deaf that
+have ears.
+
+43:9 Let all the nations be gathered together, and let the people be
+assembled: who among them can declare this, and shew us former things?
+let them bring forth their witnesses, that they may be justified: or
+let them hear, and say, It is truth.
+
+43:10 Ye are my witnesses, saith the LORD, and my servant whom I have
+chosen: that ye may know and believe me, and understand that I am he:
+before me there was no God formed, neither shall there be after me.
+
+43:11 I, even I, am the LORD; and beside me there is no saviour.
+
+43:12 I have declared, and have saved, and I have shewed, when there
+was no strange god among you: therefore ye are my witnesses, saith the
+LORD, that I am God.
+
+43:13 Yea, before the day was I am he; and there is none that can
+deliver out of my hand: I will work, and who shall let it? 43:14 Thus
+saith the LORD, your redeemer, the Holy One of Israel; For your sake I
+have sent to Babylon, and have brought down all their nobles, and the
+Chaldeans, whose cry is in the ships.
+
+43:15 I am the LORD, your Holy One, the creator of Israel, your King.
+
+43:16 Thus saith the LORD, which maketh a way in the sea, and a path
+in the mighty waters; 43:17 Which bringeth forth the chariot and
+horse, the army and the power; they shall lie down together, they
+shall not rise: they are extinct, they are quenched as tow.
+
+43:18 Remember ye not the former things, neither consider the things
+of old.
+
+43:19 Behold, I will do a new thing; now it shall spring forth; shall
+ye not know it? I will even make a way in the wilderness, and rivers
+in the desert.
+
+43:20 The beast of the field shall honour me, the dragons and the
+owls: because I give waters in the wilderness, and rivers in the
+desert, to give drink to my people, my chosen.
+
+43:21 This people have I formed for myself; they shall shew forth my
+praise.
+
+43:22 But thou hast not called upon me, O Jacob; but thou hast been
+weary of me, O Israel.
+
+43:23 Thou hast not brought me the small cattle of thy burnt
+offerings; neither hast thou honoured me with thy sacrifices. I have
+not caused thee to serve with an offering, nor wearied thee with
+incense.
+
+43:24 Thou hast bought me no sweet cane with money, neither hast thou
+filled me with the fat of thy sacrifices: but thou hast made me to
+serve with thy sins, thou hast wearied me with thine iniquities.
+
+43:25 I, even I, am he that blotteth out thy transgressions for mine
+own sake, and will not remember thy sins.
+
+43:26 Put me in remembrance: let us plead together: declare thou, that
+thou mayest be justified.
+
+43:27 Thy first father hath sinned, and thy teachers have transgressed
+against me.
+
+43:28 Therefore I have profaned the princes of the sanctuary, and have
+given Jacob to the curse, and Israel to reproaches.
+
+44:1 Yet now hear, O Jacob my servant; and Israel, whom I have chosen:
+44:2 Thus saith the LORD that made thee, and formed thee from the
+womb, which will help thee; Fear not, O Jacob, my servant; and thou,
+Jesurun, whom I have chosen.
+
+44:3 For I will pour water upon him that is thirsty, and floods upon
+the dry ground: I will pour my spirit upon thy seed, and my blessing
+upon thine offspring: 44:4 And they shall spring up as among the
+grass, as willows by the water courses.
+
+44:5 One shall say, I am the LORD's; and another shall call himself by
+the name of Jacob; and another shall subscribe with his hand unto the
+LORD, and surname himself by the name of Israel.
+
+44:6 Thus saith the LORD the King of Israel, and his redeemer the LORD
+of hosts; I am the first, and I am the last; and beside me there is no
+God.
+
+44:7 And who, as I, shall call, and shall declare it, and set it in
+order for me, since I appointed the ancient people? and the things
+that are coming, and shall come, let them shew unto them.
+
+44:8 Fear ye not, neither be afraid: have not I told thee from that
+time, and have declared it? ye are even my witnesses. Is there a God
+beside me? yea, there is no God; I know not any.
+
+44:9 They that make a graven image are all of them vanity; and their
+delectable things shall not profit; and they are their own witnesses;
+they see not, nor know; that they may be ashamed.
+
+44:10 Who hath formed a god, or molten a graven image that is
+profitable for nothing? 44:11 Behold, all his fellows shall be
+ashamed: and the workmen, they are of men: let them all be gathered
+together, let them stand up; yet they shall fear, and they shall be
+ashamed together.
+
+44:12 The smith with the tongs both worketh in the coals, and
+fashioneth it with hammers, and worketh it with the strength of his
+arms: yea, he is hungry, and his strength faileth: he drinketh no
+water, and is faint.
+
+44:13 The carpenter stretcheth out his rule; he marketh it out with a
+line; he fitteth it with planes, and he marketh it out with the
+compass, and maketh it after the figure of a man, according to the
+beauty of a man; that it may remain in the house.
+
+44:14 He heweth him down cedars, and taketh the cypress and the oak,
+which he strengtheneth for himself among the trees of the forest: he
+planteth an ash, and the rain doth nourish it.
+
+44:15 Then shall it be for a man to burn: for he will take thereof,
+and warm himself; yea, he kindleth it, and baketh bread; yea, he
+maketh a god, and worshippeth it; he maketh it a graven image, and
+falleth down thereto.
+
+44:16 He burneth part thereof in the fire; with part thereof he eateth
+flesh; he roasteth roast, and is satisfied: yea, he warmeth himself,
+and saith, Aha, I am warm, I have seen the fire: 44:17 And the residue
+thereof he maketh a god, even his graven image: he falleth down unto
+it, and worshippeth it, and prayeth unto it, and saith, Deliver me;
+for thou art my god.
+
+44:18 They have not known nor understood: for he hath shut their eyes,
+that they cannot see; and their hearts, that they cannot understand.
+
+44:19 And none considereth in his heart, neither is there knowledge
+nor understanding to say, I have burned part of it in the fire; yea,
+also I have baked bread upon the coals thereof; I have roasted flesh,
+and eaten it: and shall I make the residue thereof an abomination?
+shall I fall down to the stock of a tree? 44:20 He feedeth on ashes:
+a deceived heart hath turned him aside, that he cannot deliver his
+soul, nor say, Is there not a lie in my right hand? 44:21 Remember
+these, O Jacob and Israel; for thou art my servant: I have formed
+thee; thou art my servant: O Israel, thou shalt not be forgotten of
+me.
+
+44:22 I have blotted out, as a thick cloud, thy transgressions, and,
+as a cloud, thy sins: return unto me; for I have redeemed thee.
+
+44:23 Sing, O ye heavens; for the LORD hath done it: shout, ye lower
+parts of the earth: break forth into singing, ye mountains, O forest,
+and every tree therein: for the LORD hath redeemed Jacob, and
+glorified himself in Israel.
+
+44:24 Thus saith the LORD, thy redeemer, and he that formed thee from
+the womb, I am the LORD that maketh all things; that stretcheth forth
+the heavens alone; that spreadeth abroad the earth by myself; 44:25
+That frustrateth the tokens of the liars, and maketh diviners mad;
+that turneth wise men backward, and maketh their knowledge foolish;
+44:26 That confirmeth the word of his servant, and performeth the
+counsel of his messengers; that saith to Jerusalem, Thou shalt be
+inhabited; and to the cities of Judah, Ye shall be built, and I will
+raise up the decayed places thereof: 44:27 That saith to the deep, Be
+dry, and I will dry up thy rivers: 44:28 That saith of Cyrus, He is my
+shepherd, and shall perform all my pleasure: even saying to Jerusalem,
+Thou shalt be built; and to the temple, Thy foundation shall be laid.
+
+45:1 Thus saith the LORD to his anointed, to Cyrus, whose right hand I
+have holden, to subdue nations before him; and I will loose the loins
+of kings, to open before him the two leaved gates; and the gates shall
+not be shut; 45:2 I will go before thee, and make the crooked places
+straight: I will break in pieces the gates of brass, and cut in sunder
+the bars of iron: 45:3 And I will give thee the treasures of darkness,
+and hidden riches of secret places, that thou mayest know that I, the
+LORD, which call thee by thy name, am the God of Israel.
+
+45:4 For Jacob my servant's sake, and Israel mine elect, I have even
+called thee by thy name: I have surnamed thee, though thou hast not
+known me.
+
+45:5 I am the LORD, and there is none else, there is no God beside me:
+I girded thee, though thou hast not known me: 45:6 That they may know
+from the rising of the sun, and from the west, that there is none
+beside me. I am the LORD, and there is none else.
+
+45:7 I form the light, and create darkness: I make peace, and create
+evil: I the LORD do all these things.
+
+45:8 Drop down, ye heavens, from above, and let the skies pour down
+righteousness: let the earth open, and let them bring forth salvation,
+and let righteousness spring up together; I the LORD have created it.
+
+45:9 Woe unto him that striveth with his Maker! Let the potsherd
+strive with the potsherds of the earth. Shall the clay say to him that
+fashioneth it, What makest thou? or thy work, He hath no hands? 45:10
+Woe unto him that saith unto his father, What begettest thou? or to
+the woman, What hast thou brought forth? 45:11 Thus saith the LORD,
+the Holy One of Israel, and his Maker, Ask me of things to come
+concerning my sons, and concerning the work of my hands command ye me.
+
+45:12 I have made the earth, and created man upon it: I, even my
+hands, have stretched out the heavens, and all their host have I
+commanded.
+
+45:13 I have raised him up in righteousness, and I will direct all his
+ways: he shall build my city, and he shall let go my captives, not for
+price nor reward, saith the LORD of hosts.
+
+45:14 Thus saith the LORD, The labour of Egypt, and merchandise of
+Ethiopia and of the Sabeans, men of stature, shall come over unto
+thee, and they shall be thine: they shall come after thee; in chains
+they shall come over, and they shall fall down unto thee, they shall
+make supplication unto thee, saying, Surely God is in thee; and there
+is none else, there is no God.
+
+45:15 Verily thou art a God that hidest thyself, O God of Israel, the
+Saviour.
+
+45:16 They shall be ashamed, and also confounded, all of them: they
+shall go to confusion together that are makers of idols.
+
+45:17 But Israel shall be saved in the LORD with an everlasting
+salvation: ye shall not be ashamed nor confounded world without end.
+
+45:18 For thus saith the LORD that created the heavens; God himself
+that formed the earth and made it; he hath established it, he created
+it not in vain, he formed it to be inhabited: I am the LORD; and there
+is none else.
+
+45:19 I have not spoken in secret, in a dark place of the earth: I
+said not unto the seed of Jacob, Seek ye me in vain: I the LORD speak
+righteousness, I declare things that are right.
+
+45:20 Assemble yourselves and come; draw near together, ye that are
+escaped of the nations: they have no knowledge that set up the wood of
+their graven image, and pray unto a god that cannot save.
+
+45:21 Tell ye, and bring them near; yea, let them take counsel
+together: who hath declared this from ancient time? who hath told it
+from that time? have not I the LORD? and there is no God else beside
+me; a just God and a Saviour; there is none beside me.
+
+45:22 Look unto me, and be ye saved, all the ends of the earth: for I
+am God, and there is none else.
+
+45:23 I have sworn by myself, the word is gone out of my mouth in
+righteousness, and shall not return, That unto me every knee shall
+bow, every tongue shall swear.
+
+45:24 Surely, shall one say, in the LORD have I righteousness and
+strength: even to him shall men come; and all that are incensed
+against him shall be ashamed.
+
+45:25 In the LORD shall all the seed of Israel be justified, and shall
+glory.
+
+46:1 Bel boweth down, Nebo stoopeth, their idols were upon the beasts,
+and upon the cattle: your carriages were heavy loaden; they are a
+burden to the weary beast.
+
+46:2 They stoop, they bow down together; they could not deliver the
+burden, but themselves are gone into captivity.
+
+46:3 Hearken unto me, O house of Jacob, and all the remnant of the
+house of Israel, which are borne by me from the belly, which are
+carried from the womb: 46:4 And even to your old age I am he; and even
+to hoar hairs will I carry you: I have made, and I will bear; even I
+will carry, and will deliver you.
+
+46:5 To whom will ye liken me, and make me equal, and compare me, that
+we may be like? 46:6 They lavish gold out of the bag, and weigh
+silver in the balance, and hire a goldsmith; and he maketh it a god:
+they fall down, yea, they worship.
+
+46:7 They bear him upon the shoulder, they carry him, and set him in
+his place, and he standeth; from his place shall he not remove: yea,
+one shall cry unto him, yet can he not answer, nor save him out of his
+trouble.
+
+46:8 Remember this, and shew yourselves men: bring it again to mind, O
+ye transgressors.
+
+46:9 Remember the former things of old: for I am God, and there is
+none else; I am God, and there is none like me, 46:10 Declaring the
+end from the beginning, and from ancient times the things that are not
+yet done, saying, My counsel shall stand, and I will do all my
+pleasure: 46:11 Calling a ravenous bird from the east, the man that
+executeth my counsel from a far country: yea, I have spoken it, I will
+also bring it to pass; I have purposed it, I will also do it.
+
+46:12 Hearken unto me, ye stouthearted, that are far from
+righteousness: 46:13 I bring near my righteousness; it shall not be
+far off, and my salvation shall not tarry: and I will place salvation
+in Zion for Israel my glory.
+
+47:1 Come down, and sit in the dust, O virgin daughter of Babylon, sit
+on the ground: there is no throne, O daughter of the Chaldeans: for
+thou shalt no more be called tender and delicate.
+
+47:2 Take the millstones, and grind meal: uncover thy locks, make bare
+the leg, uncover the thigh, pass over the rivers.
+
+47:3 Thy nakedness shall be uncovered, yea, thy shame shall be seen: I
+will take vengeance, and I will not meet thee as a man.
+
+47:4 As for our redeemer, the LORD of hosts is his name, the Holy One
+of Israel.
+
+47:5 Sit thou silent, and get thee into darkness, O daughter of the
+Chaldeans: for thou shalt no more be called, The lady of kingdoms.
+
+47:6 I was wroth with my people, I have polluted mine inheritance, and
+given them into thine hand: thou didst shew them no mercy; upon the
+ancient hast thou very heavily laid thy yoke.
+
+47:7 And thou saidst, I shall be a lady for ever: so that thou didst
+not lay these things to thy heart, neither didst remember the latter
+end of it.
+
+47:8 Therefore hear now this, thou that art given to pleasures, that
+dwellest carelessly, that sayest in thine heart, I am, and none else
+beside me; I shall not sit as a widow, neither shall I know the loss
+of children: 47:9 But these two things shall come to thee in a moment
+in one day, the loss of children, and widowhood: they shall come upon
+thee in their perfection for the multitude of thy sorceries, and for
+the great abundance of thine enchantments.
+
+47:10 For thou hast trusted in thy wickedness: thou hast said, None
+seeth me. Thy wisdom and thy knowledge, it hath perverted thee; and
+thou hast said in thine heart, I am, and none else beside me.
+
+47:11 Therefore shall evil come upon thee; thou shalt not know from
+whence it riseth: and mischief shall fall upon thee; thou shalt not be
+able to put it off: and desolation shall come upon thee suddenly,
+which thou shalt not know.
+
+47:12 Stand now with thine enchantments, and with the multitude of thy
+sorceries, wherein thou hast laboured from thy youth; if so be thou
+shalt be able to profit, if so be thou mayest prevail.
+
+47:13 Thou art wearied in the multitude of thy counsels. Let now the
+astrologers, the stargazers, the monthly prognosticators, stand up,
+and save thee from these things that shall come upon thee.
+
+47:14 Behold, they shall be as stubble; the fire shall burn them; they
+shall not deliver themselves from the power of the flame: there shall
+not be a coal to warm at, nor fire to sit before it.
+
+47:15 Thus shall they be unto thee with whom thou hast laboured, even
+thy merchants, from thy youth: they shall wander every one to his
+quarter; none shall save thee.
+
+48:1 Hear ye this, O house of Jacob, which are called by the name of
+Israel, and are come forth out of the waters of Judah, which swear by
+the name of the LORD, and make mention of the God of Israel, but not
+in truth, nor in righteousness.
+
+48:2 For they call themselves of the holy city, and stay themselves
+upon the God of Israel; The LORD of hosts is his name.
+
+48:3 I have declared the former things from the beginning; and they
+went forth out of my mouth, and I shewed them; I did them suddenly,
+and they came to pass.
+
+48:4 Because I knew that thou art obstinate, and thy neck is an iron
+sinew, and thy brow brass; 48:5 I have even from the beginning
+declared it to thee; before it came to pass I shewed it thee: lest
+thou shouldest say, Mine idol hath done them, and my graven image, and
+my molten image, hath commanded them.
+
+48:6 Thou hast heard, see all this; and will not ye declare it? I have
+shewed thee new things from this time, even hidden things, and thou
+didst not know them.
+
+48:7 They are created now, and not from the beginning; even before the
+day when thou heardest them not; lest thou shouldest say, Behold, I
+knew them.
+
+48:8 Yea, thou heardest not; yea, thou knewest not; yea, from that
+time that thine ear was not opened: for I knew that thou wouldest deal
+very treacherously, and wast called a transgressor from the womb.
+
+48:9 For my name's sake will I defer mine anger, and for my praise
+will I refrain for thee, that I cut thee not off.
+
+48:10 Behold, I have refined thee, but not with silver; I have chosen
+thee in the furnace of affliction.
+
+48:11 For mine own sake, even for mine own sake, will I do it: for how
+should my name be polluted? and I will not give my glory unto another.
+
+48:12 Hearken unto me, O Jacob and Israel, my called; I am he; I am
+the first, I also am the last.
+
+48:13 Mine hand also hath laid the foundation of the earth, and my
+right hand hath spanned the heavens: when I call unto them, they stand
+up together.
+
+48:14 All ye, assemble yourselves, and hear; which among them hath
+declared these things? The LORD hath loved him: he will do his
+pleasure on Babylon, and his arm shall be on the Chaldeans.
+
+48:15 I, even I, have spoken; yea, I have called him: I have brought
+him, and he shall make his way prosperous.
+
+48:16 Come ye near unto me, hear ye this; I have not spoken in secret
+from the beginning; from the time that it was, there am I: and now the
+Lord GOD, and his Spirit, hath sent me.
+
+48:17 Thus saith the LORD, thy Redeemer, the Holy One of Israel; I am
+the LORD thy God which teacheth thee to profit, which leadeth thee by
+the way that thou shouldest go.
+
+48:18 O that thou hadst hearkened to my commandments! then had thy
+peace been as a river, and thy righteousness as the waves of the sea:
+48:19 Thy seed also had been as the sand, and the offspring of thy
+bowels like the gravel thereof; his name should not have been cut off
+nor destroyed from before me.
+
+48:20 Go ye forth of Babylon, flee ye from the Chaldeans, with a voice
+of singing declare ye, tell this, utter it even to the end of the
+earth; say ye, The LORD hath redeemed his servant Jacob.
+
+48:21 And they thirsted not when he led them through the deserts: he
+caused the waters to flow out of the rock for them: he clave the rock
+also, and the waters gushed out.
+
+48:22 There is no peace, saith the LORD, unto the wicked.
+
+49:1 Listen, O isles, unto me; and hearken, ye people, from far; The
+LORD hath called me from the womb; from the bowels of my mother hath
+he made mention of my name.
+
+49:2 And he hath made my mouth like a sharp sword; in the shadow of
+his hand hath he hid me, and made me a polished shaft; in his quiver
+hath he hid me; 49:3 And said unto me, Thou art my servant, O Israel,
+in whom I will be glorified.
+
+49:4 Then I said, I have laboured in vain, I have spent my strength
+for nought, and in vain: yet surely my judgment is with the LORD, and
+my work with my God.
+
+49:5 And now, saith the LORD that formed me from the womb to be his
+servant, to bring Jacob again to him, Though Israel be not gathered,
+yet shall I be glorious in the eyes of the LORD, and my God shall be
+my strength.
+
+49:6 And he said, It is a light thing that thou shouldest be my
+servant to raise up the tribes of Jacob, and to restore the preserved
+of Israel: I will also give thee for a light to the Gentiles, that
+thou mayest be my salvation unto the end of the earth.
+
+49:7 Thus saith the LORD, the Redeemer of Israel, and his Holy One, to
+him whom man despiseth, to him whom the nation abhorreth, to a servant
+of rulers, Kings shall see and arise, princes also shall worship,
+because of the LORD that is faithful, and the Holy One of Israel, and
+he shall choose thee.
+
+49:8 Thus saith the LORD, In an acceptable time have I heard thee, and
+in a day of salvation have I helped thee: and I will preserve thee,
+and give thee for a covenant of the people, to establish the earth, to
+cause to inherit the desolate heritages; 49:9 That thou mayest say to
+the prisoners, Go forth; to them that are in darkness, Shew
+yourselves. They shall feed in the ways, and their pastures shall be
+in all high places.
+
+49:10 They shall not hunger nor thirst; neither shall the heat nor sun
+smite them: for he that hath mercy on them shall lead them, even by
+the springs of water shall he guide them.
+
+49:11 And I will make all my mountains a way, and my highways shall be
+exalted.
+
+49:12 Behold, these shall come from far: and, lo, these from the north
+and from the west; and these from the land of Sinim.
+
+49:13 Sing, O heavens; and be joyful, O earth; and break forth into
+singing, O mountains: for the LORD hath comforted his people, and will
+have mercy upon his afflicted.
+
+49:14 But Zion said, The LORD hath forsaken me, and my Lord hath
+forgotten me.
+
+49:15 Can a woman forget her sucking child, that she should not have
+compassion on the son of her womb? yea, they may forget, yet will I
+not forget thee.
+
+49:16 Behold, I have graven thee upon the palms of my hands; thy walls
+are continually before me.
+
+49:17 Thy children shall make haste; thy destroyers and they that made
+thee waste shall go forth of thee.
+
+49:18 Lift up thine eyes round about, and behold: all these gather
+themselves together, and come to thee. As I live, saith the LORD, thou
+shalt surely clothe thee with them all, as with an ornament, and bind
+them on thee, as a bride doeth.
+
+49:19 For thy waste and thy desolate places, and the land of thy
+destruction, shall even now be too narrow by reason of the
+inhabitants, and they that swallowed thee up shall be far away.
+
+49:20 The children which thou shalt have, after thou hast lost the
+other, shall say again in thine ears, The place is too strait for me:
+give place to me that I may dwell.
+
+49:21 Then shalt thou say in thine heart, Who hath begotten me these,
+seeing I have lost my children, and am desolate, a captive, and
+removing to and fro? and who hath brought up these? Behold, I was left
+alone; these, where had they been? 49:22 Thus saith the Lord GOD,
+Behold, I will lift up mine hand to the Gentiles, and set up my
+standard to the people: and they shall bring thy sons in their arms,
+and thy daughters shall be carried upon their shoulders.
+
+49:23 And kings shall be thy nursing fathers, and their queens thy
+nursing mothers: they shall bow down to thee with their face toward
+the earth, and lick up the dust of thy feet; and thou shalt know that
+I am the LORD: for they shall not be ashamed that wait for me.
+
+49:24 Shall the prey be taken from the mighty, or the lawful captive
+delivered? 49:25 But thus saith the LORD, Even the captives of the
+mighty shall be taken away, and the prey of the terrible shall be
+delivered: for I will contend with him that contendeth with thee, and
+I will save thy children.
+
+49:26 And I will feed them that oppress thee with their own flesh; and
+they shall be drunken with their own blood, as with sweet wine: and
+all flesh shall know that I the LORD am thy Saviour and thy Redeemer,
+the mighty One of Jacob.
+
+50:1 Thus saith the LORD, Where is the bill of your mother's
+divorcement, whom I have put away? or which of my creditors is it to
+whom I have sold you? Behold, for your iniquities have ye sold
+yourselves, and for your transgressions is your mother put away.
+
+50:2 Wherefore, when I came, was there no man? when I called, was
+there none to answer? Is my hand shortened at all, that it cannot
+redeem? or have I no power to deliver? behold, at my rebuke I dry up
+the sea, I make the rivers a wilderness: their fish stinketh, because
+there is no water, and dieth for thirst.
+
+50:3 I clothe the heavens with blackness, and I make sackcloth their
+covering.
+
+50:4 The Lord GOD hath given me the tongue of the learned, that I
+should know how to speak a word in season to him that is weary: he
+wakeneth morning by morning, he wakeneth mine ear to hear as the
+learned.
+
+50:5 The Lord GOD hath opened mine ear, and I was not rebellious,
+neither turned away back.
+
+50:6 I gave my back to the smiters, and my cheeks to them that plucked
+off the hair: I hid not my face from shame and spitting.
+
+50:7 For the Lord GOD will help me; therefore shall I not be
+confounded: therefore have I set my face like a flint, and I know that
+I shall not be ashamed.
+
+50:8 He is near that justifieth me; who will contend with me? let us
+stand together: who is mine adversary? let him come near to me.
+
+50:9 Behold, the Lord GOD will help me; who is he that shall condemn
+me? lo, they all shall wax old as a garment; the moth shall eat them
+up.
+
+50:10 Who is among you that feareth the LORD, that obeyeth the voice
+of his servant, that walketh in darkness, and hath no light? let him
+trust in the name of the LORD, and stay upon his God.
+
+50:11 Behold, all ye that kindle a fire, that compass yourselves about
+with sparks: walk in the light of your fire, and in the sparks that ye
+have kindled. This shall ye have of mine hand; ye shall lie down in
+sorrow.
+
+51:1 Hearken to me, ye that follow after righteousness, ye that seek
+the LORD: look unto the rock whence ye are hewn, and to the hole of
+the pit whence ye are digged.
+
+51:2 Look unto Abraham your father, and unto Sarah that bare you: for
+I called him alone, and blessed him, and increased him.
+
+51:3 For the LORD shall comfort Zion: he will comfort all her waste
+places; and he will make her wilderness like Eden, and her desert like
+the garden of the LORD; joy and gladness shall be found therein,
+thanksgiving, and the voice of melody.
+
+51:4 Hearken unto me, my people; and give ear unto me, O my nation:
+for a law shall proceed from me, and I will make my judgment to rest
+for a light of the people.
+
+51:5 My righteousness is near; my salvation is gone forth, and mine
+arms shall judge the people; the isles shall wait upon me, and on mine
+arm shall they trust.
+
+51:6 Lift up your eyes to the heavens, and look upon the earth
+beneath: for the heavens shall vanish away like smoke, and the earth
+shall wax old like a garment, and they that dwell therein shall die in
+like manner: but my salvation shall be for ever, and my righteousness
+shall not be abolished.
+
+51:7 Hearken unto me, ye that know righteousness, the people in whose
+heart is my law; fear ye not the reproach of men, neither be ye afraid
+of their revilings.
+
+51:8 For the moth shall eat them up like a garment, and the worm shall
+eat them like wool: but my righteousness shall be for ever, and my
+salvation from generation to generation.
+
+51:9 Awake, awake, put on strength, O arm of the LORD; awake, as in
+the ancient days, in the generations of old. Art thou not it that hath
+cut Rahab, and wounded the dragon? 51:10 Art thou not it which hath
+dried the sea, the waters of the great deep; that hath made the depths
+of the sea a way for the ransomed to pass over? 51:11 Therefore the
+redeemed of the LORD shall return, and come with singing unto Zion;
+and everlasting joy shall be upon their head: they shall obtain
+gladness and joy; and sorrow and mourning shall flee away.
+
+51:12 I, even I, am he that comforteth you: who art thou, that thou
+shouldest be afraid of a man that shall die, and of the son of man
+which shall be made as grass; 51:13 And forgettest the LORD thy maker,
+that hath stretched forth the heavens, and laid the foundations of the
+earth; and hast feared continually every day because of the fury of
+the oppressor, as if he were ready to destroy? and where is the fury
+of the oppressor? 51:14 The captive exile hasteneth that he may be
+loosed, and that he should not die in the pit, nor that his bread
+should fail.
+
+51:15 But I am the LORD thy God, that divided the sea, whose waves
+roared: The LORD of hosts is his name.
+
+51:16 And I have put my words in thy mouth, and I have covered thee in
+the shadow of mine hand, that I may plant the heavens, and lay the
+foundations of the earth, and say unto Zion, Thou art my people.
+
+51:17 Awake, awake, stand up, O Jerusalem, which hast drunk at the
+hand of the LORD the cup of his fury; thou hast drunken the dregs of
+the cup of trembling, and wrung them out.
+
+51:18 There is none to guide her among all the sons whom she hath
+brought forth; neither is there any that taketh her by the hand of all
+the sons that she hath brought up.
+
+51:19 These two things are come unto thee; who shall be sorry for
+thee? desolation, and destruction, and the famine, and the sword: by
+whom shall I comfort thee? 51:20 Thy sons have fainted, they lie at
+the head of all the streets, as a wild bull in a net: they are full of
+the fury of the LORD, the rebuke of thy God.
+
+51:21 Therefore hear now this, thou afflicted, and drunken, but not
+with wine: 51:22 Thus saith thy Lord the LORD, and thy God that
+pleadeth the cause of his people, Behold, I have taken out of thine
+hand the cup of trembling, even the dregs of the cup of my fury; thou
+shalt no more drink it again: 51:23 But I will put it into the hand of
+them that afflict thee; which have said to thy soul, Bow down, that we
+may go over: and thou hast laid thy body as the ground, and as the
+street, to them that went over.
+
+52:1 Awake, awake; put on thy strength, O Zion; put on thy beautiful
+garments, O Jerusalem, the holy city: for henceforth there shall no
+more come into thee the uncircumcised and the unclean.
+
+52:2 Shake thyself from the dust; arise, and sit down, O Jerusalem:
+loose thyself from the bands of thy neck, O captive daughter of Zion.
+
+52:3 For thus saith the LORD, Ye have sold yourselves for nought; and
+ye shall be redeemed without money.
+
+52:4 For thus saith the Lord GOD, My people went down aforetime into
+Egypt to sojourn there; and the Assyrian oppressed them without cause.
+
+52:5 Now therefore, what have I here, saith the LORD, that my people
+is taken away for nought? they that rule over them make them to howl,
+saith the LORD; and my name continually every day is blasphemed.
+
+52:6 Therefore my people shall know my name: therefore they shall know
+in that day that I am he that doth speak: behold, it is I.
+
+52:7 How beautiful upon the mountains are the feet of him that
+bringeth good tidings, that publisheth peace; that bringeth good
+tidings of good, that publisheth salvation; that saith unto Zion, Thy
+God reigneth! 52:8 Thy watchmen shall lift up the voice; with the
+voice together shall they sing: for they shall see eye to eye, when
+the LORD shall bring again Zion.
+
+52:9 Break forth into joy, sing together, ye waste places of
+Jerusalem: for the LORD hath comforted his people, he hath redeemed
+Jerusalem.
+
+52:10 The LORD hath made bare his holy arm in the eyes of all the
+nations; and all the ends of the earth shall see the salvation of our
+God.
+
+52:11 Depart ye, depart ye, go ye out from thence, touch no unclean
+thing; go ye out of the midst of her; be ye clean, that bear the
+vessels of the LORD.
+
+52:12 For ye shall not go out with haste, nor go by flight: for the
+LORD will go before you; and the God of Israel will be your rereward.
+
+52:13 Behold, my servant shall deal prudently, he shall be exalted and
+extolled, and be very high.
+
+52:14 As many were astonied at thee; his visage was so marred more
+than any man, and his form more than the sons of men: 52:15 So shall
+he sprinkle many nations; the kings shall shut their mouths at him:
+for that which had not been told them shall they see; and that which
+they had not heard shall they consider.
+
+53:1 Who hath believed our report? and to whom is the arm of the LORD
+revealed? 53:2 For he shall grow up before him as a tender plant, and
+as a root out of a dry ground: he hath no form nor comeliness; and
+when we shall see him, there is no beauty that we should desire him.
+
+53:3 He is despised and rejected of men; a man of sorrows, and
+acquainted with grief: and we hid as it were our faces from him; he
+was despised, and we esteemed him not.
+
+53:4 Surely he hath borne our griefs, and carried our sorrows: yet we
+did esteem him stricken, smitten of God, and afflicted.
+
+53:5 But he was wounded for our transgressions, he was bruised for our
+iniquities: the chastisement of our peace was upon him; and with his
+stripes we are healed.
+
+53:6 All we like sheep have gone astray; we have turned every one to
+his own way; and the LORD hath laid on him the iniquity of us all.
+
+53:7 He was oppressed, and he was afflicted, yet he opened not his
+mouth: he is brought as a lamb to the slaughter, and as a sheep before
+her shearers is dumb, so he openeth not his mouth.
+
+53:8 He was taken from prison and from judgment: and who shall declare
+his generation? for he was cut off out of the land of the living: for
+the transgression of my people was he stricken.
+
+53:9 And he made his grave with the wicked, and with the rich in his
+death; because he had done no violence, neither was any deceit in his
+mouth.
+
+53:10 Yet it pleased the LORD to bruise him; he hath put him to grief:
+when thou shalt make his soul an offering for sin, he shall see his
+seed, he shall prolong his days, and the pleasure of the LORD shall
+prosper in his hand.
+
+53:11 He shall see of the travail of his soul, and shall be satisfied:
+by his knowledge shall my righteous servant justify many; for he shall
+bear their iniquities.
+
+53:12 Therefore will I divide him a portion with the great, and he
+shall divide the spoil with the strong; because he hath poured out his
+soul unto death: and he was numbered with the transgressors; and he
+bare the sin of many, and made intercession for the transgressors.
+
+54:1 Sing, O barren, thou that didst not bear; break forth into
+singing, and cry aloud, thou that didst not travail with child: for
+more are the children of the desolate than the children of the married
+wife, saith the LORD.
+
+54:2 Enlarge the place of thy tent, and let them stretch forth the
+curtains of thine habitations: spare not, lengthen thy cords, and
+strengthen thy stakes; 54:3 For thou shalt break forth on the right
+hand and on the left; and thy seed shall inherit the Gentiles, and
+make the desolate cities to be inhabited.
+
+54:4 Fear not; for thou shalt not be ashamed: neither be thou
+confounded; for thou shalt not be put to shame: for thou shalt forget
+the shame of thy youth, and shalt not remember the reproach of thy
+widowhood any more.
+
+54:5 For thy Maker is thine husband; the LORD of hosts is his name;
+and thy Redeemer the Holy One of Israel; The God of the whole earth
+shall he be called.
+
+54:6 For the LORD hath called thee as a woman forsaken and grieved in
+spirit, and a wife of youth, when thou wast refused, saith thy God.
+
+54:7 For a small moment have I forsaken thee; but with great mercies
+will I gather thee.
+
+54:8 In a little wrath I hid my face from thee for a moment; but with
+everlasting kindness will I have mercy on thee, saith the LORD thy
+Redeemer.
+
+54:9 For this is as the waters of Noah unto me: for as I have sworn
+that the waters of Noah should no more go over the earth; so have I
+sworn that I would not be wroth with thee, nor rebuke thee.
+
+54:10 For the mountains shall depart, and the hills be removed; but my
+kindness shall not depart from thee, neither shall the covenant of my
+peace be removed, saith the LORD that hath mercy on thee.
+
+54:11 O thou afflicted, tossed with tempest, and not comforted,
+behold, I will lay thy stones with fair colours, and lay thy
+foundations with sapphires.
+
+54:12 And I will make thy windows of agates, and thy gates of
+carbuncles, and all thy borders of pleasant stones.
+
+54:13 And all thy children shall be taught of the LORD; and great
+shall be the peace of thy children.
+
+54:14 In righteousness shalt thou be established: thou shalt be far
+from oppression; for thou shalt not fear: and from terror; for it
+shall not come near thee.
+
+54:15 Behold, they shall surely gather together, but not by me:
+whosoever shall gather together against thee shall fall for thy sake.
+
+54:16 Behold, I have created the smith that bloweth the coals in the
+fire, and that bringeth forth an instrument for his work; and I have
+created the waster to destroy.
+
+54:17 No weapon that is formed against thee shall prosper; and every
+tongue that shall rise against thee in judgment thou shalt condemn.
+This is the heritage of the servants of the LORD, and their
+righteousness is of me, saith the LORD.
+
+55:1 Ho, every one that thirsteth, come ye to the waters, and he that
+hath no money; come ye, buy, and eat; yea, come, buy wine and milk
+without money and without price.
+
+55:2 Wherefore do ye spend money for that which is not bread? and your
+labour for that which satisfieth not? hearken diligently unto me, and
+eat ye that which is good, and let your soul delight itself in
+fatness.
+
+55:3 Incline your ear, and come unto me: hear, and your soul shall
+live; and I will make an everlasting covenant with you, even the sure
+mercies of David.
+
+55:4 Behold, I have given him for a witness to the people, a leader
+and commander to the people.
+
+55:5 Behold, thou shalt call a nation that thou knowest not, and
+nations that knew not thee shall run unto thee because of the LORD thy
+God, and for the Holy One of Israel; for he hath glorified thee.
+
+55:6 Seek ye the LORD while he may be found, call ye upon him while he
+is near: 55:7 Let the wicked forsake his way, and the unrighteous man
+his thoughts: and let him return unto the LORD, and he will have mercy
+upon him; and to our God, for he will abundantly pardon.
+
+55:8 For my thoughts are not your thoughts, neither are your ways my
+ways, saith the LORD.
+
+55:9 For as the heavens are higher than the earth, so are my ways
+higher than your ways, and my thoughts than your thoughts.
+
+55:10 For as the rain cometh down, and the snow from heaven, and
+returneth not thither, but watereth the earth, and maketh it bring
+forth and bud, that it may give seed to the sower, and bread to the
+eater: 55:11 So shall my word be that goeth forth out of my mouth: it
+shall not return unto me void, but it shall accomplish that which I
+please, and it shall prosper in the thing whereto I sent it.
+
+55:12 For ye shall go out with joy, and be led forth with peace: the
+mountains and the hills shall break forth before you into singing, and
+all the trees of the field shall clap their hands.
+
+55:13 Instead of the thorn shall come up the fir tree, and instead of
+the brier shall come up the myrtle tree: and it shall be to the LORD
+for a name, for an everlasting sign that shall not be cut off.
+
+56:1 Thus saith the LORD, Keep ye judgment, and do justice: for my
+salvation is near to come, and my righteousness to be revealed.
+
+56:2 Blessed is the man that doeth this, and the son of man that
+layeth hold on it; that keepeth the sabbath from polluting it, and
+keepeth his hand from doing any evil.
+
+56:3 Neither let the son of the stranger, that hath joined himself to
+the LORD, speak, saying, The LORD hath utterly separated me from his
+people: neither let the eunuch say, Behold, I am a dry tree.
+
+56:4 For thus saith the LORD unto the eunuchs that keep my sabbaths,
+and choose the things that please me, and take hold of my covenant;
+56:5 Even unto them will I give in mine house and within my walls a
+place and a name better than of sons and of daughters: I will give
+them an everlasting name, that shall not be cut off.
+
+56:6 Also the sons of the stranger, that join themselves to the LORD,
+to serve him, and to love the name of the LORD, to be his servants,
+every one that keepeth the sabbath from polluting it, and taketh hold
+of my covenant; 56:7 Even them will I bring to my holy mountain, and
+make them joyful in my house of prayer: their burnt offerings and
+their sacrifices shall be accepted upon mine altar; for mine house
+shall be called an house of prayer for all people.
+
+56:8 The Lord GOD, which gathereth the outcasts of Israel saith, Yet
+will I gather others to him, beside those that are gathered unto him.
+
+56:9 All ye beasts of the field, come to devour, yea, all ye beasts in
+the forest.
+
+56:10 His watchmen are blind: they are all ignorant, they are all dumb
+dogs, they cannot bark; sleeping, lying down, loving to slumber.
+
+56:11 Yea, they are greedy dogs which can never have enough, and they
+are shepherds that cannot understand: they all look to their own way,
+every one for his gain, from his quarter.
+
+56:12 Come ye, say they, I will fetch wine, and we will fill ourselves
+with strong drink; and to morrow shall be as this day, and much more
+abundant.
+
+57:1 The righteous perisheth, and no man layeth it to heart: and
+merciful men are taken away, none considering that the righteous is
+taken away from the evil to come.
+
+57:2 He shall enter into peace: they shall rest in their beds, each
+one walking in his uprightness.
+
+57:3 But draw near hither, ye sons of the sorceress, the seed of the
+adulterer and the whore.
+
+57:4 Against whom do ye sport yourselves? against whom make ye a wide
+mouth, and draw out the tongue? are ye not children of transgression,
+a seed of falsehood.
+
+57:5 Enflaming yourselves with idols under every green tree, slaying
+the children in the valleys under the clifts of the rocks? 57:6 Among
+the smooth stones of the stream is thy portion; they, they are thy
+lot: even to them hast thou poured a drink offering, thou hast offered
+a meat offering. Should I receive comfort in these? 57:7 Upon a lofty
+and high mountain hast thou set thy bed: even thither wentest thou up
+to offer sacrifice.
+
+57:8 Behind the doors also and the posts hast thou set up thy
+remembrance: for thou hast discovered thyself to another than me, and
+art gone up; thou hast enlarged thy bed, and made thee a covenant with
+them; thou lovedst their bed where thou sawest it.
+
+57:9 And thou wentest to the king with ointment, and didst increase
+thy perfumes, and didst send thy messengers far off, and didst debase
+thyself even unto hell.
+
+57:10 Thou art wearied in the greatness of thy way; yet saidst thou
+not, There is no hope: thou hast found the life of thine hand;
+therefore thou wast not grieved.
+
+57:11 And of whom hast thou been afraid or feared, that thou hast
+lied, and hast not remembered me, nor laid it to thy heart? have not I
+held my peace even of old, and thou fearest me not? 57:12 I will
+declare thy righteousness, and thy works; for they shall not profit
+thee.
+
+57:13 When thou criest, let thy companies deliver thee; but the wind
+shall carry them all away; vanity shall take them: but he that putteth
+his trust in me shall possess the land, and shall inherit my holy
+mountain; 57:14 And shall say, Cast ye up, cast ye up, prepare the
+way, take up the stumblingblock out of the way of my people.
+
+57:15 For thus saith the high and lofty One that inhabiteth eternity,
+whose name is Holy; I dwell in the high and holy place, with him also
+that is of a contrite and humble spirit, to revive the spirit of the
+humble, and to revive the heart of the contrite ones.
+
+57:16 For I will not contend for ever, neither will I be always wroth:
+for the spirit should fail before me, and the souls which I have made.
+
+57:17 For the iniquity of his covetousness was I wroth, and smote him:
+I hid me, and was wroth, and he went on frowardly in the way of his
+heart.
+
+57:18 I have seen his ways, and will heal him: I will lead him also,
+and restore comforts unto him and to his mourners.
+
+57:19 I create the fruit of the lips; Peace, peace to him that is far
+off, and to him that is near, saith the LORD; and I will heal him.
+
+57:20 But the wicked are like the troubled sea, when it cannot rest,
+whose waters cast up mire and dirt.
+
+57:21 There is no peace, saith my God, to the wicked.
+
+58:1 Cry aloud, spare not, lift up thy voice like a trumpet, and shew
+my people their transgression, and the house of Jacob their sins.
+
+58:2 Yet they seek me daily, and delight to know my ways, as a nation
+that did righteousness, and forsook not the ordinance of their God:
+they ask of me the ordinances of justice; they take delight in
+approaching to God.
+
+58:3 Wherefore have we fasted, say they, and thou seest not? wherefore
+have we afflicted our soul, and thou takest no knowledge? Behold, in
+the day of your fast ye find pleasure, and exact all your labours.
+
+58:4 Behold, ye fast for strife and debate, and to smite with the fist
+of wickedness: ye shall not fast as ye do this day, to make your voice
+to be heard on high.
+
+58:5 Is it such a fast that I have chosen? a day for a man to afflict
+his soul? is it to bow down his head as a bulrush, and to spread
+sackcloth and ashes under him? wilt thou call this a fast, and an
+acceptable day to the LORD? 58:6 Is not this the fast that I have
+chosen? to loose the bands of wickedness, to undo the heavy burdens,
+and to let the oppressed go free, and that ye break every yoke? 58:7
+Is it not to deal thy bread to the hungry, and that thou bring the
+poor that are cast out to thy house? when thou seest the naked, that
+thou cover him; and that thou hide not thyself from thine own flesh?
+58:8 Then shall thy light break forth as the morning, and thine health
+shall spring forth speedily: and thy righteousness shall go before
+thee; the glory of the LORD shall be thy rereward.
+
+58:9 Then shalt thou call, and the LORD shall answer; thou shalt cry,
+and he shall say, Here I am. If thou take away from the midst of thee
+the yoke, the putting forth of the finger, and speaking vanity; 58:10
+And if thou draw out thy soul to the hungry, and satisfy the afflicted
+soul; then shall thy light rise in obscurity, and thy darkness be as
+the noon day: 58:11 And the LORD shall guide thee continually, and
+satisfy thy soul in drought, and make fat thy bones: and thou shalt be
+like a watered garden, and like a spring of water, whose waters fail
+not.
+
+58:12 And they that shall be of thee shall build the old waste places:
+thou shalt raise up the foundations of many generations; and thou
+shalt be called, The repairer of the breach, The restorer of paths to
+dwell in.
+
+58:13 If thou turn away thy foot from the sabbath, from doing thy
+pleasure on my holy day; and call the sabbath a delight, the holy of
+the LORD, honourable; and shalt honour him, not doing thine own ways,
+nor finding thine own pleasure, nor speaking thine own words: 58:14
+Then shalt thou delight thyself in the LORD; and I will cause thee to
+ride upon the high places of the earth, and feed thee with the
+heritage of Jacob thy father: for the mouth of the LORD hath spoken
+it.
+
+59:1 Behold, the LORD's hand is not shortened, that it cannot save;
+neither his ear heavy, that it cannot hear: 59:2 But your iniquities
+have separated between you and your God, and your sins have hid his
+face from you, that he will not hear.
+
+59:3 For your hands are defiled with blood, and your fingers with
+iniquity; your lips have spoken lies, your tongue hath muttered
+perverseness.
+
+59:4 None calleth for justice, nor any pleadeth for truth: they trust
+in vanity, and speak lies; they conceive mischief, and bring forth
+iniquity.
+
+59:5 They hatch cockatrice' eggs, and weave the spider's web: he that
+eateth of their eggs dieth, and that which is crushed breaketh out
+into a viper.
+
+59:6 Their webs shall not become garments, neither shall they cover
+themselves with their works: their works are works of iniquity, and
+the act of violence is in their hands.
+
+59:7 Their feet run to evil, and they make haste to shed innocent
+blood: their thoughts are thoughts of iniquity; wasting and
+destruction are in their paths.
+
+59:8 The way of peace they know not; and there is no judgment in their
+goings: they have made them crooked paths: whosoever goeth therein
+shall not know peace.
+
+59:9 Therefore is judgment far from us, neither doth justice overtake
+us: we wait for light, but behold obscurity; for brightness, but we
+walk in darkness.
+
+59:10 We grope for the wall like the blind, and we grope as if we had
+no eyes: we stumble at noon day as in the night; we are in desolate
+places as dead men.
+
+59:11 We roar all like bears, and mourn sore like doves: we look for
+judgment, but there is none; for salvation, but it is far off from us.
+
+59:12 For our transgressions are multiplied before thee, and our sins
+testify against us: for our transgressions are with us; and as for our
+iniquities, we know them; 59:13 In transgressing and lying against the
+LORD, and departing away from our God, speaking oppression and revolt,
+conceiving and uttering from the heart words of falsehood.
+
+59:14 And judgment is turned away backward, and justice standeth afar
+off: for truth is fallen in the street, and equity cannot enter.
+
+59:15 Yea, truth faileth; and he that departeth from evil maketh
+himself a prey: and the LORD saw it, and it displeased him that there
+was no judgment.
+
+59:16 And he saw that there was no man, and wondered that there was no
+intercessor: therefore his arm brought salvation unto him; and his
+righteousness, it sustained him.
+
+59:17 For he put on righteousness as a breastplate, and an helmet of
+salvation upon his head; and he put on the garments of vengeance for
+clothing, and was clad with zeal as a cloak.
+
+59:18 According to their deeds, accordingly he will repay, fury to his
+adversaries, recompence to his enemies; to the islands he will repay
+recompence.
+
+59:19 So shall they fear the name of the LORD from the west, and his
+glory from the rising of the sun. When the enemy shall come in like a
+flood, the Spirit of the LORD shall lift up a standard against him.
+
+59:20 And the Redeemer shall come to Zion, and unto them that turn
+from transgression in Jacob, saith the LORD.
+
+59:21 As for me, this is my covenant with them, saith the LORD; My
+spirit that is upon thee, and my words which I have put in thy mouth,
+shall not depart out of thy mouth, nor out of the mouth of thy seed,
+nor out of the mouth of thy seed's seed, saith the LORD, from
+henceforth and for ever.
+
+60:1 Arise, shine; for thy light is come, and the glory of the LORD is
+risen upon thee.
+
+60:2 For, behold, the darkness shall cover the earth, and gross
+darkness the people: but the LORD shall arise upon thee, and his glory
+shall be seen upon thee.
+
+60:3 And the Gentiles shall come to thy light, and kings to the
+brightness of thy rising.
+
+60:4 Lift up thine eyes round about, and see: all they gather
+themselves together, they come to thee: thy sons shall come from far,
+and thy daughters shall be nursed at thy side.
+
+60:5 Then thou shalt see, and flow together, and thine heart shall
+fear, and be enlarged; because the abundance of the sea shall be
+converted unto thee, the forces of the Gentiles shall come unto thee.
+
+60:6 The multitude of camels shall cover thee, the dromedaries of
+Midian and Ephah; all they from Sheba shall come: they shall bring
+gold and incense; and they shall shew forth the praises of the LORD.
+
+60:7 All the flocks of Kedar shall be gathered together unto thee, the
+rams of Nebaioth shall minister unto thee: they shall come up with
+acceptance on mine altar, and I will glorify the house of my glory.
+
+60:8 Who are these that fly as a cloud, and as the doves to their
+windows? 60:9 Surely the isles shall wait for me, and the ships of
+Tarshish first, to bring thy sons from far, their silver and their
+gold with them, unto the name of the LORD thy God, and to the Holy One
+of Israel, because he hath glorified thee.
+
+60:10 And the sons of strangers shall build up thy walls, and their
+kings shall minister unto thee: for in my wrath I smote thee, but in
+my favour have I had mercy on thee.
+
+60:11 Therefore thy gates shall be open continually; they shall not be
+shut day nor night; that men may bring unto thee the forces of the
+Gentiles, and that their kings may be brought.
+
+60:12 For the nation and kingdom that will not serve thee shall
+perish; yea, those nations shall be utterly wasted.
+
+60:13 The glory of Lebanon shall come unto thee, the fir tree, the
+pine tree, and the box together, to beautify the place of my
+sanctuary; and I will make the place of my feet glorious.
+
+60:14 The sons also of them that afflicted thee shall come bending
+unto thee; and all they that despised thee shall bow themselves down
+at the soles of thy feet; and they shall call thee; The city of the
+LORD, The Zion of the Holy One of Israel.
+
+60:15 Whereas thou has been forsaken and hated, so that no man went
+through thee, I will make thee an eternal excellency, a joy of many
+generations.
+
+60:16 Thou shalt also suck the milk of the Gentiles, and shalt suck
+the breast of kings: and thou shalt know that I the LORD am thy
+Saviour and thy Redeemer, the mighty One of Jacob.
+
+60:17 For brass I will bring gold, and for iron I will bring silver,
+and for wood brass, and for stones iron: I will also make thy officers
+peace, and thine exactors righteousness.
+
+60:18 Violence shall no more be heard in thy land, wasting nor
+destruction within thy borders; but thou shalt call thy walls
+Salvation, and thy gates Praise.
+
+60:19 The sun shall be no more thy light by day; neither for
+brightness shall the moon give light unto thee: but the LORD shall be
+unto thee an everlasting light, and thy God thy glory.
+
+60:20 Thy sun shall no more go down; neither shall thy moon withdraw
+itself: for the LORD shall be thine everlasting light, and the days of
+thy mourning shall be ended.
+
+60:21 Thy people also shall be all righteous: they shall inherit the
+land for ever, the branch of my planting, the work of my hands, that I
+may be glorified.
+
+60:22 A little one shall become a thousand, and a small one a strong
+nation: I the LORD will hasten it in his time.
+
+61:1 The Spirit of the Lord GOD is upon me; because the LORD hath
+anointed me to preach good tidings unto the meek; he hath sent me to
+bind up the brokenhearted, to proclaim liberty to the captives, and
+the opening of the prison to them that are bound; 61:2 To proclaim the
+acceptable year of the LORD, and the day of vengeance of our God; to
+comfort all that mourn; 61:3 To appoint unto them that mourn in Zion,
+to give unto them beauty for ashes, the oil of joy for mourning, the
+garment of praise for the spirit of heaviness; that they might be
+called trees of righteousness, the planting of the LORD, that he might
+be glorified.
+
+61:4 And they shall build the old wastes, they shall raise up the
+former desolations, and they shall repair the waste cities, the
+desolations of many generations.
+
+61:5 And strangers shall stand and feed your flocks, and the sons of
+the alien shall be your plowmen and your vinedressers.
+
+61:6 But ye shall be named the Priests of the LORD: men shall call you
+the Ministers of our God: ye shall eat the riches of the Gentiles, and
+in their glory shall ye boast yourselves.
+
+61:7 For your shame ye shall have double; and for confusion they shall
+rejoice in their portion: therefore in their land they shall possess
+the double: everlasting joy shall be unto them.
+
+61:8 For I the LORD love judgment, I hate robbery for burnt offering;
+and I will direct their work in truth, and I will make an everlasting
+covenant with them.
+
+61:9 And their seed shall be known among the Gentiles, and their
+offspring among the people: all that see them shall acknowledge them,
+that they are the seed which the LORD hath blessed.
+
+61:10 I will greatly rejoice in the LORD, my soul shall be joyful in
+my God; for he hath clothed me with the garments of salvation, he hath
+covered me with the robe of righteousness, as a bridegroom decketh
+himself with ornaments, and as a bride adorneth herself with her
+jewels.
+
+61:11 For as the earth bringeth forth her bud, and as the garden
+causeth the things that are sown in it to spring forth; so the Lord
+GOD will cause righteousness and praise to spring forth before all the
+nations.
+
+62:1 For Zion's sake will I not hold my peace, and for Jerusalem's
+sake I will not rest, until the righteousness thereof go forth as
+brightness, and the salvation thereof as a lamp that burneth.
+
+62:2 And the Gentiles shall see thy righteousness, and all kings thy
+glory: and thou shalt be called by a new name, which the mouth of the
+LORD shall name.
+
+62:3 Thou shalt also be a crown of glory in the hand of the LORD, and
+a royal diadem in the hand of thy God.
+
+62:4 Thou shalt no more be termed Forsaken; neither shall thy land any
+more be termed Desolate: but thou shalt be called Hephzibah, and thy
+land Beulah: for the LORD delighteth in thee, and thy land shall be
+married.
+
+62:5 For as a young man marrieth a virgin, so shall thy sons marry
+thee: and as the bridegroom rejoiceth over the bride, so shall thy God
+rejoice over thee.
+
+62:6 I have set watchmen upon thy walls, O Jerusalem, which shall
+never hold their peace day nor night: ye that make mention of the
+LORD, keep not silence, 62:7 And give him no rest, till he establish,
+and till he make Jerusalem a praise in the earth.
+
+62:8 The LORD hath sworn by his right hand, and by the arm of his
+strength, Surely I will no more give thy corn to be meat for thine
+enemies; and the sons of the stranger shall not drink thy wine, for
+the which thou hast laboured: 62:9 But they that have gathered it
+shall eat it, and praise the LORD; and they that have brought it
+together shall drink it in the courts of my holiness.
+
+62:10 Go through, go through the gates; prepare ye the way of the
+people; cast up, cast up the highway; gather out the stones; lift up a
+standard for the people.
+
+62:11 Behold, the LORD hath proclaimed unto the end of the world, Say
+ye to the daughter of Zion, Behold, thy salvation cometh; behold, his
+reward is with him, and his work before him.
+
+62:12 And they shall call them, The holy people, The redeemed of the
+LORD: and thou shalt be called, Sought out, A city not forsaken.
+
+63:1 Who is this that cometh from Edom, with dyed garments from
+Bozrah? this that is glorious in his apparel, travelling in the
+greatness of his strength? I that speak in righteousness, mighty to
+save.
+
+63:2 Wherefore art thou red in thine apparel, and thy garments like
+him that treadeth in the winefat? 63:3 I have trodden the winepress
+alone; and of the people there was none with me: for I will tread them
+in mine anger, and trample them in my fury; and their blood shall be
+sprinkled upon my garments, and I will stain all my raiment.
+
+63:4 For the day of vengeance is in mine heart, and the year of my
+redeemed is come.
+
+63:5 And I looked, and there was none to help; and I wondered that
+there was none to uphold: therefore mine own arm brought salvation
+unto me; and my fury, it upheld me.
+
+63:6 And I will tread down the people in mine anger, and make them
+drunk in my fury, and I will bring down their strength to the earth.
+
+63:7 I will mention the lovingkindnesses of the LORD, and the praises
+of the LORD, according to all that the LORD hath bestowed on us, and
+the great goodness toward the house of Israel, which he hath bestowed
+on them according to his mercies, and according to the multitude of
+his lovingkindnesses.
+
+63:8 For he said, Surely they are my people, children that will not
+lie: so he was their Saviour.
+
+63:9 In all their affliction he was afflicted, and the angel of his
+presence saved them: in his love and in his pity he redeemed them; and
+he bare them, and carried them all the days of old.
+
+63:10 But they rebelled, and vexed his holy Spirit: therefore he was
+turned to be their enemy, and he fought against them.
+
+63:11 Then he remembered the days of old, Moses, and his people,
+saying, Where is he that brought them up out of the sea with the
+shepherd of his flock? where is he that put his holy Spirit within
+him? 63:12 That led them by the right hand of Moses with his glorious
+arm, dividing the water before them, to make himself an everlasting
+name? 63:13 That led them through the deep, as an horse in the
+wilderness, that they should not stumble? 63:14 As a beast goeth down
+into the valley, the Spirit of the LORD caused him to rest: so didst
+thou lead thy people, to make thyself a glorious name.
+
+63:15 Look down from heaven, and behold from the habitation of thy
+holiness and of thy glory: where is thy zeal and thy strength, the
+sounding of thy bowels and of thy mercies toward me? are they
+restrained? 63:16 Doubtless thou art our father, though Abraham be
+ignorant of us, and Israel acknowledge us not: thou, O LORD, art our
+father, our redeemer; thy name is from everlasting.
+
+63:17 O LORD, why hast thou made us to err from thy ways, and hardened
+our heart from thy fear? Return for thy servants' sake, the tribes of
+thine inheritance.
+
+63:18 The people of thy holiness have possessed it but a little while:
+our adversaries have trodden down thy sanctuary.
+
+63:19 We are thine: thou never barest rule over them; they were not
+called by thy name.
+
+64:1 Oh that thou wouldest rend the heavens, that thou wouldest come
+down, that the mountains might flow down at thy presence, 64:2 As when
+the melting fire burneth, the fire causeth the waters to boil, to make
+thy name known to thine adversaries, that the nations may tremble at
+thy presence! 64:3 When thou didst terrible things which we looked
+not for, thou camest down, the mountains flowed down at thy presence.
+
+64:4 For since the beginning of the world men have not heard, nor
+perceived by the ear, neither hath the eye seen, O God, beside thee,
+what he hath prepared for him that waiteth for him.
+
+64:5 Thou meetest him that rejoiceth and worketh righteousness, those
+that remember thee in thy ways: behold, thou art wroth; for we have
+sinned: in those is continuance, and we shall be saved.
+
+64:6 But we are all as an unclean thing, and all our righteousnesses
+are as filthy rags; and we all do fade as a leaf; and our iniquities,
+like the wind, have taken us away.
+
+64:7 And there is none that calleth upon thy name, that stirreth up
+himself to take hold of thee: for thou hast hid thy face from us, and
+hast consumed us, because of our iniquities.
+
+64:8 But now, O LORD, thou art our father; we are the clay, and thou
+our potter; and we all are the work of thy hand.
+
+64:9 Be not wroth very sore, O LORD, neither remember iniquity for
+ever: behold, see, we beseech thee, we are all thy people.
+
+64:10 Thy holy cities are a wilderness, Zion is a wilderness,
+Jerusalem a desolation.
+
+64:11 Our holy and our beautiful house, where our fathers praised
+thee, is burned up with fire: and all our pleasant things are laid
+waste.
+
+64:12 Wilt thou refrain thyself for these things, O LORD? wilt thou
+hold thy peace, and afflict us very sore? 65:1 I am sought of them
+that asked not for me; I am found of them that sought me not: I said,
+Behold me, behold me, unto a nation that was not called by my name.
+
+65:2 I have spread out my hands all the day unto a rebellious people,
+which walketh in a way that was not good, after their own thoughts;
+65:3 A people that provoketh me to anger continually to my face; that
+sacrificeth in gardens, and burneth incense upon altars of brick; 65:4
+Which remain among the graves, and lodge in the monuments, which eat
+swine's flesh, and broth of abominable things is in their vessels;
+65:5 Which say, Stand by thyself, come not near to me; for I am holier
+than thou. These are a smoke in my nose, a fire that burneth all the
+day.
+
+65:6 Behold, it is written before me: I will not keep silence, but
+will recompense, even recompense into their bosom, 65:7 Your
+iniquities, and the iniquities of your fathers together, saith the
+LORD, which have burned incense upon the mountains, and blasphemed me
+upon the hills: therefore will I measure their former work into their
+bosom.
+
+65:8 Thus saith the LORD, As the new wine is found in the cluster, and
+one saith, Destroy it not; for a blessing is in it: so will I do for
+my servants' sakes, that I may not destroy them all.
+
+65:9 And I will bring forth a seed out of Jacob, and out of Judah an
+inheritor of my mountains: and mine elect shall inherit it, and my
+servants shall dwell there.
+
+65:10 And Sharon shall be a fold of flocks, and the valley of Achor a
+place for the herds to lie down in, for my people that have sought me.
+
+65:11 But ye are they that forsake the LORD, that forget my holy
+mountain, that prepare a table for that troop, and that furnish the
+drink offering unto that number.
+
+65:12 Therefore will I number you to the sword, and ye shall all bow
+down to the slaughter: because when I called, ye did not answer; when
+I spake, ye did not hear; but did evil before mine eyes, and did
+choose that wherein I delighted not.
+
+65:13 Therefore thus saith the Lord GOD, Behold, my servants shall
+eat, but ye shall be hungry: behold, my servants shall drink, but ye
+shall be thirsty: behold, my servants shall rejoice, but ye shall be
+ashamed: 65:14 Behold, my servants shall sing for joy of heart, but ye
+shall cry for sorrow of heart, and shall howl for vexation of spirit.
+
+65:15 And ye shall leave your name for a curse unto my chosen: for the
+Lord GOD shall slay thee, and call his servants by another name: 65:16
+That he who blesseth himself in the earth shall bless himself in the
+God of truth; and he that sweareth in the earth shall swear by the God
+of truth; because the former troubles are forgotten, and because they
+are hid from mine eyes.
+
+65:17 For, behold, I create new heavens and a new earth: and the
+former shall not be remembered, nor come into mind.
+
+65:18 But be ye glad and rejoice for ever in that which I create: for,
+behold, I create Jerusalem a rejoicing, and her people a joy.
+
+65:19 And I will rejoice in Jerusalem, and joy in my people: and the
+voice of weeping shall be no more heard in her, nor the voice of
+crying.
+
+65:20 There shall be no more thence an infant of days, nor an old man
+that hath not filled his days: for the child shall die an hundred
+years old; but the sinner being an hundred years old shall be
+accursed.
+
+65:21 And they shall build houses, and inhabit them; and they shall
+plant vineyards, and eat the fruit of them.
+
+65:22 They shall not build, and another inhabit; they shall not plant,
+and another eat: for as the days of a tree are the days of my people,
+and mine elect shall long enjoy the work of their hands.
+
+65:23 They shall not labour in vain, nor bring forth for trouble; for
+they are the seed of the blessed of the LORD, and their offspring with
+them.
+
+65:24 And it shall come to pass, that before they call, I will answer;
+and while they are yet speaking, I will hear.
+
+65:25 The wolf and the lamb shall feed together, and the lion shall
+eat straw like the bullock: and dust shall be the serpent's meat. They
+shall not hurt nor destroy in all my holy mountain, saith the LORD.
+
+66:1 Thus saith the LORD, The heaven is my throne, and the earth is my
+footstool: where is the house that ye build unto me? and where is the
+place of my rest? 66:2 For all those things hath mine hand made, and
+all those things have been, saith the LORD: but to this man will I
+look, even to him that is poor and of a contrite spirit, and trembleth
+at my word.
+
+66:3 He that killeth an ox is as if he slew a man; he that sacrificeth
+a lamb, as if he cut off a dog's neck; he that offereth an oblation,
+as if he offered swine's blood; he that burneth incense, as if he
+blessed an idol.
+
+Yea, they have chosen their own ways, and their soul delighteth in
+their abominations.
+
+66:4 I also will choose their delusions, and will bring their fears
+upon them; because when I called, none did answer; when I spake, they
+did not hear: but they did evil before mine eyes, and chose that in
+which I delighted not.
+
+66:5 Hear the word of the LORD, ye that tremble at his word; Your
+brethren that hated you, that cast you out for my name's sake, said,
+Let the LORD be glorified: but he shall appear to your joy, and they
+shall be ashamed.
+
+66:6 A voice of noise from the city, a voice from the temple, a voice
+of the LORD that rendereth recompence to his enemies.
+
+66:7 Before she travailed, she brought forth; before her pain came,
+she was delivered of a man child.
+
+66:8 Who hath heard such a thing? who hath seen such things? Shall the
+earth be made to bring forth in one day? or shall a nation be born at
+once? for as soon as Zion travailed, she brought forth her children.
+
+66:9 Shall I bring to the birth, and not cause to bring forth? saith
+the LORD: shall I cause to bring forth, and shut the womb? saith thy
+God.
+
+66:10 Rejoice ye with Jerusalem, and be glad with her, all ye that
+love her: rejoice for joy with her, all ye that mourn for her: 66:11
+That ye may suck, and be satisfied with the breasts of her
+consolations; that ye may milk out, and be delighted with the
+abundance of her glory.
+
+66:12 For thus saith the LORD, Behold, I will extend peace to her like
+a river, and the glory of the Gentiles like a flowing stream: then
+shall ye suck, ye shall be borne upon her sides, and be dandled upon
+her knees.
+
+66:13 As one whom his mother comforteth, so will I comfort you; and ye
+shall be comforted in Jerusalem.
+
+66:14 And when ye see this, your heart shall rejoice, and your bones
+shall flourish like an herb: and the hand of the LORD shall be known
+toward his servants, and his indignation toward his enemies.
+
+66:15 For, behold, the LORD will come with fire, and with his chariots
+like a whirlwind, to render his anger with fury, and his rebuke with
+flames of fire.
+
+66:16 For by fire and by his sword will the LORD plead with all flesh:
+and the slain of the LORD shall be many.
+
+66:17 They that sanctify themselves, and purify themselves in the
+gardens behind one tree in the midst, eating swine's flesh, and the
+abomination, and the mouse, shall be consumed together, saith the
+LORD.
+
+66:18 For I know their works and their thoughts: it shall come, that I
+will gather all nations and tongues; and they shall come, and see my
+glory.
+
+66:19 And I will set a sign among them, and I will send those that
+escape of them unto the nations, to Tarshish, Pul, and Lud, that draw
+the bow, to Tubal, and Javan, to the isles afar off, that have not
+heard my fame, neither have seen my glory; and they shall declare my
+glory among the Gentiles.
+
+66:20 And they shall bring all your brethren for an offering unto the
+LORD out of all nations upon horses, and in chariots, and in litters,
+and upon mules, and upon swift beasts, to my holy mountain Jerusalem,
+saith the LORD, as the children of Israel bring an offering in a clean
+vessel into the house of the LORD.
+
+66:21 And I will also take of them for priests and for Levites, saith
+the LORD.
+
+66:22 For as the new heavens and the new earth, which I will make,
+shall remain before me, saith the LORD, so shall your seed and your
+name remain.
+
+66:23 And it shall come to pass, that from one new moon to another,
+and from one sabbath to another, shall all flesh come to worship
+before me, saith the LORD.
+
+66:24 And they shall go forth, and look upon the carcases of the men
+that have transgressed against me: for their worm shall not die,
+neither shall their fire be quenched; and they shall be an abhorring
+unto all flesh.
+
+
+
+
+The Book of the Prophet Jeremiah
+
+
+1:1 The words of Jeremiah the son of Hilkiah, of the priests that
+were in Anathoth in the land of Benjamin: 1:2 To whom the word of the
+LORD came in the days of Josiah the son of Amon king of Judah, in the
+thirteenth year of his reign.
+
+1:3 It came also in the days of Jehoiakim the son of Josiah king of
+Judah, unto the end of the eleventh year of Zedekiah the son of Josiah
+king of Judah, unto the carrying away of Jerusalem captive in the
+fifth month.
+
+1:4 Then the word of the LORD came unto me, saying, 1:5 Before I
+formed thee in the belly I knew thee; and before thou camest forth out
+of the womb I sanctified thee, and I ordained thee a prophet unto the
+nations.
+
+1:6 Then said I, Ah, Lord GOD! behold, I cannot speak: for I am a
+child.
+
+1:7 But the LORD said unto me, Say not, I am a child: for thou shalt
+go to all that I shall send thee, and whatsoever I command thee thou
+shalt speak.
+
+1:8 Be not afraid of their faces: for I am with thee to deliver thee,
+saith the LORD.
+
+1:9 Then the LORD put forth his hand, and touched my mouth. And the
+LORD said unto me, Behold, I have put my words in thy mouth.
+
+1:10 See, I have this day set thee over the nations and over the
+kingdoms, to root out, and to pull down, and to destroy, and to throw
+down, to build, and to plant.
+
+1:11 Moreover the word of the LORD came unto me, saying, Jeremiah,
+what seest thou? And I said, I see a rod of an almond tree.
+
+1:12 Then said the LORD unto me, Thou hast well seen: for I will
+hasten my word to perform it.
+
+1:13 And the word of the LORD came unto me the second time, saying,
+What seest thou? And I said, I see a seething pot; and the face
+thereof is toward the north.
+
+1:14 Then the LORD said unto me, Out of the north an evil shall break
+forth upon all the inhabitants of the land.
+
+1:15 For, lo, I will call all the families of the kingdoms of the
+north, saith the LORD; and they shall come, and they shall set every
+one his throne at the entering of the gates of Jerusalem, and against
+all the walls thereof round about, and against all the cities of
+Judah.
+
+1:16 And I will utter my judgments against them touching all their
+wickedness, who have forsaken me, and have burned incense unto other
+gods, and worshipped the works of their own hands.
+
+1:17 Thou therefore gird up thy loins, and arise, and speak unto them
+all that I command thee: be not dismayed at their faces, lest I
+confound thee before them.
+
+1:18 For, behold, I have made thee this day a defenced city, and an
+iron pillar, and brasen walls against the whole land, against the
+kings of Judah, against the princes thereof, against the priests
+thereof, and against the people of the land.
+
+1:19 And they shall fight against thee; but they shall not prevail
+against thee; for I am with thee, saith the LORD, to deliver thee.
+
+2:1 Moreover the word of the LORD came to me, saying, 2:2 Go and cry
+in the ears of Jerusalem, saying, Thus saith the LORD; I remember
+thee, the kindness of thy youth, the love of thine espousals, when
+thou wentest after me in the wilderness, in a land that was not sown.
+
+2:3 Israel was holiness unto the LORD, and the firstfruits of his
+increase: all that devour him shall offend; evil shall come upon them,
+saith the LORD.
+
+2:4 Hear ye the word of the LORD, O house of Jacob, and all the
+families of the house of Israel: 2:5 Thus saith the LORD, What
+iniquity have your fathers found in me, that they are gone far from
+me, and have walked after vanity, and are become vain? 2:6 Neither
+said they, Where is the LORD that brought us up out of the land of
+Egypt, that led us through the wilderness, through a land of deserts
+and of pits, through a land of drought, and of the shadow of death,
+through a land that no man passed through, and where no man dwelt?
+2:7 And I brought you into a plentiful country, to eat the fruit
+thereof and the goodness thereof; but when ye entered, ye defiled my
+land, and made mine heritage an abomination.
+
+2:8 The priests said not, Where is the LORD? and they that handle the
+law knew me not: the pastors also transgressed against me, and the
+prophets prophesied by Baal, and walked after things that do not
+profit.
+
+2:9 Wherefore I will yet plead with you, saith the LORD, and with your
+children's children will I plead.
+
+2:10 For pass over the isles of Chittim, and see; and send unto Kedar,
+and consider diligently, and see if there be such a thing.
+
+2:11 Hath a nation changed their gods, which are yet no gods? but my
+people have changed their glory for that which doth not profit.
+
+2:12 Be astonished, O ye heavens, at this, and be horribly afraid, be
+ye very desolate, saith the LORD.
+
+2:13 For my people have committed two evils; they have forsaken me the
+fountain of living waters, and hewed them out cisterns, broken
+cisterns, that can hold no water.
+
+2:14 Is Israel a servant? is he a homeborn slave? why is he spoiled?
+2:15 The young lions roared upon him, and yelled, and they made his
+land waste: his cities are burned without inhabitant.
+
+2:16 Also the children of Noph and Tahapanes have broken the crown of
+thy head.
+
+2:17 Hast thou not procured this unto thyself, in that thou hast
+forsaken the LORD thy God, when he led thee by the way? 2:18 And now
+what hast thou to do in the way of Egypt, to drink the waters of
+Sihor? or what hast thou to do in the way of Assyria, to drink the
+waters of the river? 2:19 Thine own wickedness shall correct thee,
+and thy backslidings shall reprove thee: know therefore and see that
+it is an evil thing and bitter, that thou hast forsaken the LORD thy
+God, and that my fear is not in thee, saith the Lord GOD of hosts.
+
+2:20 For of old time I have broken thy yoke, and burst thy bands; and
+thou saidst, I will not transgress; when upon every high hill and
+under every green tree thou wanderest, playing the harlot.
+
+2:21 Yet I had planted thee a noble vine, wholly a right seed: how
+then art thou turned into the degenerate plant of a strange vine unto
+me? 2:22 For though thou wash thee with nitre, and take thee much
+soap, yet thine iniquity is marked before me, saith the Lord GOD.
+
+2:23 How canst thou say, I am not polluted, I have not gone after
+Baalim? see thy way in the valley, know what thou hast done: thou art
+a swift dromedary traversing her ways; 2:24 A wild ass used to the
+wilderness, that snuffeth up the wind at her pleasure; in her occasion
+who can turn her away? all they that seek her will not weary
+themselves; in her month they shall find her.
+
+2:25 Withhold thy foot from being unshod, and thy throat from thirst:
+but thou saidst, There is no hope: no; for I have loved strangers, and
+after them will I go.
+
+2:26 As the thief is ashamed when he is found, so is the house of
+Israel ashamed; they, their kings, their princes, and their priests,
+and their prophets.
+
+2:27 Saying to a stock, Thou art my father; and to a stone, Thou hast
+brought me forth: for they have turned their back unto me, and not
+their face: but in the time of their trouble they will say, Arise, and
+save us.
+
+2:28 But where are thy gods that thou hast made thee? let them arise,
+if they can save thee in the time of thy trouble: for according to the
+number of thy cities are thy gods, O Judah.
+
+2:29 Wherefore will ye plead with me? ye all have transgressed against
+me, saith the LORD.
+
+2:30 In vain have I smitten your children; they received no
+correction: your own sword hath devoured your prophets, like a
+destroying lion.
+
+2:31 O generation, see ye the word of the LORD. Have I been a
+wilderness unto Israel? a land of darkness? wherefore say my people,
+We are lords; we will come no more unto thee? 2:32 Can a maid forget
+her ornaments, or a bride her attire? yet my people have forgotten me
+days without number.
+
+2:33 Why trimmest thou thy way to seek love? therefore hast thou also
+taught the wicked ones thy ways.
+
+2:34 Also in thy skirts is found the blood of the souls of the poor
+innocents: I have not found it by secret search, but upon all these.
+
+2:35 Yet thou sayest, Because I am innocent, surely his anger shall
+turn from me. Behold, I will plead with thee, because thou sayest, I
+have not sinned.
+
+2:36 Why gaddest thou about so much to change thy way? thou also shalt
+be ashamed of Egypt, as thou wast ashamed of Assyria.
+
+2:37 Yea, thou shalt go forth from him, and thine hands upon thine
+head: for the LORD hath rejected thy confidences, and thou shalt not
+prosper in them.
+
+3:1 They say, If a man put away his wife, and she go from him, and
+become another man's, shall he return unto her again? shall not that
+land be greatly polluted? but thou hast played the harlot with many
+lovers; yet return again to me, saith the LORD.
+
+3:2 Lift up thine eyes unto the high places, and see where thou hast
+not been lien with. In the ways hast thou sat for them, as the Arabian
+in the wilderness; and thou hast polluted the land with thy whoredoms
+and with thy wickedness.
+
+3:3 Therefore the showers have been withholden, and there hath been no
+latter rain; and thou hadst a whore's forehead, thou refusedst to be
+ashamed.
+
+3:4 Wilt thou not from this time cry unto me, My father, thou art the
+guide of my youth? 3:5 Will he reserve his anger for ever? will he
+keep it to the end? Behold, thou hast spoken and done evil things as
+thou couldest.
+
+3:6 The LORD said also unto me in the days of Josiah the king, Hast
+thou seen that which backsliding Israel hath done? she is gone up upon
+every high mountain and under every green tree, and there hath played
+the harlot.
+
+3:7 And I said after she had done all these things, Turn thou unto me.
+But she returned not. And her treacherous sister Judah saw it.
+
+3:8 And I saw, when for all the causes whereby backsliding Israel
+committed adultery I had put her away, and given her a bill of
+divorce; yet her treacherous sister Judah feared not, but went and
+played the harlot also.
+
+3:9 And it came to pass through the lightness of her whoredom, that
+she defiled the land, and committed adultery with stones and with
+stocks.
+
+3:10 And yet for all this her treacherous sister Judah hath not turned
+unto me with her whole heart, but feignedly, saith the LORD.
+
+3:11 And the LORD said unto me, The backsliding Israel hath justified
+herself more than treacherous Judah.
+
+3:12 Go and proclaim these words toward the north, and say, Return,
+thou backsliding Israel, saith the LORD; and I will not cause mine
+anger to fall upon you: for I am merciful, saith the LORD, and I will
+not keep anger for ever.
+
+3:13 Only acknowledge thine iniquity, that thou hast transgressed
+against the LORD thy God, and hast scattered thy ways to the strangers
+under every green tree, and ye have not obeyed my voice, saith the
+LORD.
+
+3:14 Turn, O backsliding children, saith the LORD; for I am married
+unto you: and I will take you one of a city, and two of a family, and
+I will bring you to Zion: 3:15 And I will give you pastors according
+to mine heart, which shall feed you with knowledge and understanding.
+
+3:16 And it shall come to pass, when ye be multiplied and increased in
+the land, in those days, saith the LORD, they shall say no more, The
+ark of the covenant of the LORD: neither shall it come to mind:
+neither shall they remember it; neither shall they visit it; neither
+shall that be done any more.
+
+3:17 At that time they shall call Jerusalem the throne of the LORD;
+and all the nations shall be gathered unto it, to the name of the
+LORD, to Jerusalem: neither shall they walk any more after the
+imagination of their evil heart.
+
+3:18 In those days the house of Judah shall walk with the house of
+Israel, and they shall come together out of the land of the north to
+the land that I have given for an inheritance unto your fathers.
+
+3:19 But I said, How shall I put thee among the children, and give
+thee a pleasant land, a goodly heritage of the hosts of nations? and I
+said, Thou shalt call me, My father; and shalt not turn away from me.
+
+3:20 Surely as a wife treacherously departeth from her husband, so
+have ye dealt treacherously with me, O house of Israel, saith the
+LORD.
+
+3:21 A voice was heard upon the high places, weeping and supplications
+of the children of Israel: for they have perverted their way, and they
+have forgotten the LORD their God.
+
+3:22 Return, ye backsliding children, and I will heal your
+backslidings.
+
+Behold, we come unto thee; for thou art the LORD our God.
+
+3:23 Truly in vain is salvation hoped for from the hills, and from the
+multitude of mountains: truly in the LORD our God is the salvation of
+Israel.
+
+3:24 For shame hath devoured the labour of our fathers from our youth;
+their flocks and their herds, their sons and their daughters.
+
+3:25 We lie down in our shame, and our confusion covereth us: for we
+have sinned against the LORD our God, we and our fathers, from our
+youth even unto this day, and have not obeyed the voice of the LORD
+our God.
+
+4:1 If thou wilt return, O Israel, saith the LORD, return unto me: and
+if thou wilt put away thine abominations out of my sight, then shalt
+thou not remove.
+
+4:2 And thou shalt swear, The LORD liveth, in truth, in judgment, and
+in righteousness; and the nations shall bless themselves in him, and
+in him shall they glory.
+
+4:3 For thus saith the LORD to the men of Judah and Jerusalem, Break
+up your fallow ground, and sow not among thorns.
+
+4:4 Circumcise yourselves to the LORD, and take away the foreskins of
+your heart, ye men of Judah and inhabitants of Jerusalem: lest my fury
+come forth like fire, and burn that none can quench it, because of the
+evil of your doings.
+
+4:5 Declare ye in Judah, and publish in Jerusalem; and say, Blow ye
+the trumpet in the land: cry, gather together, and say, Assemble
+yourselves, and let us go into the defenced cities.
+
+4:6 Set up the standard toward Zion: retire, stay not: for I will
+bring evil from the north, and a great destruction.
+
+4:7 The lion is come up from his thicket, and the destroyer of the
+Gentiles is on his way; he is gone forth from his place to make thy
+land desolate; and thy cities shall be laid waste, without an
+inhabitant.
+
+4:8 For this gird you with sackcloth, lament and howl: for the fierce
+anger of the LORD is not turned back from us.
+
+4:9 And it shall come to pass at that day, saith the LORD, that the
+heart of the king shall perish, and the heart of the princes; and the
+priests shall be astonished, and the prophets shall wonder.
+
+4:10 Then said I, Ah, Lord GOD! surely thou hast greatly deceived this
+people and Jerusalem, saying, Ye shall have peace; whereas the sword
+reacheth unto the soul.
+
+4:11 At that time shall it be said to this people and to Jerusalem, A
+dry wind of the high places in the wilderness toward the daughter of
+my people, not to fan, nor to cleanse, 4:12 Even a full wind from
+those places shall come unto me: now also will I give sentence against
+them.
+
+4:13 Behold, he shall come up as clouds, and his chariots shall be as
+a whirlwind: his horses are swifter than eagles. Woe unto us! for we
+are spoiled.
+
+4:14 O Jerusalem, wash thine heart from wickedness, that thou mayest
+be saved. How long shall thy vain thoughts lodge within thee? 4:15
+For a voice declareth from Dan, and publisheth affliction from mount
+Ephraim.
+
+4:16 Make ye mention to the nations; behold, publish against
+Jerusalem, that watchers come from a far country, and give out their
+voice against the cities of Judah.
+
+4:17 As keepers of a field, are they against her round about; because
+she hath been rebellious against me, saith the LORD.
+
+4:18 Thy way and thy doings have procured these things unto thee; this
+is thy wickedness, because it is bitter, because it reacheth unto
+thine heart.
+
+4:19 My bowels, my bowels! I am pained at my very heart; my heart
+maketh a noise in me; I cannot hold my peace, because thou hast heard,
+O my soul, the sound of the trumpet, the alarm of war.
+
+4:20 Destruction upon destruction is cried; for the whole land is
+spoiled: suddenly are my tents spoiled, and my curtains in a moment.
+
+4:21 How long shall I see the standard, and hear the sound of the
+trumpet? 4:22 For my people is foolish, they have not known me; they
+are sottish children, and they have none understanding: they are wise
+to do evil, but to do good they have no knowledge.
+
+4:23 I beheld the earth, and, lo, it was without form, and void; and
+the heavens, and they had no light.
+
+4:24 I beheld the mountains, and, lo, they trembled, and all the hills
+moved lightly.
+
+4:25 I beheld, and, lo, there was no man, and all the birds of the
+heavens were fled.
+
+4:26 I beheld, and, lo, the fruitful place was a wilderness, and all
+the cities thereof were broken down at the presence of the LORD, and
+by his fierce anger.
+
+4:27 For thus hath the LORD said, The whole land shall be desolate;
+yet will I not make a full end.
+
+4:28 For this shall the earth mourn, and the heavens above be black;
+because I have spoken it, I have purposed it, and will not repent,
+neither will I turn back from it.
+
+4:29 The whole city shall flee for the noise of the horsemen and
+bowmen; they shall go into thickets, and climb up upon the rocks:
+every city shall be forsaken, and not a man dwell therein.
+
+4:30 And when thou art spoiled, what wilt thou do? Though thou
+clothest thyself with crimson, though thou deckest thee with ornaments
+of gold, though thou rentest thy face with painting, in vain shalt
+thou make thyself fair; thy lovers will despise thee, they will seek
+thy life.
+
+4:31 For I have heard a voice as of a woman in travail, and the
+anguish as of her that bringeth forth her first child, the voice of
+the daughter of Zion, that bewaileth herself, that spreadeth her
+hands, saying, Woe is me now! for my soul is wearied because of
+murderers.
+
+5:1 Run ye to and fro through the streets of Jerusalem, and see now,
+and know, and seek in the broad places thereof, if ye can find a man,
+if there be any that executeth judgment, that seeketh the truth; and I
+will pardon it.
+
+5:2 And though they say, The LORD liveth; surely they swear falsely.
+
+5:3 O LORD, are not thine eyes upon the truth? thou hast stricken
+them, but they have not grieved; thou hast consumed them, but they
+have refused to receive correction: they have made their faces harder
+than a rock; they have refused to return.
+
+5:4 Therefore I said, Surely these are poor; they are foolish: for
+they know not the way of the LORD, nor the judgment of their God.
+
+5:5 I will get me unto the great men, and will speak unto them; for
+they have known the way of the LORD, and the judgment of their God:
+but these have altogether broken the yoke, and burst the bonds.
+
+5:6 Wherefore a lion out of the forest shall slay them, and a wolf of
+the evenings shall spoil them, a leopard shall watch over their
+cities: every one that goeth out thence shall be torn in pieces:
+because their transgressions are many, and their backslidings are
+increased.
+
+5:7 How shall I pardon thee for this? thy children have forsaken me,
+and sworn by them that are no gods: when I had fed them to the full,
+they then committed adultery, and assembled themselves by troops in
+the harlots' houses.
+
+5:8 They were as fed horses in the morning: every one neighed after
+his neighbour's wife.
+
+5:9 Shall I not visit for these things? saith the LORD: and shall not
+my soul be avenged on such a nation as this? 5:10 Go ye up upon her
+walls, and destroy; but make not a full end: take away her
+battlements; for they are not the LORD's.
+
+5:11 For the house of Israel and the house of Judah have dealt very
+treacherously against me, saith the LORD.
+
+5:12 They have belied the LORD, and said, It is not he; neither shall
+evil come upon us; neither shall we see sword nor famine: 5:13 And the
+prophets shall become wind, and the word is not in them: thus shall it
+be done unto them.
+
+5:14 Wherefore thus saith the LORD God of hosts, Because ye speak this
+word, behold, I will make my words in thy mouth fire, and this people
+wood, and it shall devour them.
+
+5:15 Lo, I will bring a nation upon you from far, O house of Israel,
+saith the LORD: it is a mighty nation, it is an ancient nation, a
+nation whose language thou knowest not, neither understandest what
+they say.
+
+5:16 Their quiver is as an open sepulchre, they are all mighty men.
+
+5:17 And they shall eat up thine harvest, and thy bread, which thy
+sons and thy daughters should eat: they shall eat up thy flocks and
+thine herds: they shall eat up thy vines and thy fig trees: they shall
+impoverish thy fenced cities, wherein thou trustedst, with the sword.
+
+5:18 Nevertheless in those days, saith the LORD, I will not make a
+full end with you.
+
+5:19 And it shall come to pass, when ye shall say, Wherefore doeth the
+LORD our God all these things unto us? then shalt thou answer them,
+Like as ye have forsaken me, and served strange gods in your land, so
+shall ye serve strangers in a land that is not your's.
+
+5:20 Declare this in the house of Jacob, and publish it in Judah,
+saying, 5:21 Hear now this, O foolish people, and without
+understanding; which have eyes, and see not; which have ears, and hear
+not: 5:22 Fear ye not me? saith the LORD: will ye not tremble at my
+presence, which have placed the sand for the bound of the sea by a
+perpetual decree, that it cannot pass it: and though the waves thereof
+toss themselves, yet can they not prevail; though they roar, yet can
+they not pass over it? 5:23 But this people hath a revolting and a
+rebellious heart; they are revolted and gone.
+
+5:24 Neither say they in their heart, Let us now fear the LORD our
+God, that giveth rain, both the former and the latter, in his season:
+he reserveth unto us the appointed weeks of the harvest.
+
+5:25 Your iniquities have turned away these things, and your sins have
+withholden good things from you.
+
+5:26 For among my people are found wicked men: they lay wait, as he
+that setteth snares; they set a trap, they catch men.
+
+5:27 As a cage is full of birds, so are their houses full of deceit:
+therefore they are become great, and waxen rich.
+
+5:28 They are waxen fat, they shine: yea, they overpass the deeds of
+the wicked: they judge not the cause, the cause of the fatherless, yet
+they prosper; and the right of the needy do they not judge.
+
+5:29 Shall I not visit for these things? saith the LORD: shall not my
+soul be avenged on such a nation as this? 5:30 A wonderful and
+horrible thing is committed in the land; 5:31 The prophets prophesy
+falsely, and the priests bear rule by their means; and my people love
+to have it so: and what will ye do in the end thereof? 6:1 O ye
+children of Benjamin, gather yourselves to flee out of the midst of
+Jerusalem, and blow the trumpet in Tekoa, and set up a sign of fire in
+Bethhaccerem: for evil appeareth out of the north, and great
+destruction.
+
+6:2 I have likened the daughter of Zion to a comely and delicate
+woman.
+
+6:3 The shepherds with their flocks shall come unto her; they shall
+pitch their tents against her round about; they shall feed every one
+in his place.
+
+6:4 Prepare ye war against her; arise, and let us go up at noon. Woe
+unto us! for the day goeth away, for the shadows of the evening are
+stretched out.
+
+6:5 Arise, and let us go by night, and let us destroy her palaces.
+
+6:6 For thus hath the LORD of hosts said, Hew ye down trees, and cast
+a mount against Jerusalem: this is the city to be visited; she is
+wholly oppression in the midst of her.
+
+6:7 As a fountain casteth out her waters, so she casteth out her
+wickedness: violence and spoil is heard in her; before me continually
+is grief and wounds.
+
+6:8 Be thou instructed, O Jerusalem, lest my soul depart from thee;
+lest I make thee desolate, a land not inhabited.
+
+6:9 Thus saith the LORD of hosts, They shall throughly glean the
+remnant of Israel as a vine: turn back thine hand as a grapegatherer
+into the baskets.
+
+6:10 To whom shall I speak, and give warning, that they may hear?
+behold, their ear is uncircumcised, and they cannot hearken: behold,
+the word of the LORD is unto them a reproach; they have no delight in
+it.
+
+6:11 Therefore I am full of the fury of the LORD; I am weary with
+holding in: I will pour it out upon the children abroad, and upon the
+assembly of young men together: for even the husband with the wife
+shall be taken, the aged with him that is full of days.
+
+6:12 And their houses shall be turned unto others, with their fields
+and wives together: for I will stretch out my hand upon the
+inhabitants of the land, saith the LORD.
+
+6:13 For from the least of them even unto the greatest of them every
+one is given to covetousness; and from the prophet even unto the
+priest every one dealeth falsely.
+
+6:14 They have healed also the hurt of the daughter of my people
+slightly, saying, Peace, peace; when there is no peace.
+
+6:15 Were they ashamed when they had committed abomination? nay, they
+were not at all ashamed, neither could they blush: therefore they
+shall fall among them that fall: at the time that I visit them they
+shall be cast down, saith the LORD.
+
+6:16 Thus saith the LORD, Stand ye in the ways, and see, and ask for
+the old paths, where is the good way, and walk therein, and ye shall
+find rest for your souls. But they said, We will not walk therein.
+
+6:17 Also I set watchmen over you, saying, Hearken to the sound of the
+trumpet. But they said, We will not hearken.
+
+6:18 Therefore hear, ye nations, and know, O congregation, what is
+among them.
+
+6:19 Hear, O earth: behold, I will bring evil upon this people, even
+the fruit of their thoughts, because they have not hearkened unto my
+words, nor to my law, but rejected it.
+
+6:20 To what purpose cometh there to me incense from Sheba, and the
+sweet cane from a far country? your burnt offerings are not
+acceptable, nor your sacrifices sweet unto me.
+
+6:21 Therefore thus saith the LORD, Behold, I will lay stumblingblocks
+before this people, and the fathers and the sons together shall fall
+upon them; the neighbour and his friend shall perish.
+
+6:22 Thus saith the LORD, Behold, a people cometh from the north
+country, and a great nation shall be raised from the sides of the
+earth.
+
+6:23 They shall lay hold on bow and spear; they are cruel, and have no
+mercy; their voice roareth like the sea; and they ride upon horses,
+set in array as men for war against thee, O daughter of Zion.
+
+6:24 We have heard the fame thereof: our hands wax feeble: anguish
+hath taken hold of us, and pain, as of a woman in travail.
+
+6:25 Go not forth into the field, nor walk by the way; for the sword
+of the enemy and fear is on every side.
+
+6:26 O daughter of my people, gird thee with sackcloth, and wallow
+thyself in ashes: make thee mourning, as for an only son, most bitter
+lamentation: for the spoiler shall suddenly come upon us.
+
+6:27 I have set thee for a tower and a fortress among my people, that
+thou mayest know and try their way.
+
+6:28 They are all grievous revolters, walking with slanders: they are
+brass and iron; they are all corrupters.
+
+6:29 The bellows are burned, the lead is consumed of the fire; the
+founder melteth in vain: for the wicked are not plucked away.
+
+6:30 Reprobate silver shall men call them, because the LORD hath
+rejected them.
+
+7:1 The word that came to Jeremiah from the LORD, saying, 7:2 Stand in
+the gate of the LORD's house, and proclaim there this word, and say,
+Hear the word of the LORD, all ye of Judah, that enter in at these
+gates to worship the LORD.
+
+7:3 Thus saith the LORD of hosts, the God of Israel, Amend your ways
+and your doings, and I will cause you to dwell in this place.
+
+7:4 Trust ye not in lying words, saying, The temple of the LORD, The
+temple of the LORD, The temple of the LORD, are these.
+
+7:5 For if ye throughly amend your ways and your doings; if ye
+throughly execute judgment between a man and his neighbour; 7:6 If ye
+oppress not the stranger, the fatherless, and the widow, and shed not
+innocent blood in this place, neither walk after other gods to your
+hurt: 7:7 Then will I cause you to dwell in this place, in the land
+that I gave to your fathers, for ever and ever.
+
+7:8 Behold, ye trust in lying words, that cannot profit.
+
+7:9 Will ye steal, murder, and commit adultery, and swear falsely, and
+burn incense unto Baal, and walk after other gods whom ye know not;
+7:10 And come and stand before me in this house, which is called by my
+name, and say, We are delivered to do all these abominations? 7:11 Is
+this house, which is called by my name, become a den of robbers in
+your eyes? Behold, even I have seen it, saith the LORD.
+
+7:12 But go ye now unto my place which was in Shiloh, where I set my
+name at the first, and see what I did to it for the wickedness of my
+people Israel.
+
+7:13 And now, because ye have done all these works, saith the LORD,
+and I spake unto you, rising up early and speaking, but ye heard not;
+and I called you, but ye answered not; 7:14 Therefore will I do unto
+this house, which is called by my name, wherein ye trust, and unto the
+place which I gave to you and to your fathers, as I have done to
+Shiloh.
+
+7:15 And I will cast you out of my sight, as I have cast out all your
+brethren, even the whole seed of Ephraim.
+
+7:16 Therefore pray not thou for this people, neither lift up cry nor
+prayer for them, neither make intercession to me: for I will not hear
+thee.
+
+7:17 Seest thou not what they do in the cities of Judah and in the
+streets of Jerusalem? 7:18 The children gather wood, and the fathers
+kindle the fire, and the women knead their dough, to make cakes to the
+queen of heaven, and to pour out drink offerings unto other gods, that
+they may provoke me to anger.
+
+7:19 Do they provoke me to anger? saith the LORD: do they not provoke
+themselves to the confusion of their own faces? 7:20 Therefore thus
+saith the Lord GOD; Behold, mine anger and my fury shall be poured out
+upon this place, upon man, and upon beast, and upon the trees of the
+field, and upon the fruit of the ground; and it shall burn, and shall
+not be quenched.
+
+7:21 Thus saith the LORD of hosts, the God of Israel; Put your burnt
+offerings unto your sacrifices, and eat flesh.
+
+7:22 For I spake not unto your fathers, nor commanded them in the day
+that I brought them out of the land of Egypt, concerning burnt
+offerings or sacrifices: 7:23 But this thing commanded I them, saying,
+Obey my voice, and I will be your God, and ye shall be my people: and
+walk ye in all the ways that I have commanded you, that it may be well
+unto you.
+
+7:24 But they hearkened not, nor inclined their ear, but walked in the
+counsels and in the imagination of their evil heart, and went
+backward, and not forward.
+
+7:25 Since the day that your fathers came forth out of the land of
+Egypt unto this day I have even sent unto you all my servants the
+prophets, daily rising up early and sending them: 7:26 Yet they
+hearkened not unto me, nor inclined their ear, but hardened their
+neck: they did worse than their fathers.
+
+7:27 Therefore thou shalt speak all these words unto them; but they
+will not hearken to thee: thou shalt also call unto them; but they
+will not answer thee.
+
+7:28 But thou shalt say unto them, This is a nation that obeyeth not
+the voice of the LORD their God, nor receiveth correction: truth is
+perished, and is cut off from their mouth.
+
+7:29 Cut off thine hair, O Jerusalem, and cast it away, and take up a
+lamentation on high places; for the LORD hath rejected and forsaken
+the generation of his wrath.
+
+7:30 For the children of Judah have done evil in my sight, saith the
+LORD: they have set their abominations in the house which is called by
+my name, to pollute it.
+
+7:31 And they have built the high places of Tophet, which is in the
+valley of the son of Hinnom, to burn their sons and their daughters in
+the fire; which I commanded them not, neither came it into my heart.
+
+7:32 Therefore, behold, the days come, saith the LORD, that it shall
+no more be called Tophet, nor the valley of the son of Hinnom, but the
+valley of slaughter: for they shall bury in Tophet, till there be no
+place.
+
+7:33 And the carcases of this people shall be meat for the fowls of
+the heaven, and for the beasts of the earth; and none shall fray them
+away.
+
+7:34 Then will I cause to cease from the cities of Judah, and from the
+streets of Jerusalem, the voice of mirth, and the voice of gladness,
+the voice of the bridegroom, and the voice of the bride: for the land
+shall be desolate.
+
+8:1 At that time, saith the LORD, they shall bring out the bones of
+the kings of Judah, and the bones of his princes, and the bones of the
+priests, and the bones of the prophets, and the bones of the
+inhabitants of Jerusalem, out of their graves: 8:2 And they shall
+spread them before the sun, and the moon, and all the host of heaven,
+whom they have loved, and whom they have served, and after whom they
+have walked, and whom they have sought, and whom they have worshipped:
+they shall not be gathered, nor be buried; they shall be for dung upon
+the face of the earth.
+
+8:3 And death shall be chosen rather than life by all the residue of
+them that remain of this evil family, which remain in all the places
+whither I have driven them, saith the LORD of hosts.
+
+8:4 Moreover thou shalt say unto them, Thus saith the LORD; Shall they
+fall, and not arise? shall he turn away, and not return? 8:5 Why then
+is this people of Jerusalem slidden back by a perpetual backsliding?
+they hold fast deceit, they refuse to return.
+
+8:6 I hearkened and heard, but they spake not aright: no man repented
+him of his wickedness, saying, What have I done? every one turned to
+his course, as the horse rusheth into the battle.
+
+8:7 Yea, the stork in the heaven knoweth her appointed times; and the
+turtle and the crane and the swallow observe the time of their coming;
+but my people know not the judgment of the LORD.
+
+8:8 How do ye say, We are wise, and the law of the LORD is with us?
+Lo, certainly in vain made he it; the pen of the scribes is in vain.
+
+8:9 The wise men are ashamed, they are dismayed and taken: lo, they
+have rejected the word of the LORD; and what wisdom is in them? 8:10
+Therefore will I give their wives unto others, and their fields to
+them that shall inherit them: for every one from the least even unto
+the greatest is given to covetousness, from the prophet even unto the
+priest every one dealeth falsely.
+
+8:11 For they have healed the hurt of the daughter of my people
+slightly, saying, Peace, peace; when there is no peace.
+
+8:12 Were they ashamed when they had committed abomination? nay, they
+were not at all ashamed, neither could they blush: therefore shall
+they fall among them that fall: in the time of their visitation they
+shall be cast down, saith the LORD.
+
+8:13 I will surely consume them, saith the LORD: there shall be no
+grapes on the vine, nor figs on the fig tree, and the leaf shall fade;
+and the things that I have given them shall pass away from them.
+
+8:14 Why do we sit still? assemble yourselves, and let us enter into
+the defenced cities, and let us be silent there: for the LORD our God
+hath put us to silence, and given us water of gall to drink, because
+we have sinned against the LORD.
+
+8:15 We looked for peace, but no good came; and for a time of health,
+and behold trouble! 8:16 The snorting of his horses was heard from
+Dan: the whole land trembled at the sound of the neighing of his
+strong ones; for they are come, and have devoured the land, and all
+that is in it; the city, and those that dwell therein.
+
+8:17 For, behold, I will send serpents, cockatrices, among you, which
+will not be charmed, and they shall bite you, saith the LORD.
+
+8:18 When I would comfort myself against sorrow, my heart is faint in
+me.
+
+8:19 Behold the voice of the cry of the daughter of my people because
+of them that dwell in a far country: Is not the LORD in Zion? is not
+her king in her? Why have they provoked me to anger with their graven
+images, and with strange vanities? 8:20 The harvest is past, the
+summer is ended, and we are not saved.
+
+8:21 For the hurt of the daughter of my people am I hurt; I am black;
+astonishment hath taken hold on me.
+
+8:22 Is there no balm in Gilead; is there no physician there? why then
+is not the health of the daughter of my people recovered? 9:1 Oh that
+my head were waters, and mine eyes a fountain of tears, that I might
+weep day and night for the slain of the daughter of my people! 9:2 Oh
+that I had in the wilderness a lodging place of wayfaring men; that I
+might leave my people, and go from them! for they be all adulterers,
+an assembly of treacherous men.
+
+9:3 And they bend their tongues like their bow for lies: but they are
+not valiant for the truth upon the earth; for they proceed from evil
+to evil, and they know not me, saith the LORD.
+
+9:4 Take ye heed every one of his neighbour, and trust ye not in any
+brother: for every brother will utterly supplant, and every neighbour
+will walk with slanders.
+
+9:5 And they will deceive every one his neighbour, and will not speak
+the truth: they have taught their tongue to speak lies, and weary
+themselves to commit iniquity.
+
+9:6 Thine habitation is in the midst of deceit; through deceit they
+refuse to know me, saith the LORD.
+
+9:7 Therefore thus saith the LORD of hosts, Behold, I will melt them,
+and try them; for how shall I do for the daughter of my people? 9:8
+Their tongue is as an arrow shot out; it speaketh deceit: one speaketh
+peaceably to his neighbour with his mouth, but in heart he layeth his
+wait.
+
+9:9 Shall I not visit them for these things? saith the LORD: shall not
+my soul be avenged on such a nation as this? 9:10 For the mountains
+will I take up a weeping and wailing, and for the habitations of the
+wilderness a lamentation, because they are burned up, so that none can
+pass through them; neither can men hear the voice of the cattle; both
+the fowl of the heavens and the beast are fled; they are gone.
+
+9:11 And I will make Jerusalem heaps, and a den of dragons; and I will
+make the cities of Judah desolate, without an inhabitant.
+
+9:12 Who is the wise man, that may understand this? and who is he to
+whom the mouth of the LORD hath spoken, that he may declare it, for
+what the land perisheth and is burned up like a wilderness, that none
+passeth through? 9:13 And the LORD saith, Because they have forsaken
+my law which I set before them, and have not obeyed my voice, neither
+walked therein; 9:14 But have walked after the imagination of their
+own heart, and after Baalim, which their fathers taught them: 9:15
+Therefore thus saith the LORD of hosts, the God of Israel; Behold, I
+will feed them, even this people, with wormwood, and give them water
+of gall to drink.
+
+9:16 I will scatter them also among the heathen, whom neither they nor
+their fathers have known: and I will send a sword after them, till I
+have consumed them.
+
+9:17 Thus saith the LORD of hosts, Consider ye, and call for the
+mourning women, that they may come; and send for cunning women, that
+they may come: 9:18 And let them make haste, and take up a wailing for
+us, that our eyes may run down with tears, and our eyelids gush out
+with waters.
+
+9:19 For a voice of wailing is heard out of Zion, How are we spoiled!
+we are greatly confounded, because we have forsaken the land, because
+our dwellings have cast us out.
+
+9:20 Yet hear the word of the LORD, O ye women, and let your ear
+receive the word of his mouth, and teach your daughters wailing, and
+every one her neighbour lamentation.
+
+9:21 For death is come up into our windows, and is entered into our
+palaces, to cut off the children from without, and the young men from
+the streets.
+
+9:22 Speak, Thus saith the LORD, Even the carcases of men shall fall
+as dung upon the open field, and as the handful after the harvestman,
+and none shall gather them.
+
+9:23 Thus saith the LORD, Let not the wise man glory in his wisdom,
+neither let the mighty man glory in his might, let not the rich man
+glory in his riches: 9:24 But let him that glorieth glory in this,
+that he understandeth and knoweth me, that I am the LORD which
+exercise lovingkindness, judgment, and righteousness, in the earth:
+for in these things I delight, saith the LORD.
+
+9:25 Behold, the days come, saith the LORD, that I will punish all
+them which are circumcised with the uncircumcised; 9:26 Egypt, and
+Judah, and Edom, and the children of Ammon, and Moab, and all that are
+in the utmost corners, that dwell in the wilderness: for all these
+nations are uncircumcised, and all the house of Israel are
+uncircumcised in the heart.
+
+10:1 Hear ye the word which the LORD speaketh unto you, O house of
+Israel: 10:2 Thus saith the LORD, Learn not the way of the heathen,
+and be not dismayed at the signs of heaven; for the heathen are
+dismayed at them.
+
+10:3 For the customs of the people are vain: for one cutteth a tree
+out of the forest, the work of the hands of the workman, with the axe.
+
+10:4 They deck it with silver and with gold; they fasten it with nails
+and with hammers, that it move not.
+
+10:5 They are upright as the palm tree, but speak not: they must needs
+be borne, because they cannot go. Be not afraid of them; for they
+cannot do evil, neither also is it in them to do good.
+
+10:6 Forasmuch as there is none like unto thee, O LORD; thou art
+great, and thy name is great in might.
+
+10:7 Who would not fear thee, O King of nations? for to thee doth it
+appertain: forasmuch as among all the wise men of the nations, and in
+all their kingdoms, there is none like unto thee.
+
+10:8 But they are altogether brutish and foolish: the stock is a
+doctrine of vanities.
+
+10:9 Silver spread into plates is brought from Tarshish, and gold from
+Uphaz, the work of the workman, and of the hands of the founder: blue
+and purple is their clothing: they are all the work of cunning men.
+
+10:10 But the LORD is the true God, he is the living God, and an
+everlasting king: at his wrath the earth shall tremble, and the
+nations shall not be able to abide his indignation.
+
+10:11 Thus shall ye say unto them, The gods that have not made the
+heavens and the earth, even they shall perish from the earth, and from
+under these heavens.
+
+10:12 He hath made the earth by his power, he hath established the
+world by his wisdom, and hath stretched out the heavens by his
+discretion.
+
+10:13 When he uttereth his voice, there is a multitude of waters in
+the heavens, and he causeth the vapours to ascend from the ends of the
+earth; he maketh lightnings with rain, and bringeth forth the wind out
+of his treasures.
+
+10:14 Every man is brutish in his knowledge: every founder is
+confounded by the graven image: for his molten image is falsehood, and
+there is no breath in them.
+
+10:15 They are vanity, and the work of errors: in the time of their
+visitation they shall perish.
+
+10:16 The portion of Jacob is not like them: for he is the former of
+all things; and Israel is the rod of his inheritance: The LORD of
+hosts is his name.
+
+10:17 Gather up thy wares out of the land, O inhabitant of the
+fortress.
+
+10:18 For thus saith the LORD, Behold, I will sling out the
+inhabitants of the land at this once, and will distress them, that
+they may find it so.
+
+10:19 Woe is me for my hurt! my wound is grievous; but I said, Truly
+this is a grief, and I must bear it.
+
+10:20 My tabernacle is spoiled, and all my cords are broken: my
+children are gone forth of me, and they are not: there is none to
+stretch forth my tent any more, and to set up my curtains.
+
+10:21 For the pastors are become brutish, and have not sought the
+LORD: therefore they shall not prosper, and all their flocks shall be
+scattered.
+
+10:22 Behold, the noise of the bruit is come, and a great commotion
+out of the north country, to make the cities of Judah desolate, and a
+den of dragons.
+
+10:23 O LORD, I know that the way of man is not in himself: it is not
+in man that walketh to direct his steps.
+
+10:24 O LORD, correct me, but with judgment; not in thine anger, lest
+thou bring me to nothing.
+
+10:25 Pour out thy fury upon the heathen that know thee not, and upon
+the families that call not on thy name: for they have eaten up Jacob,
+and devoured him, and consumed him, and have made his habitation
+desolate.
+
+11:1 The word that came to Jeremiah from the LORD saying, 11:2 Hear ye
+the words of this covenant, and speak unto the men of Judah, and to
+the inhabitants of Jerusalem; 11:3 And say thou unto them, Thus saith
+the LORD God of Israel; Cursed be the man that obeyeth not the words
+of this covenant, 11:4 Which I commanded your fathers in the day that
+I brought them forth out of the land of Egypt, from the iron furnace,
+saying, Obey my voice, and do them, according to all which I command
+you: so shall ye be my people, and I will be your God: 11:5 That I may
+perform the oath which I have sworn unto your fathers, to give them a
+land flowing with milk and honey, as it is this day. Then answered I,
+and said, So be it, O LORD.
+
+11:6 Then the LORD said unto me, Proclaim all these words in the
+cities of Judah, and in the streets of Jerusalem, saying, Hear ye the
+words of this covenant, and do them.
+
+11:7 For I earnestly protested unto your fathers in the day that I
+brought them up out of the land of Egypt, even unto this day, rising
+early and protesting, saying, Obey my voice.
+
+11:8 Yet they obeyed not, nor inclined their ear, but walked every one
+in the imagination of their evil heart: therefore I will bring upon
+them all the words of this covenant, which I commanded them to do: but
+they did them not.
+
+11:9 And the LORD said unto me, A conspiracy is found among the men of
+Judah, and among the inhabitants of Jerusalem.
+
+11:10 They are turned back to the iniquities of their forefathers,
+which refused to hear my words; and they went after other gods to
+serve them: the house of Israel and the house of Judah have broken my
+covenant which I made with their fathers.
+
+11:11 Therefore thus saith the LORD, Behold, I will bring evil upon
+them, which they shall not be able to escape; and though they shall
+cry unto me, I will not hearken unto them.
+
+11:12 Then shall the cities of Judah and inhabitants of Jerusalem go,
+and cry unto the gods unto whom they offer incense: but they shall not
+save them at all in the time of their trouble.
+
+11:13 For according to the number of thy cities were thy gods, O
+Judah; and according to the number of the streets of Jerusalem have ye
+set up altars to that shameful thing, even altars to burn incense unto
+Baal.
+
+11:14 Therefore pray not thou for this people, neither lift up a cry
+or prayer for them: for I will not hear them in the time that they cry
+unto me for their trouble.
+
+11:15 What hath my beloved to do in mine house, seeing she hath
+wrought lewdness with many, and the holy flesh is passed from thee?
+when thou doest evil, then thou rejoicest.
+
+11:16 The LORD called thy name, A green olive tree, fair, and of
+goodly fruit: with the noise of a great tumult he hath kindled fire
+upon it, and the branches of it are broken.
+
+11:17 For the LORD of hosts, that planted thee, hath pronounced evil
+against thee, for the evil of the house of Israel and of the house of
+Judah, which they have done against themselves to provoke me to anger
+in offering incense unto Baal.
+
+11:18 And the LORD hath given me knowledge of it, and I know it: then
+thou shewedst me their doings.
+
+11:19 But I was like a lamb or an ox that is brought to the slaughter;
+and I knew not that they had devised devices against me, saying, Let
+us destroy the tree with the fruit thereof, and let us cut him off
+from the land of the living, that his name may be no more remembered.
+
+11:20 But, O LORD of hosts, that judgest righteously, that triest the
+reins and the heart, let me see thy vengeance on them: for unto thee
+have I revealed my cause.
+
+11:21 Therefore thus saith the LORD of the men of Anathoth, that seek
+thy life, saying, Prophesy not in the name of the LORD, that thou die
+not by our hand: 11:22 Therefore thus saith the LORD of hosts, Behold,
+I will punish them: the young men shall die by the sword; their sons
+and their daughters shall die by famine: 11:23 And there shall be no
+remnant of them: for I will bring evil upon the men of Anathoth, even
+the year of their visitation.
+
+12:1 Righteous art thou, O LORD, when I plead with thee: yet let me
+talk with thee of thy judgments: Wherefore doth the way of the wicked
+prosper? wherefore are all they happy that deal very treacherously?
+12:2 Thou hast planted them, yea, they have taken root: they grow,
+yea, they bring forth fruit: thou art near in their mouth, and far
+from their reins.
+
+12:3 But thou, O LORD, knowest me: thou hast seen me, and tried mine
+heart toward thee: pull them out like sheep for the slaughter, and
+prepare them for the day of slaughter.
+
+12:4 How long shall the land mourn, and the herbs of every field
+wither, for the wickedness of them that dwell therein? the beasts are
+consumed, and the birds; because they said, He shall not see our last
+end.
+
+12:5 If thou hast run with the footmen, and they have wearied thee,
+then how canst thou contend with horses? and if in the land of peace,
+wherein thou trustedst, they wearied thee, then how wilt thou do in
+the swelling of Jordan? 12:6 For even thy brethren, and the house of
+thy father, even they have dealt treacherously with thee; yea, they
+have called a multitude after thee: believe them not, though they
+speak fair words unto thee.
+
+12:7 I have forsaken mine house, I have left mine heritage; I have
+given the dearly beloved of my soul into the hand of her enemies.
+
+12:8 Mine heritage is unto me as a lion in the forest; it crieth out
+against me: therefore have I hated it.
+
+12:9 Mine heritage is unto me as a speckled bird, the birds round
+about are against her; come ye, assemble all the beasts of the field,
+come to devour.
+
+12:10 Many pastors have destroyed my vineyard, they have trodden my
+portion under foot, they have made my pleasant portion a desolate
+wilderness.
+
+12:11 They have made it desolate, and being desolate it mourneth unto
+me; the whole land is made desolate, because no man layeth it to
+heart.
+
+12:12 The spoilers are come upon all high places through the
+wilderness: for the sword of the LORD shall devour from the one end of
+the land even to the other end of the land: no flesh shall have peace.
+
+12:13 They have sown wheat, but shall reap thorns: they have put
+themselves to pain, but shall not profit: and they shall be ashamed of
+your revenues because of the fierce anger of the LORD.
+
+12:14 Thus saith the LORD against all mine evil neighbours, that touch
+the inheritance which I have caused my people Israel to inherit;
+Behold, I will pluck them out of their land, and pluck out the house
+of Judah from among them.
+
+12:15 And it shall come to pass, after that I have plucked them out I
+will return, and have compassion on them, and will bring them again,
+every man to his heritage, and every man to his land.
+
+12:16 And it shall come to pass, if they will diligently learn the
+ways of my people, to swear by my name, The LORD liveth; as they
+taught my people to swear by Baal; then shall they be built in the
+midst of my people.
+
+12:17 But if they will not obey, I will utterly pluck up and destroy
+that nation, saith the LORD.
+
+13:1 Thus saith the LORD unto me, Go and get thee a linen girdle, and
+put it upon thy loins, and put it not in water.
+
+13:2 So I got a girdle according to the word of the LORD, and put it
+on my loins.
+
+13:3 And the word of the LORD came unto me the second time, saying,
+13:4 Take the girdle that thou hast got, which is upon thy loins, and
+arise, go to Euphrates, and hide it there in a hole of the rock.
+
+13:5 So I went, and hid it by Euphrates, as the LORD commanded me.
+
+13:6 And it came to pass after many days, that the LORD said unto me,
+Arise, go to Euphrates, and take the girdle from thence, which I
+commanded thee to hide there.
+
+13:7 Then I went to Euphrates, and digged, and took the girdle from
+the place where I had hid it: and, behold, the girdle was marred, it
+was profitable for nothing.
+
+13:8 Then the word of the LORD came unto me, saying, 13:9 Thus saith
+the LORD, After this manner will I mar the pride of Judah, and the
+great pride of Jerusalem.
+
+13:10 This evil people, which refuse to hear my words, which walk in
+the imagination of their heart, and walk after other gods, to serve
+them, and to worship them, shall even be as this girdle, which is good
+for nothing.
+
+13:11 For as the girdle cleaveth to the loins of a man, so have I
+caused to cleave unto me the whole house of Israel and the whole house
+of Judah, saith the LORD; that they might be unto me for a people, and
+for a name, and for a praise, and for a glory: but they would not
+hear.
+
+13:12 Therefore thou shalt speak unto them this word; Thus saith the
+LORD God of Israel, Every bottle shall be filled with wine: and they
+shall say unto thee, Do we not certainly know that every bottle shall
+be filled with wine? 13:13 Then shalt thou say unto them, Thus saith
+the LORD, Behold, I will fill all the inhabitants of this land, even
+the kings that sit upon David's throne, and the priests, and the
+prophets, and all the inhabitants of Jerusalem, with drunkenness.
+
+13:14 And I will dash them one against another, even the fathers and
+the sons together, saith the LORD: I will not pity, nor spare, nor
+have mercy, but destroy them.
+
+13:15 Hear ye, and give ear; be not proud: for the LORD hath spoken.
+
+13:16 Give glory to the LORD your God, before he cause darkness, and
+before your feet stumble upon the dark mountains, and, while ye look
+for light, he turn it into the shadow of death, and make it gross
+darkness.
+
+13:17 But if ye will not hear it, my soul shall weep in secret places
+for your pride; and mine eye shall weep sore, and run down with tears,
+because the LORD's flock is carried away captive.
+
+13:18 Say unto the king and to the queen, Humble yourselves, sit down:
+for your principalities shall come down, even the crown of your glory.
+
+13:19 The cities of the south shall be shut up, and none shall open
+them: Judah shall be carried away captive all of it, it shall be
+wholly carried away captive.
+
+13:20 Lift up your eyes, and behold them that come from the north:
+where is the flock that was given thee, thy beautiful flock? 13:21
+What wilt thou say when he shall punish thee? for thou hast taught
+them to be captains, and as chief over thee: shall not sorrows take
+thee, as a woman in travail? 13:22 And if thou say in thine heart,
+Wherefore come these things upon me? For the greatness of thine
+iniquity are thy skirts discovered, and thy heels made bare.
+
+13:23 Can the Ethiopian change his skin, or the leopard his spots?
+then may ye also do good, that are accustomed to do evil.
+
+13:24 Therefore will I scatter them as the stubble that passeth away
+by the wind of the wilderness.
+
+13:25 This is thy lot, the portion of thy measures from me, saith the
+LORD; because thou hast forgotten me, and trusted in falsehood.
+
+13:26 Therefore will I discover thy skirts upon thy face, that thy
+shame may appear.
+
+13:27 I have seen thine adulteries, and thy neighings, the lewdness of
+thy whoredom, and thine abominations on the hills in the fields. Woe
+unto thee, O Jerusalem! wilt thou not be made clean? when shall it
+once be? 14:1 The word of the LORD that came to Jeremiah concerning
+the dearth.
+
+14:2 Judah mourneth, and the gates thereof languish; they are black
+unto the ground; and the cry of Jerusalem is gone up.
+
+14:3 And their nobles have sent their little ones to the waters: they
+came to the pits, and found no water; they returned with their vessels
+empty; they were ashamed and confounded, and covered their heads.
+
+14:4 Because the ground is chapt, for there was no rain in the earth,
+the plowmen were ashamed, they covered their heads.
+
+14:5 Yea, the hind also calved in the field, and forsook it, because
+there was no grass.
+
+14:6 And the wild asses did stand in the high places, they snuffed up
+the wind like dragons; their eyes did fail, because there was no
+grass.
+
+14:7 O LORD, though our iniquities testify against us, do thou it for
+thy name's sake: for our backslidings are many; we have sinned against
+thee.
+
+14:8 O the hope of Israel, the saviour thereof in time of trouble, why
+shouldest thou be as a stranger in the land, and as a wayfaring man
+that turneth aside to tarry for a night? 14:9 Why shouldest thou be
+as a man astonied, as a mighty man that cannot save? yet thou, O LORD,
+art in the midst of us, and we are called by thy name; leave us not.
+
+14:10 Thus saith the LORD unto this people, Thus have they loved to
+wander, they have not refrained their feet, therefore the LORD doth
+not accept them; he will now remember their iniquity, and visit their
+sins.
+
+14:11 Then said the LORD unto me, Pray not for this people for their
+good.
+
+14:12 When they fast, I will not hear their cry; and when they offer
+burnt offering and an oblation, I will not accept them: but I will
+consume them by the sword, and by the famine, and by the pestilence.
+
+14:13 Then said I, Ah, Lord GOD! behold, the prophets say unto them,
+Ye shall not see the sword, neither shall ye have famine; but I will
+give you assured peace in this place.
+
+14:14 Then the LORD said unto me, The prophets prophesy lies in my
+name: I sent them not, neither have I commanded them, neither spake
+unto them: they prophesy unto you a false vision and divination, and a
+thing of nought, and the deceit of their heart.
+
+14:15 Therefore thus saith the LORD concerning the prophets that
+prophesy in my name, and I sent them not, yet they say, Sword and
+famine shall not be in this land; By sword and famine shall those
+prophets be consumed.
+
+14:16 And the people to whom they prophesy shall be cast out in the
+streets of Jerusalem because of the famine and the sword; and they
+shall have none to bury them, them, their wives, nor their sons, nor
+their daughters: for I will pour their wickedness upon them.
+
+14:17 Therefore thou shalt say this word unto them; Let mine eyes run
+down with tears night and day, and let them not cease: for the virgin
+daughter of my people is broken with a great breach, with a very
+grievous blow.
+
+14:18 If I go forth into the field, then behold the slain with the
+sword! and if I enter into the city, then behold them that are sick
+with famine! yea, both the prophet and the priest go about into a
+land that they know not.
+
+14:19 Hast thou utterly rejected Judah? hath thy soul lothed Zion? why
+hast thou smitten us, and there is no healing for us? we looked for
+peace, and there is no good; and for the time of healing, and behold
+trouble! 14:20 We acknowledge, O LORD, our wickedness, and the
+iniquity of our fathers: for we have sinned against thee.
+
+14:21 Do not abhor us, for thy name's sake, do not disgrace the throne
+of thy glory: remember, break not thy covenant with us.
+
+14:22 Are there any among the vanities of the Gentiles that can cause
+rain? or can the heavens give showers? art not thou he, O LORD our
+God? therefore we will wait upon thee: for thou hast made all these
+things.
+
+15:1 Then said the LORD unto me, Though Moses and Samuel stood before
+me, yet my mind could not be toward this people: cast them out of my
+sight, and let them go forth.
+
+15:2 And it shall come to pass, if they say unto thee, Whither shall
+we go forth? then thou shalt tell them, Thus saith the LORD; Such as
+are for death, to death; and such as are for the sword, to the sword;
+and such as are for the famine, to the famine; and such as are for the
+captivity, to the captivity.
+
+15:3 And I will appoint over them four kinds, saith the LORD: the
+sword to slay, and the dogs to tear, and the fowls of the heaven, and
+the beasts of the earth, to devour and destroy.
+
+15:4 And I will cause them to be removed into all kingdoms of the
+earth, because of Manasseh the son of Hezekiah king of Judah, for that
+which he did in Jerusalem.
+
+15:5 For who shall have pity upon thee, O Jerusalem? or who shall
+bemoan thee? or who shall go aside to ask how thou doest? 15:6 Thou
+hast forsaken me, saith the LORD, thou art gone backward: therefore
+will I stretch out my hand against thee, and destroy thee; I am weary
+with repenting.
+
+15:7 And I will fan them with a fan in the gates of the land; I will
+bereave them of children, I will destroy my people since they return
+not from their ways.
+
+15:8 Their widows are increased to me above the sand of the seas: I
+have brought upon them against the mother of the young men a spoiler
+at noonday: I have caused him to fall upon it suddenly, and terrors
+upon the city.
+
+15:9 She that hath borne seven languisheth: she hath given up the
+ghost; her sun is gone down while it was yet day: she hath been
+ashamed and confounded: and the residue of them will I deliver to the
+sword before their enemies, saith the LORD.
+
+15:10 Woe is me, my mother, that thou hast borne me a man of strife
+and a man of contention to the whole earth! I have neither lent on
+usury, nor men have lent to me on usury; yet every one of them doth
+curse me.
+
+15:11 The LORD said, Verily it shall be well with thy remnant; verily
+I will cause the enemy to entreat thee well in the time of evil and in
+the time of affliction.
+
+15:12 Shall iron break the northern iron and the steel? 15:13 Thy
+substance and thy treasures will I give to the spoil without price,
+and that for all thy sins, even in all thy borders.
+
+15:14 And I will make thee to pass with thine enemies into a land
+which thou knowest not: for a fire is kindled in mine anger, which
+shall burn upon you.
+
+15:15 O LORD, thou knowest: remember me, and visit me, and revenge me
+of my persecutors; take me not away in thy longsuffering: know that
+for thy sake I have suffered rebuke.
+
+15:16 Thy words were found, and I did eat them; and thy word was unto
+me the joy and rejoicing of mine heart: for I am called by thy name, O
+LORD God of hosts.
+
+15:17 I sat not in the assembly of the mockers, nor rejoiced; I sat
+alone because of thy hand: for thou hast filled me with indignation.
+
+15:18 Why is my pain perpetual, and my wound incurable, which refuseth
+to be healed? wilt thou be altogether unto me as a liar, and as waters
+that fail? 15:19 Therefore thus saith the LORD, If thou return, then
+will I bring thee again, and thou shalt stand before me: and if thou
+take forth the precious from the vile, thou shalt be as my mouth: let
+them return unto thee; but return not thou unto them.
+
+15:20 And I will make thee unto this people a fenced brasen wall: and
+they shall fight against thee, but they shall not prevail against
+thee: for I am with thee to save thee and to deliver thee, saith the
+LORD.
+
+15:21 And I will deliver thee out of the hand of the wicked, and I
+will redeem thee out of the hand of the terrible.
+
+16:1 The word of the LORD came also unto me, saying, 16:2 Thou shalt
+not take thee a wife, neither shalt thou have sons or daughters in
+this place.
+
+16:3 For thus saith the LORD concerning the sons and concerning the
+daughters that are born in this place, and concerning their mothers
+that bare them, and concerning their fathers that begat them in this
+land; 16:4 They shall die of grievous deaths; they shall not be
+lamented; neither shall they be buried; but they shall be as dung upon
+the face of the earth: and they shall be consumed by the sword, and by
+famine; and their carcases shall be meat for the fowls of heaven, and
+for the beasts of the earth.
+
+16:5 For thus saith the LORD, Enter not into the house of mourning,
+neither go to lament nor bemoan them: for I have taken away my peace
+from this people, saith the LORD, even lovingkindness and mercies.
+
+16:6 Both the great and the small shall die in this land: they shall
+not be buried, neither shall men lament for them, nor cut themselves,
+nor make themselves bald for them: 16:7 Neither shall men tear
+themselves for them in mourning, to comfort them for the dead; neither
+shall men give them the cup of consolation to drink for their father
+or for their mother.
+
+16:8 Thou shalt not also go into the house of feasting, to sit with
+them to eat and to drink.
+
+16:9 For thus saith the LORD of hosts, the God of Israel; Behold, I
+will cause to cease out of this place in your eyes, and in your days,
+the voice of mirth, and the voice of gladness, the voice of the
+bridegroom, and the voice of the bride.
+
+16:10 And it shall come to pass, when thou shalt shew this people all
+these words, and they shall say unto thee, Wherefore hath the LORD
+pronounced all this great evil against us? or what is our iniquity? or
+what is our sin that we have committed against the LORD our God?
+16:11 Then shalt thou say unto them, Because your fathers have
+forsaken me, saith the LORD, and have walked after other gods, and
+have served them, and have worshipped them, and have forsaken me, and
+have not kept my law; 16:12 And ye have done worse than your fathers;
+for, behold, ye walk every one after the imagination of his evil
+heart, that they may not hearken unto me: 16:13 Therefore will I cast
+you out of this land into a land that ye know not, neither ye nor your
+fathers; and there shall ye serve other gods day and night; where I
+will not shew you favour.
+
+16:14 Therefore, behold, the days come, saith the LORD, that it shall
+no more be said, The LORD liveth, that brought up the children of
+Israel out of the land of Egypt; 16:15 But, The LORD liveth, that
+brought up the children of Israel from the land of the north, and from
+all the lands whither he had driven them: and I will bring them again
+into their land that I gave unto their fathers.
+
+16:16 Behold, I will send for many fishers, saith the LORD, and they
+shall fish them; and after will I send for many hunters, and they
+shall hunt them from every mountain, and from every hill, and out of
+the holes of the rocks.
+
+16:17 For mine eyes are upon all their ways: they are not hid from my
+face, neither is their iniquity hid from mine eyes.
+
+16:18 And first I will recompense their iniquity and their sin double;
+because they have defiled my land, they have filled mine inheritance
+with the carcases of their detestable and abominable things.
+
+16:19 O LORD, my strength, and my fortress, and my refuge in the day
+of affliction, the Gentiles shall come unto thee from the ends of the
+earth, and shall say, Surely our fathers have inherited lies, vanity,
+and things wherein there is no profit.
+
+16:20 Shall a man make gods unto himself, and they are no gods? 16:21
+Therefore, behold, I will this once cause them to know, I will cause
+them to know mine hand and my might; and they shall know that my name
+is The LORD.
+
+17:1 The sin of Judah is written with a pen of iron, and with the
+point of a diamond: it is graven upon the table of their heart, and
+upon the horns of your altars; 17:2 Whilst their children remember
+their altars and their groves by the green trees upon the high hills.
+
+17:3 O my mountain in the field, I will give thy substance and all thy
+treasures to the spoil, and thy high places for sin, throughout all
+thy borders.
+
+17:4 And thou, even thyself, shalt discontinue from thine heritage
+that I gave thee; and I will cause thee to serve thine enemies in the
+land which thou knowest not: for ye have kindled a fire in mine anger,
+which shall burn for ever.
+
+17:5 Thus saith the LORD; Cursed be the man that trusteth in man, and
+maketh flesh his arm, and whose heart departeth from the LORD.
+
+17:6 For he shall be like the heath in the desert, and shall not see
+when good cometh; but shall inhabit the parched places in the
+wilderness, in a salt land and not inhabited.
+
+17:7 Blessed is the man that trusteth in the LORD, and whose hope the
+LORD is.
+
+17:8 For he shall be as a tree planted by the waters, and that
+spreadeth out her roots by the river, and shall not see when heat
+cometh, but her leaf shall be green; and shall not be careful in the
+year of drought, neither shall cease from yielding fruit.
+
+17:9 The heart is deceitful above all things, and desperately wicked:
+who can know it? 17:10 I the LORD search the heart, I try the reins,
+even to give every man according to his ways, and according to the
+fruit of his doings.
+
+17:11 As the partridge sitteth on eggs, and hatcheth them not; so he
+that getteth riches, and not by right, shall leave them in the midst
+of his days, and at his end shall be a fool.
+
+17:12 A glorious high throne from the beginning is the place of our
+sanctuary.
+
+17:13 O LORD, the hope of Israel, all that forsake thee shall be
+ashamed, and they that depart from me shall be written in the earth,
+because they have forsaken the LORD, the fountain of living waters.
+
+17:14 Heal me, O LORD, and I shall be healed; save me, and I shall be
+saved: for thou art my praise.
+
+17:15 Behold, they say unto me, Where is the word of the LORD? let it
+come now.
+
+17:16 As for me, I have not hastened from being a pastor to follow
+thee: neither have I desired the woeful day; thou knowest: that which
+came out of my lips was right before thee.
+
+17:17 Be not a terror unto me: thou art my hope in the day of evil.
+
+17:18 Let them be confounded that persecute me, but let not me be
+confounded: let them be dismayed, but let not me be dismayed: bring
+upon them the day of evil, and destroy them with double destruction.
+
+17:19 Thus said the LORD unto me; Go and stand in the gate of the
+children of the people, whereby the kings of Judah come in, and by the
+which they go out, and in all the gates of Jerusalem; 17:20 And say
+unto them, Hear ye the word of the LORD, ye kings of Judah, and all
+Judah, and all the inhabitants of Jerusalem, that enter in by these
+gates: 17:21 Thus saith the LORD; Take heed to yourselves, and bear no
+burden on the sabbath day, nor bring it in by the gates of Jerusalem;
+17:22 Neither carry forth a burden out of your houses on the sabbath
+day, neither do ye any work, but hallow ye the sabbath day, as I
+commanded your fathers.
+
+17:23 But they obeyed not, neither inclined their ear, but made their
+neck stiff, that they might not hear, nor receive instruction.
+
+17:24 And it shall come to pass, if ye diligently hearken unto me,
+saith the LORD, to bring in no burden through the gates of this city
+on the sabbath day, but hallow the sabbath day, to do no work therein;
+17:25 Then shall there enter into the gates of this city kings and
+princes sitting upon the throne of David, riding in chariots and on
+horses, they, and their princes, the men of Judah, and the inhabitants
+of Jerusalem: and this city shall remain for ever.
+
+17:26 And they shall come from the cities of Judah, and from the
+places about Jerusalem, and from the land of Benjamin, and from the
+plain, and from the mountains, and from the south, bringing burnt
+offerings, and sacrifices, and meat offerings, and incense, and
+bringing sacrifices of praise, unto the house of the LORD.
+
+17:27 But if ye will not hearken unto me to hallow the sabbath day,
+and not to bear a burden, even entering in at the gates of Jerusalem
+on the sabbath day; then will I kindle a fire in the gates thereof,
+and it shall devour the palaces of Jerusalem, and it shall not be
+quenched.
+
+18:1 The word which came to Jeremiah from the LORD, saying, 18:2
+Arise, and go down to the potter's house, and there I will cause thee
+to hear my words.
+
+18:3 Then I went down to the potter's house, and, behold, he wrought a
+work on the wheels.
+
+18:4 And the vessel that he made of clay was marred in the hand of the
+potter: so he made it again another vessel, as seemed good to the
+potter to make it.
+
+18:5 Then the word of the LORD came to me, saying, 18:6 O house of
+Israel, cannot I do with you as this potter? saith the LORD. Behold,
+as the clay is in the potter's hand, so are ye in mine hand, O house
+of Israel.
+
+18:7 At what instant I shall speak concerning a nation, and concerning
+a kingdom, to pluck up, and to pull down, and to destroy it; 18:8 If
+that nation, against whom I have pronounced, turn from their evil, I
+will repent of the evil that I thought to do unto them.
+
+18:9 And at what instant I shall speak concerning a nation, and
+concerning a kingdom, to build and to plant it; 18:10 If it do evil in
+my sight, that it obey not my voice, then I will repent of the good,
+wherewith I said I would benefit them.
+
+18:11 Now therefore go to, speak to the men of Judah, and to the
+inhabitants of Jerusalem, saying, Thus saith the LORD; Behold, I frame
+evil against you, and devise a device against you: return ye now every
+one from his evil way, and make your ways and your doings good.
+
+18:12 And they said, There is no hope: but we will walk after our own
+devices, and we will every one do the imagination of his evil heart.
+
+18:13 Therefore thus saith the LORD; Ask ye now among the heathen, who
+hath heard such things: the virgin of Israel hath done a very horrible
+thing.
+
+18:14 Will a man leave the snow of Lebanon which cometh from the rock
+of the field? or shall the cold flowing waters that come from another
+place be forsaken? 18:15 Because my people hath forgotten me, they
+have burned incense to vanity, and they have caused them to stumble in
+their ways from the ancient paths, to walk in paths, in a way not cast
+up; 18:16 To make their land desolate, and a perpetual hissing; every
+one that passeth thereby shall be astonished, and wag his head.
+
+18:17 I will scatter them as with an east wind before the enemy; I
+will shew them the back, and not the face, in the day of their
+calamity.
+
+18:18 Then said they, Come and let us devise devices against Jeremiah;
+for the law shall not perish from the priest, nor counsel from the
+wise, nor the word from the prophet. Come, and let us smite him with
+the tongue, and let us not give heed to any of his words.
+
+18:19 Give heed to me, O LORD, and hearken to the voice of them that
+contend with me.
+
+18:20 Shall evil be recompensed for good? for they have digged a pit
+for my soul. Remember that I stood before thee to speak good for them,
+and to turn away thy wrath from them.
+
+18:21 Therefore deliver up their children to the famine, and pour out
+their blood by the force of the sword; and let their wives be bereaved
+of their children, and be widows; and let their men be put to death;
+let their young men be slain by the sword in battle.
+
+18:22 Let a cry be heard from their houses, when thou shalt bring a
+troop suddenly upon them: for they have digged a pit to take me, and
+hid snares for my feet.
+
+18:23 Yet, LORD, thou knowest all their counsel against me to slay me:
+forgive not their iniquity, neither blot out their sin from thy sight,
+but let them be overthrown before thee; deal thus with them in the
+time of thine anger.
+
+19:1 Thus saith the LORD, Go and get a potter's earthen bottle, and
+take of the ancients of the people, and of the ancients of the
+priests; 19:2 And go forth unto the valley of the son of Hinnom, which
+is by the entry of the east gate, and proclaim there the words that I
+shall tell thee, 19:3 And say, Hear ye the word of the LORD, O kings
+of Judah, and inhabitants of Jerusalem; Thus saith the LORD of hosts,
+the God of Israel; Behold, I will bring evil upon this place, the
+which whosoever heareth, his ears shall tingle.
+
+19:4 Because they have forsaken me, and have estranged this place, and
+have burned incense in it unto other gods, whom neither they nor their
+fathers have known, nor the kings of Judah, and have filled this place
+with the blood of innocents; 19:5 They have built also the high places
+of Baal, to burn their sons with fire for burnt offerings unto Baal,
+which I commanded not, nor spake it, neither came it into my mind:
+19:6 Therefore, behold, the days come, saith the LORD, that this place
+shall no more be called Tophet, nor The valley of the son of Hinnom,
+but The valley of slaughter.
+
+19:7 And I will make void the counsel of Judah and Jerusalem in this
+place; and I will cause them to fall by the sword before their
+enemies, and by the hands of them that seek their lives: and their
+carcases will I give to be meat for the fowls of the heaven, and for
+the beasts of the earth.
+
+19:8 And I will make this city desolate, and an hissing; every one
+that passeth thereby shall be astonished and hiss because of all the
+plagues thereof.
+
+19:9 And I will cause them to eat the flesh of their sons and the
+flesh of their daughters, and they shall eat every one the flesh of
+his friend in the siege and straitness, wherewith their enemies, and
+they that seek their lives, shall straiten them.
+
+19:10 Then shalt thou break the bottle in the sight of the men that go
+with thee, 19:11 And shalt say unto them, Thus saith the LORD of
+hosts; Even so will I break this people and this city, as one breaketh
+a potter's vessel, that cannot be made whole again: and they shall
+bury them in Tophet, till there be no place to bury.
+
+19:12 Thus will I do unto this place, saith the LORD, and to the
+inhabitants thereof, and even make this city as Tophet: 19:13 And the
+houses of Jerusalem, and the houses of the kings of Judah, shall be
+defiled as the place of Tophet, because of all the houses upon whose
+roofs they have burned incense unto all the host of heaven, and have
+poured out drink offerings unto other gods.
+
+19:14 Then came Jeremiah from Tophet, whither the LORD had sent him to
+prophesy; and he stood in the court of the LORD's house; and said to
+all the people, 19:15 Thus saith the LORD of hosts, the God of Israel;
+Behold, I will bring upon this city and upon all her towns all the
+evil that I have pronounced against it, because they have hardened
+their necks, that they might not hear my words.
+
+20:1 Now Pashur the son of Immer the priest, who was also chief
+governor in the house of the LORD, heard that Jeremiah prophesied
+these things.
+
+20:2 Then Pashur smote Jeremiah the prophet, and put him in the stocks
+that were in the high gate of Benjamin, which was by the house of the
+LORD.
+
+20:3 And it came to pass on the morrow, that Pashur brought forth
+Jeremiah out of the stocks. Then said Jeremiah unto him, The LORD hath
+not called thy name Pashur, but Magormissabib.
+
+20:4 For thus saith the LORD, Behold, I will make thee a terror to
+thyself, and to all thy friends: and they shall fall by the sword of
+their enemies, and thine eyes shall behold it: and I will give all
+Judah into the hand of the king of Babylon, and he shall carry them
+captive into Babylon, and shall slay them with the sword.
+
+20:5 Moreover I will deliver all the strength of this city, and all
+the labours thereof, and all the precious things thereof, and all the
+treasures of the kings of Judah will I give into the hand of their
+enemies, which shall spoil them, and take them, and carry them to
+Babylon.
+
+20:6 And thou, Pashur, and all that dwell in thine house shall go into
+captivity: and thou shalt come to Babylon, and there thou shalt die,
+and shalt be buried there, thou, and all thy friends, to whom thou
+hast prophesied lies.
+
+20:7 O LORD, thou hast deceived me, and I was deceived; thou art
+stronger than I, and hast prevailed: I am in derision daily, every one
+mocketh me.
+
+20:8 For since I spake, I cried out, I cried violence and spoil;
+because the word of the LORD was made a reproach unto me, and a
+derision, daily.
+
+20:9 Then I said, I will not make mention of him, nor speak any more
+in his name. But his word was in mine heart as a burning fire shut up
+in my bones, and I was weary with forbearing, and I could not stay.
+
+20:10 For I heard the defaming of many, fear on every side. Report,
+say they, and we will report it. All my familiars watched for my
+halting, saying, Peradventure he will be enticed, and we shall prevail
+against him, and we shall take our revenge on him.
+
+20:11 But the LORD is with me as a mighty terrible one: therefore my
+persecutors shall stumble, and they shall not prevail: they shall be
+greatly ashamed; for they shall not prosper: their everlasting
+confusion shall never be forgotten.
+
+20:12 But, O LORD of hosts, that triest the righteous, and seest the
+reins and the heart, let me see thy vengeance on them: for unto thee
+have I opened my cause.
+
+20:13 Sing unto the LORD, praise ye the LORD: for he hath delivered
+the soul of the poor from the hand of evildoers.
+
+20:14 Cursed be the day wherein I was born: let not the day wherein my
+mother bare me be blessed.
+
+20:15 Cursed be the man who brought tidings to my father, saying, A
+man child is born unto thee; making him very glad.
+
+20:16 And let that man be as the cities which the LORD overthrew, and
+repented not: and let him hear the cry in the morning, and the
+shouting at noontide; 20:17 Because he slew me not from the womb; or
+that my mother might have been my grave, and her womb to be always
+great with me.
+
+20:18 Wherefore came I forth out of the womb to see labour and sorrow,
+that my days should be consumed with shame? 21:1 The word which came
+unto Jeremiah from the LORD, when king Zedekiah sent unto him Pashur
+the son of Melchiah, and Zephaniah the son of Maaseiah the priest,
+saying, 21:2 Enquire, I pray thee, of the LORD for us; for
+Nebuchadrezzar king of Babylon maketh war against us; if so be that
+the LORD will deal with us according to all his wondrous works, that
+he may go up from us.
+
+21:3 Then said Jeremiah unto them, Thus shall ye say to Zedekiah: 21:4
+Thus saith the LORD God of Israel; Behold, I will turn back the
+weapons of war that are in your hands, wherewith ye fight against the
+king of Babylon, and against the Chaldeans, which besiege you without
+the walls, and I will assemble them into the midst of this city.
+
+21:5 And I myself will fight against you with an outstretched hand and
+with a strong arm, even in anger, and in fury, and in great wrath.
+
+21:6 And I will smite the inhabitants of this city, both man and
+beast: they shall die of a great pestilence.
+
+21:7 And afterward, saith the LORD, I will deliver Zedekiah king of
+Judah, and his servants, and the people, and such as are left in this
+city from the pestilence, from the sword, and from the famine, into
+the hand of Nebuchadrezzar king of Babylon, and into the hand of their
+enemies, and into the hand of those that seek their life: and he shall
+smite them with the edge of the sword; he shall not spare them,
+neither have pity, nor have mercy.
+
+21:8 And unto this people thou shalt say, Thus saith the LORD; Behold,
+I set before you the way of life, and the way of death.
+
+21:9 He that abideth in this city shall die by the sword, and by the
+famine, and by the pestilence: but he that goeth out, and falleth to
+the Chaldeans that besiege you, he shall live, and his life shall be
+unto him for a prey.
+
+21:10 For I have set my face against this city for evil, and not for
+good, saith the LORD: it shall be given into the hand of the king of
+Babylon, and he shall burn it with fire.
+
+21:11 And touching the house of the king of Judah, say, Hear ye the
+word of the LORD; 21:12 O house of David, thus saith the LORD; Execute
+judgment in the morning, and deliver him that is spoiled out of the
+hand of the oppressor, lest my fury go out like fire, and burn that
+none can quench it, because of the evil of your doings.
+
+21:13 Behold, I am against thee, O inhabitant of the valley, and rock
+of the plain, saith the LORD; which say, Who shall come down against
+us? or who shall enter into our habitations? 21:14 But I will punish
+you according to the fruit of your doings, saith the LORD: and I will
+kindle a fire in the forest thereof, and it shall devour all things
+round about it.
+
+22:1 Thus saith the LORD; Go down to the house of the king of Judah,
+and speak there this word, 22:2 And say, Hear the word of the LORD, O
+king of Judah, that sittest upon the throne of David, thou, and thy
+servants, and thy people that enter in by these gates: 22:3 Thus saith
+the LORD; Execute ye judgment and righteousness, and deliver the
+spoiled out of the hand of the oppressor: and do no wrong, do no
+violence to the stranger, the fatherless, nor the widow, neither shed
+innocent blood in this place.
+
+22:4 For if ye do this thing indeed, then shall there enter in by the
+gates of this house kings sitting upon the throne of David, riding in
+chariots and on horses, he, and his servants, and his people.
+
+22:5 But if ye will not hear these words, I swear by myself, saith the
+LORD, that this house shall become a desolation.
+
+22:6 For thus saith the LORD unto the king's house of Judah; Thou art
+Gilead unto me, and the head of Lebanon: yet surely I will make thee a
+wilderness, and cities which are not inhabited.
+
+22:7 And I will prepare destroyers against thee, every one with his
+weapons: and they shall cut down thy choice cedars, and cast them into
+the fire.
+
+22:8 And many nations shall pass by this city, and they shall say
+every man to his neighbour, Wherefore hath the LORD done thus unto
+this great city? 22:9 Then they shall answer, Because they have
+forsaken the covenant of the LORD their God, and worshipped other
+gods, and served them.
+
+22:10 Weep ye not for the dead, neither bemoan him: but weep sore for
+him that goeth away: for he shall return no more, nor see his native
+country.
+
+22:11 For thus saith the LORD touching Shallum the son of Josiah king
+of Judah, which reigned instead of Josiah his father, which went forth
+out of this place; He shall not return thither any more: 22:12 But he
+shall die in the place whither they have led him captive, and shall
+see this land no more.
+
+22:13 Woe unto him that buildeth his house by unrighteousness, and his
+chambers by wrong; that useth his neighbour's service without wages,
+and giveth him not for his work; 22:14 That saith, I will build me a
+wide house and large chambers, and cutteth him out windows; and it is
+cieled with cedar, and painted with vermilion.
+
+22:15 Shalt thou reign, because thou closest thyself in cedar? did not
+thy father eat and drink, and do judgment and justice, and then it was
+well with him? 22:16 He judged the cause of the poor and needy; then
+it was well with him: was not this to know me? saith the LORD.
+
+22:17 But thine eyes and thine heart are not but for thy covetousness,
+and for to shed innocent blood, and for oppression, and for violence,
+to do it.
+
+22:18 Therefore thus saith the LORD concerning Jehoiakim the son of
+Josiah king of Judah; They shall not lament for him, saying, Ah my
+brother! or, Ah sister! they shall not lament for him, saying, Ah
+lord! or, Ah his glory! 22:19 He shall be buried with the burial of
+an ass, drawn and cast forth beyond the gates of Jerusalem.
+
+22:20 Go up to Lebanon, and cry; and lift up thy voice in Bashan, and
+cry from the passages: for all thy lovers are destroyed.
+
+22:21 I spake unto thee in thy prosperity; but thou saidst, I will not
+hear. This hath been thy manner from thy youth, that thou obeyedst not
+my voice.
+
+22:22 The wind shall eat up all thy pastors, and thy lovers shall go
+into captivity: surely then shalt thou be ashamed and confounded for
+all thy wickedness.
+
+22:23 O inhabitant of Lebanon, that makest thy nest in the cedars, how
+gracious shalt thou be when pangs come upon thee, the pain as of a
+woman in travail! 22:24 As I live, saith the LORD, though Coniah the
+son of Jehoiakim king of Judah were the signet upon my right hand, yet
+would I pluck thee thence; 22:25 And I will give thee into the hand of
+them that seek thy life, and into the hand of them whose face thou
+fearest, even into the hand of Nebuchadrezzar king of Babylon, and
+into the hand of the Chaldeans.
+
+22:26 And I will cast thee out, and thy mother that bare thee, into
+another country, where ye were not born; and there shall ye die.
+
+22:27 But to the land whereunto they desire to return, thither shall
+they not return.
+
+22:28 Is this man Coniah a despised broken idol? is he a vessel
+wherein is no pleasure? wherefore are they cast out, he and his seed,
+and are cast into a land which they know not? 22:29 O earth, earth,
+earth, hear the word of the LORD.
+
+22:30 Thus saith the LORD, Write ye this man childless, a man that
+shall not prosper in his days: for no man of his seed shall prosper,
+sitting upon the throne of David, and ruling any more in Judah.
+
+23:1 Woe be unto the pastors that destroy and scatter the sheep of my
+pasture! saith the LORD.
+
+23:2 Therefore thus saith the LORD God of Israel against the pastors
+that feed my people; Ye have scattered my flock, and driven them away,
+and have not visited them: behold, I will visit upon you the evil of
+your doings, saith the LORD.
+
+23:3 And I will gather the remnant of my flock out of all countries
+whither I have driven them, and will bring them again to their folds;
+and they shall be fruitful and increase.
+
+23:4 And I will set up shepherds over them which shall feed them: and
+they shall fear no more, nor be dismayed, neither shall they be
+lacking, saith the LORD.
+
+23:5 Behold, the days come, saith the LORD, that I will raise unto
+David a righteous Branch, and a King shall reign and prosper, and
+shall execute judgment and justice in the earth.
+
+23:6 In his days Judah shall be saved, and Israel shall dwell safely:
+and this is his name whereby he shall be called, THE LORD OUR
+RIGHTEOUSNESS.
+
+23:7 Therefore, behold, the days come, saith the LORD, that they shall
+no more say, The LORD liveth, which brought up the children of Israel
+out of the land of Egypt; 23:8 But, The LORD liveth, which brought up
+and which led the seed of the house of Israel out of the north
+country, and from all countries whither I had driven them; and they
+shall dwell in their own land.
+
+23:9 Mine heart within me is broken because of the prophets; all my
+bones shake; I am like a drunken man, and like a man whom wine hath
+overcome, because of the LORD, and because of the words of his
+holiness.
+
+23:10 For the land is full of adulterers; for because of swearing the
+land mourneth; the pleasant places of the wilderness are dried up, and
+their course is evil, and their force is not right.
+
+23:11 For both prophet and priest are profane; yea, in my house have I
+found their wickedness, saith the LORD.
+
+23:12 Wherefore their way shall be unto them as slippery ways in the
+darkness: they shall be driven on, and fall therein: for I will bring
+evil upon them, even the year of their visitation, saith the LORD.
+
+23:13 And I have seen folly in the prophets of Samaria; they
+prophesied in Baal, and caused my people Israel to err.
+
+23:14 I have seen also in the prophets of Jerusalem an horrible thing:
+they commit adultery, and walk in lies: they strengthen also the hands
+of evildoers, that none doth return from his wickedness; they are all
+of them unto me as Sodom, and the inhabitants thereof as Gomorrah.
+
+23:15 Therefore thus saith the LORD of hosts concerning the prophets;
+Behold, I will feed them with wormwood, and make them drink the water
+of gall: for from the prophets of Jerusalem is profaneness gone forth
+into all the land.
+
+23:16 Thus saith the LORD of hosts, Hearken not unto the words of the
+prophets that prophesy unto you: they make you vain: they speak a
+vision of their own heart, and not out of the mouth of the LORD.
+
+23:17 They say still unto them that despise me, The LORD hath said, Ye
+shall have peace; and they say unto every one that walketh after the
+imagination of his own heart, No evil shall come upon you.
+
+23:18 For who hath stood in the counsel of the LORD, and hath
+perceived and heard his word? who hath marked his word, and heard it?
+23:19 Behold, a whirlwind of the LORD is gone forth in fury, even a
+grievous whirlwind: it shall fall grievously upon the head of the
+wicked.
+
+23:20 The anger of the LORD shall not return, until he have executed,
+and till he have performed the thoughts of his heart: in the latter
+days ye shall consider it perfectly.
+
+23:21 I have not sent these prophets, yet they ran: I have not spoken
+to them, yet they prophesied.
+
+23:22 But if they had stood in my counsel, and had caused my people to
+hear my words, then they should have turned them from their evil way,
+and from the evil of their doings.
+
+23:23 Am I a God at hand, saith the LORD, and not a God afar off?
+23:24 Can any hide himself in secret places that I shall not see him?
+saith the LORD. Do not I fill heaven and earth? saith the LORD.
+
+23:25 I have heard what the prophets said, that prophesy lies in my
+name, saying, I have dreamed, I have dreamed.
+
+23:26 How long shall this be in the heart of the prophets that
+prophesy lies? yea, they are prophets of the deceit of their own
+heart; 23:27 Which think to cause my people to forget my name by their
+dreams which they tell every man to his neighbour, as their fathers
+have forgotten my name for Baal.
+
+23:28 The prophet that hath a dream, let him tell a dream; and he that
+hath my word, let him speak my word faithfully. What is the chaff to
+the wheat? saith the LORD.
+
+23:29 Is not my word like as a fire? saith the LORD; and like a hammer
+that breaketh the rock in pieces? 23:30 Therefore, behold, I am
+against the prophets, saith the LORD, that steal my words every one
+from his neighbour.
+
+23:31 Behold, I am against the prophets, saith the LORD, that use
+their tongues, and say, He saith.
+
+23:32 Behold, I am against them that prophesy false dreams, saith the
+LORD, and do tell them, and cause my people to err by their lies, and
+by their lightness; yet I sent them not, nor commanded them: therefore
+they shall not profit this people at all, saith the LORD.
+
+23:33 And when this people, or the prophet, or a priest, shall ask
+thee, saying, What is the burden of the LORD? thou shalt then say unto
+them, What burden? I will even forsake you, saith the LORD.
+
+23:34 And as for the prophet, and the priest, and the people, that
+shall say, The burden of the LORD, I will even punish that man and his
+house.
+
+23:35 Thus shall ye say every one to his neighbour, and every one to
+his brother, What hath the LORD answered? and, What hath the LORD
+spoken? 23:36 And the burden of the LORD shall ye mention no more:
+for every man's word shall be his burden; for ye have perverted the
+words of the living God, of the LORD of hosts our God.
+
+23:37 Thus shalt thou say to the prophet, What hath the LORD answered
+thee? and, What hath the LORD spoken? 23:38 But since ye say, The
+burden of the LORD; therefore thus saith the LORD; Because ye say this
+word, The burden of the LORD, and I have sent unto you, saying, Ye
+shall not say, The burden of the LORD; 23:39 Therefore, behold, I,
+even I, will utterly forget you, and I will forsake you, and the city
+that I gave you and your fathers, and cast you out of my presence:
+23:40 And I will bring an everlasting reproach upon you, and a
+perpetual shame, which shall not be forgotten.
+
+24:1 The LORD shewed me, and, behold, two baskets of figs were set
+before the temple of the LORD, after that Nebuchadrezzar king of
+Babylon had carried away captive Jeconiah the son of Jehoiakim king of
+Judah, and the princes of Judah, with the carpenters and smiths, from
+Jerusalem, and had brought them to Babylon.
+
+24:2 One basket had very good figs, even like the figs that are first
+ripe: and the other basket had very naughty figs, which could not be
+eaten, they were so bad.
+
+24:3 Then said the LORD unto me, What seest thou, Jeremiah? And I
+said, Figs; the good figs, very good; and the evil, very evil, that
+cannot be eaten, they are so evil.
+
+24:4 Again the word of the LORD came unto me, saying, 24:5 Thus saith
+the LORD, the God of Israel; Like these good figs, so will I
+acknowledge them that are carried away captive of Judah, whom I have
+sent out of this place into the land of the Chaldeans for their good.
+
+24:6 For I will set mine eyes upon them for good, and I will bring
+them again to this land: and I will build them, and not pull them
+down; and I will plant them, and not pluck them up.
+
+24:7 And I will give them an heart to know me, that I am the LORD: and
+they shall be my people, and I will be their God: for they shall
+return unto me with their whole heart.
+
+24:8 And as the evil figs, which cannot be eaten, they are so evil;
+surely thus saith the LORD, So will I give Zedekiah the king of Judah,
+and his princes, and the residue of Jerusalem, that remain in this
+land, and them that dwell in the land of Egypt: 24:9 And I will
+deliver them to be removed into all the kingdoms of the earth for
+their hurt, to be a reproach and a proverb, a taunt and a curse, in
+all places whither I shall drive them.
+
+24:10 And I will send the sword, the famine, and the pestilence, among
+them, till they be consumed from off the land that I gave unto them
+and to their fathers.
+
+25:1 The word that came to Jeremiah concerning all the people of Judah
+in the fourth year of Jehoiakim the son of Josiah king of Judah, that
+was the first year of Nebuchadrezzar king of Babylon; 25:2 The which
+Jeremiah the prophet spake unto all the people of Judah, and to all
+the inhabitants of Jerusalem, saying, 25:3 From the thirteenth year of
+Josiah the son of Amon king of Judah, even unto this day, that is the
+three and twentieth year, the word of the LORD hath come unto me, and
+I have spoken unto you, rising early and speaking; but ye have not
+hearkened.
+
+25:4 And the LORD hath sent unto you all his servants the prophets,
+rising early and sending them; but ye have not hearkened, nor inclined
+your ear to hear.
+
+25:5 They said, Turn ye again now every one from his evil way, and
+from the evil of your doings, and dwell in the land that the LORD hath
+given unto you and to your fathers for ever and ever: 25:6 And go not
+after other gods to serve them, and to worship them, and provoke me
+not to anger with the works of your hands; and I will do you no hurt.
+
+25:7 Yet ye have not hearkened unto me, saith the LORD; that ye might
+provoke me to anger with the works of your hands to your own hurt.
+
+25:8 Therefore thus saith the LORD of hosts; Because ye have not heard
+my words, 25:9 Behold, I will send and take all the families of the
+north, saith the LORD, and Nebuchadrezzar the king of Babylon, my
+servant, and will bring them against this land, and against the
+inhabitants thereof, and against all these nations round about, and
+will utterly destroy them, and make them an astonishment, and an
+hissing, and perpetual desolations.
+
+25:10 Moreover I will take from them the voice of mirth, and the voice
+of gladness, the voice of the bridegroom, and the voice of the bride,
+the sound of the millstones, and the light of the candle.
+
+25:11 And this whole land shall be a desolation, and an astonishment;
+and these nations shall serve the king of Babylon seventy years.
+
+25:12 And it shall come to pass, when seventy years are accomplished,
+that I will punish the king of Babylon, and that nation, saith the
+LORD, for their iniquity, and the land of the Chaldeans, and will make
+it perpetual desolations.
+
+25:13 And I will bring upon that land all my words which I have
+pronounced against it, even all that is written in this book, which
+Jeremiah hath prophesied against all the nations.
+
+25:14 For many nations and great kings shall serve themselves of them
+also: and I will recompense them according to their deeds, and
+according to the works of their own hands.
+
+25:15 For thus saith the LORD God of Israel unto me; Take the wine cup
+of this fury at my hand, and cause all the nations, to whom I send
+thee, to drink it.
+
+25:16 And they shall drink, and be moved, and be mad, because of the
+sword that I will send among them.
+
+25:17 Then took I the cup at the LORD's hand, and made all the nations
+to drink, unto whom the LORD had sent me: 25:18 To wit, Jerusalem, and
+the cities of Judah, and the kings thereof, and the princes thereof,
+to make them a desolation, an astonishment, an hissing, and a curse;
+as it is this day; 25:19 Pharaoh king of Egypt, and his servants, and
+his princes, and all his people; 25:20 And all the mingled people, and
+all the kings of the land of Uz, and all the kings of the land of the
+Philistines, and Ashkelon, and Azzah, and Ekron, and the remnant of
+Ashdod, 25:21 Edom, and Moab, and the children of Ammon, 25:22 And all
+the kings of Tyrus, and all the kings of Zidon, and the kings of the
+isles which are beyond the sea, 25:23 Dedan, and Tema, and Buz, and
+all that are in the utmost corners, 25:24 And all the kings of Arabia,
+and all the kings of the mingled people that dwell in the desert,
+25:25 And all the kings of Zimri, and all the kings of Elam, and all
+the kings of the Medes, 25:26 And all the kings of the north, far and
+near, one with another, and all the kingdoms of the world, which are
+upon the face of the earth: and the king of Sheshach shall drink after
+them.
+
+25:27 Therefore thou shalt say unto them, Thus saith the LORD of
+hosts, the God of Israel; Drink ye, and be drunken, and spue, and
+fall, and rise no more, because of the sword which I will send among
+you.
+
+25:28 And it shall be, if they refuse to take the cup at thine hand to
+drink, then shalt thou say unto them, Thus saith the LORD of hosts; Ye
+shall certainly drink.
+
+25:29 For, lo, I begin to bring evil on the city which is called by my
+name, and should ye be utterly unpunished? Ye shall not be unpunished:
+for I will call for a sword upon all the inhabitants of the earth,
+saith the LORD of hosts.
+
+25:30 Therefore prophesy thou against them all these words, and say
+unto them, The LORD shall roar from on high, and utter his voice from
+his holy habitation; he shall mightily roar upon his habitation; he
+shall give a shout, as they that tread the grapes, against all the
+inhabitants of the earth.
+
+25:31 A noise shall come even to the ends of the earth; for the LORD
+hath a controversy with the nations, he will plead with all flesh; he
+will give them that are wicked to the sword, saith the LORD.
+
+25:32 Thus saith the LORD of hosts, Behold, evil shall go forth from
+nation to nation, and a great whirlwind shall be raised up from the
+coasts of the earth.
+
+25:33 And the slain of the LORD shall be at that day from one end of
+the earth even unto the other end of the earth: they shall not be
+lamented, neither gathered, nor buried; they shall be dung upon the
+ground.
+
+25:34 Howl, ye shepherds, and cry; and wallow yourselves in the ashes,
+ye principal of the flock: for the days of your slaughter and of your
+dispersions are accomplished; and ye shall fall like a pleasant
+vessel.
+
+25:35 And the shepherds shall have no way to flee, nor the principal
+of the flock to escape.
+
+25:36 A voice of the cry of the shepherds, and an howling of the
+principal of the flock, shall be heard: for the LORD hath spoiled
+their pasture.
+
+25:37 And the peaceable habitations are cut down because of the fierce
+anger of the LORD.
+
+25:38 He hath forsaken his covert, as the lion: for their land is
+desolate because of the fierceness of the oppressor, and because of
+his fierce anger.
+
+26:1 In the beginning of the reign of Jehoiakim the son of Josiah king
+of Judah came this word from the LORD, saying, 26:2 Thus saith the
+LORD; Stand in the court of the LORD's house, and speak unto all the
+cities of Judah, which come to worship in the LORD's house, all the
+words that I command thee to speak unto them; diminish not a word:
+26:3 If so be they will hearken, and turn every man from his evil way,
+that I may repent me of the evil, which I purpose to do unto them
+because of the evil of their doings.
+
+26:4 And thou shalt say unto them, Thus saith the LORD; If ye will not
+hearken to me, to walk in my law, which I have set before you, 26:5 To
+hearken to the words of my servants the prophets, whom I sent unto
+you, both rising up early, and sending them, but ye have not
+hearkened; 26:6 Then will I make this house like Shiloh, and will make
+this city a curse to all the nations of the earth.
+
+26:7 So the priests and the prophets and all the people heard Jeremiah
+speaking these words in the house of the LORD.
+
+26:8 Now it came to pass, when Jeremiah had made an end of speaking
+all that the LORD had commanded him to speak unto all the people, that
+the priests and the prophets and all the people took him, saying, Thou
+shalt surely die.
+
+26:9 Why hast thou prophesied in the name of the LORD, saying, This
+house shall be like Shiloh, and this city shall be desolate without an
+inhabitant? And all the people were gathered against Jeremiah in the
+house of the LORD.
+
+26:10 When the princes of Judah heard these things, then they came up
+from the king's house unto the house of the LORD, and sat down in the
+entry of the new gate of the LORD's house.
+
+26:11 Then spake the priests and the prophets unto the princes and to
+all the people, saying, This man is worthy to die; for he hath
+prophesied against this city, as ye have heard with your ears.
+
+26:12 Then spake Jeremiah unto all the princes and to all the people,
+saying, The LORD sent me to prophesy against this house and against
+this city all the words that ye have heard.
+
+26:13 Therefore now amend your ways and your doings, and obey the
+voice of the LORD your God; and the LORD will repent him of the evil
+that he hath pronounced against you.
+
+26:14 As for me, behold, I am in your hand: do with me as seemeth good
+and meet unto you.
+
+26:15 But know ye for certain, that if ye put me to death, ye shall
+surely bring innocent blood upon yourselves, and upon this city, and
+upon the inhabitants thereof: for of a truth the LORD hath sent me
+unto you to speak all these words in your ears.
+
+26:16 Then said the princes and all the people unto the priests and to
+the prophets; This man is not worthy to die: for he hath spoken to us
+in the name of the LORD our God.
+
+26:17 Then rose up certain of the elders of the land, and spake to all
+the assembly of the people, saying, 26:18 Micah the Morasthite
+prophesied in the days of Hezekiah king of Judah, and spake to all the
+people of Judah, saying, Thus saith the LORD of hosts; Zion shall be
+plowed like a field, and Jerusalem shall become heaps, and the
+mountain of the house as the high places of a forest.
+
+26:19 Did Hezekiah king of Judah and all Judah put him at all to
+death? did he not fear the LORD, and besought the LORD, and the LORD
+repented him of the evil which he had pronounced against them? Thus
+might we procure great evil against our souls.
+
+26:20 And there was also a man that prophesied in the name of the
+LORD, Urijah the son of Shemaiah of Kirjathjearim, who prophesied
+against this city and against this land according to all the words of
+Jeremiah.
+
+26:21 And when Jehoiakim the king, with all his mighty men, and all
+the princes, heard his words, the king sought to put him to death: but
+when Urijah heard it, he was afraid, and fled, and went into Egypt;
+26:22 And Jehoiakim the king sent men into Egypt, namely, Elnathan the
+son of Achbor, and certain men with him into Egypt.
+
+26:23 And they fetched forth Urijah out of Egypt, and brought him unto
+Jehoiakim the king; who slew him with the sword, and cast his dead
+body into the graves of the common people.
+
+26:24 Nevertheless the hand of Ahikam the son of Shaphan was with
+Jeremiah, that they should not give him into the hand of the people to
+put him to death.
+
+27:1 In the beginning of the reign of Jehoiakim the son of Josiah king
+of Judah came this word unto Jeremiah from the LORD, saying, 27:2 Thus
+saith the LORD to me; Make thee bonds and yokes, and put them upon thy
+neck, 27:3 And send them to the king of Edom, and to the king of Moab,
+and to the king of the Ammonites, and to the king of Tyrus, and to the
+king of Zidon, by the hand of the messengers which come to Jerusalem
+unto Zedekiah king of Judah; 27:4 And command them to say unto their
+masters, Thus saith the LORD of hosts, the God of Israel; Thus shall
+ye say unto your masters; 27:5 I have made the earth, the man and the
+beast that are upon the ground, by my great power and by my
+outstretched arm, and have given it unto whom it seemed meet unto me.
+
+27:6 And now have I given all these lands into the hand of
+Nebuchadnezzar the king of Babylon, my servant; and the beasts of the
+field have I given him also to serve him.
+
+27:7 And all nations shall serve him, and his son, and his son's son,
+until the very time of his land come: and then many nations and great
+kings shall serve themselves of him.
+
+27:8 And it shall come to pass, that the nation and kingdom which will
+not serve the same Nebuchadnezzar the king of Babylon, and that will
+not put their neck under the yoke of the king of Babylon, that nation
+will I punish, saith the LORD, with the sword, and with the famine,
+and with the pestilence, until I have consumed them by his hand.
+
+27:9 Therefore hearken not ye to your prophets, nor to your diviners,
+nor to your dreamers, nor to your enchanters, nor to your sorcerers,
+which speak unto you, saying, Ye shall not serve the king of Babylon:
+27:10 For they prophesy a lie unto you, to remove you far from your
+land; and that I should drive you out, and ye should perish.
+
+27:11 But the nations that bring their neck under the yoke of the king
+of Babylon, and serve him, those will I let remain still in their own
+land, saith the LORD; and they shall till it, and dwell therein.
+
+27:12 I spake also to Zedekiah king of Judah according to all these
+words, saying, Bring your necks under the yoke of the king of Babylon,
+and serve him and his people, and live.
+
+27:13 Why will ye die, thou and thy people, by the sword, by the
+famine, and by the pestilence, as the LORD hath spoken against the
+nation that will not serve the king of Babylon? 27:14 Therefore
+hearken not unto the words of the prophets that speak unto you,
+saying, Ye shall not serve the king of Babylon: for they prophesy a
+lie unto you.
+
+27:15 For I have not sent them, saith the LORD, yet they prophesy a
+lie in my name; that I might drive you out, and that ye might perish,
+ye, and the prophets that prophesy unto you.
+
+27:16 Also I spake to the priests and to all this people, saying, Thus
+saith the LORD; Hearken not to the words of your prophets that
+prophesy unto you, saying, Behold, the vessels of the LORD's house
+shall now shortly be brought again from Babylon: for they prophesy a
+lie unto you.
+
+27:17 Hearken not unto them; serve the king of Babylon, and live:
+wherefore should this city be laid waste? 27:18 But if they be
+prophets, and if the word of the LORD be with them, let them now make
+intercession to the LORD of hosts, that the vessels which are left in
+the house of the LORD, and in the house of the king of Judah, and at
+Jerusalem, go not to Babylon.
+
+27:19 For thus saith the LORD of hosts concerning the pillars, and
+concerning the sea, and concerning the bases, and concerning the
+residue of the vessels that remain in this city.
+
+27:20 Which Nebuchadnezzar king of Babylon took not, when he carried
+away captive Jeconiah the son of Jehoiakim king of Judah from
+Jerusalem to Babylon, and all the nobles of Judah and Jerusalem; 27:21
+Yea, thus saith the LORD of hosts, the God of Israel, concerning the
+vessels that remain in the house of the LORD, and in the house of the
+king of Judah and of Jerusalem; 27:22 They shall be carried to
+Babylon, and there shall they be until the day that I visit them,
+saith the LORD; then will I bring them up, and restore them to this
+place.
+
+28:1 And it came to pass the same year, in the beginning of the reign
+of Zedekiah king of Judah, in the fourth year, and in the fifth month,
+that Hananiah the son of Azur the prophet, which was of Gibeon, spake
+unto me in the house of the LORD, in the presence of the priests and
+of all the people, saying, 28:2 Thus speaketh the LORD of hosts, the
+God of Israel, saying, I have broken the yoke of the king of Babylon.
+
+28:3 Within two full years will I bring again into this place all the
+vessels of the LORD's house, that Nebuchadnezzar king of Babylon took
+away from this place, and carried them to Babylon: 28:4 And I will
+bring again to this place Jeconiah the son of Jehoiakim king of Judah,
+with all the captives of Judah, that went into Babylon, saith the
+LORD: for I will break the yoke of the king of Babylon.
+
+28:5 Then the prophet Jeremiah said unto the prophet Hananiah in the
+presence of the priests, and in the presence of all the people that
+stood in the house of the LORD, 28:6 Even the prophet Jeremiah said,
+Amen: the LORD do so: the LORD perform thy words which thou hast
+prophesied, to bring again the vessels of the LORD's house, and all
+that is carried away captive, from Babylon into this place.
+
+28:7 Nevertheless hear thou now this word that I speak in thine ears,
+and in the ears of all the people; 28:8 The prophets that have been
+before me and before thee of old prophesied both against many
+countries, and against great kingdoms, of war, and of evil, and of
+pestilence.
+
+28:9 The prophet which prophesieth of peace, when the word of the
+prophet shall come to pass, then shall the prophet be known, that the
+LORD hath truly sent him.
+
+28:10 Then Hananiah the prophet took the yoke from off the prophet
+Jeremiah's neck, and brake it.
+
+28:11 And Hananiah spake in the presence of all the people, saying,
+Thus saith the LORD; Even so will I break the yoke of Nebuchadnezzar
+king of Babylon from the neck of all nations within the space of two
+full years. And the prophet Jeremiah went his way.
+
+28:12 Then the word of the LORD came unto Jeremiah the prophet, after
+that Hananiah the prophet had broken the yoke from off the neck of the
+prophet Jeremiah, saying, 28:13 Go and tell Hananiah, saying, Thus
+saith the LORD; Thou hast broken the yokes of wood; but thou shalt
+make for them yokes of iron.
+
+28:14 For thus saith the LORD of hosts, the God of Israel; I have put
+a yoke of iron upon the neck of all these nations, that they may serve
+Nebuchadnezzar king of Babylon; and they shall serve him: and I have
+given him the beasts of the field also.
+
+28:15 Then said the prophet Jeremiah unto Hananiah the prophet, Hear
+now, Hananiah; The LORD hath not sent thee; but thou makest this
+people to trust in a lie.
+
+28:16 Therefore thus saith the LORD; Behold, I will cast thee from off
+the face of the earth: this year thou shalt die, because thou hast
+taught rebellion against the LORD.
+
+28:17 So Hananiah the prophet died the same year in the seventh month.
+
+29:1 Now these are the words of the letter that Jeremiah the prophet
+sent from Jerusalem unto the residue of the elders which were carried
+away captives, and to the priests, and to the prophets, and to all the
+people whom Nebuchadnezzar had carried away captive from Jerusalem to
+Babylon; 29:2 (After that Jeconiah the king, and the queen, and the
+eunuchs, the princes of Judah and Jerusalem, and the carpenters, and
+the smiths, were departed from Jerusalem;) 29:3 By the hand of Elasah
+the son of Shaphan, and Gemariah the son of Hilkiah, (whom Zedekiah
+king of Judah sent unto Babylon to Nebuchadnezzar king of Babylon)
+saying, 29:4 Thus saith the LORD of hosts, the God of Israel, unto all
+that are carried away captives, whom I have caused to be carried away
+from Jerusalem unto Babylon; 29:5 Build ye houses, and dwell in them;
+and plant gardens, and eat the fruit of them; 29:6 Take ye wives, and
+beget sons and daughters; and take wives for your sons, and give your
+daughters to husbands, that they may bear sons and daughters; that ye
+may be increased there, and not diminished.
+
+29:7 And seek the peace of the city whither I have caused you to be
+carried away captives, and pray unto the LORD for it: for in the peace
+thereof shall ye have peace.
+
+29:8 For thus saith the LORD of hosts, the God of Israel; Let not your
+prophets and your diviners, that be in the midst of you, deceive you,
+neither hearken to your dreams which ye cause to be dreamed.
+
+29:9 For they prophesy falsely unto you in my name: I have not sent
+them, saith the LORD.
+
+29:10 For thus saith the LORD, That after seventy years be
+accomplished at Babylon I will visit you, and perform my good word
+toward you, in causing you to return to this place.
+
+29:11 For I know the thoughts that I think toward you, saith the LORD,
+thoughts of peace, and not of evil, to give you an expected end.
+
+29:12 Then shall ye call upon me, and ye shall go and pray unto me,
+and I will hearken unto you.
+
+29:13 And ye shall seek me, and find me, when ye shall search for me
+with all your heart.
+
+29:14 And I will be found of you, saith the LORD: and I will turn away
+your captivity, and I will gather you from all the nations, and from
+all the places whither I have driven you, saith the LORD; and I will
+bring you again into the place whence I caused you to be carried away
+captive.
+
+29:15 Because ye have said, The LORD hath raised us up prophets in
+Babylon; 29:16 Know that thus saith the LORD of the king that sitteth
+upon the throne of David, and of all the people that dwelleth in this
+city, and of your brethren that are not gone forth with you into
+captivity; 29:17 Thus saith the LORD of hosts; Behold, I will send
+upon them the sword, the famine, and the pestilence, and will make
+them like vile figs, that cannot be eaten, they are so evil.
+
+29:18 And I will persecute them with the sword, with the famine, and
+with the pestilence, and will deliver them to be removed to all the
+kingdoms of the earth, to be a curse, and an astonishment, and an
+hissing, and a reproach, among all the nations whither I have driven
+them: 29:19 Because they have not hearkened to my words, saith the
+LORD, which I sent unto them by my servants the prophets, rising up
+early and sending them; but ye would not hear, saith the LORD.
+
+29:20 Hear ye therefore the word of the LORD, all ye of the captivity,
+whom I have sent from Jerusalem to Babylon: 29:21 Thus saith the LORD
+of hosts, the God of Israel, of Ahab the son of Kolaiah, and of
+Zedekiah the son of Maaseiah, which prophesy a lie unto you in my
+name; Behold, I will deliver them into the hand of Nebuchadrezzar king
+of Babylon; and he shall slay them before your eyes; 29:22 And of them
+shall be taken up a curse by all the captivity of Judah which are in
+Babylon, saying, The LORD make thee like Zedekiah and like Ahab, whom
+the king of Babylon roasted in the fire; 29:23 Because they have
+committed villany in Israel, and have committed adultery with their
+neighbours' wives, and have spoken lying words in my name, which I
+have not commanded them; even I know, and am a witness, saith the
+LORD.
+
+29:24 Thus shalt thou also speak to Shemaiah the Nehelamite, saying,
+29:25 Thus speaketh the LORD of hosts, the God of Israel, saying,
+Because thou hast sent letters in thy name unto all the people that
+are at Jerusalem, and to Zephaniah the son of Maaseiah the priest, and
+to all the priests, saying, 29:26 The LORD hath made thee priest in
+the stead of Jehoiada the priest, that ye should be officers in the
+house of the LORD, for every man that is mad, and maketh himself a
+prophet, that thou shouldest put him in prison, and in the stocks.
+
+29:27 Now therefore why hast thou not reproved Jeremiah of Anathoth,
+which maketh himself a prophet to you? 29:28 For therefore he sent
+unto us in Babylon, saying, This captivity is long: build ye houses,
+and dwell in them; and plant gardens, and eat the fruit of them.
+
+29:29 And Zephaniah the priest read this letter in the ears of
+Jeremiah the prophet.
+
+29:30 Then came the word of the LORD unto Jeremiah, saying, 29:31 Send
+to all them of the captivity, saying, Thus saith the LORD concerning
+Shemaiah the Nehelamite; Because that Shemaiah hath prophesied unto
+you, and I sent him not, and he caused you to trust in a lie: 29:32
+Therefore thus saith the LORD; Behold, I will punish Shemaiah the
+Nehelamite, and his seed: he shall not have a man to dwell among this
+people; neither shall he behold the good that I will do for my people,
+saith the LORD; because he hath taught rebellion against the LORD.
+
+30:1 The word that came to Jeremiah from the LORD, saying, 30:2 Thus
+speaketh the LORD God of Israel, saying, Write thee all the words that
+I have spoken unto thee in a book.
+
+30:3 For, lo, the days come, saith the LORD, that I will bring again
+the captivity of my people Israel and Judah, saith the LORD: and I
+will cause them to return to the land that I gave to their fathers,
+and they shall possess it.
+
+30:4 And these are the words that the LORD spake concerning Israel and
+concerning Judah.
+
+30:5 For thus saith the LORD; We have heard a voice of trembling, of
+fear, and not of peace.
+
+30:6 Ask ye now, and see whether a man doth travail with child?
+wherefore do I see every man with his hands on his loins, as a woman
+in travail, and all faces are turned into paleness? 30:7 Alas! for
+that day is great, so that none is like it: it is even the time of
+Jacob's trouble, but he shall be saved out of it.
+
+30:8 For it shall come to pass in that day, saith the LORD of hosts,
+that I will break his yoke from off thy neck, and will burst thy
+bonds, and strangers shall no more serve themselves of him: 30:9 But
+they shall serve the LORD their God, and David their king, whom I will
+raise up unto them.
+
+30:10 Therefore fear thou not, O my servant Jacob, saith the LORD;
+neither be dismayed, O Israel: for, lo, I will save thee from afar,
+and thy seed from the land of their captivity; and Jacob shall return,
+and shall be in rest, and be quiet, and none shall make him afraid.
+
+30:11 For I am with thee, saith the LORD, to save thee: though I make
+a full end of all nations whither I have scattered thee, yet I will
+not make a full end of thee: but I will correct thee in measure, and
+will not leave thee altogether unpunished.
+
+30:12 For thus saith the LORD, Thy bruise is incurable, and thy wound
+is grievous.
+
+30:13 There is none to plead thy cause, that thou mayest be bound up:
+thou hast no healing medicines.
+
+30:14 All thy lovers have forgotten thee; they seek thee not; for I
+have wounded thee with the wound of an enemy, with the chastisement of
+a cruel one, for the multitude of thine iniquity; because thy sins
+were increased.
+
+30:15 Why criest thou for thine affliction? thy sorrow is incurable
+for the multitude of thine iniquity: because thy sins were increased,
+I have done these things unto thee.
+
+30:16 Therefore all they that devour thee shall be devoured; and all
+thine adversaries, every one of them, shall go into captivity; and
+they that spoil thee shall be a spoil, and all that prey upon thee
+will I give for a prey.
+
+30:17 For I will restore health unto thee, and I will heal thee of thy
+wounds, saith the LORD; because they called thee an Outcast, saying,
+This is Zion, whom no man seeketh after.
+
+30:18 Thus saith the LORD; Behold, I will bring again the captivity of
+Jacob's tents, and have mercy on his dwellingplaces; and the city
+shall be builded upon her own heap, and the palace shall remain after
+the manner thereof.
+
+30:19 And out of them shall proceed thanksgiving and the voice of them
+that make merry: and I will multiply them, and they shall not be few;
+I will also glorify them, and they shall not be small.
+
+30:20 Their children also shall be as aforetime, and their
+congregation shall be established before me, and I will punish all
+that oppress them.
+
+30:21 And their nobles shall be of themselves, and their governor
+shall proceed from the midst of them; and I will cause him to draw
+near, and he shall approach unto me: for who is this that engaged his
+heart to approach unto me? saith the LORD.
+
+30:22 And ye shall be my people, and I will be your God.
+
+30:23 Behold, the whirlwind of the LORD goeth forth with fury, a
+continuing whirlwind: it shall fall with pain upon the head of the
+wicked.
+
+30:24 The fierce anger of the LORD shall not return, until he hath
+done it, and until he have performed the intents of his heart: in the
+latter days ye shall consider it.
+
+31:1 At the same time, saith the LORD, will I be the God of all the
+families of Israel, and they shall be my people.
+
+31:2 Thus saith the LORD, The people which were left of the sword
+found grace in the wilderness; even Israel, when I went to cause him
+to rest.
+
+31:3 The LORD hath appeared of old unto me, saying, Yea, I have loved
+thee with an everlasting love: therefore with lovingkindness have I
+drawn thee.
+
+31:4 Again I will build thee, and thou shalt be built, O virgin of
+Israel: thou shalt again be adorned with thy tabrets, and shalt go
+forth in the dances of them that make merry.
+
+31:5 Thou shalt yet plant vines upon the mountains of Samaria: the
+planters shall plant, and shall eat them as common things.
+
+31:6 For there shall be a day, that the watchmen upon the mount
+Ephraim shall cry, Arise ye, and let us go up to Zion unto the LORD
+our God.
+
+31:7 For thus saith the LORD; Sing with gladness for Jacob, and shout
+among the chief of the nations: publish ye, praise ye, and say, O
+LORD, save thy people, the remnant of Israel.
+
+31:8 Behold, I will bring them from the north country, and gather them
+from the coasts of the earth, and with them the blind and the lame,
+the woman with child and her that travaileth with child together: a
+great company shall return thither.
+
+31:9 They shall come with weeping, and with supplications will I lead
+them: I will cause them to walk by the rivers of waters in a straight
+way, wherein they shall not stumble: for I am a father to Israel, and
+Ephraim is my firstborn.
+
+31:10 Hear the word of the LORD, O ye nations, and declare it in the
+isles afar off, and say, He that scattered Israel will gather him, and
+keep him, as a shepherd doth his flock.
+
+31:11 For the LORD hath redeemed Jacob, and ransomed him from the hand
+of him that was stronger than he.
+
+31:12 Therefore they shall come and sing in the height of Zion, and
+shall flow together to the goodness of the LORD, for wheat, and for
+wine, and for oil, and for the young of the flock and of the herd: and
+their soul shall be as a watered garden; and they shall not sorrow any
+more at all.
+
+31:13 Then shall the virgin rejoice in the dance, both young men and
+old together: for I will turn their mourning into joy, and will
+comfort them, and make them rejoice from their sorrow.
+
+31:14 And I will satiate the soul of the priests with fatness, and my
+people shall be satisfied with my goodness, saith the LORD.
+
+31:15 Thus saith the LORD; A voice was heard in Ramah, lamentation,
+and bitter weeping; Rahel weeping for her children refused to be
+comforted for her children, because they were not.
+
+31:16 Thus saith the LORD; Refrain thy voice from weeping, and thine
+eyes from tears: for thy work shall be rewarded, saith the LORD; and
+they shall come again from the land of the enemy.
+
+31:17 And there is hope in thine end, saith the LORD, that thy
+children shall come again to their own border.
+
+31:18 I have surely heard Ephraim bemoaning himself thus; Thou hast
+chastised me, and I was chastised, as a bullock unaccustomed to the
+yoke: turn thou me, and I shall be turned; for thou art the LORD my
+God.
+
+31:19 Surely after that I was turned, I repented; and after that I was
+instructed, I smote upon my thigh: I was ashamed, yea, even
+confounded, because I did bear the reproach of my youth.
+
+31:20 Is Ephraim my dear son? is he a pleasant child? for since I
+spake against him, I do earnestly remember him still: therefore my
+bowels are troubled for him; I will surely have mercy upon him, saith
+the LORD.
+
+31:21 Set thee up waymarks, make thee high heaps: set thine heart
+toward the highway, even the way which thou wentest: turn again, O
+virgin of Israel, turn again to these thy cities.
+
+31:22 How long wilt thou go about, O thou backsliding daughter? for
+the LORD hath created a new thing in the earth, A woman shall compass
+a man.
+
+31:23 Thus saith the LORD of hosts, the God of Israel; As yet they
+shall use this speech in the land of Judah and in the cities thereof,
+when I shall bring again their captivity; The LORD bless thee, O
+habitation of justice, and mountain of holiness.
+
+31:24 And there shall dwell in Judah itself, and in all the cities
+thereof together, husbandmen, and they that go forth with flocks.
+
+31:25 For I have satiated the weary soul, and I have replenished every
+sorrowful soul.
+
+31:26 Upon this I awaked, and beheld; and my sleep was sweet unto me.
+
+31:27 Behold, the days come, saith the LORD, that I will sow the house
+of Israel and the house of Judah with the seed of man, and with the
+seed of beast.
+
+31:28 And it shall come to pass, that like as I have watched over
+them, to pluck up, and to break down, and to throw down, and to
+destroy, and to afflict; so will I watch over them, to build, and to
+plant, saith the LORD.
+
+31:29 In those days they shall say no more, The fathers have eaten a
+sour grape, and the children's teeth are set on edge.
+
+31:30 But every one shall die for his own iniquity: every man that
+eateth the sour grape, his teeth shall be set on edge.
+
+31:31 Behold, the days come, saith the LORD, that I will make a new
+covenant with the house of Israel, and with the house of Judah: 31:32
+Not according to the covenant that I made with their fathers in the
+day that I took them by the hand to bring them out of the land of
+Egypt; which my covenant they brake, although I was an husband unto
+them, saith the LORD: 31:33 But this shall be the covenant that I will
+make with the house of Israel; After those days, saith the LORD, I
+will put my law in their inward parts, and write it in their hearts;
+and will be their God, and they shall be my people.
+
+31:34 And they shall teach no more every man his neighbour, and every
+man his brother, saying, Know the LORD: for they shall all know me,
+from the least of them unto the greatest of them, saith the LORD: for
+I will forgive their iniquity, and I will remember their sin no more.
+
+31:35 Thus saith the LORD, which giveth the sun for a light by day,
+and the ordinances of the moon and of the stars for a light by night,
+which divideth the sea when the waves thereof roar; The LORD of hosts
+is his name: 31:36 If those ordinances depart from before me, saith
+the LORD, then the seed of Israel also shall cease from being a nation
+before me for ever.
+
+31:37 Thus saith the LORD; If heaven above can be measured, and the
+foundations of the earth searched out beneath, I will also cast off
+all the seed of Israel for all that they have done, saith the LORD.
+
+31:38 Behold, the days come, saith the LORD, that the city shall be
+built to the LORD from the tower of Hananeel unto the gate of the
+corner.
+
+31:39 And the measuring line shall yet go forth over against it upon
+the hill Gareb, and shall compass about to Goath.
+
+31:40 And the whole valley of the dead bodies, and of the ashes, and
+all the fields unto the brook of Kidron, unto the corner of the horse
+gate toward the east, shall be holy unto the LORD; it shall not be
+plucked up, nor thrown down any more for ever.
+
+32:1 The word that came to Jeremiah from the LORD in the tenth year of
+Zedekiah king of Judah, which was the eighteenth year of
+Nebuchadrezzar.
+
+32:2 For then the king of Babylon's army besieged Jerusalem: and
+Jeremiah the prophet was shut up in the court of the prison, which was
+in the king of Judah's house.
+
+32:3 For Zedekiah king of Judah had shut him up, saying, Wherefore
+dost thou prophesy, and say, Thus saith the LORD, Behold, I will give
+this city into the hand of the king of Babylon, and he shall take it;
+32:4 And Zedekiah king of Judah shall not escape out of the hand of
+the Chaldeans, but shall surely be delivered into the hand of the king
+of Babylon, and shall speak with him mouth to mouth, and his eyes
+shall behold his eyes; 32:5 And he shall lead Zedekiah to Babylon, and
+there shall he be until I visit him, saith the LORD: though ye fight
+with the Chaldeans, ye shall not prosper.
+
+32:6 And Jeremiah said, The word of the LORD came unto me, saying,
+32:7 Behold, Hanameel the son of Shallum thine uncle shall come unto
+thee saying, Buy thee my field that is in Anathoth: for the right of
+redemption is thine to buy it.
+
+32:8 So Hanameel mine uncle's son came to me in the court of the
+prison according to the word of the LORD, and said unto me, Buy my
+field, I pray thee, that is in Anathoth, which is in the country of
+Benjamin: for the right of inheritance is thine, and the redemption is
+thine; buy it for thyself.
+
+Then I knew that this was the word of the LORD.
+
+32:9 And I bought the field of Hanameel my uncle's son, that was in
+Anathoth, and weighed him the money, even seventeen shekels of silver.
+
+32:10 And I subscribed the evidence, and sealed it, and took
+witnesses, and weighed him the money in the balances.
+
+32:11 So I took the evidence of the purchase, both that which was
+sealed according to the law and custom, and that which was open: 32:12
+And I gave the evidence of the purchase unto Baruch the son of Neriah,
+the son of Maaseiah, in the sight of Hanameel mine uncle's son, and in
+the presence of the witnesses that subscribed the book of the
+purchase, before all the Jews that sat in the court of the prison.
+
+32:13 And I charged Baruch before them, saying, 32:14 Thus saith the
+LORD of hosts, the God of Israel; Take these evidences, this evidence
+of the purchase, both which is sealed, and this evidence which is
+open; and put them in an earthen vessel, that they may continue many
+days.
+
+32:15 For thus saith the LORD of hosts, the God of Israel; Houses and
+fields and vineyards shall be possessed again in this land.
+
+32:16 Now when I had delivered the evidence of the purchase unto
+Baruch the son of Neriah, I prayed unto the LORD, saying, 32:17 Ah
+Lord GOD! behold, thou hast made the heaven and the earth by thy great
+power and stretched out arm, and there is nothing too hard for thee:
+32:18 Thou shewest lovingkindness unto thousands, and recompensest the
+iniquity of the fathers into the bosom of their children after them:
+the Great, the Mighty God, the LORD of hosts, is his name, 32:19 Great
+in counsel, and mighty in work: for thine eyes are open upon all the
+ways of the sons of men: to give every one according to his ways, and
+according to the fruit of his doings: 32:20 Which hast set signs and
+wonders in the land of Egypt, even unto this day, and in Israel, and
+among other men; and hast made thee a name, as at this day; 32:21 And
+hast brought forth thy people Israel out of the land of Egypt with
+signs, and with wonders, and with a strong hand, and with a stretched
+out arm, and with great terror; 32:22 And hast given them this land,
+which thou didst swear to their fathers to give them, a land flowing
+with milk and honey; 32:23 And they came in, and possessed it; but
+they obeyed not thy voice, neither walked in thy law; they have done
+nothing of all that thou commandedst them to do: therefore thou hast
+caused all this evil to come upon them: 32:24 Behold the mounts, they
+are come unto the city to take it; and the city is given into the hand
+of the Chaldeans, that fight against it, because of the sword, and of
+the famine, and of the pestilence: and what thou hast spoken is come
+to pass; and, behold, thou seest it.
+
+32:25 And thou hast said unto me, O Lord GOD, Buy thee the field for
+money, and take witnesses; for the city is given into the hand of the
+Chaldeans.
+
+32:26 Then came the word of the LORD unto Jeremiah, saying, 32:27
+Behold, I am the LORD, the God of all flesh: is there any thing too
+hard for me? 32:28 Therefore thus saith the LORD; Behold, I will give
+this city into the hand of the Chaldeans, and into the hand of
+Nebuchadrezzar king of Babylon, and he shall take it: 32:29 And the
+Chaldeans, that fight against this city, shall come and set fire on
+this city, and burn it with the houses, upon whose roofs they have
+offered incense unto Baal, and poured out drink offerings unto other
+gods, to provoke me to anger.
+
+32:30 For the children of Israel and the children of Judah have only
+done evil before me from their youth: for the children of Israel have
+only provoked me to anger with the work of their hands, saith the
+LORD.
+
+32:31 For this city hath been to me as a provocation of mine anger and
+of my fury from the day that they built it even unto this day; that I
+should remove it from before my face, 32:32 Because of all the evil of
+the children of Israel and of the children of Judah, which they have
+done to provoke me to anger, they, their kings, their princes, their
+priests, and their prophets, and the men of Judah, and the inhabitants
+of Jerusalem.
+
+32:33 And they have turned unto me the back, and not the face: though
+I taught them, rising up early and teaching them, yet they have not
+hearkened to receive instruction.
+
+32:34 But they set their abominations in the house, which is called by
+my name, to defile it.
+
+32:35 And they built the high places of Baal, which are in the valley
+of the son of Hinnom, to cause their sons and their daughters to pass
+through the fire unto Molech; which I commanded them not, neither came
+it into my mind, that they should do this abomination, to cause Judah
+to sin.
+
+32:36 And now therefore thus saith the LORD, the God of Israel,
+concerning this city, whereof ye say, It shall be delivered into the
+hand of the king of Babylon by the sword, and by the famine, and by
+the pestilence; 32:37 Behold, I will gather them out of all countries,
+whither I have driven them in mine anger, and in my fury, and in great
+wrath; and I will bring them again unto this place, and I will cause
+them to dwell safely: 32:38 And they shall be my people, and I will be
+their God: 32:39 And I will give them one heart, and one way, that
+they may fear me for ever, for the good of them, and of their children
+after them: 32:40 And I will make an everlasting covenant with them,
+that I will not turn away from them, to do them good; but I will put
+my fear in their hearts, that they shall not depart from me.
+
+32:41 Yea, I will rejoice over them to do them good, and I will plant
+them in this land assuredly with my whole heart and with my whole
+soul.
+
+32:42 For thus saith the LORD; Like as I have brought all this great
+evil upon this people, so will I bring upon them all the good that I
+have promised them.
+
+32:43 And fields shall be bought in this land, whereof ye say, It is
+desolate without man or beast; it is given into the hand of the
+Chaldeans.
+
+32:44 Men shall buy fields for money, and subscribe evidences, and
+seal them, and take witnesses in the land of Benjamin, and in the
+places about Jerusalem, and in the cities of Judah, and in the cities
+of the mountains, and in the cities of the valley, and in the cities
+of the south: for I will cause their captivity to return, saith the
+LORD.
+
+33:1 Moreover the word of the LORD came unto Jeremiah the second time,
+while he was yet shut up in the court of the prison, saying, 33:2 Thus
+saith the LORD the maker thereof, the LORD that formed it, to
+establish it; the LORD is his name; 33:3 Call unto me, and I will
+answer thee, and shew thee great and mighty things, which thou knowest
+not.
+
+33:4 For thus saith the LORD, the God of Israel, concerning the houses
+of this city, and concerning the houses of the kings of Judah, which
+are thrown down by the mounts, and by the sword; 33:5 They come to
+fight with the Chaldeans, but it is to fill them with the dead bodies
+of men, whom I have slain in mine anger and in my fury, and for all
+whose wickedness I have hid my face from this city.
+
+33:6 Behold, I will bring it health and cure, and I will cure them,
+and will reveal unto them the abundance of peace and truth.
+
+33:7 And I will cause the captivity of Judah and the captivity of
+Israel to return, and will build them, as at the first.
+
+33:8 And I will cleanse them from all their iniquity, whereby they
+have sinned against me; and I will pardon all their iniquities,
+whereby they have sinned, and whereby they have transgressed against
+me.
+
+33:9 And it shall be to me a name of joy, a praise and an honour
+before all the nations of the earth, which shall hear all the good
+that I do unto them: and they shall fear and tremble for all the
+goodness and for all the prosperity that I procure unto it.
+
+33:10 Thus saith the LORD; Again there shall be heard in this place,
+which ye say shall be desolate without man and without beast, even in
+the cities of Judah, and in the streets of Jerusalem, that are
+desolate, without man, and without inhabitant, and without beast,
+33:11 The voice of joy, and the voice of gladness, the voice of the
+bridegroom, and the voice of the bride, the voice of them that shall
+say, Praise the LORD of hosts: for the LORD is good; for his mercy
+endureth for ever: and of them that shall bring the sacrifice of
+praise into the house of the LORD. For I will cause to return the
+captivity of the land, as at the first, saith the LORD.
+
+33:12 Thus saith the LORD of hosts; Again in this place, which is
+desolate without man and without beast, and in all the cities thereof,
+shall be an habitation of shepherds causing their flocks to lie down.
+
+33:13 In the cities of the mountains, in the cities of the vale, and
+in the cities of the south, and in the land of Benjamin, and in the
+places about Jerusalem, and in the cities of Judah, shall the flocks
+pass again under the hands of him that telleth them, saith the LORD.
+
+33:14 Behold, the days come, saith the LORD, that I will perform that
+good thing which I have promised unto the house of Israel and to the
+house of Judah.
+
+33:15 In those days, and at that time, will I cause the Branch of
+righteousness to grow up unto David; and he shall execute judgment and
+righteousness in the land.
+
+33:16 In those days shall Judah be saved, and Jerusalem shall dwell
+safely: and this is the name wherewith she shall be called, The LORD
+our righteousness.
+
+33:17 For thus saith the LORD; David shall never want a man to sit
+upon the throne of the house of Israel; 33:18 Neither shall the
+priests the Levites want a man before me to offer burnt offerings, and
+to kindle meat offerings, and to do sacrifice continually.
+
+33:19 And the word of the LORD came unto Jeremiah, saying, 33:20 Thus
+saith the LORD; If ye can break my covenant of the day, and my
+covenant of the night, and that there should not be day and night in
+their season; 33:21 Then may also my covenant be broken with David my
+servant, that he should not have a son to reign upon his throne; and
+with the Levites the priests, my ministers.
+
+33:22 As the host of heaven cannot be numbered, neither the sand of
+the sea measured: so will I multiply the seed of David my servant, and
+the Levites that minister unto me.
+
+33:23 Moreover the word of the LORD came to Jeremiah, saying, 33:24
+Considerest thou not what this people have spoken, saying, The two
+families which the LORD hath chosen, he hath even cast them off? thus
+they have despised my people, that they should be no more a nation
+before them.
+
+33:25 Thus saith the LORD; If my covenant be not with day and night,
+and if I have not appointed the ordinances of heaven and earth; 33:26
+Then will I cast away the seed of Jacob and David my servant, so that
+I will not take any of his seed to be rulers over the seed of Abraham,
+Isaac, and Jacob: for I will cause their captivity to return, and have
+mercy on them.
+
+34:1 The word which came unto Jeremiah from the LORD, when
+Nebuchadnezzar king of Babylon, and all his army, and all the kingdoms
+of the earth of his dominion, and all the people, fought against
+Jerusalem, and against all the cities thereof, saying, 34:2 Thus saith
+the LORD, the God of Israel; Go and speak to Zedekiah king of Judah,
+and tell him, Thus saith the LORD; Behold, I will give this city into
+the hand of the king of Babylon, and he shall burn it with fire: 34:3
+And thou shalt not escape out of his hand, but shalt surely be taken,
+and delivered into his hand; and thine eyes shall behold the eyes of
+the king of Babylon, and he shall speak with thee mouth to mouth, and
+thou shalt go to Babylon.
+
+34:4 Yet hear the word of the LORD, O Zedekiah king of Judah; Thus
+saith the LORD of thee, Thou shalt not die by the sword: 34:5 But thou
+shalt die in peace: and with the burnings of thy fathers, the former
+kings which were before thee, so shall they burn odours for thee; and
+they will lament thee, saying, Ah lord! for I have pronounced the
+word, saith the LORD.
+
+34:6 Then Jeremiah the prophet spake all these words unto Zedekiah
+king of Judah in Jerusalem, 34:7 When the king of Babylon's army
+fought against Jerusalem, and against all the cities of Judah that
+were left, against Lachish, and against Azekah: for these defenced
+cities remained of the cities of Judah.
+
+34:8 This is the word that came unto Jeremiah from the LORD, after
+that the king Zedekiah had made a covenant with all the people which
+were at Jerusalem, to proclaim liberty unto them; 34:9 That every man
+should let his manservant, and every man his maidservant, being an
+Hebrew or an Hebrewess, go free; that none should serve himself of
+them, to wit, of a Jew his brother.
+
+34:10 Now when all the princes, and all the people, which had entered
+into the covenant, heard that every one should let his manservant, and
+every one his maidservant, go free, that none should serve themselves
+of them any more, then they obeyed, and let them go.
+
+34:11 But afterward they turned, and caused the servants and the
+handmaids, whom they had let go free, to return, and brought them into
+subjection for servants and for handmaids.
+
+34:12 Therefore the word of the LORD came to Jeremiah from the LORD,
+saying, 34:13 Thus saith the LORD, the God of Israel; I made a
+covenant with your fathers in the day that I brought them forth out of
+the land of Egypt, out of the house of bondmen, saying, 34:14 At the
+end of seven years let ye go every man his brother an Hebrew, which
+hath been sold unto thee; and when he hath served thee six years, thou
+shalt let him go free from thee: but your fathers hearkened not unto
+me, neither inclined their ear.
+
+34:15 And ye were now turned, and had done right in my sight, in
+proclaiming liberty every man to his neighbour; and ye had made a
+covenant before me in the house which is called by my name: 34:16 But
+ye turned and polluted my name, and caused every man his servant, and
+every man his handmaid, whom ye had set at liberty at their pleasure,
+to return, and brought them into subjection, to be unto you for
+servants and for handmaids.
+
+34:17 Therefore thus saith the LORD; Ye have not hearkened unto me, in
+proclaiming liberty, every one to his brother, and every man to his
+neighbour: behold, I proclaim a liberty for you, saith the LORD, to
+the sword, to the pestilence, and to the famine; and I will make you
+to be removed into all the kingdoms of the earth.
+
+34:18 And I will give the men that have transgressed my covenant,
+which have not performed the words of the covenant which they had made
+before me, when they cut the calf in twain, and passed between the
+parts thereof, 34:19 The princes of Judah, and the princes of
+Jerusalem, the eunuchs, and the priests, and all the people of the
+land, which passed between the parts of the calf; 34:20 I will even
+give them into the hand of their enemies, and into the hand of them
+that seek their life: and their dead bodies shall be for meat unto the
+fowls of the heaven, and to the beasts of the earth.
+
+34:21 And Zedekiah king of Judah and his princes will I give into the
+hand of their enemies, and into the hand of them that seek their life,
+and into the hand of the king of Babylon's army, which are gone up
+from you.
+
+34:22 Behold, I will command, saith the LORD, and cause them to return
+to this city; and they shall fight against it, and take it, and burn
+it with fire: and I will make the cities of Judah a desolation without
+an inhabitant.
+
+35:1 The word which came unto Jeremiah from the LORD in the days of
+Jehoiakim the son of Josiah king of Judah, saying, 35:2 Go unto the
+house of the Rechabites, and speak unto them, and bring them into the
+house of the LORD, into one of the chambers, and give them wine to
+drink.
+
+35:3 Then I took Jaazaniah the son of Jeremiah, the son of Habaziniah,
+and his brethren, and all his sons, and the whole house of the
+Rechabites; 35:4 And I brought them into the house of the LORD, into
+the chamber of the sons of Hanan, the son of Igdaliah, a man of God,
+which was by the chamber of the princes, which was above the chamber
+of Maaseiah the son of Shallum, the keeper of the door: 35:5 And I set
+before the sons of the house of the Rechabites pots full of wine, and
+cups, and I said unto them, Drink ye wine.
+
+35:6 But they said, We will drink no wine: for Jonadab the son of
+Rechab our father commanded us, saying, Ye shall drink no wine,
+neither ye, nor your sons for ever: 35:7 Neither shall ye build house,
+nor sow seed, nor plant vineyard, nor have any: but all your days ye
+shall dwell in tents; that ye may live many days in the land where ye
+be strangers.
+
+35:8 Thus have we obeyed the voice of Jonadab the son of Rechab our
+father in all that he hath charged us, to drink no wine all our days,
+we, our wives, our sons, nor our daughters; 35:9 Nor to build houses
+for us to dwell in: neither have we vineyard, nor field, nor seed:
+35:10 But we have dwelt in tents, and have obeyed, and done according
+to all that Jonadab our father commanded us.
+
+35:11 But it came to pass, when Nebuchadrezzar king of Babylon came up
+into the land, that we said, Come, and let us go to Jerusalem for fear
+of the army of the Chaldeans, and for fear of the army of the Syrians:
+so we dwell at Jerusalem.
+
+35:12 Then came the word of the LORD unto Jeremiah, saying, 35:13 Thus
+saith the LORD of hosts, the God of Israel; Go and tell the men of
+Judah and the inhabitants of Jerusalem, Will ye not receive
+instruction to hearken to my words? saith the LORD.
+
+35:14 The words of Jonadab the son of Rechab, that he commanded his
+sons not to drink wine, are performed; for unto this day they drink
+none, but obey their father's commandment: notwithstanding I have
+spoken unto you, rising early and speaking; but ye hearkened not unto
+me.
+
+35:15 I have sent also unto you all my servants the prophets, rising
+up early and sending them, saying, Return ye now every man from his
+evil way, and amend your doings, and go not after other gods to serve
+them, and ye shall dwell in the land which I have given to you and to
+your fathers: but ye have not inclined your ear, nor hearkened unto
+me.
+
+35:16 Because the sons of Jonadab the son of Rechab have performed the
+commandment of their father, which he commanded them; but this people
+hath not hearkened unto me: 35:17 Therefore thus saith the LORD God of
+hosts, the God of Israel; Behold, I will bring upon Judah and upon all
+the inhabitants of Jerusalem all the evil that I have pronounced
+against them: because I have spoken unto them, but they have not
+heard; and I have called unto them, but they have not answered.
+
+35:18 And Jeremiah said unto the house of the Rechabites, Thus saith
+the LORD of hosts, the God of Israel; Because ye have obeyed the
+commandment of Jonadab your father, and kept all his precepts, and
+done according unto all that he hath commanded you: 35:19 Therefore
+thus saith the LORD of hosts, the God of Israel; Jonadab the son of
+Rechab shall not want a man to stand before me for ever.
+
+36:1 And it came to pass in the fourth year of Jehoiakim the son of
+Josiah king of Judah, that this word came unto Jeremiah from the LORD,
+saying, 36:2 Take thee a roll of a book, and write therein all the
+words that I have spoken unto thee against Israel, and against Judah,
+and against all the nations, from the day I spake unto thee, from the
+days of Josiah, even unto this day.
+
+36:3 It may be that the house of Judah will hear all the evil which I
+purpose to do unto them; that they may return every man from his evil
+way; that I may forgive their iniquity and their sin.
+
+36:4 Then Jeremiah called Baruch the son of Neriah: and Baruch wrote
+from the mouth of Jeremiah all the words of the LORD, which he had
+spoken unto him, upon a roll of a book.
+
+36:5 And Jeremiah commanded Baruch, saying, I am shut up; I cannot go
+into the house of the LORD: 36:6 Therefore go thou, and read in the
+roll, which thou hast written from my mouth, the words of the LORD in
+the ears of the people in the LORD's house upon the fasting day: and
+also thou shalt read them in the ears of all Judah that come out of
+their cities.
+
+36:7 It may be they will present their supplication before the LORD,
+and will return every one from his evil way: for great is the anger
+and the fury that the LORD hath pronounced against this people.
+
+36:8 And Baruch the son of Neriah did according to all that Jeremiah
+the prophet commanded him, reading in the book the words of the LORD
+in the LORD's house.
+
+36:9 And it came to pass in the fifth year of Jehoiakim the son of
+Josiah king of Judah, in the ninth month, that they proclaimed a fast
+before the LORD to all the people in Jerusalem, and to all the people
+that came from the cities of Judah unto Jerusalem.
+
+36:10 Then read Baruch in the book the words of Jeremiah in the house
+of the LORD, in the chamber of Gemariah the son of Shaphan the scribe,
+in the higher court, at the entry of the new gate of the LORD's house,
+in the ears of all the people.
+
+36:11 When Michaiah the son of Gemariah, the son of Shaphan, had heard
+out of the book all the words of the LORD, 36:12 Then he went down
+into the king's house, into the scribe's chamber: and, lo, all the
+princes sat there, even Elishama the scribe, and Delaiah the son of
+Shemaiah, and Elnathan the son of Achbor, and Gemariah the son of
+Shaphan, and Zedekiah the son of Hananiah, and all the princes.
+
+36:13 Then Michaiah declared unto them all the words that he had
+heard, when Baruch read the book in the ears of the people.
+
+36:14 Therefore all the princes sent Jehudi the son of Nethaniah, the
+son of Shelemiah, the son of Cushi, unto Baruch, saying, Take in thine
+hand the roll wherein thou hast read in the ears of the people, and
+come. So Baruch the son of Neriah took the roll in his hand, and came
+unto them.
+
+36:15 And they said unto him, Sit down now, and read it in our ears.
+So Baruch read it in their ears.
+
+36:16 Now it came to pass, when they had heard all the words, they
+were afraid both one and other, and said unto Baruch, We will surely
+tell the king of all these words.
+
+36:17 And they asked Baruch, saying, Tell us now, How didst thou write
+all these words at his mouth? 36:18 Then Baruch answered them, He
+pronounced all these words unto me with his mouth, and I wrote them
+with ink in the book.
+
+36:19 Then said the princes unto Baruch, Go, hide thee, thou and
+Jeremiah; and let no man know where ye be.
+
+36:20 And they went in to the king into the court, but they laid up
+the roll in the chamber of Elishama the scribe, and told all the words
+in the ears of the king.
+
+36:21 So the king sent Jehudi to fetch the roll: and he took it out of
+Elishama the scribe's chamber. And Jehudi read it in the ears of the
+king, and in the ears of all the princes which stood beside the king.
+
+36:22 Now the king sat in the winterhouse in the ninth month: and
+there was a fire on the hearth burning before him.
+
+36:23 And it came to pass, that when Jehudi had read three or four
+leaves, he cut it with the penknife, and cast it into the fire that
+was on the hearth, until all the roll was consumed in the fire that
+was on the hearth.
+
+36:24 Yet they were not afraid, nor rent their garments, neither the
+king, nor any of his servants that heard all these words.
+
+36:25 Nevertheless Elnathan and Delaiah and Gemariah had made
+intercession to the king that he would not burn the roll: but he would
+not hear them.
+
+36:26 But the king commanded Jerahmeel the son of Hammelech, and
+Seraiah the son of Azriel, and Shelemiah the son of Abdeel, to take
+Baruch the scribe and Jeremiah the prophet: but the LORD hid them.
+
+36:27 Then the word of the LORD came to Jeremiah, after that the king
+had burned the roll, and the words which Baruch wrote at the mouth of
+Jeremiah, saying, 36:28 Take thee again another roll, and write in it
+all the former words that were in the first roll, which Jehoiakim the
+king of Judah hath burned.
+
+36:29 And thou shalt say to Jehoiakim king of Judah, Thus saith the
+LORD; Thou hast burned this roll, saying, Why hast thou written
+therein, saying, The king of Babylon shall certainly come and destroy
+this land, and shall cause to cease from thence man and beast? 36:30
+Therefore thus saith the LORD of Jehoiakim king of Judah; He shall
+have none to sit upon the throne of David: and his dead body shall be
+cast out in the day to the heat, and in the night to the frost.
+
+36:31 And I will punish him and his seed and his servants for their
+iniquity; and I will bring upon them, and upon the inhabitants of
+Jerusalem, and upon the men of Judah, all the evil that I have
+pronounced against them; but they hearkened not.
+
+36:32 Then took Jeremiah another roll, and gave it to Baruch the
+scribe, the son of Neriah; who wrote therein from the mouth of
+Jeremiah all the words of the book which Jehoiakim king of Judah had
+burned in the fire: and there were added besides unto them many like
+words.
+
+37:1 And king Zedekiah the son of Josiah reigned instead of Coniah the
+son of Jehoiakim, whom Nebuchadrezzar king of Babylon made king in the
+land of Judah.
+
+37:2 But neither he, nor his servants, nor the people of the land, did
+hearken unto the words of the LORD, which he spake by the prophet
+Jeremiah.
+
+37:3 And Zedekiah the king sent Jehucal the son of Shelemiah and
+Zephaniah the son of Maaseiah the priest to the prophet Jeremiah,
+saying, Pray now unto the LORD our God for us.
+
+37:4 Now Jeremiah came in and went out among the people: for they had
+not put him into prison.
+
+37:5 Then Pharaoh's army was come forth out of Egypt: and when the
+Chaldeans that besieged Jerusalem heard tidings of them, they departed
+from Jerusalem.
+
+37:6 Then came the word of the LORD unto the prophet Jeremiah saying,
+37:7 Thus saith the LORD, the God of Israel; Thus shall ye say to the
+king of Judah, that sent you unto me to enquire of me; Behold,
+Pharaoh's army, which is come forth to help you, shall return to Egypt
+into their own land.
+
+37:8 And the Chaldeans shall come again, and fight against this city,
+and take it, and burn it with fire.
+
+37:9 Thus saith the LORD; Deceive not yourselves, saying, The
+Chaldeans shall surely depart from us: for they shall not depart.
+
+37:10 For though ye had smitten the whole army of the Chaldeans that
+fight against you, and there remained but wounded men among them, yet
+should they rise up every man in his tent, and burn this city with
+fire.
+
+37:11 And it came to pass, that when the army of the Chaldeans was
+broken up from Jerusalem for fear of Pharaoh's army, 37:12 Then
+Jeremiah went forth out of Jerusalem to go into the land of Benjamin,
+to separate himself thence in the midst of the people.
+
+37:13 And when he was in the gate of Benjamin, a captain of the ward
+was there, whose name was Irijah, the son of Shelemiah, the son of
+Hananiah; and he took Jeremiah the prophet, saying, Thou fallest away
+to the Chaldeans.
+
+37:14 Then said Jeremiah, It is false; I fall not away to the
+Chaldeans.
+
+But he hearkened not to him: so Irijah took Jeremiah, and brought him
+to the princes.
+
+37:15 Wherefore the princes were wroth with Jeremiah, and smote him,
+and put him in prison in the house of Jonathan the scribe: for they
+had made that the prison.
+
+37:16 When Jeremiah was entered into the dungeon, and into the cabins,
+and Jeremiah had remained there many days; 37:17 Then Zedekiah the
+king sent, and took him out: and the king asked him secretly in his
+house, and said, Is there any word from the LORD? And Jeremiah said,
+There is: for, said he, thou shalt be delivered into the hand of the
+king of Babylon.
+
+37:18 Moreover Jeremiah said unto king Zedekiah, What have I offended
+against thee, or against thy servants, or against this people, that ye
+have put me in prison? 37:19 Where are now your prophets which
+prophesied unto you, saying, The king of Babylon shall not come
+against you, nor against this land? 37:20 Therefore hear now, I pray
+thee, O my lord the king: let my supplication, I pray thee, be
+accepted before thee; that thou cause me not to return to the house of
+Jonathan the scribe, lest I die there.
+
+37:21 Then Zedekiah the king commanded that they should commit
+Jeremiah into the court of the prison, and that they should give him
+daily a piece of bread out of the bakers' street, until all the bread
+in the city were spent.
+
+Thus Jeremiah remained in the court of the prison.
+
+38:1 Then Shephatiah the son of Mattan, and Gedaliah the son of
+Pashur, and Jucal the son of Shelemiah, and Pashur the son of
+Malchiah, heard the words that Jeremiah had spoken unto all the
+people, saying, 38:2 Thus saith the LORD, He that remaineth in this
+city shall die by the sword, by the famine, and by the pestilence: but
+he that goeth forth to the Chaldeans shall live; for he shall have his
+life for a prey, and shall live.
+
+38:3 Thus saith the LORD, This city shall surely be given into the
+hand of the king of Babylon's army, which shall take it.
+
+38:4 Therefore the princes said unto the king, We beseech thee, let
+this man be put to death: for thus he weakeneth the hands of the men
+of war that remain in this city, and the hands of all the people, in
+speaking such words unto them: for this man seeketh not the welfare of
+this people, but the hurt.
+
+38:5 Then Zedekiah the king said, Behold, he is in your hand: for the
+king is not he that can do any thing against you.
+
+38:6 Then took they Jeremiah, and cast him into the dungeon of
+Malchiah the son of Hammelech, that was in the court of the prison:
+and they let down Jeremiah with cords. And in the dungeon there was no
+water, but mire: so Jeremiah sunk in the mire.
+
+38:7 Now when Ebedmelech the Ethiopian, one of the eunuchs which was
+in the king's house, heard that they had put Jeremiah in the dungeon;
+the king then sitting in the gate of Benjamin; 38:8 Ebedmelech went
+forth out of the king's house, and spake to the king saying, 38:9 My
+lord the king, these men have done evil in all that they have done to
+Jeremiah the prophet, whom they have cast into the dungeon; and he is
+like to die for hunger in the place where he is: for there is no more
+bread in the city.
+
+38:10 Then the king commanded Ebedmelech the Ethiopian, saying, Take
+from hence thirty men with thee, and take up Jeremiah the prophet out
+of the dungeon, before he die.
+
+38:11 So Ebedmelech took the men with him, and went into the house of
+the king under the treasury, and took thence old cast clouts and old
+rotten rags, and let them down by cords into the dungeon to Jeremiah.
+
+38:12 And Ebedmelech the Ethiopian said unto Jeremiah, Put now these
+old cast clouts and rotten rags under thine armholes under the cords.
+And Jeremiah did so.
+
+38:13 So they drew up Jeremiah with cords, and took him up out of the
+dungeon: and Jeremiah remained in the court of the prison.
+
+38:14 Then Zedekiah the king sent, and took Jeremiah the prophet unto
+him into the third entry that is in the house of the LORD: and the
+king said unto Jeremiah, I will ask thee a thing; hide nothing from
+me.
+
+38:15 Then Jeremiah said unto Zedekiah, If I declare it unto thee,
+wilt thou not surely put me to death? and if I give thee counsel, wilt
+thou not hearken unto me? 38:16 So Zedekiah the king sware secretly
+unto Jeremiah, saying, As the LORD liveth, that made us this soul, I
+will not put thee to death, neither will I give thee into the hand of
+these men that seek thy life.
+
+38:17 Then said Jeremiah unto Zedekiah, Thus saith the LORD, the God
+of hosts, the God of Israel; If thou wilt assuredly go forth unto the
+king of Babylon's princes, then thy soul shall live, and this city
+shall not be burned with fire; and thou shalt live, and thine house:
+38:18 But if thou wilt not go forth to the king of Babylon's princes,
+then shall this city be given into the hand of the Chaldeans, and they
+shall burn it with fire, and thou shalt not escape out of their hand.
+
+38:19 And Zedekiah the king said unto Jeremiah, I am afraid of the
+Jews that are fallen to the Chaldeans, lest they deliver me into their
+hand, and they mock me.
+
+38:20 But Jeremiah said, They shall not deliver thee. Obey, I beseech
+thee, the voice of the LORD, which I speak unto thee: so it shall be
+well unto thee, and thy soul shall live.
+
+38:21 But if thou refuse to go forth, this is the word that the LORD
+hath shewed me: 38:22 And, behold, all the women that are left in the
+king of Judah's house shall be brought forth to the king of Babylon's
+princes, and those women shall say, Thy friends have set thee on, and
+have prevailed against thee: thy feet are sunk in the mire, and they
+are turned away back.
+
+38:23 So they shall bring out all thy wives and thy children to the
+Chaldeans: and thou shalt not escape out of their hand, but shalt be
+taken by the hand of the king of Babylon: and thou shalt cause this
+city to be burned with fire.
+
+38:24 Then said Zedekiah unto Jeremiah, Let no man know of these
+words, and thou shalt not die.
+
+38:25 But if the princes hear that I have talked with thee, and they
+come unto thee, and say unto thee, Declare unto us now what thou hast
+said unto the king, hide it not from us, and we will not put thee to
+death; also what the king said unto thee: 38:26 Then thou shalt say
+unto them, I presented my supplication before the king, that he would
+not cause me to return to Jonathan's house, to die there.
+
+38:27 Then came all the princes unto Jeremiah, and asked him: and he
+told them according to all these words that the king had commanded. So
+they left off speaking with him; for the matter was not perceived.
+
+38:28 So Jeremiah abode in the court of the prison until the day that
+Jerusalem was taken: and he was there when Jerusalem was taken.
+
+39:1 In the ninth year of Zedekiah king of Judah, in the tenth month,
+came Nebuchadrezzar king of Babylon and all his army against
+Jerusalem, and they besieged it.
+
+39:2 And in the eleventh year of Zedekiah, in the fourth month, the
+ninth day of the month, the city was broken up.
+
+39:3 And all the princes of the king of Babylon came in, and sat in
+the middle gate, even Nergalsharezer, Samgarnebo, Sarsechim, Rabsaris,
+Nergalsharezer, Rabmag, with all the residue of the princes of the
+king of Babylon.
+
+39:4 And it came to pass, that when Zedekiah the king of Judah saw
+them, and all the men of war, then they fled, and went forth out of
+the city by night, by the way of the king's garden, by the gate
+betwixt the two walls: and he went out the way of the plain.
+
+39:5 But the Chaldeans' army pursued after them, and overtook Zedekiah
+in the plains of Jericho: and when they had taken him, they brought
+him up to Nebuchadnezzar king of Babylon to Riblah in the land of
+Hamath, where he gave judgment upon him.
+
+39:6 Then the king of Babylon slew the sons of Zedekiah in Riblah
+before his eyes: also the king of Babylon slew all the nobles of
+Judah.
+
+39:7 Moreover he put out Zedekiah's eyes, and bound him with chains,
+to carry him to Babylon.
+
+39:8 And the Chaldeans burned the king's house, and the houses of the
+people, with fire, and brake down the walls of Jerusalem.
+
+39:9 Then Nebuzaradan the captain of the guard carried away captive
+into Babylon the remnant of the people that remained in the city, and
+those that fell away, that fell to him, with the rest of the people
+that remained.
+
+39:10 But Nebuzaradan the captain of the guard left of the poor of the
+people, which had nothing, in the land of Judah, and gave them
+vineyards and fields at the same time.
+
+39:11 Now Nebuchadrezzar king of Babylon gave charge concerning
+Jeremiah to Nebuzaradan the captain of the guard, saying, 39:12 Take
+him, and look well to him, and do him no harm; but do unto him even as
+he shall say unto thee.
+
+39:13 So Nebuzaradan the captain of the guard sent, and Nebushasban,
+Rabsaris, and Nergalsharezer, Rabmag, and all the king of Babylon's
+princes; 39:14 Even they sent, and took Jeremiah out of the court of
+the prison, and committed him unto Gedaliah the son of Ahikam the son
+of Shaphan, that he should carry him home: so he dwelt among the
+people.
+
+39:15 Now the word of the LORD came unto Jeremiah, while he was shut
+up in the court of the prison, saying, 39:16 Go and speak to
+Ebedmelech the Ethiopian, saying, Thus saith the LORD of hosts, the
+God of Israel; Behold, I will bring my words upon this city for evil,
+and not for good; and they shall be accomplished in that day before
+thee.
+
+39:17 But I will deliver thee in that day, saith the LORD: and thou
+shalt not be given into the hand of the men of whom thou art afraid.
+
+39:18 For I will surely deliver thee, and thou shalt not fall by the
+sword, but thy life shall be for a prey unto thee: because thou hast
+put thy trust in me, saith the LORD.
+
+40:1 The word that came to Jeremiah from the LORD, after that
+Nebuzaradan the captain of the guard had let him go from Ramah, when
+he had taken him being bound in chains among all that were carried
+away captive of Jerusalem and Judah, which were carried away captive
+unto Babylon.
+
+40:2 And the captain of the guard took Jeremiah, and said unto him,
+The LORD thy God hath pronounced this evil upon this place.
+
+40:3 Now the LORD hath brought it, and done according as he hath said:
+because ye have sinned against the LORD, and have not obeyed his
+voice, therefore this thing is come upon you.
+
+40:4 And now, behold, I loose thee this day from the chains which were
+upon thine hand. If it seem good unto thee to come with me into
+Babylon, come; and I will look well unto thee: but if it seem ill unto
+thee to come with me into Babylon, forbear: behold, all the land is
+before thee: whither it seemeth good and convenient for thee to go,
+thither go.
+
+40:5 Now while he was not yet gone back, he said, Go back also to
+Gedaliah the son of Ahikam the son of Shaphan, whom the king of
+Babylon hath made governor over the cities of Judah, and dwell with
+him among the people: or go wheresoever it seemeth convenient unto
+thee to go. So the captain of the guard gave him victuals and a
+reward, and let him go.
+
+40:6 Then went Jeremiah unto Gedaliah the son of Ahikam to Mizpah; and
+dwelt with him among the people that were left in the land.
+
+40:7 Now when all the captains of the forces which were in the fields,
+even they and their men, heard that the king of Babylon had made
+Gedaliah the son of Ahikam governor in the land, and had committed
+unto him men, and women, and children, and of the poor of the land, of
+them that were not carried away captive to Babylon; 40:8 Then they
+came to Gedaliah to Mizpah, even Ishmael the son of Nethaniah, and
+Johanan and Jonathan the sons of Kareah, and Seraiah the son of
+Tanhumeth, and the sons of Ephai the Netophathite, and Jezaniah the
+son of a Maachathite, they and their men.
+
+40:9 And Gedaliah the son of Ahikam the son of Shaphan sware unto them
+and to their men, saying, Fear not to serve the Chaldeans: dwell in
+the land, and serve the king of Babylon, and it shall be well with
+you.
+
+40:10 As for me, behold, I will dwell at Mizpah, to serve the
+Chaldeans, which will come unto us: but ye, gather ye wine, and summer
+fruits, and oil, and put them in your vessels, and dwell in your
+cities that ye have taken.
+
+40:11 Likewise when all the Jews that were in Moab, and among the
+Ammonites, and in Edom, and that were in all the countries, heard that
+the king of Babylon had left a remnant of Judah, and that he had set
+over them Gedaliah the son of Ahikam the son of Shaphan; 40:12 Even
+all the Jews returned out of all places whither they were driven, and
+came to the land of Judah, to Gedaliah, unto Mizpah, and gathered wine
+and summer fruits very much.
+
+40:13 Moreover Johanan the son of Kareah, and all the captains of the
+forces that were in the fields, came to Gedaliah to Mizpah, 40:14 And
+said unto him, Dost thou certainly know that Baalis the king of the
+Ammonites hath sent Ishmael the son of Nethaniah to slay thee? But
+Gedaliah the son of Ahikam believed them not.
+
+40:15 Then Johanan the son of Kareah spake to Gedaliah in Mizpah
+secretly saying, Let me go, I pray thee, and I will slay Ishmael the
+son of Nethaniah, and no man shall know it: wherefore should he slay
+thee, that all the Jews which are gathered unto thee should be
+scattered, and the remnant in Judah perish? 40:16 But Gedaliah the
+son of Ahikam said unto Johanan the son of Kareah, Thou shalt not do
+this thing: for thou speakest falsely of Ishmael.
+
+41:1 Now it came to pass in the seventh month, that Ishmael the son of
+Nethaniah the son of Elishama, of the seed royal, and the princes of
+the king, even ten men with him, came unto Gedaliah the son of Ahikam
+to Mizpah; and there they did eat bread together in Mizpah.
+
+41:2 Then arose Ishmael the son of Nethaniah, and the ten men that
+were with him, and smote Gedaliah the son of Ahikam the son of Shaphan
+with the sword, and slew him, whom the king of Babylon had made
+governor over the land.
+
+41:3 Ishmael also slew all the Jews that were with him, even with
+Gedaliah, at Mizpah, and the Chaldeans that were found there, and the
+men of war.
+
+41:4 And it came to pass the second day after he had slain Gedaliah,
+and no man knew it, 41:5 That there came certain from Shechem, from
+Shiloh, and from Samaria, even fourscore men, having their beards
+shaven, and their clothes rent, and having cut themselves, with
+offerings and incense in their hand, to bring them to the house of the
+LORD.
+
+41:6 And Ishmael the son of Nethaniah went forth from Mizpah to meet
+them, weeping all along as he went: and it came to pass, as he met
+them, he said unto them, Come to Gedaliah the son of Ahikam.
+
+41:7 And it was so, when they came into the midst of the city, that
+Ishmael the son of Nethaniah slew them, and cast them into the midst
+of the pit, he, and the men that were with him.
+
+41:8 But ten men were found among them that said unto Ishmael, Slay us
+not: for we have treasures in the field, of wheat, and of barley, and
+of oil, and of honey. So he forbare, and slew them not among their
+brethren.
+
+41:9 Now the pit wherein Ishmael had cast all the dead bodies of the
+men, whom he had slain because of Gedaliah, was it which Asa the king
+had made for fear of Baasha king of Israel: and Ishmael the son of
+Nethaniah filled it with them that were slain.
+
+41:10 Then Ishmael carried away captive all the residue of the people
+that were in Mizpah, even the king's daughters, and all the people
+that remained in Mizpah, whom Nebuzaradan the captain of the guard had
+committed to Gedaliah the son of Ahikam: and Ishmael the son of
+Nethaniah carried them away captive, and departed to go over to the
+Ammonites.
+
+41:11 But when Johanan the son of Kareah, and all the captains of the
+forces that were with him, heard of all the evil that Ishmael the son
+of Nethaniah had done, 41:12 Then they took all the men, and went to
+fight with Ishmael the son of Nethaniah, and found him by the great
+waters that are in Gibeon.
+
+41:13 Now it came to pass, that when all the people which were with
+Ishmael saw Johanan the son of Kareah, and all the captains of the
+forces that were with him, then they were glad.
+
+41:14 So all the people that Ishmael had carried away captive from
+Mizpah cast about and returned, and went unto Johanan the son of
+Kareah.
+
+41:15 But Ishmael the son of Nethaniah escaped from Johanan with eight
+men, and went to the Ammonites.
+
+41:16 Then took Johanan the son of Kareah, and all the captains of the
+forces that were with him, all the remnant of the people whom he had
+recovered from Ishmael the son of Nethaniah, from Mizpah, after that
+he had slain Gedaliah the son of Ahikam, even mighty men of war, and
+the women, and the children, and the eunuchs, whom he had brought
+again from Gibeon: 41:17 And they departed, and dwelt in the
+habitation of Chimham, which is by Bethlehem, to go to enter into
+Egypt, 41:18 Because of the Chaldeans: for they were afraid of them,
+because Ishmael the son of Nethaniah had slain Gedaliah the son of
+Ahikam, whom the king of Babylon made governor in the land.
+
+42:1 Then all the captains of the forces, and Johanan the son of
+Kareah, and Jezaniah the son of Hoshaiah, and all the people from the
+least even unto the greatest, came near, 42:2 And said unto Jeremiah
+the prophet, Let, we beseech thee, our supplication be accepted before
+thee, and pray for us unto the LORD thy God, even for all this
+remnant; (for we are left but a few of many, as thine eyes do behold
+us:) 42:3 That the LORD thy God may shew us the way wherein we may
+walk, and the thing that we may do.
+
+42:4 Then Jeremiah the prophet said unto them, I have heard you;
+behold, I will pray unto the LORD your God according to your words;
+and it shall come to pass, that whatsoever thing the LORD shall answer
+you, I will declare it unto you; I will keep nothing back from you.
+
+42:5 Then they said to Jeremiah, The LORD be a true and faithful
+witness between us, if we do not even according to all things for the
+which the LORD thy God shall send thee to us.
+
+42:6 Whether it be good, or whether it be evil, we will obey the voice
+of the LORD our God, to whom we send thee; that it may be well with
+us, when we obey the voice of the LORD our God.
+
+42:7 And it came to pass after ten days, that the word of the LORD
+came unto Jeremiah.
+
+42:8 Then called he Johanan the son of Kareah, and all the captains of
+the forces which were with him, and all the people from the least even
+to the greatest, 42:9 And said unto them, Thus saith the LORD, the God
+of Israel, unto whom ye sent me to present your supplication before
+him; 42:10 If ye will still abide in this land, then will I build you,
+and not pull you down, and I will plant you, and not pluck you up: for
+I repent me of the evil that I have done unto you.
+
+42:11 Be not afraid of the king of Babylon, of whom ye are afraid; be
+not afraid of him, saith the LORD: for I am with you to save you, and
+to deliver you from his hand.
+
+42:12 And I will shew mercies unto you, that he may have mercy upon
+you, and cause you to return to your own land.
+
+42:13 But if ye say, We will not dwell in this land, neither obey the
+voice of the LORD your God, 42:14 Saying, No; but we will go into the
+land of Egypt, where we shall see no war, nor hear the sound of the
+trumpet, nor have hunger of bread; and there will we dwell: 42:15 And
+now therefore hear the word of the LORD, ye remnant of Judah; Thus
+saith the LORD of hosts, the God of Israel; If ye wholly set your
+faces to enter into Egypt, and go to sojourn there; 42:16 Then it
+shall come to pass, that the sword, which ye feared, shall overtake
+you there in the land of Egypt, and the famine, whereof ye were
+afraid, shall follow close after you there in Egypt; and there ye
+shall die.
+
+42:17 So shall it be with all the men that set their faces to go into
+Egypt to sojourn there; they shall die by the sword, by the famine,
+and by the pestilence: and none of them shall remain or escape from
+the evil that I will bring upon them.
+
+42:18 For thus saith the LORD of hosts, the God of Israel; As mine
+anger and my fury hath been poured forth upon the inhabitants of
+Jerusalem; so shall my fury be poured forth upon you, when ye shall
+enter into Egypt: and ye shall be an execration, and an astonishment,
+and a curse, and a reproach; and ye shall see this place no more.
+
+42:19 The LORD hath said concerning you, O ye remnant of Judah; Go ye
+not into Egypt: know certainly that I have admonished you this day.
+
+42:20 For ye dissembled in your hearts, when ye sent me unto the LORD
+your God, saying, Pray for us unto the LORD our God; and according
+unto all that the LORD our God shall say, so declare unto us, and we
+will do it.
+
+42:21 And now I have this day declared it to you; but ye have not
+obeyed the voice of the LORD your God, nor any thing for the which he
+hath sent me unto you.
+
+42:22 Now therefore know certainly that ye shall die by the sword, by
+the famine, and by the pestilence, in the place whither ye desire to
+go and to sojourn.
+
+43:1 And it came to pass, that when Jeremiah had made an end of
+speaking unto all the people all the words of the LORD their God, for
+which the LORD their God had sent him to them, even all these words,
+43:2 Then spake Azariah the son of Hoshaiah, and Johanan the son of
+Kareah, and all the proud men, saying unto Jeremiah, Thou speakest
+falsely: the LORD our God hath not sent thee to say, Go not into Egypt
+to sojourn there: 43:3 But Baruch the son of Neriah setteth thee on
+against us, for to deliver us into the hand of the Chaldeans, that
+they might put us to death, and carry us away captives into Babylon.
+
+43:4 So Johanan the son of Kareah, and all the captains of the forces,
+and all the people, obeyed not the voice of the LORD, to dwell in the
+land of Judah.
+
+43:5 But Johanan the son of Kareah, and all the captains of the
+forces, took all the remnant of Judah, that were returned from all
+nations, whither they had been driven, to dwell in the land of Judah;
+43:6 Even men, and women, and children, and the king's daughters, and
+every person that Nebuzaradan the captain of the guard had left with
+Gedaliah the son of Ahikam the son of Shaphan, and Jeremiah the
+prophet, and Baruch the son of Neriah.
+
+43:7 So they came into the land of Egypt: for they obeyed not the
+voice of the LORD: thus came they even to Tahpanhes.
+
+43:8 Then came the word of the LORD unto Jeremiah in Tahpanhes,
+saying, 43:9 Take great stones in thine hand, and hide them in the
+clay in the brickkiln, which is at the entry of Pharaoh's house in
+Tahpanhes, in the sight of the men of Judah; 43:10 And say unto them,
+Thus saith the LORD of hosts, the God of Israel; Behold, I will send
+and take Nebuchadrezzar the king of Babylon, my servant, and will set
+his throne upon these stones that I have hid; and he shall spread his
+royal pavilion over them.
+
+43:11 And when he cometh, he shall smite the land of Egypt, and
+deliver such as are for death to death; and such as are for captivity
+to captivity; and such as are for the sword to the sword.
+
+43:12 And I will kindle a fire in the houses of the gods of Egypt; and
+he shall burn them, and carry them away captives: and he shall array
+himself with the land of Egypt, as a shepherd putteth on his garment;
+and he shall go forth from thence in peace.
+
+43:13 He shall break also the images of Bethshemesh, that is in the
+land of Egypt; and the houses of the gods of the Egyptians shall he
+burn with fire.
+
+44:1 The word that came to Jeremiah concerning all the Jews which
+dwell in the land of Egypt, which dwell at Migdol, and at Tahpanhes,
+and at Noph, and in the country of Pathros, saying, 44:2 Thus saith
+the LORD of hosts, the God of Israel; Ye have seen all the evil that I
+have brought upon Jerusalem, and upon all the cities of Judah; and,
+behold, this day they are a desolation, and no man dwelleth therein,
+44:3 Because of their wickedness which they have committed to provoke
+me to anger, in that they went to burn incense, and to serve other
+gods, whom they knew not, neither they, ye, nor your fathers.
+
+44:4 Howbeit I sent unto you all my servants the prophets, rising
+early and sending them, saying, Oh, do not this abominable thing that
+I hate.
+
+44:5 But they hearkened not, nor inclined their ear to turn from their
+wickedness, to burn no incense unto other gods.
+
+44:6 Wherefore my fury and mine anger was poured forth, and was
+kindled in the cities of Judah and in the streets of Jerusalem; and
+they are wasted and desolate, as at this day.
+
+44:7 Therefore now thus saith the LORD, the God of hosts, the God of
+Israel; Wherefore commit ye this great evil against your souls, to cut
+off from you man and woman, child and suckling, out of Judah, to leave
+you none to remain; 44:8 In that ye provoke me unto wrath with the
+works of your hands, burning incense unto other gods in the land of
+Egypt, whither ye be gone to dwell, that ye might cut yourselves off,
+and that ye might be a curse and a reproach among all the nations of
+the earth? 44:9 Have ye forgotten the wickedness of your fathers, and
+the wickedness of the kings of Judah, and the wickedness of their
+wives, and your own wickedness, and the wickedness of your wives,
+which they have committed in the land of Judah, and in the streets of
+Jerusalem? 44:10 They are not humbled even unto this day, neither
+have they feared, nor walked in my law, nor in my statutes, that I set
+before you and before your fathers.
+
+44:11 Therefore thus saith the LORD of hosts, the God of Israel;
+Behold, I will set my face against you for evil, and to cut off all
+Judah.
+
+44:12 And I will take the remnant of Judah, that have set their faces
+to go into the land of Egypt to sojourn there, and they shall all be
+consumed, and fall in the land of Egypt; they shall even be consumed
+by the sword and by the famine: they shall die, from the least even
+unto the greatest, by the sword and by the famine: and they shall be
+an execration, and an astonishment, and a curse, and a reproach.
+
+44:13 For I will punish them that dwell in the land of Egypt, as I
+have punished Jerusalem, by the sword, by the famine, and by the
+pestilence: 44:14 So that none of the remnant of Judah, which are gone
+into the land of Egypt to sojourn there, shall escape or remain, that
+they should return into the land of Judah, to the which they have a
+desire to return to dwell there: for none shall return but such as
+shall escape.
+
+44:15 Then all the men which knew that their wives had burned incense
+unto other gods, and all the women that stood by, a great multitude,
+even all the people that dwelt in the land of Egypt, in Pathros,
+answered Jeremiah, saying, 44:16 As for the word that thou hast spoken
+unto us in the name of the LORD, we will not hearken unto thee.
+
+44:17 But we will certainly do whatsoever thing goeth forth out of our
+own mouth, to burn incense unto the queen of heaven, and to pour out
+drink offerings unto her, as we have done, we, and our fathers, our
+kings, and our princes, in the cities of Judah, and in the streets of
+Jerusalem: for then had we plenty of victuals, and were well, and saw
+no evil.
+
+44:18 But since we left off to burn incense to the queen of heaven,
+and to pour out drink offerings unto her, we have wanted all things,
+and have been consumed by the sword and by the famine.
+
+44:19 And when we burned incense to the queen of heaven, and poured
+out drink offerings unto her, did we make her cakes to worship her,
+and pour out drink offerings unto her, without our men? 44:20 Then
+Jeremiah said unto all the people, to the men, and to the women, and
+to all the people which had given him that answer, saying, 44:21 The
+incense that ye burned in the cities of Judah, and in the streets of
+Jerusalem, ye, and your fathers, your kings, and your princes, and the
+people of the land, did not the LORD remember them, and came it not
+into his mind? 44:22 So that the LORD could no longer bear, because
+of the evil of your doings, and because of the abominations which ye
+have committed; therefore is your land a desolation, and an
+astonishment, and a curse, without an inhabitant, as at this day.
+
+44:23 Because ye have burned incense, and because ye have sinned
+against the LORD, and have not obeyed the voice of the LORD, nor
+walked in his law, nor in his statutes, nor in his testimonies;
+therefore this evil is happened unto you, as at this day.
+
+44:24 Moreover Jeremiah said unto all the people, and to all the
+women, Hear the word of the LORD, all Judah that are in the land of
+Egypt: 44:25 Thus saith the LORD of hosts, the God of Israel, saying;
+Ye and your wives have both spoken with your mouths, and fulfilled
+with your hand, saying, We will surely perform our vows that we have
+vowed, to burn incense to the queen of heaven, and to pour out drink
+offerings unto her: ye will surely accomplish your vows, and surely
+perform your vows.
+
+44:26 Therefore hear ye the word of the LORD, all Judah that dwell in
+the land of Egypt; Behold, I have sworn by my great name, saith the
+LORD, that my name shall no more be named in the mouth of any man of
+Judah in all the land of Egypt, saying, The Lord GOD liveth.
+
+44:27 Behold, I will watch over them for evil, and not for good: and
+all the men of Judah that are in the land of Egypt shall be consumed
+by the sword and by the famine, until there be an end of them.
+
+44:28 Yet a small number that escape the sword shall return out of the
+land of Egypt into the land of Judah, and all the remnant of Judah,
+that are gone into the land of Egypt to sojourn there, shall know
+whose words shall stand, mine, or their's.
+
+44:29 And this shall be a sign unto you, saith the LORD, that I will
+punish you in this place, that ye may know that my words shall surely
+stand against you for evil: 44:30 Thus saith the LORD; Behold, I will
+give Pharaohhophra king of Egypt into the hand of his enemies, and
+into the hand of them that seek his life; as I gave Zedekiah king of
+Judah into the hand of Nebuchadrezzar king of Babylon, his enemy, and
+that sought his life.
+
+45:1 The word that Jeremiah the prophet spake unto Baruch the son of
+Neriah, when he had written these words in a book at the mouth of
+Jeremiah, in the fourth year of Jehoiakim the son of Josiah king of
+Judah, saying, 45:2 Thus saith the LORD, the God of Israel, unto thee,
+O Baruch: 45:3 Thou didst say, Woe is me now! for the LORD hath added
+grief to my sorrow; I fainted in my sighing, and I find no rest.
+
+45:4 Thus shalt thou say unto him, The LORD saith thus; Behold, that
+which I have built will I break down, and that which I have planted I
+will pluck up, even this whole land.
+
+45:5 And seekest thou great things for thyself? seek them not: for,
+behold, I will bring evil upon all flesh, saith the LORD: but thy life
+will I give unto thee for a prey in all places whither thou goest.
+
+46:1 The word of the LORD which came to Jeremiah the prophet against
+the Gentiles; 46:2 Against Egypt, against the army of Pharaohnecho
+king of Egypt, which was by the river Euphrates in Carchemish, which
+Nebuchadrezzar king of Babylon smote in the fourth year of Jehoiakim
+the son of Josiah king of Judah.
+
+46:3 Order ye the buckler and shield, and draw near to battle.
+
+46:4 Harness the horses; and get up, ye horsemen, and stand forth with
+your helmets; furbish the spears, and put on the brigandines.
+
+46:5 Wherefore have I seen them dismayed and turned away back? and
+their mighty ones are beaten down, and are fled apace, and look not
+back: for fear was round about, saith the LORD.
+
+46:6 Let not the swift flee away, nor the mighty man escape; they
+shall stumble, and fall toward the north by the river Euphrates.
+
+46:7 Who is this that cometh up as a flood, whose waters are moved as
+the rivers? 46:8 Egypt riseth up like a flood, and his waters are
+moved like the rivers; and he saith, I will go up, and will cover the
+earth; I will destroy the city and the inhabitants thereof.
+
+46:9 Come up, ye horses; and rage, ye chariots; and let the mighty men
+come forth; the Ethiopians and the Libyans, that handle the shield;
+and the Lydians, that handle and bend the bow.
+
+46:10 For this is the day of the Lord GOD of hosts, a day of
+vengeance, that he may avenge him of his adversaries: and the sword
+shall devour, and it shall be satiate and made drunk with their blood:
+for the Lord GOD of hosts hath a sacrifice in the north country by the
+river Euphrates.
+
+46:11 Go up into Gilead, and take balm, O virgin, the daughter of
+Egypt: in vain shalt thou use many medicines; for thou shalt not be
+cured.
+
+46:12 The nations have heard of thy shame, and thy cry hath filled the
+land: for the mighty man hath stumbled against the mighty, and they
+are fallen both together.
+
+46:13 The word that the LORD spake to Jeremiah the prophet, how
+Nebuchadrezzar king of Babylon should come and smite the land of
+Egypt.
+
+46:14 Declare ye in Egypt, and publish in Migdol, and publish in Noph
+and in Tahpanhes: say ye, Stand fast, and prepare thee; for the sword
+shall devour round about thee.
+
+46:15 Why are thy valiant men swept away? they stood not, because the
+LORD did drive them.
+
+46:16 He made many to fall, yea, one fell upon another: and they said,
+Arise, and let us go again to our own people, and to the land of our
+nativity, from the oppressing sword.
+
+46:17 They did cry there, Pharaoh king of Egypt is but a noise; he
+hath passed the time appointed.
+
+46:18 As I live, saith the King, whose name is the LORD of hosts,
+Surely as Tabor is among the mountains, and as Carmel by the sea, so
+shall he come.
+
+46:19 O thou daughter dwelling in Egypt, furnish thyself to go into
+captivity: for Noph shall be waste and desolate without an inhabitant.
+
+46:20 Egypt is like a very fair heifer, but destruction cometh; it
+cometh out of the north.
+
+46:21 Also her hired men are in the midst of her like fatted bullocks;
+for they also are turned back, and are fled away together: they did
+not stand, because the day of their calamity was come upon them, and
+the time of their visitation.
+
+46:22 The voice thereof shall go like a serpent; for they shall march
+with an army, and come against her with axes, as hewers of wood.
+
+46:23 They shall cut down her forest, saith the LORD, though it cannot
+be searched; because they are more than the grasshoppers, and are
+innumerable.
+
+46:24 The daughter of Egypt shall be confounded; she shall be
+delivered into the hand of the people of the north.
+
+46:25 The LORD of hosts, the God of Israel, saith; Behold, I will
+punish the multitude of No, and Pharaoh, and Egypt, with their gods,
+and their kings; even Pharaoh, and all them that trust in him: 46:26
+And I will deliver them into the hand of those that seek their lives,
+and into the hand of Nebuchadrezzar king of Babylon, and into the hand
+of his servants: and afterward it shall be inhabited, as in the days
+of old, saith the LORD.
+
+46:27 But fear not thou, O my servant Jacob, and be not dismayed, O
+Israel: for, behold, I will save thee from afar off, and thy seed from
+the land of their captivity; and Jacob shall return, and be in rest
+and at ease, and none shall make him afraid.
+
+46:28 Fear thou not, O Jacob my servant, saith the LORD: for I am with
+thee; for I will make a full end of all the nations whither I have
+driven thee: but I will not make a full end of thee, but correct thee
+in measure; yet will I not leave thee wholly unpunished.
+
+47:1 The word of the LORD that came to Jeremiah the prophet against
+the Philistines, before that Pharaoh smote Gaza.
+
+47:2 Thus saith the LORD; Behold, waters rise up out of the north, and
+shall be an overflowing flood, and shall overflow the land, and all
+that is therein; the city, and them that dwell therein: then the men
+shall cry, and all the inhabitants of the land shall howl.
+
+47:3 At the noise of the stamping of the hoofs of his strong horses,
+at the rushing of his chariots, and at the rumbling of his wheels, the
+fathers shall not look back to their children for feebleness of hands;
+47:4 Because of the day that cometh to spoil all the Philistines, and
+to cut off from Tyrus and Zidon every helper that remaineth: for the
+LORD will spoil the Philistines, the remnant of the country of
+Caphtor.
+
+47:5 Baldness is come upon Gaza; Ashkelon is cut off with the remnant
+of their valley: how long wilt thou cut thyself? 47:6 O thou sword of
+the LORD, how long will it be ere thou be quiet? put up thyself into
+thy scabbard, rest, and be still.
+
+47:7 How can it be quiet, seeing the LORD hath given it a charge
+against Ashkelon, and against the sea shore? there hath he appointed
+it.
+
+48:1 Against Moab thus saith the LORD of hosts, the God of Israel; Woe
+unto Nebo! for it is spoiled: Kiriathaim is confounded and taken:
+Misgab is confounded and dismayed.
+
+48:2 There shall be no more praise of Moab: in Heshbon they have
+devised evil against it; come, and let us cut it off from being a
+nation. Also thou shalt be cut down, O Madmen; the sword shall pursue
+thee.
+
+48:3 A voice of crying shall be from Horonaim, spoiling and great
+destruction.
+
+48:4 Moab is destroyed; her little ones have caused a cry to be heard.
+
+48:5 For in the going up of Luhith continual weeping shall go up; for
+in the going down of Horonaim the enemies have heard a cry of
+destruction.
+
+48:6 Flee, save your lives, and be like the heath in the wilderness.
+
+48:7 For because thou hast trusted in thy works and in thy treasures,
+thou shalt also be taken: and Chemosh shall go forth into captivity
+with his priests and his princes together.
+
+48:8 And the spoiler shall come upon every city, and no city shall
+escape: the valley also shall perish, and the plain shall be
+destroyed, as the LORD hath spoken.
+
+48:9 Give wings unto Moab, that it may flee and get away: for the
+cities thereof shall be desolate, without any to dwell therein.
+
+48:10 Cursed be he that doeth the work of the LORD deceitfully, and
+cursed be he that keepeth back his sword from blood.
+
+48:11 Moab hath been at ease from his youth, and he hath settled on
+his lees, and hath not been emptied from vessel to vessel, neither
+hath he gone into captivity: therefore his taste remained in him, and
+his scent is not changed.
+
+48:12 Therefore, behold, the days come, saith the LORD, that I will
+send unto him wanderers, that shall cause him to wander, and shall
+empty his vessels, and break their bottles.
+
+48:13 And Moab shall be ashamed of Chemosh, as the house of Israel was
+ashamed of Bethel their confidence.
+
+48:14 How say ye, We are mighty and strong men for the war? 48:15
+Moab is spoiled, and gone up out of her cities, and his chosen young
+men are gone down to the slaughter, saith the King, whose name is the
+LORD of hosts.
+
+48:16 The calamity of Moab is near to come, and his affliction hasteth
+fast.
+
+48:17 All ye that are about him, bemoan him; and all ye that know his
+name, say, How is the strong staff broken, and the beautiful rod!
+48:18 Thou daughter that dost inhabit Dibon, come down from thy glory,
+and sit in thirst; for the spoiler of Moab shall come upon thee, and
+he shall destroy thy strong holds.
+
+48:19 O inhabitant of Aroer, stand by the way, and espy; ask him that
+fleeth, and her that escapeth, and say, What is done? 48:20 Moab is
+confounded; for it is broken down: howl and cry; tell ye it in Arnon,
+that Moab is spoiled, 48:21 And judgment is come upon the plain
+country; upon Holon, and upon Jahazah, and upon Mephaath, 48:22 And
+upon Dibon, and upon Nebo, and upon Bethdiblathaim, 48:23 And upon
+Kiriathaim, and upon Bethgamul, and upon Bethmeon, 48:24 And upon
+Kerioth, and upon Bozrah, and upon all the cities of the land of Moab,
+far or near.
+
+48:25 The horn of Moab is cut off, and his arm is broken, saith the
+LORD.
+
+48:26 Make ye him drunken: for he magnified himself against the LORD:
+Moab also shall wallow in his vomit, and he also shall be in derision.
+
+48:27 For was not Israel a derision unto thee? was he found among
+thieves? for since thou spakest of him, thou skippedst for joy.
+
+48:28 O ye that dwell in Moab, leave the cities, and dwell in the
+rock, and be like the dove that maketh her nest in the sides of the
+hole's mouth.
+
+48:29 We have heard the pride of Moab, (he is exceeding proud) his
+loftiness, and his arrogancy, and his pride, and the haughtiness of
+his heart.
+
+48:30 I know his wrath, saith the LORD; but it shall not be so; his
+lies shall not so effect it.
+
+48:31 Therefore will I howl for Moab, and I will cry out for all Moab;
+mine heart shall mourn for the men of Kirheres.
+
+48:32 O vine of Sibmah, I will weep for thee with the weeping of
+Jazer: thy plants are gone over the sea, they reach even to the sea of
+Jazer: the spoiler is fallen upon thy summer fruits and upon thy
+vintage.
+
+48:33 And joy and gladness is taken from the plentiful field, and from
+the land of Moab, and I have caused wine to fail from the winepresses:
+none shall tread with shouting; their shouting shall be no shouting.
+
+48:34 From the cry of Heshbon even unto Elealeh, and even unto Jahaz,
+have they uttered their voice, from Zoar even unto Horonaim, as an
+heifer of three years old: for the waters also of Nimrim shall be
+desolate.
+
+48:35 Moreover I will cause to cease in Moab, saith the LORD, him that
+offereth in the high places, and him that burneth incense to his gods.
+
+48:36 Therefore mine heart shall sound for Moab like pipes, and mine
+heart shall sound like pipes for the men of Kirheres: because the
+riches that he hath gotten are perished.
+
+48:37 For every head shall be bald, and every beard clipped: upon all
+the hands shall be cuttings, and upon the loins sackcloth.
+
+48:38 There shall be lamentation generally upon all the housetops of
+Moab, and in the streets thereof: for I have broken Moab like a vessel
+wherein is no pleasure, saith the LORD.
+
+48:39 They shall howl, saying, How is it broken down! how hath Moab
+turned the back with shame! so shall Moab be a derision and a
+dismaying to all them about him.
+
+48:40 For thus saith the LORD; Behold, he shall fly as an eagle, and
+shall spread his wings over Moab.
+
+48:41 Kerioth is taken, and the strong holds are surprised, and the
+mighty men's hearts in Moab at that day shall be as the heart of a
+woman in her pangs.
+
+48:42 And Moab shall be destroyed from being a people, because he hath
+magnified himself against the LORD.
+
+48:43 Fear, and the pit, and the snare, shall be upon thee, O
+inhabitant of Moab, saith the LORD.
+
+48:44 He that fleeth from the fear shall fall into the pit; and he
+that getteth up out of the pit shall be taken in the snare: for I will
+bring upon it, even upon Moab, the year of their visitation, saith the
+LORD.
+
+48:45 They that fled stood under the shadow of Heshbon because of the
+force: but a fire shall come forth out of Heshbon, and a flame from
+the midst of Sihon, and shall devour the corner of Moab, and the crown
+of the head of the tumultuous ones.
+
+48:46 Woe be unto thee, O Moab! the people of Chemosh perisheth: for
+thy sons are taken captives, and thy daughters captives.
+
+48:47 Yet will I bring again the captivity of Moab in the latter days,
+saith the LORD. Thus far is the judgment of Moab.
+
+49:1 Concerning the Ammonites, thus saith the LORD; Hath Israel no
+sons? hath he no heir? why then doth their king inherit Gad, and his
+people dwell in his cities? 49:2 Therefore, behold, the days come,
+saith the LORD, that I will cause an alarm of war to be heard in
+Rabbah of the Ammonites; and it shall be a desolate heap, and her
+daughters shall be burned with fire: then shall Israel be heir unto
+them that were his heirs, saith the LORD.
+
+49:3 Howl, O Heshbon, for Ai is spoiled: cry, ye daughters of Rabbah,
+gird you with sackcloth; lament, and run to and fro by the hedges; for
+their king shall go into captivity, and his priests and his princes
+together.
+
+49:4 Wherefore gloriest thou in the valleys, thy flowing valley, O
+backsliding daughter? that trusted in her treasures, saying, Who shall
+come unto me? 49:5 Behold, I will bring a fear upon thee, saith the
+Lord GOD of hosts, from all those that be about thee; and ye shall be
+driven out every man right forth; and none shall gather up him that
+wandereth.
+
+49:6 And afterward I will bring again the captivity of the children of
+Ammon, saith the LORD.
+
+49:7 Concerning Edom, thus saith the LORD of hosts; Is wisdom no more
+in Teman? is counsel perished from the prudent? is their wisdom
+vanished? 49:8 Flee ye, turn back, dwell deep, O inhabitants of
+Dedan; for I will bring the calamity of Esau upon him, the time that I
+will visit him.
+
+49:9 If grapegatherers come to thee, would they not leave some
+gleaning grapes? if thieves by night, they will destroy till they have
+enough.
+
+49:10 But I have made Esau bare, I have uncovered his secret places,
+and he shall not be able to hide himself: his seed is spoiled, and his
+brethren, and his neighbours, and he is not.
+
+49:11 Leave thy fatherless children, I will preserve them alive; and
+let thy widows trust in me.
+
+49:12 For thus saith the LORD; Behold, they whose judgment was not to
+drink of the cup have assuredly drunken; and art thou he that shall
+altogether go unpunished? thou shalt not go unpunished, but thou shalt
+surely drink of it.
+
+49:13 For I have sworn by myself, saith the LORD, that Bozrah shall
+become a desolation, a reproach, a waste, and a curse; and all the
+cities thereof shall be perpetual wastes.
+
+49:14 I have heard a rumour from the LORD, and an ambassador is sent
+unto the heathen, saying, Gather ye together, and come against her,
+and rise up to the battle.
+
+49:15 For, lo, I will make thee small among the heathen, and despised
+among men.
+
+49:16 Thy terribleness hath deceived thee, and the pride of thine
+heart, O thou that dwellest in the clefts of the rock, that holdest
+the height of the hill: though thou shouldest make thy nest as high as
+the eagle, I will bring thee down from thence, saith the LORD.
+
+49:17 Also Edom shall be a desolation: every one that goeth by it
+shall be astonished, and shall hiss at all the plagues thereof.
+
+49:18 As in the overthrow of Sodom and Gomorrah and the neighbour
+cities thereof, saith the LORD, no man shall abide there, neither
+shall a son of man dwell in it.
+
+49:19 Behold, he shall come up like a lion from the swelling of Jordan
+against the habitation of the strong: but I will suddenly make him run
+away from her: and who is a chosen man, that I may appoint over her?
+for who is like me? and who will appoint me the time? and who is that
+shepherd that will stand before me? 49:20 Therefore hear the counsel
+of the LORD, that he hath taken against Edom; and his purposes, that
+he hath purposed against the inhabitants of Teman: Surely the least of
+the flock shall draw them out: surely he shall make their habitations
+desolate with them.
+
+49:21 The earth is moved at the noise of their fall, at the cry the
+noise thereof was heard in the Red sea.
+
+49:22 Behold, he shall come up and fly as the eagle, and spread his
+wings over Bozrah: and at that day shall the heart of the mighty men
+of Edom be as the heart of a woman in her pangs.
+
+49:23 Concerning Damascus. Hamath is confounded, and Arpad: for they
+have heard evil tidings: they are fainthearted; there is sorrow on the
+sea; it cannot be quiet.
+
+49:24 Damascus is waxed feeble, and turneth herself to flee, and fear
+hath seized on her: anguish and sorrows have taken her, as a woman in
+travail.
+
+49:25 How is the city of praise not left, the city of my joy! 49:26
+Therefore her young men shall fall in her streets, and all the men of
+war shall be cut off in that day, saith the LORD of hosts.
+
+49:27 And I will kindle a fire in the wall of Damascus, and it shall
+consume the palaces of Benhadad.
+
+49:28 Concerning Kedar, and concerning the kingdoms of Hazor, which
+Nebuchadrezzar king of Babylon shall smite, thus saith the LORD; Arise
+ye, go up to Kedar, and spoil the men of the east.
+
+49:29 Their tents and their flocks shall they take away: they shall
+take to themselves their curtains, and all their vessels, and their
+camels; and they shall cry unto them, Fear is on every side.
+
+49:30 Flee, get you far off, dwell deep, O ye inhabitants of Hazor,
+saith the LORD; for Nebuchadrezzar king of Babylon hath taken counsel
+against you, and hath conceived a purpose against you.
+
+49:31 Arise, get you up unto the wealthy nation, that dwelleth without
+care, saith the LORD, which have neither gates nor bars, which dwell
+alone.
+
+49:32 And their camels shall be a booty, and the multitude of their
+cattle a spoil: and I will scatter into all winds them that are in the
+utmost corners; and I will bring their calamity from all sides
+thereof, saith the LORD.
+
+49:33 And Hazor shall be a dwelling for dragons, and a desolation for
+ever: there shall no man abide there, nor any son of man dwell in it.
+
+49:34 The word of the LORD that came to Jeremiah the prophet against
+Elam in the beginning of the reign of Zedekiah king of Judah, saying,
+49:35 Thus saith the LORD of hosts; Behold, I will break the bow of
+Elam, the chief of their might.
+
+49:36 And upon Elam will I bring the four winds from the four quarters
+of heaven, and will scatter them toward all those winds; and there
+shall be no nation whither the outcasts of Elam shall not come.
+
+49:37 For I will cause Elam to be dismayed before their enemies, and
+before them that seek their life: and I will bring evil upon them,
+even my fierce anger, saith the LORD; and I will send the sword after
+them, till I have consumed them: 49:38 And I will set my throne in
+Elam, and will destroy from thence the king and the princes, saith the
+LORD.
+
+49:39 But it shall come to pass in the latter days, that I will bring
+again the captivity of Elam, saith the LORD.
+
+50:1 The word that the LORD spake against Babylon and against the land
+of the Chaldeans by Jeremiah the prophet.
+
+50:2 Declare ye among the nations, and publish, and set up a standard;
+publish, and conceal not: say, Babylon is taken, Bel is confounded,
+Merodach is broken in pieces; her idols are confounded, her images are
+broken in pieces.
+
+50:3 For out of the north there cometh up a nation against her, which
+shall make her land desolate, and none shall dwell therein: they shall
+remove, they shall depart, both man and beast.
+
+50:4 In those days, and in that time, saith the LORD, the children of
+Israel shall come, they and the children of Judah together, going and
+weeping: they shall go, and seek the LORD their God.
+
+50:5 They shall ask the way to Zion with their faces thitherward,
+saying, Come, and let us join ourselves to the LORD in a perpetual
+covenant that shall not be forgotten.
+
+50:6 My people hath been lost sheep: their shepherds have caused them
+to go astray, they have turned them away on the mountains: they have
+gone from mountain to hill, they have forgotten their restingplace.
+
+50:7 All that found them have devoured them: and their adversaries
+said, We offend not, because they have sinned against the LORD, the
+habitation of justice, even the LORD, the hope of their fathers.
+
+50:8 Remove out of the midst of Babylon, and go forth out of the land
+of the Chaldeans, and be as the he goats before the flocks.
+
+50:9 For, lo, I will raise and cause to come up against Babylon an
+assembly of great nations from the north country: and they shall set
+themselves in array against her; from thence she shall be taken: their
+arrows shall be as of a mighty expert man; none shall return in vain.
+
+50:10 And Chaldea shall be a spoil: all that spoil her shall be
+satisfied, saith the LORD.
+
+50:11 Because ye were glad, because ye rejoiced, O ye destroyers of
+mine heritage, because ye are grown fat as the heifer at grass, and
+bellow as bulls; 50:12 Your mother shall be sore confounded; she that
+bare you shall be ashamed: behold, the hindermost of the nations shall
+be a wilderness, a dry land, and a desert.
+
+50:13 Because of the wrath of the LORD it shall not be inhabited, but
+it shall be wholly desolate: every one that goeth by Babylon shall be
+astonished, and hiss at all her plagues.
+
+50:14 Put yourselves in array against Babylon round about: all ye that
+bend the bow, shoot at her, spare no arrows: for she hath sinned
+against the LORD.
+
+50:15 Shout against her round about: she hath given her hand: her
+foundations are fallen, her walls are thrown down: for it is the
+vengeance of the LORD: take vengeance upon her; as she hath done, do
+unto her.
+
+50:16 Cut off the sower from Babylon, and him that handleth the sickle
+in the time of harvest: for fear of the oppressing sword they shall
+turn every one to his people, and they shall flee every one to his own
+land.
+
+50:17 Israel is a scattered sheep; the lions have driven him away:
+first the king of Assyria hath devoured him; and last this
+Nebuchadrezzar king of Babylon hath broken his bones.
+
+50:18 Therefore thus saith the LORD of hosts, the God of Israel;
+Behold, I will punish the king of Babylon and his land, as I have
+punished the king of Assyria.
+
+50:19 And I will bring Israel again to his habitation, and he shall
+feed on Carmel and Bashan, and his soul shall be satisfied upon mount
+Ephraim and Gilead.
+
+50:20 In those days, and in that time, saith the LORD, the iniquity of
+Israel shall be sought for, and there shall be none; and the sins of
+Judah, and they shall not be found: for I will pardon them whom I
+reserve.
+
+50:21 Go up against the land of Merathaim, even against it, and
+against the inhabitants of Pekod: waste and utterly destroy after
+them, saith the LORD, and do according to all that I have commanded
+thee.
+
+50:22 A sound of battle is in the land, and of great destruction.
+
+50:23 How is the hammer of the whole earth cut asunder and broken! how
+is Babylon become a desolation among the nations! 50:24 I have laid a
+snare for thee, and thou art also taken, O Babylon, and thou wast not
+aware: thou art found, and also caught, because thou hast striven
+against the LORD.
+
+50:25 The LORD hath opened his armoury, and hath brought forth the
+weapons of his indignation: for this is the work of the Lord GOD of
+hosts in the land of the Chaldeans.
+
+50:26 Come against her from the utmost border, open her storehouses:
+cast her up as heaps, and destroy her utterly: let nothing of her be
+left.
+
+50:27 Slay all her bullocks; let them go down to the slaughter: woe
+unto them! for their day is come, the time of their visitation.
+
+50:28 The voice of them that flee and escape out of the land of
+Babylon, to declare in Zion the vengeance of the LORD our God, the
+vengeance of his temple.
+
+50:29 Call together the archers against Babylon: all ye that bend the
+bow, camp against it round about; let none thereof escape: recompense
+her according to her work; according to all that she hath done, do
+unto her: for she hath been proud against the LORD, against the Holy
+One of Israel.
+
+50:30 Therefore shall her young men fall in the streets, and all her
+men of war shall be cut off in that day, saith the LORD.
+
+50:31 Behold, I am against thee, O thou most proud, saith the Lord GOD
+of hosts: for thy day is come, the time that I will visit thee.
+
+50:32 And the most proud shall stumble and fall, and none shall raise
+him up: and I will kindle a fire in his cities, and it shall devour
+all round about him.
+
+50:33 Thus saith the LORD of hosts; The children of Israel and the
+children of Judah were oppressed together: and all that took them
+captives held them fast; they refused to let them go.
+
+50:34 Their Redeemer is strong; the LORD of hosts is his name: he
+shall throughly plead their cause, that he may give rest to the land,
+and disquiet the inhabitants of Babylon.
+
+50:35 A sword is upon the Chaldeans, saith the LORD, and upon the
+inhabitants of Babylon, and upon her princes, and upon her wise men.
+
+50:36 A sword is upon the liars; and they shall dote: a sword is upon
+her mighty men; and they shall be dismayed.
+
+50:37 A sword is upon their horses, and upon their chariots, and upon
+all the mingled people that are in the midst of her; and they shall
+become as women: a sword is upon her treasures; and they shall be
+robbed.
+
+50:38 A drought is upon her waters; and they shall be dried up: for it
+is the land of graven images, and they are mad upon their idols.
+
+50:39 Therefore the wild beasts of the desert with the wild beasts of
+the islands shall dwell there, and the owls shall dwell therein: and
+it shall be no more inhabited for ever; neither shall it be dwelt in
+from generation to generation.
+
+50:40 As God overthrew Sodom and Gomorrah and the neighbour cities
+thereof, saith the LORD; so shall no man abide there, neither shall
+any son of man dwell therein.
+
+50:41 Behold, a people shall come from the north, and a great nation,
+and many kings shall be raised up from the coasts of the earth.
+
+50:42 They shall hold the bow and the lance: they are cruel, and will
+not shew mercy: their voice shall roar like the sea, and they shall
+ride upon horses, every one put in array, like a man to the battle,
+against thee, O daughter of Babylon.
+
+50:43 The king of Babylon hath heard the report of them, and his hands
+waxed feeble: anguish took hold of him, and pangs as of a woman in
+travail.
+
+50:44 Behold, he shall come up like a lion from the swelling of Jordan
+unto the habitation of the strong: but I will make them suddenly run
+away from her: and who is a chosen man, that I may appoint over her?
+for who is like me? and who will appoint me the time? and who is that
+shepherd that will stand before me? 50:45 Therefore hear ye the
+counsel of the LORD, that he hath taken against Babylon; and his
+purposes, that he hath purposed against the land of the Chaldeans:
+Surely the least of the flock shall draw them out: surely he shall
+make their habitation desolate with them.
+
+50:46 At the noise of the taking of Babylon the earth is moved, and
+the cry is heard among the nations.
+
+51:1 Thus saith the LORD; Behold, I will raise up against Babylon, and
+against them that dwell in the midst of them that rise up against me,
+a destroying wind; 51:2 And will send unto Babylon fanners, that shall
+fan her, and shall empty her land: for in the day of trouble they
+shall be against her round about.
+
+51:3 Against him that bendeth let the archer bend his bow, and against
+him that lifteth himself up in his brigandine: and spare ye not her
+young men; destroy ye utterly all her host.
+
+51:4 Thus the slain shall fall in the land of the Chaldeans, and they
+that are thrust through in her streets.
+
+51:5 For Israel hath not been forsaken, nor Judah of his God, of the
+LORD of hosts; though their land was filled with sin against the Holy
+One of Israel.
+
+51:6 Flee out of the midst of Babylon, and deliver every man his soul:
+be not cut off in her iniquity; for this is the time of the LORD's
+vengeance; he will render unto her a recompence.
+
+51:7 Babylon hath been a golden cup in the LORD's hand, that made all
+the earth drunken: the nations have drunken of her wine; therefore the
+nations are mad.
+
+51:8 Babylon is suddenly fallen and destroyed: howl for her; take balm
+for her pain, if so be she may be healed.
+
+51:9 We would have healed Babylon, but she is not healed: forsake her,
+and let us go every one into his own country: for her judgment
+reacheth unto heaven, and is lifted up even to the skies.
+
+51:10 The LORD hath brought forth our righteousness: come, and let us
+declare in Zion the work of the LORD our God.
+
+51:11 Make bright the arrows; gather the shields: the LORD hath raised
+up the spirit of the kings of the Medes: for his device is against
+Babylon, to destroy it; because it is the vengeance of the LORD, the
+vengeance of his temple.
+
+51:12 Set up the standard upon the walls of Babylon, make the watch
+strong, set up the watchmen, prepare the ambushes: for the LORD hath
+both devised and done that which he spake against the inhabitants of
+Babylon.
+
+51:13 O thou that dwellest upon many waters, abundant in treasures,
+thine end is come, and the measure of thy covetousness.
+
+51:14 The LORD of hosts hath sworn by himself, saying, Surely I will
+fill thee with men, as with caterpillers; and they shall lift up a
+shout against thee.
+
+51:15 He hath made the earth by his power, he hath established the
+world by his wisdom, and hath stretched out the heaven by his
+understanding.
+
+51:16 When he uttereth his voice, there is a multitude of waters in
+the heavens; and he causeth the vapours to ascend from the ends of the
+earth: he maketh lightnings with rain, and bringeth forth the wind out
+of his treasures.
+
+51:17 Every man is brutish by his knowledge; every founder is
+confounded by the graven image: for his molten image is falsehood, and
+there is no breath in them.
+
+51:18 They are vanity, the work of errors: in the time of their
+visitation they shall perish.
+
+51:19 The portion of Jacob is not like them; for he is the former of
+all things: and Israel is the rod of his inheritance: the LORD of
+hosts is his name.
+
+51:20 Thou art my battle axe and weapons of war: for with thee will I
+break in pieces the nations, and with thee will I destroy kingdoms;
+51:21 And with thee will I break in pieces the horse and his rider;
+and with thee will I break in pieces the chariot and his rider; 51:22
+With thee also will I break in pieces man and woman; and with thee
+will I break in pieces old and young; and with thee will I break in
+pieces the young man and the maid; 51:23 I will also break in pieces
+with thee the shepherd and his flock; and with thee will I break in
+pieces the husbandman and his yoke of oxen; and with thee will I break
+in pieces captains and rulers.
+
+51:24 And I will render unto Babylon and to all the inhabitants of
+Chaldea all their evil that they have done in Zion in your sight,
+saith the LORD.
+
+51:25 Behold, I am against thee, O destroying mountain, saith the
+LORD, which destroyest all the earth: and I will stretch out mine hand
+upon thee, and roll thee down from the rocks, and will make thee a
+burnt mountain.
+
+51:26 And they shall not take of thee a stone for a corner, nor a
+stone for foundations; but thou shalt be desolate for ever, saith the
+LORD.
+
+51:27 Set ye up a standard in the land, blow the trumpet among the
+nations, prepare the nations against her, call together against her
+the kingdoms of Ararat, Minni, and Ashchenaz; appoint a captain
+against her; cause the horses to come up as the rough caterpillers.
+
+51:28 Prepare against her the nations with the kings of the Medes, the
+captains thereof, and all the rulers thereof, and all the land of his
+dominion.
+
+51:29 And the land shall tremble and sorrow: for every purpose of the
+LORD shall be performed against Babylon, to make the land of Babylon a
+desolation without an inhabitant.
+
+51:30 The mighty men of Babylon have forborn to fight, they have
+remained in their holds: their might hath failed; they became as
+women: they have burned her dwellingplaces; her bars are broken.
+
+51:31 One post shall run to meet another, and one messenger to meet
+another, to shew the king of Babylon that his city is taken at one
+end, 51:32 And that the passages are stopped, and the reeds they have
+burned with fire, and the men of war are affrighted.
+
+51:33 For thus saith the LORD of hosts, the God of Israel; The
+daughter of Babylon is like a threshingfloor, it is time to thresh
+her: yet a little while, and the time of her harvest shall come.
+
+51:34 Nebuchadrezzar the king of Babylon hath devoured me, he hath
+crushed me, he hath made me an empty vessel, he hath swallowed me up
+like a dragon, he hath filled his belly with my delicates, he hath
+cast me out.
+
+51:35 The violence done to me and to my flesh be upon Babylon, shall
+the inhabitant of Zion say; and my blood upon the inhabitants of
+Chaldea, shall Jerusalem say.
+
+51:36 Therefore thus saith the LORD; Behold, I will plead thy cause,
+and take vengeance for thee; and I will dry up her sea, and make her
+springs dry.
+
+51:37 And Babylon shall become heaps, a dwellingplace for dragons, an
+astonishment, and an hissing, without an inhabitant.
+
+51:38 They shall roar together like lions: they shall yell as lions'
+whelps.
+
+51:39 In their heat I will make their feasts, and I will make them
+drunken, that they may rejoice, and sleep a perpetual sleep, and not
+wake, saith the LORD.
+
+51:40 I will bring them down like lambs to the slaughter, like rams
+with he goats.
+
+51:41 How is Sheshach taken! and how is the praise of the whole earth
+surprised! how is Babylon become an astonishment among the nations!
+51:42 The sea is come up upon Babylon: she is covered with the
+multitude of the waves thereof.
+
+51:43 Her cities are a desolation, a dry land, and a wilderness, a
+land wherein no man dwelleth, neither doth any son of man pass
+thereby.
+
+51:44 And I will punish Bel in Babylon, and I will bring forth out of
+his mouth that which he hath swallowed up: and the nations shall not
+flow together any more unto him: yea, the wall of Babylon shall fall.
+
+51:45 My people, go ye out of the midst of her, and deliver ye every
+man his soul from the fierce anger of the LORD.
+
+51:46 And lest your heart faint, and ye fear for the rumour that shall
+be heard in the land; a rumour shall both come one year, and after
+that in another year shall come a rumour, and violence in the land,
+ruler against ruler.
+
+51:47 Therefore, behold, the days come, that I will do judgment upon
+the graven images of Babylon: and her whole land shall be confounded,
+and all her slain shall fall in the midst of her.
+
+51:48 Then the heaven and the earth, and all that is therein, shall
+sing for Babylon: for the spoilers shall come unto her from the north,
+saith the LORD.
+
+51:49 As Babylon hath caused the slain of Israel to fall, so at
+Babylon shall fall the slain of all the earth.
+
+51:50 Ye that have escaped the sword, go away, stand not still:
+remember the LORD afar off, and let Jerusalem come into your mind.
+
+51:51 We are confounded, because we have heard reproach: shame hath
+covered our faces: for strangers are come into the sanctuaries of the
+LORD's house.
+
+51:52 Wherefore, behold, the days come, saith the LORD, that I will do
+judgment upon her graven images: and through all her land the wounded
+shall groan.
+
+51:53 Though Babylon should mount up to heaven, and though she should
+fortify the height of her strength, yet from me shall spoilers come
+unto her, saith the LORD.
+
+51:54 A sound of a cry cometh from Babylon, and great destruction from
+the land of the Chaldeans: 51:55 Because the LORD hath spoiled
+Babylon, and destroyed out of her the great voice; when her waves do
+roar like great waters, a noise of their voice is uttered: 51:56
+Because the spoiler is come upon her, even upon Babylon, and her
+mighty men are taken, every one of their bows is broken: for the LORD
+God of recompences shall surely requite.
+
+51:57 And I will make drunk her princes, and her wise men, her
+captains, and her rulers, and her mighty men: and they shall sleep a
+perpetual sleep, and not wake, saith the King, whose name is the LORD
+of hosts.
+
+51:58 Thus saith the LORD of hosts; The broad walls of Babylon shall
+be utterly broken, and her high gates shall be burned with fire; and
+the people shall labour in vain, and the folk in the fire, and they
+shall be weary.
+
+51:59 The word which Jeremiah the prophet commanded Seraiah the son of
+Neriah, the son of Maaseiah, when he went with Zedekiah the king of
+Judah into Babylon in the fourth year of his reign. And this Seraiah
+was a quiet prince.
+
+51:60 So Jeremiah wrote in a book all the evil that should come upon
+Babylon, even all these words that are written against Babylon.
+
+51:61 And Jeremiah said to Seraiah, When thou comest to Babylon, and
+shalt see, and shalt read all these words; 51:62 Then shalt thou say,
+O LORD, thou hast spoken against this place, to cut it off, that none
+shall remain in it, neither man nor beast, but that it shall be
+desolate for ever.
+
+51:63 And it shall be, when thou hast made an end of reading this
+book, that thou shalt bind a stone to it, and cast it into the midst
+of Euphrates: 51:64 And thou shalt say, Thus shall Babylon sink, and
+shall not rise from the evil that I will bring upon her: and they
+shall be weary. Thus far are the words of Jeremiah.
+
+52:1 Zedekiah was one and twenty years old when he began to reign, and
+he reigned eleven years in Jerusalem. And his mother's name was
+Hamutal the daughter of Jeremiah of Libnah.
+
+52:2 And he did that which was evil in the eyes of the LORD, according
+to all that Jehoiakim had done.
+
+52:3 For through the anger of the LORD it came to pass in Jerusalem
+and Judah, till he had cast them out from his presence, that Zedekiah
+rebelled against the king of Babylon.
+
+52:4 And it came to pass in the ninth year of his reign, in the tenth
+month, in the tenth day of the month, that Nebuchadrezzar king of
+Babylon came, he and all his army, against Jerusalem, and pitched
+against it, and built forts against it round about.
+
+52:5 So the city was besieged unto the eleventh year of king Zedekiah.
+
+52:6 And in the fourth month, in the ninth day of the month, the
+famine was sore in the city, so that there was no bread for the people
+of the land.
+
+52:7 Then the city was broken up, and all the men of war fled, and
+went forth out of the city by night by the way of the gate between the
+two walls, which was by the king's garden; (now the Chaldeans were by
+the city round about:) and they went by the way of the plain.
+
+52:8 But the army of the Chaldeans pursued after the king, and
+overtook Zedekiah in the plains of Jericho; and all his army was
+scattered from him.
+
+52:9 Then they took the king, and carried him up unto the king of
+Babylon to Riblah in the land of Hamath; where he gave judgment upon
+him.
+
+52:10 And the king of Babylon slew the sons of Zedekiah before his
+eyes: he slew also all the princes of Judah in Riblah.
+
+52:11 Then he put out the eyes of Zedekiah; and the king of Babylon
+bound him in chains, and carried him to Babylon, and put him in prison
+till the day of his death.
+
+52:12 Now in the fifth month, in the tenth day of the month, which was
+the nineteenth year of Nebuchadrezzar king of Babylon, came
+Nebuzaradan, captain of the guard, which served the king of Babylon,
+into Jerusalem, 52:13 And burned the house of the LORD, and the king's
+house; and all the houses of Jerusalem, and all the houses of the
+great men, burned he with fire: 52:14 And all the army of the
+Chaldeans, that were with the captain of the guard, brake down all the
+walls of Jerusalem round about.
+
+52:15 Then Nebuzaradan the captain of the guard carried away captive
+certain of the poor of the people, and the residue of the people that
+remained in the city, and those that fell away, that fell to the king
+of Babylon, and the rest of the multitude.
+
+52:16 But Nebuzaradan the captain of the guard left certain of the
+poor of the land for vinedressers and for husbandmen.
+
+52:17 Also the pillars of brass that were in the house of the LORD,
+and the bases, and the brasen sea that was in the house of the LORD,
+the Chaldeans brake, and carried all the brass of them to Babylon.
+
+52:18 The caldrons also, and the shovels, and the snuffers, and the
+bowls, and the spoons, and all the vessels of brass wherewith they
+ministered, took they away.
+
+52:19 And the basons, and the firepans, and the bowls, and the
+caldrons, and the candlesticks, and the spoons, and the cups; that
+which was of gold in gold, and that which was of silver in silver,
+took the captain of the guard away.
+
+52:20 The two pillars, one sea, and twelve brasen bulls that were
+under the bases, which king Solomon had made in the house of the LORD:
+the brass of all these vessels was without weight.
+
+52:21 And concerning the pillars, the height of one pillar was
+eighteen cubits; and a fillet of twelve cubits did compass it; and the
+thickness thereof was four fingers: it was hollow.
+
+52:22 And a chapiter of brass was upon it; and the height of one
+chapiter was five cubits, with network and pomegranates upon the
+chapiters round about, all of brass. The second pillar also and the
+pomegranates were like unto these.
+
+52:23 And there were ninety and six pomegranates on a side; and all
+the pomegranates upon the network were an hundred round about.
+
+52:24 And the captain of the guard took Seraiah the chief priest, and
+Zephaniah the second priest, and the three keepers of the door: 52:25
+He took also out of the city an eunuch, which had the charge of the
+men of war; and seven men of them that were near the king's person,
+which were found in the city; and the principal scribe of the host,
+who mustered the people of the land; and threescore men of the people
+of the land, that were found in the midst of the city.
+
+52:26 So Nebuzaradan the captain of the guard took them, and brought
+them to the king of Babylon to Riblah.
+
+52:27 And the king of Babylon smote them, and put them to death in
+Riblah in the land of Hamath. Thus Judah was carried away captive out
+of his own land.
+
+52:28 This is the people whom Nebuchadrezzar carried away captive: in
+the seventh year three thousand Jews and three and twenty: 52:29 In
+the eighteenth year of Nebuchadrezzar he carried away captive from
+Jerusalem eight hundred thirty and two persons: 52:30 In the three and
+twentieth year of Nebuchadrezzar Nebuzaradan the captain of the guard
+carried away captive of the Jews seven hundred forty and five persons:
+all the persons were four thousand and six hundred.
+
+52:31 And it came to pass in the seven and thirtieth year of the
+captivity of Jehoiachin king of Judah, in the twelfth month, in the
+five and twentieth day of the month, that Evilmerodach king of Babylon
+in the first year of his reign lifted up the head of Jehoiachin king
+of Judah, and brought him forth out of prison.
+
+52:32 And spake kindly unto him, and set his throne above the throne
+of the kings that were with him in Babylon, 52:33 And changed his
+prison garments: and he did continually eat bread before him all the
+days of his life.
+
+52:34 And for his diet, there was a continual diet given him of the
+king of Babylon, every day a portion until the day of his death, all
+the days of his life.
+
+
+
+
+The Lamentations of Jeremiah
+
+
+1:1 How doth the city sit solitary, that was full of people! how is
+she become as a widow! she that was great among the nations, and
+princess among the provinces, how is she become tributary! 1:2 She
+weepeth sore in the night, and her tears are on her cheeks: among all
+her lovers she hath none to comfort her: all her friends have dealt
+treacherously with her, they are become her enemies.
+
+1:3 Judah is gone into captivity because of affliction, and because of
+great servitude: she dwelleth among the heathen, she findeth no rest:
+all her persecutors overtook her between the straits.
+
+1:4 The ways of Zion do mourn, because none come to the solemn feasts:
+all her gates are desolate: her priests sigh, her virgins are
+afflicted, and she is in bitterness.
+
+1:5 Her adversaries are the chief, her enemies prosper; for the LORD
+hath afflicted her for the multitude of her transgressions: her
+children are gone into captivity before the enemy.
+
+1:6 And from the daughter of Zion all her beauty is departed: her
+princes are become like harts that find no pasture, and they are gone
+without strength before the pursuer.
+
+1:7 Jerusalem remembered in the days of her affliction and of her
+miseries all her pleasant things that she had in the days of old, when
+her people fell into the hand of the enemy, and none did help her: the
+adversaries saw her, and did mock at her sabbaths.
+
+1:8 Jerusalem hath grievously sinned; therefore she is removed: all
+that honoured her despise her, because they have seen her nakedness:
+yea, she sigheth, and turneth backward.
+
+1:9 Her filthiness is in her skirts; she remembereth not her last end;
+therefore she came down wonderfully: she had no comforter. O LORD,
+behold my affliction: for the enemy hath magnified himself.
+
+1:10 The adversary hath spread out his hand upon all her pleasant
+things: for she hath seen that the heathen entered into her sanctuary,
+whom thou didst command that they should not enter into thy
+congregation.
+
+1:11 All her people sigh, they seek bread; they have given their
+pleasant things for meat to relieve the soul: see, O LORD, and
+consider; for I am become vile.
+
+1:12 Is it nothing to you, all ye that pass by? behold, and see if
+there be any sorrow like unto my sorrow, which is done unto me,
+wherewith the LORD hath afflicted me in the day of his fierce anger.
+
+1:13 From above hath he sent fire into my bones, and it prevaileth
+against them: he hath spread a net for my feet, he hath turned me
+back: he hath made me desolate and faint all the day.
+
+1:14 The yoke of my transgressions is bound by his hand: they are
+wreathed, and come up upon my neck: he hath made my strength to fall,
+the LORD hath delivered me into their hands, from whom I am not able
+to rise up.
+
+1:15 The LORD hath trodden under foot all my mighty men in the midst
+of me: he hath called an assembly against me to crush my young men:
+the LORD hath trodden the virgin, the daughter of Judah, as in a
+winepress.
+
+1:16 For these things I weep; mine eye, mine eye runneth down with
+water, because the comforter that should relieve my soul is far from
+me: my children are desolate, because the enemy prevailed.
+
+1:17 Zion spreadeth forth her hands, and there is none to comfort her:
+the LORD hath commanded concerning Jacob, that his adversaries should
+be round about him: Jerusalem is as a menstruous woman among them.
+
+1:18 The LORD is righteous; for I have rebelled against his
+commandment: hear, I pray you, all people, and behold my sorrow: my
+virgins and my young men are gone into captivity.
+
+1:19 I called for my lovers, but they deceived me: my priests and mine
+elders gave up the ghost in the city, while they sought their meat to
+relieve their souls.
+
+1:20 Behold, O LORD; for I am in distress: my bowels are troubled;
+mine heart is turned within me; for I have grievously rebelled: abroad
+the sword bereaveth, at home there is as death.
+
+1:21 They have heard that I sigh: there is none to comfort me: all
+mine enemies have heard of my trouble; they are glad that thou hast
+done it: thou wilt bring the day that thou hast called, and they shall
+be like unto me.
+
+1:22 Let all their wickedness come before thee; and do unto them, as
+thou hast done unto me for all my transgressions: for my sighs are
+many, and my heart is faint.
+
+2:1 How hath the LORD covered the daughter of Zion with a cloud in his
+anger, and cast down from heaven unto the earth the beauty of Israel,
+and remembered not his footstool in the day of his anger! 2:2 The
+LORD hath swallowed up all the habitations of Jacob, and hath not
+pitied: he hath thrown down in his wrath the strong holds of the
+daughter of Judah; he hath brought them down to the ground: he hath
+polluted the kingdom and the princes thereof.
+
+2:3 He hath cut off in his fierce anger all the horn of Israel: he
+hath drawn back his right hand from before the enemy, and he burned
+against Jacob like a flaming fire, which devoureth round about.
+
+2:4 He hath bent his bow like an enemy: he stood with his right hand
+as an adversary, and slew all that were pleasant to the eye in the
+tabernacle of the daughter of Zion: he poured out his fury like fire.
+
+2:5 The LORD was as an enemy: he hath swallowed up Israel, he hath
+swallowed up all her palaces: he hath destroyed his strong holds, and
+hath increased in the daughter of Judah mourning and lamentation.
+
+2:6 And he hath violently taken away his tabernacle, as if it were of
+a garden: he hath destroyed his places of the assembly: the LORD hath
+caused the solemn feasts and sabbaths to be forgotten in Zion, and
+hath despised in the indignation of his anger the king and the priest.
+
+2:7 The LORD hath cast off his altar, he hath abhorred his sanctuary,
+he hath given up into the hand of the enemy the walls of her palaces;
+they have made a noise in the house of the LORD, as in the day of a
+solemn feast.
+
+2:8 The LORD hath purposed to destroy the wall of the daughter of
+Zion: he hath stretched out a line, he hath not withdrawn his hand
+from destroying: therefore he made the rampart and the wall to lament;
+they languished together.
+
+2:9 Her gates are sunk into the ground; he hath destroyed and broken
+her bars: her king and her princes are among the Gentiles: the law is
+no more; her prophets also find no vision from the LORD.
+
+2:10 The elders of the daughter of Zion sit upon the ground, and keep
+silence: they have cast up dust upon their heads; they have girded
+themselves with sackcloth: the virgins of Jerusalem hang down their
+heads to the ground.
+
+2:11 Mine eyes do fail with tears, my bowels are troubled, my liver is
+poured upon the earth, for the destruction of the daughter of my
+people; because the children and the sucklings swoon in the streets of
+the city.
+
+2:12 They say to their mothers, Where is corn and wine? when they
+swooned as the wounded in the streets of the city, when their soul was
+poured out into their mothers' bosom.
+
+2:13 What thing shall I take to witness for thee? what thing shall I
+liken to thee, O daughter of Jerusalem? what shall I equal to thee,
+that I may comfort thee, O virgin daughter of Zion? for thy breach is
+great like the sea: who can heal thee? 2:14 Thy prophets have seen
+vain and foolish things for thee: and they have not discovered thine
+iniquity, to turn away thy captivity; but have seen for thee false
+burdens and causes of banishment.
+
+2:15 All that pass by clap their hands at thee; they hiss and wag
+their head at the daughter of Jerusalem, saying, Is this the city that
+men call The perfection of beauty, The joy of the whole earth? 2:16
+All thine enemies have opened their mouth against thee: they hiss and
+gnash the teeth: they say, We have swallowed her up: certainly this is
+the day that we looked for; we have found, we have seen it.
+
+2:17 The LORD hath done that which he had devised; he hath fulfilled
+his word that he had commanded in the days of old: he hath thrown
+down, and hath not pitied: and he hath caused thine enemy to rejoice
+over thee, he hath set up the horn of thine adversaries.
+
+2:18 Their heart cried unto the LORD, O wall of the daughter of Zion,
+let tears run down like a river day and night: give thyself no rest;
+let not the apple of thine eye cease.
+
+2:19 Arise, cry out in the night: in the beginning of the watches pour
+out thine heart like water before the face of the LORD: lift up thy
+hands toward him for the life of thy young children, that faint for
+hunger in the top of every street.
+
+2:20 Behold, O LORD, and consider to whom thou hast done this. Shall
+the women eat their fruit, and children of a span long? shall the
+priest and the prophet be slain in the sanctuary of the Lord? 2:21
+The young and the old lie on the ground in the streets: my virgins and
+my young men are fallen by the sword; thou hast slain them in the day
+of thine anger; thou hast killed, and not pitied.
+
+2:22 Thou hast called as in a solemn day my terrors round about, so
+that in the day of the LORD's anger none escaped nor remained: those
+that I have swaddled and brought up hath mine enemy consumed.
+
+3:1 I AM the man that hath seen affliction by the rod of his wrath.
+
+3:2 He hath led me, and brought me into darkness, but not into light.
+
+3:3 Surely against me is he turned; he turneth his hand against me all
+the day.
+
+3:4 My flesh and my skin hath he made old; he hath broken my bones.
+
+3:5 He hath builded against me, and compassed me with gall and
+travail.
+
+3:6 He hath set me in dark places, as they that be dead of old.
+
+3:7 He hath hedged me about, that I cannot get out: he hath made my
+chain heavy.
+
+3:8 Also when I cry and shout, he shutteth out my prayer.
+
+3:9 He hath inclosed my ways with hewn stone, he hath made my paths
+crooked.
+
+3:10 He was unto me as a bear lying in wait, and as a lion in secret
+places.
+
+3:11 He hath turned aside my ways, and pulled me in pieces: he hath
+made me desolate.
+
+3:12 He hath bent his bow, and set me as a mark for the arrow.
+
+3:13 He hath caused the arrows of his quiver to enter into my reins.
+
+3:14 I was a derision to all my people; and their song all the day.
+
+3:15 He hath filled me with bitterness, he hath made me drunken with
+wormwood.
+
+3:16 He hath also broken my teeth with gravel stones, he hath covered
+me with ashes.
+
+3:17 And thou hast removed my soul far off from peace: I forgat
+prosperity.
+
+3:18 And I said, My strength and my hope is perished from the LORD:
+3:19 Remembering mine affliction and my misery, the wormwood and the
+gall.
+
+3:20 My soul hath them still in remembrance, and is humbled in me.
+
+3:21 This I recall to my mind, therefore have I hope.
+
+3:22 It is of the LORD's mercies that we are not consumed, because his
+compassions fail not.
+
+3:23 They are new every morning: great is thy faithfulness.
+
+3:24 The LORD is my portion, saith my soul; therefore will I hope in
+him.
+
+3:25 The LORD is good unto them that wait for him, to the soul that
+seeketh him.
+
+3:26 It is good that a man should both hope and quietly wait for the
+salvation of the LORD.
+
+3:27 It is good for a man that he bear the yoke of his youth.
+
+3:28 He sitteth alone and keepeth silence, because he hath borne it
+upon him.
+
+3:29 He putteth his mouth in the dust; if so be there may be hope.
+
+3:30 He giveth his cheek to him that smiteth him: he is filled full
+with reproach.
+
+3:31 For the LORD will not cast off for ever: 3:32 But though he cause
+grief, yet will he have compassion according to the multitude of his
+mercies.
+
+3:33 For he doth not afflict willingly nor grieve the children of men.
+
+3:34 To crush under his feet all the prisoners of the earth.
+
+3:35 To turn aside the right of a man before the face of the most
+High, 3:36 To subvert a man in his cause, the LORD approveth not.
+
+3:37 Who is he that saith, and it cometh to pass, when the Lord
+commandeth it not? 3:38 Out of the mouth of the most High proceedeth
+not evil and good? 3:39 Wherefore doth a living man complain, a man
+for the punishment of his sins? 3:40 Let us search and try our ways,
+and turn again to the LORD.
+
+3:41 Let us lift up our heart with our hands unto God in the heavens.
+
+3:42 We have transgressed and have rebelled: thou hast not pardoned.
+
+3:43 Thou hast covered with anger, and persecuted us: thou hast slain,
+thou hast not pitied.
+
+3:44 Thou hast covered thyself with a cloud, that our prayer should
+not pass through.
+
+3:45 Thou hast made us as the offscouring and refuse in the midst of
+the people.
+
+3:46 All our enemies have opened their mouths against us.
+
+3:47 Fear and a snare is come upon us, desolation and destruction.
+
+3:48 Mine eye runneth down with rivers of water for the destruction of
+the daughter of my people.
+
+3:49 Mine eye trickleth down, and ceaseth not, without any
+intermission.
+
+3:50 Till the LORD look down, and behold from heaven.
+
+3:51 Mine eye affecteth mine heart because of all the daughters of my
+city.
+
+3:52 Mine enemies chased me sore, like a bird, without cause.
+
+3:53 They have cut off my life in the dungeon, and cast a stone upon
+me.
+
+3:54 Waters flowed over mine head; then I said, I am cut off.
+
+3:55 I called upon thy name, O LORD, out of the low dungeon.
+
+3:56 Thou hast heard my voice: hide not thine ear at my breathing, at
+my cry.
+
+3:57 Thou drewest near in the day that I called upon thee: thou
+saidst, Fear not.
+
+3:58 O LORD, thou hast pleaded the causes of my soul; thou hast
+redeemed my life.
+
+3:59 O LORD, thou hast seen my wrong: judge thou my cause.
+
+3:60 Thou hast seen all their vengeance and all their imaginations
+against me.
+
+3:61 Thou hast heard their reproach, O LORD, and all their
+imaginations against me; 3:62 The lips of those that rose up against
+me, and their device against me all the day.
+
+3:63 Behold their sitting down, and their rising up; I am their
+musick.
+
+3:64 Render unto them a recompence, O LORD, according to the work of
+their hands.
+
+3:65 Give them sorrow of heart, thy curse unto them.
+
+3:66 Persecute and destroy them in anger from under the heavens of the
+LORD.
+
+4:1 How is the gold become dim! how is the most fine gold changed! the
+stones of the sanctuary are poured out in the top of every street.
+
+4:2 The precious sons of Zion, comparable to fine gold, how are they
+esteemed as earthen pitchers, the work of the hands of the potter!
+4:3 Even the sea monsters draw out the breast, they give suck to their
+young ones: the daughter of my people is become cruel, like the
+ostriches in the wilderness.
+
+4:4 The tongue of the sucking child cleaveth to the roof of his mouth
+for thirst: the young children ask bread, and no man breaketh it unto
+them.
+
+4:5 They that did feed delicately are desolate in the streets: they
+that were brought up in scarlet embrace dunghills.
+
+4:6 For the punishment of the iniquity of the daughter of my people is
+greater than the punishment of the sin of Sodom, that was overthrown
+as in a moment, and no hands stayed on her.
+
+4:7 Her Nazarites were purer than snow, they were whiter than milk,
+they were more ruddy in body than rubies, their polishing was of
+sapphire: 4:8 Their visage is blacker than a coal; they are not known
+in the streets: their skin cleaveth to their bones; it is withered, it
+is become like a stick.
+
+4:9 They that be slain with the sword are better than they that be
+slain with hunger: for these pine away, stricken through for want of
+the fruits of the field.
+
+4:10 The hands of the pitiful women have sodden their own children:
+they were their meat in the destruction of the daughter of my people.
+
+4:11 The LORD hath accomplished his fury; he hath poured out his
+fierce anger, and hath kindled a fire in Zion, and it hath devoured
+the foundations thereof.
+
+4:12 The kings of the earth, and all the inhabitants of the world,
+would not have believed that the adversary and the enemy should have
+entered into the gates of Jerusalem.
+
+4:13 For the sins of her prophets, and the iniquities of her priests,
+that have shed the blood of the just in the midst of her, 4:14 They
+have wandered as blind men in the streets, they have polluted
+themselves with blood, so that men could not touch their garments.
+
+4:15 They cried unto them, Depart ye; it is unclean; depart, depart,
+touch not: when they fled away and wandered, they said among the
+heathen, They shall no more sojourn there.
+
+4:16 The anger of the LORD hath divided them; he will no more regard
+them: they respected not the persons of the priests, they favoured not
+the elders.
+
+4:17 As for us, our eyes as yet failed for our vain help: in our
+watching we have watched for a nation that could not save us.
+
+4:18 They hunt our steps, that we cannot go in our streets: our end is
+near, our days are fulfilled; for our end is come.
+
+4:19 Our persecutors are swifter than the eagles of the heaven: they
+pursued us upon the mountains, they laid wait for us in the
+wilderness.
+
+4:20 The breath of our nostrils, the anointed of the LORD, was taken
+in their pits, of whom we said, Under his shadow we shall live among
+the heathen.
+
+4:21 Rejoice and be glad, O daughter of Edom, that dwellest in the
+land of Uz; the cup also shall pass through unto thee: thou shalt be
+drunken, and shalt make thyself naked.
+
+4:22 The punishment of thine iniquity is accomplished, O daughter of
+Zion; he will no more carry thee away into captivity: he will visit
+thine iniquity, O daughter of Edom; he will discover thy sins.
+
+5:1 Remember, O LORD, what is come upon us: consider, and behold our
+reproach.
+
+5:2 Our inheritance is turned to strangers, our houses to aliens.
+
+5:3 We are orphans and fatherless, our mothers are as widows.
+
+5:4 We have drunken our water for money; our wood is sold unto us.
+
+5:5 Our necks are under persecution: we labour, and have no rest.
+
+5:6 We have given the hand to the Egyptians, and to the Assyrians, to
+be satisfied with bread.
+
+5:7 Our fathers have sinned, and are not; and we have borne their
+iniquities.
+
+5:8 Servants have ruled over us: there is none that doth deliver us
+out of their hand.
+
+5:9 We gat our bread with the peril of our lives because of the sword
+of the wilderness.
+
+5:10 Our skin was black like an oven because of the terrible famine.
+
+5:11 They ravished the women in Zion, and the maids in the cities of
+Judah.
+
+5:12 Princes are hanged up by their hand: the faces of elders were not
+honoured.
+
+5:13 They took the young men to grind, and the children fell under the
+wood.
+
+5:14 The elders have ceased from the gate, the young men from their
+musick.
+
+5:15 The joy of our heart is ceased; our dance is turned into
+mourning.
+
+5:16 The crown is fallen from our head: woe unto us, that we have
+sinned! 5:17 For this our heart is faint; for these things our eyes
+are dim.
+
+5:18 Because of the mountain of Zion, which is desolate, the foxes
+walk upon it.
+
+5:19 Thou, O LORD, remainest for ever; thy throne from generation to
+generation.
+
+5:20 Wherefore dost thou forget us for ever, and forsake us so long
+time? 5:21 Turn thou us unto thee, O LORD, and we shall be turned;
+renew our days as of old.
+
+5:22 But thou hast utterly rejected us; thou art very wroth against us.
+
+
+
+
+The Book of the Prophet Ezekiel
+
+
+1:1 Now it came to pass in the thirtieth year, in the fourth month,
+in the fifth day of the month, as I was among the captives by the river
+of Chebar, that the heavens were opened, and I saw visions of God.
+
+1:2 In the fifth day of the month, which was the fifth year of king
+Jehoiachin's captivity, 1:3 The word of the LORD came expressly unto
+Ezekiel the priest, the son of Buzi, in the land of the Chaldeans by
+the river Chebar; and the hand of the LORD was there upon him.
+
+1:4 And I looked, and, behold, a whirlwind came out of the north, a
+great cloud, and a fire infolding itself, and a brightness was about
+it, and out of the midst thereof as the colour of amber, out of the
+midst of the fire.
+
+1:5 Also out of the midst thereof came the likeness of four living
+creatures. And this was their appearance; they had the likeness of a
+man.
+
+1:6 And every one had four faces, and every one had four wings.
+
+1:7 And their feet were straight feet; and the sole of their feet was
+like the sole of a calf's foot: and they sparkled like the colour of
+burnished brass.
+
+1:8 And they had the hands of a man under their wings on their four
+sides; and they four had their faces and their wings.
+
+1:9 Their wings were joined one to another; they turned not when they
+went; they went every one straight forward.
+
+1:10 As for the likeness of their faces, they four had the face of a
+man, and the face of a lion, on the right side: and they four had the
+face of an ox on the left side; they four also had the face of an
+eagle.
+
+1:11 Thus were their faces: and their wings were stretched upward; two
+wings of every one were joined one to another, and two covered their
+bodies.
+
+1:12 And they went every one straight forward: whither the spirit was
+to go, they went; and they turned not when they went.
+
+1:13 As for the likeness of the living creatures, their appearance was
+like burning coals of fire, and like the appearance of lamps: it went
+up and down among the living creatures; and the fire was bright, and
+out of the fire went forth lightning.
+
+1:14 And the living creatures ran and returned as the appearance of a
+flash of lightning.
+
+1:15 Now as I beheld the living creatures, behold one wheel upon the
+earth by the living creatures, with his four faces.
+
+1:16 The appearance of the wheels and their work was like unto the
+colour of a beryl: and they four had one likeness: and their
+appearance and their work was as it were a wheel in the middle of a
+wheel.
+
+1:17 When they went, they went upon their four sides: and they turned
+not when they went.
+
+1:18 As for their rings, they were so high that they were dreadful;
+and their rings were full of eyes round about them four.
+
+1:19 And when the living creatures went, the wheels went by them: and
+when the living creatures were lifted up from the earth, the wheels
+were lifted up.
+
+1:20 Whithersoever the spirit was to go, they went, thither was their
+spirit to go; and the wheels were lifted up over against them: for the
+spirit of the living creature was in the wheels.
+
+1:21 When those went, these went; and when those stood, these stood;
+and when those were lifted up from the earth, the wheels were lifted
+up over against them: for the spirit of the living creature was in the
+wheels.
+
+1:22 And the likeness of the firmament upon the heads of the living
+creature was as the colour of the terrible crystal, stretched forth
+over their heads above.
+
+1:23 And under the firmament were their wings straight, the one toward
+the other: every one had two, which covered on this side, and every
+one had two, which covered on that side, their bodies.
+
+1:24 And when they went, I heard the noise of their wings, like the
+noise of great waters, as the voice of the Almighty, the voice of
+speech, as the noise of an host: when they stood, they let down their
+wings.
+
+1:25 And there was a voice from the firmament that was over their
+heads, when they stood, and had let down their wings.
+
+1:26 And above the firmament that was over their heads was the
+likeness of a throne, as the appearance of a sapphire stone: and upon
+the likeness of the throne was the likeness as the appearance of a man
+above upon it.
+
+1:27 And I saw as the colour of amber, as the appearance of fire round
+about within it, from the appearance of his loins even upward, and
+from the appearance of his loins even downward, I saw as it were the
+appearance of fire, and it had brightness round about.
+
+1:28 As the appearance of the bow that is in the cloud in the day of
+rain, so was the appearance of the brightness round about. This was
+the appearance of the likeness of the glory of the LORD. And when I
+saw it, I fell upon my face, and I heard a voice of one that spake.
+
+2:1 And he said unto me, Son of man, stand upon thy feet, and I will
+speak unto thee.
+
+2:2 And the spirit entered into me when he spake unto me, and set me
+upon my feet, that I heard him that spake unto me.
+
+2:3 And he said unto me, Son of man, I send thee to the children of
+Israel, to a rebellious nation that hath rebelled against me: they and
+their fathers have transgressed against me, even unto this very day.
+
+2:4 For they are impudent children and stiffhearted. I do send thee
+unto them; and thou shalt say unto them, Thus saith the Lord GOD.
+
+2:5 And they, whether they will hear, or whether they will forbear,
+(for they are a rebellious house,) yet shall know that there hath been
+a prophet among them.
+
+2:6 And thou, son of man, be not afraid of them, neither be afraid of
+their words, though briers and thorns be with thee, and thou dost
+dwell among scorpions: be not afraid of their words, nor be dismayed
+at their looks, though they be a rebellious house.
+
+2:7 And thou shalt speak my words unto them, whether they will hear,
+or whether they will forbear: for they are most rebellious.
+
+2:8 But thou, son of man, hear what I say unto thee; Be not thou
+rebellious like that rebellious house: open thy mouth, and eat that I
+give thee.
+
+2:9 And when I looked, behold, an hand was sent unto me; and, lo, a
+roll of a book was therein; 2:10 And he spread it before me; and it
+was written within and without: and there was written therein
+lamentations, and mourning, and woe.
+
+3:1 Moreover he said unto me, Son of man, eat that thou findest; eat
+this roll, and go speak unto the house of Israel.
+
+3:2 So I opened my mouth, and he caused me to eat that roll.
+
+3:3 And he said unto me, Son of man, cause thy belly to eat, and fill
+thy bowels with this roll that I give thee. Then did I eat it; and it
+was in my mouth as honey for sweetness.
+
+3:4 And he said unto me, Son of man, go, get thee unto the house of
+Israel, and speak with my words unto them.
+
+3:5 For thou art not sent to a people of a strange speech and of an
+hard language, but to the house of Israel; 3:6 Not to many people of a
+strange speech and of an hard language, whose words thou canst not
+understand. Surely, had I sent thee to them, they would have hearkened
+unto thee.
+
+3:7 But the house of Israel will not hearken unto thee; for they will
+not hearken unto me: for all the house of Israel are impudent and
+hardhearted.
+
+3:8 Behold, I have made thy face strong against their faces, and thy
+forehead strong against their foreheads.
+
+3:9 As an adamant harder than flint have I made thy forehead: fear
+them not, neither be dismayed at their looks, though they be a
+rebellious house.
+
+3:10 Moreover he said unto me, Son of man, all my words that I shall
+speak unto thee receive in thine heart, and hear with thine ears.
+
+3:11 And go, get thee to them of the captivity, unto the children of
+thy people, and speak unto them, and tell them, Thus saith the Lord
+GOD; whether they will hear, or whether they will forbear.
+
+3:12 Then the spirit took me up, and I heard behind me a voice of a
+great rushing, saying, Blessed be the glory of the LORD from his
+place.
+
+3:13 I heard also the noise of the wings of the living creatures that
+touched one another, and the noise of the wheels over against them,
+and a noise of a great rushing.
+
+3:14 So the spirit lifted me up, and took me away, and I went in
+bitterness, in the heat of my spirit; but the hand of the LORD was
+strong upon me.
+
+3:15 Then I came to them of the captivity at Telabib, that dwelt by
+the river of Chebar, and I sat where they sat, and remained there
+astonished among them seven days.
+
+3:16 And it came to pass at the end of seven days, that the word of
+the LORD came unto me, saying, 3:17 Son of man, I have made thee a
+watchman unto the house of Israel: therefore hear the word at my
+mouth, and give them warning from me.
+
+3:18 When I say unto the wicked, Thou shalt surely die; and thou
+givest him not warning, nor speakest to warn the wicked from his
+wicked way, to save his life; the same wicked man shall die in his
+iniquity; but his blood will I require at thine hand.
+
+3:19 Yet if thou warn the wicked, and he turn not from his wickedness,
+nor from his wicked way, he shall die in his iniquity; but thou hast
+delivered thy soul.
+
+3:20 Again, When a righteous man doth turn from his righteousness, and
+commit iniquity, and I lay a stumbling-block before him, he shall die:
+because thou hast not given him warning, he shall die in his sin, and
+his righteousness which he hath done shall not be remembered; but his
+blood will I require at thine hand.
+
+3:21 Nevertheless if thou warn the righteous man, that the righteous
+sin not, and he doth not sin, he shall surely live, because he is
+warned; also thou hast delivered thy soul.
+
+3:22 And the hand of the LORD was there upon me; and he said unto me,
+Arise, go forth into the plain, and I will there talk with thee.
+
+3:23 Then I arose, and went forth into the plain: and, behold, the
+glory of the LORD stood there, as the glory which I saw by the river
+of Chebar: and I fell on my face.
+
+3:24 Then the spirit entered into me, and set me upon my feet, and
+spake with me, and said unto me, Go, shut thyself within thine house.
+
+3:25 But thou, O son of man, behold, they shall put bands upon thee,
+and shall bind thee with them, and thou shalt not go out among them:
+3:26 And I will make thy tongue cleave to the roof of thy mouth, that
+thou shalt be dumb, and shalt not be to them a reprover: for they are
+a rebellious house.
+
+3:27 But when I speak with thee, I will open thy mouth, and thou shalt
+say unto them, Thus saith the Lord GOD; He that heareth, let him hear;
+and he that forbeareth, let him forbear: for they are a rebellious
+house.
+
+4:1 Thou also, son of man, take thee a tile, and lay it before thee,
+and pourtray upon it the city, even Jerusalem: 4:2 And lay siege
+against it, and build a fort against it, and cast a mount against it;
+set the camp also against it, and set battering rams against it round
+about.
+
+4:3 Moreover take thou unto thee an iron pan, and set it for a wall of
+iron between thee and the city: and set thy face against it, and it
+shall be besieged, and thou shalt lay siege against it. This shall be
+a sign to the house of Israel.
+
+4:4 Lie thou also upon thy left side, and lay the iniquity of the
+house of Israel upon it: according to the number of the days that thou
+shalt lie upon it thou shalt bear their iniquity.
+
+4:5 For I have laid upon thee the years of their iniquity, according
+to the number of the days, three hundred and ninety days: so shalt
+thou bear the iniquity of the house of Israel.
+
+4:6 And when thou hast accomplished them, lie again on thy right side,
+and thou shalt bear the iniquity of the house of Judah forty days: I
+have appointed thee each day for a year.
+
+4:7 Therefore thou shalt set thy face toward the siege of Jerusalem,
+and thine arm shall be uncovered, and thou shalt prophesy against it.
+
+4:8 And, behold, I will lay bands upon thee, and thou shalt not turn
+thee from one side to another, till thou hast ended the days of thy
+siege.
+
+4:9 Take thou also unto thee wheat, and barley, and beans, and
+lentiles, and millet, and fitches, and put them in one vessel, and
+make thee bread thereof, according to the number of the days that thou
+shalt lie upon thy side, three hundred and ninety days shalt thou eat
+thereof.
+
+4:10 And thy meat which thou shalt eat shall be by weight, twenty
+shekels a day: from time to time shalt thou eat it.
+
+4:11 Thou shalt drink also water by measure, the sixth part of an hin:
+from time to time shalt thou drink.
+
+4:12 And thou shalt eat it as barley cakes, and thou shalt bake it
+with dung that cometh out of man, in their sight.
+
+4:13 And the LORD said, Even thus shall the children of Israel eat
+their defiled bread among the Gentiles, whither I will drive them.
+
+4:14 Then said I, Ah Lord GOD! behold, my soul hath not been polluted:
+for from my youth up even till now have I not eaten of that which
+dieth of itself, or is torn in pieces; neither came there abominable
+flesh into my mouth.
+
+4:15 Then he said unto me, Lo, I have given thee cow's dung for man's
+dung, and thou shalt prepare thy bread therewith.
+
+4:16 Moreover he said unto me, Son of man, behold, I will break the
+staff of bread in Jerusalem: and they shall eat bread by weight, and
+with care; and they shall drink water by measure, and with
+astonishment: 4:17 That they may want bread and water, and be astonied
+one with another, and consume away for their iniquity.
+
+5:1 And thou, son of man, take thee a sharp knife, take thee a
+barber's razor, and cause it to pass upon thine head and upon thy
+beard: then take thee balances to weigh, and divide the hair.
+
+5:2 Thou shalt burn with fire a third part in the midst of the city,
+when the days of the siege are fulfilled: and thou shalt take a third
+part, and smite about it with a knife: and a third part thou shalt
+scatter in the wind; and I will draw out a sword after them.
+
+5:3 Thou shalt also take thereof a few in number, and bind them in thy
+skirts.
+
+5:4 Then take of them again, and cast them into the midst of the fire,
+and burn them in the fire; for thereof shall a fire come forth into
+all the house of Israel.
+
+5:5 Thus saith the Lord GOD; This is Jerusalem: I have set it in the
+midst of the nations and countries that are round about her.
+
+5:6 And she hath changed my judgments into wickedness more than the
+nations, and my statutes more than the countries that are round about
+her: for they have refused my judgments and my statutes, they have not
+walked in them.
+
+5:7 Therefore thus saith the Lord GOD; Because ye multiplied more than
+the nations that are round about you, and have not walked in my
+statutes, neither have kept my judgments, neither have done according
+to the judgments of the nations that are round about you; 5:8
+Therefore thus saith the Lord GOD; Behold, I, even I, am against thee,
+and will execute judgments in the midst of thee in the sight of the
+nations.
+
+5:9 And I will do in thee that which I have not done, and whereunto I
+will not do any more the like, because of all thine abominations.
+
+5:10 Therefore the fathers shall eat the sons in the midst of thee,
+and the sons shall eat their fathers; and I will execute judgments in
+thee, and the whole remnant of thee will I scatter into all the winds.
+
+5:11 Wherefore, as I live, saith the Lord GOD; Surely, because thou
+hast defiled my sanctuary with all thy detestable things, and with all
+thine abominations, therefore will I also diminish thee; neither shall
+mine eye spare, neither will I have any pity.
+
+5:12 A third part of thee shall die with the pestilence, and with
+famine shall they be consumed in the midst of thee: and a third part
+shall fall by the sword round about thee; and I will scatter a third
+part into all the winds, and I will draw out a sword after them.
+
+5:13 Thus shall mine anger be accomplished, and I will cause my fury
+to rest upon them, and I will be comforted: and they shall know that I
+the LORD have spoken it in my zeal, when I have accomplished my fury
+in them.
+
+5:14 Moreover I will make thee waste, and a reproach among the nations
+that are round about thee, in the sight of all that pass by.
+
+5:15 So it shall be a reproach and a taunt, an instruction and an
+astonishment unto the nations that are round about thee, when I shall
+execute judgments in thee in anger and in fury and in furious rebukes.
+I the LORD have spoken it.
+
+5:16 When I shall send upon them the evil arrows of famine, which
+shall be for their destruction, and which I will send to destroy you:
+and I will increase the famine upon you, and will break your staff of
+bread: 5:17 So will I send upon you famine and evil beasts, and they
+shall bereave thee: and pestilence and blood shall pass through thee;
+and I will bring the sword upon thee. I the LORD have spoken it.
+
+6:1 And the word of the LORD came unto me, saying, 6:2 Son of man, set
+thy face toward the mountains of Israel, and prophesy against them,
+6:3 And say, Ye mountains of Israel, hear the word of the Lord GOD;
+Thus saith the Lord GOD to the mountains, and to the hills, to the
+rivers, and to the valleys; Behold, I, even I, will bring a sword upon
+you, and I will destroy your high places.
+
+6:4 And your altars shall be desolate, and your images shall be
+broken: and I will cast down your slain men before your idols.
+
+6:5 And I will lay the dead carcases of the children of Israel before
+their idols; and I will scatter your bones round about your altars.
+
+6:6 In all your dwellingplaces the cities shall be laid waste, and the
+high places shall be desolate; that your altars may be laid waste and
+made desolate, and your idols may be broken and cease, and your images
+may be cut down, and your works may be abolished.
+
+6:7 And the slain shall fall in the midst of you, and ye shall know
+that I am the LORD.
+
+6:8 Yet will I leave a remnant, that ye may have some that shall
+escape the sword among the nations, when ye shall be scattered through
+the countries.
+
+6:9 And they that escape of you shall remember me among the nations
+whither they shall be carried captives, because I am broken with their
+whorish heart, which hath departed from me, and with their eyes, which
+go a whoring after their idols: and they shall lothe themselves for
+the evils which they have committed in all their abominations.
+
+6:10 And they shall know that I am the LORD, and that I have not said
+in vain that I would do this evil unto them.
+
+6:11 Thus saith the Lord GOD; Smite with thine hand, and stamp with
+thy foot, and say, Alas for all the evil abominations of the house of
+Israel! for they shall fall by the sword, by the famine, and by the
+pestilence.
+
+6:12 He that is far off shall die of the pestilence; and he that is
+near shall fall by the sword; and he that remaineth and is besieged
+shall die by the famine: thus will I accomplish my fury upon them.
+
+6:13 Then shall ye know that I am the LORD, when their slain men shall
+be among their idols round about their altars, upon every high hill,
+in all the tops of the mountains, and under every green tree, and
+under every thick oak, the place where they did offer sweet savour to
+all their idols.
+
+6:14 So will I stretch out my hand upon them, and make the land
+desolate, yea, more desolate than the wilderness toward Diblath, in
+all their habitations: and they shall know that I am the LORD.
+
+7:1 Moreover the word of the LORD came unto me, saying, 7:2 Also, thou
+son of man, thus saith the Lord GOD unto the land of Israel; An end,
+the end is come upon the four corners of the land.
+
+7:3 Now is the end come upon thee, and I will send mine anger upon
+thee, and will judge thee according to thy ways, and will recompense
+upon thee all thine abominations.
+
+7:4 And mine eye shall not spare thee, neither will I have pity: but I
+will recompense thy ways upon thee, and thine abominations shall be in
+the midst of thee: and ye shall know that I am the LORD.
+
+7:5 Thus saith the Lord GOD; An evil, an only evil, behold, is come.
+
+7:6 An end is come, the end is come: it watcheth for thee; behold, it
+is come.
+
+7:7 The morning is come unto thee, O thou that dwellest in the land:
+the time is come, the day of trouble is near, and not the sounding
+again of the mountains.
+
+7:8 Now will I shortly pour out my fury upon thee, and accomplish mine
+anger upon thee: and I will judge thee according to thy ways, and will
+recompense thee for all thine abominations.
+
+7:9 And mine eye shall not spare, neither will I have pity: I will
+recompense thee according to thy ways and thine abominations that are
+in the midst of thee; and ye shall know that I am the LORD that
+smiteth.
+
+7:10 Behold the day, behold, it is come: the morning is gone forth;
+the rod hath blossomed, pride hath budded.
+
+7:11 Violence is risen up into a rod of wickedness: none of them shall
+remain, nor of their multitude, nor of any of their's: neither shall
+there be wailing for them.
+
+7:12 The time is come, the day draweth near: let not the buyer
+rejoice, nor the seller mourn: for wrath is upon all the multitude
+thereof.
+
+7:13 For the seller shall not return to that which is sold, although
+they were yet alive: for the vision is touching the whole multitude
+thereof, which shall not return; neither shall any strengthen himself
+in the iniquity of his life.
+
+7:14 They have blown the trumpet, even to make all ready; but none
+goeth to the battle: for my wrath is upon all the multitude thereof.
+
+7:15 The sword is without, and the pestilence and the famine within:
+he that is in the field shall die with the sword; and he that is in
+the city, famine and pestilence shall devour him.
+
+7:16 But they that escape of them shall escape, and shall be on the
+mountains like doves of the valleys, all of them mourning, every one
+for his iniquity.
+
+7:17 All hands shall be feeble, and all knees shall be weak as water.
+
+7:18 They shall also gird themselves with sackcloth, and horror shall
+cover them; and shame shall be upon all faces, and baldness upon all
+their heads.
+
+7:19 They shall cast their silver in the streets, and their gold shall
+be removed: their silver and their gold shall not be able to deliver
+them in the day of the wrath of the LORD: they shall not satisfy their
+souls, neither fill their bowels: because it is the stumblingblock of
+their iniquity.
+
+7:20 As for the beauty of his ornament, he set it in majesty: but they
+made the images of their abominations and of their detestable things
+therein: therefore have I set it far from them.
+
+7:21 And I will give it into the hands of the strangers for a prey,
+and to the wicked of the earth for a spoil; and they shall pollute it.
+
+7:22 My face will I turn also from them, and they shall pollute my
+secret place: for the robbers shall enter into it, and defile it.
+
+7:23 Make a chain: for the land is full of bloody crimes, and the city
+is full of violence.
+
+7:24 Wherefore I will bring the worst of the heathen, and they shall
+possess their houses: I will also make the pomp of the strong to
+cease; and their holy places shall be defiled.
+
+7:25 Destruction cometh; and they shall seek peace, and there shall be
+none.
+
+7:26 Mischief shall come upon mischief, and rumour shall be upon
+rumour; then shall they seek a vision of the prophet; but the law
+shall perish from the priest, and counsel from the ancients.
+
+7:27 The king shall mourn, and the prince shall be clothed with
+desolation, and the hands of the people of the land shall be troubled:
+I will do unto them after their way, and according to their deserts
+will I judge them; and they shall know that I am the LORD.
+
+8:1 And it came to pass in the sixth year, in the sixth month, in the
+fifth day of the month, as I sat in mine house, and the elders of
+Judah sat before me, that the hand of the Lord GOD fell there upon me.
+
+8:2 Then I beheld, and lo a likeness as the appearance of fire: from
+the appearance of his loins even downward, fire; and from his loins
+even upward, as the appearance of brightness, as the colour of amber.
+
+8:3 And he put forth the form of an hand, and took me by a lock of
+mine head; and the spirit lifted me up between the earth and the
+heaven, and brought me in the visions of God to Jerusalem, to the door
+of the inner gate that looketh toward the north; where was the seat of
+the image of jealousy, which provoketh to jealousy.
+
+8:4 And, behold, the glory of the God of Israel was there, according
+to the vision that I saw in the plain.
+
+8:5 Then said he unto me, Son of man, lift up thine eyes now the way
+toward the north. So I lifted up mine eyes the way toward the north,
+and behold northward at the gate of the altar this image of jealousy
+in the entry.
+
+8:6 He said furthermore unto me, Son of man, seest thou what they do?
+even the great abominations that the house of Israel committeth here,
+that I should go far off from my sanctuary? but turn thee yet again,
+and thou shalt see greater abominations.
+
+8:7 And he brought me to the door of the court; and when I looked,
+behold a hole in the wall.
+
+8:8 Then said he unto me, Son of man, dig now in the wall: and when I
+had digged in the wall, behold a door.
+
+8:9 And he said unto me, Go in, and behold the wicked abominations
+that they do here.
+
+8:10 So I went in and saw; and behold every form of creeping things,
+and abominable beasts, and all the idols of the house of Israel,
+pourtrayed upon the wall round about.
+
+8:11 And there stood before them seventy men of the ancients of the
+house of Israel, and in the midst of them stood Jaazaniah the son of
+Shaphan, with every man his censer in his hand; and a thick cloud of
+incense went up.
+
+8:12 Then said he unto me, Son of man, hast thou seen what the
+ancients of the house of Israel do in the dark, every man in the
+chambers of his imagery? for they say, the LORD seeth us not; the LORD
+hath forsaken the earth.
+
+8:13 He said also unto me, Turn thee yet again, and thou shalt see
+greater abominations that they do.
+
+8:14 Then he brought me to the door of the gate of the LORD's house
+which was toward the north; and, behold, there sat women weeping for
+Tammuz.
+
+8:15 Then said he unto me, Hast thou seen this, O son of man? turn
+thee yet again, and thou shalt see greater abominations than these.
+
+8:16 And he brought me into the inner court of the LORD's house, and,
+behold, at the door of the temple of the LORD, between the porch and
+the altar, were about five and twenty men, with their backs toward the
+temple of the LORD, and their faces toward the east; and they
+worshipped the sun toward the east.
+
+8:17 Then he said unto me, Hast thou seen this, O son of man? Is it a
+light thing to the house of Judah that they commit the abominations
+which they commit here? for they have filled the land with violence,
+and have returned to provoke me to anger: and, lo, they put the branch
+to their nose.
+
+8:18 Therefore will I also deal in fury: mine eye shall not spare,
+neither will I have pity: and though they cry in mine ears with a loud
+voice, yet will I not hear them.
+
+9:1 He cried also in mine ears with a loud voice, saying, Cause them
+that have charge over the city to draw near, even every man with his
+destroying weapon in his hand.
+
+9:2 And, behold, six men came from the way of the higher gate, which
+lieth toward the north, and every man a slaughter weapon in his hand;
+and one man among them was clothed with linen, with a writer's inkhorn
+by his side: and they went in, and stood beside the brasen altar.
+
+9:3 And the glory of the God of Israel was gone up from the cherub,
+whereupon he was, to the threshold of the house. And he called to the
+man clothed with linen, which had the writer's inkhorn by his side;
+9:4 And the LORD said unto him, Go through the midst of the city,
+through the midst of Jerusalem, and set a mark upon the foreheads of
+the men that sigh and that cry for all the abominations that be done
+in the midst thereof.
+
+9:5 And to the others he said in mine hearing, Go ye after him through
+the city, and smite: let not your eye spare, neither have ye pity: 9:6
+Slay utterly old and young, both maids, and little children, and
+women: but come not near any man upon whom is the mark; and begin at
+my sanctuary. Then they began at the ancient men which were before the
+house.
+
+9:7 And he said unto them, Defile the house, and fill the courts with
+the slain: go ye forth. And they went forth, and slew in the city.
+
+9:8 And it came to pass, while they were slaying them, and I was left,
+that I fell upon my face, and cried, and said, Ah Lord GOD! wilt thou
+destroy all the residue of Israel in thy pouring out of thy fury upon
+Jerusalem? 9:9 Then said he unto me, The iniquity of the house of
+Israel and Judah is exceeding great, and the land is full of blood,
+and the city full of perverseness: for they say, The LORD hath
+forsaken the earth, and the LORD seeth not.
+
+9:10 And as for me also, mine eye shall not spare, neither will I have
+pity, but I will recompense their way upon their head.
+
+9:11 And, behold, the man clothed with linen, which had the inkhorn by
+his side, reported the matter, saying, I have done as thou hast
+commanded me.
+
+10:1 Then I looked, and, behold, in the firmament that was above the
+head of the cherubims there appeared over them as it were a sapphire
+stone, as the appearance of the likeness of a throne.
+
+10:2 And he spake unto the man clothed with linen, and said, Go in
+between the wheels, even under the cherub, and fill thine hand with
+coals of fire from between the cherubims, and scatter them over the
+city. And he went in in my sight.
+
+10:3 Now the cherubims stood on the right side of the house, when the
+man went in; and the cloud filled the inner court.
+
+10:4 Then the glory of the LORD went up from the cherub, and stood
+over the threshold of the house; and the house was filled with the
+cloud, and the court was full of the brightness of the LORD's glory.
+
+10:5 And the sound of the cherubims' wings was heard even to the outer
+court, as the voice of the Almighty God when he speaketh.
+
+10:6 And it came to pass, that when he had commanded the man clothed
+with linen, saying, Take fire from between the wheels, from between
+the cherubims; then he went in, and stood beside the wheels.
+
+10:7 And one cherub stretched forth his hand from between the
+cherubims unto the fire that was between the cherubims, and took
+thereof, and put it into the hands of him that was clothed with linen:
+who took it, and went out.
+
+10:8 And there appeared in the cherubims the form of a man's hand
+under their wings.
+
+10:9 And when I looked, behold the four wheels by the cherubims, one
+wheel by one cherub, and another wheel by another cherub: and the
+appearance of the wheels was as the colour of a beryl stone.
+
+10:10 And as for their appearances, they four had one likeness, as if
+a wheel had been in the midst of a wheel.
+
+10:11 When they went, they went upon their four sides; they turned not
+as they went, but to the place whither the head looked they followed
+it; they turned not as they went.
+
+10:12 And their whole body, and their backs, and their hands, and
+their wings, and the wheels, were full of eyes round about, even the
+wheels that they four had.
+
+10:13 As for the wheels, it was cried unto them in my hearing, O
+wheel.
+
+10:14 And every one had four faces: the first face was the face of a
+cherub, and the second face was the face of a man, and the third the
+face of a lion, and the fourth the face of an eagle.
+
+10:15 And the cherubims were lifted up. This is the living creature
+that I saw by the river of Chebar.
+
+10:16 And when the cherubims went, the wheels went by them: and when
+the cherubims lifted up their wings to mount up from the earth, the
+same wheels also turned not from beside them.
+
+10:17 When they stood, these stood; and when they were lifted up,
+these lifted up themselves also: for the spirit of the living creature
+was in them.
+
+10:18 Then the glory of the LORD departed from off the threshold of
+the house, and stood over the cherubims.
+
+10:19 And the cherubims lifted up their wings, and mounted up from the
+earth in my sight: when they went out, the wheels also were beside
+them, and every one stood at the door of the east gate of the LORD's
+house; and the glory of the God of Israel was over them above.
+
+10:20 This is the living creature that I saw under the God of Israel
+by the river of Chebar; and I knew that they were the cherubims.
+
+10:21 Every one had four faces apiece, and every one four wings; and
+the likeness of the hands of a man was under their wings.
+
+10:22 And the likeness of their faces was the same faces which I saw
+by the river of Chebar, their appearances and themselves: they went
+every one straight forward.
+
+11:1 Moreover the spirit lifted me up, and brought me unto the east
+gate of the LORD's house, which looketh eastward: and behold at the
+door of the gate five and twenty men; among whom I saw Jaazaniah the
+son of Azur, and Pelatiah the son of Benaiah, princes of the people.
+
+11:2 Then said he unto me, Son of man, these are the men that devise
+mischief, and give wicked counsel in this city: 11:3 Which say, It is
+not near; let us build houses: this city is the caldron, and we be the
+flesh.
+
+11:4 Therefore prophesy against them, prophesy, O son of man.
+
+11:5 And the Spirit of the LORD fell upon me, and said unto me, Speak;
+Thus saith the LORD; Thus have ye said, O house of Israel: for I know
+the things that come into your mind, every one of them.
+
+11:6 Ye have multiplied your slain in this city, and ye have filled
+the streets thereof with the slain.
+
+11:7 Therefore thus saith the Lord GOD; Your slain whom ye have laid
+in the midst of it, they are the flesh, and this city is the caldron:
+but I will bring you forth out of the midst of it.
+
+11:8 Ye have feared the sword; and I will bring a sword upon you,
+saith the Lord GOD.
+
+11:9 And I will bring you out of the midst thereof, and deliver you
+into the hands of strangers, and will execute judgments among you.
+
+11:10 Ye shall fall by the sword; I will judge you in the border of
+Israel; and ye shall know that I am the LORD.
+
+11:11 This city shall not be your caldron, neither shall ye be the
+flesh in the midst thereof; but I will judge you in the border of
+Israel: 11:12 And ye shall know that I am the LORD: for ye have not
+walked in my statutes, neither executed my judgments, but have done
+after the manners of the heathen that are round about you.
+
+11:13 And it came to pass, when I prophesied, that Pelatiah the son of
+Benaiah died. Then fell I down upon my face, and cried with a loud
+voice, and said, Ah Lord GOD! wilt thou make a full end of the remnant
+of Israel? 11:14 Again the word of the LORD came unto me, saying,
+11:15 Son of man, thy brethren, even thy brethren, the men of thy
+kindred, and all the house of Israel wholly, are they unto whom the
+inhabitants of Jerusalem have said, Get you far from the LORD: unto us
+is this land given in possession.
+
+11:16 Therefore say, Thus saith the Lord GOD; Although I have cast
+them far off among the heathen, and although I have scattered them
+among the countries, yet will I be to them as a little sanctuary in
+the countries where they shall come.
+
+11:17 Therefore say, Thus saith the Lord GOD; I will even gather you
+from the people, and assemble you out of the countries where ye have
+been scattered, and I will give you the land of Israel.
+
+11:18 And they shall come thither, and they shall take away all the
+detestable things thereof and all the abominations thereof from
+thence.
+
+11:19 And I will give them one heart, and I will put a new spirit
+within you; and I will take the stony heart out of their flesh, and
+will give them an heart of flesh: 11:20 That they may walk in my
+statutes, and keep mine ordinances, and do them: and they shall be my
+people, and I will be their God.
+
+11:21 But as for them whose heart walketh after the heart of their
+detestable things and their abominations, I will recompense their way
+upon their own heads, saith the Lord GOD.
+
+11:22 Then did the cherubims lift up their wings, and the wheels
+beside them; and the glory of the God of Israel was over them above.
+
+11:23 And the glory of the LORD went up from the midst of the city,
+and stood upon the mountain which is on the east side of the city.
+
+11:24 Afterwards the spirit took me up, and brought me in a vision by
+the Spirit of God into Chaldea, to them of the captivity. So the
+vision that I had seen went up from me.
+
+11:25 Then I spake unto them of the captivity all the things that the
+LORD had shewed me.
+
+12:1 The word of the LORD also came unto me, saying, 12:2 Son of man,
+thou dwellest in the midst of a rebellious house, which have eyes to
+see, and see not; they have ears to hear, and hear not: for they are a
+rebellious house.
+
+12:3 Therefore, thou son of man, prepare thee stuff for removing, and
+remove by day in their sight; and thou shalt remove from thy place to
+another place in their sight: it may be they will consider, though
+they be a rebellious house.
+
+12:4 Then shalt thou bring forth thy stuff by day in their sight, as
+stuff for removing: and thou shalt go forth at even in their sight, as
+they that go forth into captivity.
+
+12:5 Dig thou through the wall in their sight, and carry out thereby.
+
+12:6 In their sight shalt thou bear it upon thy shoulders, and carry
+it forth in the twilight: thou shalt cover thy face, that thou see not
+the ground: for I have set thee for a sign unto the house of Israel.
+
+12:7 And I did so as I was commanded: I brought forth my stuff by day,
+as stuff for captivity, and in the even I digged through the wall with
+mine hand; I brought it forth in the twilight, and I bare it upon my
+shoulder in their sight.
+
+12:8 And in the morning came the word of the LORD unto me, saying,
+12:9 Son of man, hath not the house of Israel, the rebellious house,
+said unto thee, What doest thou? 12:10 Say thou unto them, Thus saith
+the Lord GOD; This burden concerneth the prince in Jerusalem, and all
+the house of Israel that are among them.
+
+12:11 Say, I am your sign: like as I have done, so shall it be done
+unto them: they shall remove and go into captivity.
+
+12:12 And the prince that is among them shall bear upon his shoulder
+in the twilight, and shall go forth: they shall dig through the wall
+to carry out thereby: he shall cover his face, that he see not the
+ground with his eyes.
+
+12:13 My net also will I spread upon him, and he shall be taken in my
+snare: and I will bring him to Babylon to the land of the Chaldeans;
+yet shall he not see it, though he shall die there.
+
+12:14 And I will scatter toward every wind all that are about him to
+help him, and all his bands; and I will draw out the sword after them.
+
+12:15 And they shall know that I am the LORD, when I shall scatter
+them among the nations, and disperse them in the countries.
+
+12:16 But I will leave a few men of them from the sword, from the
+famine, and from the pestilence; that they may declare all their
+abominations among the heathen whither they come; and they shall know
+that I am the LORD.
+
+12:17 Moreover the word of the LORD came to me, saying, 12:18 Son of
+man, eat thy bread with quaking, and drink thy water with trembling
+and with carefulness; 12:19 And say unto the people of the land, Thus
+saith the Lord GOD of the inhabitants of Jerusalem, and of the land of
+Israel; They shall eat their bread with carefulness, and drink their
+water with astonishment, that her land may be desolate from all that
+is therein, because of the violence of all them that dwell therein.
+
+12:20 And the cities that are inhabited shall be laid waste, and the
+land shall be desolate; and ye shall know that I am the LORD.
+
+12:21 And the word of the LORD came unto me, saying, 12:22 Son of man,
+what is that proverb that ye have in the land of Israel, saying, The
+days are prolonged, and every vision faileth? 12:23 Tell them
+therefore, Thus saith the Lord GOD; I will make this proverb to cease,
+and they shall no more use it as a proverb in Israel; but say unto
+them, The days are at hand, and the effect of every vision.
+
+12:24 For there shall be no more any vain vision nor flattering
+divination within the house of Israel.
+
+12:25 For I am the LORD: I will speak, and the word that I shall speak
+shall come to pass; it shall be no more prolonged: for in your days, O
+rebellious house, will I say the word, and will perform it, saith the
+Lord GOD.
+
+12:26 Again the word of the LORD came to me, saying.
+
+12:27 Son of man, behold, they of the house of Israel say, The vision
+that he seeth is for many days to come, and he prophesieth of the
+times that are far off.
+
+12:28 Therefore say unto them, Thus saith the Lord GOD; There shall
+none of my words be prolonged any more, but the word which I have
+spoken shall be done, saith the Lord GOD.
+
+13:1 And the word of the LORD came unto me, saying, 13:2 Son of man,
+prophesy against the prophets of Israel that prophesy, and say thou
+unto them that prophesy out of their own hearts, Hear ye the word of
+the LORD; 13:3 Thus saith the Lord GOD; Woe unto the foolish prophets,
+that follow their own spirit, and have seen nothing! 13:4 O Israel,
+thy prophets are like the foxes in the deserts.
+
+13:5 Ye have not gone up into the gaps, neither made up the hedge for
+the house of Israel to stand in the battle in the day of the LORD.
+
+13:6 They have seen vanity and lying divination, saying, The LORD
+saith: and the LORD hath not sent them: and they have made others to
+hope that they would confirm the word.
+
+13:7 Have ye not seen a vain vision, and have ye not spoken a lying
+divination, whereas ye say, The LORD saith it; albeit I have not
+spoken? 13:8 Therefore thus saith the Lord GOD; Because ye have
+spoken vanity, and seen lies, therefore, behold, I am against you,
+saith the Lord GOD.
+
+13:9 And mine hand shall be upon the prophets that see vanity, and
+that divine lies: they shall not be in the assembly of my people,
+neither shall they be written in the writing of the house of Israel,
+neither shall they enter into the land of Israel; and ye shall know
+that I am the Lord GOD.
+
+13:10 Because, even because they have seduced my people, saying,
+Peace; and there was no peace; and one built up a wall, and, lo,
+others daubed it with untempered morter: 13:11 Say unto them which
+daub it with untempered morter, that it shall fall: there shall be an
+overflowing shower; and ye, O great hailstones, shall fall; and a
+stormy wind shall rend it.
+
+13:12 Lo, when the wall is fallen, shall it not be said unto you,
+Where is the daubing wherewith ye have daubed it? 13:13 Therefore
+thus saith the Lord GOD; I will even rend it with a stormy wind in my
+fury; and there shall be an overflowing shower in mine anger, and
+great hailstones in my fury to consume it.
+
+13:14 So will I break down the wall that ye have daubed with
+untempered morter, and bring it down to the ground, so that the
+foundation thereof shall be discovered, and it shall fall, and ye
+shall be consumed in the midst thereof: and ye shall know that I am
+the LORD.
+
+13:15 Thus will I accomplish my wrath upon the wall, and upon them
+that have daubed it with untempered morter, and will say unto you, The
+wall is no more, neither they that daubed it; 13:16 To wit, the
+prophets of Israel which prophesy concerning Jerusalem, and which see
+visions of peace for her, and there is no peace, saith the Lord GOD.
+
+13:17 Likewise, thou son of man, set thy face against the daughters of
+thy people, which prophesy out of their own heart; and prophesy thou
+against them, 13:18 And say, Thus saith the Lord GOD; Woe to the women
+that sew pillows to all armholes, and make kerchiefs upon the head of
+every stature to hunt souls! Will ye hunt the souls of my people, and
+will ye save the souls alive that come unto you? 13:19 And will ye
+pollute me among my people for handfuls of barley and for pieces of
+bread, to slay the souls that should not die, and to save the souls
+alive that should not live, by your lying to my people that hear your
+lies? 13:20 Wherefore thus saith the Lord GOD; Behold, I am against
+your pillows, wherewith ye there hunt the souls to make them fly, and
+I will tear them from your arms, and will let the souls go, even the
+souls that ye hunt to make them fly.
+
+13:21 Your kerchiefs also will I tear, and deliver my people out of
+your hand, and they shall be no more in your hand to be hunted; and ye
+shall know that I am the LORD.
+
+13:22 Because with lies ye have made the heart of the righteous sad,
+whom I have not made sad; and strengthened the hands of the wicked,
+that he should not return from his wicked way, by promising him life:
+13:23 Therefore ye shall see no more vanity, nor divine divinations:
+for I will deliver my people out of your hand: and ye shall know that
+I am the LORD.
+
+14:1 Then came certain of the elders of Israel unto me, and sat before
+me.
+
+14:2 And the word of the LORD came unto me, saying, 14:3 Son of man,
+these men have set up their idols in their heart, and put the
+stumblingblock of their iniquity before their face: should I be
+enquired of at all by them? 14:4 Therefore speak unto them, and say
+unto them, Thus saith the Lord GOD; Every man of the house of Israel
+that setteth up his idols in his heart, and putteth the stumblingblock
+of his iniquity before his face, and cometh to the prophet; I the LORD
+will answer him that cometh according to the multitude of his idols;
+14:5 That I may take the house of Israel in their own heart, because
+they are all estranged from me through their idols.
+
+14:6 Therefore say unto the house of Israel, Thus saith the Lord GOD;
+Repent, and turn yourselves from your idols; and turn away your faces
+from all your abominations.
+
+14:7 For every one of the house of Israel, or of the stranger that
+sojourneth in Israel, which separateth himself from me, and setteth up
+his idols in his heart, and putteth the stumblingblock of his iniquity
+before his face, and cometh to a prophet to enquire of him concerning
+me; I the LORD will answer him by myself: 14:8 And I will set my face
+against that man, and will make him a sign and a proverb, and I will
+cut him off from the midst of my people; and ye shall know that I am
+the LORD.
+
+14:9 And if the prophet be deceived when he hath spoken a thing, I the
+LORD have deceived that prophet, and I will stretch out my hand upon
+him, and will destroy him from the midst of my people Israel.
+
+14:10 And they shall bear the punishment of their iniquity: the
+punishment of the prophet shall be even as the punishment of him that
+seeketh unto him; 14:11 That the house of Israel may go no more astray
+from me, neither be polluted any more with all their transgressions;
+but that they may be my people, and I may be their God, saith the Lord
+GOD.
+
+14:12 The word of the LORD came again to me, saying, 14:13 Son of man,
+when the land sinneth against me by trespassing grievously, then will
+I stretch out mine hand upon it, and will break the staff of the bread
+thereof, and will send famine upon it, and will cut off man and beast
+from it: 14:14 Though these three men, Noah, Daniel, and Job, were in
+it, they should deliver but their own souls by their righteousness,
+saith the Lord GOD.
+
+14:15 If I cause noisome beasts to pass through the land, and they
+spoil it, so that it be desolate, that no man may pass through because
+of the beasts: 14:16 Though these three men were in it, as I live,
+saith the Lord GOD, they shall deliver neither sons nor daughters;
+they only shall be delivered, but the land shall be desolate.
+
+14:17 Or if I bring a sword upon that land, and say, Sword, go through
+the land; so that I cut off man and beast from it: 14:18 Though these
+three men were in it, as I live, saith the Lord GOD, they shall
+deliver neither sons nor daughters, but they only shall be delivered
+themselves.
+
+14:19 Or if I send a pestilence into that land, and pour out my fury
+upon it in blood, to cut off from it man and beast: 14:20 Though Noah,
+Daniel, and Job were in it, as I live, saith the Lord GOD, they shall
+deliver neither son nor daughter; they shall but deliver their own
+souls by their righteousness.
+
+14:21 For thus saith the Lord GOD; How much more when I send my four
+sore judgments upon Jerusalem, the sword, and the famine, and the
+noisome beast, and the pestilence, to cut off from it man and beast?
+14:22 Yet, behold, therein shall be left a remnant that shall be
+brought forth, both sons and daughters: behold, they shall come forth
+unto you, and ye shall see their way and their doings: and ye shall be
+comforted concerning the evil that I have brought upon Jerusalem, even
+concerning all that I have brought upon it.
+
+14:23 And they shall comfort you, when ye see their ways and their
+doings: and ye shall know that I have not done without cause all that
+I have done in it, saith the Lord GOD.
+
+15:1 And the word of the LORD came unto me, saying, 15:2 Son of man,
+what is the vine tree more than any tree, or than a branch which is
+among the trees of the forest? 15:3 Shall wood be taken thereof to do
+any work? or will men take a pin of it to hang any vessel thereon?
+15:4 Behold, it is cast into the fire for fuel; the fire devoureth
+both the ends of it, and the midst of it is burned. Is it meet for any
+work? 15:5 Behold, when it was whole, it was meet for no work: how
+much less shall it be meet yet for any work, when the fire hath
+devoured it, and it is burned? 15:6 Therefore thus saith the Lord
+GOD; As the vine tree among the trees of the forest, which I have
+given to the fire for fuel, so will I give the inhabitants of
+Jerusalem.
+
+15:7 And I will set my face against them; they shall go out from one
+fire, and another fire shall devour them; and ye shall know that I am
+the LORD, when I set my face against them.
+
+15:8 And I will make the land desolate, because they have committed a
+trespass, saith the Lord GOD.
+
+16:1 Again the word of the LORD came unto me, saying, 16:2 Son of man,
+cause Jerusalem to know her abominations, 16:3 And say, Thus saith the
+Lord GOD unto Jerusalem; Thy birth and thy nativity is of the land of
+Canaan; thy father was an Amorite, and thy mother an Hittite.
+
+16:4 And as for thy nativity, in the day thou wast born thy navel was
+not cut, neither wast thou washed in water to supple thee; thou wast
+not salted at all, nor swaddled at all.
+
+16:5 None eye pitied thee, to do any of these unto thee, to have
+compassion upon thee; but thou wast cast out in the open field, to the
+lothing of thy person, in the day that thou wast born.
+
+16:6 And when I passed by thee, and saw thee polluted in thine own
+blood, I said unto thee when thou wast in thy blood, Live; yea, I said
+unto thee when thou wast in thy blood, Live.
+
+16:7 I have caused thee to multiply as the bud of the field, and thou
+hast increased and waxen great, and thou art come to excellent
+ornaments: thy breasts are fashioned, and thine hair is grown, whereas
+thou wast naked and bare.
+
+16:8 Now when I passed by thee, and looked upon thee, behold, thy time
+was the time of love; and I spread my skirt over thee, and covered thy
+nakedness: yea, I sware unto thee, and entered into a covenant with
+thee, saith the Lord GOD, and thou becamest mine.
+
+16:9 Then washed I thee with water; yea, I throughly washed away thy
+blood from thee, and I anointed thee with oil.
+
+16:10 I clothed thee also with broidered work, and shod thee with
+badgers' skin, and I girded thee about with fine linen, and I covered
+thee with silk.
+
+16:11 I decked thee also with ornaments, and I put bracelets upon thy
+hands, and a chain on thy neck.
+
+16:12 And I put a jewel on thy forehead, and earrings in thine ears,
+and a beautiful crown upon thine head.
+
+16:13 Thus wast thou decked with gold and silver; and thy raiment was
+of fine linen, and silk, and broidered work; thou didst eat fine
+flour, and honey, and oil: and thou wast exceeding beautiful, and thou
+didst prosper into a kingdom.
+
+16:14 And thy renown went forth among the heathen for thy beauty: for
+it was perfect through my comeliness, which I had put upon thee, saith
+the Lord GOD.
+
+16:15 But thou didst trust in thine own beauty, and playedst the
+harlot because of thy renown, and pouredst out thy fornications on
+every one that passed by; his it was.
+
+16:16 And of thy garments thou didst take, and deckedst thy high
+places with divers colours, and playedst the harlot thereupon: the
+like things shall not come, neither shall it be so.
+
+16:17 Thou hast also taken thy fair jewels of my gold and of my
+silver, which I had given thee, and madest to thyself images of men,
+and didst commit whoredom with them, 16:18 And tookest thy broidered
+garments, and coveredst them: and thou hast set mine oil and mine
+incense before them.
+
+16:19 My meat also which I gave thee, fine flour, and oil, and honey,
+wherewith I fed thee, thou hast even set it before them for a sweet
+savour: and thus it was, saith the Lord GOD.
+
+16:20 Moreover thou hast taken thy sons and thy daughters, whom thou
+hast borne unto me, and these hast thou sacrificed unto them to be
+devoured. Is this of thy whoredoms a small matter, 16:21 That thou
+hast slain my children, and delivered them to cause them to pass
+through the fire for them? 16:22 And in all thine abominations and
+thy whoredoms thou hast not remembered the days of thy youth, when
+thou wast naked and bare, and wast polluted in thy blood.
+
+16:23 And it came to pass after all thy wickedness, (woe, woe unto
+thee! saith the LORD GOD;) 16:24 That thou hast also built unto thee
+an eminent place, and hast made thee an high place in every street.
+
+16:25 Thou hast built thy high place at every head of the way, and
+hast made thy beauty to be abhorred, and hast opened thy feet to every
+one that passed by, and multiplied thy whoredoms.
+
+16:26 Thou hast also committed fornication with the Egyptians thy
+neighbours, great of flesh; and hast increased thy whoredoms, to
+provoke me to anger.
+
+16:27 Behold, therefore I have stretched out my hand over thee, and
+have diminished thine ordinary food, and delivered thee unto the will
+of them that hate thee, the daughters of the Philistines, which are
+ashamed of thy lewd way.
+
+16:28 Thou hast played the whore also with the Assyrians, because thou
+wast unsatiable; yea, thou hast played the harlot with them, and yet
+couldest not be satisfied.
+
+16:29 Thou hast moreover multiplied thy fornication in the land of
+Canaan unto Chaldea; and yet thou wast not satisfied therewith.
+
+16:30 How weak is thine heart, saith the LORD GOD, seeing thou doest
+all these things, the work of an imperious whorish woman; 16:31 In
+that thou buildest thine eminent place in the head of every way, and
+makest thine high place in every street; and hast not been as an
+harlot, in that thou scornest hire; 16:32 But as a wife that
+committeth adultery, which taketh strangers instead of her husband!
+16:33 They give gifts to all whores: but thou givest thy gifts to all
+thy lovers, and hirest them, that they may come unto thee on every
+side for thy whoredom.
+
+16:34 And the contrary is in thee from other women in thy whoredoms,
+whereas none followeth thee to commit whoredoms: and in that thou
+givest a reward, and no reward is given unto thee, therefore thou art
+contrary.
+
+16:35 Wherefore, O harlot, hear the word of the LORD: 16:36 Thus saith
+the Lord GOD; Because thy filthiness was poured out, and thy nakedness
+discovered through thy whoredoms with thy lovers, and with all the
+idols of thy abominations, and by the blood of thy children, which
+thou didst give unto them; 16:37 Behold, therefore I will gather all
+thy lovers, with whom thou hast taken pleasure, and all them that thou
+hast loved, with all them that thou hast hated; I will even gather
+them round about against thee, and will discover thy nakedness unto
+them, that they may see all thy nakedness.
+
+16:38 And I will judge thee, as women that break wedlock and shed
+blood are judged; and I will give thee blood in fury and jealousy.
+
+16:39 And I will also give thee into their hand, and they shall throw
+down thine eminent place, and shall break down thy high places: they
+shall strip thee also of thy clothes, and shall take thy fair jewels,
+and leave thee naked and bare.
+
+16:40 They shall also bring up a company against thee, and they shall
+stone thee with stones, and thrust thee through with their swords.
+
+16:41 And they shall burn thine houses with fire, and execute
+judgments upon thee in the sight of many women: and I will cause thee
+to cease from playing the harlot, and thou also shalt give no hire any
+more.
+
+16:42 So will I make my fury toward thee to rest, and my jealousy
+shall depart from thee, and I will be quiet, and will be no more
+angry.
+
+16:43 Because thou hast not remembered the days of thy youth, but hast
+fretted me in all these things; behold, therefore I also will
+recompense thy way upon thine head, saith the Lord GOD: and thou shalt
+not commit this lewdness above all thine abominations.
+
+16:44 Behold, every one that useth proverbs shall use this proverb
+against thee, saying, As is the mother, so is her daughter.
+
+16:45 Thou art thy mother's daughter, that lotheth her husband and her
+children; and thou art the sister of thy sisters, which lothed their
+husbands and their children: your mother was an Hittite, and your
+father an Amorite.
+
+16:46 And thine elder sister is Samaria, she and her daughters that
+dwell at thy left hand: and thy younger sister, that dwelleth at thy
+right hand, is Sodom and her daughters.
+
+16:47 Yet hast thou not walked after their ways, nor done after their
+abominations: but, as if that were a very little thing, thou wast
+corrupted more than they in all thy ways.
+
+16:48 As I live, saith the Lord GOD, Sodom thy sister hath not done,
+she nor her daughters, as thou hast done, thou and thy daughters.
+
+16:49 Behold, this was the iniquity of thy sister Sodom, pride,
+fulness of bread, and abundance of idleness was in her and in her
+daughters, neither did she strengthen the hand of the poor and needy.
+
+16:50 And they were haughty, and committed abomination before me:
+therefore I took them away as I saw good.
+
+16:51 Neither hath Samaria committed half of thy sins; but thou hast
+multiplied thine abominations more than they, and hast justified thy
+sisters in all thine abominations which thou hast done.
+
+16:52 Thou also, which hast judged thy sisters, bear thine own shame
+for thy sins that thou hast committed more abominable than they: they
+are more righteous than thou: yea, be thou confounded also, and bear
+thy shame, in that thou hast justified thy sisters.
+
+16:53 When I shall bring again their captivity, the captivity of Sodom
+and her daughters, and the captivity of Samaria and her daughters,
+then will I bring again the captivity of thy captives in the midst of
+them: 16:54 That thou mayest bear thine own shame, and mayest be
+confounded in all that thou hast done, in that thou art a comfort unto
+them.
+
+16:55 When thy sisters, Sodom and her daughters, shall return to their
+former estate, and Samaria and her daughters shall return to their
+former estate, then thou and thy daughters shall return to your former
+estate.
+
+16:56 For thy sister Sodom was not mentioned by thy mouth in the day
+of thy pride, 16:57 Before thy wickedness was discovered, as at the
+time of thy reproach of the daughters of Syria, and all that are round
+about her, the daughters of the Philistines, which despise thee round
+about.
+
+16:58 Thou hast borne thy lewdness and thine abominations, saith the
+LORD.
+
+16:59 For thus saith the Lord GOD; I will even deal with thee as thou
+hast done, which hast despised the oath in breaking the covenant.
+
+16:60 Nevertheless I will remember my covenant with thee in the days
+of thy youth, and I will establish unto thee an everlasting covenant.
+
+16:61 Then thou shalt remember thy ways, and be ashamed, when thou
+shalt receive thy sisters, thine elder and thy younger: and I will
+give them unto thee for daughters, but not by thy covenant.
+
+16:62 And I will establish my covenant with thee; and thou shalt know
+that I am the LORD: 16:63 That thou mayest remember, and be
+confounded, and never open thy mouth any more because of thy shame,
+when I am pacified toward thee for all that thou hast done, saith the
+Lord GOD.
+
+17:1 And the word of the LORD came unto me, saying, 17:2 Son of man,
+put forth a riddle, and speak a parable unto the house of Israel; 17:3
+And say, Thus saith the Lord GOD; A great eagle with great wings,
+longwinged, full of feathers, which had divers colours, came unto
+Lebanon, and took the highest branch of the cedar: 17:4 He cropped off
+the top of his young twigs, and carried it into a land of traffick; he
+set it in a city of merchants.
+
+17:5 He took also of the seed of the land, and planted it in a
+fruitful field; he placed it by great waters, and set it as a willow
+tree.
+
+17:6 And it grew, and became a spreading vine of low stature, whose
+branches turned toward him, and the roots thereof were under him: so
+it became a vine, and brought forth branches, and shot forth sprigs.
+
+17:7 There was also another great eagle with great wings and many
+feathers: and, behold, this vine did bend her roots toward him, and
+shot forth her branches toward him, that he might water it by the
+furrows of her plantation.
+
+17:8 It was planted in a good soil by great waters, that it might
+bring forth branches, and that it might bear fruit, that it might be a
+goodly vine.
+
+17:9 Say thou, Thus saith the Lord GOD; Shall it prosper? shall he not
+pull up the roots thereof, and cut off the fruit thereof, that it
+wither? it shall wither in all the leaves of her spring, even without
+great power or many people to pluck it up by the roots thereof.
+
+17:10 Yea, behold, being planted, shall it prosper? shall it not
+utterly wither, when the east wind toucheth it? it shall wither in the
+furrows where it grew.
+
+17:11 Moreover the word of the LORD came unto me, saying, 17:12 Say
+now to the rebellious house, Know ye not what these things mean? tell
+them, Behold, the king of Babylon is come to Jerusalem, and hath taken
+the king thereof, and the princes thereof, and led them with him to
+Babylon; 17:13 And hath taken of the king's seed, and made a covenant
+with him, and hath taken an oath of him: he hath also taken the mighty
+of the land: 17:14 That the kingdom might be base, that it might not
+lift itself up, but that by keeping of his covenant it might stand.
+
+17:15 But he rebelled against him in sending his ambassadors into
+Egypt, that they might give him horses and much people. Shall he
+prosper? shall he escape that doeth such things? or shall he break the
+covenant, and be delivered? 17:16 As I live, saith the Lord GOD,
+surely in the place where the king dwelleth that made him king, whose
+oath he despised, and whose covenant he brake, even with him in the
+midst of Babylon he shall die.
+
+17:17 Neither shall Pharaoh with his mighty army and great company
+make for him in the war, by casting up mounts, and building forts, to
+cut off many persons: 17:18 Seeing he despised the oath by breaking
+the covenant, when, lo, he had given his hand, and hath done all these
+things, he shall not escape.
+
+17:19 Therefore thus saith the Lord GOD; As I live, surely mine oath
+that he hath despised, and my covenant that he hath broken, even it
+will I recompense upon his own head.
+
+17:20 And I will spread my net upon him, and he shall be taken in my
+snare, and I will bring him to Babylon, and will plead with him there
+for his trespass that he hath trespassed against me.
+
+17:21 And all his fugitives with all his bands shall fall by the
+sword, and they that remain shall be scattered toward all winds: and
+ye shall know that I the LORD have spoken it.
+
+17:22 Thus saith the Lord GOD; I will also take of the highest branch
+of the high cedar, and will set it; I will crop off from the top of
+his young twigs a tender one, and will plant it upon an high mountain
+and eminent: 17:23 In the mountain of the height of Israel will I
+plant it: and it shall bring forth boughs, and bear fruit, and be a
+goodly cedar: and under it shall dwell all fowl of every wing; in the
+shadow of the branches thereof shall they dwell.
+
+17:24 And all the trees of the field shall know that I the LORD have
+brought down the high tree, have exalted the low tree, have dried up
+the green tree, and have made the dry tree to flourish: I the LORD
+have spoken and have done it.
+
+18:1 The word of the LORD came unto me again, saying, 18:2 What mean
+ye, that ye use this proverb concerning the land of Israel, saying,
+The fathers have eaten sour grapes, and the children's teeth are set
+on edge? 18:3 As I live, saith the Lord GOD, ye shall not have
+occasion any more to use this proverb in Israel.
+
+18:4 Behold, all souls are mine; as the soul of the father, so also
+the soul of the son is mine: the soul that sinneth, it shall die.
+
+18:5 But if a man be just, and do that which is lawful and right, 18:6
+And hath not eaten upon the mountains, neither hath lifted up his eyes
+to the idols of the house of Israel, neither hath defiled his
+neighbour's wife, neither hath come near to a menstruous woman, 18:7
+And hath not oppressed any, but hath restored to the debtor his
+pledge, hath spoiled none by violence, hath given his bread to the
+hungry, and hath covered the naked with a garment; 18:8 He that hath
+not given forth upon usury, neither hath taken any increase, that hath
+withdrawn his hand from iniquity, hath executed true judgment between
+man and man, 18:9 Hath walked in my statutes, and hath kept my
+judgments, to deal truly; he is just, he shall surely live, saith the
+Lord GOD.
+
+18:10 If he beget a son that is a robber, a shedder of blood, and that
+doeth the like to any one of these things, 18:11 And that doeth not
+any of those duties, but even hath eaten upon the mountains, and
+defiled his neighbour's wife, 18:12 Hath oppressed the poor and needy,
+hath spoiled by violence, hath not restored the pledge, and hath
+lifted up his eyes to the idols, hath committed abomination, 18:13
+Hath given forth upon usury, and hath taken increase: shall he then
+live? he shall not live: he hath done all these abominations; he shall
+surely die; his blood shall be upon him.
+
+18:14 Now, lo, if he beget a son, that seeth all his father's sins
+which he hath done, and considereth, and doeth not such like, 18:15
+That hath not eaten upon the mountains, neither hath lifted up his
+eyes to the idols of the house of Israel, hath not defiled his
+neighbour's wife, 18:16 Neither hath oppressed any, hath not
+withholden the pledge, neither hath spoiled by violence, but hath
+given his bread to the hungry, and hath covered the naked with a
+garment, 18:17 That hath taken off his hand from the poor, that hath
+not received usury nor increase, hath executed my judgments, hath
+walked in my statutes; he shall not die for the iniquity of his
+father, he shall surely live.
+
+18:18 As for his father, because he cruelly oppressed, spoiled his
+brother by violence, and did that which is not good among his people,
+lo, even he shall die in his iniquity.
+
+18:19 Yet say ye, Why? doth not the son bear the iniquity of the
+father? When the son hath done that which is lawful and right, and
+hath kept all my statutes, and hath done them, he shall surely live.
+
+18:20 The soul that sinneth, it shall die. The son shall not bear the
+iniquity of the father, neither shall the father bear the iniquity of
+the son: the righteousness of the righteous shall be upon him, and the
+wickedness of the wicked shall be upon him.
+
+18:21 But if the wicked will turn from all his sins that he hath
+committed, and keep all my statutes, and do that which is lawful and
+right, he shall surely live, he shall not die.
+
+18:22 All his transgressions that he hath committed, they shall not be
+mentioned unto him: in his righteousness that he hath done he shall
+live.
+
+18:23 Have I any pleasure at all that the wicked should die? saith the
+Lord GOD: and not that he should return from his ways, and live?
+18:24 But when the righteous turneth away from his righteousness, and
+committeth iniquity, and doeth according to all the abominations that
+the wicked man doeth, shall he live? All his righteousness that he
+hath done shall not be mentioned: in his trespass that he hath
+trespassed, and in his sin that he hath sinned, in them shall he die.
+
+18:25 Yet ye say, The way of the LORD is not equal. Hear now, O house
+of Israel; Is not my way equal? are not your ways unequal? 18:26 When
+a righteous man turneth away from his righteousness, and committeth
+iniquity, and dieth in them; for his iniquity that he hath done shall
+he die.
+
+18:27 Again, when the wicked man turneth away from his wickedness that
+he hath committed, and doeth that which is lawful and right, he shall
+save his soul alive.
+
+18:28 Because he considereth, and turneth away from all his
+transgressions that he hath committed, he shall surely live, he shall
+not die.
+
+18:29 Yet saith the house of Israel, The way of the LORD is not equal.
+O house of Israel, are not my ways equal? are not your ways unequal?
+18:30 Therefore I will judge you, O house of Israel, every one
+according to his ways, saith the Lord GOD. Repent, and turn yourselves
+from all your transgressions; so iniquity shall not be your ruin.
+
+18:31 Cast away from you all your transgressions, whereby ye have
+transgressed; and make you a new heart and a new spirit: for why will
+ye die, O house of Israel? 18:32 For I have no pleasure in the death
+of him that dieth, saith the Lord GOD: wherefore turn yourselves, and
+live ye.
+
+19:1 Moreover take thou up a lamentation for the princes of Israel,
+19:2 And say, What is thy mother? A lioness: she lay down among lions,
+she nourished her whelps among young lions.
+
+19:3 And she brought up one of her whelps: it became a young lion, and
+it learned to catch the prey; it devoured men.
+
+19:4 The nations also heard of him; he was taken in their pit, and
+they brought him with chains unto the land of Egypt.
+
+19:5 Now when she saw that she had waited, and her hope was lost, then
+she took another of her whelps, and made him a young lion.
+
+19:6 And he went up and down among the lions, he became a young lion,
+and learned to catch the prey, and devoured men.
+
+19:7 And he knew their desolate palaces, and he laid waste their
+cities; and the land was desolate, and the fulness thereof, by the
+noise of his roaring.
+
+19:8 Then the nations set against him on every side from the
+provinces, and spread their net over him: he was taken in their pit.
+
+19:9 And they put him in ward in chains, and brought him to the king
+of Babylon: they brought him into holds, that his voice should no more
+be heard upon the mountains of Israel.
+
+19:10 Thy mother is like a vine in thy blood, planted by the waters:
+she was fruitful and full of branches by reason of many waters.
+
+19:11 And she had strong rods for the sceptres of them that bare rule,
+and her stature was exalted among the thick branches, and she appeared
+in her height with the multitude of her branches.
+
+19:12 But she was plucked up in fury, she was cast down to the ground,
+and the east wind dried up her fruit: her strong rods were broken and
+withered; the fire consumed them.
+
+19:13 And now she is planted in the wilderness, in a dry and thirsty
+ground.
+
+19:14 And fire is gone out of a rod of her branches, which hath
+devoured her fruit, so that she hath no strong rod to be a sceptre to
+rule. This is a lamentation, and shall be for a lamentation.
+
+20:1 And it came to pass in the seventh year, in the fifth month, the
+tenth day of the month, that certain of the elders of Israel came to
+enquire of the LORD, and sat before me.
+
+20:2 Then came the word of the LORD unto me, saying, 20:3 Son of man,
+speak unto the elders of Israel, and say unto them, Thus saith the
+Lord GOD; Are ye come to enquire of me? As I live, saith the Lord GOD,
+I will not be enquired of by you.
+
+20:4 Wilt thou judge them, son of man, wilt thou judge them? cause
+them to know the abominations of their fathers: 20:5 And say unto
+them, Thus saith the Lord GOD; In the day when I chose Israel, and
+lifted up mine hand unto the seed of the house of Jacob, and made
+myself known unto them in the land of Egypt, when I lifted up mine
+hand unto them, saying, I am the LORD your God; 20:6 In the day that I
+lifted up mine hand unto them, to bring them forth of the land of
+Egypt into a land that I had espied for them, flowing with milk and
+honey, which is the glory of all lands: 20:7 Then said I unto them,
+Cast ye away every man the abominations of his eyes, and defile not
+yourselves with the idols of Egypt: I am the LORD your God.
+
+20:8 But they rebelled against me, and would not hearken unto me: they
+did not every man cast away the abominations of their eyes, neither
+did they forsake the idols of Egypt: then I said, I will pour out my
+fury upon them, to accomplish my anger against them in the midst of
+the land of Egypt.
+
+20:9 But I wrought for my name's sake, that it should not be polluted
+before the heathen, among whom they were, in whose sight I made myself
+known unto them, in bringing them forth out of the land of Egypt.
+
+20:10 Wherefore I caused them to go forth out of the land of Egypt,
+and brought them into the wilderness.
+
+20:11 And I gave them my statutes, and shewed them my judgments, which
+if a man do, he shall even live in them.
+
+20:12 Moreover also I gave them my sabbaths, to be a sign between me
+and them, that they might know that I am the LORD that sanctify them.
+
+20:13 But the house of Israel rebelled against me in the wilderness:
+they walked not in my statutes, and they despised my judgments, which
+if a man do, he shall even live in them; and my sabbaths they greatly
+polluted: then I said, I would pour out my fury upon them in the
+wilderness, to consume them.
+
+20:14 But I wrought for my name's sake, that it should not be polluted
+before the heathen, in whose sight I brought them out.
+
+20:15 Yet also I lifted up my hand unto them in the wilderness, that I
+would not bring them into the land which I had given them, flowing
+with milk and honey, which is the glory of all lands; 20:16 Because
+they despised my judgments, and walked not in my statutes, but
+polluted my sabbaths: for their heart went after their idols.
+
+20:17 Nevertheless mine eye spared them from destroying them, neither
+did I make an end of them in the wilderness.
+
+20:18 But I said unto their children in the wilderness, Walk ye not in
+the statutes of your fathers, neither observe their judgments, nor
+defile yourselves with their idols: 20:19 I am the LORD your God; walk
+in my statutes, and keep my judgments, and do them; 20:20 And hallow
+my sabbaths; and they shall be a sign between me and you, that ye may
+know that I am the LORD your God.
+
+20:21 Notwithstanding the children rebelled against me: they walked
+not in my statutes, neither kept my judgments to do them, which if a
+man do, he shall even live in them; they polluted my sabbaths: then I
+said, I would pour out my fury upon them, to accomplish my anger
+against them in the wilderness.
+
+20:22 Nevertheless I withdrew mine hand, and wrought for my name's
+sake, that it should not be polluted in the sight of the heathen, in
+whose sight I brought them forth.
+
+20:23 I lifted up mine hand unto them also in the wilderness, that I
+would scatter them among the heathen, and disperse them through the
+countries; 20:24 Because they had not executed my judgments, but had
+despised my statutes, and had polluted my sabbaths, and their eyes
+were after their fathers' idols.
+
+20:25 Wherefore I gave them also statutes that were not good, and
+judgments whereby they should not live; 20:26 And I polluted them in
+their own gifts, in that they caused to pass through the fire all that
+openeth the womb, that I might make them desolate, to the end that
+they might know that I am the LORD.
+
+20:27 Therefore, son of man, speak unto the house of Israel, and say
+unto them, Thus saith the Lord GOD; Yet in this your fathers have
+blasphemed me, in that they have committed a trespass against me.
+
+20:28 For when I had brought them into the land, for the which I
+lifted up mine hand to give it to them, then they saw every high hill,
+and all the thick trees, and they offered there their sacrifices, and
+there they presented the provocation of their offering: there also
+they made their sweet savour, and poured out there their drink
+offerings.
+
+20:29 Then I said unto them, What is the high place whereunto ye go?
+And the name whereof is called Bamah unto this day.
+
+20:30 Wherefore say unto the house of Israel, Thus saith the Lord GOD;
+Are ye polluted after the manner of your fathers? and commit ye
+whoredom after their abominations? 20:31 For when ye offer your
+gifts, when ye make your sons to pass through the fire, ye pollute
+yourselves with all your idols, even unto this day: and shall I be
+enquired of by you, O house of Israel? As I live, saith the Lord GOD,
+I will not be enquired of by you.
+
+20:32 And that which cometh into your mind shall not be at all, that
+ye say, We will be as the heathen, as the families of the countries,
+to serve wood and stone.
+
+20:33 As I live, saith the Lord GOD, surely with a mighty hand, and
+with a stretched out arm, and with fury poured out, will I rule over
+you: 20:34 And I will bring you out from the people, and will gather
+you out of the countries wherein ye are scattered, with a mighty hand,
+and with a stretched out arm, and with fury poured out.
+
+20:35 And I will bring you into the wilderness of the people, and
+there will I plead with you face to face.
+
+20:36 Like as I pleaded with your fathers in the wilderness of the
+land of Egypt, so will I plead with you, saith the Lord GOD.
+
+20:37 And I will cause you to pass under the rod, and I will bring you
+into the bond of the covenant: 20:38 And I will purge out from among
+you the rebels, and them that transgress against me: I will bring them
+forth out of the country where they sojourn, and they shall not enter
+into the land of Israel: and ye shall know that I am the LORD.
+
+20:39 As for you, O house of Israel, thus saith the Lord GOD; Go ye,
+serve ye every one his idols, and hereafter also, if ye will not
+hearken unto me: but pollute ye my holy name no more with your gifts,
+and with your idols.
+
+20:40 For in mine holy mountain, in the mountain of the height of
+Israel, saith the Lord GOD, there shall all the house of Israel, all
+of them in the land, serve me: there will I accept them, and there
+will I require your offerings, and the firstfruits of your oblations,
+with all your holy things.
+
+20:41 I will accept you with your sweet savour, when I bring you out
+from the people, and gather you out of the countries wherein ye have
+been scattered; and I will be sanctified in you before the heathen.
+
+20:42 And ye shall know that I am the LORD, when I shall bring you
+into the land of Israel, into the country for the which I lifted up
+mine hand to give it to your fathers.
+
+20:43 And there shall ye remember your ways, and all your doings,
+wherein ye have been defiled; and ye shall lothe yourselves in your
+own sight for all your evils that ye have committed.
+
+20:44 And ye shall know that I am the LORD when I have wrought with
+you for my name's sake, not according to your wicked ways, nor
+according to your corrupt doings, O ye house of Israel, saith the Lord
+GOD.
+
+20:45 Moreover the word of the LORD came unto me, saying, 20:46 Son of
+man, set thy face toward the south, and drop thy word toward the
+south, and prophesy against the forest of the south field; 20:47 And
+say to the forest of the south, Hear the word of the LORD; Thus saith
+the Lord GOD; Behold, I will kindle a fire in thee, and it shall
+devour every green tree in thee, and every dry tree: the flaming flame
+shall not be quenched, and all faces from the south to the north shall
+be burned therein.
+
+20:48 And all flesh shall see that I the LORD have kindled it: it
+shall not be quenched.
+
+20:49 Then said I, Ah Lord GOD! they say of me, Doth he not speak
+parables? 21:1 And the word of the LORD came unto me, saying, 21:2
+Son of man, set thy face toward Jerusalem, and drop thy word toward
+the holy places, and prophesy against the land of Israel, 21:3 And say
+to the land of Israel, Thus saith the LORD; Behold, I am against thee,
+and will draw forth my sword out of his sheath, and will cut off from
+thee the righteous and the wicked.
+
+21:4 Seeing then that I will cut off from thee the righteous and the
+wicked, therefore shall my sword go forth out of his sheath against
+all flesh from the south to the north: 21:5 That all flesh may know
+that I the LORD have drawn forth my sword out of his sheath: it shall
+not return any more.
+
+21:6 Sigh therefore, thou son of man, with the breaking of thy loins;
+and with bitterness sigh before their eyes.
+
+21:7 And it shall be, when they say unto thee, Wherefore sighest thou?
+that thou shalt answer, For the tidings; because it cometh: and every
+heart shall melt, and all hands shall be feeble, and every spirit
+shall faint, and all knees shall be weak as water: behold, it cometh,
+and shall be brought to pass, saith the Lord GOD.
+
+21:8 Again the word of the LORD came unto me, saying, 21:9 Son of man,
+prophesy, and say, Thus saith the LORD; Say, A sword, a sword is
+sharpened, and also furbished: 21:10 It is sharpened to make a sore
+slaughter; it is furbished that it may glitter: should we then make
+mirth? it contemneth the rod of my son, as every tree.
+
+21:11 And he hath given it to be furbished, that it may be handled:
+this sword is sharpened, and it is furbished, to give it into the hand
+of the slayer.
+
+21:12 Cry and howl, son of man: for it shall be upon my people, it
+shall be upon all the princes of Israel: terrors by reason of the
+sword shall be upon my people: smite therefore upon thy thigh.
+
+21:13 Because it is a trial, and what if the sword contemn even the
+rod? it shall be no more, saith the Lord GOD.
+
+21:14 Thou therefore, son of man, prophesy, and smite thine hands
+together. and let the sword be doubled the third time, the sword of
+the slain: it is the sword of the great men that are slain, which
+entereth into their privy chambers.
+
+21:15 I have set the point of the sword against all their gates, that
+their heart may faint, and their ruins be multiplied: ah! it is made
+bright, it is wrapped up for the slaughter.
+
+21:16 Go thee one way or other, either on the right hand, or on the
+left, whithersoever thy face is set.
+
+21:17 I will also smite mine hands together, and I will cause my fury
+to rest: I the LORD have said it.
+
+21:18 The word of the LORD came unto me again, saying, 21:19 Also,
+thou son of man, appoint thee two ways, that the sword of the king of
+Babylon may come: both twain shall come forth out of one land: and
+choose thou a place, choose it at the head of the way to the city.
+
+21:20 Appoint a way, that the sword may come to Rabbath of the
+Ammonites, and to Judah in Jerusalem the defenced.
+
+21:21 For the king of Babylon stood at the parting of the way, at the
+head of the two ways, to use divination: he made his arrows bright, he
+consulted with images, he looked in the liver.
+
+21:22 At his right hand was the divination for Jerusalem, to appoint
+captains, to open the mouth in the slaughter, to lift up the voice
+with shouting, to appoint battering rams against the gates, to cast a
+mount, and to build a fort.
+
+21:23 And it shall be unto them as a false divination in their sight,
+to them that have sworn oaths: but he will call to remembrance the
+iniquity, that they may be taken.
+
+21:24 Therefore thus saith the Lord GOD; Because ye have made your
+iniquity to be remembered, in that your transgressions are discovered,
+so that in all your doings your sins do appear; because, I say, that
+ye are come to remembrance, ye shall be taken with the hand.
+
+21:25 And thou, profane wicked prince of Israel, whose day is come,
+when iniquity shall have an end, 21:26 Thus saith the Lord GOD; Remove
+the diadem, and take off the crown: this shall not be the same: exalt
+him that is low, and abase him that is high.
+
+21:27 I will overturn, overturn, overturn, it: and it shall be no
+more, until he come whose right it is; and I will give it him.
+
+21:28 And thou, son of man, prophesy and say, Thus saith the Lord GOD
+concerning the Ammonites, and concerning their reproach; even say
+thou, The sword, the sword is drawn: for the slaughter it is
+furbished, to consume because of the glittering: 21:29 Whiles they see
+vanity unto thee, whiles they divine a lie unto thee, to bring thee
+upon the necks of them that are slain, of the wicked, whose day is
+come, when their iniquity shall have an end.
+
+21:30 Shall I cause it to return into his sheath? I will judge thee in
+the place where thou wast created, in the land of thy nativity.
+
+21:31 And I will pour out mine indignation upon thee, I will blow
+against thee in the fire of my wrath, and deliver thee into the hand
+of brutish men, and skilful to destroy.
+
+21:32 Thou shalt be for fuel to the fire; thy blood shall be in the
+midst of the land; thou shalt be no more remembered: for I the LORD
+have spoken it.
+
+22:1 Moreover the word of the LORD came unto me, saying, 22:2 Now,
+thou son of man, wilt thou judge, wilt thou judge the bloody city?
+yea, thou shalt shew her all her abominations.
+
+22:3 Then say thou, Thus saith the Lord GOD, The city sheddeth blood
+in the midst of it, that her time may come, and maketh idols against
+herself to defile herself.
+
+22:4 Thou art become guilty in thy blood that thou hast shed; and hast
+defiled thyself in thine idols which thou hast made; and thou hast
+caused thy days to draw near, and art come even unto thy years:
+therefore have I made thee a reproach unto the heathen, and a mocking
+to all countries.
+
+22:5 Those that be near, and those that be far from thee, shall mock
+thee, which art infamous and much vexed.
+
+22:6 Behold, the princes of Israel, every one were in thee to their
+power to shed blood.
+
+22:7 In thee have they set light by father and mother: in the midst of
+thee have they dealt by oppression with the stranger: in thee have
+they vexed the fatherless and the widow.
+
+22:8 Thou hast despised mine holy things, and hast profaned my
+sabbaths.
+
+22:9 In thee are men that carry tales to shed blood: and in thee they
+eat upon the mountains: in the midst of thee they commit lewdness.
+
+22:10 In thee have they discovered their fathers' nakedness: in thee
+have they humbled her that was set apart for pollution.
+
+22:11 And one hath committed abomination with his neighbour's wife;
+and another hath lewdly defiled his daughter in law; and another in
+thee hath humbled his sister, his father's daughter.
+
+22:12 In thee have they taken gifts to shed blood; thou hast taken
+usury and increase, and thou hast greedily gained of thy neighbours by
+extortion, and hast forgotten me, saith the Lord GOD.
+
+22:13 Behold, therefore I have smitten mine hand at thy dishonest gain
+which thou hast made, and at thy blood which hath been in the midst of
+thee.
+
+22:14 Can thine heart endure, or can thine hands be strong, in the
+days that I shall deal with thee? I the LORD have spoken it, and will
+do it.
+
+22:15 And I will scatter thee among the heathen, and disperse thee in
+the countries, and will consume thy filthiness out of thee.
+
+22:16 And thou shalt take thine inheritance in thyself in the sight of
+the heathen, and thou shalt know that I am the LORD.
+
+22:17 And the word of the LORD came unto me, saying, 22:18 Son of man,
+the house of Israel is to me become dross: all they are brass, and
+tin, and iron, and lead, in the midst of the furnace; they are even
+the dross of silver.
+
+22:19 Therefore thus saith the Lord GOD; Because ye are all become
+dross, behold, therefore I will gather you into the midst of
+Jerusalem.
+
+22:20 As they gather silver, and brass, and iron, and lead, and tin,
+into the midst of the furnace, to blow the fire upon it, to melt it;
+so will I gather you in mine anger and in my fury, and I will leave
+you there, and melt you.
+
+22:21 Yea, I will gather you, and blow upon you in the fire of my
+wrath, and ye shall be melted in the midst therof.
+
+22:22 As silver is melted in the midst of the furnace, so shall ye be
+melted in the midst thereof; and ye shall know that I the LORD have
+poured out my fury upon you.
+
+22:23 And the word of the LORD came unto me, saying, 22:24 Son of man,
+say unto her, Thou art the land that is not cleansed, nor rained upon
+in the day of indignation.
+
+22:25 There is a conspiracy of her prophets in the midst thereof, like
+a roaring lion ravening the prey; they have devoured souls; they have
+taken the treasure and precious things; they have made her many widows
+in the midst thereof.
+
+22:26 Her priests have violated my law, and have profaned mine holy
+things: they have put no difference between the holy and profane,
+neither have they shewed difference between the unclean and the clean,
+and have hid their eyes from my sabbaths, and I am profaned among
+them.
+
+22:27 Her princes in the midst thereof are like wolves ravening the
+prey, to shed blood, and to destroy souls, to get dishonest gain.
+
+22:28 And her prophets have daubed them with untempered morter, seeing
+vanity, and divining lies unto them, saying, Thus saith the Lord GOD,
+when the LORD hath not spoken.
+
+22:29 The people of the land have used oppression, and exercised
+robbery, and have vexed the poor and needy: yea, they have oppressed
+the stranger wrongfully.
+
+22:30 And I sought for a man among them, that should make up the
+hedge, and stand in the gap before me for the land, that I should not
+destroy it: but I found none.
+
+22:31 Therefore have I poured out mine indignation upon them; I have
+consumed them with the fire of my wrath: their own way have I
+recompensed upon their heads, saith the Lord GOD.
+
+23:1 The word of the LORD came again unto me, saying, 23:2 Son of man,
+there were two women, the daughters of one mother: 23:3 And they
+committed whoredoms in Egypt; they committed whoredoms in their youth:
+there were their breasts pressed, and there they bruised the teats of
+their virginity.
+
+23:4 And the names of them were Aholah the elder, and Aholibah her
+sister: and they were mine, and they bare sons and daughters. Thus
+were their names; Samaria is Aholah, and Jerusalem Aholibah.
+
+23:5 And Aholah played the harlot when she was mine; and she doted on
+her lovers, on the Assyrians her neighbours, 23:6 Which were clothed
+with blue, captains and rulers, all of them desirable young men,
+horsemen riding upon horses.
+
+23:7 Thus she committed her whoredoms with them, with all them that
+were the chosen men of Assyria, and with all on whom she doted: with
+all their idols she defiled herself.
+
+23:8 Neither left she her whoredoms brought from Egypt: for in her
+youth they lay with her, and they bruised the breasts of her
+virginity, and poured their whoredom upon her.
+
+23:9 Wherefore I have delivered her into the hand of her lovers, into
+the hand of the Assyrians, upon whom she doted.
+
+23:10 These discovered her nakedness: they took her sons and her
+daughters, and slew her with the sword: and she became famous among
+women; for they had executed judgment upon her.
+
+23:11 And when her sister Aholibah saw this, she was more corrupt in
+her inordinate love than she, and in her whoredoms more than her
+sister in her whoredoms.
+
+23:12 She doted upon the Assyrians her neighbours, captains and rulers
+clothed most gorgeously, horsemen riding upon horses, all of them
+desirable young men.
+
+23:13 Then I saw that she was defiled, that they took both one way,
+23:14 And that she increased her whoredoms: for when she saw men
+pourtrayed upon the wall, the images of the Chaldeans pourtrayed with
+vermilion, 23:15 Girded with girdles upon their loins, exceeding in
+dyed attire upon their heads, all of them princes to look to, after
+the manner of the Babylonians of Chaldea, the land of their nativity:
+23:16 And as soon as she saw them with her eyes, she doted upon them,
+and sent messengers unto them into Chaldea.
+
+23:17 And the Babylonians came to her into the bed of love, and they
+defiled her with their whoredom, and she was polluted with them, and
+her mind was alienated from them.
+
+23:18 So she discovered her whoredoms, and discovered her nakedness:
+then my mind was alienated from her, like as my mind was alienated
+from her sister.
+
+23:19 Yet she multiplied her whoredoms, in calling to remembrance the
+days of her youth, wherein she had played the harlot in the land of
+Egypt.
+
+23:20 For she doted upon their paramours, whose flesh is as the flesh
+of asses, and whose issue is like the issue of horses.
+
+23:21 Thus thou calledst to remembrance the lewdness of thy youth, in
+bruising thy teats by the Egyptians for the paps of thy youth.
+
+23:22 Therefore, O Aholibah, thus saith the Lord GOD; Behold, I will
+raise up thy lovers against thee, from whom thy mind is alienated, and
+I will bring them against thee on every side; 23:23 The Babylonians,
+and all the Chaldeans, Pekod, and Shoa, and Koa, and all the Assyrians
+with them: all of them desirable young men, captains and rulers, great
+lords and renowned, all of them riding upon horses.
+
+23:24 And they shall come against thee with chariots, wagons, and
+wheels, and with an assembly of people, which shall set against thee
+buckler and shield and helmet round about: and I will set judgment
+before them, and they shall judge thee according to their judgments.
+
+23:25 And I will set my jealousy against thee, and they shall deal
+furiously with thee: they shall take away thy nose and thine ears; and
+thy remnant shall fall by the sword: they shall take thy sons and thy
+daughters; and thy residue shall be devoured by the fire.
+
+23:26 They shall also strip thee out of thy clothes, and take away thy
+fair jewels.
+
+23:27 Thus will I make thy lewdness to cease from thee, and thy
+whoredom brought from the land of Egypt: so that thou shalt not lift
+up thine eyes unto them, nor remember Egypt any more.
+
+23:28 For thus saith the Lord GOD; Behold, I will deliver thee into
+the hand of them whom thou hatest, into the hand of them from whom thy
+mind is alienated: 23:29 And they shall deal with thee hatefully, and
+shall take away all thy labour, and shall leave thee naked and bare:
+and the nakedness of thy whoredoms shall be discovered, both thy
+lewdness and thy whoredoms.
+
+23:30 I will do these things unto thee, because thou hast gone a
+whoring after the heathen, and because thou art polluted with their
+idols.
+
+23:31 Thou hast walked in the way of thy sister; therefore will I give
+her cup into thine hand.
+
+23:32 Thus saith the Lord GOD; Thou shalt drink of thy sister's cup
+deep and large: thou shalt be laughed to scorn and had in derision; it
+containeth much.
+
+23:33 Thou shalt be filled with drunkenness and sorrow, with the cup
+of astonishment and desolation, with the cup of thy sister Samaria.
+
+23:34 Thou shalt even drink it and suck it out, and thou shalt break
+the sherds thereof, and pluck off thine own breasts: for I have spoken
+it, saith the Lord GOD.
+
+23:35 Therefore thus saith the Lord GOD; Because thou hast forgotten
+me, and cast me behind thy back, therefore bear thou also thy lewdness
+and thy whoredoms.
+
+23:36 The LORD said moreover unto me; Son of man, wilt thou judge
+Aholah and Aholibah? yea, declare unto them their abominations; 23:37
+That they have committed adultery, and blood is in their hands, and
+with their idols have they committed adultery, and have also caused
+their sons, whom they bare unto me, to pass for them through the fire,
+to devour them.
+
+23:38 Moreover this they have done unto me: they have defiled my
+sanctuary in the same day, and have profaned my sabbaths.
+
+23:39 For when they had slain their children to their idols, then they
+came the same day into my sanctuary to profane it; and, lo, thus have
+they done in the midst of mine house.
+
+23:40 And furthermore, that ye have sent for men to come from far,
+unto whom a messenger was sent; and, lo, they came: for whom thou
+didst wash thyself, paintedst thy eyes, and deckedst thyself with
+ornaments, 23:41 And satest upon a stately bed, and a table prepared
+before it, whereupon thou hast set mine incense and mine oil.
+
+23:42 And a voice of a multitude being at ease was with her: and with
+the men of the common sort were brought Sabeans from the wilderness,
+which put bracelets upon their hands, and beautiful crowns upon their
+heads.
+
+23:43 Then said I unto her that was old in adulteries, Will they now
+commit whoredoms with her, and she with them? 23:44 Yet they went in
+unto her, as they go in unto a woman that playeth the harlot: so went
+they in unto Aholah and unto Aholibah, the lewd women.
+
+23:45 And the righteous men, they shall judge them after the manner of
+adulteresses, and after the manner of women that shed blood; because
+they are adulteresses, and blood is in their hands.
+
+23:46 For thus saith the Lord GOD; I will bring up a company upon
+them, and will give them to be removed and spoiled.
+
+23:47 And the company shall stone them with stones, and dispatch them
+with their swords; they shall slay their sons and their daughters, and
+burn up their houses with fire.
+
+23:48 Thus will I cause lewdness to cease out of the land, that all
+women may be taught not to do after your lewdness.
+
+23:49 And they shall recompense your lewdness upon you, and ye shall
+bear the sins of your idols: and ye shall know that I am the Lord GOD.
+
+24:1 Again in the ninth year, in the tenth month, in the tenth day of
+the month, the word of the LORD came unto me, saying, 24:2 Son of man,
+write thee the name of the day, even of this same day: the king of
+Babylon set himself against Jerusalem this same day.
+
+24:3 And utter a parable unto the rebellious house, and say unto them,
+Thus saith the Lord GOD; Set on a pot, set it on, and also pour water
+into it: 24:4 Gather the pieces thereof into it, even every good
+piece, the thigh, and the shoulder; fill it with the choice bones.
+
+24:5 Take the choice of the flock, and burn also the bones under it,
+and make it boil well, and let them seethe the bones of it therein.
+
+24:6 Wherefore thus saith the Lord GOD; Woe to the bloody city, to the
+pot whose scum is therein, and whose scum is not gone out of it! bring
+it out piece by piece; let no lot fall upon it.
+
+24:7 For her blood is in the midst of her; she set it upon the top of
+a rock; she poured it not upon the ground, to cover it with dust; 24:8
+That it might cause fury to come up to take vengeance; I have set her
+blood upon the top of a rock, that it should not be covered.
+
+24:9 Therefore thus saith the Lord GOD; Woe to the bloody city! I will
+even make the pile for fire great.
+
+24:10 Heap on wood, kindle the fire, consume the flesh, and spice it
+well, and let the bones be burned.
+
+24:11 Then set it empty upon the coals thereof, that the brass of it
+may be hot, and may burn, and that the filthiness of it may be molten
+in it, that the scum of it may be consumed.
+
+24:12 She hath wearied herself with lies, and her great scum went not
+forth out of her: her scum shall be in the fire.
+
+24:13 In thy filthiness is lewdness: because I have purged thee, and
+thou wast not purged, thou shalt not be purged from thy filthiness any
+more, till I have caused my fury to rest upon thee.
+
+24:14 I the LORD have spoken it: it shall come to pass, and I will do
+it; I will not go back, neither will I spare, neither will I repent;
+according to thy ways, and according to thy doings, shall they judge
+thee, saith the Lord GOD.
+
+24:15 Also the word of the LORD came unto me, saying, 24:16 Son of
+man, behold, I take away from thee the desire of thine eyes with a
+stroke: yet neither shalt thou mourn nor weep, neither shall thy tears
+run down.
+
+24:17 Forbear to cry, make no mourning for the dead, bind the tire of
+thine head upon thee, and put on thy shoes upon thy feet, and cover
+not thy lips, and eat not the bread of men.
+
+24:18 So I spake unto the people in the morning: and at even my wife
+died; and I did in the morning as I was commanded.
+
+24:19 And the people said unto me, Wilt thou not tell us what these
+things are to us, that thou doest so? 24:20 Then I answered them, The
+word of the LORD came unto me, saying, 24:21 Speak unto the house of
+Israel, Thus saith the Lord GOD; Behold, I will profane my sanctuary,
+the excellency of your strength, the desire of your eyes, and that
+which your soul pitieth; and your sons and your daughters whom ye have
+left shall fall by the sword.
+
+24:22 And ye shall do as I have done: ye shall not cover your lips,
+nor eat the bread of men.
+
+24:23 And your tires shall be upon your heads, and your shoes upon
+your feet: ye shall not mourn nor weep; but ye shall pine away for
+your iniquities, and mourn one toward another.
+
+24:24 Thus Ezekiel is unto you a sign: according to all that he hath
+done shall ye do: and when this cometh, ye shall know that I am the
+Lord GOD.
+
+24:25 Also, thou son of man, shall it not be in the day when I take
+from them their strength, the joy of their glory, the desire of their
+eyes, and that whereupon they set their minds, their sons and their
+daughters, 24:26 That he that escapeth in that day shall come unto
+thee, to cause thee to hear it with thine ears? 24:27 In that day
+shall thy mouth be opened to him which is escaped, and thou shalt
+speak, and be no more dumb: and thou shalt be a sign unto them; and
+they shall know that I am the LORD.
+
+25:1 The word of the LORD came again unto me, saying, 25:2 Son of man,
+set thy face against the Ammonites, and prophesy against them; 25:3
+And say unto the Ammonites, Hear the word of the Lord GOD; Thus saith
+the Lord GOD; Because thou saidst, Aha, against my sanctuary, when it
+was profaned; and against the land of Israel, when it was desolate;
+and against the house of Judah, when they went into captivity; 25:4
+Behold, therefore I will deliver thee to the men of the east for a
+possession, and they shall set their palaces in thee, and make their
+dwellings in thee: they shall eat thy fruit, and they shall drink thy
+milk.
+
+25:5 And I will make Rabbah a stable for camels, and the Ammonites a
+couching place for flocks: and ye shall know that I am the LORD.
+
+25:6 For thus saith the Lord GOD; Because thou hast clapped thine
+hands, and stamped with the feet, and rejoiced in heart with all thy
+despite against the land of Israel; 25:7 Behold, therefore I will
+stretch out mine hand upon thee, and will deliver thee for a spoil to
+the heathen; and I will cut thee off from the people, and I will cause
+thee to perish out of the countries: I will destroy thee; and thou
+shalt know that I am the LORD.
+
+25:8 Thus saith the Lord GOD; Because that Moab and Seir do say,
+Behold, the house of Judah is like unto all the heathen; 25:9
+Therefore, behold, I will open the side of Moab from the cities, from
+his cities which are on his frontiers, the glory of the country,
+Bethjeshimoth, Baalmeon, and Kiriathaim, 25:10 Unto the men of the
+east with the Ammonites, and will give them in possession, that the
+Ammonites may not be remembered among the nations.
+
+25:11 And I will execute judgments upon Moab; and they shall know that
+I am the LORD.
+
+25:12 Thus saith the Lord GOD; Because that Edom hath dealt against
+the house of Judah by taking vengeance, and hath greatly offended, and
+revenged himself upon them; 25:13 Therefore thus saith the Lord GOD; I
+will also stretch out mine hand upon Edom, and will cut off man and
+beast from it; and I will make it desolate from Teman; and they of
+Dedan shall fall by the sword.
+
+25:14 And I will lay my vengeance upon Edom by the hand of my people
+Israel: and they shall do in Edom according to mine anger and
+according to my fury; and they shall know my vengeance, saith the Lord
+GOD.
+
+25:15 Thus saith the Lord GOD; Because the Philistines have dealt by
+revenge, and have taken vengeance with a despiteful heart, to destroy
+it for the old hatred; 25:16 Therefore thus saith the Lord GOD;
+Behold, I will stretch out mine hand upon the Philistines, and I will
+cut off the Cherethims, and destroy the remnant of the sea coast.
+
+25:17 And I will execute great vengeance upon them with furious
+rebukes; and they shall know that I am the LORD, when I shall lay my
+vengeance upon them.
+
+26:1 And it came to pass in the eleventh year, in the first day of the
+month, that the word of the LORD came unto me, saying, 26:2 Son of
+man, because that Tyrus hath said against Jerusalem, Aha, she is
+broken that was the gates of the people: she is turned unto me: I
+shall be replenished, now she is laid waste: 26:3 Therefore thus saith
+the Lord GOD; Behold, I am against thee, O Tyrus, and will cause many
+nations to come up against thee, as the sea causeth his waves to come
+up.
+
+26:4 And they shall destroy the walls of Tyrus, and break down her
+towers: I will also scrape her dust from her, and make her like the
+top of a rock.
+
+26:5 It shall be a place for the spreading of nets in the midst of the
+sea: for I have spoken it, saith the Lord GOD: and it shall become a
+spoil to the nations.
+
+26:6 And her daughters which are in the field shall be slain by the
+sword; and they shall know that I am the LORD.
+
+26:7 For thus saith the Lord GOD; Behold, I will bring upon Tyrus
+Nebuchadrezzar king of Babylon, a king of kings, from the north, with
+horses, and with chariots, and with horsemen, and companies, and much
+people.
+
+26:8 He shall slay with the sword thy daughters in the field: and he
+shall make a fort against thee, and cast a mount against thee, and
+lift up the buckler against thee.
+
+26:9 And he shall set engines of war against thy walls, and with his
+axes he shall break down thy towers.
+
+26:10 By reason of the abundance of his horses their dust shall cover
+thee: thy walls shall shake at the noise of the horsemen, and of the
+wheels, and of the chariots, when he shall enter into thy gates, as
+men enter into a city wherein is made a breach.
+
+26:11 With the hoofs of his horses shall he tread down all thy
+streets: he shall slay thy people by the sword, and thy strong
+garrisons shall go down to the ground.
+
+26:12 And they shall make a spoil of thy riches, and make a prey of
+thy merchandise: and they shall break down thy walls, and destroy thy
+pleasant houses: and they shall lay thy stones and thy timber and thy
+dust in the midst of the water.
+
+26:13 And I will cause the noise of thy songs to cease; and the sound
+of thy harps shall be no more heard.
+
+26:14 And I will make thee like the top of a rock: thou shalt be a
+place to spread nets upon; thou shalt be built no more: for I the LORD
+have spoken it, saith the Lord GOD.
+
+26:15 Thus saith the Lord GOD to Tyrus; Shall not the isles shake at
+the sound of thy fall, when the wounded cry, when the slaughter is
+made in the midst of thee? 26:16 Then all the princes of the sea
+shall come down from their thrones, and lay away their robes, and put
+off their broidered garments: they shall clothe themselves with
+trembling; they shall sit upon the ground, and shall tremble at every
+moment, and be astonished at thee.
+
+26:17 And they shall take up a lamentation for thee, and say to thee,
+How art thou destroyed, that wast inhabited of seafaring men, the
+renowned city, which wast strong in the sea, she and her inhabitants,
+which cause their terror to be on all that haunt it! 26:18 Now shall
+the isles tremble in the day of thy fall; yea, the isles that are in
+the sea shall be troubled at thy departure.
+
+26:19 For thus saith the Lord GOD; When I shall make thee a desolate
+city, like the cities that are not inhabited; when I shall bring up
+the deep upon thee, and great waters shall cover thee; 26:20 When I
+shall bring thee down with them that descend into the pit, with the
+people of old time, and shall set thee in the low parts of the earth,
+in places desolate of old, with them that go down to the pit, that
+thou be not inhabited; and I shall set glory in the land of the
+living; 26:21 I will make thee a terror, and thou shalt be no more:
+though thou be sought for, yet shalt thou never be found again, saith
+the Lord GOD.
+
+27:1 The word of the LORD came again unto me, saying, 27:2 Now, thou
+son of man, take up a lamentation for Tyrus; 27:3 And say unto Tyrus,
+O thou that art situate at the entry of the sea, which art a merchant
+of the people for many isles, Thus saith the Lord GOD; O Tyrus, thou
+hast said, I am of perfect beauty.
+
+27:4 Thy borders are in the midst of the seas, thy builders have
+perfected thy beauty.
+
+27:5 They have made all thy ship boards of fir trees of Senir: they
+have taken cedars from Lebanon to make masts for thee.
+
+27:6 Of the oaks of Bashan have they made thine oars; the company of
+the Ashurites have made thy benches of ivory, brought out of the isles
+of Chittim.
+
+27:7 Fine linen with broidered work from Egypt was that which thou
+spreadest forth to be thy sail; blue and purple from the isles of
+Elishah was that which covered thee.
+
+27:8 The inhabitants of Zidon and Arvad were thy mariners: thy wise
+men, O Tyrus, that were in thee, were thy pilots.
+
+27:9 The ancients of Gebal and the wise men thereof were in thee thy
+calkers: all the ships of the sea with their mariners were in thee to
+occupy thy merchandise.
+
+27:10 They of Persia and of Lud and of Phut were in thine army, thy
+men of war: they hanged the shield and helmet in thee; they set forth
+thy comeliness.
+
+27:11 The men of Arvad with thine army were upon thy walls round
+about, and the Gammadims were in thy towers: they hanged their shields
+upon thy walls round about; they have made thy beauty perfect.
+
+27:12 Tarshish was thy merchant by reason of the multitude of all kind
+of riches; with silver, iron, tin, and lead, they traded in thy fairs.
+
+27:13 Javan, Tubal, and Meshech, they were thy merchants: they traded
+the persons of men and vessels of brass in thy market.
+
+27:14 They of the house of Togarmah traded in thy fairs with horses
+and horsemen and mules.
+
+27:15 The men of Dedan were thy merchants; many isles were the
+merchandise of thine hand: they brought thee for a present horns of
+ivory and ebony.
+
+27:16 Syria was thy merchant by reason of the multitude of the wares
+of thy making: they occupied in thy fairs with emeralds, purple, and
+broidered work, and fine linen, and coral, and agate.
+
+27:17 Judah, and the land of Israel, they were thy merchants: they
+traded in thy market wheat of Minnith, and Pannag, and honey, and oil,
+and balm.
+
+27:18 Damascus was thy merchant in the multitude of the wares of thy
+making, for the multitude of all riches; in the wine of Helbon, and
+white wool.
+
+27:19 Dan also and Javan going to and fro occupied in thy fairs:
+bright iron, cassia, and calamus, were in thy market.
+
+27:20 Dedan was thy merchant in precious clothes for chariots.
+
+27:21 Arabia, and all the princes of Kedar, they occupied with thee in
+lambs, and rams, and goats: in these were they thy merchants.
+
+27:22 The merchants of Sheba and Raamah, they were thy merchants: they
+occupied in thy fairs with chief of all spices, and with all precious
+stones, and gold.
+
+27:23 Haran, and Canneh, and Eden, the merchants of Sheba, Asshur, and
+Chilmad, were thy merchants.
+
+27:24 These were thy merchants in all sorts of things, in blue
+clothes, and broidered work, and in chests of rich apparel, bound with
+cords, and made of cedar, among thy merchandise.
+
+27:25 The ships of Tarshish did sing of thee in thy market: and thou
+wast replenished, and made very glorious in the midst of the seas.
+
+27:26 Thy rowers have brought thee into great waters: the east wind
+hath broken thee in the midst of the seas.
+
+27:27 Thy riches, and thy fairs, thy merchandise, thy mariners, and
+thy pilots, thy calkers, and the occupiers of thy merchandise, and all
+thy men of war, that are in thee, and in all thy company which is in
+the midst of thee, shall fall into the midst of the seas in the day of
+thy ruin.
+
+27:28 The suburbs shall shake at the sound of the cry of thy pilots.
+
+27:29 And all that handle the oar, the mariners, and all the pilots of
+the sea, shall come down from their ships, they shall stand upon the
+land; 27:30 And shall cause their voice to be heard against thee, and
+shall cry bitterly, and shall cast up dust upon their heads, they
+shall wallow themselves in the ashes: 27:31 And they shall make
+themselves utterly bald for thee, and gird them with sackcloth, and
+they shall weep for thee with bitterness of heart and bitter wailing.
+
+27:32 And in their wailing they shall take up a lamentation for thee,
+and lament over thee, saying, What city is like Tyrus, like the
+destroyed in the midst of the sea? 27:33 When thy wares went forth
+out of the seas, thou filledst many people; thou didst enrich the
+kings of the earth with the multitude of thy riches and of thy
+merchandise.
+
+27:34 In the time when thou shalt be broken by the seas in the depths
+of the waters thy merchandise and all thy company in the midst of thee
+shall fall.
+
+27:35 All the inhabitants of the isles shall be astonished at thee,
+and their kings shall be sore afraid, they shall be troubled in their
+countenance.
+
+27:36 The merchants among the people shall hiss at thee; thou shalt be
+a terror, and never shalt be any more.
+
+28:1 The word of the LORD came again unto me, saying, 28:2 Son of man,
+say unto the prince of Tyrus, Thus saith the Lord GOD; Because thine
+heart is lifted up, and thou hast said, I am a God, I sit in the seat
+of God, in the midst of the seas; yet thou art a man, and not God,
+though thou set thine heart as the heart of God: 28:3 Behold, thou art
+wiser than Daniel; there is no secret that they can hide from thee:
+28:4 With thy wisdom and with thine understanding thou hast gotten
+thee riches, and hast gotten gold and silver into thy treasures: 28:5
+By thy great wisdom and by thy traffick hast thou increased thy
+riches, and thine heart is lifted up because of thy riches: 28:6
+Therefore thus saith the Lord GOD; Because thou hast set thine heart
+as the heart of God; 28:7 Behold, therefore I will bring strangers
+upon thee, the terrible of the nations: and they shall draw their
+swords against the beauty of thy wisdom, and they shall defile thy
+brightness.
+
+28:8 They shall bring thee down to the pit, and thou shalt die the
+deaths of them that are slain in the midst of the seas.
+
+28:9 Wilt thou yet say before him that slayeth thee, I am God? but
+thou shalt be a man, and no God, in the hand of him that slayeth thee.
+
+28:10 Thou shalt die the deaths of the uncircumcised by the hand of
+strangers: for I have spoken it, saith the Lord GOD.
+
+28:11 Moreover the word of the LORD came unto me, saying, 28:12 Son of
+man, take up a lamentation upon the king of Tyrus, and say unto him,
+Thus saith the Lord GOD; Thou sealest up the sum, full of wisdom, and
+perfect in beauty.
+
+28:13 Thou hast been in Eden the garden of God; every precious stone
+was thy covering, the sardius, topaz, and the diamond, the beryl, the
+onyx, and the jasper, the sapphire, the emerald, and the carbuncle,
+and gold: the workmanship of thy tabrets and of thy pipes was prepared
+in thee in the day that thou wast created.
+
+28:14 Thou art the anointed cherub that covereth; and I have set thee
+so: thou wast upon the holy mountain of God; thou hast walked up and
+down in the midst of the stones of fire.
+
+28:15 Thou wast perfect in thy ways from the day that thou wast
+created, till iniquity was found in thee.
+
+28:16 By the multitude of thy merchandise they have filled the midst
+of thee with violence, and thou hast sinned: therefore I will cast
+thee as profane out of the mountain of God: and I will destroy thee, O
+covering cherub, from the midst of the stones of fire.
+
+28:17 Thine heart was lifted up because of thy beauty, thou hast
+corrupted thy wisdom by reason of thy brightness: I will cast thee to
+the ground, I will lay thee before kings, that they may behold thee.
+
+28:18 Thou hast defiled thy sanctuaries by the multitude of thine
+iniquities, by the iniquity of thy traffick; therefore will I bring
+forth a fire from the midst of thee, it shall devour thee, and I will
+bring thee to ashes upon the earth in the sight of all them that
+behold thee.
+
+28:19 All they that know thee among the people shall be astonished at
+thee: thou shalt be a terror, and never shalt thou be any more.
+
+28:20 Again the word of the LORD came unto me, saying, 28:21 Son of
+man, set thy face against Zidon, and prophesy against it, 28:22 And
+say, Thus saith the Lord GOD; Behold, I am against thee, O Zidon; and
+I will be glorified in the midst of thee: and they shall know that I
+am the LORD, when I shall have executed judgments in her, and shall be
+sanctified in her.
+
+28:23 For I will send into her pestilence, and blood into her streets;
+and the wounded shall be judged in the midst of her by the sword upon
+her on every side; and they shall know that I am the LORD.
+
+28:24 And there shall be no more a pricking brier unto the house of
+Israel, nor any grieving thorn of all that are round about them, that
+despised them; and they shall know that I am the Lord GOD.
+
+28:25 Thus saith the Lord GOD; When I shall have gathered the house of
+Israel from the people among whom they are scattered, and shall be
+sanctified in them in the sight of the heathen, then shall they dwell
+in their land that I have given to my servant Jacob.
+
+28:26 And they shall dwell safely therein, and shall build houses, and
+plant vineyards; yea, they shall dwell with confidence, when I have
+executed judgments upon all those that despise them round about them;
+and they shall know that I am the LORD their God.
+
+29:1 In the tenth year, in the tenth month, in the twelfth day of the
+month, the word of the LORD came unto me, saying, 29:2 Son of man, set
+thy face against Pharaoh king of Egypt, and prophesy against him, and
+against all Egypt: 29:3 Speak, and say, Thus saith the Lord GOD;
+Behold, I am against thee, Pharaoh king of Egypt, the great dragon
+that lieth in the midst of his rivers, which hath said, My river is
+mine own, and I have made it for myself.
+
+29:4 But I will put hooks in thy jaws, and I will cause the fish of
+thy rivers to stick unto thy scales, and I will bring thee up out of
+the midst of thy rivers, and all the fish of thy rivers shall stick
+unto thy scales.
+
+29:5 And I will leave thee thrown into the wilderness, thee and all
+the fish of thy rivers: thou shalt fall upon the open fields; thou
+shalt not be brought together, nor gathered: I have given thee for
+meat to the beasts of the field and to the fowls of the heaven.
+
+29:6 And all the inhabitants of Egypt shall know that I am the LORD,
+because they have been a staff of reed to the house of Israel.
+
+29:7 When they took hold of thee by thy hand, thou didst break, and
+rend all their shoulder: and when they leaned upon thee, thou brakest,
+and madest all their loins to be at a stand.
+
+29:8 Therefore thus saith the Lord GOD; Behold, I will bring a sword
+upon thee, and cut off man and beast out of thee.
+
+29:9 And the land of Egypt shall be desolate and waste; and they shall
+know that I am the LORD: because he hath said, The river is mine, and
+I have made it.
+
+29:10 Behold, therefore I am against thee, and against thy rivers, and
+I will make the land of Egypt utterly waste and desolate, from the
+tower of Syene even unto the border of Ethiopia.
+
+29:11 No foot of man shall pass through it, nor foot of beast shall
+pass through it, neither shall it be inhabited forty years.
+
+29:12 And I will make the land of Egypt desolate in the midst of the
+countries that are desolate, and her cities among the cities that are
+laid waste shall be desolate forty years: and I will scatter the
+Egyptians among the nations, and will disperse them through the
+countries.
+
+29:13 Yet thus saith the Lord GOD; At the end of forty years will I
+gather the Egyptians from the people whither they were scattered:
+29:14 And I will bring again the captivity of Egypt, and will cause
+them to return into the land of Pathros, into the land of their
+habitation; and they shall be there a base kingdom.
+
+29:15 It shall be the basest of the kingdoms; neither shall it exalt
+itself any more above the nations: for I will diminish them, that they
+shall no more rule over the nations.
+
+29:16 And it shall be no more the confidence of the house of Israel,
+which bringeth their iniquity to remembrance, when they shall look
+after them: but they shall know that I am the Lord GOD.
+
+29:17 And it came to pass in the seven and twentieth year, in the
+first month, in the first day of the month, the word of the LORD came
+unto me, saying, 29:18 Son of man, Nebuchadrezzar king of Babylon
+caused his army to serve a great service against Tyrus: every head was
+made bald, and every shoulder was peeled: yet had he no wages, nor his
+army, for Tyrus, for the service that he had served against it: 29:19
+Therefore thus saith the Lord GOD; Behold, I will give the land of
+Egypt unto Nebuchadrezzar king of Babylon; and he shall take her
+multitude, and take her spoil, and take her prey; and it shall be the
+wages for his army.
+
+29:20 I have given him the land of Egypt for his labour wherewith he
+served against it, because they wrought for me, saith the Lord GOD.
+
+29:21 In that day will I cause the horn of the house of Israel to bud
+forth, and I will give thee the opening of the mouth in the midst of
+them; and they shall know that I am the LORD.
+
+30:1 The word of the LORD came again unto me, saying, 30:2 Son of man,
+prophesy and say, Thus saith the Lord GOD; Howl ye, Woe worth the day!
+30:3 For the day is near, even the day of the LORD is near, a cloudy
+day; it shall be the time of the heathen.
+
+30:4 And the sword shall come upon Egypt, and great pain shall be in
+Ethiopia, when the slain shall fall in Egypt, and they shall take away
+her multitude, and her foundations shall be broken down.
+
+30:5 Ethiopia, and Libya, and Lydia, and all the mingled people, and
+Chub, and the men of the land that is in league, shall fall with them
+by the sword.
+
+30:6 Thus saith the LORD; They also that uphold Egypt shall fall; and
+the pride of her power shall come down: from the tower of Syene shall
+they fall in it by the sword, saith the Lord GOD.
+
+30:7 And they shall be desolate in the midst of the countries that are
+desolate, and her cities shall be in the midst of the cities that are
+wasted.
+
+30:8 And they shall know that I am the LORD, when I have set a fire in
+Egypt, and when all her helpers shall be destroyed.
+
+30:9 In that day shall messengers go forth from me in ships to make
+the careless Ethiopians afraid, and great pain shall come upon them,
+as in the day of Egypt: for, lo, it cometh.
+
+30:10 Thus saith the Lord GOD; I will also make the multitude of Egypt
+to cease by the hand of Nebuchadrezzar king of Babylon.
+
+30:11 He and his people with him, the terrible of the nations, shall
+be brought to destroy the land: and they shall draw their swords
+against Egypt, and fill the land with the slain.
+
+30:12 And I will make the rivers dry, and sell the land into the hand
+of the wicked: and I will make the land waste, and all that is
+therein, by the hand of strangers: I the LORD have spoken it.
+
+30:13 Thus saith the Lord GOD; I will also destroy the idols, and I
+will cause their images to cease out of Noph; and there shall be no
+more a prince of the land of Egypt: and I will put a fear in the land
+of Egypt.
+
+30:14 And I will make Pathros desolate, and will set fire in Zoan, and
+will execute judgments in No.
+
+30:15 And I will pour my fury upon Sin, the strength of Egypt; and I
+will cut off the multitude of No.
+
+30:16 And I will set fire in Egypt: Sin shall have great pain, and No
+shall be rent asunder, and Noph shall have distresses daily.
+
+30:17 The young men of Aven and of Pibeseth shall fall by the sword:
+and these cities shall go into captivity.
+
+30:18 At Tehaphnehes also the day shall be darkened, when I shall
+break there the yokes of Egypt: and the pomp of her strength shall
+cease in her: as for her, a cloud shall cover her, and her daughters
+shall go into captivity.
+
+30:19 Thus will I execute judgments in Egypt: and they shall know that
+I am the LORD.
+
+30:20 And it came to pass in the eleventh year, in the first month, in
+the seventh day of the month, that the word of the LORD came unto me,
+saying, 30:21 Son of man, I have broken the arm of Pharaoh king of
+Egypt; and, lo, it shall not be bound up to be healed, to put a roller
+to bind it, to make it strong to hold the sword.
+
+30:22 Therefore thus saith the Lord GOD; Behold, I am against Pharaoh
+king of Egypt, and will break his arms, the strong, and that which was
+broken; and I will cause the sword to fall out of his hand.
+
+30:23 And I will scatter the Egyptians among the nations, and will
+disperse them through the countries.
+
+30:24 And I will strengthen the arms of the king of Babylon, and put
+my sword in his hand: but I will break Pharaoh's arms, and he shall
+groan before him with the groanings of a deadly wounded man.
+
+30:25 But I will strengthen the arms of the king of Babylon, and the
+arms of Pharaoh shall fall down; and they shall know that I am the
+LORD, when I shall put my sword into the hand of the king of Babylon,
+and he shall stretch it out upon the land of Egypt.
+
+30:26 And I will scatter the Egyptians among the nations, and disperse
+them among the countries; and they shall know that I am the LORD.
+
+31:1 And it came to pass in the eleventh year, in the third month, in
+the first day of the month, that the word of the LORD came unto me,
+saying, 31:2 Son of man, speak unto Pharaoh king of Egypt, and to his
+multitude; Whom art thou like in thy greatness? 31:3 Behold, the
+Assyrian was a cedar in Lebanon with fair branches, and with a
+shadowing shroud, and of an high stature; and his top was among the
+thick boughs.
+
+31:4 The waters made him great, the deep set him up on high with her
+rivers running round about his plants, and sent her little rivers unto
+all the trees of the field.
+
+31:5 Therefore his height was exalted above all the trees of the
+field, and his boughs were multiplied, and his branches became long
+because of the multitude of waters, when he shot forth.
+
+31:6 All the fowls of heaven made their nests in his boughs, and under
+his branches did all the beasts of the field bring forth their young,
+and under his shadow dwelt all great nations.
+
+31:7 Thus was he fair in his greatness, in the length of his branches:
+for his root was by great waters.
+
+31:8 The cedars in the garden of God could not hide him: the fir trees
+were not like his boughs, and the chestnut trees were not like his
+branches; nor any tree in the garden of God was like unto him in his
+beauty.
+
+31:9 I have made him fair by the multitude of his branches: so that
+all the trees of Eden, that were in the garden of God, envied him.
+
+31:10 Therefore thus saith the Lord GOD; Because thou hast lifted up
+thyself in height, and he hath shot up his top among the thick boughs,
+and his heart is lifted up in his height; 31:11 I have therefore
+delivered him into the hand of the mighty one of the heathen; he shall
+surely deal with him: I have driven him out for his wickedness.
+
+31:12 And strangers, the terrible of the nations, have cut him off,
+and have left him: upon the mountains and in all the valleys his
+branches are fallen, and his boughs are broken by all the rivers of
+the land; and all the people of the earth are gone down from his
+shadow, and have left him.
+
+31:13 Upon his ruin shall all the fowls of the heaven remain, and all
+the beasts of the field shall be upon his branches: 31:14 To the end
+that none of all the trees by the waters exalt themselves for their
+height, neither shoot up their top among the thick boughs, neither
+their trees stand up in their height, all that drink water: for they
+are all delivered unto death, to the nether parts of the earth, in the
+midst of the children of men, with them that go down to the pit.
+
+31:15 Thus saith the Lord GOD; In the day when he went down to the
+grave I caused a mourning: I covered the deep for him, and I
+restrained the floods thereof, and the great waters were stayed: and I
+caused Lebanon to mourn for him, and all the trees of the field
+fainted for him.
+
+31:16 I made the nations to shake at the sound of his fall, when I
+cast him down to hell with them that descend into the pit: and all the
+trees of Eden, the choice and best of Lebanon, all that drink water,
+shall be comforted in the nether parts of the earth.
+
+31:17 They also went down into hell with him unto them that be slain
+with the sword; and they that were his arm, that dwelt under his
+shadow in the midst of the heathen.
+
+31:18 To whom art thou thus like in glory and in greatness among the
+trees of Eden? yet shalt thou be brought down with the trees of Eden
+unto the nether parts of the earth: thou shalt lie in the midst of the
+uncircumcised with them that be slain by the sword. This is Pharaoh
+and all his multitude, saith the Lord GOD.
+
+32:1 And it came to pass in the twelfth year, in the twelfth month, in
+the first day of the month, that the word of the LORD came unto me,
+saying, 32:2 Son of man, take up a lamentation for Pharaoh king of
+Egypt, and say unto him, Thou art like a young lion of the nations,
+and thou art as a whale in the seas: and thou camest forth with thy
+rivers, and troubledst the waters with thy feet, and fouledst their
+rivers.
+
+32:3 Thus saith the Lord GOD; I will therefore spread out my net over
+thee with a company of many people; and they shall bring thee up in my
+net.
+
+32:4 Then will I leave thee upon the land, I will cast thee forth upon
+the open field, and will cause all the fowls of the heaven to remain
+upon thee, and I will fill the beasts of the whole earth with thee.
+
+32:5 And I will lay thy flesh upon the mountains, and fill the valleys
+with thy height.
+
+32:6 I will also water with thy blood the land wherein thou swimmest,
+even to the mountains; and the rivers shall be full of thee.
+
+32:7 And when I shall put thee out, I will cover the heaven, and make
+the stars thereof dark; I will cover the sun with a cloud, and the
+moon shall not give her light.
+
+32:8 All the bright lights of heaven will I make dark over thee, and
+set darkness upon thy land, saith the Lord GOD.
+
+32:9 I will also vex the hearts of many people, when I shall bring thy
+destruction among the nations, into the countries which thou hast not
+known.
+
+32:10 Yea, I will make many people amazed at thee, and their kings
+shall be horribly afraid for thee, when I shall brandish my sword
+before them; and they shall tremble at every moment, every man for his
+own life, in the day of thy fall.
+
+32:11 For thus saith the Lord GOD; The sword of the king of Babylon
+shall come upon thee.
+
+32:12 By the swords of the mighty will I cause thy multitude to fall,
+the terrible of the nations, all of them: and they shall spoil the
+pomp of Egypt, and all the multitude thereof shall be destroyed.
+
+32:13 I will destroy also all the beasts thereof from beside the great
+waters; neither shall the foot of man trouble them any more, nor the
+hoofs of beasts trouble them.
+
+32:14 Then will I make their waters deep, and cause their rivers to
+run like oil, saith the Lord GOD.
+
+32:15 When I shall make the land of Egypt desolate, and the country
+shall be destitute of that whereof it was full, when I shall smite all
+them that dwell therein, then shall they know that I am the LORD.
+
+32:16 This is the lamentation wherewith they shall lament her: the
+daughters of the nations shall lament her: they shall lament for her,
+even for Egypt, and for all her multitude, saith the Lord GOD.
+
+32:17 It came to pass also in the twelfth year, in the fifteenth day
+of the month, that the word of the LORD came unto me, saying, 32:18
+Son of man, wail for the multitude of Egypt, and cast them down, even
+her, and the daughters of the famous nations, unto the nether parts of
+the earth, with them that go down into the pit.
+
+32:19 Whom dost thou pass in beauty? go down, and be thou laid with
+the uncircumcised.
+
+32:20 They shall fall in the midst of them that are slain by the
+sword: she is delivered to the sword: draw her and all her multitudes.
+
+32:21 The strong among the mighty shall speak to him out of the midst
+of hell with them that help him: they are gone down, they lie
+uncircumcised, slain by the sword.
+
+32:22 Asshur is there and all her company: his graves are about him:
+all of them slain, fallen by the sword: 32:23 Whose graves are set in
+the sides of the pit, and her company is round about her grave: all of
+them slain, fallen by the sword, which caused terror in the land of
+the living.
+
+32:24 There is Elam and all her multitude round about her grave, all
+of them slain, fallen by the sword, which are gone down uncircumcised
+into the nether parts of the earth, which caused their terror in the
+land of the living; yet have they borne their shame with them that go
+down to the pit.
+
+32:25 They have set her a bed in the midst of the slain with all her
+multitude: her graves are round about him: all of them uncircumcised,
+slain by the sword: though their terror was caused in the land of the
+living, yet have they borne their shame with them that go down to the
+pit: he is put in the midst of them that be slain.
+
+32:26 There is Meshech, Tubal, and all her multitude: her graves are
+round about him: all of them uncircumcised, slain by the sword, though
+they caused their terror in the land of the living.
+
+32:27 And they shall not lie with the mighty that are fallen of the
+uncircumcised, which are gone down to hell with their weapons of war:
+and they have laid their swords under their heads, but their
+iniquities shall be upon their bones, though they were the terror of
+the mighty in the land of the living.
+
+32:28 Yea, thou shalt be broken in the midst of the uncircumcised, and
+shalt lie with them that are slain with the sword.
+
+32:29 There is Edom, her kings, and all her princes, which with their
+might are laid by them that were slain by the sword: they shall lie
+with the uncircumcised, and with them that go down to the pit.
+
+32:30 There be the princes of the north, all of them, and all the
+Zidonians, which are gone down with the slain; with their terror they
+are ashamed of their might; and they lie uncircumcised with them that
+be slain by the sword, and bear their shame with them that go down to
+the pit.
+
+32:31 Pharaoh shall see them, and shall be comforted over all his
+multitude, even Pharaoh and all his army slain by the sword, saith the
+Lord GOD.
+
+32:32 For I have caused my terror in the land of the living: and he
+shall be laid in the midst of the uncircumcised with them that are
+slain with the sword, even Pharaoh and all his multitude, saith the
+Lord GOD.
+
+33:1 Again the word of the LORD came unto me, saying, 33:2 Son of man,
+speak to the children of thy people, and say unto them, When I bring
+the sword upon a land, if the people of the land take a man of their
+coasts, and set him for their watchman: 33:3 If when he seeth the
+sword come upon the land, he blow the trumpet, and warn the people;
+33:4 Then whosoever heareth the sound of the trumpet, and taketh not
+warning; if the sword come, and take him away, his blood shall be upon
+his own head.
+
+33:5 He heard the sound of the trumpet, and took not warning; his
+blood shall be upon him. But he that taketh warning shall deliver his
+soul.
+
+33:6 But if the watchman see the sword come, and blow not the trumpet,
+and the people be not warned; if the sword come, and take any person
+from among them, he is taken away in his iniquity; but his blood will
+I require at the watchman's hand.
+
+33:7 So thou, O son of man, I have set thee a watchman unto the house
+of Israel; therefore thou shalt hear the word at my mouth, and warn
+them from me.
+
+33:8 When I say unto the wicked, O wicked man, thou shalt surely die;
+if thou dost not speak to warn the wicked from his way, that wicked
+man shall die in his iniquity; but his blood will I require at thine
+hand.
+
+33:9 Nevertheless, if thou warn the wicked of his way to turn from it;
+if he do not turn from his way, he shall die in his iniquity; but thou
+hast delivered thy soul.
+
+33:10 Therefore, O thou son of man, speak unto the house of Israel;
+Thus ye speak, saying, If our transgressions and our sins be upon us,
+and we pine away in them, how should we then live? 33:11 Say unto
+them, As I live, saith the Lord GOD, I have no pleasure in the death
+of the wicked; but that the wicked turn from his way and live: turn
+ye, turn ye from your evil ways; for why will ye die, O house of
+Israel? 33:12 Therefore, thou son of man, say unto the children of
+thy people, The righteousness of the righteous shall not deliver him
+in the day of his transgression: as for the wickedness of the wicked,
+he shall not fall thereby in the day that he turneth from his
+wickedness; neither shall the righteous be able to live for his
+righteousness in the day that he sinneth.
+
+33:13 When I shall say to the righteous, that he shall surely live; if
+he trust to his own righteousness, and commit iniquity, all his
+righteousnesses shall not be remembered; but for his iniquity that he
+hath committed, he shall die for it.
+
+33:14 Again, when I say unto the wicked, Thou shalt surely die; if he
+turn from his sin, and do that which is lawful and right; 33:15 If the
+wicked restore the pledge, give again that he had robbed, walk in the
+statutes of life, without committing iniquity; he shall surely live,
+he shall not die.
+
+33:16 None of his sins that he hath committed shall be mentioned unto
+him: he hath done that which is lawful and right; he shall surely
+live.
+
+33:17 Yet the children of thy people say, The way of the Lord is not
+equal: but as for them, their way is not equal.
+
+33:18 When the righteous turneth from his righteousness, and
+committeth iniquity, he shall even die thereby.
+
+33:19 But if the wicked turn from his wickedness, and do that which is
+lawful and right, he shall live thereby.
+
+33:20 Yet ye say, The way of the Lord is not equal. O ye house of
+Israel, I will judge you every one after his ways.
+
+33:21 And it came to pass in the twelfth year of our captivity, in the
+tenth month, in the fifth day of the month, that one that had escaped
+out of Jerusalem came unto me, saying, The city is smitten.
+
+33:22 Now the hand of the LORD was upon me in the evening, afore he
+that was escaped came; and had opened my mouth, until he came to me in
+the morning; and my mouth was opened, and I was no more dumb.
+
+33:23 Then the word of the LORD came unto me, saying, 33:24 Son of
+man, they that inhabit those wastes of the land of Israel speak,
+saying, Abraham was one, and he inherited the land: but we are many;
+the land is given us for inheritance.
+
+33:25 Wherefore say unto them, Thus saith the Lord GOD; Ye eat with
+the blood, and lift up your eyes toward your idols, and shed blood:
+and shall ye possess the land? 33:26 Ye stand upon your sword, ye
+work abomination, and ye defile every one his neighbour's wife: and
+shall ye possess the land? 33:27 Say thou thus unto them, Thus saith
+the Lord GOD; As I live, surely they that are in the wastes shall fall
+by the sword, and him that is in the open field will I give to the
+beasts to be devoured, and they that be in the forts and in the caves
+shall die of the pestilence.
+
+33:28 For I will lay the land most desolate, and the pomp of her
+strength shall cease; and the mountains of Israel shall be desolate,
+that none shall pass through.
+
+33:29 Then shall they know that I am the LORD, when I have laid the
+land most desolate because of all their abominations which they have
+committed.
+
+33:30 Also, thou son of man, the children of thy people still are
+talking against thee by the walls and in the doors of the houses, and
+speak one to another, every one to his brother, saying, Come, I pray
+you, and hear what is the word that cometh forth from the LORD.
+
+33:31 And they come unto thee as the people cometh, and they sit
+before thee as my people, and they hear thy words, but they will not
+do them: for with their mouth they shew much love, but their heart
+goeth after their covetousness.
+
+33:32 And, lo, thou art unto them as a very lovely song of one that
+hath a pleasant voice, and can play well on an instrument: for they
+hear thy words, but they do them not.
+
+33:33 And when this cometh to pass, (lo, it will come,) then shall
+they know that a prophet hath been among them.
+
+34:1 And the word of the LORD came unto me, saying, 34:2 Son of man,
+prophesy against the shepherds of Israel, prophesy, and say unto them,
+Thus saith the Lord GOD unto the shepherds; Woe be to the shepherds of
+Israel that do feed themselves! should not the shepherds feed the
+flocks? 34:3 Ye eat the fat, and ye clothe you with the wool, ye kill
+them that are fed: but ye feed not the flock.
+
+34:4 The diseased have ye not strengthened, neither have ye healed
+that which was sick, neither have ye bound up that which was broken,
+neither have ye brought again that which was driven away, neither have
+ye sought that which was lost; but with force and with cruelty have ye
+ruled them.
+
+34:5 And they were scattered, because there is no shepherd: and they
+became meat to all the beasts of the field, when they were scattered.
+
+34:6 My sheep wandered through all the mountains, and upon every high
+hill: yea, my flock was scattered upon all the face of the earth, and
+none did search or seek after them.
+
+34:7 Therefore, ye shepherds, hear the word of the LORD; 34:8 As I
+live, saith the Lord GOD, surely because my flock became a prey, and
+my flock became meat to every beast of the field, because there was no
+shepherd, neither did my shepherds search for my flock, but the
+shepherds fed themselves, and fed not my flock; 34:9 Therefore, O ye
+shepherds, hear the word of the LORD; 34:10 Thus saith the Lord GOD;
+Behold, I am against the shepherds; and I will require my flock at
+their hand, and cause them to cease from feeding the flock; neither
+shall the shepherds feed themselves any more; for I will deliver my
+flock from their mouth, that they may not be meat for them.
+
+34:11 For thus saith the Lord GOD; Behold, I, even I, will both search
+my sheep, and seek them out.
+
+34:12 As a shepherd seeketh out his flock in the day that he is among
+his sheep that are scattered; so will I seek out my sheep, and will
+deliver them out of all places where they have been scattered in the
+cloudy and dark day.
+
+34:13 And I will bring them out from the people, and gather them from
+the countries, and will bring them to their own land, and feed them
+upon the mountains of Israel by the rivers, and in all the inhabited
+places of the country.
+
+34:14 I will feed them in a good pasture, and upon the high mountains
+of Israel shall their fold be: there shall they lie in a good fold,
+and in a fat pasture shall they feed upon the mountains of Israel.
+
+34:15 I will feed my flock, and I will cause them to lie down, saith
+the Lord GOD.
+
+34:16 I will seek that which was lost, and bring again that which was
+driven away, and will bind up that which was broken, and will
+strengthen that which was sick: but I will destroy the fat and the
+strong; I will feed them with judgment.
+
+34:17 And as for you, O my flock, thus saith the Lord GOD; Behold, I
+judge between cattle and cattle, between the rams and the he goats.
+
+34:18 Seemeth it a small thing unto you to have eaten up the good
+pasture, but ye must tread down with your feet the residue of your
+pastures? and to have drunk of the deep waters, but ye must foul the
+residue with your feet? 34:19 And as for my flock, they eat that
+which ye have trodden with your feet; and they drink that which ye
+have fouled with your feet.
+
+34:20 Therefore thus saith the Lord GOD unto them; Behold, I, even I,
+will judge between the fat cattle and between the lean cattle.
+
+34:21 Because ye have thrust with side and with shoulder, and pushed
+all the diseased with your horns, till ye have scattered them abroad;
+34:22 Therefore will I save my flock, and they shall no more be a
+prey; and I will judge between cattle and cattle.
+
+34:23 And I will set up one shepherd over them, and he shall feed
+them, even my servant David; he shall feed them, and he shall be their
+shepherd.
+
+34:24 And I the LORD will be their God, and my servant David a prince
+among them; I the LORD have spoken it.
+
+34:25 And I will make with them a covenant of peace, and will cause
+the evil beasts to cease out of the land: and they shall dwell safely
+in the wilderness, and sleep in the woods.
+
+34:26 And I will make them and the places round about my hill a
+blessing; and I will cause the shower to come down in his season;
+there shall be showers of blessing.
+
+34:27 And the tree of the field shall yield her fruit, and the earth
+shall yield her increase, and they shall be safe in their land, and
+shall know that I am the LORD, when I have broken the bands of their
+yoke, and delivered them out of the hand of those that served
+themselves of them.
+
+34:28 And they shall no more be a prey to the heathen, neither shall
+the beast of the land devour them; but they shall dwell safely, and
+none shall make them afraid.
+
+34:29 And I will raise up for them a plant of renown, and they shall
+be no more consumed with hunger in the land, neither bear the shame of
+the heathen any more.
+
+34:30 Thus shall they know that I the LORD their God am with them, and
+that they, even the house of Israel, are my people, saith the Lord
+GOD.
+
+34:31 And ye my flock, the flock of my pasture, are men, and I am your
+God, saith the Lord GOD.
+
+35:1 Moreover the word of the LORD came unto me, saying, 35:2 Son of
+man, set thy face against mount Seir, and prophesy against it, 35:3
+And say unto it, Thus saith the Lord GOD; Behold, O mount Seir, I am
+against thee, and I will stretch out mine hand against thee, and I
+will make thee most desolate.
+
+35:4 I will lay thy cities waste, and thou shalt be desolate, and thou
+shalt know that I am the LORD.
+
+35:5 Because thou hast had a perpetual hatred, and hast shed the blood
+of the children of Israel by the force of the sword in the time of
+their calamity, in the time that their iniquity had an end: 35:6
+Therefore, as I live, saith the Lord GOD, I will prepare thee unto
+blood, and blood shall pursue thee: sith thou hast not hated blood,
+even blood shall pursue thee.
+
+35:7 Thus will I make mount Seir most desolate, and cut off from it
+him that passeth out and him that returneth.
+
+35:8 And I will fill his mountains with his slain men: in thy hills,
+and in thy valleys, and in all thy rivers, shall they fall that are
+slain with the sword.
+
+35:9 I will make thee perpetual desolations, and thy cities shall not
+return: and ye shall know that I am the LORD.
+
+35:10 Because thou hast said, These two nations and these two
+countries shall be mine, and we will possess it; whereas the LORD was
+there: 35:11 Therefore, as I live, saith the Lord GOD, I will even do
+according to thine anger, and according to thine envy which thou hast
+used out of thy hatred against them; and I will make myself known
+among them, when I have judged thee.
+
+35:12 And thou shalt know that I am the LORD, and that I have heard
+all thy blasphemies which thou hast spoken against the mountains of
+Israel, saying, They are laid desolate, they are given us to consume.
+
+35:13 Thus with your mouth ye have boasted against me, and have
+multiplied your words against me: I have heard them.
+
+35:14 Thus saith the Lord GOD; When the whole earth rejoiceth, I will
+make thee desolate.
+
+35:15 As thou didst rejoice at the inheritance of the house of Israel,
+because it was desolate, so will I do unto thee: thou shalt be
+desolate, O mount Seir, and all Idumea, even all of it: and they shall
+know that I am the LORD.
+
+36:1 Also, thou son of man, prophesy unto the mountains of Israel, and
+say, Ye mountains of Israel, hear the word of the LORD: 36:2 Thus
+saith the Lord GOD; Because the enemy hath said against you, Aha, even
+the ancient high places are ours in possession: 36:3 Therefore
+prophesy and say, Thus saith the Lord GOD; Because they have made you
+desolate, and swallowed you up on every side, that ye might be a
+possession unto the residue of the heathen, and ye are taken up in the
+lips of talkers, and are an infamy of the people: 36:4 Therefore, ye
+mountains of Israel, hear the word of the Lord GOD; Thus saith the
+Lord GOD to the mountains, and to the hills, to the rivers, and to the
+valleys, to the desolate wastes, and to the cities that are forsaken,
+which became a prey and derision to the residue of the heathen that
+are round about; 36:5 Therefore thus saith the Lord GOD; Surely in the
+fire of my jealousy have I spoken against the residue of the heathen,
+and against all Idumea, which have appointed my land into their
+possession with the joy of all their heart, with despiteful minds, to
+cast it out for a prey.
+
+36:6 Prophesy therefore concerning the land of Israel, and say unto
+the mountains, and to the hills, to the rivers, and to the valleys,
+Thus saith the Lord GOD; Behold, I have spoken in my jealousy and in
+my fury, because ye have borne the shame of the heathen: 36:7
+Therefore thus saith the Lord GOD; I have lifted up mine hand, Surely
+the heathen that are about you, they shall bear their shame.
+
+36:8 But ye, O mountains of Israel, ye shall shoot forth your
+branches, and yield your fruit to my people of Israel; for they are at
+hand to come.
+
+36:9 For, behold, I am for you, and I will turn unto you, and ye shall
+be tilled and sown: 36:10 And I will multiply men upon you, all the
+house of Israel, even all of it: and the cities shall be inhabited,
+and the wastes shall be builded: 36:11 And I will multiply upon you
+man and beast; and they shall increase and bring fruit: and I will
+settle you after your old estates, and will do better unto you than at
+your beginnings: and ye shall know that I am the LORD.
+
+36:12 Yea, I will cause men to walk upon you, even my people Israel;
+and they shall possess thee, and thou shalt be their inheritance, and
+thou shalt no more henceforth bereave them of men.
+
+36:13 Thus saith the Lord GOD; Because they say unto you, Thou land
+devourest up men, and hast bereaved thy nations: 36:14 Therefore thou
+shalt devour men no more, neither bereave thy nations any more, saith
+the Lord GOD.
+
+36:15 Neither will I cause men to hear in thee the shame of the
+heathen any more, neither shalt thou bear the reproach of the people
+any more, neither shalt thou cause thy nations to fall any more, saith
+the Lord GOD.
+
+36:16 Moreover the word of the LORD came unto me, saying, 36:17 Son of
+man, when the house of Israel dwelt in their own land, they defiled it
+by their own way and by their doings: their way was before me as the
+uncleanness of a removed woman.
+
+36:18 Wherefore I poured my fury upon them for the blood that they had
+shed upon the land, and for their idols wherewith they had polluted
+it: 36:19 And I scattered them among the heathen, and they were
+dispersed through the countries: according to their way and according
+to their doings I judged them.
+
+36:20 And when they entered unto the heathen, whither they went, they
+profaned my holy name, when they said to them, These are the people of
+the LORD, and are gone forth out of his land.
+
+36:21 But I had pity for mine holy name, which the house of Israel had
+profaned among the heathen, whither they went.
+
+36:22 Therefore say unto the house of Israel, thus saith the Lord GOD;
+I do not this for your sakes, O house of Israel, but for mine holy
+name's sake, which ye have profaned among the heathen, whither ye
+went.
+
+36:23 And I will sanctify my great name, which was profaned among the
+heathen, which ye have profaned in the midst of them; and the heathen
+shall know that I am the LORD, saith the Lord GOD, when I shall be
+sanctified in you before their eyes.
+
+36:24 For I will take you from among the heathen, and gather you out
+of all countries, and will bring you into your own land.
+
+36:25 Then will I sprinkle clean water upon you, and ye shall be
+clean: from all your filthiness, and from all your idols, will I
+cleanse you.
+
+36:26 A new heart also will I give you, and a new spirit will I put
+within you: and I will take away the stony heart out of your flesh,
+and I will give you an heart of flesh.
+
+36:27 And I will put my spirit within you, and cause you to walk in my
+statutes, and ye shall keep my judgments, and do them.
+
+36:28 And ye shall dwell in the land that I gave to your fathers; and
+ye shall be my people, and I will be your God.
+
+36:29 I will also save you from all your uncleannesses: and I will
+call for the corn, and will increase it, and lay no famine upon you.
+
+36:30 And I will multiply the fruit of the tree, and the increase of
+the field, that ye shall receive no more reproach of famine among the
+heathen.
+
+36:31 Then shall ye remember your own evil ways, and your doings that
+were not good, and shall lothe yourselves in your own sight for your
+iniquities and for your abominations.
+
+36:32 Not for your sakes do I this, saith the Lord GOD, be it known
+unto you: be ashamed and confounded for your own ways, O house of
+Israel.
+
+36:33 Thus saith the Lord GOD; In the day that I shall have cleansed
+you from all your iniquities I will also cause you to dwell in the
+cities, and the wastes shall be builded.
+
+36:34 And the desolate land shall be tilled, whereas it lay desolate
+in the sight of all that passed by.
+
+36:35 And they shall say, This land that was desolate is become like
+the garden of Eden; and the waste and desolate and ruined cities are
+become fenced, and are inhabited.
+
+36:36 Then the heathen that are left round about you shall know that I
+the LORD build the ruined places, and plant that that was desolate: I
+the LORD have spoken it, and I will do it.
+
+36:37 Thus saith the Lord GOD; I will yet for this be enquired of by
+the house of Israel, to do it for them; I will increase them with men
+like a flock.
+
+36:38 As the holy flock, as the flock of Jerusalem in her solemn
+feasts; so shall the waste cities be filled with flocks of men: and
+they shall know that I am the LORD.
+
+37:1 The hand of the LORD was upon me, and carried me out in the
+spirit of the LORD, and set me down in the midst of the valley which
+was full of bones, 37:2 And caused me to pass by them round about:
+and, behold, there were very many in the open valley; and, lo, they
+were very dry.
+
+37:3 And he said unto me, Son of man, can these bones live? And I
+answered, O Lord GOD, thou knowest.
+
+37:4 Again he said unto me, Prophesy upon these bones, and say unto
+them, O ye dry bones, hear the word of the LORD.
+
+37:5 Thus saith the Lord GOD unto these bones; Behold, I will cause
+breath to enter into you, and ye shall live: 37:6 And I will lay
+sinews upon you, and will bring up flesh upon you, and cover you with
+skin, and put breath in you, and ye shall live; and ye shall know that
+I am the LORD.
+
+37:7 So I prophesied as I was commanded: and as I prophesied, there
+was a noise, and behold a shaking, and the bones came together, bone
+to his bone.
+
+37:8 And when I beheld, lo, the sinews and the flesh came up upon
+them, and the skin covered them above: but there was no breath in
+them.
+
+37:9 Then said he unto me, Prophesy unto the wind, prophesy, son of
+man, and say to the wind, Thus saith the Lord GOD; Come from the four
+winds, O breath, and breathe upon these slain, that they may live.
+
+37:10 So I prophesied as he commanded me, and the breath came into
+them, and they lived, and stood up upon their feet, an exceeding great
+army.
+
+37:11 Then he said unto me, Son of man, these bones are the whole
+house of Israel: behold, they say, Our bones are dried, and our hope
+is lost: we are cut off for our parts.
+
+37:12 Therefore prophesy and say unto them, Thus saith the Lord GOD;
+Behold, O my people, I will open your graves, and cause you to come up
+out of your graves, and bring you into the land of Israel.
+
+37:13 And ye shall know that I am the LORD, when I have opened your
+graves, O my people, and brought you up out of your graves, 37:14 And
+shall put my spirit in you, and ye shall live, and I shall place you
+in your own land: then shall ye know that I the LORD have spoken it,
+and performed it, saith the LORD.
+
+37:15 The word of the LORD came again unto me, saying, 37:16 Moreover,
+thou son of man, take thee one stick, and write upon it, For Judah,
+and for the children of Israel his companions: then take another
+stick, and write upon it, For Joseph, the stick of Ephraim and for all
+the house of Israel his companions: 37:17 And join them one to another
+into one stick; and they shall become one in thine hand.
+
+37:18 And when the children of thy people shall speak unto thee,
+saying, Wilt thou not shew us what thou meanest by these? 37:19 Say
+unto them, Thus saith the Lord GOD; Behold, I will take the stick of
+Joseph, which is in the hand of Ephraim, and the tribes of Israel his
+fellows, and will put them with him, even with the stick of Judah, and
+make them one stick, and they shall be one in mine hand.
+
+37:20 And the sticks whereon thou writest shall be in thine hand
+before their eyes.
+
+37:21 And say unto them, Thus saith the Lord GOD; Behold, I will take
+the children of Israel from among the heathen, whither they be gone,
+and will gather them on every side, and bring them into their own
+land: 37:22 And I will make them one nation in the land upon the
+mountains of Israel; and one king shall be king to them all: and they
+shall be no more two nations, neither shall they be divided into two
+kingdoms any more at all.
+
+37:23 Neither shall they defile themselves any more with their idols,
+nor with their detestable things, nor with any of their
+transgressions: but I will save them out of all their dwellingplaces,
+wherein they have sinned, and will cleanse them: so shall they be my
+people, and I will be their God.
+
+37:24 And David my servant shall be king over them; and they all shall
+have one shepherd: they shall also walk in my judgments, and observe
+my statutes, and do them.
+
+37:25 And they shall dwell in the land that I have given unto Jacob my
+servant, wherein your fathers have dwelt; and they shall dwell
+therein, even they, and their children, and their children's children
+for ever: and my servant David shall be their prince for ever.
+
+37:26 Moreover I will make a covenant of peace with them; it shall be
+an everlasting covenant with them: and I will place them, and multiply
+them, and will set my sanctuary in the midst of them for evermore.
+
+37:27 My tabernacle also shall be with them: yea, I will be their God,
+and they shall be my people.
+
+37:28 And the heathen shall know that I the LORD do sanctify Israel,
+when my sanctuary shall be in the midst of them for evermore.
+
+38:1 And the word of the LORD came unto me, saying, 38:2 Son of man,
+set thy face against Gog, the land of Magog, the chief prince of
+Meshech and Tubal, and prophesy against him, 38:3 And say, Thus saith
+the Lord GOD; Behold, I am against thee, O Gog, the chief prince of
+Meshech and Tubal: 38:4 And I will turn thee back, and put hooks into
+thy jaws, and I will bring thee forth, and all thine army, horses and
+horsemen, all of them clothed with all sorts of armour, even a great
+company with bucklers and shields, all of them handling swords: 38:5
+Persia, Ethiopia, and Libya with them; all of them with shield and
+helmet: 38:6 Gomer, and all his bands; the house of Togarmah of the
+north quarters, and all his bands: and many people with thee.
+
+38:7 Be thou prepared, and prepare for thyself, thou, and all thy
+company that are assembled unto thee, and be thou a guard unto them.
+
+38:8 After many days thou shalt be visited: in the latter years thou
+shalt come into the land that is brought back from the sword, and is
+gathered out of many people, against the mountains of Israel, which
+have been always waste: but it is brought forth out of the nations,
+and they shall dwell safely all of them.
+
+38:9 Thou shalt ascend and come like a storm, thou shalt be like a
+cloud to cover the land, thou, and all thy bands, and many people with
+thee.
+
+38:10 Thus saith the Lord GOD; It shall also come to pass, that at the
+same time shall things come into thy mind, and thou shalt think an
+evil thought: 38:11 And thou shalt say, I will go up to the land of
+unwalled villages; I will go to them that are at rest, that dwell
+safely, all of them dwelling without walls, and having neither bars
+nor gates, 38:12 To take a spoil, and to take a prey; to turn thine
+hand upon the desolate places that are now inhabited, and upon the
+people that are gathered out of the nations, which have gotten cattle
+and goods, that dwell in the midst of the land.
+
+38:13 Sheba, and Dedan, and the merchants of Tarshish, with all the
+young lions thereof, shall say unto thee, Art thou come to take a
+spoil? hast thou gathered thy company to take a prey? to carry away
+silver and gold, to take away cattle and goods, to take a great spoil?
+38:14 Therefore, son of man, prophesy and say unto Gog, Thus saith the
+Lord GOD; In that day when my people of Israel dwelleth safely, shalt
+thou not know it? 38:15 And thou shalt come from thy place out of the
+north parts, thou, and many people with thee, all of them riding upon
+horses, a great company, and a mighty army: 38:16 And thou shalt come
+up against my people of Israel, as a cloud to cover the land; it shall
+be in the latter days, and I will bring thee against my land, that the
+heathen may know me, when I shall be sanctified in thee, O Gog, before
+their eyes.
+
+38:17 Thus saith the Lord GOD; Art thou he of whom I have spoken in
+old time by my servants the prophets of Israel, which prophesied in
+those days many years that I would bring thee against them? 38:18 And
+it shall come to pass at the same time when Gog shall come against the
+land of Israel, saith the Lord GOD, that my fury shall come up in my
+face.
+
+38:19 For in my jealousy and in the fire of my wrath have I spoken,
+Surely in that day there shall be a great shaking in the land of
+Israel; 38:20 So that the fishes of the sea, and the fowls of the
+heaven, and the beasts of the field, and all creeping things that
+creep upon the earth, and all the men that are upon the face of the
+earth, shall shake at my presence, and the mountains shall be thrown
+down, and the steep places shall fall, and every wall shall fall to
+the ground.
+
+38:21 And I will call for a sword against him throughout all my
+mountains, saith the Lord GOD: every man's sword shall be against his
+brother.
+
+38:22 And I will plead against him with pestilence and with blood; and
+I will rain upon him, and upon his bands, and upon the many people
+that are with him, an overflowing rain, and great hailstones, fire,
+and brimstone.
+
+38:23 Thus will I magnify myself, and sanctify myself; and I will be
+known in the eyes of many nations, and they shall know that I am the
+LORD.
+
+39:1 Therefore, thou son of man, prophesy against Gog, and say, Thus
+saith the Lord GOD; Behold, I am against thee, O Gog, the chief prince
+of Meshech and Tubal: 39:2 And I will turn thee back, and leave but
+the sixth part of thee, and will cause thee to come up from the north
+parts, and will bring thee upon the mountains of Israel: 39:3 And I
+will smite thy bow out of thy left hand, and will cause thine arrows
+to fall out of thy right hand.
+
+39:4 Thou shalt fall upon the mountains of Israel, thou, and all thy
+bands, and the people that is with thee: I will give thee unto the
+ravenous birds of every sort, and to the beasts of the field to be
+devoured.
+
+39:5 Thou shalt fall upon the open field: for I have spoken it, saith
+the Lord GOD.
+
+39:6 And I will send a fire on Magog, and among them that dwell
+carelessly in the isles: and they shall know that I am the LORD.
+
+39:7 So will I make my holy name known in the midst of my people
+Israel; and I will not let them pollute my holy name any more: and the
+heathen shall know that I am the LORD, the Holy One in Israel.
+
+39:8 Behold, it is come, and it is done, saith the Lord GOD; this is
+the day whereof I have spoken.
+
+39:9 And they that dwell in the cities of Israel shall go forth, and
+shall set on fire and burn the weapons, both the shields and the
+bucklers, the bows and the arrows, and the handstaves, and the spears,
+and they shall burn them with fire seven years: 39:10 So that they
+shall take no wood out of the field, neither cut down any out of the
+forests; for they shall burn the weapons with fire: and they shall
+spoil those that spoiled them, and rob those that robbed them, saith
+the Lord GOD.
+
+39:11 And it shall come to pass in that day, that I will give unto Gog
+a place there of graves in Israel, the valley of the passengers on the
+east of the sea: and it shall stop the noses of the passengers: and
+there shall they bury Gog and all his multitude: and they shall call
+it The valley of Hamongog.
+
+39:12 And seven months shall the house of Israel be burying of them,
+that they may cleanse the land.
+
+39:13 Yea, all the people of the land shall bury them; and it shall be
+to them a renown the day that I shall be glorified, saith the Lord
+GOD.
+
+39:14 And they shall sever out men of continual employment, passing
+through the land to bury with the passengers those that remain upon
+the face of the earth, to cleanse it: after the end of seven months
+shall they search.
+
+39:15 And the passengers that pass through the land, when any seeth a
+man's bone, then shall he set up a sign by it, till the buriers have
+buried it in the valley of Hamongog.
+
+39:16 And also the name of the city shall be Hamonah. Thus shall they
+cleanse the land.
+
+39:17 And, thou son of man, thus saith the Lord GOD; Speak unto every
+feathered fowl, and to every beast of the field, Assemble yourselves,
+and come; gather yourselves on every side to my sacrifice that I do
+sacrifice for you, even a great sacrifice upon the mountains of
+Israel, that ye may eat flesh, and drink blood.
+
+39:18 Ye shall eat the flesh of the mighty, and drink the blood of the
+princes of the earth, of rams, of lambs, and of goats, of bullocks,
+all of them fatlings of Bashan.
+
+39:19 And ye shall eat fat till ye be full, and drink blood till ye be
+drunken, of my sacrifice which I have sacrificed for you.
+
+39:20 Thus ye shall be filled at my table with horses and chariots,
+with mighty men, and with all men of war, saith the Lord GOD.
+
+39:21 And I will set my glory among the heathen, and all the heathen
+shall see my judgment that I have executed, and my hand that I have
+laid upon them.
+
+39:22 So the house of Israel shall know that I am the LORD their God
+from that day and forward.
+
+39:23 And the heathen shall know that the house of Israel went into
+captivity for their iniquity: because they trespassed against me,
+therefore hid I my face from them, and gave them into the hand of
+their enemies: so fell they all by the sword.
+
+39:24 According to their uncleanness and according to their
+transgressions have I done unto them, and hid my face from them.
+
+39:25 Therefore thus saith the Lord GOD; Now will I bring again the
+captivity of Jacob, and have mercy upon the whole house of Israel, and
+will be jealous for my holy name; 39:26 After that they have borne
+their shame, and all their trespasses whereby they have trespassed
+against me, when they dwelt safely in their land, and none made them
+afraid.
+
+39:27 When I have brought them again from the people, and gathered
+them out of their enemies' lands, and am sanctified in them in the
+sight of many nations; 39:28 Then shall they know that I am the LORD
+their God, which caused them to be led into captivity among the
+heathen: but I have gathered them unto their own land, and have left
+none of them any more there.
+
+39:29 Neither will I hide my face any more from them: for I have
+poured out my spirit upon the house of Israel, saith the Lord GOD.
+
+40:1 In the five and twentieth year of our captivity, in the beginning
+of the year, in the tenth day of the month, in the fourteenth year
+after that the city was smitten, in the selfsame day the hand of the
+LORD was upon me, and brought me thither.
+
+40:2 In the visions of God brought he me into the land of Israel, and
+set me upon a very high mountain, by which was as the frame of a city
+on the south.
+
+40:3 And he brought me thither, and, behold, there was a man, whose
+appearance was like the appearance of brass, with a line of flax in
+his hand, and a measuring reed; and he stood in the gate.
+
+40:4 And the man said unto me, Son of man, behold with thine eyes, and
+hear with thine ears, and set thine heart upon all that I shall shew
+thee; for to the intent that I might shew them unto thee art thou
+brought hither: declare all that thou seest to the house of Israel.
+
+40:5 And behold a wall on the outside of the house round about, and in
+the man's hand a measuring reed of six cubits long by the cubit and an
+hand breadth: so he measured the breadth of the building, one reed;
+and the height, one reed.
+
+40:6 Then came he unto the gate which looketh toward the east, and
+went up the stairs thereof, and measured the threshold of the gate,
+which was one reed broad; and the other threshold of the gate, which
+was one reed broad.
+
+40:7 And every little chamber was one reed long, and one reed broad;
+and between the little chambers were five cubits; and the threshold of
+the gate by the porch of the gate within was one reed.
+
+40:8 He measured also the porch of the gate within, one reed.
+
+40:9 Then measured he the porch of the gate, eight cubits; and the
+posts thereof, two cubits; and the porch of the gate was inward.
+
+40:10 And the little chambers of the gate eastward were three on this
+side, and three on that side; they three were of one measure: and the
+posts had one measure on this side and on that side.
+
+40:11 And he measured the breadth of the entry of the gate, ten
+cubits; and the length of the gate, thirteen cubits.
+
+40:12 The space also before the little chambers was one cubit on this
+side, and the space was one cubit on that side: and the little
+chambers were six cubits on this side, and six cubits on that side.
+
+40:13 He measured then the gate from the roof of one little chamber to
+the roof of another: the breadth was five and twenty cubits, door
+against door.
+
+40:14 He made also posts of threescore cubits, even unto the post of
+the court round about the gate.
+
+40:15 And from the face of the gate of the entrance unto the face of
+the porch of the inner gate were fifty cubits.
+
+40:16 And there were narrow windows to the little chambers, and to
+their posts within the gate round about, and likewise to the arches:
+and windows were round about inward: and upon each post were palm
+trees.
+
+40:17 Then brought he me into the outward court, and, lo, there were
+chambers, and a pavement made for the court round about: thirty
+chambers were upon the pavement.
+
+40:18 And the pavement by the side of the gates over against the
+length of the gates was the lower pavement.
+
+40:19 Then he measured the breadth from the forefront of the lower
+gate unto the forefront of the inner court without, an hundred cubits
+eastward and northward.
+
+40:20 And the gate of the outward court that looked toward the north,
+he measured the length thereof, and the breadth thereof.
+
+40:21 And the little chambers thereof were three on this side and
+three on that side; and the posts thereof and the arches thereof were
+after the measure of the first gate: the length thereof was fifty
+cubits, and the breadth five and twenty cubits.
+
+40:22 And their windows, and their arches, and their palm trees, were
+after the measure of the gate that looketh toward the east; and they
+went up unto it by seven steps; and the arches thereof were before
+them.
+
+40:23 And the gate of the inner court was over against the gate toward
+the north, and toward the east; and he measured from gate to gate an
+hundred cubits.
+
+40:24 After that he brought me toward the south, and behold a gate
+toward the south: and he measured the posts thereof and the arches
+thereof according to these measures.
+
+40:25 And there were windows in it and in the arches thereof round
+about, like those windows: the length was fifty cubits, and the
+breadth five and twenty cubits.
+
+40:26 And there were seven steps to go up to it, and the arches
+thereof were before them: and it had palm trees, one on this side, and
+another on that side, upon the posts thereof.
+
+40:27 And there was a gate in the inner court toward the south: and he
+measured from gate to gate toward the south an hundred cubits.
+
+40:28 And he brought me to the inner court by the south gate: and he
+measured the south gate according to these measures; 40:29 And the
+little chambers thereof, and the posts thereof, and the arches
+thereof, according to these measures: and there were windows in it and
+in the arches thereof round about: it was fifty cubits long, and five
+and twenty cubits broad.
+
+40:30 And the arches round about were five and twenty cubits long, and
+five cubits broad.
+
+40:31 And the arches thereof were toward the utter court; and palm
+trees were upon the posts thereof: and the going up to it had eight
+steps.
+
+40:32 And he brought me into the inner court toward the east: and he
+measured the gate according to these measures.
+
+40:33 And the little chambers thereof, and the posts thereof, and the
+arches thereof, were according to these measures: and there were
+windows therein and in the arches thereof round about: it was fifty
+cubits long, and five and twenty cubits broad.
+
+40:34 And the arches thereof were toward the outward court; and palm
+trees were upon the posts thereof, on this side, and on that side: and
+the going up to it had eight steps.
+
+40:35 And he brought me to the north gate, and measured it according
+to these measures; 40:36 The little chambers thereof, the posts
+thereof, and the arches thereof, and the windows to it round about:
+the length was fifty cubits, and the breadth five and twenty cubits.
+
+40:37 And the posts thereof were toward the utter court; and palm
+trees were upon the posts thereof, on this side, and on that side: and
+the going up to it had eight steps.
+
+40:38 And the chambers and the entries thereof were by the posts of
+the gates, where they washed the burnt offering.
+
+40:39 And in the porch of the gate were two tables on this side, and
+two tables on that side, to slay thereon the burnt offering and the
+sin offering and the trespass offering.
+
+40:40 And at the side without, as one goeth up to the entry of the
+north gate, were two tables; and on the other side, which was at the
+porch of the gate, were two tables.
+
+40:41 Four tables were on this side, and four tables on that side, by
+the side of the gate; eight tables, whereupon they slew their
+sacrifices.
+
+40:42 And the four tables were of hewn stone for the burnt offering,
+of a cubit and an half long, and a cubit and an half broad, and one
+cubit high: whereupon also they laid the instruments wherewith they
+slew the burnt offering and the sacrifice.
+
+40:43 And within were hooks, an hand broad, fastened round about: and
+upon the tables was the flesh of the offering.
+
+40:44 And without the inner gate were the chambers of the singers in
+the inner court, which was at the side of the north gate; and their
+prospect was toward the south: one at the side of the east gate having
+the prospect toward the north.
+
+40:45 And he said unto me, This chamber, whose prospect is toward the
+south, is for the priests, the keepers of the charge of the house.
+
+40:46 And the chamber whose prospect is toward the north is for the
+priests, the keepers of the charge of the altar: these are the sons of
+Zadok among the sons of Levi, which come near to the LORD to minister
+unto him.
+
+40:47 So he measured the court, an hundred cubits long, and an hundred
+cubits broad, foursquare; and the altar that was before the house.
+
+40:48 And he brought me to the porch of the house, and measured each
+post of the porch, five cubits on this side, and five cubits on that
+side: and the breadth of the gate was three cubits on this side, and
+three cubits on that side.
+
+40:49 The length of the porch was twenty cubits, and the breadth
+eleven cubits, and he brought me by the steps whereby they went up to
+it: and there were pillars by the posts, one on this side, and another
+on that side.
+
+41:1 Afterward he brought me to the temple, and measured the posts,
+six cubits broad on the one side, and six cubits broad on the other
+side, which was the breadth of the tabernacle.
+
+41:2 And the breadth of the door was ten cubits; and the sides of the
+door were five cubits on the one side, and five cubits on the other
+side: and he measured the length thereof, forty cubits: and the
+breadth, twenty cubits.
+
+41:3 Then went he inward, and measured the post of the door, two
+cubits; and the door, six cubits; and the breadth of the door, seven
+cubits.
+
+41:4 So he measured the length thereof, twenty cubits; and the
+breadth, twenty cubits, before the temple: and he said unto me, This
+is the most holy place.
+
+41:5 After he measured the wall of the house, six cubits; and the
+breadth of every side chamber, four cubits, round about the house on
+every side.
+
+41:6 And the side chambers were three, one over another, and thirty in
+order; and they entered into the wall which was of the house for the
+side chambers round about, that they might have hold, but they had not
+hold in the wall of the house.
+
+41:7 And there was an enlarging, and a winding about still upward to
+the side chambers: for the winding about of the house went still
+upward round about the house: therefore the breadth of the house was
+still upward, and so increased from the lowest chamber to the highest
+by the midst.
+
+41:8 I saw also the height of the house round about: the foundations
+of the side chambers were a full reed of six great cubits.
+
+41:9 The thickness of the wall, which was for the side chamber
+without, was five cubits: and that which was left was the place of the
+side chambers that were within.
+
+41:10 And between the chambers was the wideness of twenty cubits round
+about the house on every side.
+
+41:11 And the doors of the side chambers were toward the place that
+was left, one door toward the north, and another door toward the
+south: and the breadth of the place that was left was five cubits
+round about.
+
+41:12 Now the building that was before the separate place at the end
+toward the west was seventy cubits broad; and the wall of the building
+was five cubits thick round about, and the length thereof ninety
+cubits.
+
+41:13 So he measured the house, an hundred cubits long; and the
+separate place, and the building, with the walls thereof, an hundred
+cubits long; 41:14 Also the breadth of the face of the house, and of
+the separate place toward the east, an hundred cubits.
+
+41:15 And he measured the length of the building over against the
+separate place which was behind it, and the galleries thereof on the
+one side and on the other side, an hundred cubits, with the inner
+temple, and the porches of the court; 41:16 The door posts, and the
+narrow windows, and the galleries round about on their three stories,
+over against the door, cieled with wood round about, and from the
+ground up to the windows, and the windows were covered; 41:17 To that
+above the door, even unto the inner house, and without, and by all the
+wall round about within and without, by measure.
+
+41:18 And it was made with cherubims and palm trees, so that a palm
+tree was between a cherub and a cherub; and every cherub had two
+faces; 41:19 So that the face of a man was toward the palm tree on the
+one side, and the face of a young lion toward the palm tree on the
+other side: it was made through all the house round about.
+
+41:20 From the ground unto above the door were cherubims and palm
+trees made, and on the wall of the temple.
+
+41:21 The posts of the temple were squared, and the face of the
+sanctuary; the appearance of the one as the appearance of the other.
+
+41:22 The altar of wood was three cubits high, and the length thereof
+two cubits; and the corners thereof, and the length thereof, and the
+walls thereof, were of wood: and he said unto me, This is the table
+that is before the LORD.
+
+41:23 And the temple and the sanctuary had two doors.
+
+41:24 And the doors had two leaves apiece, two turning leaves; two
+leaves for the one door, and two leaves for the other door.
+
+41:25 And there were made on them, on the doors of the temple,
+cherubims and palm trees, like as were made upon the walls; and there
+were thick planks upon the face of the porch without.
+
+41:26 And there were narrow windows and palm trees on the one side and
+on the other side, on the sides of the porch, and upon the side
+chambers of the house, and thick planks.
+
+42:1 Then he brought me forth into the utter court, the way toward the
+north: and he brought me into the chamber that was over against the
+separate place, and which was before the building toward the north.
+
+42:2 Before the length of an hundred cubits was the north door, and
+the breadth was fifty cubits.
+
+42:3 Over against the twenty cubits which were for the inner court,
+and over against the pavement which was for the utter court, was
+gallery against gallery in three stories.
+
+42:4 And before the chambers was a walk to ten cubits breadth inward,
+a way of one cubit; and their doors toward the north.
+
+42:5 Now the upper chambers were shorter: for the galleries were
+higher than these, than the lower, and than the middlemost of the
+building.
+
+42:6 For they were in three stories, but had not pillars as the
+pillars of the courts: therefore the building was straitened more than
+the lowest and the middlemost from the ground.
+
+42:7 And the wall that was without over against the chambers, toward
+the utter court on the forepart of the chambers, the length thereof
+was fifty cubits.
+
+42:8 For the length of the chambers that were in the utter court was
+fifty cubits: and, lo, before the temple were an hundred cubits.
+
+42:9 And from under these chambers was the entry on the east side, as
+one goeth into them from the utter court.
+
+42:10 The chambers were in the thickness of the wall of the court
+toward the east, over against the separate place, and over against the
+building.
+
+42:11 And the way before them was like the appearance of the chambers
+which were toward the north, as long as they, and as broad as they:
+and all their goings out were both according to their fashions, and
+according to their doors.
+
+42:12 And according to the doors of the chambers that were toward the
+south was a door in the head of the way, even the way directly before
+the wall toward the east, as one entereth into them.
+
+42:13 Then said he unto me, The north chambers and the south chambers,
+which are before the separate place, they be holy chambers, where the
+priests that approach unto the LORD shall eat the most holy things:
+there shall they lay the most holy things, and the meat offering, and
+the sin offering, and the trespass offering; for the place is holy.
+
+42:14 When the priests enter therein, then shall they not go out of
+the holy place into the utter court, but there they shall lay their
+garments wherein they minister; for they are holy; and shall put on
+other garments, and shall approach to those things which are for the
+people.
+
+42:15 Now when he had made an end of measuring the inner house, he
+brought me forth toward the gate whose prospect is toward the east,
+and measured it round about.
+
+42:16 He measured the east side with the measuring reed, five hundred
+reeds, with the measuring reed round about.
+
+42:17 He measured the north side, five hundred reeds, with the
+measuring reed round about.
+
+42:18 He measured the south side, five hundred reeds, with the
+measuring reed.
+
+42:19 He turned about to the west side, and measured five hundred
+reeds with the measuring reed.
+
+42:20 He measured it by the four sides: it had a wall round about,
+five hundred reeds long, and five hundred broad, to make a separation
+between the sanctuary and the profane place.
+
+43:1 Afterward he brought me to the gate, even the gate that looketh
+toward the east: 43:2 And, behold, the glory of the God of Israel came
+from the way of the east: and his voice was like a noise of many
+waters: and the earth shined with his glory.
+
+43:3 And it was according to the appearance of the vision which I saw,
+even according to the vision that I saw when I came to destroy the
+city: and the visions were like the vision that I saw by the river
+Chebar; and I fell upon my face.
+
+43:4 And the glory of the LORD came into the house by the way of the
+gate whose prospect is toward the east.
+
+43:5 So the spirit took me up, and brought me into the inner court;
+and, behold, the glory of the LORD filled the house.
+
+43:6 And I heard him speaking unto me out of the house; and the man
+stood by me.
+
+43:7 And he said unto me, Son of man, the place of my throne, and the
+place of the soles of my feet, where I will dwell in the midst of the
+children of Israel for ever, and my holy name, shall the house of
+Israel no more defile, neither they, nor their kings, by their
+whoredom, nor by the carcases of their kings in their high places.
+
+43:8 In their setting of their threshold by my thresholds, and their
+post by my posts, and the wall between me and them, they have even
+defiled my holy name by their abominations that they have committed:
+wherefore I have consumed them in mine anger.
+
+43:9 Now let them put away their whoredom, and the carcases of their
+kings, far from me, and I will dwell in the midst of them for ever.
+
+43:10 Thou son of man, shew the house to the house of Israel, that
+they may be ashamed of their iniquities: and let them measure the
+pattern.
+
+43:11 And if they be ashamed of all that they have done, shew them the
+form of the house, and the fashion thereof, and the goings out
+thereof, and the comings in thereof, and all the forms thereof, and
+all the ordinances thereof, and all the forms thereof, and all the
+laws thereof: and write it in their sight, that they may keep the
+whole form thereof, and all the ordinances thereof, and do them.
+
+43:12 This is the law of the house; Upon the top of the mountain the
+whole limit thereof round about shall be most holy. Behold, this is
+the law of the house.
+
+43:13 And these are the measures of the altar after the cubits: The
+cubit is a cubit and an hand breadth; even the bottom shall be a
+cubit, and the breadth a cubit, and the border thereof by the edge
+thereof round about shall be a span: and this shall be the higher
+place of the altar.
+
+43:14 And from the bottom upon the ground even to the lower settle
+shall be two cubits, and the breadth one cubit; and from the lesser
+settle even to the greater settle shall be four cubits, and the
+breadth one cubit.
+
+43:15 So the altar shall be four cubits; and from the altar and upward
+shall be four horns.
+
+43:16 And the altar shall be twelve cubits long, twelve broad, square
+in the four squares thereof.
+
+43:17 And the settle shall be fourteen cubits long and fourteen broad
+in the four squares thereof; and the border about it shall be half a
+cubit; and the bottom thereof shall be a cubit about; and his stairs
+shall look toward the east.
+
+43:18 And he said unto me, Son of man, thus saith the Lord GOD; These
+are the ordinances of the altar in the day when they shall make it, to
+offer burnt offerings thereon, and to sprinkle blood thereon.
+
+43:19 And thou shalt give to the priests the Levites that be of the
+seed of Zadok, which approach unto me, to minister unto me, saith the
+Lord GOD, a young bullock for a sin offering.
+
+43:20 And thou shalt take of the blood thereof, and put it on the four
+horns of it, and on the four corners of the settle, and upon the
+border round about: thus shalt thou cleanse and purge it.
+
+43:21 Thou shalt take the bullock also of the sin offering, and he
+shall burn it in the appointed place of the house, without the
+sanctuary.
+
+43:22 And on the second day thou shalt offer a kid of the goats
+without blemish for a sin offering; and they shall cleanse the altar,
+as they did cleanse it with the bullock.
+
+43:23 When thou hast made an end of cleansing it, thou shalt offer a
+young bullock without blemish, and a ram out of the flock without
+blemish.
+
+43:24 And thou shalt offer them before the LORD, and the priests shall
+cast salt upon them, and they shall offer them up for a burnt offering
+unto the LORD.
+
+43:25 Seven days shalt thou prepare every day a goat for a sin
+offering: they shall also prepare a young bullock, and a ram out of
+the flock, without blemish.
+
+43:26 Seven days shall they purge the altar and purify it; and they
+shall consecrate themselves.
+
+43:27 And when these days are expired, it shall be, that upon the
+eighth day, and so forward, the priests shall make your burnt
+offerings upon the altar, and your peace offerings; and I will accept
+you, saith the Lord GOD.
+
+44:1 Then he brought me back the way of the gate of the outward
+sanctuary which looketh toward the east; and it was shut.
+
+44:2 Then said the LORD unto me; This gate shall be shut, it shall not
+be opened, and no man shall enter in by it; because the LORD, the God
+of Israel, hath entered in by it, therefore it shall be shut.
+
+44:3 It is for the prince; the prince, he shall sit in it to eat bread
+before the LORD; he shall enter by the way of the porch of that gate,
+and shall go out by the way of the same.
+
+44:4 Then brought he me the way of the north gate before the house:
+and I looked, and, behold, the glory of the LORD filled the house of
+the LORD: and I fell upon my face.
+
+44:5 And the LORD said unto me, Son of man, mark well, and behold with
+thine eyes, and hear with thine ears all that I say unto thee
+concerning all the ordinances of the house of the LORD, and all the
+laws thereof; and mark well the entering in of the house, with every
+going forth of the sanctuary.
+
+44:6 And thou shalt say to the rebellious, even to the house of
+Israel, Thus saith the Lord GOD; O ye house of Israel, let it suffice
+you of all your abominations, 44:7 In that ye have brought into my
+sanctuary strangers, uncircumcised in heart, and uncircumcised in
+flesh, to be in my sanctuary, to pollute it, even my house, when ye
+offer my bread, the fat and the blood, and they have broken my
+covenant because of all your abominations.
+
+44:8 And ye have not kept the charge of mine holy things: but ye have
+set keepers of my charge in my sanctuary for yourselves.
+
+44:9 Thus saith the Lord GOD; No stranger, uncircumcised in heart, nor
+uncircumcised in flesh, shall enter into my sanctuary, of any stranger
+that is among the children of Israel.
+
+44:10 And the Levites that are gone away far from me, when Israel went
+astray, which went astray away from me after their idols; they shall
+even bear their iniquity.
+
+44:11 Yet they shall be ministers in my sanctuary, having charge at
+the gates of the house, and ministering to the house: they shall slay
+the burnt offering and the sacrifice for the people, and they shall
+stand before them to minister unto them.
+
+44:12 Because they ministered unto them before their idols, and caused
+the house of Israel to fall into iniquity; therefore have I lifted up
+mine hand against them, saith the Lord GOD, and they shall bear their
+iniquity.
+
+44:13 And they shall not come near unto me, to do the office of a
+priest unto me, nor to come near to any of my holy things, in the most
+holy place: but they shall bear their shame, and their abominations
+which they have committed.
+
+44:14 But I will make them keepers of the charge of the house, for all
+the service thereof, and for all that shall be done therein.
+
+44:15 But the priests the Levites, the sons of Zadok, that kept the
+charge of my sanctuary when the children of Israel went astray from
+me, they shall come near to me to minister unto me, and they shall
+stand before me to offer unto me the fat and the blood, saith the Lord
+GOD: 44:16 They shall enter into my sanctuary, and they shall come
+near to my table, to minister unto me, and they shall keep my charge.
+
+44:17 And it shall come to pass, that when they enter in at the gates
+of the inner court, they shall be clothed with linen garments; and no
+wool shall come upon them, whiles they minister in the gates of the
+inner court, and within.
+
+44:18 They shall have linen bonnets upon their heads, and shall have
+linen breeches upon their loins; they shall not gird themselves with
+any thing that causeth sweat.
+
+44:19 And when they go forth into the utter court, even into the utter
+court to the people, they shall put off their garments wherein they
+ministered, and lay them in the holy chambers, and they shall put on
+other garments; and they shall not sanctify the people with their
+garments.
+
+44:20 Neither shall they shave their heads, nor suffer their locks to
+grow long; they shall only poll their heads.
+
+44:21 Neither shall any priest drink wine, when they enter into the
+inner court.
+
+44:22 Neither shall they take for their wives a widow, nor her that is
+put away: but they shall take maidens of the seed of the house of
+Israel, or a widow that had a priest before.
+
+44:23 And they shall teach my people the difference between the holy
+and profane, and cause them to discern between the unclean and the
+clean.
+
+44:24 And in controversy they shall stand in judgment; and they shall
+judge it according to my judgments: and they shall keep my laws and my
+statutes in all mine assemblies; and they shall hallow my sabbaths.
+
+44:25 And they shall come at no dead person to defile themselves: but
+for father, or for mother, or for son, or for daughter, for brother,
+or for sister that hath had no husband, they may defile themselves.
+
+44:26 And after he is cleansed, they shall reckon unto him seven days.
+
+44:27 And in the day that he goeth into the sanctuary, unto the inner
+court, to minister in the sanctuary, he shall offer his sin offering,
+saith the Lord GOD.
+
+44:28 And it shall be unto them for an inheritance: I am their
+inheritance: and ye shall give them no possession in Israel: I am
+their possession.
+
+44:29 They shall eat the meat offering, and the sin offering, and the
+trespass offering: and every dedicated thing in Israel shall be
+theirs.
+
+44:30 And the first of all the firstfruits of all things, and every
+oblation of all, of every sort of your oblations, shall be the
+priest's: ye shall also give unto the priest the first of your dough,
+that he may cause the blessing to rest in thine house.
+
+44:31 The priests shall not eat of any thing that is dead of itself,
+or torn, whether it be fowl or beast.
+
+45:1 Moreover, when ye shall divide by lot the land for inheritance,
+ye shall offer an oblation unto the LORD, an holy portion of the land:
+the length shall be the length of five and twenty thousand reeds, and
+the breadth shall be ten thousand. This shall be holy in all the
+borders thereof round about.
+
+45:2 Of this there shall be for the sanctuary five hundred in length,
+with five hundred in breadth, square round about; and fifty cubits
+round about for the suburbs thereof.
+
+45:3 And of this measure shalt thou measure the length of five and
+twenty thousand, and the breadth of ten thousand: and in it shall be
+the sanctuary and the most holy place.
+
+45:4 The holy portion of the land shall be for the priests the
+ministers of the sanctuary, which shall come near to minister unto the
+LORD: and it shall be a place for their houses, and an holy place for
+the sanctuary.
+
+45:5 And the five and twenty thousand of length, and the ten thousand
+of breadth shall also the Levites, the ministers of the house, have
+for themselves, for a possession for twenty chambers.
+
+45:6 And ye shall appoint the possession of the city five thousand
+broad, and five and twenty thousand long, over against the oblation of
+the holy portion: it shall be for the whole house of Israel.
+
+45:7 And a portion shall be for the prince on the one side and on the
+other side of the oblation of the holy portion, and of the possession
+of the city, before the oblation of the holy portion, and before the
+possession of the city, from the west side westward, and from the east
+side eastward: and the length shall be over against one of the
+portions, from the west border unto the east border.
+
+45:8 In the land shall be his possession in Israel: and my princes
+shall no more oppress my people; and the rest of the land shall they
+give to the house of Israel according to their tribes.
+
+45:9 Thus saith the Lord GOD; Let it suffice you, O princes of Israel:
+remove violence and spoil, and execute judgment and justice, take away
+your exactions from my people, saith the Lord GOD.
+
+45:10 Ye shall have just balances, and a just ephah, and a just bath.
+
+45:11 The ephah and the bath shall be of one measure, that the bath
+may contain the tenth part of an homer, and the ephah the tenth part
+of an homer: the measure thereof shall be after the homer.
+
+45:12 And the shekel shall be twenty gerahs: twenty shekels, five and
+twenty shekels, fifteen shekels, shall be your maneh.
+
+45:13 This is the oblation that ye shall offer; the sixth part of an
+ephah of an homer of wheat, and ye shall give the sixth part of an
+ephah of an homer of barley: 45:14 Concerning the ordinance of oil,
+the bath of oil, ye shall offer the tenth part of a bath out of the
+cor, which is an homer of ten baths; for ten baths are an homer: 45:15
+And one lamb out of the flock, out of two hundred, out of the fat
+pastures of Israel; for a meat offering, and for a burnt offering, and
+for peace offerings, to make reconciliation for them, saith the Lord
+GOD.
+
+45:16 All the people of the land shall give this oblation for the
+prince in Israel.
+
+45:17 And it shall be the prince's part to give burnt offerings, and
+meat offerings, and drink offerings, in the feasts, and in the new
+moons, and in the sabbaths, in all solemnities of the house of Israel:
+he shall prepare the sin offering, and the meat offering, and the
+burnt offering, and the peace offerings, to make reconciliation for
+the house of Israel.
+
+45:18 Thus saith the Lord GOD; In the first month, in the first day of
+the month, thou shalt take a young bullock without blemish, and
+cleanse the sanctuary: 45:19 And the priest shall take of the blood of
+the sin offering, and put it upon the posts of the house, and upon the
+four corners of the settle of the altar, and upon the posts of the
+gate of the inner court.
+
+45:20 And so thou shalt do the seventh day of the month for every one
+that erreth, and for him that is simple: so shall ye reconcile the
+house.
+
+45:21 In the first month, in the fourteenth day of the month, ye shall
+have the passover, a feast of seven days; unleavened bread shall be
+eaten.
+
+45:22 And upon that day shall the prince prepare for himself and for
+all the people of the land a bullock for a sin offering.
+
+45:23 And seven days of the feast he shall prepare a burnt offering to
+the LORD, seven bullocks and seven rams without blemish daily the
+seven days; and a kid of the goats daily for a sin offering.
+
+45:24 And he shall prepare a meat offering of an ephah for a bullock,
+and an ephah for a ram, and an hin of oil for an ephah.
+
+45:25 In the seventh month, in the fifteenth day of the month, shall
+he do the like in the feast of the seven days, according to the sin
+offering, according to the burnt offering, and according to the meat
+offering, and according to the oil.
+
+46:1 Thus saith the Lord GOD; The gate of the inner court that looketh
+toward the east shall be shut the six working days; but on the sabbath
+it shall be opened, and in the day of the new moon it shall be opened.
+
+46:2 And the prince shall enter by the way of the porch of that gate
+without, and shall stand by the post of the gate, and the priests
+shall prepare his burnt offering and his peace offerings, and he shall
+worship at the threshold of the gate: then he shall go forth; but the
+gate shall not be shut until the evening.
+
+46:3 Likewise the people of the land shall worship at the door of this
+gate before the LORD in the sabbaths and in the new moons.
+
+46:4 And the burnt offering that the prince shall offer unto the LORD
+in the sabbath day shall be six lambs without blemish, and a ram
+without blemish.
+
+46:5 And the meat offering shall be an ephah for a ram, and the meat
+offering for the lambs as he shall be able to give, and an hin of oil
+to an ephah.
+
+46:6 And in the day of the new moon it shall be a young bullock
+without blemish, and six lambs, and a ram: they shall be without
+blemish.
+
+46:7 And he shall prepare a meat offering, an ephah for a bullock, and
+an ephah for a ram, and for the lambs according as his hand shall
+attain unto, and an hin of oil to an ephah.
+
+46:8 And when the prince shall enter, he shall go in by the way of the
+porch of that gate, and he shall go forth by the way thereof.
+
+46:9 But when the people of the land shall come before the LORD in the
+solemn feasts, he that entereth in by the way of the north gate to
+worship shall go out by the way of the south gate; and he that
+entereth by the way of the south gate shall go forth by the way of the
+north gate: he shall not return by the way of the gate whereby he came
+in, but shall go forth over against it.
+
+46:10 And the prince in the midst of them, when they go in, shall go
+in; and when they go forth, shall go forth.
+
+46:11 And in the feasts and in the solemnities the meat offering shall
+be an ephah to a bullock, and an ephah to a ram, and to the lambs as
+he is able to give, and an hin of oil to an ephah.
+
+46:12 Now when the prince shall prepare a voluntary burnt offering or
+peace offerings voluntarily unto the LORD, one shall then open him the
+gate that looketh toward the east, and he shall prepare his burnt
+offering and his peace offerings, as he did on the sabbath day: then
+he shall go forth; and after his going forth one shall shut the gate.
+
+46:13 Thou shalt daily prepare a burnt offering unto the LORD of a
+lamb of the first year without blemish: thou shalt prepare it every
+morning.
+
+46:14 And thou shalt prepare a meat offering for it every morning, the
+sixth part of an ephah, and the third part of an hin of oil, to temper
+with the fine flour; a meat offering continually by a perpetual
+ordinance unto the LORD.
+
+46:15 Thus shall they prepare the lamb, and the meat offering, and the
+oil, every morning for a continual burnt offering.
+
+46:16 Thus saith the Lord GOD; If the prince give a gift unto any of
+his sons, the inheritance thereof shall be his sons'; it shall be
+their possession by inheritance.
+
+46:17 But if he give a gift of his inheritance to one of his servants,
+then it shall be his to the year of liberty; after it shall return to
+the prince: but his inheritance shall be his sons' for them.
+
+46:18 Moreover the prince shall not take of the people's inheritance
+by oppression, to thrust them out of their possession; but he shall
+give his sons inheritance out of his own possession: that my people be
+not scattered every man from his possession.
+
+46:19 After he brought me through the entry, which was at the side of
+the gate, into the holy chambers of the priests, which looked toward
+the north: and, behold, there was a place on the two sides westward.
+
+46:20 Then said he unto me, This is the place where the priests shall
+boil the trespass offering and the sin offering, where they shall bake
+the meat offering; that they bear them not out into the utter court,
+to sanctify the people.
+
+46:21 Then he brought me forth into the utter court, and caused me to
+pass by the four corners of the court; and, behold, in every corner of
+the court there was a court.
+
+46:22 In the four corners of the court there were courts joined of
+forty cubits long and thirty broad: these four corners were of one
+measure.
+
+46:23 And there was a row of building round about in them, round about
+them four, and it was made with boiling places under the rows round
+about.
+
+46:24 Then said he unto me, These are the places of them that boil,
+where the ministers of the house shall boil the sacrifice of the
+people.
+
+47:1 Afterward he brought me again unto the door of the house; and,
+behold, waters issued out from under the threshold of the house
+eastward: for the forefront of the house stood toward the east, and
+the waters came down from under from the right side of the house, at
+the south side of the altar.
+
+47:2 Then brought he me out of the way of the gate northward, and led
+me about the way without unto the utter gate by the way that looketh
+eastward; and, behold, there ran out waters on the right side.
+
+47:3 And when the man that had the line in his hand went forth
+eastward, he measured a thousand cubits, and he brought me through the
+waters; the waters were to the ankles.
+
+47:4 Again he measured a thousand, and brought me through the waters;
+the waters were to the knees. Again he measured a thousand, and
+brought me through; the waters were to the loins.
+
+47:5 Afterward he measured a thousand; and it was a river that I could
+not pass over: for the waters were risen, waters to swim in, a river
+that could not be passed over.
+
+47:6 And he said unto me, Son of man, hast thou seen this? Then he
+brought me, and caused me to return to the brink of the river.
+
+47:7 Now when I had returned, behold, at the bank of the river were
+very many trees on the one side and on the other.
+
+47:8 Then said he unto me, These waters issue out toward the east
+country, and go down into the desert, and go into the sea: which being
+brought forth into the sea, the waters shall be healed.
+
+47:9 And it shall come to pass, that every thing that liveth, which
+moveth, whithersoever the rivers shall come, shall live: and there
+shall be a very great multitude of fish, because these waters shall
+come thither: for they shall be healed; and every thing shall live
+whither the river cometh.
+
+47:10 And it shall come to pass, that the fishers shall stand upon it
+from Engedi even unto Eneglaim; they shall be a place to spread forth
+nets; their fish shall be according to their kinds, as the fish of the
+great sea, exceeding many.
+
+47:11 But the miry places thereof and the marishes thereof shall not
+be healed; they shall be given to salt.
+
+47:12 And by the river upon the bank thereof, on this side and on that
+side, shall grow all trees for meat, whose leaf shall not fade,
+neither shall the fruit thereof be consumed: it shall bring forth new
+fruit according to his months, because their waters they issued out of
+the sanctuary: and the fruit thereof shall be for meat, and the leaf
+thereof for medicine.
+
+47:13 Thus saith the Lord GOD; This shall be the border, whereby ye
+shall inherit the land according to the twelve tribes of Israel:
+Joseph shall have two portions.
+
+47:14 And ye shall inherit it, one as well as another: concerning the
+which I lifted up mine hand to give it unto your fathers: and this
+land shall fall unto you for inheritance.
+
+47:15 And this shall be the border of the land toward the north side,
+from the great sea, the way of Hethlon, as men go to Zedad; 47:16
+Hamath, Berothah, Sibraim, which is between the border of Damascus and
+the border of Hamath; Hazarhatticon, which is by the coast of Hauran.
+
+47:17 And the border from the sea shall be Hazarenan, the border of
+Damascus, and the north northward, and the border of Hamath. And this
+is the north side.
+
+47:18 And the east side ye shall measure from Hauran, and from
+Damascus, and from Gilead, and from the land of Israel by Jordan, from
+the border unto the east sea. And this is the east side.
+
+47:19 And the south side southward, from Tamar even to the waters of
+strife in Kadesh, the river to the great sea. And this is the south
+side southward.
+
+47:20 The west side also shall be the great sea from the border, till
+a man come over against Hamath. This is the west side.
+
+47:21 So shall ye divide this land unto you according to the tribes of
+Israel.
+
+47:22 And it shall come to pass, that ye shall divide it by lot for an
+inheritance unto you, and to the strangers that sojourn among you,
+which shall beget children among you: and they shall be unto you as
+born in the country among the children of Israel; they shall have
+inheritance with you among the tribes of Israel.
+
+47:23 And it shall come to pass, that in what tribe the stranger
+sojourneth, there shall ye give him his inheritance, saith the Lord
+GOD.
+
+48:1 Now these are the names of the tribes. From the north end to the
+coast of the way of Hethlon, as one goeth to Hamath, Hazarenan, the
+border of Damascus northward, to the coast of Hamath; for these are
+his sides east and west; a portion for Dan.
+
+48:2 And by the border of Dan, from the east side unto the west side,
+a portion for Asher.
+
+48:3 And by the border of Asher, from the east side even unto the west
+side, a portion for Naphtali.
+
+48:4 And by the border of Naphtali, from the east side unto the west
+side, a portion for Manasseh.
+
+48:5 And by the border of Manasseh, from the east side unto the west
+side, a portion for Ephraim.
+
+48:6 And by the border of Ephraim, from the east side even unto the
+west side, a portion for Reuben.
+
+48:7 And by the border of Reuben, from the east side unto the west
+side, a portion for Judah.
+
+48:8 And by the border of Judah, from the east side unto the west
+side, shall be the offering which ye shall offer of five and twenty
+thousand reeds in breadth, and in length as one of the other parts,
+from the east side unto the west side: and the sanctuary shall be in
+the midst of it.
+
+48:9 The oblation that ye shall offer unto the LORD shall be of five
+and twenty thousand in length, and of ten thousand in breadth.
+
+48:10 And for them, even for the priests, shall be this holy oblation;
+toward the north five and twenty thousand in length, and toward the
+west ten thousand in breadth, and toward the east ten thousand in
+breadth, and toward the south five and twenty thousand in length: and
+the sanctuary of the LORD shall be in the midst thereof.
+
+48:11 It shall be for the priests that are sanctified of the sons of
+Zadok; which have kept my charge, which went not astray when the
+children of Israel went astray, as the Levites went astray.
+
+48:12 And this oblation of the land that is offered shall be unto them
+a thing most holy by the border of the Levites.
+
+48:13 And over against the border of the priests the Levites shall
+have five and twenty thousand in length, and ten thousand in breadth:
+all the length shall be five and twenty thousand, and the breadth ten
+thousand.
+
+48:14 And they shall not sell of it, neither exchange, nor alienate
+the firstfruits of the land: for it is holy unto the LORD.
+
+48:15 And the five thousand, that are left in the breadth over against
+the five and twenty thousand, shall be a profane place for the city,
+for dwelling, and for suburbs: and the city shall be in the midst
+thereof.
+
+48:16 And these shall be the measures thereof; the north side four
+thousand and five hundred, and the south side four thousand and five
+hundred, and on the east side four thousand and five hundred, and the
+west side four thousand and five hundred.
+
+48:17 And the suburbs of the city shall be toward the north two
+hundred and fifty, and toward the south two hundred and fifty, and
+toward the east two hundred and fifty, and toward the west two hundred
+and fifty.
+
+48:18 And the residue in length over against the oblation of the holy
+portion shall be ten thousand eastward, and ten thousand westward: and
+it shall be over against the oblation of the holy portion; and the
+increase thereof shall be for food unto them that serve the city.
+
+48:19 And they that serve the city shall serve it out of all the
+tribes of Israel.
+
+48:20 All the oblation shall be five and twenty thousand by five and
+twenty thousand: ye shall offer the holy oblation foursquare, with the
+possession of the city.
+
+48:21 And the residue shall be for the prince, on the one side and on
+the other of the holy oblation, and of the possession of the city,
+over against the five and twenty thousand of the oblation toward the
+east border, and westward over against the five and twenty thousand
+toward the west border, over against the portions for the prince: and
+it shall be the holy oblation; and the sanctuary of the house shall be
+in the midst thereof.
+
+48:22 Moreover from the possession of the Levites, and from the
+possession of the city, being in the midst of that which is the
+prince's, between the border of Judah and the border of Benjamin,
+shall be for the prince.
+
+48:23 As for the rest of the tribes, from the east side unto the west
+side, Benjamin shall have a portion.
+
+48:24 And by the border of Benjamin, from the east side unto the west
+side, Simeon shall have a portion.
+
+48:25 And by the border of Simeon, from the east side unto the west
+side, Issachar a portion.
+
+48:26 And by the border of Issachar, from the east side unto the west
+side, Zebulun a portion.
+
+48:27 And by the border of Zebulun, from the east side unto the west
+side, Gad a portion.
+
+48:28 And by the border of Gad, at the south side southward, the
+border shall be even from Tamar unto the waters of strife in Kadesh,
+and to the river toward the great sea.
+
+48:29 This is the land which ye shall divide by lot unto the tribes of
+Israel for inheritance, and these are their portions, saith the Lord
+GOD.
+
+48:30 And these are the goings out of the city on the north side, four
+thousand and five hundred measures.
+
+48:31 And the gates of the city shall be after the names of the tribes
+of Israel: three gates northward; one gate of Reuben, one gate of
+Judah, one gate of Levi.
+
+48:32 And at the east side four thousand and five hundred: and three
+gates; and one gate of Joseph, one gate of Benjamin, one gate of Dan.
+
+48:33 And at the south side four thousand and five hundred measures:
+and three gates; one gate of Simeon, one gate of Issachar, one gate of
+Zebulun.
+
+48:34 At the west side four thousand and five hundred, with their
+three gates; one gate of Gad, one gate of Asher, one gate of Naphtali.
+
+48:35 It was round about eighteen thousand measures: and the name of
+the city from that day shall be, The LORD is there.
+
+
+
+
+The Book of Daniel
+
+
+1:1 In the third year of the reign of Jehoiakim king of Judah came
+Nebuchadnezzar king of Babylon unto Jerusalem, and besieged it.
+
+1:2 And the Lord gave Jehoiakim king of Judah into his hand, with part
+of the vessels of the house of God: which he carried into the land of
+Shinar to the house of his god; and he brought the vessels into the
+treasure house of his god.
+
+1:3 And the king spake unto Ashpenaz the master of his eunuchs, that
+he should bring certain of the children of Israel, and of the king's
+seed, and of the princes; 1:4 Children in whom was no blemish, but
+well favoured, and skilful in all wisdom, and cunning in knowledge,
+and understanding science, and such as had ability in them to stand in
+the king's palace, and whom they might teach the learning and the
+tongue of the Chaldeans.
+
+1:5 And the king appointed them a daily provision of the king's meat,
+and of the wine which he drank: so nourishing them three years, that
+at the end thereof they might stand before the king.
+
+1:6 Now among these were of the children of Judah, Daniel, Hananiah,
+Mishael, and Azariah: 1:7 Unto whom the prince of the eunuchs gave
+names: for he gave unto Daniel the name of Belteshazzar; and to
+Hananiah, of Shadrach; and to Mishael, of Meshach; and to Azariah, of
+Abednego.
+
+1:8 But Daniel purposed in his heart that he would not defile himself
+with the portion of the king's meat, nor with the wine which he drank:
+therefore he requested of the prince of the eunuchs that he might not
+defile himself.
+
+1:9 Now God had brought Daniel into favour and tender love with the
+prince of the eunuchs.
+
+1:10 And the prince of the eunuchs said unto Daniel, I fear my lord
+the king, who hath appointed your meat and your drink: for why should
+he see your faces worse liking than the children which are of your
+sort? then shall ye make me endanger my head to the king.
+
+1:11 Then said Daniel to Melzar, whom the prince of the eunuchs had
+set over Daniel, Hananiah, Mishael, and Azariah, 1:12 Prove thy
+servants, I beseech thee, ten days; and let them give us pulse to eat,
+and water to drink.
+
+1:13 Then let our countenances be looked upon before thee, and the
+countenance of the children that eat of the portion of the king's
+meat: and as thou seest, deal with thy servants.
+
+1:14 So he consented to them in this matter, and proved them ten days.
+
+1:15 And at the end of ten days their countenances appeared fairer and
+fatter in flesh than all the children which did eat the portion of the
+king's meat.
+
+1:16 Thus Melzar took away the portion of their meat, and the wine
+that they should drink; and gave them pulse.
+
+1:17 As for these four children, God gave them knowledge and skill in
+all learning and wisdom: and Daniel had understanding in all visions
+and dreams.
+
+1:18 Now at the end of the days that the king had said he should bring
+them in, then the prince of the eunuchs brought them in before
+Nebuchadnezzar.
+
+1:19 And the king communed with them; and among them all was found
+none like Daniel, Hananiah, Mishael, and Azariah: therefore stood they
+before the king.
+
+1:20 And in all matters of wisdom and understanding, that the king
+enquired of them, he found them ten times better than all the
+magicians and astrologers that were in all his realm.
+
+1:21 And Daniel continued even unto the first year of king Cyrus.
+
+2:1 And in the second year of the reign of Nebuchadnezzar
+Nebuchadnezzar dreamed dreams, wherewith his spirit was troubled, and
+his sleep brake from him.
+
+2:2 Then the king commanded to call the magicians, and the
+astrologers, and the sorcerers, and the Chaldeans, for to shew the
+king his dreams. So they came and stood before the king.
+
+2:3 And the king said unto them, I have dreamed a dream, and my spirit
+was troubled to know the dream.
+
+2:4 Then spake the Chaldeans to the king in Syriack, O king, live for
+ever: tell thy servants the dream, and we will shew the
+interpretation.
+
+2:5 The king answered and said to the Chaldeans, The thing is gone
+from me: if ye will not make known unto me the dream, with the
+interpretation thereof, ye shall be cut in pieces, and your houses
+shall be made a dunghill.
+
+2:6 But if ye shew the dream, and the interpretation thereof, ye shall
+receive of me gifts and rewards and great honour: therefore shew me
+the dream, and the interpretation thereof.
+
+2:7 They answered again and said, Let the king tell his servants the
+dream, and we will shew the interpretation of it.
+
+2:8 The king answered and said, I know of certainty that ye would gain
+the time, because ye see the thing is gone from me.
+
+2:9 But if ye will not make known unto me the dream, there is but one
+decree for you: for ye have prepared lying and corrupt words to speak
+before me, till the time be changed: therefore tell me the dream, and
+I shall know that ye can shew me the interpretation thereof.
+
+2:10 The Chaldeans answered before the king, and said, There is not a
+man upon the earth that can shew the king's matter: therefore there is
+no king, lord, nor ruler, that asked such things at any magician, or
+astrologer, or Chaldean.
+
+2:11 And it is a rare thing that the king requireth, and there is none
+other that can shew it before the king, except the gods, whose
+dwelling is not with flesh.
+
+2:12 For this cause the king was angry and very furious, and commanded
+to destroy all the wise men of Babylon.
+
+2:13 And the decree went forth that the wise men should be slain; and
+they sought Daniel and his fellows to be slain.
+
+2:14 Then Daniel answered with counsel and wisdom to Arioch the
+captain of the king's guard, which was gone forth to slay the wise men
+of Babylon: 2:15 He answered and said to Arioch the king's captain,
+Why is the decree so hasty from the king? Then Arioch made the thing
+known to Daniel.
+
+2:16 Then Daniel went in, and desired of the king that he would give
+him time, and that he would shew the king the interpretation.
+
+2:17 Then Daniel went to his house, and made the thing known to
+Hananiah, Mishael, and Azariah, his companions: 2:18 That they would
+desire mercies of the God of heaven concerning this secret; that
+Daniel and his fellows should not perish with the rest of the wise men
+of Babylon.
+
+2:19 Then was the secret revealed unto Daniel in a night vision. Then
+Daniel blessed the God of heaven.
+
+2:20 Daniel answered and said, Blessed be the name of God for ever and
+ever: for wisdom and might are his: 2:21 And he changeth the times and
+the seasons: he removeth kings, and setteth up kings: he giveth wisdom
+unto the wise, and knowledge to them that know understanding: 2:22 He
+revealeth the deep and secret things: he knoweth what is in the
+darkness, and the light dwelleth with him.
+
+2:23 I thank thee, and praise thee, O thou God of my fathers, who hast
+given me wisdom and might, and hast made known unto me now what we
+desired of thee: for thou hast now made known unto us the king's
+matter.
+
+2:24 Therefore Daniel went in unto Arioch, whom the king had ordained
+to destroy the wise men of Babylon: he went and said thus unto him;
+Destroy not the wise men of Babylon: bring me in before the king, and
+I will shew unto the king the interpretation.
+
+2:25 Then Arioch brought in Daniel before the king in haste, and said
+thus unto him, I have found a man of the captives of Judah, that will
+make known unto the king the interpretation.
+
+2:26 The king answered and said to Daniel, whose name was
+Belteshazzar, Art thou able to make known unto me the dream which I
+have seen, and the interpretation thereof? 2:27 Daniel answered in
+the presence of the king, and said, The secret which the king hath
+demanded cannot the wise men, the astrologers, the magicians, the
+soothsayers, shew unto the king; 2:28 But there is a God in heaven
+that revealeth secrets, and maketh known to the king Nebuchadnezzar
+what shall be in the latter days. Thy dream, and the visions of thy
+head upon thy bed, are these; 2:29 As for thee, O king, thy thoughts
+came into thy mind upon thy bed, what should come to pass hereafter:
+and he that revealeth secrets maketh known to thee what shall come to
+pass.
+
+2:30 But as for me, this secret is not revealed to me for any wisdom
+that I have more than any living, but for their sakes that shall make
+known the interpretation to the king, and that thou mightest know the
+thoughts of thy heart.
+
+2:31 Thou, O king, sawest, and behold a great image. This great image,
+whose brightness was excellent, stood before thee; and the form
+thereof was terrible.
+
+2:32 This image's head was of fine gold, his breast and his arms of
+silver, his belly and his thighs of brass, 2:33 His legs of iron, his
+feet part of iron and part of clay.
+
+2:34 Thou sawest till that a stone was cut out without hands, which
+smote the image upon his feet that were of iron and clay, and brake
+them to pieces.
+
+2:35 Then was the iron, the clay, the brass, the silver, and the gold,
+broken to pieces together, and became like the chaff of the summer
+threshingfloors; and the wind carried them away, that no place was
+found for them: and the stone that smote the image became a great
+mountain, and filled the whole earth.
+
+2:36 This is the dream; and we will tell the interpretation thereof
+before the king.
+
+2:37 Thou, O king, art a king of kings: for the God of heaven hath
+given thee a kingdom, power, and strength, and glory.
+
+2:38 And wheresoever the children of men dwell, the beasts of the
+field and the fowls of the heaven hath he given into thine hand, and
+hath made thee ruler over them all. Thou art this head of gold.
+
+2:39 And after thee shall arise another kingdom inferior to thee, and
+another third kingdom of brass, which shall bear rule over all the
+earth.
+
+2:40 And the fourth kingdom shall be strong as iron: forasmuch as iron
+breaketh in pieces and subdueth all things: and as iron that breaketh
+all these, shall it break in pieces and bruise.
+
+2:41 And whereas thou sawest the feet and toes, part of potters' clay,
+and part of iron, the kingdom shall be divided; but there shall be in
+it of the strength of the iron, forasmuch as thou sawest the iron
+mixed with miry clay.
+
+2:42 And as the toes of the feet were part of iron, and part of clay,
+so the kingdom shall be partly strong, and partly broken.
+
+2:43 And whereas thou sawest iron mixed with miry clay, they shall
+mingle themselves with the seed of men: but they shall not cleave one
+to another, even as iron is not mixed with clay.
+
+2:44 And in the days of these kings shall the God of heaven set up a
+kingdom, which shall never be destroyed: and the kingdom shall not be
+left to other people, but it shall break in pieces and consume all
+these kingdoms, and it shall stand for ever.
+
+2:45 Forasmuch as thou sawest that the stone was cut out of the
+mountain without hands, and that it brake in pieces the iron, the
+brass, the clay, the silver, and the gold; the great God hath made
+known to the king what shall come to pass hereafter: and the dream is
+certain, and the interpretation thereof sure.
+
+2:46 Then the king Nebuchadnezzar fell upon his face, and worshipped
+Daniel, and commanded that they should offer an oblation and sweet
+odours unto him.
+
+2:47 The king answered unto Daniel, and said, Of a truth it is, that
+your God is a God of gods, and a Lord of kings, and a revealer of
+secrets, seeing thou couldest reveal this secret.
+
+2:48 Then the king made Daniel a great man, and gave him many great
+gifts, and made him ruler over the whole province of Babylon, and
+chief of the governors over all the wise men of Babylon.
+
+2:49 Then Daniel requested of the king, and he set Shadrach, Meshach,
+and Abednego, over the affairs of the province of Babylon: but Daniel
+sat in the gate of the king.
+
+3:1 Nebuchadnezzar the king made an image of gold, whose height was
+threescore cubits, and the breadth thereof six cubits: he set it up in
+the plain of Dura, in the province of Babylon.
+
+3:2 Then Nebuchadnezzar the king sent to gather together the princes,
+the governors, and the captains, the judges, the treasurers, the
+counsellors, the sheriffs, and all the rulers of the provinces, to
+come to the dedication of the image which Nebuchadnezzar the king had
+set up.
+
+3:3 Then the princes, the governors, and captains, the judges, the
+treasurers, the counsellors, the sheriffs, and all the rulers of the
+provinces, were gathered together unto the dedication of the image
+that Nebuchadnezzar the king had set up; and they stood before the
+image that Nebuchadnezzar had set up.
+
+3:4 Then an herald cried aloud, To you it is commanded, O people,
+nations, and languages, 3:5 That at what time ye hear the sound of the
+cornet, flute, harp, sackbut, psaltery, dulcimer, and all kinds of
+musick, ye fall down and worship the golden image that Nebuchadnezzar
+the king hath set up: 3:6 And whoso falleth not down and worshippeth
+shall the same hour be cast into the midst of a burning fiery furnace.
+
+3:7 Therefore at that time, when all the people heard the sound of the
+cornet, flute, harp, sackbut, psaltery, and all kinds of musick, all
+the people, the nations, and the languages, fell down and worshipped
+the golden image that Nebuchadnezzar the king had set up.
+
+3:8 Wherefore at that time certain Chaldeans came near, and accused
+the Jews.
+
+3:9 They spake and said to the king Nebuchadnezzar, O king, live for
+ever.
+
+3:10 Thou, O king, hast made a decree, that every man that shall hear
+the sound of the cornet, flute, harp, sackbut, psaltery, and dulcimer,
+and all kinds of musick, shall fall down and worship the golden image:
+3:11 And whoso falleth not down and worshippeth, that he should be
+cast into the midst of a burning fiery furnace.
+
+3:12 There are certain Jews whom thou hast set over the affairs of the
+province of Babylon, Shadrach, Meshach, and Abednego; these men, O
+king, have not regarded thee: they serve not thy gods, nor worship the
+golden image which thou hast set up.
+
+3:13 Then Nebuchadnezzar in his rage and fury commanded to bring
+Shadrach, Meshach, and Abednego. Then they brought these men before
+the king.
+
+3:14 Nebuchadnezzar spake and said unto them, Is it true, O Shadrach,
+Meshach, and Abednego, do not ye serve my gods, nor worship the golden
+image which I have set up? 3:15 Now if ye be ready that at what time
+ye hear the sound of the cornet, flute, harp, sackbut, psaltery, and
+dulcimer, and all kinds of musick, ye fall down and worship the image
+which I have made; well: but if ye worship not, ye shall be cast the
+same hour into the midst of a burning fiery furnace; and who is that
+God that shall deliver you out of my hands? 3:16 Shadrach, Meshach,
+and Abednego, answered and said to the king, O Nebuchadnezzar, we are
+not careful to answer thee in this matter.
+
+3:17 If it be so, our God whom we serve is able to deliver us from the
+burning fiery furnace, and he will deliver us out of thine hand, O
+king.
+
+3:18 But if not, be it known unto thee, O king, that we will not serve
+thy gods, nor worship the golden image which thou hast set up.
+
+3:19 Then was Nebuchadnezzar full of fury, and the form of his visage
+was changed against Shadrach, Meshach, and Abednego: therefore he
+spake, and commanded that they should heat the furnace one seven times
+more than it was wont to be heated.
+
+3:20 And he commanded the most mighty men that were in his army to
+bind Shadrach, Meshach, and Abednego, and to cast them into the
+burning fiery furnace.
+
+3:21 Then these men were bound in their coats, their hosen, and their
+hats, and their other garments, and were cast into the midst of the
+burning fiery furnace.
+
+3:22 Therefore because the king's commandment was urgent, and the
+furnace exceeding hot, the flames of the fire slew those men that took
+up Shadrach, Meshach, and Abednego.
+
+3:23 And these three men, Shadrach, Meshach, and Abednego, fell down
+bound into the midst of the burning fiery furnace.
+
+3:24 Then Nebuchadnezzar the king was astonied, and rose up in haste,
+and spake, and said unto his counsellors, Did not we cast three men
+bound into the midst of the fire? They answered and said unto the
+king, True, O king.
+
+3:25 He answered and said, Lo, I see four men loose, walking in the
+midst of the fire, and they have no hurt; and the form of the fourth
+is like the Son of God.
+
+3:26 Then Nebuchadnezzar came near to the mouth of the burning fiery
+furnace, and spake, and said, Shadrach, Meshach, and Abednego, ye
+servants of the most high God, come forth, and come hither. Then
+Shadrach, Meshach, and Abednego, came forth of the midst of the fire.
+
+3:27 And the princes, governors, and captains, and the king's
+counsellors, being gathered together, saw these men, upon whose bodies
+the fire had no power, nor was an hair of their head singed, neither
+were their coats changed, nor the smell of fire had passed on them.
+
+3:28 Then Nebuchadnezzar spake, and said, Blessed be the God of
+Shadrach, Meshach, and Abednego, who hath sent his angel, and
+delivered his servants that trusted in him, and have changed the
+king's word, and yielded their bodies, that they might not serve nor
+worship any god, except their own God.
+
+3:29 Therefore I make a decree, That every people, nation, and
+language, which speak any thing amiss against the God of Shadrach,
+Meshach, and Abednego, shall be cut in pieces, and their houses shall
+be made a dunghill: because there is no other God that can deliver
+after this sort.
+
+3:30 Then the king promoted Shadrach, Meshach, and Abednego, in the
+province of Babylon.
+
+4:1 Nebuchadnezzar the king, unto all people, nations, and languages,
+that dwell in all the earth; Peace be multiplied unto you.
+
+4:2 I thought it good to shew the signs and wonders that the high God
+hath wrought toward me.
+
+4:3 How great are his signs! and how mighty are his wonders! his
+kingdom is an everlasting kingdom, and his dominion is from generation
+to generation.
+
+4:4 I Nebuchadnezzar was at rest in mine house, and flourishing in my
+palace: 4:5 I saw a dream which made me afraid, and the thoughts upon
+my bed and the visions of my head troubled me.
+
+4:6 Therefore made I a decree to bring in all the wise men of Babylon
+before me, that they might make known unto me the interpretation of
+the dream.
+
+4:7 Then came in the magicians, the astrologers, the Chaldeans, and
+the soothsayers: and I told the dream before them; but they did not
+make known unto me the interpretation thereof.
+
+4:8 But at the last Daniel came in before me, whose name was
+Belteshazzar, according to the name of my God, and in whom is the
+spirit of the holy gods: and before him I told the dream, saying, 4:9
+O Belteshazzar, master of the magicians, because I know that the
+spirit of the holy gods is in thee, and no secret troubleth thee, tell
+me the visions of my dream that I have seen, and the interpretation
+thereof.
+
+4:10 Thus were the visions of mine head in my bed; I saw, and behold a
+tree in the midst of the earth, and the height thereof was great.
+
+4:11 The tree grew, and was strong, and the height thereof reached
+unto heaven, and the sight thereof to the end of all the earth: 4:12
+The leaves thereof were fair, and the fruit thereof much, and in it
+was meat for all: the beasts of the field had shadow under it, and the
+fowls of the heaven dwelt in the boughs thereof, and all flesh was fed
+of it.
+
+4:13 I saw in the visions of my head upon my bed, and, behold, a
+watcher and an holy one came down from heaven; 4:14 He cried aloud,
+and said thus, Hew down the tree, and cut off his branches, shake off
+his leaves, and scatter his fruit: let the beasts get away from under
+it, and the fowls from his branches: 4:15 Nevertheless leave the stump
+of his roots in the earth, even with a band of iron and brass, in the
+tender grass of the field; and let it be wet with the dew of heaven,
+and let his portion be with the beasts in the grass of the earth: 4:16
+Let his heart be changed from man's, and let a beast's heart be given
+unto him; and let seven times pass over him.
+
+4:17 This matter is by the decree of the watchers, and the demand by
+the word of the holy ones: to the intent that the living may know that
+the most High ruleth in the kingdom of men, and giveth it to
+whomsoever he will, and setteth up over it the basest of men.
+
+4:18 This dream I king Nebuchadnezzar have seen. Now thou, O
+Belteshazzar, declare the interpretation thereof, forasmuch as all the
+wise men of my kingdom are not able to make known unto me the
+interpretation: but thou art able; for the spirit of the holy gods is
+in thee.
+
+4:19 Then Daniel, whose name was Belteshazzar, was astonied for one
+hour, and his thoughts troubled him. The king spake, and said,
+Belteshazzar, let not the dream, or the interpretation thereof,
+trouble thee. Belteshazzar answered and said, My lord, the dream be to
+them that hate thee, and the interpretation thereof to thine enemies.
+
+4:20 The tree that thou sawest, which grew, and was strong, whose
+height reached unto the heaven, and the sight thereof to all the
+earth; 4:21 Whose leaves were fair, and the fruit thereof much, and in
+it was meat for all; under which the beasts of the field dwelt, and
+upon whose branches the fowls of the heaven had their habitation: 4:22
+It is thou, O king, that art grown and become strong: for thy
+greatness is grown, and reacheth unto heaven, and thy dominion to the
+end of the earth.
+
+4:23 And whereas the king saw a watcher and an holy one coming down
+from heaven, and saying, Hew the tree down, and destroy it; yet leave
+the stump of the roots thereof in the earth, even with a band of iron
+and brass, in the tender grass of the field; and let it be wet with
+the dew of heaven, and let his portion be with the beasts of the
+field, till seven times pass over him; 4:24 This is the
+interpretation, O king, and this is the decree of the most High, which
+is come upon my lord the king: 4:25 That they shall drive thee from
+men, and thy dwelling shall be with the beasts of the field, and they
+shall make thee to eat grass as oxen, and they shall wet thee with the
+dew of heaven, and seven times shall pass over thee, till thou know
+that the most High ruleth in the kingdom of men, and giveth it to
+whomsoever he will.
+
+4:26 And whereas they commanded to leave the stump of the tree roots;
+thy kingdom shall be sure unto thee, after that thou shalt have known
+that the heavens do rule.
+
+4:27 Wherefore, O king, let my counsel be acceptable unto thee, and
+break off thy sins by righteousness, and thine iniquities by shewing
+mercy to the poor; if it may be a lengthening of thy tranquillity.
+
+4:28 All this came upon the king Nebuchadnezzar.
+
+4:29 At the end of twelve months he walked in the palace of the
+kingdom of Babylon.
+
+4:30 The king spake, and said, Is not this great Babylon, that I have
+built for the house of the kingdom by the might of my power, and for
+the honour of my majesty? 4:31 While the word was in the king's
+mouth, there fell a voice from heaven, saying, O king Nebuchadnezzar,
+to thee it is spoken; The kingdom is departed from thee.
+
+4:32 And they shall drive thee from men, and thy dwelling shall be
+with the beasts of the field: they shall make thee to eat grass as
+oxen, and seven times shall pass over thee, until thou know that the
+most High ruleth in the kingdom of men, and giveth it to whomsoever he
+will.
+
+4:33 The same hour was the thing fulfilled upon Nebuchadnezzar: and he
+was driven from men, and did eat grass as oxen, and his body was wet
+with the dew of heaven, till his hairs were grown like eagles'
+feathers, and his nails like birds' claws.
+
+4:34 And at the end of the days I Nebuchadnezzar lifted up mine eyes
+unto heaven, and mine understanding returned unto me, and I blessed
+the most High, and I praised and honoured him that liveth for ever,
+whose dominion is an everlasting dominion, and his kingdom is from
+generation to generation: 4:35 And all the inhabitants of the earth
+are reputed as nothing: and he doeth according to his will in the army
+of heaven, and among the inhabitants of the earth: and none can stay
+his hand, or say unto him, What doest thou? 4:36 At the same time my
+reason returned unto me; and for the glory of my kingdom, mine honour
+and brightness returned unto me; and my counsellors and my lords
+sought unto me; and I was established in my kingdom, and excellent
+majesty was added unto me.
+
+4:37 Now I Nebuchadnezzar praise and extol and honour the King of
+heaven, all whose works are truth, and his ways judgment: and those
+that walk in pride he is able to abase.
+
+5:1 Belshazzar the king made a great feast to a thousand of his lords,
+and drank wine before the thousand.
+
+5:2 Belshazzar, whiles he tasted the wine, commanded to bring the
+golden and silver vessels which his father Nebuchadnezzar had taken
+out of the temple which was in Jerusalem; that the king, and his
+princes, his wives, and his concubines, might drink therein.
+
+5:3 Then they brought the golden vessels that were taken out of the
+temple of the house of God which was at Jerusalem; and the king, and
+his princes, his wives, and his concubines, drank in them.
+
+5:4 They drank wine, and praised the gods of gold, and of silver, of
+brass, of iron, of wood, and of stone.
+
+5:5 In the same hour came forth fingers of a man's hand, and wrote
+over against the candlestick upon the plaister of the wall of the
+king's palace: and the king saw the part of the hand that wrote.
+
+5:6 Then the king's countenance was changed, and his thoughts troubled
+him, so that the joints of his loins were loosed, and his knees smote
+one against another.
+
+5:7 The king cried aloud to bring in the astrologers, the Chaldeans,
+and the soothsayers. And the king spake, and said to the wise men of
+Babylon, Whosoever shall read this writing, and shew me the
+interpretation thereof, shall be clothed with scarlet, and have a
+chain of gold about his neck, and shall be the third ruler in the
+kingdom.
+
+5:8 Then came in all the king's wise men: but they could not read the
+writing, nor make known to the king the interpretation thereof.
+
+5:9 Then was king Belshazzar greatly troubled, and his countenance was
+changed in him, and his lords were astonied.
+
+5:10 Now the queen by reason of the words of the king and his lords
+came into the banquet house: and the queen spake and said, O king,
+live for ever: let not thy thoughts trouble thee, nor let thy
+countenance be changed: 5:11 There is a man in thy kingdom, in whom is
+the spirit of the holy gods; and in the days of thy father light and
+understanding and wisdom, like the wisdom of the gods, was found in
+him; whom the king Nebuchadnezzar thy father, the king, I say, thy
+father, made master of the magicians, astrologers, Chaldeans, and
+soothsayers; 5:12 Forasmuch as an excellent spirit, and knowledge, and
+understanding, interpreting of dreams, and shewing of hard sentences,
+and dissolving of doubts, were found in the same Daniel, whom the king
+named Belteshazzar: now let Daniel be called, and he will shew the
+interpretation.
+
+5:13 Then was Daniel brought in before the king. And the king spake
+and said unto Daniel, Art thou that Daniel, which art of the children
+of the captivity of Judah, whom the king my father brought out of
+Jewry? 5:14 I have even heard of thee, that the spirit of the gods is
+in thee, and that light and understanding and excellent wisdom is
+found in thee.
+
+5:15 And now the wise men, the astrologers, have been brought in
+before me, that they should read this writing, and make known unto me
+the interpretation thereof: but they could not shew the interpretation
+of the thing: 5:16 And I have heard of thee, that thou canst make
+interpretations, and dissolve doubts: now if thou canst read the
+writing, and make known to me the interpretation thereof, thou shalt
+be clothed with scarlet, and have a chain of gold about thy neck, and
+shalt be the third ruler in the kingdom.
+
+5:17 Then Daniel answered and said before the king, Let thy gifts be
+to thyself, and give thy rewards to another; yet I will read the
+writing unto the king, and make known to him the interpretation.
+
+5:18 O thou king, the most high God gave Nebuchadnezzar thy father a
+kingdom, and majesty, and glory, and honour: 5:19 And for the majesty
+that he gave him, all people, nations, and languages, trembled and
+feared before him: whom he would he slew; and whom he would he kept
+alive; and whom he would he set up; and whom he would he put down.
+
+5:20 But when his heart was lifted up, and his mind hardened in pride,
+he was deposed from his kingly throne, and they took his glory from
+him: 5:21 And he was driven from the sons of men; and his heart was
+made like the beasts, and his dwelling was with the wild asses: they
+fed him with grass like oxen, and his body was wet with the dew of
+heaven; till he knew that the most high God ruled in the kingdom of
+men, and that he appointeth over it whomsoever he will.
+
+5:22 And thou his son, O Belshazzar, hast not humbled thine heart,
+though thou knewest all this; 5:23 But hast lifted up thyself against
+the Lord of heaven; and they have brought the vessels of his house
+before thee, and thou, and thy lords, thy wives, and thy concubines,
+have drunk wine in them; and thou hast praised the gods of silver, and
+gold, of brass, iron, wood, and stone, which see not, nor hear, nor
+know: and the God in whose hand thy breath is, and whose are all thy
+ways, hast thou not glorified: 5:24 Then was the part of the hand sent
+from him; and this writing was written.
+
+5:25 And this is the writing that was written, MENE, MENE, TEKEL,
+UPHARSIN.
+
+5:26 This is the interpretation of the thing: MENE; God hath numbered
+thy kingdom, and finished it.
+
+5:27 TEKEL; Thou art weighed in the balances, and art found wanting.
+
+5:28 PERES; Thy kingdom is divided, and given to the Medes and
+Persians.
+
+5:29 Then commanded Belshazzar, and they clothed Daniel with scarlet,
+and put a chain of gold about his neck, and made a proclamation
+concerning him, that he should be the third ruler in the kingdom.
+
+5:30 In that night was Belshazzar the king of the Chaldeans slain.
+
+5:31 And Darius the Median took the kingdom, being about threescore
+and two years old.
+
+6:1 It pleased Darius to set over the kingdom an hundred and twenty
+princes, which should be over the whole kingdom; 6:2 And over these
+three presidents; of whom Daniel was first: that the princes might
+give accounts unto them, and the king should have no damage.
+
+6:3 Then this Daniel was preferred above the presidents and princes,
+because an excellent spirit was in him; and the king thought to set
+him over the whole realm.
+
+6:4 Then the presidents and princes sought to find occasion against
+Daniel concerning the kingdom; but they could find none occasion nor
+fault; forasmuch as he was faithful, neither was there any error or
+fault found in him.
+
+6:5 Then said these men, We shall not find any occasion against this
+Daniel, except we find it against him concerning the law of his God.
+
+6:6 Then these presidents and princes assembled together to the king,
+and said thus unto him, King Darius, live for ever.
+
+6:7 All the presidents of the kingdom, the governors, and the princes,
+the counsellors, and the captains, have consulted together to
+establish a royal statute, and to make a firm decree, that whosoever
+shall ask a petition of any God or man for thirty days, save of thee,
+O king, he shall be cast into the den of lions.
+
+6:8 Now, O king, establish the decree, and sign the writing, that it
+be not changed, according to the law of the Medes and Persians, which
+altereth not.
+
+6:9 Wherefore king Darius signed the writing and the decree.
+
+6:10 Now when Daniel knew that the writing was signed, he went into
+his house; and his windows being open in his chamber toward Jerusalem,
+he kneeled upon his knees three times a day, and prayed, and gave
+thanks before his God, as he did aforetime.
+
+6:11 Then these men assembled, and found Daniel praying and making
+supplication before his God.
+
+6:12 Then they came near, and spake before the king concerning the
+king's decree; Hast thou not signed a decree, that every man that
+shall ask a petition of any God or man within thirty days, save of
+thee, O king, shall be cast into the den of lions? The king answered
+and said, The thing is true, according to the law of the Medes and
+Persians, which altereth not.
+
+6:13 Then answered they and said before the king, That Daniel, which
+is of the children of the captivity of Judah, regardeth not thee, O
+king, nor the decree that thou hast signed, but maketh his petition
+three times a day.
+
+6:14 Then the king, when he heard these words, was sore displeased
+with himself, and set his heart on Daniel to deliver him: and he
+laboured till the going down of the sun to deliver him.
+
+6:15 Then these men assembled unto the king, and said unto the king,
+Know, O king, that the law of the Medes and Persians is, That no
+decree nor statute which the king establisheth may be changed.
+
+6:16 Then the king commanded, and they brought Daniel, and cast him
+into the den of lions. Now the king spake and said unto Daniel, Thy
+God whom thou servest continually, he will deliver thee.
+
+6:17 And a stone was brought, and laid upon the mouth of the den; and
+the king sealed it with his own signet, and with the signet of his
+lords; that the purpose might not be changed concerning Daniel.
+
+6:18 Then the king went to his palace, and passed the night fasting:
+neither were instruments of musick brought before him: and his sleep
+went from him.
+
+6:19 Then the king arose very early in the morning, and went in haste
+unto the den of lions.
+
+6:20 And when he came to the den, he cried with a lamentable voice
+unto Daniel: and the king spake and said to Daniel, O Daniel, servant
+of the living God, is thy God, whom thou servest continually, able to
+deliver thee from the lions? 6:21 Then said Daniel unto the king, O
+king, live for ever.
+
+6:22 My God hath sent his angel, and hath shut the lions' mouths, that
+they have not hurt me: forasmuch as before him innocency was found in
+me; and also before thee, O king, have I done no hurt.
+
+6:23 Then was the king exceedingly glad for him, and commanded that
+they should take Daniel up out of the den. So Daniel was taken up out
+of the den, and no manner of hurt was found upon him, because he
+believed in his God.
+
+6:24 And the king commanded, and they brought those men which had
+accused Daniel, and they cast them into the den of lions, them, their
+children, and their wives; and the lions had the mastery of them, and
+brake all their bones in pieces or ever they came at the bottom of the
+den.
+
+6:25 Then king Darius wrote unto all people, nations, and languages,
+that dwell in all the earth; Peace be multiplied unto you.
+
+6:26 I make a decree, That in every dominion of my kingdom men tremble
+and fear before the God of Daniel: for he is the living God, and
+stedfast for ever, and his kingdom that which shall not be destroyed,
+and his dominion shall be even unto the end.
+
+6:27 He delivereth and rescueth, and he worketh signs and wonders in
+heaven and in earth, who hath delivered Daniel from the power of the
+lions.
+
+6:28 So this Daniel prospered in the reign of Darius, and in the reign
+of Cyrus the Persian.
+
+7:1 In the first year of Belshazzar king of Babylon Daniel had a dream
+and visions of his head upon his bed: then he wrote the dream, and
+told the sum of the matters.
+
+7:2 Daniel spake and said, I saw in my vision by night, and, behold,
+the four winds of the heaven strove upon the great sea.
+
+7:3 And four great beasts came up from the sea, diverse one from
+another.
+
+7:4 The first was like a lion, and had eagle's wings: I beheld till
+the wings thereof were plucked, and it was lifted up from the earth,
+and made stand upon the feet as a man, and a man's heart was given to
+it.
+
+7:5 And behold another beast, a second, like to a bear, and it raised
+up itself on one side, and it had three ribs in the mouth of it
+between the teeth of it: and they said thus unto it, Arise, devour
+much flesh.
+
+7:6 After this I beheld, and lo another, like a leopard, which had
+upon the back of it four wings of a fowl; the beast had also four
+heads; and dominion was given to it.
+
+7:7 After this I saw in the night visions, and behold a fourth beast,
+dreadful and terrible, and strong exceedingly; and it had great iron
+teeth: it devoured and brake in pieces, and stamped the residue with
+the feet of it: and it was diverse from all the beasts that were
+before it; and it had ten horns.
+
+7:8 I considered the horns, and, behold, there came up among them
+another little horn, before whom there were three of the first horns
+plucked up by the roots: and, behold, in this horn were eyes like the
+eyes of man, and a mouth speaking great things.
+
+7:9 I beheld till the thrones were cast down, and the Ancient of days
+did sit, whose garment was white as snow, and the hair of his head
+like the pure wool: his throne was like the fiery flame, and his
+wheels as burning fire.
+
+7:10 A fiery stream issued and came forth from before him: thousand
+thousands ministered unto him, and ten thousand times ten thousand
+stood before him: the judgment was set, and the books were opened.
+
+7:11 I beheld then because of the voice of the great words which the
+horn spake: I beheld even till the beast was slain, and his body
+destroyed, and given to the burning flame.
+
+7:12 As concerning the rest of the beasts, they had their dominion
+taken away: yet their lives were prolonged for a season and time.
+
+7:13 I saw in the night visions, and, behold, one like the Son of man
+came with the clouds of heaven, and came to the Ancient of days, and
+they brought him near before him.
+
+7:14 And there was given him dominion, and glory, and a kingdom, that
+all people, nations, and languages, should serve him: his dominion is
+an everlasting dominion, which shall not pass away, and his kingdom
+that which shall not be destroyed.
+
+7:15 I Daniel was grieved in my spirit in the midst of my body, and
+the visions of my head troubled me.
+
+7:16 I came near unto one of them that stood by, and asked him the
+truth of all this. So he told me, and made me know the interpretation
+of the things.
+
+7:17 These great beasts, which are four, are four kings, which shall
+arise out of the earth.
+
+7:18 But the saints of the most High shall take the kingdom, and
+possess the kingdom for ever, even for ever and ever.
+
+7:19 Then I would know the truth of the fourth beast, which was
+diverse from all the others, exceeding dreadful, whose teeth were of
+iron, and his nails of brass; which devoured, brake in pieces, and
+stamped the residue with his feet; 7:20 And of the ten horns that were
+in his head, and of the other which came up, and before whom three
+fell; even of that horn that had eyes, and a mouth that spake very
+great things, whose look was more stout than his fellows.
+
+7:21 I beheld, and the same horn made war with the saints, and
+prevailed against them; 7:22 Until the Ancient of days came, and
+judgment was given to the saints of the most High; and the time came
+that the saints possessed the kingdom.
+
+7:23 Thus he said, The fourth beast shall be the fourth kingdom upon
+earth, which shall be diverse from all kingdoms, and shall devour the
+whole earth, and shall tread it down, and break it in pieces.
+
+7:24 And the ten horns out of this kingdom are ten kings that shall
+arise: and another shall rise after them; and he shall be diverse from
+the first, and he shall subdue three kings.
+
+7:25 And he shall speak great words against the most High, and shall
+wear out the saints of the most High, and think to change times and
+laws: and they shall be given into his hand until a time and times and
+the dividing of time.
+
+7:26 But the judgment shall sit, and they shall take away his
+dominion, to consume and to destroy it unto the end.
+
+7:27 And the kingdom and dominion, and the greatness of the kingdom
+under the whole heaven, shall be given to the people of the saints of
+the most High, whose kingdom is an everlasting kingdom, and all
+dominions shall serve and obey him.
+
+7:28 Hitherto is the end of the matter. As for me Daniel, my
+cogitations much troubled me, and my countenance changed in me: but I
+kept the matter in my heart.
+
+8:1 In the third year of the reign of king Belshazzar a vision
+appeared unto me, even unto me Daniel, after that which appeared unto
+me at the first.
+
+8:2 And I saw in a vision; and it came to pass, when I saw, that I was
+at Shushan in the palace, which is in the province of Elam; and I saw
+in a vision, and I was by the river of Ulai.
+
+8:3 Then I lifted up mine eyes, and saw, and, behold, there stood
+before the river a ram which had two horns: and the two horns were
+high; but one was higher than the other, and the higher came up last.
+
+8:4 I saw the ram pushing westward, and northward, and southward; so
+that no beasts might stand before him, neither was there any that
+could deliver out of his hand; but he did according to his will, and
+became great.
+
+8:5 And as I was considering, behold, an he goat came from the west on
+the face of the whole earth, and touched not the ground: and the goat
+had a notable horn between his eyes.
+
+8:6 And he came to the ram that had two horns, which I had seen
+standing before the river, and ran unto him in the fury of his power.
+
+8:7 And I saw him come close unto the ram, and he was moved with
+choler against him, and smote the ram, and brake his two horns: and
+there was no power in the ram to stand before him, but he cast him
+down to the ground, and stamped upon him: and there was none that
+could deliver the ram out of his hand.
+
+8:8 Therefore the he goat waxed very great: and when he was strong,
+the great horn was broken; and for it came up four notable ones toward
+the four winds of heaven.
+
+8:9 And out of one of them came forth a little horn, which waxed
+exceeding great, toward the south, and toward the east, and toward the
+pleasant land.
+
+8:10 And it waxed great, even to the host of heaven; and it cast down
+some of the host and of the stars to the ground, and stamped upon
+them.
+
+8:11 Yea, he magnified himself even to the prince of the host, and by
+him the daily sacrifice was taken away, and the place of the sanctuary
+was cast down.
+
+8:12 And an host was given him against the daily sacrifice by reason
+of transgression, and it cast down the truth to the ground; and it
+practised, and prospered.
+
+8:13 Then I heard one saint speaking, and another saint said unto that
+certain saint which spake, How long shall be the vision concerning the
+daily sacrifice, and the transgression of desolation, to give both the
+sanctuary and the host to be trodden under foot? 8:14 And he said
+unto me, Unto two thousand and three hundred days; then shall the
+sanctuary be cleansed.
+
+8:15 And it came to pass, when I, even I Daniel, had seen the vision,
+and sought for the meaning, then, behold, there stood before me as the
+appearance of a man.
+
+8:16 And I heard a man's voice between the banks of Ulai, which
+called, and said, Gabriel, make this man to understand the vision.
+
+8:17 So he came near where I stood: and when he came, I was afraid,
+and fell upon my face: but he said unto me, Understand, O son of man:
+for at the time of the end shall be the vision.
+
+8:18 Now as he was speaking with me, I was in a deep sleep on my face
+toward the ground: but he touched me, and set me upright.
+
+8:19 And he said, Behold, I will make thee know what shall be in the
+last end of the indignation: for at the time appointed the end shall
+be.
+
+8:20 The ram which thou sawest having two horns are the kings of Media
+and Persia.
+
+8:21 And the rough goat is the king of Grecia: and the great horn that
+is between his eyes is the first king.
+
+8:22 Now that being broken, whereas four stood up for it, four
+kingdoms shall stand up out of the nation, but not in his power.
+
+8:23 And in the latter time of their kingdom, when the transgressors
+are come to the full, a king of fierce countenance, and understanding
+dark sentences, shall stand up.
+
+8:24 And his power shall be mighty, but not by his own power: and he
+shall destroy wonderfully, and shall prosper, and practise, and shall
+destroy the mighty and the holy people.
+
+8:25 And through his policy also he shall cause craft to prosper in
+his hand; and he shall magnify himself in his heart, and by peace
+shall destroy many: he shall also stand up against the Prince of
+princes; but he shall be broken without hand.
+
+8:26 And the vision of the evening and the morning which was told is
+true: wherefore shut thou up the vision; for it shall be for many
+days.
+
+8:27 And I Daniel fainted, and was sick certain days; afterward I rose
+up, and did the king's business; and I was astonished at the vision,
+but none understood it.
+
+9:1 In the first year of Darius the son of Ahasuerus, of the seed of
+the Medes, which was made king over the realm of the Chaldeans; 9:2 In
+the first year of his reign I Daniel understood by books the number of
+the years, whereof the word of the LORD came to Jeremiah the prophet,
+that he would accomplish seventy years in the desolations of
+Jerusalem.
+
+9:3 And I set my face unto the Lord God, to seek by prayer and
+supplications, with fasting, and sackcloth, and ashes: 9:4 And I
+prayed unto the LORD my God, and made my confession, and said, O Lord,
+the great and dreadful God, keeping the covenant and mercy to them
+that love him, and to them that keep his commandments; 9:5 We have
+sinned, and have committed iniquity, and have done wickedly, and have
+rebelled, even by departing from thy precepts and from thy judgments:
+9:6 Neither have we hearkened unto thy servants the prophets, which
+spake in thy name to our kings, our princes, and our fathers, and to
+all the people of the land.
+
+9:7 O LORD, righteousness belongeth unto thee, but unto us confusion
+of faces, as at this day; to the men of Judah, and to the inhabitants
+of Jerusalem, and unto all Israel, that are near, and that are far
+off, through all the countries whither thou hast driven them, because
+of their trespass that they have trespassed against thee.
+
+9:8 O Lord, to us belongeth confusion of face, to our kings, to our
+princes, and to our fathers, because we have sinned against thee.
+
+9:9 To the Lord our God belong mercies and forgivenesses, though we
+have rebelled against him; 9:10 Neither have we obeyed the voice of
+the LORD our God, to walk in his laws, which he set before us by his
+servants the prophets.
+
+9:11 Yea, all Israel have transgressed thy law, even by departing,
+that they might not obey thy voice; therefore the curse is poured upon
+us, and the oath that is written in the law of Moses the servant of
+God, because we have sinned against him.
+
+9:12 And he hath confirmed his words, which he spake against us, and
+against our judges that judged us, by bringing upon us a great evil:
+for under the whole heaven hath not been done as hath been done upon
+Jerusalem.
+
+9:13 As it is written in the law of Moses, all this evil is come upon
+us: yet made we not our prayer before the LORD our God, that we might
+turn from our iniquities, and understand thy truth.
+
+9:14 Therefore hath the LORD watched upon the evil, and brought it
+upon us: for the LORD our God is righteous in all his works which he
+doeth: for we obeyed not his voice.
+
+9:15 And now, O Lord our God, that hast brought thy people forth out
+of the land of Egypt with a mighty hand, and hast gotten thee renown,
+as at this day; we have sinned, we have done wickedly.
+
+9:16 O LORD, according to all thy righteousness, I beseech thee, let
+thine anger and thy fury be turned away from thy city Jerusalem, thy
+holy mountain: because for our sins, and for the iniquities of our
+fathers, Jerusalem and thy people are become a reproach to all that
+are about us.
+
+9:17 Now therefore, O our God, hear the prayer of thy servant, and his
+supplications, and cause thy face to shine upon thy sanctuary that is
+desolate, for the Lord's sake.
+
+9:18 O my God, incline thine ear, and hear; open thine eyes, and
+behold our desolations, and the city which is called by thy name: for
+we do not present our supplications before thee for our
+righteousnesses, but for thy great mercies.
+
+9:19 O Lord, hear; O Lord, forgive; O Lord, hearken and do; defer not,
+for thine own sake, O my God: for thy city and thy people are called
+by thy name.
+
+9:20 And whiles I was speaking, and praying, and confessing my sin and
+the sin of my people Israel, and presenting my supplication before the
+LORD my God for the holy mountain of my God; 9:21 Yea, whiles I was
+speaking in prayer, even the man Gabriel, whom I had seen in the
+vision at the beginning, being caused to fly swiftly, touched me about
+the time of the evening oblation.
+
+9:22 And he informed me, and talked with me, and said, O Daniel, I am
+now come forth to give thee skill and understanding.
+
+9:23 At the beginning of thy supplications the commandment came forth,
+and I am come to shew thee; for thou art greatly beloved: therefore
+understand the matter, and consider the vision.
+
+9:24 Seventy weeks are determined upon thy people and upon thy holy
+city, to finish the transgression, and to make an end of sins, and to
+make reconciliation for iniquity, and to bring in everlasting
+righteousness, and to seal up the vision and prophecy, and to anoint
+the most Holy.
+
+9:25 Know therefore and understand, that from the going forth of the
+commandment to restore and to build Jerusalem unto the Messiah the
+Prince shall be seven weeks, and threescore and two weeks: the street
+shall be built again, and the wall, even in troublous times.
+
+9:26 And after threescore and two weeks shall Messiah be cut off, but
+not for himself: and the people of the prince that shall come shall
+destroy the city and the sanctuary; and the end thereof shall be with
+a flood, and unto the end of the war desolations are determined.
+
+9:27 And he shall confirm the covenant with many for one week: and in
+the midst of the week he shall cause the sacrifice and the oblation to
+cease, and for the overspreading of abominations he shall make it
+desolate, even until the consummation, and that determined shall be
+poured upon the desolate.
+
+10:1 In the third year of Cyrus king of Persia a thing was revealed
+unto Daniel, whose name was called Belteshazzar; and the thing was
+true, but the time appointed was long: and he understood the thing,
+and had understanding of the vision.
+
+10:2 In those days I Daniel was mourning three full weeks.
+
+10:3 I ate no pleasant bread, neither came flesh nor wine in my mouth,
+neither did I anoint myself at all, till three whole weeks were
+fulfilled.
+
+10:4 And in the four and twentieth day of the first month, as I was by
+the side of the great river, which is Hiddekel; 10:5 Then I lifted up
+mine eyes, and looked, and behold a certain man clothed in linen,
+whose loins were girded with fine gold of Uphaz: 10:6 His body also
+was like the beryl, and his face as the appearance of lightning, and
+his eyes as lamps of fire, and his arms and his feet like in colour to
+polished brass, and the voice of his words like the voice of a
+multitude.
+
+10:7 And I Daniel alone saw the vision: for the men that were with me
+saw not the vision; but a great quaking fell upon them, so that they
+fled to hide themselves.
+
+10:8 Therefore I was left alone, and saw this great vision, and there
+remained no strength in me: for my comeliness was turned in me into
+corruption, and I retained no strength.
+
+10:9 Yet heard I the voice of his words: and when I heard the voice of
+his words, then was I in a deep sleep on my face, and my face toward
+the ground.
+
+10:10 And, behold, an hand touched me, which set me upon my knees and
+upon the palms of my hands.
+
+10:11 And he said unto me, O Daniel, a man greatly beloved, understand
+the words that I speak unto thee, and stand upright: for unto thee am
+I now sent.
+
+And when he had spoken this word unto me, I stood trembling.
+
+10:12 Then said he unto me, Fear not, Daniel: for from the first day
+that thou didst set thine heart to understand, and to chasten thyself
+before thy God, thy words were heard, and I am come for thy words.
+
+10:13 But the prince of the kingdom of Persia withstood me one and
+twenty days: but, lo, Michael, one of the chief princes, came to help
+me; and I remained there with the kings of Persia.
+
+10:14 Now I am come to make thee understand what shall befall thy
+people in the latter days: for yet the vision is for many days.
+
+10:15 And when he had spoken such words unto me, I set my face toward
+the ground, and I became dumb.
+
+10:16 And, behold, one like the similitude of the sons of men touched
+my lips: then I opened my mouth, and spake, and said unto him that
+stood before me, O my lord, by the vision my sorrows are turned upon
+me, and I have retained no strength.
+
+10:17 For how can the servant of this my lord talk with this my lord?
+for as for me, straightway there remained no strength in me, neither
+is there breath left in me.
+
+10:18 Then there came again and touched me one like the appearance of
+a man, and he strengthened me, 10:19 And said, O man greatly beloved,
+fear not: peace be unto thee, be strong, yea, be strong. And when he
+had spoken unto me, I was strengthened, and said, Let my lord speak;
+for thou hast strengthened me.
+
+10:20 Then said he, Knowest thou wherefore I come unto thee? and now
+will I return to fight with the prince of Persia: and when I am gone
+forth, lo, the prince of Grecia shall come.
+
+10:21 But I will shew thee that which is noted in the scripture of
+truth: and there is none that holdeth with me in these things, but
+Michael your prince.
+
+11:1 Also I in the first year of Darius the Mede, even I, stood to
+confirm and to strengthen him.
+
+11:2 And now will I shew thee the truth. Behold, there shall stand up
+yet three kings in Persia; and the fourth shall be far richer than
+they all: and by his strength through his riches he shall stir up all
+against the realm of Grecia.
+
+11:3 And a mighty king shall stand up, that shall rule with great
+dominion, and do according to his will.
+
+11:4 And when he shall stand up, his kingdom shall be broken, and
+shall be divided toward the four winds of heaven; and not to his
+posterity, nor according to his dominion which he ruled: for his
+kingdom shall be plucked up, even for others beside those.
+
+11:5 And the king of the south shall be strong, and one of his
+princes; and he shall be strong above him, and have dominion; his
+dominion shall be a great dominion.
+
+11:6 And in the end of years they shall join themselves together; for
+the king's daughter of the south shall come to the king of the north
+to make an agreement: but she shall not retain the power of the arm;
+neither shall he stand, nor his arm: but she shall be given up, and
+they that brought her, and he that begat her, and he that strengthened
+her in these times.
+
+11:7 But out of a branch of her roots shall one stand up in his
+estate, which shall come with an army, and shall enter into the
+fortress of the king of the north, and shall deal against them, and
+shall prevail: 11:8 And shall also carry captives into Egypt their
+gods, with their princes, and with their precious vessels of silver
+and of gold; and he shall continue more years than the king of the
+north.
+
+11:9 So the king of the south shall come into his kingdom, and shall
+return into his own land.
+
+11:10 But his sons shall be stirred up, and shall assemble a multitude
+of great forces: and one shall certainly come, and overflow, and pass
+through: then shall he return, and be stirred up, even to his
+fortress.
+
+11:11 And the king of the south shall be moved with choler, and shall
+come forth and fight with him, even with the king of the north: and he
+shall set forth a great multitude; but the multitude shall be given
+into his hand.
+
+11:12 And when he hath taken away the multitude, his heart shall be
+lifted up; and he shall cast down many ten thousands: but he shall not
+be strengthened by it.
+
+11:13 For the king of the north shall return, and shall set forth a
+multitude greater than the former, and shall certainly come after
+certain years with a great army and with much riches.
+
+11:14 And in those times there shall many stand up against the king of
+the south: also the robbers of thy people shall exalt themselves to
+establish the vision; but they shall fall.
+
+11:15 So the king of the north shall come, and cast up a mount, and
+take the most fenced cities: and the arms of the south shall not
+withstand, neither his chosen people, neither shall there be any
+strength to withstand.
+
+11:16 But he that cometh against him shall do according to his own
+will, and none shall stand before him: and he shall stand in the
+glorious land, which by his hand shall be consumed.
+
+11:17 He shall also set his face to enter with the strength of his
+whole kingdom, and upright ones with him; thus shall he do: and he
+shall give him the daughter of women, corrupting her: but she shall
+not stand on his side, neither be for him.
+
+11:18 After this shall he turn his face unto the isles, and shall take
+many: but a prince for his own behalf shall cause the reproach offered
+by him to cease; without his own reproach he shall cause it to turn
+upon him.
+
+11:19 Then he shall turn his face toward the fort of his own land: but
+he shall stumble and fall, and not be found.
+
+11:20 Then shall stand up in his estate a raiser of taxes in the glory
+of the kingdom: but within few days he shall be destroyed, neither in
+anger, nor in battle.
+
+11:21 And in his estate shall stand up a vile person, to whom they
+shall not give the honour of the kingdom: but he shall come in
+peaceably, and obtain the kingdom by flatteries.
+
+11:22 And with the arms of a flood shall they be overflown from before
+him, and shall be broken; yea, also the prince of the covenant.
+
+11:23 And after the league made with him he shall work deceitfully:
+for he shall come up, and shall become strong with a small people.
+
+11:24 He shall enter peaceably even upon the fattest places of the
+province; and he shall do that which his fathers have not done, nor
+his fathers' fathers; he shall scatter among them the prey, and spoil,
+and riches: yea, and he shall forecast his devices against the strong
+holds, even for a time.
+
+11:25 And he shall stir up his power and his courage against the king
+of the south with a great army; and the king of the south shall be
+stirred up to battle with a very great and mighty army; but he shall
+not stand: for they shall forecast devices against him.
+
+11:26 Yea, they that feed of the portion of his meat shall destroy
+him, and his army shall overflow: and many shall fall down slain.
+
+11:27 And both of these kings' hearts shall be to do mischief, and
+they shall speak lies at one table; but it shall not prosper: for yet
+the end shall be at the time appointed.
+
+11:28 Then shall he return into his land with great riches; and his
+heart shall be against the holy covenant; and he shall do exploits,
+and return to his own land.
+
+11:29 At the time appointed he shall return, and come toward the
+south; but it shall not be as the former, or as the latter.
+
+11:30 For the ships of Chittim shall come against him: therefore he
+shall be grieved, and return, and have indignation against the holy
+covenant: so shall he do; he shall even return, and have intelligence
+with them that forsake the holy covenant.
+
+11:31 And arms shall stand on his part, and they shall pollute the
+sanctuary of strength, and shall take away the daily sacrifice, and
+they shall place the abomination that maketh desolate.
+
+11:32 And such as do wickedly against the covenant shall he corrupt by
+flatteries: but the people that do know their God shall be strong, and
+do exploits.
+
+11:33 And they that understand among the people shall instruct many:
+yet they shall fall by the sword, and by flame, by captivity, and by
+spoil, many days.
+
+11:34 Now when they shall fall, they shall be holpen with a little
+help: but many shall cleave to them with flatteries.
+
+11:35 And some of them of understanding shall fall, to try them, and
+to purge, and to make them white, even to the time of the end: because
+it is yet for a time appointed.
+
+11:36 And the king shall do according to his will; and he shall exalt
+himself, and magnify himself above every god, and shall speak
+marvellous things against the God of gods, and shall prosper till the
+indignation be accomplished: for that that is determined shall be
+done.
+
+11:37 Neither shall he regard the God of his fathers, nor the desire
+of women, nor regard any god: for he shall magnify himself above all.
+
+11:38 But in his estate shall he honour the God of forces: and a god
+whom his fathers knew not shall he honour with gold, and silver, and
+with precious stones, and pleasant things.
+
+11:39 Thus shall he do in the most strong holds with a strange god,
+whom he shall acknowledge and increase with glory: and he shall cause
+them to rule over many, and shall divide the land for gain.
+
+11:40 And at the time of the end shall the king of the south push at
+him: and the king of the north shall come against him like a
+whirlwind, with chariots, and with horsemen, and with many ships; and
+he shall enter into the countries, and shall overflow and pass over.
+
+11:41 He shall enter also into the glorious land, and many countries
+shall be overthrown: but these shall escape out of his hand, even
+Edom, and Moab, and the chief of the children of Ammon.
+
+11:42 He shall stretch forth his hand also upon the countries: and the
+land of Egypt shall not escape.
+
+11:43 But he shall have power over the treasures of gold and of
+silver, and over all the precious things of Egypt: and the Libyans and
+the Ethiopians shall be at his steps.
+
+11:44 But tidings out of the east and out of the north shall trouble
+him: therefore he shall go forth with great fury to destroy, and
+utterly to make away many.
+
+11:45 And he shall plant the tabernacles of his palace between the
+seas in the glorious holy mountain; yet he shall come to his end, and
+none shall help him.
+
+12:1 And at that time shall Michael stand up, the great prince which
+standeth for the children of thy people: and there shall be a time of
+trouble, such as never was since there was a nation even to that same
+time: and at that time thy people shall be delivered, every one that
+shall be found written in the book.
+
+12:2 And many of them that sleep in the dust of the earth shall awake,
+some to everlasting life, and some to shame and everlasting contempt.
+
+12:3 And they that be wise shall shine as the brightness of the
+firmament; and they that turn many to righteousness as the stars for
+ever and ever.
+
+12:4 But thou, O Daniel, shut up the words, and seal the book, even to
+the time of the end: many shall run to and fro, and knowledge shall be
+increased.
+
+12:5 Then I Daniel looked, and, behold, there stood other two, the one
+on this side of the bank of the river, and the other on that side of
+the bank of the river.
+
+12:6 And one said to the man clothed in linen, which was upon the
+waters of the river, How long shall it be to the end of these wonders?
+12:7 And I heard the man clothed in linen, which was upon the waters
+of the river, when he held up his right hand and his left hand unto
+heaven, and sware by him that liveth for ever that it shall be for a
+time, times, and an half; and when he shall have accomplished to
+scatter the power of the holy people, all these things shall be
+finished.
+
+12:8 And I heard, but I understood not: then said I, O my Lord, what
+shall be the end of these things? 12:9 And he said, Go thy way,
+Daniel: for the words are closed up and sealed till the time of the
+end.
+
+12:10 Many shall be purified, and made white, and tried; but the
+wicked shall do wickedly: and none of the wicked shall understand; but
+the wise shall understand.
+
+12:11 And from the time that the daily sacrifice shall be taken away,
+and the abomination that maketh desolate set up, there shall be a
+thousand two hundred and ninety days.
+
+12:12 Blessed is he that waiteth, and cometh to the thousand three
+hundred and five and thirty days.
+
+12:13 But go thou thy way till the end be: for thou shalt rest,
+and stand in thy lot at the end of the days.
+
+
+
+
+Hosea
+
+
+1:1 The word of the LORD that came unto Hosea, the son of Beeri, in
+the days of Uzziah, Jotham, Ahaz, and Hezekiah, kings of Judah, and in
+the days of Jeroboam the son of Joash, king of Israel.
+
+1:2 The beginning of the word of the LORD by Hosea. And the LORD said
+to Hosea, Go, take unto thee a wife of whoredoms and children of
+whoredoms: for the land hath committed great whoredom, departing from
+the LORD.
+
+1:3 So he went and took Gomer the daughter of Diblaim; which
+conceived, and bare him a son.
+
+1:4 And the LORD said unto him, Call his name Jezreel; for yet a
+little while, and I will avenge the blood of Jezreel upon the house of
+Jehu, and will cause to cease the kingdom of the house of Israel.
+
+1:5 And it shall come to pass at that day, that I will break the bow
+of Israel, in the valley of Jezreel.
+
+1:6 And she conceived again, and bare a daughter. And God said unto
+him, Call her name Loruhamah: for I will no more have mercy upon the
+house of Israel; but I will utterly take them away.
+
+1:7 But I will have mercy upon the house of Judah, and will save them
+by the LORD their God, and will not save them by bow, nor by sword,
+nor by battle, by horses, nor by horsemen.
+
+1:8 Now when she had weaned Loruhamah, she conceived, and bare a son.
+
+1:9 Then said God, Call his name Loammi: for ye are not my people, and
+I will not be your God.
+
+1:10 Yet the number of the children of Israel shall be as the sand of
+the sea, which cannot be measured nor numbered; and it shall come to
+pass, that in the place where it was said unto them, Ye are not my
+people, there it shall be said unto them, Ye are the sons of the
+living God.
+
+1:11 Then shall the children of Judah and the children of Israel be
+gathered together, and appoint themselves one head, and they shall
+come up out of the land: for great shall be the day of Jezreel.
+
+2:1 Say ye unto your brethren, Ammi; and to your sisters, Ruhamah.
+
+2:2 Plead with your mother, plead: for she is not my wife, neither am
+I her husband: let her therefore put away her whoredoms out of her
+sight, and her adulteries from between her breasts; 2:3 Lest I strip
+her naked, and set her as in the day that she was born, and make her
+as a wilderness, and set her like a dry land, and slay her with
+thirst.
+
+2:4 And I will not have mercy upon her children; for they be the
+children of whoredoms.
+
+2:5 For their mother hath played the harlot: she that conceived them
+hath done shamefully: for she said, I will go after my lovers, that
+give me my bread and my water, my wool and my flax, mine oil and my
+drink.
+
+2:6 Therefore, behold, I will hedge up thy way with thorns, and make a
+wall, that she shall not find her paths.
+
+2:7 And she shall follow after her lovers, but she shall not overtake
+them; and she shall seek them, but shall not find them: then shall she
+say, I will go and return to my first husband; for then was it better
+with me than now.
+
+2:8 For she did not know that I gave her corn, and wine, and oil, and
+multiplied her silver and gold, which they prepared for Baal.
+
+2:9 Therefore will I return, and take away my corn in the time
+thereof, and my wine in the season thereof, and will recover my wool
+and my flax given to cover her nakedness.
+
+2:10 And now will I discover her lewdness in the sight of her lovers,
+and none shall deliver her out of mine hand.
+
+2:11 I will also cause all her mirth to cease, her feast days, her new
+moons, and her sabbaths, and all her solemn feasts.
+
+2:12 And I will destroy her vines and her fig trees, whereof she hath
+said, These are my rewards that my lovers have given me: and I will
+make them a forest, and the beasts of the field shall eat them.
+
+2:13 And I will visit upon her the days of Baalim, wherein she burned
+incense to them, and she decked herself with her earrings and her
+jewels, and she went after her lovers, and forgat me, saith the LORD.
+
+2:14 Therefore, behold, I will allure her, and bring her into the
+wilderness, and speak comfortably unto her.
+
+2:15 And I will give her her vineyards from thence, and the valley of
+Achor for a door of hope: and she shall sing there, as in the days of
+her youth, and as in the day when she came up out of the land of
+Egypt.
+
+2:16 And it shall be at that day, saith the LORD, that thou shalt call
+me Ishi; and shalt call me no more Baali.
+
+2:17 For I will take away the names of Baalim out of her mouth, and
+they shall no more be remembered by their name.
+
+2:18 And in that day will I make a covenant for them with the beasts
+of the field and with the fowls of heaven, and with the creeping
+things of the ground: and I will break the bow and the sword and the
+battle out of the earth, and will make them to lie down safely.
+
+2:19 And I will betroth thee unto me for ever; yea, I will betroth
+thee unto me in righteousness, and in judgment, and in lovingkindness,
+and in mercies.
+
+2:20 I will even betroth thee unto me in faithfulness: and thou shalt
+know the LORD.
+
+2:21 And it shall come to pass in that day, I will hear, saith the
+LORD, I will hear the heavens, and they shall hear the earth; 2:22 And
+the earth shall hear the corn, and the wine, and the oil; and they
+shall hear Jezreel.
+
+2:23 And I will sow her unto me in the earth; and I will have mercy
+upon her that had not obtained mercy; and I will say to them which
+were not my people, Thou art my people; and they shall say, Thou art
+my God.
+
+3:1 Then said the LORD unto me, Go yet, love a woman beloved of her
+friend, yet an adulteress, according to the love of the LORD toward
+the children of Israel, who look to other gods, and love flagons of
+wine.
+
+3:2 So I bought her to me for fifteen pieces of silver, and for an
+homer of barley, and an half homer of barley: 3:3 And I said unto her,
+Thou shalt abide for me many days; thou shalt not play the harlot, and
+thou shalt not be for another man: so will I also be for thee.
+
+3:4 For the children of Israel shall abide many days without a king,
+and without a prince, and without a sacrifice, and without an image,
+and without an ephod, and without teraphim: 3:5 Afterward shall the
+children of Israel return, and seek the LORD their God, and David
+their king; and shall fear the LORD and his goodness in the latter
+days.
+
+4:1 Hear the word of the LORD, ye children of Israel: for the LORD
+hath a controversy with the inhabitants of the land, because there is
+no truth, nor mercy, nor knowledge of God in the land.
+
+4:2 By swearing, and lying, and killing, and stealing, and committing
+adultery, they break out, and blood toucheth blood.
+
+4:3 Therefore shall the land mourn, and every one that dwelleth
+therein shall languish, with the beasts of the field, and with the
+fowls of heaven; yea, the fishes of the sea also shall be taken away.
+
+4:4 Yet let no man strive, nor reprove another: for thy people are as
+they that strive with the priest.
+
+4:5 Therefore shalt thou fall in the day, and the prophet also shall
+fall with thee in the night, and I will destroy thy mother.
+
+4:6 My people are destroyed for lack of knowledge: because thou hast
+rejected knowledge, I will also reject thee, that thou shalt be no
+priest to me: seeing thou hast forgotten the law of thy God, I will
+also forget thy children.
+
+4:7 As they were increased, so they sinned against me: therefore will
+I change their glory into shame.
+
+4:8 They eat up the sin of my people, and they set their heart on
+their iniquity.
+
+4:9 And there shall be, like people, like priest: and I will punish
+them for their ways, and reward them their doings.
+
+4:10 For they shall eat, and not have enough: they shall commit
+whoredom, and shall not increase: because they have left off to take
+heed to the LORD.
+
+4:11 Whoredom and wine and new wine take away the heart.
+
+4:12 My people ask counsel at their stocks, and their staff declareth
+unto them: for the spirit of whoredoms hath caused them to err, and
+they have gone a whoring from under their God.
+
+4:13 They sacrifice upon the tops of the mountains, and burn incense
+upon the hills, under oaks and poplars and elms, because the shadow
+thereof is good: therefore your daughters shall commit whoredom, and
+your spouses shall commit adultery.
+
+4:14 I will not punish your daughters when they commit whoredom, nor
+your spouses when they commit adultery: for themselves are separated
+with whores, and they sacrifice with harlots: therefore the people
+that doth not understand shall fall.
+
+4:15 Though thou, Israel, play the harlot, yet let not Judah offend;
+and come not ye unto Gilgal, neither go ye up to Bethaven, nor swear,
+The LORD liveth.
+
+4:16 For Israel slideth back as a backsliding heifer: now the LORD
+will feed them as a lamb in a large place.
+
+4:17 Ephraim is joined to idols: let him alone.
+
+4:18 Their drink is sour: they have committed whoredom continually:
+her rulers with shame do love, Give ye.
+
+4:19 The wind hath bound her up in her wings, and they shall be
+ashamed because of their sacrifices.
+
+5:1 Hear ye this, O priests; and hearken, ye house of Israel; and give
+ye ear, O house of the king; for judgment is toward you, because ye
+have been a snare on Mizpah, and a net spread upon Tabor.
+
+5:2 And the revolters are profound to make slaughter, though I have
+been a rebuker of them all.
+
+5:3 I know Ephraim, and Israel is not hid from me: for now, O Ephraim,
+thou committest whoredom, and Israel is defiled.
+
+5:4 They will not frame their doings to turn unto their God: for the
+spirit of whoredoms is in the midst of them, and they have not known
+the LORD.
+
+5:5 And the pride of Israel doth testify to his face: therefore shall
+Israel and Ephraim fall in their iniquity: Judah also shall fall with
+them.
+
+5:6 They shall go with their flocks and with their herds to seek the
+LORD; but they shall not find him; he hath withdrawn himself from
+them.
+
+5:7 They have dealt treacherously against the LORD: for they have
+begotten strange children: now shall a month devour them with their
+portions.
+
+5:8 Blow ye the cornet in Gibeah, and the trumpet in Ramah: cry aloud
+at Bethaven, after thee, O Benjamin.
+
+5:9 Ephraim shall be desolate in the day of rebuke: among the tribes
+of Israel have I made known that which shall surely be.
+
+5:10 The princes of Judah were like them that remove the bound:
+therefore I will pour out my wrath upon them like water.
+
+5:11 Ephraim is oppressed and broken in judgment, because he willingly
+walked after the commandment.
+
+5:12 Therefore will I be unto Ephraim as a moth, and to the house of
+Judah as rottenness.
+
+5:13 When Ephraim saw his sickness, and Judah saw his wound, then went
+Ephraim to the Assyrian, and sent to king Jareb: yet could he not heal
+you, nor cure you of your wound.
+
+5:14 For I will be unto Ephraim as a lion, and as a young lion to the
+house of Judah: I, even I, will tear and go away; I will take away,
+and none shall rescue him.
+
+5:15 I will go and return to my place, till they acknowledge their
+offence, and seek my face: in their affliction they will seek me
+early.
+
+6:1 Come, and let us return unto the LORD: for he hath torn, and he
+will heal us; he hath smitten, and he will bind us up.
+
+6:2 After two days will he revive us: in the third day he will raise
+us up, and we shall live in his sight.
+
+6:3 Then shall we know, if we follow on to know the LORD: his going
+forth is prepared as the morning; and he shall come unto us as the
+rain, as the latter and former rain unto the earth.
+
+6:4 O Ephraim, what shall I do unto thee? O Judah, what shall I do
+unto thee? for your goodness is as a morning cloud, and as the early
+dew it goeth away.
+
+6:5 Therefore have I hewed them by the prophets; I have slain them by
+the words of my mouth: and thy judgments are as the light that goeth
+forth.
+
+6:6 For I desired mercy, and not sacrifice; and the knowledge of God
+more than burnt offerings.
+
+6:7 But they like men have transgressed the covenant: there have they
+dealt treacherously against me.
+
+6:8 Gilead is a city of them that work iniquity, and is polluted with
+blood.
+
+6:9 And as troops of robbers wait for a man, so the company of priests
+murder in the way by consent: for they commit lewdness.
+
+6:10 I have seen an horrible thing in the house of Israel: there is
+the whoredom of Ephraim, Israel is defiled.
+
+6:11 Also, O Judah, he hath set an harvest for thee, when I returned
+the captivity of my people.
+
+7:1 When I would have healed Israel, then the iniquity of Ephraim was
+discovered, and the wickedness of Samaria: for they commit falsehood;
+and the thief cometh in, and the troop of robbers spoileth without.
+
+7:2 And they consider not in their hearts that I remember all their
+wickedness: now their own doings have beset them about; they are
+before my face.
+
+7:3 They make the king glad with their wickedness, and the princes
+with their lies.
+
+7:4 They are all adulterers, as an oven heated by the baker, who
+ceaseth from raising after he hath kneaded the dough, until it be
+leavened.
+
+7:5 In the day of our king the princes have made him sick with bottles
+of wine; he stretched out his hand with scorners.
+
+7:6 For they have made ready their heart like an oven, whiles they lie
+in wait: their baker sleepeth all the night; in the morning it burneth
+as a flaming fire.
+
+7:7 They are all hot as an oven, and have devoured their judges; all
+their kings are fallen: there is none among them that calleth unto me.
+
+7:8 Ephraim, he hath mixed himself among the people; Ephraim is a cake
+not turned.
+
+7:9 Strangers have devoured his strength, and he knoweth it not: yea,
+gray hairs are here and there upon him, yet he knoweth not.
+
+7:10 And the pride of Israel testifieth to his face: and they do not
+return to the LORD their God, nor seek him for all this.
+
+7:11 Ephraim also is like a silly dove without heart: they call to
+Egypt, they go to Assyria.
+
+7:12 When they shall go, I will spread my net upon them; I will bring
+them down as the fowls of the heaven; I will chastise them, as their
+congregation hath heard.
+
+7:13 Woe unto them! for they have fled from me: destruction unto them!
+because they have transgressed against me: though I have redeemed
+them, yet they have spoken lies against me.
+
+7:14 And they have not cried unto me with their heart, when they
+howled upon their beds: they assemble themselves for corn and wine,
+and they rebel against me.
+
+7:15 Though I have bound and strengthened their arms, yet do they
+imagine mischief against me.
+
+7:16 They return, but not to the most High: they are like a deceitful
+bow: their princes shall fall by the sword for the rage of their
+tongue: this shall be their derision in the land of Egypt.
+
+8:1 Set the trumpet to thy mouth. He shall come as an eagle against
+the house of the LORD, because they have transgressed my covenant, and
+trespassed against my law.
+
+8:2 Israel shall cry unto me, My God, we know thee.
+
+8:3 Israel hath cast off the thing that is good: the enemy shall
+pursue him.
+
+8:4 They have set up kings, but not by me: they have made princes, and
+I knew it not: of their silver and their gold have they made them
+idols, that they may be cut off.
+
+8:5 Thy calf, O Samaria, hath cast thee off; mine anger is kindled
+against them: how long will it be ere they attain to innocency? 8:6
+For from Israel was it also: the workman made it; therefore it is not
+God: but the calf of Samaria shall be broken in pieces.
+
+8:7 For they have sown the wind, and they shall reap the whirlwind: it
+hath no stalk; the bud shall yield no meal: if so be it yield, the
+strangers shall swallow it up.
+
+8:8 Israel is swallowed up: now shall they be among the Gentiles as a
+vessel wherein is no pleasure.
+
+8:9 For they are gone up to Assyria, a wild ass alone by himself:
+Ephraim hath hired lovers.
+
+8:10 Yea, though they have hired among the nations, now will I gather
+them, and they shall sorrow a little for the burden of the king of
+princes.
+
+8:11 Because Ephraim hath made many altars to sin, altars shall be
+unto him to sin.
+
+8:12 I have written to him the great things of my law, but they were
+counted as a strange thing.
+
+8:13 They sacrifice flesh for the sacrifices of mine offerings, and
+eat it; but the LORD accepteth them not; now will he remember their
+iniquity, and visit their sins: they shall return to Egypt.
+
+8:14 For Israel hath forgotten his Maker, and buildeth temples; and
+Judah hath multiplied fenced cities: but I will send a fire upon his
+cities, and it shall devour the palaces thereof.
+
+9:1 Rejoice not, O Israel, for joy, as other people: for thou hast
+gone a whoring from thy God, thou hast loved a reward upon every
+cornfloor.
+
+9:2 The floor and the winepress shall not feed them, and the new wine
+shall fail in her.
+
+9:3 They shall not dwell in the LORD's land; but Ephraim shall return
+to Egypt, and they shall eat unclean things in Assyria.
+
+9:4 They shall not offer wine offerings to the LORD, neither shall
+they be pleasing unto him: their sacrifices shall be unto them as the
+bread of mourners; all that eat thereof shall be polluted: for their
+bread for their soul shall not come into the house of the LORD.
+
+9:5 What will ye do in the solemn day, and in the day of the feast of
+the LORD? 9:6 For, lo, they are gone because of destruction: Egypt
+shall gather them up, Memphis shall bury them: the pleasant places for
+their silver, nettles shall possess them: thorns shall be in their
+tabernacles.
+
+9:7 The days of visitation are come, the days of recompence are come;
+Israel shall know it: the prophet is a fool, the spiritual man is mad,
+for the multitude of thine iniquity, and the great hatred.
+
+9:8 The watchman of Ephraim was with my God: but the prophet is a
+snare of a fowler in all his ways, and hatred in the house of his God.
+
+9:9 They have deeply corrupted themselves, as in the days of Gibeah:
+therefore he will remember their iniquity, he will visit their sins.
+
+9:10 I found Israel like grapes in the wilderness; I saw your fathers
+as the firstripe in the fig tree at her first time: but they went to
+Baalpeor, and separated themselves unto that shame; and their
+abominations were according as they loved.
+
+9:11 As for Ephraim, their glory shall fly away like a bird, from the
+birth, and from the womb, and from the conception.
+
+9:12 Though they bring up their children, yet will I bereave them,
+that there shall not be a man left: yea, woe also to them when I
+depart from them! 9:13 Ephraim, as I saw Tyrus, is planted in a
+pleasant place: but Ephraim shall bring forth his children to the
+murderer.
+
+9:14 Give them, O LORD: what wilt thou give? give them a miscarrying
+womb and dry breasts.
+
+9:15 All their wickedness is in Gilgal: for there I hated them: for
+the wickedness of their doings I will drive them out of mine house, I
+will love them no more: all their princes are revolters.
+
+9:16 Ephraim is smitten, their root is dried up, they shall bear no
+fruit: yea, though they bring forth, yet will I slay even the beloved
+fruit of their womb.
+
+9:17 My God will cast them away, because they did not hearken unto
+him: and they shall be wanderers among the nations.
+
+10:1 Israel is an empty vine, he bringeth forth fruit unto himself:
+according to the multitude of his fruit he hath increased the altars;
+according to the goodness of his land they have made goodly images.
+
+10:2 Their heart is divided; now shall they be found faulty: he shall
+break down their altars, he shall spoil their images.
+
+10:3 For now they shall say, We have no king, because we feared not
+the LORD; what then should a king do to us? 10:4 They have spoken
+words, swearing falsely in making a covenant: thus judgment springeth
+up as hemlock in the furrows of the field.
+
+10:5 The inhabitants of Samaria shall fear because of the calves of
+Bethaven: for the people thereof shall mourn over it, and the priests
+thereof that rejoiced on it, for the glory thereof, because it is
+departed from it.
+
+10:6 It shall be also carried unto Assyria for a present to king
+Jareb: Ephraim shall receive shame, and Israel shall be ashamed of his
+own counsel.
+
+10:7 As for Samaria, her king is cut off as the foam upon the water.
+
+10:8 The high places also of Aven, the sin of Israel, shall be
+destroyed: the thorn and the thistle shall come up on their altars;
+and they shall say to the mountains, Cover us; and to the hills, Fall
+on us.
+
+10:9 O Israel, thou hast sinned from the days of Gibeah: there they
+stood: the battle in Gibeah against the children of iniquity did not
+overtake them.
+
+10:10 It is in my desire that I should chastise them; and the people
+shall be gathered against them, when they shall bind themselves in
+their two furrows.
+
+10:11 And Ephraim is as an heifer that is taught, and loveth to tread
+out the corn; but I passed over upon her fair neck: I will make
+Ephraim to ride; Judah shall plow, and Jacob shall break his clods.
+
+10:12 Sow to yourselves in righteousness, reap in mercy; break up your
+fallow ground: for it is time to seek the LORD, till he come and rain
+righteousness upon you.
+
+10:13 Ye have plowed wickedness, ye have reaped iniquity; ye have
+eaten the fruit of lies: because thou didst trust in thy way, in the
+multitude of thy mighty men.
+
+10:14 Therefore shall a tumult arise among thy people, and all thy
+fortresses shall be spoiled, as Shalman spoiled Betharbel in the day
+of battle: the mother was dashed in pieces upon her children.
+
+10:15 So shall Bethel do unto you because of your great wickedness: in
+a morning shall the king of Israel utterly be cut off.
+
+11:1 When Israel was a child, then I loved him, and called my son out
+of Egypt.
+
+11:2 As they called them, so they went from them: they sacrificed unto
+Baalim, and burned incense to graven images.
+
+11:3 I taught Ephraim also to go, taking them by their arms; but they
+knew not that I healed them.
+
+11:4 I drew them with cords of a man, with bands of love: and I was to
+them as they that take off the yoke on their jaws, and I laid meat
+unto them.
+
+11:5 He shall not return into the land of Egypt, and the Assyrian
+shall be his king, because they refused to return.
+
+11:6 And the sword shall abide on his cities, and shall consume his
+branches, and devour them, because of their own counsels.
+
+11:7 And my people are bent to backsliding from me: though they called
+them to the most High, none at all would exalt him.
+
+11:8 How shall I give thee up, Ephraim? how shall I deliver thee,
+Israel? how shall I make thee as Admah? how shall I set thee as
+Zeboim? mine heart is turned within me, my repentings are kindled
+together.
+
+11:9 I will not execute the fierceness of mine anger, I will not
+return to destroy Ephraim: for I am God, and not man; the Holy One in
+the midst of thee: and I will not enter into the city.
+
+11:10 They shall walk after the LORD: he shall roar like a lion: when
+he shall roar, then the children shall tremble from the west.
+
+11:11 They shall tremble as a bird out of Egypt, and as a dove out of
+the land of Assyria: and I will place them in their houses, saith the
+LORD.
+
+11:12 Ephraim compasseth me about with lies, and the house of Israel
+with deceit: but Judah yet ruleth with God, and is faithful with the
+saints.
+
+12:1 Ephraim feedeth on wind, and followeth after the east wind: he
+daily increaseth lies and desolation; and they do make a covenant with
+the Assyrians, and oil is carried into Egypt.
+
+12:2 The LORD hath also a controversy with Judah, and will punish
+Jacob according to his ways; according to his doings will he
+recompense him.
+
+12:3 He took his brother by the heel in the womb, and by his strength
+he had power with God: 12:4 Yea, he had power over the angel, and
+prevailed: he wept, and made supplication unto him: he found him in
+Bethel, and there he spake with us; 12:5 Even the LORD God of hosts;
+the LORD is his memorial.
+
+12:6 Therefore turn thou to thy God: keep mercy and judgment and wait
+on thy God continually.
+
+12:7 He is a merchant, the balances of deceit are in his hand: he
+loveth to oppress.
+
+12:8 And Ephraim said, Yet I am become rich, I have found me out
+substance: in all my labours they shall find none iniquity in me that
+were sin.
+
+12:9 And I that am the LORD thy God from the land of Egypt will yet
+make thee to dwell in tabernacles, as in the days of the solemn feast.
+
+12:10 I have also spoken by the prophets, and I have multiplied
+visions, and used similitudes, by the ministry of the prophets.
+
+12:11 Is there iniquity in Gilead? surely they are vanity: they
+sacrifice bullocks in Gilgal; yea, their altars are as heaps in the
+furrows of the fields.
+
+12:12 And Jacob fled into the country of Syria, and Israel served for
+a wife, and for a wife he kept sheep.
+
+12:13 And by a prophet the LORD brought Israel out of Egypt, and by a
+prophet was he preserved.
+
+12:14 Ephraim provoked him to anger most bitterly: therefore shall he
+leave his blood upon him, and his reproach shall his LORD return unto
+him.
+
+13:1 When Ephraim spake trembling, he exalted himself in Israel; but
+when he offended in Baal, he died.
+
+13:2 And now they sin more and more, and have made them molten images
+of their silver, and idols according to their own understanding, all
+of it the work of the craftsmen: they say of them, Let the men that
+sacrifice kiss the calves.
+
+13:3 Therefore they shall be as the morning cloud and as the early dew
+that passeth away, as the chaff that is driven with the whirlwind out
+of the floor, and as the smoke out of the chimney.
+
+13:4 Yet I am the LORD thy God from the land of Egypt, and thou shalt
+know no god but me: for there is no saviour beside me.
+
+13:5 I did know thee in the wilderness, in the land of great drought.
+
+13:6 According to their pasture, so were they filled; they were
+filled, and their heart was exalted; therefore have they forgotten me.
+
+13:7 Therefore I will be unto them as a lion: as a leopard by the way
+will I observe them: 13:8 I will meet them as a bear that is bereaved
+of her whelps, and will rend the caul of their heart, and there will I
+devour them like a lion: the wild beast shall tear them.
+
+13:9 O Israel, thou hast destroyed thyself; but in me is thine help.
+
+13:10 I will be thy king: where is any other that may save thee in all
+thy cities? and thy judges of whom thou saidst, Give me a king and
+princes? 13:11 I gave thee a king in mine anger, and took him away in
+my wrath.
+
+13:12 The iniquity of Ephraim is bound up; his sin is hid.
+
+13:13 The sorrows of a travailing woman shall come upon him: he is an
+unwise son; for he should not stay long in the place of the breaking
+forth of children.
+
+13:14 I will ransom them from the power of the grave; I will redeem
+them from death: O death, I will be thy plagues; O grave, I will be
+thy destruction: repentance shall be hid from mine eyes.
+
+13:15 Though he be fruitful among his brethren, an east wind shall
+come, the wind of the LORD shall come up from the wilderness, and his
+spring shall become dry, and his fountain shall be dried up: he shall
+spoil the treasure of all pleasant vessels.
+
+13:16 Samaria shall become desolate; for she hath rebelled against her
+God: they shall fall by the sword: their infants shall be dashed in
+pieces, and their women with child shall be ripped up.
+
+14:1 O israel, return unto the LORD thy God; for thou hast fallen by
+thine iniquity.
+
+14:2 Take with you words, and turn to the LORD: say unto him, Take
+away all iniquity, and receive us graciously: so will we render the
+calves of our lips.
+
+14:3 Asshur shall not save us; we will not ride upon horses: neither
+will we say any more to the work of our hands, Ye are our gods: for in
+thee the fatherless findeth mercy.
+
+14:4 I will heal their backsliding, I will love them freely: for mine
+anger is turned away from him.
+
+14:5 I will be as the dew unto Israel: he shall grow as the lily, and
+cast forth his roots as Lebanon.
+
+14:6 His branches shall spread, and his beauty shall be as the olive
+tree, and his smell as Lebanon.
+
+14:7 They that dwell under his shadow shall return; they shall revive
+as the corn, and grow as the vine: the scent thereof shall be as the
+wine of Lebanon.
+
+14:8 Ephraim shall say, What have I to do any more with idols? I have
+heard him, and observed him: I am like a green fir tree. From me is
+thy fruit found.
+
+14:9 Who is wise, and he shall understand these things? prudent, and
+he shall know them? for the ways of the LORD are right, and the just
+shall walk in them: but the transgressors shall fall therein.
+
+
+
+
+Joel
+
+
+1:1 The word of the LORD that came to Joel the son of Pethuel.
+
+1:2 Hear this, ye old men, and give ear, all ye inhabitants of the land.
+
+Hath this been in your days, or even in the days of your fathers? 1:3
+Tell ye your children of it, and let your children tell their
+children, and their children another generation.
+
+1:4 That which the palmerworm hath left hath the locust eaten; and
+that which the locust hath left hath the cankerworm eaten; and that
+which the cankerworm hath left hath the caterpiller eaten.
+
+1:5 Awake, ye drunkards, and weep; and howl, all ye drinkers of wine,
+because of the new wine; for it is cut off from your mouth.
+
+1:6 For a nation is come up upon my land, strong, and without number,
+whose teeth are the teeth of a lion, and he hath the cheek teeth of a
+great lion.
+
+1:7 He hath laid my vine waste, and barked my fig tree: he hath made
+it clean bare, and cast it away; the branches thereof are made white.
+
+1:8 Lament like a virgin girded with sackcloth for the husband of her
+youth.
+
+1:9 The meat offering and the drink offering is cut off from the house
+of the LORD; the priests, the LORD's ministers, mourn.
+
+1:10 The field is wasted, the land mourneth; for the corn is wasted:
+the new wine is dried up, the oil languisheth.
+
+1:11 Be ye ashamed, O ye husbandmen; howl, O ye vinedressers, for the
+wheat and for the barley; because the harvest of the field is
+perished.
+
+1:12 The vine is dried up, and the fig tree languisheth; the
+pomegranate tree, the palm tree also, and the apple tree, even all the
+trees of the field, are withered: because joy is withered away from
+the sons of men.
+
+1:13 Gird yourselves, and lament, ye priests: howl, ye ministers of
+the altar: come, lie all night in sackcloth, ye ministers of my God:
+for the meat offering and the drink offering is withholden from the
+house of your God.
+
+1:14 Sanctify ye a fast, call a solemn assembly, gather the elders and
+all the inhabitants of the land into the house of the LORD your God,
+and cry unto the LORD, 1:15 Alas for the day! for the day of the LORD
+is at hand, and as a destruction from the Almighty shall it come.
+
+1:16 Is not the meat cut off before our eyes, yea, joy and gladness
+from the house of our God? 1:17 The seed is rotten under their clods,
+the garners are laid desolate, the barns are broken down; for the corn
+is withered.
+
+1:18 How do the beasts groan! the herds of cattle are perplexed,
+because they have no pasture; yea, the flocks of sheep are made
+desolate.
+
+1:19 O LORD, to thee will I cry: for the fire hath devoured the
+pastures of the wilderness, and the flame hath burned all the trees of
+the field.
+
+1:20 The beasts of the field cry also unto thee: for the rivers of
+waters are dried up, and the fire hath devoured the pastures of the
+wilderness.
+
+2:1 Blow ye the trumpet in Zion, and sound an alarm in my holy
+mountain: let all the inhabitants of the land tremble: for the day of
+the LORD cometh, for it is nigh at hand; 2:2 A day of darkness and of
+gloominess, a day of clouds and of thick darkness, as the morning
+spread upon the mountains: a great people and a strong; there hath not
+been ever the like, neither shall be any more after it, even to the
+years of many generations.
+
+2:3 A fire devoureth before them; and behind them a flame burneth: the
+land is as the garden of Eden before them, and behind them a desolate
+wilderness; yea, and nothing shall escape them.
+
+2:4 The appearance of them is as the appearance of horses; and as
+horsemen, so shall they run.
+
+2:5 Like the noise of chariots on the tops of mountains shall they
+leap, like the noise of a flame of fire that devoureth the stubble, as
+a strong people set in battle array.
+
+2:6 Before their face the people shall be much pained: all faces shall
+gather blackness.
+
+2:7 They shall run like mighty men; they shall climb the wall like men
+of war; and they shall march every one on his ways, and they shall not
+break their ranks: 2:8 Neither shall one thrust another; they shall
+walk every one in his path: and when they fall upon the sword, they
+shall not be wounded.
+
+2:9 They shall run to and fro in the city; they shall run upon the
+wall, they shall climb up upon the houses; they shall enter in at the
+windows like a thief.
+
+2:10 The earth shall quake before them; the heavens shall tremble: the
+sun and the moon shall be dark, and the stars shall withdraw their
+shining: 2:11 And the LORD shall utter his voice before his army: for
+his camp is very great: for he is strong that executeth his word: for
+the day of the LORD is great and very terrible; and who can abide it?
+2:12 Therefore also now, saith the LORD, turn ye even to me with all
+your heart, and with fasting, and with weeping, and with mourning:
+2:13 And rend your heart, and not your garments, and turn unto the
+LORD your God: for he is gracious and merciful, slow to anger, and of
+great kindness, and repenteth him of the evil.
+
+2:14 Who knoweth if he will return and repent, and leave a blessing
+behind him; even a meat offering and a drink offering unto the LORD
+your God? 2:15 Blow the trumpet in Zion, sanctify a fast, call a
+solemn assembly: 2:16 Gather the people, sanctify the congregation,
+assemble the elders, gather the children, and those that suck the
+breasts: let the bridegroom go forth of his chamber, and the bride out
+of her closet.
+
+2:17 Let the priests, the ministers of the LORD, weep between the
+porch and the altar, and let them say, Spare thy people, O LORD, and
+give not thine heritage to reproach, that the heathen should rule over
+them: wherefore should they say among the people, Where is their God?
+2:18 Then will the LORD be jealous for his land, and pity his people.
+
+2:19 Yea, the LORD will answer and say unto his people, Behold, I will
+send you corn, and wine, and oil, and ye shall be satisfied therewith:
+and I will no more make you a reproach among the heathen: 2:20 But I
+will remove far off from you the northern army, and will drive him
+into a land barren and desolate, with his face toward the east sea,
+and his hinder part toward the utmost sea, and his stink shall come
+up, and his ill savour shall come up, because he hath done great
+things.
+
+2:21 Fear not, O land; be glad and rejoice: for the LORD will do great
+things.
+
+2:22 Be not afraid, ye beasts of the field: for the pastures of the
+wilderness do spring, for the tree beareth her fruit, the fig tree and
+the vine do yield their strength.
+
+2:23 Be glad then, ye children of Zion, and rejoice in the LORD your
+God: for he hath given you the former rain moderately, and he will
+cause to come down for you the rain, the former rain, and the latter
+rain in the first month.
+
+2:24 And the floors shall be full of wheat, and the vats shall
+overflow with wine and oil.
+
+2:25 And I will restore to you the years that the locust hath eaten,
+the cankerworm, and the caterpiller, and the palmerworm, my great army
+which I sent among you.
+
+2:26 And ye shall eat in plenty, and be satisfied, and praise the name
+of the LORD your God, that hath dealt wondrously with you: and my
+people shall never be ashamed.
+
+2:27 And ye shall know that I am in the midst of Israel, and that I am
+the LORD your God, and none else: and my people shall never be
+ashamed.
+
+2:28 And it shall come to pass afterward, that I will pour out my
+spirit upon all flesh; and your sons and your daughters shall
+prophesy, your old men shall dream dreams, your young men shall see
+visions: 2:29 And also upon the servants and upon the handmaids in
+those days will I pour out my spirit.
+
+2:30 And I will shew wonders in the heavens and in the earth, blood,
+and fire, and pillars of smoke.
+
+2:31 The sun shall be turned into darkness, and the moon into blood,
+before the great and terrible day of the LORD come.
+
+2:32 And it shall come to pass, that whosoever shall call on the name
+of the LORD shall be delivered: for in mount Zion and in Jerusalem
+shall be deliverance, as the LORD hath said, and in the remnant whom
+the LORD shall call.
+
+3:1 For, behold, in those days, and in that time, when I shall bring
+again the captivity of Judah and Jerusalem, 3:2 I will also gather all
+nations, and will bring them down into the valley of Jehoshaphat, and
+will plead with them there for my people and for my heritage Israel,
+whom they have scattered among the nations, and parted my land.
+
+3:3 And they have cast lots for my people; and have given a boy for an
+harlot, and sold a girl for wine, that they might drink.
+
+3:4 Yea, and what have ye to do with me, O Tyre, and Zidon, and all
+the coasts of Palestine? will ye render me a recompence? and if ye
+recompense me, swiftly and speedily will I return your recompence upon
+your own head; 3:5 Because ye have taken my silver and my gold, and
+have carried into your temples my goodly pleasant things: 3:6 The
+children also of Judah and the children of Jerusalem have ye sold unto
+the Grecians, that ye might remove them far from their border.
+
+3:7 Behold, I will raise them out of the place whither ye have sold
+them, and will return your recompence upon your own head: 3:8 And I
+will sell your sons and your daughters into the hand of the children
+of Judah, and they shall sell them to the Sabeans, to a people far
+off: for the LORD hath spoken it.
+
+3:9 Proclaim ye this among the Gentiles; Prepare war, wake up the
+mighty men, let all the men of war draw near; let them come up: 3:10
+Beat your plowshares into swords and your pruninghooks into spears:
+let the weak say, I am strong.
+
+3:11 Assemble yourselves, and come, all ye heathen, and gather
+yourselves together round about: thither cause thy mighty ones to come
+down, O LORD.
+
+3:12 Let the heathen be wakened, and come up to the valley of
+Jehoshaphat: for there will I sit to judge all the heathen round
+about.
+
+3:13 Put ye in the sickle, for the harvest is ripe: come, get you
+down; for the press is full, the fats overflow; for their wickedness
+is great.
+
+3:14 Multitudes, multitudes in the valley of decision: for the day of
+the LORD is near in the valley of decision.
+
+3:15 The sun and the moon shall be darkened, and the stars shall
+withdraw their shining.
+
+3:16 The LORD also shall roar out of Zion, and utter his voice from
+Jerusalem; and the heavens and the earth shall shake: but the LORD
+will be the hope of his people, and the strength of the children of
+Israel.
+
+3:17 So shall ye know that I am the LORD your God dwelling in Zion, my
+holy mountain: then shall Jerusalem be holy, and there shall no
+strangers pass through her any more.
+
+3:18 And it shall come to pass in that day, that the mountains shall
+drop down new wine, and the hills shall flow with milk, and all the
+rivers of Judah shall flow with waters, and a fountain shall come
+forth out of the house of the LORD, and shall water the valley of
+Shittim.
+
+3:19 Egypt shall be a desolation, and Edom shall be a desolate
+wilderness, for the violence against the children of Judah, because
+they have shed innocent blood in their land.
+
+3:20 But Judah shall dwell for ever, and Jerusalem from generation to
+generation.
+
+3:21 For I will cleanse their blood that I have not cleansed: for the
+LORD dwelleth in Zion.
+
+
+
+
+Amos
+
+
+1:1 The words of Amos, who was among the herdmen of Tekoa, which he
+saw concerning Israel in the days of Uzziah king of Judah, and in the
+days of Jeroboam the son of Joash king of Israel, two years before the
+earthquake.
+
+1:2 And he said, The LORD will roar from Zion, and utter his voice
+from Jerusalem; and the habitations of the shepherds shall mourn, and
+the top of Carmel shall wither.
+
+1:3 Thus saith the LORD; For three transgressions of Damascus, and for
+four, I will not turn away the punishment thereof; because they have
+threshed Gilead with threshing instruments of iron: 1:4 But I will
+send a fire into the house of Hazael, which shall devour the palaces
+of Benhadad.
+
+1:5 I will break also the bar of Damascus, and cut off the inhabitant
+from the plain of Aven, and him that holdeth the sceptre from the
+house of Eden: and the people of Syria shall go into captivity unto
+Kir, saith the LORD.
+
+1:6 Thus saith the LORD; For three transgressions of Gaza, and for
+four, I will not turn away the punishment thereof; because they
+carried away captive the whole captivity, to deliver them up to Edom:
+1:7 But I will send a fire on the wall of Gaza, which shall devour the
+palaces thereof: 1:8 And I will cut off the inhabitant from Ashdod,
+and him that holdeth the sceptre from Ashkelon, and I will turn mine
+hand against Ekron: and the remnant of the Philistines shall perish,
+saith the Lord GOD.
+
+1:9 Thus saith the LORD; For three transgressions of Tyrus, and for
+four, I will not turn away the punishment thereof; because they
+delivered up the whole captivity to Edom, and remembered not the
+brotherly covenant: 1:10 But I will send a fire on the wall of Tyrus,
+which shall devour the palaces thereof.
+
+1:11 Thus saith the LORD; For three transgressions of Edom, and for
+four, I will not turn away the punishment thereof; because he did
+pursue his brother with the sword, and did cast off all pity, and his
+anger did tear perpetually, and he kept his wrath for ever: 1:12 But I
+will send a fire upon Teman, which shall devour the palaces of Bozrah.
+
+1:13 Thus saith the LORD; For three transgressions of the children of
+Ammon, and for four, I will not turn away the punishment thereof;
+because they have ripped up the women with child of Gilead, that they
+might enlarge their border: 1:14 But I will kindle a fire in the wall
+of Rabbah, and it shall devour the palaces thereof, with shouting in
+the day of battle, with a tempest in the day of the whirlwind: 1:15
+And their king shall go into captivity, he and his princes together,
+saith the LORD.
+
+2:1 Thus saith the LORD; For three transgressions of Moab, and for
+four, I will not turn away the punishment thereof; because he burned
+the bones of the king of Edom into lime: 2:2 But I will send a fire
+upon Moab, and it shall devour the palaces of Kirioth: and Moab shall
+die with tumult, with shouting, and with the sound of the trumpet: 2:3
+And I will cut off the judge from the midst thereof, and will slay all
+the princes thereof with him, saith the LORD.
+
+2:4 Thus saith the LORD; For three transgressions of Judah, and for
+four, I will not turn away the punishment thereof; because they have
+despised the law of the LORD, and have not kept his commandments, and
+their lies caused them to err, after the which their fathers have
+walked: 2:5 But I will send a fire upon Judah, and it shall devour the
+palaces of Jerusalem.
+
+2:6 Thus saith the LORD; For three transgressions of Israel, and for
+four, I will not turn away the punishment thereof; because they sold
+the righteous for silver, and the poor for a pair of shoes; 2:7 That
+pant after the dust of the earth on the head of the poor, and turn
+aside the way of the meek: and a man and his father will go in unto
+the same maid, to profane my holy name: 2:8 And they lay themselves
+down upon clothes laid to pledge by every altar, and they drink the
+wine of the condemned in the house of their god.
+
+2:9 Yet destroyed I the Amorite before them, whose height was like the
+height of the cedars, and he was strong as the oaks; yet I destroyed
+his fruit from above, and his roots from beneath.
+
+2:10 Also I brought you up from the land of Egypt, and led you forty
+years through the wilderness, to possess the land of the Amorite.
+
+2:11 And I raised up of your sons for prophets, and of your young men
+for Nazarites. Is it not even thus, O ye children of Israel? saith the
+LORD.
+
+2:12 But ye gave the Nazarites wine to drink; and commanded the
+prophets, saying, Prophesy not.
+
+2:13 Behold, I am pressed under you, as a cart is pressed that is full
+of sheaves.
+
+2:14 Therefore the flight shall perish from the swift, and the strong
+shall not strengthen his force, neither shall the mighty deliver
+himself: 2:15 Neither shall he stand that handleth the bow; and he
+that is swift of foot shall not deliver himself: neither shall he that
+rideth the horse deliver himself.
+
+2:16 And he that is courageous among the mighty shall flee away naked
+in that day, saith the LORD.
+
+3:1 Hear this word that the LORD hath spoken against you, O children
+of Israel, against the whole family which I brought up from the land
+of Egypt, saying, 3:2 You only have I known of all the families of the
+earth: therefore I will punish you for all your iniquities.
+
+3:3 Can two walk together, except they be agreed? 3:4 Will a lion
+roar in the forest, when he hath no prey? will a young lion cry out of
+his den, if he have taken nothing? 3:5 Can a bird fall in a snare
+upon the earth, where no gin is for him? shall one take up a snare
+from the earth, and have taken nothing at all? 3:6 Shall a trumpet be
+blown in the city, and the people not be afraid? shall there be evil
+in a city, and the LORD hath not done it? 3:7 Surely the Lord GOD
+will do nothing, but he revealeth his secret unto his servants the
+prophets.
+
+3:8 The lion hath roared, who will not fear? the Lord GOD hath spoken,
+who can but prophesy? 3:9 Publish in the palaces at Ashdod, and in
+the palaces in the land of Egypt, and say, Assemble yourselves upon
+the mountains of Samaria, and behold the great tumults in the midst
+thereof, and the oppressed in the midst thereof.
+
+3:10 For they know not to do right, saith the LORD, who store up
+violence and robbery in their palaces.
+
+3:11 Therefore thus saith the Lord GOD; An adversary there shall be
+even round about the land; and he shall bring down thy strength from
+thee, and thy palaces shall be spoiled.
+
+3:12 Thus saith the LORD; As the shepherd taketh out of the mouth of
+the lion two legs, or a piece of an ear; so shall the children of
+Israel be taken out that dwell in Samaria in the corner of a bed, and
+in Damascus in a couch.
+
+3:13 Hear ye, and testify in the house of Jacob, saith the Lord GOD,
+the God of hosts, 3:14 That in the day that I shall visit the
+transgressions of Israel upon him I will also visit the altars of
+Bethel: and the horns of the altar shall be cut off, and fall to the
+ground.
+
+3:15 And I will smite the winter house with the summer house; and the
+houses of ivory shall perish, and the great houses shall have an end,
+saith the LORD.
+
+4:1 Hear this word, ye kine of Bashan, that are in the mountain of
+Samaria, which oppress the poor, which crush the needy, which say to
+their masters, Bring, and let us drink.
+
+4:2 The Lord GOD hath sworn by his holiness, that, lo, the days shall
+come upon you, that he will take you away with hooks, and your
+posterity with fishhooks.
+
+4:3 And ye shall go out at the breaches, every cow at that which is
+before her; and ye shall cast them into the palace, saith the LORD.
+
+4:4 Come to Bethel, and transgress; at Gilgal multiply transgression;
+and bring your sacrifices every morning, and your tithes after three
+years: 4:5 And offer a sacrifice of thanksgiving with leaven, and
+proclaim and publish the free offerings: for this liketh you, O ye
+children of Israel, saith the Lord GOD.
+
+4:6 And I also have given you cleanness of teeth in all your cities,
+and want of bread in all your places: yet have ye not returned unto
+me, saith the LORD.
+
+4:7 And also I have withholden the rain from you, when there were yet
+three months to the harvest: and I caused it to rain upon one city,
+and caused it not to rain upon another city: one piece was rained
+upon, and the piece whereupon it rained not withered.
+
+4:8 So two or three cities wandered unto one city, to drink water; but
+they were not satisfied: yet have ye not returned unto me, saith the
+LORD.
+
+4:9 I have smitten you with blasting and mildew: when your gardens and
+your vineyards and your fig trees and your olive trees increased, the
+palmerworm devoured them: yet have ye not returned unto me, saith the
+LORD.
+
+4:10 I have sent among you the pestilence after the manner of Egypt:
+your young men have I slain with the sword, and have taken away your
+horses; and I have made the stink of your camps to come up unto your
+nostrils: yet have ye not returned unto me, saith the LORD.
+
+4:11 I have overthrown some of you, as God overthrew Sodom and
+Gomorrah, and ye were as a firebrand plucked out of the burning: yet
+have ye not returned unto me, saith the LORD.
+
+4:12 Therefore thus will I do unto thee, O Israel: and because I will
+do this unto thee, prepare to meet thy God, O Israel.
+
+4:13 For, lo, he that formeth the mountains, and createth the wind,
+and declareth unto man what is his thought, that maketh the morning
+darkness, and treadeth upon the high places of the earth, The LORD,
+The God of hosts, is his name.
+
+5:1 Hear ye this word which I take up against you, even a lamentation,
+O house of Israel.
+
+5:2 The virgin of Israel is fallen; she shall no more rise: she is
+forsaken upon her land; there is none to raise her up.
+
+5:3 For thus saith the Lord GOD; The city that went out by a thousand
+shall leave an hundred, and that which went forth by an hundred shall
+leave ten, to the house of Israel.
+
+5:4 For thus saith the LORD unto the house of Israel, Seek ye me, and
+ye shall live: 5:5 But seek not Bethel, nor enter into Gilgal, and
+pass not to Beersheba: for Gilgal shall surely go into captivity, and
+Bethel shall come to nought.
+
+5:6 Seek the LORD, and ye shall live; lest he break out like fire in
+the house of Joseph, and devour it, and there be none to quench it in
+Bethel.
+
+5:7 Ye who turn judgment to wormwood, and leave off righteousness in
+the earth, 5:8 Seek him that maketh the seven stars and Orion, and
+turneth the shadow of death into the morning, and maketh the day dark
+with night: that calleth for the waters of the sea, and poureth them
+out upon the face of the earth: The LORD is his name: 5:9 That
+strengtheneth the spoiled against the strong, so that the spoiled
+shall come against the fortress.
+
+5:10 They hate him that rebuketh in the gate, and they abhor him that
+speaketh uprightly.
+
+5:11 Forasmuch therefore as your treading is upon the poor, and ye
+take from him burdens of wheat: ye have built houses of hewn stone,
+but ye shall not dwell in them; ye have planted pleasant vineyards,
+but ye shall not drink wine of them.
+
+5:12 For I know your manifold transgressions and your mighty sins:
+they afflict the just, they take a bribe, and they turn aside the poor
+in the gate from their right.
+
+5:13 Therefore the prudent shall keep silence in that time; for it is
+an evil time.
+
+5:14 Seek good, and not evil, that ye may live: and so the LORD, the
+God of hosts, shall be with you, as ye have spoken.
+
+5:15 Hate the evil, and love the good, and establish judgment in the
+gate: it may be that the LORD God of hosts will be gracious unto the
+remnant of Joseph.
+
+5:16 Therefore the LORD, the God of hosts, the LORD, saith thus;
+Wailing shall be in all streets; and they shall say in all the
+highways, Alas! alas! and they shall call the husbandman to mourning,
+and such as are skilful of lamentation to wailing.
+
+5:17 And in all vineyards shall be wailing: for I will pass through
+thee, saith the LORD.
+
+5:18 Woe unto you that desire the day of the LORD! to what end is it
+for you? the day of the LORD is darkness, and not light.
+
+5:19 As if a man did flee from a lion, and a bear met him; or went
+into the house, and leaned his hand on the wall, and a serpent bit
+him.
+
+5:20 Shall not the day of the LORD be darkness, and not light? even
+very dark, and no brightness in it? 5:21 I hate, I despise your feast
+days, and I will not smell in your solemn assemblies.
+
+5:22 Though ye offer me burnt offerings and your meat offerings, I
+will not accept them: neither will I regard the peace offerings of
+your fat beasts.
+
+5:23 Take thou away from me the noise of thy songs; for I will not
+hear the melody of thy viols.
+
+5:24 But let judgment run down as waters, and righteousness as a
+mighty stream.
+
+5:25 Have ye offered unto me sacrifices and offerings in the
+wilderness forty years, O house of Israel? 5:26 But ye have borne the
+tabernacle of your Moloch and Chiun your images, the star of your god,
+which ye made to yourselves.
+
+5:27 Therefore will I cause you to go into captivity beyond Damascus,
+saith the LORD, whose name is The God of hosts.
+
+6:1 Woe to them that are at ease in Zion, and trust in the mountain of
+Samaria, which are named chief of the nations, to whom the house of
+Israel came! 6:2 Pass ye unto Calneh, and see; and from thence go ye
+to Hamath the great: then go down to Gath of the Philistines: be they
+better than these kingdoms? or their border greater than your border?
+6:3 Ye that put far away the evil day, and cause the seat of violence
+to come near; 6:4 That lie upon beds of ivory, and stretch themselves
+upon their couches, and eat the lambs out of the flock, and the calves
+out of the midst of the stall; 6:5 That chant to the sound of the
+viol, and invent to themselves instruments of musick, like David; 6:6
+That drink wine in bowls, and anoint themselves with the chief
+ointments: but they are not grieved for the affliction of Joseph.
+
+6:7 Therefore now shall they go captive with the first that go
+captive, and the banquet of them that stretched themselves shall be
+removed.
+
+6:8 The Lord GOD hath sworn by himself, saith the LORD the God of
+hosts, I abhor the excellency of Jacob, and hate his palaces:
+therefore will I deliver up the city with all that is therein.
+
+6:9 And it shall come to pass, if there remain ten men in one house,
+that they shall die.
+
+6:10 And a man's uncle shall take him up, and he that burneth him, to
+bring out the bones out of the house, and shall say unto him that is
+by the sides of the house, Is there yet any with thee? and he shall
+say, No. Then shall he say, Hold thy tongue: for we may not make
+mention of the name of the LORD.
+
+6:11 For, behold, the LORD commandeth, and he will smite the great
+house with breaches, and the little house with clefts.
+
+6:12 Shall horses run upon the rock? will one plow there with oxen?
+for ye have turned judgment into gall, and the fruit of righteousness
+into hemlock: 6:13 Ye which rejoice in a thing of nought, which say,
+Have we not taken to us horns by our own strength? 6:14 But, behold,
+I will raise up against you a nation, O house of Israel, saith the
+LORD the God of hosts; and they shall afflict you from the entering in
+of Hemath unto the river of the wilderness.
+
+7:1 Thus hath the Lord GOD shewed unto me; and, behold, he formed
+grasshoppers in the beginning of the shooting up of the latter growth;
+and, lo, it was the latter growth after the king's mowings.
+
+7:2 And it came to pass, that when they had made an end of eating the
+grass of the land, then I said, O Lord GOD, forgive, I beseech thee:
+by whom shall Jacob arise? for he is small.
+
+7:3 The LORD repented for this: It shall not be, saith the LORD.
+
+7:4 Thus hath the Lord GOD shewed unto me: and, behold, the Lord GOD
+called to contend by fire, and it devoured the great deep, and did eat
+up a part.
+
+7:5 Then said I, O Lord GOD, cease, I beseech thee: by whom shall
+Jacob arise? for he is small.
+
+7:6 The LORD repented for this: This also shall not be, saith the Lord
+GOD.
+
+7:7 Thus he shewed me: and, behold, the LORD stood upon a wall made by
+a plumbline, with a plumbline in his hand.
+
+7:8 And the LORD said unto me, Amos, what seest thou? And I said, A
+plumbline. Then said the LORD, Behold, I will set a plumbline in the
+midst of my people Israel: I will not again pass by them any more: 7:9
+And the high places of Isaac shall be desolate, and the sanctuaries of
+Israel shall be laid waste; and I will rise against the house of
+Jeroboam with the sword.
+
+7:10 Then Amaziah the priest of Bethel sent to Jeroboam king of
+Israel, saying, Amos hath conspired against thee in the midst of the
+house of Israel: the land is not able to bear all his words.
+
+7:11 For thus Amos saith, Jeroboam shall die by the sword, and Israel
+shall surely be led away captive out of their own land.
+
+7:12 Also Amaziah said unto Amos, O thou seer, go, flee thee away into
+the land of Judah, and there eat bread, and prophesy there: 7:13 But
+prophesy not again any more at Bethel: for it is the king's chapel,
+and it is the king's court.
+
+7:14 Then answered Amos, and said to Amaziah, I was no prophet,
+neither was I a prophet's son; but I was an herdman, and a gatherer of
+sycomore fruit: 7:15 And the LORD took me as I followed the flock, and
+the LORD said unto me, Go, prophesy unto my people Israel.
+
+7:16 Now therefore hear thou the word of the LORD: Thou sayest,
+Prophesy not against Israel, and drop not thy word against the house
+of Isaac.
+
+7:17 Therefore thus saith the LORD; Thy wife shall be an harlot in the
+city, and thy sons and thy daughters shall fall by the sword, and thy
+land shall be divided by line; and thou shalt die in a polluted land:
+and Israel shall surely go into captivity forth of his land.
+
+8:1 Thus hath the Lord GOD shewed unto me: and behold a basket of
+summer fruit.
+
+8:2 And he said, Amos, what seest thou? And I said, A basket of summer
+fruit. Then said the LORD unto me, The end is come upon my people of
+Israel; I will not again pass by them any more.
+
+8:3 And the songs of the temple shall be howlings in that day, saith
+the Lord GOD: there shall be many dead bodies in every place; they
+shall cast them forth with silence.
+
+8:4 Hear this, O ye that swallow up the needy, even to make the poor
+of the land to fail, 8:5 Saying, When will the new moon be gone, that
+we may sell corn? and the sabbath, that we may set forth wheat, making
+the ephah small, and the shekel great, and falsifying the balances by
+deceit? 8:6 That we may buy the poor for silver, and the needy for a
+pair of shoes; yea, and sell the refuse of the wheat? 8:7 The LORD
+hath sworn by the excellency of Jacob, Surely I will never forget any
+of their works.
+
+8:8 Shall not the land tremble for this, and every one mourn that
+dwelleth therein? and it shall rise up wholly as a flood; and it shall
+be cast out and drowned, as by the flood of Egypt.
+
+8:9 And it shall come to pass in that day, saith the Lord GOD, that I
+will cause the sun to go down at noon, and I will darken the earth in
+the clear day: 8:10 And I will turn your feasts into mourning, and all
+your songs into lamentation; and I will bring up sackcloth upon all
+loins, and baldness upon every head; and I will make it as the
+mourning of an only son, and the end thereof as a bitter day.
+
+8:11 Behold, the days come, saith the Lord GOD, that I will send a
+famine in the land, not a famine of bread, nor a thirst for water, but
+of hearing the words of the LORD: 8:12 And they shall wander from sea
+to sea, and from the north even to the east, they shall run to and fro
+to seek the word of the LORD, and shall not find it.
+
+8:13 In that day shall the fair virgins and young men faint for
+thirst.
+
+8:14 They that swear by the sin of Samaria, and say, Thy god, O Dan,
+liveth; and, The manner of Beersheba liveth; even they shall fall, and
+never rise up again.
+
+9:1 I saw the LORD standing upon the altar: and he said, Smite the
+lintel of the door, that the posts may shake: and cut them in the
+head, all of them; and I will slay the last of them with the sword: he
+that fleeth of them shall not flee away, and he that escapeth of them
+shall not be delivered.
+
+9:2 Though they dig into hell, thence shall mine hand take them;
+though they climb up to heaven, thence will I bring them down: 9:3 And
+though they hide themselves in the top of Carmel, I will search and
+take them out thence; and though they be hid from my sight in the
+bottom of the sea, thence will I command the serpent, and he shall
+bite them: 9:4 And though they go into captivity before their enemies,
+thence will I command the sword, and it shall slay them: and I will
+set mine eyes upon them for evil, and not for good.
+
+9:5 And the Lord GOD of hosts is he that toucheth the land, and it
+shall melt, and all that dwell therein shall mourn: and it shall rise
+up wholly like a flood; and shall be drowned, as by the flood of
+Egypt.
+
+9:6 It is he that buildeth his stories in the heaven, and hath founded
+his troop in the earth; he that calleth for the waters of the sea, and
+poureth them out upon the face of the earth: The LORD is his name.
+
+9:7 Are ye not as children of the Ethiopians unto me, O children of
+Israel? saith the LORD. Have not I brought up Israel out of the land
+of Egypt? and the Philistines from Caphtor, and the Syrians from Kir?
+9:8 Behold, the eyes of the Lord GOD are upon the sinful kingdom, and
+I will destroy it from off the face of the earth; saving that I will
+not utterly destroy the house of Jacob, saith the LORD.
+
+9:9 For, lo, I will command, and I will sift the house of Israel among
+all nations, like as corn is sifted in a sieve, yet shall not the
+least grain fall upon the earth.
+
+9:10 All the sinners of my people shall die by the sword, which say,
+The evil shall not overtake nor prevent us.
+
+9:11 In that day will I raise up the tabernacle of David that is
+fallen, and close up the breaches thereof; and I will raise up his
+ruins, and I will build it as in the days of old: 9:12 That they may
+possess the remnant of Edom, and of all the heathen, which are called
+by my name, saith the LORD that doeth this.
+
+9:13 Behold, the days come, saith the LORD, that the plowman shall
+overtake the reaper, and the treader of grapes him that soweth seed;
+and the mountains shall drop sweet wine, and all the hills shall melt.
+
+9:14 And I will bring again the captivity of my people of Israel, and
+they shall build the waste cities, and inhabit them; and they shall
+plant vineyards, and drink the wine thereof; they shall also make
+gardens, and eat the fruit of them.
+
+9:15 And I will plant them upon their land, and they shall no more be
+pulled up out of their land which I have given them, saith the LORD
+thy God.
+
+
+
+
+Obadiah
+
+
+1:1 The vision of Obadiah. Thus saith the Lord GOD concerning Edom;
+We have heard a rumour from the LORD, and an ambassador is sent among
+the heathen, Arise ye, and let us rise up against her in battle.
+
+1:2 Behold, I have made thee small among the heathen: thou art greatly
+despised.
+
+1:3 The pride of thine heart hath deceived thee, thou that dwellest in
+the clefts of the rock, whose habitation is high; that saith in his
+heart, Who shall bring me down to the ground? 1:4 Though thou exalt
+thyself as the eagle, and though thou set thy nest among the stars,
+thence will I bring thee down, saith the LORD.
+
+1:5 If thieves came to thee, if robbers by night, (how art thou cut
+off!) would they not have stolen till they had enough? if the
+grapegatherers came to thee, would they not leave some grapes? 1:6
+How are the things of Esau searched out! how are his hidden things
+sought up! 1:7 All the men of thy confederacy have brought thee even
+to the border: the men that were at peace with thee have deceived
+thee, and prevailed against thee; that they eat thy bread have laid a
+wound under thee: there is none understanding in him.
+
+1:8 Shall I not in that day, saith the LORD, even destroy the wise men
+out of Edom, and understanding out of the mount of Esau? 1:9 And thy
+mighty men, O Teman, shall be dismayed, to the end that every one of
+the mount of Esau may be cut off by slaughter.
+
+1:10 For thy violence against thy brother Jacob shame shall cover
+thee, and thou shalt be cut off for ever.
+
+1:11 In the day that thou stoodest on the other side, in the day that
+the strangers carried away captive his forces, and foreigners entered
+into his gates, and cast lots upon Jerusalem, even thou wast as one of
+them.
+
+1:12 But thou shouldest not have looked on the day of thy brother in
+the day that he became a stranger; neither shouldest thou have
+rejoiced over the children of Judah in the day of their destruction;
+neither shouldest thou have spoken proudly in the day of distress.
+
+1:13 Thou shouldest not have entered into the gate of my people in the
+day of their calamity; yea, thou shouldest not have looked on their
+affliction in the day of their calamity, nor have laid hands on their
+substance in the day of their calamity; 1:14 Neither shouldest thou
+have stood in the crossway, to cut off those of his that did escape;
+neither shouldest thou have delivered up those of his that did remain
+in the day of distress.
+
+1:15 For the day of the LORD is near upon all the heathen: as thou
+hast done, it shall be done unto thee: thy reward shall return upon
+thine own head.
+
+1:16 For as ye have drunk upon my holy mountain, so shall all the
+heathen drink continually, yea, they shall drink, and they shall
+swallow down, and they shall be as though they had not been.
+
+1:17 But upon mount Zion shall be deliverance, and there shall be
+holiness; and the house of Jacob shall possess their possessions.
+
+1:18 And the house of Jacob shall be a fire, and the house of Joseph a
+flame, and the house of Esau for stubble, and they shall kindle in
+them, and devour them; and there shall not be any remaining of the
+house of Esau; for the LORD hath spoken it.
+
+1:19 And they of the south shall possess the mount of Esau; and they
+of the plain the Philistines: and they shall possess the fields of
+Ephraim, and the fields of Samaria: and Benjamin shall possess Gilead.
+
+1:20 And the captivity of this host of the children of Israel shall
+possess that of the Canaanites, even unto Zarephath; and the captivity
+of Jerusalem, which is in Sepharad, shall possess the cities of the
+south.
+
+1:21 And saviours shall come up on mount Zion to judge the mount of
+Esau; and the kingdom shall be the LORD's.
+
+
+
+
+Jonah
+
+
+1:1 Now the word of the LORD came unto Jonah the son of Amittai,
+saying, 1:2 Arise, go to Nineveh, that great city, and cry against it;
+for their wickedness is come up before me.
+
+1:3 But Jonah rose up to flee unto Tarshish from the presence of the
+LORD, and went down to Joppa; and he found a ship going to Tarshish:
+so he paid the fare thereof, and went down into it, to go with them
+unto Tarshish from the presence of the LORD.
+
+1:4 But the LORD sent out a great wind into the sea, and there was a
+mighty tempest in the sea, so that the ship was like to be broken.
+
+1:5 Then the mariners were afraid, and cried every man unto his god,
+and cast forth the wares that were in the ship into the sea, to
+lighten it of them. But Jonah was gone down into the sides of the
+ship; and he lay, and was fast asleep.
+
+1:6 So the shipmaster came to him, and said unto him, What meanest
+thou, O sleeper? arise, call upon thy God, if so be that God will
+think upon us, that we perish not.
+
+1:7 And they said every one to his fellow, Come, and let us cast lots,
+that we may know for whose cause this evil is upon us. So they cast
+lots, and the lot fell upon Jonah.
+
+1:8 Then said they unto him, Tell us, we pray thee, for whose cause
+this evil is upon us; What is thine occupation? and whence comest
+thou? what is thy country? and of what people art thou? 1:9 And he
+said unto them, I am an Hebrew; and I fear the LORD, the God of
+heaven, which hath made the sea and the dry land.
+
+1:10 Then were the men exceedingly afraid, and said unto him. Why hast
+thou done this? For the men knew that he fled from the presence of the
+LORD, because he had told them.
+
+1:11 Then said they unto him, What shall we do unto thee, that the sea
+may be calm unto us? for the sea wrought, and was tempestuous.
+
+1:12 And he said unto them, Take me up, and cast me forth into the
+sea; so shall the sea be calm unto you: for I know that for my sake
+this great tempest is upon you.
+
+1:13 Nevertheless the men rowed hard to bring it to the land; but they
+could not: for the sea wrought, and was tempestuous against them.
+
+1:14 Wherefore they cried unto the LORD, and said, We beseech thee, O
+LORD, we beseech thee, let us not perish for this man's life, and lay
+not upon us innocent blood: for thou, O LORD, hast done as it pleased
+thee.
+
+1:15 So they look up Jonah, and cast him forth into the sea: and the
+sea ceased from her raging.
+
+1:16 Then the men feared the LORD exceedingly, and offered a sacrifice
+unto the LORD, and made vows.
+
+1:17 Now the LORD had prepared a great fish to swallow up Jonah. And
+Jonah was in the belly of the fish three days and three nights.
+
+2:1 Then Jonah prayed unto the LORD his God out of the fish's belly,
+2:2 And said, I cried by reason of mine affliction unto the LORD, and
+he heard me; out of the belly of hell cried I, and thou heardest my
+voice.
+
+2:3 For thou hadst cast me into the deep, in the midst of the seas;
+and the floods compassed me about: all thy billows and thy waves
+passed over me.
+
+2:4 Then I said, I am cast out of thy sight; yet I will look again
+toward thy holy temple.
+
+2:5 The waters compassed me about, even to the soul: the depth closed
+me round about, the weeds were wrapped about my head.
+
+2:6 I went down to the bottoms of the mountains; the earth with her
+bars was about me for ever: yet hast thou brought up my life from
+corruption, O LORD my God.
+
+2:7 When my soul fainted within me I remembered the LORD: and my
+prayer came in unto thee, into thine holy temple.
+
+2:8 They that observe lying vanities forsake their own mercy.
+
+2:9 But I will sacrifice unto thee with the voice of thanksgiving; I
+will pay that that I have vowed. Salvation is of the LORD.
+
+2:10 And the LORD spake unto the fish, and it vomited out Jonah upon
+the dry land.
+
+3:1 And the word of the LORD came unto Jonah the second time, saying,
+3:2 Arise, go unto Nineveh, that great city, and preach unto it the
+preaching that I bid thee.
+
+3:3 So Jonah arose, and went unto Nineveh, according to the word of
+the LORD. Now Nineveh was an exceeding great city of three days'
+journey.
+
+3:4 And Jonah began to enter into the city a day's journey, and he
+cried, and said, Yet forty days, and Nineveh shall be overthrown.
+
+3:5 So the people of Nineveh believed God, and proclaimed a fast, and
+put on sackcloth, from the greatest of them even to the least of them.
+
+3:6 For word came unto the king of Nineveh, and he arose from his
+throne, and he laid his robe from him, and covered him with sackcloth,
+and sat in ashes.
+
+3:7 And he caused it to be proclaimed and published through Nineveh by
+the decree of the king and his nobles, saying, Let neither man nor
+beast, herd nor flock, taste any thing: let them not feed, nor drink
+water: 3:8 But let man and beast be covered with sackcloth, and cry
+mightily unto God: yea, let them turn every one from his evil way, and
+from the violence that is in their hands.
+
+3:9 Who can tell if God will turn and repent, and turn away from his
+fierce anger, that we perish not? 3:10 And God saw their works, that
+they turned from their evil way; and God repented of the evil, that he
+had said that he would do unto them; and he did it not.
+
+4:1 But it displeased Jonah exceedingly, and he was very angry.
+
+4:2 And he prayed unto the LORD, and said, I pray thee, O LORD, was
+not this my saying, when I was yet in my country? Therefore I fled
+before unto Tarshish: for I knew that thou art a gracious God, and
+merciful, slow to anger, and of great kindness, and repentest thee of
+the evil.
+
+4:3 Therefore now, O LORD, take, I beseech thee, my life from me; for
+it is better for me to die than to live.
+
+4:4 Then said the LORD, Doest thou well to be angry? 4:5 So Jonah
+went out of the city, and sat on the east side of the city, and there
+made him a booth, and sat under it in the shadow, till he might see
+what would become of the city.
+
+4:6 And the LORD God prepared a gourd, and made it to come up over
+Jonah, that it might be a shadow over his head, to deliver him from
+his grief. So Jonah was exceeding glad of the gourd.
+
+4:7 But God prepared a worm when the morning rose the next day, and it
+smote the gourd that it withered.
+
+4:8 And it came to pass, when the sun did arise, that God prepared a
+vehement east wind; and the sun beat upon the head of Jonah, that he
+fainted, and wished in himself to die, and said, It is better for me
+to die than to live.
+
+4:9 And God said to Jonah, Doest thou well to be angry for the gourd?
+And he said, I do well to be angry, even unto death.
+
+4:10 Then said the LORD, Thou hast had pity on the gourd, for the
+which thou hast not laboured, neither madest it grow; which came up in
+a night, and perished in a night: 4:11 And should not I spare Nineveh,
+that great city, wherein are more then sixscore thousand persons that
+cannot discern between their right hand and their left hand; and also
+much cattle?
+
+
+
+
+Micah
+
+
+1:1 The word of the LORD that came to Micah the Morasthite in the
+days of Jotham, Ahaz, and Hezekiah, kings of Judah, which he saw
+concerning Samaria and Jerusalem.
+
+1:2 Hear, all ye people; hearken, O earth, and all that therein is:
+and let the Lord GOD be witness against you, the LORD from his holy
+temple.
+
+1:3 For, behold, the LORD cometh forth out of his place, and will come
+down, and tread upon the high places of the earth.
+
+1:4 And the mountains shall be molten under him, and the valleys shall
+be cleft, as wax before the fire, and as the waters that are poured
+down a steep place.
+
+1:5 For the transgression of Jacob is all this, and for the sins of
+the house of Israel. What is the transgression of Jacob? is it not
+Samaria? and what are the high places of Judah? are they not
+Jerusalem? 1:6 Therefore I will make Samaria as an heap of the field,
+and as plantings of a vineyard: and I will pour down the stones
+thereof into the valley, and I will discover the foundations thereof.
+
+1:7 And all the graven images thereof shall be beaten to pieces, and
+all the hires thereof shall be burned with the fire, and all the idols
+thereof will I lay desolate: for she gathered it of the hire of an
+harlot, and they shall return to the hire of an harlot.
+
+1:8 Therefore I will wail and howl, I will go stripped and naked: I
+will make a wailing like the dragons, and mourning as the owls.
+
+1:9 For her wound is incurable; for it is come unto Judah; he is come
+unto the gate of my people, even to Jerusalem.
+
+1:10 Declare ye it not at Gath, weep ye not at all: in the house of
+Aphrah roll thyself in the dust.
+
+1:11 Pass ye away, thou inhabitant of Saphir, having thy shame naked:
+the inhabitant of Zaanan came not forth in the mourning of Bethezel;
+he shall receive of you his standing.
+
+1:12 For the inhabitant of Maroth waited carefully for good: but evil
+came down from the LORD unto the gate of Jerusalem.
+
+1:13 O thou inhabitant of Lachish, bind the chariot to the swift
+beast: she is the beginning of the sin to the daughter of Zion: for
+the transgressions of Israel were found in thee.
+
+1:14 Therefore shalt thou give presents to Moreshethgath: the houses
+of Achzib shall be a lie to the kings of Israel.
+
+1:15 Yet will I bring an heir unto thee, O inhabitant of Mareshah: he
+shall come unto Adullam the glory of Israel.
+
+1:16 Make thee bald, and poll thee for thy delicate children; enlarge
+thy baldness as the eagle; for they are gone into captivity from thee.
+
+2:1 Woe to them that devise iniquity, and work evil upon their beds!
+when the morning is light, they practise it, because it is in the
+power of their hand.
+
+2:2 And they covet fields, and take them by violence; and houses, and
+take them away: so they oppress a man and his house, even a man and
+his heritage.
+
+2:3 Therefore thus saith the LORD; Behold, against this family do I
+devise an evil, from which ye shall not remove your necks; neither
+shall ye go haughtily: for this time is evil.
+
+2:4 In that day shall one take up a parable against you, and lament
+with a doleful lamentation, and say, We be utterly spoiled: he hath
+changed the portion of my people: how hath he removed it from me!
+turning away he hath divided our fields.
+
+2:5 Therefore thou shalt have none that shall cast a cord by lot in
+the congregation of the LORD.
+
+2:6 Prophesy ye not, say they to them that prophesy: they shall not
+prophesy to them, that they shall not take shame.
+
+2:7 O thou that art named the house of Jacob, is the spirit of the
+LORD straitened? are these his doings? do not my words do good to him
+that walketh uprightly? 2:8 Even of late my people is risen up as an
+enemy: ye pull off the robe with the garment from them that pass by
+securely as men averse from war.
+
+2:9 The women of my people have ye cast out from their pleasant
+houses; from their children have ye taken away my glory for ever.
+
+2:10 Arise ye, and depart; for this is not your rest: because it is
+polluted, it shall destroy you, even with a sore destruction.
+
+2:11 If a man walking in the spirit and falsehood do lie, saying, I
+will prophesy unto thee of wine and of strong drink; he shall even be
+the prophet of this people.
+
+2:12 I will surely assemble, O Jacob, all of thee; I will surely
+gather the remnant of Israel; I will put them together as the sheep of
+Bozrah, as the flock in the midst of their fold: they shall make great
+noise by reason of the multitude of men.
+
+2:13 The breaker is come up before them: they have broken up, and have
+passed through the gate, and are gone out by it: and their king shall
+pass before them, and the LORD on the head of them.
+
+3:1 And I said, Hear, I pray you, O heads of Jacob, and ye princes of
+the house of Israel; Is it not for you to know judgment? 3:2 Who hate
+the good, and love the evil; who pluck off their skin from off them,
+and their flesh from off their bones; 3:3 Who also eat the flesh of my
+people, and flay their skin from off them; and they break their bones,
+and chop them in pieces, as for the pot, and as flesh within the
+caldron.
+
+3:4 Then shall they cry unto the LORD, but he will not hear them: he
+will even hide his face from them at that time, as they have behaved
+themselves ill in their doings.
+
+3:5 Thus saith the LORD concerning the prophets that make my people
+err, that bite with their teeth, and cry, Peace; and he that putteth
+not into their mouths, they even prepare war against him.
+
+3:6 Therefore night shall be unto you, that ye shall not have a
+vision; and it shall be dark unto you, that ye shall not divine; and
+the sun shall go down over the prophets, and the day shall be dark
+over them.
+
+3:7 Then shall the seers be ashamed, and the diviners confounded: yea,
+they shall all cover their lips; for there is no answer of God.
+
+3:8 But truly I am full of power by the spirit of the LORD, and of
+judgment, and of might, to declare unto Jacob his transgression, and
+to Israel his sin.
+
+3:9 Hear this, I pray you, ye heads of the house of Jacob, and princes
+of the house of Israel, that abhor judgment, and pervert all equity.
+
+3:10 They build up Zion with blood, and Jerusalem with iniquity.
+
+3:11 The heads thereof judge for reward, and the priests thereof teach
+for hire, and the prophets thereof divine for money: yet will they
+lean upon the LORD, and say, Is not the LORD among us? none evil can
+come upon us.
+
+3:12 Therefore shall Zion for your sake be plowed as a field, and
+Jerusalem shall become heaps, and the mountain of the house as the
+high places of the forest.
+
+4:1 But in the last days it shall come to pass, that the mountain of
+the house of the LORD shall be established in the top of the
+mountains, and it shall be exalted above the hills; and people shall
+flow unto it.
+
+4:2 And many nations shall come, and say, Come, and let us go up to
+the mountain of the LORD, and to the house of the God of Jacob; and he
+will teach us of his ways, and we will walk in his paths: for the law
+shall go forth of Zion, and the word of the LORD from Jerusalem.
+
+4:3 And he shall judge among many people, and rebuke strong nations
+afar off; and they shall beat their swords into plowshares, and their
+spears into pruninghooks: nation shall not lift up a sword against
+nation, neither shall they learn war any more.
+
+4:4 But they shall sit every man under his vine and under his fig
+tree; and none shall make them afraid: for the mouth of the LORD of
+hosts hath spoken it.
+
+4:5 For all people will walk every one in the name of his god, and we
+will walk in the name of the LORD our God for ever and ever.
+
+4:6 In that day, saith the LORD, will I assemble her that halteth, and
+I will gather her that is driven out, and her that I have afflicted;
+4:7 And I will make her that halted a remnant, and her that was cast
+far off a strong nation: and the LORD shall reign over them in mount
+Zion from henceforth, even for ever.
+
+4:8 And thou, O tower of the flock, the strong hold of the daughter of
+Zion, unto thee shall it come, even the first dominion; the kingdom
+shall come to the daughter of Jerusalem.
+
+4:9 Now why dost thou cry out aloud? is there no king in thee? is thy
+counsellor perished? for pangs have taken thee as a woman in travail.
+
+4:10 Be in pain, and labour to bring forth, O daughter of Zion, like a
+woman in travail: for now shalt thou go forth out of the city, and
+thou shalt dwell in the field, and thou shalt go even to Babylon;
+there shalt thou be delivered; there the LORD shall redeem thee from
+the hand of thine enemies.
+
+4:11 Now also many nations are gathered against thee, that say, Let
+her be defiled, and let our eye look upon Zion.
+
+4:12 But they know not the thoughts of the LORD, neither understand
+they his counsel: for he shall gather them as the sheaves into the
+floor.
+
+4:13 Arise and thresh, O daughter of Zion: for I will make thine horn
+iron, and I will make thy hoofs brass: and thou shalt beat in pieces
+many people: and I will consecrate their gain unto the LORD, and their
+substance unto the Lord of the whole earth.
+
+5:1 Now gather thyself in troops, O daughter of troops: he hath laid
+siege against us: they shall smite the judge of Israel with a rod upon
+the cheek.
+
+5:2 But thou, Bethlehem Ephratah, though thou be little among the
+thousands of Judah, yet out of thee shall he come forth unto me that
+is to be ruler in Israel; whose goings forth have been from of old,
+from everlasting.
+
+5:3 Therefore will he give them up, until the time that she which
+travaileth hath brought forth: then the remnant of his brethren shall
+return unto the children of Israel.
+
+5:4 And he shall stand and feed in the strength of the LORD, in the
+majesty of the name of the LORD his God; and they shall abide: for now
+shall he be great unto the ends of the earth.
+
+5:5 And this man shall be the peace, when the Assyrian shall come into
+our land: and when he shall tread in our palaces, then shall we raise
+against him seven shepherds, and eight principal men.
+
+5:6 And they shall waste the land of Assyria with the sword, and the
+land of Nimrod in the entrances thereof: thus shall he deliver us from
+the Assyrian, when he cometh into our land, and when he treadeth
+within our borders.
+
+5:7 And the remnant of Jacob shall be in the midst of many people as a
+dew from the LORD, as the showers upon the grass, that tarrieth not
+for man, nor waiteth for the sons of men.
+
+5:8 And the remnant of Jacob shall be among the Gentiles in the midst
+of many people as a lion among the beasts of the forest, as a young
+lion among the flocks of sheep: who, if he go through, both treadeth
+down, and teareth in pieces, and none can deliver.
+
+5:9 Thine hand shall be lifted up upon thine adversaries, and all
+thine enemies shall be cut off.
+
+5:10 And it shall come to pass in that day, saith the LORD, that I
+will cut off thy horses out of the midst of thee, and I will destroy
+thy chariots: 5:11 And I will cut off the cities of thy land, and
+throw down all thy strong holds: 5:12 And I will cut off witchcrafts
+out of thine hand; and thou shalt have no more soothsayers: 5:13 Thy
+graven images also will I cut off, and thy standing images out of the
+midst of thee; and thou shalt no more worship the work of thine hands.
+
+5:14 And I will pluck up thy groves out of the midst of thee: so will
+I destroy thy cities.
+
+5:15 And I will execute vengeance in anger and fury upon the heathen,
+such as they have not heard.
+
+6:1 Hear ye now what the LORD saith; Arise, contend thou before the
+mountains, and let the hills hear thy voice.
+
+6:2 Hear ye, O mountains, the LORD's controversy, and ye strong
+foundations of the earth: for the LORD hath a controversy with his
+people, and he will plead with Israel.
+
+6:3 O my people, what have I done unto thee? and wherein have I
+wearied thee? testify against me.
+
+6:4 For I brought thee up out of the land of Egypt, and redeemed thee
+out of the house of servants; and I sent before thee Moses, Aaron, and
+Miriam.
+
+6:5 O my people, remember now what Balak king of Moab consulted, and
+what Balaam the son of Beor answered him from Shittim unto Gilgal;
+that ye may know the righteousness of the LORD.
+
+6:6 Wherewith shall I come before the LORD, and bow myself before the
+high God? shall I come before him with burnt offerings, with calves of
+a year old? 6:7 Will the LORD be pleased with thousands of rams, or
+with ten thousands of rivers of oil? shall I give my firstborn for my
+transgression, the fruit of my body for the sin of my soul? 6:8 He
+hath shewed thee, O man, what is good; and what doth the LORD require
+of thee, but to do justly, and to love mercy, and to walk humbly with
+thy God? 6:9 The LORD's voice crieth unto the city, and the man of
+wisdom shall see thy name: hear ye the rod, and who hath appointed it.
+
+6:10 Are there yet the treasures of wickedness in the house of the
+wicked, and the scant measure that is abominable? 6:11 Shall I count
+them pure with the wicked balances, and with the bag of deceitful
+weights? 6:12 For the rich men thereof are full of violence, and the
+inhabitants thereof have spoken lies, and their tongue is deceitful in
+their mouth.
+
+6:13 Therefore also will I make thee sick in smiting thee, in making
+thee desolate because of thy sins.
+
+6:14 Thou shalt eat, but not be satisfied; and thy casting down shall
+be in the midst of thee; and thou shalt take hold, but shalt not
+deliver; and that which thou deliverest will I give up to the sword.
+
+6:15 Thou shalt sow, but thou shalt not reap; thou shalt tread the
+olives, but thou shalt not anoint thee with oil; and sweet wine, but
+shalt not drink wine.
+
+6:16 For the statutes of Omri are kept, and all the works of the house
+of Ahab, and ye walk in their counsels; that I should make thee a
+desolation, and the inhabitants thereof an hissing: therefore ye shall
+bear the reproach of my people.
+
+7:1 Woe is me! for I am as when they have gathered the summer fruits,
+as the grapegleanings of the vintage: there is no cluster to eat: my
+soul desired the firstripe fruit.
+
+7:2 The good man is perished out of the earth: and there is none
+upright among men: they all lie in wait for blood; they hunt every man
+his brother with a net.
+
+7:3 That they may do evil with both hands earnestly, the prince
+asketh, and the judge asketh for a reward; and the great man, he
+uttereth his mischievous desire: so they wrap it up.
+
+7:4 The best of them is as a brier: the most upright is sharper than a
+thorn hedge: the day of thy watchmen and thy visitation cometh; now
+shall be their perplexity.
+
+7:5 Trust ye not in a friend, put ye not confidence in a guide: keep
+the doors of thy mouth from her that lieth in thy bosom.
+
+7:6 For the son dishonoureth the father, the daughter riseth up
+against her mother, the daughter in law against her mother in law; a
+man's enemies are the men of his own house.
+
+7:7 Therefore I will look unto the LORD; I will wait for the God of my
+salvation: my God will hear me.
+
+7:8 Rejoice not against me, O mine enemy: when I fall, I shall arise;
+when I sit in darkness, the LORD shall be a light unto me.
+
+7:9 I will bear the indignation of the LORD, because I have sinned
+against him, until he plead my cause, and execute judgment for me: he
+will bring me forth to the light, and I shall behold his
+righteousness.
+
+7:10 Then she that is mine enemy shall see it, and shame shall cover
+her which said unto me, Where is the LORD thy God? mine eyes shall
+behold her: now shall she be trodden down as the mire of the streets.
+
+7:11 In the day that thy walls are to be built, in that day shall the
+decree be far removed.
+
+7:12 In that day also he shall come even to thee from Assyria, and
+from the fortified cities, and from the fortress even to the river,
+and from sea to sea, and from mountain to mountain.
+
+7:13 Notwithstanding the land shall be desolate because of them that
+dwell therein, for the fruit of their doings.
+
+7:14 Feed thy people with thy rod, the flock of thine heritage, which
+dwell solitarily in the wood, in the midst of Carmel: let them feed in
+Bashan and Gilead, as in the days of old.
+
+7:15 According to the days of thy coming out of the land of Egypt will
+I shew unto him marvellous things.
+
+7:16 The nations shall see and be confounded at all their might: they
+shall lay their hand upon their mouth, their ears shall be deaf.
+
+7:17 They shall lick the dust like a serpent, they shall move out of
+their holes like worms of the earth: they shall be afraid of the LORD
+our God, and shall fear because of thee.
+
+7:18 Who is a God like unto thee, that pardoneth iniquity, and passeth
+by the transgression of the remnant of his heritage? he retaineth not
+his anger for ever, because he delighteth in mercy.
+
+7:19 He will turn again, he will have compassion upon us; he will
+subdue our iniquities; and thou wilt cast all their sins into the
+depths of the sea.
+
+7:20 Thou wilt perform the truth to Jacob, and the mercy to Abraham,
+which thou hast sworn unto our fathers from the days of old.
+
+
+
+
+Nahum
+
+
+1:1 The burden of Nineveh. The book of the vision of Nahum the Elkoshite.
+
+1:2 God is jealous, and the LORD revengeth; the LORD revengeth, and is
+furious; the LORD will take vengeance on his adversaries, and he
+reserveth wrath for his enemies.
+
+1:3 The LORD is slow to anger, and great in power, and will not at all
+acquit the wicked: the LORD hath his way in the whirlwind and in the
+storm, and the clouds are the dust of his feet.
+
+1:4 He rebuketh the sea, and maketh it dry, and drieth up all the
+rivers: Bashan languisheth, and Carmel, and the flower of Lebanon
+languisheth.
+
+1:5 The mountains quake at him, and the hills melt, and the earth is
+burned at his presence, yea, the world, and all that dwell therein.
+
+1:6 Who can stand before his indignation? and who can abide in the
+fierceness of his anger? his fury is poured out like fire, and the
+rocks are thrown down by him.
+
+1:7 The LORD is good, a strong hold in the day of trouble; and he
+knoweth them that trust in him.
+
+1:8 But with an overrunning flood he will make an utter end of the
+place thereof, and darkness shall pursue his enemies.
+
+1:9 What do ye imagine against the LORD? he will make an utter end:
+affliction shall not rise up the second time.
+
+1:10 For while they be folden together as thorns, and while they are
+drunken as drunkards, they shall be devoured as stubble fully dry.
+
+1:11 There is one come out of thee, that imagineth evil against the
+LORD, a wicked counsellor.
+
+1:12 Thus saith the LORD; Though they be quiet, and likewise many, yet
+thus shall they be cut down, when he shall pass through. Though I have
+afflicted thee, I will afflict thee no more.
+
+1:13 For now will I break his yoke from off thee, and will burst thy
+bonds in sunder.
+
+1:14 And the LORD hath given a commandment concerning thee, that no
+more of thy name be sown: out of the house of thy gods will I cut off
+the graven image and the molten image: I will make thy grave; for thou
+art vile.
+
+1:15 Behold upon the mountains the feet of him that bringeth good
+tidings, that publisheth peace! O Judah, keep thy solemn feasts,
+perform thy vows: for the wicked shall no more pass through thee; he
+is utterly cut off.
+
+2:1 He that dasheth in pieces is come up before thy face: keep the
+munition, watch the way, make thy loins strong, fortify thy power
+mightily.
+
+2:2 For the LORD hath turned away the excellency of Jacob, as the
+excellency of Israel: for the emptiers have emptied them out, and
+marred their vine branches.
+
+2:3 The shield of his mighty men is made red, the valiant men are in
+scarlet: the chariots shall be with flaming torches in the day of his
+preparation, and the fir trees shall be terribly shaken.
+
+2:4 The chariots shall rage in the streets, they shall justle one
+against another in the broad ways: they shall seem like torches, they
+shall run like the lightnings.
+
+2:5 He shall recount his worthies: they shall stumble in their walk;
+they shall make haste to the wall thereof, and the defence shall be
+prepared.
+
+2:6 The gates of the rivers shall be opened, and the palace shall be
+dissolved.
+
+2:7 And Huzzab shall be led away captive, she shall be brought up, and
+her maids shall lead her as with the voice of doves, tabering upon
+their breasts.
+
+2:8 But Nineveh is of old like a pool of water: yet they shall flee
+away.
+
+Stand, stand, shall they cry; but none shall look back.
+
+2:9 Take ye the spoil of silver, take the spoil of gold: for there is
+none end of the store and glory out of all the pleasant furniture.
+
+2:10 She is empty, and void, and waste: and the heart melteth, and the
+knees smite together, and much pain is in all loins, and the faces of
+them all gather blackness.
+
+2:11 Where is the dwelling of the lions, and the feedingplace of the
+young lions, where the lion, even the old lion, walked, and the lion's
+whelp, and none made them afraid? 2:12 The lion did tear in pieces
+enough for his whelps, and strangled for his lionesses, and filled his
+holes with prey, and his dens with ravin.
+
+2:13 Behold, I am against thee, saith the LORD of hosts, and I will
+burn her chariots in the smoke, and the sword shall devour thy young
+lions: and I will cut off thy prey from the earth, and the voice of
+thy messengers shall no more be heard.
+
+3:1 Woe to the bloody city! it is all full of lies and robbery; the
+prey departeth not; 3:2 The noise of a whip, and the noise of the
+rattling of the wheels, and of the pransing horses, and of the jumping
+chariots.
+
+3:3 The horseman lifteth up both the bright sword and the glittering
+spear: and there is a multitude of slain, and a great number of
+carcases; and there is none end of their corpses; they stumble upon
+their corpses: 3:4 Because of the multitude of the whoredoms of the
+wellfavoured harlot, the mistress of witchcrafts, that selleth nations
+through her whoredoms, and families through her witchcrafts.
+
+3:5 Behold, I am against thee, saith the LORD of hosts; and I will
+discover thy skirts upon thy face, and I will shew the nations thy
+nakedness, and the kingdoms thy shame.
+
+3:6 And I will cast abominable filth upon thee, and make thee vile,
+and will set thee as a gazingstock.
+
+3:7 And it shall come to pass, that all they that look upon thee shall
+flee from thee, and say, Nineveh is laid waste: who will bemoan her?
+whence shall I seek comforters for thee? 3:8 Art thou better than
+populous No, that was situate among the rivers, that had the waters
+round about it, whose rampart was the sea, and her wall was from the
+sea? 3:9 Ethiopia and Egypt were her strength, and it was infinite;
+Put and Lubim were thy helpers.
+
+3:10 Yet was she carried away, she went into captivity: her young
+children also were dashed in pieces at the top of all the streets: and
+they cast lots for her honourable men, and all her great men were
+bound in chains.
+
+3:11 Thou also shalt be drunken: thou shalt be hid, thou also shalt
+seek strength because of the enemy.
+
+3:12 All thy strong holds shall be like fig trees with the firstripe
+figs: if they be shaken, they shall even fall into the mouth of the
+eater.
+
+3:13 Behold, thy people in the midst of thee are women: the gates of
+thy land shall be set wide open unto thine enemies: the fire shall
+devour thy bars.
+
+3:14 Draw thee waters for the siege, fortify thy strong holds: go into
+clay, and tread the morter, make strong the brickkiln.
+
+3:15 There shall the fire devour thee; the sword shall cut thee off,
+it shall eat thee up like the cankerworm: make thyself many as the
+cankerworm, make thyself many as the locusts.
+
+3:16 Thou hast multiplied thy merchants above the stars of heaven: the
+cankerworm spoileth, and fleeth away.
+
+3:17 Thy crowned are as the locusts, and thy captains as the great
+grasshoppers, which camp in the hedges in the cold day, but when the
+sun ariseth they flee away, and their place is not known where they
+are.
+
+3:18 Thy shepherds slumber, O king of Assyria: thy nobles shall dwell
+in the dust: thy people is scattered upon the mountains, and no man
+gathereth them.
+
+3:19 There is no healing of thy bruise; thy wound is grievous: all
+that hear the bruit of thee shall clap the hands over thee: for upon
+whom hath not thy wickedness passed continually?
+
+
+
+
+Habakkuk
+
+
+1:1 The burden which Habakkuk the prophet did see.
+
+1:2 O LORD, how long shall I cry, and thou wilt not hear! even cry out
+unto thee of violence, and thou wilt not save! 1:3 Why dost thou shew
+me iniquity, and cause me to behold grievance? for spoiling and
+violence are before me: and there are that raise up strife and
+contention.
+
+1:4 Therefore the law is slacked, and judgment doth never go forth:
+for the wicked doth compass about the righteous; therefore wrong
+judgment proceedeth.
+
+1:5 Behold ye among the heathen, and regard, and wonder marvelously:
+for I will work a work in your days which ye will not believe, though
+it be told you.
+
+1:6 For, lo, I raise up the Chaldeans, that bitter and hasty nation,
+which shall march through the breadth of the land, to possess the
+dwellingplaces that are not their's.
+
+1:7 They are terrible and dreadful: their judgment and their dignity
+shall proceed of themselves.
+
+1:8 Their horses also are swifter than the leopards, and are more
+fierce than the evening wolves: and their horsemen shall spread
+themselves, and their horsemen shall come from far; they shall fly as
+the eagle that hasteth to eat.
+
+1:9 They shall come all for violence: their faces shall sup up as the
+east wind, and they shall gather the captivity as the sand.
+
+1:10 And they shall scoff at the kings, and the princes shall be a
+scorn unto them: they shall deride every strong hold; for they shall
+heap dust, and take it.
+
+1:11 Then shall his mind change, and he shall pass over, and offend,
+imputing this his power unto his god.
+
+1:12 Art thou not from everlasting, O LORD my God, mine Holy One? we
+shall not die. O LORD, thou hast ordained them for judgment; and, O
+mighty God, thou hast established them for correction.
+
+1:13 Thou art of purer eyes than to behold evil, and canst not look on
+iniquity: wherefore lookest thou upon them that deal treacherously,
+and holdest thy tongue when the wicked devoureth the man that is more
+righteous than he? 1:14 And makest men as the fishes of the sea, as
+the creeping things, that have no ruler over them? 1:15 They take up
+all of them with the angle, they catch them in their net, and gather
+them in their drag: therefore they rejoice and are glad.
+
+1:16 Therefore they sacrifice unto their net, and burn incense unto
+their drag; because by them their portion is fat, and their meat
+plenteous.
+
+1:17 Shall they therefore empty their net, and not spare continually
+to slay the nations? 2:1 I will stand upon my watch, and set me upon
+the tower, and will watch to see what he will say unto me, and what I
+shall answer when I am reproved.
+
+2:2 And the LORD answered me, and said, Write the vision, and make it
+plain upon tables, that he may run that readeth it.
+
+2:3 For the vision is yet for an appointed time, but at the end it
+shall speak, and not lie: though it tarry, wait for it; because it
+will surely come, it will not tarry.
+
+2:4 Behold, his soul which is lifted up is not upright in him: but the
+just shall live by his faith.
+
+2:5 Yea also, because he transgresseth by wine, he is a proud man,
+neither keepeth at home, who enlargeth his desire as hell, and is as
+death, and cannot be satisfied, but gathereth unto him all nations,
+and heapeth unto him all people: 2:6 Shall not all these take up a
+parable against him, and a taunting proverb against him, and say, Woe
+to him that increaseth that which is not his! how long? and to him
+that ladeth himself with thick clay! 2:7 Shall they not rise up
+suddenly that shall bite thee, and awake that shall vex thee, and thou
+shalt be for booties unto them? 2:8 Because thou hast spoiled many
+nations, all the remnant of the people shall spoil thee; because of
+men's blood, and for the violence of the land, of the city, and of all
+that dwell therein.
+
+2:9 Woe to him that coveteth an evil covetousness to his house, that
+he may set his nest on high, that he may be delivered from the power
+of evil! 2:10 Thou hast consulted shame to thy house by cutting off
+many people, and hast sinned against thy soul.
+
+2:11 For the stone shall cry out of the wall, and the beam out of the
+timber shall answer it.
+
+2:12 Woe to him that buildeth a town with blood, and stablisheth a
+city by iniquity! 2:13 Behold, is it not of the LORD of hosts that
+the people shall labour in the very fire, and the people shall weary
+themselves for very vanity? 2:14 For the earth shall be filled with
+the knowledge of the glory of the LORD, as the waters cover the sea.
+
+2:15 Woe unto him that giveth his neighbour drink, that puttest thy
+bottle to him, and makest him drunken also, that thou mayest look on
+their nakedness! 2:16 Thou art filled with shame for glory: drink
+thou also, and let thy foreskin be uncovered: the cup of the LORD's
+right hand shall be turned unto thee, and shameful spewing shall be on
+thy glory.
+
+2:17 For the violence of Lebanon shall cover thee, and the spoil of
+beasts, which made them afraid, because of men's blood, and for the
+violence of the land, of the city, and of all that dwell therein.
+
+2:18 What profiteth the graven image that the maker thereof hath
+graven it; the molten image, and a teacher of lies, that the maker of
+his work trusteth therein, to make dumb idols? 2:19 Woe unto him that
+saith to the wood, Awake; to the dumb stone, Arise, it shall teach!
+Behold, it is laid over with gold and silver, and there is no breath
+at all in the midst of it.
+
+2:20 But the LORD is in his holy temple: let all the earth keep
+silence before him.
+
+3:1 A prayer of Habakkuk the prophet upon Shigionoth.
+
+3:2 O LORD, I have heard thy speech, and was afraid: O LORD, revive
+thy work in the midst of the years, in the midst of the years make
+known; in wrath remember mercy.
+
+3:3 God came from Teman, and the Holy One from mount Paran. Selah. His
+glory covered the heavens, and the earth was full of his praise.
+
+3:4 And his brightness was as the light; he had horns coming out of
+his hand: and there was the hiding of his power.
+
+3:5 Before him went the pestilence, and burning coals went forth at
+his feet.
+
+3:6 He stood, and measured the earth: he beheld, and drove asunder the
+nations; and the everlasting mountains were scattered, the perpetual
+hills did bow: his ways are everlasting.
+
+3:7 I saw the tents of Cushan in affliction: and the curtains of the
+land of Midian did tremble.
+
+3:8 Was the LORD displeased against the rivers? was thine anger
+against the rivers? was thy wrath against the sea, that thou didst
+ride upon thine horses and thy chariots of salvation? 3:9 Thy bow was
+made quite naked, according to the oaths of the tribes, even thy word.
+Selah. Thou didst cleave the earth with rivers.
+
+3:10 The mountains saw thee, and they trembled: the overflowing of the
+water passed by: the deep uttered his voice, and lifted up his hands
+on high.
+
+3:11 The sun and moon stood still in their habitation: at the light of
+thine arrows they went, and at the shining of thy glittering spear.
+
+3:12 Thou didst march through the land in indignation, thou didst
+thresh the heathen in anger.
+
+3:13 Thou wentest forth for the salvation of thy people, even for
+salvation with thine anointed; thou woundedst the head out of the
+house of the wicked, by discovering the foundation unto the neck.
+Selah.
+
+3:14 Thou didst strike through with his staves the head of his
+villages: they came out as a whirlwind to scatter me: their rejoicing
+was as to devour the poor secretly.
+
+3:15 Thou didst walk through the sea with thine horses, through the
+heap of great waters.
+
+3:16 When I heard, my belly trembled; my lips quivered at the voice:
+rottenness entered into my bones, and I trembled in myself, that I
+might rest in the day of trouble: when he cometh up unto the people,
+he will invade them with his troops.
+
+3:17 Although the fig tree shall not blossom, neither shall fruit be
+in the vines; the labour of the olive shall fail, and the fields shall
+yield no meat; the flock shall be cut off from the fold, and there
+shall be no herd in the stalls: 3:18 Yet I will rejoice in the LORD, I
+will joy in the God of my salvation.
+
+3:19 The LORD God is my strength, and he will make my feet like hinds'
+feet, and he will make me to walk upon mine high places. To the chief
+singer on my stringed instruments.
+
+
+
+
+Zephaniah
+
+
+1:1 The word of the LORD which came unto Zephaniah the son of Cushi,
+the son of Gedaliah, the son of Amariah, the son of Hizkiah, in the
+days of Josiah the son of Amon, king of Judah.
+
+1:2 I will utterly consume all things from off the land, saith the
+LORD.
+
+1:3 I will consume man and beast; I will consume the fowls of the
+heaven, and the fishes of the sea, and the stumbling blocks with the
+wicked: and I will cut off man from off the land, saith the LORD.
+
+1:4 I will also stretch out mine hand upon Judah, and upon all the
+inhabitants of Jerusalem; and I will cut off the remnant of Baal from
+this place, and the name of the Chemarims with the priests; 1:5 And
+them that worship the host of heaven upon the housetops; and them that
+worship and that swear by the LORD, and that swear by Malcham; 1:6 And
+them that are turned back from the LORD; and those that have not
+sought the LORD, nor enquired for him.
+
+1:7 Hold thy peace at the presence of the Lord GOD: for the day of the
+LORD is at hand: for the LORD hath prepared a sacrifice, he hath bid
+his guests.
+
+1:8 And it shall come to pass in the day of the LORD's sacrifice, that
+I will punish the princes, and the king's children, and all such as
+are clothed with strange apparel.
+
+1:9 In the same day also will I punish all those that leap on the
+threshold, which fill their masters' houses with violence and deceit.
+
+1:10 And it shall come to pass in that day, saith the LORD, that there
+shall be the noise of a cry from the fish gate, and an howling from
+the second, and a great crashing from the hills.
+
+1:11 Howl, ye inhabitants of Maktesh, for all the merchant people are
+cut down; all they that bear silver are cut off.
+
+1:12 And it shall come to pass at that time, that I will search
+Jerusalem with candles, and punish the men that are settled on their
+lees: that say in their heart, The LORD will not do good, neither will
+he do evil.
+
+1:13 Therefore their goods shall become a booty, and their houses a
+desolation: they shall also build houses, but not inhabit them; and
+they shall plant vineyards, but not drink the wine thereof.
+
+1:14 The great day of the LORD is near, it is near, and hasteth
+greatly, even the voice of the day of the LORD: the mighty man shall
+cry there bitterly.
+
+1:15 That day is a day of wrath, a day of trouble and distress, a day
+of wasteness and desolation, a day of darkness and gloominess, a day
+of clouds and thick darkness, 1:16 A day of the trumpet and alarm
+against the fenced cities, and against the high towers.
+
+1:17 And I will bring distress upon men, that they shall walk like
+blind men, because they have sinned against the LORD: and their blood
+shall be poured out as dust, and their flesh as the dung.
+
+1:18 Neither their silver nor their gold shall be able to deliver them
+in the day of the LORD's wrath; but the whole land shall be devoured
+by the fire of his jealousy: for he shall make even a speedy riddance
+of all them that dwell in the land.
+
+2:1 Gather yourselves together, yea, gather together, O nation not
+desired; 2:2 Before the decree bring forth, before the day pass as the
+chaff, before the fierce anger of the LORD come upon you, before the
+day of the LORD's anger come upon you.
+
+2:3 Seek ye the LORD, all ye meek of the earth, which have wrought his
+judgment; seek righteousness, seek meekness: it may be ye shall be hid
+in the day of the LORD's anger.
+
+2:4 For Gaza shall be forsaken, and Ashkelon a desolation: they shall
+drive out Ashdod at the noon day, and Ekron shall be rooted up.
+
+2:5 Woe unto the inhabitants of the sea coast, the nation of the
+Cherethites! the word of the LORD is against you; O Canaan, the land
+of the Philistines, I will even destroy thee, that there shall be no
+inhabitant.
+
+2:6 And the sea coast shall be dwellings and cottages for shepherds,
+and folds for flocks.
+
+2:7 And the coast shall be for the remnant of the house of Judah; they
+shall feed thereupon: in the houses of Ashkelon shall they lie down in
+the evening: for the LORD their God shall visit them, and turn away
+their captivity.
+
+2:8 I have heard the reproach of Moab, and the revilings of the
+children of Ammon, whereby they have reproached my people, and
+magnified themselves against their border.
+
+2:9 Therefore as I live, saith the LORD of hosts, the God of Israel,
+Surely Moab shall be as Sodom, and the children of Ammon as Gomorrah,
+even the breeding of nettles, and saltpits, and a perpetual
+desolation: the residue of my people shall spoil them, and the remnant
+of my people shall possess them.
+
+2:10 This shall they have for their pride, because they have
+reproached and magnified themselves against the people of the LORD of
+hosts.
+
+2:11 The LORD will be terrible unto them: for he will famish all the
+gods of the earth; and men shall worship him, every one from his
+place, even all the isles of the heathen.
+
+2:12 Ye Ethiopians also, ye shall be slain by my sword.
+
+2:13 And he will stretch out his hand against the north, and destroy
+Assyria; and will make Nineveh a desolation, and dry like a
+wilderness.
+
+2:14 And flocks shall lie down in the midst of her, all the beasts of
+the nations: both the cormorant and the bittern shall lodge in the
+upper lintels of it; their voice shall sing in the windows; desolation
+shall be in the thresholds; for he shall uncover the cedar work.
+
+2:15 This is the rejoicing city that dwelt carelessly, that said in
+her heart, I am, and there is none beside me: how is she become a
+desolation, a place for beasts to lie down in! every one that passeth
+by her shall hiss, and wag his hand.
+
+3:1 Woe to her that is filthy and polluted, to the oppressing city!
+3:2 She obeyed not the voice; she received not correction; she trusted
+not in the LORD; she drew not near to her God.
+
+3:3 Her princes within her are roaring lions; her judges are evening
+wolves; they gnaw not the bones till the morrow.
+
+3:4 Her prophets are light and treacherous persons: her priests have
+polluted the sanctuary, they have done violence to the law.
+
+3:5 The just LORD is in the midst thereof; he will not do iniquity:
+every morning doth he bring his judgment to light, he faileth not; but
+the unjust knoweth no shame.
+
+3:6 I have cut off the nations: their towers are desolate; I made
+their streets waste, that none passeth by: their cities are destroyed,
+so that there is no man, that there is none inhabitant.
+
+3:7 I said, Surely thou wilt fear me, thou wilt receive instruction;
+so their dwelling should not be cut off, howsoever I punished them:
+but they rose early, and corrupted all their doings.
+
+3:8 Therefore wait ye upon me, saith the LORD, until the day that I
+rise up to the prey: for my determination is to gather the nations,
+that I may assemble the kingdoms, to pour upon them mine indignation,
+even all my fierce anger: for all the earth shall be devoured with the
+fire of my jealousy.
+
+3:9 For then will I turn to the people a pure language, that they may
+all call upon the name of the LORD, to serve him with one consent.
+
+3:10 From beyond the rivers of Ethiopia my suppliants, even the
+daughter of my dispersed, shall bring mine offering.
+
+3:11 In that day shalt thou not be ashamed for all thy doings, wherein
+thou hast transgressed against me: for then I will take away out of
+the midst of thee them that rejoice in thy pride, and thou shalt no
+more be haughty because of my holy mountain.
+
+3:12 I will also leave in the midst of thee an afflicted and poor
+people, and they shall trust in the name of the LORD.
+
+3:13 The remnant of Israel shall not do iniquity, nor speak lies;
+neither shall a deceitful tongue be found in their mouth: for they
+shall feed and lie down, and none shall make them afraid.
+
+3:14 Sing, O daughter of Zion; shout, O Israel; be glad and rejoice
+with all the heart, O daughter of Jerusalem.
+
+3:15 The LORD hath taken away thy judgments, he hath cast out thine
+enemy: the king of Israel, even the LORD, is in the midst of thee:
+thou shalt not see evil any more.
+
+3:16 In that day it shall be said to Jerusalem, Fear thou not: and to
+Zion, Let not thine hands be slack.
+
+3:17 The LORD thy God in the midst of thee is mighty; he will save, he
+will rejoice over thee with joy; he will rest in his love, he will joy
+over thee with singing.
+
+3:18 I will gather them that are sorrowful for the solemn assembly,
+who are of thee, to whom the reproach of it was a burden.
+
+3:19 Behold, at that time I will undo all that afflict thee: and I
+will save her that halteth, and gather her that was driven out; and I
+will get them praise and fame in every land where they have been put
+to shame.
+
+3:20 At that time will I bring you again, even in the time that I
+gather you: for I will make you a name and a praise among all people
+of the earth, when I turn back your captivity before your eyes,
+saith the LORD.
+
+
+
+
+Haggai
+
+
+1:1 In the second year of Darius the king, in the sixth month, in the
+first day of the month, came the word of the LORD by Haggai the
+prophet unto Zerubbabel the son of Shealtiel, governor of Judah, and
+to Joshua the son of Josedech, the high priest, saying, 1:2 Thus
+speaketh the LORD of hosts, saying, This people say, The time is not
+come, the time that the LORD's house should be built.
+
+1:3 Then came the word of the LORD by Haggai the prophet, saying, 1:4
+Is it time for you, O ye, to dwell in your cieled houses, and this
+house lie waste? 1:5 Now therefore thus saith the LORD of hosts;
+Consider your ways.
+
+1:6 Ye have sown much, and bring in little; ye eat, but ye have not
+enough; ye drink, but ye are not filled with drink; ye clothe you, but
+there is none warm; and he that earneth wages earneth wages to put it
+into a bag with holes.
+
+1:7 Thus saith the LORD of hosts; Consider your ways.
+
+1:8 Go up to the mountain, and bring wood, and build the house; and I
+will take pleasure in it, and I will be glorified, saith the LORD.
+
+1:9 Ye looked for much, and, lo it came to little; and when ye brought
+it home, I did blow upon it. Why? saith the LORD of hosts. Because of
+mine house that is waste, and ye run every man unto his own house.
+
+1:10 Therefore the heaven over you is stayed from dew, and the earth
+is stayed from her fruit.
+
+1:11 And I called for a drought upon the land, and upon the mountains,
+and upon the corn, and upon the new wine, and upon the oil, and upon
+that which the ground bringeth forth, and upon men, and upon cattle,
+and upon all the labour of the hands.
+
+1:12 Then Zerubbabel the son of Shealtiel, and Joshua the son of
+Josedech, the high priest, with all the remnant of the people, obeyed
+the voice of the LORD their God, and the words of Haggai the prophet,
+as the LORD their God had sent him, and the people did fear before the
+LORD.
+
+1:13 Then spake Haggai the LORD's messenger in the LORD's message unto
+the people, saying, I am with you, saith the LORD.
+
+1:14 And the LORD stirred up the spirit of Zerubbabel the son of
+Shealtiel, governor of Judah, and the spirit of Joshua the son of
+Josedech, the high priest, and the spirit of all the remnant of the
+people; and they came and did work in the house of the LORD of hosts,
+their God, 1:15 In the four and twentieth day of the sixth month, in
+the second year of Darius the king.
+
+2:1 In the seventh month, in the one and twentieth day of the month,
+came the word of the LORD by the prophet Haggai, saying, 2:2 Speak now
+to Zerubbabel the son of Shealtiel, governor of Judah, and to Joshua
+the son of Josedech, the high priest, and to the residue of the
+people, saying, 2:3 Who is left among you that saw this house in her
+first glory? and how do ye see it now? is it not in your eyes in
+comparison of it as nothing? 2:4 Yet now be strong, O Zerubbabel,
+saith the LORD; and be strong, O Joshua, son of Josedech, the high
+priest; and be strong, all ye people of the land, saith the LORD, and
+work: for I am with you, saith the LORD of hosts: 2:5 According to the
+word that I covenanted with you when ye came out of Egypt, so my
+spirit remaineth among you: fear ye not.
+
+2:6 For thus saith the LORD of hosts; Yet once, it is a little while,
+and I will shake the heavens, and the earth, and the sea, and the dry
+land; 2:7 And I will shake all nations, and the desire of all nations
+shall come: and I will fill this house with glory, saith the LORD of
+hosts.
+
+2:8 The silver is mine, and the gold is mine, saith the LORD of hosts.
+
+2:9 The glory of this latter house shall be greater than of the
+former, saith the LORD of hosts: and in this place will I give peace,
+saith the LORD of hosts.
+
+2:10 In the four and twentieth day of the ninth month, in the second
+year of Darius, came the word of the LORD by Haggai the prophet,
+saying, 2:11 Thus saith the LORD of hosts; Ask now the priests
+concerning the law, saying, 2:12 If one bear holy flesh in the skirt
+of his garment, and with his skirt do touch bread, or pottage, or
+wine, or oil, or any meat, shall it be holy? And the priests answered
+and said, No.
+
+2:13 Then said Haggai, If one that is unclean by a dead body touch any
+of these, shall it be unclean? And the priests answered and said, It
+shall be unclean.
+
+2:14 Then answered Haggai, and said, So is this people, and so is this
+nation before me, saith the LORD; and so is every work of their hands;
+and that which they offer there is unclean.
+
+2:15 And now, I pray you, consider from this day and upward, from
+before a stone was laid upon a stone in the temple of the LORD: 2:16
+Since those days were, when one came to an heap of twenty measures,
+there were but ten: when one came to the pressfat for to draw out
+fifty vessels out of the press, there were but twenty.
+
+2:17 I smote you with blasting and with mildew and with hail in all
+the labours of your hands; yet ye turned not to me, saith the LORD.
+
+2:18 Consider now from this day and upward, from the four and
+twentieth day of the ninth month, even from the day that the
+foundation of the LORD's temple was laid, consider it.
+
+2:19 Is the seed yet in the barn? yea, as yet the vine, and the fig
+tree, and the pomegranate, and the olive tree, hath not brought forth:
+from this day will I bless you.
+
+2:20 And again the word of the LORD came unto Haggai in the four and
+twentieth day of the month, saying, 2:21 Speak to Zerubbabel, governor
+of Judah, saying, I will shake the heavens and the earth; 2:22 And I
+will overthrow the throne of kingdoms, and I will destroy the strength
+of the kingdoms of the heathen; and I will overthrow the chariots, and
+those that ride in them; and the horses and their riders shall come
+down, every one by the sword of his brother.
+
+2:23 In that day, saith the LORD of hosts, will I take thee, O
+Zerubbabel, my servant, the son of Shealtiel, saith the LORD, and will
+make thee as a signet: for I have chosen thee, saith the LORD of hosts.
+
+
+
+
+Zechariah
+
+
+1:1 In the eighth month, in the second year of Darius, came the word
+of the LORD unto Zechariah, the son of Berechiah, the son of Iddo the
+prophet, saying, 1:2 The LORD hath been sore displeased with your
+fathers.
+
+1:3 Therefore say thou unto them, Thus saith the LORD of hosts; Turn
+ye unto me, saith the LORD of hosts, and I will turn unto you, saith
+the LORD of hosts.
+
+1:4 Be ye not as your fathers, unto whom the former prophets have
+cried, saying, Thus saith the LORD of hosts; Turn ye now from your
+evil ways, and from your evil doings: but they did not hear, nor
+hearken unto me, saith the LORD.
+
+1:5 Your fathers, where are they? and the prophets, do they live for
+ever? 1:6 But my words and my statutes, which I commanded my servants
+the prophets, did they not take hold of your fathers? and they
+returned and said, Like as the LORD of hosts thought to do unto us,
+according to our ways, and according to our doings, so hath he dealt
+with us.
+
+1:7 Upon the four and twentieth day of the eleventh month, which is
+the month Sebat, in the second year of Darius, came the word of the
+LORD unto Zechariah, the son of Berechiah, the son of Iddo the
+prophet, saying, 1:8 I saw by night, and behold a man riding upon a
+red horse, and he stood among the myrtle trees that were in the
+bottom; and behind him were there red horses, speckled, and white.
+
+1:9 Then said I, O my lord, what are these? And the angel that talked
+with me said unto me, I will shew thee what these be.
+
+1:10 And the man that stood among the myrtle trees answered and said,
+These are they whom the LORD hath sent to walk to and fro through the
+earth.
+
+1:11 And they answered the angel of the LORD that stood among the
+myrtle trees, and said, We have walked to and fro through the earth,
+and, behold, all the earth sitteth still, and is at rest.
+
+1:12 Then the angel of the LORD answered and said, O LORD of hosts,
+how long wilt thou not have mercy on Jerusalem and on the cities of
+Judah, against which thou hast had indignation these threescore and
+ten years? 1:13 And the LORD answered the angel that talked with me
+with good words and comfortable words.
+
+1:14 So the angel that communed with me said unto me, Cry thou,
+saying, Thus saith the LORD of hosts; I am jealous for Jerusalem and
+for Zion with a great jealousy.
+
+1:15 And I am very sore displeased with the heathen that are at ease:
+for I was but a little displeased, and they helped forward the
+affliction.
+
+1:16 Therefore thus saith the LORD; I am returned to Jerusalem with
+mercies: my house shall be built in it, saith the LORD of hosts, and a
+line shall be stretched forth upon Jerusalem.
+
+1:17 Cry yet, saying, Thus saith the LORD of hosts; My cities through
+prosperity shall yet be spread abroad; and the LORD shall yet comfort
+Zion, and shall yet choose Jerusalem.
+
+1:18 Then lifted I up mine eyes, and saw, and behold four horns.
+
+1:19 And I said unto the angel that talked with me, What be these? And
+he answered me, These are the horns which have scattered Judah,
+Israel, and Jerusalem.
+
+1:20 And the LORD shewed me four carpenters.
+
+1:21 Then said I, What come these to do? And he spake, saying, These
+are the horns which have scattered Judah, so that no man did lift up
+his head: but these are come to fray them, to cast out the horns of
+the Gentiles, which lifted up their horn over the land of Judah to
+scatter it.
+
+2:1 I lifted up mine eyes again, and looked, and behold a man with a
+measuring line in his hand.
+
+2:2 Then said I, Whither goest thou? And he said unto me, To measure
+Jerusalem, to see what is the breadth thereof, and what is the length
+thereof.
+
+2:3 And, behold, the angel that talked with me went forth, and another
+angel went out to meet him, 2:4 And said unto him, Run, speak to this
+young man, saying, Jerusalem shall be inhabited as towns without walls
+for the multitude of men and cattle therein: 2:5 For I, saith the
+LORD, will be unto her a wall of fire round about, and will be the
+glory in the midst of her.
+
+2:6 Ho, ho, come forth, and flee from the land of the north, saith the
+LORD: for I have spread you abroad as the four winds of the heaven,
+saith the LORD.
+
+2:7 Deliver thyself, O Zion, that dwellest with the daughter of
+Babylon.
+
+2:8 For thus saith the LORD of hosts; After the glory hath he sent me
+unto the nations which spoiled you: for he that toucheth you toucheth
+the apple of his eye.
+
+2:9 For, behold, I will shake mine hand upon them, and they shall be a
+spoil to their servants: and ye shall know that the LORD of hosts hath
+sent me.
+
+2:10 Sing and rejoice, O daughter of Zion: for, lo, I come, and I will
+dwell in the midst of thee, saith the LORD.
+
+2:11 And many nations shall be joined to the LORD in that day, and
+shall be my people: and I will dwell in the midst of thee, and thou
+shalt know that the LORD of hosts hath sent me unto thee.
+
+2:12 And the LORD shall inherit Judah his portion in the holy land,
+and shall choose Jerusalem again.
+
+2:13 Be silent, O all flesh, before the LORD: for he is raised up out
+of his holy habitation.
+
+3:1 And he shewed me Joshua the high priest standing before the angel
+of the LORD, and Satan standing at his right hand to resist him.
+
+3:2 And the LORD said unto Satan, The LORD rebuke thee, O Satan; even
+the LORD that hath chosen Jerusalem rebuke thee: is not this a brand
+plucked out of the fire? 3:3 Now Joshua was clothed with filthy
+garments, and stood before the angel.
+
+3:4 And he answered and spake unto those that stood before him,
+saying, Take away the filthy garments from him. And unto him he said,
+Behold, I have caused thine iniquity to pass from thee, and I will
+clothe thee with change of raiment.
+
+3:5 And I said, Let them set a fair mitre upon his head. So they set a
+fair mitre upon his head, and clothed him with garments. And the angel
+of the LORD stood by.
+
+3:6 And the angel of the LORD protested unto Joshua, saying, 3:7 Thus
+saith the LORD of hosts; If thou wilt walk in my ways, and if thou
+wilt keep my charge, then thou shalt also judge my house, and shalt
+also keep my courts, and I will give thee places to walk among these
+that stand by.
+
+3:8 Hear now, O Joshua the high priest, thou, and thy fellows that sit
+before thee: for they are men wondered at: for, behold, I will bring
+forth my servant the BRANCH.
+
+3:9 For behold the stone that I have laid before Joshua; upon one
+stone shall be seven eyes: behold, I will engrave the graving thereof,
+saith the LORD of hosts, and I will remove the iniquity of that land
+in one day.
+
+3:10 In that day, saith the LORD of hosts, shall ye call every man his
+neighbour under the vine and under the fig tree.
+
+4:1 And the angel that talked with me came again, and waked me, as a
+man that is wakened out of his sleep.
+
+4:2 And said unto me, What seest thou? And I said, I have looked, and
+behold a candlestick all of gold, with a bowl upon the top of it, and
+his seven lamps thereon, and seven pipes to the seven lamps, which are
+upon the top thereof: 4:3 And two olive trees by it, one upon the
+right side of the bowl, and the other upon the left side thereof.
+
+4:4 So I answered and spake to the angel that talked with me, saying,
+What are these, my lord? 4:5 Then the angel that talked with me
+answered and said unto me, Knowest thou not what these be? And I said,
+No, my lord.
+
+4:6 Then he answered and spake unto me, saying, This is the word of
+the LORD unto Zerubbabel, saying, Not by might, nor by power, but by
+my spirit, saith the LORD of hosts.
+
+4:7 Who art thou, O great mountain? before Zerubbabel thou shalt
+become a plain: and he shall bring forth the headstone thereof with
+shoutings, crying, Grace, grace unto it.
+
+4:8 Moreover the word of the LORD came unto me, saying, 4:9 The hands
+of Zerubbabel have laid the foundation of this house; his hands shall
+also finish it; and thou shalt know that the LORD of hosts hath sent
+me unto you.
+
+4:10 For who hath despised the day of small things? for they shall
+rejoice, and shall see the plummet in the hand of Zerubbabel with
+those seven; they are the eyes of the LORD, which run to and fro
+through the whole earth.
+
+4:11 Then answered I, and said unto him, What are these two olive
+trees upon the right side of the candlestick and upon the left side
+thereof? 4:12 And I answered again, and said unto him, What be these
+two olive branches which through the two golden pipes empty the golden
+oil out of themselves? 4:13 And he answered me and said, Knowest thou
+not what these be? And I said, No, my lord.
+
+4:14 Then said he, These are the two anointed ones, that stand by the
+LORD of the whole earth.
+
+5:1 Then I turned, and lifted up mine eyes, and looked, and behold a
+flying roll.
+
+5:2 And he said unto me, What seest thou? And I answered, I see a
+flying roll; the length thereof is twenty cubits, and the breadth
+thereof ten cubits.
+
+5:3 Then said he unto me, This is the curse that goeth forth over the
+face of the whole earth: for every one that stealeth shall be cut off
+as on this side according to it; and every one that sweareth shall be
+cut off as on that side according to it.
+
+5:4 I will bring it forth, saith the LORD of hosts, and it shall enter
+into the house of the thief, and into the house of him that sweareth
+falsely by my name: and it shall remain in the midst of his house, and
+shall consume it with the timber thereof and the stones thereof.
+
+5:5 Then the angel that talked with me went forth, and said unto me,
+Lift up now thine eyes, and see what is this that goeth forth.
+
+5:6 And I said, What is it? And he said, This is an ephah that goeth
+forth. He said moreover, This is their resemblance through all the
+earth.
+
+5:7 And, behold, there was lifted up a talent of lead: and this is a
+woman that sitteth in the midst of the ephah.
+
+5:8 And he said, This is wickedness. And he cast it into the midst of
+the ephah; and he cast the weight of lead upon the mouth thereof.
+
+5:9 Then lifted I up mine eyes, and looked, and, behold, there came
+out two women, and the wind was in their wings; for they had wings
+like the wings of a stork: and they lifted up the ephah between the
+earth and the heaven.
+
+5:10 Then said I to the angel that talked with me, Whither do these
+bear the ephah? 5:11 And he said unto me, To build it an house in the
+land of Shinar: and it shall be established, and set there upon her
+own base.
+
+6:1 And I turned, and lifted up mine eyes, and looked, and, behold,
+there came four chariots out from between two mountains; and the
+mountains were mountains of brass.
+
+6:2 In the first chariot were red horses; and in the second chariot
+black horses; 6:3 And in the third chariot white horses; and in the
+fourth chariot grisled and bay horses.
+
+6:4 Then I answered and said unto the angel that talked with me, What
+are these, my lord? 6:5 And the angel answered and said unto me,
+These are the four spirits of the heavens, which go forth from
+standing before the LORD of all the earth.
+
+6:6 The black horses which are therein go forth into the north
+country; and the white go forth after them; and the grisled go forth
+toward the south country.
+
+6:7 And the bay went forth, and sought to go that they might walk to
+and fro through the earth: and he said, Get you hence, walk to and fro
+through the earth. So they walked to and fro through the earth.
+
+6:8 Then cried he upon me, and spake unto me, saying, Behold, these
+that go toward the north country have quieted my spirit in the north
+country.
+
+6:9 And the word of the LORD came unto me, saying, 6:10 Take of them
+of the captivity, even of Heldai, of Tobijah, and of Jedaiah, which
+are come from Babylon, and come thou the same day, and go into the
+house of Josiah the son of Zephaniah; 6:11 Then take silver and gold,
+and make crowns, and set them upon the head of Joshua the son of
+Josedech, the high priest; 6:12 And speak unto him, saying, Thus
+speaketh the LORD of hosts, saying, Behold the man whose name is The
+BRANCH; and he shall grow up out of his place, and he shall build the
+temple of the LORD: 6:13 Even he shall build the temple of the LORD;
+and he shall bear the glory, and shall sit and rule upon his throne;
+and he shall be a priest upon his throne: and the counsel of peace
+shall be between them both.
+
+6:14 And the crowns shall be to Helem, and to Tobijah, and to Jedaiah,
+and to Hen the son of Zephaniah, for a memorial in the temple of the
+LORD.
+
+6:15 And they that are far off shall come and build in the temple of
+the LORD, and ye shall know that the LORD of hosts hath sent me unto
+you. And this shall come to pass, if ye will diligently obey the voice
+of the LORD your God.
+
+7:1 And it came to pass in the fourth year of king Darius, that the
+word of the LORD came unto Zechariah in the fourth day of the ninth
+month, even in Chisleu; 7:2 When they had sent unto the house of God
+Sherezer and Regemmelech, and their men, to pray before the LORD, 7:3
+And to speak unto the priests which were in the house of the LORD of
+hosts, and to the prophets, saying, Should I weep in the fifth month,
+separating myself, as I have done these so many years? 7:4 Then came
+the word of the LORD of hosts unto me, saying, 7:5 Speak unto all the
+people of the land, and to the priests, saying, When ye fasted and
+mourned in the fifth and seventh month, even those seventy years, did
+ye at all fast unto me, even to me? 7:6 And when ye did eat, and when
+ye did drink, did not ye eat for yourselves, and drink for yourselves?
+7:7 Should ye not hear the words which the LORD hath cried by the
+former prophets, when Jerusalem was inhabited and in prosperity, and
+the cities thereof round about her, when men inhabited the south and
+the plain? 7:8 And the word of the LORD came unto Zechariah, saying,
+7:9 Thus speaketh the LORD of hosts, saying, Execute true judgment,
+and shew mercy and compassions every man to his brother: 7:10 And
+oppress not the widow, nor the fatherless, the stranger, nor the poor;
+and let none of you imagine evil against his brother in your heart.
+
+7:11 But they refused to hearken, and pulled away the shoulder, and
+stopped their ears, that they should not hear.
+
+7:12 Yea, they made their hearts as an adamant stone, lest they should
+hear the law, and the words which the LORD of hosts hath sent in his
+spirit by the former prophets: therefore came a great wrath from the
+LORD of hosts.
+
+7:13 Therefore it is come to pass, that as he cried, and they would
+not hear; so they cried, and I would not hear, saith the LORD of
+hosts: 7:14 But I scattered them with a whirlwind among all the
+nations whom they knew not. Thus the land was desolate after them,
+that no man passed through nor returned: for they laid the pleasant
+land desolate.
+
+8:1 Again the word of the LORD of hosts came to me, saying, 8:2 Thus
+saith the LORD of hosts; I was jealous for Zion with great jealousy,
+and I was jealous for her with great fury.
+
+8:3 Thus saith the LORD; I am returned unto Zion, and will dwell in
+the midst of Jerusalem: and Jerusalem shall be called a city of truth;
+and the mountain of the LORD of hosts the holy mountain.
+
+8:4 Thus saith the LORD of hosts; There shall yet old men and old
+women dwell in the streets of Jerusalem, and every man with his staff
+in his hand for very age.
+
+8:5 And the streets of the city shall be full of boys and girls
+playing in the streets thereof.
+
+8:6 Thus saith the LORD of hosts; If it be marvellous in the eyes of
+the remnant of this people in these days, should it also be marvellous
+in mine eyes? saith the LORD of hosts.
+
+8:7 Thus saith the LORD of hosts; Behold, I will save my people from
+the east country, and from the west country; 8:8 And I will bring
+them, and they shall dwell in the midst of Jerusalem: and they shall
+be my people, and I will be their God, in truth and in righteousness.
+
+8:9 Thus saith the LORD of hosts; Let your hands be strong, ye that
+hear in these days these words by the mouth of the prophets, which
+were in the day that the foundation of the house of the LORD of hosts
+was laid, that the temple might be built.
+
+8:10 For before these days there was no hire for man, nor any hire for
+beast; neither was there any peace to him that went out or came in
+because of the affliction: for I set all men every one against his
+neighbour.
+
+8:11 But now I will not be unto the residue of this people as in the
+former days, saith the LORD of hosts.
+
+8:12 For the seed shall be prosperous; the vine shall give her fruit,
+and the ground shall give her increase, and the heavens shall give
+their dew; and I will cause the remnant of this people to possess all
+these things.
+
+8:13 And it shall come to pass, that as ye were a curse among the
+heathen, O house of Judah, and house of Israel; so will I save you,
+and ye shall be a blessing: fear not, but let your hands be strong.
+
+8:14 For thus saith the LORD of hosts; As I thought to punish you,
+when your fathers provoked me to wrath, saith the LORD of hosts, and I
+repented not: 8:15 So again have I thought in these days to do well
+unto Jerusalem and to the house of Judah: fear ye not.
+
+8:16 These are the things that ye shall do; Speak ye every man the
+truth to his neighbour; execute the judgment of truth and peace in
+your gates: 8:17 And let none of you imagine evil in your hearts
+against his neighbour; and love no false oath: for all these are
+things that I hate, saith the LORD.
+
+8:18 And the word of the LORD of hosts came unto me, saying, 8:19 Thus
+saith the LORD of hosts; The fast of the fourth month, and the fast of
+the fifth, and the fast of the seventh, and the fast of the tenth,
+shall be to the house of Judah joy and gladness, and cheerful feasts;
+therefore love the truth and peace.
+
+8:20 Thus saith the LORD of hosts; It shall yet come to pass, that
+there shall come people, and the inhabitants of many cities: 8:21 And
+the inhabitants of one city shall go to another, saying, Let us go
+speedily to pray before the LORD, and to seek the LORD of hosts: I
+will go also.
+
+8:22 Yea, many people and strong nations shall come to seek the LORD
+of hosts in Jerusalem, and to pray before the LORD.
+
+8:23 Thus saith the LORD of hosts; In those days it shall come to
+pass, that ten men shall take hold out of all languages of the
+nations, even shall take hold of the skirt of him that is a Jew,
+saying, We will go with you: for we have heard that God is with you.
+
+9:1 The burden of the word of the LORD in the land of Hadrach, and
+Damascus shall be the rest thereof: when the eyes of man, as of all
+the tribes of Israel, shall be toward the LORD.
+
+9:2 And Hamath also shall border thereby; Tyrus, and Zidon, though it
+be very wise.
+
+9:3 And Tyrus did build herself a strong hold, and heaped up silver as
+the dust, and fine gold as the mire of the streets.
+
+9:4 Behold, the LORD will cast her out, and he will smite her power in
+the sea; and she shall be devoured with fire.
+
+9:5 Ashkelon shall see it, and fear; Gaza also shall see it, and be
+very sorrowful, and Ekron; for her expectation shall be ashamed; and
+the king shall perish from Gaza, and Ashkelon shall not be inhabited.
+
+9:6 And a bastard shall dwell in Ashdod, and I will cut off the pride
+of the Philistines.
+
+9:7 And I will take away his blood out of his mouth, and his
+abominations from between his teeth: but he that remaineth, even he,
+shall be for our God, and he shall be as a governor in Judah, and
+Ekron as a Jebusite.
+
+9:8 And I will encamp about mine house because of the army, because of
+him that passeth by, and because of him that returneth: and no
+oppressor shall pass through them any more: for now have I seen with
+mine eyes.
+
+9:9 Rejoice greatly, O daughter of Zion; shout, O daughter of
+Jerusalem: behold, thy King cometh unto thee: he is just, and having
+salvation; lowly, and riding upon an ass, and upon a colt the foal of
+an ass.
+
+9:10 And I will cut off the chariot from Ephraim, and the horse from
+Jerusalem, and the battle bow shall be cut off: and he shall speak
+peace unto the heathen: and his dominion shall be from sea even to
+sea, and from the river even to the ends of the earth.
+
+9:11 As for thee also, by the blood of thy covenant I have sent forth
+thy prisoners out of the pit wherein is no water.
+
+9:12 Turn you to the strong hold, ye prisoners of hope: even to day do
+I declare that I will render double unto thee; 9:13 When I have bent
+Judah for me, filled the bow with Ephraim, and raised up thy sons, O
+Zion, against thy sons, O Greece, and made thee as the sword of a
+mighty man.
+
+9:14 And the LORD shall be seen over them, and his arrow shall go
+forth as the lightning: and the LORD God shall blow the trumpet, and
+shall go with whirlwinds of the south.
+
+9:15 The LORD of hosts shall defend them; and they shall devour, and
+subdue with sling stones; and they shall drink, and make a noise as
+through wine; and they shall be filled like bowls, and as the corners
+of the altar.
+
+9:16 And the LORD their God shall save them in that day as the flock
+of his people: for they shall be as the stones of a crown, lifted up
+as an ensign upon his land.
+
+9:17 For how great is his goodness, and how great is his beauty! corn
+shall make the young men cheerful, and new wine the maids.
+
+10:1 Ask ye of the LORD rain in the time of the latter rain; so the
+LORD shall make bright clouds, and give them showers of rain, to every
+one grass in the field.
+
+10:2 For the idols have spoken vanity, and the diviners have seen a
+lie, and have told false dreams; they comfort in vain: therefore they
+went their way as a flock, they were troubled, because there was no
+shepherd.
+
+10:3 Mine anger was kindled against the shepherds, and I punished the
+goats: for the LORD of hosts hath visited his flock the house of
+Judah, and hath made them as his goodly horse in the battle.
+
+10:4 Out of him came forth the corner, out of him the nail, out of him
+the battle bow, out of him every oppressor together.
+
+10:5 And they shall be as mighty men, which tread down their enemies
+in the mire of the streets in the battle: and they shall fight,
+because the LORD is with them, and the riders on horses shall be
+confounded.
+
+10:6 And I will strengthen the house of Judah, and I will save the
+house of Joseph, and I will bring them again to place them; for I have
+mercy upon them: and they shall be as though I had not cast them off:
+for I am the LORD their God, and will hear them.
+
+10:7 And they of Ephraim shall be like a mighty man, and their heart
+shall rejoice as through wine: yea, their children shall see it, and
+be glad; their heart shall rejoice in the LORD.
+
+10:8 I will hiss for them, and gather them; for I have redeemed them:
+and they shall increase as they have increased.
+
+10:9 And I will sow them among the people: and they shall remember me
+in far countries; and they shall live with their children, and turn
+again.
+
+10:10 I will bring them again also out of the land of Egypt, and
+gather them out of Assyria; and I will bring them into the land of
+Gilead and Lebanon; and place shall not be found for them.
+
+10:11 And he shall pass through the sea with affliction, and shall
+smite the waves in the sea, and all the deeps of the river shall dry
+up: and the pride of Assyria shall be brought down, and the sceptre of
+Egypt shall depart away.
+
+10:12 And I will strengthen them in the LORD; and they shall walk up
+and down in his name, saith the LORD.
+
+11:1 Open thy doors, O Lebanon, that the fire may devour thy cedars.
+
+11:2 Howl, fir tree; for the cedar is fallen; because the mighty are
+spoiled: howl, O ye oaks of Bashan; for the forest of the vintage is
+come down.
+
+11:3 There is a voice of the howling of the shepherds; for their glory
+is spoiled: a voice of the roaring of young lions; for the pride of
+Jordan is spoiled.
+
+11:4 Thus saith the LORD my God; Feed the flock of the slaughter; 11:5
+Whose possessors slay them, and hold themselves not guilty: and they
+that sell them say, Blessed be the LORD; for I am rich: and their own
+shepherds pity them not.
+
+11:6 For I will no more pity the inhabitants of the land, saith the
+LORD: but, lo, I will deliver the men every one into his neighbour's
+hand, and into the hand of his king: and they shall smite the land,
+and out of their hand I will not deliver them.
+
+11:7 And I will feed the flock of slaughter, even you, O poor of the
+flock. And I took unto me two staves; the one I called Beauty, and the
+other I called Bands; and I fed the flock.
+
+11:8 Three shepherds also I cut off in one month; and my soul lothed
+them, and their soul also abhorred me.
+
+11:9 Then said I, I will not feed you: that that dieth, let it die;
+and that that is to be cut off, let it be cut off; and let the rest
+eat every one the flesh of another.
+
+11:10 And I took my staff, even Beauty, and cut it asunder, that I
+might break my covenant which I had made with all the people.
+
+11:11 And it was broken in that day: and so the poor of the flock that
+waited upon me knew that it was the word of the LORD.
+
+11:12 And I said unto them, If ye think good, give me my price; and if
+not, forbear. So they weighed for my price thirty pieces of silver.
+
+11:13 And the LORD said unto me, Cast it unto the potter: a goodly
+price that I was prised at of them. And I took the thirty pieces of
+silver, and cast them to the potter in the house of the LORD.
+
+11:14 Then I cut asunder mine other staff, even Bands, that I might
+break the brotherhood between Judah and Israel.
+
+11:15 And the LORD said unto me, Take unto thee yet the instruments of
+a foolish shepherd.
+
+11:16 For, lo, I will raise up a shepherd in the land, which shall not
+visit those that be cut off, neither shall seek the young one, nor
+heal that that is broken, nor feed that that standeth still: but he
+shall eat the flesh of the fat, and tear their claws in pieces.
+
+11:17 Woe to the idol shepherd that leaveth the flock! the sword shall
+be upon his arm, and upon his right eye: his arm shall be clean dried
+up, and his right eye shall be utterly darkened.
+
+12:1 The burden of the word of the LORD for Israel, saith the LORD,
+which stretcheth forth the heavens, and layeth the foundation of the
+earth, and formeth the spirit of man within him.
+
+12:2 Behold, I will make Jerusalem a cup of trembling unto all the
+people round about, when they shall be in the siege both against Judah
+and against Jerusalem.
+
+12:3 And in that day will I make Jerusalem a burdensome stone for all
+people: all that burden themselves with it shall be cut in pieces,
+though all the people of the earth be gathered together against it.
+
+12:4 In that day, saith the LORD, I will smite every horse with
+astonishment, and his rider with madness: and I will open mine eyes
+upon the house of Judah, and will smite every horse of the people with
+blindness.
+
+12:5 And the governors of Judah shall say in their heart, The
+inhabitants of Jerusalem shall be my strength in the LORD of hosts
+their God.
+
+12:6 In that day will I make the governors of Judah like an hearth of
+fire among the wood, and like a torch of fire in a sheaf; and they
+shall devour all the people round about, on the right hand and on the
+left: and Jerusalem shall be inhabited again in her own place, even in
+Jerusalem.
+
+12:7 The LORD also shall save the tents of Judah first, that the glory
+of the house of David and the glory of the inhabitants of Jerusalem do
+not magnify themselves against Judah.
+
+12:8 In that day shall the LORD defend the inhabitants of Jerusalem;
+and he that is feeble among them at that day shall be as David; and
+the house of David shall be as God, as the angel of the LORD before
+them.
+
+12:9 And it shall come to pass in that day, that I will seek to
+destroy all the nations that come against Jerusalem.
+
+12:10 And I will pour upon the house of David, and upon the
+inhabitants of Jerusalem, the spirit of grace and of supplications:
+and they shall look upon me whom they have pierced, and they shall
+mourn for him, as one mourneth for his only son, and shall be in
+bitterness for him, as one that is in bitterness for his firstborn.
+
+12:11 In that day shall there be a great mourning in Jerusalem, as the
+mourning of Hadadrimmon in the valley of Megiddon.
+
+12:12 And the land shall mourn, every family apart; the family of the
+house of David apart, and their wives apart; the family of the house
+of Nathan apart, and their wives apart; 12:13 The family of the house
+of Levi apart, and their wives apart; the family of Shimei apart, and
+their wives apart; 12:14 All the families that remain, every family
+apart, and their wives apart.
+
+13:1 In that day there shall be a fountain opened to the house of
+David and to the inhabitants of Jerusalem for sin and for uncleanness.
+
+13:2 And it shall come to pass in that day, saith the LORD of hosts,
+that I will cut off the names of the idols out of the land, and they
+shall no more be remembered: and also I will cause the prophets and
+the unclean spirit to pass out of the land.
+
+13:3 And it shall come to pass, that when any shall yet prophesy, then
+his father and his mother that begat him shall say unto him, Thou
+shalt not live; for thou speakest lies in the name of the LORD: and
+his father and his mother that begat him shall thrust him through when
+he prophesieth.
+
+13:4 And it shall come to pass in that day, that the prophets shall be
+ashamed every one of his vision, when he hath prophesied; neither
+shall they wear a rough garment to deceive: 13:5 But he shall say, I
+am no prophet, I am an husbandman; for man taught me to keep cattle
+from my youth.
+
+13:6 And one shall say unto him, What are these wounds in thine hands?
+Then he shall answer, Those with which I was wounded in the house of
+my friends.
+
+13:7 Awake, O sword, against my shepherd, and against the man that is
+my fellow, saith the LORD of hosts: smite the shepherd, and the sheep
+shall be scattered: and I will turn mine hand upon the little ones.
+
+13:8 And it shall come to pass, that in all the land, saith the LORD,
+two parts therein shall be cut off and die; but the third shall be
+left therein.
+
+13:9 And I will bring the third part through the fire, and will refine
+them as silver is refined, and will try them as gold is tried: they
+shall call on my name, and I will hear them: I will say, It is my
+people: and they shall say, The LORD is my God.
+
+14:1 Behold, the day of the LORD cometh, and thy spoil shall be
+divided in the midst of thee.
+
+14:2 For I will gather all nations against Jerusalem to battle; and
+the city shall be taken, and the houses rifled, and the women
+ravished; and half of the city shall go forth into captivity, and the
+residue of the people shall not be cut off from the city.
+
+14:3 Then shall the LORD go forth, and fight against those nations, as
+when he fought in the day of battle.
+
+14:4 And his feet shall stand in that day upon the mount of Olives,
+which is before Jerusalem on the east, and the mount of Olives shall
+cleave in the midst thereof toward the east and toward the west, and
+there shall be a very great valley; and half of the mountain shall
+remove toward the north, and half of it toward the south.
+
+14:5 And ye shall flee to the valley of the mountains; for the valley
+of the mountains shall reach unto Azal: yea, ye shall flee, like as ye
+fled from before the earthquake in the days of Uzziah king of Judah:
+and the LORD my God shall come, and all the saints with thee.
+
+14:6 And it shall come to pass in that day, that the light shall not
+be clear, nor dark: 14:7 But it shall be one day which shall be known
+to the LORD, not day, nor night: but it shall come to pass, that at
+evening time it shall be light.
+
+14:8 And it shall be in that day, that living waters shall go out from
+Jerusalem; half of them toward the former sea, and half of them toward
+the hinder sea: in summer and in winter shall it be.
+
+14:9 And the LORD shall be king over all the earth: in that day shall
+there be one LORD, and his name one.
+
+14:10 All the land shall be turned as a plain from Geba to Rimmon
+south of Jerusalem: and it shall be lifted up, and inhabited in her
+place, from Benjamin's gate unto the place of the first gate, unto the
+corner gate, and from the tower of Hananeel unto the king's
+winepresses.
+
+14:11 And men shall dwell in it, and there shall be no more utter
+destruction; but Jerusalem shall be safely inhabited.
+
+14:12 And this shall be the plague wherewith the LORD will smite all
+the people that have fought against Jerusalem; Their flesh shall
+consume away while they stand upon their feet, and their eyes shall
+consume away in their holes, and their tongue shall consume away in
+their mouth.
+
+14:13 And it shall come to pass in that day, that a great tumult from
+the LORD shall be among them; and they shall lay hold every one on the
+hand of his neighbour, and his hand shall rise up against the hand of
+his neighbour.
+
+14:14 And Judah also shall fight at Jerusalem; and the wealth of all
+the heathen round about shall be gathered together, gold, and silver,
+and apparel, in great abundance.
+
+14:15 And so shall be the plague of the horse, of the mule, of the
+camel, and of the ass, and of all the beasts that shall be in these
+tents, as this plague.
+
+14:16 And it shall come to pass, that every one that is left of all
+the nations which came against Jerusalem shall even go up from year to
+year to worship the King, the LORD of hosts, and to keep the feast of
+tabernacles.
+
+14:17 And it shall be, that whoso will not come up of all the families
+of the earth unto Jerusalem to worship the King, the LORD of hosts,
+even upon them shall be no rain.
+
+14:18 And if the family of Egypt go not up, and come not, that have no
+rain; there shall be the plague, wherewith the LORD will smite the
+heathen that come not up to keep the feast of tabernacles.
+
+14:19 This shall be the punishment of Egypt, and the punishment of all
+nations that come not up to keep the feast of tabernacles.
+
+14:20 In that day shall there be upon the bells of the horses,
+HOLINESS UNTO THE LORD; and the pots in the LORD's house shall be like
+the bowls before the altar.
+
+14:21 Yea, every pot in Jerusalem and in Judah shall be holiness unto
+the LORD of hosts: and all they that sacrifice shall come and take of
+them, and seethe therein: and in that day there shall be no more the
+Canaanite in the house of the LORD of hosts.
+
+
+
+
+Malachi
+
+
+1:1 The burden of the word of the LORD to Israel by Malachi.
+
+1:2 I have loved you, saith the LORD. Yet ye say, Wherein hast thou
+loved us? Was not Esau Jacob's brother? saith the LORD: yet I loved
+Jacob, 1:3 And I hated Esau, and laid his mountains and his heritage
+waste for the dragons of the wilderness.
+
+1:4 Whereas Edom saith, We are impoverished, but we will return and
+build the desolate places; thus saith the LORD of hosts, They shall
+build, but I will throw down; and they shall call them, The border of
+wickedness, and, The people against whom the LORD hath indignation for
+ever.
+
+1:5 And your eyes shall see, and ye shall say, The LORD will be
+magnified from the border of Israel.
+
+1:6 A son honoureth his father, and a servant his master: if then I be
+a father, where is mine honour? and if I be a master, where is my
+fear? saith the LORD of hosts unto you, O priests, that despise my
+name. And ye say, Wherein have we despised thy name? 1:7 Ye offer
+polluted bread upon mine altar; and ye say, Wherein have we polluted
+thee? In that ye say, The table of the LORD is contemptible.
+
+1:8 And if ye offer the blind for sacrifice, is it not evil? and if ye
+offer the lame and sick, is it not evil? offer it now unto thy
+governor; will he be pleased with thee, or accept thy person? saith
+the LORD of hosts.
+
+1:9 And now, I pray you, beseech God that he will be gracious unto us:
+this hath been by your means: will he regard your persons? saith the
+LORD of hosts.
+
+1:10 Who is there even among you that would shut the doors for nought?
+neither do ye kindle fire on mine altar for nought. I have no pleasure
+in you, saith the LORD of hosts, neither will I accept an offering at
+your hand.
+
+1:11 For from the rising of the sun even unto the going down of the
+same my name shall be great among the Gentiles; and in every place
+incense shall be offered unto my name, and a pure offering: for my
+name shall be great among the heathen, saith the LORD of hosts.
+
+1:12 But ye have profaned it, in that ye say, The table of the LORD is
+polluted; and the fruit thereof, even his meat, is contemptible.
+
+1:13 Ye said also, Behold, what a weariness is it! and ye have snuffed
+at it, saith the LORD of hosts; and ye brought that which was torn,
+and the lame, and the sick; thus ye brought an offering: should I
+accept this of your hand? saith the LORD.
+
+1:14 But cursed be the deceiver, which hath in his flock a male, and
+voweth, and sacrificeth unto the LORD a corrupt thing: for I am a
+great King, saith the LORD of hosts, and my name is dreadful among the
+heathen.
+
+2:1 And now, O ye priests, this commandment is for you.
+
+2:2 If ye will not hear, and if ye will not lay it to heart, to give
+glory unto my name, saith the LORD of hosts, I will even send a curse
+upon you, and I will curse your blessings: yea, I have cursed them
+already, because ye do not lay it to heart.
+
+2:3 Behold, I will corrupt your seed, and spread dung upon your faces,
+even the dung of your solemn feasts; and one shall take you away with
+it.
+
+2:4 And ye shall know that I have sent this commandment unto you, that
+my covenant might be with Levi, saith the LORD of hosts.
+
+2:5 My covenant was with him of life and peace; and I gave them to him
+for the fear wherewith he feared me, and was afraid before my name.
+
+2:6 The law of truth was in his mouth, and iniquity was not found in
+his lips: he walked with me in peace and equity, and did turn many
+away from iniquity.
+
+2:7 For the priest's lips should keep knowledge, and they should seek
+the law at his mouth: for he is the messenger of the LORD of hosts.
+
+2:8 But ye are departed out of the way; ye have caused many to stumble
+at the law; ye have corrupted the covenant of Levi, saith the LORD of
+hosts.
+
+2:9 Therefore have I also made you contemptible and base before all
+the people, according as ye have not kept my ways, but have been
+partial in the law.
+
+2:10 Have we not all one father? hath not one God created us? why do
+we deal treacherously every man against his brother, by profaning the
+covenant of our fathers? 2:11 Judah hath dealt treacherously, and an
+abomination is committed in Israel and in Jerusalem; for Judah hath
+profaned the holiness of the LORD which he loved, and hath married the
+daughter of a strange god.
+
+2:12 The LORD will cut off the man that doeth this, the master and the
+scholar, out of the tabernacles of Jacob, and him that offereth an
+offering unto the LORD of hosts.
+
+2:13 And this have ye done again, covering the altar of the LORD with
+tears, with weeping, and with crying out, insomuch that he regardeth
+not the offering any more, or receiveth it with good will at your
+hand.
+
+2:14 Yet ye say, Wherefore? Because the LORD hath been witness between
+thee and the wife of thy youth, against whom thou hast dealt
+treacherously: yet is she thy companion, and the wife of thy covenant.
+
+2:15 And did not he make one? Yet had he the residue of the spirit.
+And wherefore one? That he might seek a godly seed. Therefore take
+heed to your spirit, and let none deal treacherously against the wife
+of his youth.
+
+2:16 For the LORD, the God of Israel, saith that he hateth putting
+away: for one covereth violence with his garment, saith the LORD of
+hosts: therefore take heed to your spirit, that ye deal not
+treacherously.
+
+2:17 Ye have wearied the LORD with your words. Yet ye say, Wherein
+have we wearied him? When ye say, Every one that doeth evil is good in
+the sight of the LORD, and he delighteth in them; or, Where is the God
+of judgment? 3:1 Behold, I will send my messenger, and he shall
+prepare the way before me: and the LORD, whom ye seek, shall suddenly
+come to his temple, even the messenger of the covenant, whom ye
+delight in: behold, he shall come, saith the LORD of hosts.
+
+3:2 But who may abide the day of his coming? and who shall stand when
+he appeareth? for he is like a refiner's fire, and like fullers' soap:
+3:3 And he shall sit as a refiner and purifier of silver: and he shall
+purify the sons of Levi, and purge them as gold and silver, that they
+may offer unto the LORD an offering in righteousness.
+
+3:4 Then shall the offering of Judah and Jerusalem be pleasant unto
+the LORD, as in the days of old, and as in former years.
+
+3:5 And I will come near to you to judgment; and I will be a swift
+witness against the sorcerers, and against the adulterers, and against
+false swearers, and against those that oppress the hireling in his
+wages, the widow, and the fatherless, and that turn aside the stranger
+from his right, and fear not me, saith the LORD of hosts.
+
+3:6 For I am the LORD, I change not; therefore ye sons of Jacob are
+not consumed.
+
+3:7 Even from the days of your fathers ye are gone away from mine
+ordinances, and have not kept them. Return unto me, and I will return
+unto you, saith the LORD of hosts. But ye said, Wherein shall we
+return? 3:8 Will a man rob God? Yet ye have robbed me. But ye say,
+Wherein have we robbed thee? In tithes and offerings.
+
+3:9 Ye are cursed with a curse: for ye have robbed me, even this whole
+nation.
+
+3:10 Bring ye all the tithes into the storehouse, that there may be
+meat in mine house, and prove me now herewith, saith the LORD of
+hosts, if I will not open you the windows of heaven, and pour you out
+a blessing, that there shall not be room enough to receive it.
+
+3:11 And I will rebuke the devourer for your sakes, and he shall not
+destroy the fruits of your ground; neither shall your vine cast her
+fruit before the time in the field, saith the LORD of hosts.
+
+3:12 And all nations shall call you blessed: for ye shall be a
+delightsome land, saith the LORD of hosts.
+
+3:13 Your words have been stout against me, saith the LORD. Yet ye
+say, What have we spoken so much against thee? 3:14 Ye have said, It
+is vain to serve God: and what profit is it that we have kept his
+ordinance, and that we have walked mournfully before the LORD of
+hosts? 3:15 And now we call the proud happy; yea, they that work
+wickedness are set up; yea, they that tempt God are even delivered.
+
+3:16 Then they that feared the LORD spake often one to another: and
+the LORD hearkened, and heard it, and a book of remembrance was
+written before him for them that feared the LORD, and that thought
+upon his name.
+
+3:17 And they shall be mine, saith the LORD of hosts, in that day when
+I make up my jewels; and I will spare them, as a man spareth his own
+son that serveth him.
+
+3:18 Then shall ye return, and discern between the righteous and the
+wicked, between him that serveth God and him that serveth him not.
+
+4:1 For, behold, the day cometh, that shall burn as an oven; and all
+the proud, yea, and all that do wickedly, shall be stubble: and the
+day that cometh shall burn them up, saith the LORD of hosts, that it
+shall leave them neither root nor branch.
+
+4:2 But unto you that fear my name shall the Sun of righteousness
+arise with healing in his wings; and ye shall go forth, and grow up as
+calves of the stall.
+
+4:3 And ye shall tread down the wicked; for they shall be ashes under
+the soles of your feet in the day that I shall do this, saith the LORD
+of hosts.
+
+4:4 Remember ye the law of Moses my servant, which I commanded unto
+him in Horeb for all Israel, with the statutes and judgments.
+
+4:5 Behold, I will send you Elijah the prophet before the coming of
+the great and dreadful day of the LORD: 4:6 And he shall turn the
+heart of the fathers to the children, and the heart of the children to
+their fathers, lest I come and smite the earth with a curse.
+
+
+***
+
+
+
+
+The New Testament of the King James Bible
+
+
+
+
+The Gospel According to Saint Matthew
+
+
+1:1 The book of the generation of Jesus Christ, the son of David, the
+son of Abraham.
+
+1:2 Abraham begat Isaac; and Isaac begat Jacob; and Jacob begat Judas
+and his brethren; 1:3 And Judas begat Phares and Zara of Thamar; and
+Phares begat Esrom; and Esrom begat Aram; 1:4 And Aram begat Aminadab;
+and Aminadab begat Naasson; and Naasson begat Salmon; 1:5 And Salmon
+begat Booz of Rachab; and Booz begat Obed of Ruth; and Obed begat
+Jesse; 1:6 And Jesse begat David the king; and David the king begat
+Solomon of her that had been the wife of Urias; 1:7 And Solomon begat
+Roboam; and Roboam begat Abia; and Abia begat Asa; 1:8 And Asa begat
+Josaphat; and Josaphat begat Joram; and Joram begat Ozias; 1:9 And
+Ozias begat Joatham; and Joatham begat Achaz; and Achaz begat Ezekias;
+1:10 And Ezekias begat Manasses; and Manasses begat Amon; and Amon
+begat Josias; 1:11 And Josias begat Jechonias and his brethren, about
+the time they were carried away to Babylon: 1:12 And after they were
+brought to Babylon, Jechonias begat Salathiel; and Salathiel begat
+Zorobabel; 1:13 And Zorobabel begat Abiud; and Abiud begat Eliakim;
+and Eliakim begat Azor; 1:14 And Azor begat Sadoc; and Sadoc begat
+Achim; and Achim begat Eliud; 1:15 And Eliud begat Eleazar; and
+Eleazar begat Matthan; and Matthan begat Jacob; 1:16 And Jacob begat
+Joseph the husband of Mary, of whom was born Jesus, who is called
+Christ.
+
+1:17 So all the generations from Abraham to David are fourteen
+generations; and from David until the carrying away into Babylon are
+fourteen generations; and from the carrying away into Babylon unto
+Christ are fourteen generations.
+
+1:18 Now the birth of Jesus Christ was on this wise: When as his
+mother Mary was espoused to Joseph, before they came together, she was
+found with child of the Holy Ghost.
+
+1:19 Then Joseph her husband, being a just man, and not willing to
+make her a publick example, was minded to put her away privily.
+
+1:20 But while he thought on these things, behold, the angel of the
+LORD appeared unto him in a dream, saying, Joseph, thou son of David,
+fear not to take unto thee Mary thy wife: for that which is conceived
+in her is of the Holy Ghost.
+
+1:21 And she shall bring forth a son, and thou shalt call his name
+JESUS: for he shall save his people from their sins.
+
+1:22 Now all this was done, that it might be fulfilled which was
+spoken of the Lord by the prophet, saying, 1:23 Behold, a virgin shall
+be with child, and shall bring forth a son, and they shall call his
+name Emmanuel, which being interpreted is, God with us.
+
+1:24 Then Joseph being raised from sleep did as the angel of the Lord
+had bidden him, and took unto him his wife: 1:25 And knew her not till
+she had brought forth her firstborn son: and he called his name JESUS.
+
+2:1 Now when Jesus was born in Bethlehem of Judaea in the days of
+Herod the king, behold, there came wise men from the east to
+Jerusalem, 2:2 Saying, Where is he that is born King of the Jews? for
+we have seen his star in the east, and are come to worship him.
+
+2:3 When Herod the king had heard these things, he was troubled, and
+all Jerusalem with him.
+
+2:4 And when he had gathered all the chief priests and scribes of the
+people together, he demanded of them where Christ should be born.
+
+2:5 And they said unto him, In Bethlehem of Judaea: for thus it is
+written by the prophet, 2:6 And thou Bethlehem, in the land of Juda,
+art not the least among the princes of Juda: for out of thee shall
+come a Governor, that shall rule my people Israel.
+
+2:7 Then Herod, when he had privily called the wise men, enquired of
+them diligently what time the star appeared.
+
+2:8 And he sent them to Bethlehem, and said, Go and search diligently
+for the young child; and when ye have found him, bring me word again,
+that I may come and worship him also.
+
+2:9 When they had heard the king, they departed; and, lo, the star,
+which they saw in the east, went before them, till it came and stood
+over where the young child was.
+
+2:10 When they saw the star, they rejoiced with exceeding great joy.
+
+2:11 And when they were come into the house, they saw the young child
+with Mary his mother, and fell down, and worshipped him: and when they
+had opened their treasures, they presented unto him gifts; gold, and
+frankincense and myrrh.
+
+2:12 And being warned of God in a dream that they should not return to
+Herod, they departed into their own country another way.
+
+2:13 And when they were departed, behold, the angel of the Lord
+appeareth to Joseph in a dream, saying, Arise, and take the young
+child and his mother, and flee into Egypt, and be thou there until I
+bring thee word: for Herod will seek the young child to destroy him.
+
+2:14 When he arose, he took the young child and his mother by night,
+and departed into Egypt: 2:15 And was there until the death of Herod:
+that it might be fulfilled which was spoken of the Lord by the
+prophet, saying, Out of Egypt have I called my son.
+
+2:16 Then Herod, when he saw that he was mocked of the wise men, was
+exceeding wroth, and sent forth, and slew all the children that were
+in Bethlehem, and in all the coasts thereof, from two years old and
+under, according to the time which he had diligently enquired of the
+wise men.
+
+2:17 Then was fulfilled that which was spoken by Jeremy the prophet,
+saying, 2:18 In Rama was there a voice heard, lamentation, and
+weeping, and great mourning, Rachel weeping for her children, and
+would not be comforted, because they are not.
+
+2:19 But when Herod was dead, behold, an angel of the Lord appeareth
+in a dream to Joseph in Egypt, 2:20 Saying, Arise, and take the young
+child and his mother, and go into the land of Israel: for they are
+dead which sought the young child's life.
+
+2:21 And he arose, and took the young child and his mother, and came
+into the land of Israel.
+
+2:22 But when he heard that Archelaus did reign in Judaea in the room
+of his father Herod, he was afraid to go thither: notwithstanding,
+being warned of God in a dream, he turned aside into the parts of
+Galilee: 2:23 And he came and dwelt in a city called Nazareth: that it
+might be fulfilled which was spoken by the prophets, He shall be
+called a Nazarene.
+
+3:1 In those days came John the Baptist, preaching in the wilderness
+of Judaea, 3:2 And saying, Repent ye: for the kingdom of heaven is at
+hand.
+
+3:3 For this is he that was spoken of by the prophet Esaias, saying,
+The voice of one crying in the wilderness, Prepare ye the way of the
+Lord, make his paths straight.
+
+3:4 And the same John had his raiment of camel's hair, and a leathern
+girdle about his loins; and his meat was locusts and wild honey.
+
+3:5 Then went out to him Jerusalem, and all Judaea, and all the region
+round about Jordan, 3:6 And were baptized of him in Jordan, confessing
+their sins.
+
+3:7 But when he saw many of the Pharisees and Sadducees come to his
+baptism, he said unto them, O generation of vipers, who hath warned
+you to flee from the wrath to come? 3:8 Bring forth therefore fruits
+meet for repentance: 3:9 And think not to say within yourselves, We
+have Abraham to our father: for I say unto you, that God is able of
+these stones to raise up children unto Abraham.
+
+3:10 And now also the axe is laid unto the root of the trees:
+therefore every tree which bringeth not forth good fruit is hewn down,
+and cast into the fire.
+
+3:11 I indeed baptize you with water unto repentance. but he that
+cometh after me is mightier than I, whose shoes I am not worthy to
+bear: he shall baptize you with the Holy Ghost, and with fire: 3:12
+Whose fan is in his hand, and he will throughly purge his floor, and
+gather his wheat into the garner; but he will burn up the chaff with
+unquenchable fire.
+
+3:13 Then cometh Jesus from Galilee to Jordan unto John, to be
+baptized of him.
+
+3:14 But John forbad him, saying, I have need to be baptized of thee,
+and comest thou to me? 3:15 And Jesus answering said unto him, Suffer
+it to be so now: for thus it becometh us to fulfil all righteousness.
+Then he suffered him.
+
+3:16 And Jesus, when he was baptized, went up straightway out of the
+water: and, lo, the heavens were opened unto him, and he saw the
+Spirit of God descending like a dove, and lighting upon him: 3:17 And
+lo a voice from heaven, saying, This is my beloved Son, in whom I am
+well pleased.
+
+4:1 Then was Jesus led up of the spirit into the wilderness to be
+tempted of the devil.
+
+4:2 And when he had fasted forty days and forty nights, he was
+afterward an hungred.
+
+4:3 And when the tempter came to him, he said, If thou be the Son of
+God, command that these stones be made bread.
+
+4:4 But he answered and said, It is written, Man shall not live by
+bread alone, but by every word that proceedeth out of the mouth of
+God.
+
+4:5 Then the devil taketh him up into the holy city, and setteth him
+on a pinnacle of the temple, 4:6 And saith unto him, If thou be the
+Son of God, cast thyself down: for it is written, He shall give his
+angels charge concerning thee: and in their hands they shall bear thee
+up, lest at any time thou dash thy foot against a stone.
+
+4:7 Jesus said unto him, It is written again, Thou shalt not tempt the
+Lord thy God.
+
+4:8 Again, the devil taketh him up into an exceeding high mountain,
+and sheweth him all the kingdoms of the world, and the glory of them;
+4:9 And saith unto him, All these things will I give thee, if thou
+wilt fall down and worship me.
+
+4:10 Then saith Jesus unto him, Get thee hence, Satan: for it is
+written, Thou shalt worship the Lord thy God, and him only shalt thou
+serve.
+
+4:11 Then the devil leaveth him, and, behold, angels came and
+ministered unto him.
+
+4:12 Now when Jesus had heard that John was cast into prison, he
+departed into Galilee; 4:13 And leaving Nazareth, he came and dwelt in
+Capernaum, which is upon the sea coast, in the borders of Zabulon and
+Nephthalim: 4:14 That it might be fulfilled which was spoken by Esaias
+the prophet, saying, 4:15 The land of Zabulon, and the land of
+Nephthalim, by the way of the sea, beyond Jordan, Galilee of the
+Gentiles; 4:16 The people which sat in darkness saw great light; and
+to them which sat in the region and shadow of death light is sprung
+up.
+
+4:17 From that time Jesus began to preach, and to say, Repent: for the
+kingdom of heaven is at hand.
+
+4:18 And Jesus, walking by the sea of Galilee, saw two brethren, Simon
+called Peter, and Andrew his brother, casting a net into the sea: for
+they were fishers.
+
+4:19 And he saith unto them, Follow me, and I will make you fishers of
+men.
+
+4:20 And they straightway left their nets, and followed him.
+
+4:21 And going on from thence, he saw other two brethren, James the
+son of Zebedee, and John his brother, in a ship with Zebedee their
+father, mending their nets; and he called them.
+
+4:22 And they immediately left the ship and their father, and followed
+him.
+
+4:23 And Jesus went about all Galilee, teaching in their synagogues,
+and preaching the gospel of the kingdom, and healing all manner of
+sickness and all manner of disease among the people.
+
+4:24 And his fame went throughout all Syria: and they brought unto him
+all sick people that were taken with divers diseases and torments, and
+those which were possessed with devils, and those which were lunatick,
+and those that had the palsy; and he healed them.
+
+4:25 And there followed him great multitudes of people from Galilee,
+and from Decapolis, and from Jerusalem, and from Judaea, and from
+beyond Jordan.
+
+5:1 And seeing the multitudes, he went up into a mountain: and when he
+was set, his disciples came unto him: 5:2 And he opened his mouth, and
+taught them, saying, 5:3 Blessed are the poor in spirit: for theirs is
+the kingdom of heaven.
+
+5:4 Blessed are they that mourn: for they shall be comforted.
+
+5:5 Blessed are the meek: for they shall inherit the earth.
+
+5:6 Blessed are they which do hunger and thirst after righteousness:
+for they shall be filled.
+
+5:7 Blessed are the merciful: for they shall obtain mercy.
+
+5:8 Blessed are the pure in heart: for they shall see God.
+
+5:9 Blessed are the peacemakers: for they shall be called the children
+of God.
+
+5:10 Blessed are they which are persecuted for righteousness' sake:
+for theirs is the kingdom of heaven.
+
+5:11 Blessed are ye, when men shall revile you, and persecute you, and
+shall say all manner of evil against you falsely, for my sake.
+
+5:12 Rejoice, and be exceeding glad: for great is your reward in
+heaven: for so persecuted they the prophets which were before you.
+
+5:13 Ye are the salt of the earth: but if the salt have lost his
+savour, wherewith shall it be salted? it is thenceforth good for
+nothing, but to be cast out, and to be trodden under foot of men.
+
+5:14 Ye are the light of the world. A city that is set on an hill
+cannot be hid.
+
+5:15 Neither do men light a candle, and put it under a bushel, but on
+a candlestick; and it giveth light unto all that are in the house.
+
+5:16 Let your light so shine before men, that they may see your good
+works, and glorify your Father which is in heaven.
+
+5:17 Think not that I am come to destroy the law, or the prophets: I
+am not come to destroy, but to fulfil.
+
+5:18 For verily I say unto you, Till heaven and earth pass, one jot or
+one tittle shall in no wise pass from the law, till all be fulfilled.
+
+5:19 Whosoever therefore shall break one of these least commandments,
+and shall teach men so, he shall be called the least in the kingdom of
+heaven: but whosoever shall do and teach them, the same shall be
+called great in the kingdom of heaven.
+
+5:20 For I say unto you, That except your righteousness shall exceed
+the righteousness of the scribes and Pharisees, ye shall in no case
+enter into the kingdom of heaven.
+
+5:21 Ye have heard that it was said by them of old time, Thou shalt
+not kill; and whosoever shall kill shall be in danger of the judgment:
+5:22 But I say unto you, That whosoever is angry with his brother
+without a cause shall be in danger of the judgment: and whosoever
+shall say to his brother, Raca, shall be in danger of the council: but
+whosoever shall say, Thou fool, shall be in danger of hell fire.
+
+5:23 Therefore if thou bring thy gift to the altar, and there
+rememberest that thy brother hath ought against thee; 5:24 Leave there
+thy gift before the altar, and go thy way; first be reconciled to thy
+brother, and then come and offer thy gift.
+
+5:25 Agree with thine adversary quickly, whiles thou art in the way
+with him; lest at any time the adversary deliver thee to the judge,
+and the judge deliver thee to the officer, and thou be cast into
+prison.
+
+5:26 Verily I say unto thee, Thou shalt by no means come out thence,
+till thou hast paid the uttermost farthing.
+
+5:27 Ye have heard that it was said by them of old time, Thou shalt
+not commit adultery: 5:28 But I say unto you, That whosoever looketh
+on a woman to lust after her hath committed adultery with her already
+in his heart.
+
+5:29 And if thy right eye offend thee, pluck it out, and cast it from
+thee: for it is profitable for thee that one of thy members should
+perish, and not that thy whole body should be cast into hell.
+
+5:30 And if thy right hand offend thee, cut it off, and cast it from
+thee: for it is profitable for thee that one of thy members should
+perish, and not that thy whole body should be cast into hell.
+
+5:31 It hath been said, Whosoever shall put away his wife, let him
+give her a writing of divorcement: 5:32 But I say unto you, That
+whosoever shall put away his wife, saving for the cause of
+fornication, causeth her to commit adultery: and whosoever shall marry
+her that is divorced committeth adultery.
+
+5:33 Again, ye have heard that it hath been said by them of old time,
+Thou shalt not forswear thyself, but shalt perform unto the Lord thine
+oaths: 5:34 But I say unto you, Swear not at all; neither by heaven;
+for it is God's throne: 5:35 Nor by the earth; for it is his
+footstool: neither by Jerusalem; for it is the city of the great King.
+
+5:36 Neither shalt thou swear by thy head, because thou canst not make
+one hair white or black.
+
+5:37 But let your communication be, Yea, yea; Nay, nay: for whatsoever
+is more than these cometh of evil.
+
+5:38 Ye have heard that it hath been said, An eye for an eye, and a
+tooth for a tooth: 5:39 But I say unto you, That ye resist not evil:
+but whosoever shall smite thee on thy right cheek, turn to him the
+other also.
+
+5:40 And if any man will sue thee at the law, and take away thy coat,
+let him have thy cloak also.
+
+5:41 And whosoever shall compel thee to go a mile, go with him twain.
+
+5:42 Give to him that asketh thee, and from him that would borrow of
+thee turn not thou away.
+
+5:43 Ye have heard that it hath been said, Thou shalt love thy
+neighbour, and hate thine enemy.
+
+5:44 But I say unto you, Love your enemies, bless them that curse you,
+do good to them that hate you, and pray for them which despitefully
+use you, and persecute you; 5:45 That ye may be the children of your
+Father which is in heaven: for he maketh his sun to rise on the evil
+and on the good, and sendeth rain on the just and on the unjust.
+
+5:46 For if ye love them which love you, what reward have ye? do not
+even the publicans the same? 5:47 And if ye salute your brethren
+only, what do ye more than others? do not even the publicans so? 5:48
+Be ye therefore perfect, even as your Father which is in heaven is
+perfect.
+
+6:1 Take heed that ye do not your alms before men, to be seen of them:
+otherwise ye have no reward of your Father which is in heaven.
+
+6:2 Therefore when thou doest thine alms, do not sound a trumpet
+before thee, as the hypocrites do in the synagogues and in the
+streets, that they may have glory of men. Verily I say unto you, They
+have their reward.
+
+6:3 But when thou doest alms, let not thy left hand know what thy
+right hand doeth: 6:4 That thine alms may be in secret: and thy Father
+which seeth in secret himself shall reward thee openly.
+
+6:5 And when thou prayest, thou shalt not be as the hypocrites are:
+for they love to pray standing in the synagogues and in the corners of
+the streets, that they may be seen of men. Verily I say unto you, They
+have their reward.
+
+6:6 But thou, when thou prayest, enter into thy closet, and when thou
+hast shut thy door, pray to thy Father which is in secret; and thy
+Father which seeth in secret shall reward thee openly.
+
+6:7 But when ye pray, use not vain repetitions, as the heathen do: for
+they think that they shall be heard for their much speaking.
+
+6:8 Be not ye therefore like unto them: for your Father knoweth what
+things ye have need of, before ye ask him.
+
+6:9 After this manner therefore pray ye: Our Father which art in
+heaven, Hallowed be thy name.
+
+6:10 Thy kingdom come, Thy will be done in earth, as it is in heaven.
+
+6:11 Give us this day our daily bread.
+
+6:12 And forgive us our debts, as we forgive our debtors.
+
+6:13 And lead us not into temptation, but deliver us from evil: For
+thine is the kingdom, and the power, and the glory, for ever. Amen.
+
+6:14 For if ye forgive men their trespasses, your heavenly Father will
+also forgive you: 6:15 But if ye forgive not men their trespasses,
+neither will your Father forgive your trespasses.
+
+6:16 Moreover when ye fast, be not, as the hypocrites, of a sad
+countenance: for they disfigure their faces, that they may appear unto
+men to fast. Verily I say unto you, They have their reward.
+
+6:17 But thou, when thou fastest, anoint thine head, and wash thy
+face; 6:18 That thou appear not unto men to fast, but unto thy Father
+which is in secret: and thy Father, which seeth in secret, shall
+reward thee openly.
+
+6:19 Lay not up for yourselves treasures upon earth, where moth and
+rust doth corrupt, and where thieves break through and steal: 6:20 But
+lay up for yourselves treasures in heaven, where neither moth nor rust
+doth corrupt, and where thieves do not break through nor steal: 6:21
+For where your treasure is, there will your heart be also.
+
+6:22 The light of the body is the eye: if therefore thine eye be
+single, thy whole body shall be full of light.
+
+6:23 But if thine eye be evil, thy whole body shall be full of
+darkness.
+
+If therefore the light that is in thee be darkness, how great is that
+darkness! 6:24 No man can serve two masters: for either he will hate
+the one, and love the other; or else he will hold to the one, and
+despise the other. Ye cannot serve God and mammon.
+
+6:25 Therefore I say unto you, Take no thought for your life, what ye
+shall eat, or what ye shall drink; nor yet for your body, what ye
+shall put on. Is not the life more than meat, and the body than
+raiment? 6:26 Behold the fowls of the air: for they sow not, neither
+do they reap, nor gather into barns; yet your heavenly Father feedeth
+them. Are ye not much better than they? 6:27 Which of you by taking
+thought can add one cubit unto his stature? 6:28 And why take ye
+thought for raiment? Consider the lilies of the field, how they grow;
+they toil not, neither do they spin: 6:29 And yet I say unto you, That
+even Solomon in all his glory was not arrayed like one of these.
+
+6:30 Wherefore, if God so clothe the grass of the field, which to day
+is, and to morrow is cast into the oven, shall he not much more clothe
+you, O ye of little faith? 6:31 Therefore take no thought, saying,
+What shall we eat? or, What shall we drink? or, Wherewithal shall we
+be clothed? 6:32 (For after all these things do the Gentiles seek:)
+for your heavenly Father knoweth that ye have need of all these
+things.
+
+6:33 But seek ye first the kingdom of God, and his righteousness; and
+all these things shall be added unto you.
+
+6:34 Take therefore no thought for the morrow: for the morrow shall
+take thought for the things of itself. Sufficient unto the day is the
+evil thereof.
+
+7:1 Judge not, that ye be not judged.
+
+7:2 For with what judgment ye judge, ye shall be judged: and with what
+measure ye mete, it shall be measured to you again.
+
+7:3 And why beholdest thou the mote that is in thy brother's eye, but
+considerest not the beam that is in thine own eye? 7:4 Or how wilt
+thou say to thy brother, Let me pull out the mote out of thine eye;
+and, behold, a beam is in thine own eye? 7:5 Thou hypocrite, first
+cast out the beam out of thine own eye; and then shalt thou see
+clearly to cast out the mote out of thy brother's eye.
+
+7:6 Give not that which is holy unto the dogs, neither cast ye your
+pearls before swine, lest they trample them under their feet, and turn
+again and rend you.
+
+7:7 Ask, and it shall be given you; seek, and ye shall find; knock,
+and it shall be opened unto you: 7:8 For every one that asketh
+receiveth; and he that seeketh findeth; and to him that knocketh it
+shall be opened.
+
+7:9 Or what man is there of you, whom if his son ask bread, will he
+give him a stone? 7:10 Or if he ask a fish, will he give him a
+serpent? 7:11 If ye then, being evil, know how to give good gifts
+unto your children, how much more shall your Father which is in heaven
+give good things to them that ask him? 7:12 Therefore all things
+whatsoever ye would that men should do to you, do ye even so to them:
+for this is the law and the prophets.
+
+7:13 Enter ye in at the strait gate: for wide is the gate, and broad
+is the way, that leadeth to destruction, and many there be which go in
+thereat: 7:14 Because strait is the gate, and narrow is the way, which
+leadeth unto life, and few there be that find it.
+
+7:15 Beware of false prophets, which come to you in sheep's clothing,
+but inwardly they are ravening wolves.
+
+7:16 Ye shall know them by their fruits. Do men gather grapes of
+thorns, or figs of thistles? 7:17 Even so every good tree bringeth
+forth good fruit; but a corrupt tree bringeth forth evil fruit.
+
+7:18 A good tree cannot bring forth evil fruit, neither can a corrupt
+tree bring forth good fruit.
+
+7:19 Every tree that bringeth not forth good fruit is hewn down, and
+cast into the fire.
+
+7:20 Wherefore by their fruits ye shall know them.
+
+7:21 Not every one that saith unto me, Lord, Lord, shall enter into
+the kingdom of heaven; but he that doeth the will of my Father which
+is in heaven.
+
+7:22 Many will say to me in that day, Lord, Lord, have we not
+prophesied in thy name? and in thy name have cast out devils? and in
+thy name done many wonderful works? 7:23 And then will I profess unto
+them, I never knew you: depart from me, ye that work iniquity.
+
+7:24 Therefore whosoever heareth these sayings of mine, and doeth
+them, I will liken him unto a wise man, which built his house upon a
+rock: 7:25 And the rain descended, and the floods came, and the winds
+blew, and beat upon that house; and it fell not: for it was founded
+upon a rock.
+
+7:26 And every one that heareth these sayings of mine, and doeth them
+not, shall be likened unto a foolish man, which built his house upon
+the sand: 7:27 And the rain descended, and the floods came, and the
+winds blew, and beat upon that house; and it fell: and great was the
+fall of it.
+
+7:28 And it came to pass, when Jesus had ended these sayings, the
+people were astonished at his doctrine: 7:29 For he taught them as one
+having authority, and not as the scribes.
+
+8:1 When he was come down from the mountain, great multitudes followed
+him.
+
+8:2 And, behold, there came a leper and worshipped him, saying, Lord,
+if thou wilt, thou canst make me clean.
+
+8:3 And Jesus put forth his hand, and touched him, saying, I will; be
+thou clean. And immediately his leprosy was cleansed.
+
+8:4 And Jesus saith unto him, See thou tell no man; but go thy way,
+shew thyself to the priest, and offer the gift that Moses commanded,
+for a testimony unto them.
+
+8:5 And when Jesus was entered into Capernaum, there came unto him a
+centurion, beseeching him, 8:6 And saying, Lord, my servant lieth at
+home sick of the palsy, grievously tormented.
+
+8:7 And Jesus saith unto him, I will come and heal him.
+
+8:8 The centurion answered and said, Lord, I am not worthy that thou
+shouldest come under my roof: but speak the word only, and my servant
+shall be healed.
+
+8:9 For I am a man under authority, having soldiers under me: and I
+say to this man, Go, and he goeth; and to another, Come, and he
+cometh; and to my servant, Do this, and he doeth it.
+
+8:10 When Jesus heard it, he marvelled, and said to them that
+followed, Verily I say unto you, I have not found so great faith, no,
+not in Israel.
+
+8:11 And I say unto you, That many shall come from the east and west,
+and shall sit down with Abraham, and Isaac, and Jacob, in the kingdom
+of heaven.
+
+8:12 But the children of the kingdom shall be cast out into outer
+darkness: there shall be weeping and gnashing of teeth.
+
+8:13 And Jesus said unto the centurion, Go thy way; and as thou hast
+believed, so be it done unto thee. And his servant was healed in the
+selfsame hour.
+
+8:14 And when Jesus was come into Peter's house, he saw his wife's
+mother laid, and sick of a fever.
+
+8:15 And he touched her hand, and the fever left her: and she arose,
+and ministered unto them.
+
+8:16 When the even was come, they brought unto him many that were
+possessed with devils: and he cast out the spirits with his word, and
+healed all that were sick: 8:17 That it might be fulfilled which was
+spoken by Esaias the prophet, saying, Himself took our infirmities,
+and bare our sicknesses.
+
+8:18 Now when Jesus saw great multitudes about him, he gave
+commandment to depart unto the other side.
+
+8:19 And a certain scribe came, and said unto him, Master, I will
+follow thee whithersoever thou goest.
+
+8:20 And Jesus saith unto him, The foxes have holes, and the birds of
+the air have nests; but the Son of man hath not where to lay his head.
+
+8:21 And another of his disciples said unto him, Lord, suffer me first
+to go and bury my father.
+
+8:22 But Jesus said unto him, Follow me; and let the dead bury their
+dead.
+
+8:23 And when he was entered into a ship, his disciples followed him.
+
+8:24 And, behold, there arose a great tempest in the sea, insomuch
+that the ship was covered with the waves: but he was asleep.
+
+8:25 And his disciples came to him, and awoke him, saying, Lord, save
+us: we perish.
+
+8:26 And he saith unto them, Why are ye fearful, O ye of little faith?
+Then he arose, and rebuked the winds and the sea; and there was a
+great calm.
+
+8:27 But the men marvelled, saying, What manner of man is this, that
+even the winds and the sea obey him! 8:28 And when he was come to the
+other side into the country of the Gergesenes, there met him two
+possessed with devils, coming out of the tombs, exceeding fierce, so
+that no man might pass by that way.
+
+8:29 And, behold, they cried out, saying, What have we to do with
+thee, Jesus, thou Son of God? art thou come hither to torment us
+before the time? 8:30 And there was a good way off from them an herd
+of many swine feeding.
+
+8:31 So the devils besought him, saying, If thou cast us out, suffer
+us to go away into the herd of swine.
+
+8:32 And he said unto them, Go. And when they were come out, they went
+into the herd of swine: and, behold, the whole herd of swine ran
+violently down a steep place into the sea, and perished in the waters.
+
+8:33 And they that kept them fled, and went their ways into the city,
+and told every thing, and what was befallen to the possessed of the
+devils.
+
+8:34 And, behold, the whole city came out to meet Jesus: and when they
+saw him, they besought him that he would depart out of their coasts.
+
+9:1 And he entered into a ship, and passed over, and came into his own
+city.
+
+9:2 And, behold, they brought to him a man sick of the palsy, lying on
+a bed: and Jesus seeing their faith said unto the sick of the palsy;
+Son, be of good cheer; thy sins be forgiven thee.
+
+9:3 And, behold, certain of the scribes said within themselves, This
+man blasphemeth.
+
+9:4 And Jesus knowing their thoughts said, Wherefore think ye evil in
+your hearts? 9:5 For whether is easier, to say, Thy sins be forgiven
+thee; or to say, Arise, and walk? 9:6 But that ye may know that the
+Son of man hath power on earth to forgive sins, (then saith he to the
+sick of the palsy,) Arise, take up thy bed, and go unto thine house.
+
+9:7 And he arose, and departed to his house.
+
+9:8 But when the multitudes saw it, they marvelled, and glorified God,
+which had given such power unto men.
+
+9:9 And as Jesus passed forth from thence, he saw a man, named
+Matthew, sitting at the receipt of custom: and he saith unto him,
+Follow me. And he arose, and followed him.
+
+9:10 And it came to pass, as Jesus sat at meat in the house, behold,
+many publicans and sinners came and sat down with him and his
+disciples.
+
+9:11 And when the Pharisees saw it, they said unto his disciples, Why
+eateth your Master with publicans and sinners? 9:12 But when Jesus
+heard that, he said unto them, They that be whole need not a
+physician, but they that are sick.
+
+9:13 But go ye and learn what that meaneth, I will have mercy, and not
+sacrifice: for I am not come to call the righteous, but sinners to
+repentance.
+
+9:14 Then came to him the disciples of John, saying, Why do we and the
+Pharisees fast oft, but thy disciples fast not? 9:15 And Jesus said
+unto them, Can the children of the bridechamber mourn, as long as the
+bridegroom is with them? but the days will come, when the bridegroom
+shall be taken from them, and then shall they fast.
+
+9:16 No man putteth a piece of new cloth unto an old garment, for that
+which is put in to fill it up taketh from the garment, and the rent is
+made worse.
+
+9:17 Neither do men put new wine into old bottles: else the bottles
+break, and the wine runneth out, and the bottles perish: but they put
+new wine into new bottles, and both are preserved.
+
+9:18 While he spake these things unto them, behold, there came a
+certain ruler, and worshipped him, saying, My daughter is even now
+dead: but come and lay thy hand upon her, and she shall live.
+
+9:19 And Jesus arose, and followed him, and so did his disciples.
+
+9:20 And, behold, a woman, which was diseased with an issue of blood
+twelve years, came behind him, and touched the hem of his garment:
+9:21 For she said within herself, If I may but touch his garment, I
+shall be whole.
+
+9:22 But Jesus turned him about, and when he saw her, he said,
+Daughter, be of good comfort; thy faith hath made thee whole. And the
+woman was made whole from that hour.
+
+9:23 And when Jesus came into the ruler's house, and saw the minstrels
+and the people making a noise, 9:24 He said unto them, Give place: for
+the maid is not dead, but sleepeth. And they laughed him to scorn.
+
+9:25 But when the people were put forth, he went in, and took her by
+the hand, and the maid arose.
+
+9:26 And the fame hereof went abroad into all that land.
+
+9:27 And when Jesus departed thence, two blind men followed him,
+crying, and saying, Thou son of David, have mercy on us.
+
+9:28 And when he was come into the house, the blind men came to him:
+and Jesus saith unto them, Believe ye that I am able to do this? They
+said unto him, Yea, Lord.
+
+9:29 Then touched he their eyes, saying, According to your faith be it
+unto you.
+
+9:30 And their eyes were opened; and Jesus straitly charged them,
+saying, See that no man know it.
+
+9:31 But they, when they were departed, spread abroad his fame in all
+that country.
+
+9:32 As they went out, behold, they brought to him a dumb man
+possessed with a devil.
+
+9:33 And when the devil was cast out, the dumb spake: and the
+multitudes marvelled, saying, It was never so seen in Israel.
+
+9:34 But the Pharisees said, He casteth out devils through the prince
+of the devils.
+
+9:35 And Jesus went about all the cities and villages, teaching in
+their synagogues, and preaching the gospel of the kingdom, and healing
+every sickness and every disease among the people.
+
+9:36 But when he saw the multitudes, he was moved with compassion on
+them, because they fainted, and were scattered abroad, as sheep having
+no shepherd.
+
+9:37 Then saith he unto his disciples, The harvest truly is plenteous,
+but the labourers are few; 9:38 Pray ye therefore the Lord of the
+harvest, that he will send forth labourers into his harvest.
+
+10:1 And when he had called unto him his twelve disciples, he gave
+them power against unclean spirits, to cast them out, and to heal all
+manner of sickness and all manner of disease.
+
+10:2 Now the names of the twelve apostles are these; The first, Simon,
+who is called Peter, and Andrew his brother; James the son of Zebedee,
+and John his brother; 10:3 Philip, and Bartholomew; Thomas, and
+Matthew the publican; James the son of Alphaeus, and Lebbaeus, whose
+surname was Thaddaeus; 10:4 Simon the Canaanite, and Judas Iscariot,
+who also betrayed him.
+
+10:5 These twelve Jesus sent forth, and commanded them, saying, Go not
+into the way of the Gentiles, and into any city of the Samaritans
+enter ye not: 10:6 But go rather to the lost sheep of the house of
+Israel.
+
+10:7 And as ye go, preach, saying, The kingdom of heaven is at hand.
+
+10:8 Heal the sick, cleanse the lepers, raise the dead, cast out
+devils: freely ye have received, freely give.
+
+10:9 Provide neither gold, nor silver, nor brass in your purses, 10:10
+Nor scrip for your journey, neither two coats, neither shoes, nor yet
+staves: for the workman is worthy of his meat.
+
+10:11 And into whatsoever city or town ye shall enter, enquire who in
+it is worthy; and there abide till ye go thence.
+
+10:12 And when ye come into an house, salute it.
+
+10:13 And if the house be worthy, let your peace come upon it: but if
+it be not worthy, let your peace return to you.
+
+10:14 And whosoever shall not receive you, nor hear your words, when
+ye depart out of that house or city, shake off the dust of your feet.
+
+10:15 Verily I say unto you, It shall be more tolerable for the land
+of Sodom and Gomorrha in the day of judgment, than for that city.
+
+10:16 Behold, I send you forth as sheep in the midst of wolves: be ye
+therefore wise as serpents, and harmless as doves.
+
+10:17 But beware of men: for they will deliver you up to the councils,
+and they will scourge you in their synagogues; 10:18 And ye shall be
+brought before governors and kings for my sake, for a testimony
+against them and the Gentiles.
+
+10:19 But when they deliver you up, take no thought how or what ye
+shall speak: for it shall be given you in that same hour what ye shall
+speak.
+
+10:20 For it is not ye that speak, but the Spirit of your Father which
+speaketh in you.
+
+10:21 And the brother shall deliver up the brother to death, and the
+father the child: and the children shall rise up against their
+parents, and cause them to be put to death.
+
+10:22 And ye shall be hated of all men for my name's sake: but he that
+endureth to the end shall be saved.
+
+10:23 But when they persecute you in this city, flee ye into another:
+for verily I say unto you, Ye shall not have gone over the cities of
+Israel, till the Son of man be come.
+
+10:24 The disciple is not above his master, nor the servant above his
+lord.
+
+10:25 It is enough for the disciple that he be as his master, and the
+servant as his lord. If they have called the master of the house
+Beelzebub, how much more shall they call them of his household? 10:26
+Fear them not therefore: for there is nothing covered, that shall not
+be revealed; and hid, that shall not be known.
+
+10:27 What I tell you in darkness, that speak ye in light: and what ye
+hear in the ear, that preach ye upon the housetops.
+
+10:28 And fear not them which kill the body, but are not able to kill
+the soul: but rather fear him which is able to destroy both soul and
+body in hell.
+
+10:29 Are not two sparrows sold for a farthing? and one of them shall
+not fall on the ground without your Father.
+
+10:30 But the very hairs of your head are all numbered.
+
+10:31 Fear ye not therefore, ye are of more value than many sparrows.
+
+10:32 Whosoever therefore shall confess me before men, him will I
+confess also before my Father which is in heaven.
+
+10:33 But whosoever shall deny me before men, him will I also deny
+before my Father which is in heaven.
+
+10:34 Think not that I am come to send peace on earth: I came not to
+send peace, but a sword.
+
+10:35 For I am come to set a man at variance against his father, and
+the daughter against her mother, and the daughter in law against her
+mother in law.
+
+10:36 And a man's foes shall be they of his own household.
+
+10:37 He that loveth father or mother more than me is not worthy of
+me: and he that loveth son or daughter more than me is not worthy of
+me.
+
+10:38 And he that taketh not his cross, and followeth after me, is not
+worthy of me.
+
+10:39 He that findeth his life shall lose it: and he that loseth his
+life for my sake shall find it.
+
+10:40 He that receiveth you receiveth me, and he that receiveth me
+receiveth him that sent me.
+
+10:41 He that receiveth a prophet in the name of a prophet shall
+receive a prophet's reward; and he that receiveth a righteous man in
+the name of a righteous man shall receive a righteous man's reward.
+
+10:42 And whosoever shall give to drink unto one of these little ones
+a cup of cold water only in the name of a disciple, verily I say unto
+you, he shall in no wise lose his reward.
+
+11:1 And it came to pass, when Jesus had made an end of commanding his
+twelve disciples, he departed thence to teach and to preach in their
+cities.
+
+11:2 Now when John had heard in the prison the works of Christ, he
+sent two of his disciples, 11:3 And said unto him, Art thou he that
+should come, or do we look for another? 11:4 Jesus answered and said
+unto them, Go and shew John again those things which ye do hear and
+see: 11:5 The blind receive their sight, and the lame walk, the lepers
+are cleansed, and the deaf hear, the dead are raised up, and the poor
+have the gospel preached to them.
+
+11:6 And blessed is he, whosoever shall not be offended in me.
+
+11:7 And as they departed, Jesus began to say unto the multitudes
+concerning John, What went ye out into the wilderness to see? A reed
+shaken with the wind? 11:8 But what went ye out for to see? A man
+clothed in soft raiment? behold, they that wear soft clothing are in
+kings' houses.
+
+11:9 But what went ye out for to see? A prophet? yea, I say unto you,
+and more than a prophet.
+
+11:10 For this is he, of whom it is written, Behold, I send my
+messenger before thy face, which shall prepare thy way before thee.
+
+11:11 Verily I say unto you, Among them that are born of women there
+hath not risen a greater than John the Baptist: notwithstanding he
+that is least in the kingdom of heaven is greater than he.
+
+11:12 And from the days of John the Baptist until now the kingdom of
+heaven suffereth violence, and the violent take it by force.
+
+11:13 For all the prophets and the law prophesied until John.
+
+11:14 And if ye will receive it, this is Elias, which was for to come.
+
+11:15 He that hath ears to hear, let him hear.
+
+11:16 But whereunto shall I liken this generation? It is like unto
+children sitting in the markets, and calling unto their fellows, 11:17
+And saying, We have piped unto you, and ye have not danced; we have
+mourned unto you, and ye have not lamented.
+
+11:18 For John came neither eating nor drinking, and they say, He hath
+a devil.
+
+11:19 The Son of man came eating and drinking, and they say, Behold a
+man gluttonous, and a winebibber, a friend of publicans and sinners.
+But wisdom is justified of her children.
+
+11:20 Then began he to upbraid the cities wherein most of his mighty
+works were done, because they repented not: 11:21 Woe unto thee,
+Chorazin! woe unto thee, Bethsaida! for if the mighty works, which
+were done in you, had been done in Tyre and Sidon, they would have
+repented long ago in sackcloth and ashes.
+
+11:22 But I say unto you, It shall be more tolerable for Tyre and
+Sidon at the day of judgment, than for you.
+
+11:23 And thou, Capernaum, which art exalted unto heaven, shalt be
+brought down to hell: for if the mighty works, which have been done in
+thee, had been done in Sodom, it would have remained until this day.
+
+11:24 But I say unto you, That it shall be more tolerable for the land
+of Sodom in the day of judgment, than for thee.
+
+11:25 At that time Jesus answered and said, I thank thee, O Father,
+Lord of heaven and earth, because thou hast hid these things from the
+wise and prudent, and hast revealed them unto babes.
+
+11:26 Even so, Father: for so it seemed good in thy sight.
+
+11:27 All things are delivered unto me of my Father: and no man
+knoweth the Son, but the Father; neither knoweth any man the Father,
+save the Son, and he to whomsoever the Son will reveal him.
+
+11:28 Come unto me, all ye that labour and are heavy laden, and I will
+give you rest.
+
+11:29 Take my yoke upon you, and learn of me; for I am meek and lowly
+in heart: and ye shall find rest unto your souls.
+
+11:30 For my yoke is easy, and my burden is light.
+
+12:1 At that time Jesus went on the sabbath day through the corn; and
+his disciples were an hungred, and began to pluck the ears of corn and
+to eat.
+
+12:2 But when the Pharisees saw it, they said unto him, Behold, thy
+disciples do that which is not lawful to do upon the sabbath day.
+
+12:3 But he said unto them, Have ye not read what David did, when he
+was an hungred, and they that were with him; 12:4 How he entered into
+the house of God, and did eat the shewbread, which was not lawful for
+him to eat, neither for them which were with him, but only for the
+priests? 12:5 Or have ye not read in the law, how that on the sabbath
+days the priests in the temple profane the sabbath, and are blameless?
+12:6 But I say unto you, That in this place is one greater than the
+temple.
+
+12:7 But if ye had known what this meaneth, I will have mercy, and not
+sacrifice, ye would not have condemned the guiltless.
+
+12:8 For the Son of man is Lord even of the sabbath day.
+
+12:9 And when he was departed thence, he went into their synagogue:
+12:10 And, behold, there was a man which had his hand withered. And
+they asked him, saying, Is it lawful to heal on the sabbath days? that
+they might accuse him.
+
+12:11 And he said unto them, What man shall there be among you, that
+shall have one sheep, and if it fall into a pit on the sabbath day,
+will he not lay hold on it, and lift it out? 12:12 How much then is a
+man better than a sheep? Wherefore it is lawful to do well on the
+sabbath days.
+
+12:13 Then saith he to the man, Stretch forth thine hand. And he
+stretched it forth; and it was restored whole, like as the other.
+
+12:14 Then the Pharisees went out, and held a council against him, how
+they might destroy him.
+
+12:15 But when Jesus knew it, he withdrew himself from thence: and
+great multitudes followed him, and he healed them all; 12:16 And
+charged them that they should not make him known: 12:17 That it might
+be fulfilled which was spoken by Esaias the prophet, saying, 12:18
+Behold my servant, whom I have chosen; my beloved, in whom my soul is
+well pleased: I will put my spirit upon him, and he shall shew
+judgment to the Gentiles.
+
+12:19 He shall not strive, nor cry; neither shall any man hear his
+voice in the streets.
+
+12:20 A bruised reed shall he not break, and smoking flax shall he not
+quench, till he send forth judgment unto victory.
+
+12:21 And in his name shall the Gentiles trust.
+
+12:22 Then was brought unto him one possessed with a devil, blind, and
+dumb: and he healed him, insomuch that the blind and dumb both spake
+and saw.
+
+12:23 And all the people were amazed, and said, Is not this the son of
+David? 12:24 But when the Pharisees heard it, they said, This fellow
+doth not cast out devils, but by Beelzebub the prince of the devils.
+
+12:25 And Jesus knew their thoughts, and said unto them, Every kingdom
+divided against itself is brought to desolation; and every city or
+house divided against itself shall not stand: 12:26 And if Satan cast
+out Satan, he is divided against himself; how shall then his kingdom
+stand? 12:27 And if I by Beelzebub cast out devils, by whom do your
+children cast them out? therefore they shall be your judges.
+
+12:28 But if I cast out devils by the Spirit of God, then the kingdom
+of God is come unto you.
+
+12:29 Or else how can one enter into a strong man's house, and spoil
+his goods, except he first bind the strong man? and then he will spoil
+his house.
+
+12:30 He that is not with me is against me; and he that gathereth not
+with me scattereth abroad.
+
+12:31 Wherefore I say unto you, All manner of sin and blasphemy shall
+be forgiven unto men: but the blasphemy against the Holy Ghost shall
+not be forgiven unto men.
+
+12:32 And whosoever speaketh a word against the Son of man, it shall
+be forgiven him: but whosoever speaketh against the Holy Ghost, it
+shall not be forgiven him, neither in this world, neither in the world
+to come.
+
+12:33 Either make the tree good, and his fruit good; or else make the
+tree corrupt, and his fruit corrupt: for the tree is known by his
+fruit.
+
+12:34 O generation of vipers, how can ye, being evil, speak good
+things? for out of the abundance of the heart the mouth speaketh.
+
+12:35 A good man out of the good treasure of the heart bringeth forth
+good things: and an evil man out of the evil treasure bringeth forth
+evil things.
+
+12:36 But I say unto you, That every idle word that men shall speak,
+they shall give account thereof in the day of judgment.
+
+12:37 For by thy words thou shalt be justified, and by thy words thou
+shalt be condemned.
+
+12:38 Then certain of the scribes and of the Pharisees answered,
+saying, Master, we would see a sign from thee.
+
+12:39 But he answered and said unto them, An evil and adulterous
+generation seeketh after a sign; and there shall no sign be given to
+it, but the sign of the prophet Jonas: 12:40 For as Jonas was three
+days and three nights in the whale's belly; so shall the Son of man be
+three days and three nights in the heart of the earth.
+
+12:41 The men of Nineveh shall rise in judgment with this generation,
+and shall condemn it: because they repented at the preaching of Jonas;
+and, behold, a greater than Jonas is here.
+
+12:42 The queen of the south shall rise up in the judgment with this
+generation, and shall condemn it: for she came from the uttermost
+parts of the earth to hear the wisdom of Solomon; and, behold, a
+greater than Solomon is here.
+
+12:43 When the unclean spirit is gone out of a man, he walketh through
+dry places, seeking rest, and findeth none.
+
+12:44 Then he saith, I will return into my house from whence I came
+out; and when he is come, he findeth it empty, swept, and garnished.
+
+12:45 Then goeth he, and taketh with himself seven other spirits more
+wicked than himself, and they enter in and dwell there: and the last
+state of that man is worse than the first. Even so shall it be also
+unto this wicked generation.
+
+12:46 While he yet talked to the people, behold, his mother and his
+brethren stood without, desiring to speak with him.
+
+12:47 Then one said unto him, Behold, thy mother and thy brethren
+stand without, desiring to speak with thee.
+
+12:48 But he answered and said unto him that told him, Who is my
+mother? and who are my brethren? 12:49 And he stretched forth his
+hand toward his disciples, and said, Behold my mother and my brethren!
+12:50 For whosoever shall do the will of my Father which is in heaven,
+the same is my brother, and sister, and mother.
+
+13:1 The same day went Jesus out of the house, and sat by the sea
+side.
+
+13:2 And great multitudes were gathered together unto him, so that he
+went into a ship, and sat; and the whole multitude stood on the shore.
+
+13:3 And he spake many things unto them in parables, saying, Behold, a
+sower went forth to sow; 13:4 And when he sowed, some seeds fell by
+the way side, and the fowls came and devoured them up: 13:5 Some fell
+upon stony places, where they had not much earth: and forthwith they
+sprung up, because they had no deepness of earth: 13:6 And when the
+sun was up, they were scorched; and because they had no root, they
+withered away.
+
+13:7 And some fell among thorns; and the thorns sprung up, and choked
+them: 13:8 But other fell into good ground, and brought forth fruit,
+some an hundredfold, some sixtyfold, some thirtyfold.
+
+13:9 Who hath ears to hear, let him hear.
+
+13:10 And the disciples came, and said unto him, Why speakest thou
+unto them in parables? 13:11 He answered and said unto them, Because
+it is given unto you to know the mysteries of the kingdom of heaven,
+but to them it is not given.
+
+13:12 For whosoever hath, to him shall be given, and he shall have
+more abundance: but whosoever hath not, from him shall be taken away
+even that he hath.
+
+13:13 Therefore speak I to them in parables: because they seeing see
+not; and hearing they hear not, neither do they understand.
+
+13:14 And in them is fulfilled the prophecy of Esaias, which saith, By
+hearing ye shall hear, and shall not understand; and seeing ye shall
+see, and shall not perceive: 13:15 For this people's heart is waxed
+gross, and their ears are dull of hearing, and their eyes they have
+closed; lest at any time they should see with their eyes and hear with
+their ears, and should understand with their heart, and should be
+converted, and I should heal them.
+
+13:16 But blessed are your eyes, for they see: and your ears, for they
+hear.
+
+13:17 For verily I say unto you, That many prophets and righteous men
+have desired to see those things which ye see, and have not seen them;
+and to hear those things which ye hear, and have not heard them.
+
+13:18 Hear ye therefore the parable of the sower.
+
+13:19 When any one heareth the word of the kingdom, and understandeth
+it not, then cometh the wicked one, and catcheth away that which was
+sown in his heart. This is he which received seed by the way side.
+
+13:20 But he that received the seed into stony places, the same is he
+that heareth the word, and anon with joy receiveth it; 13:21 Yet hath
+he not root in himself, but dureth for a while: for when tribulation
+or persecution ariseth because of the word, by and by he is offended.
+
+13:22 He also that received seed among the thorns is he that heareth
+the word; and the care of this world, and the deceitfulness of riches,
+choke the word, and he becometh unfruitful.
+
+13:23 But he that received seed into the good ground is he that
+heareth the word, and understandeth it; which also beareth fruit, and
+bringeth forth, some an hundredfold, some sixty, some thirty.
+
+13:24 Another parable put he forth unto them, saying, The kingdom of
+heaven is likened unto a man which sowed good seed in his field: 13:25
+But while men slept, his enemy came and sowed tares among the wheat,
+and went his way.
+
+13:26 But when the blade was sprung up, and brought forth fruit, then
+appeared the tares also.
+
+13:27 So the servants of the householder came and said unto him, Sir,
+didst not thou sow good seed in thy field? from whence then hath it
+tares? 13:28 He said unto them, An enemy hath done this. The servants
+said unto him, Wilt thou then that we go and gather them up? 13:29
+But he said, Nay; lest while ye gather up the tares, ye root up also
+the wheat with them.
+
+13:30 Let both grow together until the harvest: and in the time of
+harvest I will say to the reapers, Gather ye together first the tares,
+and bind them in bundles to burn them: but gather the wheat into my
+barn.
+
+13:31 Another parable put he forth unto them, saying, The kingdom of
+heaven is like to a grain of mustard seed, which a man took, and sowed
+in his field: 13:32 Which indeed is the least of all seeds: but when
+it is grown, it is the greatest among herbs, and becometh a tree, so
+that the birds of the air come and lodge in the branches thereof.
+
+13:33 Another parable spake he unto them; The kingdom of heaven is
+like unto leaven, which a woman took, and hid in three measures of
+meal, till the whole was leavened.
+
+13:34 All these things spake Jesus unto the multitude in parables; and
+without a parable spake he not unto them: 13:35 That it might be
+fulfilled which was spoken by the prophet, saying, I will open my
+mouth in parables; I will utter things which have been kept secret
+from the foundation of the world.
+
+13:36 Then Jesus sent the multitude away, and went into the house: and
+his disciples came unto him, saying, Declare unto us the parable of
+the tares of the field.
+
+13:37 He answered and said unto them, He that soweth the good seed is
+the Son of man; 13:38 The field is the world; the good seed are the
+children of the kingdom; but the tares are the children of the wicked
+one; 13:39 The enemy that sowed them is the devil; the harvest is the
+end of the world; and the reapers are the angels.
+
+13:40 As therefore the tares are gathered and burned in the fire; so
+shall it be in the end of this world.
+
+13:41 The Son of man shall send forth his angels, and they shall
+gather out of his kingdom all things that offend, and them which do
+iniquity; 13:42 And shall cast them into a furnace of fire: there
+shall be wailing and gnashing of teeth.
+
+13:43 Then shall the righteous shine forth as the sun in the kingdom
+of their Father. Who hath ears to hear, let him hear.
+
+13:44 Again, the kingdom of heaven is like unto treasure hid in a
+field; the which when a man hath found, he hideth, and for joy thereof
+goeth and selleth all that he hath, and buyeth that field.
+
+13:45 Again, the kingdom of heaven is like unto a merchant man,
+seeking goodly pearls: 13:46 Who, when he had found one pearl of great
+price, went and sold all that he had, and bought it.
+
+13:47 Again, the kingdom of heaven is like unto a net, that was cast
+into the sea, and gathered of every kind: 13:48 Which, when it was
+full, they drew to shore, and sat down, and gathered the good into
+vessels, but cast the bad away.
+
+13:49 So shall it be at the end of the world: the angels shall come
+forth, and sever the wicked from among the just, 13:50 And shall cast
+them into the furnace of fire: there shall be wailing and gnashing of
+teeth.
+
+13:51 Jesus saith unto them, Have ye understood all these things? They
+say unto him, Yea, Lord.
+
+13:52 Then said he unto them, Therefore every scribe which is
+instructed unto the kingdom of heaven is like unto a man that is an
+householder, which bringeth forth out of his treasure things new and
+old.
+
+13:53 And it came to pass, that when Jesus had finished these
+parables, he departed thence.
+
+13:54 And when he was come into his own country, he taught them in
+their synagogue, insomuch that they were astonished, and said, Whence
+hath this man this wisdom, and these mighty works? 13:55 Is not this
+the carpenter's son? is not his mother called Mary? and his brethren,
+James, and Joses, and Simon, and Judas? 13:56 And his sisters, are
+they not all with us? Whence then hath this man all these things?
+13:57 And they were offended in him. But Jesus said unto them, A
+prophet is not without honour, save in his own country, and in his own
+house.
+
+13:58 And he did not many mighty works there because of their
+unbelief.
+
+14:1 At that time Herod the tetrarch heard of the fame of Jesus, 14:2
+And said unto his servants, This is John the Baptist; he is risen from
+the dead; and therefore mighty works do shew forth themselves in him.
+
+14:3 For Herod had laid hold on John, and bound him, and put him in
+prison for Herodias' sake, his brother Philip's wife.
+
+14:4 For John said unto him, It is not lawful for thee to have her.
+
+14:5 And when he would have put him to death, he feared the multitude,
+because they counted him as a prophet.
+
+14:6 But when Herod's birthday was kept, the daughter of Herodias
+danced before them, and pleased Herod.
+
+14:7 Whereupon he promised with an oath to give her whatsoever she
+would ask.
+
+14:8 And she, being before instructed of her mother, said, Give me
+here John Baptist's head in a charger.
+
+14:9 And the king was sorry: nevertheless for the oath's sake, and
+them which sat with him at meat, he commanded it to be given her.
+
+14:10 And he sent, and beheaded John in the prison.
+
+14:11 And his head was brought in a charger, and given to the damsel:
+and she brought it to her mother.
+
+14:12 And his disciples came, and took up the body, and buried it, and
+went and told Jesus.
+
+14:13 When Jesus heard of it, he departed thence by ship into a desert
+place apart: and when the people had heard thereof, they followed him
+on foot out of the cities.
+
+14:14 And Jesus went forth, and saw a great multitude, and was moved
+with compassion toward them, and he healed their sick.
+
+14:15 And when it was evening, his disciples came to him, saying, This
+is a desert place, and the time is now past; send the multitude away,
+that they may go into the villages, and buy themselves victuals.
+
+14:16 But Jesus said unto them, They need not depart; give ye them to
+eat.
+
+14:17 And they say unto him, We have here but five loaves, and two
+fishes.
+
+14:18 He said, Bring them hither to me.
+
+14:19 And he commanded the multitude to sit down on the grass, and
+took the five loaves, and the two fishes, and looking up to heaven, he
+blessed, and brake, and gave the loaves to his disciples, and the
+disciples to the multitude.
+
+14:20 And they did all eat, and were filled: and they took up of the
+fragments that remained twelve baskets full.
+
+14:21 And they that had eaten were about five thousand men, beside
+women and children.
+
+14:22 And straightway Jesus constrained his disciples to get into a
+ship, and to go before him unto the other side, while he sent the
+multitudes away.
+
+14:23 And when he had sent the multitudes away, he went up into a
+mountain apart to pray: and when the evening was come, he was there
+alone.
+
+14:24 But the ship was now in the midst of the sea, tossed with waves:
+for the wind was contrary.
+
+14:25 And in the fourth watch of the night Jesus went unto them,
+walking on the sea.
+
+14:26 And when the disciples saw him walking on the sea, they were
+troubled, saying, It is a spirit; and they cried out for fear.
+
+14:27 But straightway Jesus spake unto them, saying, Be of good cheer;
+it is I; be not afraid.
+
+14:28 And Peter answered him and said, Lord, if it be thou, bid me
+come unto thee on the water.
+
+14:29 And he said, Come. And when Peter was come down out of the ship,
+he walked on the water, to go to Jesus.
+
+14:30 But when he saw the wind boisterous, he was afraid; and
+beginning to sink, he cried, saying, Lord, save me.
+
+14:31 And immediately Jesus stretched forth his hand, and caught him,
+and said unto him, O thou of little faith, wherefore didst thou doubt?
+14:32 And when they were come into the ship, the wind ceased.
+
+14:33 Then they that were in the ship came and worshipped him, saying,
+Of a truth thou art the Son of God.
+
+14:34 And when they were gone over, they came into the land of
+Gennesaret.
+
+14:35 And when the men of that place had knowledge of him, they sent
+out into all that country round about, and brought unto him all that
+were diseased; 14:36 And besought him that they might only touch the
+hem of his garment: and as many as touched were made perfectly whole.
+
+15:1 Then came to Jesus scribes and Pharisees, which were of
+Jerusalem, saying, 15:2 Why do thy disciples transgress the tradition
+of the elders? for they wash not their hands when they eat bread.
+
+15:3 But he answered and said unto them, Why do ye also transgress the
+commandment of God by your tradition? 15:4 For God commanded, saying,
+Honour thy father and mother: and, He that curseth father or mother,
+let him die the death.
+
+15:5 But ye say, Whosoever shall say to his father or his mother, It
+is a gift, by whatsoever thou mightest be profited by me; 15:6 And
+honour not his father or his mother, he shall be free. Thus have ye
+made the commandment of God of none effect by your tradition.
+
+15:7 Ye hypocrites, well did Esaias prophesy of you, saying, 15:8 This
+people draweth nigh unto me with their mouth, and honoureth me with
+their lips; but their heart is far from me.
+
+15:9 But in vain they do worship me, teaching for doctrines the
+commandments of men.
+
+15:10 And he called the multitude, and said unto them, Hear, and
+understand: 15:11 Not that which goeth into the mouth defileth a man;
+but that which cometh out of the mouth, this defileth a man.
+
+15:12 Then came his disciples, and said unto him, Knowest thou that
+the Pharisees were offended, after they heard this saying? 15:13 But
+he answered and said, Every plant, which my heavenly Father hath not
+planted, shall be rooted up.
+
+15:14 Let them alone: they be blind leaders of the blind. And if the
+blind lead the blind, both shall fall into the ditch.
+
+15:15 Then answered Peter and said unto him, Declare unto us this
+parable.
+
+15:16 And Jesus said, Are ye also yet without understanding? 15:17 Do
+not ye yet understand, that whatsoever entereth in at the mouth goeth
+into the belly, and is cast out into the draught? 15:18 But those
+things which proceed out of the mouth come forth from the heart; and
+they defile the man.
+
+15:19 For out of the heart proceed evil thoughts, murders, adulteries,
+fornications, thefts, false witness, blasphemies: 15:20 These are the
+things which defile a man: but to eat with unwashen hands defileth not
+a man.
+
+15:21 Then Jesus went thence, and departed into the coasts of Tyre and
+Sidon.
+
+15:22 And, behold, a woman of Canaan came out of the same coasts, and
+cried unto him, saying, Have mercy on me, O Lord, thou son of David;
+my daughter is grievously vexed with a devil.
+
+15:23 But he answered her not a word. And his disciples came and
+besought him, saying, Send her away; for she crieth after us.
+
+15:24 But he answered and said, I am not sent but unto the lost sheep
+of the house of Israel.
+
+15:25 Then came she and worshipped him, saying, Lord, help me.
+
+15:26 But he answered and said, It is not meet to take the children's
+bread, and to cast it to dogs.
+
+15:27 And she said, Truth, Lord: yet the dogs eat of the crumbs which
+fall from their masters' table.
+
+15:28 Then Jesus answered and said unto her, O woman, great is thy
+faith: be it unto thee even as thou wilt. And her daughter was made
+whole from that very hour.
+
+15:29 And Jesus departed from thence, and came nigh unto the sea of
+Galilee; and went up into a mountain, and sat down there.
+
+15:30 And great multitudes came unto him, having with them those that
+were lame, blind, dumb, maimed, and many others, and cast them down at
+Jesus' feet; and he healed them: 15:31 Insomuch that the multitude
+wondered, when they saw the dumb to speak, the maimed to be whole, the
+lame to walk, and the blind to see: and they glorified the God of
+Israel.
+
+15:32 Then Jesus called his disciples unto him, and said, I have
+compassion on the multitude, because they continue with me now three
+days, and have nothing to eat: and I will not send them away fasting,
+lest they faint in the way.
+
+15:33 And his disciples say unto him, Whence should we have so much
+bread in the wilderness, as to fill so great a multitude? 15:34 And
+Jesus saith unto them, How many loaves have ye? And they said, Seven,
+and a few little fishes.
+
+15:35 And he commanded the multitude to sit down on the ground.
+
+15:36 And he took the seven loaves and the fishes, and gave thanks,
+and brake them, and gave to his disciples, and the disciples to the
+multitude.
+
+15:37 And they did all eat, and were filled: and they took up of the
+broken meat that was left seven baskets full.
+
+15:38 And they that did eat were four thousand men, beside women and
+children.
+
+15:39 And he sent away the multitude, and took ship, and came into the
+coasts of Magdala.
+
+16:1 The Pharisees also with the Sadducees came, and tempting desired
+him that he would shew them a sign from heaven.
+
+16:2 He answered and said unto them, When it is evening, ye say, It
+will be fair weather: for the sky is red.
+
+16:3 And in the morning, It will be foul weather to day: for the sky
+is red and lowering. O ye hypocrites, ye can discern the face of the
+sky; but can ye not discern the signs of the times? 16:4 A wicked and
+adulterous generation seeketh after a sign; and there shall no sign be
+given unto it, but the sign of the prophet Jonas. And he left them,
+and departed.
+
+16:5 And when his disciples were come to the other side, they had
+forgotten to take bread.
+
+16:6 Then Jesus said unto them, Take heed and beware of the leaven of
+the Pharisees and of the Sadducees.
+
+16:7 And they reasoned among themselves, saying, It is because we have
+taken no bread.
+
+16:8 Which when Jesus perceived, he said unto them, O ye of little
+faith, why reason ye among yourselves, because ye have brought no
+bread? 16:9 Do ye not yet understand, neither remember the five
+loaves of the five thousand, and how many baskets ye took up? 16:10
+Neither the seven loaves of the four thousand, and how many baskets ye
+took up? 16:11 How is it that ye do not understand that I spake it
+not to you concerning bread, that ye should beware of the leaven of
+the Pharisees and of the Sadducees? 16:12 Then understood they how
+that he bade them not beware of the leaven of bread, but of the
+doctrine of the Pharisees and of the Sadducees.
+
+16:13 When Jesus came into the coasts of Caesarea Philippi, he asked
+his disciples, saying, Whom do men say that I the Son of man am?
+16:14 And they said, Some say that thou art John the Baptist: some,
+Elias; and others, Jeremias, or one of the prophets.
+
+16:15 He saith unto them, But whom say ye that I am? 16:16 And Simon
+Peter answered and said, Thou art the Christ, the Son of the living
+God.
+
+16:17 And Jesus answered and said unto him, Blessed art thou, Simon
+Barjona: for flesh and blood hath not revealed it unto thee, but my
+Father which is in heaven.
+
+16:18 And I say also unto thee, That thou art Peter, and upon this
+rock I will build my church; and the gates of hell shall not prevail
+against it.
+
+16:19 And I will give unto thee the keys of the kingdom of heaven: and
+whatsoever thou shalt bind on earth shall be bound in heaven: and
+whatsoever thou shalt loose on earth shall be loosed in heaven.
+
+16:20 Then charged he his disciples that they should tell no man that
+he was Jesus the Christ.
+
+16:21 From that time forth began Jesus to shew unto his disciples, how
+that he must go unto Jerusalem, and suffer many things of the elders
+and chief priests and scribes, and be killed, and be raised again the
+third day.
+
+16:22 Then Peter took him, and began to rebuke him, saying, Be it far
+from thee, Lord: this shall not be unto thee.
+
+16:23 But he turned, and said unto Peter, Get thee behind me, Satan:
+thou art an offence unto me: for thou savourest not the things that be
+of God, but those that be of men.
+
+16:24 Then said Jesus unto his disciples, If any man will come after
+me, let him deny himself, and take up his cross, and follow me.
+
+16:25 For whosoever will save his life shall lose it: and whosoever
+will lose his life for my sake shall find it.
+
+16:26 For what is a man profited, if he shall gain the whole world,
+and lose his own soul? or what shall a man give in exchange for his
+soul? 16:27 For the Son of man shall come in the glory of his Father
+with his angels; and then he shall reward every man according to his
+works.
+
+16:28 Verily I say unto you, There be some standing here, which shall
+not taste of death, till they see the Son of man coming in his
+kingdom.
+
+17:1 And after six days Jesus taketh Peter, James, and John his
+brother, and bringeth them up into an high mountain apart, 17:2 And
+was transfigured before them: and his face did shine as the sun, and
+his raiment was white as the light.
+
+17:3 And, behold, there appeared unto them Moses and Elias talking
+with him.
+
+17:4 Then answered Peter, and said unto Jesus, Lord, it is good for us
+to be here: if thou wilt, let us make here three tabernacles; one for
+thee, and one for Moses, and one for Elias.
+
+17:5 While he yet spake, behold, a bright cloud overshadowed them: and
+behold a voice out of the cloud, which said, This is my beloved Son,
+in whom I am well pleased; hear ye him.
+
+17:6 And when the disciples heard it, they fell on their face, and
+were sore afraid.
+
+17:7 And Jesus came and touched them, and said, Arise, and be not
+afraid.
+
+17:8 And when they had lifted up their eyes, they saw no man, save
+Jesus only.
+
+17:9 And as they came down from the mountain, Jesus charged them,
+saying, Tell the vision to no man, until the Son of man be risen again
+from the dead.
+
+17:10 And his disciples asked him, saying, Why then say the scribes
+that Elias must first come? 17:11 And Jesus answered and said unto
+them, Elias truly shall first come, and restore all things.
+
+17:12 But I say unto you, That Elias is come already, and they knew
+him not, but have done unto him whatsoever they listed. Likewise shall
+also the Son of man suffer of them.
+
+17:13 Then the disciples understood that he spake unto them of John
+the Baptist.
+
+17:14 And when they were come to the multitude, there came to him a
+certain man, kneeling down to him, and saying, 17:15 Lord, have mercy
+on my son: for he is lunatick, and sore vexed: for ofttimes he falleth
+into the fire, and oft into the water.
+
+17:16 And I brought him to thy disciples, and they could not cure him.
+
+17:17 Then Jesus answered and said, O faithless and perverse
+generation, how long shall I be with you? how long shall I suffer you?
+bring him hither to me.
+
+17:18 And Jesus rebuked the devil; and he departed out of him: and the
+child was cured from that very hour.
+
+17:19 Then came the disciples to Jesus apart, and said, Why could not
+we cast him out? 17:20 And Jesus said unto them, Because of your
+unbelief: for verily I say unto you, If ye have faith as a grain of
+mustard seed, ye shall say unto this mountain, Remove hence to yonder
+place; and it shall remove; and nothing shall be impossible unto you.
+
+17:21 Howbeit this kind goeth not out but by prayer and fasting.
+
+17:22 And while they abode in Galilee, Jesus said unto them, The Son
+of man shall be betrayed into the hands of men: 17:23 And they shall
+kill him, and the third day he shall be raised again.
+
+And they were exceeding sorry.
+
+17:24 And when they were come to Capernaum, they that received tribute
+money came to Peter, and said, Doth not your master pay tribute?
+17:25 He saith, Yes. And when he was come into the house, Jesus
+prevented him, saying, What thinkest thou, Simon? of whom do the kings
+of the earth take custom or tribute? of their own children, or of
+strangers? 17:26 Peter saith unto him, Of strangers. Jesus saith unto
+him, Then are the children free.
+
+17:27 Notwithstanding, lest we should offend them, go thou to the sea,
+and cast an hook, and take up the fish that first cometh up; and when
+thou hast opened his mouth, thou shalt find a piece of money: that
+take, and give unto them for me and thee.
+
+18:1 At the same time came the disciples unto Jesus, saying, Who is
+the greatest in the kingdom of heaven? 18:2 And Jesus called a little
+child unto him, and set him in the midst of them, 18:3 And said,
+Verily I say unto you, Except ye be converted, and become as little
+children, ye shall not enter into the kingdom of heaven.
+
+18:4 Whosoever therefore shall humble himself as this little child,
+the same is greatest in the kingdom of heaven.
+
+18:5 And whoso shall receive one such little child in my name
+receiveth me.
+
+18:6 But whoso shall offend one of these little ones which believe in
+me, it were better for him that a millstone were hanged about his
+neck, and that he were drowned in the depth of the sea.
+
+18:7 Woe unto the world because of offences! for it must needs be that
+offences come; but woe to that man by whom the offence cometh! 18:8
+Wherefore if thy hand or thy foot offend thee, cut them off, and cast
+them from thee: it is better for thee to enter into life halt or
+maimed, rather than having two hands or two feet to be cast into
+everlasting fire.
+
+18:9 And if thine eye offend thee, pluck it out, and cast it from
+thee: it is better for thee to enter into life with one eye, rather
+than having two eyes to be cast into hell fire.
+
+18:10 Take heed that ye despise not one of these little ones; for I
+say unto you, That in heaven their angels do always behold the face of
+my Father which is in heaven.
+
+18:11 For the Son of man is come to save that which was lost.
+
+18:12 How think ye? if a man have an hundred sheep, and one of them be
+gone astray, doth he not leave the ninety and nine, and goeth into the
+mountains, and seeketh that which is gone astray? 18:13 And if so be
+that he find it, verily I say unto you, he rejoiceth more of that
+sheep, than of the ninety and nine which went not astray.
+
+18:14 Even so it is not the will of your Father which is in heaven,
+that one of these little ones should perish.
+
+18:15 Moreover if thy brother shall trespass against thee, go and tell
+him his fault between thee and him alone: if he shall hear thee, thou
+hast gained thy brother.
+
+18:16 But if he will not hear thee, then take with thee one or two
+more, that in the mouth of two or three witnesses every word may be
+established.
+
+18:17 And if he shall neglect to hear them, tell it unto the church:
+but if he neglect to hear the church, let him be unto thee as an
+heathen man and a publican.
+
+18:18 Verily I say unto you, Whatsoever ye shall bind on earth shall
+be bound in heaven: and whatsoever ye shall loose on earth shall be
+loosed in heaven.
+
+18:19 Again I say unto you, That if two of you shall agree on earth as
+touching any thing that they shall ask, it shall be done for them of
+my Father which is in heaven.
+
+18:20 For where two or three are gathered together in my name, there
+am I in the midst of them.
+
+18:21 Then came Peter to him, and said, Lord, how oft shall my brother
+sin against me, and I forgive him? till seven times? 18:22 Jesus
+saith unto him, I say not unto thee, Until seven times: but, Until
+seventy times seven.
+
+18:23 Therefore is the kingdom of heaven likened unto a certain king,
+which would take account of his servants.
+
+18:24 And when he had begun to reckon, one was brought unto him, which
+owed him ten thousand talents.
+
+18:25 But forasmuch as he had not to pay, his lord commanded him to be
+sold, and his wife, and children, and all that he had, and payment to
+be made.
+
+18:26 The servant therefore fell down, and worshipped him, saying,
+Lord, have patience with me, and I will pay thee all.
+
+18:27 Then the lord of that servant was moved with compassion, and
+loosed him, and forgave him the debt.
+
+18:28 But the same servant went out, and found one of his
+fellowservants, which owed him an hundred pence: and he laid hands on
+him, and took him by the throat, saying, Pay me that thou owest.
+
+18:29 And his fellowservant fell down at his feet, and besought him,
+saying, Have patience with me, and I will pay thee all.
+
+18:30 And he would not: but went and cast him into prison, till he
+should pay the debt.
+
+18:31 So when his fellowservants saw what was done, they were very
+sorry, and came and told unto their lord all that was done.
+
+18:32 Then his lord, after that he had called him, said unto him, O
+thou wicked servant, I forgave thee all that debt, because thou
+desiredst me: 18:33 Shouldest not thou also have had compassion on thy
+fellowservant, even as I had pity on thee? 18:34 And his lord was
+wroth, and delivered him to the tormentors, till he should pay all
+that was due unto him.
+
+18:35 So likewise shall my heavenly Father do also unto you, if ye
+from your hearts forgive not every one his brother their trespasses.
+
+19:1 And it came to pass, that when Jesus had finished these sayings,
+he departed from Galilee, and came into the coasts of Judaea beyond
+Jordan; 19:2 And great multitudes followed him; and he healed them
+there.
+
+19:3 The Pharisees also came unto him, tempting him, and saying unto
+him, Is it lawful for a man to put away his wife for every cause?
+19:4 And he answered and said unto them, Have ye not read, that he
+which made them at the beginning made them male and female, 19:5 And
+said, For this cause shall a man leave father and mother, and shall
+cleave to his wife: and they twain shall be one flesh? 19:6 Wherefore
+they are no more twain, but one flesh. What therefore God hath joined
+together, let not man put asunder.
+
+19:7 They say unto him, Why did Moses then command to give a writing
+of divorcement, and to put her away? 19:8 He saith unto them, Moses
+because of the hardness of your hearts suffered you to put away your
+wives: but from the beginning it was not so.
+
+19:9 And I say unto you, Whosoever shall put away his wife, except it
+be for fornication, and shall marry another, committeth adultery: and
+whoso marrieth her which is put away doth commit adultery.
+
+19:10 His disciples say unto him, If the case of the man be so with
+his wife, it is not good to marry.
+
+19:11 But he said unto them, All men cannot receive this saying, save
+they to whom it is given.
+
+19:12 For there are some eunuchs, which were so born from their
+mother's womb: and there are some eunuchs, which were made eunuchs of
+men: and there be eunuchs, which have made themselves eunuchs for the
+kingdom of heaven's sake. He that is able to receive it, let him
+receive it.
+
+19:13 Then were there brought unto him little children, that he should
+put his hands on them, and pray: and the disciples rebuked them.
+
+19:14 But Jesus said, Suffer little children, and forbid them not, to
+come unto me: for of such is the kingdom of heaven.
+
+19:15 And he laid his hands on them, and departed thence.
+
+19:16 And, behold, one came and said unto him, Good Master, what good
+thing shall I do, that I may have eternal life? 19:17 And he said
+unto him, Why callest thou me good? there is none good but one, that
+is, God: but if thou wilt enter into life, keep the commandments.
+
+19:18 He saith unto him, Which? Jesus said, Thou shalt do no murder,
+Thou shalt not commit adultery, Thou shalt not steal, Thou shalt not
+bear false witness, 19:19 Honour thy father and thy mother: and, Thou
+shalt love thy neighbour as thyself.
+
+19:20 The young man saith unto him, All these things have I kept from
+my youth up: what lack I yet? 19:21 Jesus said unto him, If thou wilt
+be perfect, go and sell that thou hast, and give to the poor, and thou
+shalt have treasure in heaven: and come and follow me.
+
+19:22 But when the young man heard that saying, he went away
+sorrowful: for he had great possessions.
+
+19:23 Then said Jesus unto his disciples, Verily I say unto you, That
+a rich man shall hardly enter into the kingdom of heaven.
+
+19:24 And again I say unto you, It is easier for a camel to go through
+the eye of a needle, than for a rich man to enter into the kingdom of
+God.
+
+19:25 When his disciples heard it, they were exceedingly amazed,
+saying, Who then can be saved? 19:26 But Jesus beheld them, and said
+unto them, With men this is impossible; but with God all things are
+possible.
+
+19:27 Then answered Peter and said unto him, Behold, we have forsaken
+all, and followed thee; what shall we have therefore? 19:28 And Jesus
+said unto them, Verily I say unto you, That ye which have followed me,
+in the regeneration when the Son of man shall sit in the throne of his
+glory, ye also shall sit upon twelve thrones, judging the twelve
+tribes of Israel.
+
+19:29 And every one that hath forsaken houses, or brethren, or
+sisters, or father, or mother, or wife, or children, or lands, for my
+name's sake, shall receive an hundredfold, and shall inherit
+everlasting life.
+
+19:30 But many that are first shall be last; and the last shall be
+first.
+
+20:1 For the kingdom of heaven is like unto a man that is an
+householder, which went out early in the morning to hire labourers
+into his vineyard.
+
+20:2 And when he had agreed with the labourers for a penny a day, he
+sent them into his vineyard.
+
+20:3 And he went out about the third hour, and saw others standing
+idle in the marketplace, 20:4 And said unto them; Go ye also into the
+vineyard, and whatsoever is right I will give you. And they went their
+way.
+
+20:5 Again he went out about the sixth and ninth hour, and did
+likewise.
+
+20:6 And about the eleventh hour he went out, and found others
+standing idle, and saith unto them, Why stand ye here all the day
+idle? 20:7 They say unto him, Because no man hath hired us. He saith
+unto them, Go ye also into the vineyard; and whatsoever is right, that
+shall ye receive.
+
+20:8 So when even was come, the lord of the vineyard saith unto his
+steward, Call the labourers, and give them their hire, beginning from
+the last unto the first.
+
+20:9 And when they came that were hired about the eleventh hour, they
+received every man a penny.
+
+20:10 But when the first came, they supposed that they should have
+received more; and they likewise received every man a penny.
+
+20:11 And when they had received it, they murmured against the goodman
+of the house, 20:12 Saying, These last have wrought but one hour, and
+thou hast made them equal unto us, which have borne the burden and
+heat of the day.
+
+20:13 But he answered one of them, and said, Friend, I do thee no
+wrong: didst not thou agree with me for a penny? 20:14 Take that
+thine is, and go thy way: I will give unto this last, even as unto
+thee.
+
+20:15 Is it not lawful for me to do what I will with mine own? Is
+thine eye evil, because I am good? 20:16 So the last shall be first,
+and the first last: for many be called, but few chosen.
+
+20:17 And Jesus going up to Jerusalem took the twelve disciples apart
+in the way, and said unto them, 20:18 Behold, we go up to Jerusalem;
+and the Son of man shall be betrayed unto the chief priests and unto
+the scribes, and they shall condemn him to death, 20:19 And shall
+deliver him to the Gentiles to mock, and to scourge, and to crucify
+him: and the third day he shall rise again.
+
+20:20 Then came to him the mother of Zebedees children with her sons,
+worshipping him, and desiring a certain thing of him.
+
+20:21 And he said unto her, What wilt thou? She saith unto him, Grant
+that these my two sons may sit, the one on thy right hand, and the
+other on the left, in thy kingdom.
+
+20:22 But Jesus answered and said, Ye know not what ye ask. Are ye
+able to drink of the cup that I shall drink of, and to be baptized
+with the baptism that I am baptized with? They say unto him, We are
+able.
+
+20:23 And he saith unto them, Ye shall drink indeed of my cup, and be
+baptized with the baptism that I am baptized with: but to sit on my
+right hand, and on my left, is not mine to give, but it shall be given
+to them for whom it is prepared of my Father.
+
+20:24 And when the ten heard it, they were moved with indignation
+against the two brethren.
+
+20:25 But Jesus called them unto him, and said, Ye know that the
+princes of the Gentiles exercise dominion over them, and they that are
+great exercise authority upon them.
+
+20:26 But it shall not be so among you: but whosoever will be great
+among you, let him be your minister; 20:27 And whosoever will be chief
+among you, let him be your servant: 20:28 Even as the Son of man came
+not to be ministered unto, but to minister, and to give his life a
+ransom for many.
+
+20:29 And as they departed from Jericho, a great multitude followed
+him.
+
+20:30 And, behold, two blind men sitting by the way side, when they
+heard that Jesus passed by, cried out, saying, Have mercy on us, O
+Lord, thou son of David.
+
+20:31 And the multitude rebuked them, because they should hold their
+peace: but they cried the more, saying, Have mercy on us, O Lord, thou
+son of David.
+
+20:32 And Jesus stood still, and called them, and said, What will ye
+that I shall do unto you? 20:33 They say unto him, Lord, that our
+eyes may be opened.
+
+20:34 So Jesus had compassion on them, and touched their eyes: and
+immediately their eyes received sight, and they followed him.
+
+21:1 And when they drew nigh unto Jerusalem, and were come to
+Bethphage, unto the mount of Olives, then sent Jesus two disciples,
+21:2 Saying unto them, Go into the village over against you, and
+straightway ye shall find an ass tied, and a colt with her: loose
+them, and bring them unto me.
+
+21:3 And if any man say ought unto you, ye shall say, The Lord hath
+need of them; and straightway he will send them.
+
+21:4 All this was done, that it might be fulfilled which was spoken by
+the prophet, saying, 21:5 Tell ye the daughter of Sion, Behold, thy
+King cometh unto thee, meek, and sitting upon an ass, and a colt the
+foal of an ass.
+
+21:6 And the disciples went, and did as Jesus commanded them, 21:7 And
+brought the ass, and the colt, and put on them their clothes, and they
+set him thereon.
+
+21:8 And a very great multitude spread their garments in the way;
+others cut down branches from the trees, and strawed them in the way.
+
+21:9 And the multitudes that went before, and that followed, cried,
+saying, Hosanna to the son of David: Blessed is he that cometh in the
+name of the Lord; Hosanna in the highest.
+
+21:10 And when he was come into Jerusalem, all the city was moved,
+saying, Who is this? 21:11 And the multitude said, This is Jesus the
+prophet of Nazareth of Galilee.
+
+21:12 And Jesus went into the temple of God, and cast out all them
+that sold and bought in the temple, and overthrew the tables of the
+moneychangers, and the seats of them that sold doves, 21:13 And said
+unto them, It is written, My house shall be called the house of
+prayer; but ye have made it a den of thieves.
+
+21:14 And the blind and the lame came to him in the temple; and he
+healed them.
+
+21:15 And when the chief priests and scribes saw the wonderful things
+that he did, and the children crying in the temple, and saying,
+Hosanna to the son of David; they were sore displeased, 21:16 And said
+unto him, Hearest thou what these say? And Jesus saith unto them, Yea;
+have ye never read, Out of the mouth of babes and sucklings thou hast
+perfected praise? 21:17 And he left them, and went out of the city
+into Bethany; and he lodged there.
+
+21:18 Now in the morning as he returned into the city, he hungered.
+
+21:19 And when he saw a fig tree in the way, he came to it, and found
+nothing thereon, but leaves only, and said unto it, Let no fruit grow
+on thee henceforward for ever. And presently the fig tree withered
+away.
+
+21:20 And when the disciples saw it, they marvelled, saying, How soon
+is the fig tree withered away! 21:21 Jesus answered and said unto
+them, Verily I say unto you, If ye have faith, and doubt not, ye shall
+not only do this which is done to the fig tree, but also if ye shall
+say unto this mountain, Be thou removed, and be thou cast into the
+sea; it shall be done.
+
+21:22 And all things, whatsoever ye shall ask in prayer, believing, ye
+shall receive.
+
+21:23 And when he was come into the temple, the chief priests and the
+elders of the people came unto him as he was teaching, and said, By
+what authority doest thou these things? and who gave thee this
+authority? 21:24 And Jesus answered and said unto them, I also will
+ask you one thing, which if ye tell me, I in like wise will tell you
+by what authority I do these things.
+
+21:25 The baptism of John, whence was it? from heaven, or of men? And
+they reasoned with themselves, saying, If we shall say, From heaven;
+he will say unto us, Why did ye not then believe him? 21:26 But if we
+shall say, Of men; we fear the people; for all hold John as a prophet.
+
+21:27 And they answered Jesus, and said, We cannot tell. And he said
+unto them, Neither tell I you by what authority I do these things.
+
+21:28 But what think ye? A certain man had two sons; and he came to
+the first, and said, Son, go work to day in my vineyard.
+
+21:29 He answered and said, I will not: but afterward he repented, and
+went.
+
+21:30 And he came to the second, and said likewise. And he answered
+and said, I go, sir: and went not.
+
+21:31 Whether of them twain did the will of his father? They say unto
+him, The first. Jesus saith unto them, Verily I say unto you, That the
+publicans and the harlots go into the kingdom of God before you.
+
+21:32 For John came unto you in the way of righteousness, and ye
+believed him not: but the publicans and the harlots believed him: and
+ye, when ye had seen it, repented not afterward, that ye might believe
+him.
+
+21:33 Hear another parable: There was a certain householder, which
+planted a vineyard, and hedged it round about, and digged a winepress
+in it, and built a tower, and let it out to husbandmen, and went into
+a far country: 21:34 And when the time of the fruit drew near, he sent
+his servants to the husbandmen, that they might receive the fruits of
+it.
+
+21:35 And the husbandmen took his servants, and beat one, and killed
+another, and stoned another.
+
+21:36 Again, he sent other servants more than the first: and they did
+unto them likewise.
+
+21:37 But last of all he sent unto them his son, saying, They will
+reverence my son.
+
+21:38 But when the husbandmen saw the son, they said among themselves,
+This is the heir; come, let us kill him, and let us seize on his
+inheritance.
+
+21:39 And they caught him, and cast him out of the vineyard, and slew
+him.
+
+21:40 When the lord therefore of the vineyard cometh, what will he do
+unto those husbandmen? 21:41 They say unto him, He will miserably
+destroy those wicked men, and will let out his vineyard unto other
+husbandmen, which shall render him the fruits in their seasons.
+
+21:42 Jesus saith unto them, Did ye never read in the scriptures, The
+stone which the builders rejected, the same is become the head of the
+corner: this is the Lord's doing, and it is marvellous in our eyes?
+21:43 Therefore say I unto you, The kingdom of God shall be taken from
+you, and given to a nation bringing forth the fruits thereof.
+
+21:44 And whosoever shall fall on this stone shall be broken: but on
+whomsoever it shall fall, it will grind him to powder.
+
+21:45 And when the chief priests and Pharisees had heard his parables,
+they perceived that he spake of them.
+
+21:46 But when they sought to lay hands on him, they feared the
+multitude, because they took him for a prophet.
+
+22:1 And Jesus answered and spake unto them again by parables, and
+said, 22:2 The kingdom of heaven is like unto a certain king, which
+made a marriage for his son, 22:3 And sent forth his servants to call
+them that were bidden to the wedding: and they would not come.
+
+22:4 Again, he sent forth other servants, saying, Tell them which are
+bidden, Behold, I have prepared my dinner: my oxen and my fatlings are
+killed, and all things are ready: come unto the marriage.
+
+22:5 But they made light of it, and went their ways, one to his farm,
+another to his merchandise: 22:6 And the remnant took his servants,
+and entreated them spitefully, and slew them.
+
+22:7 But when the king heard thereof, he was wroth: and he sent forth
+his armies, and destroyed those murderers, and burned up their city.
+
+22:8 Then saith he to his servants, The wedding is ready, but they
+which were bidden were not worthy.
+
+22:9 Go ye therefore into the highways, and as many as ye shall find,
+bid to the marriage.
+
+22:10 So those servants went out into the highways, and gathered
+together all as many as they found, both bad and good: and the wedding
+was furnished with guests.
+
+22:11 And when the king came in to see the guests, he saw there a man
+which had not on a wedding garment: 22:12 And he saith unto him,
+Friend, how camest thou in hither not having a wedding garment? And he
+was speechless.
+
+22:13 Then said the king to the servants, Bind him hand and foot, and
+take him away, and cast him into outer darkness, there shall be
+weeping and gnashing of teeth.
+
+22:14 For many are called, but few are chosen.
+
+22:15 Then went the Pharisees, and took counsel how they might
+entangle him in his talk.
+
+22:16 And they sent out unto him their disciples with the Herodians,
+saying, Master, we know that thou art true, and teachest the way of
+God in truth, neither carest thou for any man: for thou regardest not
+the person of men.
+
+22:17 Tell us therefore, What thinkest thou? Is it lawful to give
+tribute unto Caesar, or not? 22:18 But Jesus perceived their
+wickedness, and said, Why tempt ye me, ye hypocrites? 22:19 Shew me
+the tribute money. And they brought unto him a penny.
+
+22:20 And he saith unto them, Whose is this image and superscription?
+22:21 They say unto him, Caesar's. Then saith he unto them, Render
+therefore unto Caesar the things which are Caesar's; and unto God the
+things that are God's.
+
+22:22 When they had heard these words, they marvelled, and left him,
+and went their way.
+
+22:23 The same day came to him the Sadducees, which say that there is
+no resurrection, and asked him, 22:24 Saying, Master, Moses said, If a
+man die, having no children, his brother shall marry his wife, and
+raise up seed unto his brother.
+
+22:25 Now there were with us seven brethren: and the first, when he
+had married a wife, deceased, and, having no issue, left his wife unto
+his brother: 22:26 Likewise the second also, and the third, unto the
+seventh.
+
+22:27 And last of all the woman died also.
+
+22:28 Therefore in the resurrection whose wife shall she be of the
+seven? for they all had her.
+
+22:29 Jesus answered and said unto them, Ye do err, not knowing the
+scriptures, nor the power of God.
+
+22:30 For in the resurrection they neither marry, nor are given in
+marriage, but are as the angels of God in heaven.
+
+22:31 But as touching the resurrection of the dead, have ye not read
+that which was spoken unto you by God, saying, 22:32 I am the God of
+Abraham, and the God of Isaac, and the God of Jacob? God is not the
+God of the dead, but of the living.
+
+22:33 And when the multitude heard this, they were astonished at his
+doctrine.
+
+22:34 But when the Pharisees had heard that he had put the Sadducees
+to silence, they were gathered together.
+
+22:35 Then one of them, which was a lawyer, asked him a question,
+tempting him, and saying, 22:36 Master, which is the great commandment
+in the law? 22:37 Jesus said unto him, Thou shalt love the Lord thy
+God with all thy heart, and with all thy soul, and with all thy mind.
+
+22:38 This is the first and great commandment.
+
+22:39 And the second is like unto it, Thou shalt love thy neighbour as
+thyself.
+
+22:40 On these two commandments hang all the law and the prophets.
+
+22:41 While the Pharisees were gathered together, Jesus asked them,
+22:42 Saying, What think ye of Christ? whose son is he? They say unto
+him, The son of David.
+
+22:43 He saith unto them, How then doth David in spirit call him Lord,
+saying, 22:44 The LORD said unto my Lord, Sit thou on my right hand,
+till I make thine enemies thy footstool? 22:45 If David then call him
+Lord, how is he his son? 22:46 And no man was able to answer him a
+word, neither durst any man from that day forth ask him any more
+questions.
+
+23:1 Then spake Jesus to the multitude, and to his disciples, 23:2
+Saying The scribes and the Pharisees sit in Moses' seat: 23:3 All
+therefore whatsoever they bid you observe, that observe and do; but do
+not ye after their works: for they say, and do not.
+
+23:4 For they bind heavy burdens and grievous to be borne, and lay
+them on men's shoulders; but they themselves will not move them with
+one of their fingers.
+
+23:5 But all their works they do for to be seen of men: they make
+broad their phylacteries, and enlarge the borders of their garments,
+23:6 And love the uppermost rooms at feasts, and the chief seats in
+the synagogues, 23:7 And greetings in the markets, and to be called of
+men, Rabbi, Rabbi.
+
+23:8 But be not ye called Rabbi: for one is your Master, even Christ;
+and all ye are brethren.
+
+23:9 And call no man your father upon the earth: for one is your
+Father, which is in heaven.
+
+23:10 Neither be ye called masters: for one is your Master, even
+Christ.
+
+23:11 But he that is greatest among you shall be your servant.
+
+23:12 And whosoever shall exalt himself shall be abased; and he that
+shall humble himself shall be exalted.
+
+23:13 But woe unto you, scribes and Pharisees, hypocrites! for ye shut
+up the kingdom of heaven against men: for ye neither go in yourselves,
+neither suffer ye them that are entering to go in.
+
+23:14 Woe unto you, scribes and Pharisees, hypocrites! for ye devour
+widows' houses, and for a pretence make long prayer: therefore ye
+shall receive the greater damnation.
+
+23:15 Woe unto you, scribes and Pharisees, hypocrites! for ye compass
+sea and land to make one proselyte, and when he is made, ye make him
+twofold more the child of hell than yourselves.
+
+23:16 Woe unto you, ye blind guides, which say, Whosoever shall swear
+by the temple, it is nothing; but whosoever shall swear by the gold of
+the temple, he is a debtor! 23:17 Ye fools and blind: for whether is
+greater, the gold, or the temple that sanctifieth the gold? 23:18
+And, Whosoever shall swear by the altar, it is nothing; but whosoever
+sweareth by the gift that is upon it, he is guilty.
+
+23:19 Ye fools and blind: for whether is greater, the gift, or the
+altar that sanctifieth the gift? 23:20 Whoso therefore shall swear by
+the altar, sweareth by it, and by all things thereon.
+
+23:21 And whoso shall swear by the temple, sweareth by it, and by him
+that dwelleth therein.
+
+23:22 And he that shall swear by heaven, sweareth by the throne of
+God, and by him that sitteth thereon.
+
+23:23 Woe unto you, scribes and Pharisees, hypocrites! for ye pay
+tithe of mint and anise and cummin, and have omitted the weightier
+matters of the law, judgment, mercy, and faith: these ought ye to have
+done, and not to leave the other undone.
+
+23:24 Ye blind guides, which strain at a gnat, and swallow a camel.
+
+23:25 Woe unto you, scribes and Pharisees, hypocrites! for ye make
+clean the outside of the cup and of the platter, but within they are
+full of extortion and excess.
+
+23:26 Thou blind Pharisee, cleanse first that which is within the cup
+and platter, that the outside of them may be clean also.
+
+23:27 Woe unto you, scribes and Pharisees, hypocrites! for ye are like
+unto whited sepulchres, which indeed appear beautiful outward, but are
+within full of dead men's bones, and of all uncleanness.
+
+23:28 Even so ye also outwardly appear righteous unto men, but within
+ye are full of hypocrisy and iniquity.
+
+23:29 Woe unto you, scribes and Pharisees, hypocrites! because ye
+build the tombs of the prophets, and garnish the sepulchres of the
+righteous, 23:30 And say, If we had been in the days of our fathers,
+we would not have been partakers with them in the blood of the
+prophets.
+
+23:31 Wherefore ye be witnesses unto yourselves, that ye are the
+children of them which killed the prophets.
+
+23:32 Fill ye up then the measure of your fathers.
+
+23:33 Ye serpents, ye generation of vipers, how can ye escape the
+damnation of hell? 23:34 Wherefore, behold, I send unto you prophets,
+and wise men, and scribes: and some of them ye shall kill and crucify;
+and some of them shall ye scourge in your synagogues, and persecute
+them from city to city: 23:35 That upon you may come all the righteous
+blood shed upon the earth, from the blood of righteous Abel unto the
+blood of Zacharias son of Barachias, whom ye slew between the temple
+and the altar.
+
+23:36 Verily I say unto you, All these things shall come upon this
+generation.
+
+23:37 O Jerusalem, Jerusalem, thou that killest the prophets, and
+stonest them which are sent unto thee, how often would I have gathered
+thy children together, even as a hen gathereth her chickens under her
+wings, and ye would not! 23:38 Behold, your house is left unto you
+desolate.
+
+23:39 For I say unto you, Ye shall not see me henceforth, till ye
+shall say, Blessed is he that cometh in the name of the Lord.
+
+24:1 And Jesus went out, and departed from the temple: and his
+disciples came to him for to shew him the buildings of the temple.
+
+24:2 And Jesus said unto them, See ye not all these things? verily I
+say unto you, There shall not be left here one stone upon another,
+that shall not be thrown down.
+
+24:3 And as he sat upon the mount of Olives, the disciples came unto
+him privately, saying, Tell us, when shall these things be? and what
+shall be the sign of thy coming, and of the end of the world? 24:4
+And Jesus answered and said unto them, Take heed that no man deceive
+you.
+
+24:5 For many shall come in my name, saying, I am Christ; and shall
+deceive many.
+
+24:6 And ye shall hear of wars and rumours of wars: see that ye be not
+troubled: for all these things must come to pass, but the end is not
+yet.
+
+24:7 For nation shall rise against nation, and kingdom against
+kingdom: and there shall be famines, and pestilences, and earthquakes,
+in divers places.
+
+24:8 All these are the beginning of sorrows.
+
+24:9 Then shall they deliver you up to be afflicted, and shall kill
+you: and ye shall be hated of all nations for my name's sake.
+
+24:10 And then shall many be offended, and shall betray one another,
+and shall hate one another.
+
+24:11 And many false prophets shall rise, and shall deceive many.
+
+24:12 And because iniquity shall abound, the love of many shall wax
+cold.
+
+24:13 But he that shall endure unto the end, the same shall be saved.
+
+24:14 And this gospel of the kingdom shall be preached in all the
+world for a witness unto all nations; and then shall the end come.
+
+24:15 When ye therefore shall see the abomination of desolation,
+spoken of by Daniel the prophet, stand in the holy place, (whoso
+readeth, let him understand:) 24:16 Then let them which be in Judaea
+flee into the mountains: 24:17 Let him which is on the housetop not
+come down to take any thing out of his house: 24:18 Neither let him
+which is in the field return back to take his clothes.
+
+24:19 And woe unto them that are with child, and to them that give
+suck in those days! 24:20 But pray ye that your flight be not in the
+winter, neither on the sabbath day: 24:21 For then shall be great
+tribulation, such as was not since the beginning of the world to this
+time, no, nor ever shall be.
+
+24:22 And except those days should be shortened, there should no flesh
+be saved: but for the elect's sake those days shall be shortened.
+
+24:23 Then if any man shall say unto you, Lo, here is Christ, or
+there; believe it not.
+
+24:24 For there shall arise false Christs, and false prophets, and
+shall shew great signs and wonders; insomuch that, if it were
+possible, they shall deceive the very elect.
+
+24:25 Behold, I have told you before.
+
+24:26 Wherefore if they shall say unto you, Behold, he is in the
+desert; go not forth: behold, he is in the secret chambers; believe it
+not.
+
+24:27 For as the lightning cometh out of the east, and shineth even
+unto the west; so shall also the coming of the Son of man be.
+
+24:28 For wheresoever the carcase is, there will the eagles be
+gathered together.
+
+24:29 Immediately after the tribulation of those days shall the sun be
+darkened, and the moon shall not give her light, and the stars shall
+fall from heaven, and the powers of the heavens shall be shaken: 24:30
+And then shall appear the sign of the Son of man in heaven: and then
+shall all the tribes of the earth mourn, and they shall see the Son of
+man coming in the clouds of heaven with power and great glory.
+
+24:31 And he shall send his angels with a great sound of a trumpet,
+and they shall gather together his elect from the four winds, from one
+end of heaven to the other.
+
+24:32 Now learn a parable of the fig tree; When his branch is yet
+tender, and putteth forth leaves, ye know that summer is nigh: 24:33
+So likewise ye, when ye shall see all these things, know that it is
+near, even at the doors.
+
+24:34 Verily I say unto you, This generation shall not pass, till all
+these things be fulfilled.
+
+24:35 Heaven and earth shall pass away, but my words shall not pass
+away.
+
+24:36 But of that day and hour knoweth no man, no, not the angels of
+heaven, but my Father only.
+
+24:37 But as the days of Noe were, so shall also the coming of the Son
+of man be.
+
+24:38 For as in the days that were before the flood they were eating
+and drinking, marrying and giving in marriage, until the day that Noe
+entered into the ark, 24:39 And knew not until the flood came, and
+took them all away; so shall also the coming of the Son of man be.
+
+24:40 Then shall two be in the field; the one shall be taken, and the
+other left.
+
+24:41 Two women shall be grinding at the mill; the one shall be taken,
+and the other left.
+
+24:42 Watch therefore: for ye know not what hour your Lord doth come.
+
+24:43 But know this, that if the goodman of the house had known in
+what watch the thief would come, he would have watched, and would not
+have suffered his house to be broken up.
+
+24:44 Therefore be ye also ready: for in such an hour as ye think not
+the Son of man cometh.
+
+24:45 Who then is a faithful and wise servant, whom his lord hath made
+ruler over his household, to give them meat in due season? 24:46
+Blessed is that servant, whom his lord when he cometh shall find so
+doing.
+
+24:47 Verily I say unto you, That he shall make him ruler over all his
+goods.
+
+24:48 But and if that evil servant shall say in his heart, My lord
+delayeth his coming; 24:49 And shall begin to smite his
+fellowservants, and to eat and drink with the drunken; 24:50 The lord
+of that servant shall come in a day when he looketh not for him, and
+in an hour that he is not aware of, 24:51 And shall cut him asunder,
+and appoint him his portion with the hypocrites: there shall be
+weeping and gnashing of teeth.
+
+25:1 Then shall the kingdom of heaven be likened unto ten virgins,
+which took their lamps, and went forth to meet the bridegroom.
+
+25:2 And five of them were wise, and five were foolish.
+
+25:3 They that were foolish took their lamps, and took no oil with
+them: 25:4 But the wise took oil in their vessels with their lamps.
+
+25:5 While the bridegroom tarried, they all slumbered and slept.
+
+25:6 And at midnight there was a cry made, Behold, the bridegroom
+cometh; go ye out to meet him.
+
+25:7 Then all those virgins arose, and trimmed their lamps.
+
+25:8 And the foolish said unto the wise, Give us of your oil; for our
+lamps are gone out.
+
+25:9 But the wise answered, saying, Not so; lest there be not enough
+for us and you: but go ye rather to them that sell, and buy for
+yourselves.
+
+25:10 And while they went to buy, the bridegroom came; and they that
+were ready went in with him to the marriage: and the door was shut.
+
+25:11 Afterward came also the other virgins, saying, Lord, Lord, open
+to us.
+
+25:12 But he answered and said, Verily I say unto you, I know you not.
+
+25:13 Watch therefore, for ye know neither the day nor the hour
+wherein the Son of man cometh.
+
+25:14 For the kingdom of heaven is as a man travelling into a far
+country, who called his own servants, and delivered unto them his
+goods.
+
+25:15 And unto one he gave five talents, to another two, and to
+another one; to every man according to his several ability; and
+straightway took his journey.
+
+25:16 Then he that had received the five talents went and traded with
+the same, and made them other five talents.
+
+25:17 And likewise he that had received two, he also gained other two.
+
+25:18 But he that had received one went and digged in the earth, and
+hid his lord's money.
+
+25:19 After a long time the lord of those servants cometh, and
+reckoneth with them.
+
+25:20 And so he that had received five talents came and brought other
+five talents, saying, Lord, thou deliveredst unto me five talents:
+behold, I have gained beside them five talents more.
+
+25:21 His lord said unto him, Well done, thou good and faithful
+servant: thou hast been faithful over a few things, I will make thee
+ruler over many things: enter thou into the joy of thy lord.
+
+25:22 He also that had received two talents came and said, Lord, thou
+deliveredst unto me two talents: behold, I have gained two other
+talents beside them.
+
+25:23 His lord said unto him, Well done, good and faithful servant;
+thou hast been faithful over a few things, I will make thee ruler over
+many things: enter thou into the joy of thy lord.
+
+25:24 Then he which had received the one talent came and said, Lord, I
+knew thee that thou art an hard man, reaping where thou hast not sown,
+and gathering where thou hast not strawed: 25:25 And I was afraid, and
+went and hid thy talent in the earth: lo, there thou hast that is
+thine.
+
+25:26 His lord answered and said unto him, Thou wicked and slothful
+servant, thou knewest that I reap where I sowed not, and gather where
+I have not strawed: 25:27 Thou oughtest therefore to have put my money
+to the exchangers, and then at my coming I should have received mine
+own with usury.
+
+25:28 Take therefore the talent from him, and give it unto him which
+hath ten talents.
+
+25:29 For unto every one that hath shall be given, and he shall have
+abundance: but from him that hath not shall be taken away even that
+which he hath.
+
+25:30 And cast ye the unprofitable servant into outer darkness: there
+shall be weeping and gnashing of teeth.
+
+25:31 When the Son of man shall come in his glory, and all the holy
+angels with him, then shall he sit upon the throne of his glory: 25:32
+And before him shall be gathered all nations: and he shall separate
+them one from another, as a shepherd divideth his sheep from the
+goats: 25:33 And he shall set the sheep on his right hand, but the
+goats on the left.
+
+25:34 Then shall the King say unto them on his right hand, Come, ye
+blessed of my Father, inherit the kingdom prepared for you from the
+foundation of the world: 25:35 For I was an hungred, and ye gave me
+meat: I was thirsty, and ye gave me drink: I was a stranger, and ye
+took me in: 25:36 Naked, and ye clothed me: I was sick, and ye visited
+me: I was in prison, and ye came unto me.
+
+25:37 Then shall the righteous answer him, saying, Lord, when saw we
+thee an hungred, and fed thee? or thirsty, and gave thee drink? 25:38
+When saw we thee a stranger, and took thee in? or naked, and clothed
+thee? 25:39 Or when saw we thee sick, or in prison, and came unto
+thee? 25:40 And the King shall answer and say unto them, Verily I say
+unto you, Inasmuch as ye have done it unto one of the least of these
+my brethren, ye have done it unto me.
+
+25:41 Then shall he say also unto them on the left hand, Depart from
+me, ye cursed, into everlasting fire, prepared for the devil and his
+angels: 25:42 For I was an hungred, and ye gave me no meat: I was
+thirsty, and ye gave me no drink: 25:43 I was a stranger, and ye took
+me not in: naked, and ye clothed me not: sick, and in prison, and ye
+visited me not.
+
+25:44 Then shall they also answer him, saying, Lord, when saw we thee
+an hungred, or athirst, or a stranger, or naked, or sick, or in
+prison, and did not minister unto thee? 25:45 Then shall he answer
+them, saying, Verily I say unto you, Inasmuch as ye did it not to one
+of the least of these, ye did it not to me.
+
+25:46 And these shall go away into everlasting punishment: but the
+righteous into life eternal.
+
+26:1 And it came to pass, when Jesus had finished all these sayings,
+he said unto his disciples, 26:2 Ye know that after two days is the
+feast of the passover, and the Son of man is betrayed to be crucified.
+
+26:3 Then assembled together the chief priests, and the scribes, and
+the elders of the people, unto the palace of the high priest, who was
+called Caiaphas, 26:4 And consulted that they might take Jesus by
+subtilty, and kill him.
+
+26:5 But they said, Not on the feast day, lest there be an uproar
+among the people.
+
+26:6 Now when Jesus was in Bethany, in the house of Simon the leper,
+26:7 There came unto him a woman having an alabaster box of very
+precious ointment, and poured it on his head, as he sat at meat.
+
+26:8 But when his disciples saw it, they had indignation, saying, To
+what purpose is this waste? 26:9 For this ointment might have been
+sold for much, and given to the poor.
+
+26:10 When Jesus understood it, he said unto them, Why trouble ye the
+woman? for she hath wrought a good work upon me.
+
+26:11 For ye have the poor always with you; but me ye have not always.
+
+26:12 For in that she hath poured this ointment on my body, she did it
+for my burial.
+
+26:13 Verily I say unto you, Wheresoever this gospel shall be preached
+in the whole world, there shall also this, that this woman hath done,
+be told for a memorial of her.
+
+26:14 Then one of the twelve, called Judas Iscariot, went unto the
+chief priests, 26:15 And said unto them, What will ye give me, and I
+will deliver him unto you? And they covenanted with him for thirty
+pieces of silver.
+
+26:16 And from that time he sought opportunity to betray him.
+
+26:17 Now the first day of the feast of unleavened bread the disciples
+came to Jesus, saying unto him, Where wilt thou that we prepare for
+thee to eat the passover? 26:18 And he said, Go into the city to such
+a man, and say unto him, The Master saith, My time is at hand; I will
+keep the passover at thy house with my disciples.
+
+26:19 And the disciples did as Jesus had appointed them; and they made
+ready the passover.
+
+26:20 Now when the even was come, he sat down with the twelve.
+
+26:21 And as they did eat, he said, Verily I say unto you, that one of
+you shall betray me.
+
+26:22 And they were exceeding sorrowful, and began every one of them
+to say unto him, Lord, is it I? 26:23 And he answered and said, He
+that dippeth his hand with me in the dish, the same shall betray me.
+
+26:24 The Son of man goeth as it is written of him: but woe unto that
+man by whom the Son of man is betrayed! it had been good for that man
+if he had not been born.
+
+26:25 Then Judas, which betrayed him, answered and said, Master, is it
+I? He said unto him, Thou hast said.
+
+26:26 And as they were eating, Jesus took bread, and blessed it, and
+brake it, and gave it to the disciples, and said, Take, eat; this is
+my body.
+
+26:27 And he took the cup, and gave thanks, and gave it to them,
+saying, Drink ye all of it; 26:28 For this is my blood of the new
+testament, which is shed for many for the remission of sins.
+
+26:29 But I say unto you, I will not drink henceforth of this fruit of
+the vine, until that day when I drink it new with you in my Father's
+kingdom.
+
+26:30 And when they had sung an hymn, they went out into the mount of
+Olives.
+
+26:31 Then saith Jesus unto them, All ye shall be offended because of
+me this night: for it is written, I will smite the shepherd, and the
+sheep of the flock shall be scattered abroad.
+
+26:32 But after I am risen again, I will go before you into Galilee.
+
+26:33 Peter answered and said unto him, Though all men shall be
+offended because of thee, yet will I never be offended.
+
+26:34 Jesus said unto him, Verily I say unto thee, That this night,
+before the cock crow, thou shalt deny me thrice.
+
+26:35 Peter said unto him, Though I should die with thee, yet will I
+not deny thee. Likewise also said all the disciples.
+
+26:36 Then cometh Jesus with them unto a place called Gethsemane, and
+saith unto the disciples, Sit ye here, while I go and pray yonder.
+
+26:37 And he took with him Peter and the two sons of Zebedee, and
+began to be sorrowful and very heavy.
+
+26:38 Then saith he unto them, My soul is exceeding sorrowful, even
+unto death: tarry ye here, and watch with me.
+
+26:39 And he went a little farther, and fell on his face, and prayed,
+saying, O my Father, if it be possible, let this cup pass from me:
+nevertheless not as I will, but as thou wilt.
+
+26:40 And he cometh unto the disciples, and findeth them asleep, and
+saith unto Peter, What, could ye not watch with me one hour? 26:41
+Watch and pray, that ye enter not into temptation: the spirit indeed
+is willing, but the flesh is weak.
+
+26:42 He went away again the second time, and prayed, saying, O my
+Father, if this cup may not pass away from me, except I drink it, thy
+will be done.
+
+26:43 And he came and found them asleep again: for their eyes were
+heavy.
+
+26:44 And he left them, and went away again, and prayed the third
+time, saying the same words.
+
+26:45 Then cometh he to his disciples, and saith unto them, Sleep on
+now, and take your rest: behold, the hour is at hand, and the Son of
+man is betrayed into the hands of sinners.
+
+26:46 Rise, let us be going: behold, he is at hand that doth betray
+me.
+
+26:47 And while he yet spake, lo, Judas, one of the twelve, came, and
+with him a great multitude with swords and staves, from the chief
+priests and elders of the people.
+
+26:48 Now he that betrayed him gave them a sign, saying, Whomsoever I
+shall kiss, that same is he: hold him fast.
+
+26:49 And forthwith he came to Jesus, and said, Hail, master; and
+kissed him.
+
+26:50 And Jesus said unto him, Friend, wherefore art thou come? Then
+came they, and laid hands on Jesus and took him.
+
+26:51 And, behold, one of them which were with Jesus stretched out his
+hand, and drew his sword, and struck a servant of the high priest's,
+and smote off his ear.
+
+26:52 Then said Jesus unto him, Put up again thy sword into his place:
+for all they that take the sword shall perish with the sword.
+
+26:53 Thinkest thou that I cannot now pray to my Father, and he shall
+presently give me more than twelve legions of angels? 26:54 But how
+then shall the scriptures be fulfilled, that thus it must be? 26:55
+In that same hour said Jesus to the multitudes, Are ye come out as
+against a thief with swords and staves for to take me? I sat daily
+with you teaching in the temple, and ye laid no hold on me.
+
+26:56 But all this was done, that the scriptures of the prophets might
+be fulfilled. Then all the disciples forsook him, and fled.
+
+26:57 And they that had laid hold on Jesus led him away to Caiaphas
+the high priest, where the scribes and the elders were assembled.
+
+26:58 But Peter followed him afar off unto the high priest's palace,
+and went in, and sat with the servants, to see the end.
+
+26:59 Now the chief priests, and elders, and all the council, sought
+false witness against Jesus, to put him to death; 26:60 But found
+none: yea, though many false witnesses came, yet found they none. At
+the last came two false witnesses, 26:61 And said, This fellow said, I
+am able to destroy the temple of God, and to build it in three days.
+
+26:62 And the high priest arose, and said unto him, Answerest thou
+nothing? what is it which these witness against thee? 26:63 But Jesus
+held his peace, And the high priest answered and said unto him, I
+adjure thee by the living God, that thou tell us whether thou be the
+Christ, the Son of God.
+
+26:64 Jesus saith unto him, Thou hast said: nevertheless I say unto
+you, Hereafter shall ye see the Son of man sitting on the right hand
+of power, and coming in the clouds of heaven.
+
+26:65 Then the high priest rent his clothes, saying, He hath spoken
+blasphemy; what further need have we of witnesses? behold, now ye have
+heard his blasphemy.
+
+26:66 What think ye? They answered and said, He is guilty of death.
+
+26:67 Then did they spit in his face, and buffeted him; and others
+smote him with the palms of their hands, 26:68 Saying, Prophesy unto
+us, thou Christ, Who is he that smote thee? 26:69 Now Peter sat
+without in the palace: and a damsel came unto him, saying, Thou also
+wast with Jesus of Galilee.
+
+26:70 But he denied before them all, saying, I know not what thou
+sayest.
+
+26:71 And when he was gone out into the porch, another maid saw him,
+and said unto them that were there, This fellow was also with Jesus of
+Nazareth.
+
+26:72 And again he denied with an oath, I do not know the man.
+
+26:73 And after a while came unto him they that stood by, and said to
+Peter, Surely thou also art one of them; for thy speech bewrayeth
+thee.
+
+26:74 Then began he to curse and to swear, saying, I know not the man.
+And immediately the cock crew.
+
+26:75 And Peter remembered the word of Jesus, which said unto him,
+Before the cock crow, thou shalt deny me thrice. And he went out, and
+wept bitterly.
+
+27:1 When the morning was come, all the chief priests and elders of
+the people took counsel against Jesus to put him to death: 27:2 And
+when they had bound him, they led him away, and delivered him to
+Pontius Pilate the governor.
+
+27:3 Then Judas, which had betrayed him, when he saw that he was
+condemned, repented himself, and brought again the thirty pieces of
+silver to the chief priests and elders, 27:4 Saying, I have sinned in
+that I have betrayed the innocent blood. And they said, What is that
+to us? see thou to that.
+
+27:5 And he cast down the pieces of silver in the temple, and
+departed, and went and hanged himself.
+
+27:6 And the chief priests took the silver pieces, and said, It is not
+lawful for to put them into the treasury, because it is the price of
+blood.
+
+27:7 And they took counsel, and bought with them the potter's field,
+to bury strangers in.
+
+27:8 Wherefore that field was called, The field of blood, unto this
+day.
+
+27:9 Then was fulfilled that which was spoken by Jeremy the prophet,
+saying, And they took the thirty pieces of silver, the price of him
+that was valued, whom they of the children of Israel did value; 27:10
+And gave them for the potter's field, as the Lord appointed me.
+
+27:11 And Jesus stood before the governor: and the governor asked him,
+saying, Art thou the King of the Jews? And Jesus said unto him, Thou
+sayest.
+
+27:12 And when he was accused of the chief priests and elders, he
+answered nothing.
+
+27:13 Then said Pilate unto him, Hearest thou not how many things they
+witness against thee? 27:14 And he answered him to never a word;
+insomuch that the governor marvelled greatly.
+
+27:15 Now at that feast the governor was wont to release unto the
+people a prisoner, whom they would.
+
+27:16 And they had then a notable prisoner, called Barabbas.
+
+27:17 Therefore when they were gathered together, Pilate said unto
+them, Whom will ye that I release unto you? Barabbas, or Jesus which
+is called Christ? 27:18 For he knew that for envy they had delivered
+him.
+
+27:19 When he was set down on the judgment seat, his wife sent unto
+him, saying, Have thou nothing to do with that just man: for I have
+suffered many things this day in a dream because of him.
+
+27:20 But the chief priests and elders persuaded the multitude that
+they should ask Barabbas, and destroy Jesus.
+
+27:21 The governor answered and said unto them, Whether of the twain
+will ye that I release unto you? They said, Barabbas.
+
+27:22 Pilate saith unto them, What shall I do then with Jesus which is
+called Christ? They all say unto him, Let him be crucified.
+
+27:23 And the governor said, Why, what evil hath he done? But they
+cried out the more, saying, Let him be crucified.
+
+27:24 When Pilate saw that he could prevail nothing, but that rather a
+tumult was made, he took water, and washed his hands before the
+multitude, saying, I am innocent of the blood of this just person: see
+ye to it.
+
+27:25 Then answered all the people, and said, His blood be on us, and
+on our children.
+
+27:26 Then released he Barabbas unto them: and when he had scourged
+Jesus, he delivered him to be crucified.
+
+27:27 Then the soldiers of the governor took Jesus into the common
+hall, and gathered unto him the whole band of soldiers.
+
+27:28 And they stripped him, and put on him a scarlet robe.
+
+27:29 And when they had platted a crown of thorns, they put it upon
+his head, and a reed in his right hand: and they bowed the knee before
+him, and mocked him, saying, Hail, King of the Jews! 27:30 And they
+spit upon him, and took the reed, and smote him on the head.
+
+27:31 And after that they had mocked him, they took the robe off from
+him, and put his own raiment on him, and led him away to crucify him.
+
+27:32 And as they came out, they found a man of Cyrene, Simon by name:
+him they compelled to bear his cross.
+
+27:33 And when they were come unto a place called Golgotha, that is to
+say, a place of a skull, 27:34 They gave him vinegar to drink mingled
+with gall: and when he had tasted thereof, he would not drink.
+
+27:35 And they crucified him, and parted his garments, casting lots:
+that it might be fulfilled which was spoken by the prophet, They
+parted my garments among them, and upon my vesture did they cast lots.
+
+27:36 And sitting down they watched him there; 27:37 And set up over
+his head his accusation written, THIS IS JESUS THE KING OF THE JEWS.
+
+27:38 Then were there two thieves crucified with him, one on the right
+hand, and another on the left.
+
+27:39 And they that passed by reviled him, wagging their heads, 27:40
+And saying, Thou that destroyest the temple, and buildest it in three
+days, save thyself. If thou be the Son of God, come down from the
+cross.
+
+27:41 Likewise also the chief priests mocking him, with the scribes
+and elders, said, 27:42 He saved others; himself he cannot save. If he
+be the King of Israel, let him now come down from the cross, and we
+will believe him.
+
+27:43 He trusted in God; let him deliver him now, if he will have him:
+for he said, I am the Son of God.
+
+27:44 The thieves also, which were crucified with him, cast the same
+in his teeth.
+
+27:45 Now from the sixth hour there was darkness over all the land
+unto the ninth hour.
+
+27:46 And about the ninth hour Jesus cried with a loud voice, saying,
+Eli, Eli, lama sabachthani? that is to say, My God, my God, why hast
+thou forsaken me? 27:47 Some of them that stood there, when they
+heard that, said, This man calleth for Elias.
+
+27:48 And straightway one of them ran, and took a spunge, and filled
+it with vinegar, and put it on a reed, and gave him to drink.
+
+27:49 The rest said, Let be, let us see whether Elias will come to
+save him.
+
+27:50 Jesus, when he had cried again with a loud voice, yielded up the
+ghost.
+
+27:51 And, behold, the veil of the temple was rent in twain from the
+top to the bottom; and the earth did quake, and the rocks rent; 27:52
+And the graves were opened; and many bodies of the saints which slept
+arose, 27:53 And came out of the graves after his resurrection, and
+went into the holy city, and appeared unto many.
+
+27:54 Now when the centurion, and they that were with him, watching
+Jesus, saw the earthquake, and those things that were done, they
+feared greatly, saying, Truly this was the Son of God.
+
+27:55 And many women were there beholding afar off, which followed
+Jesus from Galilee, ministering unto him: 27:56 Among which was Mary
+Magdalene, and Mary the mother of James and Joses, and the mother of
+Zebedees children.
+
+27:57 When the even was come, there came a rich man of Arimathaea,
+named Joseph, who also himself was Jesus' disciple: 27:58 He went to
+Pilate, and begged the body of Jesus. Then Pilate commanded the body
+to be delivered.
+
+27:59 And when Joseph had taken the body, he wrapped it in a clean
+linen cloth, 27:60 And laid it in his own new tomb, which he had hewn
+out in the rock: and he rolled a great stone to the door of the
+sepulchre, and departed.
+
+27:61 And there was Mary Magdalene, and the other Mary, sitting over
+against the sepulchre.
+
+27:62 Now the next day, that followed the day of the preparation, the
+chief priests and Pharisees came together unto Pilate, 27:63 Saying,
+Sir, we remember that that deceiver said, while he was yet alive,
+After three days I will rise again.
+
+27:64 Command therefore that the sepulchre be made sure until the
+third day, lest his disciples come by night, and steal him away, and
+say unto the people, He is risen from the dead: so the last error
+shall be worse than the first.
+
+27:65 Pilate said unto them, Ye have a watch: go your way, make it as
+sure as ye can.
+
+27:66 So they went, and made the sepulchre sure, sealing the stone,
+and setting a watch.
+
+28:1 In the end of the sabbath, as it began to dawn toward the first
+day of the week, came Mary Magdalene and the other Mary to see the
+sepulchre.
+
+28:2 And, behold, there was a great earthquake: for the angel of the
+Lord descended from heaven, and came and rolled back the stone from
+the door, and sat upon it.
+
+28:3 His countenance was like lightning, and his raiment white as
+snow: 28:4 And for fear of him the keepers did shake, and became as
+dead men.
+
+28:5 And the angel answered and said unto the women, Fear not ye: for
+I know that ye seek Jesus, which was crucified.
+
+28:6 He is not here: for he is risen, as he said. Come, see the place
+where the Lord lay.
+
+28:7 And go quickly, and tell his disciples that he is risen from the
+dead; and, behold, he goeth before you into Galilee; there shall ye
+see him: lo, I have told you.
+
+28:8 And they departed quickly from the sepulchre with fear and great
+joy; and did run to bring his disciples word.
+
+28:9 And as they went to tell his disciples, behold, Jesus met them,
+saying, All hail. And they came and held him by the feet, and
+worshipped him.
+
+28:10 Then said Jesus unto them, Be not afraid: go tell my brethren
+that they go into Galilee, and there shall they see me.
+
+28:11 Now when they were going, behold, some of the watch came into
+the city, and shewed unto the chief priests all the things that were
+done.
+
+28:12 And when they were assembled with the elders, and had taken
+counsel, they gave large money unto the soldiers, 28:13 Saying, Say
+ye, His disciples came by night, and stole him away while we slept.
+
+28:14 And if this come to the governor's ears, we will persuade him,
+and secure you.
+
+28:15 So they took the money, and did as they were taught: and this
+saying is commonly reported among the Jews until this day.
+
+28:16 Then the eleven disciples went away into Galilee, into a
+mountain where Jesus had appointed them.
+
+28:17 And when they saw him, they worshipped him: but some doubted.
+
+28:18 And Jesus came and spake unto them, saying, All power is given
+unto me in heaven and in earth.
+
+28:19 Go ye therefore, and teach all nations, baptizing them in the
+name of the Father, and of the Son, and of the Holy Ghost: 28:20
+Teaching them to observe all things whatsoever I have commanded you:
+and, lo, I am with you alway, even unto the end of the world. Amen.
+
+
+
+
+The Gospel According to Saint Mark
+
+
+1:1 The beginning of the gospel of Jesus Christ, the Son of God; 1:2
+As it is written in the prophets, Behold, I send my messenger before
+thy face, which shall prepare thy way before thee.
+
+1:3 The voice of one crying in the wilderness, Prepare ye the way of
+the Lord, make his paths straight.
+
+1:4 John did baptize in the wilderness, and preach the baptism of
+repentance for the remission of sins.
+
+1:5 And there went out unto him all the land of Judaea, and they of
+Jerusalem, and were all baptized of him in the river of Jordan,
+confessing their sins.
+
+1:6 And John was clothed with camel's hair, and with a girdle of a
+skin about his loins; and he did eat locusts and wild honey; 1:7 And
+preached, saying, There cometh one mightier than I after me, the
+latchet of whose shoes I am not worthy to stoop down and unloose.
+
+1:8 I indeed have baptized you with water: but he shall baptize you
+with the Holy Ghost.
+
+1:9 And it came to pass in those days, that Jesus came from Nazareth
+of Galilee, and was baptized of John in Jordan.
+
+1:10 And straightway coming up out of the water, he saw the heavens
+opened, and the Spirit like a dove descending upon him: 1:11 And there
+came a voice from heaven, saying, Thou art my beloved Son, in whom I
+am well pleased.
+
+1:12 And immediately the spirit driveth him into the wilderness.
+
+1:13 And he was there in the wilderness forty days, tempted of Satan;
+and was with the wild beasts; and the angels ministered unto him.
+
+1:14 Now after that John was put in prison, Jesus came into Galilee,
+preaching the gospel of the kingdom of God, 1:15 And saying, The time
+is fulfilled, and the kingdom of God is at hand: repent ye, and
+believe the gospel.
+
+1:16 Now as he walked by the sea of Galilee, he saw Simon and Andrew
+his brother casting a net into the sea: for they were fishers.
+
+1:17 And Jesus said unto them, Come ye after me, and I will make you
+to become fishers of men.
+
+1:18 And straightway they forsook their nets, and followed him.
+
+1:19 And when he had gone a little farther thence, he saw James the
+son of Zebedee, and John his brother, who also were in the ship
+mending their nets.
+
+1:20 And straightway he called them: and they left their father
+Zebedee in the ship with the hired servants, and went after him.
+
+1:21 And they went into Capernaum; and straightway on the sabbath day
+he entered into the synagogue, and taught.
+
+1:22 And they were astonished at his doctrine: for he taught them as
+one that had authority, and not as the scribes.
+
+1:23 And there was in their synagogue a man with an unclean spirit;
+and he cried out, 1:24 Saying, Let us alone; what have we to do with
+thee, thou Jesus of Nazareth? art thou come to destroy us? I know thee
+who thou art, the Holy One of God.
+
+1:25 And Jesus rebuked him, saying, Hold thy peace, and come out of
+him.
+
+1:26 And when the unclean spirit had torn him, and cried with a loud
+voice, he came out of him.
+
+1:27 And they were all amazed, insomuch that they questioned among
+themselves, saying, What thing is this? what new doctrine is this? for
+with authority commandeth he even the unclean spirits, and they do
+obey him.
+
+1:28 And immediately his fame spread abroad throughout all the region
+round about Galilee.
+
+1:29 And forthwith, when they were come out of the synagogue, they
+entered into the house of Simon and Andrew, with James and John.
+
+1:30 But Simon's wife's mother lay sick of a fever, and anon they tell
+him of her.
+
+1:31 And he came and took her by the hand, and lifted her up; and
+immediately the fever left her, and she ministered unto them.
+
+1:32 And at even, when the sun did set, they brought unto him all that
+were diseased, and them that were possessed with devils.
+
+1:33 And all the city was gathered together at the door.
+
+1:34 And he healed many that were sick of divers diseases, and cast
+out many devils; and suffered not the devils to speak, because they
+knew him.
+
+1:35 And in the morning, rising up a great while before day, he went
+out, and departed into a solitary place, and there prayed.
+
+1:36 And Simon and they that were with him followed after him.
+
+1:37 And when they had found him, they said unto him, All men seek for
+thee.
+
+1:38 And he said unto them, Let us go into the next towns, that I may
+preach there also: for therefore came I forth.
+
+1:39 And he preached in their synagogues throughout all Galilee, and
+cast out devils.
+
+1:40 And there came a leper to him, beseeching him, and kneeling down
+to him, and saying unto him, If thou wilt, thou canst make me clean.
+
+1:41 And Jesus, moved with compassion, put forth his hand, and touched
+him, and saith unto him, I will; be thou clean.
+
+1:42 And as soon as he had spoken, immediately the leprosy departed
+from him, and he was cleansed.
+
+1:43 And he straitly charged him, and forthwith sent him away; 1:44
+And saith unto him, See thou say nothing to any man: but go thy way,
+shew thyself to the priest, and offer for thy cleansing those things
+which Moses commanded, for a testimony unto them.
+
+1:45 But he went out, and began to publish it much, and to blaze
+abroad the matter, insomuch that Jesus could no more openly enter into
+the city, but was without in desert places: and they came to him from
+every quarter.
+
+2:1 And again he entered into Capernaum after some days; and it was
+noised that he was in the house.
+
+2:2 And straightway many were gathered together, insomuch that there
+was no room to receive them, no, not so much as about the door: and he
+preached the word unto them.
+
+2:3 And they come unto him, bringing one sick of the palsy, which was
+borne of four.
+
+2:4 And when they could not come nigh unto him for the press, they
+uncovered the roof where he was: and when they had broken it up, they
+let down the bed wherein the sick of the palsy lay.
+
+2:5 When Jesus saw their faith, he said unto the sick of the palsy,
+Son, thy sins be forgiven thee.
+
+2:6 But there was certain of the scribes sitting there, and reasoning
+in their hearts, 2:7 Why doth this man thus speak blasphemies? who can
+forgive sins but God only? 2:8 And immediately when Jesus perceived
+in his spirit that they so reasoned within themselves, he said unto
+them, Why reason ye these things in your hearts? 2:9 Whether is it
+easier to say to the sick of the palsy, Thy sins be forgiven thee; or
+to say, Arise, and take up thy bed, and walk? 2:10 But that ye may
+know that the Son of man hath power on earth to forgive sins, (he
+saith to the sick of the palsy,) 2:11 I say unto thee, Arise, and take
+up thy bed, and go thy way into thine house.
+
+2:12 And immediately he arose, took up the bed, and went forth before
+them all; insomuch that they were all amazed, and glorified God,
+saying, We never saw it on this fashion.
+
+2:13 And he went forth again by the sea side; and all the multitude
+resorted unto him, and he taught them.
+
+2:14 And as he passed by, he saw Levi the son of Alphaeus sitting at
+the receipt of custom, and said unto him, Follow me. And he arose and
+followed him.
+
+2:15 And it came to pass, that, as Jesus sat at meat in his house,
+many publicans and sinners sat also together with Jesus and his
+disciples: for there were many, and they followed him.
+
+2:16 And when the scribes and Pharisees saw him eat with publicans and
+sinners, they said unto his disciples, How is it that he eateth and
+drinketh with publicans and sinners? 2:17 When Jesus heard it, he
+saith unto them, They that are whole have no need of the physician,
+but they that are sick: I came not to call the righteous, but sinners
+to repentance.
+
+2:18 And the disciples of John and of the Pharisees used to fast: and
+they come and say unto him, Why do the disciples of John and of the
+Pharisees fast, but thy disciples fast not? 2:19 And Jesus said unto
+them, Can the children of the bridechamber fast, while the bridegroom
+is with them? as long as they have the bridegroom with them, they
+cannot fast.
+
+2:20 But the days will come, when the bridegroom shall be taken away
+from them, and then shall they fast in those days.
+
+2:21 No man also seweth a piece of new cloth on an old garment: else
+the new piece that filled it up taketh away from the old, and the rent
+is made worse.
+
+2:22 And no man putteth new wine into old bottles: else the new wine
+doth burst the bottles, and the wine is spilled, and the bottles will
+be marred: but new wine must be put into new bottles.
+
+2:23 And it came to pass, that he went through the corn fields on the
+sabbath day; and his disciples began, as they went, to pluck the ears
+of corn.
+
+2:24 And the Pharisees said unto him, Behold, why do they on the
+sabbath day that which is not lawful? 2:25 And he said unto them,
+Have ye never read what David did, when he had need, and was an
+hungred, he, and they that were with him? 2:26 How he went into the
+house of God in the days of Abiathar the high priest, and did eat the
+shewbread, which is not lawful to eat but for the priests, and gave
+also to them which were with him? 2:27 And he said unto them, The
+sabbath was made for man, and not man for the sabbath: 2:28 Therefore
+the Son of man is Lord also of the sabbath.
+
+3:1 And he entered again into the synagogue; and there was a man there
+which had a withered hand.
+
+3:2 And they watched him, whether he would heal him on the sabbath
+day; that they might accuse him.
+
+3:3 And he saith unto the man which had the withered hand, Stand
+forth.
+
+3:4 And he saith unto them, Is it lawful to do good on the sabbath
+days, or to do evil? to save life, or to kill? But they held their
+peace.
+
+3:5 And when he had looked round about on them with anger, being
+grieved for the hardness of their hearts, he saith unto the man,
+Stretch forth thine hand. And he stretched it out: and his hand was
+restored whole as the other.
+
+3:6 And the Pharisees went forth, and straightway took counsel with
+the Herodians against him, how they might destroy him.
+
+3:7 But Jesus withdrew himself with his disciples to the sea: and a
+great multitude from Galilee followed him, and from Judaea, 3:8 And
+from Jerusalem, and from Idumaea, and from beyond Jordan; and they
+about Tyre and Sidon, a great multitude, when they had heard what
+great things he did, came unto him.
+
+3:9 And he spake to his disciples, that a small ship should wait on
+him because of the multitude, lest they should throng him.
+
+3:10 For he had healed many; insomuch that they pressed upon him for
+to touch him, as many as had plagues.
+
+3:11 And unclean spirits, when they saw him, fell down before him, and
+cried, saying, Thou art the Son of God.
+
+3:12 And he straitly charged them that they should not make him known.
+
+3:13 And he goeth up into a mountain, and calleth unto him whom he
+would: and they came unto him.
+
+3:14 And he ordained twelve, that they should be with him, and that he
+might send them forth to preach, 3:15 And to have power to heal
+sicknesses, and to cast out devils: 3:16 And Simon he surnamed Peter;
+3:17 And James the son of Zebedee, and John the brother of James; and
+he surnamed them Boanerges, which is, The sons of thunder: 3:18 And
+Andrew, and Philip, and Bartholomew, and Matthew, and Thomas, and
+James the son of Alphaeus, and Thaddaeus, and Simon the Canaanite,
+3:19 And Judas Iscariot, which also betrayed him: and they went into
+an house.
+
+3:20 And the multitude cometh together again, so that they could not
+so much as eat bread.
+
+3:21 And when his friends heard of it, they went out to lay hold on
+him: for they said, He is beside himself.
+
+3:22 And the scribes which came down from Jerusalem said, He hath
+Beelzebub, and by the prince of the devils casteth he out devils.
+
+3:23 And he called them unto him, and said unto them in parables, How
+can Satan cast out Satan? 3:24 And if a kingdom be divided against
+itself, that kingdom cannot stand.
+
+3:25 And if a house be divided against itself, that house cannot
+stand.
+
+3:26 And if Satan rise up against himself, and be divided, he cannot
+stand, but hath an end.
+
+3:27 No man can enter into a strong man's house, and spoil his goods,
+except he will first bind the strong man; and then he will spoil his
+house.
+
+3:28 Verily I say unto you, All sins shall be forgiven unto the sons
+of men, and blasphemies wherewith soever they shall blaspheme: 3:29
+But he that shall blaspheme against the Holy Ghost hath never
+forgiveness, but is in danger of eternal damnation.
+
+3:30 Because they said, He hath an unclean spirit.
+
+3:31 There came then his brethren and his mother, and, standing
+without, sent unto him, calling him.
+
+3:32 And the multitude sat about him, and they said unto him, Behold,
+thy mother and thy brethren without seek for thee.
+
+3:33 And he answered them, saying, Who is my mother, or my brethren?
+3:34 And he looked round about on them which sat about him, and said,
+Behold my mother and my brethren! 3:35 For whosoever shall do the
+will of God, the same is my brother, and my sister, and mother.
+
+4:1 And he began again to teach by the sea side: and there was
+gathered unto him a great multitude, so that he entered into a ship,
+and sat in the sea; and the whole multitude was by the sea on the
+land.
+
+4:2 And he taught them many things by parables, and said unto them in
+his doctrine, 4:3 Hearken; Behold, there went out a sower to sow: 4:4
+And it came to pass, as he sowed, some fell by the way side, and the
+fowls of the air came and devoured it up.
+
+4:5 And some fell on stony ground, where it had not much earth; and
+immediately it sprang up, because it had no depth of earth: 4:6 But
+when the sun was up, it was scorched; and because it had no root, it
+withered away.
+
+4:7 And some fell among thorns, and the thorns grew up, and choked it,
+and it yielded no fruit.
+
+4:8 And other fell on good ground, and did yield fruit that sprang up
+and increased; and brought forth, some thirty, and some sixty, and
+some an hundred.
+
+4:9 And he said unto them, He that hath ears to hear, let him hear.
+
+4:10 And when he was alone, they that were about him with the twelve
+asked of him the parable.
+
+4:11 And he said unto them, Unto you it is given to know the mystery
+of the kingdom of God: but unto them that are without, all these
+things are done in parables: 4:12 That seeing they may see, and not
+perceive; and hearing they may hear, and not understand; lest at any
+time they should be converted, and their sins should be forgiven them.
+
+4:13 And he said unto them, Know ye not this parable? and how then
+will ye know all parables? 4:14 The sower soweth the word.
+
+4:15 And these are they by the way side, where the word is sown; but
+when they have heard, Satan cometh immediately, and taketh away the
+word that was sown in their hearts.
+
+4:16 And these are they likewise which are sown on stony ground; who,
+when they have heard the word, immediately receive it with gladness;
+4:17 And have no root in themselves, and so endure but for a time:
+afterward, when affliction or persecution ariseth for the word's sake,
+immediately they are offended.
+
+4:18 And these are they which are sown among thorns; such as hear the
+word, 4:19 And the cares of this world, and the deceitfulness of
+riches, and the lusts of other things entering in, choke the word, and
+it becometh unfruitful.
+
+4:20 And these are they which are sown on good ground; such as hear
+the word, and receive it, and bring forth fruit, some thirtyfold, some
+sixty, and some an hundred.
+
+4:21 And he said unto them, Is a candle brought to be put under a
+bushel, or under a bed? and not to be set on a candlestick? 4:22 For
+there is nothing hid, which shall not be manifested; neither was any
+thing kept secret, but that it should come abroad.
+
+4:23 If any man have ears to hear, let him hear.
+
+4:24 And he said unto them, Take heed what ye hear: with what measure
+ye mete, it shall be measured to you: and unto you that hear shall
+more be given.
+
+4:25 For he that hath, to him shall be given: and he that hath not,
+from him shall be taken even that which he hath.
+
+4:26 And he said, So is the kingdom of God, as if a man should cast
+seed into the ground; 4:27 And should sleep, and rise night and day,
+and the seed should spring and grow up, he knoweth not how.
+
+4:28 For the earth bringeth forth fruit of herself; first the blade,
+then the ear, after that the full corn in the ear.
+
+4:29 But when the fruit is brought forth, immediately he putteth in
+the sickle, because the harvest is come.
+
+4:30 And he said, Whereunto shall we liken the kingdom of God? or with
+what comparison shall we compare it? 4:31 It is like a grain of
+mustard seed, which, when it is sown in the earth, is less than all
+the seeds that be in the earth: 4:32 But when it is sown, it groweth
+up, and becometh greater than all herbs, and shooteth out great
+branches; so that the fowls of the air may lodge under the shadow of
+it.
+
+4:33 And with many such parables spake he the word unto them, as they
+were able to hear it.
+
+4:34 But without a parable spake he not unto them: and when they were
+alone, he expounded all things to his disciples.
+
+4:35 And the same day, when the even was come, he saith unto them, Let
+us pass over unto the other side.
+
+4:36 And when they had sent away the multitude, they took him even as
+he was in the ship. And there were also with him other little ships.
+
+4:37 And there arose a great storm of wind, and the waves beat into
+the ship, so that it was now full.
+
+4:38 And he was in the hinder part of the ship, asleep on a pillow:
+and they awake him, and say unto him, Master, carest thou not that we
+perish? 4:39 And he arose, and rebuked the wind, and said unto the
+sea, Peace, be still. And the wind ceased, and there was a great calm.
+
+4:40 And he said unto them, Why are ye so fearful? how is it that ye
+have no faith? 4:41 And they feared exceedingly, and said one to
+another, What manner of man is this, that even the wind and the sea
+obey him? 5:1 And they came over unto the other side of the sea, into
+the country of the Gadarenes.
+
+5:2 And when he was come out of the ship, immediately there met him
+out of the tombs a man with an unclean spirit, 5:3 Who had his
+dwelling among the tombs; and no man could bind him, no, not with
+chains: 5:4 Because that he had been often bound with fetters and
+chains, and the chains had been plucked asunder by him, and the
+fetters broken in pieces: neither could any man tame him.
+
+5:5 And always, night and day, he was in the mountains, and in the
+tombs, crying, and cutting himself with stones.
+
+5:6 But when he saw Jesus afar off, he ran and worshipped him, 5:7 And
+cried with a loud voice, and said, What have I to do with thee, Jesus,
+thou Son of the most high God? I adjure thee by God, that thou torment
+me not.
+
+5:8 For he said unto him, Come out of the man, thou unclean spirit.
+
+5:9 And he asked him, What is thy name? And he answered, saying, My
+name is Legion: for we are many.
+
+5:10 And he besought him much that he would not send them away out of
+the country.
+
+5:11 Now there was there nigh unto the mountains a great herd of swine
+feeding.
+
+5:12 And all the devils besought him, saying, Send us into the swine,
+that we may enter into them.
+
+5:13 And forthwith Jesus gave them leave. And the unclean spirits went
+out, and entered into the swine: and the herd ran violently down a
+steep place into the sea, (they were about two thousand;) and were
+choked in the sea.
+
+5:14 And they that fed the swine fled, and told it in the city, and in
+the country. And they went out to see what it was that was done.
+
+5:15 And they come to Jesus, and see him that was possessed with the
+devil, and had the legion, sitting, and clothed, and in his right
+mind: and they were afraid.
+
+5:16 And they that saw it told them how it befell to him that was
+possessed with the devil, and also concerning the swine.
+
+5:17 And they began to pray him to depart out of their coasts.
+
+5:18 And when he was come into the ship, he that had been possessed
+with the devil prayed him that he might be with him.
+
+5:19 Howbeit Jesus suffered him not, but saith unto him, Go home to
+thy friends, and tell them how great things the Lord hath done for
+thee, and hath had compassion on thee.
+
+5:20 And he departed, and began to publish in Decapolis how great
+things Jesus had done for him: and all men did marvel.
+
+5:21 And when Jesus was passed over again by ship unto the other side,
+much people gathered unto him: and he was nigh unto the sea.
+
+5:22 And, behold, there cometh one of the rulers of the synagogue,
+Jairus by name; and when he saw him, he fell at his feet, 5:23 And
+besought him greatly, saying, My little daughter lieth at the point of
+death: I pray thee, come and lay thy hands on her, that she may be
+healed; and she shall live.
+
+5:24 And Jesus went with him; and much people followed him, and
+thronged him.
+
+5:25 And a certain woman, which had an issue of blood twelve years,
+5:26 And had suffered many things of many physicians, and had spent
+all that she had, and was nothing bettered, but rather grew worse,
+5:27 When she had heard of Jesus, came in the press behind, and
+touched his garment.
+
+5:28 For she said, If I may touch but his clothes, I shall be whole.
+
+5:29 And straightway the fountain of her blood was dried up; and she
+felt in her body that she was healed of that plague.
+
+5:30 And Jesus, immediately knowing in himself that virtue had gone
+out of him, turned him about in the press, and said, Who touched my
+clothes? 5:31 And his disciples said unto him, Thou seest the
+multitude thronging thee, and sayest thou, Who touched me? 5:32 And
+he looked round about to see her that had done this thing.
+
+5:33 But the woman fearing and trembling, knowing what was done in
+her, came and fell down before him, and told him all the truth.
+
+5:34 And he said unto her, Daughter, thy faith hath made thee whole;
+go in peace, and be whole of thy plague.
+
+5:35 While he yet spake, there came from the ruler of the synagogue's
+house certain which said, Thy daughter is dead: why troublest thou the
+Master any further? 5:36 As soon as Jesus heard the word that was
+spoken, he saith unto the ruler of the synagogue, Be not afraid, only
+believe.
+
+5:37 And he suffered no man to follow him, save Peter, and James, and
+John the brother of James.
+
+5:38 And he cometh to the house of the ruler of the synagogue, and
+seeth the tumult, and them that wept and wailed greatly.
+
+5:39 And when he was come in, he saith unto them, Why make ye this
+ado, and weep? the damsel is not dead, but sleepeth.
+
+5:40 And they laughed him to scorn. But when he had put them all out,
+he taketh the father and the mother of the damsel, and them that were
+with him, and entereth in where the damsel was lying.
+
+5:41 And he took the damsel by the hand, and said unto her, Talitha
+cumi; which is, being interpreted, Damsel, I say unto thee, arise.
+
+5:42 And straightway the damsel arose, and walked; for she was of the
+age of twelve years. And they were astonished with a great
+astonishment.
+
+5:43 And he charged them straitly that no man should know it; and
+commanded that something should be given her to eat.
+
+6:1 And he went out from thence, and came into his own country; and
+his disciples follow him.
+
+6:2 And when the sabbath day was come, he began to teach in the
+synagogue: and many hearing him were astonished, saying, From whence
+hath this man these things? and what wisdom is this which is given
+unto him, that even such mighty works are wrought by his hands? 6:3
+Is not this the carpenter, the son of Mary, the brother of James, and
+Joses, and of Juda, and Simon? and are not his sisters here with us?
+And they were offended at him.
+
+6:4 But Jesus, said unto them, A prophet is not without honour, but in
+his own country, and among his own kin, and in his own house.
+
+6:5 And he could there do no mighty work, save that he laid his hands
+upon a few sick folk, and healed them.
+
+6:6 And he marvelled because of their unbelief. And he went round
+about the villages, teaching.
+
+6:7 And he called unto him the twelve, and began to send them forth by
+two and two; and gave them power over unclean spirits; 6:8 And
+commanded them that they should take nothing for their journey, save a
+staff only; no scrip, no bread, no money in their purse: 6:9 But be
+shod with sandals; and not put on two coats.
+
+6:10 And he said unto them, In what place soever ye enter into an
+house, there abide till ye depart from that place.
+
+6:11 And whosoever shall not receive you, nor hear you, when ye depart
+thence, shake off the dust under your feet for a testimony against
+them.
+
+Verily I say unto you, It shall be more tolerable for Sodom and
+Gomorrha in the day of judgment, than for that city.
+
+6:12 And they went out, and preached that men should repent.
+
+6:13 And they cast out many devils, and anointed with oil many that
+were sick, and healed them.
+
+6:14 And king Herod heard of him; (for his name was spread abroad:)
+and he said, That John the Baptist was risen from the dead, and
+therefore mighty works do shew forth themselves in him.
+
+6:15 Others said, That it is Elias. And others said, That it is a
+prophet, or as one of the prophets.
+
+6:16 But when Herod heard thereof, he said, It is John, whom I
+beheaded: he is risen from the dead.
+
+6:17 For Herod himself had sent forth and laid hold upon John, and
+bound him in prison for Herodias' sake, his brother Philip's wife: for
+he had married her.
+
+6:18 For John had said unto Herod, It is not lawful for thee to have
+thy brother's wife.
+
+6:19 Therefore Herodias had a quarrel against him, and would have
+killed him; but she could not: 6:20 For Herod feared John, knowing
+that he was a just man and an holy, and observed him; and when he
+heard him, he did many things, and heard him gladly.
+
+6:21 And when a convenient day was come, that Herod on his birthday
+made a supper to his lords, high captains, and chief estates of
+Galilee; 6:22 And when the daughter of the said Herodias came in, and
+danced, and pleased Herod and them that sat with him, the king said
+unto the damsel, Ask of me whatsoever thou wilt, and I will give it
+thee.
+
+6:23 And he sware unto her, Whatsoever thou shalt ask of me, I will
+give it thee, unto the half of my kingdom.
+
+6:24 And she went forth, and said unto her mother, What shall I ask?
+And she said, The head of John the Baptist.
+
+6:25 And she came in straightway with haste unto the king, and asked,
+saying, I will that thou give me by and by in a charger the head of
+John the Baptist.
+
+6:26 And the king was exceeding sorry; yet for his oath's sake, and
+for their sakes which sat with him, he would not reject her.
+
+6:27 And immediately the king sent an executioner, and commanded his
+head to be brought: and he went and beheaded him in the prison, 6:28
+And brought his head in a charger, and gave it to the damsel: and the
+damsel gave it to her mother.
+
+6:29 And when his disciples heard of it, they came and took up his
+corpse, and laid it in a tomb.
+
+6:30 And the apostles gathered themselves together unto Jesus, and
+told him all things, both what they had done, and what they had
+taught.
+
+6:31 And he said unto them, Come ye yourselves apart into a desert
+place, and rest a while: for there were many coming and going, and
+they had no leisure so much as to eat.
+
+6:32 And they departed into a desert place by ship privately.
+
+6:33 And the people saw them departing, and many knew him, and ran
+afoot thither out of all cities, and outwent them, and came together
+unto him.
+
+6:34 And Jesus, when he came out, saw much people, and was moved with
+compassion toward them, because they were as sheep not having a
+shepherd: and he began to teach them many things.
+
+6:35 And when the day was now far spent, his disciples came unto him,
+and said, This is a desert place, and now the time is far passed: 6:36
+Send them away, that they may go into the country round about, and
+into the villages, and buy themselves bread: for they have nothing to
+eat.
+
+6:37 He answered and said unto them, Give ye them to eat. And they say
+unto him, Shall we go and buy two hundred pennyworth of bread, and
+give them to eat? 6:38 He saith unto them, How many loaves have ye?
+go and see. And when they knew, they say, Five, and two fishes.
+
+6:39 And he commanded them to make all sit down by companies upon the
+green grass.
+
+6:40 And they sat down in ranks, by hundreds, and by fifties.
+
+6:41 And when he had taken the five loaves and the two fishes, he
+looked up to heaven, and blessed, and brake the loaves, and gave them
+to his disciples to set before them; and the two fishes divided he
+among them all.
+
+6:42 And they did all eat, and were filled.
+
+6:43 And they took up twelve baskets full of the fragments, and of the
+fishes.
+
+6:44 And they that did eat of the loaves were about five thousand men.
+
+6:45 And straightway he constrained his disciples to get into the
+ship, and to go to the other side before unto Bethsaida, while he sent
+away the people.
+
+6:46 And when he had sent them away, he departed into a mountain to
+pray.
+
+6:47 And when even was come, the ship was in the midst of the sea, and
+he alone on the land.
+
+6:48 And he saw them toiling in rowing; for the wind was contrary unto
+them: and about the fourth watch of the night he cometh unto them,
+walking upon the sea, and would have passed by them.
+
+6:49 But when they saw him walking upon the sea, they supposed it had
+been a spirit, and cried out: 6:50 For they all saw him, and were
+troubled. And immediately he talked with them, and saith unto them, Be
+of good cheer: it is I; be not afraid.
+
+6:51 And he went up unto them into the ship; and the wind ceased: and
+they were sore amazed in themselves beyond measure, and wondered.
+
+6:52 For they considered not the miracle of the loaves: for their
+heart was hardened.
+
+6:53 And when they had passed over, they came into the land of
+Gennesaret, and drew to the shore.
+
+6:54 And when they were come out of the ship, straightway they knew
+him, 6:55 And ran through that whole region round about, and began to
+carry about in beds those that were sick, where they heard he was.
+
+6:56 And whithersoever he entered, into villages, or cities, or
+country, they laid the sick in the streets, and besought him that they
+might touch if it were but the border of his garment: and as many as
+touched him were made whole.
+
+7:1 Then came together unto him the Pharisees, and certain of the
+scribes, which came from Jerusalem.
+
+7:2 And when they saw some of his disciples eat bread with defiled,
+that is to say, with unwashen, hands, they found fault.
+
+7:3 For the Pharisees, and all the Jews, except they wash their hands
+oft, eat not, holding the tradition of the elders.
+
+7:4 And when they come from the market, except they wash, they eat
+not.
+
+And many other things there be, which they have received to hold, as
+the washing of cups, and pots, brasen vessels, and of tables.
+
+7:5 Then the Pharisees and scribes asked him, Why walk not thy
+disciples according to the tradition of the elders, but eat bread with
+unwashen hands? 7:6 He answered and said unto them, Well hath Esaias
+prophesied of you hypocrites, as it is written, This people honoureth
+me with their lips, but their heart is far from me.
+
+7:7 Howbeit in vain do they worship me, teaching for doctrines the
+commandments of men.
+
+7:8 For laying aside the commandment of God, ye hold the tradition of
+men, as the washing of pots and cups: and many other such like things
+ye do.
+
+7:9 And he said unto them, Full well ye reject the commandment of God,
+that ye may keep your own tradition.
+
+7:10 For Moses said, Honour thy father and thy mother; and, Whoso
+curseth father or mother, let him die the death: 7:11 But ye say, If a
+man shall say to his father or mother, It is Corban, that is to say, a
+gift, by whatsoever thou mightest be profited by me; he shall be free.
+
+7:12 And ye suffer him no more to do ought for his father or his
+mother; 7:13 Making the word of God of none effect through your
+tradition, which ye have delivered: and many such like things do ye.
+
+7:14 And when he had called all the people unto him, he said unto
+them, Hearken unto me every one of you, and understand: 7:15 There is
+nothing from without a man, that entering into him can defile him: but
+the things which come out of him, those are they that defile the man.
+
+7:16 If any man have ears to hear, let him hear.
+
+7:17 And when he was entered into the house from the people, his
+disciples asked him concerning the parable.
+
+7:18 And he saith unto them, Are ye so without understanding also? Do
+ye not perceive, that whatsoever thing from without entereth into the
+man, it cannot defile him; 7:19 Because it entereth not into his
+heart, but into the belly, and goeth out into the draught, purging all
+meats? 7:20 And he said, That which cometh out of the man, that
+defileth the man.
+
+7:21 For from within, out of the heart of men, proceed evil thoughts,
+adulteries, fornications, murders, 7:22 Thefts, covetousness,
+wickedness, deceit, lasciviousness, an evil eye, blasphemy, pride,
+foolishness: 7:23 All these evil things come from within, and defile
+the man.
+
+7:24 And from thence he arose, and went into the borders of Tyre and
+Sidon, and entered into an house, and would have no man know it: but
+he could not be hid.
+
+7:25 For a certain woman, whose young daughter had an unclean spirit,
+heard of him, and came and fell at his feet: 7:26 The woman was a
+Greek, a Syrophenician by nation; and she besought him that he would
+cast forth the devil out of her daughter.
+
+7:27 But Jesus said unto her, Let the children first be filled: for it
+is not meet to take the children's bread, and to cast it unto the
+dogs.
+
+7:28 And she answered and said unto him, Yes, Lord: yet the dogs under
+the table eat of the children's crumbs.
+
+7:29 And he said unto her, For this saying go thy way; the devil is
+gone out of thy daughter.
+
+7:30 And when she was come to her house, she found the devil gone out,
+and her daughter laid upon the bed.
+
+7:31 And again, departing from the coasts of Tyre and Sidon, he came
+unto the sea of Galilee, through the midst of the coasts of Decapolis.
+
+7:32 And they bring unto him one that was deaf, and had an impediment
+in his speech; and they beseech him to put his hand upon him.
+
+7:33 And he took him aside from the multitude, and put his fingers
+into his ears, and he spit, and touched his tongue; 7:34 And looking
+up to heaven, he sighed, and saith unto him, Ephphatha, that is, Be
+opened.
+
+7:35 And straightway his ears were opened, and the string of his
+tongue was loosed, and he spake plain.
+
+7:36 And he charged them that they should tell no man: but the more he
+charged them, so much the more a great deal they published it; 7:37
+And were beyond measure astonished, saying, He hath done all things
+well: he maketh both the deaf to hear, and the dumb to speak.
+
+8:1 In those days the multitude being very great, and having nothing
+to eat, Jesus called his disciples unto him, and saith unto them, 8:2
+I have compassion on the multitude, because they have now been with me
+three days, and have nothing to eat: 8:3 And if I send them away
+fasting to their own houses, they will faint by the way: for divers of
+them came from far.
+
+8:4 And his disciples answered him, From whence can a man satisfy
+these men with bread here in the wilderness? 8:5 And he asked them,
+How many loaves have ye? And they said, Seven.
+
+8:6 And he commanded the people to sit down on the ground: and he took
+the seven loaves, and gave thanks, and brake, and gave to his
+disciples to set before them; and they did set them before the people.
+
+8:7 And they had a few small fishes: and he blessed, and commanded to
+set them also before them.
+
+8:8 So they did eat, and were filled: and they took up of the broken
+meat that was left seven baskets.
+
+8:9 And they that had eaten were about four thousand: and he sent them
+away.
+
+8:10 And straightway he entered into a ship with his disciples, and
+came into the parts of Dalmanutha.
+
+8:11 And the Pharisees came forth, and began to question with him,
+seeking of him a sign from heaven, tempting him.
+
+8:12 And he sighed deeply in his spirit, and saith, Why doth this
+generation seek after a sign? verily I say unto you, There shall no
+sign be given unto this generation.
+
+8:13 And he left them, and entering into the ship again departed to
+the other side.
+
+8:14 Now the disciples had forgotten to take bread, neither had they
+in the ship with them more than one loaf.
+
+8:15 And he charged them, saying, Take heed, beware of the leaven of
+the Pharisees, and of the leaven of Herod.
+
+8:16 And they reasoned among themselves, saying, It is because we have
+no bread.
+
+8:17 And when Jesus knew it, he saith unto them, Why reason ye,
+because ye have no bread? perceive ye not yet, neither understand?
+have ye your heart yet hardened? 8:18 Having eyes, see ye not? and
+having ears, hear ye not? and do ye not remember? 8:19 When I brake
+the five loaves among five thousand, how many baskets full of
+fragments took ye up? They say unto him, Twelve.
+
+8:20 And when the seven among four thousand, how many baskets full of
+fragments took ye up? And they said, Seven.
+
+8:21 And he said unto them, How is it that ye do not understand? 8:22
+And he cometh to Bethsaida; and they bring a blind man unto him, and
+besought him to touch him.
+
+8:23 And he took the blind man by the hand, and led him out of the
+town; and when he had spit on his eyes, and put his hands upon him, he
+asked him if he saw ought.
+
+8:24 And he looked up, and said, I see men as trees, walking.
+
+8:25 After that he put his hands again upon his eyes, and made him
+look up: and he was restored, and saw every man clearly.
+
+8:26 And he sent him away to his house, saying, Neither go into the
+town, nor tell it to any in the town.
+
+8:27 And Jesus went out, and his disciples, into the towns of Caesarea
+Philippi: and by the way he asked his disciples, saying unto them,
+Whom do men say that I am? 8:28 And they answered, John the Baptist;
+but some say, Elias; and others, One of the prophets.
+
+8:29 And he saith unto them, But whom say ye that I am? And Peter
+answereth and saith unto him, Thou art the Christ.
+
+8:30 And he charged them that they should tell no man of him.
+
+8:31 And he began to teach them, that the Son of man must suffer many
+things, and be rejected of the elders, and of the chief priests, and
+scribes, and be killed, and after three days rise again.
+
+8:32 And he spake that saying openly. And Peter took him, and began to
+rebuke him.
+
+8:33 But when he had turned about and looked on his disciples, he
+rebuked Peter, saying, Get thee behind me, Satan: for thou savourest
+not the things that be of God, but the things that be of men.
+
+8:34 And when he had called the people unto him with his disciples
+also, he said unto them, Whosoever will come after me, let him deny
+himself, and take up his cross, and follow me.
+
+8:35 For whosoever will save his life shall lose it; but whosoever
+shall lose his life for my sake and the gospel's, the same shall save
+it.
+
+8:36 For what shall it profit a man, if he shall gain the whole world,
+and lose his own soul? 8:37 Or what shall a man give in exchange for
+his soul? 8:38 Whosoever therefore shall be ashamed of me and of my
+words in this adulterous and sinful generation; of him also shall the
+Son of man be ashamed, when he cometh in the glory of his Father with
+the holy angels.
+
+9:1 And he said unto them, Verily I say unto you, That there be some
+of them that stand here, which shall not taste of death, till they
+have seen the kingdom of God come with power.
+
+9:2 And after six days Jesus taketh with him Peter, and James, and
+John, and leadeth them up into an high mountain apart by themselves:
+and he was transfigured before them.
+
+9:3 And his raiment became shining, exceeding white as snow; so as no
+fuller on earth can white them.
+
+9:4 And there appeared unto them Elias with Moses: and they were
+talking with Jesus.
+
+9:5 And Peter answered and said to Jesus, Master, it is good for us to
+be here: and let us make three tabernacles; one for thee, and one for
+Moses, and one for Elias.
+
+9:6 For he wist not what to say; for they were sore afraid.
+
+9:7 And there was a cloud that overshadowed them: and a voice came out
+of the cloud, saying, This is my beloved Son: hear him.
+
+9:8 And suddenly, when they had looked round about, they saw no man
+any more, save Jesus only with themselves.
+
+9:9 And as they came down from the mountain, he charged them that they
+should tell no man what things they had seen, till the Son of man were
+risen from the dead.
+
+9:10 And they kept that saying with themselves, questioning one with
+another what the rising from the dead should mean.
+
+9:11 And they asked him, saying, Why say the scribes that Elias must
+first come? 9:12 And he answered and told them, Elias verily cometh
+first, and restoreth all things; and how it is written of the Son of
+man, that he must suffer many things, and be set at nought.
+
+9:13 But I say unto you, That Elias is indeed come, and they have done
+unto him whatsoever they listed, as it is written of him.
+
+9:14 And when he came to his disciples, he saw a great multitude about
+them, and the scribes questioning with them.
+
+9:15 And straightway all the people, when they beheld him, were
+greatly amazed, and running to him saluted him.
+
+9:16 And he asked the scribes, What question ye with them? 9:17 And
+one of the multitude answered and said, Master, I have brought unto
+thee my son, which hath a dumb spirit; 9:18 And wheresoever he taketh
+him, he teareth him: and he foameth, and gnasheth with his teeth, and
+pineth away: and I spake to thy disciples that they should cast him
+out; and they could not.
+
+9:19 He answereth him, and saith, O faithless generation, how long
+shall I be with you? how long shall I suffer you? bring him unto me.
+
+9:20 And they brought him unto him: and when he saw him, straightway
+the spirit tare him; and he fell on the ground, and wallowed foaming.
+
+9:21 And he asked his father, How long is it ago since this came unto
+him? And he said, Of a child.
+
+9:22 And ofttimes it hath cast him into the fire, and into the waters,
+to destroy him: but if thou canst do any thing, have compassion on us,
+and help us.
+
+9:23 Jesus said unto him, If thou canst believe, all things are
+possible to him that believeth.
+
+9:24 And straightway the father of the child cried out, and said with
+tears, Lord, I believe; help thou mine unbelief.
+
+9:25 When Jesus saw that the people came running together, he rebuked
+the foul spirit, saying unto him, Thou dumb and deaf spirit, I charge
+thee, come out of him, and enter no more into him.
+
+9:26 And the spirit cried, and rent him sore, and came out of him: and
+he was as one dead; insomuch that many said, He is dead.
+
+9:27 But Jesus took him by the hand, and lifted him up; and he arose.
+
+9:28 And when he was come into the house, his disciples asked him
+privately, Why could not we cast him out? 9:29 And he said unto them,
+This kind can come forth by nothing, but by prayer and fasting.
+
+9:30 And they departed thence, and passed through Galilee; and he
+would not that any man should know it.
+
+9:31 For he taught his disciples, and said unto them, The Son of man
+is delivered into the hands of men, and they shall kill him; and after
+that he is killed, he shall rise the third day.
+
+9:32 But they understood not that saying, and were afraid to ask him.
+
+9:33 And he came to Capernaum: and being in the house he asked them,
+What was it that ye disputed among yourselves by the way? 9:34 But
+they held their peace: for by the way they had disputed among
+themselves, who should be the greatest.
+
+9:35 And he sat down, and called the twelve, and saith unto them, If
+any man desire to be first, the same shall be last of all, and servant
+of all.
+
+9:36 And he took a child, and set him in the midst of them: and when
+he had taken him in his arms, he said unto them, 9:37 Whosoever shall
+receive one of such children in my name, receiveth me: and whosoever
+shall receive me, receiveth not me, but him that sent me.
+
+9:38 And John answered him, saying, Master, we saw one casting out
+devils in thy name, and he followeth not us: and we forbad him,
+because he followeth not us.
+
+9:39 But Jesus said, Forbid him not: for there is no man which shall
+do a miracle in my name, that can lightly speak evil of me.
+
+9:40 For he that is not against us is on our part.
+
+9:41 For whosoever shall give you a cup of water to drink in my name,
+because ye belong to Christ, verily I say unto you, he shall not lose
+his reward.
+
+9:42 And whosoever shall offend one of these little ones that believe
+in me, it is better for him that a millstone were hanged about his
+neck, and he were cast into the sea.
+
+9:43 And if thy hand offend thee, cut it off: it is better for thee to
+enter into life maimed, than having two hands to go into hell, into
+the fire that never shall be quenched: 9:44 Where their worm dieth
+not, and the fire is not quenched.
+
+9:45 And if thy foot offend thee, cut it off: it is better for thee to
+enter halt into life, than having two feet to be cast into hell, into
+the fire that never shall be quenched: 9:46 Where their worm dieth
+not, and the fire is not quenched.
+
+9:47 And if thine eye offend thee, pluck it out: it is better for thee
+to enter into the kingdom of God with one eye, than having two eyes to
+be cast into hell fire: 9:48 Where their worm dieth not, and the fire
+is not quenched.
+
+9:49 For every one shall be salted with fire, and every sacrifice
+shall be salted with salt.
+
+9:50 Salt is good: but if the salt have lost his saltness, wherewith
+will ye season it? Have salt in yourselves, and have peace one with
+another.
+
+10:1 And he arose from thence, and cometh into the coasts of Judaea by
+the farther side of Jordan: and the people resort unto him again; and,
+as he was wont, he taught them again.
+
+10:2 And the Pharisees came to him, and asked him, Is it lawful for a
+man to put away his wife? tempting him.
+
+10:3 And he answered and said unto them, What did Moses command you?
+10:4 And they said, Moses suffered to write a bill of divorcement, and
+to put her away.
+
+10:5 And Jesus answered and said unto them, For the hardness of your
+heart he wrote you this precept.
+
+10:6 But from the beginning of the creation God made them male and
+female.
+
+10:7 For this cause shall a man leave his father and mother, and
+cleave to his wife; 10:8 And they twain shall be one flesh: so then
+they are no more twain, but one flesh.
+
+10:9 What therefore God hath joined together, let not man put asunder.
+
+10:10 And in the house his disciples asked him again of the same
+matter.
+
+10:11 And he saith unto them, Whosoever shall put away his wife, and
+marry another, committeth adultery against her.
+
+10:12 And if a woman shall put away her husband, and be married to
+another, she committeth adultery.
+
+10:13 And they brought young children to him, that he should touch
+them: and his disciples rebuked those that brought them.
+
+10:14 But when Jesus saw it, he was much displeased, and said unto
+them, Suffer the little children to come unto me, and forbid them not:
+for of such is the kingdom of God.
+
+10:15 Verily I say unto you, Whosoever shall not receive the kingdom
+of God as a little child, he shall not enter therein.
+
+10:16 And he took them up in his arms, put his hands upon them, and
+blessed them.
+
+10:17 And when he was gone forth into the way, there came one running,
+and kneeled to him, and asked him, Good Master, what shall I do that I
+may inherit eternal life? 10:18 And Jesus said unto him, Why callest
+thou me good? there is none good but one, that is, God.
+
+10:19 Thou knowest the commandments, Do not commit adultery, Do not
+kill, Do not steal, Do not bear false witness, Defraud not, Honour thy
+father and mother. 10:20 And he answered and said unto him, Master,
+all these have I observed from my youth.
+
+10:21 Then Jesus beholding him loved him, and said unto him, One thing
+thou lackest: go thy way, sell whatsoever thou hast, and give to the
+poor, and thou shalt have treasure in heaven: and come, take up the
+cross, and follow me.
+
+10:22 And he was sad at that saying, and went away grieved: for he had
+great possessions.
+
+10:23 And Jesus looked round about, and saith unto his disciples, How
+hardly shall they that have riches enter into the kingdom of God!
+10:24 And the disciples were astonished at his words. But Jesus
+answereth again, and saith unto them, Children, how hard is it for
+them that trust in riches to enter into the kingdom of God! 10:25 It
+is easier for a camel to go through the eye of a needle, than for a
+rich man to enter into the kingdom of God.
+
+10:26 And they were astonished out of measure, saying among
+themselves, Who then can be saved? 10:27 And Jesus looking upon them
+saith, With men it is impossible, but not with God: for with God all
+things are possible.
+
+10:28 Then Peter began to say unto him, Lo, we have left all, and have
+followed thee.
+
+10:29 And Jesus answered and said, Verily I say unto you, There is no
+man that hath left house, or brethren, or sisters, or father, or
+mother, or wife, or children, or lands, for my sake, and the gospel's,
+10:30 But he shall receive an hundredfold now in this time, houses,
+and brethren, and sisters, and mothers, and children, and lands, with
+persecutions; and in the world to come eternal life.
+
+10:31 But many that are first shall be last; and the last first.
+
+10:32 And they were in the way going up to Jerusalem; and Jesus went
+before them: and they were amazed; and as they followed, they were
+afraid.
+
+And he took again the twelve, and began to tell them what things
+should happen unto him, 10:33 Saying, Behold, we go up to Jerusalem;
+and the Son of man shall be delivered unto the chief priests, and unto
+the scribes; and they shall condemn him to death, and shall deliver
+him to the Gentiles: 10:34 And they shall mock him, and shall scourge
+him, and shall spit upon him, and shall kill him: and the third day he
+shall rise again.
+
+10:35 And James and John, the sons of Zebedee, come unto him, saying,
+Master, we would that thou shouldest do for us whatsoever we shall
+desire.
+
+10:36 And he said unto them, What would ye that I should do for you?
+10:37 They said unto him, Grant unto us that we may sit, one on thy
+right hand, and the other on thy left hand, in thy glory.
+
+10:38 But Jesus said unto them, Ye know not what ye ask: can ye drink
+of the cup that I drink of? and be baptized with the baptism that I am
+baptized with? 10:39 And they said unto him, We can. And Jesus said
+unto them, Ye shall indeed drink of the cup that I drink of; and with
+the baptism that I am baptized withal shall ye be baptized: 10:40 But
+to sit on my right hand and on my left hand is not mine to give; but
+it shall be given to them for whom it is prepared.
+
+10:41 And when the ten heard it, they began to be much displeased with
+James and John.
+
+10:42 But Jesus called them to him, and saith unto them, Ye know that
+they which are accounted to rule over the Gentiles exercise lordship
+over them; and their great ones exercise authority upon them.
+
+10:43 But so shall it not be among you: but whosoever will be great
+among you, shall be your minister: 10:44 And whosoever of you will be
+the chiefest, shall be servant of all.
+
+10:45 For even the Son of man came not to be ministered unto, but to
+minister, and to give his life a ransom for many.
+
+10:46 And they came to Jericho: and as he went out of Jericho with his
+disciples and a great number of people, blind Bartimaeus, the son of
+Timaeus, sat by the highway side begging.
+
+10:47 And when he heard that it was Jesus of Nazareth, he began to cry
+out, and say, Jesus, thou son of David, have mercy on me.
+
+10:48 And many charged him that he should hold his peace: but he cried
+the more a great deal, Thou son of David, have mercy on me.
+
+10:49 And Jesus stood still, and commanded him to be called. And they
+call the blind man, saying unto him, Be of good comfort, rise; he
+calleth thee.
+
+10:50 And he, casting away his garment, rose, and came to Jesus.
+
+10:51 And Jesus answered and said unto him, What wilt thou that I
+should do unto thee? The blind man said unto him, Lord, that I might
+receive my sight.
+
+10:52 And Jesus said unto him, Go thy way; thy faith hath made thee
+whole.
+
+And immediately he received his sight, and followed Jesus in the way.
+
+11:1 And when they came nigh to Jerusalem, unto Bethphage and Bethany,
+at the mount of Olives, he sendeth forth two of his disciples, 11:2
+And saith unto them, Go your way into the village over against you:
+and as soon as ye be entered into it, ye shall find a colt tied,
+whereon never man sat; loose him, and bring him.
+
+11:3 And if any man say unto you, Why do ye this? say ye that the Lord
+hath need of him; and straightway he will send him hither.
+
+11:4 And they went their way, and found the colt tied by the door
+without in a place where two ways met; and they loose him.
+
+11:5 And certain of them that stood there said unto them, What do ye,
+loosing the colt? 11:6 And they said unto them even as Jesus had
+commanded: and they let them go.
+
+11:7 And they brought the colt to Jesus, and cast their garments on
+him; and he sat upon him.
+
+11:8 And many spread their garments in the way: and others cut down
+branches off the trees, and strawed them in the way.
+
+11:9 And they that went before, and they that followed, cried, saying,
+Hosanna; Blessed is he that cometh in the name of the Lord: 11:10
+Blessed be the kingdom of our father David, that cometh in the name of
+the Lord: Hosanna in the highest.
+
+11:11 And Jesus entered into Jerusalem, and into the temple: and when
+he had looked round about upon all things, and now the eventide was
+come, he went out unto Bethany with the twelve.
+
+11:12 And on the morrow, when they were come from Bethany, he was
+hungry: 11:13 And seeing a fig tree afar off having leaves, he came,
+if haply he might find any thing thereon: and when he came to it, he
+found nothing but leaves; for the time of figs was not yet.
+
+11:14 And Jesus answered and said unto it, No man eat fruit of thee
+hereafter for ever. And his disciples heard it.
+
+11:15 And they come to Jerusalem: and Jesus went into the temple, and
+began to cast out them that sold and bought in the temple, and
+overthrew the tables of the moneychangers, and the seats of them that
+sold doves; 11:16 And would not suffer that any man should carry any
+vessel through the temple.
+
+11:17 And he taught, saying unto them, Is it not written, My house
+shall be called of all nations the house of prayer? but ye have made
+it a den of thieves.
+
+11:18 And the scribes and chief priests heard it, and sought how they
+might destroy him: for they feared him, because all the people was
+astonished at his doctrine.
+
+11:19 And when even was come, he went out of the city.
+
+11:20 And in the morning, as they passed by, they saw the fig tree
+dried up from the roots.
+
+11:21 And Peter calling to remembrance saith unto him, Master, behold,
+the fig tree which thou cursedst is withered away.
+
+11:22 And Jesus answering saith unto them, Have faith in God.
+
+11:23 For verily I say unto you, That whosoever shall say unto this
+mountain, Be thou removed, and be thou cast into the sea; and shall
+not doubt in his heart, but shall believe that those things which he
+saith shall come to pass; he shall have whatsoever he saith.
+
+11:24 Therefore I say unto you, What things soever ye desire, when ye
+pray, believe that ye receive them, and ye shall have them.
+
+11:25 And when ye stand praying, forgive, if ye have ought against
+any: that your Father also which is in heaven may forgive you your
+trespasses.
+
+11:26 But if ye do not forgive, neither will your Father which is in
+heaven forgive your trespasses.
+
+11:27 And they come again to Jerusalem: and as he was walking in the
+temple, there come to him the chief priests, and the scribes, and the
+elders, 11:28 And say unto him, By what authority doest thou these
+things? and who gave thee this authority to do these things? 11:29
+And Jesus answered and said unto them, I will also ask of you one
+question, and answer me, and I will tell you by what authority I do
+these things.
+
+11:30 The baptism of John, was it from heaven, or of men? answer me.
+
+11:31 And they reasoned with themselves, saying, If we shall say, From
+heaven; he will say, Why then did ye not believe him? 11:32 But if we
+shall say, Of men; they feared the people: for all men counted John,
+that he was a prophet indeed.
+
+11:33 And they answered and said unto Jesus, We cannot tell. And Jesus
+answering saith unto them, Neither do I tell you by what authority I
+do these things.
+
+12:1 And he began to speak unto them by parables. A certain man
+planted a vineyard, and set an hedge about it, and digged a place for
+the winefat, and built a tower, and let it out to husbandmen, and went
+into a far country.
+
+12:2 And at the season he sent to the husbandmen a servant, that he
+might receive from the husbandmen of the fruit of the vineyard.
+
+12:3 And they caught him, and beat him, and sent him away empty.
+
+12:4 And again he sent unto them another servant; and at him they cast
+stones, and wounded him in the head, and sent him away shamefully
+handled.
+
+12:5 And again he sent another; and him they killed, and many others;
+beating some, and killing some.
+
+12:6 Having yet therefore one son, his wellbeloved, he sent him also
+last unto them, saying, They will reverence my son.
+
+12:7 But those husbandmen said among themselves, This is the heir;
+come, let us kill him, and the inheritance shall be our's.
+
+12:8 And they took him, and killed him, and cast him out of the
+vineyard.
+
+12:9 What shall therefore the lord of the vineyard do? he will come
+and destroy the husbandmen, and will give the vineyard unto others.
+
+12:10 And have ye not read this scripture; The stone which the
+builders rejected is become the head of the corner: 12:11 This was the
+Lord's doing, and it is marvellous in our eyes? 12:12 And they sought
+to lay hold on him, but feared the people: for they knew that he had
+spoken the parable against them: and they left him, and went their
+way.
+
+12:13 And they send unto him certain of the Pharisees and of the
+Herodians, to catch him in his words.
+
+12:14 And when they were come, they say unto him, Master, we know that
+thou art true, and carest for no man: for thou regardest not the
+person of men, but teachest the way of God in truth: Is it lawful to
+give tribute to Caesar, or not? 12:15 Shall we give, or shall we not
+give? But he, knowing their hypocrisy, said unto them, Why tempt ye
+me? bring me a penny, that I may see it.
+
+12:16 And they brought it. And he saith unto them, Whose is this image
+and superscription? And they said unto him, Caesar's.
+
+12:17 And Jesus answering said unto them, Render to Caesar the things
+that are Caesar's, and to God the things that are God's. And they
+marvelled at him.
+
+12:18 Then come unto him the Sadducees, which say there is no
+resurrection; and they asked him, saying, 12:19 Master, Moses wrote
+unto us, If a man's brother die, and leave his wife behind him, and
+leave no children, that his brother should take his wife, and raise up
+seed unto his brother.
+
+12:20 Now there were seven brethren: and the first took a wife, and
+dying left no seed.
+
+12:21 And the second took her, and died, neither left he any seed: and
+the third likewise.
+
+12:22 And the seven had her, and left no seed: last of all the woman
+died also.
+
+12:23 In the resurrection therefore, when they shall rise, whose wife
+shall she be of them? for the seven had her to wife.
+
+12:24 And Jesus answering said unto them, Do ye not therefore err,
+because ye know not the scriptures, neither the power of God? 12:25
+For when they shall rise from the dead, they neither marry, nor are
+given in marriage; but are as the angels which are in heaven.
+
+12:26 And as touching the dead, that they rise: have ye not read in
+the book of Moses, how in the bush God spake unto him, saying, I am
+the God of Abraham, and the God of Isaac, and the God of Jacob? 12:27
+He is not the God of the dead, but the God of the living: ye therefore
+do greatly err.
+
+12:28 And one of the scribes came, and having heard them reasoning
+together, and perceiving that he had answered them well, asked him,
+Which is the first commandment of all? 12:29 And Jesus answered him,
+The first of all the commandments is, Hear, O Israel; The Lord our God
+is one Lord: 12:30 And thou shalt love the Lord thy God with all thy
+heart, and with all thy soul, and with all thy mind, and with all thy
+strength: this is the first commandment.
+
+12:31 And the second is like, namely this, Thou shalt love thy
+neighbour as thyself. There is none other commandment greater than
+these.
+
+12:32 And the scribe said unto him, Well, Master, thou hast said the
+truth: for there is one God; and there is none other but he: 12:33 And
+to love him with all the heart, and with all the understanding, and
+with all the soul, and with all the strength, and to love his
+neighbour as himself, is more than all whole burnt offerings and
+sacrifices.
+
+12:34 And when Jesus saw that he answered discreetly, he said unto
+him, Thou art not far from the kingdom of God. And no man after that
+durst ask him any question.
+
+12:35 And Jesus answered and said, while he taught in the temple, How
+say the scribes that Christ is the son of David? 12:36 For David
+himself said by the Holy Ghost, The LORD said to my Lord, Sit thou on
+my right hand, till I make thine enemies thy footstool.
+
+12:37 David therefore himself calleth him Lord; and whence is he then
+his son? And the common people heard him gladly.
+
+12:38 And he said unto them in his doctrine, Beware of the scribes,
+which love to go in long clothing, and love salutations in the
+marketplaces, 12:39 And the chief seats in the synagogues, and the
+uppermost rooms at feasts: 12:40 Which devour widows' houses, and for
+a pretence make long prayers: these shall receive greater damnation.
+
+12:41 And Jesus sat over against the treasury, and beheld how the
+people cast money into the treasury: and many that were rich cast in
+much.
+
+12:42 And there came a certain poor widow, and she threw in two mites,
+which make a farthing.
+
+12:43 And he called unto him his disciples, and saith unto them,
+Verily I say unto you, That this poor widow hath cast more in, than
+all they which have cast into the treasury: 12:44 For all they did
+cast in of their abundance; but she of her want did cast in all that
+she had, even all her living.
+
+13:1 And as he went out of the temple, one of his disciples saith unto
+him, Master, see what manner of stones and what buildings are here!
+13:2 And Jesus answering said unto him, Seest thou these great
+buildings? there shall not be left one stone upon another, that shall
+not be thrown down.
+
+13:3 And as he sat upon the mount of Olives over against the temple,
+Peter and James and John and Andrew asked him privately, 13:4 Tell us,
+when shall these things be? and what shall be the sign when all these
+things shall be fulfilled? 13:5 And Jesus answering them began to
+say, Take heed lest any man deceive you: 13:6 For many shall come in
+my name, saying, I am Christ; and shall deceive many.
+
+13:7 And when ye shall hear of wars and rumours of wars, be ye not
+troubled: for such things must needs be; but the end shall not be yet.
+
+13:8 For nation shall rise against nation, and kingdom against
+kingdom: and there shall be earthquakes in divers places, and there
+shall be famines and troubles: these are the beginnings of sorrows.
+
+13:9 But take heed to yourselves: for they shall deliver you up to
+councils; and in the synagogues ye shall be beaten: and ye shall be
+brought before rulers and kings for my sake, for a testimony against
+them.
+
+13:10 And the gospel must first be published among all nations.
+
+13:11 But when they shall lead you, and deliver you up, take no
+thought beforehand what ye shall speak, neither do ye premeditate: but
+whatsoever shall be given you in that hour, that speak ye: for it is
+not ye that speak, but the Holy Ghost.
+
+13:12 Now the brother shall betray the brother to death, and the
+father the son; and children shall rise up against their parents, and
+shall cause them to be put to death.
+
+13:13 And ye shall be hated of all men for my name's sake: but he that
+shall endure unto the end, the same shall be saved.
+
+13:14 But when ye shall see the abomination of desolation, spoken of
+by Daniel the prophet, standing where it ought not, (let him that
+readeth understand,) then let them that be in Judaea flee to the
+mountains: 13:15 And let him that is on the housetop not go down into
+the house, neither enter therein, to take any thing out of his house:
+13:16 And let him that is in the field not turn back again for to take
+up his garment.
+
+13:17 But woe to them that are with child, and to them that give suck
+in those days! 13:18 And pray ye that your flight be not in the
+winter.
+
+13:19 For in those days shall be affliction, such as was not from the
+beginning of the creation which God created unto this time, neither
+shall be.
+
+13:20 And except that the Lord had shortened those days, no flesh
+should be saved: but for the elect's sake, whom he hath chosen, he
+hath shortened the days.
+
+13:21 And then if any man shall say to you, Lo, here is Christ; or,
+lo, he is there; believe him not: 13:22 For false Christs and false
+prophets shall rise, and shall shew signs and wonders, to seduce, if
+it were possible, even the elect.
+
+13:23 But take ye heed: behold, I have foretold you all things.
+
+13:24 But in those days, after that tribulation, the sun shall be
+darkened, and the moon shall not give her light, 13:25 And the stars
+of heaven shall fall, and the powers that are in heaven shall be
+shaken.
+
+13:26 And then shall they see the Son of man coming in the clouds with
+great power and glory.
+
+13:27 And then shall he send his angels, and shall gather together his
+elect from the four winds, from the uttermost part of the earth to the
+uttermost part of heaven.
+
+13:28 Now learn a parable of the fig tree; When her branch is yet
+tender, and putteth forth leaves, ye know that summer is near: 13:29
+So ye in like manner, when ye shall see these things come to pass,
+know that it is nigh, even at the doors.
+
+13:30 Verily I say unto you, that this generation shall not pass, till
+all these things be done.
+
+13:31 Heaven and earth shall pass away: but my words shall not pass
+away.
+
+13:32 But of that day and that hour knoweth no man, no, not the angels
+which are in heaven, neither the Son, but the Father.
+
+13:33 Take ye heed, watch and pray: for ye know not when the time is.
+
+13:34 For the Son of Man is as a man taking a far journey, who left
+his house, and gave authority to his servants, and to every man his
+work, and commanded the porter to watch.
+
+13:35 Watch ye therefore: for ye know not when the master of the house
+cometh, at even, or at midnight, or at the cockcrowing, or in the
+morning: 13:36 Lest coming suddenly he find you sleeping.
+
+13:37 And what I say unto you I say unto all, Watch.
+
+14:1 After two days was the feast of the passover, and of unleavened
+bread: and the chief priests and the scribes sought how they might
+take him by craft, and put him to death.
+
+14:2 But they said, Not on the feast day, lest there be an uproar of
+the people.
+
+14:3 And being in Bethany in the house of Simon the leper, as he sat
+at meat, there came a woman having an alabaster box of ointment of
+spikenard very precious; and she brake the box, and poured it on his
+head.
+
+14:4 And there were some that had indignation within themselves, and
+said, Why was this waste of the ointment made? 14:5 For it might have
+been sold for more than three hundred pence, and have been given to
+the poor. And they murmured against her.
+
+14:6 And Jesus said, Let her alone; why trouble ye her? she hath
+wrought a good work on me.
+
+14:7 For ye have the poor with you always, and whensoever ye will ye
+may do them good: but me ye have not always.
+
+14:8 She hath done what she could: she is come aforehand to anoint my
+body to the burying.
+
+14:9 Verily I say unto you, Wheresoever this gospel shall be preached
+throughout the whole world, this also that she hath done shall be
+spoken of for a memorial of her.
+
+14:10 And Judas Iscariot, one of the twelve, went unto the chief
+priests, to betray him unto them.
+
+14:11 And when they heard it, they were glad, and promised to give him
+money. And he sought how he might conveniently betray him.
+
+14:12 And the first day of unleavened bread, when they killed the
+passover, his disciples said unto him, Where wilt thou that we go and
+prepare that thou mayest eat the passover? 14:13 And he sendeth forth
+two of his disciples, and saith unto them, Go ye into the city, and
+there shall meet you a man bearing a pitcher of water: follow him.
+
+14:14 And wheresoever he shall go in, say ye to the goodman of the
+house, The Master saith, Where is the guestchamber, where I shall eat
+the passover with my disciples? 14:15 And he will shew you a large
+upper room furnished and prepared: there make ready for us.
+
+14:16 And his disciples went forth, and came into the city, and found
+as he had said unto them: and they made ready the passover.
+
+14:17 And in the evening he cometh with the twelve.
+
+14:18 And as they sat and did eat, Jesus said, Verily I say unto you,
+One of you which eateth with me shall betray me.
+
+14:19 And they began to be sorrowful, and to say unto him one by one,
+Is it I? and another said, Is it I? 14:20 And he answered and said
+unto them, It is one of the twelve, that dippeth with me in the dish.
+
+14:21 The Son of man indeed goeth, as it is written of him: but woe to
+that man by whom the Son of man is betrayed! good were it for that man
+if he had never been born.
+
+14:22 And as they did eat, Jesus took bread, and blessed, and brake
+it, and gave to them, and said, Take, eat: this is my body.
+
+14:23 And he took the cup, and when he had given thanks, he gave it to
+them: and they all drank of it.
+
+14:24 And he said unto them, This is my blood of the new testament,
+which is shed for many.
+
+14:25 Verily I say unto you, I will drink no more of the fruit of the
+vine, until that day that I drink it new in the kingdom of God.
+
+14:26 And when they had sung an hymn, they went out into the mount of
+Olives.
+
+14:27 And Jesus saith unto them, All ye shall be offended because of
+me this night: for it is written, I will smite the shepherd, and the
+sheep shall be scattered.
+
+14:28 But after that I am risen, I will go before you into Galilee.
+
+14:29 But Peter said unto him, Although all shall be offended, yet
+will not I.
+
+14:30 And Jesus saith unto him, Verily I say unto thee, That this day,
+even in this night, before the cock crow twice, thou shalt deny me
+thrice.
+
+14:31 But he spake the more vehemently, If I should die with thee, I
+will not deny thee in any wise. Likewise also said they all.
+
+14:32 And they came to a place which was named Gethsemane: and he
+saith to his disciples, Sit ye here, while I shall pray.
+
+14:33 And he taketh with him Peter and James and John, and began to be
+sore amazed, and to be very heavy; 14:34 And saith unto them, My soul
+is exceeding sorrowful unto death: tarry ye here, and watch.
+
+14:35 And he went forward a little, and fell on the ground, and prayed
+that, if it were possible, the hour might pass from him.
+
+14:36 And he said, Abba, Father, all things are possible unto thee;
+take away this cup from me: nevertheless not what I will, but what
+thou wilt.
+
+14:37 And he cometh, and findeth them sleeping, and saith unto Peter,
+Simon, sleepest thou? couldest not thou watch one hour? 14:38 Watch
+ye and pray, lest ye enter into temptation. The spirit truly is ready,
+but the flesh is weak.
+
+14:39 And again he went away, and prayed, and spake the same words.
+
+14:40 And when he returned, he found them asleep again, (for their
+eyes were heavy,) neither wist they what to answer him.
+
+14:41 And he cometh the third time, and saith unto them, Sleep on now,
+and take your rest: it is enough, the hour is come; behold, the Son of
+man is betrayed into the hands of sinners.
+
+14:42 Rise up, let us go; lo, he that betrayeth me is at hand.
+
+14:43 And immediately, while he yet spake, cometh Judas, one of the
+twelve, and with him a great multitude with swords and staves, from
+the chief priests and the scribes and the elders.
+
+14:44 And he that betrayed him had given them a token, saying,
+Whomsoever I shall kiss, that same is he; take him, and lead him away
+safely.
+
+14:45 And as soon as he was come, he goeth straightway to him, and
+saith, Master, master; and kissed him.
+
+14:46 And they laid their hands on him, and took him.
+
+14:47 And one of them that stood by drew a sword, and smote a servant
+of the high priest, and cut off his ear.
+
+14:48 And Jesus answered and said unto them, Are ye come out, as
+against a thief, with swords and with staves to take me? 14:49 I was
+daily with you in the temple teaching, and ye took me not: but the
+scriptures must be fulfilled.
+
+14:50 And they all forsook him, and fled.
+
+14:51 And there followed him a certain young man, having a linen cloth
+cast about his naked body; and the young men laid hold on him: 14:52
+And he left the linen cloth, and fled from them naked.
+
+14:53 And they led Jesus away to the high priest: and with him were
+assembled all the chief priests and the elders and the scribes.
+
+14:54 And Peter followed him afar off, even into the palace of the
+high priest: and he sat with the servants, and warmed himself at the
+fire.
+
+14:55 And the chief priests and all the council sought for witness
+against Jesus to put him to death; and found none.
+
+14:56 For many bare false witness against him, but their witness
+agreed not together.
+
+14:57 And there arose certain, and bare false witness against him,
+saying, 14:58 We heard him say, I will destroy this temple that is
+made with hands, and within three days I will build another made
+without hands.
+
+14:59 But neither so did their witness agree together.
+
+14:60 And the high priest stood up in the midst, and asked Jesus,
+saying, Answerest thou nothing? what is it which these witness against
+thee? 14:61 But he held his peace, and answered nothing. Again the
+high priest asked him, and said unto him, Art thou the Christ, the Son
+of the Blessed? 14:62 And Jesus said, I am: and ye shall see the Son
+of man sitting on the right hand of power, and coming in the clouds of
+heaven.
+
+14:63 Then the high priest rent his clothes, and saith, What need we
+any further witnesses? 14:64 Ye have heard the blasphemy: what think
+ye? And they all condemned him to be guilty of death.
+
+14:65 And some began to spit on him, and to cover his face, and to
+buffet him, and to say unto him, Prophesy: and the servants did strike
+him with the palms of their hands.
+
+14:66 And as Peter was beneath in the palace, there cometh one of the
+maids of the high priest: 14:67 And when she saw Peter warming
+himself, she looked upon him, and said, And thou also wast with Jesus
+of Nazareth.
+
+14:68 But he denied, saying, I know not, neither understand I what
+thou sayest. And he went out into the porch; and the cock crew.
+
+14:69 And a maid saw him again, and began to say to them that stood
+by, This is one of them.
+
+14:70 And he denied it again. And a little after, they that stood by
+said again to Peter, Surely thou art one of them: for thou art a
+Galilaean, and thy speech agreeth thereto.
+
+14:71 But he began to curse and to swear, saying, I know not this man
+of whom ye speak.
+
+14:72 And the second time the cock crew. And Peter called to mind the
+word that Jesus said unto him, Before the cock crow twice, thou shalt
+deny me thrice. And when he thought thereon, he wept.
+
+15:1 And straightway in the morning the chief priests held a
+consultation with the elders and scribes and the whole council, and
+bound Jesus, and carried him away, and delivered him to Pilate.
+
+15:2 And Pilate asked him, Art thou the King of the Jews? And he
+answering said unto them, Thou sayest it.
+
+15:3 And the chief priests accused him of many things: but he answered
+nothing.
+
+15:4 And Pilate asked him again, saying, Answerest thou nothing?
+behold how many things they witness against thee.
+
+15:5 But Jesus yet answered nothing; so that Pilate marvelled.
+
+15:6 Now at that feast he released unto them one prisoner, whomsoever
+they desired.
+
+15:7 And there was one named Barabbas, which lay bound with them that
+had made insurrection with him, who had committed murder in the
+insurrection.
+
+15:8 And the multitude crying aloud began to desire him to do as he
+had ever done unto them.
+
+15:9 But Pilate answered them, saying, Will ye that I release unto you
+the King of the Jews? 15:10 For he knew that the chief priests had
+delivered him for envy.
+
+15:11 But the chief priests moved the people, that he should rather
+release Barabbas unto them.
+
+15:12 And Pilate answered and said again unto them, What will ye then
+that I shall do unto him whom ye call the King of the Jews? 15:13 And
+they cried out again, Crucify him.
+
+15:14 Then Pilate said unto them, Why, what evil hath he done? And
+they cried out the more exceedingly, Crucify him.
+
+15:15 And so Pilate, willing to content the people, released Barabbas
+unto them, and delivered Jesus, when he had scourged him, to be
+crucified.
+
+15:16 And the soldiers led him away into the hall, called Praetorium;
+and they call together the whole band.
+
+15:17 And they clothed him with purple, and platted a crown of thorns,
+and put it about his head, 15:18 And began to salute him, Hail, King
+of the Jews! 15:19 And they smote him on the head with a reed, and
+did spit upon him, and bowing their knees worshipped him.
+
+15:20 And when they had mocked him, they took off the purple from him,
+and put his own clothes on him, and led him out to crucify him.
+
+15:21 And they compel one Simon a Cyrenian, who passed by, coming out
+of the country, the father of Alexander and Rufus, to bear his cross.
+
+15:22 And they bring him unto the place Golgotha, which is, being
+interpreted, The place of a skull.
+
+15:23 And they gave him to drink wine mingled with myrrh: but he
+received it not.
+
+15:24 And when they had crucified him, they parted his garments,
+casting lots upon them, what every man should take.
+
+15:25 And it was the third hour, and they crucified him.
+
+15:26 And the superscription of his accusation was written over, THE
+KING OF THE JEWS.
+
+15:27 And with him they crucify two thieves; the one on his right
+hand, and the other on his left.
+
+15:28 And the scripture was fulfilled, which saith, And he was
+numbered with the transgressors.
+
+15:29 And they that passed by railed on him, wagging their heads, and
+saying, Ah, thou that destroyest the temple, and buildest it in three
+days, 15:30 Save thyself, and come down from the cross.
+
+15:31 Likewise also the chief priests mocking said among themselves
+with the scribes, He saved others; himself he cannot save.
+
+15:32 Let Christ the King of Israel descend now from the cross, that
+we may see and believe. And they that were crucified with him reviled
+him.
+
+15:33 And when the sixth hour was come, there was darkness over the
+whole land until the ninth hour.
+
+15:34 And at the ninth hour Jesus cried with a loud voice, saying,
+Eloi, Eloi, lama sabachthani? which is, being interpreted, My God, my
+God, why hast thou forsaken me? 15:35 And some of them that stood by,
+when they heard it, said, Behold, he calleth Elias.
+
+15:36 And one ran and filled a spunge full of vinegar, and put it on a
+reed, and gave him to drink, saying, Let alone; let us see whether
+Elias will come to take him down.
+
+15:37 And Jesus cried with a loud voice, and gave up the ghost.
+
+15:38 And the veil of the temple was rent in twain from the top to the
+bottom.
+
+15:39 And when the centurion, which stood over against him, saw that
+he so cried out, and gave up the ghost, he said, Truly this man was
+the Son of God.
+
+15:40 There were also women looking on afar off: among whom was Mary
+Magdalene, and Mary the mother of James the less and of Joses, and
+Salome; 15:41 (Who also, when he was in Galilee, followed him, and
+ministered unto him;) and many other women which came up with him unto
+Jerusalem.
+
+15:42 And now when the even was come, because it was the preparation,
+that is, the day before the sabbath, 15:43 Joseph of Arimathaea, an
+honourable counsellor, which also waited for the kingdom of God, came,
+and went in boldly unto Pilate, and craved the body of Jesus.
+
+15:44 And Pilate marvelled if he were already dead: and calling unto
+him the centurion, he asked him whether he had been any while dead.
+
+15:45 And when he knew it of the centurion, he gave the body to
+Joseph.
+
+15:46 And he bought fine linen, and took him down, and wrapped him in
+the linen, and laid him in a sepulchre which was hewn out of a rock,
+and rolled a stone unto the door of the sepulchre.
+
+15:47 And Mary Magdalene and Mary the mother of Joses beheld where he
+was laid.
+
+16:1 And when the sabbath was past, Mary Magdalene, and Mary the
+mother of James, and Salome, had bought sweet spices, that they might
+come and anoint him.
+
+16:2 And very early in the morning the first day of the week, they
+came unto the sepulchre at the rising of the sun.
+
+16:3 And they said among themselves, Who shall roll us away the stone
+from the door of the sepulchre? 16:4 And when they looked, they saw
+that the stone was rolled away: for it was very great.
+
+16:5 And entering into the sepulchre, they saw a young man sitting on
+the right side, clothed in a long white garment; and they were
+affrighted.
+
+16:6 And he saith unto them, Be not affrighted: Ye seek Jesus of
+Nazareth, which was crucified: he is risen; he is not here: behold the
+place where they laid him.
+
+16:7 But go your way, tell his disciples and Peter that he goeth
+before you into Galilee: there shall ye see him, as he said unto you.
+
+16:8 And they went out quickly, and fled from the sepulchre; for they
+trembled and were amazed: neither said they any thing to any man; for
+they were afraid.
+
+16:9 Now when Jesus was risen early the first day of the week, he
+appeared first to Mary Magdalene, out of whom he had cast seven
+devils.
+
+16:10 And she went and told them that had been with him, as they
+mourned and wept.
+
+16:11 And they, when they had heard that he was alive, and had been
+seen of her, believed not.
+
+16:12 After that he appeared in another form unto two of them, as they
+walked, and went into the country.
+
+16:13 And they went and told it unto the residue: neither believed
+they them.
+
+16:14 Afterward he appeared unto the eleven as they sat at meat, and
+upbraided them with their unbelief and hardness of heart, because they
+believed not them which had seen him after he was risen.
+
+16:15 And he said unto them, Go ye into all the world, and preach the
+gospel to every creature.
+
+16:16 He that believeth and is baptized shall be saved; but he that
+believeth not shall be damned.
+
+16:17 And these signs shall follow them that believe; In my name shall
+they cast out devils; they shall speak with new tongues; 16:18 They
+shall take up serpents; and if they drink any deadly thing, it shall
+not hurt them; they shall lay hands on the sick, and they shall
+recover.
+
+16:19 So then after the Lord had spoken unto them, he was received up
+into heaven, and sat on the right hand of God.
+
+16:20 And they went forth, and preached every where, the Lord working
+with them, and confirming the word with signs following. Amen.
+
+
+
+
+The Gospel According to Saint Luke
+
+
+1:1 Forasmuch as many have taken in hand to set forth in order a
+declaration of those things which are most surely believed among us,
+1:2 Even as they delivered them unto us, which from the beginning were
+eyewitnesses, and ministers of the word; 1:3 It seemed good to me
+also, having had perfect understanding of all things from the very
+first, to write unto thee in order, most excellent Theophilus, 1:4
+That thou mightest know the certainty of those things, wherein thou
+hast been instructed.
+
+1:5 THERE was in the days of Herod, the king of Judaea, a certain
+priest named Zacharias, of the course of Abia: and his wife was of the
+daughters of Aaron, and her name was Elisabeth.
+
+1:6 And they were both righteous before God, walking in all the
+commandments and ordinances of the Lord blameless.
+
+1:7 And they had no child, because that Elisabeth was barren, and they
+both were now well stricken in years.
+
+1:8 And it came to pass, that while he executed the priest's office
+before God in the order of his course, 1:9 According to the custom of
+the priest's office, his lot was to burn incense when he went into the
+temple of the Lord.
+
+1:10 And the whole multitude of the people were praying without at the
+time of incense.
+
+1:11 And there appeared unto him an angel of the Lord standing on the
+right side of the altar of incense.
+
+1:12 And when Zacharias saw him, he was troubled, and fear fell upon
+him.
+
+1:13 But the angel said unto him, Fear not, Zacharias: for thy prayer
+is heard; and thy wife Elisabeth shall bear thee a son, and thou shalt
+call his name John.
+
+1:14 And thou shalt have joy and gladness; and many shall rejoice at
+his birth.
+
+1:15 For he shall be great in the sight of the Lord, and shall drink
+neither wine nor strong drink; and he shall be filled with the Holy
+Ghost, even from his mother's womb.
+
+1:16 And many of the children of Israel shall he turn to the Lord
+their God.
+
+1:17 And he shall go before him in the spirit and power of Elias, to
+turn the hearts of the fathers to the children, and the disobedient to
+the wisdom of the just; to make ready a people prepared for the Lord.
+
+1:18 And Zacharias said unto the angel, Whereby shall I know this? for
+I am an old man, and my wife well stricken in years.
+
+1:19 And the angel answering said unto him, I am Gabriel, that stand
+in the presence of God; and am sent to speak unto thee, and to shew
+thee these glad tidings.
+
+1:20 And, behold, thou shalt be dumb, and not able to speak, until the
+day that these things shall be performed, because thou believest not
+my words, which shall be fulfilled in their season.
+
+1:21 And the people waited for Zacharias, and marvelled that he
+tarried so long in the temple.
+
+1:22 And when he came out, he could not speak unto them: and they
+perceived that he had seen a vision in the temple: for he beckoned
+unto them, and remained speechless.
+
+1:23 And it came to pass, that, as soon as the days of his
+ministration were accomplished, he departed to his own house.
+
+1:24 And after those days his wife Elisabeth conceived, and hid
+herself five months, saying, 1:25 Thus hath the Lord dealt with me in
+the days wherein he looked on me, to take away my reproach among men.
+
+1:26 And in the sixth month the angel Gabriel was sent from God unto a
+city of Galilee, named Nazareth, 1:27 To a virgin espoused to a man
+whose name was Joseph, of the house of David; and the virgin's name
+was Mary.
+
+1:28 And the angel came in unto her, and said, Hail, thou that art
+highly favoured, the Lord is with thee: blessed art thou among women.
+
+1:29 And when she saw him, she was troubled at his saying, and cast in
+her mind what manner of salutation this should be.
+
+1:30 And the angel said unto her, Fear not, Mary: for thou hast found
+favour with God.
+
+1:31 And, behold, thou shalt conceive in thy womb, and bring forth a
+son, and shalt call his name JESUS.
+
+1:32 He shall be great, and shall be called the Son of the Highest:
+and the Lord God shall give unto him the throne of his father David:
+1:33 And he shall reign over the house of Jacob for ever; and of his
+kingdom there shall be no end.
+
+1:34 Then said Mary unto the angel, How shall this be, seeing I know
+not a man? 1:35 And the angel answered and said unto her, The Holy
+Ghost shall come upon thee, and the power of the Highest shall
+overshadow thee: therefore also that holy thing which shall be born of
+thee shall be called the Son of God.
+
+1:36 And, behold, thy cousin Elisabeth, she hath also conceived a son
+in her old age: and this is the sixth month with her, who was called
+barren.
+
+1:37 For with God nothing shall be impossible.
+
+1:38 And Mary said, Behold the handmaid of the Lord; be it unto me
+according to thy word. And the angel departed from her.
+
+1:39 And Mary arose in those days, and went into the hill country with
+haste, into a city of Juda; 1:40 And entered into the house of
+Zacharias, and saluted Elisabeth.
+
+1:41 And it came to pass, that, when Elisabeth heard the salutation of
+Mary, the babe leaped in her womb; and Elisabeth was filled with the
+Holy Ghost: 1:42 And she spake out with a loud voice, and said,
+Blessed art thou among women, and blessed is the fruit of thy womb.
+
+1:43 And whence is this to me, that the mother of my Lord should come
+to me? 1:44 For, lo, as soon as the voice of thy salutation sounded
+in mine ears, the babe leaped in my womb for joy.
+
+1:45 And blessed is she that believed: for there shall be a
+performance of those things which were told her from the Lord.
+
+1:46 And Mary said, My soul doth magnify the Lord, 1:47 And my spirit
+hath rejoiced in God my Saviour.
+
+1:48 For he hath regarded the low estate of his handmaiden: for,
+behold, from henceforth all generations shall call me blessed.
+
+1:49 For he that is mighty hath done to me great things; and holy is
+his name.
+
+1:50 And his mercy is on them that fear him from generation to
+generation.
+
+1:51 He hath shewed strength with his arm; he hath scattered the proud
+in the imagination of their hearts.
+
+1:52 He hath put down the mighty from their seats, and exalted them of
+low degree.
+
+1:53 He hath filled the hungry with good things; and the rich he hath
+sent empty away.
+
+1:54 He hath holpen his servant Israel, in remembrance of his mercy;
+1:55 As he spake to our fathers, to Abraham, and to his seed for ever.
+
+1:56 And Mary abode with her about three months, and returned to her
+own house.
+
+1:57 Now Elisabeth's full time came that she should be delivered; and
+she brought forth a son.
+
+1:58 And her neighbours and her cousins heard how the Lord had shewed
+great mercy upon her; and they rejoiced with her.
+
+1:59 And it came to pass, that on the eighth day they came to
+circumcise the child; and they called him Zacharias, after the name of
+his father.
+
+1:60 And his mother answered and said, Not so; but he shall be called
+John.
+
+1:61 And they said unto her, There is none of thy kindred that is
+called by this name.
+
+1:62 And they made signs to his father, how he would have him called.
+
+1:63 And he asked for a writing table, and wrote, saying, His name is
+John. And they marvelled all.
+
+1:64 And his mouth was opened immediately, and his tongue loosed, and
+he spake, and praised God.
+
+1:65 And fear came on all that dwelt round about them: and all these
+sayings were noised abroad throughout all the hill country of Judaea.
+
+1:66 And all they that heard them laid them up in their hearts,
+saying, What manner of child shall this be! And the hand of the Lord
+was with him.
+
+1:67 And his father Zacharias was filled with the Holy Ghost, and
+prophesied, saying, 1:68 Blessed be the Lord God of Israel; for he
+hath visited and redeemed his people, 1:69 And hath raised up an horn
+of salvation for us in the house of his servant David; 1:70 As he
+spake by the mouth of his holy prophets, which have been since the
+world began: 1:71 That we should be saved from our enemies, and from
+the hand of all that hate us; 1:72 To perform the mercy promised to
+our fathers, and to remember his holy covenant; 1:73 The oath which he
+sware to our father Abraham, 1:74 That he would grant unto us, that we
+being delivered out of the hand of our enemies might serve him without
+fear, 1:75 In holiness and righteousness before him, all the days of
+our life.
+
+1:76 And thou, child, shalt be called the prophet of the Highest: for
+thou shalt go before the face of the Lord to prepare his ways; 1:77 To
+give knowledge of salvation unto his people by the remission of their
+sins, 1:78 Through the tender mercy of our God; whereby the dayspring
+from on high hath visited us, 1:79 To give light to them that sit in
+darkness and in the shadow of death, to guide our feet into the way of
+peace.
+
+1:80 And the child grew, and waxed strong in spirit, and was in the
+deserts till the day of his shewing unto Israel.
+
+2:1 And it came to pass in those days, that there went out a decree
+from Caesar Augustus that all the world should be taxed.
+
+2:2 (And this taxing was first made when Cyrenius was governor of
+Syria.) 2:3 And all went to be taxed, every one into his own city.
+
+2:4 And Joseph also went up from Galilee, out of the city of Nazareth,
+into Judaea, unto the city of David, which is called Bethlehem;
+(because he was of the house and lineage of David:) 2:5 To be taxed
+with Mary his espoused wife, being great with child.
+
+2:6 And so it was, that, while they were there, the days were
+accomplished that she should be delivered.
+
+2:7 And she brought forth her firstborn son, and wrapped him in
+swaddling clothes, and laid him in a manger; because there was no room
+for them in the inn.
+
+2:8 And there were in the same country shepherds abiding in the field,
+keeping watch over their flock by night.
+
+2:9 And, lo, the angel of the Lord came upon them, and the glory of
+the Lord shone round about them: and they were sore afraid.
+
+2:10 And the angel said unto them, Fear not: for, behold, I bring you
+good tidings of great joy, which shall be to all people.
+
+2:11 For unto you is born this day in the city of David a Saviour,
+which is Christ the Lord.
+
+2:12 And this shall be a sign unto you; Ye shall find the babe wrapped
+in swaddling clothes, lying in a manger.
+
+2:13 And suddenly there was with the angel a multitude of the heavenly
+host praising God, and saying, 2:14 Glory to God in the highest, and
+on earth peace, good will toward men.
+
+2:15 And it came to pass, as the angels were gone away from them into
+heaven, the shepherds said one to another, Let us now go even unto
+Bethlehem, and see this thing which is come to pass, which the Lord
+hath made known unto us.
+
+2:16 And they came with haste, and found Mary, and Joseph, and the
+babe lying in a manger.
+
+2:17 And when they had seen it, they made known abroad the saying
+which was told them concerning this child.
+
+2:18 And all they that heard it wondered at those things which were
+told them by the shepherds.
+
+2:19 But Mary kept all these things, and pondered them in her heart.
+
+2:20 And the shepherds returned, glorifying and praising God for all
+the things that they had heard and seen, as it was told unto them.
+
+2:21 And when eight days were accomplished for the circumcising of the
+child, his name was called JESUS, which was so named of the angel
+before he was conceived in the womb.
+
+2:22 And when the days of her purification according to the law of
+Moses were accomplished, they brought him to Jerusalem, to present him
+to the Lord; 2:23 (As it is written in the law of the LORD, Every male
+that openeth the womb shall be called holy to the Lord;) 2:24 And to
+offer a sacrifice according to that which is said in the law of the
+Lord, A pair of turtledoves, or two young pigeons.
+
+2:25 And, behold, there was a man in Jerusalem, whose name was Simeon;
+and the same man was just and devout, waiting for the consolation of
+Israel: and the Holy Ghost was upon him.
+
+2:26 And it was revealed unto him by the Holy Ghost, that he should
+not see death, before he had seen the Lord's Christ.
+
+2:27 And he came by the Spirit into the temple: and when the parents
+brought in the child Jesus, to do for him after the custom of the law,
+2:28 Then took he him up in his arms, and blessed God, and said, 2:29
+Lord, now lettest thou thy servant depart in peace, according to thy
+word: 2:30 For mine eyes have seen thy salvation, 2:31 Which thou hast
+prepared before the face of all people; 2:32 A light to lighten the
+Gentiles, and the glory of thy people Israel.
+
+2:33 And Joseph and his mother marvelled at those things which were
+spoken of him.
+
+2:34 And Simeon blessed them, and said unto Mary his mother, Behold,
+this child is set for the fall and rising again of many in Israel; and
+for a sign which shall be spoken against; 2:35 (Yea, a sword shall
+pierce through thy own soul also,) that the thoughts of many hearts
+may be revealed.
+
+2:36 And there was one Anna, a prophetess, the daughter of Phanuel, of
+the tribe of Aser: she was of a great age, and had lived with an
+husband seven years from her virginity; 2:37 And she was a widow of
+about fourscore and four years, which departed not from the temple,
+but served God with fastings and prayers night and day.
+
+2:38 And she coming in that instant gave thanks likewise unto the
+Lord, and spake of him to all them that looked for redemption in
+Jerusalem.
+
+2:39 And when they had performed all things according to the law of
+the Lord, they returned into Galilee, to their own city Nazareth.
+
+2:40 And the child grew, and waxed strong in spirit, filled with
+wisdom: and the grace of God was upon him.
+
+2:41 Now his parents went to Jerusalem every year at the feast of the
+passover.
+
+2:42 And when he was twelve years old, they went up to Jerusalem after
+the custom of the feast.
+
+2:43 And when they had fulfilled the days, as they returned, the child
+Jesus tarried behind in Jerusalem; and Joseph and his mother knew not
+of it.
+
+2:44 But they, supposing him to have been in the company, went a day's
+journey; and they sought him among their kinsfolk and acquaintance.
+
+2:45 And when they found him not, they turned back again to Jerusalem,
+seeking him.
+
+2:46 And it came to pass, that after three days they found him in the
+temple, sitting in the midst of the doctors, both hearing them, and
+asking them questions.
+
+2:47 And all that heard him were astonished at his understanding and
+answers.
+
+2:48 And when they saw him, they were amazed: and his mother said unto
+him, Son, why hast thou thus dealt with us? behold, thy father and I
+have sought thee sorrowing.
+
+2:49 And he said unto them, How is it that ye sought me? wist ye not
+that I must be about my Father's business? 2:50 And they understood
+not the saying which he spake unto them.
+
+2:51 And he went down with them, and came to Nazareth, and was subject
+unto them: but his mother kept all these sayings in her heart.
+
+2:52 And Jesus increased in wisdom and stature, and in favour with God
+and man.
+
+3:1 Now in the fifteenth year of the reign of Tiberius Caesar, Pontius
+Pilate being governor of Judaea, and Herod being tetrarch of Galilee,
+and his brother Philip tetrarch of Ituraea and of the region of
+Trachonitis, and Lysanias the tetrarch of Abilene, 3:2 Annas and
+Caiaphas being the high priests, the word of God came unto John the
+son of Zacharias in the wilderness.
+
+3:3 And he came into all the country about Jordan, preaching the
+baptism of repentance for the remission of sins; 3:4 As it is written
+in the book of the words of Esaias the prophet, saying, The voice of
+one crying in the wilderness, Prepare ye the way of the Lord, make his
+paths straight.
+
+3:5 Every valley shall be filled, and every mountain and hill shall be
+brought low; and the crooked shall be made straight, and the rough
+ways shall be made smooth; 3:6 And all flesh shall see the salvation
+of God.
+
+3:7 Then said he to the multitude that came forth to be baptized of
+him, O generation of vipers, who hath warned you to flee from the
+wrath to come? 3:8 Bring forth therefore fruits worthy of repentance,
+and begin not to say within yourselves, We have Abraham to our father:
+for I say unto you, That God is able of these stones to raise up
+children unto Abraham.
+
+3:9 And now also the axe is laid unto the root of the trees: every
+tree therefore which bringeth not forth good fruit is hewn down, and
+cast into the fire.
+
+3:10 And the people asked him, saying, What shall we do then? 3:11 He
+answereth and saith unto them, He that hath two coats, let him impart
+to him that hath none; and he that hath meat, let him do likewise.
+
+3:12 Then came also publicans to be baptized, and said unto him,
+Master, what shall we do? 3:13 And he said unto them, Exact no more
+than that which is appointed you.
+
+3:14 And the soldiers likewise demanded of him, saying, And what shall
+we do? And he said unto them, Do violence to no man, neither accuse
+any falsely; and be content with your wages.
+
+3:15 And as the people were in expectation, and all men mused in their
+hearts of John, whether he were the Christ, or not; 3:16 John
+answered, saying unto them all, I indeed baptize you with water; but
+one mightier than I cometh, the latchet of whose shoes I am not worthy
+to unloose: he shall baptize you with the Holy Ghost and with fire:
+3:17 Whose fan is in his hand, and he will throughly purge his floor,
+and will gather the wheat into his garner; but the chaff he will burn
+with fire unquenchable.
+
+3:18 And many other things in his exhortation preached he unto the
+people.
+
+3:19 But Herod the tetrarch, being reproved by him for Herodias his
+brother Philip's wife, and for all the evils which Herod had done,
+3:20 Added yet this above all, that he shut up John in prison.
+
+3:21 Now when all the people were baptized, it came to pass, that
+Jesus also being baptized, and praying, the heaven was opened, 3:22
+And the Holy Ghost descended in a bodily shape like a dove upon him,
+and a voice came from heaven, which said, Thou art my beloved Son; in
+thee I am well pleased.
+
+3:23 And Jesus himself began to be about thirty years of age, being
+(as was supposed) the son of Joseph, which was the son of Heli, 3:24
+Which was the son of Matthat, which was the son of Levi, which was the
+son of Melchi, which was the son of Janna, which was the son of
+Joseph, 3:25 Which was the son of Mattathias, which was the son of
+Amos, which was the son of Naum, which was the son of Esli, which was
+the son of Nagge, 3:26 Which was the son of Maath, which was the son
+of Mattathias, which was the son of Semei, which was the son of
+Joseph, which was the son of Juda, 3:27 Which was the son of Joanna,
+which was the son of Rhesa, which was the son of Zorobabel, which was
+the son of Salathiel, which was the son of Neri, 3:28 Which was the
+son of Melchi, which was the son of Addi, which was the son of Cosam,
+which was the son of Elmodam, which was the son of Er, 3:29 Which was
+the son of Jose, which was the son of Eliezer, which was the son of
+Jorim, which was the son of Matthat, which was the son of Levi, 3:30
+Which was the son of Simeon, which was the son of Juda, which was the
+son of Joseph, which was the son of Jonan, which was the son of
+Eliakim, 3:31 Which was the son of Melea, which was the son of Menan,
+which was the son of Mattatha, which was the son of Nathan, which was
+the son of David, 3:32 Which was the son of Jesse, which was the son
+of Obed, which was the son of Booz, which was the son of Salmon, which
+was the son of Naasson, 3:33 Which was the son of Aminadab, which was
+the son of Aram, which was the son of Esrom, which was the son of
+Phares, which was the son of Juda, 3:34 Which was the son of Jacob,
+which was the son of Isaac, which was the son of Abraham, which was
+the son of Thara, which was the son of Nachor, 3:35 Which was the son
+of Saruch, which was the son of Ragau, which was the son of Phalec,
+which was the son of Heber, which was the son of Sala, 3:36 Which was
+the son of Cainan, which was the son of Arphaxad, which was the son of
+Sem, which was the son of Noe, which was the son of Lamech, 3:37 Which
+was the son of Mathusala, which was the son of Enoch, which was the
+son of Jared, which was the son of Maleleel, which was the son of
+Cainan, 3:38 Which was the son of Enos, which was the son of Seth,
+which was the son of Adam, which was the son of God.
+
+4:1 And Jesus being full of the Holy Ghost returned from Jordan, and
+was led by the Spirit into the wilderness, 4:2 Being forty days
+tempted of the devil. And in those days he did eat nothing: and when
+they were ended, he afterward hungered.
+
+4:3 And the devil said unto him, If thou be the Son of God, command
+this stone that it be made bread.
+
+4:4 And Jesus answered him, saying, It is written, That man shall not
+live by bread alone, but by every word of God.
+
+4:5 And the devil, taking him up into an high mountain, shewed unto
+him all the kingdoms of the world in a moment of time.
+
+4:6 And the devil said unto him, All this power will I give thee, and
+the glory of them: for that is delivered unto me; and to whomsoever I
+will I give it.
+
+4:7 If thou therefore wilt worship me, all shall be thine.
+
+4:8 And Jesus answered and said unto him, Get thee behind me, Satan:
+for it is written, Thou shalt worship the Lord thy God, and him only
+shalt thou serve.
+
+4:9 And he brought him to Jerusalem, and set him on a pinnacle of the
+temple, and said unto him, If thou be the Son of God, cast thyself
+down from hence: 4:10 For it is written, He shall give his angels
+charge over thee, to keep thee: 4:11 And in their hands they shall
+bear thee up, lest at any time thou dash thy foot against a stone.
+
+4:12 And Jesus answering said unto him, It is said, Thou shalt not
+tempt the Lord thy God.
+
+4:13 And when the devil had ended all the temptation, he departed from
+him for a season.
+
+4:14 And Jesus returned in the power of the Spirit into Galilee: and
+there went out a fame of him through all the region round about.
+
+4:15 And he taught in their synagogues, being glorified of all.
+
+4:16 And he came to Nazareth, where he had been brought up: and, as
+his custom was, he went into the synagogue on the sabbath day, and
+stood up for to read.
+
+4:17 And there was delivered unto him the book of the prophet Esaias.
+And when he had opened the book, he found the place where it was
+written, 4:18 The Spirit of the Lord is upon me, because he hath
+anointed me to preach the gospel to the poor; he hath sent me to heal
+the brokenhearted, to preach deliverance to the captives, and
+recovering of sight to the blind, to set at liberty them that are
+bruised, 4:19 To preach the acceptable year of the Lord.
+
+4:20 And he closed the book, and he gave it again to the minister, and
+sat down. And the eyes of all them that were in the synagogue were
+fastened on him.
+
+4:21 And he began to say unto them, This day is this scripture
+fulfilled in your ears.
+
+4:22 And all bare him witness, and wondered at the gracious words
+which proceeded out of his mouth. And they said, Is not this Joseph's
+son? 4:23 And he said unto them, Ye will surely say unto me this
+proverb, Physician, heal thyself: whatsoever we have heard done in
+Capernaum, do also here in thy country.
+
+4:24 And he said, Verily I say unto you, No prophet is accepted in his
+own country.
+
+4:25 But I tell you of a truth, many widows were in Israel in the days
+of Elias, when the heaven was shut up three years and six months, when
+great famine was throughout all the land; 4:26 But unto none of them
+was Elias sent, save unto Sarepta, a city of Sidon, unto a woman that
+was a widow.
+
+4:27 And many lepers were in Israel in the time of Eliseus the
+prophet; and none of them was cleansed, saving Naaman the Syrian.
+
+4:28 And all they in the synagogue, when they heard these things, were
+filled with wrath, 4:29 And rose up, and thrust him out of the city,
+and led him unto the brow of the hill whereon their city was built,
+that they might cast him down headlong.
+
+4:30 But he passing through the midst of them went his way, 4:31 And
+came down to Capernaum, a city of Galilee, and taught them on the
+sabbath days.
+
+4:32 And they were astonished at his doctrine: for his word was with
+power.
+
+4:33 And in the synagogue there was a man, which had a spirit of an
+unclean devil, and cried out with a loud voice, 4:34 Saying, Let us
+alone; what have we to do with thee, thou Jesus of Nazareth? art thou
+come to destroy us? I know thee who thou art; the Holy One of God.
+
+4:35 And Jesus rebuked him, saying, Hold thy peace, and come out of
+him.
+
+And when the devil had thrown him in the midst, he came out of him,
+and hurt him not.
+
+4:36 And they were all amazed, and spake among themselves, saying,
+What a word is this! for with authority and power he commandeth the
+unclean spirits, and they come out.
+
+4:37 And the fame of him went out into every place of the country
+round about.
+
+4:38 And he arose out of the synagogue, and entered into Simon's
+house.
+
+And Simon's wife's mother was taken with a great fever; and they
+besought him for her.
+
+4:39 And he stood over her, and rebuked the fever; and it left her:
+and immediately she arose and ministered unto them.
+
+4:40 Now when the sun was setting, all they that had any sick with
+divers diseases brought them unto him; and he laid his hands on every
+one of them, and healed them.
+
+4:41 And devils also came out of many, crying out, and saying, Thou
+art Christ the Son of God. And he rebuking them suffered them not to
+speak: for they knew that he was Christ.
+
+4:42 And when it was day, he departed and went into a desert place:
+and the people sought him, and came unto him, and stayed him, that he
+should not depart from them.
+
+4:43 And he said unto them, I must preach the kingdom of God to other
+cities also: for therefore am I sent.
+
+4:44 And he preached in the synagogues of Galilee.
+
+5:1 And it came to pass, that, as the people pressed upon him to hear
+the word of God, he stood by the lake of Gennesaret, 5:2 And saw two
+ships standing by the lake: but the fishermen were gone out of them,
+and were washing their nets.
+
+5:3 And he entered into one of the ships, which was Simon's, and
+prayed him that he would thrust out a little from the land. And he sat
+down, and taught the people out of the ship.
+
+5:4 Now when he had left speaking, he said unto Simon, Launch out into
+the deep, and let down your nets for a draught.
+
+5:5 And Simon answering said unto him, Master, we have toiled all the
+night, and have taken nothing: nevertheless at thy word I will let
+down the net.
+
+5:6 And when they had this done, they inclosed a great multitude of
+fishes: and their net brake.
+
+5:7 And they beckoned unto their partners, which were in the other
+ship, that they should come and help them. And they came, and filled
+both the ships, so that they began to sink.
+
+5:8 When Simon Peter saw it, he fell down at Jesus' knees, saying,
+Depart from me; for I am a sinful man, O Lord.
+
+5:9 For he was astonished, and all that were with him, at the draught
+of the fishes which they had taken: 5:10 And so was also James, and
+John, the sons of Zebedee, which were partners with Simon. And Jesus
+said unto Simon, Fear not; from henceforth thou shalt catch men.
+
+5:11 And when they had brought their ships to land, they forsook all,
+and followed him.
+
+5:12 And it came to pass, when he was in a certain city, behold a man
+full of leprosy: who seeing Jesus fell on his face, and besought him,
+saying, Lord, if thou wilt, thou canst make me clean.
+
+5:13 And he put forth his hand, and touched him, saying, I will: be
+thou clean. And immediately the leprosy departed from him.
+
+5:14 And he charged him to tell no man: but go, and shew thyself to
+the priest, and offer for thy cleansing, according as Moses commanded,
+for a testimony unto them.
+
+5:15 But so much the more went there a fame abroad of him: and great
+multitudes came together to hear, and to be healed by him of their
+infirmities.
+
+5:16 And he withdrew himself into the wilderness, and prayed.
+
+5:17 And it came to pass on a certain day, as he was teaching, that
+there were Pharisees and doctors of the law sitting by, which were
+come out of every town of Galilee, and Judaea, and Jerusalem: and the
+power of the Lord was present to heal them.
+
+5:18 And, behold, men brought in a bed a man which was taken with a
+palsy: and they sought means to bring him in, and to lay him before
+him.
+
+5:19 And when they could not find by what way they might bring him in
+because of the multitude, they went upon the housetop, and let him
+down through the tiling with his couch into the midst before Jesus.
+
+5:20 And when he saw their faith, he said unto him, Man, thy sins are
+forgiven thee.
+
+5:21 And the scribes and the Pharisees began to reason, saying, Who is
+this which speaketh blasphemies? Who can forgive sins, but God alone?
+5:22 But when Jesus perceived their thoughts, he answering said unto
+them, What reason ye in your hearts? 5:23 Whether is easier, to say,
+Thy sins be forgiven thee; or to say, Rise up and walk? 5:24 But that
+ye may know that the Son of man hath power upon earth to forgive sins,
+(he said unto the sick of the palsy,) I say unto thee, Arise, and take
+up thy couch, and go into thine house.
+
+5:25 And immediately he rose up before them, and took up that whereon
+he lay, and departed to his own house, glorifying God.
+
+5:26 And they were all amazed, and they glorified God, and were filled
+with fear, saying, We have seen strange things to day.
+
+5:27 And after these things he went forth, and saw a publican, named
+Levi, sitting at the receipt of custom: and he said unto him, Follow
+me.
+
+5:28 And he left all, rose up, and followed him.
+
+5:29 And Levi made him a great feast in his own house: and there was a
+great company of publicans and of others that sat down with them.
+
+5:30 But their scribes and Pharisees murmured against his disciples,
+saying, Why do ye eat and drink with publicans and sinners? 5:31 And
+Jesus answering said unto them, They that are whole need not a
+physician; but they that are sick.
+
+5:32 I came not to call the righteous, but sinners to repentance.
+
+5:33 And they said unto him, Why do the disciples of John fast often,
+and make prayers, and likewise the disciples of the Pharisees; but
+thine eat and drink? 5:34 And he said unto them, Can ye make the
+children of the bridechamber fast, while the bridegroom is with them?
+5:35 But the days will come, when the bridegroom shall be taken away
+from them, and then shall they fast in those days.
+
+5:36 And he spake also a parable unto them; No man putteth a piece of
+a new garment upon an old; if otherwise, then both the new maketh a
+rent, and the piece that was taken out of the new agreeth not with the
+old.
+
+5:37 And no man putteth new wine into old bottles; else the new wine
+will burst the bottles, and be spilled, and the bottles shall perish.
+
+5:38 But new wine must be put into new bottles; and both are
+preserved.
+
+5:39 No man also having drunk old wine straightway desireth new: for
+he saith, The old is better.
+
+6:1 And it came to pass on the second sabbath after the first, that he
+went through the corn fields; and his disciples plucked the ears of
+corn, and did eat, rubbing them in their hands.
+
+6:2 And certain of the Pharisees said unto them, Why do ye that which
+is not lawful to do on the sabbath days? 6:3 And Jesus answering them
+said, Have ye not read so much as this, what David did, when himself
+was an hungred, and they which were with him; 6:4 How he went into the
+house of God, and did take and eat the shewbread, and gave also to
+them that were with him; which it is not lawful to eat but for the
+priests alone? 6:5 And he said unto them, That the Son of man is Lord
+also of the sabbath.
+
+6:6 And it came to pass also on another sabbath, that he entered into
+the synagogue and taught: and there was a man whose right hand was
+withered.
+
+6:7 And the scribes and Pharisees watched him, whether he would heal
+on the sabbath day; that they might find an accusation against him.
+
+6:8 But he knew their thoughts, and said to the man which had the
+withered hand, Rise up, and stand forth in the midst. And he arose and
+stood forth.
+
+6:9 Then said Jesus unto them, I will ask you one thing; Is it lawful
+on the sabbath days to do good, or to do evil? to save life, or to
+destroy it? 6:10 And looking round about upon them all, he said unto
+the man, Stretch forth thy hand. And he did so: and his hand was
+restored whole as the other.
+
+6:11 And they were filled with madness; and communed one with another
+what they might do to Jesus.
+
+6:12 And it came to pass in those days, that he went out into a
+mountain to pray, and continued all night in prayer to God.
+
+6:13 And when it was day, he called unto him his disciples: and of
+them he chose twelve, whom also he named apostles; 6:14 Simon, (whom
+he also named Peter,) and Andrew his brother, James and John, Philip
+and Bartholomew, 6:15 Matthew and Thomas, James the son of Alphaeus,
+and Simon called Zelotes, 6:16 And Judas the brother of James, and
+Judas Iscariot, which also was the traitor.
+
+6:17 And he came down with them, and stood in the plain, and the
+company of his disciples, and a great multitude of people out of all
+Judaea and Jerusalem, and from the sea coast of Tyre and Sidon, which
+came to hear him, and to be healed of their diseases; 6:18 And they
+that were vexed with unclean spirits: and they were healed.
+
+6:19 And the whole multitude sought to touch him: for there went
+virtue out of him, and healed them all.
+
+6:20 And he lifted up his eyes on his disciples, and said, Blessed be
+ye poor: for yours is the kingdom of God.
+
+6:21 Blessed are ye that hunger now: for ye shall be filled. Blessed
+are ye that weep now: for ye shall laugh.
+
+6:22 Blessed are ye, when men shall hate you, and when they shall
+separate you from their company, and shall reproach you, and cast out
+your name as evil, for the Son of man's sake.
+
+6:23 Rejoice ye in that day, and leap for joy: for, behold, your
+reward is great in heaven: for in the like manner did their fathers
+unto the prophets.
+
+6:24 But woe unto you that are rich! for ye have received your
+consolation.
+
+6:25 Woe unto you that are full! for ye shall hunger. Woe unto you
+that laugh now! for ye shall mourn and weep.
+
+6:26 Woe unto you, when all men shall speak well of you! for so did
+their fathers to the false prophets.
+
+6:27 But I say unto you which hear, Love your enemies, do good to them
+which hate you, 6:28 Bless them that curse you, and pray for them
+which despitefully use you.
+
+6:29 And unto him that smiteth thee on the one cheek offer also the
+other; and him that taketh away thy cloak forbid not to take thy coat
+also.
+
+6:30 Give to every man that asketh of thee; and of him that taketh
+away thy goods ask them not again.
+
+6:31 And as ye would that men should do to you, do ye also to them
+likewise.
+
+6:32 For if ye love them which love you, what thank have ye? for
+sinners also love those that love them.
+
+6:33 And if ye do good to them which do good to you, what thank have
+ye? for sinners also do even the same.
+
+6:34 And if ye lend to them of whom ye hope to receive, what thank
+have ye? for sinners also lend to sinners, to receive as much again.
+
+6:35 But love ye your enemies, and do good, and lend, hoping for
+nothing again; and your reward shall be great, and ye shall be the
+children of the Highest: for he is kind unto the unthankful and to the
+evil.
+
+6:36 Be ye therefore merciful, as your Father also is merciful.
+
+6:37 Judge not, and ye shall not be judged: condemn not, and ye shall
+not be condemned: forgive, and ye shall be forgiven: 6:38 Give, and it
+shall be given unto you; good measure, pressed down, and shaken
+together, and running over, shall men give into your bosom. For with
+the same measure that ye mete withal it shall be measured to you
+again.
+
+6:39 And he spake a parable unto them, Can the blind lead the blind?
+shall they not both fall into the ditch? 6:40 The disciple is not
+above his master: but every one that is perfect shall be as his
+master.
+
+6:41 And why beholdest thou the mote that is in thy brother's eye, but
+perceivest not the beam that is in thine own eye? 6:42 Either how
+canst thou say to thy brother, Brother, let me pull out the mote that
+is in thine eye, when thou thyself beholdest not the beam that is in
+thine own eye? Thou hypocrite, cast out first the beam out of thine
+own eye, and then shalt thou see clearly to pull out the mote that is
+in thy brother's eye.
+
+6:43 For a good tree bringeth not forth corrupt fruit; neither doth a
+corrupt tree bring forth good fruit.
+
+6:44 For every tree is known by his own fruit. For of thorns men do
+not gather figs, nor of a bramble bush gather they grapes.
+
+6:45 A good man out of the good treasure of his heart bringeth forth
+that which is good; and an evil man out of the evil treasure of his
+heart bringeth forth that which is evil: for of the abundance of the
+heart his mouth speaketh.
+
+6:46 And why call ye me, Lord, Lord, and do not the things which I
+say? 6:47 Whosoever cometh to me, and heareth my sayings, and doeth
+them, I will shew you to whom he is like: 6:48 He is like a man which
+built an house, and digged deep, and laid the foundation on a rock:
+and when the flood arose, the stream beat vehemently upon that house,
+and could not shake it: for it was founded upon a rock.
+
+6:49 But he that heareth, and doeth not, is like a man that without a
+foundation built an house upon the earth; against which the stream did
+beat vehemently, and immediately it fell; and the ruin of that house
+was great.
+
+7:1 Now when he had ended all his sayings in the audience of the
+people, he entered into Capernaum.
+
+7:2 And a certain centurion's servant, who was dear unto him, was
+sick, and ready to die.
+
+7:3 And when he heard of Jesus, he sent unto him the elders of the
+Jews, beseeching him that he would come and heal his servant.
+
+7:4 And when they came to Jesus, they besought him instantly, saying,
+That he was worthy for whom he should do this: 7:5 For he loveth our
+nation, and he hath built us a synagogue.
+
+7:6 Then Jesus went with them. And when he was now not far from the
+house, the centurion sent friends to him, saying unto him, Lord,
+trouble not thyself: for I am not worthy that thou shouldest enter
+under my roof: 7:7 Wherefore neither thought I myself worthy to come
+unto thee: but say in a word, and my servant shall be healed.
+
+7:8 For I also am a man set under authority, having under me soldiers,
+and I say unto one, Go, and he goeth; and to another, Come, and he
+cometh; and to my servant, Do this, and he doeth it.
+
+7:9 When Jesus heard these things, he marvelled at him, and turned him
+about, and said unto the people that followed him, I say unto you, I
+have not found so great faith, no, not in Israel.
+
+7:10 And they that were sent, returning to the house, found the
+servant whole that had been sick.
+
+7:11 And it came to pass the day after, that he went into a city
+called Nain; and many of his disciples went with him, and much people.
+
+7:12 Now when he came nigh to the gate of the city, behold, there was
+a dead man carried out, the only son of his mother, and she was a
+widow: and much people of the city was with her.
+
+7:13 And when the Lord saw her, he had compassion on her, and said
+unto her, Weep not.
+
+7:14 And he came and touched the bier: and they that bare him stood
+still.
+
+And he said, Young man, I say unto thee, Arise.
+
+7:15 And he that was dead sat up, and began to speak. And he delivered
+him to his mother.
+
+7:16 And there came a fear on all: and they glorified God, saying,
+That a great prophet is risen up among us; and, That God hath visited
+his people.
+
+7:17 And this rumour of him went forth throughout all Judaea, and
+throughout all the region round about.
+
+7:18 And the disciples of John shewed him of all these things.
+
+7:19 And John calling unto him two of his disciples sent them to
+Jesus, saying, Art thou he that should come? or look we for another?
+7:20 When the men were come unto him, they said, John Baptist hath
+sent us unto thee, saying, Art thou he that should come? or look we
+for another? 7:21 And in that same hour he cured many of their
+infirmities and plagues, and of evil spirits; and unto many that were
+blind he gave sight.
+
+7:22 Then Jesus answering said unto them, Go your way, and tell John
+what things ye have seen and heard; how that the blind see, the lame
+walk, the lepers are cleansed, the deaf hear, the dead are raised, to
+the poor the gospel is preached.
+
+7:23 And blessed is he, whosoever shall not be offended in me.
+
+7:24 And when the messengers of John were departed, he began to speak
+unto the people concerning John, What went ye out into the wilderness
+for to see? A reed shaken with the wind? 7:25 But what went ye out
+for to see? A man clothed in soft raiment? Behold, they which are
+gorgeously apparelled, and live delicately, are in kings' courts.
+
+7:26 But what went ye out for to see? A prophet? Yea, I say unto you,
+and much more than a prophet.
+
+7:27 This is he, of whom it is written, Behold, I send my messenger
+before thy face, which shall prepare thy way before thee.
+
+7:28 For I say unto you, Among those that are born of women there is
+not a greater prophet than John the Baptist: but he that is least in
+the kingdom of God is greater than he.
+
+7:29 And all the people that heard him, and the publicans, justified
+God, being baptized with the baptism of John.
+
+7:30 But the Pharisees and lawyers rejected the counsel of God against
+themselves, being not baptized of him.
+
+7:31 And the Lord said, Whereunto then shall I liken the men of this
+generation? and to what are they like? 7:32 They are like unto
+children sitting in the marketplace, and calling one to another, and
+saying, We have piped unto you, and ye have not danced; we have
+mourned to you, and ye have not wept.
+
+7:33 For John the Baptist came neither eating bread nor drinking wine;
+and ye say, He hath a devil.
+
+7:34 The Son of man is come eating and drinking; and ye say, Behold a
+gluttonous man, and a winebibber, a friend of publicans and sinners!
+7:35 But wisdom is justified of all her children.
+
+7:36 And one of the Pharisees desired him that he would eat with him.
+And he went into the Pharisee's house, and sat down to meat.
+
+7:37 And, behold, a woman in the city, which was a sinner, when she
+knew that Jesus sat at meat in the Pharisee's house, brought an
+alabaster box of ointment, 7:38 And stood at his feet behind him
+weeping, and began to wash his feet with tears, and did wipe them with
+the hairs of her head, and kissed his feet, and anointed them with the
+ointment.
+
+7:39 Now when the Pharisee which had bidden him saw it, he spake
+within himself, saying, This man, if he were a prophet, would have
+known who and what manner of woman this is that toucheth him: for she
+is a sinner.
+
+7:40 And Jesus answering said unto him, Simon, I have somewhat to say
+unto thee. And he saith, Master, say on.
+
+7:41 There was a certain creditor which had two debtors: the one owed
+five hundred pence, and the other fifty.
+
+7:42 And when they had nothing to pay, he frankly forgave them both.
+Tell me therefore, which of them will love him most? 7:43 Simon
+answered and said, I suppose that he, to whom he forgave most.
+
+And he said unto him, Thou hast rightly judged.
+
+7:44 And he turned to the woman, and said unto Simon, Seest thou this
+woman? I entered into thine house, thou gavest me no water for my
+feet: but she hath washed my feet with tears, and wiped them with the
+hairs of her head.
+
+7:45 Thou gavest me no kiss: but this woman since the time I came in
+hath not ceased to kiss my feet.
+
+7:46 My head with oil thou didst not anoint: but this woman hath
+anointed my feet with ointment.
+
+7:47 Wherefore I say unto thee, Her sins, which are many, are
+forgiven; for she loved much: but to whom little is forgiven, the same
+loveth little.
+
+7:48 And he said unto her, Thy sins are forgiven.
+
+7:49 And they that sat at meat with him began to say within
+themselves, Who is this that forgiveth sins also? 7:50 And he said to
+the woman, Thy faith hath saved thee; go in peace.
+
+8:1 And it came to pass afterward, that he went throughout every city
+and village, preaching and shewing the glad tidings of the kingdom of
+God: and the twelve were with him, 8:2 And certain women, which had
+been healed of evil spirits and infirmities, Mary called Magdalene,
+out of whom went seven devils, 8:3 And Joanna the wife of Chuza
+Herod's steward, and Susanna, and many others, which ministered unto
+him of their substance.
+
+8:4 And when much people were gathered together, and were come to him
+out of every city, he spake by a parable: 8:5 A sower went out to sow
+his seed: and as he sowed, some fell by the way side; and it was
+trodden down, and the fowls of the air devoured it.
+
+8:6 And some fell upon a rock; and as soon as it was sprung up, it
+withered away, because it lacked moisture.
+
+8:7 And some fell among thorns; and the thorns sprang up with it, and
+choked it.
+
+8:8 And other fell on good ground, and sprang up, and bare fruit an
+hundredfold. And when he had said these things, he cried, He that hath
+ears to hear, let him hear.
+
+8:9 And his disciples asked him, saying, What might this parable be?
+8:10 And he said, Unto you it is given to know the mysteries of the
+kingdom of God: but to others in parables; that seeing they might not
+see, and hearing they might not understand.
+
+8:11 Now the parable is this: The seed is the word of God.
+
+8:12 Those by the way side are they that hear; then cometh the devil,
+and taketh away the word out of their hearts, lest they should believe
+and be saved.
+
+8:13 They on the rock are they, which, when they hear, receive the
+word with joy; and these have no root, which for a while believe, and
+in time of temptation fall away.
+
+8:14 And that which fell among thorns are they, which, when they have
+heard, go forth, and are choked with cares and riches and pleasures of
+this life, and bring no fruit to perfection.
+
+8:15 But that on the good ground are they, which in an honest and good
+heart, having heard the word, keep it, and bring forth fruit with
+patience.
+
+8:16 No man, when he hath lighted a candle, covereth it with a vessel,
+or putteth it under a bed; but setteth it on a candlestick, that they
+which enter in may see the light.
+
+8:17 For nothing is secret, that shall not be made manifest; neither
+any thing hid, that shall not be known and come abroad.
+
+8:18 Take heed therefore how ye hear: for whosoever hath, to him shall
+be given; and whosoever hath not, from him shall be taken even that
+which he seemeth to have.
+
+8:19 Then came to him his mother and his brethren, and could not come
+at him for the press.
+
+8:20 And it was told him by certain which said, Thy mother and thy
+brethren stand without, desiring to see thee.
+
+8:21 And he answered and said unto them, My mother and my brethren are
+these which hear the word of God, and do it.
+
+8:22 Now it came to pass on a certain day, that he went into a ship
+with his disciples: and he said unto them, Let us go over unto the
+other side of the lake. And they launched forth.
+
+8:23 But as they sailed he fell asleep: and there came down a storm of
+wind on the lake; and they were filled with water, and were in
+jeopardy.
+
+8:24 And they came to him, and awoke him, saying, Master, master, we
+perish. Then he arose, and rebuked the wind and the raging of the
+water: and they ceased, and there was a calm.
+
+8:25 And he said unto them, Where is your faith? And they being afraid
+wondered, saying one to another, What manner of man is this! for he
+commandeth even the winds and water, and they obey him.
+
+8:26 And they arrived at the country of the Gadarenes, which is over
+against Galilee.
+
+8:27 And when he went forth to land, there met him out of the city a
+certain man, which had devils long time, and ware no clothes, neither
+abode in any house, but in the tombs.
+
+8:28 When he saw Jesus, he cried out, and fell down before him, and
+with a loud voice said, What have I to do with thee, Jesus, thou Son
+of God most high? I beseech thee, torment me not.
+
+8:29 (For he had commanded the unclean spirit to come out of the man.
+For oftentimes it had caught him: and he was kept bound with chains
+and in fetters; and he brake the bands, and was driven of the devil
+into the wilderness.) 8:30 And Jesus asked him, saying, What is thy
+name? And he said, Legion: because many devils were entered into him.
+
+8:31 And they besought him that he would not command them to go out
+into the deep.
+
+8:32 And there was there an herd of many swine feeding on the
+mountain: and they besought him that he would suffer them to enter
+into them. And he suffered them.
+
+8:33 Then went the devils out of the man, and entered into the swine:
+and the herd ran violently down a steep place into the lake, and were
+choked.
+
+8:34 When they that fed them saw what was done, they fled, and went
+and told it in the city and in the country.
+
+8:35 Then they went out to see what was done; and came to Jesus, and
+found the man, out of whom the devils were departed, sitting at the
+feet of Jesus, clothed, and in his right mind: and they were afraid.
+
+8:36 They also which saw it told them by what means he that was
+possessed of the devils was healed.
+
+8:37 Then the whole multitude of the country of the Gadarenes round
+about besought him to depart from them; for they were taken with great
+fear: and he went up into the ship, and returned back again.
+
+8:38 Now the man out of whom the devils were departed besought him
+that he might be with him: but Jesus sent him away, saying, 8:39
+Return to thine own house, and shew how great things God hath done
+unto thee. And he went his way, and published throughout the whole
+city how great things Jesus had done unto him.
+
+8:40 And it came to pass, that, when Jesus was returned, the people
+gladly received him: for they were all waiting for him.
+
+8:41 And, behold, there came a man named Jairus, and he was a ruler of
+the synagogue: and he fell down at Jesus' feet, and besought him that
+he would come into his house: 8:42 For he had one only daughter, about
+twelve years of age, and she lay a dying. But as he went the people
+thronged him.
+
+8:43 And a woman having an issue of blood twelve years, which had
+spent all her living upon physicians, neither could be healed of any,
+8:44 Came behind him, and touched the border of his garment: and
+immediately her issue of blood stanched.
+
+8:45 And Jesus said, Who touched me? When all denied, Peter and they
+that were with him said, Master, the multitude throng thee and press
+thee, and sayest thou, Who touched me? 8:46 And Jesus said, Somebody
+hath touched me: for I perceive that virtue is gone out of me.
+
+8:47 And when the woman saw that she was not hid, she came trembling,
+and falling down before him, she declared unto him before all the
+people for what cause she had touched him, and how she was healed
+immediately.
+
+8:48 And he said unto her, Daughter, be of good comfort: thy faith
+hath made thee whole; go in peace.
+
+8:49 While he yet spake, there cometh one from the ruler of the
+synagogue's house, saying to him, Thy daughter is dead; trouble not
+the Master.
+
+8:50 But when Jesus heard it, he answered him, saying, Fear not:
+believe only, and she shall be made whole.
+
+8:51 And when he came into the house, he suffered no man to go in,
+save Peter, and James, and John, and the father and the mother of the
+maiden.
+
+8:52 And all wept, and bewailed her: but he said, Weep not; she is not
+dead, but sleepeth.
+
+8:53 And they laughed him to scorn, knowing that she was dead.
+
+8:54 And he put them all out, and took her by the hand, and called,
+saying, Maid, arise.
+
+8:55 And her spirit came again, and she arose straightway: and he
+commanded to give her meat.
+
+8:56 And her parents were astonished: but he charged them that they
+should tell no man what was done.
+
+9:1 Then he called his twelve disciples together, and gave them power
+and authority over all devils, and to cure diseases.
+
+9:2 And he sent them to preach the kingdom of God, and to heal the
+sick.
+
+9:3 And he said unto them, Take nothing for your journey, neither
+staves, nor scrip, neither bread, neither money; neither have two
+coats apiece.
+
+9:4 And whatsoever house ye enter into, there abide, and thence
+depart.
+
+9:5 And whosoever will not receive you, when ye go out of that city,
+shake off the very dust from your feet for a testimony against them.
+
+9:6 And they departed, and went through the towns, preaching the
+gospel, and healing every where.
+
+9:7 Now Herod the tetrarch heard of all that was done by him: and he
+was perplexed, because that it was said of some, that John was risen
+from the dead; 9:8 And of some, that Elias had appeared; and of
+others, that one of the old prophets was risen again.
+
+9:9 And Herod said, John have I beheaded: but who is this, of whom I
+hear such things? And he desired to see him.
+
+9:10 And the apostles, when they were returned, told him all that they
+had done. And he took them, and went aside privately into a desert
+place belonging to the city called Bethsaida.
+
+9:11 And the people, when they knew it, followed him: and he received
+them, and spake unto them of the kingdom of God, and healed them that
+had need of healing.
+
+9:12 And when the day began to wear away, then came the twelve, and
+said unto him, Send the multitude away, that they may go into the
+towns and country round about, and lodge, and get victuals: for we are
+here in a desert place.
+
+9:13 But he said unto them, Give ye them to eat. And they said, We
+have no more but five loaves and two fishes; except we should go and
+buy meat for all this people.
+
+9:14 For they were about five thousand men. And he said to his
+disciples, Make them sit down by fifties in a company.
+
+9:15 And they did so, and made them all sit down.
+
+9:16 Then he took the five loaves and the two fishes, and looking up
+to heaven, he blessed them, and brake, and gave to the disciples to
+set before the multitude.
+
+9:17 And they did eat, and were all filled: and there was taken up of
+fragments that remained to them twelve baskets.
+
+9:18 And it came to pass, as he was alone praying, his disciples were
+with him: and he asked them, saying, Whom say the people that I am?
+9:19 They answering said, John the Baptist; but some say, Elias; and
+others say, that one of the old prophets is risen again.
+
+9:20 He said unto them, But whom say ye that I am? Peter answering
+said, The Christ of God.
+
+9:21 And he straitly charged them, and commanded them to tell no man
+that thing; 9:22 Saying, The Son of man must suffer many things, and
+be rejected of the elders and chief priests and scribes, and be slain,
+and be raised the third day.
+
+9:23 And he said to them all, If any man will come after me, let him
+deny himself, and take up his cross daily, and follow me.
+
+9:24 For whosoever will save his life shall lose it: but whosoever
+will lose his life for my sake, the same shall save it.
+
+9:25 For what is a man advantaged, if he gain the whole world, and
+lose himself, or be cast away? 9:26 For whosoever shall be ashamed of
+me and of my words, of him shall the Son of man be ashamed, when he
+shall come in his own glory, and in his Father's, and of the holy
+angels.
+
+9:27 But I tell you of a truth, there be some standing here, which
+shall not taste of death, till they see the kingdom of God.
+
+9:28 And it came to pass about an eight days after these sayings, he
+took Peter and John and James, and went up into a mountain to pray.
+
+9:29 And as he prayed, the fashion of his countenance was altered, and
+his raiment was white and glistering.
+
+9:30 And, behold, there talked with him two men, which were Moses and
+Elias: 9:31 Who appeared in glory, and spake of his decease which he
+should accomplish at Jerusalem.
+
+9:32 But Peter and they that were with him were heavy with sleep: and
+when they were awake, they saw his glory, and the two men that stood
+with him.
+
+9:33 And it came to pass, as they departed from him, Peter said unto
+Jesus, Master, it is good for us to be here: and let us make three
+tabernacles; one for thee, and one for Moses, and one for Elias: not
+knowing what he said.
+
+9:34 While he thus spake, there came a cloud, and overshadowed them:
+and they feared as they entered into the cloud.
+
+9:35 And there came a voice out of the cloud, saying, This is my
+beloved Son: hear him.
+
+9:36 And when the voice was past, Jesus was found alone. And they kept
+it close, and told no man in those days any of those things which they
+had seen.
+
+9:37 And it came to pass, that on the next day, when they were come
+down from the hill, much people met him.
+
+9:38 And, behold, a man of the company cried out, saying, Master, I
+beseech thee, look upon my son: for he is mine only child.
+
+9:39 And, lo, a spirit taketh him, and he suddenly crieth out; and it
+teareth him that he foameth again, and bruising him hardly departeth
+from him.
+
+9:40 And I besought thy disciples to cast him out; and they could not.
+
+9:41 And Jesus answering said, O faithless and perverse generation,
+how long shall I be with you, and suffer you? Bring thy son hither.
+
+9:42 And as he was yet a coming, the devil threw him down, and tare
+him.
+
+And Jesus rebuked the unclean spirit, and healed the child, and
+delivered him again to his father.
+
+9:43 And they were all amazed at the mighty power of God. But while
+they wondered every one at all things which Jesus did, he said unto
+his disciples, 9:44 Let these sayings sink down into your ears: for
+the Son of man shall be delivered into the hands of men.
+
+9:45 But they understood not this saying, and it was hid from them,
+that they perceived it not: and they feared to ask him of that saying.
+
+9:46 Then there arose a reasoning among them, which of them should be
+greatest.
+
+9:47 And Jesus, perceiving the thought of their heart, took a child,
+and set him by him, 9:48 And said unto them, Whosoever shall receive
+this child in my name receiveth me: and whosoever shall receive me
+receiveth him that sent me: for he that is least among you all, the
+same shall be great.
+
+9:49 And John answered and said, Master, we saw one casting out devils
+in thy name; and we forbad him, because he followeth not with us.
+
+9:50 And Jesus said unto him, Forbid him not: for he that is not
+against us is for us.
+
+9:51 And it came to pass, when the time was come that he should be
+received up, he stedfastly set his face to go to Jerusalem, 9:52 And
+sent messengers before his face: and they went, and entered into a
+village of the Samaritans, to make ready for him.
+
+9:53 And they did not receive him, because his face was as though he
+would go to Jerusalem.
+
+9:54 And when his disciples James and John saw this, they said, Lord,
+wilt thou that we command fire to come down from heaven, and consume
+them, even as Elias did? 9:55 But he turned, and rebuked them, and
+said, Ye know not what manner of spirit ye are of.
+
+9:56 For the Son of man is not come to destroy men's lives, but to
+save them. And they went to another village.
+
+9:57 And it came to pass, that, as they went in the way, a certain man
+said unto him, Lord, I will follow thee whithersoever thou goest.
+
+9:58 And Jesus said unto him, Foxes have holes, and birds of the air
+have nests; but the Son of man hath not where to lay his head.
+
+9:59 And he said unto another, Follow me. But he said, Lord, suffer me
+first to go and bury my father.
+
+9:60 Jesus said unto him, Let the dead bury their dead: but go thou
+and preach the kingdom of God.
+
+9:61 And another also said, Lord, I will follow thee; but let me first
+go bid them farewell, which are at home at my house.
+
+9:62 And Jesus said unto him, No man, having put his hand to the
+plough, and looking back, is fit for the kingdom of God.
+
+10:1 After these things the LORD appointed other seventy also, and
+sent them two and two before his face into every city and place,
+whither he himself would come.
+
+10:2 Therefore said he unto them, The harvest truly is great, but the
+labourers are few: pray ye therefore the Lord of the harvest, that he
+would send forth labourers into his harvest.
+
+10:3 Go your ways: behold, I send you forth as lambs among wolves.
+
+10:4 Carry neither purse, nor scrip, nor shoes: and salute no man by
+the way.
+
+10:5 And into whatsoever house ye enter, first say, Peace be to this
+house.
+
+10:6 And if the son of peace be there, your peace shall rest upon it:
+if not, it shall turn to you again.
+
+10:7 And in the same house remain, eating and drinking such things as
+they give: for the labourer is worthy of his hire. Go not from house
+to house.
+
+10:8 And into whatsoever city ye enter, and they receive you, eat such
+things as are set before you: 10:9 And heal the sick that are therein,
+and say unto them, The kingdom of God is come nigh unto you.
+
+10:10 But into whatsoever city ye enter, and they receive you not, go
+your ways out into the streets of the same, and say, 10:11 Even the
+very dust of your city, which cleaveth on us, we do wipe off against
+you: notwithstanding be ye sure of this, that the kingdom of God is
+come nigh unto you.
+
+10:12 But I say unto you, that it shall be more tolerable in that day
+for Sodom, than for that city.
+
+10:13 Woe unto thee, Chorazin! woe unto thee, Bethsaida! for if the
+mighty works had been done in Tyre and Sidon, which have been done in
+you, they had a great while ago repented, sitting in sackcloth and
+ashes.
+
+10:14 But it shall be more tolerable for Tyre and Sidon at the
+judgment, than for you.
+
+10:15 And thou, Capernaum, which art exalted to heaven, shalt be
+thrust down to hell.
+
+10:16 He that heareth you heareth me; and he that despiseth you
+despiseth me; and he that despiseth me despiseth him that sent me.
+
+10:17 And the seventy returned again with joy, saying, Lord, even the
+devils are subject unto us through thy name.
+
+10:18 And he said unto them, I beheld Satan as lightning fall from
+heaven.
+
+10:19 Behold, I give unto you power to tread on serpents and
+scorpions, and over all the power of the enemy: and nothing shall by
+any means hurt you.
+
+10:20 Notwithstanding in this rejoice not, that the spirits are
+subject unto you; but rather rejoice, because your names are written
+in heaven.
+
+10:21 In that hour Jesus rejoiced in spirit, and said, I thank thee, O
+Father, Lord of heaven and earth, that thou hast hid these things from
+the wise and prudent, and hast revealed them unto babes: even so,
+Father; for so it seemed good in thy sight.
+
+10:22 All things are delivered to me of my Father: and no man knoweth
+who the Son is, but the Father; and who the Father is, but the Son,
+and he to whom the Son will reveal him.
+
+10:23 And he turned him unto his disciples, and said privately,
+Blessed are the eyes which see the things that ye see: 10:24 For I
+tell you, that many prophets and kings have desired to see those
+things which ye see, and have not seen them; and to hear those things
+which ye hear, and have not heard them.
+
+10:25 And, behold, a certain lawyer stood up, and tempted him, saying,
+Master, what shall I do to inherit eternal life? 10:26 He said unto
+him, What is written in the law? how readest thou? 10:27 And he
+answering said, Thou shalt love the Lord thy God with all thy heart,
+and with all thy soul, and with all thy strength, and with all thy
+mind; and thy neighbour as thyself.
+
+10:28 And he said unto him, Thou hast answered right: this do, and
+thou shalt live.
+
+10:29 But he, willing to justify himself, said unto Jesus, And who is
+my neighbour? 10:30 And Jesus answering said, A certain man went down
+from Jerusalem to Jericho, and fell among thieves, which stripped him
+of his raiment, and wounded him, and departed, leaving him half dead.
+
+10:31 And by chance there came down a certain priest that way: and
+when he saw him, he passed by on the other side.
+
+10:32 And likewise a Levite, when he was at the place, came and looked
+on him, and passed by on the other side.
+
+10:33 But a certain Samaritan, as he journeyed, came where he was: and
+when he saw him, he had compassion on him, 10:34 And went to him, and
+bound up his wounds, pouring in oil and wine, and set him on his own
+beast, and brought him to an inn, and took care of him.
+
+10:35 And on the morrow when he departed, he took out two pence, and
+gave them to the host, and said unto him, Take care of him; and
+whatsoever thou spendest more, when I come again, I will repay thee.
+
+10:36 Which now of these three, thinkest thou, was neighbour unto him
+that fell among the thieves? 10:37 And he said, He that shewed mercy
+on him. Then said Jesus unto him, Go, and do thou likewise.
+
+10:38 Now it came to pass, as they went, that he entered into a
+certain village: and a certain woman named Martha received him into
+her house.
+
+10:39 And she had a sister called Mary, which also sat at Jesus' feet,
+and heard his word.
+
+10:40 But Martha was cumbered about much serving, and came to him, and
+said, Lord, dost thou not care that my sister hath left me to serve
+alone? bid her therefore that she help me.
+
+10:41 And Jesus answered and said unto her, Martha, Martha, thou art
+careful and troubled about many things: 10:42 But one thing is
+needful: and Mary hath chosen that good part, which shall not be taken
+away from her.
+
+11:1 And it came to pass, that, as he was praying in a certain place,
+when he ceased, one of his disciples said unto him, Lord, teach us to
+pray, as John also taught his disciples.
+
+11:2 And he said unto them, When ye pray, say, Our Father which art in
+heaven, Hallowed be thy name. Thy kingdom come. Thy will be done, as
+in heaven, so in earth.
+
+11:3 Give us day by day our daily bread.
+
+11:4 And forgive us our sins; for we also forgive every one that is
+indebted to us. And lead us not into temptation; but deliver us from
+evil.
+
+11:5 And he said unto them, Which of you shall have a friend, and
+shall go unto him at midnight, and say unto him, Friend, lend me three
+loaves; 11:6 For a friend of mine in his journey is come to me, and I
+have nothing to set before him? 11:7 And he from within shall answer
+and say, Trouble me not: the door is now shut, and my children are
+with me in bed; I cannot rise and give thee.
+
+11:8 I say unto you, Though he will not rise and give him, because he
+is his friend, yet because of his importunity he will rise and give
+him as many as he needeth.
+
+11:9 And I say unto you, Ask, and it shall be given you; seek, and ye
+shall find; knock, and it shall be opened unto you.
+
+11:10 For every one that asketh receiveth; and he that seeketh
+findeth; and to him that knocketh it shall be opened.
+
+11:11 If a son shall ask bread of any of you that is a father, will he
+give him a stone? or if he ask a fish, will he for a fish give him a
+serpent? 11:12 Or if he shall ask an egg, will he offer him a
+scorpion? 11:13 If ye then, being evil, know how to give good gifts
+unto your children: how much more shall your heavenly Father give the
+Holy Spirit to them that ask him? 11:14 And he was casting out a
+devil, and it was dumb. And it came to pass, when the devil was gone
+out, the dumb spake; and the people wondered.
+
+11:15 But some of them said, He casteth out devils through Beelzebub
+the chief of the devils.
+
+11:16 And others, tempting him, sought of him a sign from heaven.
+
+11:17 But he, knowing their thoughts, said unto them, Every kingdom
+divided against itself is brought to desolation; and a house divided
+against a house falleth.
+
+11:18 If Satan also be divided against himself, how shall his kingdom
+stand? because ye say that I cast out devils through Beelzebub.
+
+11:19 And if I by Beelzebub cast out devils, by whom do your sons cast
+them out? therefore shall they be your judges.
+
+11:20 But if I with the finger of God cast out devils, no doubt the
+kingdom of God is come upon you.
+
+11:21 When a strong man armed keepeth his palace, his goods are in
+peace: 11:22 But when a stronger than he shall come upon him, and
+overcome him, he taketh from him all his armour wherein he trusted,
+and divideth his spoils.
+
+11:23 He that is not with me is against me: and he that gathereth not
+with me scattereth.
+
+11:24 When the unclean spirit is gone out of a man, he walketh through
+dry places, seeking rest; and finding none, he saith, I will return
+unto my house whence I came out.
+
+11:25 And when he cometh, he findeth it swept and garnished.
+
+11:26 Then goeth he, and taketh to him seven other spirits more wicked
+than himself; and they enter in, and dwell there: and the last state
+of that man is worse than the first.
+
+11:27 And it came to pass, as he spake these things, a certain woman
+of the company lifted up her voice, and said unto him, Blessed is the
+womb that bare thee, and the paps which thou hast sucked.
+
+11:28 But he said, Yea rather, blessed are they that hear the word of
+God, and keep it.
+
+11:29 And when the people were gathered thick together, he began to
+say, This is an evil generation: they seek a sign; and there shall no
+sign be given it, but the sign of Jonas the prophet.
+
+11:30 For as Jonas was a sign unto the Ninevites, so shall also the
+Son of man be to this generation.
+
+11:31 The queen of the south shall rise up in the judgment with the
+men of this generation, and condemn them: for she came from the utmost
+parts of the earth to hear the wisdom of Solomon; and, behold, a
+greater than Solomon is here.
+
+11:32 The men of Nineve shall rise up in the judgment with this
+generation, and shall condemn it: for they repented at the preaching
+of Jonas; and, behold, a greater than Jonas is here.
+
+11:33 No man, when he hath lighted a candle, putteth it in a secret
+place, neither under a bushel, but on a candlestick, that they which
+come in may see the light.
+
+11:34 The light of the body is the eye: therefore when thine eye is
+single, thy whole body also is full of light; but when thine eye is
+evil, thy body also is full of darkness.
+
+11:35 Take heed therefore that the light which is in thee be not
+darkness.
+
+11:36 If thy whole body therefore be full of light, having no part
+dark, the whole shall be full of light, as when the bright shining of
+a candle doth give thee light.
+
+11:37 And as he spake, a certain Pharisee besought him to dine with
+him: and he went in, and sat down to meat.
+
+11:38 And when the Pharisee saw it, he marvelled that he had not first
+washed before dinner.
+
+11:39 And the Lord said unto him, Now do ye Pharisees make clean the
+outside of the cup and the platter; but your inward part is full of
+ravening and wickedness.
+
+11:40 Ye fools, did not he that made that which is without make that
+which is within also? 11:41 But rather give alms of such things as ye
+have; and, behold, all things are clean unto you.
+
+11:42 But woe unto you, Pharisees! for ye tithe mint and rue and all
+manner of herbs, and pass over judgment and the love of God: these
+ought ye to have done, and not to leave the other undone.
+
+11:43 Woe unto you, Pharisees! for ye love the uppermost seats in the
+synagogues, and greetings in the markets.
+
+11:44 Woe unto you, scribes and Pharisees, hypocrites! for ye are as
+graves which appear not, and the men that walk over them are not aware
+of them.
+
+11:45 Then answered one of the lawyers, and said unto him, Master,
+thus saying thou reproachest us also.
+
+11:46 And he said, Woe unto you also, ye lawyers! for ye lade men with
+burdens grievous to be borne, and ye yourselves touch not the burdens
+with one of your fingers.
+
+11:47 Woe unto you! for ye build the sepulchres of the prophets, and
+your fathers killed them.
+
+11:48 Truly ye bear witness that ye allow the deeds of your fathers:
+for they indeed killed them, and ye build their sepulchres.
+
+11:49 Therefore also said the wisdom of God, I will send them prophets
+and apostles, and some of them they shall slay and persecute: 11:50
+That the blood of all the prophets, which was shed from the foundation
+of the world, may be required of this generation; 11:51 From the blood
+of Abel unto the blood of Zacharias which perished between the altar
+and the temple: verily I say unto you, It shall be required of this
+generation.
+
+11:52 Woe unto you, lawyers! for ye have taken away the key of
+knowledge: ye entered not in yourselves, and them that were entering
+in ye hindered.
+
+11:53 And as he said these things unto them, the scribes and the
+Pharisees began to urge him vehemently, and to provoke him to speak of
+many things: 11:54 Laying wait for him, and seeking to catch something
+out of his mouth, that they might accuse him.
+
+12:1 In the mean time, when there were gathered together an
+innumerable multitude of people, insomuch that they trode one upon
+another, he began to say unto his disciples first of all, Beware ye of
+the leaven of the Pharisees, which is hypocrisy.
+
+12:2 For there is nothing covered, that shall not be revealed; neither
+hid, that shall not be known.
+
+12:3 Therefore whatsoever ye have spoken in darkness shall be heard in
+the light; and that which ye have spoken in the ear in closets shall
+be proclaimed upon the housetops.
+
+12:4 And I say unto you my friends, Be not afraid of them that kill
+the body, and after that have no more that they can do.
+
+12:5 But I will forewarn you whom ye shall fear: Fear him, which after
+he hath killed hath power to cast into hell; yea, I say unto you, Fear
+him.
+
+12:6 Are not five sparrows sold for two farthings, and not one of them
+is forgotten before God? 12:7 But even the very hairs of your head
+are all numbered. Fear not therefore: ye are of more value than many
+sparrows.
+
+12:8 Also I say unto you, Whosoever shall confess me before men, him
+shall the Son of man also confess before the angels of God: 12:9 But
+he that denieth me before men shall be denied before the angels of
+God.
+
+12:10 And whosoever shall speak a word against the Son of man, it
+shall be forgiven him: but unto him that blasphemeth against the Holy
+Ghost it shall not be forgiven.
+
+12:11 And when they bring you unto the synagogues, and unto
+magistrates, and powers, take ye no thought how or what thing ye shall
+answer, or what ye shall say: 12:12 For the Holy Ghost shall teach you
+in the same hour what ye ought to say.
+
+12:13 And one of the company said unto him, Master, speak to my
+brother, that he divide the inheritance with me.
+
+12:14 And he said unto him, Man, who made me a judge or a divider over
+you? 12:15 And he said unto them, Take heed, and beware of
+covetousness: for a man's life consisteth not in the abundance of the
+things which he possesseth.
+
+12:16 And he spake a parable unto them, saying, The ground of a
+certain rich man brought forth plentifully: 12:17 And he thought
+within himself, saying, What shall I do, because I have no room where
+to bestow my fruits? 12:18 And he said, This will I do: I will pull
+down my barns, and build greater; and there will I bestow all my
+fruits and my goods.
+
+12:19 And I will say to my soul, Soul, thou hast much goods laid up
+for many years; take thine ease, eat, drink, and be merry.
+
+12:20 But God said unto him, Thou fool, this night thy soul shall be
+required of thee: then whose shall those things be, which thou hast
+provided? 12:21 So is he that layeth up treasure for himself, and is
+not rich toward God.
+
+12:22 And he said unto his disciples, Therefore I say unto you, Take
+no thought for your life, what ye shall eat; neither for the body,
+what ye shall put on.
+
+12:23 The life is more than meat, and the body is more than raiment.
+
+12:24 Consider the ravens: for they neither sow nor reap; which
+neither have storehouse nor barn; and God feedeth them: how much more
+are ye better than the fowls? 12:25 And which of you with taking
+thought can add to his stature one cubit? 12:26 If ye then be not
+able to do that thing which is least, why take ye thought for the
+rest? 12:27 Consider the lilies how they grow: they toil not, they
+spin not; and yet I say unto you, that Solomon in all his glory was
+not arrayed like one of these.
+
+12:28 If then God so clothe the grass, which is to day in the field,
+and to morrow is cast into the oven; how much more will he clothe you,
+O ye of little faith? 12:29 And seek not ye what ye shall eat, or
+what ye shall drink, neither be ye of doubtful mind.
+
+12:30 For all these things do the nations of the world seek after: and
+your Father knoweth that ye have need of these things.
+
+12:31 But rather seek ye the kingdom of God; and all these things
+shall be added unto you.
+
+12:32 Fear not, little flock; for it is your Father's good pleasure to
+give you the kingdom.
+
+12:33 Sell that ye have, and give alms; provide yourselves bags which
+wax not old, a treasure in the heavens that faileth not, where no
+thief approacheth, neither moth corrupteth.
+
+12:34 For where your treasure is, there will your heart be also.
+
+12:35 Let your loins be girded about, and your lights burning; 12:36
+And ye yourselves like unto men that wait for their lord, when he will
+return from the wedding; that when he cometh and knocketh, they may
+open unto him immediately.
+
+12:37 Blessed are those servants, whom the lord when he cometh shall
+find watching: verily I say unto you, that he shall gird himself, and
+make them to sit down to meat, and will come forth and serve them.
+
+12:38 And if he shall come in the second watch, or come in the third
+watch, and find them so, blessed are those servants.
+
+12:39 And this know, that if the goodman of the house had known what
+hour the thief would come, he would have watched, and not have
+suffered his house to be broken through.
+
+12:40 Be ye therefore ready also: for the Son of man cometh at an hour
+when ye think not.
+
+12:41 Then Peter said unto him, Lord, speakest thou this parable unto
+us, or even to all? 12:42 And the Lord said, Who then is that
+faithful and wise steward, whom his lord shall make ruler over his
+household, to give them their portion of meat in due season? 12:43
+Blessed is that servant, whom his lord when he cometh shall find so
+doing.
+
+12:44 Of a truth I say unto you, that he will make him ruler over all
+that he hath.
+
+12:45 But and if that servant say in his heart, My lord delayeth his
+coming; and shall begin to beat the menservants and maidens, and to
+eat and drink, and to be drunken; 12:46 The lord of that servant will
+come in a day when he looketh not for him, and at an hour when he is
+not aware, and will cut him in sunder, and will appoint him his
+portion with the unbelievers.
+
+12:47 And that servant, which knew his lord's will, and prepared not
+himself, neither did according to his will, shall be beaten with many
+stripes.
+
+12:48 But he that knew not, and did commit things worthy of stripes,
+shall be beaten with few stripes. For unto whomsoever much is given,
+of him shall be much required: and to whom men have committed much, of
+him they will ask the more.
+
+12:49 I am come to send fire on the earth; and what will I, if it be
+already kindled? 12:50 But I have a baptism to be baptized with; and
+how am I straitened till it be accomplished! 12:51 Suppose ye that I
+am come to give peace on earth? I tell you, Nay; but rather division:
+12:52 For from henceforth there shall be five in one house divided,
+three against two, and two against three.
+
+12:53 The father shall be divided against the son, and the son against
+the father; the mother against the daughter, and the daughter against
+the mother; the mother in law against her daughter in law, and the
+daughter in law against her mother in law.
+
+12:54 And he said also to the people, When ye see a cloud rise out of
+the west, straightway ye say, There cometh a shower; and so it is.
+
+12:55 And when ye see the south wind blow, ye say, There will be heat;
+and it cometh to pass.
+
+12:56 Ye hypocrites, ye can discern the face of the sky and of the
+earth; but how is it that ye do not discern this time? 12:57 Yea, and
+why even of yourselves judge ye not what is right? 12:58 When thou
+goest with thine adversary to the magistrate, as thou art in the way,
+give diligence that thou mayest be delivered from him; lest he hale
+thee to the judge, and the judge deliver thee to the officer, and the
+officer cast thee into prison.
+
+12:59 I tell thee, thou shalt not depart thence, till thou hast paid
+the very last mite.
+
+13:1 There were present at that season some that told him of the
+Galilaeans, whose blood Pilate had mingled with their sacrifices.
+
+13:2 And Jesus answering said unto them, Suppose ye that these
+Galilaeans were sinners above all the Galilaeans, because they
+suffered such things? 13:3 I tell you, Nay: but, except ye repent, ye
+shall all likewise perish.
+
+13:4 Or those eighteen, upon whom the tower in Siloam fell, and slew
+them, think ye that they were sinners above all men that dwelt in
+Jerusalem? 13:5 I tell you, Nay: but, except ye repent, ye shall all
+likewise perish.
+
+13:6 He spake also this parable; A certain man had a fig tree planted
+in his vineyard; and he came and sought fruit thereon, and found none.
+
+13:7 Then said he unto the dresser of his vineyard, Behold, these
+three years I come seeking fruit on this fig tree, and find none: cut
+it down; why cumbereth it the ground? 13:8 And he answering said unto
+him, Lord, let it alone this year also, till I shall dig about it, and
+dung it: 13:9 And if it bear fruit, well: and if not, then after that
+thou shalt cut it down.
+
+13:10 And he was teaching in one of the synagogues on the sabbath.
+
+13:11 And, behold, there was a woman which had a spirit of infirmity
+eighteen years, and was bowed together, and could in no wise lift up
+herself.
+
+13:12 And when Jesus saw her, he called her to him, and said unto her,
+Woman, thou art loosed from thine infirmity.
+
+13:13 And he laid his hands on her: and immediately she was made
+straight, and glorified God.
+
+13:14 And the ruler of the synagogue answered with indignation,
+because that Jesus had healed on the sabbath day, and said unto the
+people, There are six days in which men ought to work: in them
+therefore come and be healed, and not on the sabbath day.
+
+13:15 The Lord then answered him, and said, Thou hypocrite, doth not
+each one of you on the sabbath loose his ox or his ass from the stall,
+and lead him away to watering? 13:16 And ought not this woman, being
+a daughter of Abraham, whom Satan hath bound, lo, these eighteen
+years, be loosed from this bond on the sabbath day? 13:17 And when he
+had said these things, all his adversaries were ashamed: and all the
+people rejoiced for all the glorious things that were done by him.
+
+13:18 Then said he, Unto what is the kingdom of God like? and
+whereunto shall I resemble it? 13:19 It is like a grain of mustard
+seed, which a man took, and cast into his garden; and it grew, and
+waxed a great tree; and the fowls of the air lodged in the branches of
+it.
+
+13:20 And again he said, Whereunto shall I liken the kingdom of God?
+13:21 It is like leaven, which a woman took and hid in three measures
+of meal, till the whole was leavened.
+
+13:22 And he went through the cities and villages, teaching, and
+journeying toward Jerusalem.
+
+13:23 Then said one unto him, Lord, are there few that be saved? And
+he said unto them, 13:24 Strive to enter in at the strait gate: for
+many, I say unto you, will seek to enter in, and shall not be able.
+
+13:25 When once the master of the house is risen up, and hath shut to
+the door, and ye begin to stand without, and to knock at the door,
+saying, Lord, Lord, open unto us; and he shall answer and say unto
+you, I know you not whence ye are: 13:26 Then shall ye begin to say,
+We have eaten and drunk in thy presence, and thou hast taught in our
+streets.
+
+13:27 But he shall say, I tell you, I know you not whence ye are;
+depart from me, all ye workers of iniquity.
+
+13:28 There shall be weeping and gnashing of teeth, when ye shall see
+Abraham, and Isaac, and Jacob, and all the prophets, in the kingdom of
+God, and you yourselves thrust out.
+
+13:29 And they shall come from the east, and from the west, and from
+the north, and from the south, and shall sit down in the kingdom of
+God.
+
+13:30 And, behold, there are last which shall be first, and there are
+first which shall be last.
+
+13:31 The same day there came certain of the Pharisees, saying unto
+him, Get thee out, and depart hence: for Herod will kill thee.
+
+13:32 And he said unto them, Go ye, and tell that fox, Behold, I cast
+out devils, and I do cures to day and to morrow, and the third day I
+shall be perfected.
+
+13:33 Nevertheless I must walk to day, and to morrow, and the day
+following: for it cannot be that a prophet perish out of Jerusalem.
+
+13:34 O Jerusalem, Jerusalem, which killest the prophets, and stonest
+them that are sent unto thee; how often would I have gathered thy
+children together, as a hen doth gather her brood under her wings, and
+ye would not! 13:35 Behold, your house is left unto you desolate: and
+verily I say unto you, Ye shall not see me, until the time come when
+ye shall say, Blessed is he that cometh in the name of the Lord.
+
+14:1 And it came to pass, as he went into the house of one of the
+chief Pharisees to eat bread on the sabbath day, that they watched
+him.
+
+14:2 And, behold, there was a certain man before him which had the
+dropsy.
+
+14:3 And Jesus answering spake unto the lawyers and Pharisees, saying,
+Is it lawful to heal on the sabbath day? 14:4 And they held their
+peace. And he took him, and healed him, and let him go; 14:5 And
+answered them, saying, Which of you shall have an ass or an ox fallen
+into a pit, and will not straightway pull him out on the sabbath day?
+14:6 And they could not answer him again to these things.
+
+14:7 And he put forth a parable to those which were bidden, when he
+marked how they chose out the chief rooms; saying unto them.
+
+14:8 When thou art bidden of any man to a wedding, sit not down in the
+highest room; lest a more honourable man than thou be bidden of him;
+14:9 And he that bade thee and him come and say to thee, Give this man
+place; and thou begin with shame to take the lowest room.
+
+14:10 But when thou art bidden, go and sit down in the lowest room;
+that when he that bade thee cometh, he may say unto thee, Friend, go
+up higher: then shalt thou have worship in the presence of them that
+sit at meat with thee.
+
+14:11 For whosoever exalteth himself shall be abased; and he that
+humbleth himself shall be exalted.
+
+14:12 Then said he also to him that bade him, When thou makest a
+dinner or a supper, call not thy friends, nor thy brethren, neither
+thy kinsmen, nor thy rich neighbours; lest they also bid thee again,
+and a recompence be made thee.
+
+14:13 But when thou makest a feast, call the poor, the maimed, the
+lame, the blind: 14:14 And thou shalt be blessed; for they cannot
+recompense thee: for thou shalt be recompensed at the resurrection of
+the just.
+
+14:15 And when one of them that sat at meat with him heard these
+things, he said unto him, Blessed is he that shall eat bread in the
+kingdom of God.
+
+14:16 Then said he unto him, A certain man made a great supper, and
+bade many: 14:17 And sent his servant at supper time to say to them
+that were bidden, Come; for all things are now ready.
+
+14:18 And they all with one consent began to make excuse. The first
+said unto him, I have bought a piece of ground, and I must needs go
+and see it: I pray thee have me excused.
+
+14:19 And another said, I have bought five yoke of oxen, and I go to
+prove them: I pray thee have me excused.
+
+14:20 And another said, I have married a wife, and therefore I cannot
+come.
+
+14:21 So that servant came, and shewed his lord these things. Then the
+master of the house being angry said to his servant, Go out quickly
+into the streets and lanes of the city, and bring in hither the poor,
+and the maimed, and the halt, and the blind.
+
+14:22 And the servant said, Lord, it is done as thou hast commanded,
+and yet there is room.
+
+14:23 And the lord said unto the servant, Go out into the highways and
+hedges, and compel them to come in, that my house may be filled.
+
+14:24 For I say unto you, That none of those men which were bidden
+shall taste of my supper.
+
+14:25 And there went great multitudes with him: and he turned, and
+said unto them, 14:26 If any man come to me, and hate not his father,
+and mother, and wife, and children, and brethren, and sisters, yea,
+and his own life also, he cannot be my disciple.
+
+14:27 And whosoever doth not bear his cross, and come after me, cannot
+be my disciple.
+
+14:28 For which of you, intending to build a tower, sitteth not down
+first, and counteth the cost, whether he have sufficient to finish it?
+14:29 Lest haply, after he hath laid the foundation, and is not able
+to finish it, all that behold it begin to mock him, 14:30 Saying, This
+man began to build, and was not able to finish.
+
+14:31 Or what king, going to make war against another king, sitteth
+not down first, and consulteth whether he be able with ten thousand to
+meet him that cometh against him with twenty thousand? 14:32 Or else,
+while the other is yet a great way off, he sendeth an ambassage, and
+desireth conditions of peace.
+
+14:33 So likewise, whosoever he be of you that forsaketh not all that
+he hath, he cannot be my disciple.
+
+14:34 Salt is good: but if the salt have lost his savour, wherewith
+shall it be seasoned? 14:35 It is neither fit for the land, nor yet
+for the dunghill; but men cast it out. He that hath ears to hear, let
+him hear.
+
+15:1 Then drew near unto him all the publicans and sinners for to hear
+him.
+
+15:2 And the Pharisees and scribes murmured, saying, This man
+receiveth sinners, and eateth with them.
+
+15:3 And he spake this parable unto them, saying, 15:4 What man of
+you, having an hundred sheep, if he lose one of them, doth not leave
+the ninety and nine in the wilderness, and go after that which is
+lost, until he find it? 15:5 And when he hath found it, he layeth it
+on his shoulders, rejoicing.
+
+15:6 And when he cometh home, he calleth together his friends and
+neighbours, saying unto them, Rejoice with me; for I have found my
+sheep which was lost.
+
+15:7 I say unto you, that likewise joy shall be in heaven over one
+sinner that repenteth, more than over ninety and nine just persons,
+which need no repentance.
+
+15:8 Either what woman having ten pieces of silver, if she lose one
+piece, doth not light a candle, and sweep the house, and seek
+diligently till she find it? 15:9 And when she hath found it, she
+calleth her friends and her neighbours together, saying, Rejoice with
+me; for I have found the piece which I had lost.
+
+15:10 Likewise, I say unto you, there is joy in the presence of the
+angels of God over one sinner that repenteth.
+
+15:11 And he said, A certain man had two sons: 15:12 And the younger
+of them said to his father, Father, give me the portion of goods that
+falleth to me. And he divided unto them his living.
+
+15:13 And not many days after the younger son gathered all together,
+and took his journey into a far country, and there wasted his
+substance with riotous living.
+
+15:14 And when he had spent all, there arose a mighty famine in that
+land; and he began to be in want.
+
+15:15 And he went and joined himself to a citizen of that country; and
+he sent him into his fields to feed swine.
+
+15:16 And he would fain have filled his belly with the husks that the
+swine did eat: and no man gave unto him.
+
+15:17 And when he came to himself, he said, How many hired servants of
+my father's have bread enough and to spare, and I perish with hunger!
+15:18 I will arise and go to my father, and will say unto him, Father,
+I have sinned against heaven, and before thee, 15:19 And am no more
+worthy to be called thy son: make me as one of thy hired servants.
+
+15:20 And he arose, and came to his father. But when he was yet a
+great way off, his father saw him, and had compassion, and ran, and
+fell on his neck, and kissed him.
+
+15:21 And the son said unto him, Father, I have sinned against heaven,
+and in thy sight, and am no more worthy to be called thy son.
+
+15:22 But the father said to his servants, Bring forth the best robe,
+and put it on him; and put a ring on his hand, and shoes on his feet:
+15:23 And bring hither the fatted calf, and kill it; and let us eat,
+and be merry: 15:24 For this my son was dead, and is alive again; he
+was lost, and is found. And they began to be merry.
+
+15:25 Now his elder son was in the field: and as he came and drew nigh
+to the house, he heard musick and dancing.
+
+15:26 And he called one of the servants, and asked what these things
+meant.
+
+15:27 And he said unto him, Thy brother is come; and thy father hath
+killed the fatted calf, because he hath received him safe and sound.
+
+15:28 And he was angry, and would not go in: therefore came his father
+out, and intreated him.
+
+15:29 And he answering said to his father, Lo, these many years do I
+serve thee, neither transgressed I at any time thy commandment: and
+yet thou never gavest me a kid, that I might make merry with my
+friends: 15:30 But as soon as this thy son was come, which hath
+devoured thy living with harlots, thou hast killed for him the fatted
+calf.
+
+15:31 And he said unto him, Son, thou art ever with me, and all that I
+have is thine.
+
+15:32 It was meet that we should make merry, and be glad: for this thy
+brother was dead, and is alive again; and was lost, and is found.
+
+16:1 And he said also unto his disciples, There was a certain rich
+man, which had a steward; and the same was accused unto him that he
+had wasted his goods.
+
+16:2 And he called him, and said unto him, How is it that I hear this
+of thee? give an account of thy stewardship; for thou mayest be no
+longer steward.
+
+16:3 Then the steward said within himself, What shall I do? for my
+lord taketh away from me the stewardship: I cannot dig; to beg I am
+ashamed.
+
+16:4 I am resolved what to do, that, when I am put out of the
+stewardship, they may receive me into their houses.
+
+16:5 So he called every one of his lord's debtors unto him, and said
+unto the first, How much owest thou unto my lord? 16:6 And he said,
+An hundred measures of oil. And he said unto him, Take thy bill, and
+sit down quickly, and write fifty.
+
+16:7 Then said he to another, And how much owest thou? And he said, An
+hundred measures of wheat. And he said unto him, Take thy bill, and
+write fourscore.
+
+16:8 And the lord commended the unjust steward, because he had done
+wisely: for the children of this world are in their generation wiser
+than the children of light.
+
+16:9 And I say unto you, Make to yourselves friends of the mammon of
+unrighteousness; that, when ye fail, they may receive you into
+everlasting habitations.
+
+16:10 He that is faithful in that which is least is faithful also in
+much: and he that is unjust in the least is unjust also in much.
+
+16:11 If therefore ye have not been faithful in the unrighteous
+mammon, who will commit to your trust the true riches? 16:12 And if
+ye have not been faithful in that which is another man's, who shall
+give you that which is your own? 16:13 No servant can serve two
+masters: for either he will hate the one, and love the other; or else
+he will hold to the one, and despise the other. Ye cannot serve God
+and mammon.
+
+16:14 And the Pharisees also, who were covetous, heard all these
+things: and they derided him.
+
+16:15 And he said unto them, Ye are they which justify yourselves
+before men; but God knoweth your hearts: for that which is highly
+esteemed among men is abomination in the sight of God.
+
+16:16 The law and the prophets were until John: since that time the
+kingdom of God is preached, and every man presseth into it.
+
+16:17 And it is easier for heaven and earth to pass, than one tittle
+of the law to fail.
+
+16:18 Whosoever putteth away his wife, and marrieth another,
+committeth adultery: and whosoever marrieth her that is put away from
+her husband committeth adultery.
+
+16:19 There was a certain rich man, which was clothed in purple and
+fine linen, and fared sumptuously every day: 16:20 And there was a
+certain beggar named Lazarus, which was laid at his gate, full of
+sores, 16:21 And desiring to be fed with the crumbs which fell from
+the rich man's table: moreover the dogs came and licked his sores.
+
+16:22 And it came to pass, that the beggar died, and was carried by
+the angels into Abraham's bosom: the rich man also died, and was
+buried; 16:23 And in hell he lift up his eyes, being in torments, and
+seeth Abraham afar off, and Lazarus in his bosom.
+
+16:24 And he cried and said, Father Abraham, have mercy on me, and
+send Lazarus, that he may dip the tip of his finger in water, and cool
+my tongue; for I am tormented in this flame.
+
+16:25 But Abraham said, Son, remember that thou in thy lifetime
+receivedst thy good things, and likewise Lazarus evil things: but now
+he is comforted, and thou art tormented.
+
+16:26 And beside all this, between us and you there is a great gulf
+fixed: so that they which would pass from hence to you cannot; neither
+can they pass to us, that would come from thence.
+
+16:27 Then he said, I pray thee therefore, father, that thou wouldest
+send him to my father's house: 16:28 For I have five brethren; that he
+may testify unto them, lest they also come into this place of torment.
+
+16:29 Abraham saith unto him, They have Moses and the prophets; let
+them hear them.
+
+16:30 And he said, Nay, father Abraham: but if one went unto them from
+the dead, they will repent.
+
+16:31 And he said unto him, If they hear not Moses and the prophets,
+neither will they be persuaded, though one rose from the dead.
+
+17:1 Then said he unto the disciples, It is impossible but that
+offences will come: but woe unto him, through whom they come! 17:2 It
+were better for him that a millstone were hanged about his neck, and
+he cast into the sea, than that he should offend one of these little
+ones.
+
+17:3 Take heed to yourselves: If thy brother trespass against thee,
+rebuke him; and if he repent, forgive him.
+
+17:4 And if he trespass against thee seven times in a day, and seven
+times in a day turn again to thee, saying, I repent; thou shalt
+forgive him.
+
+17:5 And the apostles said unto the Lord, Increase our faith.
+
+17:6 And the Lord said, If ye had faith as a grain of mustard seed, ye
+might say unto this sycamine tree, Be thou plucked up by the root, and
+be thou planted in the sea; and it should obey you.
+
+17:7 But which of you, having a servant plowing or feeding cattle,
+will say unto him by and by, when he is come from the field, Go and
+sit down to meat? 17:8 And will not rather say unto him, Make ready
+wherewith I may sup, and gird thyself, and serve me, till I have eaten
+and drunken; and afterward thou shalt eat and drink? 17:9 Doth he
+thank that servant because he did the things that were commanded him?
+I trow not.
+
+17:10 So likewise ye, when ye shall have done all those things which
+are commanded you, say, We are unprofitable servants: we have done
+that which was our duty to do.
+
+17:11 And it came to pass, as he went to Jerusalem, that he passed
+through the midst of Samaria and Galilee.
+
+17:12 And as he entered into a certain village, there met him ten men
+that were lepers, which stood afar off: 17:13 And they lifted up their
+voices, and said, Jesus, Master, have mercy on us.
+
+17:14 And when he saw them, he said unto them, Go shew yourselves unto
+the priests. And it came to pass, that, as they went, they were
+cleansed.
+
+17:15 And one of them, when he saw that he was healed, turned back,
+and with a loud voice glorified God, 17:16 And fell down on his face
+at his feet, giving him thanks: and he was a Samaritan.
+
+17:17 And Jesus answering said, Were there not ten cleansed? but where
+are the nine? 17:18 There are not found that returned to give glory
+to God, save this stranger.
+
+17:19 And he said unto him, Arise, go thy way: thy faith hath made
+thee whole.
+
+17:20 And when he was demanded of the Pharisees, when the kingdom of
+God should come, he answered them and said, The kingdom of God cometh
+not with observation: 17:21 Neither shall they say, Lo here! or, lo
+there! for, behold, the kingdom of God is within you.
+
+17:22 And he said unto the disciples, The days will come, when ye
+shall desire to see one of the days of the Son of man, and ye shall
+not see it.
+
+17:23 And they shall say to you, See here; or, see there: go not after
+them, nor follow them.
+
+17:24 For as the lightning, that lighteneth out of the one part under
+heaven, shineth unto the other part under heaven; so shall also the
+Son of man be in his day.
+
+17:25 But first must he suffer many things, and be rejected of this
+generation.
+
+17:26 And as it was in the days of Noe, so shall it be also in the
+days of the Son of man.
+
+17:27 They did eat, they drank, they married wives, they were given in
+marriage, until the day that Noe entered into the ark, and the flood
+came, and destroyed them all.
+
+17:28 Likewise also as it was in the days of Lot; they did eat, they
+drank, they bought, they sold, they planted, they builded; 17:29 But
+the same day that Lot went out of Sodom it rained fire and brimstone
+from heaven, and destroyed them all.
+
+17:30 Even thus shall it be in the day when the Son of man is
+revealed.
+
+17:31 In that day, he which shall be upon the housetop, and his stuff
+in the house, let him not come down to take it away: and he that is in
+the field, let him likewise not return back.
+
+17:32 Remember Lot's wife.
+
+17:33 Whosoever shall seek to save his life shall lose it; and
+whosoever shall lose his life shall preserve it.
+
+17:34 I tell you, in that night there shall be two men in one bed; the
+one shall be taken, and the other shall be left.
+
+17:35 Two women shall be grinding together; the one shall be taken,
+and the other left.
+
+17:36 Two men shall be in the field; the one shall be taken, and the
+other left.
+
+17:37 And they answered and said unto him, Where, Lord? And he said
+unto them, Wheresoever the body is, thither will the eagles be
+gathered together.
+
+18:1 And he spake a parable unto them to this end, that men ought
+always to pray, and not to faint; 18:2 Saying, There was in a city a
+judge, which feared not God, neither regarded man: 18:3 And there was
+a widow in that city; and she came unto him, saying, Avenge me of mine
+adversary.
+
+18:4 And he would not for a while: but afterward he said within
+himself, Though I fear not God, nor regard man; 18:5 Yet because this
+widow troubleth me, I will avenge her, lest by her continual coming
+she weary me.
+
+18:6 And the Lord said, Hear what the unjust judge saith.
+
+18:7 And shall not God avenge his own elect, which cry day and night
+unto him, though he bear long with them? 18:8 I tell you that he will
+avenge them speedily. Nevertheless when the Son of man cometh, shall
+he find faith on the earth? 18:9 And he spake this parable unto
+certain which trusted in themselves that they were righteous, and
+despised others: 18:10 Two men went up into the temple to pray; the
+one a Pharisee, and the other a publican.
+
+18:11 The Pharisee stood and prayed thus with himself, God, I thank
+thee, that I am not as other men are, extortioners, unjust,
+adulterers, or even as this publican.
+
+18:12 I fast twice in the week, I give tithes of all that I possess.
+
+18:13 And the publican, standing afar off, would not lift up so much
+as his eyes unto heaven, but smote upon his breast, saying, God be
+merciful to me a sinner.
+
+18:14 I tell you, this man went down to his house justified rather
+than the other: for every one that exalteth himself shall be abased;
+and he that humbleth himself shall be exalted.
+
+18:15 And they brought unto him also infants, that he would touch
+them: but when his disciples saw it, they rebuked them.
+
+18:16 But Jesus called them unto him, and said, Suffer little children
+to come unto me, and forbid them not: for of such is the kingdom of
+God.
+
+18:17 Verily I say unto you, Whosoever shall not receive the kingdom
+of God as a little child shall in no wise enter therein.
+
+18:18 And a certain ruler asked him, saying, Good Master, what shall I
+do to inherit eternal life? 18:19 And Jesus said unto him, Why
+callest thou me good? none is good, save one, that is, God.
+
+18:20 Thou knowest the commandments, Do not commit adultery, Do not
+kill, Do not steal, Do not bear false witness, Honour thy father and
+thy mother.
+
+18:21 And he said, All these have I kept from my youth up.
+
+18:22 Now when Jesus heard these things, he said unto him, Yet lackest
+thou one thing: sell all that thou hast, and distribute unto the poor,
+and thou shalt have treasure in heaven: and come, follow me.
+
+18:23 And when he heard this, he was very sorrowful: for he was very
+rich.
+
+18:24 And when Jesus saw that he was very sorrowful, he said, How
+hardly shall they that have riches enter into the kingdom of God!
+18:25 For it is easier for a camel to go through a needle's eye, than
+for a rich man to enter into the kingdom of God.
+
+18:26 And they that heard it said, Who then can be saved? 18:27 And
+he said, The things which are impossible with men are possible with
+God.
+
+18:28 Then Peter said, Lo, we have left all, and followed thee.
+
+18:29 And he said unto them, Verily I say unto you, There is no man
+that hath left house, or parents, or brethren, or wife, or children,
+for the kingdom of God's sake, 18:30 Who shall not receive manifold
+more in this present time, and in the world to come life everlasting.
+
+18:31 Then he took unto him the twelve, and said unto them, Behold, we
+go up to Jerusalem, and all things that are written by the prophets
+concerning the Son of man shall be accomplished.
+
+18:32 For he shall be delivered unto the Gentiles, and shall be
+mocked, and spitefully entreated, and spitted on: 18:33 And they shall
+scourge him, and put him to death: and the third day he shall rise
+again.
+
+18:34 And they understood none of these things: and this saying was
+hid from them, neither knew they the things which were spoken.
+
+18:35 And it came to pass, that as he was come nigh unto Jericho, a
+certain blind man sat by the way side begging: 18:36 And hearing the
+multitude pass by, he asked what it meant.
+
+18:37 And they told him, that Jesus of Nazareth passeth by.
+
+18:38 And he cried, saying, Jesus, thou son of David, have mercy on
+me.
+
+18:39 And they which went before rebuked him, that he should hold his
+peace: but he cried so much the more, Thou son of David, have mercy on
+me.
+
+18:40 And Jesus stood, and commanded him to be brought unto him: and
+when he was come near, he asked him, 18:41 Saying, What wilt thou that
+I shall do unto thee? And he said, Lord, that I may receive my sight.
+
+18:42 And Jesus said unto him, Receive thy sight: thy faith hath saved
+thee.
+
+18:43 And immediately he received his sight, and followed him,
+glorifying God: and all the people, when they saw it, gave praise unto
+God.
+
+19:1 And Jesus entered and passed through Jericho.
+
+19:2 And, behold, there was a man named Zacchaeus, which was the chief
+among the publicans, and he was rich.
+
+19:3 And he sought to see Jesus who he was; and could not for the
+press, because he was little of stature.
+
+19:4 And he ran before, and climbed up into a sycomore tree to see
+him: for he was to pass that way.
+
+19:5 And when Jesus came to the place, he looked up, and saw him, and
+said unto him, Zacchaeus, make haste, and come down; for to day I must
+abide at thy house.
+
+19:6 And he made haste, and came down, and received him joyfully.
+
+19:7 And when they saw it, they all murmured, saying, That he was gone
+to be guest with a man that is a sinner.
+
+19:8 And Zacchaeus stood, and said unto the Lord: Behold, Lord, the
+half of my goods I give to the poor; and if I have taken any thing
+from any man by false accusation, I restore him fourfold.
+
+19:9 And Jesus said unto him, This day is salvation come to this
+house, forsomuch as he also is a son of Abraham.
+
+19:10 For the Son of man is come to seek and to save that which was
+lost.
+
+19:11 And as they heard these things, he added and spake a parable,
+because he was nigh to Jerusalem, and because they thought that the
+kingdom of God should immediately appear.
+
+19:12 He said therefore, A certain nobleman went into a far country to
+receive for himself a kingdom, and to return.
+
+19:13 And he called his ten servants, and delivered them ten pounds,
+and said unto them, Occupy till I come.
+
+19:14 But his citizens hated him, and sent a message after him,
+saying, We will not have this man to reign over us.
+
+19:15 And it came to pass, that when he was returned, having received
+the kingdom, then he commanded these servants to be called unto him,
+to whom he had given the money, that he might know how much every man
+had gained by trading.
+
+19:16 Then came the first, saying, Lord, thy pound hath gained ten
+pounds.
+
+19:17 And he said unto him, Well, thou good servant: because thou hast
+been faithful in a very little, have thou authority over ten cities.
+
+19:18 And the second came, saying, Lord, thy pound hath gained five
+pounds.
+
+19:19 And he said likewise to him, Be thou also over five cities.
+
+19:20 And another came, saying, Lord, behold, here is thy pound, which
+I have kept laid up in a napkin: 19:21 For I feared thee, because thou
+art an austere man: thou takest up that thou layedst not down, and
+reapest that thou didst not sow.
+
+19:22 And he saith unto him, Out of thine own mouth will I judge thee,
+thou wicked servant. Thou knewest that I was an austere man, taking up
+that I laid not down, and reaping that I did not sow: 19:23 Wherefore
+then gavest not thou my money into the bank, that at my coming I might
+have required mine own with usury? 19:24 And he said unto them that
+stood by, Take from him the pound, and give it to him that hath ten
+pounds.
+
+19:25 (And they said unto him, Lord, he hath ten pounds.) 19:26 For I
+say unto you, That unto every one which hath shall be given; and from
+him that hath not, even that he hath shall be taken away from him.
+
+19:27 But those mine enemies, which would not that I should reign over
+them, bring hither, and slay them before me.
+
+19:28 And when he had thus spoken, he went before, ascending up to
+Jerusalem.
+
+19:29 And it came to pass, when he was come nigh to Bethphage and
+Bethany, at the mount called the mount of Olives, he sent two of his
+disciples, 19:30 Saying, Go ye into the village over against you; in
+the which at your entering ye shall find a colt tied, whereon yet
+never man sat: loose him, and bring him hither.
+
+19:31 And if any man ask you, Why do ye loose him? thus shall ye say
+unto him, Because the Lord hath need of him.
+
+19:32 And they that were sent went their way, and found even as he had
+said unto them.
+
+19:33 And as they were loosing the colt, the owners thereof said unto
+them, Why loose ye the colt? 19:34 And they said, The Lord hath need
+of him.
+
+19:35 And they brought him to Jesus: and they cast their garments upon
+the colt, and they set Jesus thereon.
+
+19:36 And as he went, they spread their clothes in the way.
+
+19:37 And when he was come nigh, even now at the descent of the mount
+of Olives, the whole multitude of the disciples began to rejoice and
+praise God with a loud voice for all the mighty works that they had
+seen; 19:38 Saying, Blessed be the King that cometh in the name of the
+Lord: peace in heaven, and glory in the highest.
+
+19:39 And some of the Pharisees from among the multitude said unto
+him, Master, rebuke thy disciples.
+
+19:40 And he answered and said unto them, I tell you that, if these
+should hold their peace, the stones would immediately cry out.
+
+19:41 And when he was come near, he beheld the city, and wept over it,
+19:42 Saying, If thou hadst known, even thou, at least in this thy
+day, the things which belong unto thy peace! but now they are hid from
+thine eyes.
+
+19:43 For the days shall come upon thee, that thine enemies shall cast
+a trench about thee, and compass thee round, and keep thee in on every
+side, 19:44 And shall lay thee even with the ground, and thy children
+within thee; and they shall not leave in thee one stone upon another;
+because thou knewest not the time of thy visitation.
+
+19:45 And he went into the temple, and began to cast out them that
+sold therein, and them that bought; 19:46 Saying unto them, It is
+written, My house is the house of prayer: but ye have made it a den of
+thieves.
+
+19:47 And he taught daily in the temple. But the chief priests and the
+scribes and the chief of the people sought to destroy him, 19:48 And
+could not find what they might do: for all the people were very
+attentive to hear him.
+
+20:1 And it came to pass, that on one of those days, as he taught the
+people in the temple, and preached the gospel, the chief priests and
+the scribes came upon him with the elders, 20:2 And spake unto him,
+saying, Tell us, by what authority doest thou these things? or who is
+he that gave thee this authority? 20:3 And he answered and said unto
+them, I will also ask you one thing; and answer me: 20:4 The baptism
+of John, was it from heaven, or of men? 20:5 And they reasoned with
+themselves, saying, If we shall say, From heaven; he will say, Why
+then believed ye him not? 20:6 But and if we say, Of men; all the
+people will stone us: for they be persuaded that John was a prophet.
+
+20:7 And they answered, that they could not tell whence it was.
+
+20:8 And Jesus said unto them, Neither tell I you by what authority I
+do these things.
+
+20:9 Then began he to speak to the people this parable; A certain man
+planted a vineyard, and let it forth to husbandmen, and went into a
+far country for a long time.
+
+20:10 And at the season he sent a servant to the husbandmen, that they
+should give him of the fruit of the vineyard: but the husbandmen beat
+him, and sent him away empty.
+
+20:11 And again he sent another servant: and they beat him also, and
+entreated him shamefully, and sent him away empty.
+
+20:12 And again he sent a third: and they wounded him also, and cast
+him out.
+
+20:13 Then said the lord of the vineyard, What shall I do? I will send
+my beloved son: it may be they will reverence him when they see him.
+
+20:14 But when the husbandmen saw him, they reasoned among themselves,
+saying, This is the heir: come, let us kill him, that the inheritance
+may be ours.
+
+20:15 So they cast him out of the vineyard, and killed him. What
+therefore shall the lord of the vineyard do unto them? 20:16 He shall
+come and destroy these husbandmen, and shall give the vineyard to
+others. And when they heard it, they said, God forbid.
+
+20:17 And he beheld them, and said, What is this then that is written,
+The stone which the builders rejected, the same is become the head of
+the corner? 20:18 Whosoever shall fall upon that stone shall be
+broken; but on whomsoever it shall fall, it will grind him to powder.
+
+20:19 And the chief priests and the scribes the same hour sought to
+lay hands on him; and they feared the people: for they perceived that
+he had spoken this parable against them.
+
+20:20 And they watched him, and sent forth spies, which should feign
+themselves just men, that they might take hold of his words, that so
+they might deliver him unto the power and authority of the governor.
+
+20:21 And they asked him, saying, Master, we know that thou sayest and
+teachest rightly, neither acceptest thou the person of any, but
+teachest the way of God truly: 20:22 Is it lawful for us to give
+tribute unto Caesar, or no? 20:23 But he perceived their craftiness,
+and said unto them, Why tempt ye me? 20:24 Shew me a penny. Whose
+image and superscription hath it? They answered and said, Caesar's.
+
+20:25 And he said unto them, Render therefore unto Caesar the things
+which be Caesar's, and unto God the things which be God's.
+
+20:26 And they could not take hold of his words before the people: and
+they marvelled at his answer, and held their peace.
+
+20:27 Then came to him certain of the Sadducees, which deny that there
+is any resurrection; and they asked him, 20:28 Saying, Master, Moses
+wrote unto us, If any man's brother die, having a wife, and he die
+without children, that his brother should take his wife, and raise up
+seed unto his brother.
+
+20:29 There were therefore seven brethren: and the first took a wife,
+and died without children.
+
+20:30 And the second took her to wife, and he died childless.
+
+20:31 And the third took her; and in like manner the seven also: and
+they left no children, and died.
+
+20:32 Last of all the woman died also.
+
+20:33 Therefore in the resurrection whose wife of them is she? for
+seven had her to wife.
+
+20:34 And Jesus answering said unto them, The children of this world
+marry, and are given in marriage: 20:35 But they which shall be
+accounted worthy to obtain that world, and the resurrection from the
+dead, neither marry, nor are given in marriage: 20:36 Neither can they
+die any more: for they are equal unto the angels; and are the children
+of God, being the children of the resurrection.
+
+20:37 Now that the dead are raised, even Moses shewed at the bush,
+when he calleth the Lord the God of Abraham, and the God of Isaac, and
+the God of Jacob.
+
+20:38 For he is not a God of the dead, but of the living: for all live
+unto him.
+
+20:39 Then certain of the scribes answering said, Master, thou hast
+well said.
+
+20:40 And after that they durst not ask him any question at all.
+
+20:41 And he said unto them, How say they that Christ is David's son?
+20:42 And David himself saith in the book of Psalms, The LORD said
+unto my Lord, Sit thou on my right hand, 20:43 Till I make thine
+enemies thy footstool.
+
+20:44 David therefore calleth him Lord, how is he then his son? 20:45
+Then in the audience of all the people he said unto his disciples,
+20:46 Beware of the scribes, which desire to walk in long robes, and
+love greetings in the markets, and the highest seats in the
+synagogues, and the chief rooms at feasts; 20:47 Which devour widows'
+houses, and for a shew make long prayers: the same shall receive
+greater damnation.
+
+21:1 And he looked up, and saw the rich men casting their gifts into
+the treasury.
+
+21:2 And he saw also a certain poor widow casting in thither two
+mites.
+
+21:3 And he said, Of a truth I say unto you, that this poor widow hath
+cast in more than they all: 21:4 For all these have of their abundance
+cast in unto the offerings of God: but she of her penury hath cast in
+all the living that she had.
+
+21:5 And as some spake of the temple, how it was adorned with goodly
+stones and gifts, he said, 21:6 As for these things which ye behold,
+the days will come, in the which there shall not be left one stone
+upon another, that shall not be thrown down.
+
+21:7 And they asked him, saying, Master, but when shall these things
+be? and what sign will there be when these things shall come to pass?
+21:8 And he said, Take heed that ye be not deceived: for many shall
+come in my name, saying, I am Christ; and the time draweth near: go ye
+not therefore after them.
+
+21:9 But when ye shall hear of wars and commotions, be not terrified:
+for these things must first come to pass; but the end is not by and
+by.
+
+21:10 Then said he unto them, Nation shall rise against nation, and
+kingdom against kingdom: 21:11 And great earthquakes shall be in
+divers places, and famines, and pestilences; and fearful sights and
+great signs shall there be from heaven.
+
+21:12 But before all these, they shall lay their hands on you, and
+persecute you, delivering you up to the synagogues, and into prisons,
+being brought before kings and rulers for my name's sake.
+
+21:13 And it shall turn to you for a testimony.
+
+21:14 Settle it therefore in your hearts, not to meditate before what
+ye shall answer: 21:15 For I will give you a mouth and wisdom, which
+all your adversaries shall not be able to gainsay nor resist.
+
+21:16 And ye shall be betrayed both by parents, and brethren, and
+kinsfolks, and friends; and some of you shall they cause to be put to
+death.
+
+21:17 And ye shall be hated of all men for my name's sake.
+
+21:18 But there shall not an hair of your head perish.
+
+21:19 In your patience possess ye your souls.
+
+21:20 And when ye shall see Jerusalem compassed with armies, then know
+that the desolation thereof is nigh.
+
+21:21 Then let them which are in Judaea flee to the mountains; and let
+them which are in the midst of it depart out; and let not them that
+are in the countries enter thereinto.
+
+21:22 For these be the days of vengeance, that all things which are
+written may be fulfilled.
+
+21:23 But woe unto them that are with child, and to them that give
+suck, in those days! for there shall be great distress in the land,
+and wrath upon this people.
+
+21:24 And they shall fall by the edge of the sword, and shall be led
+away captive into all nations: and Jerusalem shall be trodden down of
+the Gentiles, until the times of the Gentiles be fulfilled.
+
+21:25 And there shall be signs in the sun, and in the moon, and in the
+stars; and upon the earth distress of nations, with perplexity; the
+sea and the waves roaring; 21:26 Men's hearts failing them for fear,
+and for looking after those things which are coming on the earth: for
+the powers of heaven shall be shaken.
+
+21:27 And then shall they see the Son of man coming in a cloud with
+power and great glory.
+
+21:28 And when these things begin to come to pass, then look up, and
+lift up your heads; for your redemption draweth nigh.
+
+21:29 And he spake to them a parable; Behold the fig tree, and all the
+trees; 21:30 When they now shoot forth, ye see and know of your own
+selves that summer is now nigh at hand.
+
+21:31 So likewise ye, when ye see these things come to pass, know ye
+that the kingdom of God is nigh at hand.
+
+21:32 Verily I say unto you, This generation shall not pass away, till
+all be fulfilled.
+
+21:33 Heaven and earth shall pass away: but my words shall not pass
+away.
+
+21:34 And take heed to yourselves, lest at any time your hearts be
+overcharged with surfeiting, and drunkenness, and cares of this life,
+and so that day come upon you unawares.
+
+21:35 For as a snare shall it come on all them that dwell on the face
+of the whole earth.
+
+21:36 Watch ye therefore, and pray always, that ye may be accounted
+worthy to escape all these things that shall come to pass, and to
+stand before the Son of man.
+
+21:37 And in the day time he was teaching in the temple; and at night
+he went out, and abode in the mount that is called the mount of
+Olives.
+
+21:38 And all the people came early in the morning to him in the
+temple, for to hear him.
+
+22:1 Now the feast of unleavened bread drew nigh, which is called the
+Passover.
+
+22:2 And the chief priests and scribes sought how they might kill him;
+for they feared the people.
+
+22:3 Then entered Satan into Judas surnamed Iscariot, being of the
+number of the twelve.
+
+22:4 And he went his way, and communed with the chief priests and
+captains, how he might betray him unto them.
+
+22:5 And they were glad, and covenanted to give him money.
+
+22:6 And he promised, and sought opportunity to betray him unto them
+in the absence of the multitude.
+
+22:7 Then came the day of unleavened bread, when the passover must be
+killed.
+
+22:8 And he sent Peter and John, saying, Go and prepare us the
+passover, that we may eat.
+
+22:9 And they said unto him, Where wilt thou that we prepare? 22:10
+And he said unto them, Behold, when ye are entered into the city,
+there shall a man meet you, bearing a pitcher of water; follow him
+into the house where he entereth in.
+
+22:11 And ye shall say unto the goodman of the house, The Master saith
+unto thee, Where is the guestchamber, where I shall eat the passover
+with my disciples? 22:12 And he shall shew you a large upper room
+furnished: there make ready.
+
+22:13 And they went, and found as he had said unto them: and they made
+ready the passover.
+
+22:14 And when the hour was come, he sat down, and the twelve apostles
+with him.
+
+22:15 And he said unto them, With desire I have desired to eat this
+passover with you before I suffer: 22:16 For I say unto you, I will
+not any more eat thereof, until it be fulfilled in the kingdom of God.
+
+22:17 And he took the cup, and gave thanks, and said, Take this, and
+divide it among yourselves: 22:18 For I say unto you, I will not drink
+of the fruit of the vine, until the kingdom of God shall come.
+
+22:19 And he took bread, and gave thanks, and brake it, and gave unto
+them, saying, This is my body which is given for you: this do in
+remembrance of me.
+
+22:20 Likewise also the cup after supper, saying, This cup is the new
+testament in my blood, which is shed for you.
+
+22:21 But, behold, the hand of him that betrayeth me is with me on the
+table.
+
+22:22 And truly the Son of man goeth, as it was determined: but woe
+unto that man by whom he is betrayed! 22:23 And they began to enquire
+among themselves, which of them it was that should do this thing.
+
+22:24 And there was also a strife among them, which of them should be
+accounted the greatest.
+
+22:25 And he said unto them, The kings of the Gentiles exercise
+lordship over them; and they that exercise authority upon them are
+called benefactors.
+
+22:26 But ye shall not be so: but he that is greatest among you, let
+him be as the younger; and he that is chief, as he that doth serve.
+
+22:27 For whether is greater, he that sitteth at meat, or he that
+serveth? is not he that sitteth at meat? but I am among you as he
+that serveth.
+
+22:28 Ye are they which have continued with me in my temptations.
+
+22:29 And I appoint unto you a kingdom, as my Father hath appointed
+unto me; 22:30 That ye may eat and drink at my table in my kingdom,
+and sit on thrones judging the twelve tribes of Israel.
+
+22:31 And the Lord said, Simon, Simon, behold, Satan hath desired to
+have you, that he may sift you as wheat: 22:32 But I have prayed for
+thee, that thy faith fail not: and when thou art converted, strengthen
+thy brethren.
+
+22:33 And he said unto him, Lord, I am ready to go with thee, both
+into prison, and to death.
+
+22:34 And he said, I tell thee, Peter, the cock shall not crow this
+day, before that thou shalt thrice deny that thou knowest me.
+
+22:35 And he said unto them, When I sent you without purse, and scrip,
+and shoes, lacked ye any thing? And they said, Nothing.
+
+22:36 Then said he unto them, But now, he that hath a purse, let him
+take it, and likewise his scrip: and he that hath no sword, let him
+sell his garment, and buy one.
+
+22:37 For I say unto you, that this that is written must yet be
+accomplished in me, And he was reckoned among the transgressors: for
+the things concerning me have an end.
+
+22:38 And they said, Lord, behold, here are two swords. And he said
+unto them, It is enough.
+
+22:39 And he came out, and went, as he was wont, to the mount of
+Olives; and his disciples also followed him.
+
+22:40 And when he was at the place, he said unto them, Pray that ye
+enter not into temptation.
+
+22:41 And he was withdrawn from them about a stone's cast, and kneeled
+down, and prayed, 22:42 Saying, Father, if thou be willing, remove
+this cup from me: nevertheless not my will, but thine, be done.
+
+22:43 And there appeared an angel unto him from heaven, strengthening
+him.
+
+22:44 And being in an agony he prayed more earnestly: and his sweat
+was as it were great drops of blood falling down to the ground.
+
+22:45 And when he rose up from prayer, and was come to his disciples,
+he found them sleeping for sorrow, 22:46 And said unto them, Why sleep
+ye? rise and pray, lest ye enter into temptation.
+
+22:47 And while he yet spake, behold a multitude, and he that was
+called Judas, one of the twelve, went before them, and drew near unto
+Jesus to kiss him.
+
+22:48 But Jesus said unto him, Judas, betrayest thou the Son of man
+with a kiss? 22:49 When they which were about him saw what would
+follow, they said unto him, Lord, shall we smite with the sword?
+22:50 And one of them smote the servant of the high priest, and cut
+off his right ear.
+
+22:51 And Jesus answered and said, Suffer ye thus far. And he touched
+his ear, and healed him.
+
+22:52 Then Jesus said unto the chief priests, and captains of the
+temple, and the elders, which were come to him, Be ye come out, as
+against a thief, with swords and staves? 22:53 When I was daily with
+you in the temple, ye stretched forth no hands against me: but this is
+your hour, and the power of darkness.
+
+22:54 Then took they him, and led him, and brought him into the high
+priest's house. And Peter followed afar off.
+
+22:55 And when they had kindled a fire in the midst of the hall, and
+were set down together, Peter sat down among them.
+
+22:56 But a certain maid beheld him as he sat by the fire, and
+earnestly looked upon him, and said, This man was also with him.
+
+22:57 And he denied him, saying, Woman, I know him not.
+
+22:58 And after a little while another saw him, and said, Thou art
+also of them. And Peter said, Man, I am not.
+
+22:59 And about the space of one hour after another confidently
+affirmed, saying, Of a truth this fellow also was with him: for he is
+a Galilaean.
+
+22:60 And Peter said, Man, I know not what thou sayest. And
+immediately, while he yet spake, the cock crew.
+
+22:61 And the Lord turned, and looked upon Peter. And Peter remembered
+the word of the Lord, how he had said unto him, Before the cock crow,
+thou shalt deny me thrice.
+
+22:62 And Peter went out, and wept bitterly.
+
+22:63 And the men that held Jesus mocked him, and smote him.
+
+22:64 And when they had blindfolded him, they struck him on the face,
+and asked him, saying, Prophesy, who is it that smote thee? 22:65 And
+many other things blasphemously spake they against him.
+
+22:66 And as soon as it was day, the elders of the people and the
+chief priests and the scribes came together, and led him into their
+council, saying, 22:67 Art thou the Christ? tell us. And he said unto
+them, If I tell you, ye will not believe: 22:68 And if I also ask you,
+ye will not answer me, nor let me go.
+
+22:69 Hereafter shall the Son of man sit on the right hand of the
+power of God.
+
+22:70 Then said they all, Art thou then the Son of God? And he said
+unto them, Ye say that I am.
+
+22:71 And they said, What need we any further witness? for we
+ourselves have heard of his own mouth.
+
+23:1 And the whole multitude of them arose, and led him unto Pilate.
+
+23:2 And they began to accuse him, saying, We found this fellow
+perverting the nation, and forbidding to give tribute to Caesar,
+saying that he himself is Christ a King.
+
+23:3 And Pilate asked him, saying, Art thou the King of the Jews? And
+he answered him and said, Thou sayest it.
+
+23:4 Then said Pilate to the chief priests and to the people, I find
+no fault in this man.
+
+23:5 And they were the more fierce, saying, He stirreth up the people,
+teaching throughout all Jewry, beginning from Galilee to this place.
+
+23:6 When Pilate heard of Galilee, he asked whether the man were a
+Galilaean.
+
+23:7 And as soon as he knew that he belonged unto Herod's
+jurisdiction, he sent him to Herod, who himself also was at Jerusalem
+at that time.
+
+23:8 And when Herod saw Jesus, he was exceeding glad: for he was
+desirous to see him of a long season, because he had heard many things
+of him; and he hoped to have seen some miracle done by him.
+
+23:9 Then he questioned with him in many words; but he answered him
+nothing.
+
+23:10 And the chief priests and scribes stood and vehemently accused
+him.
+
+23:11 And Herod with his men of war set him at nought, and mocked him,
+and arrayed him in a gorgeous robe, and sent him again to Pilate.
+
+23:12 And the same day Pilate and Herod were made friends together:
+for before they were at enmity between themselves.
+
+23:13 And Pilate, when he had called together the chief priests and
+the rulers and the people, 23:14 Said unto them, Ye have brought this
+man unto me, as one that perverteth the people: and, behold, I, having
+examined him before you, have found no fault in this man touching
+those things whereof ye accuse him: 23:15 No, nor yet Herod: for I
+sent you to him; and, lo, nothing worthy of death is done unto him.
+
+23:16 I will therefore chastise him, and release him.
+
+23:17 (For of necessity he must release one unto them at the feast.)
+23:18 And they cried out all at once, saying, Away with this man, and
+release unto us Barabbas: 23:19 (Who for a certain sedition made in
+the city, and for murder, was cast into prison.) 23:20 Pilate
+therefore, willing to release Jesus, spake again to them.
+
+23:21 But they cried, saying, Crucify him, crucify him.
+
+23:22 And he said unto them the third time, Why, what evil hath he
+done? I have found no cause of death in him: I will therefore chastise
+him, and let him go.
+
+23:23 And they were instant with loud voices, requiring that he might
+be crucified. And the voices of them and of the chief priests
+prevailed.
+
+23:24 And Pilate gave sentence that it should be as they required.
+
+23:25 And he released unto them him that for sedition and murder was
+cast into prison, whom they had desired; but he delivered Jesus to
+their will.
+
+23:26 And as they led him away, they laid hold upon one Simon, a
+Cyrenian, coming out of the country, and on him they laid the cross,
+that he might bear it after Jesus.
+
+23:27 And there followed him a great company of people, and of women,
+which also bewailed and lamented him.
+
+23:28 But Jesus turning unto them said, Daughters of Jerusalem, weep
+not for me, but weep for yourselves, and for your children.
+
+23:29 For, behold, the days are coming, in the which they shall say,
+Blessed are the barren, and the wombs that never bare, and the paps
+which never gave suck.
+
+23:30 Then shall they begin to say to the mountains, Fall on us; and
+to the hills, Cover us.
+
+23:31 For if they do these things in a green tree, what shall be done
+in the dry? 23:32 And there were also two other, malefactors, led
+with him to be put to death.
+
+23:33 And when they were come to the place, which is called Calvary,
+there they crucified him, and the malefactors, one on the right hand,
+and the other on the left.
+
+23:34 Then said Jesus, Father, forgive them; for they know not what
+they do. And they parted his raiment, and cast lots.
+
+23:35 And the people stood beholding. And the rulers also with them
+derided him, saying, He saved others; let him save himself, if he be
+Christ, the chosen of God.
+
+23:36 And the soldiers also mocked him, coming to him, and offering
+him vinegar, 23:37 And saying, If thou be the king of the Jews, save
+thyself.
+
+23:38 And a superscription also was written over him in letters of
+Greek, and Latin, and Hebrew, THIS IS THE KING OF THE JEWS.
+
+23:39 And one of the malefactors which were hanged railed on him,
+saying, If thou be Christ, save thyself and us.
+
+23:40 But the other answering rebuked him, saying, Dost not thou fear
+God, seeing thou art in the same condemnation? 23:41 And we indeed
+justly; for we receive the due reward of our deeds: but this man hath
+done nothing amiss.
+
+23:42 And he said unto Jesus, Lord, remember me when thou comest into
+thy kingdom.
+
+23:43 And Jesus said unto him, Verily I say unto thee, To day shalt
+thou be with me in paradise.
+
+23:44 And it was about the sixth hour, and there was a darkness over
+all the earth until the ninth hour.
+
+23:45 And the sun was darkened, and the veil of the temple was rent in
+the midst.
+
+23:46 And when Jesus had cried with a loud voice, he said, Father,
+into thy hands I commend my spirit: and having said thus, he gave up
+the ghost.
+
+23:47 Now when the centurion saw what was done, he glorified God,
+saying, Certainly this was a righteous man.
+
+23:48 And all the people that came together to that sight, beholding
+the things which were done, smote their breasts, and returned.
+
+23:49 And all his acquaintance, and the women that followed him from
+Galilee, stood afar off, beholding these things.
+
+23:50 And, behold, there was a man named Joseph, a counsellor; and he
+was a good man, and a just: 23:51 (The same had not consented to the
+counsel and deed of them;) he was of Arimathaea, a city of the Jews:
+who also himself waited for the kingdom of God.
+
+23:52 This man went unto Pilate, and begged the body of Jesus.
+
+23:53 And he took it down, and wrapped it in linen, and laid it in a
+sepulchre that was hewn in stone, wherein never man before was laid.
+
+23:54 And that day was the preparation, and the sabbath drew on.
+
+23:55 And the women also, which came with him from Galilee, followed
+after, and beheld the sepulchre, and how his body was laid.
+
+23:56 And they returned, and prepared spices and ointments; and rested
+the sabbath day according to the commandment.
+
+24:1 Now upon the first day of the week, very early in the morning,
+they came unto the sepulchre, bringing the spices which they had
+prepared, and certain others with them.
+
+24:2 And they found the stone rolled away from the sepulchre.
+
+24:3 And they entered in, and found not the body of the Lord Jesus.
+
+24:4 And it came to pass, as they were much perplexed thereabout,
+behold, two men stood by them in shining garments: 24:5 And as they
+were afraid, and bowed down their faces to the earth, they said unto
+them, Why seek ye the living among the dead? 24:6 He is not here, but
+is risen: remember how he spake unto you when he was yet in Galilee,
+24:7 Saying, The Son of man must be delivered into the hands of sinful
+men, and be crucified, and the third day rise again.
+
+24:8 And they remembered his words, 24:9 And returned from the
+sepulchre, and told all these things unto the eleven, and to all the
+rest.
+
+24:10 It was Mary Magdalene and Joanna, and Mary the mother of James,
+and other women that were with them, which told these things unto the
+apostles.
+
+24:11 And their words seemed to them as idle tales, and they believed
+them not.
+
+24:12 Then arose Peter, and ran unto the sepulchre; and stooping down,
+he beheld the linen clothes laid by themselves, and departed,
+wondering in himself at that which was come to pass.
+
+24:13 And, behold, two of them went that same day to a village called
+Emmaus, which was from Jerusalem about threescore furlongs.
+
+24:14 And they talked together of all these things which had happened.
+
+24:15 And it came to pass, that, while they communed together and
+reasoned, Jesus himself drew near, and went with them.
+
+24:16 But their eyes were holden that they should not know him.
+
+24:17 And he said unto them, What manner of communications are these
+that ye have one to another, as ye walk, and are sad? 24:18 And the
+one of them, whose name was Cleopas, answering said unto him, Art thou
+only a stranger in Jerusalem, and hast not known the things which are
+come to pass there in these days? 24:19 And he said unto them, What
+things? And they said unto him, Concerning Jesus of Nazareth, which
+was a prophet mighty in deed and word before God and all the people:
+24:20 And how the chief priests and our rulers delivered him to be
+condemned to death, and have crucified him.
+
+24:21 But we trusted that it had been he which should have redeemed
+Israel: and beside all this, to day is the third day since these
+things were done.
+
+24:22 Yea, and certain women also of our company made us astonished,
+which were early at the sepulchre; 24:23 And when they found not his
+body, they came, saying, that they had also seen a vision of angels,
+which said that he was alive.
+
+24:24 And certain of them which were with us went to the sepulchre,
+and found it even so as the women had said: but him they saw not.
+
+24:25 Then he said unto them, O fools, and slow of heart to believe
+all that the prophets have spoken: 24:26 Ought not Christ to have
+suffered these things, and to enter into his glory? 24:27 And
+beginning at Moses and all the prophets, he expounded unto them in all
+the scriptures the things concerning himself.
+
+24:28 And they drew nigh unto the village, whither they went: and he
+made as though he would have gone further.
+
+24:29 But they constrained him, saying, Abide with us: for it is
+toward evening, and the day is far spent. And he went in to tarry with
+them.
+
+24:30 And it came to pass, as he sat at meat with them, he took bread,
+and blessed it, and brake, and gave to them.
+
+24:31 And their eyes were opened, and they knew him; and he vanished
+out of their sight.
+
+24:32 And they said one to another, Did not our heart burn within us,
+while he talked with us by the way, and while he opened to us the
+scriptures? 24:33 And they rose up the same hour, and returned to
+Jerusalem, and found the eleven gathered together, and them that were
+with them, 24:34 Saying, The Lord is risen indeed, and hath appeared
+to Simon.
+
+24:35 And they told what things were done in the way, and how he was
+known of them in breaking of bread.
+
+24:36 And as they thus spake, Jesus himself stood in the midst of
+them, and saith unto them, Peace be unto you.
+
+24:37 But they were terrified and affrighted, and supposed that they
+had seen a spirit.
+
+24:38 And he said unto them, Why are ye troubled? and why do thoughts
+arise in your hearts? 24:39 Behold my hands and my feet, that it is I
+myself: handle me, and see; for a spirit hath not flesh and bones, as
+ye see me have.
+
+24:40 And when he had thus spoken, he shewed them his hands and his
+feet.
+
+24:41 And while they yet believed not for joy, and wondered, he said
+unto them, Have ye here any meat? 24:42 And they gave him a piece of
+a broiled fish, and of an honeycomb.
+
+24:43 And he took it, and did eat before them.
+
+24:44 And he said unto them, These are the words which I spake unto
+you, while I was yet with you, that all things must be fulfilled,
+which were written in the law of Moses, and in the prophets, and in
+the psalms, concerning me.
+
+24:45 Then opened he their understanding, that they might understand
+the scriptures, 24:46 And said unto them, Thus it is written, and thus
+it behoved Christ to suffer, and to rise from the dead the third day:
+24:47 And that repentance and remission of sins should be preached in
+his name among all nations, beginning at Jerusalem.
+
+24:48 And ye are witnesses of these things.
+
+24:49 And, behold, I send the promise of my Father upon you: but tarry
+ye in the city of Jerusalem, until ye be endued with power from on
+high.
+
+24:50 And he led them out as far as to Bethany, and he lifted up his
+hands, and blessed them.
+
+24:51 And it came to pass, while he blessed them, he was parted from
+them, and carried up into heaven.
+
+24:52 And they worshipped him, and returned to Jerusalem with great
+joy: 24:53 And were continually in the temple, praising and blessing
+God. Amen.
+
+
+
+
+The Gospel According to Saint John
+
+
+1:1 In the beginning was the Word, and the Word was with God, and the
+Word was God.
+
+1:2 The same was in the beginning with God.
+
+1:3 All things were made by him; and without him was not any thing
+made that was made.
+
+1:4 In him was life; and the life was the light of men.
+
+1:5 And the light shineth in darkness; and the darkness comprehended
+it not.
+
+1:6 There was a man sent from God, whose name was John.
+
+1:7 The same came for a witness, to bear witness of the Light, that
+all men through him might believe.
+
+1:8 He was not that Light, but was sent to bear witness of that Light.
+
+1:9 That was the true Light, which lighteth every man that cometh into
+the world.
+
+1:10 He was in the world, and the world was made by him, and the world
+knew him not.
+
+1:11 He came unto his own, and his own received him not.
+
+1:12 But as many as received him, to them gave he power to become the
+sons of God, even to them that believe on his name: 1:13 Which were
+born, not of blood, nor of the will of the flesh, nor of the will of
+man, but of God.
+
+1:14 And the Word was made flesh, and dwelt among us, (and we beheld
+his glory, the glory as of the only begotten of the Father,) full of
+grace and truth.
+
+1:15 John bare witness of him, and cried, saying, This was he of whom
+I spake, He that cometh after me is preferred before me: for he was
+before me.
+
+1:16 And of his fulness have all we received, and grace for grace.
+
+1:17 For the law was given by Moses, but grace and truth came by Jesus
+Christ.
+
+1:18 No man hath seen God at any time, the only begotten Son, which is
+in the bosom of the Father, he hath declared him.
+
+1:19 And this is the record of John, when the Jews sent priests and
+Levites from Jerusalem to ask him, Who art thou? 1:20 And he
+confessed, and denied not; but confessed, I am not the Christ.
+
+1:21 And they asked him, What then? Art thou Elias? And he saith, I am
+not. Art thou that prophet? And he answered, No.
+
+1:22 Then said they unto him, Who art thou? that we may give an answer
+to them that sent us. What sayest thou of thyself? 1:23 He said, I am
+the voice of one crying in the wilderness, Make straight the way of
+the Lord, as said the prophet Esaias.
+
+1:24 And they which were sent were of the Pharisees.
+
+1:25 And they asked him, and said unto him, Why baptizest thou then,
+if thou be not that Christ, nor Elias, neither that prophet? 1:26
+John answered them, saying, I baptize with water: but there standeth
+one among you, whom ye know not; 1:27 He it is, who coming after me is
+preferred before me, whose shoe's latchet I am not worthy to unloose.
+
+1:28 These things were done in Bethabara beyond Jordan, where John was
+baptizing.
+
+1:29 The next day John seeth Jesus coming unto him, and saith, Behold
+the Lamb of God, which taketh away the sin of the world.
+
+1:30 This is he of whom I said, After me cometh a man which is
+preferred before me: for he was before me.
+
+1:31 And I knew him not: but that he should be made manifest to
+Israel, therefore am I come baptizing with water.
+
+1:32 And John bare record, saying, I saw the Spirit descending from
+heaven like a dove, and it abode upon him.
+
+1:33 And I knew him not: but he that sent me to baptize with water,
+the same said unto me, Upon whom thou shalt see the Spirit descending,
+and remaining on him, the same is he which baptizeth with the Holy
+Ghost.
+
+1:34 And I saw, and bare record that this is the Son of God.
+
+1:35 Again the next day after John stood, and two of his disciples;
+1:36 And looking upon Jesus as he walked, he saith, Behold the Lamb of
+God! 1:37 And the two disciples heard him speak, and they followed
+Jesus.
+
+1:38 Then Jesus turned, and saw them following, and saith unto them,
+What seek ye? They said unto him, Rabbi, (which is to say, being
+interpreted, Master,) where dwellest thou? 1:39 He saith unto them,
+Come and see. They came and saw where he dwelt, and abode with him
+that day: for it was about the tenth hour.
+
+1:40 One of the two which heard John speak, and followed him, was
+Andrew, Simon Peter's brother.
+
+1:41 He first findeth his own brother Simon, and saith unto him, We
+have found the Messias, which is, being interpreted, the Christ.
+
+1:42 And he brought him to Jesus. And when Jesus beheld him, he said,
+Thou art Simon the son of Jona: thou shalt be called Cephas, which is
+by interpretation, A stone.
+
+1:43 The day following Jesus would go forth into Galilee, and findeth
+Philip, and saith unto him, Follow me.
+
+1:44 Now Philip was of Bethsaida, the city of Andrew and Peter.
+
+1:45 Philip findeth Nathanael, and saith unto him, We have found him,
+of whom Moses in the law, and the prophets, did write, Jesus of
+Nazareth, the son of Joseph.
+
+1:46 And Nathanael said unto him, Can there any good thing come out of
+Nazareth? Philip saith unto him, Come and see.
+
+1:47 Jesus saw Nathanael coming to him, and saith of him, Behold an
+Israelite indeed, in whom is no guile! 1:48 Nathanael saith unto him,
+Whence knowest thou me? Jesus answered and said unto him, Before that
+Philip called thee, when thou wast under the fig tree, I saw thee.
+
+1:49 Nathanael answered and saith unto him, Rabbi, thou art the Son of
+God; thou art the King of Israel.
+
+1:50 Jesus answered and said unto him, Because I said unto thee, I saw
+thee under the fig tree, believest thou? thou shalt see greater things
+than these.
+
+1:51 And he saith unto him, Verily, verily, I say unto you, Hereafter
+ye shall see heaven open, and the angels of God ascending and
+descending upon the Son of man.
+
+2:1 And the third day there was a marriage in Cana of Galilee; and the
+mother of Jesus was there: 2:2 And both Jesus was called, and his
+disciples, to the marriage.
+
+2:3 And when they wanted wine, the mother of Jesus saith unto him,
+They have no wine.
+
+2:4 Jesus saith unto her, Woman, what have I to do with thee? mine
+hour is not yet come.
+
+2:5 His mother saith unto the servants, Whatsoever he saith unto you,
+do it.
+
+2:6 And there were set there six waterpots of stone, after the manner
+of the purifying of the Jews, containing two or three firkins apiece.
+
+2:7 Jesus saith unto them, Fill the waterpots with water. And they
+filled them up to the brim.
+
+2:8 And he saith unto them, Draw out now, and bear unto the governor
+of the feast. And they bare it.
+
+2:9 When the ruler of the feast had tasted the water that was made
+wine, and knew not whence it was: (but the servants which drew the
+water knew;) the governor of the feast called the bridegroom, 2:10 And
+saith unto him, Every man at the beginning doth set forth good wine;
+and when men have well drunk, then that which is worse: but thou hast
+kept the good wine until now.
+
+2:11 This beginning of miracles did Jesus in Cana of Galilee, and
+manifested forth his glory; and his disciples believed on him.
+
+2:12 After this he went down to Capernaum, he, and his mother, and his
+brethren, and his disciples: and they continued there not many days.
+
+2:13 And the Jews' passover was at hand, and Jesus went up to
+Jerusalem.
+
+2:14 And found in the temple those that sold oxen and sheep and doves,
+and the changers of money sitting: 2:15 And when he had made a scourge
+of small cords, he drove them all out of the temple, and the sheep,
+and the oxen; and poured out the changers' money, and overthrew the
+tables; 2:16 And said unto them that sold doves, Take these things
+hence; make not my Father's house an house of merchandise.
+
+2:17 And his disciples remembered that it was written, The zeal of
+thine house hath eaten me up.
+
+2:18 Then answered the Jews and said unto him, What sign shewest thou
+unto us, seeing that thou doest these things? 2:19 Jesus answered and
+said unto them, Destroy this temple, and in three days I will raise it
+up.
+
+2:20 Then said the Jews, Forty and six years was this temple in
+building, and wilt thou rear it up in three days? 2:21 But he spake
+of the temple of his body.
+
+2:22 When therefore he was risen from the dead, his disciples
+remembered that he had said this unto them; and they believed the
+scripture, and the word which Jesus had said.
+
+2:23 Now when he was in Jerusalem at the passover, in the feast day,
+many believed in his name, when they saw the miracles which he did.
+
+2:24 But Jesus did not commit himself unto them, because he knew all
+men, 2:25 And needed not that any should testify of man: for he knew
+what was in man.
+
+3:1 There was a man of the Pharisees, named Nicodemus, a ruler of the
+Jews: 3:2 The same came to Jesus by night, and said unto him, Rabbi,
+we know that thou art a teacher come from God: for no man can do these
+miracles that thou doest, except God be with him.
+
+3:3 Jesus answered and said unto him, Verily, verily, I say unto thee,
+Except a man be born again, he cannot see the kingdom of God.
+
+3:4 Nicodemus saith unto him, How can a man be born when he is old?
+can he enter the second time into his mother's womb, and be born? 3:5
+Jesus answered, Verily, verily, I say unto thee, Except a man be born
+of water and of the Spirit, he cannot enter into the kingdom of God.
+
+3:6 That which is born of the flesh is flesh; and that which is born
+of the Spirit is spirit.
+
+3:7 Marvel not that I said unto thee, Ye must be born again.
+
+3:8 The wind bloweth where it listeth, and thou hearest the sound
+thereof, but canst not tell whence it cometh, and whither it goeth: so
+is every one that is born of the Spirit.
+
+3:9 Nicodemus answered and said unto him, How can these things be?
+3:10 Jesus answered and said unto him, Art thou a master of Israel,
+and knowest not these things? 3:11 Verily, verily, I say unto thee,
+We speak that we do know, and testify that we have seen; and ye
+receive not our witness.
+
+3:12 If I have told you earthly things, and ye believe not, how shall
+ye believe, if I tell you of heavenly things? 3:13 And no man hath
+ascended up to heaven, but he that came down from heaven, even the Son
+of man which is in heaven.
+
+3:14 And as Moses lifted up the serpent in the wilderness, even so
+must the Son of man be lifted up: 3:15 That whosoever believeth in him
+should not perish, but have eternal life.
+
+3:16 For God so loved the world, that he gave his only begotten Son,
+that whosoever believeth in him should not perish, but have
+everlasting life.
+
+3:17 For God sent not his Son into the world to condemn the world; but
+that the world through him might be saved.
+
+3:18 He that believeth on him is not condemned: but he that believeth
+not is condemned already, because he hath not believed in the name of
+the only begotten Son of God.
+
+3:19 And this is the condemnation, that light is come into the world,
+and men loved darkness rather than light, because their deeds were
+evil.
+
+3:20 For every one that doeth evil hateth the light, neither cometh to
+the light, lest his deeds should be reproved.
+
+3:21 But he that doeth truth cometh to the light, that his deeds may
+be made manifest, that they are wrought in God.
+
+3:22 After these things came Jesus and his disciples into the land of
+Judaea; and there he tarried with them, and baptized.
+
+3:23 And John also was baptizing in Aenon near to Salim, because there
+was much water there: and they came, and were baptized.
+
+3:24 For John was not yet cast into prison.
+
+3:25 Then there arose a question between some of John's disciples and
+the Jews about purifying.
+
+3:26 And they came unto John, and said unto him, Rabbi, he that was
+with thee beyond Jordan, to whom thou barest witness, behold, the same
+baptizeth, and all men come to him.
+
+3:27 John answered and said, A man can receive nothing, except it be
+given him from heaven.
+
+3:28 Ye yourselves bear me witness, that I said, I am not the Christ,
+but that I am sent before him.
+
+3:29 He that hath the bride is the bridegroom: but the friend of the
+bridegroom, which standeth and heareth him, rejoiceth greatly because
+of the bridegroom's voice: this my joy therefore is fulfilled.
+
+3:30 He must increase, but I must decrease.
+
+3:31 He that cometh from above is above all: he that is of the earth
+is earthly, and speaketh of the earth: he that cometh from heaven is
+above all.
+
+3:32 And what he hath seen and heard, that he testifieth; and no man
+receiveth his testimony.
+
+3:33 He that hath received his testimony hath set to his seal that God
+is true.
+
+3:34 For he whom God hath sent speaketh the words of God: for God
+giveth not the Spirit by measure unto him.
+
+3:35 The Father loveth the Son, and hath given all things into his
+hand.
+
+3:36 He that believeth on the Son hath everlasting life: and he that
+believeth not the Son shall not see life; but the wrath of God abideth
+on him.
+
+4:1 When therefore the LORD knew how the Pharisees had heard that
+Jesus made and baptized more disciples than John, 4:2 (Though Jesus
+himself baptized not, but his disciples,) 4:3 He left Judaea, and
+departed again into Galilee.
+
+4:4 And he must needs go through Samaria.
+
+4:5 Then cometh he to a city of Samaria, which is called Sychar, near
+to the parcel of ground that Jacob gave to his son Joseph.
+
+4:6 Now Jacob's well was there. Jesus therefore, being wearied with
+his journey, sat thus on the well: and it was about the sixth hour.
+
+4:7 There cometh a woman of Samaria to draw water: Jesus saith unto
+her, Give me to drink.
+
+4:8 (For his disciples were gone away unto the city to buy meat.) 4:9
+Then saith the woman of Samaria unto him, How is it that thou, being a
+Jew, askest drink of me, which am a woman of Samaria? for the Jews
+have no dealings with the Samaritans.
+
+4:10 Jesus answered and said unto her, If thou knewest the gift of
+God, and who it is that saith to thee, Give me to drink; thou wouldest
+have asked of him, and he would have given thee living water.
+
+4:11 The woman saith unto him, Sir, thou hast nothing to draw with,
+and the well is deep: from whence then hast thou that living water?
+4:12 Art thou greater than our father Jacob, which gave us the well,
+and drank thereof himself, and his children, and his cattle? 4:13
+Jesus answered and said unto her, Whosoever drinketh of this water
+shall thirst again: 4:14 But whosoever drinketh of the water that I
+shall give him shall never thirst; but the water that I shall give him
+shall be in him a well of water springing up into everlasting life.
+
+4:15 The woman saith unto him, Sir, give me this water, that I thirst
+not, neither come hither to draw.
+
+4:16 Jesus saith unto her, Go, call thy husband, and come hither.
+
+4:17 The woman answered and said, I have no husband. Jesus said unto
+her, Thou hast well said, I have no husband: 4:18 For thou hast had
+five husbands; and he whom thou now hast is not thy husband: in that
+saidst thou truly.
+
+4:19 The woman saith unto him, Sir, I perceive that thou art a
+prophet.
+
+4:20 Our fathers worshipped in this mountain; and ye say, that in
+Jerusalem is the place where men ought to worship.
+
+4:21 Jesus saith unto her, Woman, believe me, the hour cometh, when ye
+shall neither in this mountain, nor yet at Jerusalem, worship the
+Father.
+
+4:22 Ye worship ye know not what: we know what we worship: for
+salvation is of the Jews.
+
+4:23 But the hour cometh, and now is, when the true worshippers shall
+worship the Father in spirit and in truth: for the Father seeketh such
+to worship him.
+
+4:24 God is a Spirit: and they that worship him must worship him in
+spirit and in truth.
+
+4:25 The woman saith unto him, I know that Messias cometh, which is
+called Christ: when he is come, he will tell us all things.
+
+4:26 Jesus saith unto her, I that speak unto thee am he.
+
+4:27 And upon this came his disciples, and marvelled that he talked
+with the woman: yet no man said, What seekest thou? or, Why talkest
+thou with her? 4:28 The woman then left her waterpot, and went her
+way into the city, and saith to the men, 4:29 Come, see a man, which
+told me all things that ever I did: is not this the Christ? 4:30 Then
+they went out of the city, and came unto him.
+
+4:31 In the mean while his disciples prayed him, saying, Master, eat.
+
+4:32 But he said unto them, I have meat to eat that ye know not of.
+
+4:33 Therefore said the disciples one to another, Hath any man brought
+him ought to eat? 4:34 Jesus saith unto them, My meat is to do the
+will of him that sent me, and to finish his work.
+
+4:35 Say not ye, There are yet four months, and then cometh harvest?
+behold, I say unto you, Lift up your eyes, and look on the fields; for
+they are white already to harvest.
+
+4:36 And he that reapeth receiveth wages, and gathereth fruit unto
+life eternal: that both he that soweth and he that reapeth may rejoice
+together.
+
+4:37 And herein is that saying true, One soweth, and another reapeth.
+
+4:38 I sent you to reap that whereon ye bestowed no labour: other men
+laboured, and ye are entered into their labours.
+
+4:39 And many of the Samaritans of that city believed on him for the
+saying of the woman, which testified, He told me all that ever I did.
+
+4:40 So when the Samaritans were come unto him, they besought him that
+he would tarry with them: and he abode there two days.
+
+4:41 And many more believed because of his own word; 4:42 And said
+unto the woman, Now we believe, not because of thy saying: for we have
+heard him ourselves, and know that this is indeed the Christ, the
+Saviour of the world.
+
+4:43 Now after two days he departed thence, and went into Galilee.
+
+4:44 For Jesus himself testified, that a prophet hath no honour in his
+own country.
+
+4:45 Then when he was come into Galilee, the Galilaeans received him,
+having seen all the things that he did at Jerusalem at the feast: for
+they also went unto the feast.
+
+4:46 So Jesus came again into Cana of Galilee, where he made the water
+wine. And there was a certain nobleman, whose son was sick at
+Capernaum.
+
+4:47 When he heard that Jesus was come out of Judaea into Galilee, he
+went unto him, and besought him that he would come down, and heal his
+son: for he was at the point of death.
+
+4:48 Then said Jesus unto him, Except ye see signs and wonders, ye
+will not believe.
+
+4:49 The nobleman saith unto him, Sir, come down ere my child die.
+
+4:50 Jesus saith unto him, Go thy way; thy son liveth. And the man
+believed the word that Jesus had spoken unto him, and he went his way.
+
+4:51 And as he was now going down, his servants met him, and told him,
+saying, Thy son liveth.
+
+4:52 Then enquired he of them the hour when he began to amend. And
+they said unto him, Yesterday at the seventh hour the fever left him.
+
+4:53 So the father knew that it was at the same hour, in the which
+Jesus said unto him, Thy son liveth: and himself believed, and his
+whole house.
+
+4:54 This is again the second miracle that Jesus did, when he was come
+out of Judaea into Galilee.
+
+5:1 After this there was a feast of the Jews; and Jesus went up to
+Jerusalem.
+
+5:2 Now there is at Jerusalem by the sheep market a pool, which is
+called in the Hebrew tongue Bethesda, having five porches.
+
+5:3 In these lay a great multitude of impotent folk, of blind, halt,
+withered, waiting for the moving of the water.
+
+5:4 For an angel went down at a certain season into the pool, and
+troubled the water: whosoever then first after the troubling of the
+water stepped in was made whole of whatsoever disease he had.
+
+5:5 And a certain man was there, which had an infirmity thirty and
+eight years.
+
+5:6 When Jesus saw him lie, and knew that he had been now a long time
+in that case, he saith unto him, Wilt thou be made whole? 5:7 The
+impotent man answered him, Sir, I have no man, when the water is
+troubled, to put me into the pool: but while I am coming, another
+steppeth down before me.
+
+5:8 Jesus saith unto him, Rise, take up thy bed, and walk.
+
+5:9 And immediately the man was made whole, and took up his bed, and
+walked: and on the same day was the sabbath.
+
+5:10 The Jews therefore said unto him that was cured, It is the
+sabbath day: it is not lawful for thee to carry thy bed.
+
+5:11 He answered them, He that made me whole, the same said unto me,
+Take up thy bed, and walk.
+
+5:12 Then asked they him, What man is that which said unto thee, Take
+up thy bed, and walk? 5:13 And he that was healed wist not who it
+was: for Jesus had conveyed himself away, a multitude being in that
+place.
+
+5:14 Afterward Jesus findeth him in the temple, and said unto him,
+Behold, thou art made whole: sin no more, lest a worse thing come unto
+thee.
+
+5:15 The man departed, and told the Jews that it was Jesus, which had
+made him whole.
+
+5:16 And therefore did the Jews persecute Jesus, and sought to slay
+him, because he had done these things on the sabbath day.
+
+5:17 But Jesus answered them, My Father worketh hitherto, and I work.
+
+5:18 Therefore the Jews sought the more to kill him, because he not
+only had broken the sabbath, but said also that God was his Father,
+making himself equal with God.
+
+5:19 Then answered Jesus and said unto them, Verily, verily, I say
+unto you, The Son can do nothing of himself, but what he seeth the
+Father do: for what things soever he doeth, these also doeth the Son
+likewise.
+
+5:20 For the Father loveth the Son, and sheweth him all things that
+himself doeth: and he will shew him greater works than these, that ye
+may marvel.
+
+5:21 For as the Father raiseth up the dead, and quickeneth them; even
+so the Son quickeneth whom he will.
+
+5:22 For the Father judgeth no man, but hath committed all judgment
+unto the Son: 5:23 That all men should honour the Son, even as they
+honour the Father.
+
+He that honoureth not the Son honoureth not the Father which hath sent
+him.
+
+5:24 Verily, verily, I say unto you, He that heareth my word, and
+believeth on him that sent me, hath everlasting life, and shall not
+come into condemnation; but is passed from death unto life.
+
+5:25 Verily, verily, I say unto you, The hour is coming, and now is,
+when the dead shall hear the voice of the Son of God: and they that
+hear shall live.
+
+5:26 For as the Father hath life in himself; so hath he given to the
+Son to have life in himself; 5:27 And hath given him authority to
+execute judgment also, because he is the Son of man.
+
+5:28 Marvel not at this: for the hour is coming, in the which all that
+are in the graves shall hear his voice, 5:29 And shall come forth;
+they that have done good, unto the resurrection of life; and they that
+have done evil, unto the resurrection of damnation.
+
+5:30 I can of mine own self do nothing: as I hear, I judge: and my
+judgment is just; because I seek not mine own will, but the will of
+the Father which hath sent me.
+
+5:31 If I bear witness of myself, my witness is not true.
+
+5:32 There is another that beareth witness of me; and I know that the
+witness which he witnesseth of me is true.
+
+5:33 Ye sent unto John, and he bare witness unto the truth.
+
+5:34 But I receive not testimony from man: but these things I say,
+that ye might be saved.
+
+5:35 He was a burning and a shining light: and ye were willing for a
+season to rejoice in his light.
+
+5:36 But I have greater witness than that of John: for the works which
+the Father hath given me to finish, the same works that I do, bear
+witness of me, that the Father hath sent me.
+
+5:37 And the Father himself, which hath sent me, hath borne witness of
+me.
+
+Ye have neither heard his voice at any time, nor seen his shape.
+
+5:38 And ye have not his word abiding in you: for whom he hath sent,
+him ye believe not.
+
+5:39 Search the scriptures; for in them ye think ye have eternal life:
+and they are they which testify of me.
+
+5:40 And ye will not come to me, that ye might have life.
+
+5:41 I receive not honour from men.
+
+5:42 But I know you, that ye have not the love of God in you.
+
+5:43 I am come in my Father's name, and ye receive me not: if another
+shall come in his own name, him ye will receive.
+
+5:44 How can ye believe, which receive honour one of another, and seek
+not the honour that cometh from God only? 5:45 Do not think that I
+will accuse you to the Father: there is one that accuseth you, even
+Moses, in whom ye trust.
+
+5:46 For had ye believed Moses, ye would have believed me; for he
+wrote of me.
+
+5:47 But if ye believe not his writings, how shall ye believe my
+words? 6:1 After these things Jesus went over the sea of Galilee,
+which is the sea of Tiberias.
+
+6:2 And a great multitude followed him, because they saw his miracles
+which he did on them that were diseased.
+
+6:3 And Jesus went up into a mountain, and there he sat with his
+disciples.
+
+6:4 And the passover, a feast of the Jews, was nigh.
+
+6:5 When Jesus then lifted up his eyes, and saw a great company come
+unto him, he saith unto Philip, Whence shall we buy bread, that these
+may eat? 6:6 And this he said to prove him: for he himself knew what
+he would do.
+
+6:7 Philip answered him, Two hundred pennyworth of bread is not
+sufficient for them, that every one of them may take a little.
+
+6:8 One of his disciples, Andrew, Simon Peter's brother, saith unto
+him, 6:9 There is a lad here, which hath five barley loaves, and two
+small fishes: but what are they among so many? 6:10 And Jesus said,
+Make the men sit down. Now there was much grass in the place. So the
+men sat down, in number about five thousand.
+
+6:11 And Jesus took the loaves; and when he had given thanks, he
+distributed to the disciples, and the disciples to them that were set
+down; and likewise of the fishes as much as they would.
+
+6:12 When they were filled, he said unto his disciples, Gather up the
+fragments that remain, that nothing be lost.
+
+6:13 Therefore they gathered them together, and filled twelve baskets
+with the fragments of the five barley loaves, which remained over and
+above unto them that had eaten.
+
+6:14 Then those men, when they had seen the miracle that Jesus did,
+said, This is of a truth that prophet that should come into the world.
+
+6:15 When Jesus therefore perceived that they would come and take him
+by force, to make him a king, he departed again into a mountain
+himself alone.
+
+6:16 And when even was now come, his disciples went down unto the sea,
+6:17 And entered into a ship, and went over the sea toward Capernaum.
+And it was now dark, and Jesus was not come to them.
+
+6:18 And the sea arose by reason of a great wind that blew.
+
+6:19 So when they had rowed about five and twenty or thirty furlongs,
+they see Jesus walking on the sea, and drawing nigh unto the ship: and
+they were afraid.
+
+6:20 But he saith unto them, It is I; be not afraid.
+
+6:21 Then they willingly received him into the ship: and immediately
+the ship was at the land whither they went.
+
+6:22 The day following, when the people which stood on the other side
+of the sea saw that there was none other boat there, save that one
+whereinto his disciples were entered, and that Jesus went not with his
+disciples into the boat, but that his disciples were gone away alone;
+6:23 (Howbeit there came other boats from Tiberias nigh unto the place
+where they did eat bread, after that the Lord had given thanks:) 6:24
+When the people therefore saw that Jesus was not there, neither his
+disciples, they also took shipping, and came to Capernaum, seeking for
+Jesus.
+
+6:25 And when they had found him on the other side of the sea, they
+said unto him, Rabbi, when camest thou hither? 6:26 Jesus answered
+them and said, Verily, verily, I say unto you, Ye seek me, not because
+ye saw the miracles, but because ye did eat of the loaves, and were
+filled.
+
+6:27 Labour not for the meat which perisheth, but for that meat which
+endureth unto everlasting life, which the Son of man shall give unto
+you: for him hath God the Father sealed.
+
+6:28 Then said they unto him, What shall we do, that we might work the
+works of God? 6:29 Jesus answered and said unto them, This is the
+work of God, that ye believe on him whom he hath sent.
+
+6:30 They said therefore unto him, What sign shewest thou then, that
+we may see, and believe thee? what dost thou work? 6:31 Our fathers
+did eat manna in the desert; as it is written, He gave them bread from
+heaven to eat.
+
+6:32 Then Jesus said unto them, Verily, verily, I say unto you, Moses
+gave you not that bread from heaven; but my Father giveth you the true
+bread from heaven.
+
+6:33 For the bread of God is he which cometh down from heaven, and
+giveth life unto the world.
+
+6:34 Then said they unto him, Lord, evermore give us this bread.
+
+6:35 And Jesus said unto them, I am the bread of life: he that cometh
+to me shall never hunger; and he that believeth on me shall never
+thirst.
+
+6:36 But I said unto you, That ye also have seen me, and believe not.
+
+6:37 All that the Father giveth me shall come to me; and him that
+cometh to me I will in no wise cast out.
+
+6:38 For I came down from heaven, not to do mine own will, but the
+will of him that sent me.
+
+6:39 And this is the Father's will which hath sent me, that of all
+which he hath given me I should lose nothing, but should raise it up
+again at the last day.
+
+6:40 And this is the will of him that sent me, that every one which
+seeth the Son, and believeth on him, may have everlasting life: and I
+will raise him up at the last day.
+
+6:41 The Jews then murmured at him, because he said, I am the bread
+which came down from heaven.
+
+6:42 And they said, Is not this Jesus, the son of Joseph, whose father
+and mother we know? how is it then that he saith, I came down from
+heaven? 6:43 Jesus therefore answered and said unto them, Murmur not
+among yourselves.
+
+6:44 No man can come to me, except the Father which hath sent me draw
+him: and I will raise him up at the last day.
+
+6:45 It is written in the prophets, And they shall be all taught of
+God.
+
+Every man therefore that hath heard, and hath learned of the Father,
+cometh unto me.
+
+6:46 Not that any man hath seen the Father, save he which is of God,
+he hath seen the Father.
+
+6:47 Verily, verily, I say unto you, He that believeth on me hath
+everlasting life.
+
+6:48 I am that bread of life.
+
+6:49 Your fathers did eat manna in the wilderness, and are dead.
+
+6:50 This is the bread which cometh down from heaven, that a man may
+eat thereof, and not die.
+
+6:51 I am the living bread which came down from heaven: if any man eat
+of this bread, he shall live for ever: and the bread that I will give
+is my flesh, which I will give for the life of the world.
+
+6:52 The Jews therefore strove among themselves, saying, How can this
+man give us his flesh to eat? 6:53 Then Jesus said unto them, Verily,
+verily, I say unto you, Except ye eat the flesh of the Son of man, and
+drink his blood, ye have no life in you.
+
+6:54 Whoso eateth my flesh, and drinketh my blood, hath eternal life;
+and I will raise him up at the last day.
+
+6:55 For my flesh is meat indeed, and my blood is drink indeed.
+
+6:56 He that eateth my flesh, and drinketh my blood, dwelleth in me,
+and I in him.
+
+6:57 As the living Father hath sent me, and I live by the Father: so
+he that eateth me, even he shall live by me.
+
+6:58 This is that bread which came down from heaven: not as your
+fathers did eat manna, and are dead: he that eateth of this bread
+shall live for ever.
+
+6:59 These things said he in the synagogue, as he taught in Capernaum.
+
+6:60 Many therefore of his disciples, when they had heard this, said,
+This is an hard saying; who can hear it? 6:61 When Jesus knew in
+himself that his disciples murmured at it, he said unto them, Doth
+this offend you? 6:62 What and if ye shall see the Son of man ascend
+up where he was before? 6:63 It is the spirit that quickeneth; the
+flesh profiteth nothing: the words that I speak unto you, they are
+spirit, and they are life.
+
+6:64 But there are some of you that believe not. For Jesus knew from
+the beginning who they were that believed not, and who should betray
+him.
+
+6:65 And he said, Therefore said I unto you, that no man can come unto
+me, except it were given unto him of my Father.
+
+6:66 From that time many of his disciples went back, and walked no
+more with him.
+
+6:67 Then said Jesus unto the twelve, Will ye also go away? 6:68 Then
+Simon Peter answered him, Lord, to whom shall we go? thou hast the
+words of eternal life.
+
+6:69 And we believe and are sure that thou art that Christ, the Son of
+the living God.
+
+6:70 Jesus answered them, Have not I chosen you twelve, and one of you
+is a devil? 6:71 He spake of Judas Iscariot the son of Simon: for he
+it was that should betray him, being one of the twelve.
+
+7:1 After these things Jesus walked in Galilee: for he would not walk
+in Jewry, because the Jews sought to kill him.
+
+7:2 Now the Jew's feast of tabernacles was at hand.
+
+7:3 His brethren therefore said unto him, Depart hence, and go into
+Judaea, that thy disciples also may see the works that thou doest.
+
+7:4 For there is no man that doeth any thing in secret, and he himself
+seeketh to be known openly. If thou do these things, shew thyself to
+the world.
+
+7:5 For neither did his brethren believe in him.
+
+7:6 Then Jesus said unto them, My time is not yet come: but your time
+is alway ready.
+
+7:7 The world cannot hate you; but me it hateth, because I testify of
+it, that the works thereof are evil.
+
+7:8 Go ye up unto this feast: I go not up yet unto this feast: for my
+time is not yet full come.
+
+7:9 When he had said these words unto them, he abode still in Galilee.
+
+7:10 But when his brethren were gone up, then went he also up unto the
+feast, not openly, but as it were in secret.
+
+7:11 Then the Jews sought him at the feast, and said, Where is he?
+7:12 And there was much murmuring among the people concerning him: for
+some said, He is a good man: others said, Nay; but he deceiveth the
+people.
+
+7:13 Howbeit no man spake openly of him for fear of the Jews.
+
+7:14 Now about the midst of the feast Jesus went up into the temple,
+and taught.
+
+7:15 And the Jews marvelled, saying, How knoweth this man letters,
+having never learned? 7:16 Jesus answered them, and said, My doctrine
+is not mine, but his that sent me.
+
+7:17 If any man will do his will, he shall know of the doctrine,
+whether it be of God, or whether I speak of myself.
+
+7:18 He that speaketh of himself seeketh his own glory: but he that
+seeketh his glory that sent him, the same is true, and no
+unrighteousness is in him.
+
+7:19 Did not Moses give you the law, and yet none of you keepeth the
+law? Why go ye about to kill me? 7:20 The people answered and said,
+Thou hast a devil: who goeth about to kill thee? 7:21 Jesus answered
+and said unto them, I have done one work, and ye all marvel.
+
+7:22 Moses therefore gave unto you circumcision; (not because it is of
+Moses, but of the fathers;) and ye on the sabbath day circumcise a
+man.
+
+7:23 If a man on the sabbath day receive circumcision, that the law of
+Moses should not be broken; are ye angry at me, because I have made a
+man every whit whole on the sabbath day? 7:24 Judge not according to
+the appearance, but judge righteous judgment.
+
+7:25 Then said some of them of Jerusalem, Is not this he, whom they
+seek to kill? 7:26 But, lo, he speaketh boldly, and they say nothing
+unto him. Do the rulers know indeed that this is the very Christ?
+7:27 Howbeit we know this man whence he is: but when Christ cometh, no
+man knoweth whence he is.
+
+7:28 Then cried Jesus in the temple as he taught, saying, Ye both know
+me, and ye know whence I am: and I am not come of myself, but he that
+sent me is true, whom ye know not.
+
+7:29 But I know him: for I am from him, and he hath sent me.
+
+7:30 Then they sought to take him: but no man laid hands on him,
+because his hour was not yet come.
+
+7:31 And many of the people believed on him, and said, When Christ
+cometh, will he do more miracles than these which this man hath done?
+7:32 The Pharisees heard that the people murmured such things
+concerning him; and the Pharisees and the chief priests sent officers
+to take him.
+
+7:33 Then said Jesus unto them, Yet a little while am I with you, and
+then I go unto him that sent me.
+
+7:34 Ye shall seek me, and shall not find me: and where I am, thither
+ye cannot come.
+
+7:35 Then said the Jews among themselves, Whither will he go, that we
+shall not find him? will he go unto the dispersed among the Gentiles,
+and teach the Gentiles? 7:36 What manner of saying is this that he
+said, Ye shall seek me, and shall not find me: and where I am, thither
+ye cannot come? 7:37 In the last day, that great day of the feast,
+Jesus stood and cried, saying, If any man thirst, let him come unto
+me, and drink.
+
+7:38 He that believeth on me, as the scripture hath said, out of his
+belly shall flow rivers of living water.
+
+7:39 (But this spake he of the Spirit, which they that believe on him
+should receive: for the Holy Ghost was not yet given; because that
+Jesus was not yet glorified.) 7:40 Many of the people therefore, when
+they heard this saying, said, Of a truth this is the Prophet.
+
+7:41 Others said, This is the Christ. But some said, Shall Christ come
+out of Galilee? 7:42 Hath not the scripture said, That Christ cometh
+of the seed of David, and out of the town of Bethlehem, where David
+was? 7:43 So there was a division among the people because of him.
+
+7:44 And some of them would have taken him; but no man laid hands on
+him.
+
+7:45 Then came the officers to the chief priests and Pharisees; and
+they said unto them, Why have ye not brought him? 7:46 The officers
+answered, Never man spake like this man.
+
+7:47 Then answered them the Pharisees, Are ye also deceived? 7:48
+Have any of the rulers or of the Pharisees believed on him? 7:49 But
+this people who knoweth not the law are cursed.
+
+7:50 Nicodemus saith unto them, (he that came to Jesus by night, being
+one of them,) 7:51 Doth our law judge any man, before it hear him, and
+know what he doeth? 7:52 They answered and said unto him, Art thou
+also of Galilee? Search, and look: for out of Galilee ariseth no
+prophet.
+
+7:53 And every man went unto his own house.
+
+8:1 Jesus went unto the mount of Olives.
+
+8:2 And early in the morning he came again into the temple, and all
+the people came unto him; and he sat down, and taught them.
+
+8:3 And the scribes and Pharisees brought unto him a woman taken in
+adultery; and when they had set her in the midst, 8:4 They say unto
+him, Master, this woman was taken in adultery, in the very act.
+
+8:5 Now Moses in the law commanded us, that such should be stoned: but
+what sayest thou? 8:6 This they said, tempting him, that they might
+have to accuse him. But Jesus stooped down, and with his finger wrote
+on the ground, as though he heard them not.
+
+8:7 So when they continued asking him, he lifted up himself, and said
+unto them, He that is without sin among you, let him first cast a
+stone at her.
+
+8:8 And again he stooped down, and wrote on the ground.
+
+8:9 And they which heard it, being convicted by their own conscience,
+went out one by one, beginning at the eldest, even unto the last: and
+Jesus was left alone, and the woman standing in the midst.
+
+8:10 When Jesus had lifted up himself, and saw none but the woman, he
+said unto her, Woman, where are those thine accusers? hath no man
+condemned thee? 8:11 She said, No man, Lord. And Jesus said unto her,
+Neither do I condemn thee: go, and sin no more.
+
+8:12 Then spake Jesus again unto them, saying, I am the light of the
+world: he that followeth me shall not walk in darkness, but shall have
+the light of life.
+
+8:13 The Pharisees therefore said unto him, Thou bearest record of
+thyself; thy record is not true.
+
+8:14 Jesus answered and said unto them, Though I bear record of
+myself, yet my record is true: for I know whence I came, and whither I
+go; but ye cannot tell whence I come, and whither I go.
+
+8:15 Ye judge after the flesh; I judge no man.
+
+8:16 And yet if I judge, my judgment is true: for I am not alone, but
+I and the Father that sent me.
+
+8:17 It is also written in your law, that the testimony of two men is
+true.
+
+8:18 I am one that bear witness of myself, and the Father that sent me
+beareth witness of me.
+
+8:19 Then said they unto him, Where is thy Father? Jesus answered, Ye
+neither know me, nor my Father: if ye had known me, ye should have
+known my Father also.
+
+8:20 These words spake Jesus in the treasury, as he taught in the
+temple: and no man laid hands on him; for his hour was not yet come.
+
+8:21 Then said Jesus again unto them, I go my way, and ye shall seek
+me, and shall die in your sins: whither I go, ye cannot come.
+
+8:22 Then said the Jews, Will he kill himself? because he saith,
+Whither I go, ye cannot come.
+
+8:23 And he said unto them, Ye are from beneath; I am from above: ye
+are of this world; I am not of this world.
+
+8:24 I said therefore unto you, that ye shall die in your sins: for if
+ye believe not that I am he, ye shall die in your sins.
+
+8:25 Then said they unto him, Who art thou? And Jesus saith unto them,
+Even the same that I said unto you from the beginning.
+
+8:26 I have many things to say and to judge of you: but he that sent
+me is true; and I speak to the world those things which I have heard
+of him.
+
+8:27 They understood not that he spake to them of the Father.
+
+8:28 Then said Jesus unto them, When ye have lifted up the Son of man,
+then shall ye know that I am he, and that I do nothing of myself; but
+as my Father hath taught me, I speak these things.
+
+8:29 And he that sent me is with me: the Father hath not left me
+alone; for I do always those things that please him.
+
+8:30 As he spake these words, many believed on him.
+
+8:31 Then said Jesus to those Jews which believed on him, If ye
+continue in my word, then are ye my disciples indeed; 8:32 And ye
+shall know the truth, and the truth shall make you free.
+
+8:33 They answered him, We be Abraham's seed, and were never in
+bondage to any man: how sayest thou, Ye shall be made free? 8:34
+Jesus answered them, Verily, verily, I say unto you, Whosoever
+committeth sin is the servant of sin.
+
+8:35 And the servant abideth not in the house for ever: but the Son
+abideth ever.
+
+8:36 If the Son therefore shall make you free, ye shall be free
+indeed.
+
+8:37 I know that ye are Abraham's seed; but ye seek to kill me,
+because my word hath no place in you.
+
+8:38 I speak that which I have seen with my Father: and ye do that
+which ye have seen with your father.
+
+8:39 They answered and said unto him, Abraham is our father. Jesus
+saith unto them, If ye were Abraham's children, ye would do the works
+of Abraham.
+
+8:40 But now ye seek to kill me, a man that hath told you the truth,
+which I have heard of God: this did not Abraham.
+
+8:41 Ye do the deeds of your father. Then said they to him, We be not
+born of fornication; we have one Father, even God.
+
+8:42 Jesus said unto them, If God were your Father, ye would love me:
+for I proceeded forth and came from God; neither came I of myself, but
+he sent me.
+
+8:43 Why do ye not understand my speech? even because ye cannot hear
+my word.
+
+8:44 Ye are of your father the devil, and the lusts of your father ye
+will do. He was a murderer from the beginning, and abode not in the
+truth, because there is no truth in him. When he speaketh a lie, he
+speaketh of his own: for he is a liar, and the father of it.
+
+8:45 And because I tell you the truth, ye believe me not.
+
+8:46 Which of you convinceth me of sin? And if I say the truth, why do
+ye not believe me? 8:47 He that is of God heareth God's words: ye
+therefore hear them not, because ye are not of God.
+
+8:48 Then answered the Jews, and said unto him, Say we not well that
+thou art a Samaritan, and hast a devil? 8:49 Jesus answered, I have
+not a devil; but I honour my Father, and ye do dishonour me.
+
+8:50 And I seek not mine own glory: there is one that seeketh and
+judgeth.
+
+8:51 Verily, verily, I say unto you, If a man keep my saying, he shall
+never see death.
+
+8:52 Then said the Jews unto him, Now we know that thou hast a devil.
+
+Abraham is dead, and the prophets; and thou sayest, If a man keep my
+saying, he shall never taste of death.
+
+8:53 Art thou greater than our father Abraham, which is dead? and the
+prophets are dead: whom makest thou thyself? 8:54 Jesus answered, If
+I honour myself, my honour is nothing: it is my Father that honoureth
+me; of whom ye say, that he is your God: 8:55 Yet ye have not known
+him; but I know him: and if I should say, I know him not, I shall be a
+liar like unto you: but I know him, and keep his saying.
+
+8:56 Your father Abraham rejoiced to see my day: and he saw it, and
+was glad.
+
+8:57 Then said the Jews unto him, Thou art not yet fifty years old,
+and hast thou seen Abraham? 8:58 Jesus said unto them, Verily,
+verily, I say unto you, Before Abraham was, I am.
+
+8:59 Then took they up stones to cast at him: but Jesus hid himself,
+and went out of the temple, going through the midst of them, and so
+passed by.
+
+9:1 And as Jesus passed by, he saw a man which was blind from his
+birth.
+
+9:2 And his disciples asked him, saying, Master, who did sin, this
+man, or his parents, that he was born blind? 9:3 Jesus answered,
+Neither hath this man sinned, nor his parents: but that the works of
+God should be made manifest in him.
+
+9:4 I must work the works of him that sent me, while it is day: the
+night cometh, when no man can work.
+
+9:5 As long as I am in the world, I am the light of the world.
+
+9:6 When he had thus spoken, he spat on the ground, and made clay of
+the spittle, and he anointed the eyes of the blind man with the clay,
+9:7 And said unto him, Go, wash in the pool of Siloam, (which is by
+interpretation, Sent.) He went his way therefore, and washed, and came
+seeing.
+
+9:8 The neighbours therefore, and they which before had seen him that
+he was blind, said, Is not this he that sat and begged? 9:9 Some
+said, This is he: others said, He is like him: but he said, I am he.
+
+9:10 Therefore said they unto him, How were thine eyes opened? 9:11
+He answered and said, A man that is called Jesus made clay, and
+anointed mine eyes, and said unto me, Go to the pool of Siloam, and
+wash: and I went and washed, and I received sight.
+
+9:12 Then said they unto him, Where is he? He said, I know not.
+
+9:13 They brought to the Pharisees him that aforetime was blind.
+
+9:14 And it was the sabbath day when Jesus made the clay, and opened
+his eyes.
+
+9:15 Then again the Pharisees also asked him how he had received his
+sight. He said unto them, He put clay upon mine eyes, and I washed,
+and do see.
+
+9:16 Therefore said some of the Pharisees, This man is not of God,
+because he keepeth not the sabbath day. Others said, How can a man
+that is a sinner do such miracles? And there was a division among
+them.
+
+9:17 They say unto the blind man again, What sayest thou of him, that
+he hath opened thine eyes? He said, He is a prophet.
+
+9:18 But the Jews did not believe concerning him, that he had been
+blind, and received his sight, until they called the parents of him
+that had received his sight.
+
+9:19 And they asked them, saying, Is this your son, who ye say was
+born blind? how then doth he now see? 9:20 His parents answered them
+and said, We know that this is our son, and that he was born blind:
+9:21 But by what means he now seeth, we know not; or who hath opened
+his eyes, we know not: he is of age; ask him: he shall speak for
+himself.
+
+9:22 These words spake his parents, because they feared the Jews: for
+the Jews had agreed already, that if any man did confess that he was
+Christ, he should be put out of the synagogue.
+
+9:23 Therefore said his parents, He is of age; ask him.
+
+9:24 Then again called they the man that was blind, and said unto him,
+Give God the praise: we know that this man is a sinner.
+
+9:25 He answered and said, Whether he be a sinner or no, I know not:
+one thing I know, that, whereas I was blind, now I see.
+
+9:26 Then said they to him again, What did he to thee? how opened he
+thine eyes? 9:27 He answered them, I have told you already, and ye
+did not hear: wherefore would ye hear it again? will ye also be his
+disciples? 9:28 Then they reviled him, and said, Thou art his
+disciple; but we are Moses' disciples.
+
+9:29 We know that God spake unto Moses: as for this fellow, we know
+not from whence he is.
+
+9:30 The man answered and said unto them, Why herein is a marvellous
+thing, that ye know not from whence he is, and yet he hath opened mine
+eyes.
+
+9:31 Now we know that God heareth not sinners: but if any man be a
+worshipper of God, and doeth his will, him he heareth.
+
+9:32 Since the world began was it not heard that any man opened the
+eyes of one that was born blind.
+
+9:33 If this man were not of God, he could do nothing.
+
+9:34 They answered and said unto him, Thou wast altogether born in
+sins, and dost thou teach us? And they cast him out.
+
+9:35 Jesus heard that they had cast him out; and when he had found
+him, he said unto him, Dost thou believe on the Son of God? 9:36 He
+answered and said, Who is he, Lord, that I might believe on him? 9:37
+And Jesus said unto him, Thou hast both seen him, and it is he that
+talketh with thee.
+
+9:38 And he said, Lord, I believe. And he worshipped him.
+
+9:39 And Jesus said, For judgment I am come into this world, that they
+which see not might see; and that they which see might be made blind.
+
+9:40 And some of the Pharisees which were with him heard these words,
+and said unto him, Are we blind also? 9:41 Jesus said unto them, If
+ye were blind, ye should have no sin: but now ye say, We see;
+therefore your sin remaineth.
+
+10:1 Verily, verily, I say unto you, He that entereth not by the door
+into the sheepfold, but climbeth up some other way, the same is a
+thief and a robber.
+
+10:2 But he that entereth in by the door is the shepherd of the sheep.
+
+10:3 To him the porter openeth; and the sheep hear his voice: and he
+calleth his own sheep by name, and leadeth them out.
+
+10:4 And when he putteth forth his own sheep, he goeth before them,
+and the sheep follow him: for they know his voice.
+
+10:5 And a stranger will they not follow, but will flee from him: for
+they know not the voice of strangers.
+
+10:6 This parable spake Jesus unto them: but they understood not what
+things they were which he spake unto them.
+
+10:7 Then said Jesus unto them again, Verily, verily, I say unto you,
+I am the door of the sheep.
+
+10:8 All that ever came before me are thieves and robbers: but the
+sheep did not hear them.
+
+10:9 I am the door: by me if any man enter in, he shall be saved, and
+shall go in and out, and find pasture.
+
+10:10 The thief cometh not, but for to steal, and to kill, and to
+destroy: I am come that they might have life, and that they might have
+it more abundantly.
+
+10:11 I am the good shepherd: the good shepherd giveth his life for
+the sheep.
+
+10:12 But he that is an hireling, and not the shepherd, whose own the
+sheep are not, seeth the wolf coming, and leaveth the sheep, and
+fleeth: and the wolf catcheth them, and scattereth the sheep.
+
+10:13 The hireling fleeth, because he is an hireling, and careth not
+for the sheep.
+
+10:14 I am the good shepherd, and know my sheep, and am known of mine.
+
+10:15 As the Father knoweth me, even so know I the Father: and I lay
+down my life for the sheep.
+
+10:16 And other sheep I have, which are not of this fold: them also I
+must bring, and they shall hear my voice; and there shall be one fold,
+and one shepherd.
+
+10:17 Therefore doth my Father love me, because I lay down my life,
+that I might take it again.
+
+10:18 No man taketh it from me, but I lay it down of myself. I have
+power to lay it down, and I have power to take it again. This
+commandment have I received of my Father.
+
+10:19 There was a division therefore again among the Jews for these
+sayings.
+
+10:20 And many of them said, He hath a devil, and is mad; why hear ye
+him? 10:21 Others said, These are not the words of him that hath a
+devil. Can a devil open the eyes of the blind? 10:22 And it was at
+Jerusalem the feast of the dedication, and it was winter.
+
+10:23 And Jesus walked in the temple in Solomon's porch.
+
+10:24 Then came the Jews round about him, and said unto him, How long
+dost thou make us to doubt? If thou be the Christ, tell us plainly.
+
+10:25 Jesus answered them, I told you, and ye believed not: the works
+that I do in my Father's name, they bear witness of me.
+
+10:26 But ye believe not, because ye are not of my sheep, as I said
+unto you.
+
+10:27 My sheep hear my voice, and I know them, and they follow me:
+10:28 And I give unto them eternal life; and they shall never perish,
+neither shall any man pluck them out of my hand.
+
+10:29 My Father, which gave them me, is greater than all; and no man
+is able to pluck them out of my Father's hand.
+
+10:30 I and my Father are one.
+
+10:31 Then the Jews took up stones again to stone him.
+
+10:32 Jesus answered them, Many good works have I shewed you from my
+Father; for which of those works do ye stone me? 10:33 The Jews
+answered him, saying, For a good work we stone thee not; but for
+blasphemy; and because that thou, being a man, makest thyself God.
+
+10:34 Jesus answered them, Is it not written in your law, I said, Ye
+are gods? 10:35 If he called them gods, unto whom the word of God
+came, and the scripture cannot be broken; 10:36 Say ye of him, whom
+the Father hath sanctified, and sent into the world, Thou blasphemest;
+because I said, I am the Son of God? 10:37 If I do not the works of
+my Father, believe me not.
+
+10:38 But if I do, though ye believe not me, believe the works: that
+ye may know, and believe, that the Father is in me, and I in him.
+
+10:39 Therefore they sought again to take him: but he escaped out of
+their hand, 10:40 And went away again beyond Jordan into the place
+where John at first baptized; and there he abode.
+
+10:41 And many resorted unto him, and said, John did no miracle: but
+all things that John spake of this man were true.
+
+10:42 And many believed on him there.
+
+11:1 Now a certain man was sick, named Lazarus, of Bethany, the town
+of Mary and her sister Martha.
+
+11:2 (It was that Mary which anointed the Lord with ointment, and
+wiped his feet with her hair, whose brother Lazarus was sick.) 11:3
+Therefore his sisters sent unto him, saying, Lord, behold, he whom
+thou lovest is sick.
+
+11:4 When Jesus heard that, he said, This sickness is not unto death,
+but for the glory of God, that the Son of God might be glorified
+thereby.
+
+11:5 Now Jesus loved Martha, and her sister, and Lazarus.
+
+11:6 When he had heard therefore that he was sick, he abode two days
+still in the same place where he was.
+
+11:7 Then after that saith he to his disciples, Let us go into Judaea
+again.
+
+11:8 His disciples say unto him, Master, the Jews of late sought to
+stone thee; and goest thou thither again? 11:9 Jesus answered, Are
+there not twelve hours in the day? If any man walk in the day, he
+stumbleth not, because he seeth the light of this world.
+
+11:10 But if a man walk in the night, he stumbleth, because there is
+no light in him.
+
+11:11 These things said he: and after that he saith unto them, Our
+friend Lazarus sleepeth; but I go, that I may awake him out of sleep.
+
+11:12 Then said his disciples, Lord, if he sleep, he shall do well.
+
+11:13 Howbeit Jesus spake of his death: but they thought that he had
+spoken of taking of rest in sleep.
+
+11:14 Then said Jesus unto them plainly, Lazarus is dead.
+
+11:15 And I am glad for your sakes that I was not there, to the intent
+ye may believe; nevertheless let us go unto him.
+
+11:16 Then said Thomas, which is called Didymus, unto his
+fellowdisciples, Let us also go, that we may die with him.
+
+11:17 Then when Jesus came, he found that he had lain in the grave
+four days already.
+
+11:18 Now Bethany was nigh unto Jerusalem, about fifteen furlongs off:
+11:19 And many of the Jews came to Martha and Mary, to comfort them
+concerning their brother.
+
+11:20 Then Martha, as soon as she heard that Jesus was coming, went
+and met him: but Mary sat still in the house.
+
+11:21 Then said Martha unto Jesus, Lord, if thou hadst been here, my
+brother had not died.
+
+11:22 But I know, that even now, whatsoever thou wilt ask of God, God
+will give it thee.
+
+11:23 Jesus saith unto her, Thy brother shall rise again.
+
+11:24 Martha saith unto him, I know that he shall rise again in the
+resurrection at the last day.
+
+11:25 Jesus said unto her, I am the resurrection, and the life: he
+that believeth in me, though he were dead, yet shall he live: 11:26
+And whosoever liveth and believeth in me shall never die. Believest
+thou this? 11:27 She saith unto him, Yea, Lord: I believe that thou
+art the Christ, the Son of God, which should come into the world.
+
+11:28 And when she had so said, she went her way, and called Mary her
+sister secretly, saying, The Master is come, and calleth for thee.
+
+11:29 As soon as she heard that, she arose quickly, and came unto him.
+
+11:30 Now Jesus was not yet come into the town, but was in that place
+where Martha met him.
+
+11:31 The Jews then which were with her in the house, and comforted
+her, when they saw Mary, that she rose up hastily and went out,
+followed her, saying, She goeth unto the grave to weep there.
+
+11:32 Then when Mary was come where Jesus was, and saw him, she fell
+down at his feet, saying unto him, Lord, if thou hadst been here, my
+brother had not died.
+
+11:33 When Jesus therefore saw her weeping, and the Jews also weeping
+which came with her, he groaned in the spirit, and was troubled.
+
+11:34 And said, Where have ye laid him? They said unto him, Lord, come
+and see.
+
+11:35 Jesus wept.
+
+11:36 Then said the Jews, Behold how he loved him! 11:37 And some of
+them said, Could not this man, which opened the eyes of the blind,
+have caused that even this man should not have died? 11:38 Jesus
+therefore again groaning in himself cometh to the grave. It was a
+cave, and a stone lay upon it.
+
+11:39 Jesus said, Take ye away the stone. Martha, the sister of him
+that was dead, saith unto him, Lord, by this time he stinketh: for he
+hath been dead four days.
+
+11:40 Jesus saith unto her, Said I not unto thee, that, if thou
+wouldest believe, thou shouldest see the glory of God? 11:41 Then
+they took away the stone from the place where the dead was laid. And
+Jesus lifted up his eyes, and said, Father, I thank thee that thou
+hast heard me.
+
+11:42 And I knew that thou hearest me always: but because of the
+people which stand by I said it, that they may believe that thou hast
+sent me.
+
+11:43 And when he thus had spoken, he cried with a loud voice,
+Lazarus, come forth.
+
+11:44 And he that was dead came forth, bound hand and foot with
+graveclothes: and his face was bound about with a napkin. Jesus saith
+unto them, Loose him, and let him go.
+
+11:45 Then many of the Jews which came to Mary, and had seen the
+things which Jesus did, believed on him.
+
+11:46 But some of them went their ways to the Pharisees, and told them
+what things Jesus had done.
+
+11:47 Then gathered the chief priests and the Pharisees a council, and
+said, What do we? for this man doeth many miracles.
+
+11:48 If we let him thus alone, all men will believe on him: and the
+Romans shall come and take away both our place and nation.
+
+11:49 And one of them, named Caiaphas, being the high priest that same
+year, said unto them, Ye know nothing at all, 11:50 Nor consider that
+it is expedient for us, that one man should die for the people, and
+that the whole nation perish not.
+
+11:51 And this spake he not of himself: but being high priest that
+year, he prophesied that Jesus should die for that nation; 11:52 And
+not for that nation only, but that also he should gather together in
+one the children of God that were scattered abroad.
+
+11:53 Then from that day forth they took counsel together for to put
+him to death.
+
+11:54 Jesus therefore walked no more openly among the Jews; but went
+thence unto a country near to the wilderness, into a city called
+Ephraim, and there continued with his disciples.
+
+11:55 And the Jews' passover was nigh at hand: and many went out of
+the country up to Jerusalem before the passover, to purify themselves.
+
+11:56 Then sought they for Jesus, and spake among themselves, as they
+stood in the temple, What think ye, that he will not come to the
+feast? 11:57 Now both the chief priests and the Pharisees had given a
+commandment, that, if any man knew where he were, he should shew it,
+that they might take him.
+
+12:1 Then Jesus six days before the passover came to Bethany, where
+Lazarus was, which had been dead, whom he raised from the dead.
+
+12:2 There they made him a supper; and Martha served: but Lazarus was
+one of them that sat at the table with him.
+
+12:3 Then took Mary a pound of ointment of spikenard, very costly, and
+anointed the feet of Jesus, and wiped his feet with her hair: and the
+house was filled with the odour of the ointment.
+
+12:4 Then saith one of his disciples, Judas Iscariot, Simon's son,
+which should betray him, 12:5 Why was not this ointment sold for three
+hundred pence, and given to the poor? 12:6 This he said, not that he
+cared for the poor; but because he was a thief, and had the bag, and
+bare what was put therein.
+
+12:7 Then said Jesus, Let her alone: against the day of my burying
+hath she kept this.
+
+12:8 For the poor always ye have with you; but me ye have not always.
+
+12:9 Much people of the Jews therefore knew that he was there: and
+they came not for Jesus' sake only, but that they might see Lazarus
+also, whom he had raised from the dead.
+
+12:10 But the chief priests consulted that they might put Lazarus also
+to death; 12:11 Because that by reason of him many of the Jews went
+away, and believed on Jesus.
+
+12:12 On the next day much people that were come to the feast, when
+they heard that Jesus was coming to Jerusalem, 12:13 Took branches of
+palm trees, and went forth to meet him, and cried, Hosanna: Blessed is
+the King of Israel that cometh in the name of the Lord.
+
+12:14 And Jesus, when he had found a young ass, sat thereon; as it is
+written, 12:15 Fear not, daughter of Sion: behold, thy King cometh,
+sitting on an ass's colt.
+
+12:16 These things understood not his disciples at the first: but when
+Jesus was glorified, then remembered they that these things were
+written of him, and that they had done these things unto him.
+
+12:17 The people therefore that was with him when he called Lazarus
+out of his grave, and raised him from the dead, bare record.
+
+12:18 For this cause the people also met him, for that they heard that
+he had done this miracle.
+
+12:19 The Pharisees therefore said among themselves, Perceive ye how
+ye prevail nothing? behold, the world is gone after him.
+
+12:20 And there were certain Greeks among them that came up to worship
+at the feast: 12:21 The same came therefore to Philip, which was of
+Bethsaida of Galilee, and desired him, saying, Sir, we would see
+Jesus.
+
+12:22 Philip cometh and telleth Andrew: and again Andrew and Philip
+tell Jesus.
+
+12:23 And Jesus answered them, saying, The hour is come, that the Son
+of man should be glorified.
+
+12:24 Verily, verily, I say unto you, Except a corn of wheat fall into
+the ground and die, it abideth alone: but if it die, it bringeth forth
+much fruit.
+
+12:25 He that loveth his life shall lose it; and he that hateth his
+life in this world shall keep it unto life eternal.
+
+12:26 If any man serve me, let him follow me; and where I am, there
+shall also my servant be: if any man serve me, him will my Father
+honour.
+
+12:27 Now is my soul troubled; and what shall I say? Father, save me
+from this hour: but for this cause came I unto this hour.
+
+12:28 Father, glorify thy name. Then came there a voice from heaven,
+saying, I have both glorified it, and will glorify it again.
+
+12:29 The people therefore, that stood by, and heard it, said that it
+thundered: others said, An angel spake to him.
+
+12:30 Jesus answered and said, This voice came not because of me, but
+for your sakes.
+
+12:31 Now is the judgment of this world: now shall the prince of this
+world be cast out.
+
+12:32 And I, if I be lifted up from the earth, will draw all men unto
+me.
+
+12:33 This he said, signifying what death he should die.
+
+12:34 The people answered him, We have heard out of the law that
+Christ abideth for ever: and how sayest thou, The Son of man must be
+lifted up? who is this Son of man? 12:35 Then Jesus said unto them,
+Yet a little while is the light with you.
+
+Walk while ye have the light, lest darkness come upon you: for he that
+walketh in darkness knoweth not whither he goeth.
+
+12:36 While ye have light, believe in the light, that ye may be the
+children of light. These things spake Jesus, and departed, and did
+hide himself from them.
+
+12:37 But though he had done so many miracles before them, yet they
+believed not on him: 12:38 That the saying of Esaias the prophet might
+be fulfilled, which he spake, Lord, who hath believed our report? and
+to whom hath the arm of the Lord been revealed? 12:39 Therefore they
+could not believe, because that Esaias said again, 12:40 He hath
+blinded their eyes, and hardened their heart; that they should not see
+with their eyes, nor understand with their heart, and be converted,
+and I should heal them.
+
+12:41 These things said Esaias, when he saw his glory, and spake of
+him.
+
+12:42 Nevertheless among the chief rulers also many believed on him;
+but because of the Pharisees they did not confess him, lest they
+should be put out of the synagogue: 12:43 For they loved the praise of
+men more than the praise of God.
+
+12:44 Jesus cried and said, He that believeth on me, believeth not on
+me, but on him that sent me.
+
+12:45 And he that seeth me seeth him that sent me.
+
+12:46 I am come a light into the world, that whosoever believeth on me
+should not abide in darkness.
+
+12:47 And if any man hear my words, and believe not, I judge him not:
+for I came not to judge the world, but to save the world.
+
+12:48 He that rejecteth me, and receiveth not my words, hath one that
+judgeth him: the word that I have spoken, the same shall judge him in
+the last day.
+
+12:49 For I have not spoken of myself; but the Father which sent me,
+he gave me a commandment, what I should say, and what I should speak.
+
+12:50 And I know that his commandment is life everlasting: whatsoever
+I speak therefore, even as the Father said unto me, so I speak.
+
+13:1 Now before the feast of the passover, when Jesus knew that his
+hour was come that he should depart out of this world unto the Father,
+having loved his own which were in the world, he loved them unto the
+end.
+
+13:2 And supper being ended, the devil having now put into the heart
+of Judas Iscariot, Simon's son, to betray him; 13:3 Jesus knowing that
+the Father had given all things into his hands, and that he was come
+from God, and went to God; 13:4 He riseth from supper, and laid aside
+his garments; and took a towel, and girded himself.
+
+13:5 After that he poureth water into a bason, and began to wash the
+disciples' feet, and to wipe them with the towel wherewith he was
+girded.
+
+13:6 Then cometh he to Simon Peter: and Peter saith unto him, Lord,
+dost thou wash my feet? 13:7 Jesus answered and said unto him, What I
+do thou knowest not now; but thou shalt know hereafter.
+
+13:8 Peter saith unto him, Thou shalt never wash my feet. Jesus
+answered him, If I wash thee not, thou hast no part with me.
+
+13:9 Simon Peter saith unto him, Lord, not my feet only, but also my
+hands and my head.
+
+13:10 Jesus saith to him, He that is washed needeth not save to wash
+his feet, but is clean every whit: and ye are clean, but not all.
+
+13:11 For he knew who should betray him; therefore said he, Ye are not
+all clean.
+
+13:12 So after he had washed their feet, and had taken his garments,
+and was set down again, he said unto them, Know ye what I have done to
+you? 13:13 Ye call me Master and Lord: and ye say well; for so I am.
+
+13:14 If I then, your Lord and Master, have washed your feet; ye also
+ought to wash one another's feet.
+
+13:15 For I have given you an example, that ye should do as I have
+done to you.
+
+13:16 Verily, verily, I say unto you, The servant is not greater than
+his lord; neither he that is sent greater than he that sent him.
+
+13:17 If ye know these things, happy are ye if ye do them.
+
+13:18 I speak not of you all: I know whom I have chosen: but that the
+scripture may be fulfilled, He that eateth bread with me hath lifted
+up his heel against me.
+
+13:19 Now I tell you before it come, that, when it is come to pass, ye
+may believe that I am he.
+
+13:20 Verily, verily, I say unto you, He that receiveth whomsoever I
+send receiveth me; and he that receiveth me receiveth him that sent
+me.
+
+13:21 When Jesus had thus said, he was troubled in spirit, and
+testified, and said, Verily, verily, I say unto you, that one of you
+shall betray me.
+
+13:22 Then the disciples looked one on another, doubting of whom he
+spake.
+
+13:23 Now there was leaning on Jesus' bosom one of his disciples, whom
+Jesus loved.
+
+13:24 Simon Peter therefore beckoned to him, that he should ask who it
+should be of whom he spake.
+
+13:25 He then lying on Jesus' breast saith unto him, Lord, who is it?
+13:26 Jesus answered, He it is, to whom I shall give a sop, when I
+have dipped it. And when he had dipped the sop, he gave it to Judas
+Iscariot, the son of Simon.
+
+13:27 And after the sop Satan entered into him. Then said Jesus unto
+him, That thou doest, do quickly.
+
+13:28 Now no man at the table knew for what intent he spake this unto
+him.
+
+13:29 For some of them thought, because Judas had the bag, that Jesus
+had said unto him, Buy those things that we have need of against the
+feast; or, that he should give something to the poor.
+
+13:30 He then having received the sop went immediately out: and it was
+night.
+
+13:31 Therefore, when he was gone out, Jesus said, Now is the Son of
+man glorified, and God is glorified in him.
+
+13:32 If God be glorified in him, God shall also glorify him in
+himself, and shall straightway glorify him.
+
+13:33 Little children, yet a little while I am with you. Ye shall seek
+me: and as I said unto the Jews, Whither I go, ye cannot come; so now
+I say to you.
+
+13:34 A new commandment I give unto you, That ye love one another; as
+I have loved you, that ye also love one another.
+
+13:35 By this shall all men know that ye are my disciples, if ye have
+love one to another.
+
+13:36 Simon Peter said unto him, Lord, whither goest thou? Jesus
+answered him, Whither I go, thou canst not follow me now; but thou
+shalt follow me afterwards.
+
+13:37 Peter said unto him, Lord, why cannot I follow thee now? I will
+lay down my life for thy sake.
+
+13:38 Jesus answered him, Wilt thou lay down thy life for my sake?
+Verily, verily, I say unto thee, The cock shall not crow, till thou
+hast denied me thrice.
+
+14:1 Let not your heart be troubled: ye believe in God, believe also
+in me.
+
+14:2 In my Father's house are many mansions: if it were not so, I
+would have told you. I go to prepare a place for you.
+
+14:3 And if I go and prepare a place for you, I will come again, and
+receive you unto myself; that where I am, there ye may be also.
+
+14:4 And whither I go ye know, and the way ye know.
+
+14:5 Thomas saith unto him, Lord, we know not whither thou goest; and
+how can we know the way? 14:6 Jesus saith unto him, I am the way, the
+truth, and the life: no man cometh unto the Father, but by me.
+
+14:7 If ye had known me, ye should have known my Father also: and from
+henceforth ye know him, and have seen him.
+
+14:8 Philip saith unto him, Lord, shew us the Father, and it sufficeth
+us.
+
+14:9 Jesus saith unto him, Have I been so long time with you, and yet
+hast thou not known me, Philip? he that hath seen me hath seen the
+Father; and how sayest thou then, Shew us the Father? 14:10 Believest
+thou not that I am in the Father, and the Father in me? the words
+that I speak unto you I speak not of myself: but the Father that
+dwelleth in me, he doeth the works.
+
+14:11 Believe me that I am in the Father, and the Father in me: or
+else believe me for the very works' sake.
+
+14:12 Verily, verily, I say unto you, He that believeth on me, the
+works that I do shall he do also; and greater works than these shall
+he do; because I go unto my Father.
+
+14:13 And whatsoever ye shall ask in my name, that will I do, that the
+Father may be glorified in the Son.
+
+14:14 If ye shall ask any thing in my name, I will do it.
+
+14:15 If ye love me, keep my commandments.
+
+14:16 And I will pray the Father, and he shall give you another
+Comforter, that he may abide with you for ever; 14:17 Even the Spirit
+of truth; whom the world cannot receive, because it seeth him not,
+neither knoweth him: but ye know him; for he dwelleth with you, and
+shall be in you.
+
+14:18 I will not leave you comfortless: I will come to you.
+
+14:19 Yet a little while, and the world seeth me no more; but ye see
+me: because I live, ye shall live also.
+
+14:20 At that day ye shall know that I am in my Father, and ye in me,
+and I in you.
+
+14:21 He that hath my commandments, and keepeth them, he it is that
+loveth me: and he that loveth me shall be loved of my Father, and I
+will love him, and will manifest myself to him.
+
+14:22 Judas saith unto him, not Iscariot, Lord, how is it that thou
+wilt manifest thyself unto us, and not unto the world? 14:23 Jesus
+answered and said unto him, If a man love me, he will keep my words:
+and my Father will love him, and we will come unto him, and make our
+abode with him.
+
+14:24 He that loveth me not keepeth not my sayings: and the word which
+ye hear is not mine, but the Father's which sent me.
+
+14:25 These things have I spoken unto you, being yet present with you.
+
+14:26 But the Comforter, which is the Holy Ghost, whom the Father will
+send in my name, he shall teach you all things, and bring all things
+to your remembrance, whatsoever I have said unto you.
+
+14:27 Peace I leave with you, my peace I give unto you: not as the
+world giveth, give I unto you. Let not your heart be troubled, neither
+let it be afraid.
+
+14:28 Ye have heard how I said unto you, I go away, and come again
+unto you. If ye loved me, ye would rejoice, because I said, I go unto
+the Father: for my Father is greater than I.
+
+14:29 And now I have told you before it come to pass, that, when it is
+come to pass, ye might believe.
+
+14:30 Hereafter I will not talk much with you: for the prince of this
+world cometh, and hath nothing in me.
+
+14:31 But that the world may know that I love the Father; and as the
+Father gave me commandment, even so I do. Arise, let us go hence.
+
+15:1 I am the true vine, and my Father is the husbandman.
+
+15:2 Every branch in me that beareth not fruit he taketh away: and
+every branch that beareth fruit, he purgeth it, that it may bring
+forth more fruit.
+
+15:3 Now ye are clean through the word which I have spoken unto you.
+
+15:4 Abide in me, and I in you. As the branch cannot bear fruit of
+itself, except it abide in the vine; no more can ye, except ye abide
+in me.
+
+15:5 I am the vine, ye are the branches: He that abideth in me, and I
+in him, the same bringeth forth much fruit: for without me ye can do
+nothing.
+
+15:6 If a man abide not in me, he is cast forth as a branch, and is
+withered; and men gather them, and cast them into the fire, and they
+are burned.
+
+15:7 If ye abide in me, and my words abide in you, ye shall ask what
+ye will, and it shall be done unto you.
+
+15:8 Herein is my Father glorified, that ye bear much fruit; so shall
+ye be my disciples.
+
+15:9 As the Father hath loved me, so have I loved you: continue ye in
+my love.
+
+15:10 If ye keep my commandments, ye shall abide in my love; even as I
+have kept my Father's commandments, and abide in his love.
+
+15:11 These things have I spoken unto you, that my joy might remain in
+you, and that your joy might be full.
+
+15:12 This is my commandment, That ye love one another, as I have
+loved you.
+
+15:13 Greater love hath no man than this, that a man lay down his life
+for his friends.
+
+15:14 Ye are my friends, if ye do whatsoever I command you.
+
+15:15 Henceforth I call you not servants; for the servant knoweth not
+what his lord doeth: but I have called you friends; for all things
+that I have heard of my Father I have made known unto you.
+
+15:16 Ye have not chosen me, but I have chosen you, and ordained you,
+that ye should go and bring forth fruit, and that your fruit should
+remain: that whatsoever ye shall ask of the Father in my name, he may
+give it you.
+
+15:17 These things I command you, that ye love one another.
+
+15:18 If the world hate you, ye know that it hated me before it hated
+you.
+
+15:19 If ye were of the world, the world would love his own: but
+because ye are not of the world, but I have chosen you out of the
+world, therefore the world hateth you.
+
+15:20 Remember the word that I said unto you, The servant is not
+greater than his lord. If they have persecuted me, they will also
+persecute you; if they have kept my saying, they will keep yours also.
+
+15:21 But all these things will they do unto you for my name's sake,
+because they know not him that sent me.
+
+15:22 If I had not come and spoken unto them, they had not had sin:
+but now they have no cloak for their sin.
+
+15:23 He that hateth me hateth my Father also.
+
+15:24 If I had not done among them the works which none other man did,
+they had not had sin: but now have they both seen and hated both me
+and my Father.
+
+15:25 But this cometh to pass, that the word might be fulfilled that
+is written in their law, They hated me without a cause.
+
+15:26 But when the Comforter is come, whom I will send unto you from
+the Father, even the Spirit of truth, which proceedeth from the
+Father, he shall testify of me: 15:27 And ye also shall bear witness,
+because ye have been with me from the beginning.
+
+16:1 These things have I spoken unto you, that ye should not be
+offended.
+
+16:2 They shall put you out of the synagogues: yea, the time cometh,
+that whosoever killeth you will think that he doeth God service.
+
+16:3 And these things will they do unto you, because they have not
+known the Father, nor me.
+
+16:4 But these things have I told you, that when the time shall come,
+ye may remember that I told you of them. And these things I said not
+unto you at the beginning, because I was with you.
+
+16:5 But now I go my way to him that sent me; and none of you asketh
+me, Whither goest thou? 16:6 But because I have said these things
+unto you, sorrow hath filled your heart.
+
+16:7 Nevertheless I tell you the truth; It is expedient for you that I
+go away: for if I go not away, the Comforter will not come unto you;
+but if I depart, I will send him unto you.
+
+16:8 And when he is come, he will reprove the world of sin, and of
+righteousness, and of judgment: 16:9 Of sin, because they believe not
+on me; 16:10 Of righteousness, because I go to my Father, and ye see
+me no more; 16:11 Of judgment, because the prince of this world is
+judged.
+
+16:12 I have yet many things to say unto you, but ye cannot bear them
+now.
+
+16:13 Howbeit when he, the Spirit of truth, is come, he will guide you
+into all truth: for he shall not speak of himself; but whatsoever he
+shall hear, that shall he speak: and he will shew you things to come.
+
+16:14 He shall glorify me: for he shall receive of mine, and shall
+shew it unto you.
+
+16:15 All things that the Father hath are mine: therefore said I, that
+he shall take of mine, and shall shew it unto you.
+
+16:16 A little while, and ye shall not see me: and again, a little
+while, and ye shall see me, because I go to the Father.
+
+16:17 Then said some of his disciples among themselves, What is this
+that he saith unto us, A little while, and ye shall not see me: and
+again, a little while, and ye shall see me: and, Because I go to the
+Father? 16:18 They said therefore, What is this that he saith, A
+little while? we cannot tell what he saith.
+
+16:19 Now Jesus knew that they were desirous to ask him, and said unto
+them, Do ye enquire among yourselves of that I said, A little while,
+and ye shall not see me: and again, a little while, and ye shall see
+me? 16:20 Verily, verily, I say unto you, That ye shall weep and
+lament, but the world shall rejoice: and ye shall be sorrowful, but
+your sorrow shall be turned into joy.
+
+16:21 A woman when she is in travail hath sorrow, because her hour is
+come: but as soon as she is delivered of the child, she remembereth no
+more the anguish, for joy that a man is born into the world.
+
+16:22 And ye now therefore have sorrow: but I will see you again, and
+your heart shall rejoice, and your joy no man taketh from you.
+
+16:23 And in that day ye shall ask me nothing. Verily, verily, I say
+unto you, Whatsoever ye shall ask the Father in my name, he will give
+it you.
+
+16:24 Hitherto have ye asked nothing in my name: ask, and ye shall
+receive, that your joy may be full.
+
+16:25 These things have I spoken unto you in proverbs: but the time
+cometh, when I shall no more speak unto you in proverbs, but I shall
+shew you plainly of the Father.
+
+16:26 At that day ye shall ask in my name: and I say not unto you,
+that I will pray the Father for you: 16:27 For the Father himself
+loveth you, because ye have loved me, and have believed that I came
+out from God.
+
+16:28 I came forth from the Father, and am come into the world: again,
+I leave the world, and go to the Father.
+
+16:29 His disciples said unto him, Lo, now speakest thou plainly, and
+speakest no proverb.
+
+16:30 Now are we sure that thou knowest all things, and needest not
+that any man should ask thee: by this we believe that thou camest
+forth from God.
+
+16:31 Jesus answered them, Do ye now believe? 16:32 Behold, the hour
+cometh, yea, is now come, that ye shall be scattered, every man to his
+own, and shall leave me alone: and yet I am not alone, because the
+Father is with me.
+
+16:33 These things I have spoken unto you, that in me ye might have
+peace.
+
+In the world ye shall have tribulation: but be of good cheer; I have
+overcome the world.
+
+17:1 These words spake Jesus, and lifted up his eyes to heaven, and
+said, Father, the hour is come; glorify thy Son, that thy Son also may
+glorify thee: 17:2 As thou hast given him power over all flesh, that
+he should give eternal life to as many as thou hast given him.
+
+17:3 And this is life eternal, that they might know thee the only true
+God, and Jesus Christ, whom thou hast sent.
+
+17:4 I have glorified thee on the earth: I have finished the work
+which thou gavest me to do.
+
+17:5 And now, O Father, glorify thou me with thine own self with the
+glory which I had with thee before the world was.
+
+17:6 I have manifested thy name unto the men which thou gavest me out
+of the world: thine they were, and thou gavest them me; and they have
+kept thy word.
+
+17:7 Now they have known that all things whatsoever thou hast given me
+are of thee.
+
+17:8 For I have given unto them the words which thou gavest me; and
+they have received them, and have known surely that I came out from
+thee, and they have believed that thou didst send me.
+
+17:9 I pray for them: I pray not for the world, but for them which
+thou hast given me; for they are thine.
+
+17:10 And all mine are thine, and thine are mine; and I am glorified
+in them.
+
+17:11 And now I am no more in the world, but these are in the world,
+and I come to thee. Holy Father, keep through thine own name those
+whom thou hast given me, that they may be one, as we are.
+
+17:12 While I was with them in the world, I kept them in thy name:
+those that thou gavest me I have kept, and none of them is lost, but
+the son of perdition; that the scripture might be fulfilled.
+
+17:13 And now come I to thee; and these things I speak in the world,
+that they might have my joy fulfilled in themselves.
+
+17:14 I have given them thy word; and the world hath hated them,
+because they are not of the world, even as I am not of the world.
+
+17:15 I pray not that thou shouldest take them out of the world, but
+that thou shouldest keep them from the evil.
+
+17:16 They are not of the world, even as I am not of the world.
+
+17:17 Sanctify them through thy truth: thy word is truth.
+
+17:18 As thou hast sent me into the world, even so have I also sent
+them into the world.
+
+17:19 And for their sakes I sanctify myself, that they also might be
+sanctified through the truth.
+
+17:20 Neither pray I for these alone, but for them also which shall
+believe on me through their word; 17:21 That they all may be one; as
+thou, Father, art in me, and I in thee, that they also may be one in
+us: that the world may believe that thou hast sent me.
+
+17:22 And the glory which thou gavest me I have given them; that they
+may be one, even as we are one: 17:23 I in them, and thou in me, that
+they may be made perfect in one; and that the world may know that thou
+hast sent me, and hast loved them, as thou hast loved me.
+
+17:24 Father, I will that they also, whom thou hast given me, be with
+me where I am; that they may behold my glory, which thou hast given
+me: for thou lovedst me before the foundation of the world.
+
+17:25 O righteous Father, the world hath not known thee: but I have
+known thee, and these have known that thou hast sent me.
+
+17:26 And I have declared unto them thy name, and will declare it:
+that the love wherewith thou hast loved me may be in them, and I in
+them.
+
+18:1 When Jesus had spoken these words, he went forth with his
+disciples over the brook Cedron, where was a garden, into the which he
+entered, and his disciples.
+
+18:2 And Judas also, which betrayed him, knew the place: for Jesus
+ofttimes resorted thither with his disciples.
+
+18:3 Judas then, having received a band of men and officers from the
+chief priests and Pharisees, cometh thither with lanterns and torches
+and weapons.
+
+18:4 Jesus therefore, knowing all things that should come upon him,
+went forth, and said unto them, Whom seek ye? 18:5 They answered him,
+Jesus of Nazareth. Jesus saith unto them, I am he.
+
+And Judas also, which betrayed him, stood with them.
+
+18:6 As soon then as he had said unto them, I am he, they went
+backward, and fell to the ground.
+
+18:7 Then asked he them again, Whom seek ye? And they said, Jesus of
+Nazareth.
+
+18:8 Jesus answered, I have told you that I am he: if therefore ye
+seek me, let these go their way: 18:9 That the saying might be
+fulfilled, which he spake, Of them which thou gavest me have I lost
+none.
+
+18:10 Then Simon Peter having a sword drew it, and smote the high
+priest's servant, and cut off his right ear. The servant's name was
+Malchus.
+
+18:11 Then said Jesus unto Peter, Put up thy sword into the sheath:
+the cup which my Father hath given me, shall I not drink it? 18:12
+Then the band and the captain and officers of the Jews took Jesus, and
+bound him, 18:13 And led him away to Annas first; for he was father in
+law to Caiaphas, which was the high priest that same year.
+
+18:14 Now Caiaphas was he, which gave counsel to the Jews, that it was
+expedient that one man should die for the people.
+
+18:15 And Simon Peter followed Jesus, and so did another disciple:
+that disciple was known unto the high priest, and went in with Jesus
+into the palace of the high priest.
+
+18:16 But Peter stood at the door without. Then went out that other
+disciple, which was known unto the high priest, and spake unto her
+that kept the door, and brought in Peter.
+
+18:17 Then saith the damsel that kept the door unto Peter, Art not
+thou also one of this man's disciples? He saith, I am not.
+
+18:18 And the servants and officers stood there, who had made a fire
+of coals; for it was cold: and they warmed themselves: and Peter stood
+with them, and warmed himself.
+
+18:19 The high priest then asked Jesus of his disciples, and of his
+doctrine.
+
+18:20 Jesus answered him, I spake openly to the world; I ever taught
+in the synagogue, and in the temple, whither the Jews always resort;
+and in secret have I said nothing.
+
+18:21 Why askest thou me? ask them which heard me, what I have said
+unto them: behold, they know what I said.
+
+18:22 And when he had thus spoken, one of the officers which stood by
+struck Jesus with the palm of his hand, saying, Answerest thou the
+high priest so? 18:23 Jesus answered him, If I have spoken evil, bear
+witness of the evil: but if well, why smitest thou me? 18:24 Now
+Annas had sent him bound unto Caiaphas the high priest.
+
+18:25 And Simon Peter stood and warmed himself. They said therefore
+unto him, Art not thou also one of his disciples? He denied it, and
+said, I am not.
+
+18:26 One of the servants of the high priest, being his kinsman whose
+ear Peter cut off, saith, Did not I see thee in the garden with him?
+18:27 Peter then denied again: and immediately the cock crew.
+
+18:28 Then led they Jesus from Caiaphas unto the hall of judgment: and
+it was early; and they themselves went not into the judgment hall,
+lest they should be defiled; but that they might eat the passover.
+
+18:29 Pilate then went out unto them, and said, What accusation bring
+ye against this man? 18:30 They answered and said unto him, If he
+were not a malefactor, we would not have delivered him up unto thee.
+
+18:31 Then said Pilate unto them, Take ye him, and judge him according
+to your law. The Jews therefore said unto him, It is not lawful for us
+to put any man to death: 18:32 That the saying of Jesus might be
+fulfilled, which he spake, signifying what death he should die.
+
+18:33 Then Pilate entered into the judgment hall again, and called
+Jesus, and said unto him, Art thou the King of the Jews? 18:34 Jesus
+answered him, Sayest thou this thing of thyself, or did others tell it
+thee of me? 18:35 Pilate answered, Am I a Jew? Thine own nation and
+the chief priests have delivered thee unto me: what hast thou done?
+18:36 Jesus answered, My kingdom is not of this world: if my kingdom
+were of this world, then would my servants fight, that I should not be
+delivered to the Jews: but now is my kingdom not from hence.
+
+18:37 Pilate therefore said unto him, Art thou a king then? Jesus
+answered, Thou sayest that I am a king. To this end was I born, and
+for this cause came I into the world, that I should bear witness unto
+the truth. Every one that is of the truth heareth my voice.
+
+18:38 Pilate saith unto him, What is truth? And when he had said this,
+he went out again unto the Jews, and saith unto them, I find in him no
+fault at all.
+
+18:39 But ye have a custom, that I should release unto you one at the
+passover: will ye therefore that I release unto you the King of the
+Jews? 18:40 Then cried they all again, saying, Not this man, but
+Barabbas. Now Barabbas was a robber.
+
+19:1 Then Pilate therefore took Jesus, and scourged him.
+
+19:2 And the soldiers platted a crown of thorns, and put it on his
+head, and they put on him a purple robe, 19:3 And said, Hail, King of
+the Jews! and they smote him with their hands.
+
+19:4 Pilate therefore went forth again, and saith unto them, Behold, I
+bring him forth to you, that ye may know that I find no fault in him.
+
+19:5 Then came Jesus forth, wearing the crown of thorns, and the
+purple robe. And Pilate saith unto them, Behold the man! 19:6 When
+the chief priests therefore and officers saw him, they cried out,
+saying, Crucify him, crucify him. Pilate saith unto them, Take ye him,
+and crucify him: for I find no fault in him.
+
+19:7 The Jews answered him, We have a law, and by our law he ought to
+die, because he made himself the Son of God.
+
+19:8 When Pilate therefore heard that saying, he was the more afraid;
+19:9 And went again into the judgment hall, and saith unto Jesus,
+Whence art thou? But Jesus gave him no answer.
+
+19:10 Then saith Pilate unto him, Speakest thou not unto me? knowest
+thou not that I have power to crucify thee, and have power to release
+thee? 19:11 Jesus answered, Thou couldest have no power at all
+against me, except it were given thee from above: therefore he that
+delivered me unto thee hath the greater sin.
+
+19:12 And from thenceforth Pilate sought to release him: but the Jews
+cried out, saying, If thou let this man go, thou art not Caesar's
+friend: whosoever maketh himself a king speaketh against Caesar.
+
+19:13 When Pilate therefore heard that saying, he brought Jesus forth,
+and sat down in the judgment seat in a place that is called the
+Pavement, but in the Hebrew, Gabbatha.
+
+19:14 And it was the preparation of the passover, and about the sixth
+hour: and he saith unto the Jews, Behold your King! 19:15 But they
+cried out, Away with him, away with him, crucify him.
+
+Pilate saith unto them, Shall I crucify your King? The chief priests
+answered, We have no king but Caesar.
+
+19:16 Then delivered he him therefore unto them to be crucified. And
+they took Jesus, and led him away.
+
+19:17 And he bearing his cross went forth into a place called the
+place of a skull, which is called in the Hebrew Golgotha: 19:18 Where
+they crucified him, and two other with him, on either side one, and
+Jesus in the midst.
+
+19:19 And Pilate wrote a title, and put it on the cross. And the
+writing was JESUS OF NAZARETH THE KING OF THE JEWS.
+
+19:20 This title then read many of the Jews: for the place where Jesus
+was crucified was nigh to the city: and it was written in Hebrew, and
+Greek, and Latin.
+
+19:21 Then said the chief priests of the Jews to Pilate, Write not,
+The King of the Jews; but that he said, I am King of the Jews.
+
+19:22 Pilate answered, What I have written I have written.
+
+19:23 Then the soldiers, when they had crucified Jesus, took his
+garments, and made four parts, to every soldier a part; and also his
+coat: now the coat was without seam, woven from the top throughout.
+
+19:24 They said therefore among themselves, Let us not rend it, but
+cast lots for it, whose it shall be: that the scripture might be
+fulfilled, which saith, They parted my raiment among them, and for my
+vesture they did cast lots. These things therefore the soldiers did.
+
+19:25 Now there stood by the cross of Jesus his mother, and his
+mother's sister, Mary the wife of Cleophas, and Mary Magdalene.
+
+19:26 When Jesus therefore saw his mother, and the disciple standing
+by, whom he loved, he saith unto his mother, Woman, behold thy son!
+19:27 Then saith he to the disciple, Behold thy mother! And from that
+hour that disciple took her unto his own home.
+
+19:28 After this, Jesus knowing that all things were now accomplished,
+that the scripture might be fulfilled, saith, I thirst.
+
+19:29 Now there was set a vessel full of vinegar: and they filled a
+spunge with vinegar, and put it upon hyssop, and put it to his mouth.
+
+19:30 When Jesus therefore had received the vinegar, he said, It is
+finished: and he bowed his head, and gave up the ghost.
+
+19:31 The Jews therefore, because it was the preparation, that the
+bodies should not remain upon the cross on the sabbath day, (for that
+sabbath day was an high day,) besought Pilate that their legs might be
+broken, and that they might be taken away.
+
+19:32 Then came the soldiers, and brake the legs of the first, and of
+the other which was crucified with him.
+
+19:33 But when they came to Jesus, and saw that he was dead already,
+they brake not his legs: 19:34 But one of the soldiers with a spear
+pierced his side, and forthwith came there out blood and water.
+
+19:35 And he that saw it bare record, and his record is true: and he
+knoweth that he saith true, that ye might believe.
+
+19:36 For these things were done, that the scripture should be
+fulfilled, A bone of him shall not be broken.
+
+19:37 And again another scripture saith, They shall look on him whom
+they pierced.
+
+19:38 And after this Joseph of Arimathaea, being a disciple of Jesus,
+but secretly for fear of the Jews, besought Pilate that he might take
+away the body of Jesus: and Pilate gave him leave. He came therefore,
+and took the body of Jesus.
+
+19:39 And there came also Nicodemus, which at the first came to Jesus
+by night, and brought a mixture of myrrh and aloes, about an hundred
+pound weight.
+
+19:40 Then took they the body of Jesus, and wound it in linen clothes
+with the spices, as the manner of the Jews is to bury.
+
+19:41 Now in the place where he was crucified there was a garden; and
+in the garden a new sepulchre, wherein was never man yet laid.
+
+19:42 There laid they Jesus therefore because of the Jews' preparation
+day; for the sepulchre was nigh at hand.
+
+20:1 The first day of the week cometh Mary Magdalene early, when it
+was yet dark, unto the sepulchre, and seeth the stone taken away from
+the sepulchre.
+
+20:2 Then she runneth, and cometh to Simon Peter, and to the other
+disciple, whom Jesus loved, and saith unto them, They have taken away
+the LORD out of the sepulchre, and we know not where they have laid
+him.
+
+20:3 Peter therefore went forth, and that other disciple, and came to
+the sepulchre.
+
+20:4 So they ran both together: and the other disciple did outrun
+Peter, and came first to the sepulchre.
+
+20:5 And he stooping down, and looking in, saw the linen clothes
+lying; yet went he not in.
+
+20:6 Then cometh Simon Peter following him, and went into the
+sepulchre, and seeth the linen clothes lie, 20:7 And the napkin, that
+was about his head, not lying with the linen clothes, but wrapped
+together in a place by itself.
+
+20:8 Then went in also that other disciple, which came first to the
+sepulchre, and he saw, and believed.
+
+20:9 For as yet they knew not the scripture, that he must rise again
+from the dead.
+
+20:10 Then the disciples went away again unto their own home.
+
+20:11 But Mary stood without at the sepulchre weeping: and as she
+wept, she stooped down, and looked into the sepulchre, 20:12 And seeth
+two angels in white sitting, the one at the head, and the other at the
+feet, where the body of Jesus had lain.
+
+20:13 And they say unto her, Woman, why weepest thou? She saith unto
+them, Because they have taken away my LORD, and I know not where they
+have laid him.
+
+20:14 And when she had thus said, she turned herself back, and saw
+Jesus standing, and knew not that it was Jesus.
+
+20:15 Jesus saith unto her, Woman, why weepest thou? whom seekest
+thou? She, supposing him to be the gardener, saith unto him, Sir, if
+thou have borne him hence, tell me where thou hast laid him, and I
+will take him away.
+
+20:16 Jesus saith unto her, Mary. She turned herself, and saith unto
+him, Rabboni; which is to say, Master.
+
+20:17 Jesus saith unto her, Touch me not; for I am not yet ascended to
+my Father: but go to my brethren, and say unto them, I ascend unto my
+Father, and your Father; and to my God, and your God.
+
+20:18 Mary Magdalene came and told the disciples that she had seen the
+LORD, and that he had spoken these things unto her.
+
+20:19 Then the same day at evening, being the first day of the week,
+when the doors were shut where the disciples were assembled for fear
+of the Jews, came Jesus and stood in the midst, and saith unto them,
+Peace be unto you.
+
+20:20 And when he had so said, he shewed unto them his hands and his
+side.
+
+Then were the disciples glad, when they saw the LORD.
+
+20:21 Then said Jesus to them again, Peace be unto you: as my Father
+hath sent me, even so send I you.
+
+20:22 And when he had said this, he breathed on them, and saith unto
+them, Receive ye the Holy Ghost: 20:23 Whose soever sins ye remit,
+they are remitted unto them; and whose soever sins ye retain, they are
+retained.
+
+20:24 But Thomas, one of the twelve, called Didymus, was not with them
+when Jesus came.
+
+20:25 The other disciples therefore said unto him, We have seen the
+LORD.
+
+But he said unto them, Except I shall see in his hands the print of
+the nails, and put my finger into the print of the nails, and thrust
+my hand into his side, I will not believe.
+
+20:26 And after eight days again his disciples were within, and Thomas
+with them: then came Jesus, the doors being shut, and stood in the
+midst, and said, Peace be unto you.
+
+20:27 Then saith he to Thomas, Reach hither thy finger, and behold my
+hands; and reach hither thy hand, and thrust it into my side: and be
+not faithless, but believing.
+
+20:28 And Thomas answered and said unto him, My LORD and my God.
+
+20:29 Jesus saith unto him, Thomas, because thou hast seen me, thou
+hast believed: blessed are they that have not seen, and yet have
+believed.
+
+20:30 And many other signs truly did Jesus in the presence of his
+disciples, which are not written in this book: 20:31 But these are
+written, that ye might believe that Jesus is the Christ, the Son of
+God; and that believing ye might have life through his name.
+
+21:1 After these things Jesus shewed himself again to the disciples at
+the sea of Tiberias; and on this wise shewed he himself.
+
+21:2 There were together Simon Peter, and Thomas called Didymus, and
+Nathanael of Cana in Galilee, and the sons of Zebedee, and two other
+of his disciples.
+
+21:3 Simon Peter saith unto them, I go a fishing. They say unto him,
+We also go with thee. They went forth, and entered into a ship
+immediately; and that night they caught nothing.
+
+21:4 But when the morning was now come, Jesus stood on the shore: but
+the disciples knew not that it was Jesus.
+
+21:5 Then Jesus saith unto them, Children, have ye any meat? They
+answered him, No.
+
+21:6 And he said unto them, Cast the net on the right side of the
+ship, and ye shall find. They cast therefore, and now they were not
+able to draw it for the multitude of fishes.
+
+21:7 Therefore that disciple whom Jesus loved saith unto Peter, It is
+the Lord. Now when Simon Peter heard that it was the Lord, he girt his
+fisher's coat unto him, (for he was naked,) and did cast himself into
+the sea.
+
+21:8 And the other disciples came in a little ship; (for they were not
+far from land, but as it were two hundred cubits,) dragging the net
+with fishes.
+
+21:9 As soon then as they were come to land, they saw a fire of coals
+there, and fish laid thereon, and bread.
+
+21:10 Jesus saith unto them, Bring of the fish which ye have now
+caught.
+
+21:11 Simon Peter went up, and drew the net to land full of great
+fishes, an hundred and fifty and three: and for all there were so
+many, yet was not the net broken.
+
+21:12 Jesus saith unto them, Come and dine. And none of the disciples
+durst ask him, Who art thou? knowing that it was the Lord.
+
+21:13 Jesus then cometh, and taketh bread, and giveth them, and fish
+likewise.
+
+21:14 This is now the third time that Jesus shewed himself to his
+disciples, after that he was risen from the dead.
+
+21:15 So when they had dined, Jesus saith to Simon Peter, Simon, son
+of Jonas, lovest thou me more than these? He saith unto him, Yea,
+Lord; thou knowest that I love thee. He saith unto him, Feed my lambs.
+
+21:16 He saith to him again the second time, Simon, son of Jonas,
+lovest thou me? He saith unto him, Yea, Lord; thou knowest that I love
+thee. He saith unto him, Feed my sheep.
+
+21:17 He saith unto him the third time, Simon, son of Jonas, lovest
+thou me? Peter was grieved because he said unto him the third time,
+Lovest thou me? And he said unto him, Lord, thou knowest all things;
+thou knowest that I love thee. Jesus saith unto him, Feed my sheep.
+
+21:18 Verily, verily, I say unto thee, When thou wast young, thou
+girdest thyself, and walkedst whither thou wouldest: but when thou
+shalt be old, thou shalt stretch forth thy hands, and another shall
+gird thee, and carry thee whither thou wouldest not.
+
+21:19 This spake he, signifying by what death he should glorify God.
+And when he had spoken this, he saith unto him, Follow me.
+
+21:20 Then Peter, turning about, seeth the disciple whom Jesus loved
+following; which also leaned on his breast at supper, and said, Lord,
+which is he that betrayeth thee? 21:21 Peter seeing him saith to
+Jesus, Lord, and what shall this man do? 21:22 Jesus saith unto him,
+If I will that he tarry till I come, what is that to thee? follow thou
+me.
+
+21:23 Then went this saying abroad among the brethren, that that
+disciple should not die: yet Jesus said not unto him, He shall not
+die; but, If I will that he tarry till I come, what is that to thee?
+21:24 This is the disciple which testifieth of these things, and wrote
+these things: and we know that his testimony is true.
+
+21:25 And there are also many other things which Jesus did, the which,
+if they should be written every one, I suppose that even the world
+itself could not contain the books that should be written. Amen.
+
+
+
+
+The Acts of the Apostles
+
+
+1:1 The former treatise have I made, O Theophilus, of all that Jesus
+began both to do and teach, 1:2 Until the day in which he was taken
+up, after that he through the Holy Ghost had given commandments unto
+the apostles whom he had chosen: 1:3 To whom also he shewed himself
+alive after his passion by many infallible proofs, being seen of them
+forty days, and speaking of the things pertaining to the kingdom of
+God: 1:4 And, being assembled together with them, commanded them that
+they should not depart from Jerusalem, but wait for the promise of the
+Father, which, saith he, ye have heard of me.
+
+1:5 For John truly baptized with water; but ye shall be baptized with
+the Holy Ghost not many days hence.
+
+1:6 When they therefore were come together, they asked of him, saying,
+Lord, wilt thou at this time restore again the kingdom to Israel? 1:7
+And he said unto them, It is not for you to know the times or the
+seasons, which the Father hath put in his own power.
+
+1:8 But ye shall receive power, after that the Holy Ghost is come upon
+you: and ye shall be witnesses unto me both in Jerusalem, and in all
+Judaea, and in Samaria, and unto the uttermost part of the earth.
+
+1:9 And when he had spoken these things, while they beheld, he was
+taken up; and a cloud received him out of their sight.
+
+1:10 And while they looked stedfastly toward heaven as he went up,
+behold, two men stood by them in white apparel; 1:11 Which also said,
+Ye men of Galilee, why stand ye gazing up into heaven? this same
+Jesus, which is taken up from you into heaven, shall so come in like
+manner as ye have seen him go into heaven.
+
+1:12 Then returned they unto Jerusalem from the mount called Olivet,
+which is from Jerusalem a sabbath day's journey.
+
+1:13 And when they were come in, they went up into an upper room,
+where abode both Peter, and James, and John, and Andrew, Philip, and
+Thomas, Bartholomew, and Matthew, James the son of Alphaeus, and Simon
+Zelotes, and Judas the brother of James.
+
+1:14 These all continued with one accord in prayer and supplication,
+with the women, and Mary the mother of Jesus, and with his brethren.
+
+1:15 And in those days Peter stood up in the midst of the disciples,
+and said, (the number of names together were about an hundred and
+twenty,) 1:16 Men and brethren, this scripture must needs have been
+fulfilled, which the Holy Ghost by the mouth of David spake before
+concerning Judas, which was guide to them that took Jesus.
+
+1:17 For he was numbered with us, and had obtained part of this
+ministry.
+
+1:18 Now this man purchased a field with the reward of iniquity; and
+falling headlong, he burst asunder in the midst, and all his bowels
+gushed out.
+
+1:19 And it was known unto all the dwellers at Jerusalem; insomuch as
+that field is called in their proper tongue, Aceldama, that is to say,
+The field of blood.
+
+1:20 For it is written in the book of Psalms, Let his habitation be
+desolate, and let no man dwell therein: and his bishoprick let another
+take.
+
+1:21 Wherefore of these men which have companied with us all the time
+that the Lord Jesus went in and out among us, 1:22 Beginning from the
+baptism of John, unto that same day that he was taken up from us, must
+one be ordained to be a witness with us of his resurrection.
+
+1:23 And they appointed two, Joseph called Barsabas, who was surnamed
+Justus, and Matthias.
+
+1:24 And they prayed, and said, Thou, Lord, which knowest the hearts
+of all men, shew whether of these two thou hast chosen, 1:25 That he
+may take part of this ministry and apostleship, from which Judas by
+transgression fell, that he might go to his own place.
+
+1:26 And they gave forth their lots; and the lot fell upon Matthias;
+and he was numbered with the eleven apostles.
+
+2:1 And when the day of Pentecost was fully come, they were all with
+one accord in one place.
+
+2:2 And suddenly there came a sound from heaven as of a rushing mighty
+wind, and it filled all the house where they were sitting.
+
+2:3 And there appeared unto them cloven tongues like as of fire, and
+it sat upon each of them.
+
+2:4 And they were all filled with the Holy Ghost, and began to speak
+with other tongues, as the Spirit gave them utterance.
+
+2:5 And there were dwelling at Jerusalem Jews, devout men, out of
+every nation under heaven.
+
+2:6 Now when this was noised abroad, the multitude came together, and
+were confounded, because that every man heard them speak in his own
+language.
+
+2:7 And they were all amazed and marvelled, saying one to another,
+Behold, are not all these which speak Galilaeans? 2:8 And how hear we
+every man in our own tongue, wherein we were born? 2:9 Parthians, and
+Medes, and Elamites, and the dwellers in Mesopotamia, and in Judaea,
+and Cappadocia, in Pontus, and Asia, 2:10 Phrygia, and Pamphylia, in
+Egypt, and in the parts of Libya about Cyrene, and strangers of Rome,
+Jews and proselytes, 2:11 Cretes and Arabians, we do hear them speak
+in our tongues the wonderful works of God.
+
+2:12 And they were all amazed, and were in doubt, saying one to
+another, What meaneth this? 2:13 Others mocking said, These men are
+full of new wine.
+
+2:14 But Peter, standing up with the eleven, lifted up his voice, and
+said unto them, Ye men of Judaea, and all ye that dwell at Jerusalem,
+be this known unto you, and hearken to my words: 2:15 For these are
+not drunken, as ye suppose, seeing it is but the third hour of the
+day.
+
+2:16 But this is that which was spoken by the prophet Joel; 2:17 And
+it shall come to pass in the last days, saith God, I will pour out of
+my Spirit upon all flesh: and your sons and your daughters shall
+prophesy, and your young men shall see visions, and your old men shall
+dream dreams: 2:18 And on my servants and on my handmaidens I will
+pour out in those days of my Spirit; and they shall prophesy: 2:19 And
+I will shew wonders in heaven above, and signs in the earth beneath;
+blood, and fire, and vapour of smoke: 2:20 The sun shall be turned
+into darkness, and the moon into blood, before the great and notable
+day of the Lord come: 2:21 And it shall come to pass, that whosoever
+shall call on the name of the Lord shall be saved.
+
+2:22 Ye men of Israel, hear these words; Jesus of Nazareth, a man
+approved of God among you by miracles and wonders and signs, which God
+did by him in the midst of you, as ye yourselves also know: 2:23 Him,
+being delivered by the determinate counsel and foreknowledge of God,
+ye have taken, and by wicked hands have crucified and slain: 2:24 Whom
+God hath raised up, having loosed the pains of death: because it was
+not possible that he should be holden of it.
+
+2:25 For David speaketh concerning him, I foresaw the Lord always
+before my face, for he is on my right hand, that I should not be
+moved: 2:26 Therefore did my heart rejoice, and my tongue was glad;
+moreover also my flesh shall rest in hope: 2:27 Because thou wilt not
+leave my soul in hell, neither wilt thou suffer thine Holy One to see
+corruption.
+
+2:28 Thou hast made known to me the ways of life; thou shalt make me
+full of joy with thy countenance.
+
+2:29 Men and brethren, let me freely speak unto you of the patriarch
+David, that he is both dead and buried, and his sepulchre is with us
+unto this day.
+
+2:30 Therefore being a prophet, and knowing that God had sworn with an
+oath to him, that of the fruit of his loins, according to the flesh,
+he would raise up Christ to sit on his throne; 2:31 He seeing this
+before spake of the resurrection of Christ, that his soul was not left
+in hell, neither his flesh did see corruption.
+
+2:32 This Jesus hath God raised up, whereof we all are witnesses.
+
+2:33 Therefore being by the right hand of God exalted, and having
+received of the Father the promise of the Holy Ghost, he hath shed
+forth this, which ye now see and hear.
+
+2:34 For David is not ascended into the heavens: but he saith himself,
+The Lord said unto my Lord, Sit thou on my right hand, 2:35 Until I
+make thy foes thy footstool.
+
+2:36 Therefore let all the house of Israel know assuredly, that God
+hath made the same Jesus, whom ye have crucified, both Lord and
+Christ.
+
+2:37 Now when they heard this, they were pricked in their heart, and
+said unto Peter and to the rest of the apostles, Men and brethren,
+what shall we do? 2:38 Then Peter said unto them, Repent, and be
+baptized every one of you in the name of Jesus Christ for the
+remission of sins, and ye shall receive the gift of the Holy Ghost.
+
+2:39 For the promise is unto you, and to your children, and to all
+that are afar off, even as many as the LORD our God shall call.
+
+2:40 And with many other words did he testify and exhort, saying, Save
+yourselves from this untoward generation.
+
+2:41 Then they that gladly received his word were baptized: and the
+same day there were added unto them about three thousand souls.
+
+2:42 And they continued stedfastly in the apostles' doctrine and
+fellowship, and in breaking of bread, and in prayers.
+
+2:43 And fear came upon every soul: and many wonders and signs were
+done by the apostles.
+
+2:44 And all that believed were together, and had all things common;
+2:45 And sold their possessions and goods, and parted them to all men,
+as every man had need.
+
+2:46 And they, continuing daily with one accord in the temple, and
+breaking bread from house to house, did eat their meat with gladness
+and singleness of heart, 2:47 Praising God, and having favour with all
+the people. And the Lord added to the church daily such as should be
+saved.
+
+3:1 Now Peter and John went up together into the temple at the hour of
+prayer, being the ninth hour.
+
+3:2 And a certain man lame from his mother's womb was carried, whom
+they laid daily at the gate of the temple which is called Beautiful,
+to ask alms of them that entered into the temple; 3:3 Who seeing Peter
+and John about to go into the temple asked an alms.
+
+3:4 And Peter, fastening his eyes upon him with John, said, Look on
+us.
+
+3:5 And he gave heed unto them, expecting to receive something of
+them.
+
+3:6 Then Peter said, Silver and gold have I none; but such as I have
+give I thee: In the name of Jesus Christ of Nazareth rise up and walk.
+
+3:7 And he took him by the right hand, and lifted him up: and
+immediately his feet and ankle bones received strength.
+
+3:8 And he leaping up stood, and walked, and entered with them into
+the temple, walking, and leaping, and praising God.
+
+3:9 And all the people saw him walking and praising God: 3:10 And they
+knew that it was he which sat for alms at the Beautiful gate of the
+temple: and they were filled with wonder and amazement at that which
+had happened unto him.
+
+3:11 And as the lame man which was healed held Peter and John, all the
+people ran together unto them in the porch that is called Solomon's,
+greatly wondering.
+
+3:12 And when Peter saw it, he answered unto the people, Ye men of
+Israel, why marvel ye at this? or why look ye so earnestly on us, as
+though by our own power or holiness we had made this man to walk?
+3:13 The God of Abraham, and of Isaac, and of Jacob, the God of our
+fathers, hath glorified his Son Jesus; whom ye delivered up, and
+denied him in the presence of Pilate, when he was determined to let
+him go.
+
+3:14 But ye denied the Holy One and the Just, and desired a murderer
+to be granted unto you; 3:15 And killed the Prince of life, whom God
+hath raised from the dead; whereof we are witnesses.
+
+3:16 And his name through faith in his name hath made this man strong,
+whom ye see and know: yea, the faith which is by him hath given him
+this perfect soundness in the presence of you all.
+
+3:17 And now, brethren, I wot that through ignorance ye did it, as did
+also your rulers.
+
+3:18 But those things, which God before had shewed by the mouth of all
+his prophets, that Christ should suffer, he hath so fulfilled.
+
+3:19 Repent ye therefore, and be converted, that your sins may be
+blotted out, when the times of refreshing shall come from the presence
+of the Lord.
+
+3:20 And he shall send Jesus Christ, which before was preached unto
+you: 3:21 Whom the heaven must receive until the times of restitution
+of all things, which God hath spoken by the mouth of all his holy
+prophets since the world began.
+
+3:22 For Moses truly said unto the fathers, A prophet shall the Lord
+your God raise up unto you of your brethren, like unto me; him shall
+ye hear in all things whatsoever he shall say unto you.
+
+3:23 And it shall come to pass, that every soul, which will not hear
+that prophet, shall be destroyed from among the people.
+
+3:24 Yea, and all the prophets from Samuel and those that follow
+after, as many as have spoken, have likewise foretold of these days.
+
+3:25 Ye are the children of the prophets, and of the covenant which
+God made with our fathers, saying unto Abraham, And in thy seed shall
+all the kindreds of the earth be blessed.
+
+3:26 Unto you first God, having raised up his Son Jesus, sent him to
+bless you, in turning away every one of you from his iniquities.
+
+4:1 And as they spake unto the people, the priests, and the captain of
+the temple, and the Sadducees, came upon them, 4:2 Being grieved that
+they taught the people, and preached through Jesus the resurrection
+from the dead.
+
+4:3 And they laid hands on them, and put them in hold unto the next
+day: for it was now eventide.
+
+4:4 Howbeit many of them which heard the word believed; and the number
+of the men was about five thousand.
+
+4:5 And it came to pass on the morrow, that their rulers, and elders,
+and scribes, 4:6 And Annas the high priest, and Caiaphas, and John,
+and Alexander, and as many as were of the kindred of the high priest,
+were gathered together at Jerusalem.
+
+4:7 And when they had set them in the midst, they asked, By what
+power, or by what name, have ye done this? 4:8 Then Peter, filled
+with the Holy Ghost, said unto them, Ye rulers of the people, and
+elders of Israel, 4:9 If we this day be examined of the good deed done
+to the impotent man, by what means he is made whole; 4:10 Be it known
+unto you all, and to all the people of Israel, that by the name of
+Jesus Christ of Nazareth, whom ye crucified, whom God raised from the
+dead, even by him doth this man stand here before you whole.
+
+4:11 This is the stone which was set at nought of you builders, which
+is become the head of the corner.
+
+4:12 Neither is there salvation in any other: for there is none other
+name under heaven given among men, whereby we must be saved.
+
+4:13 Now when they saw the boldness of Peter and John, and perceived
+that they were unlearned and ignorant men, they marvelled; and they
+took knowledge of them, that they had been with Jesus.
+
+4:14 And beholding the man which was healed standing with them, they
+could say nothing against it.
+
+4:15 But when they had commanded them to go aside out of the council,
+they conferred among themselves, 4:16 Saying, What shall we do to
+these men? for that indeed a notable miracle hath been done by them is
+manifest to all them that dwell in Jerusalem; and we cannot deny it.
+
+4:17 But that it spread no further among the people, let us straitly
+threaten them, that they speak henceforth to no man in this name.
+
+4:18 And they called them, and commanded them not to speak at all nor
+teach in the name of Jesus.
+
+4:19 But Peter and John answered and said unto them, Whether it be
+right in the sight of God to hearken unto you more than unto God,
+judge ye.
+
+4:20 For we cannot but speak the things which we have seen and heard.
+
+4:21 So when they had further threatened them, they let them go,
+finding nothing how they might punish them, because of the people: for
+all men glorified God for that which was done.
+
+4:22 For the man was above forty years old, on whom this miracle of
+healing was shewed.
+
+4:23 And being let go, they went to their own company, and reported
+all that the chief priests and elders had said unto them.
+
+4:24 And when they heard that, they lifted up their voice to God with
+one accord, and said, Lord, thou art God, which hast made heaven, and
+earth, and the sea, and all that in them is: 4:25 Who by the mouth of
+thy servant David hast said, Why did the heathen rage, and the people
+imagine vain things? 4:26 The kings of the earth stood up, and the
+rulers were gathered together against the Lord, and against his
+Christ.
+
+4:27 For of a truth against thy holy child Jesus, whom thou hast
+anointed, both Herod, and Pontius Pilate, with the Gentiles, and the
+people of Israel, were gathered together, 4:28 For to do whatsoever
+thy hand and thy counsel determined before to be done.
+
+4:29 And now, Lord, behold their threatenings: and grant unto thy
+servants, that with all boldness they may speak thy word, 4:30 By
+stretching forth thine hand to heal; and that signs and wonders may be
+done by the name of thy holy child Jesus.
+
+4:31 And when they had prayed, the place was shaken where they were
+assembled together; and they were all filled with the Holy Ghost, and
+they spake the word of God with boldness.
+
+4:32 And the multitude of them that believed were of one heart and of
+one soul: neither said any of them that ought of the things which he
+possessed was his own; but they had all things common.
+
+4:33 And with great power gave the apostles witness of the
+resurrection of the Lord Jesus: and great grace was upon them all.
+
+4:34 Neither was there any among them that lacked: for as many as were
+possessors of lands or houses sold them, and brought the prices of the
+things that were sold, 4:35 And laid them down at the apostles' feet:
+and distribution was made unto every man according as he had need.
+
+4:36 And Joses, who by the apostles was surnamed Barnabas, (which is,
+being interpreted, The son of consolation,) a Levite, and of the
+country of Cyprus, 4:37 Having land, sold it, and brought the money,
+and laid it at the apostles' feet.
+
+5:1 But a certain man named Ananias, with Sapphira his wife, sold a
+possession, 5:2 And kept back part of the price, his wife also being
+privy to it, and brought a certain part, and laid it at the apostles'
+feet.
+
+5:3 But Peter said, Ananias, why hath Satan filled thine heart to lie
+to the Holy Ghost, and to keep back part of the price of the land?
+5:4 Whiles it remained, was it not thine own? and after it was sold,
+was it not in thine own power? why hast thou conceived this thing in
+thine heart? thou hast not lied unto men, but unto God.
+
+5:5 And Ananias hearing these words fell down, and gave up the ghost:
+and great fear came on all them that heard these things.
+
+5:6 And the young men arose, wound him up, and carried him out, and
+buried him.
+
+5:7 And it was about the space of three hours after, when his wife,
+not knowing what was done, came in.
+
+5:8 And Peter answered unto her, Tell me whether ye sold the land for
+so much? And she said, Yea, for so much.
+
+5:9 Then Peter said unto her, How is it that ye have agreed together
+to tempt the Spirit of the Lord? behold, the feet of them which have
+buried thy husband are at the door, and shall carry thee out.
+
+5:10 Then fell she down straightway at his feet, and yielded up the
+ghost: and the young men came in, and found her dead, and, carrying
+her forth, buried her by her husband.
+
+5:11 And great fear came upon all the church, and upon as many as
+heard these things.
+
+5:12 And by the hands of the apostles were many signs and wonders
+wrought among the people; (and they were all with one accord in
+Solomon's porch.
+
+5:13 And of the rest durst no man join himself to them: but the people
+magnified them.
+
+5:14 And believers were the more added to the Lord, multitudes both of
+men and women.) 5:15 Insomuch that they brought forth the sick into
+the streets, and laid them on beds and couches, that at the least the
+shadow of Peter passing by might overshadow some of them.
+
+5:16 There came also a multitude out of the cities round about unto
+Jerusalem, bringing sick folks, and them which were vexed with unclean
+spirits: and they were healed every one.
+
+5:17 Then the high priest rose up, and all they that were with him,
+(which is the sect of the Sadducees,) and were filled with
+indignation, 5:18 And laid their hands on the apostles, and put them
+in the common prison.
+
+5:19 But the angel of the Lord by night opened the prison doors, and
+brought them forth, and said, 5:20 Go, stand and speak in the temple
+to the people all the words of this life.
+
+5:21 And when they heard that, they entered into the temple early in
+the morning, and taught. But the high priest came, and they that were
+with him, and called the council together, and all the senate of the
+children of Israel, and sent to the prison to have them brought.
+
+5:22 But when the officers came, and found them not in the prison,
+they returned and told, 5:23 Saying, The prison truly found we shut
+with all safety, and the keepers standing without before the doors:
+but when we had opened, we found no man within.
+
+5:24 Now when the high priest and the captain of the temple and the
+chief priests heard these things, they doubted of them whereunto this
+would grow.
+
+5:25 Then came one and told them, saying, Behold, the men whom ye put
+in prison are standing in the temple, and teaching the people.
+
+5:26 Then went the captain with the officers, and brought them without
+violence: for they feared the people, lest they should have been
+stoned.
+
+5:27 And when they had brought them, they set them before the council:
+and the high priest asked them, 5:28 Saying, Did not we straitly
+command you that ye should not teach in this name? and, behold, ye
+have filled Jerusalem with your doctrine, and intend to bring this
+man's blood upon us.
+
+5:29 Then Peter and the other apostles answered and said, We ought to
+obey God rather than men.
+
+5:30 The God of our fathers raised up Jesus, whom ye slew and hanged
+on a tree.
+
+5:31 Him hath God exalted with his right hand to be a Prince and a
+Saviour, for to give repentance to Israel, and forgiveness of sins.
+
+5:32 And we are his witnesses of these things; and so is also the Holy
+Ghost, whom God hath given to them that obey him.
+
+5:33 When they heard that, they were cut to the heart, and took
+counsel to slay them.
+
+5:34 Then stood there up one in the council, a Pharisee, named
+Gamaliel, a doctor of the law, had in reputation among all the people,
+and commanded to put the apostles forth a little space; 5:35 And said
+unto them, Ye men of Israel, take heed to yourselves what ye intend to
+do as touching these men.
+
+5:36 For before these days rose up Theudas, boasting himself to be
+somebody; to whom a number of men, about four hundred, joined
+themselves: who was slain; and all, as many as obeyed him, were
+scattered, and brought to nought.
+
+5:37 After this man rose up Judas of Galilee in the days of the
+taxing, and drew away much people after him: he also perished; and
+all, even as many as obeyed him, were dispersed.
+
+5:38 And now I say unto you, Refrain from these men, and let them
+alone: for if this counsel or this work be of men, it will come to
+nought: 5:39 But if it be of God, ye cannot overthrow it; lest haply
+ye be found even to fight against God.
+
+5:40 And to him they agreed: and when they had called the apostles,
+and beaten them, they commanded that they should not speak in the name
+of Jesus, and let them go.
+
+5:41 And they departed from the presence of the council, rejoicing
+that they were counted worthy to suffer shame for his name.
+
+5:42 And daily in the temple, and in every house, they ceased not to
+teach and preach Jesus Christ.
+
+6:1 And in those days, when the number of the disciples was
+multiplied, there arose a murmuring of the Grecians against the
+Hebrews, because their widows were neglected in the daily
+ministration.
+
+6:2 Then the twelve called the multitude of the disciples unto them,
+and said, It is not reason that we should leave the word of God, and
+serve tables.
+
+6:3 Wherefore, brethren, look ye out among you seven men of honest
+report, full of the Holy Ghost and wisdom, whom we may appoint over
+this business.
+
+6:4 But we will give ourselves continually to prayer, and to the
+ministry of the word.
+
+6:5 And the saying pleased the whole multitude: and they chose
+Stephen, a man full of faith and of the Holy Ghost, and Philip, and
+Prochorus, and Nicanor, and Timon, and Parmenas, and Nicolas a
+proselyte of Antioch: 6:6 Whom they set before the apostles: and when
+they had prayed, they laid their hands on them.
+
+6:7 And the word of God increased; and the number of the disciples
+multiplied in Jerusalem greatly; and a great company of the priests
+were obedient to the faith.
+
+6:8 And Stephen, full of faith and power, did great wonders and
+miracles among the people.
+
+6:9 Then there arose certain of the synagogue, which is called the
+synagogue of the Libertines, and Cyrenians, and Alexandrians, and of
+them of Cilicia and of Asia, disputing with Stephen.
+
+6:10 And they were not able to resist the wisdom and the spirit by
+which he spake.
+
+6:11 Then they suborned men, which said, We have heard him speak
+blasphemous words against Moses, and against God.
+
+6:12 And they stirred up the people, and the elders, and the scribes,
+and came upon him, and caught him, and brought him to the council,
+6:13 And set up false witnesses, which said, This man ceaseth not to
+speak blasphemous words against this holy place, and the law: 6:14 For
+we have heard him say, that this Jesus of Nazareth shall destroy this
+place, and shall change the customs which Moses delivered us.
+
+6:15 And all that sat in the council, looking stedfastly on him, saw
+his face as it had been the face of an angel.
+
+7:1 Then said the high priest, Are these things so? 7:2 And he said,
+Men, brethren, and fathers, hearken; The God of glory appeared unto
+our father Abraham, when he was in Mesopotamia, before he dwelt in
+Charran, 7:3 And said unto him, Get thee out of thy country, and from
+thy kindred, and come into the land which I shall shew thee.
+
+7:4 Then came he out of the land of the Chaldaeans, and dwelt in
+Charran: and from thence, when his father was dead, he removed him
+into this land, wherein ye now dwell.
+
+7:5 And he gave him none inheritance in it, no, not so much as to set
+his foot on: yet he promised that he would give it to him for a
+possession, and to his seed after him, when as yet he had no child.
+
+7:6 And God spake on this wise, That his seed should sojourn in a
+strange land; and that they should bring them into bondage, and
+entreat them evil four hundred years.
+
+7:7 And the nation to whom they shall be in bondage will I judge, said
+God: and after that shall they come forth, and serve me in this place.
+
+7:8 And he gave him the covenant of circumcision: and so Abraham begat
+Isaac, and circumcised him the eighth day; and Isaac begat Jacob; and
+Jacob begat the twelve patriarchs.
+
+7:9 And the patriarchs, moved with envy, sold Joseph into Egypt: but
+God was with him, 7:10 And delivered him out of all his afflictions,
+and gave him favour and wisdom in the sight of Pharaoh king of Egypt;
+and he made him governor over Egypt and all his house.
+
+7:11 Now there came a dearth over all the land of Egypt and Chanaan,
+and great affliction: and our fathers found no sustenance.
+
+7:12 But when Jacob heard that there was corn in Egypt, he sent out
+our fathers first.
+
+7:13 And at the second time Joseph was made known to his brethren; and
+Joseph's kindred was made known unto Pharaoh.
+
+7:14 Then sent Joseph, and called his father Jacob to him, and all his
+kindred, threescore and fifteen souls.
+
+7:15 So Jacob went down into Egypt, and died, he, and our fathers,
+7:16 And were carried over into Sychem, and laid in the sepulchre that
+Abraham bought for a sum of money of the sons of Emmor the father of
+Sychem.
+
+7:17 But when the time of the promise drew nigh, which God had sworn
+to Abraham, the people grew and multiplied in Egypt, 7:18 Till another
+king arose, which knew not Joseph.
+
+7:19 The same dealt subtilly with our kindred, and evil entreated our
+fathers, so that they cast out their young children, to the end they
+might not live.
+
+7:20 In which time Moses was born, and was exceeding fair, and
+nourished up in his father's house three months: 7:21 And when he was
+cast out, Pharaoh's daughter took him up, and nourished him for her
+own son.
+
+7:22 And Moses was learned in all the wisdom of the Egyptians, and was
+mighty in words and in deeds.
+
+7:23 And when he was full forty years old, it came into his heart to
+visit his brethren the children of Israel.
+
+7:24 And seeing one of them suffer wrong, he defended him, and avenged
+him that was oppressed, and smote the Egyptian: 7:25 For he supposed
+his brethren would have understood how that God by his hand would
+deliver them: but they understood not.
+
+7:26 And the next day he shewed himself unto them as they strove, and
+would have set them at one again, saying, Sirs, ye are brethren; why
+do ye wrong one to another? 7:27 But he that did his neighbour wrong
+thrust him away, saying, Who made thee a ruler and a judge over us?
+7:28 Wilt thou kill me, as thou diddest the Egyptian yesterday? 7:29
+Then fled Moses at this saying, and was a stranger in the land of
+Madian, where he begat two sons.
+
+7:30 And when forty years were expired, there appeared to him in the
+wilderness of mount Sina an angel of the Lord in a flame of fire in a
+bush.
+
+7:31 When Moses saw it, he wondered at the sight: and as he drew near
+to behold it, the voice of the LORD came unto him, 7:32 Saying, I am
+the God of thy fathers, the God of Abraham, and the God of Isaac, and
+the God of Jacob. Then Moses trembled, and durst not behold.
+
+7:33 Then said the Lord to him, Put off thy shoes from thy feet: for
+the place where thou standest is holy ground.
+
+7:34 I have seen, I have seen the affliction of my people which is in
+Egypt, and I have heard their groaning, and am come down to deliver
+them. And now come, I will send thee into Egypt.
+
+7:35 This Moses whom they refused, saying, Who made thee a ruler and a
+judge? the same did God send to be a ruler and a deliverer by the hand
+of the angel which appeared to him in the bush.
+
+7:36 He brought them out, after that he had shewed wonders and signs
+in the land of Egypt, and in the Red sea, and in the wilderness forty
+years.
+
+7:37 This is that Moses, which said unto the children of Israel, A
+prophet shall the Lord your God raise up unto you of your brethren,
+like unto me; him shall ye hear.
+
+7:38 This is he, that was in the church in the wilderness with the
+angel which spake to him in the mount Sina, and with our fathers: who
+received the lively oracles to give unto us: 7:39 To whom our fathers
+would not obey, but thrust him from them, and in their hearts turned
+back again into Egypt, 7:40 Saying unto Aaron, Make us gods to go
+before us: for as for this Moses, which brought us out of the land of
+Egypt, we wot not what is become of him.
+
+7:41 And they made a calf in those days, and offered sacrifice unto
+the idol, and rejoiced in the works of their own hands.
+
+7:42 Then God turned, and gave them up to worship the host of heaven;
+as it is written in the book of the prophets, O ye house of Israel,
+have ye offered to me slain beasts and sacrifices by the space of
+forty years in the wilderness? 7:43 Yea, ye took up the tabernacle of
+Moloch, and the star of your god Remphan, figures which ye made to
+worship them: and I will carry you away beyond Babylon.
+
+7:44 Our fathers had the tabernacle of witness in the wilderness, as
+he had appointed, speaking unto Moses, that he should make it
+according to the fashion that he had seen.
+
+7:45 Which also our fathers that came after brought in with Jesus into
+the possession of the Gentiles, whom God drave out before the face of
+our fathers, unto the days of David; 7:46 Who found favour before God,
+and desired to find a tabernacle for the God of Jacob.
+
+7:47 But Solomon built him an house.
+
+7:48 Howbeit the most High dwelleth not in temples made with hands; as
+saith the prophet, 7:49 Heaven is my throne, and earth is my
+footstool: what house will ye build me? saith the Lord: or what is the
+place of my rest? 7:50 Hath not my hand made all these things? 7:51
+Ye stiffnecked and uncircumcised in heart and ears, ye do always
+resist the Holy Ghost: as your fathers did, so do ye.
+
+7:52 Which of the prophets have not your fathers persecuted? and they
+have slain them which shewed before of the coming of the Just One; of
+whom ye have been now the betrayers and murderers: 7:53 Who have
+received the law by the disposition of angels, and have not kept it.
+
+7:54 When they heard these things, they were cut to the heart, and
+they gnashed on him with their teeth.
+
+7:55 But he, being full of the Holy Ghost, looked up stedfastly into
+heaven, and saw the glory of God, and Jesus standing on the right hand
+of God, 7:56 And said, Behold, I see the heavens opened, and the Son
+of man standing on the right hand of God.
+
+7:57 Then they cried out with a loud voice, and stopped their ears,
+and ran upon him with one accord, 7:58 And cast him out of the city,
+and stoned him: and the witnesses laid down their clothes at a young
+man's feet, whose name was Saul.
+
+7:59 And they stoned Stephen, calling upon God, and saying, Lord
+Jesus, receive my spirit.
+
+7:60 And he kneeled down, and cried with a loud voice, Lord, lay not
+this sin to their charge. And when he had said this, he fell asleep.
+
+8:1 And Saul was consenting unto his death. And at that time there was
+a great persecution against the church which was at Jerusalem; and
+they were all scattered abroad throughout the regions of Judaea and
+Samaria, except the apostles.
+
+8:2 And devout men carried Stephen to his burial, and made great
+lamentation over him.
+
+8:3 As for Saul, he made havock of the church, entering into every
+house, and haling men and women committed them to prison.
+
+8:4 Therefore they that were scattered abroad went every where
+preaching the word.
+
+8:5 Then Philip went down to the city of Samaria, and preached Christ
+unto them.
+
+8:6 And the people with one accord gave heed unto those things which
+Philip spake, hearing and seeing the miracles which he did.
+
+8:7 For unclean spirits, crying with loud voice, came out of many that
+were possessed with them: and many taken with palsies, and that were
+lame, were healed.
+
+8:8 And there was great joy in that city.
+
+8:9 But there was a certain man, called Simon, which beforetime in the
+same city used sorcery, and bewitched the people of Samaria, giving
+out that himself was some great one: 8:10 To whom they all gave heed,
+from the least to the greatest, saying, This man is the great power of
+God.
+
+8:11 And to him they had regard, because that of long time he had
+bewitched them with sorceries.
+
+8:12 But when they believed Philip preaching the things concerning the
+kingdom of God, and the name of Jesus Christ, they were baptized, both
+men and women.
+
+8:13 Then Simon himself believed also: and when he was baptized, he
+continued with Philip, and wondered, beholding the miracles and signs
+which were done.
+
+8:14 Now when the apostles which were at Jerusalem heard that Samaria
+had received the word of God, they sent unto them Peter and John: 8:15
+Who, when they were come down, prayed for them, that they might
+receive the Holy Ghost: 8:16 (For as yet he was fallen upon none of
+them: only they were baptized in the name of the Lord Jesus.) 8:17
+Then laid they their hands on them, and they received the Holy Ghost.
+
+8:18 And when Simon saw that through laying on of the apostles' hands
+the Holy Ghost was given, he offered them money, 8:19 Saying, Give me
+also this power, that on whomsoever I lay hands, he may receive the
+Holy Ghost.
+
+8:20 But Peter said unto him, Thy money perish with thee, because thou
+hast thought that the gift of God may be purchased with money.
+
+8:21 Thou hast neither part nor lot in this matter: for thy heart is
+not right in the sight of God.
+
+8:22 Repent therefore of this thy wickedness, and pray God, if perhaps
+the thought of thine heart may be forgiven thee.
+
+8:23 For I perceive that thou art in the gall of bitterness, and in
+the bond of iniquity.
+
+8:24 Then answered Simon, and said, Pray ye to the LORD for me, that
+none of these things which ye have spoken come upon me.
+
+8:25 And they, when they had testified and preached the word of the
+Lord, returned to Jerusalem, and preached the gospel in many villages
+of the Samaritans.
+
+8:26 And the angel of the Lord spake unto Philip, saying, Arise, and
+go toward the south unto the way that goeth down from Jerusalem unto
+Gaza, which is desert.
+
+8:27 And he arose and went: and, behold, a man of Ethiopia, an eunuch
+of great authority under Candace queen of the Ethiopians, who had the
+charge of all her treasure, and had come to Jerusalem for to worship,
+8:28 Was returning, and sitting in his chariot read Esaias the
+prophet.
+
+8:29 Then the Spirit said unto Philip, Go near, and join thyself to
+this chariot.
+
+8:30 And Philip ran thither to him, and heard him read the prophet
+Esaias, and said, Understandest thou what thou readest? 8:31 And he
+said, How can I, except some man should guide me? And he desired
+Philip that he would come up and sit with him.
+
+8:32 The place of the scripture which he read was this, He was led as
+a sheep to the slaughter; and like a lamb dumb before his shearer, so
+opened he not his mouth: 8:33 In his humiliation his judgment was
+taken away: and who shall declare his generation? for his life is
+taken from the earth.
+
+8:34 And the eunuch answered Philip, and said, I pray thee, of whom
+speaketh the prophet this? of himself, or of some other man? 8:35
+Then Philip opened his mouth, and began at the same scripture, and
+preached unto him Jesus.
+
+8:36 And as they went on their way, they came unto a certain water:
+and the eunuch said, See, here is water; what doth hinder me to be
+baptized? 8:37 And Philip said, If thou believest with all thine
+heart, thou mayest.
+
+And he answered and said, I believe that Jesus Christ is the Son of
+God.
+
+8:38 And he commanded the chariot to stand still: and they went down
+both into the water, both Philip and the eunuch; and he baptized him.
+
+8:39 And when they were come up out of the water, the Spirit of the
+Lord caught away Philip, that the eunuch saw him no more: and he went
+on his way rejoicing.
+
+8:40 But Philip was found at Azotus: and passing through he preached
+in all the cities, till he came to Caesarea.
+
+9:1 And Saul, yet breathing out threatenings and slaughter against the
+disciples of the Lord, went unto the high priest, 9:2 And desired of
+him letters to Damascus to the synagogues, that if he found any of
+this way, whether they were men or women, he might bring them bound
+unto Jerusalem.
+
+9:3 And as he journeyed, he came near Damascus: and suddenly there
+shined round about him a light from heaven: 9:4 And he fell to the
+earth, and heard a voice saying unto him, Saul, Saul, why persecutest
+thou me? 9:5 And he said, Who art thou, Lord? And the Lord said, I am
+Jesus whom thou persecutest: it is hard for thee to kick against the
+pricks.
+
+9:6 And he trembling and astonished said, Lord, what wilt thou have me
+to do? And the Lord said unto him, Arise, and go into the city, and it
+shall be told thee what thou must do.
+
+9:7 And the men which journeyed with him stood speechless, hearing a
+voice, but seeing no man.
+
+9:8 And Saul arose from the earth; and when his eyes were opened, he
+saw no man: but they led him by the hand, and brought him into
+Damascus.
+
+9:9 And he was three days without sight, and neither did eat nor
+drink.
+
+9:10 And there was a certain disciple at Damascus, named Ananias; and
+to him said the Lord in a vision, Ananias. And he said, Behold, I am
+here, Lord.
+
+9:11 And the Lord said unto him, Arise, and go into the street which
+is called Straight, and enquire in the house of Judas for one called
+Saul, of Tarsus: for, behold, he prayeth, 9:12 And hath seen in a
+vision a man named Ananias coming in, and putting his hand on him,
+that he might receive his sight.
+
+9:13 Then Ananias answered, Lord, I have heard by many of this man,
+how much evil he hath done to thy saints at Jerusalem: 9:14 And here
+he hath authority from the chief priests to bind all that call on thy
+name.
+
+9:15 But the Lord said unto him, Go thy way: for he is a chosen vessel
+unto me, to bear my name before the Gentiles, and kings, and the
+children of Israel: 9:16 For I will shew him how great things he must
+suffer for my name's sake.
+
+9:17 And Ananias went his way, and entered into the house; and putting
+his hands on him said, Brother Saul, the Lord, even Jesus, that
+appeared unto thee in the way as thou camest, hath sent me, that thou
+mightest receive thy sight, and be filled with the Holy Ghost.
+
+9:18 And immediately there fell from his eyes as it had been scales:
+and he received sight forthwith, and arose, and was baptized.
+
+9:19 And when he had received meat, he was strengthened. Then was Saul
+certain days with the disciples which were at Damascus.
+
+9:20 And straightway he preached Christ in the synagogues, that he is
+the Son of God.
+
+9:21 But all that heard him were amazed, and said; Is not this he that
+destroyed them which called on this name in Jerusalem, and came hither
+for that intent, that he might bring them bound unto the chief
+priests? 9:22 But Saul increased the more in strength, and confounded
+the Jews which dwelt at Damascus, proving that this is very Christ.
+
+9:23 And after that many days were fulfilled, the Jews took counsel to
+kill him: 9:24 But their laying await was known of Saul. And they
+watched the gates day and night to kill him.
+
+9:25 Then the disciples took him by night, and let him down by the
+wall in a basket.
+
+9:26 And when Saul was come to Jerusalem, he assayed to join himself
+to the disciples: but they were all afraid of him, and believed not
+that he was a disciple.
+
+9:27 But Barnabas took him, and brought him to the apostles, and
+declared unto them how he had seen the Lord in the way, and that he
+had spoken to him, and how he had preached boldly at Damascus in the
+name of Jesus.
+
+9:28 And he was with them coming in and going out at Jerusalem.
+
+9:29 And he spake boldly in the name of the Lord Jesus, and disputed
+against the Grecians: but they went about to slay him.
+
+9:30 Which when the brethren knew, they brought him down to Caesarea,
+and sent him forth to Tarsus.
+
+9:31 Then had the churches rest throughout all Judaea and Galilee and
+Samaria, and were edified; and walking in the fear of the Lord, and in
+the comfort of the Holy Ghost, were multiplied.
+
+9:32 And it came to pass, as Peter passed throughout all quarters, he
+came down also to the saints which dwelt at Lydda.
+
+9:33 And there he found a certain man named Aeneas, which had kept his
+bed eight years, and was sick of the palsy.
+
+9:34 And Peter said unto him, Aeneas, Jesus Christ maketh thee whole:
+arise, and make thy bed. And he arose immediately.
+
+9:35 And all that dwelt at Lydda and Saron saw him, and turned to the
+Lord.
+
+9:36 Now there was at Joppa a certain disciple named Tabitha, which by
+interpretation is called Dorcas: this woman was full of good works and
+almsdeeds which she did.
+
+9:37 And it came to pass in those days, that she was sick, and died:
+whom when they had washed, they laid her in an upper chamber.
+
+9:38 And forasmuch as Lydda was nigh to Joppa, and the disciples had
+heard that Peter was there, they sent unto him two men, desiring him
+that he would not delay to come to them.
+
+9:39 Then Peter arose and went with them. When he was come, they
+brought him into the upper chamber: and all the widows stood by him
+weeping, and shewing the coats and garments which Dorcas made, while
+she was with them.
+
+9:40 But Peter put them all forth, and kneeled down, and prayed; and
+turning him to the body said, Tabitha, arise. And she opened her eyes:
+and when she saw Peter, she sat up.
+
+9:41 And he gave her his hand, and lifted her up, and when he had
+called the saints and widows, presented her alive.
+
+9:42 And it was known throughout all Joppa; and many believed in the
+Lord.
+
+9:43 And it came to pass, that he tarried many days in Joppa with one
+Simon a tanner.
+
+10:1 There was a certain man in Caesarea called Cornelius, a centurion
+of the band called the Italian band, 10:2 A devout man, and one that
+feared God with all his house, which gave much alms to the people, and
+prayed to God alway.
+
+10:3 He saw in a vision evidently about the ninth hour of the day an
+angel of God coming in to him, and saying unto him, Cornelius.
+
+10:4 And when he looked on him, he was afraid, and said, What is it,
+Lord? And he said unto him, Thy prayers and thine alms are come up
+for a memorial before God.
+
+10:5 And now send men to Joppa, and call for one Simon, whose surname
+is Peter: 10:6 He lodgeth with one Simon a tanner, whose house is by
+the sea side: he shall tell thee what thou oughtest to do.
+
+10:7 And when the angel which spake unto Cornelius was departed, he
+called two of his household servants, and a devout soldier of them
+that waited on him continually; 10:8 And when he had declared all
+these things unto them, he sent them to Joppa.
+
+10:9 On the morrow, as they went on their journey, and drew nigh unto
+the city, Peter went up upon the housetop to pray about the sixth
+hour: 10:10 And he became very hungry, and would have eaten: but while
+they made ready, he fell into a trance, 10:11 And saw heaven opened,
+and a certain vessel descending upon him, as it had been a great sheet
+knit at the four corners, and let down to the earth: 10:12 Wherein
+were all manner of fourfooted beasts of the earth, and wild beasts,
+and creeping things, and fowls of the air.
+
+10:13 And there came a voice to him, Rise, Peter; kill, and eat.
+
+10:14 But Peter said, Not so, Lord; for I have never eaten any thing
+that is common or unclean.
+
+10:15 And the voice spake unto him again the second time, What God
+hath cleansed, that call not thou common.
+
+10:16 This was done thrice: and the vessel was received up again into
+heaven.
+
+10:17 Now while Peter doubted in himself what this vision which he had
+seen should mean, behold, the men which were sent from Cornelius had
+made enquiry for Simon's house, and stood before the gate, 10:18 And
+called, and asked whether Simon, which was surnamed Peter, were lodged
+there.
+
+10:19 While Peter thought on the vision, the Spirit said unto him,
+Behold, three men seek thee.
+
+10:20 Arise therefore, and get thee down, and go with them, doubting
+nothing: for I have sent them.
+
+10:21 Then Peter went down to the men which were sent unto him from
+Cornelius; and said, Behold, I am he whom ye seek: what is the cause
+wherefore ye are come? 10:22 And they said, Cornelius the centurion,
+a just man, and one that feareth God, and of good report among all the
+nation of the Jews, was warned from God by an holy angel to send for
+thee into his house, and to hear words of thee.
+
+10:23 Then called he them in, and lodged them. And on the morrow Peter
+went away with them, and certain brethren from Joppa accompanied him.
+
+10:24 And the morrow after they entered into Caesarea. And Cornelius
+waited for them, and he had called together his kinsmen and near
+friends.
+
+10:25 And as Peter was coming in, Cornelius met him, and fell down at
+his feet, and worshipped him.
+
+10:26 But Peter took him up, saying, Stand up; I myself also am a man.
+
+10:27 And as he talked with him, he went in, and found many that were
+come together.
+
+10:28 And he said unto them, Ye know how that it is an unlawful thing
+for a man that is a Jew to keep company, or come unto one of another
+nation; but God hath shewed me that I should not call any man common
+or unclean.
+
+10:29 Therefore came I unto you without gainsaying, as soon as I was
+sent for: I ask therefore for what intent ye have sent for me? 10:30
+And Cornelius said, Four days ago I was fasting until this hour; and
+at the ninth hour I prayed in my house, and, behold, a man stood
+before me in bright clothing, 10:31 And said, Cornelius, thy prayer is
+heard, and thine alms are had in remembrance in the sight of God.
+
+10:32 Send therefore to Joppa, and call hither Simon, whose surname is
+Peter; he is lodged in the house of one Simon a tanner by the sea
+side: who, when he cometh, shall speak unto thee.
+
+10:33 Immediately therefore I sent to thee; and thou hast well done
+that thou art come. Now therefore are we all here present before God,
+to hear all things that are commanded thee of God.
+
+10:34 Then Peter opened his mouth, and said, Of a truth I perceive
+that God is no respecter of persons: 10:35 But in every nation he that
+feareth him, and worketh righteousness, is accepted with him.
+
+10:36 The word which God sent unto the children of Israel, preaching
+peace by Jesus Christ: (he is Lord of all:) 10:37 That word, I say, ye
+know, which was published throughout all Judaea, and began from
+Galilee, after the baptism which John preached; 10:38 How God anointed
+Jesus of Nazareth with the Holy Ghost and with power: who went about
+doing good, and healing all that were oppressed of the devil; for God
+was with him.
+
+10:39 And we are witnesses of all things which he did both in the land
+of the Jews, and in Jerusalem; whom they slew and hanged on a tree:
+10:40 Him God raised up the third day, and shewed him openly; 10:41
+Not to all the people, but unto witnesses chosen before God, even to
+us, who did eat and drink with him after he rose from the dead.
+
+10:42 And he commanded us to preach unto the people, and to testify
+that it is he which was ordained of God to be the Judge of quick and
+dead.
+
+10:43 To him give all the prophets witness, that through his name
+whosoever believeth in him shall receive remission of sins.
+
+10:44 While Peter yet spake these words, the Holy Ghost fell on all
+them which heard the word.
+
+10:45 And they of the circumcision which believed were astonished, as
+many as came with Peter, because that on the Gentiles also was poured
+out the gift of the Holy Ghost.
+
+10:46 For they heard them speak with tongues, and magnify God. Then
+answered Peter, 10:47 Can any man forbid water, that these should not
+be baptized, which have received the Holy Ghost as well as we? 10:48
+And he commanded them to be baptized in the name of the Lord. Then
+prayed they him to tarry certain days.
+
+11:1 And the apostles and brethren that were in Judaea heard that the
+Gentiles had also received the word of God.
+
+11:2 And when Peter was come up to Jerusalem, they that were of the
+circumcision contended with him, 11:3 Saying, Thou wentest in to men
+uncircumcised, and didst eat with them.
+
+11:4 But Peter rehearsed the matter from the beginning, and expounded
+it by order unto them, saying, 11:5 I was in the city of Joppa
+praying: and in a trance I saw a vision, A certain vessel descend, as
+it had been a great sheet, let down from heaven by four corners; and
+it came even to me: 11:6 Upon the which when I had fastened mine eyes,
+I considered, and saw fourfooted beasts of the earth, and wild beasts,
+and creeping things, and fowls of the air.
+
+11:7 And I heard a voice saying unto me, Arise, Peter; slay and eat.
+
+11:8 But I said, Not so, Lord: for nothing common or unclean hath at
+any time entered into my mouth.
+
+11:9 But the voice answered me again from heaven, What God hath
+cleansed, that call not thou common.
+
+11:10 And this was done three times: and all were drawn up again into
+heaven.
+
+11:11 And, behold, immediately there were three men already come unto
+the house where I was, sent from Caesarea unto me.
+
+11:12 And the Spirit bade me go with them, nothing doubting. Moreover
+these six brethren accompanied me, and we entered into the man's
+house: 11:13 And he shewed us how he had seen an angel in his house,
+which stood and said unto him, Send men to Joppa, and call for Simon,
+whose surname is Peter; 11:14 Who shall tell thee words, whereby thou
+and all thy house shall be saved.
+
+11:15 And as I began to speak, the Holy Ghost fell on them, as on us
+at the beginning.
+
+11:16 Then remembered I the word of the Lord, how that he said, John
+indeed baptized with water; but ye shall be baptized with the Holy
+Ghost.
+
+11:17 Forasmuch then as God gave them the like gift as he did unto us,
+who believed on the Lord Jesus Christ; what was I, that I could
+withstand God? 11:18 When they heard these things, they held their
+peace, and glorified God, saying, Then hath God also to the Gentiles
+granted repentance unto life.
+
+11:19 Now they which were scattered abroad upon the persecution that
+arose about Stephen travelled as far as Phenice, and Cyprus, and
+Antioch, preaching the word to none but unto the Jews only.
+
+11:20 And some of them were men of Cyprus and Cyrene, which, when they
+were come to Antioch, spake unto the Grecians, preaching the LORD
+Jesus.
+
+11:21 And the hand of the Lord was with them: and a great number
+believed, and turned unto the Lord.
+
+11:22 Then tidings of these things came unto the ears of the church
+which was in Jerusalem: and they sent forth Barnabas, that he should
+go as far as Antioch.
+
+11:23 Who, when he came, and had seen the grace of God, was glad, and
+exhorted them all, that with purpose of heart they would cleave unto
+the Lord.
+
+11:24 For he was a good man, and full of the Holy Ghost and of faith:
+and much people was added unto the Lord.
+
+11:25 Then departed Barnabas to Tarsus, for to seek Saul: 11:26 And
+when he had found him, he brought him unto Antioch. And it came to
+pass, that a whole year they assembled themselves with the church, and
+taught much people. And the disciples were called Christians first in
+Antioch.
+
+11:27 And in these days came prophets from Jerusalem unto Antioch.
+
+11:28 And there stood up one of them named Agabus, and signified by
+the Spirit that there should be great dearth throughout all the world:
+which came to pass in the days of Claudius Caesar.
+
+11:29 Then the disciples, every man according to his ability,
+determined to send relief unto the brethren which dwelt in Judaea:
+11:30 Which also they did, and sent it to the elders by the hands of
+Barnabas and Saul.
+
+12:1 Now about that time Herod the king stretched forth his hands to
+vex certain of the church.
+
+12:2 And he killed James the brother of John with the sword.
+
+12:3 And because he saw it pleased the Jews, he proceeded further to
+take Peter also. (Then were the days of unleavened bread.) 12:4 And
+when he had apprehended him, he put him in prison, and delivered him
+to four quaternions of soldiers to keep him; intending after Easter to
+bring him forth to the people.
+
+12:5 Peter therefore was kept in prison: but prayer was made without
+ceasing of the church unto God for him.
+
+12:6 And when Herod would have brought him forth, the same night Peter
+was sleeping between two soldiers, bound with two chains: and the
+keepers before the door kept the prison.
+
+12:7 And, behold, the angel of the Lord came upon him, and a light
+shined in the prison: and he smote Peter on the side, and raised him
+up, saying, Arise up quickly. And his chains fell off from his hands.
+
+12:8 And the angel said unto him, Gird thyself, and bind on thy
+sandals.
+
+And so he did. And he saith unto him, Cast thy garment about thee, and
+follow me.
+
+12:9 And he went out, and followed him; and wist not that it was true
+which was done by the angel; but thought he saw a vision.
+
+12:10 When they were past the first and the second ward, they came
+unto the iron gate that leadeth unto the city; which opened to them of
+his own accord: and they went out, and passed on through one street;
+and forthwith the angel departed from him.
+
+12:11 And when Peter was come to himself, he said, Now I know of a
+surety, that the LORD hath sent his angel, and hath delivered me out
+of the hand of Herod, and from all the expectation of the people of
+the Jews.
+
+12:12 And when he had considered the thing, he came to the house of
+Mary the mother of John, whose surname was Mark; where many were
+gathered together praying.
+
+12:13 And as Peter knocked at the door of the gate, a damsel came to
+hearken, named Rhoda.
+
+12:14 And when she knew Peter's voice, she opened not the gate for
+gladness, but ran in, and told how Peter stood before the gate.
+
+12:15 And they said unto her, Thou art mad. But she constantly
+affirmed that it was even so. Then said they, It is his angel.
+
+12:16 But Peter continued knocking: and when they had opened the door,
+and saw him, they were astonished.
+
+12:17 But he, beckoning unto them with the hand to hold their peace,
+declared unto them how the Lord had brought him out of the prison. And
+he said, Go shew these things unto James, and to the brethren. And he
+departed, and went into another place.
+
+12:18 Now as soon as it was day, there was no small stir among the
+soldiers, what was become of Peter.
+
+12:19 And when Herod had sought for him, and found him not, he
+examined the keepers, and commanded that they should be put to death.
+And he went down from Judaea to Caesarea, and there abode.
+
+12:20 And Herod was highly displeased with them of Tyre and Sidon: but
+they came with one accord to him, and, having made Blastus the king's
+chamberlain their friend, desired peace; because their country was
+nourished by the king's country.
+
+12:21 And upon a set day Herod, arrayed in royal apparel, sat upon his
+throne, and made an oration unto them.
+
+12:22 And the people gave a shout, saying, It is the voice of a god,
+and not of a man.
+
+12:23 And immediately the angel of the Lord smote him, because he gave
+not God the glory: and he was eaten of worms, and gave up the ghost.
+
+12:24 But the word of God grew and multiplied.
+
+12:25 And Barnabas and Saul returned from Jerusalem, when they had
+fulfilled their ministry, and took with them John, whose surname was
+Mark.
+
+13:1 Now there were in the church that was at Antioch certain prophets
+and teachers; as Barnabas, and Simeon that was called Niger, and
+Lucius of Cyrene, and Manaen, which had been brought up with Herod the
+tetrarch, and Saul.
+
+13:2 As they ministered to the Lord, and fasted, the Holy Ghost said,
+Separate me Barnabas and Saul for the work whereunto I have called
+them.
+
+13:3 And when they had fasted and prayed, and laid their hands on
+them, they sent them away.
+
+13:4 So they, being sent forth by the Holy Ghost, departed unto
+Seleucia; and from thence they sailed to Cyprus.
+
+13:5 And when they were at Salamis, they preached the word of God in
+the synagogues of the Jews: and they had also John to their minister.
+
+13:6 And when they had gone through the isle unto Paphos, they found a
+certain sorcerer, a false prophet, a Jew, whose name was Barjesus:
+13:7 Which was with the deputy of the country, Sergius Paulus, a
+prudent man; who called for Barnabas and Saul, and desired to hear the
+word of God.
+
+13:8 But Elymas the sorcerer (for so is his name by interpretation)
+withstood them, seeking to turn away the deputy from the faith.
+
+13:9 Then Saul, (who also is called Paul,) filled with the Holy Ghost,
+set his eyes on him.
+
+13:10 And said, O full of all subtilty and all mischief, thou child of
+the devil, thou enemy of all righteousness, wilt thou not cease to
+pervert the right ways of the Lord? 13:11 And now, behold, the hand
+of the Lord is upon thee, and thou shalt be blind, not seeing the sun
+for a season. And immediately there fell on him a mist and a darkness;
+and he went about seeking some to lead him by the hand.
+
+13:12 Then the deputy, when he saw what was done, believed, being
+astonished at the doctrine of the Lord.
+
+13:13 Now when Paul and his company loosed from Paphos, they came to
+Perga in Pamphylia: and John departing from them returned to
+Jerusalem.
+
+13:14 But when they departed from Perga, they came to Antioch in
+Pisidia, and went into the synagogue on the sabbath day, and sat down.
+
+13:15 And after the reading of the law and the prophets the rulers of
+the synagogue sent unto them, saying, Ye men and brethren, if ye have
+any word of exhortation for the people, say on.
+
+13:16 Then Paul stood up, and beckoning with his hand said, Men of
+Israel, and ye that fear God, give audience.
+
+13:17 The God of this people of Israel chose our fathers, and exalted
+the people when they dwelt as strangers in the land of Egypt, and with
+an high arm brought he them out of it.
+
+13:18 And about the time of forty years suffered he their manners in
+the wilderness.
+
+13:19 And when he had destroyed seven nations in the land of Chanaan,
+he divided their land to them by lot.
+
+13:20 And after that he gave unto them judges about the space of four
+hundred and fifty years, until Samuel the prophet.
+
+13:21 And afterward they desired a king: and God gave unto them Saul
+the son of Cis, a man of the tribe of Benjamin, by the space of forty
+years.
+
+13:22 And when he had removed him, he raised up unto them David to be
+their king; to whom also he gave their testimony, and said, I have
+found David the son of Jesse, a man after mine own heart, which shall
+fulfil all my will.
+
+13:23 Of this man's seed hath God according to his promise raised unto
+Israel a Saviour, Jesus: 13:24 When John had first preached before his
+coming the baptism of repentance to all the people of Israel.
+
+13:25 And as John fulfilled his course, he said, Whom think ye that I
+am? I am not he. But, behold, there cometh one after me, whose shoes
+of his feet I am not worthy to loose.
+
+13:26 Men and brethren, children of the stock of Abraham, and
+whosoever among you feareth God, to you is the word of this salvation
+sent.
+
+13:27 For they that dwell at Jerusalem, and their rulers, because they
+knew him not, nor yet the voices of the prophets which are read every
+sabbath day, they have fulfilled them in condemning him.
+
+13:28 And though they found no cause of death in him, yet desired they
+Pilate that he should be slain.
+
+13:29 And when they had fulfilled all that was written of him, they
+took him down from the tree, and laid him in a sepulchre.
+
+13:30 But God raised him from the dead: 13:31 And he was seen many
+days of them which came up with him from Galilee to Jerusalem, who are
+his witnesses unto the people.
+
+13:32 And we declare unto you glad tidings, how that the promise which
+was made unto the fathers, 13:33 God hath fulfilled the same unto us
+their children, in that he hath raised up Jesus again; as it is also
+written in the second psalm, Thou art my Son, this day have I begotten
+thee.
+
+13:34 And as concerning that he raised him up from the dead, now no
+more to return to corruption, he said on this wise, I will give you
+the sure mercies of David.
+
+13:35 Wherefore he saith also in another psalm, Thou shalt not suffer
+thine Holy One to see corruption.
+
+13:36 For David, after he had served his own generation by the will of
+God, fell on sleep, and was laid unto his fathers, and saw corruption:
+13:37 But he, whom God raised again, saw no corruption.
+
+13:38 Be it known unto you therefore, men and brethren, that through
+this man is preached unto you the forgiveness of sins: 13:39 And by
+him all that believe are justified from all things, from which ye
+could not be justified by the law of Moses.
+
+13:40 Beware therefore, lest that come upon you, which is spoken of in
+the prophets; 13:41 Behold, ye despisers, and wonder, and perish: for
+I work a work in your days, a work which ye shall in no wise believe,
+though a man declare it unto you.
+
+13:42 And when the Jews were gone out of the synagogue, the Gentiles
+besought that these words might be preached to them the next sabbath.
+
+13:43 Now when the congregation was broken up, many of the Jews and
+religious proselytes followed Paul and Barnabas: who, speaking to
+them, persuaded them to continue in the grace of God.
+
+13:44 And the next sabbath day came almost the whole city together to
+hear the word of God.
+
+13:45 But when the Jews saw the multitudes, they were filled with
+envy, and spake against those things which were spoken by Paul,
+contradicting and blaspheming.
+
+13:46 Then Paul and Barnabas waxed bold, and said, It was necessary
+that the word of God should first have been spoken to you: but seeing
+ye put it from you, and judge yourselves unworthy of everlasting life,
+lo, we turn to the Gentiles.
+
+13:47 For so hath the Lord commanded us, saying, I have set thee to be
+a light of the Gentiles, that thou shouldest be for salvation unto the
+ends of the earth.
+
+13:48 And when the Gentiles heard this, they were glad, and glorified
+the word of the Lord: and as many as were ordained to eternal life
+believed.
+
+13:49 And the word of the Lord was published throughout all the
+region.
+
+13:50 But the Jews stirred up the devout and honourable women, and the
+chief men of the city, and raised persecution against Paul and
+Barnabas, and expelled them out of their coasts.
+
+13:51 But they shook off the dust of their feet against them, and came
+unto Iconium.
+
+13:52 And the disciples were filled with joy, and with the Holy Ghost.
+
+14:1 And it came to pass in Iconium, that they went both together into
+the synagogue of the Jews, and so spake, that a great multitude both
+of the Jews and also of the Greeks believed.
+
+14:2 But the unbelieving Jews stirred up the Gentiles, and made their
+minds evil affected against the brethren.
+
+14:3 Long time therefore abode they speaking boldly in the Lord, which
+gave testimony unto the word of his grace, and granted signs and
+wonders to be done by their hands.
+
+14:4 But the multitude of the city was divided: and part held with the
+Jews, and part with the apostles.
+
+14:5 And when there was an assault made both of the Gentiles, and also
+of the Jews with their rulers, to use them despitefully, and to stone
+them, 14:6 They were ware of it, and fled unto Lystra and Derbe,
+cities of Lycaonia, and unto the region that lieth round about: 14:7
+And there they preached the gospel.
+
+14:8 And there sat a certain man at Lystra, impotent in his feet,
+being a cripple from his mother's womb, who never had walked: 14:9 The
+same heard Paul speak: who stedfastly beholding him, and perceiving
+that he had faith to be healed, 14:10 Said with a loud voice, Stand
+upright on thy feet. And he leaped and walked.
+
+14:11 And when the people saw what Paul had done, they lifted up their
+voices, saying in the speech of Lycaonia, The gods are come down to us
+in the likeness of men.
+
+14:12 And they called Barnabas, Jupiter; and Paul, Mercurius, because
+he was the chief speaker.
+
+14:13 Then the priest of Jupiter, which was before their city, brought
+oxen and garlands unto the gates, and would have done sacrifice with
+the people.
+
+14:14 Which when the apostles, Barnabas and Paul, heard of, they rent
+their clothes, and ran in among the people, crying out, 14:15 And
+saying, Sirs, why do ye these things? We also are men of like passions
+with you, and preach unto you that ye should turn from these vanities
+unto the living God, which made heaven, and earth, and the sea, and
+all things that are therein: 14:16 Who in times past suffered all
+nations to walk in their own ways.
+
+14:17 Nevertheless he left not himself without witness, in that he did
+good, and gave us rain from heaven, and fruitful seasons, filling our
+hearts with food and gladness.
+
+14:18 And with these sayings scarce restrained they the people, that
+they had not done sacrifice unto them.
+
+14:19 And there came thither certain Jews from Antioch and Iconium,
+who persuaded the people, and having stoned Paul, drew him out of the
+city, supposing he had been dead.
+
+14:20 Howbeit, as the disciples stood round about him, he rose up, and
+came into the city: and the next day he departed with Barnabas to
+Derbe.
+
+14:21 And when they had preached the gospel to that city, and had
+taught many, they returned again to Lystra, and to Iconium, and
+Antioch, 14:22 Confirming the souls of the disciples, and exhorting
+them to continue in the faith, and that we must through much
+tribulation enter into the kingdom of God.
+
+14:23 And when they had ordained them elders in every church, and had
+prayed with fasting, they commended them to the Lord, on whom they
+believed.
+
+14:24 And after they had passed throughout Pisidia, they came to
+Pamphylia.
+
+14:25 And when they had preached the word in Perga, they went down
+into Attalia: 14:26 And thence sailed to Antioch, from whence they had
+been recommended to the grace of God for the work which they
+fulfilled.
+
+14:27 And when they were come, and had gathered the church together,
+they rehearsed all that God had done with them, and how he had opened
+the door of faith unto the Gentiles.
+
+14:28 And there they abode long time with the disciples.
+
+15:1 And certain men which came down from Judaea taught the brethren,
+and said, Except ye be circumcised after the manner of Moses, ye
+cannot be saved.
+
+15:2 When therefore Paul and Barnabas had no small dissension and
+disputation with them, they determined that Paul and Barnabas, and
+certain other of them, should go up to Jerusalem unto the apostles and
+elders about this question.
+
+15:3 And being brought on their way by the church, they passed through
+Phenice and Samaria, declaring the conversion of the Gentiles: and
+they caused great joy unto all the brethren.
+
+15:4 And when they were come to Jerusalem, they were received of the
+church, and of the apostles and elders, and they declared all things
+that God had done with them.
+
+15:5 But there rose up certain of the sect of the Pharisees which
+believed, saying, That it was needful to circumcise them, and to
+command them to keep the law of Moses.
+
+15:6 And the apostles and elders came together for to consider of this
+matter.
+
+15:7 And when there had been much disputing, Peter rose up, and said
+unto them, Men and brethren, ye know how that a good while ago God
+made choice among us, that the Gentiles by my mouth should hear the
+word of the gospel, and believe.
+
+15:8 And God, which knoweth the hearts, bare them witness, giving them
+the Holy Ghost, even as he did unto us; 15:9 And put no difference
+between us and them, purifying their hearts by faith.
+
+15:10 Now therefore why tempt ye God, to put a yoke upon the neck of
+the disciples, which neither our fathers nor we were able to bear?
+15:11 But we believe that through the grace of the LORD Jesus Christ
+we shall be saved, even as they.
+
+15:12 Then all the multitude kept silence, and gave audience to
+Barnabas and Paul, declaring what miracles and wonders God had wrought
+among the Gentiles by them.
+
+15:13 And after they had held their peace, James answered, saying, Men
+and brethren, hearken unto me: 15:14 Simeon hath declared how God at
+the first did visit the Gentiles, to take out of them a people for his
+name.
+
+15:15 And to this agree the words of the prophets; as it is written,
+15:16 After this I will return, and will build again the tabernacle of
+David, which is fallen down; and I will build again the ruins thereof,
+and I will set it up: 15:17 That the residue of men might seek after
+the Lord, and all the Gentiles, upon whom my name is called, saith the
+Lord, who doeth all these things.
+
+15:18 Known unto God are all his works from the beginning of the
+world.
+
+15:19 Wherefore my sentence is, that we trouble not them, which from
+among the Gentiles are turned to God: 15:20 But that we write unto
+them, that they abstain from pollutions of idols, and from
+fornication, and from things strangled, and from blood.
+
+15:21 For Moses of old time hath in every city them that preach him,
+being read in the synagogues every sabbath day.
+
+15:22 Then pleased it the apostles and elders with the whole church,
+to send chosen men of their own company to Antioch with Paul and
+Barnabas; namely, Judas surnamed Barsabas and Silas, chief men among
+the brethren: 15:23 And they wrote letters by them after this manner;
+The apostles and elders and brethren send greeting unto the brethren
+which are of the Gentiles in Antioch and Syria and Cilicia.
+
+15:24 Forasmuch as we have heard, that certain which went out from us
+have troubled you with words, subverting your souls, saying, Ye must
+be circumcised, and keep the law: to whom we gave no such commandment:
+15:25 It seemed good unto us, being assembled with one accord, to send
+chosen men unto you with our beloved Barnabas and Paul, 15:26 Men that
+have hazarded their lives for the name of our Lord Jesus Christ.
+
+15:27 We have sent therefore Judas and Silas, who shall also tell you
+the same things by mouth.
+
+15:28 For it seemed good to the Holy Ghost, and to us, to lay upon you
+no greater burden than these necessary things; 15:29 That ye abstain
+from meats offered to idols, and from blood, and from things
+strangled, and from fornication: from which if ye keep yourselves, ye
+shall do well. Fare ye well.
+
+15:30 So when they were dismissed, they came to Antioch: and when they
+had gathered the multitude together, they delivered the epistle: 15:31
+Which when they had read, they rejoiced for the consolation.
+
+15:32 And Judas and Silas, being prophets also themselves, exhorted
+the brethren with many words, and confirmed them.
+
+15:33 And after they had tarried there a space, they were let go in
+peace from the brethren unto the apostles.
+
+15:34 Notwithstanding it pleased Silas to abide there still.
+
+15:35 Paul also and Barnabas continued in Antioch, teaching and
+preaching the word of the Lord, with many others also.
+
+15:36 And some days after Paul said unto Barnabas, Let us go again and
+visit our brethren in every city where we have preached the word of
+the LORD, and see how they do.
+
+15:37 And Barnabas determined to take with them John, whose surname
+was Mark.
+
+15:38 But Paul thought not good to take him with them, who departed
+from them from Pamphylia, and went not with them to the work.
+
+15:39 And the contention was so sharp between them, that they departed
+asunder one from the other: and so Barnabas took Mark, and sailed unto
+Cyprus; 15:40 And Paul chose Silas, and departed, being recommended by
+the brethren unto the grace of God.
+
+15:41 And he went through Syria and Cilicia, confirming the churches.
+
+16:1 Then came he to Derbe and Lystra: and, behold, a certain disciple
+was there, named Timotheus, the son of a certain woman, which was a
+Jewess, and believed; but his father was a Greek: 16:2 Which was well
+reported of by the brethren that were at Lystra and Iconium.
+
+16:3 Him would Paul have to go forth with him; and took and
+circumcised him because of the Jews which were in those quarters: for
+they knew all that his father was a Greek.
+
+16:4 And as they went through the cities, they delivered them the
+decrees for to keep, that were ordained of the apostles and elders
+which were at Jerusalem.
+
+16:5 And so were the churches established in the faith, and increased
+in number daily.
+
+16:6 Now when they had gone throughout Phrygia and the region of
+Galatia, and were forbidden of the Holy Ghost to preach the word in
+Asia, 16:7 After they were come to Mysia, they assayed to go into
+Bithynia: but the Spirit suffered them not.
+
+16:8 And they passing by Mysia came down to Troas.
+
+16:9 And a vision appeared to Paul in the night; There stood a man of
+Macedonia, and prayed him, saying, Come over into Macedonia, and help
+us.
+
+16:10 And after he had seen the vision, immediately we endeavoured to
+go into Macedonia, assuredly gathering that the Lord had called us for
+to preach the gospel unto them.
+
+16:11 Therefore loosing from Troas, we came with a straight course to
+Samothracia, and the next day to Neapolis; 16:12 And from thence to
+Philippi, which is the chief city of that part of Macedonia, and a
+colony: and we were in that city abiding certain days.
+
+16:13 And on the sabbath we went out of the city by a river side,
+where prayer was wont to be made; and we sat down, and spake unto the
+women which resorted thither.
+
+16:14 And a certain woman named Lydia, a seller of purple, of the city
+of Thyatira, which worshipped God, heard us: whose heart the Lord
+opened, that she attended unto the things which were spoken of Paul.
+
+16:15 And when she was baptized, and her household, she besought us,
+saying, If ye have judged me to be faithful to the Lord, come into my
+house, and abide there. And she constrained us.
+
+16:16 And it came to pass, as we went to prayer, a certain damsel
+possessed with a spirit of divination met us, which brought her
+masters much gain by soothsaying: 16:17 The same followed Paul and us,
+and cried, saying, These men are the servants of the most high God,
+which shew unto us the way of salvation.
+
+16:18 And this did she many days. But Paul, being grieved, turned and
+said to the spirit, I command thee in the name of Jesus Christ to come
+out of her.
+
+And he came out the same hour.
+
+16:19 And when her masters saw that the hope of their gains was gone,
+they caught Paul and Silas, and drew them into the marketplace unto
+the rulers, 16:20 And brought them to the magistrates, saying, These
+men, being Jews, do exceedingly trouble our city, 16:21 And teach
+customs, which are not lawful for us to receive, neither to observe,
+being Romans.
+
+16:22 And the multitude rose up together against them: and the
+magistrates rent off their clothes, and commanded to beat them.
+
+16:23 And when they had laid many stripes upon them, they cast them
+into prison, charging the jailor to keep them safely: 16:24 Who,
+having received such a charge, thrust them into the inner prison, and
+made their feet fast in the stocks.
+
+16:25 And at midnight Paul and Silas prayed, and sang praises unto
+God: and the prisoners heard them.
+
+16:26 And suddenly there was a great earthquake, so that the
+foundations of the prison were shaken: and immediately all the doors
+were opened, and every one's bands were loosed.
+
+16:27 And the keeper of the prison awaking out of his sleep, and
+seeing the prison doors open, he drew out his sword, and would have
+killed himself, supposing that the prisoners had been fled.
+
+16:28 But Paul cried with a loud voice, saying, Do thyself no harm:
+for we are all here.
+
+16:29 Then he called for a light, and sprang in, and came trembling,
+and fell down before Paul and Silas, 16:30 And brought them out, and
+said, Sirs, what must I do to be saved? 16:31 And they said, Believe
+on the Lord Jesus Christ, and thou shalt be saved, and thy house.
+
+16:32 And they spake unto him the word of the Lord, and to all that
+were in his house.
+
+16:33 And he took them the same hour of the night, and washed their
+stripes; and was baptized, he and all his, straightway.
+
+16:34 And when he had brought them into his house, he set meat before
+them, and rejoiced, believing in God with all his house.
+
+16:35 And when it was day, the magistrates sent the serjeants, saying,
+Let those men go.
+
+16:36 And the keeper of the prison told this saying to Paul, The
+magistrates have sent to let you go: now therefore depart, and go in
+peace.
+
+16:37 But Paul said unto them, They have beaten us openly uncondemned,
+being Romans, and have cast us into prison; and now do they thrust us
+out privily? nay verily; but let them come themselves and fetch us
+out.
+
+16:38 And the serjeants told these words unto the magistrates: and
+they feared, when they heard that they were Romans.
+
+16:39 And they came and besought them, and brought them out, and
+desired them to depart out of the city.
+
+16:40 And they went out of the prison, and entered into the house of
+Lydia: and when they had seen the brethren, they comforted them, and
+departed.
+
+17:1 Now when they had passed through Amphipolis and Apollonia, they
+came to Thessalonica, where was a synagogue of the Jews: 17:2 And
+Paul, as his manner was, went in unto them, and three sabbath days
+reasoned with them out of the scriptures, 17:3 Opening and alleging,
+that Christ must needs have suffered, and risen again from the dead;
+and that this Jesus, whom I preach unto you, is Christ.
+
+17:4 And some of them believed, and consorted with Paul and Silas; and
+of the devout Greeks a great multitude, and of the chief women not a
+few.
+
+17:5 But the Jews which believed not, moved with envy, took unto them
+certain lewd fellows of the baser sort, and gathered a company, and
+set all the city on an uproar, and assaulted the house of Jason, and
+sought to bring them out to the people.
+
+17:6 And when they found them not, they drew Jason and certain
+brethren unto the rulers of the city, crying, These that have turned
+the world upside down are come hither also; 17:7 Whom Jason hath
+received: and these all do contrary to the decrees of Caesar, saying
+that there is another king, one Jesus.
+
+17:8 And they troubled the people and the rulers of the city, when
+they heard these things.
+
+17:9 And when they had taken security of Jason, and of the other, they
+let them go.
+
+17:10 And the brethren immediately sent away Paul and Silas by night
+unto Berea: who coming thither went into the synagogue of the Jews.
+
+17:11 These were more noble than those in Thessalonica, in that they
+received the word with all readiness of mind, and searched the
+scriptures daily, whether those things were so.
+
+17:12 Therefore many of them believed; also of honourable women which
+were Greeks, and of men, not a few.
+
+17:13 But when the Jews of Thessalonica had knowledge that the word of
+God was preached of Paul at Berea, they came thither also, and stirred
+up the people.
+
+17:14 And then immediately the brethren sent away Paul to go as it
+were to the sea: but Silas and Timotheus abode there still.
+
+17:15 And they that conducted Paul brought him unto Athens: and
+receiving a commandment unto Silas and Timotheus for to come to him
+with all speed, they departed.
+
+17:16 Now while Paul waited for them at Athens, his spirit was stirred
+in him, when he saw the city wholly given to idolatry.
+
+17:17 Therefore disputed he in the synagogue with the Jews, and with
+the devout persons, and in the market daily with them that met with
+him.
+
+17:18 Then certain philosophers of the Epicureans, and of the Stoicks,
+encountered him. And some said, What will this babbler say? other
+some, He seemeth to be a setter forth of strange gods: because he
+preached unto them Jesus, and the resurrection.
+
+17:19 And they took him, and brought him unto Areopagus, saying, May
+we know what this new doctrine, whereof thou speakest, is? 17:20 For
+thou bringest certain strange things to our ears: we would know
+therefore what these things mean.
+
+17:21 (For all the Athenians and strangers which were there spent
+their time in nothing else, but either to tell, or to hear some new
+thing.) 17:22 Then Paul stood in the midst of Mars' hill, and said,
+Ye men of Athens, I perceive that in all things ye are too
+superstitious.
+
+17:23 For as I passed by, and beheld your devotions, I found an altar
+with this inscription, TO THE UNKNOWN GOD. Whom therefore ye
+ignorantly worship, him declare I unto you.
+
+17:24 God that made the world and all things therein, seeing that he
+is Lord of heaven and earth, dwelleth not in temples made with hands;
+17:25 Neither is worshipped with men's hands, as though he needed any
+thing, seeing he giveth to all life, and breath, and all things; 17:26
+And hath made of one blood all nations of men for to dwell on all the
+face of the earth, and hath determined the times before appointed, and
+the bounds of their habitation; 17:27 That they should seek the Lord,
+if haply they might feel after him, and find him, though he be not far
+from every one of us: 17:28 For in him we live, and move, and have our
+being; as certain also of your own poets have said, For we are also
+his offspring.
+
+17:29 Forasmuch then as we are the offspring of God, we ought not to
+think that the Godhead is like unto gold, or silver, or stone, graven
+by art and man's device.
+
+17:30 And the times of this ignorance God winked at; but now
+commandeth all men every where to repent: 17:31 Because he hath
+appointed a day, in the which he will judge the world in righteousness
+by that man whom he hath ordained; whereof he hath given assurance
+unto all men, in that he hath raised him from the dead.
+
+17:32 And when they heard of the resurrection of the dead, some
+mocked: and others said, We will hear thee again of this matter.
+
+17:33 So Paul departed from among them.
+
+17:34 Howbeit certain men clave unto him, and believed: among the
+which was Dionysius the Areopagite, and a woman named Damaris, and
+others with them.
+
+18:1 After these things Paul departed from Athens, and came to
+Corinth; 18:2 And found a certain Jew named Aquila, born in Pontus,
+lately come from Italy, with his wife Priscilla; (because that
+Claudius had commanded all Jews to depart from Rome:) and came unto
+them.
+
+18:3 And because he was of the same craft, he abode with them, and
+wrought: for by their occupation they were tentmakers.
+
+18:4 And he reasoned in the synagogue every sabbath, and persuaded the
+Jews and the Greeks.
+
+18:5 And when Silas and Timotheus were come from Macedonia, Paul was
+pressed in the spirit, and testified to the Jews that Jesus was
+Christ.
+
+18:6 And when they opposed themselves, and blasphemed, he shook his
+raiment, and said unto them, Your blood be upon your own heads; I am
+clean; from henceforth I will go unto the Gentiles.
+
+18:7 And he departed thence, and entered into a certain man's house,
+named Justus, one that worshipped God, whose house joined hard to the
+synagogue.
+
+18:8 And Crispus, the chief ruler of the synagogue, believed on the
+Lord with all his house; and many of the Corinthians hearing believed,
+and were baptized.
+
+18:9 Then spake the Lord to Paul in the night by a vision, Be not
+afraid, but speak, and hold not thy peace: 18:10 For I am with thee,
+and no man shall set on thee to hurt thee: for I have much people in
+this city.
+
+18:11 And he continued there a year and six months, teaching the word
+of God among them.
+
+18:12 And when Gallio was the deputy of Achaia, the Jews made
+insurrection with one accord against Paul, and brought him to the
+judgment seat, 18:13 Saying, This fellow persuadeth men to worship God
+contrary to the law.
+
+18:14 And when Paul was now about to open his mouth, Gallio said unto
+the Jews, If it were a matter of wrong or wicked lewdness, O ye Jews,
+reason would that I should bear with you: 18:15 But if it be a
+question of words and names, and of your law, look ye to it; for I
+will be no judge of such matters.
+
+18:16 And he drave them from the judgment seat.
+
+18:17 Then all the Greeks took Sosthenes, the chief ruler of the
+synagogue, and beat him before the judgment seat. And Gallio cared for
+none of those things.
+
+18:18 And Paul after this tarried there yet a good while, and then
+took his leave of the brethren, and sailed thence into Syria, and with
+him Priscilla and Aquila; having shorn his head in Cenchrea: for he
+had a vow.
+
+18:19 And he came to Ephesus, and left them there: but he himself
+entered into the synagogue, and reasoned with the Jews.
+
+18:20 When they desired him to tarry longer time with them, he
+consented not; 18:21 But bade them farewell, saying, I must by all
+means keep this feast that cometh in Jerusalem: but I will return
+again unto you, if God will. And he sailed from Ephesus.
+
+18:22 And when he had landed at Caesarea, and gone up, and saluted the
+church, he went down to Antioch.
+
+18:23 And after he had spent some time there, he departed, and went
+over all the country of Galatia and Phrygia in order, strengthening
+all the disciples.
+
+18:24 And a certain Jew named Apollos, born at Alexandria, an eloquent
+man, and mighty in the scriptures, came to Ephesus.
+
+18:25 This man was instructed in the way of the Lord; and being
+fervent in the spirit, he spake and taught diligently the things of
+the Lord, knowing only the baptism of John.
+
+18:26 And he began to speak boldly in the synagogue: whom when Aquila
+and Priscilla had heard, they took him unto them, and expounded unto
+him the way of God more perfectly.
+
+18:27 And when he was disposed to pass into Achaia, the brethren
+wrote, exhorting the disciples to receive him: who, when he was come,
+helped them much which had believed through grace: 18:28 For he
+mightily convinced the Jews, and that publickly, shewing by the
+scriptures that Jesus was Christ.
+
+19:1 And it came to pass, that, while Apollos was at Corinth, Paul
+having passed through the upper coasts came to Ephesus: and finding
+certain disciples, 19:2 He said unto them, Have ye received the Holy
+Ghost since ye believed? And they said unto him, We have not so much
+as heard whether there be any Holy Ghost.
+
+19:3 And he said unto them, Unto what then were ye baptized? And they
+said, Unto John's baptism.
+
+19:4 Then said Paul, John verily baptized with the baptism of
+repentance, saying unto the people, that they should believe on him
+which should come after him, that is, on Christ Jesus.
+
+19:5 When they heard this, they were baptized in the name of the Lord
+Jesus.
+
+19:6 And when Paul had laid his hands upon them, the Holy Ghost came
+on them; and they spake with tongues, and prophesied.
+
+19:7 And all the men were about twelve.
+
+19:8 And he went into the synagogue, and spake boldly for the space of
+three months, disputing and persuading the things concerning the
+kingdom of God.
+
+19:9 But when divers were hardened, and believed not, but spake evil
+of that way before the multitude, he departed from them, and separated
+the disciples, disputing daily in the school of one Tyrannus.
+
+19:10 And this continued by the space of two years; so that all they
+which dwelt in Asia heard the word of the Lord Jesus, both Jews and
+Greeks.
+
+19:11 And God wrought special miracles by the hands of Paul: 19:12 So
+that from his body were brought unto the sick handkerchiefs or aprons,
+and the diseases departed from them, and the evil spirits went out of
+them.
+
+19:13 Then certain of the vagabond Jews, exorcists, took upon them to
+call over them which had evil spirits the name of the LORD Jesus,
+saying, We adjure you by Jesus whom Paul preacheth.
+
+19:14 And there were seven sons of one Sceva, a Jew, and chief of the
+priests, which did so.
+
+19:15 And the evil spirit answered and said, Jesus I know, and Paul I
+know; but who are ye? 19:16 And the man in whom the evil spirit was
+leaped on them, and overcame them, and prevailed against them, so that
+they fled out of that house naked and wounded.
+
+19:17 And this was known to all the Jews and Greeks also dwelling at
+Ephesus; and fear fell on them all, and the name of the Lord Jesus was
+magnified.
+
+19:18 And many that believed came, and confessed, and shewed their
+deeds.
+
+19:19 Many of them also which used curious arts brought their books
+together, and burned them before all men: and they counted the price
+of them, and found it fifty thousand pieces of silver.
+
+19:20 So mightily grew the word of God and prevailed.
+
+19:21 After these things were ended, Paul purposed in the spirit, when
+he had passed through Macedonia and Achaia, to go to Jerusalem,
+saying, After I have been there, I must also see Rome.
+
+19:22 So he sent into Macedonia two of them that ministered unto him,
+Timotheus and Erastus; but he himself stayed in Asia for a season.
+
+19:23 And the same time there arose no small stir about that way.
+
+19:24 For a certain man named Demetrius, a silversmith, which made
+silver shrines for Diana, brought no small gain unto the craftsmen;
+19:25 Whom he called together with the workmen of like occupation, and
+said, Sirs, ye know that by this craft we have our wealth.
+
+19:26 Moreover ye see and hear, that not alone at Ephesus, but almost
+throughout all Asia, this Paul hath persuaded and turned away much
+people, saying that they be no gods, which are made with hands: 19:27
+So that not only this our craft is in danger to be set at nought; but
+also that the temple of the great goddess Diana should be despised,
+and her magnificence should be destroyed, whom all Asia and the world
+worshippeth.
+
+19:28 And when they heard these sayings, they were full of wrath, and
+cried out, saying, Great is Diana of the Ephesians.
+
+19:29 And the whole city was filled with confusion: and having caught
+Gaius and Aristarchus, men of Macedonia, Paul's companions in travel,
+they rushed with one accord into the theatre.
+
+19:30 And when Paul would have entered in unto the people, the
+disciples suffered him not.
+
+19:31 And certain of the chief of Asia, which were his friends, sent
+unto him, desiring him that he would not adventure himself into the
+theatre.
+
+19:32 Some therefore cried one thing, and some another: for the
+assembly was confused: and the more part knew not wherefore they were
+come together.
+
+19:33 And they drew Alexander out of the multitude, the Jews putting
+him forward. And Alexander beckoned with the hand, and would have made
+his defence unto the people.
+
+19:34 But when they knew that he was a Jew, all with one voice about
+the space of two hours cried out, Great is Diana of the Ephesians.
+
+19:35 And when the townclerk had appeased the people, he said, Ye men
+of Ephesus, what man is there that knoweth not how that the city of
+the Ephesians is a worshipper of the great goddess Diana, and of the
+image which fell down from Jupiter? 19:36 Seeing then that these
+things cannot be spoken against, ye ought to be quiet, and to do
+nothing rashly.
+
+19:37 For ye have brought hither these men, which are neither robbers
+of churches, nor yet blasphemers of your goddess.
+
+19:38 Wherefore if Demetrius, and the craftsmen which are with him,
+have a matter against any man, the law is open, and there are
+deputies: let them implead one another.
+
+19:39 But if ye enquire any thing concerning other matters, it shall
+be determined in a lawful assembly.
+
+19:40 For we are in danger to be called in question for this day's
+uproar, there being no cause whereby we may give an account of this
+concourse.
+
+19:41 And when he had thus spoken, he dismissed the assembly.
+
+20:1 And after the uproar was ceased, Paul called unto him the
+disciples, and embraced them, and departed for to go into Macedonia.
+
+20:2 And when he had gone over those parts, and had given them much
+exhortation, he came into Greece, 20:3 And there abode three months.
+And when the Jews laid wait for him, as he was about to sail into
+Syria, he purposed to return through Macedonia.
+
+20:4 And there accompanied him into Asia Sopater of Berea; and of the
+Thessalonians, Aristarchus and Secundus; and Gaius of Derbe, and
+Timotheus; and of Asia, Tychicus and Trophimus.
+
+20:5 These going before tarried for us at Troas.
+
+20:6 And we sailed away from Philippi after the days of unleavened
+bread, and came unto them to Troas in five days; where we abode seven
+days.
+
+20:7 And upon the first day of the week, when the disciples came
+together to break bread, Paul preached unto them, ready to depart on
+the morrow; and continued his speech until midnight.
+
+20:8 And there were many lights in the upper chamber, where they were
+gathered together.
+
+20:9 And there sat in a window a certain young man named Eutychus,
+being fallen into a deep sleep: and as Paul was long preaching, he
+sunk down with sleep, and fell down from the third loft, and was taken
+up dead.
+
+20:10 And Paul went down, and fell on him, and embracing him said,
+Trouble not yourselves; for his life is in him.
+
+20:11 When he therefore was come up again, and had broken bread, and
+eaten, and talked a long while, even till break of day, so he
+departed.
+
+20:12 And they brought the young man alive, and were not a little
+comforted.
+
+20:13 And we went before to ship, and sailed unto Assos, there
+intending to take in Paul: for so had he appointed, minding himself to
+go afoot.
+
+20:14 And when he met with us at Assos, we took him in, and came to
+Mitylene.
+
+20:15 And we sailed thence, and came the next day over against Chios;
+and the next day we arrived at Samos, and tarried at Trogyllium; and
+the next day we came to Miletus.
+
+20:16 For Paul had determined to sail by Ephesus, because he would not
+spend the time in Asia: for he hasted, if it were possible for him, to
+be at Jerusalem the day of Pentecost.
+
+20:17 And from Miletus he sent to Ephesus, and called the elders of
+the church.
+
+20:18 And when they were come to him, he said unto them, Ye know, from
+the first day that I came into Asia, after what manner I have been
+with you at all seasons, 20:19 Serving the LORD with all humility of
+mind, and with many tears, and temptations, which befell me by the
+lying in wait of the Jews: 20:20 And how I kept back nothing that was
+profitable unto you, but have shewed you, and have taught you
+publickly, and from house to house, 20:21 Testifying both to the Jews,
+and also to the Greeks, repentance toward God, and faith toward our
+Lord Jesus Christ.
+
+20:22 And now, behold, I go bound in the spirit unto Jerusalem, not
+knowing the things that shall befall me there: 20:23 Save that the
+Holy Ghost witnesseth in every city, saying that bonds and afflictions
+abide me.
+
+20:24 But none of these things move me, neither count I my life dear
+unto myself, so that I might finish my course with joy, and the
+ministry, which I have received of the Lord Jesus, to testify the
+gospel of the grace of God.
+
+20:25 And now, behold, I know that ye all, among whom I have gone
+preaching the kingdom of God, shall see my face no more.
+
+20:26 Wherefore I take you to record this day, that I am pure from the
+blood of all men.
+
+20:27 For I have not shunned to declare unto you all the counsel of
+God.
+
+20:28 Take heed therefore unto yourselves, and to all the flock, over
+the which the Holy Ghost hath made you overseers, to feed the church
+of God, which he hath purchased with his own blood.
+
+20:29 For I know this, that after my departing shall grievous wolves
+enter in among you, not sparing the flock.
+
+20:30 Also of your own selves shall men arise, speaking perverse
+things, to draw away disciples after them.
+
+20:31 Therefore watch, and remember, that by the space of three years
+I ceased not to warn every one night and day with tears.
+
+20:32 And now, brethren, I commend you to God, and to the word of his
+grace, which is able to build you up, and to give you an inheritance
+among all them which are sanctified.
+
+20:33 I have coveted no man's silver, or gold, or apparel.
+
+20:34 Yea, ye yourselves know, that these hands have ministered unto
+my necessities, and to them that were with me.
+
+20:35 I have shewed you all things, how that so labouring ye ought to
+support the weak, and to remember the words of the Lord Jesus, how he
+said, It is more blessed to give than to receive.
+
+20:36 And when he had thus spoken, he kneeled down, and prayed with
+them all.
+
+20:37 And they all wept sore, and fell on Paul's neck, and kissed him,
+20:38 Sorrowing most of all for the words which he spake, that they
+should see his face no more. And they accompanied him unto the ship.
+
+21:1 And it came to pass, that after we were gotten from them, and had
+launched, we came with a straight course unto Coos, and the day
+following unto Rhodes, and from thence unto Patara: 21:2 And finding a
+ship sailing over unto Phenicia, we went aboard, and set forth.
+
+21:3 Now when we had discovered Cyprus, we left it on the left hand,
+and sailed into Syria, and landed at Tyre: for there the ship was to
+unlade her burden.
+
+21:4 And finding disciples, we tarried there seven days: who said to
+Paul through the Spirit, that he should not go up to Jerusalem.
+
+21:5 And when we had accomplished those days, we departed and went our
+way; and they all brought us on our way, with wives and children, till
+we were out of the city: and we kneeled down on the shore, and prayed.
+
+21:6 And when we had taken our leave one of another, we took ship; and
+they returned home again.
+
+21:7 And when we had finished our course from Tyre, we came to
+Ptolemais, and saluted the brethren, and abode with them one day.
+
+21:8 And the next day we that were of Paul's company departed, and
+came unto Caesarea: and we entered into the house of Philip the
+evangelist, which was one of the seven; and abode with him.
+
+21:9 And the same man had four daughters, virgins, which did prophesy.
+
+21:10 And as we tarried there many days, there came down from Judaea a
+certain prophet, named Agabus.
+
+21:11 And when he was come unto us, he took Paul's girdle, and bound
+his own hands and feet, and said, Thus saith the Holy Ghost, So shall
+the Jews at Jerusalem bind the man that owneth this girdle, and shall
+deliver him into the hands of the Gentiles.
+
+21:12 And when we heard these things, both we, and they of that place,
+besought him not to go up to Jerusalem.
+
+21:13 Then Paul answered, What mean ye to weep and to break mine
+heart? for I am ready not to be bound only, but also to die at
+Jerusalem for the name of the Lord Jesus.
+
+21:14 And when he would not be persuaded, we ceased, saying, The will
+of the Lord be done.
+
+21:15 And after those days we took up our carriages, and went up to
+Jerusalem.
+
+21:16 There went with us also certain of the disciples of Caesarea,
+and brought with them one Mnason of Cyprus, an old disciple, with whom
+we should lodge.
+
+21:17 And when we were come to Jerusalem, the brethren received us
+gladly.
+
+21:18 And the day following Paul went in with us unto James; and all
+the elders were present.
+
+21:19 And when he had saluted them, he declared particularly what
+things God had wrought among the Gentiles by his ministry.
+
+21:20 And when they heard it, they glorified the Lord, and said unto
+him, Thou seest, brother, how many thousands of Jews there are which
+believe; and they are all zealous of the law: 21:21 And they are
+informed of thee, that thou teachest all the Jews which are among the
+Gentiles to forsake Moses, saying that they ought not to circumcise
+their children, neither to walk after the customs.
+
+21:22 What is it therefore? the multitude must needs come together:
+for they will hear that thou art come.
+
+21:23 Do therefore this that we say to thee: We have four men which
+have a vow on them; 21:24 Them take, and purify thyself with them, and
+be at charges with them, that they may shave their heads: and all may
+know that those things, whereof they were informed concerning thee,
+are nothing; but that thou thyself also walkest orderly, and keepest
+the law.
+
+21:25 As touching the Gentiles which believe, we have written and
+concluded that they observe no such thing, save only that they keep
+themselves from things offered to idols, and from blood, and from
+strangled, and from fornication.
+
+21:26 Then Paul took the men, and the next day purifying himself with
+them entered into the temple, to signify the accomplishment of the
+days of purification, until that an offering should be offered for
+every one of them.
+
+21:27 And when the seven days were almost ended, the Jews which were
+of Asia, when they saw him in the temple, stirred up all the people,
+and laid hands on him, 21:28 Crying out, Men of Israel, help: This is
+the man, that teacheth all men every where against the people, and the
+law, and this place: and further brought Greeks also into the temple,
+and hath polluted this holy place.
+
+21:29 (For they had seen before with him in the city Trophimus an
+Ephesian, whom they supposed that Paul had brought into the temple.)
+21:30 And all the city was moved, and the people ran together: and
+they took Paul, and drew him out of the temple: and forthwith the
+doors were shut.
+
+21:31 And as they went about to kill him, tidings came unto the chief
+captain of the band, that all Jerusalem was in an uproar.
+
+21:32 Who immediately took soldiers and centurions, and ran down unto
+them: and when they saw the chief captain and the soldiers, they left
+beating of Paul.
+
+21:33 Then the chief captain came near, and took him, and commanded
+him to be bound with two chains; and demanded who he was, and what he
+had done.
+
+21:34 And some cried one thing, some another, among the multitude: and
+when he could not know the certainty for the tumult, he commanded him
+to be carried into the castle.
+
+21:35 And when he came upon the stairs, so it was, that he was borne
+of the soldiers for the violence of the people.
+
+21:36 For the multitude of the people followed after, crying, Away
+with him.
+
+21:37 And as Paul was to be led into the castle, he said unto the
+chief captain, May I speak unto thee? Who said, Canst thou speak
+Greek? 21:38 Art not thou that Egyptian, which before these days
+madest an uproar, and leddest out into the wilderness four thousand
+men that were murderers? 21:39 But Paul said, I am a man which am a
+Jew of Tarsus, a city in Cilicia, a citizen of no mean city: and, I
+beseech thee, suffer me to speak unto the people.
+
+21:40 And when he had given him licence, Paul stood on the stairs, and
+beckoned with the hand unto the people. And when there was made a
+great silence, he spake unto them in the Hebrew tongue, saying, 22:1
+Men, brethren, and fathers, hear ye my defence which I make now unto
+you.
+
+22:2 (And when they heard that he spake in the Hebrew tongue to them,
+they kept the more silence: and he saith,) 22:3 I am verily a man
+which am a Jew, born in Tarsus, a city in Cilicia, yet brought up in
+this city at the feet of Gamaliel, and taught according to the perfect
+manner of the law of the fathers, and was zealous toward God, as ye
+all are this day.
+
+22:4 And I persecuted this way unto the death, binding and delivering
+into prisons both men and women.
+
+22:5 As also the high priest doth bear me witness, and all the estate
+of the elders: from whom also I received letters unto the brethren,
+and went to Damascus, to bring them which were there bound unto
+Jerusalem, for to be punished.
+
+22:6 And it came to pass, that, as I made my journey, and was come
+nigh unto Damascus about noon, suddenly there shone from heaven a
+great light round about me.
+
+22:7 And I fell unto the ground, and heard a voice saying unto me,
+Saul, Saul, why persecutest thou me? 22:8 And I answered, Who art
+thou, Lord? And he said unto me, I am Jesus of Nazareth, whom thou
+persecutest.
+
+22:9 And they that were with me saw indeed the light, and were afraid;
+but they heard not the voice of him that spake to me.
+
+22:10 And I said, What shall I do, LORD? And the Lord said unto me,
+Arise, and go into Damascus; and there it shall be told thee of all
+things which are appointed for thee to do.
+
+22:11 And when I could not see for the glory of that light, being led
+by the hand of them that were with me, I came into Damascus.
+
+22:12 And one Ananias, a devout man according to the law, having a
+good report of all the Jews which dwelt there, 22:13 Came unto me, and
+stood, and said unto me, Brother Saul, receive thy sight. And the same
+hour I looked up upon him.
+
+22:14 And he said, The God of our fathers hath chosen thee, that thou
+shouldest know his will, and see that Just One, and shouldest hear the
+voice of his mouth.
+
+22:15 For thou shalt be his witness unto all men of what thou hast
+seen and heard.
+
+22:16 And now why tarriest thou? arise, and be baptized, and wash away
+thy sins, calling on the name of the Lord.
+
+22:17 And it came to pass, that, when I was come again to Jerusalem,
+even while I prayed in the temple, I was in a trance; 22:18 And saw
+him saying unto me, Make haste, and get thee quickly out of Jerusalem:
+for they will not receive thy testimony concerning me.
+
+22:19 And I said, Lord, they know that I imprisoned and beat in every
+synagogue them that believed on thee: 22:20 And when the blood of thy
+martyr Stephen was shed, I also was standing by, and consenting unto
+his death, and kept the raiment of them that slew him.
+
+22:21 And he said unto me, Depart: for I will send thee far hence unto
+the Gentiles.
+
+22:22 And they gave him audience unto this word, and then lifted up
+their voices, and said, Away with such a fellow from the earth: for it
+is not fit that he should live.
+
+22:23 And as they cried out, and cast off their clothes, and threw
+dust into the air, 22:24 The chief captain commanded him to be brought
+into the castle, and bade that he should be examined by scourging;
+that he might know wherefore they cried so against him.
+
+22:25 And as they bound him with thongs, Paul said unto the centurion
+that stood by, Is it lawful for you to scourge a man that is a Roman,
+and uncondemned? 22:26 When the centurion heard that, he went and
+told the chief captain, saying, Take heed what thou doest: for this
+man is a Roman.
+
+22:27 Then the chief captain came, and said unto him, Tell me, art
+thou a Roman? He said, Yea.
+
+22:28 And the chief captain answered, With a great sum obtained I this
+freedom. And Paul said, But I was free born.
+
+22:29 Then straightway they departed from him which should have
+examined him: and the chief captain also was afraid, after he knew
+that he was a Roman, and because he had bound him.
+
+22:30 On the morrow, because he would have known the certainty
+wherefore he was accused of the Jews, he loosed him from his bands,
+and commanded the chief priests and all their council to appear, and
+brought Paul down, and set him before them.
+
+23:1 And Paul, earnestly beholding the council, said, Men and
+brethren, I have lived in all good conscience before God until this
+day.
+
+23:2 And the high priest Ananias commanded them that stood by him to
+smite him on the mouth.
+
+23:3 Then said Paul unto him, God shall smite thee, thou whited wall:
+for sittest thou to judge me after the law, and commandest me to be
+smitten contrary to the law? 23:4 And they that stood by said,
+Revilest thou God's high priest? 23:5 Then said Paul, I wist not,
+brethren, that he was the high priest: for it is written, Thou shalt
+not speak evil of the ruler of thy people.
+
+23:6 But when Paul perceived that the one part were Sadducees, and the
+other Pharisees, he cried out in the council, Men and brethren, I am a
+Pharisee, the son of a Pharisee: of the hope and resurrection of the
+dead I am called in question.
+
+23:7 And when he had so said, there arose a dissension between the
+Pharisees and the Sadducees: and the multitude was divided.
+
+23:8 For the Sadducees say that there is no resurrection, neither
+angel, nor spirit: but the Pharisees confess both.
+
+23:9 And there arose a great cry: and the scribes that were of the
+Pharisees' part arose, and strove, saying, We find no evil in this
+man: but if a spirit or an angel hath spoken to him, let us not fight
+against God.
+
+23:10 And when there arose a great dissension, the chief captain,
+fearing lest Paul should have been pulled in pieces of them, commanded
+the soldiers to go down, and to take him by force from among them, and
+to bring him into the castle.
+
+23:11 And the night following the Lord stood by him, and said, Be of
+good cheer, Paul: for as thou hast testified of me in Jerusalem, so
+must thou bear witness also at Rome.
+
+23:12 And when it was day, certain of the Jews banded together, and
+bound themselves under a curse, saying that they would neither eat nor
+drink till they had killed Paul.
+
+23:13 And they were more than forty which had made this conspiracy.
+
+23:14 And they came to the chief priests and elders, and said, We have
+bound ourselves under a great curse, that we will eat nothing until we
+have slain Paul.
+
+23:15 Now therefore ye with the council signify to the chief captain
+that he bring him down unto you to morrow, as though ye would enquire
+something more perfectly concerning him: and we, or ever he come near,
+are ready to kill him.
+
+23:16 And when Paul's sister's son heard of their lying in wait, he
+went and entered into the castle, and told Paul.
+
+23:17 Then Paul called one of the centurions unto him, and said, Bring
+this young man unto the chief captain: for he hath a certain thing to
+tell him.
+
+23:18 So he took him, and brought him to the chief captain, and said,
+Paul the prisoner called me unto him, and prayed me to bring this
+young man unto thee, who hath something to say unto thee.
+
+23:19 Then the chief captain took him by the hand, and went with him
+aside privately, and asked him, What is that thou hast to tell me?
+23:20 And he said, The Jews have agreed to desire thee that thou
+wouldest bring down Paul to morrow into the council, as though they
+would enquire somewhat of him more perfectly.
+
+23:21 But do not thou yield unto them: for there lie in wait for him
+of them more than forty men, which have bound themselves with an oath,
+that they will neither eat nor drink till they have killed him: and
+now are they ready, looking for a promise from thee.
+
+23:22 So the chief captain then let the young man depart, and charged
+him, See thou tell no man that thou hast shewed these things to me.
+
+23:23 And he called unto him two centurions, saying, Make ready two
+hundred soldiers to go to Caesarea, and horsemen threescore and ten,
+and spearmen two hundred, at the third hour of the night; 23:24 And
+provide them beasts, that they may set Paul on, and bring him safe
+unto Felix the governor.
+
+23:25 And he wrote a letter after this manner: 23:26 Claudius Lysias
+unto the most excellent governor Felix sendeth greeting.
+
+23:27 This man was taken of the Jews, and should have been killed of
+them: then came I with an army, and rescued him, having understood
+that he was a Roman.
+
+23:28 And when I would have known the cause wherefore they accused
+him, I brought him forth into their council: 23:29 Whom I perceived to
+be accused of questions of their law, but to have nothing laid to his
+charge worthy of death or of bonds.
+
+23:30 And when it was told me how that the Jews laid wait for the man,
+I sent straightway to thee, and gave commandment to his accusers also
+to say before thee what they had against him. Farewell.
+
+23:31 Then the soldiers, as it was commanded them, took Paul, and
+brought him by night to Antipatris.
+
+23:32 On the morrow they left the horsemen to go with him, and
+returned to the castle: 23:33 Who, when they came to Caesarea and
+delivered the epistle to the governor, presented Paul also before him.
+
+23:34 And when the governor had read the letter, he asked of what
+province he was. And when he understood that he was of Cilicia; 23:35
+I will hear thee, said he, when thine accusers are also come. And he
+commanded him to be kept in Herod's judgment hall.
+
+24:1 And after five days Ananias the high priest descended with the
+elders, and with a certain orator named Tertullus, who informed the
+governor against Paul.
+
+24:2 And when he was called forth, Tertullus began to accuse him,
+saying, Seeing that by thee we enjoy great quietness, and that very
+worthy deeds are done unto this nation by thy providence, 24:3 We
+accept it always, and in all places, most noble Felix, with all
+thankfulness.
+
+24:4 Notwithstanding, that I be not further tedious unto thee, I pray
+thee that thou wouldest hear us of thy clemency a few words.
+
+24:5 For we have found this man a pestilent fellow, and a mover of
+sedition among all the Jews throughout the world, and a ringleader of
+the sect of the Nazarenes: 24:6 Who also hath gone about to profane
+the temple: whom we took, and would have judged according to our law.
+
+24:7 But the chief captain Lysias came upon us, and with great
+violence took him away out of our hands, 24:8 Commanding his accusers
+to come unto thee: by examining of whom thyself mayest take knowledge
+of all these things, whereof we accuse him.
+
+24:9 And the Jews also assented, saying that these things were so.
+
+24:10 Then Paul, after that the governor had beckoned unto him to
+speak, answered, Forasmuch as I know that thou hast been of many years
+a judge unto this nation, I do the more cheerfully answer for myself:
+24:11 Because that thou mayest understand, that there are yet but
+twelve days since I went up to Jerusalem for to worship.
+
+24:12 And they neither found me in the temple disputing with any man,
+neither raising up the people, neither in the synagogues, nor in the
+city: 24:13 Neither can they prove the things whereof they now accuse
+me.
+
+24:14 But this I confess unto thee, that after the way which they call
+heresy, so worship I the God of my fathers, believing all things which
+are written in the law and in the prophets: 24:15 And have hope toward
+God, which they themselves also allow, that there shall be a
+resurrection of the dead, both of the just and unjust.
+
+24:16 And herein do I exercise myself, to have always a conscience
+void to offence toward God, and toward men.
+
+24:17 Now after many years I came to bring alms to my nation, and
+offerings.
+
+24:18 Whereupon certain Jews from Asia found me purified in the
+temple, neither with multitude, nor with tumult.
+
+24:19 Who ought to have been here before thee, and object, if they had
+ought against me.
+
+24:20 Or else let these same here say, if they have found any evil
+doing in me, while I stood before the council, 24:21 Except it be for
+this one voice, that I cried standing among them, Touching the
+resurrection of the dead I am called in question by you this day.
+
+24:22 And when Felix heard these things, having more perfect knowledge
+of that way, he deferred them, and said, When Lysias the chief captain
+shall come down, I will know the uttermost of your matter.
+
+24:23 And he commanded a centurion to keep Paul, and to let him have
+liberty, and that he should forbid none of his acquaintance to
+minister or come unto him.
+
+24:24 And after certain days, when Felix came with his wife Drusilla,
+which was a Jewess, he sent for Paul, and heard him concerning the
+faith in Christ.
+
+24:25 And as he reasoned of righteousness, temperance, and judgment to
+come, Felix trembled, and answered, Go thy way for this time; when I
+have a convenient season, I will call for thee.
+
+24:26 He hoped also that money should have been given him of Paul,
+that he might loose him: wherefore he sent for him the oftener, and
+communed with him.
+
+24:27 But after two years Porcius Festus came into Felix' room: and
+Felix, willing to shew the Jews a pleasure, left Paul bound.
+
+25:1 Now when Festus was come into the province, after three days he
+ascended from Caesarea to Jerusalem.
+
+25:2 Then the high priest and the chief of the Jews informed him
+against Paul, and besought him, 25:3 And desired favour against him,
+that he would send for him to Jerusalem, laying wait in the way to
+kill him.
+
+25:4 But Festus answered, that Paul should be kept at Caesarea, and
+that he himself would depart shortly thither.
+
+25:5 Let them therefore, said he, which among you are able, go down
+with me, and accuse this man, if there be any wickedness in him.
+
+25:6 And when he had tarried among them more than ten days, he went
+down unto Caesarea; and the next day sitting on the judgment seat
+commanded Paul to be brought.
+
+25:7 And when he was come, the Jews which came down from Jerusalem
+stood round about, and laid many and grievous complaints against Paul,
+which they could not prove.
+
+25:8 While he answered for himself, Neither against the law of the
+Jews, neither against the temple, nor yet against Caesar, have I
+offended any thing at all.
+
+25:9 But Festus, willing to do the Jews a pleasure, answered Paul, and
+said, Wilt thou go up to Jerusalem, and there be judged of these
+things before me? 25:10 Then said Paul, I stand at Caesar's judgment
+seat, where I ought to be judged: to the Jews have I done no wrong, as
+thou very well knowest.
+
+25:11 For if I be an offender, or have committed any thing worthy of
+death, I refuse not to die: but if there be none of these things
+whereof these accuse me, no man may deliver me unto them. I appeal
+unto Caesar.
+
+25:12 Then Festus, when he had conferred with the council, answered,
+Hast thou appealed unto Caesar? unto Caesar shalt thou go.
+
+25:13 And after certain days king Agrippa and Bernice came unto
+Caesarea to salute Festus.
+
+25:14 And when they had been there many days, Festus declared Paul's
+cause unto the king, saying, There is a certain man left in bonds by
+Felix: 25:15 About whom, when I was at Jerusalem, the chief priests
+and the elders of the Jews informed me, desiring to have judgment
+against him.
+
+25:16 To whom I answered, It is not the manner of the Romans to
+deliver any man to die, before that he which is accused have the
+accusers face to face, and have licence to answer for himself
+concerning the crime laid against him.
+
+25:17 Therefore, when they were come hither, without any delay on the
+morrow I sat on the judgment seat, and commanded the man to be brought
+forth.
+
+25:18 Against whom when the accusers stood up, they brought none
+accusation of such things as I supposed: 25:19 But had certain
+questions against him of their own superstition, and of one Jesus,
+which was dead, whom Paul affirmed to be alive.
+
+25:20 And because I doubted of such manner of questions, I asked him
+whether he would go to Jerusalem, and there be judged of these
+matters.
+
+25:21 But when Paul had appealed to be reserved unto the hearing of
+Augustus, I commanded him to be kept till I might send him to Caesar.
+
+25:22 Then Agrippa said unto Festus, I would also hear the man myself.
+To morrow, said he, thou shalt hear him.
+
+25:23 And on the morrow, when Agrippa was come, and Bernice, with
+great pomp, and was entered into the place of hearing, with the chief
+captains, and principal men of the city, at Festus' commandment Paul
+was brought forth.
+
+25:24 And Festus said, King Agrippa, and all men which are here
+present with us, ye see this man, about whom all the multitude of the
+Jews have dealt with me, both at Jerusalem, and also here, crying that
+he ought not to live any longer.
+
+25:25 But when I found that he had committed nothing worthy of death,
+and that he himself hath appealed to Augustus, I have determined to
+send him.
+
+25:26 Of whom I have no certain thing to write unto my lord. Wherefore
+I have brought him forth before you, and specially before thee, O king
+Agrippa, that, after examination had, I might have somewhat to write.
+
+25:27 For it seemeth to me unreasonable to send a prisoner, and not
+withal to signify the crimes laid against him.
+
+26:1 Then Agrippa said unto Paul, Thou art permitted to speak for
+thyself.
+
+Then Paul stretched forth the hand, and answered for himself: 26:2 I
+think myself happy, king Agrippa, because I shall answer for myself
+this day before thee touching all the things whereof I am accused of
+the Jews: 26:3 Especially because I know thee to be expert in all
+customs and questions which are among the Jews: wherefore I beseech
+thee to hear me patiently.
+
+26:4 My manner of life from my youth, which was at the first among
+mine own nation at Jerusalem, know all the Jews; 26:5 Which knew me
+from the beginning, if they would testify, that after the most
+straitest sect of our religion I lived a Pharisee.
+
+26:6 And now I stand and am judged for the hope of the promise made of
+God, unto our fathers: 26:7 Unto which promise our twelve tribes,
+instantly serving God day and night, hope to come. For which hope's
+sake, king Agrippa, I am accused of the Jews.
+
+26:8 Why should it be thought a thing incredible with you, that God
+should raise the dead? 26:9 I verily thought with myself, that I
+ought to do many things contrary to the name of Jesus of Nazareth.
+
+26:10 Which thing I also did in Jerusalem: and many of the saints did
+I shut up in prison, having received authority from the chief priests;
+and when they were put to death, I gave my voice against them.
+
+26:11 And I punished them oft in every synagogue, and compelled them
+to blaspheme; and being exceedingly mad against them, I persecuted
+them even unto strange cities.
+
+26:12 Whereupon as I went to Damascus with authority and commission
+from the chief priests, 26:13 At midday, O king, I saw in the way a
+light from heaven, above the brightness of the sun, shining round
+about me and them which journeyed with me.
+
+26:14 And when we were all fallen to the earth, I heard a voice
+speaking unto me, and saying in the Hebrew tongue, Saul, Saul, why
+persecutest thou me? it is hard for thee to kick against the pricks.
+
+26:15 And I said, Who art thou, Lord? And he said, I am Jesus whom
+thou persecutest.
+
+26:16 But rise, and stand upon thy feet: for I have appeared unto thee
+for this purpose, to make thee a minister and a witness both of these
+things which thou hast seen, and of those things in the which I will
+appear unto thee; 26:17 Delivering thee from the people, and from the
+Gentiles, unto whom now I send thee, 26:18 To open their eyes, and to
+turn them from darkness to light, and from the power of Satan unto
+God, that they may receive forgiveness of sins, and inheritance among
+them which are sanctified by faith that is in me.
+
+26:19 Whereupon, O king Agrippa, I was not disobedient unto the
+heavenly vision: 26:20 But shewed first unto them of Damascus, and at
+Jerusalem, and throughout all the coasts of Judaea, and then to the
+Gentiles, that they should repent and turn to God, and do works meet
+for repentance.
+
+26:21 For these causes the Jews caught me in the temple, and went
+about to kill me.
+
+26:22 Having therefore obtained help of God, I continue unto this day,
+witnessing both to small and great, saying none other things than
+those which the prophets and Moses did say should come: 26:23 That
+Christ should suffer, and that he should be the first that should rise
+from the dead, and should shew light unto the people, and to the
+Gentiles.
+
+26:24 And as he thus spake for himself, Festus said with a loud voice,
+Paul, thou art beside thyself; much learning doth make thee mad.
+
+26:25 But he said, I am not mad, most noble Festus; but speak forth
+the words of truth and soberness.
+
+26:26 For the king knoweth of these things, before whom also I speak
+freely: for I am persuaded that none of these things are hidden from
+him; for this thing was not done in a corner.
+
+26:27 King Agrippa, believest thou the prophets? I know that thou
+believest.
+
+26:28 Then Agrippa said unto Paul, Almost thou persuadest me to be a
+Christian.
+
+26:29 And Paul said, I would to God, that not only thou, but also all
+that hear me this day, were both almost, and altogether such as I am,
+except these bonds.
+
+26:30 And when he had thus spoken, the king rose up, and the governor,
+and Bernice, and they that sat with them: 26:31 And when they were
+gone aside, they talked between themselves, saying, This man doeth
+nothing worthy of death or of bonds.
+
+26:32 Then said Agrippa unto Festus, This man might have been set at
+liberty, if he had not appealed unto Caesar.
+
+27:1 And when it was determined that we should sail into Italy, they
+delivered Paul and certain other prisoners unto one named Julius, a
+centurion of Augustus' band.
+
+27:2 And entering into a ship of Adramyttium, we launched, meaning to
+sail by the coasts of Asia; one Aristarchus, a Macedonian of
+Thessalonica, being with us.
+
+27:3 And the next day we touched at Sidon. And Julius courteously
+entreated Paul, and gave him liberty to go unto his friends to refresh
+himself.
+
+27:4 And when we had launched from thence, we sailed under Cyprus,
+because the winds were contrary.
+
+27:5 And when we had sailed over the sea of Cilicia and Pamphylia, we
+came to Myra, a city of Lycia.
+
+27:6 And there the centurion found a ship of Alexandria sailing into
+Italy; and he put us therein.
+
+27:7 And when we had sailed slowly many days, and scarce were come
+over against Cnidus, the wind not suffering us, we sailed under Crete,
+over against Salmone; 27:8 And, hardly passing it, came unto a place
+which is called The fair havens; nigh whereunto was the city of Lasea.
+
+27:9 Now when much time was spent, and when sailing was now dangerous,
+because the fast was now already past, Paul admonished them, 27:10 And
+said unto them, Sirs, I perceive that this voyage will be with hurt
+and much damage, not only of the lading and ship, but also of our
+lives.
+
+27:11 Nevertheless the centurion believed the master and the owner of
+the ship, more than those things which were spoken by Paul.
+
+27:12 And because the haven was not commodious to winter in, the more
+part advised to depart thence also, if by any means they might attain
+to Phenice, and there to winter; which is an haven of Crete, and lieth
+toward the south west and north west.
+
+27:13 And when the south wind blew softly, supposing that they had
+obtained their purpose, loosing thence, they sailed close by Crete.
+
+27:14 But not long after there arose against it a tempestuous wind,
+called Euroclydon.
+
+27:15 And when the ship was caught, and could not bear up into the
+wind, we let her drive.
+
+27:16 And running under a certain island which is called Clauda, we
+had much work to come by the boat: 27:17 Which when they had taken up,
+they used helps, undergirding the ship; and, fearing lest they should
+fall into the quicksands, strake sail, and so were driven.
+
+27:18 And we being exceedingly tossed with a tempest, the next day
+they lightened the ship; 27:19 And the third day we cast out with our
+own hands the tackling of the ship.
+
+27:20 And when neither sun nor stars in many days appeared, and no
+small tempest lay on us, all hope that we should be saved was then
+taken away.
+
+27:21 But after long abstinence Paul stood forth in the midst of them,
+and said, Sirs, ye should have hearkened unto me, and not have loosed
+from Crete, and to have gained this harm and loss.
+
+27:22 And now I exhort you to be of good cheer: for there shall be no
+loss of any man's life among you, but of the ship.
+
+27:23 For there stood by me this night the angel of God, whose I am,
+and whom I serve, 27:24 Saying, Fear not, Paul; thou must be brought
+before Caesar: and, lo, God hath given thee all them that sail with
+thee.
+
+27:25 Wherefore, sirs, be of good cheer: for I believe God, that it
+shall be even as it was told me.
+
+27:26 Howbeit we must be cast upon a certain island.
+
+27:27 But when the fourteenth night was come, as we were driven up and
+down in Adria, about midnight the shipmen deemed that they drew near
+to some country; 27:28 And sounded, and found it twenty fathoms: and
+when they had gone a little further, they sounded again, and found it
+fifteen fathoms.
+
+27:29 Then fearing lest we should have fallen upon rocks, they cast
+four anchors out of the stern, and wished for the day.
+
+27:30 And as the shipmen were about to flee out of the ship, when they
+had let down the boat into the sea, under colour as though they would
+have cast anchors out of the foreship, 27:31 Paul said to the
+centurion and to the soldiers, Except these abide in the ship, ye
+cannot be saved.
+
+27:32 Then the soldiers cut off the ropes of the boat, and let her
+fall off.
+
+27:33 And while the day was coming on, Paul besought them all to take
+meat, saying, This day is the fourteenth day that ye have tarried and
+continued fasting, having taken nothing.
+
+27:34 Wherefore I pray you to take some meat: for this is for your
+health: for there shall not an hair fall from the head of any of you.
+
+27:35 And when he had thus spoken, he took bread, and gave thanks to
+God in presence of them all: and when he had broken it, he began to
+eat.
+
+27:36 Then were they all of good cheer, and they also took some meat.
+
+27:37 And we were in all in the ship two hundred threescore and
+sixteen souls.
+
+27:38 And when they had eaten enough, they lightened the ship, and
+cast out the wheat into the sea.
+
+27:39 And when it was day, they knew not the land: but they discovered
+a certain creek with a shore, into the which they were minded, if it
+were possible, to thrust in the ship.
+
+27:40 And when they had taken up the anchors, they committed
+themselves unto the sea, and loosed the rudder bands, and hoised up
+the mainsail to the wind, and made toward shore.
+
+27:41 And falling into a place where two seas met, they ran the ship
+aground; and the forepart stuck fast, and remained unmoveable, but the
+hinder part was broken with the violence of the waves.
+
+27:42 And the soldiers' counsel was to kill the prisoners, lest any of
+them should swim out, and escape.
+
+27:43 But the centurion, willing to save Paul, kept them from their
+purpose; and commanded that they which could swim should cast
+themselves first into the sea, and get to land: 27:44 And the rest,
+some on boards, and some on broken pieces of the ship.
+
+And so it came to pass, that they escaped all safe to land.
+
+28:1 And when they were escaped, then they knew that the island was
+called Melita.
+
+28:2 And the barbarous people shewed us no little kindness: for they
+kindled a fire, and received us every one, because of the present
+rain, and because of the cold.
+
+28:3 And when Paul had gathered a bundle of sticks, and laid them on
+the fire, there came a viper out of the heat, and fastened on his
+hand.
+
+28:4 And when the barbarians saw the venomous beast hang on his hand,
+they said among themselves, No doubt this man is a murderer, whom,
+though he hath escaped the sea, yet vengeance suffereth not to live.
+
+28:5 And he shook off the beast into the fire, and felt no harm.
+
+28:6 Howbeit they looked when he should have swollen, or fallen down
+dead suddenly: but after they had looked a great while, and saw no
+harm come to him, they changed their minds, and said that he was a
+god.
+
+28:7 In the same quarters were possessions of the chief man of the
+island, whose name was Publius; who received us, and lodged us three
+days courteously.
+
+28:8 And it came to pass, that the father of Publius lay sick of a
+fever and of a bloody flux: to whom Paul entered in, and prayed, and
+laid his hands on him, and healed him.
+
+28:9 So when this was done, others also, which had diseases in the
+island, came, and were healed: 28:10 Who also honoured us with many
+honours; and when we departed, they laded us with such things as were
+necessary.
+
+28:11 And after three months we departed in a ship of Alexandria,
+which had wintered in the isle, whose sign was Castor and Pollux.
+
+28:12 And landing at Syracuse, we tarried there three days.
+
+28:13 And from thence we fetched a compass, and came to Rhegium: and
+after one day the south wind blew, and we came the next day to
+Puteoli: 28:14 Where we found brethren, and were desired to tarry with
+them seven days: and so we went toward Rome.
+
+28:15 And from thence, when the brethren heard of us, they came to
+meet us as far as Appii forum, and The three taverns: whom when Paul
+saw, he thanked God, and took courage.
+
+28:16 And when we came to Rome, the centurion delivered the prisoners
+to the captain of the guard: but Paul was suffered to dwell by himself
+with a soldier that kept him.
+
+28:17 And it came to pass, that after three days Paul called the chief
+of the Jews together: and when they were come together, he said unto
+them, Men and brethren, though I have committed nothing against the
+people, or customs of our fathers, yet was I delivered prisoner from
+Jerusalem into the hands of the Romans.
+
+28:18 Who, when they had examined me, would have let me go, because
+there was no cause of death in me.
+
+28:19 But when the Jews spake against it, I was constrained to appeal
+unto Caesar; not that I had ought to accuse my nation of.
+
+28:20 For this cause therefore have I called for you, to see you, and
+to speak with you: because that for the hope of Israel I am bound with
+this chain.
+
+28:21 And they said unto him, We neither received letters out of
+Judaea concerning thee, neither any of the brethren that came shewed
+or spake any harm of thee.
+
+28:22 But we desire to hear of thee what thou thinkest: for as
+concerning this sect, we know that every where it is spoken against.
+
+28:23 And when they had appointed him a day, there came many to him
+into his lodging; to whom he expounded and testified the kingdom of
+God, persuading them concerning Jesus, both out of the law of Moses,
+and out of the prophets, from morning till evening.
+
+28:24 And some believed the things which were spoken, and some
+believed not.
+
+28:25 And when they agreed not among themselves, they departed, after
+that Paul had spoken one word, Well spake the Holy Ghost by Esaias the
+prophet unto our fathers, 28:26 Saying, Go unto this people, and say,
+Hearing ye shall hear, and shall not understand; and seeing ye shall
+see, and not perceive: 28:27 For the heart of this people is waxed
+gross, and their ears are dull of hearing, and their eyes have they
+closed; lest they should see with their eyes, and hear with their
+ears, and understand with their heart, and should be converted, and I
+should heal them.
+
+28:28 Be it known therefore unto you, that the salvation of God is
+sent unto the Gentiles, and that they will hear it.
+
+28:29 And when he had said these words, the Jews departed, and had
+great reasoning among themselves.
+
+28:30 And Paul dwelt two whole years in his own hired house, and
+received all that came in unto him, 28:31 Preaching the kingdom of
+God, and teaching those things which concern the Lord Jesus Christ,
+with all confidence, no man forbidding him.
+
+
+
+
+The Epistle of Paul the Apostle to the Romans
+
+
+1:1 Paul, a servant of Jesus Christ, called to be an apostle,
+separated unto the gospel of God, 1:2 (Which he had promised afore by
+his prophets in the holy scriptures,) 1:3 Concerning his Son Jesus
+Christ our Lord, which was made of the seed of David according to the
+flesh; 1:4 And declared to be the Son of God with power, according to
+the spirit of holiness, by the resurrection from the dead: 1:5 By whom
+we have received grace and apostleship, for obedience to the faith
+among all nations, for his name: 1:6 Among whom are ye also the called
+of Jesus Christ: 1:7 To all that be in Rome, beloved of God, called to
+be saints: Grace to you and peace from God our Father, and the Lord
+Jesus Christ.
+
+1:8 First, I thank my God through Jesus Christ for you all, that your
+faith is spoken of throughout the whole world.
+
+1:9 For God is my witness, whom I serve with my spirit in the gospel
+of his Son, that without ceasing I make mention of you always in my
+prayers; 1:10 Making request, if by any means now at length I might
+have a prosperous journey by the will of God to come unto you.
+
+1:11 For I long to see you, that I may impart unto you some spiritual
+gift, to the end ye may be established; 1:12 That is, that I may be
+comforted together with you by the mutual faith both of you and me.
+
+1:13 Now I would not have you ignorant, brethren, that oftentimes I
+purposed to come unto you, (but was let hitherto,) that I might have
+some fruit among you also, even as among other Gentiles.
+
+1:14 I am debtor both to the Greeks, and to the Barbarians; both to
+the wise, and to the unwise.
+
+1:15 So, as much as in me is, I am ready to preach the gospel to you
+that are at Rome also.
+
+1:16 For I am not ashamed of the gospel of Christ: for it is the power
+of God unto salvation to every one that believeth; to the Jew first,
+and also to the Greek.
+
+1:17 For therein is the righteousness of God revealed from faith to
+faith: as it is written, The just shall live by faith.
+
+1:18 For the wrath of God is revealed from heaven against all
+ungodliness and unrighteousness of men, who hold the truth in
+unrighteousness; 1:19 Because that which may be known of God is
+manifest in them; for God hath shewed it unto them.
+
+1:20 For the invisible things of him from the creation of the world
+are clearly seen, being understood by the things that are made, even
+his eternal power and Godhead; so that they are without excuse: 1:21
+Because that, when they knew God, they glorified him not as God,
+neither were thankful; but became vain in their imaginations, and
+their foolish heart was darkened.
+
+1:22 Professing themselves to be wise, they became fools, 1:23 And
+changed the glory of the uncorruptible God into an image made like to
+corruptible man, and to birds, and fourfooted beasts, and creeping
+things.
+
+1:24 Wherefore God also gave them up to uncleanness through the lusts
+of their own hearts, to dishonour their own bodies between themselves:
+1:25 Who changed the truth of God into a lie, and worshipped and
+served the creature more than the Creator, who is blessed for ever.
+Amen.
+
+1:26 For this cause God gave them up unto vile affections: for even
+their women did change the natural use into that which is against
+nature: 1:27 And likewise also the men, leaving the natural use of the
+woman, burned in their lust one toward another; men with men working
+that which is unseemly, and receiving in themselves that recompence of
+their error which was meet.
+
+1:28 And even as they did not like to retain God in their knowledge,
+God gave them over to a reprobate mind, to do those things which are
+not convenient; 1:29 Being filled with all unrighteousness,
+fornication, wickedness, covetousness, maliciousness; full of envy,
+murder, debate, deceit, malignity; whisperers, 1:30 Backbiters, haters
+of God, despiteful, proud, boasters, inventors of evil things,
+disobedient to parents, 1:31 Without understanding, covenantbreakers,
+without natural affection, implacable, unmerciful: 1:32 Who knowing
+the judgment of God, that they which commit such things are worthy of
+death, not only do the same, but have pleasure in them that do them.
+
+2:1 Therefore thou art inexcusable, O man, whosoever thou art that
+judgest: for wherein thou judgest another, thou condemnest thyself;
+for thou that judgest doest the same things.
+
+2:2 But we are sure that the judgment of God is according to truth
+against them which commit such things.
+
+2:3 And thinkest thou this, O man, that judgest them which do such
+things, and doest the same, that thou shalt escape the judgment of
+God? 2:4 Or despisest thou the riches of his goodness and forbearance
+and longsuffering; not knowing that the goodness of God leadeth thee
+to repentance? 2:5 But after thy hardness and impenitent heart
+treasurest up unto thyself wrath against the day of wrath and
+revelation of the righteous judgment of God; 2:6 Who will render to
+every man according to his deeds: 2:7 To them who by patient
+continuance in well doing seek for glory and honour and immortality,
+eternal life: 2:8 But unto them that are contentious, and do not obey
+the truth, but obey unrighteousness, indignation and wrath, 2:9
+Tribulation and anguish, upon every soul of man that doeth evil, of
+the Jew first, and also of the Gentile; 2:10 But glory, honour, and
+peace, to every man that worketh good, to the Jew first, and also to
+the Gentile: 2:11 For there is no respect of persons with God.
+
+2:12 For as many as have sinned without law shall also perish without
+law: and as many as have sinned in the law shall be judged by the law;
+2:13 (For not the hearers of the law are just before God, but the
+doers of the law shall be justified.
+
+2:14 For when the Gentiles, which have not the law, do by nature the
+things contained in the law, these, having not the law, are a law unto
+themselves: 2:15 Which shew the work of the law written in their
+hearts, their conscience also bearing witness, and their thoughts the
+mean while accusing or else excusing one another;) 2:16 In the day
+when God shall judge the secrets of men by Jesus Christ according to
+my gospel.
+
+2:17 Behold, thou art called a Jew, and restest in the law, and makest
+thy boast of God, 2:18 And knowest his will, and approvest the things
+that are more excellent, being instructed out of the law; 2:19 And art
+confident that thou thyself art a guide of the blind, a light of them
+which are in darkness, 2:20 An instructor of the foolish, a teacher of
+babes, which hast the form of knowledge and of the truth in the law.
+
+2:21 Thou therefore which teachest another, teachest thou not thyself?
+thou that preachest a man should not steal, dost thou steal? 2:22
+Thou that sayest a man should not commit adultery, dost thou commit
+adultery? thou that abhorrest idols, dost thou commit sacrilege? 2:23
+Thou that makest thy boast of the law, through breaking the law
+dishonourest thou God? 2:24 For the name of God is blasphemed among
+the Gentiles through you, as it is written.
+
+2:25 For circumcision verily profiteth, if thou keep the law: but if
+thou be a breaker of the law, thy circumcision is made uncircumcision.
+
+2:26 Therefore if the uncircumcision keep the righteousness of the
+law, shall not his uncircumcision be counted for circumcision? 2:27
+And shall not uncircumcision which is by nature, if it fulfil the law,
+judge thee, who by the letter and circumcision dost transgress the
+law? 2:28 For he is not a Jew, which is one outwardly; neither is
+that circumcision, which is outward in the flesh: 2:29 But he is a
+Jew, which is one inwardly; and circumcision is that of the heart, in
+the spirit, and not in the letter; whose praise is not of men, but of
+God.
+
+3:1 What advantage then hath the Jew? or what profit is there of
+circumcision? 3:2 Much every way: chiefly, because that unto them
+were committed the oracles of God.
+
+3:3 For what if some did not believe? shall their unbelief make the
+faith of God without effect? 3:4 God forbid: yea, let God be true,
+but every man a liar; as it is written, That thou mightest be
+justified in thy sayings, and mightest overcome when thou art judged.
+
+3:5 But if our unrighteousness commend the righteousness of God, what
+shall we say? Is God unrighteous who taketh vengeance? (I speak as a
+man) 3:6 God forbid: for then how shall God judge the world? 3:7 For
+if the truth of God hath more abounded through my lie unto his glory;
+why yet am I also judged as a sinner? 3:8 And not rather, (as we be
+slanderously reported, and as some affirm that we say,) Let us do
+evil, that good may come? whose damnation is just.
+
+3:9 What then? are we better than they? No, in no wise: for we have
+before proved both Jews and Gentiles, that they are all under sin;
+3:10 As it is written, There is none righteous, no, not one: 3:11
+There is none that understandeth, there is none that seeketh after
+God.
+
+3:12 They are all gone out of the way, they are together become
+unprofitable; there is none that doeth good, no, not one.
+
+3:13 Their throat is an open sepulchre; with their tongues they have
+used deceit; the poison of asps is under their lips: 3:14 Whose mouth
+is full of cursing and bitterness: 3:15 Their feet are swift to shed
+blood: 3:16 Destruction and misery are in their ways: 3:17 And the way
+of peace have they not known: 3:18 There is no fear of God before
+their eyes.
+
+3:19 Now we know that what things soever the law saith, it saith to
+them who are under the law: that every mouth may be stopped, and all
+the world may become guilty before God.
+
+3:20 Therefore by the deeds of the law there shall no flesh be
+justified in his sight: for by the law is the knowledge of sin.
+
+3:21 But now the righteousness of God without the law is manifested,
+being witnessed by the law and the prophets; 3:22 Even the
+righteousness of God which is by faith of Jesus Christ unto all and
+upon all them that believe: for there is no difference: 3:23 For all
+have sinned, and come short of the glory of God; 3:24 Being justified
+freely by his grace through the redemption that is in Christ Jesus:
+3:25 Whom God hath set forth to be a propitiation through faith in his
+blood, to declare his righteousness for the remission of sins that are
+past, through the forbearance of God; 3:26 To declare, I say, at this
+time his righteousness: that he might be just, and the justifier of
+him which believeth in Jesus.
+
+3:27 Where is boasting then? It is excluded. By what law? of works?
+Nay: but by the law of faith.
+
+3:28 Therefore we conclude that a man is justified by faith without
+the deeds of the law.
+
+3:29 Is he the God of the Jews only? is he not also of the Gentiles?
+Yes, of the Gentiles also: 3:30 Seeing it is one God, which shall
+justify the circumcision by faith, and uncircumcision through faith.
+
+3:31 Do we then make void the law through faith? God forbid: yea, we
+establish the law.
+
+4:1 What shall we say then that Abraham our father, as pertaining to
+the flesh, hath found? 4:2 For if Abraham were justified by works, he
+hath whereof to glory; but not before God.
+
+4:3 For what saith the scripture? Abraham believed God, and it was
+counted unto him for righteousness.
+
+4:4 Now to him that worketh is the reward not reckoned of grace, but
+of debt.
+
+4:5 But to him that worketh not, but believeth on him that justifieth
+the ungodly, his faith is counted for righteousness.
+
+4:6 Even as David also describeth the blessedness of the man, unto
+whom God imputeth righteousness without works, 4:7 Saying, Blessed are
+they whose iniquities are forgiven, and whose sins are covered.
+
+4:8 Blessed is the man to whom the Lord will not impute sin.
+
+4:9 Cometh this blessedness then upon the circumcision only, or upon
+the uncircumcision also? for we say that faith was reckoned to Abraham
+for righteousness.
+
+4:10 How was it then reckoned? when he was in circumcision, or in
+uncircumcision? Not in circumcision, but in uncircumcision.
+
+4:11 And he received the sign of circumcision, a seal of the
+righteousness of the faith which he had yet being uncircumcised: that
+he might be the father of all them that believe, though they be not
+circumcised; that righteousness might be imputed unto them also: 4:12
+And the father of circumcision to them who are not of the circumcision
+only, but who also walk in the steps of that faith of our father
+Abraham, which he had being yet uncircumcised.
+
+4:13 For the promise, that he should be the heir of the world, was not
+to Abraham, or to his seed, through the law, but through the
+righteousness of faith.
+
+4:14 For if they which are of the law be heirs, faith is made void,
+and the promise made of none effect: 4:15 Because the law worketh
+wrath: for where no law is, there is no transgression.
+
+4:16 Therefore it is of faith, that it might be by grace; to the end
+the promise might be sure to all the seed; not to that only which is
+of the law, but to that also which is of the faith of Abraham; who is
+the father of us all, 4:17 (As it is written, I have made thee a
+father of many nations,) before him whom he believed, even God, who
+quickeneth the dead, and calleth those things which be not as though
+they were.
+
+4:18 Who against hope believed in hope, that he might become the
+father of many nations, according to that which was spoken, So shall
+thy seed be.
+
+4:19 And being not weak in faith, he considered not his own body now
+dead, when he was about an hundred years old, neither yet the deadness
+of Sarah's womb: 4:20 He staggered not at the promise of God through
+unbelief; but was strong in faith, giving glory to God; 4:21 And being
+fully persuaded that, what he had promised, he was able also to
+perform.
+
+4:22 And therefore it was imputed to him for righteousness.
+
+4:23 Now it was not written for his sake alone, that it was imputed to
+him; 4:24 But for us also, to whom it shall be imputed, if we believe
+on him that raised up Jesus our Lord from the dead; 4:25 Who was
+delivered for our offences, and was raised again for our
+justification.
+
+5:1 Therefore being justified by faith, we have peace with God through
+our Lord Jesus Christ: 5:2 By whom also we have access by faith into
+this grace wherein we stand, and rejoice in hope of the glory of God.
+
+5:3 And not only so, but we glory in tribulations also: knowing that
+tribulation worketh patience; 5:4 And patience, experience; and
+experience, hope: 5:5 And hope maketh not ashamed; because the love of
+God is shed abroad in our hearts by the Holy Ghost which is given unto
+us.
+
+5:6 For when we were yet without strength, in due time Christ died for
+the ungodly.
+
+5:7 For scarcely for a righteous man will one die: yet peradventure
+for a good man some would even dare to die.
+
+5:8 But God commendeth his love toward us, in that, while we were yet
+sinners, Christ died for us.
+
+5:9 Much more then, being now justified by his blood, we shall be
+saved from wrath through him.
+
+5:10 For if, when we were enemies, we were reconciled to God by the
+death of his Son, much more, being reconciled, we shall be saved by
+his life.
+
+5:11 And not only so, but we also joy in God through our Lord Jesus
+Christ, by whom we have now received the atonement.
+
+5:12 Wherefore, as by one man sin entered into the world, and death by
+sin; and so death passed upon all men, for that all have sinned: 5:13
+(For until the law sin was in the world: but sin is not imputed when
+there is no law.
+
+5:14 Nevertheless death reigned from Adam to Moses, even over them
+that had not sinned after the similitude of Adam's transgression, who
+is the figure of him that was to come.
+
+5:15 But not as the offence, so also is the free gift. For if through
+the offence of one many be dead, much more the grace of God, and the
+gift by grace, which is by one man, Jesus Christ, hath abounded unto
+many.
+
+5:16 And not as it was by one that sinned, so is the gift: for the
+judgment was by one to condemnation, but the free gift is of many
+offences unto justification.
+
+5:17 For if by one man's offence death reigned by one; much more they
+which receive abundance of grace and of the gift of righteousness
+shall reign in life by one, Jesus Christ.) 5:18 Therefore as by the
+offence of one judgment came upon all men to condemnation; even so by
+the righteousness of one the free gift came upon all men unto
+justification of life.
+
+5:19 For as by one man's disobedience many were made sinners, so by
+the obedience of one shall many be made righteous.
+
+5:20 Moreover the law entered, that the offence might abound. But
+where sin abounded, grace did much more abound: 5:21 That as sin hath
+reigned unto death, even so might grace reign through righteousness
+unto eternal life by Jesus Christ our Lord.
+
+6:1 What shall we say then? Shall we continue in sin, that grace may
+abound? 6:2 God forbid. How shall we, that are dead to sin, live any
+longer therein? 6:3 Know ye not, that so many of us as were baptized
+into Jesus Christ were baptized into his death? 6:4 Therefore we are
+buried with him by baptism into death: that like as Christ was raised
+up from the dead by the glory of the Father, even so we also should
+walk in newness of life.
+
+6:5 For if we have been planted together in the likeness of his death,
+we shall be also in the likeness of his resurrection: 6:6 Knowing
+this, that our old man is crucified with him, that the body of sin
+might be destroyed, that henceforth we should not serve sin.
+
+6:7 For he that is dead is freed from sin.
+
+6:8 Now if we be dead with Christ, we believe that we shall also live
+with him: 6:9 Knowing that Christ being raised from the dead dieth no
+more; death hath no more dominion over him.
+
+6:10 For in that he died, he died unto sin once: but in that he
+liveth, he liveth unto God.
+
+6:11 Likewise reckon ye also yourselves to be dead indeed unto sin,
+but alive unto God through Jesus Christ our Lord.
+
+6:12 Let not sin therefore reign in your mortal body, that ye should
+obey it in the lusts thereof.
+
+6:13 Neither yield ye your members as instruments of unrighteousness
+unto sin: but yield yourselves unto God, as those that are alive from
+the dead, and your members as instruments of righteousness unto God.
+
+6:14 For sin shall not have dominion over you: for ye are not under
+the law, but under grace.
+
+6:15 What then? shall we sin, because we are not under the law, but
+under grace? God forbid.
+
+6:16 Know ye not, that to whom ye yield yourselves servants to obey,
+his servants ye are to whom ye obey; whether of sin unto death, or of
+obedience unto righteousness? 6:17 But God be thanked, that ye were
+the servants of sin, but ye have obeyed from the heart that form of
+doctrine which was delivered you.
+
+6:18 Being then made free from sin, ye became the servants of
+righteousness.
+
+6:19 I speak after the manner of men because of the infirmity of your
+flesh: for as ye have yielded your members servants to uncleanness and
+to iniquity unto iniquity; even so now yield your members servants to
+righteousness unto holiness.
+
+6:20 For when ye were the servants of sin, ye were free from
+righteousness.
+
+6:21 What fruit had ye then in those things whereof ye are now
+ashamed? for the end of those things is death.
+
+6:22 But now being made free from sin, and become servants to God, ye
+have your fruit unto holiness, and the end everlasting life.
+
+6:23 For the wages of sin is death; but the gift of God is eternal
+life through Jesus Christ our Lord.
+
+7:1 Know ye not, brethren, (for I speak to them that know the law,)
+how that the law hath dominion over a man as long as he liveth? 7:2
+For the woman which hath an husband is bound by the law to her husband
+so long as he liveth; but if the husband be dead, she is loosed from
+the law of her husband.
+
+7:3 So then if, while her husband liveth, she be married to another
+man, she shall be called an adulteress: but if her husband be dead,
+she is free from that law; so that she is no adulteress, though she be
+married to another man.
+
+7:4 Wherefore, my brethren, ye also are become dead to the law by the
+body of Christ; that ye should be married to another, even to him who
+is raised from the dead, that we should bring forth fruit unto God.
+
+7:5 For when we were in the flesh, the motions of sins, which were by
+the law, did work in our members to bring forth fruit unto death.
+
+7:6 But now we are delivered from the law, that being dead wherein we
+were held; that we should serve in newness of spirit, and not in the
+oldness of the letter.
+
+7:7 What shall we say then? Is the law sin? God forbid. Nay, I had not
+known sin, but by the law: for I had not known lust, except the law
+had said, Thou shalt not covet.
+
+7:8 But sin, taking occasion by the commandment, wrought in me all
+manner of concupiscence. For without the law sin was dead.
+
+7:9 For I was alive without the law once: but when the commandment
+came, sin revived, and I died.
+
+7:10 And the commandment, which was ordained to life, I found to be
+unto death.
+
+7:11 For sin, taking occasion by the commandment, deceived me, and by
+it slew me.
+
+7:12 Wherefore the law is holy, and the commandment holy, and just,
+and good.
+
+7:13 Was then that which is good made death unto me? God forbid. But
+sin, that it might appear sin, working death in me by that which is
+good; that sin by the commandment might become exceeding sinful.
+
+7:14 For we know that the law is spiritual: but I am carnal, sold
+under sin.
+
+7:15 For that which I do I allow not: for what I would, that do I not;
+but what I hate, that do I.
+
+7:16 If then I do that which I would not, I consent unto the law that
+it is good.
+
+7:17 Now then it is no more I that do it, but sin that dwelleth in me.
+
+7:18 For I know that in me (that is, in my flesh,) dwelleth no good
+thing: for to will is present with me; but how to perform that which
+is good I find not.
+
+7:19 For the good that I would I do not: but the evil which I would
+not, that I do.
+
+7:20 Now if I do that I would not, it is no more I that do it, but sin
+that dwelleth in me.
+
+7:21 I find then a law, that, when I would do good, evil is present
+with me.
+
+7:22 For I delight in the law of God after the inward man: 7:23 But I
+see another law in my members, warring against the law of my mind, and
+bringing me into captivity to the law of sin which is in my members.
+
+7:24 O wretched man that I am! who shall deliver me from the body of
+this death? 7:25 I thank God through Jesus Christ our Lord. So then
+with the mind I myself serve the law of God; but with the flesh the
+law of sin.
+
+8:1 There is therefore now no condemnation to them which are in Christ
+Jesus, who walk not after the flesh, but after the Spirit.
+
+8:2 For the law of the Spirit of life in Christ Jesus hath made me
+free from the law of sin and death.
+
+8:3 For what the law could not do, in that it was weak through the
+flesh, God sending his own Son in the likeness of sinful flesh, and
+for sin, condemned sin in the flesh: 8:4 That the righteousness of the
+law might be fulfilled in us, who walk not after the flesh, but after
+the Spirit.
+
+8:5 For they that are after the flesh do mind the things of the flesh;
+but they that are after the Spirit the things of the Spirit.
+
+8:6 For to be carnally minded is death; but to be spiritually minded
+is life and peace.
+
+8:7 Because the carnal mind is enmity against God: for it is not
+subject to the law of God, neither indeed can be.
+
+8:8 So then they that are in the flesh cannot please God.
+
+8:9 But ye are not in the flesh, but in the Spirit, if so be that the
+Spirit of God dwell in you. Now if any man have not the Spirit of
+Christ, he is none of his.
+
+8:10 And if Christ be in you, the body is dead because of sin; but the
+Spirit is life because of righteousness.
+
+8:11 But if the Spirit of him that raised up Jesus from the dead dwell
+in you, he that raised up Christ from the dead shall also quicken your
+mortal bodies by his Spirit that dwelleth in you.
+
+8:12 Therefore, brethren, we are debtors, not to the flesh, to live
+after the flesh.
+
+8:13 For if ye live after the flesh, ye shall die: but if ye through
+the Spirit do mortify the deeds of the body, ye shall live.
+
+8:14 For as many as are led by the Spirit of God, they are the sons of
+God.
+
+8:15 For ye have not received the spirit of bondage again to fear; but
+ye have received the Spirit of adoption, whereby we cry, Abba, Father.
+
+8:16 The Spirit itself beareth witness with our spirit, that we are
+the children of God: 8:17 And if children, then heirs; heirs of God,
+and joint-heirs with Christ; if so be that we suffer with him, that we
+may be also glorified together.
+
+8:18 For I reckon that the sufferings of this present time are not
+worthy to be compared with the glory which shall be revealed in us.
+
+8:19 For the earnest expectation of the creature waiteth for the
+manifestation of the sons of God.
+
+8:20 For the creature was made subject to vanity, not willingly, but
+by reason of him who hath subjected the same in hope, 8:21 Because the
+creature itself also shall be delivered from the bondage of corruption
+into the glorious liberty of the children of God.
+
+8:22 For we know that the whole creation groaneth and travaileth in
+pain together until now.
+
+8:23 And not only they, but ourselves also, which have the firstfruits
+of the Spirit, even we ourselves groan within ourselves, waiting for
+the adoption, to wit, the redemption of our body.
+
+8:24 For we are saved by hope: but hope that is seen is not hope: for
+what a man seeth, why doth he yet hope for? 8:25 But if we hope for
+that we see not, then do we with patience wait for it.
+
+8:26 Likewise the Spirit also helpeth our infirmities: for we know not
+what we should pray for as we ought: but the Spirit itself maketh
+intercession for us with groanings which cannot be uttered.
+
+8:27 And he that searcheth the hearts knoweth what is the mind of the
+Spirit, because he maketh intercession for the saints according to the
+will of God.
+
+8:28 And we know that all things work together for good to them that
+love God, to them who are the called according to his purpose.
+
+8:29 For whom he did foreknow, he also did predestinate to be
+conformed to the image of his Son, that he might be the firstborn
+among many brethren.
+
+8:30 Moreover whom he did predestinate, them he also called: and whom
+he called, them he also justified: and whom he justified, them he also
+glorified.
+
+8:31 What shall we then say to these things? If God be for us, who can
+be against us? 8:32 He that spared not his own Son, but delivered him
+up for us all, how shall he not with him also freely give us all
+things? 8:33 Who shall lay any thing to the charge of God's elect? It
+is God that justifieth.
+
+8:34 Who is he that condemneth? It is Christ that died, yea rather,
+that is risen again, who is even at the right hand of God, who also
+maketh intercession for us.
+
+8:35 Who shall separate us from the love of Christ? shall tribulation,
+or distress, or persecution, or famine, or nakedness, or peril, or
+sword? 8:36 As it is written, For thy sake we are killed all the day
+long; we are accounted as sheep for the slaughter.
+
+8:37 Nay, in all these things we are more than conquerors through him
+that loved us.
+
+8:38 For I am persuaded, that neither death, nor life, nor angels, nor
+principalities, nor powers, nor things present, nor things to come,
+8:39 Nor height, nor depth, nor any other creature, shall be able to
+separate us from the love of God, which is in Christ Jesus our Lord.
+
+9:1 I say the truth in Christ, I lie not, my conscience also bearing
+me witness in the Holy Ghost, 9:2 That I have great heaviness and
+continual sorrow in my heart.
+
+9:3 For I could wish that myself were accursed from Christ for my
+brethren, my kinsmen according to the flesh: 9:4 Who are Israelites;
+to whom pertaineth the adoption, and the glory, and the covenants, and
+the giving of the law, and the service of God, and the promises; 9:5
+Whose are the fathers, and of whom as concerning the flesh Christ
+came, who is over all, God blessed for ever. Amen.
+
+9:6 Not as though the word of God hath taken none effect. For they are
+not all Israel, which are of Israel: 9:7 Neither, because they are the
+seed of Abraham, are they all children: but, In Isaac shall thy seed
+be called.
+
+9:8 That is, They which are the children of the flesh, these are not
+the children of God: but the children of the promise are counted for
+the seed.
+
+9:9 For this is the word of promise, At this time will I come, and
+Sarah shall have a son.
+
+9:10 And not only this; but when Rebecca also had conceived by one,
+even by our father Isaac; 9:11 (For the children being not yet born,
+neither having done any good or evil, that the purpose of God
+according to election might stand, not of works, but of him that
+calleth;) 9:12 It was said unto her, The elder shall serve the
+younger.
+
+9:13 As it is written, Jacob have I loved, but Esau have I hated.
+
+9:14 What shall we say then? Is there unrighteousness with God? God
+forbid.
+
+9:15 For he saith to Moses, I will have mercy on whom I will have
+mercy, and I will have compassion on whom I will have compassion.
+
+9:16 So then it is not of him that willeth, nor of him that runneth,
+but of God that sheweth mercy.
+
+9:17 For the scripture saith unto Pharaoh, Even for this same purpose
+have I raised thee up, that I might shew my power in thee, and that my
+name might be declared throughout all the earth.
+
+9:18 Therefore hath he mercy on whom he will have mercy, and whom he
+will he hardeneth.
+
+9:19 Thou wilt say then unto me, Why doth he yet find fault? For who
+hath resisted his will? 9:20 Nay but, O man, who art thou that
+repliest against God? Shall the thing formed say to him that formed
+it, Why hast thou made me thus? 9:21 Hath not the potter power over
+the clay, of the same lump to make one vessel unto honour, and another
+unto dishonour? 9:22 What if God, willing to shew his wrath, and to
+make his power known, endured with much longsuffering the vessels of
+wrath fitted to destruction: 9:23 And that he might make known the
+riches of his glory on the vessels of mercy, which he had afore
+prepared unto glory, 9:24 Even us, whom he hath called, not of the
+Jews only, but also of the Gentiles? 9:25 As he saith also in Osee, I
+will call them my people, which were not my people; and her beloved,
+which was not beloved.
+
+9:26 And it shall come to pass, that in the place where it was said
+unto them, Ye are not my people; there shall they be called the
+children of the living God.
+
+9:27 Esaias also crieth concerning Israel, Though the number of the
+children of Israel be as the sand of the sea, a remnant shall be
+saved: 9:28 For he will finish the work, and cut it short in
+righteousness: because a short work will the Lord make upon the earth.
+
+9:29 And as Esaias said before, Except the Lord of Sabaoth had left us
+a seed, we had been as Sodoma, and been made like unto Gomorrha.
+
+9:30 What shall we say then? That the Gentiles, which followed not
+after righteousness, have attained to righteousness, even the
+righteousness which is of faith.
+
+9:31 But Israel, which followed after the law of righteousness, hath
+not attained to the law of righteousness.
+
+9:32 Wherefore? Because they sought it not by faith, but as it were by
+the works of the law. For they stumbled at that stumblingstone; 9:33
+As it is written, Behold, I lay in Sion a stumblingstone and rock of
+offence: and whosoever believeth on him shall not be ashamed.
+
+10:1 Brethren, my heart's desire and prayer to God for Israel is, that
+they might be saved.
+
+10:2 For I bear them record that they have a zeal of God, but not
+according to knowledge.
+
+10:3 For they being ignorant of God's righteousness, and going about
+to establish their own righteousness, have not submitted themselves
+unto the righteousness of God.
+
+10:4 For Christ is the end of the law for righteousness to every one
+that believeth.
+
+10:5 For Moses describeth the righteousness which is of the law, That
+the man which doeth those things shall live by them.
+
+10:6 But the righteousness which is of faith speaketh on this wise,
+Say not in thine heart, Who shall ascend into heaven? (that is, to
+bring Christ down from above:) 10:7 Or, Who shall descend into the
+deep? (that is, to bring up Christ again from the dead.) 10:8 But
+what saith it? The word is nigh thee, even in thy mouth, and in thy
+heart: that is, the word of faith, which we preach; 10:9 That if thou
+shalt confess with thy mouth the Lord Jesus, and shalt believe in
+thine heart that God hath raised him from the dead, thou shalt be
+saved.
+
+10:10 For with the heart man believeth unto righteousness; and with
+the mouth confession is made unto salvation.
+
+10:11 For the scripture saith, Whosoever believeth on him shall not be
+ashamed.
+
+10:12 For there is no difference between the Jew and the Greek: for
+the same Lord over all is rich unto all that call upon him.
+
+10:13 For whosoever shall call upon the name of the Lord shall be
+saved.
+
+10:14 How then shall they call on him in whom they have not believed?
+and how shall they believe in him of whom they have not heard? and how
+shall they hear without a preacher? 10:15 And how shall they preach,
+except they be sent? as it is written, How beautiful are the feet of
+them that preach the gospel of peace, and bring glad tidings of good
+things! 10:16 But they have not all obeyed the gospel. For Esaias
+saith, Lord, who hath believed our report? 10:17 So then faith cometh
+by hearing, and hearing by the word of God.
+
+10:18 But I say, Have they not heard? Yes verily, their sound went
+into all the earth, and their words unto the ends of the world.
+
+10:19 But I say, Did not Israel know? First Moses saith, I will
+provoke you to jealousy by them that are no people, and by a foolish
+nation I will anger you.
+
+10:20 But Esaias is very bold, and saith, I was found of them that
+sought me not; I was made manifest unto them that asked not after me.
+
+10:21 But to Israel he saith, All day long I have stretched forth my
+hands unto a disobedient and gainsaying people.
+
+11:1 I say then, Hath God cast away his people? God forbid. For I also
+am an Israelite, of the seed of Abraham, of the tribe of Benjamin.
+
+11:2 God hath not cast away his people which he foreknew. Wot ye not
+what the scripture saith of Elias? how he maketh intercession to God
+against Israel saying, 11:3 Lord, they have killed thy prophets, and
+digged down thine altars; and I am left alone, and they seek my life.
+
+11:4 But what saith the answer of God unto him? I have reserved to
+myself seven thousand men, who have not bowed the knee to the image of
+Baal.
+
+11:5 Even so then at this present time also there is a remnant
+according to the election of grace.
+
+11:6 And if by grace, then is it no more of works: otherwise grace is
+no more grace. But if it be of works, then it is no more grace:
+otherwise work is no more work.
+
+11:7 What then? Israel hath not obtained that which he seeketh for;
+but the election hath obtained it, and the rest were blinded.
+
+11:8 (According as it is written, God hath given them the spirit of
+slumber, eyes that they should not see, and ears that they should not
+hear;) unto this day.
+
+11:9 And David saith, Let their table be made a snare, and a trap, and
+a stumblingblock, and a recompence unto them: 11:10 Let their eyes be
+darkened, that they may not see, and bow down their back alway.
+
+11:11 I say then, Have they stumbled that they should fall? God
+forbid: but rather through their fall salvation is come unto the
+Gentiles, for to provoke them to jealousy.
+
+11:12 Now if the fall of them be the riches of the world, and the
+diminishing of them the riches of the Gentiles; how much more their
+fulness? 11:13 For I speak to you Gentiles, inasmuch as I am the
+apostle of the Gentiles, I magnify mine office: 11:14 If by any means
+I may provoke to emulation them which are my flesh, and might save
+some of them.
+
+11:15 For if the casting away of them be the reconciling of the world,
+what shall the receiving of them be, but life from the dead? 11:16
+For if the firstfruit be holy, the lump is also holy: and if the root
+be holy, so are the branches.
+
+11:17 And if some of the branches be broken off, and thou, being a
+wild olive tree, wert graffed in among them, and with them partakest
+of the root and fatness of the olive tree; 11:18 Boast not against the
+branches. But if thou boast, thou bearest not the root, but the root
+thee.
+
+11:19 Thou wilt say then, The branches were broken off, that I might
+be graffed in.
+
+11:20 Well; because of unbelief they were broken off, and thou
+standest by faith. Be not highminded, but fear: 11:21 For if God
+spared not the natural branches, take heed lest he also spare not
+thee.
+
+11:22 Behold therefore the goodness and severity of God: on them which
+fell, severity; but toward thee, goodness, if thou continue in his
+goodness: otherwise thou also shalt be cut off.
+
+11:23 And they also, if they abide not still in unbelief, shall be
+graffed in: for God is able to graff them in again.
+
+11:24 For if thou wert cut out of the olive tree which is wild by
+nature, and wert graffed contrary to nature into a good olive tree:
+how much more shall these, which be the natural branches, be graffed
+into their own olive tree? 11:25 For I would not, brethren, that ye
+should be ignorant of this mystery, lest ye should be wise in your own
+conceits; that blindness in part is happened to Israel, until the
+fulness of the Gentiles be come in.
+
+11:26 And so all Israel shall be saved: as it is written, There shall
+come out of Sion the Deliverer, and shall turn away ungodliness from
+Jacob: 11:27 For this is my covenant unto them, when I shall take away
+their sins.
+
+11:28 As concerning the gospel, they are enemies for your sakes: but
+as touching the election, they are beloved for the father's sakes.
+
+11:29 For the gifts and calling of God are without repentance.
+
+11:30 For as ye in times past have not believed God, yet have now
+obtained mercy through their unbelief: 11:31 Even so have these also
+now not believed, that through your mercy they also may obtain mercy.
+
+11:32 For God hath concluded them all in unbelief, that he might have
+mercy upon all.
+
+11:33 O the depth of the riches both of the wisdom and knowledge of
+God! how unsearchable are his judgments, and his ways past finding
+out! 11:34 For who hath known the mind of the Lord? or who hath been
+his counsellor? 11:35 Or who hath first given to him, and it shall be
+recompensed unto him again? 11:36 For of him, and through him, and to
+him, are all things: to whom be glory for ever. Amen.
+
+12:1 I beseech you therefore, brethren, by the mercies of God, that ye
+present your bodies a living sacrifice, holy, acceptable unto God,
+which is your reasonable service.
+
+12:2 And be not conformed to this world: but be ye transformed by the
+renewing of your mind, that ye may prove what is that good, and
+acceptable, and perfect, will of God.
+
+12:3 For I say, through the grace given unto me, to every man that is
+among you, not to think of himself more highly than he ought to think;
+but to think soberly, according as God hath dealt to every man the
+measure of faith.
+
+12:4 For as we have many members in one body, and all members have not
+the same office: 12:5 So we, being many, are one body in Christ, and
+every one members one of another.
+
+12:6 Having then gifts differing according to the grace that is given
+to us, whether prophecy, let us prophesy according to the proportion
+of faith; 12:7 Or ministry, let us wait on our ministering: or he that
+teacheth, on teaching; 12:8 Or he that exhorteth, on exhortation: he
+that giveth, let him do it with simplicity; he that ruleth, with
+diligence; he that sheweth mercy, with cheerfulness.
+
+12:9 Let love be without dissimulation. Abhor that which is evil;
+cleave to that which is good.
+
+12:10 Be kindly affectioned one to another with brotherly love; in
+honour preferring one another; 12:11 Not slothful in business; fervent
+in spirit; serving the Lord; 12:12 Rejoicing in hope; patient in
+tribulation; continuing instant in prayer; 12:13 Distributing to the
+necessity of saints; given to hospitality.
+
+12:14 Bless them which persecute you: bless, and curse not.
+
+12:15 Rejoice with them that do rejoice, and weep with them that weep.
+
+12:16 Be of the same mind one toward another. Mind not high things,
+but condescend to men of low estate. Be not wise in your own conceits.
+
+12:17 Recompense to no man evil for evil. Provide things honest in the
+sight of all men.
+
+12:18 If it be possible, as much as lieth in you, live peaceably with
+all men.
+
+12:19 Dearly beloved, avenge not yourselves, but rather give place
+unto wrath: for it is written, Vengeance is mine; I will repay, saith
+the Lord.
+
+12:20 Therefore if thine enemy hunger, feed him; if he thirst, give
+him drink: for in so doing thou shalt heap coals of fire on his head.
+
+12:21 Be not overcome of evil, but overcome evil with good.
+
+13:1 Let every soul be subject unto the higher powers. For there is no
+power but of God: the powers that be are ordained of God.
+
+13:2 Whosoever therefore resisteth the power, resisteth the ordinance
+of God: and they that resist shall receive to themselves damnation.
+
+13:3 For rulers are not a terror to good works, but to the evil. Wilt
+thou then not be afraid of the power? do that which is good, and thou
+shalt have praise of the same: 13:4 For he is the minister of God to
+thee for good. But if thou do that which is evil, be afraid; for he
+beareth not the sword in vain: for he is the minister of God, a
+revenger to execute wrath upon him that doeth evil.
+
+13:5 Wherefore ye must needs be subject, not only for wrath, but also
+for conscience sake.
+
+13:6 For for this cause pay ye tribute also: for they are God's
+ministers, attending continually upon this very thing.
+
+13:7 Render therefore to all their dues: tribute to whom tribute is
+due; custom to whom custom; fear to whom fear; honour to whom honour.
+
+13:8 Owe no man any thing, but to love one another: for he that loveth
+another hath fulfilled the law.
+
+13:9 For this, Thou shalt not commit adultery, Thou shalt not kill,
+Thou shalt not steal, Thou shalt not bear false witness, Thou shalt
+not covet; and if there be any other commandment, it is briefly
+comprehended in this saying, namely, Thou shalt love thy neighbour as
+thyself.
+
+13:10 Love worketh no ill to his neighbour: therefore love is the
+fulfilling of the law.
+
+13:11 And that, knowing the time, that now it is high time to awake
+out of sleep: for now is our salvation nearer than when we believed.
+
+13:12 The night is far spent, the day is at hand: let us therefore
+cast off the works of darkness, and let us put on the armour of light.
+
+13:13 Let us walk honestly, as in the day; not in rioting and
+drunkenness, not in chambering and wantonness, not in strife and
+envying.
+
+13:14 But put ye on the Lord Jesus Christ, and make not provision for
+the flesh, to fulfil the lusts thereof.
+
+14:1 Him that is weak in the faith receive ye, but not to doubtful
+disputations.
+
+14:2 For one believeth that he may eat all things: another, who is
+weak, eateth herbs.
+
+14:3 Let not him that eateth despise him that eateth not; and let not
+him which eateth not judge him that eateth: for God hath received him.
+
+14:4 Who art thou that judgest another man's servant? to his own
+master he standeth or falleth. Yea, he shall be holden up: for God is
+able to make him stand.
+
+14:5 One man esteemeth one day above another: another esteemeth every
+day alike. Let every man be fully persuaded in his own mind.
+
+14:6 He that regardeth the day, regardeth it unto the Lord; and he
+that regardeth not the day, to the Lord he doth not regard it. He that
+eateth, eateth to the Lord, for he giveth God thanks; and he that
+eateth not, to the Lord he eateth not, and giveth God thanks.
+
+14:7 For none of us liveth to himself, and no man dieth to himself.
+
+14:8 For whether we live, we live unto the Lord; and whether we die,
+we die unto the Lord: whether we live therefore, or die, we are the
+Lord's.
+
+14:9 For to this end Christ both died, and rose, and revived, that he
+might be Lord both of the dead and living.
+
+14:10 But why dost thou judge thy brother? or why dost thou set at
+nought thy brother? for we shall all stand before the judgment seat of
+Christ.
+
+14:11 For it is written, As I live, saith the Lord, every knee shall
+bow to me, and every tongue shall confess to God.
+
+14:12 So then every one of us shall give account of himself to God.
+
+14:13 Let us not therefore judge one another any more: but judge this
+rather, that no man put a stumblingblock or an occasion to fall in his
+brother's way.
+
+14:14 I know, and am persuaded by the Lord Jesus, that there is
+nothing unclean of itself: but to him that esteemeth any thing to be
+unclean, to him it is unclean.
+
+14:15 But if thy brother be grieved with thy meat, now walkest thou
+not charitably. Destroy not him with thy meat, for whom Christ died.
+
+14:16 Let not then your good be evil spoken of: 14:17 For the kingdom
+of God is not meat and drink; but righteousness, and peace, and joy in
+the Holy Ghost.
+
+14:18 For he that in these things serveth Christ is acceptable to God,
+and approved of men.
+
+14:19 Let us therefore follow after the things which make for peace,
+and things wherewith one may edify another.
+
+14:20 For meat destroy not the work of God. All things indeed are
+pure; but it is evil for that man who eateth with offence.
+
+14:21 It is good neither to eat flesh, nor to drink wine, nor any
+thing whereby thy brother stumbleth, or is offended, or is made weak.
+
+14:22 Hast thou faith? have it to thyself before God. Happy is he that
+condemneth not himself in that thing which he alloweth.
+
+14:23 And he that doubteth is damned if he eat, because he eateth not
+of faith: for whatsoever is not of faith is sin.
+
+15:1 We then that are strong ought to bear the infirmities of the
+weak, and not to please ourselves.
+
+15:2 Let every one of us please his neighbour for his good to
+edification.
+
+15:3 For even Christ pleased not himself; but, as it is written, The
+reproaches of them that reproached thee fell on me.
+
+15:4 For whatsoever things were written aforetime were written for our
+learning, that we through patience and comfort of the scriptures might
+have hope.
+
+15:5 Now the God of patience and consolation grant you to be
+likeminded one toward another according to Christ Jesus: 15:6 That ye
+may with one mind and one mouth glorify God, even the Father of our
+Lord Jesus Christ.
+
+15:7 Wherefore receive ye one another, as Christ also received us to
+the glory of God.
+
+15:8 Now I say that Jesus Christ was a minister of the circumcision
+for the truth of God, to confirm the promises made unto the fathers:
+15:9 And that the Gentiles might glorify God for his mercy; as it is
+written, For this cause I will confess to thee among the Gentiles, and
+sing unto thy name.
+
+15:10 And again he saith, Rejoice, ye Gentiles, with his people.
+
+15:11 And again, Praise the Lord, all ye Gentiles; and laud him, all
+ye people.
+
+15:12 And again, Esaias saith, There shall be a root of Jesse, and he
+that shall rise to reign over the Gentiles; in him shall the Gentiles
+trust.
+
+15:13 Now the God of hope fill you with all joy and peace in
+believing, that ye may abound in hope, through the power of the Holy
+Ghost.
+
+15:14 And I myself also am persuaded of you, my brethren, that ye also
+are full of goodness, filled with all knowledge, able also to admonish
+one another.
+
+15:15 Nevertheless, brethren, I have written the more boldly unto you
+in some sort, as putting you in mind, because of the grace that is
+given to me of God, 15:16 That I should be the minister of Jesus
+Christ to the Gentiles, ministering the gospel of God, that the
+offering up of the Gentiles might be acceptable, being sanctified by
+the Holy Ghost.
+
+15:17 I have therefore whereof I may glory through Jesus Christ in
+those things which pertain to God.
+
+15:18 For I will not dare to speak of any of those things which Christ
+hath not wrought by me, to make the Gentiles obedient, by word and
+deed, 15:19 Through mighty signs and wonders, by the power of the
+Spirit of God; so that from Jerusalem, and round about unto Illyricum,
+I have fully preached the gospel of Christ.
+
+15:20 Yea, so have I strived to preach the gospel, not where Christ
+was named, lest I should build upon another man's foundation: 15:21
+But as it is written, To whom he was not spoken of, they shall see:
+and they that have not heard shall understand.
+
+15:22 For which cause also I have been much hindered from coming to
+you.
+
+15:23 But now having no more place in these parts, and having a great
+desire these many years to come unto you; 15:24 Whensoever I take my
+journey into Spain, I will come to you: for I trust to see you in my
+journey, and to be brought on my way thitherward by you, if first I be
+somewhat filled with your company.
+
+15:25 But now I go unto Jerusalem to minister unto the saints.
+
+15:26 For it hath pleased them of Macedonia and Achaia to make a
+certain contribution for the poor saints which are at Jerusalem.
+
+15:27 It hath pleased them verily; and their debtors they are. For if
+the Gentiles have been made partakers of their spiritual things, their
+duty is also to minister unto them in carnal things.
+
+15:28 When therefore I have performed this, and have sealed to them
+this fruit, I will come by you into Spain.
+
+15:29 And I am sure that, when I come unto you, I shall come in the
+fulness of the blessing of the gospel of Christ.
+
+15:30 Now I beseech you, brethren, for the Lord Jesus Christ's sake,
+and for the love of the Spirit, that ye strive together with me in
+your prayers to God for me; 15:31 That I may be delivered from them
+that do not believe in Judaea; and that my service which I have for
+Jerusalem may be accepted of the saints; 15:32 That I may come unto
+you with joy by the will of God, and may with you be refreshed.
+
+15:33 Now the God of peace be with you all. Amen.
+
+16:1 I commend unto you Phebe our sister, which is a servant of the
+church which is at Cenchrea: 16:2 That ye receive her in the Lord, as
+becometh saints, and that ye assist her in whatsoever business she
+hath need of you: for she hath been a succourer of many, and of myself
+also.
+
+16:3 Greet Priscilla and Aquila my helpers in Christ Jesus: 16:4 Who
+have for my life laid down their own necks: unto whom not only I give
+thanks, but also all the churches of the Gentiles.
+
+16:5 Likewise greet the church that is in their house. Salute my
+well-beloved Epaenetus, who is the firstfruits of Achaia unto Christ.
+
+16:6 Greet Mary, who bestowed much labour on us.
+
+16:7 Salute Andronicus and Junia, my kinsmen, and my fellow-prisoners,
+who are of note among the apostles, who also were in Christ before me.
+
+16:8 Greet Amplias my beloved in the Lord.
+
+16:9 Salute Urbane, our helper in Christ, and Stachys my beloved.
+
+16:10 Salute Apelles approved in Christ. Salute them which are of
+Aristobulus' household.
+
+16:11 Salute Herodion my kinsman. Greet them that be of the household
+of Narcissus, which are in the Lord.
+
+16:12 Salute Tryphena and Tryphosa, who labour in the Lord. Salute the
+beloved Persis, which laboured much in the Lord.
+
+16:13 Salute Rufus chosen in the Lord, and his mother and mine.
+
+16:14 Salute Asyncritus, Phlegon, Hermas, Patrobas, Hermes, and the
+brethren which are with them.
+
+16:15 Salute Philologus, and Julia, Nereus, and his sister, and
+Olympas, and all the saints which are with them.
+
+16:16 Salute one another with an holy kiss. The churches of Christ
+salute you.
+
+16:17 Now I beseech you, brethren, mark them which cause divisions and
+offences contrary to the doctrine which ye have learned; and avoid
+them.
+
+16:18 For they that are such serve not our Lord Jesus Christ, but
+their own belly; and by good words and fair speeches deceive the
+hearts of the simple.
+
+16:19 For your obedience is come abroad unto all men. I am glad
+therefore on your behalf: but yet I would have you wise unto that
+which is good, and simple concerning evil.
+
+16:20 And the God of peace shall bruise Satan under your feet shortly.
+The grace of our Lord Jesus Christ be with you. Amen.
+
+16:21 Timotheus my workfellow, and Lucius, and Jason, and Sosipater,
+my kinsmen, salute you.
+
+16:22 I Tertius, who wrote this epistle, salute you in the Lord.
+
+16:23 Gaius mine host, and of the whole church, saluteth you. Erastus
+the chamberlain of the city saluteth you, and Quartus a brother.
+
+16:24 The grace of our Lord Jesus Christ be with you all. Amen.
+
+16:25 Now to him that is of power to stablish you according to my
+gospel, and the preaching of Jesus Christ, according to the revelation
+of the mystery, which was kept secret since the world began, 16:26 But
+now is made manifest, and by the scriptures of the prophets, according
+to the commandment of the everlasting God, made known to all nations
+for the obedience of faith: 16:27 To God only wise, be glory through
+Jesus Christ for ever. Amen.
+
+
+
+
+The First Epistle of Paul the Apostle to the Corinthians
+
+
+1:1 Paul called to be an apostle of Jesus Christ through the will of
+God, and Sosthenes our brother, 1:2 Unto the church of God which is at
+Corinth, to them that are sanctified in Christ Jesus, called to be
+saints, with all that in every place call upon the name of Jesus
+Christ our Lord, both their's and our's: 1:3 Grace be unto you, and
+peace, from God our Father, and from the Lord Jesus Christ.
+
+1:4 I thank my God always on your behalf, for the grace of God which
+is given you by Jesus Christ; 1:5 That in every thing ye are enriched
+by him, in all utterance, and in all knowledge; 1:6 Even as the
+testimony of Christ was confirmed in you: 1:7 So that ye come behind
+in no gift; waiting for the coming of our Lord Jesus Christ: 1:8 Who
+shall also confirm you unto the end, that ye may be blameless in the
+day of our Lord Jesus Christ.
+
+1:9 God is faithful, by whom ye were called unto the fellowship of his
+Son Jesus Christ our Lord.
+
+1:10 Now I beseech you, brethren, by the name of our Lord Jesus
+Christ, that ye all speak the same thing, and that there be no
+divisions among you; but that ye be perfectly joined together in the
+same mind and in the same judgment.
+
+1:11 For it hath been declared unto me of you, my brethren, by them
+which are of the house of Chloe, that there are contentions among you.
+
+1:12 Now this I say, that every one of you saith, I am of Paul; and I
+of Apollos; and I of Cephas; and I of Christ.
+
+1:13 Is Christ divided? was Paul crucified for you? or were ye
+baptized in the name of Paul? 1:14 I thank God that I baptized none
+of you, but Crispus and Gaius; 1:15 Lest any should say that I had
+baptized in mine own name.
+
+1:16 And I baptized also the household of Stephanas: besides, I know
+not whether I baptized any other.
+
+1:17 For Christ sent me not to baptize, but to preach the gospel: not
+with wisdom of words, lest the cross of Christ should be made of none
+effect.
+
+1:18 For the preaching of the cross is to them that perish
+foolishness; but unto us which are saved it is the power of God.
+
+1:19 For it is written, I will destroy the wisdom of the wise, and
+will bring to nothing the understanding of the prudent.
+
+1:20 Where is the wise? where is the scribe? where is the disputer of
+this world? hath not God made foolish the wisdom of this world? 1:21
+For after that in the wisdom of God the world by wisdom knew not God,
+it pleased God by the foolishness of preaching to save them that
+believe.
+
+1:22 For the Jews require a sign, and the Greeks seek after wisdom:
+1:23 But we preach Christ crucified, unto the Jews a stumblingblock,
+and unto the Greeks foolishness; 1:24 But unto them which are called,
+both Jews and Greeks, Christ the power of God, and the wisdom of God.
+
+1:25 Because the foolishness of God is wiser than men; and the
+weakness of God is stronger than men.
+
+1:26 For ye see your calling, brethren, how that not many wise men
+after the flesh, not many mighty, not many noble, are called: 1:27 But
+God hath chosen the foolish things of the world to confound the wise;
+and God hath chosen the weak things of the world to confound the
+things which are mighty; 1:28 And base things of the world, and things
+which are despised, hath God chosen, yea, and things which are not, to
+bring to nought things that are: 1:29 That no flesh should glory in
+his presence.
+
+1:30 But of him are ye in Christ Jesus, who of God is made unto us
+wisdom, and righteousness, and sanctification, and redemption: 1:31
+That, according as it is written, He that glorieth, let him glory in
+the Lord.
+
+2:1 And I, brethren, when I came to you, came not with excellency of
+speech or of wisdom, declaring unto you the testimony of God.
+
+2:2 For I determined not to know any thing among you, save Jesus
+Christ, and him crucified.
+
+2:3 And I was with you in weakness, and in fear, and in much
+trembling.
+
+2:4 And my speech and my preaching was not with enticing words of
+man's wisdom, but in demonstration of the Spirit and of power: 2:5
+That your faith should not stand in the wisdom of men, but in the
+power of God.
+
+2:6 Howbeit we speak wisdom among them that are perfect: yet not the
+wisdom of this world, nor of the princes of this world, that come to
+nought: 2:7 But we speak the wisdom of God in a mystery, even the
+hidden wisdom, which God ordained before the world unto our glory: 2:8
+Which none of the princes of this world knew: for had they known it,
+they would not have crucified the Lord of glory.
+
+2:9 But as it is written, Eye hath not seen, nor ear heard, neither
+have entered into the heart of man, the things which God hath prepared
+for them that love him.
+
+2:10 But God hath revealed them unto us by his Spirit: for the Spirit
+searcheth all things, yea, the deep things of God.
+
+2:11 For what man knoweth the things of a man, save the spirit of man
+which is in him? even so the things of God knoweth no man, but the
+Spirit of God.
+
+2:12 Now we have received, not the spirit of the world, but the spirit
+which is of God; that we might know the things that are freely given
+to us of God.
+
+2:13 Which things also we speak, not in the words which man's wisdom
+teacheth, but which the Holy Ghost teacheth; comparing spiritual
+things with spiritual.
+
+2:14 But the natural man receiveth not the things of the Spirit of
+God: for they are foolishness unto him: neither can he know them,
+because they are spiritually discerned.
+
+2:15 But he that is spiritual judgeth all things, yet he himself is
+judged of no man.
+
+2:16 For who hath known the mind of the Lord, that he may instruct
+him? But we have the mind of Christ.
+
+3:1 And I, brethren, could not speak unto you as unto spiritual, but
+as unto carnal, even as unto babes in Christ.
+
+3:2 I have fed you with milk, and not with meat: for hitherto ye were
+not able to bear it, neither yet now are ye able.
+
+3:3 For ye are yet carnal: for whereas there is among you envying, and
+strife, and divisions, are ye not carnal, and walk as men? 3:4 For
+while one saith, I am of Paul; and another, I am of Apollos; are ye
+not carnal? 3:5 Who then is Paul, and who is Apollos, but ministers
+by whom ye believed, even as the Lord gave to every man? 3:6 I have
+planted, Apollos watered; but God gave the increase.
+
+3:7 So then neither is he that planteth any thing, neither he that
+watereth; but God that giveth the increase.
+
+3:8 Now he that planteth and he that watereth are one: and every man
+shall receive his own reward according to his own labour.
+
+3:9 For we are labourers together with God: ye are God's husbandry, ye
+are God's building.
+
+3:10 According to the grace of God which is given unto me, as a wise
+masterbuilder, I have laid the foundation, and another buildeth
+thereon. But let every man take heed how he buildeth thereupon.
+
+3:11 For other foundation can no man lay than that is laid, which is
+Jesus Christ.
+
+3:12 Now if any man build upon this foundation gold, silver, precious
+stones, wood, hay, stubble; 3:13 Every man's work shall be made
+manifest: for the day shall declare it, because it shall be revealed
+by fire; and the fire shall try every man's work of what sort it is.
+
+3:14 If any man's work abide which he hath built thereupon, he shall
+receive a reward.
+
+3:15 If any man's work shall be burned, he shall suffer loss: but he
+himself shall be saved; yet so as by fire.
+
+3:16 Know ye not that ye are the temple of God, and that the Spirit of
+God dwelleth in you? 3:17 If any man defile the temple of God, him
+shall God destroy; for the temple of God is holy, which temple ye are.
+
+3:18 Let no man deceive himself. If any man among you seemeth to be
+wise in this world, let him become a fool, that he may be wise.
+
+3:19 For the wisdom of this world is foolishness with God. For it is
+written, He taketh the wise in their own craftiness.
+
+3:20 And again, The Lord knoweth the thoughts of the wise, that they
+are vain.
+
+3:21 Therefore let no man glory in men. For all things are your's;
+3:22 Whether Paul, or Apollos, or Cephas, or the world, or life, or
+death, or things present, or things to come; all are your's; 3:23 And
+ye are Christ's; and Christ is God's.
+
+4:1 Let a man so account of us, as of the ministers of Christ, and
+stewards of the mysteries of God.
+
+4:2 Moreover it is required in stewards, that a man be found faithful.
+
+4:3 But with me it is a very small thing that I should be judged of
+you, or of man's judgment: yea, I judge not mine own self.
+
+4:4 For I know nothing by myself; yet am I not hereby justified: but
+he that judgeth me is the Lord.
+
+4:5 Therefore judge nothing before the time, until the Lord come, who
+both will bring to light the hidden things of darkness, and will make
+manifest the counsels of the hearts: and then shall every man have
+praise of God.
+
+4:6 And these things, brethren, I have in a figure transferred to
+myself and to Apollos for your sakes; that ye might learn in us not to
+think of men above that which is written, that no one of you be puffed
+up for one against another.
+
+4:7 For who maketh thee to differ from another? and what hast thou
+that thou didst not receive? now if thou didst receive it, why dost
+thou glory, as if thou hadst not received it? 4:8 Now ye are full,
+now ye are rich, ye have reigned as kings without us: and I would to
+God ye did reign, that we also might reign with you.
+
+4:9 For I think that God hath set forth us the apostles last, as it
+were appointed to death: for we are made a spectacle unto the world,
+and to angels, and to men.
+
+4:10 We are fools for Christ's sake, but ye are wise in Christ; we are
+weak, but ye are strong; ye are honourable, but we are despised.
+
+4:11 Even unto this present hour we both hunger, and thirst, and are
+naked, and are buffeted, and have no certain dwellingplace; 4:12 And
+labour, working with our own hands: being reviled, we bless; being
+persecuted, we suffer it: 4:13 Being defamed, we intreat: we are made
+as the filth of the world, and are the offscouring of all things unto
+this day.
+
+4:14 I write not these things to shame you, but as my beloved sons I
+warn you.
+
+4:15 For though ye have ten thousand instructers in Christ, yet have
+ye not many fathers: for in Christ Jesus I have begotten you through
+the gospel.
+
+4:16 Wherefore I beseech you, be ye followers of me.
+
+4:17 For this cause have I sent unto you Timotheus, who is my beloved
+son, and faithful in the Lord, who shall bring you into remembrance of
+my ways which be in Christ, as I teach every where in every church.
+
+4:18 Now some are puffed up, as though I would not come to you.
+
+4:19 But I will come to you shortly, if the Lord will, and will know,
+not the speech of them which are puffed up, but the power.
+
+4:20 For the kingdom of God is not in word, but in power.
+
+4:21 What will ye? shall I come unto you with a rod, or in love, and
+in the spirit of meekness? 5:1 It is reported commonly that there is
+fornication among you, and such fornication as is not so much as named
+among the Gentiles, that one should have his father's wife.
+
+5:2 And ye are puffed up, and have not rather mourned, that he that
+hath done this deed might be taken away from among you.
+
+5:3 For I verily, as absent in body, but present in spirit, have
+judged already, as though I were present, concerning him that hath so
+done this deed, 5:4 In the name of our Lord Jesus Christ, when ye are
+gathered together, and my spirit, with the power of our Lord Jesus
+Christ, 5:5 To deliver such an one unto Satan for the destruction of
+the flesh, that the spirit may be saved in the day of the Lord Jesus.
+
+5:6 Your glorying is not good. Know ye not that a little leaven
+leaveneth the whole lump? 5:7 Purge out therefore the old leaven,
+that ye may be a new lump, as ye are unleavened. For even Christ our
+passover is sacrificed for us: 5:8 Therefore let us keep the feast,
+not with old leaven, neither with the leaven of malice and wickedness;
+but with the unleavened bread of sincerity and truth.
+
+5:9 I wrote unto you in an epistle not to company with fornicators:
+5:10 Yet not altogether with the fornicators of this world, or with
+the covetous, or extortioners, or with idolaters; for then must ye
+needs go out of the world.
+
+5:11 But now I have written unto you not to keep company, if any man
+that is called a brother be a fornicator, or covetous, or an idolater,
+or a railer, or a drunkard, or an extortioner; with such an one no not
+to eat.
+
+5:12 For what have I to do to judge them also that are without? do not
+ye judge them that are within? 5:13 But them that are without God
+judgeth. Therefore put away from among yourselves that wicked person.
+
+6:1 Dare any of you, having a matter against another, go to law before
+the unjust, and not before the saints? 6:2 Do ye not know that the
+saints shall judge the world? and if the world shall be judged by you,
+are ye unworthy to judge the smallest matters? 6:3 Know ye not that
+we shall judge angels? how much more things that pertain to this life?
+6:4 If then ye have judgments of things pertaining to this life, set
+them to judge who are least esteemed in the church.
+
+6:5 I speak to your shame. Is it so, that there is not a wise man
+among you? no, not one that shall be able to judge between his
+brethren? 6:6 But brother goeth to law with brother, and that before
+the unbelievers.
+
+6:7 Now therefore there is utterly a fault among you, because ye go to
+law one with another. Why do ye not rather take wrong? why do ye not
+rather suffer yourselves to be defrauded? 6:8 Nay, ye do wrong, and
+defraud, and that your brethren.
+
+6:9 Know ye not that the unrighteous shall not inherit the kingdom of
+God? Be not deceived: neither fornicators, nor idolaters, nor
+adulterers, nor effeminate, nor abusers of themselves with mankind,
+6:10 Nor thieves, nor covetous, nor drunkards, nor revilers, nor
+extortioners, shall inherit the kingdom of God.
+
+6:11 And such were some of you: but ye are washed, but ye are
+sanctified, but ye are justified in the name of the Lord Jesus, and by
+the Spirit of our God.
+
+6:12 All things are lawful unto me, but all things are not expedient:
+all things are lawful for me, but I will not be brought under the
+power of any.
+
+6:13 Meats for the belly, and the belly for meats: but God shall
+destroy both it and them. Now the body is not for fornication, but for
+the Lord; and the Lord for the body.
+
+6:14 And God hath both raised up the Lord, and will also raise up us
+by his own power.
+
+6:15 Know ye not that your bodies are the members of Christ? shall I
+then take the members of Christ, and make them the members of an
+harlot? God forbid.
+
+6:16 What? know ye not that he which is joined to an harlot is one
+body? for two, saith he, shall be one flesh.
+
+6:17 But he that is joined unto the Lord is one spirit.
+
+6:18 Flee fornication. Every sin that a man doeth is without the body;
+but he that committeth fornication sinneth against his own body.
+
+6:19 What? know ye not that your body is the temple of the Holy Ghost
+which is in you, which ye have of God, and ye are not your own? 6:20
+For ye are bought with a price: therefore glorify God in your body,
+and in your spirit, which are God's.
+
+7:1 Now concerning the things whereof ye wrote unto me: It is good for
+a man not to touch a woman.
+
+7:2 Nevertheless, to avoid fornication, let every man have his own
+wife, and let every woman have her own husband.
+
+7:3 Let the husband render unto the wife due benevolence: and likewise
+also the wife unto the husband.
+
+7:4 The wife hath not power of her own body, but the husband: and
+likewise also the husband hath not power of his own body, but the
+wife.
+
+7:5 Defraud ye not one the other, except it be with consent for a
+time, that ye may give yourselves to fasting and prayer; and come
+together again, that Satan tempt you not for your incontinency.
+
+7:6 But I speak this by permission, and not of commandment.
+
+7:7 For I would that all men were even as I myself. But every man hath
+his proper gift of God, one after this manner, and another after that.
+
+7:8 I say therefore to the unmarried and widows, It is good for them
+if they abide even as I.
+
+7:9 But if they cannot contain, let them marry: for it is better to
+marry than to burn.
+
+7:10 And unto the married I command, yet not I, but the Lord, Let not
+the wife depart from her husband: 7:11 But and if she depart, let her
+remain unmarried or be reconciled to her husband: and let not the
+husband put away his wife.
+
+7:12 But to the rest speak I, not the Lord: If any brother hath a wife
+that believeth not, and she be pleased to dwell with him, let him not
+put her away.
+
+7:13 And the woman which hath an husband that believeth not, and if he
+be pleased to dwell with her, let her not leave him.
+
+7:14 For the unbelieving husband is sanctified by the wife, and the
+unbelieving wife is sanctified by the husband: else were your children
+unclean; but now are they holy.
+
+7:15 But if the unbelieving depart, let him depart. A brother or a
+sister is not under bondage in such cases: but God hath called us to
+peace.
+
+7:16 For what knowest thou, O wife, whether thou shalt save thy
+husband? or how knowest thou, O man, whether thou shalt save thy
+wife? 7:17 But as God hath distributed to every man, as the Lord hath
+called every one, so let him walk. And so ordain I in all churches.
+
+7:18 Is any man called being circumcised? let him not become
+uncircumcised. Is any called in uncircumcision? let him not be
+circumcised.
+
+7:19 Circumcision is nothing, and uncircumcision is nothing, but the
+keeping of the commandments of God.
+
+7:20 Let every man abide in the same calling wherein he was called.
+
+7:21 Art thou called being a servant? care not for it: but if thou
+mayest be made free, use it rather.
+
+7:22 For he that is called in the Lord, being a servant, is the Lord's
+freeman: likewise also he that is called, being free, is Christ's
+servant.
+
+7:23 Ye are bought with a price; be not ye the servants of men.
+
+7:24 Brethren, let every man, wherein he is called, therein abide with
+God.
+
+7:25 Now concerning virgins I have no commandment of the Lord: yet I
+give my judgment, as one that hath obtained mercy of the Lord to be
+faithful.
+
+7:26 I suppose therefore that this is good for the present distress, I
+say, that it is good for a man so to be.
+
+7:27 Art thou bound unto a wife? seek not to be loosed. Art thou
+loosed from a wife? seek not a wife.
+
+7:28 But and if thou marry, thou hast not sinned; and if a virgin
+marry, she hath not sinned. Nevertheless such shall have trouble in
+the flesh: but I spare you.
+
+7:29 But this I say, brethren, the time is short: it remaineth, that
+both they that have wives be as though they had none; 7:30 And they
+that weep, as though they wept not; and they that rejoice, as though
+they rejoiced not; and they that buy, as though they possessed not;
+7:31 And they that use this world, as not abusing it: for the fashion
+of this world passeth away.
+
+7:32 But I would have you without carefulness. He that is unmarried
+careth for the things that belong to the Lord, how he may please the
+Lord: 7:33 But he that is married careth for the things that are of
+the world, how he may please his wife.
+
+7:34 There is difference also between a wife and a virgin. The
+unmarried woman careth for the things of the Lord, that she may be
+holy both in body and in spirit: but she that is married careth for
+the things of the world, how she may please her husband.
+
+7:35 And this I speak for your own profit; not that I may cast a snare
+upon you, but for that which is comely, and that ye may attend upon
+the Lord without distraction.
+
+7:36 But if any man think that he behaveth himself uncomely toward his
+virgin, if she pass the flower of her age, and need so require, let
+him do what he will, he sinneth not: let them marry.
+
+7:37 Nevertheless he that standeth stedfast in his heart, having no
+necessity, but hath power over his own will, and hath so decreed in
+his heart that he will keep his virgin, doeth well.
+
+7:38 So then he that giveth her in marriage doeth well; but he that
+giveth her not in marriage doeth better.
+
+7:39 The wife is bound by the law as long as her husband liveth; but
+if her husband be dead, she is at liberty to be married to whom she
+will; only in the Lord.
+
+7:40 But she is happier if she so abide, after my judgment: and I
+think also that I have the Spirit of God.
+
+8:1 Now as touching things offered unto idols, we know that we all
+have knowledge. Knowledge puffeth up, but charity edifieth.
+
+8:2 And if any man think that he knoweth any thing, he knoweth nothing
+yet as he ought to know.
+
+8:3 But if any man love God, the same is known of him.
+
+8:4 As concerning therefore the eating of those things that are
+offered in sacrifice unto idols, we know that an idol is nothing in
+the world, and that there is none other God but one.
+
+8:5 For though there be that are called gods, whether in heaven or in
+earth, (as there be gods many, and lords many,) 8:6 But to us there is
+but one God, the Father, of whom are all things, and we in him; and
+one Lord Jesus Christ, by whom are all things, and we by him.
+
+8:7 Howbeit there is not in every man that knowledge: for some with
+conscience of the idol unto this hour eat it as a thing offered unto
+an idol; and their conscience being weak is defiled.
+
+8:8 But meat commendeth us not to God: for neither, if we eat, are we
+the better; neither, if we eat not, are we the worse.
+
+8:9 But take heed lest by any means this liberty of your's become a
+stumblingblock to them that are weak.
+
+8:10 For if any man see thee which hast knowledge sit at meat in the
+idol's temple, shall not the conscience of him which is weak be
+emboldened to eat those things which are offered to idols; 8:11 And
+through thy knowledge shall the weak brother perish, for whom Christ
+died? 8:12 But when ye sin so against the brethren, and wound their
+weak conscience, ye sin against Christ.
+
+8:13 Wherefore, if meat make my brother to offend, I will eat no flesh
+while the world standeth, lest I make my brother to offend.
+
+9:1 Am I not an apostle? am I not free? have I not seen Jesus Christ
+our Lord? are not ye my work in the Lord? 9:2 If I be not an apostle
+unto others, yet doubtless I am to you: for the seal of mine
+apostleship are ye in the Lord.
+
+9:3 Mine answer to them that do examine me is this, 9:4 Have we not
+power to eat and to drink? 9:5 Have we not power to lead about a
+sister, a wife, as well as other apostles, and as the brethren of the
+Lord, and Cephas? 9:6 Or I only and Barnabas, have not we power to
+forbear working? 9:7 Who goeth a warfare any time at his own charges?
+who planteth a vineyard, and eateth not of the fruit thereof? or who
+feedeth a flock, and eateth not of the milk of the flock? 9:8 Say I
+these things as a man? or saith not the law the same also? 9:9 For it
+is written in the law of Moses, Thou shalt not muzzle the mouth of the
+ox that treadeth out the corn. Doth God take care for oxen? 9:10 Or
+saith he it altogether for our sakes? For our sakes, no doubt, this is
+written: that he that ploweth should plow in hope; and that he that
+thresheth in hope should be partaker of his hope.
+
+9:11 If we have sown unto you spiritual things, is it a great thing if
+we shall reap your carnal things? 9:12 If others be partakers of this
+power over you, are not we rather? Nevertheless we have not used this
+power; but suffer all things, lest we should hinder the gospel of
+Christ.
+
+9:13 Do ye not know that they which minister about holy things live of
+the things of the temple? and they which wait at the altar are
+partakers with the altar? 9:14 Even so hath the Lord ordained that
+they which preach the gospel should live of the gospel.
+
+9:15 But I have used none of these things: neither have I written
+these things, that it should be so done unto me: for it were better
+for me to die, than that any man should make my glorying void.
+
+9:16 For though I preach the gospel, I have nothing to glory of: for
+necessity is laid upon me; yea, woe is unto me, if I preach not the
+gospel! 9:17 For if I do this thing willingly, I have a reward: but
+if against my will, a dispensation of the gospel is committed unto me.
+
+9:18 What is my reward then? Verily that, when I preach the gospel, I
+may make the gospel of Christ without charge, that I abuse not my
+power in the gospel.
+
+9:19 For though I be free from all men, yet have I made myself servant
+unto all, that I might gain the more.
+
+9:20 And unto the Jews I became as a Jew, that I might gain the Jews;
+to them that are under the law, as under the law, that I might gain
+them that are under the law; 9:21 To them that are without law, as
+without law, (being not without law to God, but under the law to
+Christ,) that I might gain them that are without law.
+
+9:22 To the weak became I as weak, that I might gain the weak: I am
+made all things to all men, that I might by all means save some.
+
+9:23 And this I do for the gospel's sake, that I might be partaker
+thereof with you.
+
+9:24 Know ye not that they which run in a race run all, but one
+receiveth the prize? So run, that ye may obtain.
+
+9:25 And every man that striveth for the mastery is temperate in all
+things. Now they do it to obtain a corruptible crown; but we an
+incorruptible.
+
+9:26 I therefore so run, not as uncertainly; so fight I, not as one
+that beateth the air: 9:27 But I keep under my body, and bring it into
+subjection: lest that by any means, when I have preached to others, I
+myself should be a castaway.
+
+10:1 Moreover, brethren, I would not that ye should be ignorant, how
+that all our fathers were under the cloud, and all passed through the
+sea; 10:2 And were all baptized unto Moses in the cloud and in the
+sea; 10:3 And did all eat the same spiritual meat; 10:4 And did all
+drink the same spiritual drink: for they drank of that spiritual Rock
+that followed them: and that Rock was Christ.
+
+10:5 But with many of them God was not well pleased: for they were
+overthrown in the wilderness.
+
+10:6 Now these things were our examples, to the intent we should not
+lust after evil things, as they also lusted.
+
+10:7 Neither be ye idolaters, as were some of them; as it is written,
+The people sat down to eat and drink, and rose up to play.
+
+10:8 Neither let us commit fornication, as some of them committed, and
+fell in one day three and twenty thousand.
+
+10:9 Neither let us tempt Christ, as some of them also tempted, and
+were destroyed of serpents.
+
+10:10 Neither murmur ye, as some of them also murmured, and were
+destroyed of the destroyer.
+
+10:11 Now all these things happened unto them for ensamples: and they
+are written for our admonition, upon whom the ends of the world are
+come.
+
+10:12 Wherefore let him that thinketh he standeth take heed lest he
+fall.
+
+10:13 There hath no temptation taken you but such as is common to man:
+but God is faithful, who will not suffer you to be tempted above that
+ye are able; but will with the temptation also make a way to escape,
+that ye may be able to bear it.
+
+10:14 Wherefore, my dearly beloved, flee from idolatry.
+
+10:15 I speak as to wise men; judge ye what I say.
+
+10:16 The cup of blessing which we bless, is it not the communion of
+the blood of Christ? The bread which we break, is it not the communion
+of the body of Christ? 10:17 For we being many are one bread, and one
+body: for we are all partakers of that one bread.
+
+10:18 Behold Israel after the flesh: are not they which eat of the
+sacrifices partakers of the altar? 10:19 What say I then? that the
+idol is any thing, or that which is offered in sacrifice to idols is
+any thing? 10:20 But I say, that the things which the Gentiles
+sacrifice, they sacrifice to devils, and not to God: and I would not
+that ye should have fellowship with devils.
+
+10:21 Ye cannot drink the cup of the Lord, and the cup of devils: ye
+cannot be partakers of the Lord's table, and of the table of devils.
+
+10:22 Do we provoke the Lord to jealousy? are we stronger than he?
+10:23 All things are lawful for me, but all things are not expedient:
+all things are lawful for me, but all things edify not.
+
+10:24 Let no man seek his own, but every man another's wealth.
+
+10:25 Whatsoever is sold in the shambles, that eat, asking no question
+for conscience sake: 10:26 For the earth is the Lord's, and the
+fulness thereof.
+
+10:27 If any of them that believe not bid you to a feast, and ye be
+disposed to go; whatsoever is set before you, eat, asking no question
+for conscience sake.
+
+10:28 But if any man say unto you, This is offered in sacrifice unto
+idols, eat not for his sake that shewed it, and for conscience sake:
+for the earth is the Lord's, and the fulness thereof: 10:29
+Conscience, I say, not thine own, but of the other: for why is my
+liberty judged of another man's conscience? 10:30 For if I by grace
+be a partaker, why am I evil spoken of for that for which I give
+thanks? 10:31 Whether therefore ye eat, or drink, or whatsoever ye
+do, do all to the glory of God.
+
+10:32 Give none offence, neither to the Jews, nor to the Gentiles, nor
+to the church of God: 10:33 Even as I please all men in all things,
+not seeking mine own profit, but the profit of many, that they may be
+saved.
+
+11:1 Be ye followers of me, even as I also am of Christ.
+
+11:2 Now I praise you, brethren, that ye remember me in all things,
+and keep the ordinances, as I delivered them to you.
+
+11:3 But I would have you know, that the head of every man is Christ;
+and the head of the woman is the man; and the head of Christ is God.
+
+11:4 Every man praying or prophesying, having his head covered,
+dishonoureth his head.
+
+11:5 But every woman that prayeth or prophesieth with her head
+uncovered dishonoureth her head: for that is even all one as if she
+were shaven.
+
+11:6 For if the woman be not covered, let her also be shorn: but if it
+be a shame for a woman to be shorn or shaven, let her be covered.
+
+11:7 For a man indeed ought not to cover his head, forasmuch as he is
+the image and glory of God: but the woman is the glory of the man.
+
+11:8 For the man is not of the woman: but the woman of the man.
+
+11:9 Neither was the man created for the woman; but the woman for the
+man.
+
+11:10 For this cause ought the woman to have power on her head because
+of the angels.
+
+11:11 Nevertheless neither is the man without the woman, neither the
+woman without the man, in the Lord.
+
+11:12 For as the woman is of the man, even so is the man also by the
+woman; but all things of God.
+
+11:13 Judge in yourselves: is it comely that a woman pray unto God
+uncovered? 11:14 Doth not even nature itself teach you, that, if a
+man have long hair, it is a shame unto him? 11:15 But if a woman have
+long hair, it is a glory to her: for her hair is given her for a
+covering.
+
+11:16 But if any man seem to be contentious, we have no such custom,
+neither the churches of God.
+
+11:17 Now in this that I declare unto you I praise you not, that ye
+come together not for the better, but for the worse.
+
+11:18 For first of all, when ye come together in the church, I hear
+that there be divisions among you; and I partly believe it.
+
+11:19 For there must be also heresies among you, that they which are
+approved may be made manifest among you.
+
+11:20 When ye come together therefore into one place, this is not to
+eat the Lord's supper.
+
+11:21 For in eating every one taketh before other his own supper: and
+one is hungry, and another is drunken.
+
+11:22 What? have ye not houses to eat and to drink in? or despise ye
+the church of God, and shame them that have not? What shall I say to
+you? shall I praise you in this? I praise you not.
+
+11:23 For I have received of the Lord that which also I delivered unto
+you, That the Lord Jesus the same night in which he was betrayed took
+bread: 11:24 And when he had given thanks, he brake it, and said,
+Take, eat: this is my body, which is broken for you: this do in
+remembrance of me.
+
+11:25 After the same manner also he took the cup, when he had supped,
+saying, This cup is the new testament in my blood: this do ye, as oft
+as ye drink it, in remembrance of me.
+
+11:26 For as often as ye eat this bread, and drink this cup, ye do
+shew the Lord's death till he come.
+
+11:27 Wherefore whosoever shall eat this bread, and drink this cup of
+the Lord, unworthily, shall be guilty of the body and blood of the
+Lord.
+
+11:28 But let a man examine himself, and so let him eat of that bread,
+and drink of that cup.
+
+11:29 For he that eateth and drinketh unworthily, eateth and drinketh
+damnation to himself, not discerning the Lord's body.
+
+11:30 For this cause many are weak and sickly among you, and many
+sleep.
+
+11:31 For if we would judge ourselves, we should not be judged.
+
+11:32 But when we are judged, we are chastened of the Lord, that we
+should not be condemned with the world.
+
+11:33 Wherefore, my brethren, when ye come together to eat, tarry one
+for another.
+
+11:34 And if any man hunger, let him eat at home; that ye come not
+together unto condemnation. And the rest will I set in order when I
+come.
+
+12:1 Now concerning spiritual gifts, brethren, I would not have you
+ignorant.
+
+12:2 Ye know that ye were Gentiles, carried away unto these dumb
+idols, even as ye were led.
+
+12:3 Wherefore I give you to understand, that no man speaking by the
+Spirit of God calleth Jesus accursed: and that no man can say that
+Jesus is the Lord, but by the Holy Ghost.
+
+12:4 Now there are diversities of gifts, but the same Spirit.
+
+12:5 And there are differences of administrations, but the same Lord.
+
+12:6 And there are diversities of operations, but it is the same God
+which worketh all in all.
+
+12:7 But the manifestation of the Spirit is given to every man to
+profit withal.
+
+12:8 For to one is given by the Spirit the word of wisdom; to another
+the word of knowledge by the same Spirit; 12:9 To another faith by the
+same Spirit; to another the gifts of healing by the same Spirit; 12:10
+To another the working of miracles; to another prophecy; to another
+discerning of spirits; to another divers kinds of tongues; to another
+the interpretation of tongues: 12:11 But all these worketh that one
+and the selfsame Spirit, dividing to every man severally as he will.
+
+12:12 For as the body is one, and hath many members, and all the
+members of that one body, being many, are one body: so also is Christ.
+
+12:13 For by one Spirit are we all baptized into one body, whether we
+be Jews or Gentiles, whether we be bond or free; and have been all
+made to drink into one Spirit.
+
+12:14 For the body is not one member, but many.
+
+12:15 If the foot shall say, Because I am not the hand, I am not of
+the body; is it therefore not of the body? 12:16 And if the ear shall
+say, Because I am not the eye, I am not of the body; is it therefore
+not of the body? 12:17 If the whole body were an eye, where were the
+hearing? If the whole were hearing, where were the smelling? 12:18
+But now hath God set the members every one of them in the body, as it
+hath pleased him.
+
+12:19 And if they were all one member, where were the body? 12:20 But
+now are they many members, yet but one body.
+
+12:21 And the eye cannot say unto the hand, I have no need of thee:
+nor again the head to the feet, I have no need of you.
+
+12:22 Nay, much more those members of the body, which seem to be more
+feeble, are necessary: 12:23 And those members of the body, which we
+think to be less honourable, upon these we bestow more abundant
+honour; and our uncomely parts have more abundant comeliness.
+
+12:24 For our comely parts have no need: but God hath tempered the
+body together, having given more abundant honour to that part which
+lacked.
+
+12:25 That there should be no schism in the body; but that the members
+should have the same care one for another.
+
+12:26 And whether one member suffer, all the members suffer with it;
+or one member be honoured, all the members rejoice with it.
+
+12:27 Now ye are the body of Christ, and members in particular.
+
+12:28 And God hath set some in the church, first apostles, secondarily
+prophets, thirdly teachers, after that miracles, then gifts of
+healings, helps, governments, diversities of tongues.
+
+12:29 Are all apostles? are all prophets? are all teachers? are all
+workers of miracles? 12:30 Have all the gifts of healing? do all
+speak with tongues? do all interpret? 12:31 But covet earnestly the
+best gifts: and yet shew I unto you a more excellent way.
+
+13:1 Though I speak with the tongues of men and of angels, and have
+not charity, I am become as sounding brass, or a tinkling cymbal.
+
+13:2 And though I have the gift of prophecy, and understand all
+mysteries, and all knowledge; and though I have all faith, so that I
+could remove mountains, and have not charity, I am nothing.
+
+13:3 And though I bestow all my goods to feed the poor, and though I
+give my body to be burned, and have not charity, it profiteth me
+nothing.
+
+13:4 Charity suffereth long, and is kind; charity envieth not; charity
+vaunteth not itself, is not puffed up, 13:5 Doth not behave itself
+unseemly, seeketh not her own, is not easily provoked, thinketh no
+evil; 13:6 Rejoiceth not in iniquity, but rejoiceth in the truth; 13:7
+Beareth all things, believeth all things, hopeth all things, endureth
+all things.
+
+13:8 Charity never faileth: but whether there be prophecies, they
+shall fail; whether there be tongues, they shall cease; whether there
+be knowledge, it shall vanish away.
+
+13:9 For we know in part, and we prophesy in part.
+
+13:10 But when that which is perfect is come, then that which is in
+part shall be done away.
+
+13:11 When I was a child, I spake as a child, I understood as a child,
+I thought as a child: but when I became a man, I put away childish
+things.
+
+13:12 For now we see through a glass, darkly; but then face to face:
+now I know in part; but then shall I know even as also I am known.
+
+13:13 And now abideth faith, hope, charity, these three; but the
+greatest of these is charity.
+
+14:1 Follow after charity, and desire spiritual gifts, but rather that
+ye may prophesy.
+
+14:2 For he that speaketh in an unknown tongue speaketh not unto men,
+but unto God: for no man understandeth him; howbeit in the spirit he
+speaketh mysteries.
+
+14:3 But he that prophesieth speaketh unto men to edification, and
+exhortation, and comfort.
+
+14:4 He that speaketh in an unknown tongue edifieth himself; but he
+that prophesieth edifieth the church.
+
+14:5 I would that ye all spake with tongues but rather that ye
+prophesied: for greater is he that prophesieth than he that speaketh
+with tongues, except he interpret, that the church may receive
+edifying.
+
+14:6 Now, brethren, if I come unto you speaking with tongues, what
+shall I profit you, except I shall speak to you either by revelation,
+or by knowledge, or by prophesying, or by doctrine? 14:7 And even
+things without life giving sound, whether pipe or harp, except they
+give a distinction in the sounds, how shall it be known what is piped
+or harped? 14:8 For if the trumpet give an uncertain sound, who shall
+prepare himself to the battle? 14:9 So likewise ye, except ye utter
+by the tongue words easy to be understood, how shall it be known what
+is spoken? for ye shall speak into the air.
+
+14:10 There are, it may be, so many kinds of voices in the world, and
+none of them is without signification.
+
+14:11 Therefore if I know not the meaning of the voice, I shall be
+unto him that speaketh a barbarian, and he that speaketh shall be a
+barbarian unto me.
+
+14:12 Even so ye, forasmuch as ye are zealous of spiritual gifts, seek
+that ye may excel to the edifying of the church.
+
+14:13 Wherefore let him that speaketh in an unknown tongue pray that
+he may interpret.
+
+14:14 For if I pray in an unknown tongue, my spirit prayeth, but my
+understanding is unfruitful.
+
+14:15 What is it then? I will pray with the spirit, and I will pray
+with the understanding also: I will sing with the spirit, and I will
+sing with the understanding also.
+
+14:16 Else when thou shalt bless with the spirit, how shall he that
+occupieth the room of the unlearned say Amen at thy giving of thanks,
+seeing he understandeth not what thou sayest? 14:17 For thou verily
+givest thanks well, but the other is not edified.
+
+14:18 I thank my God, I speak with tongues more than ye all: 14:19 Yet
+in the church I had rather speak five words with my understanding,
+that by my voice I might teach others also, than ten thousand words in
+an unknown tongue.
+
+14:20 Brethren, be not children in understanding: howbeit in malice be
+ye children, but in understanding be men.
+
+14:21 In the law it is written, With men of other tongues and other
+lips will I speak unto this people; and yet for all that will they not
+hear me, saith the LORD.
+
+14:22 Wherefore tongues are for a sign, not to them that believe, but
+to them that believe not: but prophesying serveth not for them that
+believe not, but for them which believe.
+
+14:23 If therefore the whole church be come together into one place,
+and all speak with tongues, and there come in those that are
+unlearned, or unbelievers, will they not say that ye are mad? 14:24
+But if all prophesy, and there come in one that believeth not, or one
+unlearned, he is convinced of all, he is judged of all: 14:25 And thus
+are the secrets of his heart made manifest; and so falling down on his
+face he will worship God, and report that God is in you of a truth.
+
+14:26 How is it then, brethren? when ye come together, every one of
+you hath a psalm, hath a doctrine, hath a tongue, hath a revelation,
+hath an interpretation. Let all things be done unto edifying.
+
+14:27 If any man speak in an unknown tongue, let it be by two, or at
+the most by three, and that by course; and let one interpret.
+
+14:28 But if there be no interpreter, let him keep silence in the
+church; and let him speak to himself, and to God.
+
+14:29 Let the prophets speak two or three, and let the other judge.
+
+14:30 If any thing be revealed to another that sitteth by, let the
+first hold his peace.
+
+14:31 For ye may all prophesy one by one, that all may learn, and all
+may be comforted.
+
+14:32 And the spirits of the prophets are subject to the prophets.
+
+14:33 For God is not the author of confusion, but of peace, as in all
+churches of the saints.
+
+14:34 Let your women keep silence in the churches: for it is not
+permitted unto them to speak; but they are commanded to be under
+obedience as also saith the law.
+
+14:35 And if they will learn any thing, let them ask their husbands at
+home: for it is a shame for women to speak in the church.
+
+14:36 What? came the word of God out from you? or came it unto you
+only? 14:37 If any man think himself to be a prophet, or spiritual,
+let him acknowledge that the things that I write unto you are the
+commandments of the Lord.
+
+14:38 But if any man be ignorant, let him be ignorant.
+
+14:39 Wherefore, brethren, covet to prophesy, and forbid not to speak
+with tongues.
+
+14:40 Let all things be done decently and in order.
+
+15:1 Moreover, brethren, I declare unto you the gospel which I
+preached unto you, which also ye have received, and wherein ye stand;
+15:2 By which also ye are saved, if ye keep in memory what I preached
+unto you, unless ye have believed in vain.
+
+15:3 For I delivered unto you first of all that which I also received,
+how that Christ died for our sins according to the scriptures; 15:4
+And that he was buried, and that he rose again the third day according
+to the scriptures: 15:5 And that he was seen of Cephas, then of the
+twelve: 15:6 After that, he was seen of above five hundred brethren at
+once; of whom the greater part remain unto this present, but some are
+fallen asleep.
+
+15:7 After that, he was seen of James; then of all the apostles.
+
+15:8 And last of all he was seen of me also, as of one born out of due
+time.
+
+15:9 For I am the least of the apostles, that am not meet to be called
+an apostle, because I persecuted the church of God.
+
+15:10 But by the grace of God I am what I am: and his grace which was
+bestowed upon me was not in vain; but I laboured more abundantly than
+they all: yet not I, but the grace of God which was with me.
+
+15:11 Therefore whether it were I or they, so we preach, and so ye
+believed.
+
+15:12 Now if Christ be preached that he rose from the dead, how say
+some among you that there is no resurrection of the dead? 15:13 But
+if there be no resurrection of the dead, then is Christ not risen:
+15:14 And if Christ be not risen, then is our preaching vain, and your
+faith is also vain.
+
+15:15 Yea, and we are found false witnesses of God; because we have
+testified of God that he raised up Christ: whom he raised not up, if
+so be that the dead rise not.
+
+15:16 For if the dead rise not, then is not Christ raised: 15:17 And
+if Christ be not raised, your faith is vain; ye are yet in your sins.
+
+15:18 Then they also which are fallen asleep in Christ are perished.
+
+15:19 If in this life only we have hope in Christ, we are of all men
+most miserable.
+
+15:20 But now is Christ risen from the dead, and become the
+firstfruits of them that slept.
+
+15:21 For since by man came death, by man came also the resurrection
+of the dead.
+
+15:22 For as in Adam all die, even so in Christ shall all be made
+alive.
+
+15:23 But every man in his own order: Christ the firstfruits;
+afterward they that are Christ's at his coming.
+
+15:24 Then cometh the end, when he shall have delivered up the kingdom
+to God, even the Father; when he shall have put down all rule and all
+authority and power.
+
+15:25 For he must reign, till he hath put all enemies under his feet.
+
+15:26 The last enemy that shall be destroyed is death.
+
+15:27 For he hath put all things under his feet. But when he saith all
+things are put under him, it is manifest that he is excepted, which
+did put all things under him.
+
+15:28 And when all things shall be subdued unto him, then shall the
+Son also himself be subject unto him that put all things under him,
+that God may be all in all.
+
+15:29 Else what shall they do which are baptized for the dead, if the
+dead rise not at all? why are they then baptized for the dead? 15:30
+And why stand we in jeopardy every hour? 15:31 I protest by your
+rejoicing which I have in Christ Jesus our LORD, I die daily.
+
+15:32 If after the manner of men I have fought with beasts at Ephesus,
+what advantageth it me, if the dead rise not? let us eat and drink;
+for to morrow we die.
+
+15:33 Be not deceived: evil communications corrupt good manners.
+
+15:34 Awake to righteousness, and sin not; for some have not the
+knowledge of God: I speak this to your shame.
+
+15:35 But some man will say, How are the dead raised up? and with what
+body do they come? 15:36 Thou fool, that which thou sowest is not
+quickened, except it die: 15:37 And that which thou sowest, thou
+sowest not that body that shall be, but bare grain, it may chance of
+wheat, or of some other grain: 15:38 But God giveth it a body as it
+hath pleased him, and to every seed his own body.
+
+15:39 All flesh is not the same flesh: but there is one kind of flesh
+of men, another flesh of beasts, another of fishes, and another of
+birds.
+
+15:40 There are also celestial bodies, and bodies terrestrial: but the
+glory of the celestial is one, and the glory of the terrestrial is
+another.
+
+15:41 There is one glory of the sun, and another glory of the moon,
+and another glory of the stars: for one star differeth from another
+star in glory.
+
+15:42 So also is the resurrection of the dead. It is sown in
+corruption; it is raised in incorruption: 15:43 It is sown in
+dishonour; it is raised in glory: it is sown in weakness; it is raised
+in power: 15:44 It is sown a natural body; it is raised a spiritual
+body. There is a natural body, and there is a spiritual body.
+
+15:45 And so it is written, The first man Adam was made a living soul;
+the last Adam was made a quickening spirit.
+
+15:46 Howbeit that was not first which is spiritual, but that which is
+natural; and afterward that which is spiritual.
+
+15:47 The first man is of the earth, earthy; the second man is the
+Lord from heaven.
+
+15:48 As is the earthy, such are they also that are earthy: and as is
+the heavenly, such are they also that are heavenly.
+
+15:49 And as we have borne the image of the earthy, we shall also bear
+the image of the heavenly.
+
+15:50 Now this I say, brethren, that flesh and blood cannot inherit
+the kingdom of God; neither doth corruption inherit incorruption.
+
+15:51 Behold, I shew you a mystery; We shall not all sleep, but we
+shall all be changed, 15:52 In a moment, in the twinkling of an eye,
+at the last trump: for the trumpet shall sound, and the dead shall be
+raised incorruptible, and we shall be changed.
+
+15:53 For this corruptible must put on incorruption, and this mortal
+must put on immortality.
+
+15:54 So when this corruptible shall have put on incorruption, and
+this mortal shall have put on immortality, then shall be brought to
+pass the saying that is written, Death is swallowed up in victory.
+
+15:55 O death, where is thy sting? O grave, where is thy victory?
+15:56 The sting of death is sin; and the strength of sin is the law.
+
+15:57 But thanks be to God, which giveth us the victory through our
+Lord Jesus Christ.
+
+15:58 Therefore, my beloved brethren, be ye stedfast, unmoveable,
+always abounding in the work of the Lord, forasmuch as ye know that
+your labour is not in vain in the Lord.
+
+16:1 Now concerning the collection for the saints, as I have given
+order to the churches of Galatia, even so do ye.
+
+16:2 Upon the first day of the week let every one of you lay by him in
+store, as God hath prospered him, that there be no gatherings when I
+come.
+
+16:3 And when I come, whomsoever ye shall approve by your letters,
+them will I send to bring your liberality unto Jerusalem.
+
+16:4 And if it be meet that I go also, they shall go with me.
+
+16:5 Now I will come unto you, when I shall pass through Macedonia:
+for I do pass through Macedonia.
+
+16:6 And it may be that I will abide, yea, and winter with you, that
+ye may bring me on my journey whithersoever I go.
+
+16:7 For I will not see you now by the way; but I trust to tarry a
+while with you, if the Lord permit.
+
+16:8 But I will tarry at Ephesus until Pentecost.
+
+16:9 For a great door and effectual is opened unto me, and there are
+many adversaries.
+
+16:10 Now if Timotheus come, see that he may be with you without fear:
+for he worketh the work of the Lord, as I also do.
+
+16:11 Let no man therefore despise him: but conduct him forth in
+peace, that he may come unto me: for I look for him with the brethren.
+
+16:12 As touching our brother Apollos, I greatly desired him to come
+unto you with the brethren: but his will was not at all to come at
+this time; but he will come when he shall have convenient time.
+
+16:13 Watch ye, stand fast in the faith, quit you like men, be strong.
+
+16:14 Let all your things be done with charity.
+
+16:15 I beseech you, brethren, (ye know the house of Stephanas, that
+it is the firstfruits of Achaia, and that they have addicted
+themselves to the ministry of the saints,) 16:16 That ye submit
+yourselves unto such, and to every one that helpeth with us, and
+laboureth.
+
+16:17 I am glad of the coming of Stephanas and Fortunatus and
+Achaicus: for that which was lacking on your part they have supplied.
+
+16:18 For they have refreshed my spirit and your's: therefore
+acknowledge ye them that are such.
+
+16:19 The churches of Asia salute you. Aquila and Priscilla salute you
+much in the Lord, with the church that is in their house.
+
+16:20 All the brethren greet you. Greet ye one another with
+an holy kiss.
+
+16:21 The salutation of me Paul with mine own hand.
+
+16:22 If any man love not the Lord Jesus Christ, let him be
+Anathema Maranatha.
+
+16:23 The grace of our Lord Jesus Christ be with you.
+
+16:24 My love be with you all in Christ Jesus. Amen.
+
+
+
+
+The Second Epistle of Paul the Apostle to the Corinthians
+
+
+1:1 Paul, an apostle of Jesus Christ by the will of God, and Timothy
+our brother, unto the church of God which is at Corinth, with all the
+saints which are in all Achaia: 1:2 Grace be to you and peace from God
+our Father, and from the Lord Jesus Christ.
+
+1:3 Blessed be God, even the Father of our Lord Jesus Christ, the
+Father of mercies, and the God of all comfort; 1:4 Who comforteth us
+in all our tribulation, that we may be able to comfort them which are
+in any trouble, by the comfort wherewith we ourselves are comforted of
+God.
+
+1:5 For as the sufferings of Christ abound in us, so our consolation
+also aboundeth by Christ.
+
+1:6 And whether we be afflicted, it is for your consolation and
+salvation, which is effectual in the enduring of the same sufferings
+which we also suffer: or whether we be comforted, it is for your
+consolation and salvation.
+
+1:7 And our hope of you is stedfast, knowing, that as ye are partakers
+of the sufferings, so shall ye be also of the consolation.
+
+1:8 For we would not, brethren, have you ignorant of our trouble which
+came to us in Asia, that we were pressed out of measure, above
+strength, insomuch that we despaired even of life: 1:9 But we had the
+sentence of death in ourselves, that we should not trust in ourselves,
+but in God which raiseth the dead: 1:10 Who delivered us from so great
+a death, and doth deliver: in whom we trust that he will yet deliver
+us; 1:11 Ye also helping together by prayer for us, that for the gift
+bestowed upon us by the means of many persons thanks may be given by
+many on our behalf.
+
+1:12 For our rejoicing is this, the testimony of our conscience, that
+in simplicity and godly sincerity, not with fleshly wisdom, but by the
+grace of God, we have had our conversation in the world, and more
+abundantly to you-ward.
+
+1:13 For we write none other things unto you, than what ye read or
+acknowledge; and I trust ye shall acknowledge even to the end; 1:14 As
+also ye have acknowledged us in part, that we are your rejoicing, even
+as ye also are our's in the day of the Lord Jesus.
+
+1:15 And in this confidence I was minded to come unto you before, that
+ye might have a second benefit; 1:16 And to pass by you into
+Macedonia, and to come again out of Macedonia unto you, and of you to
+be brought on my way toward Judaea.
+
+1:17 When I therefore was thus minded, did I use lightness? or the
+things that I purpose, do I purpose according to the flesh, that with
+me there should be yea yea, and nay nay? 1:18 But as God is true, our
+word toward you was not yea and nay.
+
+1:19 For the Son of God, Jesus Christ, who was preached among you by
+us, even by me and Silvanus and Timotheus, was not yea and nay, but in
+him was yea.
+
+1:20 For all the promises of God in him are yea, and in him Amen, unto
+the glory of God by us.
+
+1:21 Now he which stablisheth us with you in Christ, and hath anointed
+us, is God; 1:22 Who hath also sealed us, and given the earnest of the
+Spirit in our hearts.
+
+1:23 Moreover I call God for a record upon my soul, that to spare you
+I came not as yet unto Corinth.
+
+1:24 Not for that we have dominion over your faith, but are helpers of
+your joy: for by faith ye stand.
+
+2:1 But I determined this with myself, that I would not come again to
+you in heaviness.
+
+2:2 For if I make you sorry, who is he then that maketh me glad, but
+the same which is made sorry by me? 2:3 And I wrote this same unto
+you, lest, when I came, I should have sorrow from them of whom I ought
+to rejoice; having confidence in you all, that my joy is the joy of
+you all.
+
+2:4 For out of much affliction and anguish of heart I wrote unto you
+with many tears; not that ye should be grieved, but that ye might know
+the love which I have more abundantly unto you.
+
+2:5 But if any have caused grief, he hath not grieved me, but in part:
+that I may not overcharge you all.
+
+2:6 Sufficient to such a man is this punishment, which was inflicted
+of many.
+
+2:7 So that contrariwise ye ought rather to forgive him, and comfort
+him, lest perhaps such a one should be swallowed up with overmuch
+sorrow.
+
+2:8 Wherefore I beseech you that ye would confirm your love toward
+him.
+
+2:9 For to this end also did I write, that I might know the proof of
+you, whether ye be obedient in all things.
+
+2:10 To whom ye forgive any thing, I forgive also: for if I forgave
+any thing, to whom I forgave it, for your sakes forgave I it in the
+person of Christ; 2:11 Lest Satan should get an advantage of us: for
+we are not ignorant of his devices.
+
+2:12 Furthermore, when I came to Troas to preach Christ's gospel, and
+a door was opened unto me of the Lord, 2:13 I had no rest in my
+spirit, because I found not Titus my brother: but taking my leave of
+them, I went from thence into Macedonia.
+
+2:14 Now thanks be unto God, which always causeth us to triumph in
+Christ, and maketh manifest the savour of his knowledge by us in every
+place.
+
+2:15 For we are unto God a sweet savour of Christ, in them that are
+saved, and in them that perish: 2:16 To the one we are the savour of
+death unto death; and to the other the savour of life unto life. And
+who is sufficient for these things? 2:17 For we are not as many,
+which corrupt the word of God: but as of sincerity, but as of God, in
+the sight of God speak we in Christ.
+
+3:1 Do we begin again to commend ourselves? or need we, as some
+others, epistles of commendation to you, or letters of commendation
+from you? 3:2 Ye are our epistle written in our hearts, known and
+read of all men: 3:3 Forasmuch as ye are manifestly declared to be the
+epistle of Christ ministered by us, written not with ink, but with the
+Spirit of the living God; not in tables of stone, but in fleshy tables
+of the heart.
+
+3:4 And such trust have we through Christ to God-ward: 3:5 Not that we
+are sufficient of ourselves to think any thing as of ourselves; but
+our sufficiency is of God; 3:6 Who also hath made us able ministers of
+the new testament; not of the letter, but of the spirit: for the
+letter killeth, but the spirit giveth life.
+
+3:7 But if the ministration of death, written and engraven in stones,
+was glorious, so that the children of Israel could not stedfastly
+behold the face of Moses for the glory of his countenance; which glory
+was to be done away: 3:8 How shall not the ministration of the spirit
+be rather glorious? 3:9 For if the ministration of condemnation be
+glory, much more doth the ministration of righteousness exceed in
+glory.
+
+3:10 For even that which was made glorious had no glory in this
+respect, by reason of the glory that excelleth.
+
+3:11 For if that which is done away was glorious, much more that which
+remaineth is glorious.
+
+3:12 Seeing then that we have such hope, we use great plainness of
+speech: 3:13 And not as Moses, which put a vail over his face, that
+the children of Israel could not stedfastly look to the end of that
+which is abolished: 3:14 But their minds were blinded: for until this
+day remaineth the same vail untaken away in the reading of the old
+testament; which vail is done away in Christ.
+
+3:15 But even unto this day, when Moses is read, the vail is upon
+their heart.
+
+3:16 Nevertheless when it shall turn to the Lord, the vail shall be
+taken away.
+
+3:17 Now the Lord is that Spirit: and where the Spirit of the Lord is,
+there is liberty.
+
+3:18 But we all, with open face beholding as in a glass the glory of
+the Lord, are changed into the same image from glory to glory, even as
+by the Spirit of the LORD.
+
+4:1 Therefore seeing we have this ministry, as we have received mercy,
+we faint not; 4:2 But have renounced the hidden things of dishonesty,
+not walking in craftiness, nor handling the word of God deceitfully;
+but by manifestation of the truth commending ourselves to every man's
+conscience in the sight of God.
+
+4:3 But if our gospel be hid, it is hid to them that are lost: 4:4 In
+whom the god of this world hath blinded the minds of them which
+believe not, lest the light of the glorious gospel of Christ, who is
+the image of God, should shine unto them.
+
+4:5 For we preach not ourselves, but Christ Jesus the Lord; and
+ourselves your servants for Jesus' sake.
+
+4:6 For God, who commanded the light to shine out of darkness, hath
+shined in our hearts, to give the light of the knowledge of the glory
+of God in the face of Jesus Christ.
+
+4:7 But we have this treasure in earthen vessels, that the excellency
+of the power may be of God, and not of us.
+
+4:8 We are troubled on every side, yet not distressed; we are
+perplexed, but not in despair; 4:9 Persecuted, but not forsaken; cast
+down, but not destroyed; 4:10 Always bearing about in the body the
+dying of the Lord Jesus, that the life also of Jesus might be made
+manifest in our body.
+
+4:11 For we which live are alway delivered unto death for Jesus' sake,
+that the life also of Jesus might be made manifest in our mortal
+flesh.
+
+4:12 So then death worketh in us, but life in you.
+
+4:13 We having the same spirit of faith, according as it is written, I
+believed, and therefore have I spoken; we also believe, and therefore
+speak; 4:14 Knowing that he which raised up the Lord Jesus shall raise
+up us also by Jesus, and shall present us with you.
+
+4:15 For all things are for your sakes, that the abundant grace might
+through the thanksgiving of many redound to the glory of God.
+
+4:16 For which cause we faint not; but though our outward man perish,
+yet the inward man is renewed day by day.
+
+4:17 For our light affliction, which is but for a moment, worketh for
+us a far more exceeding and eternal weight of glory; 4:18 While we
+look not at the things which are seen, but at the things which are not
+seen: for the things which are seen are temporal; but the things which
+are not seen are eternal.
+
+5:1 For we know that if our earthly house of this tabernacle were
+dissolved, we have a building of God, an house not made with hands,
+eternal in the heavens.
+
+5:2 For in this we groan, earnestly desiring to be clothed upon with
+our house which is from heaven: 5:3 If so be that being clothed we
+shall not be found naked.
+
+5:4 For we that are in this tabernacle do groan, being burdened: not
+for that we would be unclothed, but clothed upon, that mortality might
+be swallowed up of life.
+
+5:5 Now he that hath wrought us for the selfsame thing is God, who
+also hath given unto us the earnest of the Spirit.
+
+5:6 Therefore we are always confident, knowing that, whilst we are at
+home in the body, we are absent from the Lord: 5:7 (For we walk by
+faith, not by sight:) 5:8 We are confident, I say, and willing rather
+to be absent from the body, and to be present with the Lord.
+
+5:9 Wherefore we labour, that, whether present or absent, we may be
+accepted of him.
+
+5:10 For we must all appear before the judgment seat of Christ; that
+every one may receive the things done in his body, according to that
+he hath done, whether it be good or bad.
+
+5:11 Knowing therefore the terror of the Lord, we persuade men; but we
+are made manifest unto God; and I trust also are made manifest in your
+consciences.
+
+5:12 For we commend not ourselves again unto you, but give you
+occasion to glory on our behalf, that ye may have somewhat to answer
+them which glory in appearance, and not in heart.
+
+5:13 For whether we be beside ourselves, it is to God: or whether we
+be sober, it is for your cause.
+
+5:14 For the love of Christ constraineth us; because we thus judge,
+that if one died for all, then were all dead: 5:15 And that he died
+for all, that they which live should not henceforth live unto
+themselves, but unto him which died for them, and rose again.
+
+5:16 Wherefore henceforth know we no man after the flesh: yea, though
+we have known Christ after the flesh, yet now henceforth know we him
+no more.
+
+5:17 Therefore if any man be in Christ, he is a new creature: old
+things are passed away; behold, all things are become new.
+
+5:18 And all things are of God, who hath reconciled us to himself by
+Jesus Christ, and hath given to us the ministry of reconciliation;
+5:19 To wit, that God was in Christ, reconciling the world unto
+himself, not imputing their trespasses unto them; and hath committed
+unto us the word of reconciliation.
+
+5:20 Now then we are ambassadors for Christ, as though God did beseech
+you by us: we pray you in Christ's stead, be ye reconciled to God.
+
+5:21 For he hath made him to be sin for us, who knew no sin; that we
+might be made the righteousness of God in him.
+
+6:1 We then, as workers together with him, beseech you also that ye
+receive not the grace of God in vain.
+
+6:2 (For he saith, I have heard thee in a time accepted, and in the
+day of salvation have I succoured thee: behold, now is the accepted
+time; behold, now is the day of salvation.) 6:3 Giving no offence in
+any thing, that the ministry be not blamed: 6:4 But in all things
+approving ourselves as the ministers of God, in much patience, in
+afflictions, in necessities, in distresses, 6:5 In stripes, in
+imprisonments, in tumults, in labours, in watchings, in fastings; 6:6
+By pureness, by knowledge, by longsuffering, by kindness, by the Holy
+Ghost, by love unfeigned, 6:7 By the word of truth, by the power of
+God, by the armour of righteousness on the right hand and on the left,
+6:8 By honour and dishonour, by evil report and good report: as
+deceivers, and yet true; 6:9 As unknown, and yet well known; as dying,
+and, behold, we live; as chastened, and not killed; 6:10 As sorrowful,
+yet alway rejoicing; as poor, yet making many rich; as having nothing,
+and yet possessing all things.
+
+6:11 O ye Corinthians, our mouth is open unto you, our heart is
+enlarged.
+
+6:12 Ye are not straitened in us, but ye are straitened in your own
+bowels.
+
+6:13 Now for a recompence in the same, (I speak as unto my children,)
+be ye also enlarged.
+
+6:14 Be ye not unequally yoked together with unbelievers: for what
+fellowship hath righteousness with unrighteousness? and what communion
+hath light with darkness? 6:15 And what concord hath Christ with
+Belial? or what part hath he that believeth with an infidel? 6:16 And
+what agreement hath the temple of God with idols? for ye are the
+temple of the living God; as God hath said, I will dwell in them, and
+walk in them; and I will be their God, and they shall be my people.
+
+6:17 Wherefore come out from among them, and be ye separate, saith the
+Lord, and touch not the unclean thing; and I will receive you.
+
+6:18 And will be a Father unto you, and ye shall be my sons and
+daughters, saith the Lord Almighty.
+
+7:1 Having therefore these promises, dearly beloved, let us cleanse
+ourselves from all filthiness of the flesh and spirit, perfecting
+holiness in the fear of God.
+
+7:2 Receive us; we have wronged no man, we have corrupted no man, we
+have defrauded no man.
+
+7:3 I speak not this to condemn you: for I have said before, that ye
+are in our hearts to die and live with you.
+
+7:4 Great is my boldness of speech toward you, great is my glorying of
+you: I am filled with comfort, I am exceeding joyful in all our
+tribulation.
+
+7:5 For, when we were come into Macedonia, our flesh had no rest, but
+we were troubled on every side; without were fightings, within were
+fears.
+
+7:6 Nevertheless God, that comforteth those that are cast down,
+comforted us by the coming of Titus; 7:7 And not by his coming only,
+but by the consolation wherewith he was comforted in you, when he told
+us your earnest desire, your mourning, your fervent mind toward me; so
+that I rejoiced the more.
+
+7:8 For though I made you sorry with a letter, I do not repent, though
+I did repent: for I perceive that the same epistle hath made you
+sorry, though it were but for a season.
+
+7:9 Now I rejoice, not that ye were made sorry, but that ye sorrowed
+to repentance: for ye were made sorry after a godly manner, that ye
+might receive damage by us in nothing.
+
+7:10 For godly sorrow worketh repentance to salvation not to be
+repented of: but the sorrow of the world worketh death.
+
+7:11 For behold this selfsame thing, that ye sorrowed after a godly
+sort, what carefulness it wrought in you, yea, what clearing of
+yourselves, yea, what indignation, yea, what fear, yea, what vehement
+desire, yea, what zeal, yea, what revenge! In all things ye have
+approved yourselves to be clear in this matter.
+
+7:12 Wherefore, though I wrote unto you, I did it not for his cause
+that had done the wrong, nor for his cause that suffered wrong, but
+that our care for you in the sight of God might appear unto you.
+
+7:13 Therefore we were comforted in your comfort: yea, and exceedingly
+the more joyed we for the joy of Titus, because his spirit was
+refreshed by you all.
+
+7:14 For if I have boasted any thing to him of you, I am not ashamed;
+but as we spake all things to you in truth, even so our boasting,
+which I made before Titus, is found a truth.
+
+7:15 And his inward affection is more abundant toward you, whilst he
+remembereth the obedience of you all, how with fear and trembling ye
+received him.
+
+7:16 I rejoice therefore that I have confidence in you in all things.
+
+8:1 Moreover, brethren, we do you to wit of the grace of God bestowed
+on the churches of Macedonia; 8:2 How that in a great trial of
+affliction the abundance of their joy and their deep poverty abounded
+unto the riches of their liberality.
+
+8:3 For to their power, I bear record, yea, and beyond their power
+they were willing of themselves; 8:4 Praying us with much intreaty
+that we would receive the gift, and take upon us the fellowship of the
+ministering to the saints.
+
+8:5 And this they did, not as we hoped, but first gave their own
+selves to the Lord, and unto us by the will of God.
+
+8:6 Insomuch that we desired Titus, that as he had begun, so he would
+also finish in you the same grace also.
+
+8:7 Therefore, as ye abound in every thing, in faith, and utterance,
+and knowledge, and in all diligence, and in your love to us, see that
+ye abound in this grace also.
+
+8:8 I speak not by commandment, but by occasion of the forwardness of
+others, and to prove the sincerity of your love.
+
+8:9 For ye know the grace of our Lord Jesus Christ, that, though he
+was rich, yet for your sakes he became poor, that ye through his
+poverty might be rich.
+
+8:10 And herein I give my advice: for this is expedient for you, who
+have begun before, not only to do, but also to be forward a year ago.
+
+8:11 Now therefore perform the doing of it; that as there was a
+readiness to will, so there may be a performance also out of that
+which ye have.
+
+8:12 For if there be first a willing mind, it is accepted according to
+that a man hath, and not according to that he hath not.
+
+8:13 For I mean not that other men be eased, and ye burdened: 8:14 But
+by an equality, that now at this time your abundance may be a supply
+for their want, that their abundance also may be a supply for your
+want: that there may be equality: 8:15 As it is written, He that had
+gathered much had nothing over; and he that had gathered little had no
+lack.
+
+8:16 But thanks be to God, which put the same earnest care into the
+heart of Titus for you.
+
+8:17 For indeed he accepted the exhortation; but being more forward,
+of his own accord he went unto you.
+
+8:18 And we have sent with him the brother, whose praise is in the
+gospel throughout all the churches; 8:19 And not that only, but who
+was also chosen of the churches to travel with us with this grace,
+which is administered by us to the glory of the same Lord, and
+declaration of your ready mind: 8:20 Avoiding this, that no man should
+blame us in this abundance which is administered by us: 8:21 Providing
+for honest things, not only in the sight of the Lord, but also in the
+sight of men.
+
+8:22 And we have sent with them our brother, whom we have oftentimes
+proved diligent in many things, but now much more diligent, upon the
+great confidence which I have in you.
+
+8:23 Whether any do enquire of Titus, he is my partner and
+fellowhelper concerning you: or our brethren be enquired of, they are
+the messengers of the churches, and the glory of Christ.
+
+8:24 Wherefore shew ye to them, and before the churches, the proof of
+your love, and of our boasting on your behalf.
+
+9:1 For as touching the ministering to the saints, it is superfluous
+for me to write to you: 9:2 For I know the forwardness of your mind,
+for which I boast of you to them of Macedonia, that Achaia was ready a
+year ago; and your zeal hath provoked very many.
+
+9:3 Yet have I sent the brethren, lest our boasting of you should be
+in vain in this behalf; that, as I said, ye may be ready: 9:4 Lest
+haply if they of Macedonia come with me, and find you unprepared, we
+(that we say not, ye) should be ashamed in this same confident
+boasting.
+
+9:5 Therefore I thought it necessary to exhort the brethren, that they
+would go before unto you, and make up beforehand your bounty, whereof
+ye had notice before, that the same might be ready, as a matter of
+bounty, and not as of covetousness.
+
+9:6 But this I say, He which soweth sparingly shall reap also
+sparingly; and he which soweth bountifully shall reap also
+bountifully.
+
+9:7 Every man according as he purposeth in his heart, so let him give;
+not grudgingly, or of necessity: for God loveth a cheerful giver.
+
+9:8 And God is able to make all grace abound toward you; that ye,
+always having all sufficiency in all things, may abound to every good
+work: 9:9 (As it is written, He hath dispersed abroad; he hath given
+to the poor: his righteousness remaineth for ever.
+
+9:10 Now he that ministereth seed to the sower both minister bread for
+your food, and multiply your seed sown, and increase the fruits of
+your righteousness;) 9:11 Being enriched in every thing to all
+bountifulness, which causeth through us thanksgiving to God.
+
+9:12 For the administration of this service not only supplieth the
+want of the saints, but is abundant also by many thanksgivings unto
+God; 9:13 Whiles by the experiment of this ministration they glorify
+God for your professed subjection unto the gospel of Christ, and for
+your liberal distribution unto them, and unto all men; 9:14 And by
+their prayer for you, which long after you for the exceeding grace of
+God in you.
+
+9:15 Thanks be unto God for his unspeakable gift.
+
+10:1 Now I Paul myself beseech you by the meekness and gentleness of
+Christ, who in presence am base among you, but being absent am bold
+toward you: 10:2 But I beseech you, that I may not be bold when I am
+present with that confidence, wherewith I think to be bold against
+some, which think of us as if we walked according to the flesh.
+
+10:3 For though we walk in the flesh, we do not war after the flesh:
+10:4 (For the weapons of our warfare are not carnal, but mighty
+through God to the pulling down of strong holds;) 10:5 Casting down
+imaginations, and every high thing that exalteth itself against the
+knowledge of God, and bringing into captivity every thought to the
+obedience of Christ; 10:6 And having in a readiness to revenge all
+disobedience, when your obedience is fulfilled.
+
+10:7 Do ye look on things after the outward appearance? If any man
+trust to himself that he is Christ's, let him of himself think this
+again, that, as he is Christ's, even so are we Christ's.
+
+10:8 For though I should boast somewhat more of our authority, which
+the Lord hath given us for edification, and not for your destruction,
+I should not be ashamed: 10:9 That I may not seem as if I would
+terrify you by letters.
+
+10:10 For his letters, say they, are weighty and powerful; but his
+bodily presence is weak, and his speech contemptible.
+
+10:11 Let such an one think this, that, such as we are in word by
+letters when we are absent, such will we be also in deed when we are
+present.
+
+10:12 For we dare not make ourselves of the number, or compare
+ourselves with some that commend themselves: but they measuring
+themselves by themselves, and comparing themselves among themselves,
+are not wise.
+
+10:13 But we will not boast of things without our measure, but
+according to the measure of the rule which God hath distributed to us,
+a measure to reach even unto you.
+
+10:14 For we stretch not ourselves beyond our measure, as though we
+reached not unto you: for we are come as far as to you also in
+preaching the gospel of Christ: 10:15 Not boasting of things without
+our measure, that is, of other men's labours; but having hope, when
+your faith is increased, that we shall be enlarged by you according to
+our rule abundantly, 10:16 To preach the gospel in the regions beyond
+you, and not to boast in another man's line of things made ready to
+our hand.
+
+10:17 But he that glorieth, let him glory in the Lord.
+
+10:18 For not he that commendeth himself is approved, but whom the
+Lord commendeth.
+
+11:1 Would to God ye could bear with me a little in my folly: and
+indeed bear with me.
+
+11:2 For I am jealous over you with godly jealousy: for I have
+espoused you to one husband, that I may present you as a chaste virgin
+to Christ.
+
+11:3 But I fear, lest by any means, as the serpent beguiled Eve
+through his subtilty, so your minds should be corrupted from the
+simplicity that is in Christ.
+
+11:4 For if he that cometh preacheth another Jesus, whom we have not
+preached, or if ye receive another spirit, which ye have not received,
+or another gospel, which ye have not accepted, ye might well bear with
+him.
+
+11:5 For I suppose I was not a whit behind the very chiefest apostles.
+
+11:6 But though I be rude in speech, yet not in knowledge; but we have
+been throughly made manifest among you in all things.
+
+11:7 Have I committed an offence in abasing myself that ye might be
+exalted, because I have preached to you the gospel of God freely?
+11:8 I robbed other churches, taking wages of them, to do you service.
+
+11:9 And when I was present with you, and wanted, I was chargeable to
+no man: for that which was lacking to me the brethren which came from
+Macedonia supplied: and in all things I have kept myself from being
+burdensome unto you, and so will I keep myself.
+
+11:10 As the truth of Christ is in me, no man shall stop me of this
+boasting in the regions of Achaia.
+
+11:11 Wherefore? because I love you not? God knoweth.
+
+11:12 But what I do, that I will do, that I may cut off occasion from
+them which desire occasion; that wherein they glory, they may be found
+even as we.
+
+11:13 For such are false apostles, deceitful workers, transforming
+themselves into the apostles of Christ.
+
+11:14 And no marvel; for Satan himself is transformed into an angel of
+light.
+
+11:15 Therefore it is no great thing if his ministers also be
+transformed as the ministers of righteousness; whose end shall be
+according to their works.
+
+11:16 I say again, Let no man think me a fool; if otherwise, yet as a
+fool receive me, that I may boast myself a little.
+
+11:17 That which I speak, I speak it not after the Lord, but as it
+were foolishly, in this confidence of boasting.
+
+11:18 Seeing that many glory after the flesh, I will glory also.
+
+11:19 For ye suffer fools gladly, seeing ye yourselves are wise.
+
+11:20 For ye suffer, if a man bring you into bondage, if a man devour
+you, if a man take of you, if a man exalt himself, if a man smite you
+on the face.
+
+11:21 I speak as concerning reproach, as though we had been weak.
+Howbeit whereinsoever any is bold, (I speak foolishly,) I am bold
+also.
+
+11:22 Are they Hebrews? so am I. Are they Israelites? so am I. Are
+they the seed of Abraham? so am I.
+
+11:23 Are they ministers of Christ? (I speak as a fool) I am more; in
+labours more abundant, in stripes above measure, in prisons more
+frequent, in deaths oft.
+
+11:24 Of the Jews five times received I forty stripes save one.
+
+11:25 Thrice was I beaten with rods, once was I stoned, thrice I
+suffered shipwreck, a night and a day I have been in the deep; 11:26
+In journeyings often, in perils of waters, in perils of robbers, in
+perils by mine own countrymen, in perils by the heathen, in perils in
+the city, in perils in the wilderness, in perils in the sea, in perils
+among false brethren; 11:27 In weariness and painfulness, in watchings
+often, in hunger and thirst, in fastings often, in cold and nakedness.
+
+11:28 Beside those things that are without, that which cometh upon me
+daily, the care of all the churches.
+
+11:29 Who is weak, and I am not weak? who is offended, and I burn not?
+11:30 If I must needs glory, I will glory of the things which concern
+mine infirmities.
+
+11:31 The God and Father of our Lord Jesus Christ, which is blessed
+for evermore, knoweth that I lie not.
+
+11:32 In Damascus the governor under Aretas the king kept the city of
+the Damascenes with a garrison, desirous to apprehend me: 11:33 And
+through a window in a basket was I let down by the wall, and escaped
+his hands.
+
+12:1 It is not expedient for me doubtless to glory. I will come to
+visions and revelations of the Lord.
+
+12:2 I knew a man in Christ above fourteen years ago, (whether in the
+body, I cannot tell; or whether out of the body, I cannot tell: God
+knoweth;) such an one caught up to the third heaven.
+
+12:3 And I knew such a man, (whether in the body, or out of the body,
+I cannot tell: God knoweth;) 12:4 How that he was caught up into
+paradise, and heard unspeakable words, which it is not lawful for a
+man to utter.
+
+12:5 Of such an one will I glory: yet of myself I will not glory, but
+in mine infirmities.
+
+12:6 For though I would desire to glory, I shall not be a fool; for I
+will say the truth: but now I forbear, lest any man should think of me
+above that which he seeth me to be, or that he heareth of me.
+
+12:7 And lest I should be exalted above measure through the abundance
+of the revelations, there was given to me a thorn in the flesh, the
+messenger of Satan to buffet me, lest I should be exalted above
+measure.
+
+12:8 For this thing I besought the Lord thrice, that it might depart
+from me.
+
+12:9 And he said unto me, My grace is sufficient for thee: for my
+strength is made perfect in weakness. Most gladly therefore will I
+rather glory in my infirmities, that the power of Christ may rest upon
+me.
+
+12:10 Therefore I take pleasure in infirmities, in reproaches, in
+necessities, in persecutions, in distresses for Christ's sake: for
+when I am weak, then am I strong.
+
+12:11 I am become a fool in glorying; ye have compelled me: for I
+ought to have been commended of you: for in nothing am I behind the
+very chiefest apostles, though I be nothing.
+
+12:12 Truly the signs of an apostle were wrought among you in all
+patience, in signs, and wonders, and mighty deeds.
+
+12:13 For what is it wherein ye were inferior to other churches,
+except it be that I myself was not burdensome to you? forgive me this
+wrong.
+
+12:14 Behold, the third time I am ready to come to you; and I will not
+be burdensome to you: for I seek not your's but you: for the children
+ought not to lay up for the parents, but the parents for the children.
+
+12:15 And I will very gladly spend and be spent for you; though the
+more abundantly I love you, the less I be loved.
+
+12:16 But be it so, I did not burden you: nevertheless, being crafty,
+I caught you with guile.
+
+12:17 Did I make a gain of you by any of them whom I sent unto you?
+12:18 I desired Titus, and with him I sent a brother. Did Titus make a
+gain of you? walked we not in the same spirit? walked we not in the
+same steps? 12:19 Again, think ye that we excuse ourselves unto you?
+we speak before God in Christ: but we do all things, dearly beloved,
+for your edifying.
+
+12:20 For I fear, lest, when I come, I shall not find you such as I
+would, and that I shall be found unto you such as ye would not: lest
+there be debates, envyings, wraths, strifes, backbitings, whisperings,
+swellings, tumults: 12:21 And lest, when I come again, my God will
+humble me among you, and that I shall bewail many which have sinned
+already, and have not repented of the uncleanness and fornication and
+lasciviousness which they have committed.
+
+13:1 This is the third time I am coming to you. In the mouth of two or
+three witnesses shall every word be established.
+
+13:2 I told you before, and foretell you, as if I were present, the
+second time; and being absent now I write to them which heretofore
+have sinned, and to all other, that, if I come again, I will not
+spare: 13:3 Since ye seek a proof of Christ speaking in me, which to
+you-ward is not weak, but is mighty in you.
+
+13:4 For though he was crucified through weakness, yet he liveth by
+the power of God. For we also are weak in him, but we shall live with
+him by the power of God toward you.
+
+13:5 Examine yourselves, whether ye be in the faith; prove your own
+selves. Know ye not your own selves, how that Jesus Christ is in you,
+except ye be reprobates? 13:6 But I trust that ye shall know that we
+are not reprobates.
+
+13:7 Now I pray to God that ye do no evil; not that we should appear
+approved, but that ye should do that which is honest, though we be as
+reprobates.
+
+13:8 For we can do nothing against the truth, but for the truth.
+
+13:9 For we are glad, when we are weak, and ye are strong: and this
+also we wish, even your perfection.
+
+13:10 Therefore I write these things being absent, lest being present
+I should use sharpness, according to the power which the Lord hath
+given me to edification, and not to destruction.
+
+13:11 Finally, brethren, farewell. Be perfect, be of good comfort, be
+of one mind, live in peace; and the God of love and peace shall be
+with you.
+
+13:12 Greet one another with an holy kiss.
+
+13:13 All the saints salute you.
+
+13:14 The grace of the Lord Jesus Christ, and the love of God, and the
+communion of the Holy Ghost, be with you all. Amen.
+
+
+
+
+The Epistle of Paul the Apostle to the Galatians
+
+
+1:1 Paul, an apostle, (not of men, neither by man, but by Jesus
+Christ, and God the Father, who raised him from the dead;) 1:2 And all
+the brethren which are with me, unto the churches of Galatia: 1:3
+Grace be to you and peace from God the Father, and from our Lord Jesus
+Christ, 1:4 Who gave himself for our sins, that he might deliver us
+from this present evil world, according to the will of God and our
+Father: 1:5 To whom be glory for ever and ever. Amen.
+
+1:6 I marvel that ye are so soon removed from him that called you into
+the grace of Christ unto another gospel: 1:7 Which is not another; but
+there be some that trouble you, and would pervert the gospel of
+Christ.
+
+1:8 But though we, or an angel from heaven, preach any other gospel
+unto you than that which we have preached unto you, let him be
+accursed.
+
+1:9 As we said before, so say I now again, if any man preach any other
+gospel unto you than that ye have received, let him be accursed.
+
+1:10 For do I now persuade men, or God? or do I seek to please men?
+for if I yet pleased men, I should not be the servant of Christ.
+
+1:11 But I certify you, brethren, that the gospel which was preached
+of me is not after man.
+
+1:12 For I neither received it of man, neither was I taught it, but by
+the revelation of Jesus Christ.
+
+1:13 For ye have heard of my conversation in time past in the Jews'
+religion, how that beyond measure I persecuted the church of God, and
+wasted it: 1:14 And profited in the Jews' religion above many my
+equals in mine own nation, being more exceedingly zealous of the
+traditions of my fathers.
+
+1:15 But when it pleased God, who separated me from my mother's womb,
+and called me by his grace, 1:16 To reveal his Son in me, that I might
+preach him among the heathen; immediately I conferred not with flesh
+and blood: 1:17 Neither went I up to Jerusalem to them which were
+apostles before me; but I went into Arabia, and returned again unto
+Damascus.
+
+1:18 Then after three years I went up to Jerusalem to see Peter, and
+abode with him fifteen days.
+
+1:19 But other of the apostles saw I none, save James the Lord's
+brother.
+
+1:20 Now the things which I write unto you, behold, before God, I lie
+not.
+
+1:21 Afterwards I came into the regions of Syria and Cilicia; 1:22 And
+was unknown by face unto the churches of Judaea which were in Christ:
+1:23 But they had heard only, That he which persecuted us in times
+past now preacheth the faith which once he destroyed.
+
+1:24 And they glorified God in me.
+
+2:1 Then fourteen years after I went up again to Jerusalem with
+Barnabas, and took Titus with me also.
+
+2:2 And I went up by revelation, and communicated unto them that
+gospel which I preach among the Gentiles, but privately to them which
+were of reputation, lest by any means I should run, or had run, in
+vain.
+
+2:3 But neither Titus, who was with me, being a Greek, was compelled
+to be circumcised: 2:4 And that because of false brethren unawares
+brought in, who came in privily to spy out our liberty which we have
+in Christ Jesus, that they might bring us into bondage: 2:5 To whom we
+gave place by subjection, no, not for an hour; that the truth of the
+gospel might continue with you.
+
+2:6 But of these who seemed to be somewhat, (whatsoever they were, it
+maketh no matter to me: God accepteth no man's person:) for they who
+seemed to be somewhat in conference added nothing to me: 2:7 But
+contrariwise, when they saw that the gospel of the uncircumcision was
+committed unto me, as the gospel of the circumcision was unto Peter;
+2:8 (For he that wrought effectually in Peter to the apostleship of
+the circumcision, the same was mighty in me toward the Gentiles:) 2:9
+And when James, Cephas, and John, who seemed to be pillars, perceived
+the grace that was given unto me, they gave to me and Barnabas the
+right hands of fellowship; that we should go unto the heathen, and
+they unto the circumcision.
+
+2:10 Only they would that we should remember the poor; the same which
+I also was forward to do.
+
+2:11 But when Peter was come to Antioch, I withstood him to the face,
+because he was to be blamed.
+
+2:12 For before that certain came from James, he did eat with the
+Gentiles: but when they were come, he withdrew and separated himself,
+fearing them which were of the circumcision.
+
+2:13 And the other Jews dissembled likewise with him; insomuch that
+Barnabas also was carried away with their dissimulation.
+
+2:14 But when I saw that they walked not uprightly according to the
+truth of the gospel, I said unto Peter before them all, If thou, being
+a Jew, livest after the manner of Gentiles, and not as do the Jews,
+why compellest thou the Gentiles to live as do the Jews? 2:15 We who
+are Jews by nature, and not sinners of the Gentiles, 2:16 Knowing that
+a man is not justified by the works of the law, but by the faith of
+Jesus Christ, even we have believed in Jesus Christ, that we might be
+justified by the faith of Christ, and not by the works of the law: for
+by the works of the law shall no flesh be justified.
+
+2:17 But if, while we seek to be justified by Christ, we ourselves
+also are found sinners, is therefore Christ the minister of sin? God
+forbid.
+
+2:18 For if I build again the things which I destroyed, I make myself
+a transgressor.
+
+2:19 For I through the law am dead to the law, that I might live unto
+God.
+
+2:20 I am crucified with Christ: neverthless I live; yet not I, but
+Christ liveth in me: and the life which I now live in the flesh I live
+by the faith of the Son of God, who loved me, and gave himself for me.
+
+2:21 I do not frustrate the grace of God: for if righteousness come by
+the law, then Christ is dead in vain.
+
+3:1 O foolish Galatians, who hath bewitched you, that ye should not
+obey the truth, before whose eyes Jesus Christ hath been evidently set
+forth, crucified among you? 3:2 This only would I learn of you,
+Received ye the Spirit by the works of the law, or by the hearing of
+faith? 3:3 Are ye so foolish? having begun in the Spirit, are ye now
+made perfect by the flesh? 3:4 Have ye suffered so many things in
+vain? if it be yet in vain.
+
+3:5 He therefore that ministereth to you the Spirit, and worketh
+miracles among you, doeth he it by the works of the law, or by the
+hearing of faith? 3:6 Even as Abraham believed God, and it was
+accounted to him for righteousness.
+
+3:7 Know ye therefore that they which are of faith, the same are the
+children of Abraham.
+
+3:8 And the scripture, foreseeing that God would justify the heathen
+through faith, preached before the gospel unto Abraham, saying, In
+thee shall all nations be blessed.
+
+3:9 So then they which be of faith are blessed with faithful Abraham.
+
+3:10 For as many as are of the works of the law are under the curse:
+for it is written, Cursed is every one that continueth not in all
+things which are written in the book of the law to do them.
+
+3:11 But that no man is justified by the law in the sight of God, it
+is evident: for, The just shall live by faith.
+
+3:12 And the law is not of faith: but, The man that doeth them shall
+live in them.
+
+3:13 Christ hath redeemed us from the curse of the law, being made a
+curse for us: for it is written, Cursed is every one that hangeth on a
+tree: 3:14 That the blessing of Abraham might come on the Gentiles
+through Jesus Christ; that we might receive the promise of the Spirit
+through faith.
+
+3:15 Brethren, I speak after the manner of men; Though it be but a
+man's covenant, yet if it be confirmed, no man disannulleth, or addeth
+thereto.
+
+3:16 Now to Abraham and his seed were the promises made. He saith not,
+And to seeds, as of many; but as of one, And to thy seed, which is
+Christ.
+
+3:17 And this I say, that the covenant, that was confirmed before of
+God in Christ, the law, which was four hundred and thirty years after,
+cannot disannul, that it should make the promise of none effect.
+
+3:18 For if the inheritance be of the law, it is no more of promise:
+but God gave it to Abraham by promise.
+
+3:19 Wherefore then serveth the law? It was added because of
+transgressions, till the seed should come to whom the promise was
+made; and it was ordained by angels in the hand of a mediator.
+
+3:20 Now a mediator is not a mediator of one, but God is one.
+
+3:21 Is the law then against the promises of God? God forbid: for if
+there had been a law given which could have given life, verily
+righteousness should have been by the law.
+
+3:22 But the scripture hath concluded all under sin, that the promise
+by faith of Jesus Christ might be given to them that believe.
+
+3:23 But before faith came, we were kept under the law, shut up unto
+the faith which should afterwards be revealed.
+
+3:24 Wherefore the law was our schoolmaster to bring us unto Christ,
+that we might be justified by faith.
+
+3:25 But after that faith is come, we are no longer under a
+schoolmaster.
+
+3:26 For ye are all the children of God by faith in Christ Jesus.
+
+3:27 For as many of you as have been baptized into Christ have put on
+Christ.
+
+3:28 There is neither Jew nor Greek, there is neither bond nor free,
+there is neither male nor female: for ye are all one in Christ Jesus.
+
+3:29 And if ye be Christ's, then are ye Abraham's seed, and heirs
+according to the promise.
+
+4:1 Now I say, That the heir, as long as he is a child, differeth
+nothing from a servant, though he be lord of all; 4:2 But is under
+tutors and governors until the time appointed of the father.
+
+4:3 Even so we, when we were children, were in bondage under the
+elements of the world: 4:4 But when the fulness of the time was come,
+God sent forth his Son, made of a woman, made under the law, 4:5 To
+redeem them that were under the law, that we might receive the
+adoption of sons.
+
+4:6 And because ye are sons, God hath sent forth the Spirit of his Son
+into your hearts, crying, Abba, Father.
+
+4:7 Wherefore thou art no more a servant, but a son; and if a son,
+then an heir of God through Christ.
+
+4:8 Howbeit then, when ye knew not God, ye did service unto them which
+by nature are no gods.
+
+4:9 But now, after that ye have known God, or rather are known of God,
+how turn ye again to the weak and beggarly elements, whereunto ye
+desire again to be in bondage? 4:10 Ye observe days, and months, and
+times, and years.
+
+4:11 I am afraid of you, lest I have bestowed upon you labour in vain.
+
+4:12 Brethren, I beseech you, be as I am; for I am as ye are: ye have
+not injured me at all.
+
+4:13 Ye know how through infirmity of the flesh I preached the gospel
+unto you at the first.
+
+4:14 And my temptation which was in my flesh ye despised not, nor
+rejected; but received me as an angel of God, even as Christ Jesus.
+
+4:15 Where is then the blessedness ye spake of? for I bear you record,
+that, if it had been possible, ye would have plucked out your own
+eyes, and have given them to me.
+
+4:16 Am I therefore become your enemy, because I tell you the truth?
+4:17 They zealously affect you, but not well; yea, they would exclude
+you, that ye might affect them.
+
+4:18 But it is good to be zealously affected always in a good thing,
+and not only when I am present with you.
+
+4:19 My little children, of whom I travail in birth again until Christ
+be formed in you, 4:20 I desire to be present with you now, and to
+change my voice; for I stand in doubt of you.
+
+4:21 Tell me, ye that desire to be under the law, do ye not hear the
+law? 4:22 For it is written, that Abraham had two sons, the one by a
+bondmaid, the other by a freewoman.
+
+4:23 But he who was of the bondwoman was born after the flesh; but he
+of the freewoman was by promise.
+
+4:24 Which things are an allegory: for these are the two covenants;
+the one from the mount Sinai, which gendereth to bondage, which is
+Agar.
+
+4:25 For this Agar is mount Sinai in Arabia, and answereth to
+Jerusalem which now is, and is in bondage with her children.
+
+4:26 But Jerusalem which is above is free, which is the mother of us
+all.
+
+4:27 For it is written, Rejoice, thou barren that bearest not; break
+forth and cry, thou that travailest not: for the desolate hath many
+more children than she which hath an husband.
+
+4:28 Now we, brethren, as Isaac was, are the children of promise.
+
+4:29 But as then he that was born after the flesh persecuted him that
+was born after the Spirit, even so it is now.
+
+4:30 Nevertheless what saith the scripture? Cast out the bondwoman and
+her son: for the son of the bondwoman shall not be heir with the son
+of the freewoman.
+
+4:31 So then, brethren, we are not children of the bondwoman, but of
+the free.
+
+5:1 Stand fast therefore in the liberty wherewith Christ hath made us
+free, and be not entangled again with the yoke of bondage.
+
+5:2 Behold, I Paul say unto you, that if ye be circumcised, Christ
+shall profit you nothing.
+
+5:3 For I testify again to every man that is circumcised, that he is a
+debtor to do the whole law.
+
+5:4 Christ is become of no effect unto you, whosoever of you are
+justified by the law; ye are fallen from grace.
+
+5:5 For we through the Spirit wait for the hope of righteousness by
+faith.
+
+5:6 For in Jesus Christ neither circumcision availeth any thing, nor
+uncircumcision; but faith which worketh by love.
+
+5:7 Ye did run well; who did hinder you that ye should not obey the
+truth? 5:8 This persuasion cometh not of him that calleth you.
+
+5:9 A little leaven leaveneth the whole lump.
+
+5:10 I have confidence in you through the Lord, that ye will be none
+otherwise minded: but he that troubleth you shall bear his judgment,
+whosoever he be.
+
+5:11 And I, brethren, if I yet preach circumcision, why do I yet
+suffer persecution? then is the offence of the cross ceased.
+
+5:12 I would they were even cut off which trouble you.
+
+5:13 For, brethren, ye have been called unto liberty; only use not
+liberty for an occasion to the flesh, but by love serve one another.
+
+5:14 For all the law is fulfilled in one word, even in this; Thou
+shalt love thy neighbour as thyself.
+
+5:15 But if ye bite and devour one another, take heed that ye be not
+consumed one of another.
+
+5:16 This I say then, Walk in the Spirit, and ye shall not fulfil the
+lust of the flesh.
+
+5:17 For the flesh lusteth against the Spirit, and the Spirit against
+the flesh: and these are contrary the one to the other: so that ye
+cannot do the things that ye would.
+
+5:18 But if ye be led of the Spirit, ye are not under the law.
+
+5:19 Now the works of the flesh are manifest, which are these;
+Adultery, fornication, uncleanness, lasciviousness, 5:20 Idolatry,
+witchcraft, hatred, variance, emulations, wrath, strife, seditions,
+heresies, 5:21 Envyings, murders, drunkenness, revellings, and such
+like: of the which I tell you before, as I have also told you in time
+past, that they which do such things shall not inherit the kingdom of
+God.
+
+5:22 But the fruit of the Spirit is love, joy, peace, longsuffering,
+gentleness, goodness, faith, 5:23 Meekness, temperance: against such
+there is no law.
+
+5:24 And they that are Christ's have crucified the flesh with the
+affections and lusts.
+
+5:25 If we live in the Spirit, let us also walk in the Spirit.
+
+5:26 Let us not be desirous of vain glory, provoking one another,
+envying one another.
+
+6:1 Brethren, if a man be overtaken in a fault, ye which are
+spiritual, restore such an one in the spirit of meekness; considering
+thyself, lest thou also be tempted.
+
+6:2 Bear ye one another's burdens, and so fulfil the law of Christ.
+
+6:3 For if a man think himself to be something, when he is nothing, he
+deceiveth himself.
+
+6:4 But let every man prove his own work, and then shall he have
+rejoicing in himself alone, and not in another.
+
+6:5 For every man shall bear his own burden.
+
+6:6 Let him that is taught in the word communicate unto him that
+teacheth in all good things.
+
+6:7 Be not deceived; God is not mocked: for whatsoever a man soweth,
+that shall he also reap.
+
+6:8 For he that soweth to his flesh shall of the flesh reap
+corruption; but he that soweth to the Spirit shall of the Spirit reap
+life everlasting.
+
+6:9 And let us not be weary in well doing: for in due season we shall
+reap, if we faint not.
+
+6:10 As we have therefore opportunity, let us do good unto all men,
+especially unto them who are of the household of faith.
+
+6:11 Ye see how large a letter I have written unto you with mine own
+hand.
+
+6:12 As many as desire to make a fair shew in the flesh, they
+constrain you to be circumcised; only lest they should suffer
+persecution for the cross of Christ.
+
+6:13 For neither they themselves who are circumcised keep the law; but
+desire to have you circumcised, that they may glory in your flesh.
+
+6:14 But God forbid that I should glory, save in the cross of our Lord
+Jesus Christ, by whom the world is crucified unto me, and I unto the
+world.
+
+6:15 For in Christ Jesus neither circumcision availeth any thing, nor
+uncircumcision, but a new creature.
+
+6:16 And as many as walk according to this rule, peace be on them, and
+mercy, and upon the Israel of God.
+
+6:17 From henceforth let no man trouble me: for I bear in my body the
+marks of the Lord Jesus.
+
+6:18 Brethren, the grace of our Lord Jesus Christ be with your spirit.
+
+Amen.
+
+
+
+
+The Epistle of Paul the Apostle to the Ephesians
+
+
+1:1 Paul, an apostle of Jesus Christ by the will of God, to the
+saints which are at Ephesus, and to the faithful in Christ Jesus:
+1:2 Grace be to you, and peace, from God our Father, and from the Lord
+Jesus Christ.
+
+1:3 Blessed be the God and Father of our Lord Jesus Christ, who hath
+blessed us with all spiritual blessings in heavenly places in Christ:
+1:4 According as he hath chosen us in him before the foundation of the
+world, that we should be holy and without blame before him in love:
+1:5 Having predestinated us unto the adoption of children by Jesus
+Christ to himself, according to the good pleasure of his will, 1:6 To
+the praise of the glory of his grace, wherein he hath made us accepted
+in the beloved.
+
+1:7 In whom we have redemption through his blood, the forgiveness of
+sins, according to the riches of his grace; 1:8 Wherein he hath
+abounded toward us in all wisdom and prudence; 1:9 Having made known
+unto us the mystery of his will, according to his good pleasure which
+he hath purposed in himself: 1:10 That in the dispensation of the
+fulness of times he might gather together in one all things in Christ,
+both which are in heaven, and which are on earth; even in him: 1:11 In
+whom also we have obtained an inheritance, being predestinated
+according to the purpose of him who worketh all things after the
+counsel of his own will: 1:12 That we should be to the praise of his
+glory, who first trusted in Christ.
+
+1:13 In whom ye also trusted, after that ye heard the word of truth,
+the gospel of your salvation: in whom also after that ye believed, ye
+were sealed with that holy Spirit of promise, 1:14 Which is the
+earnest of our inheritance until the redemption of the purchased
+possession, unto the praise of his glory.
+
+1:15 Wherefore I also, after I heard of your faith in the Lord Jesus,
+and love unto all the saints, 1:16 Cease not to give thanks for you,
+making mention of you in my prayers; 1:17 That the God of our Lord
+Jesus Christ, the Father of glory, may give unto you the spirit of
+wisdom and revelation in the knowledge of him: 1:18 The eyes of your
+understanding being enlightened; that ye may know what is the hope of
+his calling, and what the riches of the glory of his inheritance in
+the saints, 1:19 And what is the exceeding greatness of his power to
+us-ward who believe, according to the working of his mighty power,
+1:20 Which he wrought in Christ, when he raised him from the dead, and
+set him at his own right hand in the heavenly places, 1:21 Far above
+all principality, and power, and might, and dominion, and every name
+that is named, not only in this world, but also in that which is to
+come: 1:22 And hath put all things under his feet, and gave him to be
+the head over all things to the church, 1:23 Which is his body, the
+fulness of him that filleth all in all.
+
+2:1 And you hath he quickened, who were dead in trespasses and sins;
+2:2 Wherein in time past ye walked according to the course of this
+world, according to the prince of the power of the air, the spirit
+that now worketh in the children of disobedience: 2:3 Among whom also
+we all had our conversation in times past in the lusts of our flesh,
+fulfilling the desires of the flesh and of the mind; and were by
+nature the children of wrath, even as others.
+
+2:4 But God, who is rich in mercy, for his great love wherewith he
+loved us, 2:5 Even when we were dead in sins, hath quickened us
+together with Christ, (by grace ye are saved;) 2:6 And hath raised us
+up together, and made us sit together in heavenly places in Christ
+Jesus: 2:7 That in the ages to come he might shew the exceeding riches
+of his grace in his kindness toward us through Christ Jesus.
+
+2:8 For by grace are ye saved through faith; and that not of
+yourselves: it is the gift of God: 2:9 Not of works, lest any man
+should boast.
+
+2:10 For we are his workmanship, created in Christ Jesus unto good
+works, which God hath before ordained that we should walk in them.
+
+2:11 Wherefore remember, that ye being in time past Gentiles in the
+flesh, who are called Uncircumcision by that which is called the
+Circumcision in the flesh made by hands; 2:12 That at that time ye
+were without Christ, being aliens from the commonwealth of Israel, and
+strangers from the covenants of promise, having no hope, and without
+God in the world: 2:13 But now in Christ Jesus ye who sometimes were
+far off are made nigh by the blood of Christ.
+
+2:14 For he is our peace, who hath made both one, and hath broken down
+the middle wall of partition between us; 2:15 Having abolished in his
+flesh the enmity, even the law of commandments contained in
+ordinances; for to make in himself of twain one new man, so making
+peace; 2:16 And that he might reconcile both unto God in one body by
+the cross, having slain the enmity thereby: 2:17 And came and preached
+peace to you which were afar off, and to them that were nigh.
+
+2:18 For through him we both have access by one Spirit unto the
+Father.
+
+2:19 Now therefore ye are no more strangers and foreigners, but
+fellowcitizens with the saints, and of the household of God; 2:20 And
+are built upon the foundation of the apostles and prophets, Jesus
+Christ himself being the chief corner stone; 2:21 In whom all the
+building fitly framed together groweth unto an holy temple in the
+Lord: 2:22 In whom ye also are builded together for an habitation of
+God through the Spirit.
+
+3:1 For this cause I Paul, the prisoner of Jesus Christ for you
+Gentiles, 3:2 If ye have heard of the dispensation of the grace of God
+which is given me to you-ward: 3:3 How that by revelation he made
+known unto me the mystery; (as I wrote afore in few words, 3:4
+Whereby, when ye read, ye may understand my knowledge in the mystery
+of Christ) 3:5 Which in other ages was not made known unto the sons of
+men, as it is now revealed unto his holy apostles and prophets by the
+Spirit; 3:6 That the Gentiles should be fellowheirs, and of the same
+body, and partakers of his promise in Christ by the gospel: 3:7
+Whereof I was made a minister, according to the gift of the grace of
+God given unto me by the effectual working of his power.
+
+3:8 Unto me, who am less than the least of all saints, is this grace
+given, that I should preach among the Gentiles the unsearchable riches
+of Christ; 3:9 And to make all men see what is the fellowship of the
+mystery, which from the beginning of the world hath been hid in God,
+who created all things by Jesus Christ: 3:10 To the intent that now
+unto the principalities and powers in heavenly places might be known
+by the church the manifold wisdom of God, 3:11 According to the
+eternal purpose which he purposed in Christ Jesus our Lord: 3:12 In
+whom we have boldness and access with confidence by the faith of him.
+
+3:13 Wherefore I desire that ye faint not at my tribulations for you,
+which is your glory.
+
+3:14 For this cause I bow my knees unto the Father of our Lord Jesus
+Christ, 3:15 Of whom the whole family in heaven and earth is named,
+3:16 That he would grant you, according to the riches of his glory, to
+be strengthened with might by his Spirit in the inner man; 3:17 That
+Christ may dwell in your hearts by faith; that ye, being rooted and
+grounded in love, 3:18 May be able to comprehend with all saints what
+is the breadth, and length, and depth, and height; 3:19 And to know
+the love of Christ, which passeth knowledge, that ye might be filled
+with all the fulness of God.
+
+3:20 Now unto him that is able to do exceeding abundantly above all
+that we ask or think, according to the power that worketh in us, 3:21
+Unto him be glory in the church by Christ Jesus throughout all ages,
+world without end. Amen.
+
+4:1 I therefore, the prisoner of the Lord, beseech you that ye walk
+worthy of the vocation wherewith ye are called, 4:2 With all lowliness
+and meekness, with longsuffering, forbearing one another in love; 4:3
+Endeavouring to keep the unity of the Spirit in the bond of peace.
+
+4:4 There is one body, and one Spirit, even as ye are called in one
+hope of your calling; 4:5 One Lord, one faith, one baptism, 4:6 One
+God and Father of all, who is above all, and through all, and in you
+all.
+
+4:7 But unto every one of us is given grace according to the measure
+of the gift of Christ.
+
+4:8 Wherefore he saith, When he ascended up on high, he led captivity
+captive, and gave gifts unto men.
+
+4:9 (Now that he ascended, what is it but that he also descended first
+into the lower parts of the earth? 4:10 He that descended is the same
+also that ascended up far above all heavens, that he might fill all
+things.) 4:11 And he gave some, apostles; and some, prophets; and
+some, evangelists; and some, pastors and teachers; 4:12 For the
+perfecting of the saints, for the work of the ministry, for the
+edifying of the body of Christ: 4:13 Till we all come in the unity of
+the faith, and of the knowledge of the Son of God, unto a perfect man,
+unto the measure of the stature of the fulness of Christ: 4:14 That we
+henceforth be no more children, tossed to and fro, and carried about
+with every wind of doctrine, by the sleight of men, and cunning
+craftiness, whereby they lie in wait to deceive; 4:15 But speaking the
+truth in love, may grow up into him in all things, which is the head,
+even Christ: 4:16 From whom the whole body fitly joined together and
+compacted by that which every joint supplieth, according to the
+effectual working in the measure of every part, maketh increase of the
+body unto the edifying of itself in love.
+
+4:17 This I say therefore, and testify in the Lord, that ye henceforth
+walk not as other Gentiles walk, in the vanity of their mind, 4:18
+Having the understanding darkened, being alienated from the life of
+God through the ignorance that is in them, because of the blindness of
+their heart: 4:19 Who being past feeling have given themselves over
+unto lasciviousness, to work all uncleanness with greediness.
+
+4:20 But ye have not so learned Christ; 4:21 If so be that ye have
+heard him, and have been taught by him, as the truth is in Jesus: 4:22
+That ye put off concerning the former conversation the old man, which
+is corrupt according to the deceitful lusts; 4:23 And be renewed in
+the spirit of your mind; 4:24 And that ye put on the new man, which
+after God is created in righteousness and true holiness.
+
+4:25 Wherefore putting away lying, speak every man truth with his
+neighbour: for we are members one of another.
+
+4:26 Be ye angry, and sin not: let not the sun go down upon your
+wrath: 4:27 Neither give place to the devil.
+
+4:28 Let him that stole steal no more: but rather let him labour,
+working with his hands the thing which is good, that he may have to
+give to him that needeth.
+
+4:29 Let no corrupt communication proceed out of your mouth, but that
+which is good to the use of edifying, that it may minister grace unto
+the hearers.
+
+4:30 And grieve not the holy Spirit of God, whereby ye are sealed unto
+the day of redemption.
+
+4:31 Let all bitterness, and wrath, and anger, and clamour, and evil
+speaking, be put away from you, with all malice: 4:32 And be ye kind
+one to another, tenderhearted, forgiving one another, even as God for
+Christ's sake hath forgiven you.
+
+5:1 Be ye therefore followers of God, as dear children; 5:2 And walk
+in love, as Christ also hath loved us, and hath given himself for us
+an offering and a sacrifice to God for a sweetsmelling savour.
+
+5:3 But fornication, and all uncleanness, or covetousness, let it not
+be once named among you, as becometh saints; 5:4 Neither filthiness,
+nor foolish talking, nor jesting, which are not convenient: but rather
+giving of thanks.
+
+5:5 For this ye know, that no whoremonger, nor unclean person, nor
+covetous man, who is an idolater, hath any inheritance in the kingdom
+of Christ and of God.
+
+5:6 Let no man deceive you with vain words: for because of these
+things cometh the wrath of God upon the children of disobedience.
+
+5:7 Be not ye therefore partakers with them.
+
+5:8 For ye were sometimes darkness, but now are ye light in the Lord:
+walk as children of light: 5:9 (For the fruit of the Spirit is in all
+goodness and righteousness and truth;) 5:10 Proving what is acceptable
+unto the Lord.
+
+5:11 And have no fellowship with the unfruitful works of darkness, but
+rather reprove them.
+
+5:12 For it is a shame even to speak of those things which are done of
+them in secret.
+
+5:13 But all things that are reproved are made manifest by the light:
+for whatsoever doth make manifest is light.
+
+5:14 Wherefore he saith, Awake thou that sleepest, and arise from the
+dead, and Christ shall give thee light.
+
+5:15 See then that ye walk circumspectly, not as fools, but as wise,
+5:16 Redeeming the time, because the days are evil.
+
+5:17 Wherefore be ye not unwise, but understanding what the will of
+the Lord is.
+
+5:18 And be not drunk with wine, wherein is excess; but be filled with
+the Spirit; 5:19 Speaking to yourselves in psalms and hymns and
+spiritual songs, singing and making melody in your heart to the Lord;
+5:20 Giving thanks always for all things unto God and the Father in
+the name of our Lord Jesus Christ; 5:21 Submitting yourselves one to
+another in the fear of God.
+
+5:22 Wives, submit yourselves unto your own husbands, as unto the
+Lord.
+
+5:23 For the husband is the head of the wife, even as Christ is the
+head of the church: and he is the saviour of the body.
+
+5:24 Therefore as the church is subject unto Christ, so let the wives
+be to their own husbands in every thing.
+
+5:25 Husbands, love your wives, even as Christ also loved the church,
+and gave himself for it; 5:26 That he might sanctify and cleanse it
+with the washing of water by the word, 5:27 That he might present it
+to himself a glorious church, not having spot, or wrinkle, or any such
+thing; but that it should be holy and without blemish.
+
+5:28 So ought men to love their wives as their own bodies. He that
+loveth his wife loveth himself.
+
+5:29 For no man ever yet hated his own flesh; but nourisheth and
+cherisheth it, even as the Lord the church: 5:30 For we are members of
+his body, of his flesh, and of his bones.
+
+5:31 For this cause shall a man leave his father and mother, and shall
+be joined unto his wife, and they two shall be one flesh.
+
+5:32 This is a great mystery: but I speak concerning Christ and the
+church.
+
+5:33 Nevertheless let every one of you in particular so love his wife
+even as himself; and the wife see that she reverence her husband.
+
+6:1 Children, obey your parents in the Lord: for this is right.
+
+6:2 Honour thy father and mother; which is the first commandment with
+promise; 6:3 That it may be well with thee, and thou mayest live long
+on the earth.
+
+6:4 And, ye fathers, provoke not your children to wrath: but bring
+them up in the nurture and admonition of the Lord.
+
+6:5 Servants, be obedient to them that are your masters according to
+the flesh, with fear and trembling, in singleness of your heart, as
+unto Christ; 6:6 Not with eyeservice, as menpleasers; but as the
+servants of Christ, doing the will of God from the heart; 6:7 With
+good will doing service, as to the Lord, and not to men: 6:8 Knowing
+that whatsoever good thing any man doeth, the same shall he receive of
+the Lord, whether he be bond or free.
+
+6:9 And, ye masters, do the same things unto them, forbearing
+threatening: knowing that your Master also is in heaven; neither is
+there respect of persons with him.
+
+6:10 Finally, my brethren, be strong in the Lord, and in the power of
+his might.
+
+6:11 Put on the whole armour of God, that ye may be able to stand
+against the wiles of the devil.
+
+6:12 For we wrestle not against flesh and blood, but against
+principalities, against powers, against the rulers of the darkness of
+this world, against spiritual wickedness in high places.
+
+6:13 Wherefore take unto you the whole armour of God, that ye may be
+able to withstand in the evil day, and having done all, to stand.
+
+6:14 Stand therefore, having your loins girt about with truth, and
+having on the breastplate of righteousness; 6:15 And your feet shod
+with the preparation of the gospel of peace; 6:16 Above all, taking
+the shield of faith, wherewith ye shall be able to quench all the
+fiery darts of the wicked.
+
+6:17 And take the helmet of salvation, and the sword of the Spirit,
+which is the word of God: 6:18 Praying always with all prayer and
+supplication in the Spirit, and watching thereunto with all
+perseverance and supplication for all saints; 6:19 And for me, that
+utterance may be given unto me, that I may open my mouth boldly, to
+make known the mystery of the gospel, 6:20 For which I am an
+ambassador in bonds: that therein I may speak boldly, as I ought to
+speak.
+
+6:21 But that ye also may know my affairs, and how I do, Tychicus, a
+beloved brother and faithful minister in the Lord, shall make known to
+you all things: 6:22 Whom I have sent unto you for the same purpose,
+that ye might know our affairs, and that he might comfort your hearts.
+
+6:23 Peace be to the brethren, and love with faith, from God the
+Father and the Lord Jesus Christ.
+
+6:24 Grace be with all them that love our Lord Jesus Christ in
+sincerity.
+
+Amen.
+
+
+
+
+The Epistle of Paul the Apostle to the Philippians
+
+
+1:1 Paul and Timotheus, the servants of Jesus Christ, to all the
+saints in Christ Jesus which are at Philippi, with the bishops and
+deacons: 1:2 Grace be unto you, and peace, from God our Father, and
+from the Lord Jesus Christ.
+
+1:3 I thank my God upon every remembrance of you, 1:4 Always in every
+prayer of mine for you all making request with joy, 1:5 For your
+fellowship in the gospel from the first day until now; 1:6 Being
+confident of this very thing, that he which hath begun a good work in
+you will perform it until the day of Jesus Christ: 1:7 Even as it is
+meet for me to think this of you all, because I have you in my heart;
+inasmuch as both in my bonds, and in the defence and confirmation of
+the gospel, ye all are partakers of my grace.
+
+1:8 For God is my record, how greatly I long after you all in the
+bowels of Jesus Christ.
+
+1:9 And this I pray, that your love may abound yet more and more in
+knowledge and in all judgment; 1:10 That ye may approve things that
+are excellent; that ye may be sincere and without offence till the day
+of Christ.
+
+1:11 Being filled with the fruits of righteousness, which are by Jesus
+Christ, unto the glory and praise of God.
+
+1:12 But I would ye should understand, brethren, that the things which
+happened unto me have fallen out rather unto the furtherance of the
+gospel; 1:13 So that my bonds in Christ are manifest in all the
+palace, and in all other places; 1:14 And many of the brethren in the
+Lord, waxing confident by my bonds, are much more bold to speak the
+word without fear.
+
+1:15 Some indeed preach Christ even of envy and strife; and some also
+of good will: 1:16 The one preach Christ of contention, not sincerely,
+supposing to add affliction to my bonds: 1:17 But the other of love,
+knowing that I am set for the defence of the gospel.
+
+1:18 What then? notwithstanding, every way, whether in pretence, or in
+truth, Christ is preached; and I therein do rejoice, yea, and will
+rejoice.
+
+1:19 For I know that this shall turn to my salvation through your
+prayer, and the supply of the Spirit of Jesus Christ, 1:20 According
+to my earnest expectation and my hope, that in nothing I shall be
+ashamed, but that with all boldness, as always, so now also Christ
+shall be magnified in my body, whether it be by life, or by death.
+
+1:21 For to me to live is Christ, and to die is gain.
+
+1:22 But if I live in the flesh, this is the fruit of my labour: yet
+what I shall choose I wot not.
+
+1:23 For I am in a strait betwixt two, having a desire to depart, and
+to be with Christ; which is far better: 1:24 Nevertheless to abide in
+the flesh is more needful for you.
+
+1:25 And having this confidence, I know that I shall abide and
+continue with you all for your furtherance and joy of faith; 1:26 That
+your rejoicing may be more abundant in Jesus Christ for me by my
+coming to you again.
+
+1:27 Only let your conversation be as it becometh the gospel of
+Christ: that whether I come and see you, or else be absent, I may hear
+of your affairs, that ye stand fast in one spirit, with one mind
+striving together for the faith of the gospel; 1:28 And in nothing
+terrified by your adversaries: which is to them an evident token of
+perdition, but to you of salvation, and that of God.
+
+1:29 For unto you it is given in the behalf of Christ, not only to
+believe on him, but also to suffer for his sake; 1:30 Having the same
+conflict which ye saw in me, and now hear to be in me.
+
+2:1 If there be therefore any consolation in Christ, if any comfort of
+love, if any fellowship of the Spirit, if any bowels and mercies, 2:2
+Fulfil ye my joy, that ye be likeminded, having the same love, being
+of one accord, of one mind.
+
+2:3 Let nothing be done through strife or vainglory; but in lowliness
+of mind let each esteem other better than themselves.
+
+2:4 Look not every man on his own things, but every man also on the
+things of others.
+
+2:5 Let this mind be in you, which was also in Christ Jesus: 2:6 Who,
+being in the form of God, thought it not robbery to be equal with God:
+2:7 But made himself of no reputation, and took upon him the form of a
+servant, and was made in the likeness of men: 2:8 And being found in
+fashion as a man, he humbled himself, and became obedient unto death,
+even the death of the cross.
+
+2:9 Wherefore God also hath highly exalted him, and given him a name
+which is above every name: 2:10 That at the name of Jesus every knee
+should bow, of things in heaven, and things in earth, and things under
+the earth; 2:11 And that every tongue should confess that Jesus Christ
+is Lord, to the glory of God the Father.
+
+2:12 Wherefore, my beloved, as ye have always obeyed, not as in my
+presence only, but now much more in my absence, work out your own
+salvation with fear and trembling.
+
+2:13 For it is God which worketh in you both to will and to do of his
+good pleasure.
+
+2:14 Do all things without murmurings and disputings: 2:15 That ye may
+be blameless and harmless, the sons of God, without rebuke, in the
+midst of a crooked and perverse nation, among whom ye shine as lights
+in the world; 2:16 Holding forth the word of life; that I may rejoice
+in the day of Christ, that I have not run in vain, neither laboured in
+vain.
+
+2:17 Yea, and if I be offered upon the sacrifice and service of your
+faith, I joy, and rejoice with you all.
+
+2:18 For the same cause also do ye joy, and rejoice with me.
+
+2:19 But I trust in the Lord Jesus to send Timotheus shortly unto you,
+that I also may be of good comfort, when I know your state.
+
+2:20 For I have no man likeminded, who will naturally care for your
+state.
+
+2:21 For all seek their own, not the things which are Jesus Christ's.
+
+2:22 But ye know the proof of him, that, as a son with the father, he
+hath served with me in the gospel.
+
+2:23 Him therefore I hope to send presently, so soon as I shall see
+how it will go with me.
+
+2:24 But I trust in the Lord that I also myself shall come shortly.
+
+2:25 Yet I supposed it necessary to send to you Epaphroditus, my
+brother, and companion in labour, and fellowsoldier, but your
+messenger, and he that ministered to my wants.
+
+2:26 For he longed after you all, and was full of heaviness, because
+that ye had heard that he had been sick.
+
+2:27 For indeed he was sick nigh unto death: but God had mercy on him;
+and not on him only, but on me also, lest I should have sorrow upon
+sorrow.
+
+2:28 I sent him therefore the more carefully, that, when ye see him
+again, ye may rejoice, and that I may be the less sorrowful.
+
+2:29 Receive him therefore in the Lord with all gladness; and hold
+such in reputation: 2:30 Because for the work of Christ he was nigh
+unto death, not regarding his life, to supply your lack of service
+toward me.
+
+3:1 Finally, my brethren, rejoice in the Lord. To write the same
+things to you, to me indeed is not grievous, but for you it is safe.
+
+3:2 Beware of dogs, beware of evil workers, beware of the concision.
+
+3:3 For we are the circumcision, which worship God in the spirit, and
+rejoice in Christ Jesus, and have no confidence in the flesh.
+
+3:4 Though I might also have confidence in the flesh. If any other man
+thinketh that he hath whereof he might trust in the flesh, I more: 3:5
+Circumcised the eighth day, of the stock of Israel, of the tribe of
+Benjamin, an Hebrew of the Hebrews; as touching the law, a Pharisee;
+3:6 Concerning zeal, persecuting the church; touching the
+righteousness which is in the law, blameless.
+
+3:7 But what things were gain to me, those I counted loss for Christ.
+
+3:8 Yea doubtless, and I count all things but loss for the excellency
+of the knowledge of Christ Jesus my Lord: for whom I have suffered the
+loss of all things, and do count them but dung, that I may win Christ,
+3:9 And be found in him, not having mine own righteousness, which is
+of the law, but that which is through the faith of Christ, the
+righteousness which is of God by faith: 3:10 That I may know him, and
+the power of his resurrection, and the fellowship of his sufferings,
+being made conformable unto his death; 3:11 If by any means I might
+attain unto the resurrection of the dead.
+
+3:12 Not as though I had already attained, either were already
+perfect: but I follow after, if that I may apprehend that for which
+also I am apprehended of Christ Jesus.
+
+3:13 Brethren, I count not myself to have apprehended: but this one
+thing I do, forgetting those things which are behind, and reaching
+forth unto those things which are before, 3:14 I press toward the mark
+for the prize of the high calling of God in Christ Jesus.
+
+3:15 Let us therefore, as many as be perfect, be thus minded: and if
+in any thing ye be otherwise minded, God shall reveal even this unto
+you.
+
+3:16 Nevertheless, whereto we have already attained, let us walk by
+the same rule, let us mind the same thing.
+
+3:17 Brethren, be followers together of me, and mark them which walk
+so as ye have us for an ensample.
+
+3:18 (For many walk, of whom I have told you often, and now tell you
+even weeping, that they are the enemies of the cross of Christ: 3:19
+Whose end is destruction, whose God is their belly, and whose glory is
+in their shame, who mind earthly things.) 3:20 For our conversation
+is in heaven; from whence also we look for the Saviour, the Lord Jesus
+Christ: 3:21 Who shall change our vile body, that it may be fashioned
+like unto his glorious body, according to the working whereby he is
+able even to subdue all things unto himself.
+
+4:1 Therefore, my brethren dearly beloved and longed for, my joy and
+crown, so stand fast in the Lord, my dearly beloved.
+
+4:2 I beseech Euodias, and beseech Syntyche, that they be of the same
+mind in the Lord.
+
+4:3 And I intreat thee also, true yokefellow, help those women which
+laboured with me in the gospel, with Clement also, and with other my
+fellowlabourers, whose names are in the book of life.
+
+4:4 Rejoice in the Lord alway: and again I say, Rejoice.
+
+4:5 Let your moderation be known unto all men. The Lord is at hand.
+
+4:6 Be careful for nothing; but in every thing by prayer and
+supplication with thanksgiving let your requests be made known unto
+God.
+
+4:7 And the peace of God, which passeth all understanding, shall keep
+your hearts and minds through Christ Jesus.
+
+4:8 Finally, brethren, whatsoever things are true, whatsoever things
+are honest, whatsoever things are just, whatsoever things are pure,
+whatsoever things are lovely, whatsoever things are of good report; if
+there be any virtue, and if there be any praise, think on these
+things.
+
+4:9 Those things, which ye have both learned, and received, and heard,
+and seen in me, do: and the God of peace shall be with you.
+
+4:10 But I rejoiced in the Lord greatly, that now at the last your
+care of me hath flourished again; wherein ye were also careful, but ye
+lacked opportunity.
+
+4:11 Not that I speak in respect of want: for I have learned, in
+whatsoever state I am, therewith to be content.
+
+4:12 I know both how to be abased, and I know how to abound: every
+where and in all things I am instructed both to be full and to be
+hungry, both to abound and to suffer need.
+
+4:13 I can do all things through Christ which strengtheneth me.
+
+4:14 Notwithstanding ye have well done, that ye did communicate with
+my affliction.
+
+4:15 Now ye Philippians know also, that in the beginning of the
+gospel, when I departed from Macedonia, no church communicated with me
+as concerning giving and receiving, but ye only.
+
+4:16 For even in Thessalonica ye sent once and again unto my
+necessity.
+
+4:17 Not because I desire a gift: but I desire fruit that may abound
+to your account.
+
+4:18 But I have all, and abound: I am full, having received of
+Epaphroditus the things which were sent from you, an odour of a sweet
+smell, a sacrifice acceptable, wellpleasing to God.
+
+4:19 But my God shall supply all your need according to his riches in
+glory by Christ Jesus.
+
+4:20 Now unto God and our Father be glory for ever and ever. Amen.
+
+4:21 Salute every saint in Christ Jesus. The brethren which are with
+me greet you.
+
+4:22 All the saints salute you, chiefly they that are of Caesar's
+household.
+
+4:23 The grace of our Lord Jesus Christ be with you all. Amen.
+
+
+
+
+The Epistle of Paul the Apostle to the Colossians
+
+
+1:1 Paul, an apostle of Jesus Christ by the will of God,
+and Timotheus our brother, 1:2 To the saints and faithful brethren
+in Christ which are at Colosse: Grace be unto you, and peace,
+from God our Father and the Lord Jesus Christ.
+
+1:3 We give thanks to God and the Father of our Lord Jesus Christ, praying
+always for you,
+1:4 Since we heard of your faith in Christ Jesus, and of the love which ye
+have to all the saints,
+1:5 For the hope which is laid up for you in heaven, whereof ye heard
+before in the word of the truth of the gospel;
+1:6 Which is come unto you, as it is in all the world; and bringeth forth
+fruit, as it doth also in you, since the day ye heard of it, and knew the
+grace of God in truth:
+1:7 As ye also learned of Epaphras our dear fellowservant, who is for you
+a faithful minister of Christ;
+1:8 Who also declared unto us your love in the Spirit.
+
+1:9 For this cause we also, since the day we heard it, do not cease to
+pray for you, and to desire that ye might be filled with the knowledge of his
+will in all wisdom and spiritual understanding;
+1:10 That ye might walk worthy of the Lord unto all pleasing, being
+fruitful in every good work, and increasing in the knowledge of God;
+1:11 Strengthened with all might, according to his glorious power, unto
+all patience and longsuffering with joyfulness;
+1:12 Giving thanks unto the Father, which hath made us meet to be
+partakers of the inheritance of the saints in light:
+1:13 Who hath delivered us from the power of darkness, and hath translated
+us into the kingdom of his dear Son:
+1:14 In whom we have redemption through his blood, even the forgiveness of
+sins:
+1:15 Who is the image of the invisible God, the firstborn of every
+creature:
+1:16 For by him were all things created, that are in heaven, and that are
+in earth, visible and invisible, whether they be thrones, or dominions, or
+principalities, or powers: all things were created by him, and for him:
+1:17 And he is before all things, and by him all things consist.
+
+1:18 And he is the head of the body, the church: who is the beginning, the
+firstborn from the dead; that in all things he might have the preeminence.
+
+1:19 For it pleased the Father that in him should all fulness dwell;
+1:20 And, having made peace through the blood of his cross, by him to
+reconcile all things unto himself; by him, I say, whether they be things in
+earth, or things in heaven.
+
+1:21 And you, that were sometime alienated and enemies in your mind by
+wicked works, yet now hath he reconciled
+1:22 In the body of his flesh through death, to present you holy and
+unblameable and unreproveable in his sight:
+1:23 If ye continue in the faith grounded and settled, and be not moved
+away from the hope of the gospel, which ye have heard, and which was preached
+to every creature which is under heaven; whereof I Paul am made a minister;
+1:24 Who now rejoice in my sufferings for you, and fill up that which is
+behind of the afflictions of Christ in my flesh for his body's sake, which is
+the church:
+1:25 Whereof I am made a minister, according to the dispensation of God
+which is given to me for you, to fulfil the word of God;
+1:26 Even the mystery which hath been hid from ages and from generations,
+but now is made manifest to his saints:
+1:27 To whom God would make known what is the riches of the glory of this
+mystery among the Gentiles; which is Christ in you, the hope of glory:
+1:28 Whom we preach, warning every man, and teaching every man in all
+wisdom; that we may present every man perfect in Christ Jesus:
+1:29 Whereunto I also labour, striving according to his working, which
+worketh in me mightily.
+
+2:1 For I would that ye knew what great conflict I have for you, and for
+them at Laodicea, and for as many as have not seen my face in the flesh;
+2:2 That their hearts might be comforted, being knit together in love, and
+unto all riches of the full assurance of understanding, to the
+acknowledgement of the mystery of God, and of the Father, and of Christ;
+2:3 In whom are hid all the treasures of wisdom and knowledge.
+
+2:4 And this I say, lest any man should beguile you with enticing words.
+
+2:5 For though I be absent in the flesh, yet am I with you in the spirit,
+joying and beholding your order, and the stedfastness of your faith in
+Christ.
+
+2:6 As ye have therefore received Christ Jesus the Lord, so walk ye in
+him:
+2:7 Rooted and built up in him, and stablished in the faith, as ye have
+been taught, abounding therein with thanksgiving.
+
+2:8 Beware lest any man spoil you through philosophy and vain deceit,
+after the tradition of men, after the rudiments of the world, and not after
+Christ.
+
+2:9 For in him dwelleth all the fulness of the Godhead bodily.
+
+2:10 And ye are complete in him, which is the head of all principality and
+power:
+2:11 In whom also ye are circumcised with the circumcision made without
+hands, in putting off the body of the sins of the flesh by the circumcision
+of Christ:
+2:12 Buried with him in baptism, wherein also ye are risen with him
+through the faith of the operation of God, who hath raised him from the dead.
+
+2:13 And you, being dead in your sins and the uncircumcision of your
+flesh, hath he quickened together with him, having forgiven you all
+trespasses;
+2:14 Blotting out the handwriting of ordinances that was against us, which
+was contrary to us, and took it out of the way, nailing it to his cross;
+2:15 And having spoiled principalities and powers, he made a shew of them
+openly, triumphing over them in it.
+
+2:16 Let no man therefore judge you in meat, or in drink, or in respect of
+an holyday, or of the new moon, or of the sabbath days:
+2:17 Which are a shadow of things to come; but the body is of Christ.
+
+2:18 Let no man beguile you of your reward in a voluntary humility and
+worshipping of angels, intruding into those things which he hath not seen,
+vainly puffed up by his fleshly mind,
+2:19 And not holding the Head, from which all the body by joints and bands
+having nourishment ministered, and knit together, increaseth with the
+increase of God.
+
+2:20 Wherefore if ye be dead with Christ from the rudiments of the world,
+why, as though living in the world, are ye subject to ordinances,
+2:21 (Touch not; taste not; handle not;
+2:22 Which all are to perish with the using;) after the commandments and
+doctrines of men?
+2:23 Which things have indeed a shew of wisdom in will worship, and
+humility, and neglecting of the body: not in any honour to the satisfying
+of the flesh.
+
+3:1 If ye then be risen with Christ, seek those things which are above,
+where Christ sitteth on the right hand of God.
+
+3:2 Set your affection on things above, not on things on the earth.
+
+3:3 For ye are dead, and your life is hid with Christ in God.
+
+3:4 When Christ, who is our life, shall appear, then shall ye also appear
+with him in glory.
+
+3:5 Mortify therefore your members which are upon the earth; fornication,
+uncleanness, inordinate affection, evil concupiscence, and covetousness,
+which is idolatry:
+3:6 For which things' sake the wrath of God cometh on the children of
+disobedience:
+3:7 In the which ye also walked some time, when ye lived in them.
+
+3:8 But now ye also put off all these; anger, wrath, malice, blasphemy,
+filthy communication out of your mouth.
+
+3:9 Lie not one to another, seeing that ye have put off the old man with
+his deeds;
+3:10 And have put on the new man, which is renewed in knowledge after the
+image of him that created him:
+3:11 Where there is neither Greek nor Jew, circumcision nor
+uncircumcision, Barbarian, Scythian, bond nor free: but Christ is all, and in
+all.
+
+3:12 Put on therefore, as the elect of God, holy and beloved, bowels of
+mercies, kindness, humbleness of mind, meekness, longsuffering;
+3:13 Forbearing one another, and forgiving one another, if any man have a
+quarrel against any: even as Christ forgave you, so also do ye.
+
+3:14 And above all these things put on charity, which is the bond of
+perfectness.
+
+3:15 And let the peace of God rule in your hearts, to the which also ye
+are called in one body; and be ye thankful.
+
+3:16 Let the word of Christ dwell in you richly in all wisdom; teaching
+and admonishing one another in psalms and hymns and spiritual songs, singing
+with grace in your hearts to the Lord.
+
+3:17 And whatsoever ye do in word or deed, do all in the name of the Lord
+Jesus, giving thanks to God and the Father by him.
+
+3:18 Wives, submit yourselves unto your own husbands, as it is fit in the
+Lord.
+
+3:19 Husbands, love your wives, and be not bitter against them.
+
+3:20 Children, obey your parents in all things: for this is well pleasing
+unto the Lord.
+
+3:21 Fathers, provoke not your children to anger, lest they be
+discouraged.
+
+3:22 Servants, obey in all things your masters according to the flesh; not
+with eyeservice, as menpleasers; but in singleness of heart, fearing God;
+3:23 And whatsoever ye do, do it heartily, as to the Lord, and not unto
+men;
+3:24 Knowing that of the Lord ye shall receive the reward of the
+inheritance: for ye serve the Lord Christ.
+
+3:25 But he that doeth wrong shall receive for the wrong which he hath
+done: and there is no respect of persons.
+
+4:1 Masters, give unto your servants that which is just and equal; knowing
+that ye also have a Master in heaven.
+
+4:2 Continue in prayer, and watch in the same with thanksgiving;
+4:3 Withal praying also for us, that God would open unto us a door of
+utterance, to speak the mystery of Christ, for which I am also in bonds:
+4:4 That I may make it manifest, as I ought to speak.
+
+4:5 Walk in wisdom toward them that are without, redeeming the time.
+
+4:6 Let your speech be alway with grace, seasoned with salt, that ye may
+know how ye ought to answer every man.
+
+4:7 All my state shall Tychicus declare unto you, who is a beloved
+brother, and a faithful minister and fellowservant in the Lord:
+4:8 Whom I have sent unto you for the same purpose, that he might know
+your estate, and comfort your hearts;
+4:9 With Onesimus, a faithful and beloved brother, who is one of you. They
+shall make known unto you all things which are done here.
+
+4:10 Aristarchus my fellowprisoner saluteth you, and Marcus, sister's son
+to Barnabas, (touching whom ye received commandments: if he come unto you,
+receive him;)
+4:11 And Jesus, which is called Justus, who are of the circumcision. These
+only are my fellowworkers unto the kingdom of God, which have been a comfort
+unto me.
+
+4:12 Epaphras, who is one of you, a servant of Christ, saluteth you,
+always labouring fervently for you in prayers, that ye may stand perfect and
+complete in all the will of God.
+
+4:13 For I bear him record, that he hath a great zeal for you, and them
+that are in Laodicea, and them in Hierapolis.
+
+4:14 Luke, the beloved physician, and Demas, greet you.
+
+4:15 Salute the brethren which are in Laodicea, and Nymphas, and the
+church which is in his house.
+
+4:16 And when this epistle is read among you, cause that it be read also
+in the church of the Laodiceans; and that ye likewise read the epistle from
+Laodicea.
+
+4:17 And say to Archippus, Take heed to the ministry which thou hast
+received in the Lord, that thou fulfil it.
+
+4:18 The salutation by the hand of me Paul. Remember my bonds. Grace be
+with you. Amen.
+
+
+
+
+The First Epistle of Paul the Apostle to the Thessalonians
+
+
+1:1 Paul, and Silvanus, and Timotheus, unto the church of the
+Thessalonians which is in God the Father and in the Lord Jesus Christ:
+Grace be unto you, and peace, from God our Father, and the Lord Jesus
+Christ.
+
+1:2 We give thanks to God always for you all, making mention of you in
+our prayers; 1:3 Remembering without ceasing your work of faith, and
+labour of love, and patience of hope in our Lord Jesus Christ, in the
+sight of God and our Father; 1:4 Knowing, brethren beloved, your
+election of God.
+
+1:5 For our gospel came not unto you in word only, but also in power,
+and in the Holy Ghost, and in much assurance; as ye know what manner
+of men we were among you for your sake.
+
+1:6 And ye became followers of us, and of the Lord, having received
+the word in much affliction, with joy of the Holy Ghost.
+
+1:7 So that ye were ensamples to all that believe in Macedonia and
+Achaia.
+
+1:8 For from you sounded out the word of the Lord not only in
+Macedonia and Achaia, but also in every place your faith to God-ward
+is spread abroad; so that we need not to speak any thing.
+
+1:9 For they themselves shew of us what manner of entering in we had
+unto you, and how ye turned to God from idols to serve the living and
+true God; 1:10 And to wait for his Son from heaven, whom he raised
+from the dead, even Jesus, which delivered us from the wrath to come.
+
+2:1 For yourselves, brethren, know our entrance in unto you, that it
+was not in vain: 2:2 But even after that we had suffered before, and
+were shamefully entreated, as ye know, at Philippi, we were bold in
+our God to speak unto you the gospel of God with much contention.
+
+2:3 For our exhortation was not of deceit, nor of uncleanness, nor in
+guile: 2:4 But as we were allowed of God to be put in trust with the
+gospel, even so we speak; not as pleasing men, but God, which trieth
+our hearts.
+
+2:5 For neither at any time used we flattering words, as ye know, nor
+a cloke of covetousness; God is witness: 2:6 Nor of men sought we
+glory, neither of you, nor yet of others, when we might have been
+burdensome, as the apostles of Christ.
+
+2:7 But we were gentle among you, even as a nurse cherisheth her
+children: 2:8 So being affectionately desirous of you, we were willing
+to have imparted unto you, not the gospel of God only, but also our
+own souls, because ye were dear unto us.
+
+2:9 For ye remember, brethren, our labour and travail: for labouring
+night and day, because we would not be chargeable unto any of you, we
+preached unto you the gospel of God.
+
+2:10 Ye are witnesses, and God also, how holily and justly and
+unblameably we behaved ourselves among you that believe: 2:11 As ye
+know how we exhorted and comforted and charged every one of you, as a
+father doth his children, 2:12 That ye would walk worthy of God, who
+hath called you unto his kingdom and glory.
+
+2:13 For this cause also thank we God without ceasing, because, when
+ye received the word of God which ye heard of us, ye received it not
+as the word of men, but as it is in truth, the word of God, which
+effectually worketh also in you that believe.
+
+2:14 For ye, brethren, became followers of the churches of God which
+in Judaea are in Christ Jesus: for ye also have suffered like things
+of your own countrymen, even as they have of the Jews: 2:15 Who both
+killed the Lord Jesus, and their own prophets, and have persecuted us;
+and they please not God, and are contrary to all men: 2:16 Forbidding
+us to speak to the Gentiles that they might be saved, to fill up their
+sins alway: for the wrath is come upon them to the uttermost.
+
+2:17 But we, brethren, being taken from you for a short time in
+presence, not in heart, endeavoured the more abundantly to see your
+face with great desire.
+
+2:18 Wherefore we would have come unto you, even I Paul, once and
+again; but Satan hindered us.
+
+2:19 For what is our hope, or joy, or crown of rejoicing? Are not even
+ye in the presence of our Lord Jesus Christ at his coming? 2:20 For
+ye are our glory and joy.
+
+3:1 Wherefore when we could no longer forbear, we thought it good to
+be left at Athens alone; 3:2 And sent Timotheus, our brother, and
+minister of God, and our fellowlabourer in the gospel of Christ, to
+establish you, and to comfort you concerning your faith: 3:3 That no
+man should be moved by these afflictions: for yourselves know that we
+are appointed thereunto.
+
+3:4 For verily, when we were with you, we told you before that we
+should suffer tribulation; even as it came to pass, and ye know.
+
+3:5 For this cause, when I could no longer forbear, I sent to know
+your faith, lest by some means the tempter have tempted you, and our
+labour be in vain.
+
+3:6 But now when Timotheus came from you unto us, and brought us good
+tidings of your faith and charity, and that ye have good remembrance
+of us always, desiring greatly to see us, as we also to see you: 3:7
+Therefore, brethren, we were comforted over you in all our affliction
+and distress by your faith: 3:8 For now we live, if ye stand fast in
+the Lord.
+
+3:9 For what thanks can we render to God again for you, for all the
+joy wherewith we joy for your sakes before our God; 3:10 Night and day
+praying exceedingly that we might see your face, and might perfect
+that which is lacking in your faith? 3:11 Now God himself and our
+Father, and our Lord Jesus Christ, direct our way unto you.
+
+3:12 And the Lord make you to increase and abound in love one toward
+another, and toward all men, even as we do toward you: 3:13 To the end
+he may stablish your hearts unblameable in holiness before God, even
+our Father, at the coming of our Lord Jesus Christ with all his
+saints.
+
+4:1 Furthermore then we beseech you, brethren, and exhort you by the
+Lord Jesus, that as ye have received of us how ye ought to walk and to
+please God, so ye would abound more and more.
+
+4:2 For ye know what commandments we gave you by the Lord Jesus.
+
+4:3 For this is the will of God, even your sanctification, that ye
+should abstain from fornication: 4:4 That every one of you should know
+how to possess his vessel in sanctification and honour; 4:5 Not in the
+lust of concupiscence, even as the Gentiles which know not God: 4:6
+That no man go beyond and defraud his brother in any matter: because
+that the Lord is the avenger of all such, as we also have forewarned
+you and testified.
+
+4:7 For God hath not called us unto uncleanness, but unto holiness.
+
+4:8 He therefore that despiseth, despiseth not man, but God, who hath
+also given unto us his holy Spirit.
+
+4:9 But as touching brotherly love ye need not that I write unto you:
+for ye yourselves are taught of God to love one another.
+
+4:10 And indeed ye do it toward all the brethren which are in all
+Macedonia: but we beseech you, brethren, that ye increase more and
+more; 4:11 And that ye study to be quiet, and to do your own business,
+and to work with your own hands, as we commanded you; 4:12 That ye may
+walk honestly toward them that are without, and that ye may have lack
+of nothing.
+
+4:13 But I would not have you to be ignorant, brethren, concerning
+them which are asleep, that ye sorrow not, even as others which have
+no hope.
+
+4:14 For if we believe that Jesus died and rose again, even so them
+also which sleep in Jesus will God bring with him.
+
+4:15 For this we say unto you by the word of the Lord, that we which
+are alive and remain unto the coming of the Lord shall not prevent
+them which are asleep.
+
+4:16 For the Lord himself shall descend from heaven with a shout, with
+the voice of the archangel, and with the trump of God: and the dead in
+Christ shall rise first: 4:17 Then we which are alive and remain shall
+be caught up together with them in the clouds, to meet the Lord in the
+air: and so shall we ever be with the Lord.
+
+4:18 Wherefore comfort one another with these words.
+
+5:1 But of the times and the seasons, brethren, ye have no need that I
+write unto you.
+
+5:2 For yourselves know perfectly that the day of the Lord so cometh
+as a thief in the night.
+
+5:3 For when they shall say, Peace and safety; then sudden destruction
+cometh upon them, as travail upon a woman with child; and they shall
+not escape.
+
+5:4 But ye, brethren, are not in darkness, that that day should
+overtake you as a thief.
+
+5:5 Ye are all the children of light, and the children of the day: we
+are not of the night, nor of darkness.
+
+5:6 Therefore let us not sleep, as do others; but let us watch and be
+sober.
+
+5:7 For they that sleep sleep in the night; and they that be drunken
+are drunken in the night.
+
+5:8 But let us, who are of the day, be sober, putting on the
+breastplate of faith and love; and for an helmet, the hope of
+salvation.
+
+5:9 For God hath not appointed us to wrath, but to obtain salvation by
+our Lord Jesus Christ, 5:10 Who died for us, that, whether we wake or
+sleep, we should live together with him.
+
+5:11 Wherefore comfort yourselves together, and edify one another,
+even as also ye do.
+
+5:12 And we beseech you, brethren, to know them which labour among
+you, and are over you in the Lord, and admonish you; 5:13 And to
+esteem them very highly in love for their work's sake. And be at peace
+among yourselves.
+
+5:14 Now we exhort you, brethren, warn them that are unruly, comfort
+the feebleminded, support the weak, be patient toward all men.
+
+5:15 See that none render evil for evil unto any man; but ever follow
+that which is good, both among yourselves, and to all men.
+
+5:16 Rejoice evermore.
+
+5:17 Pray without ceasing.
+
+5:18 In every thing give thanks: for this is the will of God in Christ
+Jesus concerning you.
+
+5:19 Quench not the Spirit.
+
+5:20 Despise not prophesyings.
+
+5:21 Prove all things; hold fast that which is good.
+
+5:22 Abstain from all appearance of evil.
+
+5:23 And the very God of peace sanctify you wholly; and I pray God
+your whole spirit and soul and body be preserved blameless unto the
+coming of our Lord Jesus Christ.
+
+5:24 Faithful is he that calleth you, who also will do it.
+
+5:25 Brethren, pray for us.
+
+5:26 Greet all the brethren with an holy kiss.
+
+5:27 I charge you by the Lord that this epistle be read unto all the
+holy brethren.
+
+5:28 The grace of our Lord Jesus Christ be with you. Amen.
+
+
+
+
+The Second Epistle of Paul the Apostle to the Thessalonians
+
+
+1:1 Paul, and Silvanus, and Timotheus, unto the church of the
+Thessalonians in God our Father and the Lord Jesus Christ: 1:2 Grace
+unto you, and peace, from God our Father and the Lord Jesus Christ.
+
+1:3 We are bound to thank God always for you, brethren, as it is meet,
+because that your faith groweth exceedingly, and the charity of every
+one of you all toward each other aboundeth; 1:4 So that we ourselves
+glory in you in the churches of God for your patience and faith in all
+your persecutions and tribulations that ye endure: 1:5 Which is a
+manifest token of the righteous judgment of God, that ye may be
+counted worthy of the kingdom of God, for which ye also suffer: 1:6
+Seeing it is a righteous thing with God to recompense tribulation to
+them that trouble you; 1:7 And to you who are troubled rest with us,
+when the Lord Jesus shall be revealed from heaven with his mighty
+angels, 1:8 In flaming fire taking vengeance on them that know not
+God, and that obey not the gospel of our Lord Jesus Christ: 1:9 Who
+shall be punished with everlasting destruction from the presence of
+the Lord, and from the glory of his power; 1:10 When he shall come to
+be glorified in his saints, and to be admired in all them that believe
+(because our testimony among you was believed) in that day.
+
+1:11 Wherefore also we pray always for you, that our God would count
+you worthy of this calling, and fulfil all the good pleasure of his
+goodness, and the work of faith with power: 1:12 That the name of our
+Lord Jesus Christ may be glorified in you, and ye in him, according to
+the grace of our God and the Lord Jesus Christ.
+
+2:1 Now we beseech you, brethren, by the coming of our Lord Jesus
+Christ, and by our gathering together unto him, 2:2 That ye be not
+soon shaken in mind, or be troubled, neither by spirit, nor by word,
+nor by letter as from us, as that the day of Christ is at hand.
+
+2:3 Let no man deceive you by any means: for that day shall not come,
+except there come a falling away first, and that man of sin be
+revealed, the son of perdition; 2:4 Who opposeth and exalteth himself
+above all that is called God, or that is worshipped; so that he as God
+sitteth in the temple of God, shewing himself that he is God.
+
+2:5 Remember ye not, that, when I was yet with you, I told you these
+things? 2:6 And now ye know what withholdeth that he might be
+revealed in his time.
+
+2:7 For the mystery of iniquity doth already work: only he who now
+letteth will let, until he be taken out of the way.
+
+2:8 And then shall that Wicked be revealed, whom the Lord shall
+consume with the spirit of his mouth, and shall destroy with the
+brightness of his coming: 2:9 Even him, whose coming is after the
+working of Satan with all power and signs and lying wonders, 2:10 And
+with all deceivableness of unrighteousness in them that perish;
+because they received not the love of the truth, that they might be
+saved.
+
+2:11 And for this cause God shall send them strong delusion, that they
+should believe a lie: 2:12 That they all might be damned who believed
+not the truth, but had pleasure in unrighteousness.
+
+2:13 But we are bound to give thanks alway to God for you, brethren
+beloved of the Lord, because God hath from the beginning chosen you to
+salvation through sanctification of the Spirit and belief of the
+truth: 2:14 Whereunto he called you by our gospel, to the obtaining of
+the glory of our Lord Jesus Christ.
+
+2:15 Therefore, brethren, stand fast, and hold the traditions which ye
+have been taught, whether by word, or our epistle.
+
+2:16 Now our Lord Jesus Christ himself, and God, even our Father,
+which hath loved us, and hath given us everlasting consolation and
+good hope through grace, 2:17 Comfort your hearts, and stablish you in
+every good word and work.
+
+3:1 Finally, brethren, pray for us, that the word of the Lord may have
+free course, and be glorified, even as it is with you: 3:2 And that we
+may be delivered from unreasonable and wicked men: for all men have
+not faith.
+
+3:3 But the Lord is faithful, who shall stablish you, and keep you
+from evil.
+
+3:4 And we have confidence in the Lord touching you, that ye both do
+and will do the things which we command you.
+
+3:5 And the Lord direct your hearts into the love of God, and into the
+patient waiting for Christ.
+
+3:6 Now we command you, brethren, in the name of our Lord Jesus
+Christ, that ye withdraw yourselves from every brother that walketh
+disorderly, and not after the tradition which he received of us.
+
+3:7 For yourselves know how ye ought to follow us: for we behaved not
+ourselves disorderly among you; 3:8 Neither did we eat any man's bread
+for nought; but wrought with labour and travail night and day, that we
+might not be chargeable to any of you: 3:9 Not because we have not
+power, but to make ourselves an ensample unto you to follow us.
+
+3:10 For even when we were with you, this we commanded you, that if
+any would not work, neither should he eat.
+
+3:11 For we hear that there are some which walk among you disorderly,
+working not at all, but are busybodies.
+
+3:12 Now them that are such we command and exhort by our Lord Jesus
+Christ, that with quietness they work, and eat their own bread.
+
+3:13 But ye, brethren, be not weary in well doing.
+
+3:14 And if any man obey not our word by this epistle, note that man,
+and have no company with him, that he may be ashamed.
+
+3:15 Yet count him not as an enemy, but admonish him as a brother.
+
+3:16 Now the Lord of peace himself give you peace always by all means.
+The Lord be with you all.
+
+3:17 The salutation of Paul with mine own hand, which is the token in
+every epistle: so I write.
+
+3:18 The grace of our Lord Jesus Christ be with you all. Amen.
+
+
+
+
+The First Epistle of Paul the Apostle to Timothy
+
+
+1:1 Paul, an apostle of Jesus Christ by the commandment of God our
+Saviour, and Lord Jesus Christ, which is our hope; 1:2 Unto Timothy,
+my own son in the faith: Grace, mercy, and peace, from God our Father
+and Jesus Christ our Lord.
+
+1:3 As I besought thee to abide still at Ephesus, when I went into
+Macedonia, that thou mightest charge some that they teach no other
+doctrine, 1:4 Neither give heed to fables and endless genealogies,
+which minister questions, rather than godly edifying which is in
+faith: so do.
+
+1:5 Now the end of the commandment is charity out of a pure heart, and
+of a good conscience, and of faith unfeigned: 1:6 From which some
+having swerved have turned aside unto vain jangling; 1:7 Desiring to
+be teachers of the law; understanding neither what they say, nor
+whereof they affirm.
+
+1:8 But we know that the law is good, if a man use it lawfully; 1:9
+Knowing this, that the law is not made for a righteous man, but for
+the lawless and disobedient, for the ungodly and for sinners, for
+unholy and profane, for murderers of fathers and murderers of mothers,
+for manslayers, 1:10 For whoremongers, for them that defile themselves
+with mankind, for menstealers, for liars, for perjured persons, and if
+there be any other thing that is contrary to sound doctrine; 1:11
+According to the glorious gospel of the blessed God, which was
+committed to my trust.
+
+1:12 And I thank Christ Jesus our Lord, who hath enabled me, for that
+he counted me faithful, putting me into the ministry; 1:13 Who was
+before a blasphemer, and a persecutor, and injurious: but I obtained
+mercy, because I did it ignorantly in unbelief.
+
+1:14 And the grace of our Lord was exceeding abundant with faith and
+love which is in Christ Jesus.
+
+1:15 This is a faithful saying, and worthy of all acceptation, that
+Christ Jesus came into the world to save sinners; of whom I am chief.
+
+1:16 Howbeit for this cause I obtained mercy, that in me first Jesus
+Christ might shew forth all longsuffering, for a pattern to them which
+should hereafter believe on him to life everlasting.
+
+1:17 Now unto the King eternal, immortal, invisible, the only wise
+God, be honour and glory for ever and ever. Amen.
+
+1:18 This charge I commit unto thee, son Timothy, according to the
+prophecies which went before on thee, that thou by them mightest war a
+good warfare; 1:19 Holding faith, and a good conscience; which some
+having put away concerning faith have made shipwreck: 1:20 Of whom is
+Hymenaeus and Alexander; whom I have delivered unto Satan, that they
+may learn not to blaspheme.
+
+2:1 I exhort therefore, that, first of all, supplications, prayers,
+intercessions, and giving of thanks, be made for all men; 2:2 For
+kings, and for all that are in authority; that we may lead a quiet and
+peaceable life in all godliness and honesty.
+
+2:3 For this is good and acceptable in the sight of God our Saviour;
+2:4 Who will have all men to be saved, and to come unto the knowledge
+of the truth.
+
+2:5 For there is one God, and one mediator between God and men, the
+man Christ Jesus; 2:6 Who gave himself a ransom for all, to be
+testified in due time.
+
+2:7 Whereunto I am ordained a preacher, and an apostle, (I speak the
+truth in Christ, and lie not;) a teacher of the Gentiles in faith and
+verity.
+
+2:8 I will therefore that men pray every where, lifting up holy hands,
+without wrath and doubting.
+
+2:9 In like manner also, that women adorn themselves in modest
+apparel, with shamefacedness and sobriety; not with broided hair, or
+gold, or pearls, or costly array; 2:10 But (which becometh women
+professing godliness) with good works.
+
+2:11 Let the woman learn in silence with all subjection.
+
+2:12 But I suffer not a woman to teach, nor to usurp authority over
+the man, but to be in silence.
+
+2:13 For Adam was first formed, then Eve.
+
+2:14 And Adam was not deceived, but the woman being deceived was in
+the transgression.
+
+2:15 Notwithstanding she shall be saved in childbearing, if they
+continue in faith and charity and holiness with sobriety.
+
+3:1 This is a true saying, If a man desire the office of a bishop, he
+desireth a good work.
+
+3:2 A bishop then must be blameless, the husband of one wife,
+vigilant, sober, of good behaviour, given to hospitality, apt to
+teach; 3:3 Not given to wine, no striker, not greedy of filthy lucre;
+but patient, not a brawler, not covetous; 3:4 One that ruleth well his
+own house, having his children in subjection with all gravity; 3:5
+(For if a man know not how to rule his own house, how shall he take
+care of the church of God?) 3:6 Not a novice, lest being lifted up
+with pride he fall into the condemnation of the devil.
+
+3:7 Moreover he must have a good report of them which are without;
+lest he fall into reproach and the snare of the devil.
+
+3:8 Likewise must the deacons be grave, not doubletongued, not given
+to much wine, not greedy of filthy lucre; 3:9 Holding the mystery of
+the faith in a pure conscience.
+
+3:10 And let these also first be proved; then let them use the office
+of a deacon, being found blameless.
+
+3:11 Even so must their wives be grave, not slanderers, sober,
+faithful in all things.
+
+3:12 Let the deacons be the husbands of one wife, ruling their
+children and their own houses well.
+
+3:13 For they that have used the office of a deacon well purchase to
+themselves a good degree, and great boldness in the faith which is in
+Christ Jesus.
+
+3:14 These things write I unto thee, hoping to come unto thee shortly:
+3:15 But if I tarry long, that thou mayest know how thou oughtest to
+behave thyself in the house of God, which is the church of the living
+God, the pillar and ground of the truth.
+
+3:16 And without controversy great is the mystery of godliness: God
+was manifest in the flesh, justified in the Spirit, seen of angels,
+preached unto the Gentiles, believed on in the world, received up into
+glory.
+
+4:1 Now the Spirit speaketh expressly, that in the latter times some
+shall depart from the faith, giving heed to seducing spirits, and
+doctrines of devils; 4:2 Speaking lies in hypocrisy; having their
+conscience seared with a hot iron; 4:3 Forbidding to marry, and
+commanding to abstain from meats, which God hath created to be
+received with thanksgiving of them which believe and know the truth.
+
+4:4 For every creature of God is good, and nothing to be refused, if
+it be received with thanksgiving: 4:5 For it is sanctified by the word
+of God and prayer.
+
+4:6 If thou put the brethren in remembrance of these things, thou
+shalt be a good minister of Jesus Christ, nourished up in the words of
+faith and of good doctrine, whereunto thou hast attained.
+
+4:7 But refuse profane and old wives' fables, and exercise thyself
+rather unto godliness.
+
+4:8 For bodily exercise profiteth little: but godliness is profitable
+unto all things, having promise of the life that now is, and of that
+which is to come.
+
+4:9 This is a faithful saying and worthy of all acceptation.
+
+4:10 For therefore we both labour and suffer reproach, because we
+trust in the living God, who is the Saviour of all men, specially of
+those that believe.
+
+4:11 These things command and teach.
+
+4:12 Let no man despise thy youth; but be thou an example of the
+believers, in word, in conversation, in charity, in spirit, in faith,
+in purity.
+
+4:13 Till I come, give attendance to reading, to exhortation, to
+doctrine.
+
+4:14 Neglect not the gift that is in thee, which was given thee by
+prophecy, with the laying on of the hands of the presbytery.
+
+4:15 Meditate upon these things; give thyself wholly to them; that thy
+profiting may appear to all.
+
+4:16 Take heed unto thyself, and unto the doctrine; continue in them:
+for in doing this thou shalt both save thyself, and them that hear
+thee.
+
+5:1 Rebuke not an elder, but intreat him as a father; and the younger
+men as brethren; 5:2 The elder women as mothers; the younger as
+sisters, with all purity.
+
+5:3 Honour widows that are widows indeed.
+
+5:4 But if any widow have children or nephews, let them learn first to
+shew piety at home, and to requite their parents: for that is good and
+acceptable before God.
+
+5:5 Now she that is a widow indeed, and desolate, trusteth in God, and
+continueth in supplications and prayers night and day.
+
+5:6 But she that liveth in pleasure is dead while she liveth.
+
+5:7 And these things give in charge, that they may be blameless.
+
+5:8 But if any provide not for his own, and specially for those of his
+own house, he hath denied the faith, and is worse than an infidel.
+
+5:9 Let not a widow be taken into the number under threescore years
+old, having been the wife of one man.
+
+5:10 Well reported of for good works; if she have brought up children,
+if she have lodged strangers, if she have washed the saints' feet, if
+she have relieved the afflicted, if she have diligently followed every
+good work.
+
+5:11 But the younger widows refuse: for when they have begun to wax
+wanton against Christ, they will marry; 5:12 Having damnation, because
+they have cast off their first faith.
+
+5:13 And withal they learn to be idle, wandering about from house to
+house; and not only idle, but tattlers also and busybodies, speaking
+things which they ought not.
+
+5:14 I will therefore that the younger women marry, bear children,
+guide the house, give none occasion to the adversary to speak
+reproachfully.
+
+5:15 For some are already turned aside after Satan.
+
+5:16 If any man or woman that believeth have widows, let them relieve
+them, and let not the church be charged; that it may relieve them that
+are widows indeed.
+
+5:17 Let the elders that rule well be counted worthy of double honour,
+especially they who labour in the word and doctrine.
+
+5:18 For the scripture saith, Thou shalt not muzzle the ox that
+treadeth out the corn. And, The labourer is worthy of his reward.
+
+5:19 Against an elder receive not an accusation, but before two or
+three witnesses.
+
+5:20 Them that sin rebuke before all, that others also may fear.
+
+5:21 I charge thee before God, and the Lord Jesus Christ, and the
+elect angels, that thou observe these things without preferring one
+before another, doing nothing by partiality.
+
+5:22 Lay hands suddenly on no man, neither be partaker of other men's
+sins: keep thyself pure.
+
+5:23 Drink no longer water, but use a little wine for thy stomach's
+sake and thine often infirmities.
+
+5:24 Some men's sins are open beforehand, going before to judgment;
+and some men they follow after.
+
+5:25 Likewise also the good works of some are manifest beforehand; and
+they that are otherwise cannot be hid.
+
+6:1 Let as many servants as are under the yoke count their own masters
+worthy of all honour, that the name of God and his doctrine be not
+blasphemed.
+
+6:2 And they that have believing masters, let them not despise them,
+because they are brethren; but rather do them service, because they
+are faithful and beloved, partakers of the benefit. These things teach
+and exhort.
+
+6:3 If any man teach otherwise, and consent not to wholesome words,
+even the words of our Lord Jesus Christ, and to the doctrine which is
+according to godliness; 6:4 He is proud, knowing nothing, but doting
+about questions and strifes of words, whereof cometh envy, strife,
+railings, evil surmisings, 6:5 Perverse disputings of men of corrupt
+minds, and destitute of the truth, supposing that gain is godliness:
+from such withdraw thyself.
+
+6:6 But godliness with contentment is great gain.
+
+6:7 For we brought nothing into this world, and it is certain we can
+carry nothing out.
+
+6:8 And having food and raiment let us be therewith content.
+
+6:9 But they that will be rich fall into temptation and a snare, and
+into many foolish and hurtful lusts, which drown men in destruction
+and perdition.
+
+6:10 For the love of money is the root of all evil: which while some
+coveted after, they have erred from the faith, and pierced themselves
+through with many sorrows.
+
+6:11 But thou, O man of God, flee these things; and follow after
+righteousness, godliness, faith, love, patience, meekness.
+
+6:12 Fight the good fight of faith, lay hold on eternal life,
+whereunto thou art also called, and hast professed a good profession
+before many witnesses.
+
+6:13 I give thee charge in the sight of God, who quickeneth all
+things, and before Christ Jesus, who before Pontius Pilate witnessed a
+good confession; 6:14 That thou keep this commandment without spot,
+unrebukable, until the appearing of our Lord Jesus Christ: 6:15 Which
+in his times he shall shew, who is the blessed and only Potentate, the
+King of kings, and Lord of lords; 6:16 Who only hath immortality,
+dwelling in the light which no man can approach unto; whom no man hath
+seen, nor can see: to whom be honour and power everlasting. Amen.
+
+6:17 Charge them that are rich in this world, that they be not
+highminded, nor trust in uncertain riches, but in the living God, who
+giveth us richly all things to enjoy; 6:18 That they do good, that
+they be rich in good works, ready to distribute, willing to
+communicate; 6:19 Laying up in store for themselves a good foundation
+against the time to come, that they may lay hold on eternal life.
+
+6:20 O Timothy, keep that which is committed to thy trust, avoiding
+profane and vain babblings, and oppositions of science falsely so
+called: 6:21 Which some professing have erred concerning the faith.
+Grace be with thee. Amen.
+
+
+
+
+The Second Epistle of Paul the Apostle to Timothy
+
+
+1:1 Paul, an apostle of Jesus Christ by the will of God, according to
+the promise of life which is in Christ Jesus, 1:2 To Timothy,
+my dearly beloved son: Grace, mercy, and peace, from God the Father
+and Christ Jesus our Lord.
+
+1:3 I thank God, whom I serve from my forefathers with pure
+conscience, that without ceasing I have remembrance of thee in my
+prayers night and day; 1:4 Greatly desiring to see thee, being mindful
+of thy tears, that I may be filled with joy; 1:5 When I call to
+remembrance the unfeigned faith that is in thee, which dwelt first in
+thy grandmother Lois, and thy mother Eunice; and I am persuaded that
+in thee also.
+
+1:6 Wherefore I put thee in remembrance that thou stir up the gift of
+God, which is in thee by the putting on of my hands.
+
+1:7 For God hath not given us the spirit of fear; but of power, and of
+love, and of a sound mind.
+
+1:8 Be not thou therefore ashamed of the testimony of our Lord, nor of
+me his prisoner: but be thou partaker of the afflictions of the gospel
+according to the power of God; 1:9 Who hath saved us, and called us
+with an holy calling, not according to our works, but according to his
+own purpose and grace, which was given us in Christ Jesus before the
+world began, 1:10 But is now made manifest by the appearing of our
+Saviour Jesus Christ, who hath abolished death, and hath brought life
+and immortality to light through the gospel: 1:11 Whereunto I am
+appointed a preacher, and an apostle, and a teacher of the Gentiles.
+
+1:12 For the which cause I also suffer these things: nevertheless I am
+not ashamed: for I know whom I have believed, and am persuaded that he
+is able to keep that which I have committed unto him against that day.
+
+1:13 Hold fast the form of sound words, which thou hast heard of me,
+in faith and love which is in Christ Jesus.
+
+1:14 That good thing which was committed unto thee keep by the Holy
+Ghost which dwelleth in us.
+
+1:15 This thou knowest, that all they which are in Asia be turned away
+from me; of whom are Phygellus and Hermogenes.
+
+1:16 The Lord give mercy unto the house of Onesiphorus; for he oft
+refreshed me, and was not ashamed of my chain: 1:17 But, when he was
+in Rome, he sought me out very diligently, and found me.
+
+1:18 The Lord grant unto him that he may find mercy of the Lord in
+that day: and in how many things he ministered unto me at Ephesus,
+thou knowest very well.
+
+2:1 Thou therefore, my son, be strong in the grace that is in Christ
+Jesus.
+
+2:2 And the things that thou hast heard of me among many witnesses,
+the same commit thou to faithful men, who shall be able to teach
+others also.
+
+2:3 Thou therefore endure hardness, as a good soldier of Jesus Christ.
+
+2:4 No man that warreth entangleth himself with the affairs of this
+life; that he may please him who hath chosen him to be a soldier.
+
+2:5 And if a man also strive for masteries, yet is he not crowned,
+except he strive lawfully.
+
+2:6 The husbandman that laboureth must be first partaker of the
+fruits.
+
+2:7 Consider what I say; and the Lord give thee understanding in all
+things.
+
+2:8 Remember that Jesus Christ of the seed of David was raised from
+the dead according to my gospel: 2:9 Wherein I suffer trouble, as an
+evil doer, even unto bonds; but the word of God is not bound.
+
+2:10 Therefore I endure all things for the elect's sakes, that they
+may also obtain the salvation which is in Christ Jesus with eternal
+glory.
+
+2:11 It is a faithful saying: For if we be dead with him, we shall
+also live with him: 2:12 If we suffer, we shall also reign with him:
+if we deny him, he also will deny us: 2:13 If we believe not, yet he
+abideth faithful: he cannot deny himself.
+
+2:14 Of these things put them in remembrance, charging them before the
+Lord that they strive not about words to no profit, but to the
+subverting of the hearers.
+
+2:15 Study to shew thyself approved unto God, a workman that needeth
+not to be ashamed, rightly dividing the word of truth.
+
+2:16 But shun profane and vain babblings: for they will increase unto
+more ungodliness.
+
+2:17 And their word will eat as doth a canker: of whom is Hymenaeus
+and Philetus; 2:18 Who concerning the truth have erred, saying that
+the resurrection is past already; and overthrow the faith of some.
+
+2:19 Nevertheless the foundation of God standeth sure, having this
+seal, The Lord knoweth them that are his. And, Let every one that
+nameth the name of Christ depart from iniquity.
+
+2:20 But in a great house there are not only vessels of gold and of
+silver, but also of wood and of earth; and some to honour, and some to
+dishonour.
+
+2:21 If a man therefore purge himself from these, he shall be a vessel
+unto honour, sanctified, and meet for the master's use, and prepared
+unto every good work.
+
+2:22 Flee also youthful lusts: but follow righteousness, faith,
+charity, peace, with them that call on the Lord out of a pure heart.
+
+2:23 But foolish and unlearned questions avoid, knowing that they do
+gender strifes.
+
+2:24 And the servant of the Lord must not strive; but be gentle unto
+all men, apt to teach, patient, 2:25 In meekness instructing those
+that oppose themselves; if God peradventure will give them repentance
+to the acknowledging of the truth; 2:26 And that they may recover
+themselves out of the snare of the devil, who are taken captive by him
+at his will.
+
+3:1 This know also, that in the last days perilous times shall come.
+
+3:2 For men shall be lovers of their own selves, covetous, boasters,
+proud, blasphemers, disobedient to parents, unthankful, unholy, 3:3
+Without natural affection, trucebreakers, false accusers, incontinent,
+fierce, despisers of those that are good, 3:4 Traitors, heady,
+highminded, lovers of pleasures more than lovers of God; 3:5 Having a
+form of godliness, but denying the power thereof: from such turn away.
+
+3:6 For of this sort are they which creep into houses, and lead
+captive silly women laden with sins, led away with divers lusts, 3:7
+Ever learning, and never able to come to the knowledge of the truth.
+
+3:8 Now as Jannes and Jambres withstood Moses, so do these also resist
+the truth: men of corrupt minds, reprobate concerning the faith.
+
+3:9 But they shall proceed no further: for their folly shall be
+manifest unto all men, as their's also was.
+
+3:10 But thou hast fully known my doctrine, manner of life, purpose,
+faith, longsuffering, charity, patience, 3:11 Persecutions,
+afflictions, which came unto me at Antioch, at Iconium, at Lystra;
+what persecutions I endured: but out of them all the Lord delivered
+me.
+
+3:12 Yea, and all that will live godly in Christ Jesus shall suffer
+persecution.
+
+3:13 But evil men and seducers shall wax worse and worse, deceiving,
+and being deceived.
+
+3:14 But continue thou in the things which thou hast learned and hast
+been assured of, knowing of whom thou hast learned them; 3:15 And that
+from a child thou hast known the holy scriptures, which are able to
+make thee wise unto salvation through faith which is in Christ Jesus.
+
+3:16 All scripture is given by inspiration of God, and is profitable
+for doctrine, for reproof, for correction, for instruction in
+righteousness: 3:17 That the man of God may be perfect, throughly
+furnished unto all good works.
+
+4:1 I charge thee therefore before God, and the Lord Jesus Christ, who
+shall judge the quick and the dead at his appearing and his kingdom;
+4:2 Preach the word; be instant in season, out of season; reprove,
+rebuke, exhort with all longsuffering and doctrine.
+
+4:3 For the time will come when they will not endure sound doctrine;
+but after their own lusts shall they heap to themselves teachers,
+having itching ears; 4:4 And they shall turn away their ears from the
+truth, and shall be turned unto fables.
+
+4:5 But watch thou in all things, endure afflictions, do the work of
+an evangelist, make full proof of thy ministry.
+
+4:6 For I am now ready to be offered, and the time of my departure is
+at hand.
+
+4:7 I have fought a good fight, I have finished my course, I have kept
+the faith: 4:8 Henceforth there is laid up for me a crown of
+righteousness, which the Lord, the righteous judge, shall give me at
+that day: and not to me only, but unto all them also that love his
+appearing.
+
+4:9 Do thy diligence to come shortly unto me: 4:10 For Demas hath
+forsaken me, having loved this present world, and is departed unto
+Thessalonica; Crescens to Galatia, Titus unto Dalmatia.
+
+4:11 Only Luke is with me. Take Mark, and bring him with thee: for he
+is profitable to me for the ministry.
+
+4:12 And Tychicus have I sent to Ephesus.
+
+4:13 The cloke that I left at Troas with Carpus, when thou comest,
+bring with thee, and the books, but especially the parchments.
+
+4:14 Alexander the coppersmith did me much evil: the Lord reward him
+according to his works: 4:15 Of whom be thou ware also; for he hath
+greatly withstood our words.
+
+4:16 At my first answer no man stood with me, but all men forsook me:
+I pray God that it may not be laid to their charge.
+
+4:17 Notwithstanding the Lord stood with me, and strengthened me; that
+by me the preaching might be fully known, and that all the Gentiles
+might hear: and I was delivered out of the mouth of the lion.
+
+4:18 And the Lord shall deliver me from every evil work, and will
+preserve me unto his heavenly kingdom: to whom be glory for ever and
+ever. Amen.
+
+4:19 Salute Prisca and Aquila, and the household of Onesiphorus.
+
+4:20 Erastus abode at Corinth: but Trophimus have I left at Miletum
+sick.
+
+4:21 Do thy diligence to come before winter. Eubulus greeteth thee,
+and Pudens, and Linus, and Claudia, and all the brethren.
+
+4:22 The Lord Jesus Christ be with thy spirit. Grace be with you.
+Amen.
+
+
+
+
+The Epistle of Paul the Apostle to Titus
+
+
+1:1 Paul, a servant of God, and an apostle of Jesus Christ, according
+to the faith of God's elect, and the acknowledging of the truth which
+is after godliness; 1:2 In hope of eternal life, which God, that
+cannot lie, promised before the world began; 1:3 But hath in due times
+manifested his word through preaching, which is committed unto me
+according to the commandment of God our Saviour; 1:4 To Titus, mine
+own son after the common faith: Grace, mercy, and peace, from God the
+Father and the Lord Jesus Christ our Saviour.
+
+1:5 For this cause left I thee in Crete, that thou shouldest set in
+order the things that are wanting, and ordain elders in every city, as
+I had appointed thee: 1:6 If any be blameless, the husband of one
+wife, having faithful children not accused of riot or unruly.
+
+1:7 For a bishop must be blameless, as the steward of God; not
+selfwilled, not soon angry, not given to wine, no striker, not given
+to filthy lucre; 1:8 But a lover of hospitality, a lover of good men,
+sober, just, holy, temperate; 1:9 Holding fast the faithful word as he
+hath been taught, that he may be able by sound doctrine both to exhort
+and to convince the gainsayers.
+
+1:10 For there are many unruly and vain talkers and deceivers,
+specially they of the circumcision: 1:11 Whose mouths must be stopped,
+who subvert whole houses, teaching things which they ought not, for
+filthy lucre's sake.
+
+1:12 One of themselves, even a prophet of their own, said, The
+Cretians are alway liars, evil beasts, slow bellies.
+
+1:13 This witness is true. Wherefore rebuke them sharply, that they
+may be sound in the faith; 1:14 Not giving heed to Jewish fables, and
+commandments of men, that turn from the truth.
+
+1:15 Unto the pure all things are pure: but unto them that are defiled
+and unbelieving is nothing pure; but even their mind and conscience is
+defiled.
+
+1:16 They profess that they know God; but in works they deny him,
+being abominable, and disobedient, and unto every good work reprobate.
+
+2:1 But speak thou the things which become sound doctrine: 2:2 That
+the aged men be sober, grave, temperate, sound in faith, in charity,
+in patience.
+
+2:3 The aged women likewise, that they be in behaviour as becometh
+holiness, not false accusers, not given to much wine, teachers of good
+things; 2:4 That they may teach the young women to be sober, to love
+their husbands, to love their children, 2:5 To be discreet, chaste,
+keepers at home, good, obedient to their own husbands, that the word
+of God be not blasphemed.
+
+2:6 Young men likewise exhort to be sober minded.
+
+2:7 In all things shewing thyself a pattern of good works: in doctrine
+shewing uncorruptness, gravity, sincerity, 2:8 Sound speech, that
+cannot be condemned; that he that is of the contrary part may be
+ashamed, having no evil thing to say of you.
+
+2:9 Exhort servants to be obedient unto their own masters, and to
+please them well in all things; not answering again; 2:10 Not
+purloining, but shewing all good fidelity; that they may adorn the
+doctrine of God our Saviour in all things.
+
+2:11 For the grace of God that bringeth salvation hath appeared to all
+men, 2:12 Teaching us that, denying ungodliness and worldly lusts, we
+should live soberly, righteously, and godly, in this present world;
+2:13 Looking for that blessed hope, and the glorious appearing of the
+great God and our Saviour Jesus Christ; 2:14 Who gave himself for us,
+that he might redeem us from all iniquity, and purify unto himself a
+peculiar people, zealous of good works.
+
+2:15 These things speak, and exhort, and rebuke with all authority.
+Let no man despise thee.
+
+3:1 Put them in mind to be subject to principalities and powers, to
+obey magistrates, to be ready to every good work, 3:2 To speak evil of
+no man, to be no brawlers, but gentle, shewing all meekness unto all
+men.
+
+3:3 For we ourselves also were sometimes foolish, disobedient,
+deceived, serving divers lusts and pleasures, living in malice and
+envy, hateful, and hating one another.
+
+3:4 But after that the kindness and love of God our Saviour toward man
+appeared, 3:5 Not by works of righteousness which we have done, but
+according to his mercy he saved us, by the washing of regeneration,
+and renewing of the Holy Ghost; 3:6 Which he shed on us abundantly
+through Jesus Christ our Saviour; 3:7 That being justified by his
+grace, we should be made heirs according to the hope of eternal life.
+
+3:8 This is a faithful saying, and these things I will that thou
+affirm constantly, that they which have believed in God might be
+careful to maintain good works. These things are good and profitable
+unto men.
+
+3:9 But avoid foolish questions, and genealogies, and contentions, and
+strivings about the law; for they are unprofitable and vain.
+
+3:10 A man that is an heretick after the first and second admonition
+reject; 3:11 Knowing that he that is such is subverted, and sinneth,
+being condemned of himself.
+
+3:12 When I shall send Artemas unto thee, or Tychicus, be diligent to
+come unto me to Nicopolis: for I have determined there to winter.
+
+3:13 Bring Zenas the lawyer and Apollos on their journey diligently,
+that nothing be wanting unto them.
+
+3:14 And let our's also learn to maintain good works for necessary
+uses, that they be not unfruitful.
+
+3:15 All that are with me salute thee. Greet them that love us in the
+faith. Grace be with you all. Amen.
+
+
+
+
+The Epistle of Paul the Apostle to Philemon
+
+
+1:1 Paul, a prisoner of Jesus Christ, and Timothy our brother, unto
+Philemon our dearly beloved, and fellowlabourer, 1:2 And to our
+beloved Apphia, and Archippus our fellowsoldier, and to the church in
+thy house: 1:3 Grace to you, and peace, from God our Father and the
+Lord Jesus Christ.
+
+1:4 I thank my God, making mention of thee always in my prayers, 1:5
+Hearing of thy love and faith, which thou hast toward the Lord Jesus,
+and toward all saints; 1:6 That the communication of thy faith may
+become effectual by the acknowledging of every good thing which is in
+you in Christ Jesus.
+
+1:7 For we have great joy and consolation in thy love, because the
+bowels of the saints are refreshed by thee, brother.
+
+1:8 Wherefore, though I might be much bold in Christ to enjoin thee
+that which is convenient, 1:9 Yet for love's sake I rather beseech
+thee, being such an one as Paul the aged, and now also a prisoner of
+Jesus Christ.
+
+1:10 I beseech thee for my son Onesimus, whom I have begotten in my
+bonds: 1:11 Which in time past was to thee unprofitable, but now
+profitable to thee and to me: 1:12 Whom I have sent again: thou
+therefore receive him, that is, mine own bowels: 1:13 Whom I would
+have retained with me, that in thy stead he might have ministered unto
+me in the bonds of the gospel: 1:14 But without thy mind would I do
+nothing; that thy benefit should not be as it were of necessity, but
+willingly.
+
+1:15 For perhaps he therefore departed for a season, that thou
+shouldest receive him for ever; 1:16 Not now as a servant, but above a
+servant, a brother beloved, specially to me, but how much more unto
+thee, both in the flesh, and in the Lord? 1:17 If thou count me
+therefore a partner, receive him as myself.
+
+1:18 If he hath wronged thee, or oweth thee ought, put that on mine
+account; 1:19 I Paul have written it with mine own hand, I will repay
+it: albeit I do not say to thee how thou owest unto me even thine own
+self besides.
+
+1:20 Yea, brother, let me have joy of thee in the Lord: refresh my
+bowels in the Lord.
+
+1:21 Having confidence in thy obedience I wrote unto thee, knowing
+that thou wilt also do more than I say.
+
+1:22 But withal prepare me also a lodging: for I trust that through
+your prayers I shall be given unto you.
+
+1:23 There salute thee Epaphras, my fellowprisoner in Christ Jesus;
+1:24 Marcus, Aristarchus, Demas, Lucas, my fellowlabourers.
+
+1:25 The grace of our Lord Jesus Christ be with your spirit. Amen.
+
+
+
+
+The Epistle of Paul the Apostle to the Hebrews
+
+
+1:1 God, who at sundry times and in divers manners spake in time past
+unto the fathers by the prophets, 1:2 Hath in these last days spoken
+unto us by his Son, whom he hath appointed heir of all things, by whom
+also he made the worlds; 1:3 Who being the brightness of his glory,
+and the express image of his person, and upholding all things by the
+word of his power, when he had by himself purged our sins, sat down on
+the right hand of the Majesty on high: 1:4 Being made so much better
+than the angels, as he hath by inheritance obtained a more excellent
+name than they.
+
+1:5 For unto which of the angels said he at any time, Thou art my Son,
+this day have I begotten thee? And again, I will be to him a Father,
+and he shall be to me a Son? 1:6 And again, when he bringeth in the
+firstbegotten into the world, he saith, And let all the angels of God
+worship him.
+
+1:7 And of the angels he saith, Who maketh his angels spirits, and his
+ministers a flame of fire.
+
+1:8 But unto the Son he saith, Thy throne, O God, is for ever and
+ever: a sceptre of righteousness is the sceptre of thy kingdom.
+
+1:9 Thou hast loved righteousness, and hated iniquity; therefore God,
+even thy God, hath anointed thee with the oil of gladness above thy
+fellows.
+
+1:10 And, Thou, Lord, in the beginning hast laid the foundation of the
+earth; and the heavens are the works of thine hands: 1:11 They shall
+perish; but thou remainest; and they all shall wax old as doth a
+garment; 1:12 And as a vesture shalt thou fold them up, and they shall
+be changed: but thou art the same, and thy years shall not fail.
+
+1:13 But to which of the angels said he at any time, Sit on my right
+hand, until I make thine enemies thy footstool? 1:14 Are they not all
+ministering spirits, sent forth to minister for them who shall be
+heirs of salvation? 2:1 Therefore we ought to give the more earnest
+heed to the things which we have heard, lest at any time we should let
+them slip.
+
+2:2 For if the word spoken by angels was stedfast, and every
+transgression and disobedience received a just recompence of reward;
+2:3 How shall we escape, if we neglect so great salvation; which at
+the first began to be spoken by the Lord, and was confirmed unto us by
+them that heard him; 2:4 God also bearing them witness, both with
+signs and wonders, and with divers miracles, and gifts of the Holy
+Ghost, according to his own will? 2:5 For unto the angels hath he not
+put in subjection the world to come, whereof we speak.
+
+2:6 But one in a certain place testified, saying, What is man, that
+thou art mindful of him? or the son of man that thou visitest him?
+2:7 Thou madest him a little lower than the angels; thou crownedst him
+with glory and honour, and didst set him over the works of thy hands:
+2:8 Thou hast put all things in subjection under his feet. For in that
+he put all in subjection under him, he left nothing that is not put
+under him.
+
+But now we see not yet all things put under him.
+
+2:9 But we see Jesus, who was made a little lower than the angels for
+the suffering of death, crowned with glory and honour; that he by the
+grace of God should taste death for every man.
+
+2:10 For it became him, for whom are all things, and by whom are all
+things, in bringing many sons unto glory, to make the captain of their
+salvation perfect through sufferings.
+
+2:11 For both he that sanctifieth and they who are sanctified are all
+of one: for which cause he is not ashamed to call them brethren, 2:12
+Saying, I will declare thy name unto my brethren, in the midst of the
+church will I sing praise unto thee.
+
+2:13 And again, I will put my trust in him. And again, Behold I and
+the children which God hath given me.
+
+2:14 Forasmuch then as the children are partakers of flesh and blood,
+he also himself likewise took part of the same; that through death he
+might destroy him that had the power of death, that is, the devil;
+2:15 And deliver them who through fear of death were all their
+lifetime subject to bondage.
+
+2:16 For verily he took not on him the nature of angels; but he took
+on him the seed of Abraham.
+
+2:17 Wherefore in all things it behoved him to be made like unto his
+brethren, that he might be a merciful and faithful high priest in
+things pertaining to God, to make reconciliation for the sins of the
+people.
+
+2:18 For in that he himself hath suffered being tempted, he is able to
+succour them that are tempted.
+
+3:1 Wherefore, holy brethren, partakers of the heavenly calling,
+consider the Apostle and High Priest of our profession, Christ Jesus;
+3:2 Who was faithful to him that appointed him, as also Moses was
+faithful in all his house.
+
+3:3 For this man was counted worthy of more glory than Moses, inasmuch
+as he who hath builded the house hath more honour than the house.
+
+3:4 For every house is builded by some man; but he that built all
+things is God.
+
+3:5 And Moses verily was faithful in all his house, as a servant, for
+a testimony of those things which were to be spoken after; 3:6 But
+Christ as a son over his own house; whose house are we, if we hold
+fast the confidence and the rejoicing of the hope firm unto the end.
+
+3:7 Wherefore (as the Holy Ghost saith, To day if ye will hear his
+voice, 3:8 Harden not your hearts, as in the provocation, in the day
+of temptation in the wilderness: 3:9 When your fathers tempted me,
+proved me, and saw my works forty years.
+
+3:10 Wherefore I was grieved with that generation, and said, They do
+alway err in their heart; and they have not known my ways.
+
+3:11 So I sware in my wrath, They shall not enter into my rest.) 3:12
+Take heed, brethren, lest there be in any of you an evil heart of
+unbelief, in departing from the living God.
+
+3:13 But exhort one another daily, while it is called To day; lest any
+of you be hardened through the deceitfulness of sin.
+
+3:14 For we are made partakers of Christ, if we hold the beginning of
+our confidence stedfast unto the end; 3:15 While it is said, To day if
+ye will hear his voice, harden not your hearts, as in the provocation.
+
+3:16 For some, when they had heard, did provoke: howbeit not all that
+came out of Egypt by Moses.
+
+3:17 But with whom was he grieved forty years? was it not with them
+that had sinned, whose carcases fell in the wilderness? 3:18 And to
+whom sware he that they should not enter into his rest, but to them
+that believed not? 3:19 So we see that they could not enter in
+because of unbelief.
+
+4:1 Let us therefore fear, lest, a promise being left us of entering
+into his rest, any of you should seem to come short of it.
+
+4:2 For unto us was the gospel preached, as well as unto them: but the
+word preached did not profit them, not being mixed with faith in them
+that heard it.
+
+4:3 For we which have believed do enter into rest, as he said, As I
+have sworn in my wrath, if they shall enter into my rest: although the
+works were finished from the foundation of the world.
+
+4:4 For he spake in a certain place of the seventh day on this wise,
+And God did rest the seventh day from all his works.
+
+4:5 And in this place again, If they shall enter into my rest.
+
+4:6 Seeing therefore it remaineth that some must enter therein, and
+they to whom it was first preached entered not in because of unbelief:
+4:7 Again, he limiteth a certain day, saying in David, To day, after
+so long a time; as it is said, To day if ye will hear his voice,
+harden not your hearts.
+
+4:8 For if Jesus had given them rest, then would he not afterward have
+spoken of another day.
+
+4:9 There remaineth therefore a rest to the people of God.
+
+4:10 For he that is entered into his rest, he also hath ceased from
+his own works, as God did from his.
+
+4:11 Let us labour therefore to enter into that rest, lest any man
+fall after the same example of unbelief.
+
+4:12 For the word of God is quick, and powerful, and sharper than any
+twoedged sword, piercing even to the dividing asunder of soul and
+spirit, and of the joints and marrow, and is a discerner of the
+thoughts and intents of the heart.
+
+4:13 Neither is there any creature that is not manifest in his sight:
+but all things are naked and opened unto the eyes of him with whom we
+have to do.
+
+4:14 Seeing then that we have a great high priest, that is passed into
+the heavens, Jesus the Son of God, let us hold fast our profession.
+
+4:15 For we have not an high priest which cannot be touched with the
+feeling of our infirmities; but was in all points tempted like as we
+are, yet without sin.
+
+4:16 Let us therefore come boldly unto the throne of grace, that we
+may obtain mercy, and find grace to help in time of need.
+
+5:1 For every high priest taken from among men is ordained for men in
+things pertaining to God, that he may offer both gifts and sacrifices
+for sins: 5:2 Who can have compassion on the ignorant, and on them
+that are out of the way; for that he himself also is compassed with
+infirmity.
+
+5:3 And by reason hereof he ought, as for the people, so also for
+himself, to offer for sins.
+
+5:4 And no man taketh this honour unto himself, but he that is called
+of God, as was Aaron.
+
+5:5 So also Christ glorified not himself to be made an high priest;
+but he that said unto him, Thou art my Son, to day have I begotten
+thee.
+
+5:6 As he saith also in another place, Thou art a priest for ever
+after the order of Melchisedec.
+
+5:7 Who in the days of his flesh, when he had offered up prayers and
+supplications with strong crying and tears unto him that was able to
+save him from death, and was heard in that he feared; 5:8 Though he
+were a Son, yet learned he obedience by the things which he suffered;
+5:9 And being made perfect, he became the author of eternal salvation
+unto all them that obey him; 5:10 Called of God an high priest after
+the order of Melchisedec.
+
+5:11 Of whom we have many things to say, and hard to be uttered,
+seeing ye are dull of hearing.
+
+5:12 For when for the time ye ought to be teachers, ye have need that
+one teach you again which be the first principles of the oracles of
+God; and are become such as have need of milk, and not of strong meat.
+
+5:13 For every one that useth milk is unskilful in the word of
+righteousness: for he is a babe.
+
+5:14 But strong meat belongeth to them that are of full age, even
+those who by reason of use have their senses exercised to discern both
+good and evil.
+
+6:1 Therefore leaving the principles of the doctrine of Christ, let us
+go on unto perfection; not laying again the foundation of repentance
+from dead works, and of faith toward God, 6:2 Of the doctrine of
+baptisms, and of laying on of hands, and of resurrection of the dead,
+and of eternal judgment.
+
+6:3 And this will we do, if God permit.
+
+6:4 For it is impossible for those who were once enlightened, and have
+tasted of the heavenly gift, and were made partakers of the Holy
+Ghost, 6:5 And have tasted the good word of God, and the powers of the
+world to come, 6:6 If they shall fall away, to renew them again unto
+repentance; seeing they crucify to themselves the Son of God afresh,
+and put him to an open shame.
+
+6:7 For the earth which drinketh in the rain that cometh oft upon it,
+and bringeth forth herbs meet for them by whom it is dressed,
+receiveth blessing from God: 6:8 But that which beareth thorns and
+briers is rejected, and is nigh unto cursing; whose end is to be
+burned.
+
+6:9 But, beloved, we are persuaded better things of you, and things
+that accompany salvation, though we thus speak.
+
+6:10 For God is not unrighteous to forget your work and labour of
+love, which ye have shewed toward his name, in that ye have ministered
+to the saints, and do minister.
+
+6:11 And we desire that every one of you do shew the same diligence to
+the full assurance of hope unto the end: 6:12 That ye be not slothful,
+but followers of them who through faith and patience inherit the
+promises.
+
+6:13 For when God made promise to Abraham, because he could swear by
+no greater, he sware by himself, 6:14 Saying, Surely blessing I will
+bless thee, and multiplying I will multiply thee.
+
+6:15 And so, after he had patiently endured, he obtained the promise.
+
+6:16 For men verily swear by the greater: and an oath for confirmation
+is to them an end of all strife.
+
+6:17 Wherein God, willing more abundantly to shew unto the heirs of
+promise the immutability of his counsel, confirmed it by an oath: 6:18
+That by two immutable things, in which it was impossible for God to
+lie, we might have a strong consolation, who have fled for refuge to
+lay hold upon the hope set before us: 6:19 Which hope we have as an
+anchor of the soul, both sure and stedfast, and which entereth into
+that within the veil; 6:20 Whither the forerunner is for us entered,
+even Jesus, made an high priest for ever after the order of
+Melchisedec.
+
+7:1 For this Melchisedec, king of Salem, priest of the most high God,
+who met Abraham returning from the slaughter of the kings, and blessed
+him; 7:2 To whom also Abraham gave a tenth part of all; first being by
+interpretation King of righteousness, and after that also King of
+Salem, which is, King of peace; 7:3 Without father, without mother,
+without descent, having neither beginning of days, nor end of life;
+but made like unto the Son of God; abideth a priest continually.
+
+7:4 Now consider how great this man was, unto whom even the patriarch
+Abraham gave the tenth of the spoils.
+
+7:5 And verily they that are of the sons of Levi, who receive the
+office of the priesthood, have a commandment to take tithes of the
+people according to the law, that is, of their brethren, though they
+come out of the loins of Abraham: 7:6 But he whose descent is not
+counted from them received tithes of Abraham, and blessed him that had
+the promises.
+
+7:7 And without all contradiction the less is blessed of the better.
+
+7:8 And here men that die receive tithes; but there he receiveth them,
+of whom it is witnessed that he liveth.
+
+7:9 And as I may so say, Levi also, who receiveth tithes, payed tithes
+in Abraham.
+
+7:10 For he was yet in the loins of his father, when Melchisedec met
+him.
+
+7:11 If therefore perfection were by the Levitical priesthood, (for
+under it the people received the law,) what further need was there
+that another priest should rise after the order of Melchisedec, and
+not be called after the order of Aaron? 7:12 For the priesthood being
+changed, there is made of necessity a change also of the law.
+
+7:13 For he of whom these things are spoken pertaineth to another
+tribe, of which no man gave attendance at the altar.
+
+7:14 For it is evident that our Lord sprang out of Juda; of which
+tribe Moses spake nothing concerning priesthood.
+
+7:15 And it is yet far more evident: for that after the similitude of
+Melchisedec there ariseth another priest, 7:16 Who is made, not after
+the law of a carnal commandment, but after the power of an endless
+life.
+
+7:17 For he testifieth, Thou art a priest for ever after the order of
+Melchisedec.
+
+7:18 For there is verily a disannulling of the commandment going
+before for the weakness and unprofitableness thereof.
+
+7:19 For the law made nothing perfect, but the bringing in of a better
+hope did; by the which we draw nigh unto God.
+
+7:20 And inasmuch as not without an oath he was made priest: 7:21 (For
+those priests were made without an oath; but this with an oath by him
+that said unto him, The Lord sware and will not repent, Thou art a
+priest for ever after the order of Melchisedec:) 7:22 By so much was
+Jesus made a surety of a better testament.
+
+7:23 And they truly were many priests, because they were not suffered
+to continue by reason of death: 7:24 But this man, because he
+continueth ever, hath an unchangeable priesthood.
+
+7:25 Wherefore he is able also to save them to the uttermost that come
+unto God by him, seeing he ever liveth to make intercession for them.
+
+7:26 For such an high priest became us, who is holy, harmless,
+undefiled, separate from sinners, and made higher than the heavens;
+7:27 Who needeth not daily, as those high priests, to offer up
+sacrifice, first for his own sins, and then for the people's: for this
+he did once, when he offered up himself.
+
+7:28 For the law maketh men high priests which have infirmity; but the
+word of the oath, which was since the law, maketh the Son, who is
+consecrated for evermore.
+
+8:1 Now of the things which we have spoken this is the sum: We have
+such an high priest, who is set on the right hand of the throne of the
+Majesty in the heavens; 8:2 A minister of the sanctuary, and of the
+true tabernacle, which the Lord pitched, and not man.
+
+8:3 For every high priest is ordained to offer gifts and sacrifices:
+wherefore it is of necessity that this man have somewhat also to
+offer.
+
+8:4 For if he were on earth, he should not be a priest, seeing that
+there are priests that offer gifts according to the law: 8:5 Who serve
+unto the example and shadow of heavenly things, as Moses was
+admonished of God when he was about to make the tabernacle: for, See,
+saith he, that thou make all things according to the pattern shewed to
+thee in the mount.
+
+8:6 But now hath he obtained a more excellent ministry, by how much
+also he is the mediator of a better covenant, which was established
+upon better promises.
+
+8:7 For if that first covenant had been faultless, then should no
+place have been sought for the second.
+
+8:8 For finding fault with them, he saith, Behold, the days come,
+saith the Lord, when I will make a new covenant with the house of
+Israel and with the house of Judah: 8:9 Not according to the covenant
+that I made with their fathers in the day when I took them by the hand
+to lead them out of the land of Egypt; because they continued not in
+my covenant, and I regarded them not, saith the Lord.
+
+8:10 For this is the covenant that I will make with the house of
+Israel after those days, saith the Lord; I will put my laws into their
+mind, and write them in their hearts: and I will be to them a God, and
+they shall be to me a people: 8:11 And they shall not teach every man
+his neighbour, and every man his brother, saying, Know the Lord: for
+all shall know me, from the least to the greatest.
+
+8:12 For I will be merciful to their unrighteousness, and their sins
+and their iniquities will I remember no more.
+
+8:13 In that he saith, A new covenant, he hath made the first old. Now
+that which decayeth and waxeth old is ready to vanish away.
+
+9:1 Then verily the first covenant had also ordinances of divine
+service, and a worldly sanctuary.
+
+9:2 For there was a tabernacle made; the first, wherein was the
+candlestick, and the table, and the shewbread; which is called the
+sanctuary.
+
+9:3 And after the second veil, the tabernacle which is called the
+Holiest of all; 9:4 Which had the golden censer, and the ark of the
+covenant overlaid round about with gold, wherein was the golden pot
+that had manna, and Aaron's rod that budded, and the tables of the
+covenant; 9:5 And over it the cherubims of glory shadowing the
+mercyseat; of which we cannot now speak particularly.
+
+9:6 Now when these things were thus ordained, the priests went always
+into the first tabernacle, accomplishing the service of God.
+
+9:7 But into the second went the high priest alone once every year,
+not without blood, which he offered for himself, and for the errors of
+the people: 9:8 The Holy Ghost this signifying, that the way into the
+holiest of all was not yet made manifest, while as the first
+tabernacle was yet standing: 9:9 Which was a figure for the time then
+present, in which were offered both gifts and sacrifices, that could
+not make him that did the service perfect, as pertaining to the
+conscience; 9:10 Which stood only in meats and drinks, and divers
+washings, and carnal ordinances, imposed on them until the time of
+reformation.
+
+9:11 But Christ being come an high priest of good things to come, by a
+greater and more perfect tabernacle, not made with hands, that is to
+say, not of this building; 9:12 Neither by the blood of goats and
+calves, but by his own blood he entered in once into the holy place,
+having obtained eternal redemption for us.
+
+9:13 For if the blood of bulls and of goats, and the ashes of an
+heifer sprinkling the unclean, sanctifieth to the purifying of the
+flesh: 9:14 How much more shall the blood of Christ, who through the
+eternal Spirit offered himself without spot to God, purge your
+conscience from dead works to serve the living God? 9:15 And for this
+cause he is the mediator of the new testament, that by means of death,
+for the redemption of the transgressions that were under the first
+testament, they which are called might receive the promise of eternal
+inheritance.
+
+9:16 For where a testament is, there must also of necessity be the
+death of the testator.
+
+9:17 For a testament is of force after men are dead: otherwise it is
+of no strength at all while the testator liveth.
+
+9:18 Whereupon neither the first testament was dedicated without
+blood.
+
+9:19 For when Moses had spoken every precept to all the people
+according to the law, he took the blood of calves and of goats, with
+water, and scarlet wool, and hyssop, and sprinkled both the book, and
+all the people, 9:20 Saying, This is the blood of the testament which
+God hath enjoined unto you.
+
+9:21 Moreover he sprinkled with blood both the tabernacle, and all the
+vessels of the ministry.
+
+9:22 And almost all things are by the law purged with blood; and
+without shedding of blood is no remission.
+
+9:23 It was therefore necessary that the patterns of things in the
+heavens should be purified with these; but the heavenly things
+themselves with better sacrifices than these.
+
+9:24 For Christ is not entered into the holy places made with hands,
+which are the figures of the true; but into heaven itself, now to
+appear in the presence of God for us: 9:25 Nor yet that he should
+offer himself often, as the high priest entereth into the holy place
+every year with blood of others; 9:26 For then must he often have
+suffered since the foundation of the world: but now once in the end of
+the world hath he appeared to put away sin by the sacrifice of
+himself.
+
+9:27 And as it is appointed unto men once to die, but after this the
+judgment: 9:28 So Christ was once offered to bear the sins of many;
+and unto them that look for him shall he appear the second time
+without sin unto salvation.
+
+10:1 For the law having a shadow of good things to come, and not the
+very image of the things, can never with those sacrifices which they
+offered year by year continually make the comers thereunto perfect.
+
+10:2 For then would they not have ceased to be offered? because that
+the worshippers once purged should have had no more conscience of
+sins.
+
+10:3 But in those sacrifices there is a remembrance again made of sins
+every year.
+
+10:4 For it is not possible that the blood of bulls and of goats
+should take away sins.
+
+10:5 Wherefore when he cometh into the world, he saith, Sacrifice and
+offering thou wouldest not, but a body hast thou prepared me: 10:6 In
+burnt offerings and sacrifices for sin thou hast had no pleasure.
+
+10:7 Then said I, Lo, I come (in the volume of the book it is written
+of me,) to do thy will, O God.
+
+10:8 Above when he said, Sacrifice and offering and burnt offerings
+and offering for sin thou wouldest not, neither hadst pleasure
+therein; which are offered by the law; 10:9 Then said he, Lo, I come
+to do thy will, O God. He taketh away the first, that he may establish
+the second.
+
+10:10 By the which will we are sanctified through the offering of the
+body of Jesus Christ once for all.
+
+10:11 And every priest standeth daily ministering and offering
+oftentimes the same sacrifices, which can never take away sins: 10:12
+But this man, after he had offered one sacrifice for sins for ever,
+sat down on the right hand of God; 10:13 From henceforth expecting
+till his enemies be made his footstool.
+
+10:14 For by one offering he hath perfected for ever them that are
+sanctified.
+
+10:15 Whereof the Holy Ghost also is a witness to us: for after that
+he had said before, 10:16 This is the covenant that I will make with
+them after those days, saith the Lord, I will put my laws into their
+hearts, and in their minds will I write them; 10:17 And their sins and
+iniquities will I remember no more.
+
+10:18 Now where remission of these is, there is no more offering for
+sin.
+
+10:19 Having therefore, brethren, boldness to enter into the holiest
+by the blood of Jesus, 10:20 By a new and living way, which he hath
+consecrated for us, through the veil, that is to say, his flesh; 10:21
+And having an high priest over the house of God; 10:22 Let us draw
+near with a true heart in full assurance of faith, having our hearts
+sprinkled from an evil conscience, and our bodies washed with pure
+water.
+
+10:23 Let us hold fast the profession of our faith without wavering;
+(for he is faithful that promised;) 10:24 And let us consider one
+another to provoke unto love and to good works: 10:25 Not forsaking
+the assembling of ourselves together, as the manner of some is; but
+exhorting one another: and so much the more, as ye see the day
+approaching.
+
+10:26 For if we sin wilfully after that we have received the knowledge
+of the truth, there remaineth no more sacrifice for sins, 10:27 But a
+certain fearful looking for of judgment and fiery indignation, which
+shall devour the adversaries.
+
+10:28 He that despised Moses' law died without mercy under two or
+three witnesses: 10:29 Of how much sorer punishment, suppose ye, shall
+he be thought worthy, who hath trodden under foot the Son of God, and
+hath counted the blood of the covenant, wherewith he was sanctified,
+an unholy thing, and hath done despite unto the Spirit of grace?
+10:30 For we know him that hath said, Vengeance belongeth unto me, I
+will recompense, saith the Lord. And again, The Lord shall judge his
+people.
+
+10:31 It is a fearful thing to fall into the hands of the living God.
+
+10:32 But call to remembrance the former days, in which, after ye were
+illuminated, ye endured a great fight of afflictions; 10:33 Partly,
+whilst ye were made a gazingstock both by reproaches and afflictions;
+and partly, whilst ye became companions of them that were so used.
+
+10:34 For ye had compassion of me in my bonds, and took joyfully the
+spoiling of your goods, knowing in yourselves that ye have in heaven a
+better and an enduring substance.
+
+10:35 Cast not away therefore your confidence, which hath great
+recompence of reward.
+
+10:36 For ye have need of patience, that, after ye have done the will
+of God, ye might receive the promise.
+
+10:37 For yet a little while, and he that shall come will come, and
+will not tarry.
+
+10:38 Now the just shall live by faith: but if any man draw back, my
+soul shall have no pleasure in him.
+
+10:39 But we are not of them who draw back unto perdition; but of them
+that believe to the saving of the soul.
+
+11:1 Now faith is the substance of things hoped for, the evidence of
+things not seen.
+
+11:2 For by it the elders obtained a good report.
+
+11:3 Through faith we understand that the worlds were framed by the
+word of God, so that things which are seen were not made of things
+which do appear.
+
+11:4 By faith Abel offered unto God a more excellent sacrifice than
+Cain, by which he obtained witness that he was righteous, God
+testifying of his gifts: and by it he being dead yet speaketh.
+
+11:5 By faith Enoch was translated that he should not see death; and
+was not found, because God had translated him: for before his
+translation he had this testimony, that he pleased God.
+
+11:6 But without faith it is impossible to please him: for he that
+cometh to God must believe that he is, and that he is a rewarder of
+them that diligently seek him.
+
+11:7 By faith Noah, being warned of God of things not seen as yet,
+moved with fear, prepared an ark to the saving of his house; by the
+which he condemned the world, and became heir of the righteousness
+which is by faith.
+
+11:8 By faith Abraham, when he was called to go out into a place which
+he should after receive for an inheritance, obeyed; and he went out,
+not knowing whither he went.
+
+11:9 By faith he sojourned in the land of promise, as in a strange
+country, dwelling in tabernacles with Isaac and Jacob, the heirs with
+him of the same promise: 11:10 For he looked for a city which hath
+foundations, whose builder and maker is God.
+
+11:11 Through faith also Sara herself received strength to conceive
+seed, and was delivered of a child when she was past age, because she
+judged him faithful who had promised.
+
+11:12 Therefore sprang there even of one, and him as good as dead, so
+many as the stars of the sky in multitude, and as the sand which is by
+the sea shore innumerable.
+
+11:13 These all died in faith, not having received the promises, but
+having seen them afar off, and were persuaded of them, and embraced
+them, and confessed that they were strangers and pilgrims on the
+earth.
+
+11:14 For they that say such things declare plainly that they seek a
+country.
+
+11:15 And truly, if they had been mindful of that country from whence
+they came out, they might have had opportunity to have returned.
+
+11:16 But now they desire a better country, that is, an heavenly:
+wherefore God is not ashamed to be called their God: for he hath
+prepared for them a city.
+
+11:17 By faith Abraham, when he was tried, offered up Isaac: and he
+that had received the promises offered up his only begotten son, 11:18
+Of whom it was said, That in Isaac shall thy seed be called: 11:19
+Accounting that God was able to raise him up, even from the dead; from
+whence also he received him in a figure.
+
+11:20 By faith Isaac blessed Jacob and Esau concerning things to come.
+
+11:21 By faith Jacob, when he was a dying, blessed both the sons of
+Joseph; and worshipped, leaning upon the top of his staff.
+
+11:22 By faith Joseph, when he died, made mention of the departing of
+the children of Israel; and gave commandment concerning his bones.
+
+11:23 By faith Moses, when he was born, was hid three months of his
+parents, because they saw he was a proper child; and they were not
+afraid of the king's commandment.
+
+11:24 By faith Moses, when he was come to years, refused to be called
+the son of Pharaoh's daughter; 11:25 Choosing rather to suffer
+affliction with the people of God, than to enjoy the pleasures of sin
+for a season; 11:26 Esteeming the reproach of Christ greater riches
+than the treasures in Egypt: for he had respect unto the recompence of
+the reward.
+
+11:27 By faith he forsook Egypt, not fearing the wrath of the king:
+for he endured, as seeing him who is invisible.
+
+11:28 Through faith he kept the passover, and the sprinkling of blood,
+lest he that destroyed the firstborn should touch them.
+
+11:29 By faith they passed through the Red sea as by dry land: which
+the Egyptians assaying to do were drowned.
+
+11:30 By faith the walls of Jericho fell down, after they were
+compassed about seven days.
+
+11:31 By faith the harlot Rahab perished not with them that believed
+not, when she had received the spies with peace.
+
+11:32 And what shall I more say? for the time would fail me to tell of
+Gedeon, and of Barak, and of Samson, and of Jephthae; of David also,
+and Samuel, and of the prophets: 11:33 Who through faith subdued
+kingdoms, wrought righteousness, obtained promises, stopped the mouths
+of lions.
+
+11:34 Quenched the violence of fire, escaped the edge of the sword,
+out of weakness were made strong, waxed valiant in fight, turned to
+flight the armies of the aliens.
+
+11:35 Women received their dead raised to life again: and others were
+tortured, not accepting deliverance; that they might obtain a better
+resurrection: 11:36 And others had trial of cruel mockings and
+scourgings, yea, moreover of bonds and imprisonment: 11:37 They were
+stoned, they were sawn asunder, were tempted, were slain with the
+sword: they wandered about in sheepskins and goatskins; being
+destitute, afflicted, tormented; 11:38 (Of whom the world was not
+worthy:) they wandered in deserts, and in mountains, and in dens and
+caves of the earth.
+
+11:39 And these all, having obtained a good report through faith,
+received not the promise: 11:40 God having provided some better thing
+for us, that they without us should not be made perfect.
+
+12:1 Wherefore seeing we also are compassed about with so great a
+cloud of witnesses, let us lay aside every weight, and the sin which
+doth so easily beset us, and let us run with patience the race that is
+set before us, 12:2 Looking unto Jesus the author and finisher of our
+faith; who for the joy that was set before him endured the cross,
+despising the shame, and is set down at the right hand of the throne
+of God.
+
+12:3 For consider him that endured such contradiction of sinners
+against himself, lest ye be wearied and faint in your minds.
+
+12:4 Ye have not yet resisted unto blood, striving against sin.
+
+12:5 And ye have forgotten the exhortation which speaketh unto you as
+unto children, My son, despise not thou the chastening of the Lord,
+nor faint when thou art rebuked of him: 12:6 For whom the Lord loveth
+he chasteneth, and scourgeth every son whom he receiveth.
+
+12:7 If ye endure chastening, God dealeth with you as with sons; for
+what son is he whom the father chasteneth not? 12:8 But if ye be
+without chastisement, whereof all are partakers, then are ye bastards,
+and not sons.
+
+12:9 Furthermore we have had fathers of our flesh which corrected us,
+and we gave them reverence: shall we not much rather be in subjection
+unto the Father of spirits, and live? 12:10 For they verily for a few
+days chastened us after their own pleasure; but he for our profit,
+that we might be partakers of his holiness.
+
+12:11 Now no chastening for the present seemeth to be joyous, but
+grievous: nevertheless afterward it yieldeth the peaceable fruit of
+righteousness unto them which are exercised thereby.
+
+12:12 Wherefore lift up the hands which hang down, and the feeble
+knees; 12:13 And make straight paths for your feet, lest that which is
+lame be turned out of the way; but let it rather be healed.
+
+12:14 Follow peace with all men, and holiness, without which no man
+shall see the Lord: 12:15 Looking diligently lest any man fail of the
+grace of God; lest any root of bitterness springing up trouble you,
+and thereby many be defiled; 12:16 Lest there be any fornicator, or
+profane person, as Esau, who for one morsel of meat sold his
+birthright.
+
+12:17 For ye know how that afterward, when he would have inherited the
+blessing, he was rejected: for he found no place of repentance, though
+he sought it carefully with tears.
+
+12:18 For ye are not come unto the mount that might be touched, and
+that burned with fire, nor unto blackness, and darkness, and tempest,
+12:19 And the sound of a trumpet, and the voice of words; which voice
+they that heard intreated that the word should not be spoken to them
+any more: 12:20 (For they could not endure that which was commanded,
+And if so much as a beast touch the mountain, it shall be stoned, or
+thrust through with a dart: 12:21 And so terrible was the sight, that
+Moses said, I exceedingly fear and quake:) 12:22 But ye are come unto
+mount Sion, and unto the city of the living God, the heavenly
+Jerusalem, and to an innumerable company of angels, 12:23 To the
+general assembly and church of the firstborn, which are written in
+heaven, and to God the Judge of all, and to the spirits of just men
+made perfect, 12:24 And to Jesus the mediator of the new covenant, and
+to the blood of sprinkling, that speaketh better things than that of
+Abel.
+
+12:25 See that ye refuse not him that speaketh. For if they escaped
+not who refused him that spake on earth, much more shall not we
+escape, if we turn away from him that speaketh from heaven: 12:26
+Whose voice then shook the earth: but now he hath promised, saying,
+Yet once more I shake not the earth only, but also heaven.
+
+12:27 And this word, Yet once more, signifieth the removing of those
+things that are shaken, as of things that are made, that those things
+which cannot be shaken may remain.
+
+12:28 Wherefore we receiving a kingdom which cannot be moved, let us
+have grace, whereby we may serve God acceptably with reverence and
+godly fear: 12:29 For our God is a consuming fire.
+
+13:1 Let brotherly love continue.
+
+13:2 Be not forgetful to entertain strangers: for thereby some have
+entertained angels unawares.
+
+13:3 Remember them that are in bonds, as bound with them; and them
+which suffer adversity, as being yourselves also in the body.
+
+13:4 Marriage is honourable in all, and the bed undefiled: but
+whoremongers and adulterers God will judge.
+
+13:5 Let your conversation be without covetousness; and be content
+with such things as ye have: for he hath said, I will never leave
+thee, nor forsake thee.
+
+13:6 So that we may boldly say, The Lord is my helper, and I will not
+fear what man shall do unto me.
+
+13:7 Remember them which have the rule over you, who have spoken unto
+you the word of God: whose faith follow, considering the end of their
+conversation.
+
+13:8 Jesus Christ the same yesterday, and to day, and for ever.
+
+13:9 Be not carried about with divers and strange doctrines. For it is
+a good thing that the heart be established with grace; not with meats,
+which have not profited them that have been occupied therein.
+
+13:10 We have an altar, whereof they have no right to eat which serve
+the tabernacle.
+
+13:11 For the bodies of those beasts, whose blood is brought into the
+sanctuary by the high priest for sin, are burned without the camp.
+
+13:12 Wherefore Jesus also, that he might sanctify the people with his
+own blood, suffered without the gate.
+
+13:13 Let us go forth therefore unto him without the camp, bearing his
+reproach.
+
+13:14 For here have we no continuing city, but we seek one to come.
+
+13:15 By him therefore let us offer the sacrifice of praise to God
+continually, that is, the fruit of our lips giving thanks to his name.
+
+13:16 But to do good and to communicate forget not: for with such
+sacrifices God is well pleased.
+
+13:17 Obey them that have the rule over you, and submit yourselves:
+for they watch for your souls, as they that must give account, that
+they may do it with joy, and not with grief: for that is unprofitable
+for you.
+
+13:18 Pray for us: for we trust we have a good conscience, in all
+things willing to live honestly.
+
+13:19 But I beseech you the rather to do this, that I may be restored
+to you the sooner.
+
+13:20 Now the God of peace, that brought again from the dead our Lord
+Jesus, that great shepherd of the sheep, through the blood of the
+everlasting covenant, 13:21 Make you perfect in every good work to do
+his will, working in you that which is wellpleasing in his sight,
+through Jesus Christ; to whom be glory for ever and ever. Amen.
+
+13:22 And I beseech you, brethren, suffer the word of exhortation: for
+I have written a letter unto you in few words.
+
+13:23 Know ye that our brother Timothy is set at liberty; with whom,
+if he come shortly, I will see you.
+
+13:24 Salute all them that have the rule over you, and all the saints.
+
+They of Italy salute you.
+
+13:25 Grace be with you all. Amen.
+
+
+
+
+The General Epistle of James
+
+
+1:1 James, a servant of God and of the Lord Jesus Christ,
+to the twelve tribes which are scattered abroad, greeting.
+
+1:2 My brethren, count it all joy when ye fall into divers
+temptations; 1:3 Knowing this, that the trying of your faith worketh
+patience.
+
+1:4 But let patience have her perfect work, that ye may be perfect and
+entire, wanting nothing.
+
+1:5 If any of you lack wisdom, let him ask of God, that giveth to all
+men liberally, and upbraideth not; and it shall be given him.
+
+1:6 But let him ask in faith, nothing wavering. For he that wavereth
+is like a wave of the sea driven with the wind and tossed.
+
+1:7 For let not that man think that he shall receive any thing of the
+Lord.
+
+1:8 A double minded man is unstable in all his ways.
+
+1:9 Let the brother of low degree rejoice in that he is exalted: 1:10
+But the rich, in that he is made low: because as the flower of the
+grass he shall pass away.
+
+1:11 For the sun is no sooner risen with a burning heat, but it
+withereth the grass, and the flower thereof falleth, and the grace of
+the fashion of it perisheth: so also shall the rich man fade away in
+his ways.
+
+1:12 Blessed is the man that endureth temptation: for when he is
+tried, he shall receive the crown of life, which the Lord hath
+promised to them that love him.
+
+1:13 Let no man say when he is tempted, I am tempted of God: for God
+cannot be tempted with evil, neither tempteth he any man: 1:14 But
+every man is tempted, when he is drawn away of his own lust, and
+enticed.
+
+1:15 Then when lust hath conceived, it bringeth forth sin: and sin,
+when it is finished, bringeth forth death.
+
+1:16 Do not err, my beloved brethren.
+
+1:17 Every good gift and every perfect gift is from above, and cometh
+down from the Father of lights, with whom is no variableness, neither
+shadow of turning.
+
+1:18 Of his own will begat he us with the word of truth, that we
+should be a kind of firstfruits of his creatures.
+
+1:19 Wherefore, my beloved brethren, let every man be swift to hear,
+slow to speak, slow to wrath: 1:20 For the wrath of man worketh not
+the righteousness of God.
+
+1:21 Wherefore lay apart all filthiness and superfluity of
+naughtiness, and receive with meekness the engrafted word, which is
+able to save your souls.
+
+1:22 But be ye doers of the word, and not hearers only, deceiving your
+own selves.
+
+1:23 For if any be a hearer of the word, and not a doer, he is like
+unto a man beholding his natural face in a glass: 1:24 For he
+beholdeth himself, and goeth his way, and straightway forgetteth what
+manner of man he was.
+
+1:25 But whoso looketh into the perfect law of liberty, and continueth
+therein, he being not a forgetful hearer, but a doer of the work, this
+man shall be blessed in his deed.
+
+1:26 If any man among you seem to be religious, and bridleth not his
+tongue, but deceiveth his own heart, this man's religion is vain.
+
+1:27 Pure religion and undefiled before God and the Father is this, To
+visit the fatherless and widows in their affliction, and to keep
+himself unspotted from the world.
+
+2:1 My brethren, have not the faith of our Lord Jesus Christ, the Lord
+of glory, with respect of persons.
+
+2:2 For if there come unto your assembly a man with a gold ring, in
+goodly apparel, and there come in also a poor man in vile raiment; 2:3
+And ye have respect to him that weareth the gay clothing, and say unto
+him, Sit thou here in a good place; and say to the poor, Stand thou
+there, or sit here under my footstool: 2:4 Are ye not then partial in
+yourselves, and are become judges of evil thoughts? 2:5 Hearken, my
+beloved brethren, Hath not God chosen the poor of this world rich in
+faith, and heirs of the kingdom which he hath promised to them that
+love him? 2:6 But ye have despised the poor. Do not rich men oppress
+you, and draw you before the judgment seats? 2:7 Do not they
+blaspheme that worthy name by the which ye are called? 2:8 If ye
+fulfil the royal law according to the scripture, Thou shalt love thy
+neighbour as thyself, ye do well: 2:9 But if ye have respect to
+persons, ye commit sin, and are convinced of the law as transgressors.
+
+2:10 For whosoever shall keep the whole law, and yet offend in one
+point, he is guilty of all.
+
+2:11 For he that said, Do not commit adultery, said also, Do not kill.
+Now if thou commit no adultery, yet if thou kill, thou art become a
+transgressor of the law.
+
+2:12 So speak ye, and so do, as they that shall be judged by the law
+of liberty.
+
+2:13 For he shall have judgment without mercy, that hath shewed no
+mercy; and mercy rejoiceth against judgment.
+
+2:14 What doth it profit, my brethren, though a man say he hath faith,
+and have not works? can faith save him? 2:15 If a brother or sister
+be naked, and destitute of daily food, 2:16 And one of you say unto
+them, Depart in peace, be ye warmed and filled; notwithstanding ye
+give them not those things which are needful to the body; what doth it
+profit? 2:17 Even so faith, if it hath not works, is dead, being
+alone.
+
+2:18 Yea, a man may say, Thou hast faith, and I have works: shew me
+thy faith without thy works, and I will shew thee my faith by my
+works.
+
+2:19 Thou believest that there is one God; thou doest well: the devils
+also believe, and tremble.
+
+2:20 But wilt thou know, O vain man, that faith without works is dead?
+2:21 Was not Abraham our father justified by works, when he had
+offered Isaac his son upon the altar? 2:22 Seest thou how faith
+wrought with his works, and by works was faith made perfect? 2:23 And
+the scripture was fulfilled which saith, Abraham believed God, and it
+was imputed unto him for righteousness: and he was called the Friend
+of God.
+
+2:24 Ye see then how that by works a man is justified, and not by
+faith only.
+
+2:25 Likewise also was not Rahab the harlot justified by works, when
+she had received the messengers, and had sent them out another way?
+2:26 For as the body without the spirit is dead, so faith without
+works is dead also.
+
+3:1 My brethren, be not many masters, knowing that we shall receive
+the greater condemnation.
+
+3:2 For in many things we offend all. If any man offend not in word,
+the same is a perfect man, and able also to bridle the whole body.
+
+3:3 Behold, we put bits in the horses' mouths, that they may obey us;
+and we turn about their whole body.
+
+3:4 Behold also the ships, which though they be so great, and are
+driven of fierce winds, yet are they turned about with a very small
+helm, whithersoever the governor listeth.
+
+3:5 Even so the tongue is a little member, and boasteth great things.
+
+Behold, how great a matter a little fire kindleth! 3:6 And the tongue
+is a fire, a world of iniquity: so is the tongue among our members,
+that it defileth the whole body, and setteth on fire the course of
+nature; and it is set on fire of hell.
+
+3:7 For every kind of beasts, and of birds, and of serpents, and of
+things in the sea, is tamed, and hath been tamed of mankind: 3:8 But
+the tongue can no man tame; it is an unruly evil, full of deadly
+poison.
+
+3:9 Therewith bless we God, even the Father; and therewith curse we
+men, which are made after the similitude of God.
+
+3:10 Out of the same mouth proceedeth blessing and cursing. My
+brethren, these things ought not so to be.
+
+3:11 Doth a fountain send forth at the same place sweet water and
+bitter? 3:12 Can the fig tree, my brethren, bear olive berries?
+either a vine, figs? so can no fountain both yield salt water and
+fresh.
+
+3:13 Who is a wise man and endued with knowledge among you? let him
+shew out of a good conversation his works with meekness of wisdom.
+
+3:14 But if ye have bitter envying and strife in your hearts, glory
+not, and lie not against the truth.
+
+3:15 This wisdom descendeth not from above, but is earthly, sensual,
+devilish.
+
+3:16 For where envying and strife is, there is confusion and every
+evil work.
+
+3:17 But the wisdom that is from above is first pure, then peaceable,
+gentle, and easy to be intreated, full of mercy and good fruits,
+without partiality, and without hypocrisy.
+
+3:18 And the fruit of righteousness is sown in peace of them that make
+peace.
+
+4:1 From whence come wars and fightings among you? come they not
+hence, even of your lusts that war in your members? 4:2 Ye lust, and
+have not: ye kill, and desire to have, and cannot obtain: ye fight and
+war, yet ye have not, because ye ask not.
+
+4:3 Ye ask, and receive not, because ye ask amiss, that ye may consume
+it upon your lusts.
+
+4:4 Ye adulterers and adulteresses, know ye not that the friendship of
+the world is enmity with God? whosoever therefore will be a friend of
+the world is the enemy of God.
+
+4:5 Do ye think that the scripture saith in vain, The spirit that
+dwelleth in us lusteth to envy? 4:6 But he giveth more grace.
+Wherefore he saith, God resisteth the proud, but giveth grace unto the
+humble.
+
+4:7 Submit yourselves therefore to God. Resist the devil, and he will
+flee from you.
+
+4:8 Draw nigh to God, and he will draw nigh to you. Cleanse your
+hands, ye sinners; and purify your hearts, ye double minded.
+
+4:9 Be afflicted, and mourn, and weep: let your laughter be turned to
+mourning, and your joy to heaviness.
+
+4:10 Humble yourselves in the sight of the Lord, and he shall lift you
+up.
+
+4:11 Speak not evil one of another, brethren. He that speaketh evil of
+his brother, and judgeth his brother, speaketh evil of the law, and
+judgeth the law: but if thou judge the law, thou art not a doer of the
+law, but a judge.
+
+4:12 There is one lawgiver, who is able to save and to destroy: who
+art thou that judgest another? 4:13 Go to now, ye that say, To day or
+to morrow we will go into such a city, and continue there a year, and
+buy and sell, and get gain: 4:14 Whereas ye know not what shall be on
+the morrow. For what is your life? It is even a vapour, that appeareth
+for a little time, and then vanisheth away.
+
+4:15 For that ye ought to say, If the Lord will, we shall live, and do
+this, or that.
+
+4:16 But now ye rejoice in your boastings: all such rejoicing is evil.
+
+4:17 Therefore to him that knoweth to do good, and doeth it not, to
+him it is sin.
+
+5:1 Go to now, ye rich men, weep and howl for your miseries that shall
+come upon you.
+
+5:2 Your riches are corrupted, and your garments are motheaten.
+
+5:3 Your gold and silver is cankered; and the rust of them shall be a
+witness against you, and shall eat your flesh as it were fire. Ye have
+heaped treasure together for the last days.
+
+5:4 Behold, the hire of the labourers who have reaped down your
+fields, which is of you kept back by fraud, crieth: and the cries of
+them which have reaped are entered into the ears of the Lord of
+sabaoth.
+
+5:5 Ye have lived in pleasure on the earth, and been wanton; ye have
+nourished your hearts, as in a day of slaughter.
+
+5:6 Ye have condemned and killed the just; and he doth not resist you.
+
+5:7 Be patient therefore, brethren, unto the coming of the Lord.
+
+Behold, the husbandman waiteth for the precious fruit of the earth,
+and hath long patience for it, until he receive the early and latter
+rain.
+
+5:8 Be ye also patient; stablish your hearts: for the coming of the
+Lord draweth nigh.
+
+5:9 Grudge not one against another, brethren, lest ye be condemned:
+behold, the judge standeth before the door.
+
+5:10 Take, my brethren, the prophets, who have spoken in the name of
+the Lord, for an example of suffering affliction, and of patience.
+
+5:11 Behold, we count them happy which endure. Ye have heard of the
+patience of Job, and have seen the end of the Lord; that the Lord is
+very pitiful, and of tender mercy.
+
+5:12 But above all things, my brethren, swear not, neither by heaven,
+neither by the earth, neither by any other oath: but let your yea be
+yea; and your nay, nay; lest ye fall into condemnation.
+
+5:13 Is any among you afflicted? let him pray. Is any merry? let him
+sing psalms.
+
+5:14 Is any sick among you? let him call for the elders of the church;
+and let them pray over him, anointing him with oil in the name of the
+Lord: 5:15 And the prayer of faith shall save the sick, and the Lord
+shall raise him up; and if he have committed sins, they shall be
+forgiven him.
+
+5:16 Confess your faults one to another, and pray one for another,
+that ye may be healed. The effectual fervent prayer of a righteous man
+availeth much.
+
+5:17 Elias was a man subject to like passions as we are, and he prayed
+earnestly that it might not rain: and it rained not on the earth by
+the space of three years and six months.
+
+5:18 And he prayed again, and the heaven gave rain, and the earth
+brought forth her fruit.
+
+5:19 Brethren, if any of you do err from the truth, and one convert
+him; 5:20 Let him know, that he which converteth the sinner from the
+error of his way shall save a soul from death, and shall hide a
+multitude of sins.
+
+
+
+
+The First Epistle General of Peter
+
+
+1:1 Peter, an apostle of Jesus Christ, to the strangers scattered
+throughout Pontus, Galatia, Cappadocia, Asia, and Bithynia, 1:2 Elect
+according to the foreknowledge of God the Father, through
+sanctification of the Spirit, unto obedience and sprinkling of the
+blood of Jesus Christ: Grace unto you, and peace, be multiplied.
+
+1:3 Blessed be the God and Father of our Lord Jesus Christ, which
+according to his abundant mercy hath begotten us again unto a lively
+hope by the resurrection of Jesus Christ from the dead, 1:4 To an
+inheritance incorruptible, and undefiled, and that fadeth not away,
+reserved in heaven for you, 1:5 Who are kept by the power of God
+through faith unto salvation ready to be revealed in the last time.
+
+1:6 Wherein ye greatly rejoice, though now for a season, if need be,
+ye are in heaviness through manifold temptations: 1:7 That the trial
+of your faith, being much more precious than of gold that perisheth,
+though it be tried with fire, might be found unto praise and honour
+and glory at the appearing of Jesus Christ: 1:8 Whom having not seen,
+ye love; in whom, though now ye see him not, yet believing, ye rejoice
+with joy unspeakable and full of glory: 1:9 Receiving the end of your
+faith, even the salvation of your souls.
+
+1:10 Of which salvation the prophets have enquired and searched
+diligently, who prophesied of the grace that should come unto you:
+1:11 Searching what, or what manner of time the Spirit of Christ which
+was in them did signify, when it testified beforehand the sufferings
+of Christ, and the glory that should follow.
+
+1:12 Unto whom it was revealed, that not unto themselves, but unto us
+they did minister the things, which are now reported unto you by them
+that have preached the gospel unto you with the Holy Ghost sent down
+from heaven; which things the angels desire to look into.
+
+1:13 Wherefore gird up the loins of your mind, be sober, and hope to
+the end for the grace that is to be brought unto you at the revelation
+of Jesus Christ; 1:14 As obedient children, not fashioning yourselves
+according to the former lusts in your ignorance: 1:15 But as he which
+hath called you is holy, so be ye holy in all manner of conversation;
+1:16 Because it is written, Be ye holy; for I am holy.
+
+1:17 And if ye call on the Father, who without respect of persons
+judgeth according to every man's work, pass the time of your
+sojourning here in fear: 1:18 Forasmuch as ye know that ye were not
+redeemed with corruptible things, as silver and gold, from your vain
+conversation received by tradition from your fathers; 1:19 But with
+the precious blood of Christ, as of a lamb without blemish and without
+spot: 1:20 Who verily was foreordained before the foundation of the
+world, but was manifest in these last times for you, 1:21 Who by him
+do believe in God, that raised him up from the dead, and gave him
+glory; that your faith and hope might be in God.
+
+1:22 Seeing ye have purified your souls in obeying the truth through
+the Spirit unto unfeigned love of the brethren, see that ye love one
+another with a pure heart fervently: 1:23 Being born again, not of
+corruptible seed, but of incorruptible, by the word of God, which
+liveth and abideth for ever.
+
+1:24 For all flesh is as grass, and all the glory of man as the flower
+of grass. The grass withereth, and the flower thereof falleth away:
+1:25 But the word of the Lord endureth for ever. And this is the word
+which by the gospel is preached unto you.
+
+2:1 Wherefore laying aside all malice, and all guile, and hypocrisies,
+and envies, all evil speakings, 2:2 As newborn babes, desire the
+sincere milk of the word, that ye may grow thereby: 2:3 If so be ye
+have tasted that the Lord is gracious.
+
+2:4 To whom coming, as unto a living stone, disallowed indeed of men,
+but chosen of God, and precious, 2:5 Ye also, as lively stones, are
+built up a spiritual house, an holy priesthood, to offer up spiritual
+sacrifices, acceptable to God by Jesus Christ.
+
+2:6 Wherefore also it is contained in the scripture, Behold, I lay in
+Sion a chief corner stone, elect, precious: and he that believeth on
+him shall not be confounded.
+
+2:7 Unto you therefore which believe he is precious: but unto them
+which be disobedient, the stone which the builders disallowed, the
+same is made the head of the corner, 2:8 And a stone of stumbling, and
+a rock of offence, even to them which stumble at the word, being
+disobedient: whereunto also they were appointed.
+
+2:9 But ye are a chosen generation, a royal priesthood, an holy
+nation, a peculiar people; that ye should shew forth the praises of
+him who hath called you out of darkness into his marvellous light;
+2:10 Which in time past were not a people, but are now the people of
+God: which had not obtained mercy, but now have obtained mercy.
+
+2:11 Dearly beloved, I beseech you as strangers and pilgrims, abstain
+from fleshly lusts, which war against the soul; 2:12 Having your
+conversation honest among the Gentiles: that, whereas they speak
+against you as evildoers, they may by your good works, which they
+shall behold, glorify God in the day of visitation.
+
+2:13 Submit yourselves to every ordinance of man for the Lord's sake:
+whether it be to the king, as supreme; 2:14 Or unto governors, as unto
+them that are sent by him for the punishment of evildoers, and for the
+praise of them that do well.
+
+2:15 For so is the will of God, that with well doing ye may put to
+silence the ignorance of foolish men: 2:16 As free, and not using your
+liberty for a cloke of maliciousness, but as the servants of God.
+
+2:17 Honour all men. Love the brotherhood. Fear God. Honour the king.
+
+2:18 Servants, be subject to your masters with all fear; not only to
+the good and gentle, but also to the froward.
+
+2:19 For this is thankworthy, if a man for conscience toward God
+endure grief, suffering wrongfully.
+
+2:20 For what glory is it, if, when ye be buffeted for your faults, ye
+shall take it patiently? but if, when ye do well, and suffer for it,
+ye take it patiently, this is acceptable with God.
+
+2:21 For even hereunto were ye called: because Christ also suffered
+for us, leaving us an example, that ye should follow his steps: 2:22
+Who did no sin, neither was guile found in his mouth: 2:23 Who, when
+he was reviled, reviled not again; when he suffered, he threatened
+not; but committed himself to him that judgeth righteously: 2:24 Who
+his own self bare our sins in his own body on the tree, that we, being
+dead to sins, should live unto righteousness: by whose stripes ye were
+healed.
+
+2:25 For ye were as sheep going astray; but are now returned unto the
+Shepherd and Bishop of your souls.
+
+3:1 Likewise, ye wives, be in subjection to your own husbands; that,
+if any obey not the word, they also may without the word be won by the
+conversation of the wives; 3:2 While they behold your chaste
+conversation coupled with fear.
+
+3:3 Whose adorning let it not be that outward adorning of plaiting the
+hair, and of wearing of gold, or of putting on of apparel; 3:4 But let
+it be the hidden man of the heart, in that which is not corruptible,
+even the ornament of a meek and quiet spirit, which is in the sight of
+God of great price.
+
+3:5 For after this manner in the old time the holy women also, who
+trusted in God, adorned themselves, being in subjection unto their own
+husbands: 3:6 Even as Sara obeyed Abraham, calling him lord: whose
+daughters ye are, as long as ye do well, and are not afraid with any
+amazement.
+
+3:7 Likewise, ye husbands, dwell with them according to knowledge,
+giving honour unto the wife, as unto the weaker vessel, and as being
+heirs together of the grace of life; that your prayers be not
+hindered.
+
+3:8 Finally, be ye all of one mind, having compassion one of another,
+love as brethren, be pitiful, be courteous: 3:9 Not rendering evil for
+evil, or railing for railing: but contrariwise blessing; knowing that
+ye are thereunto called, that ye should inherit a blessing.
+
+3:10 For he that will love life, and see good days, let him refrain
+his tongue from evil, and his lips that they speak no guile: 3:11 Let
+him eschew evil, and do good; let him seek peace, and ensue it.
+
+3:12 For the eyes of the Lord are over the righteous, and his ears are
+open unto their prayers: but the face of the Lord is against them that
+do evil.
+
+3:13 And who is he that will harm you, if ye be followers of that
+which is good? 3:14 But and if ye suffer for righteousness' sake,
+happy are ye: and be not afraid of their terror, neither be troubled;
+3:15 But sanctify the Lord God in your hearts: and be ready always to
+give an answer to every man that asketh you a reason of the hope that
+is in you with meekness and fear: 3:16 Having a good conscience; that,
+whereas they speak evil of you, as of evildoers, they may be ashamed
+that falsely accuse your good conversation in Christ.
+
+3:17 For it is better, if the will of God be so, that ye suffer for
+well doing, than for evil doing.
+
+3:18 For Christ also hath once suffered for sins, the just for the
+unjust, that he might bring us to God, being put to death in the
+flesh, but quickened by the Spirit: 3:19 By which also he went and
+preached unto the spirits in prison; 3:20 Which sometime were
+disobedient, when once the longsuffering of God waited in the days of
+Noah, while the ark was a preparing, wherein few, that is, eight souls
+were saved by water.
+
+3:21 The like figure whereunto even baptism doth also now save us (not
+the putting away of the filth of the flesh, but the answer of a good
+conscience toward God,) by the resurrection of Jesus Christ: 3:22 Who
+is gone into heaven, and is on the right hand of God; angels and
+authorities and powers being made subject unto him.
+
+4:1 Forasmuch then as Christ hath suffered for us in the flesh, arm
+yourselves likewise with the same mind: for he that hath suffered in
+the flesh hath ceased from sin; 4:2 That he no longer should live the
+rest of his time in the flesh to the lusts of men, but to the will of
+God.
+
+4:3 For the time past of our life may suffice us to have wrought the
+will of the Gentiles, when we walked in lasciviousness, lusts, excess
+of wine, revellings, banquetings, and abominable idolatries: 4:4
+Wherein they think it strange that ye run not with them to the same
+excess of riot, speaking evil of you: 4:5 Who shall give account to
+him that is ready to judge the quick and the dead.
+
+4:6 For for this cause was the gospel preached also to them that are
+dead, that they might be judged according to men in the flesh, but
+live according to God in the spirit.
+
+4:7 But the end of all things is at hand: be ye therefore sober, and
+watch unto prayer.
+
+4:8 And above all things have fervent charity among yourselves: for
+charity shall cover the multitude of sins.
+
+4:9 Use hospitality one to another without grudging.
+
+4:10 As every man hath received the gift, even so minister the same
+one to another, as good stewards of the manifold grace of God.
+
+4:11 If any man speak, let him speak as the oracles of God; if any man
+minister, let him do it as of the ability which God giveth: that God
+in all things may be glorified through Jesus Christ, to whom be praise
+and dominion for ever and ever. Amen.
+
+4:12 Beloved, think it not strange concerning the fiery trial which is
+to try you, as though some strange thing happened unto you: 4:13 But
+rejoice, inasmuch as ye are partakers of Christ's sufferings; that,
+when his glory shall be revealed, ye may be glad also with exceeding
+joy.
+
+4:14 If ye be reproached for the name of Christ, happy are ye; for the
+spirit of glory and of God resteth upon you: on their part he is evil
+spoken of, but on your part he is glorified.
+
+4:15 But let none of you suffer as a murderer, or as a thief, or as an
+evildoer, or as a busybody in other men's matters.
+
+4:16 Yet if any man suffer as a Christian, let him not be ashamed; but
+let him glorify God on this behalf.
+
+4:17 For the time is come that judgment must begin at the house of
+God: and if it first begin at us, what shall the end be of them that
+obey not the gospel of God? 4:18 And if the righteous scarcely be
+saved, where shall the ungodly and the sinner appear? 4:19 Wherefore
+let them that suffer according to the will of God commit the keeping
+of their souls to him in well doing, as unto a faithful Creator.
+
+5:1 The elders which are among you I exhort, who am also an elder, and
+a witness of the sufferings of Christ, and also a partaker of the
+glory that shall be revealed: 5:2 Feed the flock of God which is among
+you, taking the oversight thereof, not by constraint, but willingly;
+not for filthy lucre, but of a ready mind; 5:3 Neither as being lords
+over God's heritage, but being ensamples to the flock.
+
+5:4 And when the chief Shepherd shall appear, ye shall receive a crown
+of glory that fadeth not away.
+
+5:5 Likewise, ye younger, submit yourselves unto the elder. Yea, all
+of you be subject one to another, and be clothed with humility: for
+God resisteth the proud, and giveth grace to the humble.
+
+5:6 Humble yourselves therefore under the mighty hand of God, that he
+may exalt you in due time: 5:7 Casting all your care upon him; for he
+careth for you.
+
+5:8 Be sober, be vigilant; because your adversary the devil, as a
+roaring lion, walketh about, seeking whom he may devour: 5:9 Whom
+resist stedfast in the faith, knowing that the same afflictions are
+accomplished in your brethren that are in the world.
+
+5:10 But the God of all grace, who hath called us unto his eternal
+glory by Christ Jesus, after that ye have suffered a while, make you
+perfect, stablish, strengthen, settle you.
+
+5:11 To him be glory and dominion for ever and ever. Amen.
+
+5:12 By Silvanus, a faithful brother unto you, as I suppose, I have
+written briefly, exhorting, and testifying that this is the true grace
+of God wherein ye stand.
+
+5:13 The church that is at Babylon, elected together with you,
+saluteth you; and so doth Marcus my son.
+
+5:14 Greet ye one another with a kiss of charity. Peace be with you
+all that are in Christ Jesus. Amen.
+
+
+
+
+The Second General Epistle of Peter
+
+
+1:1 Simon Peter, a servant and an apostle of Jesus Christ, to them
+that have obtained like precious faith with us through the
+righteousness of God and our Saviour Jesus Christ: 1:2 Grace and peace
+be multiplied unto you through the knowledge of God, and of Jesus our
+Lord, 1:3 According as his divine power hath given unto us all things
+that pertain unto life and godliness, through the knowledge of him
+that hath called us to glory and virtue: 1:4 Whereby are given unto us
+exceeding great and precious promises: that by these ye might be
+partakers of the divine nature, having escaped the corruption that is
+in the world through lust.
+
+1:5 And beside this, giving all diligence, add to your faith virtue;
+and to virtue knowledge; 1:6 And to knowledge temperance; and to
+temperance patience; and to patience godliness; 1:7 And to godliness
+brotherly kindness; and to brotherly kindness charity.
+
+1:8 For if these things be in you, and abound, they make you that ye
+shall neither be barren nor unfruitful in the knowledge of our Lord
+Jesus Christ.
+
+1:9 But he that lacketh these things is blind, and cannot see afar
+off, and hath forgotten that he was purged from his old sins.
+
+1:10 Wherefore the rather, brethren, give diligence to make your
+calling and election sure: for if ye do these things, ye shall never
+fall: 1:11 For so an entrance shall be ministered unto you abundantly
+into the everlasting kingdom of our Lord and Saviour Jesus Christ.
+
+1:12 Wherefore I will not be negligent to put you always in
+remembrance of these things, though ye know them, and be established
+in the present truth.
+
+1:13 Yea, I think it meet, as long as I am in this tabernacle, to stir
+you up by putting you in remembrance; 1:14 Knowing that shortly I must
+put off this my tabernacle, even as our Lord Jesus Christ hath shewed
+me.
+
+1:15 Moreover I will endeavour that ye may be able after my decease to
+have these things always in remembrance.
+
+1:16 For we have not followed cunningly devised fables, when we made
+known unto you the power and coming of our Lord Jesus Christ, but were
+eyewitnesses of his majesty.
+
+1:17 For he received from God the Father honour and glory, when there
+came such a voice to him from the excellent glory, This is my beloved
+Son, in whom I am well pleased.
+
+1:18 And this voice which came from heaven we heard, when we were with
+him in the holy mount.
+
+1:19 We have also a more sure word of prophecy; whereunto ye do well
+that ye take heed, as unto a light that shineth in a dark place, until
+the day dawn, and the day star arise in your hearts: 1:20 Knowing this
+first, that no prophecy of the scripture is of any private
+interpretation.
+
+1:21 For the prophecy came not in old time by the will of man: but
+holy men of God spake as they were moved by the Holy Ghost.
+
+2:1 But there were false prophets also among the people, even as there
+shall be false teachers among you, who privily shall bring in damnable
+heresies, even denying the Lord that bought them, and bring upon
+themselves swift destruction.
+
+2:2 And many shall follow their pernicious ways; by reason of whom the
+way of truth shall be evil spoken of.
+
+2:3 And through covetousness shall they with feigned words make
+merchandise of you: whose judgment now of a long time lingereth not,
+and their damnation slumbereth not.
+
+2:4 For if God spared not the angels that sinned, but cast them down
+to hell, and delivered them into chains of darkness, to be reserved
+unto judgment; 2:5 And spared not the old world, but saved Noah the
+eighth person, a preacher of righteousness, bringing in the flood upon
+the world of the ungodly; 2:6 And turning the cities of Sodom and
+Gomorrha into ashes condemned them with an overthrow, making them an
+ensample unto those that after should live ungodly; 2:7 And delivered
+just Lot, vexed with the filthy conversation of the wicked: 2:8 (For
+that righteous man dwelling among them, in seeing and hearing, vexed
+his righteous soul from day to day with their unlawful deeds;) 2:9 The
+Lord knoweth how to deliver the godly out of temptations, and to
+reserve the unjust unto the day of judgment to be punished: 2:10 But
+chiefly them that walk after the flesh in the lust of uncleanness, and
+despise government. Presumptuous are they, selfwilled, they are not
+afraid to speak evil of dignities.
+
+2:11 Whereas angels, which are greater in power and might, bring not
+railing accusation against them before the Lord.
+
+2:12 But these, as natural brute beasts, made to be taken and
+destroyed, speak evil of the things that they understand not; and
+shall utterly perish in their own corruption; 2:13 And shall receive
+the reward of unrighteousness, as they that count it pleasure to riot
+in the day time. Spots they are and blemishes, sporting themselves
+with their own deceivings while they feast with you; 2:14 Having eyes
+full of adultery, and that cannot cease from sin; beguiling unstable
+souls: an heart they have exercised with covetous practices; cursed
+children: 2:15 Which have forsaken the right way, and are gone astray,
+following the way of Balaam the son of Bosor, who loved the wages of
+unrighteousness; 2:16 But was rebuked for his iniquity: the dumb ass
+speaking with man's voice forbad the madness of the prophet.
+
+2:17 These are wells without water, clouds that are carried with a
+tempest; to whom the mist of darkness is reserved for ever.
+
+2:18 For when they speak great swelling words of vanity, they allure
+through the lusts of the flesh, through much wantonness, those that
+were clean escaped from them who live in error.
+
+2:19 While they promise them liberty, they themselves are the servants
+of corruption: for of whom a man is overcome, of the same is he
+brought in bondage.
+
+2:20 For if after they have escaped the pollutions of the world
+through the knowledge of the Lord and Saviour Jesus Christ, they are
+again entangled therein, and overcome, the latter end is worse with
+them than the beginning.
+
+2:21 For it had been better for them not to have known the way of
+righteousness, than, after they have known it, to turn from the holy
+commandment delivered unto them.
+
+2:22 But it is happened unto them according to the true proverb, The
+dog is turned to his own vomit again; and the sow that was washed to
+her wallowing in the mire.
+
+3:1 This second epistle, beloved, I now write unto you; in both which
+I stir up your pure minds by way of remembrance: 3:2 That ye may be
+mindful of the words which were spoken before by the holy prophets,
+and of the commandment of us the apostles of the Lord and Saviour: 3:3
+Knowing this first, that there shall come in the last days scoffers,
+walking after their own lusts, 3:4 And saying, Where is the promise of
+his coming? for since the fathers fell asleep, all things continue as
+they were from the beginning of the creation.
+
+3:5 For this they willingly are ignorant of, that by the word of God
+the heavens were of old, and the earth standing out of the water and
+in the water: 3:6 Whereby the world that then was, being overflowed
+with water, perished: 3:7 But the heavens and the earth, which are
+now, by the same word are kept in store, reserved unto fire against
+the day of judgment and perdition of ungodly men.
+
+3:8 But, beloved, be not ignorant of this one thing, that one day is
+with the Lord as a thousand years, and a thousand years as one day.
+
+3:9 The Lord is not slack concerning his promise, as some men count
+slackness; but is longsuffering to us-ward, not willing that any
+should perish, but that all should come to repentance.
+
+3:10 But the day of the Lord will come as a thief in the night; in the
+which the heavens shall pass away with a great noise, and the elements
+shall melt with fervent heat, the earth also and the works that are
+therein shall be burned up.
+
+3:11 Seeing then that all these things shall be dissolved, what manner
+of persons ought ye to be in all holy conversation and godliness, 3:12
+Looking for and hasting unto the coming of the day of God, wherein the
+heavens being on fire shall be dissolved, and the elements shall melt
+with fervent heat? 3:13 Nevertheless we, according to his promise,
+look for new heavens and a new earth, wherein dwelleth righteousness.
+
+3:14 Wherefore, beloved, seeing that ye look for such things, be
+diligent that ye may be found of him in peace, without spot, and
+blameless.
+
+3:15 And account that the longsuffering of our Lord is salvation; even
+as our beloved brother Paul also according to the wisdom given unto
+him hath written unto you; 3:16 As also in all his epistles, speaking
+in them of these things; in which are some things hard to be
+understood, which they that are unlearned and unstable wrest, as they
+do also the other scriptures, unto their own destruction.
+
+3:17 Ye therefore, beloved, seeing ye know these things before, beware
+lest ye also, being led away with the error of the wicked, fall from
+your own stedfastness.
+
+3:18 But grow in grace, and in the knowledge of our Lord and Saviour
+Jesus Christ. To him be glory both now and for ever. Amen.
+
+
+
+
+The First Epistle General of John
+
+
+1:1 That which was from the beginning, which we have heard, which we
+have seen with our eyes, which we have looked upon, and our hands have
+handled, of the Word of life; 1:2 (For the life was manifested, and we
+have seen it, and bear witness, and shew unto you that eternal life,
+which was with the Father, and was manifested unto us;) 1:3 That which
+we have seen and heard declare we unto you, that ye also may have
+fellowship with us: and truly our fellowship is with the Father, and
+with his Son Jesus Christ.
+
+1:4 And these things write we unto you, that your joy may be full.
+
+1:5 This then is the message which we have heard of him, and declare
+unto you, that God is light, and in him is no darkness at all.
+
+1:6 If we say that we have fellowship with him, and walk in darkness,
+we lie, and do not the truth: 1:7 But if we walk in the light, as he
+is in the light, we have fellowship one with another, and the blood of
+Jesus Christ his Son cleanseth us from all sin.
+
+1:8 If we say that we have no sin, we deceive ourselves, and the truth
+is not in us.
+
+1:9 If we confess our sins, he is faithful and just to forgive us our
+sins, and to cleanse us from all unrighteousness.
+
+1:10 If we say that we have not sinned, we make him a liar, and his
+word is not in us.
+
+2:1 My little children, these things write I unto you, that ye sin
+not.
+
+And if any man sin, we have an advocate with the Father, Jesus Christ
+the righteous: 2:2 And he is the propitiation for our sins: and not
+for our's only, but also for the sins of the whole world.
+
+2:3 And hereby we do know that we know him, if we keep his
+commandments.
+
+2:4 He that saith, I know him, and keepeth not his commandments, is a
+liar, and the truth is not in him.
+
+2:5 But whoso keepeth his word, in him verily is the love of God
+perfected: hereby know we that we are in him.
+
+2:6 He that saith he abideth in him ought himself also so to walk,
+even as he walked.
+
+2:7 Brethren, I write no new commandment unto you, but an old
+commandment which ye had from the beginning. The old commandment is
+the word which ye have heard from the beginning.
+
+2:8 Again, a new commandment I write unto you, which thing is true in
+him and in you: because the darkness is past, and the true light now
+shineth.
+
+2:9 He that saith he is in the light, and hateth his brother, is in
+darkness even until now.
+
+2:10 He that loveth his brother abideth in the light, and there is
+none occasion of stumbling in him.
+
+2:11 But he that hateth his brother is in darkness, and walketh in
+darkness, and knoweth not whither he goeth, because that darkness hath
+blinded his eyes.
+
+2:12 I write unto you, little children, because your sins are forgiven
+you for his name's sake.
+
+2:13 I write unto you, fathers, because ye have known him that is from
+the beginning. I write unto you, young men, because ye have overcome
+the wicked one. I write unto you, little children, because ye have
+known the Father.
+
+2:14 I have written unto you, fathers, because ye have known him that
+is from the beginning. I have written unto you, young men, because ye
+are strong, and the word of God abideth in you, and ye have overcome
+the wicked one.
+
+2:15 Love not the world, neither the things that are in the world. If
+any man love the world, the love of the Father is not in him.
+
+2:16 For all that is in the world, the lust of the flesh, and the lust
+of the eyes, and the pride of life, is not of the Father, but is of
+the world.
+
+2:17 And the world passeth away, and the lust thereof: but he that
+doeth the will of God abideth for ever.
+
+2:18 Little children, it is the last time: and as ye have heard that
+antichrist shall come, even now are there many antichrists; whereby we
+know that it is the last time.
+
+2:19 They went out from us, but they were not of us; for if they had
+been of us, they would no doubt have continued with us: but they went
+out, that they might be made manifest that they were not all of us.
+
+2:20 But ye have an unction from the Holy One, and ye know all things.
+
+2:21 I have not written unto you because ye know not the truth, but
+because ye know it, and that no lie is of the truth.
+
+2:22 Who is a liar but he that denieth that Jesus is the Christ? He is
+antichrist, that denieth the Father and the Son.
+
+2:23 Whosoever denieth the Son, the same hath not the Father: he that
+acknowledgeth the Son hath the Father also.
+
+2:24 Let that therefore abide in you, which ye have heard from the
+beginning. If that which ye have heard from the beginning shall remain
+in you, ye also shall continue in the Son, and in the Father.
+
+2:25 And this is the promise that he hath promised us, even eternal
+life.
+
+2:26 These things have I written unto you concerning them that seduce
+you.
+
+2:27 But the anointing which ye have received of him abideth in you,
+and ye need not that any man teach you: but as the same anointing
+teacheth you of all things, and is truth, and is no lie, and even as
+it hath taught you, ye shall abide in him.
+
+2:28 And now, little children, abide in him; that, when he shall
+appear, we may have confidence, and not be ashamed before him at his
+coming.
+
+2:29 If ye know that he is righteous, ye know that every one that
+doeth righteousness is born of him.
+
+3:1 Behold, what manner of love the Father hath bestowed upon us, that
+we should be called the sons of God: therefore the world knoweth us
+not, because it knew him not.
+
+3:2 Beloved, now are we the sons of God, and it doth not yet appear
+what we shall be: but we know that, when he shall appear, we shall be
+like him; for we shall see him as he is.
+
+3:3 And every man that hath this hope in him purifieth himself, even
+as he is pure.
+
+3:4 Whosoever committeth sin transgresseth also the law: for sin is
+the transgression of the law.
+
+3:5 And ye know that he was manifested to take away our sins; and in
+him is no sin.
+
+3:6 Whosoever abideth in him sinneth not: whosoever sinneth hath not
+seen him, neither known him.
+
+3:7 Little children, let no man deceive you: he that doeth
+righteousness is righteous, even as he is righteous.
+
+3:8 He that committeth sin is of the devil; for the devil sinneth from
+the beginning. For this purpose the Son of God was manifested, that he
+might destroy the works of the devil.
+
+3:9 Whosoever is born of God doth not commit sin; for his seed
+remaineth in him: and he cannot sin, because he is born of God.
+
+3:10 In this the children of God are manifest, and the children of the
+devil: whosoever doeth not righteousness is not of God, neither he
+that loveth not his brother.
+
+3:11 For this is the message that ye heard from the beginning, that we
+should love one another.
+
+3:12 Not as Cain, who was of that wicked one, and slew his brother.
+And wherefore slew he him? Because his own works were evil, and his
+brother's righteous.
+
+3:13 Marvel not, my brethren, if the world hate you.
+
+3:14 We know that we have passed from death unto life, because we love
+the brethren. He that loveth not his brother abideth in death.
+
+3:15 Whosoever hateth his brother is a murderer: and ye know that no
+murderer hath eternal life abiding in him.
+
+3:16 Hereby perceive we the love of God, because he laid down his life
+for us: and we ought to lay down our lives for the brethren.
+
+3:17 But whoso hath this world's good, and seeth his brother have
+need, and shutteth up his bowels of compassion from him, how dwelleth
+the love of God in him? 3:18 My little children, let us not love in
+word, neither in tongue; but in deed and in truth.
+
+3:19 And hereby we know that we are of the truth, and shall assure our
+hearts before him.
+
+3:20 For if our heart condemn us, God is greater than our heart, and
+knoweth all things.
+
+3:21 Beloved, if our heart condemn us not, then have we confidence
+toward God.
+
+3:22 And whatsoever we ask, we receive of him, because we keep his
+commandments, and do those things that are pleasing in his sight.
+
+3:23 And this is his commandment, That we should believe on the name
+of his Son Jesus Christ, and love one another, as he gave us
+commandment.
+
+3:24 And he that keepeth his commandments dwelleth in him, and he in
+him.
+
+And hereby we know that he abideth in us, by the Spirit which he hath
+given us.
+
+4:1 Beloved, believe not every spirit, but try the spirits whether
+they are of God: because many false prophets are gone out into the
+world.
+
+4:2 Hereby know ye the Spirit of God: Every spirit that confesseth
+that Jesus Christ is come in the flesh is of God: 4:3 And every spirit
+that confesseth not that Jesus Christ is come in the flesh is not of
+God: and this is that spirit of antichrist, whereof ye have heard that
+it should come; and even now already is it in the world.
+
+4:4 Ye are of God, little children, and have overcome them: because
+greater is he that is in you, than he that is in the world.
+
+4:5 They are of the world: therefore speak they of the world, and the
+world heareth them.
+
+4:6 We are of God: he that knoweth God heareth us; he that is not of
+God heareth not us. Hereby know we the spirit of truth, and the spirit
+of error.
+
+4:7 Beloved, let us love one another: for love is of God; and every
+one that loveth is born of God, and knoweth God.
+
+4:8 He that loveth not knoweth not God; for God is love.
+
+4:9 In this was manifested the love of God toward us, because that God
+sent his only begotten Son into the world, that we might live through
+him.
+
+4:10 Herein is love, not that we loved God, but that he loved us, and
+sent his Son to be the propitiation for our sins.
+
+4:11 Beloved, if God so loved us, we ought also to love one another.
+
+4:12 No man hath seen God at any time. If we love one another, God
+dwelleth in us, and his love is perfected in us.
+
+4:13 Hereby know we that we dwell in him, and he in us, because he
+hath given us of his Spirit.
+
+4:14 And we have seen and do testify that the Father sent the Son to
+be the Saviour of the world.
+
+4:15 Whosoever shall confess that Jesus is the Son of God, God
+dwelleth in him, and he in God.
+
+4:16 And we have known and believed the love that God hath to us. God
+is love; and he that dwelleth in love dwelleth in God, and God in him.
+
+4:17 Herein is our love made perfect, that we may have boldness in the
+day of judgment: because as he is, so are we in this world.
+
+4:18 There is no fear in love; but perfect love casteth out fear:
+because fear hath torment. He that feareth is not made perfect in
+love.
+
+4:19 We love him, because he first loved us.
+
+4:20 If a man say, I love God, and hateth his brother, he is a liar:
+for he that loveth not his brother whom he hath seen, how can he love
+God whom he hath not seen? 4:21 And this commandment have we from
+him, That he who loveth God love his brother also.
+
+5:1 Whosoever believeth that Jesus is the Christ is born of God: and
+every one that loveth him that begat loveth him also that is begotten
+of him.
+
+5:2 By this we know that we love the children of God, when we love
+God, and keep his commandments.
+
+5:3 For this is the love of God, that we keep his commandments: and
+his commandments are not grievous.
+
+5:4 For whatsoever is born of God overcometh the world: and this is
+the victory that overcometh the world, even our faith.
+
+5:5 Who is he that overcometh the world, but he that believeth that
+Jesus is the Son of God? 5:6 This is he that came by water and blood,
+even Jesus Christ; not by water only, but by water and blood. And it
+is the Spirit that beareth witness, because the Spirit is truth.
+
+5:7 For there are three that bear record in heaven, the Father, the
+Word, and the Holy Ghost: and these three are one.
+
+5:8 And there are three that bear witness in earth, the Spirit, and
+the water, and the blood: and these three agree in one.
+
+5:9 If we receive the witness of men, the witness of God is greater:
+for this is the witness of God which he hath testified of his Son.
+
+5:10 He that believeth on the Son of God hath the witness in himself:
+he that believeth not God hath made him a liar; because he believeth
+not the record that God gave of his Son.
+
+5:11 And this is the record, that God hath given to us eternal life,
+and this life is in his Son.
+
+5:12 He that hath the Son hath life; and he that hath not the Son of
+God hath not life.
+
+5:13 These things have I written unto you that believe on the name of
+the Son of God; that ye may know that ye have eternal life, and that
+ye may believe on the name of the Son of God.
+
+5:14 And this is the confidence that we have in him, that, if we ask
+any thing according to his will, he heareth us: 5:15 And if we know
+that he hear us, whatsoever we ask, we know that we have the petitions
+that we desired of him.
+
+5:16 If any man see his brother sin a sin which is not unto death, he
+shall ask, and he shall give him life for them that sin not unto
+death. There is a sin unto death: I do not say that he shall pray for
+it.
+
+5:17 All unrighteousness is sin: and there is a sin not unto death.
+
+5:18 We know that whosoever is born of God sinneth not; but he that is
+begotten of God keepeth himself, and that wicked one toucheth him not.
+
+5:19 And we know that we are of God, and the whole world lieth in
+wickedness.
+
+5:20 And we know that the Son of God is come, and hath given us an
+understanding, that we may know him that is true, and we are in him
+that is true, even in his Son Jesus Christ. This is the true God, and
+eternal life.
+
+5:21 Little children, keep yourselves from idols. Amen.
+
+
+
+
+The Second Epistle General of John
+
+
+1:1 The elder unto the elect lady and her children, whom I love in
+the truth; and not I only, but also all they that have known the
+truth; 1:2 For the truth's sake, which dwelleth in us, and shall be
+with us for ever.
+
+1:3 Grace be with you, mercy, and peace, from God the Father, and from
+the Lord Jesus Christ, the Son of the Father, in truth and love.
+
+1:4 I rejoiced greatly that I found of thy children walking in truth,
+as we have received a commandment from the Father.
+
+1:5 And now I beseech thee, lady, not as though I wrote a new
+commandment unto thee, but that which we had from the beginning, that
+we love one another.
+
+1:6 And this is love, that we walk after his commandments. This is the
+commandment, That, as ye have heard from the beginning, ye should walk
+in it.
+
+1:7 For many deceivers are entered into the world, who confess not
+that Jesus Christ is come in the flesh. This is a deceiver and an
+antichrist.
+
+1:8 Look to yourselves, that we lose not those things which we have
+wrought, but that we receive a full reward.
+
+1:9 Whosoever transgresseth, and abideth not in the doctrine of
+Christ, hath not God. He that abideth in the doctrine of Christ, he
+hath both the Father and the Son.
+
+1:10 If there come any unto you, and bring not this doctrine, receive
+him not into your house, neither bid him God speed: 1:11 For he that
+biddeth him God speed is partaker of his evil deeds.
+
+1:12 Having many things to write unto you, I would not write with
+paper and ink: but I trust to come unto you, and speak face to face,
+that our joy may be full.
+
+1:13 The children of thy elect sister greet thee. Amen.
+
+
+
+
+The Third Epistle General of John
+
+
+1:1 The elder unto the wellbeloved Gaius, whom I love in the truth.
+
+1:2 Beloved, I wish above all things that thou mayest prosper and be
+in health, even as thy soul prospereth.
+
+1:3 For I rejoiced greatly, when the brethren came and testified of
+the truth that is in thee, even as thou walkest in the truth.
+
+1:4 I have no greater joy than to hear that my children walk in truth.
+
+1:5 Beloved, thou doest faithfully whatsoever thou doest to the
+brethren, and to strangers; 1:6 Which have borne witness of thy
+charity before the church: whom if thou bring forward on their journey
+after a godly sort, thou shalt do well: 1:7 Because that for his
+name's sake they went forth, taking nothing of the Gentiles.
+
+1:8 We therefore ought to receive such, that we might be fellowhelpers
+to the truth.
+
+1:9 I wrote unto the church: but Diotrephes, who loveth to have the
+preeminence among them, receiveth us not.
+
+1:10 Wherefore, if I come, I will remember his deeds which he doeth,
+prating against us with malicious words: and not content therewith,
+neither doth he himself receive the brethren, and forbiddeth them that
+would, and casteth them out of the church.
+
+1:11 Beloved, follow not that which is evil, but that which is good.
+He that doeth good is of God: but he that doeth evil hath not seen
+God.
+
+1:12 Demetrius hath good report of all men, and of the truth itself:
+yea, and we also bear record; and ye know that our record is true.
+
+1:13 I had many things to write, but I will not with ink and pen write
+unto thee: 1:14 But I trust I shall shortly see thee, and we shall
+speak face to face. Peace be to thee. Our friends salute thee. Greet
+the friends by name.
+
+
+
+
+The General Epistle of Jude
+
+
+1:1 Jude, the servant of Jesus Christ, and brother of James, to them
+that are sanctified by God the Father, and preserved in Jesus Christ,
+and called: 1:2 Mercy unto you, and peace, and love, be multiplied.
+
+1:3 Beloved, when I gave all diligence to write unto you of the common
+salvation, it was needful for me to write unto you, and exhort you
+that ye should earnestly contend for the faith which was once
+delivered unto the saints.
+
+1:4 For there are certain men crept in unawares, who were before of
+old ordained to this condemnation, ungodly men, turning the grace of
+our God into lasciviousness, and denying the only Lord God, and our
+Lord Jesus Christ.
+
+1:5 I will therefore put you in remembrance, though ye once knew this,
+how that the Lord, having saved the people out of the land of Egypt,
+afterward destroyed them that believed not.
+
+1:6 And the angels which kept not their first estate, but left their
+own habitation, he hath reserved in everlasting chains under darkness
+unto the judgment of the great day.
+
+1:7 Even as Sodom and Gomorrha, and the cities about them in like
+manner, giving themselves over to fornication, and going after strange
+flesh, are set forth for an example, suffering the vengeance of
+eternal fire.
+
+1:8 Likewise also these filthy dreamers defile the flesh, despise
+dominion, and speak evil of dignities.
+
+1:9 Yet Michael the archangel, when contending with the devil he
+disputed about the body of Moses, durst not bring against him a
+railing accusation, but said, The Lord rebuke thee.
+
+1:10 But these speak evil of those things which they know not: but
+what they know naturally, as brute beasts, in those things they
+corrupt themselves.
+
+1:11 Woe unto them! for they have gone in the way of Cain, and ran
+greedily after the error of Balaam for reward, and perished in the
+gainsaying of Core.
+
+1:12 These are spots in your feasts of charity, when they feast with
+you, feeding themselves without fear: clouds they are without water,
+carried about of winds; trees whose fruit withereth, without fruit,
+twice dead, plucked up by the roots; 1:13 Raging waves of the sea,
+foaming out their own shame; wandering stars, to whom is reserved the
+blackness of darkness for ever.
+
+1:14 And Enoch also, the seventh from Adam, prophesied of these,
+saying, Behold, the Lord cometh with ten thousands of his saints, 1:15
+To execute judgment upon all, and to convince all that are ungodly
+among them of all their ungodly deeds which they have ungodly
+committed, and of all their hard speeches which ungodly sinners have
+spoken against him.
+
+1:16 These are murmurers, complainers, walking after their own lusts;
+and their mouth speaketh great swelling words, having men's persons in
+admiration because of advantage.
+
+1:17 But, beloved, remember ye the words which were spoken before of
+the apostles of our Lord Jesus Christ; 1:18 How that they told you
+there should be mockers in the last time, who should walk after their
+own ungodly lusts.
+
+1:19 These be they who separate themselves, sensual, having not the
+Spirit.
+
+1:20 But ye, beloved, building up yourselves on your most holy faith,
+praying in the Holy Ghost, 1:21 Keep yourselves in the love of God,
+looking for the mercy of our Lord Jesus Christ unto eternal life.
+
+1:22 And of some have compassion, making a difference: 1:23 And others
+save with fear, pulling them out of the fire; hating even the garment
+spotted by the flesh.
+
+1:24 Now unto him that is able to keep you from falling, and to
+present you faultless before the presence of his glory with exceeding
+joy, 1:25 To the only wise God our Saviour, be glory and majesty,
+dominion and power, both now and ever. Amen.
+
+
+
+
+The Revelation of Saint John the Devine
+
+
+1:1 The Revelation of Jesus Christ, which God gave unto him, to shew
+unto his servants things which must shortly come to pass; and he sent
+and signified it by his angel unto his servant John: 1:2 Who bare
+record of the word of God, and of the testimony of Jesus Christ, and
+of all things that he saw.
+
+1:3 Blessed is he that readeth, and they that hear the words of this
+prophecy, and keep those things which are written therein: for the
+time is at hand.
+
+1:4 John to the seven churches which are in Asia: Grace be unto you,
+and peace, from him which is, and which was, and which is to come; and
+from the seven Spirits which are before his throne; 1:5 And from Jesus
+Christ, who is the faithful witness, and the first begotten of the
+dead, and the prince of the kings of the earth. Unto him that loved
+us, and washed us from our sins in his own blood, 1:6 And hath made us
+kings and priests unto God and his Father; to him be glory and
+dominion for ever and ever. Amen.
+
+1:7 Behold, he cometh with clouds; and every eye shall see him, and
+they also which pierced him: and all kindreds of the earth shall wail
+because of him. Even so, Amen.
+
+1:8 I am Alpha and Omega, the beginning and the ending, saith the
+Lord, which is, and which was, and which is to come, the Almighty.
+
+1:9 I John, who also am your brother, and companion in tribulation,
+and in the kingdom and patience of Jesus Christ, was in the isle that
+is called Patmos, for the word of God, and for the testimony of Jesus
+Christ.
+
+1:10 I was in the Spirit on the Lord's day, and heard behind me a
+great voice, as of a trumpet, 1:11 Saying, I am Alpha and Omega, the
+first and the last: and, What thou seest, write in a book, and send it
+unto the seven churches which are in Asia; unto Ephesus, and unto
+Smyrna, and unto Pergamos, and unto Thyatira, and unto Sardis, and
+unto Philadelphia, and unto Laodicea.
+
+1:12 And I turned to see the voice that spake with me. And being
+turned, I saw seven golden candlesticks; 1:13 And in the midst of the
+seven candlesticks one like unto the Son of man, clothed with a
+garment down to the foot, and girt about the paps with a golden
+girdle.
+
+1:14 His head and his hairs were white like wool, as white as snow;
+and his eyes were as a flame of fire; 1:15 And his feet like unto fine
+brass, as if they burned in a furnace; and his voice as the sound of
+many waters.
+
+1:16 And he had in his right hand seven stars: and out of his mouth
+went a sharp twoedged sword: and his countenance was as the sun
+shineth in his strength.
+
+1:17 And when I saw him, I fell at his feet as dead. And he laid his
+right hand upon me, saying unto me, Fear not; I am the first and the
+last: 1:18 I am he that liveth, and was dead; and, behold, I am alive
+for evermore, Amen; and have the keys of hell and of death.
+
+1:19 Write the things which thou hast seen, and the things which are,
+and the things which shall be hereafter; 1:20 The mystery of the seven
+stars which thou sawest in my right hand, and the seven golden
+candlesticks. The seven stars are the angels of the seven churches:
+and the seven candlesticks which thou sawest are the seven churches.
+
+2:1 Unto the angel of the church of Ephesus write; These things saith
+he that holdeth the seven stars in his right hand, who walketh in the
+midst of the seven golden candlesticks; 2:2 I know thy works, and thy
+labour, and thy patience, and how thou canst not bear them which are
+evil: and thou hast tried them which say they are apostles, and are
+not, and hast found them liars: 2:3 And hast borne, and hast patience,
+and for my name's sake hast laboured, and hast not fainted.
+
+2:4 Nevertheless I have somewhat against thee, because thou hast left
+thy first love.
+
+2:5 Remember therefore from whence thou art fallen, and repent, and do
+the first works; or else I will come unto thee quickly, and will
+remove thy candlestick out of his place, except thou repent.
+
+2:6 But this thou hast, that thou hatest the deeds of the
+Nicolaitanes, which I also hate.
+
+2:7 He that hath an ear, let him hear what the Spirit saith unto the
+churches; To him that overcometh will I give to eat of the tree of
+life, which is in the midst of the paradise of God.
+
+2:8 And unto the angel of the church in Smyrna write; These things
+saith the first and the last, which was dead, and is alive; 2:9 I know
+thy works, and tribulation, and poverty, (but thou art rich) and I
+know the blasphemy of them which say they are Jews, and are not, but
+are the synagogue of Satan.
+
+2:10 Fear none of those things which thou shalt suffer: behold, the
+devil shall cast some of you into prison, that ye may be tried; and ye
+shall have tribulation ten days: be thou faithful unto death, and I
+will give thee a crown of life.
+
+2:11 He that hath an ear, let him hear what the Spirit saith unto the
+churches; He that overcometh shall not be hurt of the second death.
+
+2:12 And to the angel of the church in Pergamos write; These things
+saith he which hath the sharp sword with two edges; 2:13 I know thy
+works, and where thou dwellest, even where Satan's seat is: and thou
+holdest fast my name, and hast not denied my faith, even in those days
+wherein Antipas was my faithful martyr, who was slain among you, where
+Satan dwelleth.
+
+2:14 But I have a few things against thee, because thou hast there
+them that hold the doctrine of Balaam, who taught Balac to cast a
+stumblingblock before the children of Israel, to eat things sacrificed
+unto idols, and to commit fornication.
+
+2:15 So hast thou also them that hold the doctrine of the
+Nicolaitanes, which thing I hate.
+
+2:16 Repent; or else I will come unto thee quickly, and will fight
+against them with the sword of my mouth.
+
+2:17 He that hath an ear, let him hear what the Spirit saith unto the
+churches; To him that overcometh will I give to eat of the hidden
+manna, and will give him a white stone, and in the stone a new name
+written, which no man knoweth saving he that receiveth it.
+
+2:18 And unto the angel of the church in Thyatira write; These things
+saith the Son of God, who hath his eyes like unto a flame of fire, and
+his feet are like fine brass; 2:19 I know thy works, and charity, and
+service, and faith, and thy patience, and thy works; and the last to
+be more than the first.
+
+2:20 Notwithstanding I have a few things against thee, because thou
+sufferest that woman Jezebel, which calleth herself a prophetess, to
+teach and to seduce my servants to commit fornication, and to eat
+things sacrificed unto idols.
+
+2:21 And I gave her space to repent of her fornication; and she
+repented not.
+
+2:22 Behold, I will cast her into a bed, and them that commit adultery
+with her into great tribulation, except they repent of their deeds.
+
+2:23 And I will kill her children with death; and all the churches
+shall know that I am he which searcheth the reins and hearts: and I
+will give unto every one of you according to your works.
+
+2:24 But unto you I say, and unto the rest in Thyatira, as many as
+have not this doctrine, and which have not known the depths of Satan,
+as they speak; I will put upon you none other burden.
+
+2:25 But that which ye have already hold fast till I come.
+
+2:26 And he that overcometh, and keepeth my works unto the end, to him
+will I give power over the nations: 2:27 And he shall rule them with a
+rod of iron; as the vessels of a potter shall they be broken to
+shivers: even as I received of my Father.
+
+2:28 And I will give him the morning star.
+
+2:29 He that hath an ear, let him hear what the Spirit saith unto the
+churches.
+
+3:1 And unto the angel of the church in Sardis write; These things
+saith he that hath the seven Spirits of God, and the seven stars; I
+know thy works, that thou hast a name that thou livest, and art dead.
+
+3:2 Be watchful, and strengthen the things which remain, that are
+ready to die: for I have not found thy works perfect before God.
+
+3:3 Remember therefore how thou hast received and heard, and hold
+fast, and repent. If therefore thou shalt not watch, I will come on
+thee as a thief, and thou shalt not know what hour I will come upon
+thee.
+
+3:4 Thou hast a few names even in Sardis which have not defiled their
+garments; and they shall walk with me in white: for they are worthy.
+
+3:5 He that overcometh, the same shall be clothed in white raiment;
+and I will not blot out his name out of the book of life, but I will
+confess his name before my Father, and before his angels.
+
+3:6 He that hath an ear, let him hear what the Spirit saith unto the
+churches.
+
+3:7 And to the angel of the church in Philadelphia write; These things
+saith he that is holy, he that is true, he that hath the key of David,
+he that openeth, and no man shutteth; and shutteth, and no man
+openeth; 3:8 I know thy works: behold, I have set before thee an open
+door, and no man can shut it: for thou hast a little strength, and
+hast kept my word, and hast not denied my name.
+
+3:9 Behold, I will make them of the synagogue of Satan, which say they
+are Jews, and are not, but do lie; behold, I will make them to come
+and worship before thy feet, and to know that I have loved thee.
+
+3:10 Because thou hast kept the word of my patience, I also will keep
+thee from the hour of temptation, which shall come upon all the world,
+to try them that dwell upon the earth.
+
+3:11 Behold, I come quickly: hold that fast which thou hast, that no
+man take thy crown.
+
+3:12 Him that overcometh will I make a pillar in the temple of my God,
+and he shall go no more out: and I will write upon him the name of my
+God, and the name of the city of my God, which is new Jerusalem, which
+cometh down out of heaven from my God: and I will write upon him my
+new name.
+
+3:13 He that hath an ear, let him hear what the Spirit saith unto the
+churches.
+
+3:14 And unto the angel of the church of the Laodiceans write; These
+things saith the Amen, the faithful and true witness, the beginning of
+the creation of God; 3:15 I know thy works, that thou art neither cold
+nor hot: I would thou wert cold or hot.
+
+3:16 So then because thou art lukewarm, and neither cold nor hot, I
+will spue thee out of my mouth.
+
+3:17 Because thou sayest, I am rich, and increased with goods, and
+have need of nothing; and knowest not that thou art wretched, and
+miserable, and poor, and blind, and naked: 3:18 I counsel thee to buy
+of me gold tried in the fire, that thou mayest be rich; and white
+raiment, that thou mayest be clothed, and that the shame of thy
+nakedness do not appear; and anoint thine eyes with eyesalve, that
+thou mayest see.
+
+3:19 As many as I love, I rebuke and chasten: be zealous therefore,
+and repent.
+
+3:20 Behold, I stand at the door, and knock: if any man hear my voice,
+and open the door, I will come in to him, and will sup with him, and
+he with me.
+
+3:21 To him that overcometh will I grant to sit with me in my throne,
+even as I also overcame, and am set down with my Father in his throne.
+
+3:22 He that hath an ear, let him hear what the Spirit saith unto the
+churches.
+
+4:1 After this I looked, and, behold, a door was opened in heaven: and
+the first voice which I heard was as it were of a trumpet talking with
+me; which said, Come up hither, and I will shew thee things which must
+be hereafter.
+
+4:2 And immediately I was in the spirit: and, behold, a throne was set
+in heaven, and one sat on the throne.
+
+4:3 And he that sat was to look upon like a jasper and a sardine
+stone: and there was a rainbow round about the throne, in sight like
+unto an emerald.
+
+4:4 And round about the throne were four and twenty seats: and upon
+the seats I saw four and twenty elders sitting, clothed in white
+raiment; and they had on their heads crowns of gold.
+
+4:5 And out of the throne proceeded lightnings and thunderings and
+voices: and there were seven lamps of fire burning before the throne,
+which are the seven Spirits of God.
+
+4:6 And before the throne there was a sea of glass like unto crystal:
+and in the midst of the throne, and round about the throne, were four
+beasts full of eyes before and behind.
+
+4:7 And the first beast was like a lion, and the second beast like a
+calf, and the third beast had a face as a man, and the fourth beast
+was like a flying eagle.
+
+4:8 And the four beasts had each of them six wings about him; and they
+were full of eyes within: and they rest not day and night, saying,
+Holy, holy, holy, LORD God Almighty, which was, and is, and is to
+come.
+
+4:9 And when those beasts give glory and honour and thanks to him that
+sat on the throne, who liveth for ever and ever, 4:10 The four and
+twenty elders fall down before him that sat on the throne, and worship
+him that liveth for ever and ever, and cast their crowns before the
+throne, saying, 4:11 Thou art worthy, O Lord, to receive glory and
+honour and power: for thou hast created all things, and for thy
+pleasure they are and were created.
+
+5:1 And I saw in the right hand of him that sat on the throne a book
+written within and on the backside, sealed with seven seals.
+
+5:2 And I saw a strong angel proclaiming with a loud voice, Who is
+worthy to open the book, and to loose the seals thereof? 5:3 And no
+man in heaven, nor in earth, neither under the earth, was able to open
+the book, neither to look thereon.
+
+5:4 And I wept much, because no man was found worthy to open and to
+read the book, neither to look thereon.
+
+5:5 And one of the elders saith unto me, Weep not: behold, the Lion of
+the tribe of Juda, the Root of David, hath prevailed to open the book,
+and to loose the seven seals thereof.
+
+5:6 And I beheld, and, lo, in the midst of the throne and of the four
+beasts, and in the midst of the elders, stood a Lamb as it had been
+slain, having seven horns and seven eyes, which are the seven Spirits
+of God sent forth into all the earth.
+
+5:7 And he came and took the book out of the right hand of him that
+sat upon the throne.
+
+5:8 And when he had taken the book, the four beasts and four and
+twenty elders fell down before the Lamb, having every one of them
+harps, and golden vials full of odours, which are the prayers of
+saints.
+
+5:9 And they sung a new song, saying, Thou art worthy to take the
+book, and to open the seals thereof: for thou wast slain, and hast
+redeemed us to God by thy blood out of every kindred, and tongue, and
+people, and nation; 5:10 And hast made us unto our God kings and
+priests: and we shall reign on the earth.
+
+5:11 And I beheld, and I heard the voice of many angels round about
+the throne and the beasts and the elders: and the number of them was
+ten thousand times ten thousand, and thousands of thousands; 5:12
+Saying with a loud voice, Worthy is the Lamb that was slain to receive
+power, and riches, and wisdom, and strength, and honour, and glory,
+and blessing.
+
+5:13 And every creature which is in heaven, and on the earth, and
+under the earth, and such as are in the sea, and all that are in them,
+heard I saying, Blessing, and honour, and glory, and power, be unto
+him that sitteth upon the throne, and unto the Lamb for ever and ever.
+
+5:14 And the four beasts said, Amen. And the four and twenty elders
+fell down and worshipped him that liveth for ever and ever.
+
+6:1 And I saw when the Lamb opened one of the seals, and I heard, as
+it were the noise of thunder, one of the four beasts saying, Come and
+see.
+
+6:2 And I saw, and behold a white horse: and he that sat on him had a
+bow; and a crown was given unto him: and he went forth conquering, and
+to conquer.
+
+6:3 And when he had opened the second seal, I heard the second beast
+say, Come and see.
+
+6:4 And there went out another horse that was red: and power was given
+to him that sat thereon to take peace from the earth, and that they
+should kill one another: and there was given unto him a great sword.
+
+6:5 And when he had opened the third seal, I heard the third beast
+say, Come and see. And I beheld, and lo a black horse; and he that sat
+on him had a pair of balances in his hand.
+
+6:6 And I heard a voice in the midst of the four beasts say, A measure
+of wheat for a penny, and three measures of barley for a penny; and
+see thou hurt not the oil and the wine.
+
+6:7 And when he had opened the fourth seal, I heard the voice of the
+fourth beast say, Come and see.
+
+6:8 And I looked, and behold a pale horse: and his name that sat on
+him was Death, and Hell followed with him. And power was given unto
+them over the fourth part of the earth, to kill with sword, and with
+hunger, and with death, and with the beasts of the earth.
+
+6:9 And when he had opened the fifth seal, I saw under the altar the
+souls of them that were slain for the word of God, and for the
+testimony which they held: 6:10 And they cried with a loud voice,
+saying, How long, O Lord, holy and true, dost thou not judge and
+avenge our blood on them that dwell on the earth? 6:11 And white
+robes were given unto every one of them; and it was said unto them,
+that they should rest yet for a little season, until their
+fellowservants also and their brethren, that should be killed as they
+were, should be fulfilled.
+
+6:12 And I beheld when he had opened the sixth seal, and, lo, there
+was a great earthquake; and the sun became black as sackcloth of hair,
+and the moon became as blood; 6:13 And the stars of heaven fell unto
+the earth, even as a fig tree casteth her untimely figs, when she is
+shaken of a mighty wind.
+
+6:14 And the heaven departed as a scroll when it is rolled together;
+and every mountain and island were moved out of their places.
+
+6:15 And the kings of the earth, and the great men, and the rich men,
+and the chief captains, and the mighty men, and every bondman, and
+every free man, hid themselves in the dens and in the rocks of the
+mountains; 6:16 And said to the mountains and rocks, Fall on us, and
+hide us from the face of him that sitteth on the throne, and from the
+wrath of the Lamb: 6:17 For the great day of his wrath is come; and
+who shall be able to stand? 7:1 And after these things I saw four
+angels standing on the four corners of the earth, holding the four
+winds of the earth, that the wind should not blow on the earth, nor on
+the sea, nor on any tree.
+
+7:2 And I saw another angel ascending from the east, having the seal
+of the living God: and he cried with a loud voice to the four angels,
+to whom it was given to hurt the earth and the sea, 7:3 Saying, Hurt
+not the earth, neither the sea, nor the trees, till we have sealed the
+servants of our God in their foreheads.
+
+7:4 And I heard the number of them which were sealed: and there were
+sealed an hundred and forty and four thousand of all the tribes of the
+children of Israel.
+
+7:5 Of the tribe of Juda were sealed twelve thousand. Of the tribe of
+Reuben were sealed twelve thousand. Of the tribe of Gad were sealed
+twelve thousand.
+
+7:6 Of the tribe of Aser were sealed twelve thousand. Of the tribe of
+Nephthalim were sealed twelve thousand. Of the tribe of Manasses were
+sealed twelve thousand.
+
+7:7 Of the tribe of Simeon were sealed twelve thousand. Of the tribe
+of Levi were sealed twelve thousand. Of the tribe of Issachar were
+sealed twelve thousand.
+
+7:8 Of the tribe of Zabulon were sealed twelve thousand. Of the tribe
+of Joseph were sealed twelve thousand. Of the tribe of Benjamin were
+sealed twelve thousand.
+
+7:9 After this I beheld, and, lo, a great multitude, which no man
+could number, of all nations, and kindreds, and people, and tongues,
+stood before the throne, and before the Lamb, clothed with white
+robes, and palms in their hands; 7:10 And cried with a loud voice,
+saying, Salvation to our God which sitteth upon the throne, and unto
+the Lamb.
+
+7:11 And all the angels stood round about the throne, and about the
+elders and the four beasts, and fell before the throne on their faces,
+and worshipped God, 7:12 Saying, Amen: Blessing, and glory, and
+wisdom, and thanksgiving, and honour, and power, and might, be unto
+our God for ever and ever. Amen.
+
+7:13 And one of the elders answered, saying unto me, What are these
+which are arrayed in white robes? and whence came they? 7:14 And I
+said unto him, Sir, thou knowest. And he said to me, These are they
+which came out of great tribulation, and have washed their robes, and
+made them white in the blood of the Lamb.
+
+7:15 Therefore are they before the throne of God, and serve him day
+and night in his temple: and he that sitteth on the throne shall dwell
+among them.
+
+7:16 They shall hunger no more, neither thirst any more; neither shall
+the sun light on them, nor any heat.
+
+7:17 For the Lamb which is in the midst of the throne shall feed them,
+and shall lead them unto living fountains of waters: and God shall
+wipe away all tears from their eyes.
+
+8:1 And when he had opened the seventh seal, there was silence in
+heaven about the space of half an hour.
+
+8:2 And I saw the seven angels which stood before God; and to them
+were given seven trumpets.
+
+8:3 And another angel came and stood at the altar, having a golden
+censer; and there was given unto him much incense, that he should
+offer it with the prayers of all saints upon the golden altar which
+was before the throne.
+
+8:4 And the smoke of the incense, which came with the prayers of the
+saints, ascended up before God out of the angel's hand.
+
+8:5 And the angel took the censer, and filled it with fire of the
+altar, and cast it into the earth: and there were voices, and
+thunderings, and lightnings, and an earthquake.
+
+8:6 And the seven angels which had the seven trumpets prepared
+themselves to sound.
+
+8:7 The first angel sounded, and there followed hail and fire mingled
+with blood, and they were cast upon the earth: and the third part of
+trees was burnt up, and all green grass was burnt up.
+
+8:8 And the second angel sounded, and as it were a great mountain
+burning with fire was cast into the sea: and the third part of the sea
+became blood; 8:9 And the third part of the creatures which were in
+the sea, and had life, died; and the third part of the ships were
+destroyed.
+
+8:10 And the third angel sounded, and there fell a great star from
+heaven, burning as it were a lamp, and it fell upon the third part of
+the rivers, and upon the fountains of waters; 8:11 And the name of the
+star is called Wormwood: and the third part of the waters became
+wormwood; and many men died of the waters, because they were made
+bitter.
+
+8:12 And the fourth angel sounded, and the third part of the sun was
+smitten, and the third part of the moon, and the third part of the
+stars; so as the third part of them was darkened, and the day shone
+not for a third part of it, and the night likewise.
+
+8:13 And I beheld, and heard an angel flying through the midst of
+heaven, saying with a loud voice, Woe, woe, woe, to the inhabiters of
+the earth by reason of the other voices of the trumpet of the three
+angels, which are yet to sound! 9:1 And the fifth angel sounded, and
+I saw a star fall from heaven unto the earth: and to him was given the
+key of the bottomless pit.
+
+9:2 And he opened the bottomless pit; and there arose a smoke out of
+the pit, as the smoke of a great furnace; and the sun and the air were
+darkened by reason of the smoke of the pit.
+
+9:3 And there came out of the smoke locusts upon the earth: and unto
+them was given power, as the scorpions of the earth have power.
+
+9:4 And it was commanded them that they should not hurt the grass of
+the earth, neither any green thing, neither any tree; but only those
+men which have not the seal of God in their foreheads.
+
+9:5 And to them it was given that they should not kill them, but that
+they should be tormented five months: and their torment was as the
+torment of a scorpion, when he striketh a man.
+
+9:6 And in those days shall men seek death, and shall not find it; and
+shall desire to die, and death shall flee from them.
+
+9:7 And the shapes of the locusts were like unto horses prepared unto
+battle; and on their heads were as it were crowns like gold, and their
+faces were as the faces of men.
+
+9:8 And they had hair as the hair of women, and their teeth were as
+the teeth of lions.
+
+9:9 And they had breastplates, as it were breastplates of iron; and
+the sound of their wings was as the sound of chariots of many horses
+running to battle.
+
+9:10 And they had tails like unto scorpions, and there were stings in
+their tails: and their power was to hurt men five months.
+
+9:11 And they had a king over them, which is the angel of the
+bottomless pit, whose name in the Hebrew tongue is Abaddon, but in the
+Greek tongue hath his name Apollyon.
+
+9:12 One woe is past; and, behold, there come two woes more hereafter.
+
+9:13 And the sixth angel sounded, and I heard a voice from the four
+horns of the golden altar which is before God, 9:14 Saying to the
+sixth angel which had the trumpet, Loose the four angels which are
+bound in the great river Euphrates.
+
+9:15 And the four angels were loosed, which were prepared for an hour,
+and a day, and a month, and a year, for to slay the third part of men.
+
+9:16 And the number of the army of the horsemen were two hundred
+thousand thousand: and I heard the number of them.
+
+9:17 And thus I saw the horses in the vision, and them that sat on
+them, having breastplates of fire, and of jacinth, and brimstone: and
+the heads of the horses were as the heads of lions; and out of their
+mouths issued fire and smoke and brimstone.
+
+9:18 By these three was the third part of men killed, by the fire, and
+by the smoke, and by the brimstone, which issued out of their mouths.
+
+9:19 For their power is in their mouth, and in their tails: for their
+tails were like unto serpents, and had heads, and with them they do
+hurt.
+
+9:20 And the rest of the men which were not killed by these plagues
+yet repented not of the works of their hands, that they should not
+worship devils, and idols of gold, and silver, and brass, and stone,
+and of wood: which neither can see, nor hear, nor walk: 9:21 Neither
+repented they of their murders, nor of their sorceries, nor of their
+fornication, nor of their thefts.
+
+10:1 And I saw another mighty angel come down from heaven, clothed
+with a cloud: and a rainbow was upon his head, and his face was as it
+were the sun, and his feet as pillars of fire: 10:2 And he had in his
+hand a little book open: and he set his right foot upon the sea, and
+his left foot on the earth, 10:3 And cried with a loud voice, as when
+a lion roareth: and when he had cried, seven thunders uttered their
+voices.
+
+10:4 And when the seven thunders had uttered their voices, I was about
+to write: and I heard a voice from heaven saying unto me, Seal up
+those things which the seven thunders uttered, and write them not.
+
+10:5 And the angel which I saw stand upon the sea and upon the earth
+lifted up his hand to heaven, 10:6 And sware by him that liveth for
+ever and ever, who created heaven, and the things that therein are,
+and the earth, and the things that therein are, and the sea, and the
+things which are therein, that there should be time no longer: 10:7
+But in the days of the voice of the seventh angel, when he shall begin
+to sound, the mystery of God should be finished, as he hath declared
+to his servants the prophets.
+
+10:8 And the voice which I heard from heaven spake unto me again, and
+said, Go and take the little book which is open in the hand of the
+angel which standeth upon the sea and upon the earth.
+
+10:9 And I went unto the angel, and said unto him, Give me the little
+book. And he said unto me, Take it, and eat it up; and it shall make
+thy belly bitter, but it shall be in thy mouth sweet as honey.
+
+10:10 And I took the little book out of the angel's hand, and ate it
+up; and it was in my mouth sweet as honey: and as soon as I had eaten
+it, my belly was bitter.
+
+10:11 And he said unto me, Thou must prophesy again before many
+peoples, and nations, and tongues, and kings.
+
+11:1 And there was given me a reed like unto a rod: and the angel
+stood, saying, Rise, and measure the temple of God, and the altar, and
+them that worship therein.
+
+11:2 But the court which is without the temple leave out, and measure
+it not; for it is given unto the Gentiles: and the holy city shall
+they tread under foot forty and two months.
+
+11:3 And I will give power unto my two witnesses, and they shall
+prophesy a thousand two hundred and threescore days, clothed in
+sackcloth.
+
+11:4 These are the two olive trees, and the two candlesticks standing
+before the God of the earth.
+
+11:5 And if any man will hurt them, fire proceedeth out of their
+mouth, and devoureth their enemies: and if any man will hurt them, he
+must in this manner be killed.
+
+11:6 These have power to shut heaven, that it rain not in the days of
+their prophecy: and have power over waters to turn them to blood, and
+to smite the earth with all plagues, as often as they will.
+
+11:7 And when they shall have finished their testimony, the beast that
+ascendeth out of the bottomless pit shall make war against them, and
+shall overcome them, and kill them.
+
+11:8 And their dead bodies shall lie in the street of the great city,
+which spiritually is called Sodom and Egypt, where also our Lord was
+crucified.
+
+11:9 And they of the people and kindreds and tongues and nations shall
+see their dead bodies three days and an half, and shall not suffer
+their dead bodies to be put in graves.
+
+11:10 And they that dwell upon the earth shall rejoice over them, and
+make merry, and shall send gifts one to another; because these two
+prophets tormented them that dwelt on the earth.
+
+11:11 And after three days and an half the spirit of life from God
+entered into them, and they stood upon their feet; and great fear fell
+upon them which saw them.
+
+11:12 And they heard a great voice from heaven saying unto them, Come
+up hither. And they ascended up to heaven in a cloud; and their
+enemies beheld them.
+
+11:13 And the same hour was there a great earthquake, and the tenth
+part of the city fell, and in the earthquake were slain of men seven
+thousand: and the remnant were affrighted, and gave glory to the God
+of heaven.
+
+11:14 The second woe is past; and, behold, the third woe cometh
+quickly.
+
+11:15 And the seventh angel sounded; and there were great voices in
+heaven, saying, The kingdoms of this world are become the kingdoms of
+our Lord, and of his Christ; and he shall reign for ever and ever.
+
+11:16 And the four and twenty elders, which sat before God on their
+seats, fell upon their faces, and worshipped God, 11:17 Saying, We
+give thee thanks, O LORD God Almighty, which art, and wast, and art to
+come; because thou hast taken to thee thy great power, and hast
+reigned.
+
+11:18 And the nations were angry, and thy wrath is come, and the time
+of the dead, that they should be judged, and that thou shouldest give
+reward unto thy servants the prophets, and to the saints, and them
+that fear thy name, small and great; and shouldest destroy them which
+destroy the earth.
+
+11:19 And the temple of God was opened in heaven, and there was seen
+in his temple the ark of his testament: and there were lightnings, and
+voices, and thunderings, and an earthquake, and great hail.
+
+12:1 And there appeared a great wonder in heaven; a woman clothed with
+the sun, and the moon under her feet, and upon her head a crown of
+twelve stars: 12:2 And she being with child cried, travailing in
+birth, and pained to be delivered.
+
+12:3 And there appeared another wonder in heaven; and behold a great
+red dragon, having seven heads and ten horns, and seven crowns upon
+his heads.
+
+12:4 And his tail drew the third part of the stars of heaven, and did
+cast them to the earth: and the dragon stood before the woman which
+was ready to be delivered, for to devour her child as soon as it was
+born.
+
+12:5 And she brought forth a man child, who was to rule all nations
+with a rod of iron: and her child was caught up unto God, and to his
+throne.
+
+12:6 And the woman fled into the wilderness, where she hath a place
+prepared of God, that they should feed her there a thousand two
+hundred and threescore days.
+
+12:7 And there was war in heaven: Michael and his angels fought
+against the dragon; and the dragon fought and his angels, 12:8 And
+prevailed not; neither was their place found any more in heaven.
+
+12:9 And the great dragon was cast out, that old serpent, called the
+Devil, and Satan, which deceiveth the whole world: he was cast out
+into the earth, and his angels were cast out with him.
+
+12:10 And I heard a loud voice saying in heaven, Now is come
+salvation, and strength, and the kingdom of our God, and the power of
+his Christ: for the accuser of our brethren is cast down, which
+accused them before our God day and night.
+
+12:11 And they overcame him by the blood of the Lamb, and by the word
+of their testimony; and they loved not their lives unto the death.
+
+12:12 Therefore rejoice, ye heavens, and ye that dwell in them. Woe to
+the inhabiters of the earth and of the sea! for the devil is come down
+unto you, having great wrath, because he knoweth that he hath but a
+short time.
+
+12:13 And when the dragon saw that he was cast unto the earth, he
+persecuted the woman which brought forth the man child.
+
+12:14 And to the woman were given two wings of a great eagle, that she
+might fly into the wilderness, into her place, where she is nourished
+for a time, and times, and half a time, from the face of the serpent.
+
+12:15 And the serpent cast out of his mouth water as a flood after the
+woman, that he might cause her to be carried away of the flood.
+
+12:16 And the earth helped the woman, and the earth opened her mouth,
+and swallowed up the flood which the dragon cast out of his mouth.
+
+12:17 And the dragon was wroth with the woman, and went to make war
+with the remnant of her seed, which keep the commandments of God, and
+have the testimony of Jesus Christ.
+
+13:1 And I stood upon the sand of the sea, and saw a beast rise up out
+of the sea, having seven heads and ten horns, and upon his horns ten
+crowns, and upon his heads the name of blasphemy.
+
+13:2 And the beast which I saw was like unto a leopard, and his feet
+were as the feet of a bear, and his mouth as the mouth of a lion: and
+the dragon gave him his power, and his seat, and great authority.
+
+13:3 And I saw one of his heads as it were wounded to death; and his
+deadly wound was healed: and all the world wondered after the beast.
+
+13:4 And they worshipped the dragon which gave power unto the beast:
+and they worshipped the beast, saying, Who is like unto the beast? who
+is able to make war with him? 13:5 And there was given unto him a
+mouth speaking great things and blasphemies; and power was given unto
+him to continue forty and two months.
+
+13:6 And he opened his mouth in blasphemy against God, to blaspheme
+his name, and his tabernacle, and them that dwell in heaven.
+
+13:7 And it was given unto him to make war with the saints, and to
+overcome them: and power was given him over all kindreds, and tongues,
+and nations.
+
+13:8 And all that dwell upon the earth shall worship him, whose names
+are not written in the book of life of the Lamb slain from the
+foundation of the world.
+
+13:9 If any man have an ear, let him hear.
+
+13:10 He that leadeth into captivity shall go into captivity: he that
+killeth with the sword must be killed with the sword. Here is the
+patience and the faith of the saints.
+
+13:11 And I beheld another beast coming up out of the earth; and he
+had two horns like a lamb, and he spake as a dragon.
+
+13:12 And he exerciseth all the power of the first beast before him,
+and causeth the earth and them which dwell therein to worship the
+first beast, whose deadly wound was healed.
+
+13:13 And he doeth great wonders, so that he maketh fire come down
+from heaven on the earth in the sight of men, 13:14 And deceiveth them
+that dwell on the earth by the means of those miracles which he had
+power to do in the sight of the beast; saying to them that dwell on
+the earth, that they should make an image to the beast, which had the
+wound by a sword, and did live.
+
+13:15 And he had power to give life unto the image of the beast, that
+the image of the beast should both speak, and cause that as many as
+would not worship the image of the beast should be killed.
+
+13:16 And he causeth all, both small and great, rich and poor, free
+and bond, to receive a mark in their right hand, or in their
+foreheads: 13:17 And that no man might buy or sell, save he that had
+the mark, or the name of the beast, or the number of his name.
+
+13:18 Here is wisdom. Let him that hath understanding count the number
+of the beast: for it is the number of a man; and his number is Six
+hundred threescore and six.
+
+14:1 And I looked, and, lo, a Lamb stood on the mount Sion, and with
+him an hundred forty and four thousand, having his Father's name
+written in their foreheads.
+
+14:2 And I heard a voice from heaven, as the voice of many waters, and
+as the voice of a great thunder: and I heard the voice of harpers
+harping with their harps: 14:3 And they sung as it were a new song
+before the throne, and before the four beasts, and the elders: and no
+man could learn that song but the hundred and forty and four thousand,
+which were redeemed from the earth.
+
+14:4 These are they which were not defiled with women; for they are
+virgins. These are they which follow the Lamb whithersoever he goeth.
+These were redeemed from among men, being the firstfruits unto God and
+to the Lamb.
+
+14:5 And in their mouth was found no guile: for they are without fault
+before the throne of God.
+
+14:6 And I saw another angel fly in the midst of heaven, having the
+everlasting gospel to preach unto them that dwell on the earth, and to
+every nation, and kindred, and tongue, and people, 14:7 Saying with a
+loud voice, Fear God, and give glory to him; for the hour of his
+judgment is come: and worship him that made heaven, and earth, and the
+sea, and the fountains of waters.
+
+14:8 And there followed another angel, saying, Babylon is fallen, is
+fallen, that great city, because she made all nations drink of the
+wine of the wrath of her fornication.
+
+14:9 And the third angel followed them, saying with a loud voice, If
+any man worship the beast and his image, and receive his mark in his
+forehead, or in his hand, 14:10 The same shall drink of the wine of
+the wrath of God, which is poured out without mixture into the cup of
+his indignation; and he shall be tormented with fire and brimstone in
+the presence of the holy angels, and in the presence of the Lamb:
+14:11 And the smoke of their torment ascendeth up for ever and ever:
+and they have no rest day nor night, who worship the beast and his
+image, and whosoever receiveth the mark of his name.
+
+14:12 Here is the patience of the saints: here are they that keep the
+commandments of God, and the faith of Jesus.
+
+14:13 And I heard a voice from heaven saying unto me, Write, Blessed
+are the dead which die in the Lord from henceforth: Yea, saith the
+Spirit, that they may rest from their labours; and their works do
+follow them.
+
+14:14 And I looked, and behold a white cloud, and upon the cloud one
+sat like unto the Son of man, having on his head a golden crown, and
+in his hand a sharp sickle.
+
+14:15 And another angel came out of the temple, crying with a loud
+voice to him that sat on the cloud, Thrust in thy sickle, and reap:
+for the time is come for thee to reap; for the harvest of the earth is
+ripe.
+
+14:16 And he that sat on the cloud thrust in his sickle on the earth;
+and the earth was reaped.
+
+14:17 And another angel came out of the temple which is in heaven, he
+also having a sharp sickle.
+
+14:18 And another angel came out from the altar, which had power over
+fire; and cried with a loud cry to him that had the sharp sickle,
+saying, Thrust in thy sharp sickle, and gather the clusters of the
+vine of the earth; for her grapes are fully ripe.
+
+14:19 And the angel thrust in his sickle into the earth, and gathered
+the vine of the earth, and cast it into the great winepress of the
+wrath of God.
+
+14:20 And the winepress was trodden without the city, and blood came
+out of the winepress, even unto the horse bridles, by the space of a
+thousand and six hundred furlongs.
+
+15:1 And I saw another sign in heaven, great and marvellous, seven
+angels having the seven last plagues; for in them is filled up the
+wrath of God.
+
+15:2 And I saw as it were a sea of glass mingled with fire: and them
+that had gotten the victory over the beast, and over his image, and
+over his mark, and over the number of his name, stand on the sea of
+glass, having the harps of God.
+
+15:3 And they sing the song of Moses the servant of God, and the song
+of the Lamb, saying, Great and marvellous are thy works, Lord God
+Almighty; just and true are thy ways, thou King of saints.
+
+15:4 Who shall not fear thee, O Lord, and glorify thy name? for thou
+only art holy: for all nations shall come and worship before thee; for
+thy judgments are made manifest.
+
+15:5 And after that I looked, and, behold, the temple of the
+tabernacle of the testimony in heaven was opened: 15:6 And the seven
+angels came out of the temple, having the seven plagues, clothed in
+pure and white linen, and having their breasts girded with golden
+girdles.
+
+15:7 And one of the four beasts gave unto the seven angels seven
+golden vials full of the wrath of God, who liveth for ever and ever.
+
+15:8 And the temple was filled with smoke from the glory of God, and
+from his power; and no man was able to enter into the temple, till the
+seven plagues of the seven angels were fulfilled.
+
+16:1 And I heard a great voice out of the temple saying to the seven
+angels, Go your ways, and pour out the vials of the wrath of God upon
+the earth.
+
+16:2 And the first went, and poured out his vial upon the earth; and
+there fell a noisome and grievous sore upon the men which had the mark
+of the beast, and upon them which worshipped his image.
+
+16:3 And the second angel poured out his vial upon the sea; and it
+became as the blood of a dead man: and every living soul died in the
+sea.
+
+16:4 And the third angel poured out his vial upon the rivers and
+fountains of waters; and they became blood.
+
+16:5 And I heard the angel of the waters say, Thou art righteous, O
+Lord, which art, and wast, and shalt be, because thou hast judged
+thus.
+
+16:6 For they have shed the blood of saints and prophets, and thou
+hast given them blood to drink; for they are worthy.
+
+16:7 And I heard another out of the altar say, Even so, Lord God
+Almighty, true and righteous are thy judgments.
+
+16:8 And the fourth angel poured out his vial upon the sun; and power
+was given unto him to scorch men with fire.
+
+16:9 And men were scorched with great heat, and blasphemed the name of
+God, which hath power over these plagues: and they repented not to
+give him glory.
+
+16:10 And the fifth angel poured out his vial upon the seat of the
+beast; and his kingdom was full of darkness; and they gnawed their
+tongues for pain, 16:11 And blasphemed the God of heaven because of
+their pains and their sores, and repented not of their deeds.
+
+16:12 And the sixth angel poured out his vial upon the great river
+Euphrates; and the water thereof was dried up, that the way of the
+kings of the east might be prepared.
+
+16:13 And I saw three unclean spirits like frogs come out of the mouth
+of the dragon, and out of the mouth of the beast, and out of the mouth
+of the false prophet.
+
+16:14 For they are the spirits of devils, working miracles, which go
+forth unto the kings of the earth and of the whole world, to gather
+them to the battle of that great day of God Almighty.
+
+16:15 Behold, I come as a thief. Blessed is he that watcheth, and
+keepeth his garments, lest he walk naked, and they see his shame.
+
+16:16 And he gathered them together into a place called in the Hebrew
+tongue Armageddon.
+
+16:17 And the seventh angel poured out his vial into the air; and
+there came a great voice out of the temple of heaven, from the throne,
+saying, It is done.
+
+16:18 And there were voices, and thunders, and lightnings; and there
+was a great earthquake, such as was not since men were upon the earth,
+so mighty an earthquake, and so great.
+
+16:19 And the great city was divided into three parts, and the cities
+of the nations fell: and great Babylon came in remembrance before God,
+to give unto her the cup of the wine of the fierceness of his wrath.
+
+16:20 And every island fled away, and the mountains were not found.
+
+16:21 And there fell upon men a great hail out of heaven, every stone
+about the weight of a talent: and men blasphemed God because of the
+plague of the hail; for the plague thereof was exceeding great.
+
+17:1 And there came one of the seven angels which had the seven vials,
+and talked with me, saying unto me, Come hither; I will shew unto thee
+the judgment of the great whore that sitteth upon many waters: 17:2
+With whom the kings of the earth have committed fornication, and the
+inhabitants of the earth have been made drunk with the wine of her
+fornication.
+
+17:3 So he carried me away in the spirit into the wilderness: and I
+saw a woman sit upon a scarlet coloured beast, full of names of
+blasphemy, having seven heads and ten horns.
+
+17:4 And the woman was arrayed in purple and scarlet colour, and
+decked with gold and precious stones and pearls, having a golden cup
+in her hand full of abominations and filthiness of her fornication:
+17:5 And upon her forehead was a name written, MYSTERY, BABYLON THE
+GREAT, THE MOTHER OF HARLOTS AND ABOMINATIONS OF THE EARTH.
+
+17:6 And I saw the woman drunken with the blood of the saints, and
+with the blood of the martyrs of Jesus: and when I saw her, I wondered
+with great admiration.
+
+17:7 And the angel said unto me, Wherefore didst thou marvel? I will
+tell thee the mystery of the woman, and of the beast that carrieth
+her, which hath the seven heads and ten horns.
+
+17:8 The beast that thou sawest was, and is not; and shall ascend out
+of the bottomless pit, and go into perdition: and they that dwell on
+the earth shall wonder, whose names were not written in the book of
+life from the foundation of the world, when they behold the beast that
+was, and is not, and yet is.
+
+17:9 And here is the mind which hath wisdom. The seven heads are seven
+mountains, on which the woman sitteth.
+
+17:10 And there are seven kings: five are fallen, and one is, and the
+other is not yet come; and when he cometh, he must continue a short
+space.
+
+17:11 And the beast that was, and is not, even he is the eighth, and
+is of the seven, and goeth into perdition.
+
+17:12 And the ten horns which thou sawest are ten kings, which have
+received no kingdom as yet; but receive power as kings one hour with
+the beast.
+
+17:13 These have one mind, and shall give their power and strength
+unto the beast.
+
+17:14 These shall make war with the Lamb, and the Lamb shall overcome
+them: for he is Lord of lords, and King of kings: and they that are
+with him are called, and chosen, and faithful.
+
+17:15 And he saith unto me, The waters which thou sawest, where the
+whore sitteth, are peoples, and multitudes, and nations, and tongues.
+
+17:16 And the ten horns which thou sawest upon the beast, these shall
+hate the whore, and shall make her desolate and naked, and shall eat
+her flesh, and burn her with fire.
+
+17:17 For God hath put in their hearts to fulfil his will, and to
+agree, and give their kingdom unto the beast, until the words of God
+shall be fulfilled.
+
+17:18 And the woman which thou sawest is that great city, which
+reigneth over the kings of the earth.
+
+18:1 And after these things I saw another angel come down from heaven,
+having great power; and the earth was lightened with his glory.
+
+18:2 And he cried mightily with a strong voice, saying, Babylon the
+great is fallen, is fallen, and is become the habitation of devils,
+and the hold of every foul spirit, and a cage of every unclean and
+hateful bird.
+
+18:3 For all nations have drunk of the wine of the wrath of her
+fornication, and the kings of the earth have committed fornication
+with her, and the merchants of the earth are waxed rich through the
+abundance of her delicacies.
+
+18:4 And I heard another voice from heaven, saying, Come out of her,
+my people, that ye be not partakers of her sins, and that ye receive
+not of her plagues.
+
+18:5 For her sins have reached unto heaven, and God hath remembered
+her iniquities.
+
+18:6 Reward her even as she rewarded you, and double unto her double
+according to her works: in the cup which she hath filled fill to her
+double.
+
+18:7 How much she hath glorified herself, and lived deliciously, so
+much torment and sorrow give her: for she saith in her heart, I sit a
+queen, and am no widow, and shall see no sorrow.
+
+18:8 Therefore shall her plagues come in one day, death, and mourning,
+and famine; and she shall be utterly burned with fire: for strong is
+the Lord God who judgeth her.
+
+18:9 And the kings of the earth, who have committed fornication and
+lived deliciously with her, shall bewail her, and lament for her, when
+they shall see the smoke of her burning, 18:10 Standing afar off for
+the fear of her torment, saying, Alas, alas that great city Babylon,
+that mighty city! for in one hour is thy judgment come.
+
+18:11 And the merchants of the earth shall weep and mourn over her;
+for no man buyeth their merchandise any more: 18:12 The merchandise of
+gold, and silver, and precious stones, and of pearls, and fine linen,
+and purple, and silk, and scarlet, and all thyine wood, and all manner
+vessels of ivory, and all manner vessels of most precious wood, and of
+brass, and iron, and marble, 18:13 And cinnamon, and odours, and
+ointments, and frankincense, and wine, and oil, and fine flour, and
+wheat, and beasts, and sheep, and horses, and chariots, and slaves,
+and souls of men.
+
+18:14 And the fruits that thy soul lusted after are departed from
+thee, and all things which were dainty and goodly are departed from
+thee, and thou shalt find them no more at all.
+
+18:15 The merchants of these things, which were made rich by her,
+shall stand afar off for the fear of her torment, weeping and wailing,
+18:16 And saying, Alas, alas that great city, that was clothed in fine
+linen, and purple, and scarlet, and decked with gold, and precious
+stones, and pearls! 18:17 For in one hour so great riches is come to
+nought. And every shipmaster, and all the company in ships, and
+sailors, and as many as trade by sea, stood afar off, 18:18 And cried
+when they saw the smoke of her burning, saying, What city is like unto
+this great city! 18:19 And they cast dust on their heads, and cried,
+weeping and wailing, saying, Alas, alas that great city, wherein were
+made rich all that had ships in the sea by reason of her costliness!
+for in one hour is she made desolate.
+
+18:20 Rejoice over her, thou heaven, and ye holy apostles and
+prophets; for God hath avenged you on her.
+
+18:21 And a mighty angel took up a stone like a great millstone, and
+cast it into the sea, saying, Thus with violence shall that great city
+Babylon be thrown down, and shall be found no more at all.
+
+18:22 And the voice of harpers, and musicians, and of pipers, and
+trumpeters, shall be heard no more at all in thee; and no craftsman,
+of whatsoever craft he be, shall be found any more in thee; and the
+sound of a millstone shall be heard no more at all in thee; 18:23 And
+the light of a candle shall shine no more at all in thee; and the
+voice of the bridegroom and of the bride shall be heard no more at all
+in thee: for thy merchants were the great men of the earth; for by thy
+sorceries were all nations deceived.
+
+18:24 And in her was found the blood of prophets, and of saints, and
+of all that were slain upon the earth.
+
+19:1 And after these things I heard a great voice of much people in
+heaven, saying, Alleluia; Salvation, and glory, and honour, and power,
+unto the Lord our God: 19:2 For true and righteous are his judgments:
+for he hath judged the great whore, which did corrupt the earth with
+her fornication, and hath avenged the blood of his servants at her
+hand.
+
+19:3 And again they said, Alleluia And her smoke rose up for ever and
+ever.
+
+19:4 And the four and twenty elders and the four beasts fell down and
+worshipped God that sat on the throne, saying, Amen; Alleluia.
+
+19:5 And a voice came out of the throne, saying, Praise our God, all
+ye his servants, and ye that fear him, both small and great.
+
+19:6 And I heard as it were the voice of a great multitude, and as the
+voice of many waters, and as the voice of mighty thunderings, saying,
+Alleluia: for the Lord God omnipotent reigneth.
+
+19:7 Let us be glad and rejoice, and give honour to him: for the
+marriage of the Lamb is come, and his wife hath made herself ready.
+
+19:8 And to her was granted that she should be arrayed in fine linen,
+clean and white: for the fine linen is the righteousness of saints.
+
+19:9 And he saith unto me, Write, Blessed are they which are called
+unto the marriage supper of the Lamb. And he saith unto me, These are
+the true sayings of God.
+
+19:10 And I fell at his feet to worship him. And he said unto me, See
+thou do it not: I am thy fellowservant, and of thy brethren that have
+the testimony of Jesus: worship God: for the testimony of Jesus is the
+spirit of prophecy.
+
+19:11 And I saw heaven opened, and behold a white horse; and he that
+sat upon him was called Faithful and True, and in righteousness he
+doth judge and make war.
+
+19:12 His eyes were as a flame of fire, and on his head were many
+crowns; and he had a name written, that no man knew, but he himself.
+
+19:13 And he was clothed with a vesture dipped in blood: and his name
+is called The Word of God.
+
+19:14 And the armies which were in heaven followed him upon white
+horses, clothed in fine linen, white and clean.
+
+19:15 And out of his mouth goeth a sharp sword, that with it he should
+smite the nations: and he shall rule them with a rod of iron: and he
+treadeth the winepress of the fierceness and wrath of Almighty God.
+
+19:16 And he hath on his vesture and on his thigh a name written, KING
+OF KINGS, AND LORD OF LORDS.
+
+19:17 And I saw an angel standing in the sun; and he cried with a loud
+voice, saying to all the fowls that fly in the midst of heaven, Come
+and gather yourselves together unto the supper of the great God; 19:18
+That ye may eat the flesh of kings, and the flesh of captains, and the
+flesh of mighty men, and the flesh of horses, and of them that sit on
+them, and the flesh of all men, both free and bond, both small and
+great.
+
+19:19 And I saw the beast, and the kings of the earth, and their
+armies, gathered together to make war against him that sat on the
+horse, and against his army.
+
+19:20 And the beast was taken, and with him the false prophet that
+wrought miracles before him, with which he deceived them that had
+received the mark of the beast, and them that worshipped his image.
+These both were cast alive into a lake of fire burning with brimstone.
+
+19:21 And the remnant were slain with the sword of him that sat upon
+the horse, which sword proceeded out of his mouth: and all the fowls
+were filled with their flesh.
+
+20:1 And I saw an angel come down from heaven, having the key of the
+bottomless pit and a great chain in his hand.
+
+20:2 And he laid hold on the dragon, that old serpent, which is the
+Devil, and Satan, and bound him a thousand years, 20:3 And cast him
+into the bottomless pit, and shut him up, and set a seal upon him,
+that he should deceive the nations no more, till the thousand years
+should be fulfilled: and after that he must be loosed a little season.
+
+20:4 And I saw thrones, and they sat upon them, and judgment was given
+unto them: and I saw the souls of them that were beheaded for the
+witness of Jesus, and for the word of God, and which had not
+worshipped the beast, neither his image, neither had received his mark
+upon their foreheads, or in their hands; and they lived and reigned
+with Christ a thousand years.
+
+20:5 But the rest of the dead lived not again until the thousand years
+were finished. This is the first resurrection.
+
+20:6 Blessed and holy is he that hath part in the first resurrection:
+on such the second death hath no power, but they shall be priests of
+God and of Christ, and shall reign with him a thousand years.
+
+20:7 And when the thousand years are expired, Satan shall be loosed
+out of his prison, 20:8 And shall go out to deceive the nations which
+are in the four quarters of the earth, Gog, and Magog, to gather them
+together to battle: the number of whom is as the sand of the sea.
+
+20:9 And they went up on the breadth of the earth, and compassed the
+camp of the saints about, and the beloved city: and fire came down
+from God out of heaven, and devoured them.
+
+20:10 And the devil that deceived them was cast into the lake of fire
+and brimstone, where the beast and the false prophet are, and shall be
+tormented day and night for ever and ever.
+
+20:11 And I saw a great white throne, and him that sat on it, from
+whose face the earth and the heaven fled away; and there was found no
+place for them.
+
+20:12 And I saw the dead, small and great, stand before God; and the
+books were opened: and another book was opened, which is the book of
+life: and the dead were judged out of those things which were written
+in the books, according to their works.
+
+20:13 And the sea gave up the dead which were in it; and death and
+hell delivered up the dead which were in them: and they were judged
+every man according to their works.
+
+20:14 And death and hell were cast into the lake of fire. This is the
+second death.
+
+20:15 And whosoever was not found written in the book of life was cast
+into the lake of fire.
+
+21:1 And I saw a new heaven and a new earth: for the first heaven and
+the first earth were passed away; and there was no more sea.
+
+21:2 And I John saw the holy city, new Jerusalem, coming down from God
+out of heaven, prepared as a bride adorned for her husband.
+
+21:3 And I heard a great voice out of heaven saying, Behold, the
+tabernacle of God is with men, and he will dwell with them, and they
+shall be his people, and God himself shall be with them, and be their
+God.
+
+21:4 And God shall wipe away all tears from their eyes; and there
+shall be no more death, neither sorrow, nor crying, neither shall
+there be any more pain: for the former things are passed away.
+
+21:5 And he that sat upon the throne said, Behold, I make all things
+new.
+
+And he said unto me, Write: for these words are true and faithful.
+
+21:6 And he said unto me, It is done. I am Alpha and Omega, the
+beginning and the end. I will give unto him that is athirst of the
+fountain of the water of life freely.
+
+21:7 He that overcometh shall inherit all things; and I will be his
+God, and he shall be my son.
+
+21:8 But the fearful, and unbelieving, and the abominable, and
+murderers, and whoremongers, and sorcerers, and idolaters, and all
+liars, shall have their part in the lake which burneth with fire and
+brimstone: which is the second death.
+
+21:9 And there came unto me one of the seven angels which had the
+seven vials full of the seven last plagues, and talked with me,
+saying, Come hither, I will shew thee the bride, the Lamb's wife.
+
+21:10 And he carried me away in the spirit to a great and high
+mountain, and shewed me that great city, the holy Jerusalem,
+descending out of heaven from God, 21:11 Having the glory of God: and
+her light was like unto a stone most precious, even like a jasper
+stone, clear as crystal; 21:12 And had a wall great and high, and had
+twelve gates, and at the gates twelve angels, and names written
+thereon, which are the names of the twelve tribes of the children of
+Israel: 21:13 On the east three gates; on the north three gates; on
+the south three gates; and on the west three gates.
+
+21:14 And the wall of the city had twelve foundations, and in them the
+names of the twelve apostles of the Lamb.
+
+21:15 And he that talked with me had a golden reed to measure the
+city, and the gates thereof, and the wall thereof.
+
+21:16 And the city lieth foursquare, and the length is as large as the
+breadth: and he measured the city with the reed, twelve thousand
+furlongs.
+
+The length and the breadth and the height of it are equal.
+
+21:17 And he measured the wall thereof, an hundred and forty and four
+cubits, according to the measure of a man, that is, of the angel.
+
+21:18 And the building of the wall of it was of jasper: and the city
+was pure gold, like unto clear glass.
+
+21:19 And the foundations of the wall of the city were garnished with
+all manner of precious stones. The first foundation was jasper; the
+second, sapphire; the third, a chalcedony; the fourth, an emerald;
+21:20 The fifth, sardonyx; the sixth, sardius; the seventh,
+chrysolyte; the eighth, beryl; the ninth, a topaz; the tenth, a
+chrysoprasus; the eleventh, a jacinth; the twelfth, an amethyst.
+
+21:21 And the twelve gates were twelve pearls: every several gate was
+of one pearl: and the street of the city was pure gold, as it were
+transparent glass.
+
+21:22 And I saw no temple therein: for the Lord God Almighty and the
+Lamb are the temple of it.
+
+21:23 And the city had no need of the sun, neither of the moon, to
+shine in it: for the glory of God did lighten it, and the Lamb is the
+light thereof.
+
+21:24 And the nations of them which are saved shall walk in the light
+of it: and the kings of the earth do bring their glory and honour into
+it.
+
+21:25 And the gates of it shall not be shut at all by day: for there
+shall be no night there.
+
+21:26 And they shall bring the glory and honour of the nations into
+it.
+
+21:27 And there shall in no wise enter into it any thing that
+defileth, neither whatsoever worketh abomination, or maketh a lie: but
+they which are written in the Lamb's book of life.
+
+22:1 And he shewed me a pure river of water of life, clear as crystal,
+proceeding out of the throne of God and of the Lamb.
+
+22:2 In the midst of the street of it, and on either side of the
+river, was there the tree of life, which bare twelve manner of fruits,
+and yielded her fruit every month: and the leaves of the tree were for
+the healing of the nations.
+
+22:3 And there shall be no more curse: but the throne of God and of
+the Lamb shall be in it; and his servants shall serve him: 22:4 And
+they shall see his face; and his name shall be in their foreheads.
+
+22:5 And there shall be no night there; and they need no candle,
+neither light of the sun; for the Lord God giveth them light: and they
+shall reign for ever and ever.
+
+22:6 And he said unto me, These sayings are faithful and true: and the
+Lord God of the holy prophets sent his angel to shew unto his servants
+the things which must shortly be done.
+
+22:7 Behold, I come quickly: blessed is he that keepeth the sayings of
+the prophecy of this book.
+
+22:8 And I John saw these things, and heard them. And when I had heard
+and seen, I fell down to worship before the feet of the angel which
+shewed me these things.
+
+22:9 Then saith he unto me, See thou do it not: for I am thy
+fellowservant, and of thy brethren the prophets, and of them which
+keep the sayings of this book: worship God.
+
+22:10 And he saith unto me, Seal not the sayings of the prophecy of
+this book: for the time is at hand.
+
+22:11 He that is unjust, let him be unjust still: and he which is
+filthy, let him be filthy still: and he that is righteous, let him be
+righteous still: and he that is holy, let him be holy still.
+
+22:12 And, behold, I come quickly; and my reward is with me, to give
+every man according as his work shall be.
+
+22:13 I am Alpha and Omega, the beginning and the end, the first and
+the last.
+
+22:14 Blessed are they that do his commandments, that they may have
+right to the tree of life, and may enter in through the gates into the
+city.
+
+22:15 For without are dogs, and sorcerers, and whoremongers, and
+murderers, and idolaters, and whosoever loveth and maketh a lie.
+
+22:16 I Jesus have sent mine angel to testify unto you these things in
+the churches. I am the root and the offspring of David, and the bright
+and morning star.
+
+22:17 And the Spirit and the bride say, Come. And let him that heareth
+say, Come. And let him that is athirst come. And whosoever will, let
+him take the water of life freely.
+
+22:18 For I testify unto every man that heareth the words of the
+prophecy of this book, If any man shall add unto these things, God
+shall add unto him the plagues that are written in this book: 22:19
+And if any man shall take away from the words of the book of this
+prophecy, God shall take away his part out of the book of life, and
+out of the holy city, and from the things which are written in this book.
+
+22:20 He which testifieth these things saith, Surely I come quickly.
+Amen.
+
+Even so, come, Lord Jesus.
+
+22:21 The grace of our Lord Jesus Christ be with you all. Amen.
+
+
+
+
+
+
+
+
+
+
+
+
+End of the Project Gutenberg EBook of The King James Bible
+
+*** END OF THIS PROJECT GUTENBERG EBOOK THE KING JAMES BIBLE ***
+
+***** This file should be named 10.txt or 10.zip *****
+This and all associated files of various formats will be found in:
+ http://www.gutenberg.org/1/10/
+
+
+
+Updated editions will replace the previous one--the old editions
+will be renamed.
+
+Creating the works from public domain print editions means that no
+one owns a United States copyright in these works, so the Foundation
+(and you!) can copy and distribute it in the United States without
+permission and without paying copyright royalties. Special rules,
+set forth in the General Terms of Use part of this license, apply to
+copying and distributing Project Gutenberg-tm electronic works to
+protect the PROJECT GUTENBERG-tm concept and trademark. Project
+Gutenberg is a registered trademark, and may not be used if you
+charge for the eBooks, unless you receive specific permission. If you
+do not charge anything for copies of this eBook, complying with the
+rules is very easy. You may use this eBook for nearly any purpose
+such as creation of derivative works, reports, performances and
+research. They may be modified and printed and given away--you may do
+practically ANYTHING with public domain eBooks. Redistribution is
+subject to the trademark license, especially commercial
+redistribution.
+
+
+
+*** START: FULL LICENSE ***
+
+THE FULL PROJECT GUTENBERG LICENSE
+PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK
+
+To protect the Project Gutenberg-tm mission of promoting the free
+distribution of electronic works, by using or distributing this work
+(or any other work associated in any way with the phrase "Project
+Gutenberg"), you agree to comply with all the terms of the Full Project
+Gutenberg-tm License (available with this file or online at
+http://gutenberg.org/license).
+
+
+Section 1. General Terms of Use and Redistributing Project Gutenberg-tm
+electronic works
+
+1.A. By reading or using any part of this Project Gutenberg-tm
+electronic work, you indicate that you have read, understand, agree to
+and accept all the terms of this license and intellectual property
+(trademark/copyright) agreement. If you do not agree to abide by all
+the terms of this agreement, you must cease using and return or destroy
+all copies of Project Gutenberg-tm electronic works in your possession.
+If you paid a fee for obtaining a copy of or access to a Project
+Gutenberg-tm electronic work and you do not agree to be bound by the
+terms of this agreement, you may obtain a refund from the person or
+entity to whom you paid the fee as set forth in paragraph 1.E.8.
+
+1.B. "Project Gutenberg" is a registered trademark. It may only be
+used on or associated in any way with an electronic work by people who
+agree to be bound by the terms of this agreement. There are a few
+things that you can do with most Project Gutenberg-tm electronic works
+even without complying with the full terms of this agreement. See
+paragraph 1.C below. There are a lot of things you can do with Project
+Gutenberg-tm electronic works if you follow the terms of this agreement
+and help preserve free future access to Project Gutenberg-tm electronic
+works. See paragraph 1.E below.
+
+1.C. The Project Gutenberg Literary Archive Foundation ("the Foundation"
+or PGLAF), owns a compilation copyright in the collection of Project
+Gutenberg-tm electronic works. Nearly all the individual works in the
+collection are in the public domain in the United States. If an
+individual work is in the public domain in the United States and you are
+located in the United States, we do not claim a right to prevent you from
+copying, distributing, performing, displaying or creating derivative
+works based on the work as long as all references to Project Gutenberg
+are removed. Of course, we hope that you will support the Project
+Gutenberg-tm mission of promoting free access to electronic works by
+freely sharing Project Gutenberg-tm works in compliance with the terms of
+this agreement for keeping the Project Gutenberg-tm name associated with
+the work. You can easily comply with the terms of this agreement by
+keeping this work in the same format with its attached full Project
+Gutenberg-tm License when you share it without charge with others.
+
+1.D. The copyright laws of the place where you are located also govern
+what you can do with this work. Copyright laws in most countries are in
+a constant state of change. If you are outside the United States, check
+the laws of your country in addition to the terms of this agreement
+before downloading, copying, displaying, performing, distributing or
+creating derivative works based on this work or any other Project
+Gutenberg-tm work. The Foundation makes no representations concerning
+the copyright status of any work in any country outside the United
+States.
+
+1.E. Unless you have removed all references to Project Gutenberg:
+
+1.E.1. The following sentence, with active links to, or other immediate
+access to, the full Project Gutenberg-tm License must appear prominently
+whenever any copy of a Project Gutenberg-tm work (any work on which the
+phrase "Project Gutenberg" appears, or with which the phrase "Project
+Gutenberg" is associated) is accessed, displayed, performed, viewed,
+copied or distributed:
+
+This eBook is for the use of anyone anywhere at no cost and with
+almost no restrictions whatsoever. You may copy it, give it away or
+re-use it under the terms of the Project Gutenberg License included
+with this eBook or online at www.gutenberg.org
+
+1.E.2. If an individual Project Gutenberg-tm electronic work is derived
+from the public domain (does not contain a notice indicating that it is
+posted with permission of the copyright holder), the work can be copied
+and distributed to anyone in the United States without paying any fees
+or charges. If you are redistributing or providing access to a work
+with the phrase "Project Gutenberg" associated with or appearing on the
+work, you must comply either with the requirements of paragraphs 1.E.1
+through 1.E.7 or obtain permission for the use of the work and the
+Project Gutenberg-tm trademark as set forth in paragraphs 1.E.8 or
+1.E.9.
+
+1.E.3. If an individual Project Gutenberg-tm electronic work is posted
+with the permission of the copyright holder, your use and distribution
+must comply with both paragraphs 1.E.1 through 1.E.7 and any additional
+terms imposed by the copyright holder. Additional terms will be linked
+to the Project Gutenberg-tm License for all works posted with the
+permission of the copyright holder found at the beginning of this work.
+
+1.E.4. Do not unlink or detach or remove the full Project Gutenberg-tm
+License terms from this work, or any files containing a part of this
+work or any other work associated with Project Gutenberg-tm.
+
+1.E.5. Do not copy, display, perform, distribute or redistribute this
+electronic work, or any part of this electronic work, without
+prominently displaying the sentence set forth in paragraph 1.E.1 with
+active links or immediate access to the full terms of the Project
+Gutenberg-tm License.
+
+1.E.6. You may convert to and distribute this work in any binary,
+compressed, marked up, nonproprietary or proprietary form, including any
+word processing or hypertext form. However, if you provide access to or
+distribute copies of a Project Gutenberg-tm work in a format other than
+"Plain Vanilla ASCII" or other format used in the official version
+posted on the official Project Gutenberg-tm web site (www.gutenberg.org),
+you must, at no additional cost, fee or expense to the user, provide a
+copy, a means of exporting a copy, or a means of obtaining a copy upon
+request, of the work in its original "Plain Vanilla ASCII" or other
+form. Any alternate format must include the full Project Gutenberg-tm
+License as specified in paragraph 1.E.1.
+
+1.E.7. Do not charge a fee for access to, viewing, displaying,
+performing, copying or distributing any Project Gutenberg-tm works
+unless you comply with paragraph 1.E.8 or 1.E.9.
+
+1.E.8. You may charge a reasonable fee for copies of or providing
+access to or distributing Project Gutenberg-tm electronic works provided
+that
+
+- You pay a royalty fee of 20% of the gross profits you derive from
+ the use of Project Gutenberg-tm works calculated using the method
+ you already use to calculate your applicable taxes. The fee is
+ owed to the owner of the Project Gutenberg-tm trademark, but he
+ has agreed to donate royalties under this paragraph to the
+ Project Gutenberg Literary Archive Foundation. Royalty payments
+ must be paid within 60 days following each date on which you
+ prepare (or are legally required to prepare) your periodic tax
+ returns. Royalty payments should be clearly marked as such and
+ sent to the Project Gutenberg Literary Archive Foundation at the
+ address specified in Section 4, "Information about donations to
+ the Project Gutenberg Literary Archive Foundation."
+
+- You provide a full refund of any money paid by a user who notifies
+ you in writing (or by e-mail) within 30 days of receipt that s/he
+ does not agree to the terms of the full Project Gutenberg-tm
+ License. You must require such a user to return or
+ destroy all copies of the works possessed in a physical medium
+ and discontinue all use of and all access to other copies of
+ Project Gutenberg-tm works.
+
+- You provide, in accordance with paragraph 1.F.3, a full refund of any
+ money paid for a work or a replacement copy, if a defect in the
+ electronic work is discovered and reported to you within 90 days
+ of receipt of the work.
+
+- You comply with all other terms of this agreement for free
+ distribution of Project Gutenberg-tm works.
+
+1.E.9. If you wish to charge a fee or distribute a Project Gutenberg-tm
+electronic work or group of works on different terms than are set
+forth in this agreement, you must obtain permission in writing from
+both the Project Gutenberg Literary Archive Foundation and Michael
+Hart, the owner of the Project Gutenberg-tm trademark. Contact the
+Foundation as set forth in Section 3 below.
+
+1.F.
+
+1.F.1. Project Gutenberg volunteers and employees expend considerable
+effort to identify, do copyright research on, transcribe and proofread
+public domain works in creating the Project Gutenberg-tm
+collection. Despite these efforts, Project Gutenberg-tm electronic
+works, and the medium on which they may be stored, may contain
+"Defects," such as, but not limited to, incomplete, inaccurate or
+corrupt data, transcription errors, a copyright or other intellectual
+property infringement, a defective or damaged disk or other medium, a
+computer virus, or computer codes that damage or cannot be read by
+your equipment.
+
+1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the "Right
+of Replacement or Refund" described in paragraph 1.F.3, the Project
+Gutenberg Literary Archive Foundation, the owner of the Project
+Gutenberg-tm trademark, and any other party distributing a Project
+Gutenberg-tm electronic work under this agreement, disclaim all
+liability to you for damages, costs and expenses, including legal
+fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT
+LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE
+PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE
+TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE
+LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR
+INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH
+DAMAGE.
+
+1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a
+defect in this electronic work within 90 days of receiving it, you can
+receive a refund of the money (if any) you paid for it by sending a
+written explanation to the person you received the work from. If you
+received the work on a physical medium, you must return the medium with
+your written explanation. The person or entity that provided you with
+the defective work may elect to provide a replacement copy in lieu of a
+refund. If you received the work electronically, the person or entity
+providing it to you may choose to give you a second opportunity to
+receive the work electronically in lieu of a refund. If the second copy
+is also defective, you may demand a refund in writing without further
+opportunities to fix the problem.
+
+1.F.4. Except for the limited right of replacement or refund set forth
+in paragraph 1.F.3, this work is provided to you 'AS-IS' WITH NO OTHER
+WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
+WARRANTIES OF MERCHANTIBILITY OR FITNESS FOR ANY PURPOSE.
+
+1.F.5. Some states do not allow disclaimers of certain implied
+warranties or the exclusion or limitation of certain types of damages.
+If any disclaimer or limitation set forth in this agreement violates the
+law of the state applicable to this agreement, the agreement shall be
+interpreted to make the maximum disclaimer or limitation permitted by
+the applicable state law. The invalidity or unenforceability of any
+provision of this agreement shall not void the remaining provisions.
+
+1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the
+trademark owner, any agent or employee of the Foundation, anyone
+providing copies of Project Gutenberg-tm electronic works in accordance
+with this agreement, and any volunteers associated with the production,
+promotion and distribution of Project Gutenberg-tm electronic works,
+harmless from all liability, costs and expenses, including legal fees,
+that arise directly or indirectly from any of the following which you do
+or cause to occur: (a) distribution of this or any Project Gutenberg-tm
+work, (b) alteration, modification, or additions or deletions to any
+Project Gutenberg-tm work, and (c) any Defect you cause.
+
+
+Section 2. Information about the Mission of Project Gutenberg-tm
+
+Project Gutenberg-tm is synonymous with the free distribution of
+electronic works in formats readable by the widest variety of computers
+including obsolete, old, middle-aged and new computers. It exists
+because of the efforts of hundreds of volunteers and donations from
+people in all walks of life.
+
+Volunteers and financial support to provide volunteers with the
+assistance they need, are critical to reaching Project Gutenberg-tm's
+goals and ensuring that the Project Gutenberg-tm collection will
+remain freely available for generations to come. In 2001, the Project
+Gutenberg Literary Archive Foundation was created to provide a secure
+and permanent future for Project Gutenberg-tm and future generations.
+To learn more about the Project Gutenberg Literary Archive Foundation
+and how your efforts and donations can help, see Sections 3 and 4
+and the Foundation web page at http://www.pglaf.org.
+
+
+Section 3. Information about the Project Gutenberg Literary Archive
+Foundation
+
+The Project Gutenberg Literary Archive Foundation is a non profit
+501(c)(3) educational corporation organized under the laws of the
+state of Mississippi and granted tax exempt status by the Internal
+Revenue Service. The Foundation's EIN or federal tax identification
+number is 64-6221541. Its 501(c)(3) letter is posted at
+http://pglaf.org/fundraising. Contributions to the Project Gutenberg
+Literary Archive Foundation are tax deductible to the full extent
+permitted by U.S. federal laws and your state's laws.
+
+The Foundation's principal office is located at 4557 Melan Dr. S.
+Fairbanks, AK, 99712., but its volunteers and employees are scattered
+throughout numerous locations. Its business office is located at
+809 North 1500 West, Salt Lake City, UT 84116, (801) 596-1887, email
+business@pglaf.org. Email contact links and up to date contact
+information can be found at the Foundation's web site and official
+page at http://pglaf.org
+
+For additional contact information:
+ Dr. Gregory B. Newby
+ Chief Executive and Director
+ gbnewby@pglaf.org
+
+
+Section 4. Information about Donations to the Project Gutenberg
+Literary Archive Foundation
+
+Project Gutenberg-tm depends upon and cannot survive without wide
+spread public support and donations to carry out its mission of
+increasing the number of public domain and licensed works that can be
+freely distributed in machine readable form accessible by the widest
+array of equipment including outdated equipment. Many small donations
+($1 to $5,000) are particularly important to maintaining tax exempt
+status with the IRS.
+
+The Foundation is committed to complying with the laws regulating
+charities and charitable donations in all 50 states of the United
+States. Compliance requirements are not uniform and it takes a
+considerable effort, much paperwork and many fees to meet and keep up
+with these requirements. We do not solicit donations in locations
+where we have not received written confirmation of compliance. To
+SEND DONATIONS or determine the status of compliance for any
+particular state visit http://pglaf.org
+
+While we cannot and do not solicit contributions from states where we
+have not met the solicitation requirements, we know of no prohibition
+against accepting unsolicited donations from donors in such states who
+approach us with offers to donate.
+
+International donations are gratefully accepted, but we cannot make
+any statements concerning tax treatment of donations received from
+outside the United States. U.S. laws alone swamp our small staff.
+
+Please check the Project Gutenberg Web pages for current donation
+methods and addresses. Donations are accepted in a number of other
+ways including checks, online payments and credit card donations.
+To donate, please visit: http://pglaf.org/donate
+
+
+Section 5. General Information About Project Gutenberg-tm electronic
+works.
+
+Professor Michael S. Hart is the originator of the Project Gutenberg-tm
+concept of a library of electronic works that could be freely shared
+with anyone. For thirty years, he produced and distributed Project
+Gutenberg-tm eBooks with only a loose network of volunteer support.
+
+
+Project Gutenberg-tm eBooks are often created from several printed
+editions, all of which are confirmed as Public Domain in the U.S.
+unless a copyright notice is included. Thus, we do not necessarily
+keep eBooks in compliance with any particular paper edition.
+
+
+Most people start at our Web site which has the main PG search facility:
+
+ http://www.gutenberg.org
+
+This Web site includes information about Project Gutenberg-tm,
+including how to make donations to the Project Gutenberg Literary
+Archive Foundation, how to help produce our new eBooks, and how to
+subscribe to our email newsletter to hear about new eBooks.
diff --git a/libs/anr/examples/res/cid2code.txt b/libs/anr/examples/res/cid2code.txt
new file mode 100644
index 0000000..13ebdcb
--- /dev/null
+++ b/libs/anr/examples/res/cid2code.txt
@@ -0,0 +1,19290 @@
+# cid2code.txt (Version 10/24/2017)
+#
+# The data in this table contains nineteen tab-delimited columns of
+# information. The contents of this file supplement "The Adobe-CNS1-7
+# Character Collection" (formerly Adobe Tech Note #5080):
+#
+# https://github.com/adobe-type-tools/Adobe-CNS1/
+#
+# This table contains lists CIDs 0 through 19178 in the first column,
+# and provides additional columns that indicate whether a CID is used
+# in a particular CMap file, and if so, provides the encoded value.
+# Here are some common aspects of the data that you will find in this
+# table:
+#
+# o All character codes are provided in hexadecimal notation.
+#
+# o Many of the CMap files indicated at the head of each column have
+# both "-H" (horizontal writing mode) and "-V" (vertical writing
+# mode) versions. Those with only a "-H" version are explicitly
+# shown with the "-H" appended. Those with both do not have a
+# writing mode suffix.
+#
+# o The character codes found in a corresponding "-V" (vertical
+# writing mode) CMap file are indicated by a "v" appended to the
+# hexadecimal code.
+#
+# o There may be cases of single CIDs being referenced in multiple
+# encoding points within a single CMap file. These cases are
+# comma-delimited, within the same column.
+#
+# The following is a synopsis of columns 2 through 19, and provides
+# information about character set and encoding:
+#
+# o Column 2: Character codes for the "B5-H" and "B5-V" CMaps (Big
+# Five character set, Big Five encoding, half-width Latin
+# characters).
+#
+# o Column 3: Character codes for the "B5pc-H" and "B5pc-V" CMaps
+# (MacOS-T character set, Big Five encoding, proportional Latin
+# characters).
+#
+# o Column 4: Character codes for the "ETen-B5-H" and "ETen-B5-V"
+# CMaps (Big Five character set with ETen extensions, Big Five
+# encoding, half-width Latin characters).
+#
+# o Column 5: Character codes for the "ETenms-B5-H" and
+# "ETenms-B5-V" CMaps (Big Five character set with ETen extensions,
+# Big Five encoding, proportional Latin characters).
+#
+# o Column 6: Character codes for the "CNS1-H" and "CNS1-V" CMaps
+# (CNS 11643-1992 character set, Plane 1, ISO-2022-CN encoding).
+#
+# o Column 7: Character codes for the "CNS2-H" and "CNS2-V" CMaps
+# (CNS 11643-1992 character set, Plane 2, ISO-2022-CN encoding).
+#
+# o Column 8: Character codes for the "CNS-EUC-H" and "CNS-EUC-V"
+# CMaps (CNS 11643-1992 character set, Planes 1 and 2, EUC-TW
+# encoding, half-width Latin characters).
+#
+# o Column 9: Character codes for the "UniCNS-UCS2-H" and
+# "UniCNS-UCS2-V" CMaps (Unicode UCS-2 encoding, proportional
+# Latin characters).
+# (NOTE: These two CMap files are no longer being maintained. The
+# use of the UTF-8, UTF-16, and UTF-32 CMap files is recommended.)
+#
+# o Column 10: Character codes for the "UniCNS-UTF8-H" and
+# "UniCNS-UTF8-V" CMaps (Unicode 10.0 UTF-8 encoding, proportional Latin
+# characters).
+#
+# o Column 11: Character codes for the "UniCNS-UTF16-H" and
+# "UniCNS-UTF16-V" CMaps (Unicode 10.0 UTF-16 encoding, proportional
+# Latin characters).
+#
+# o Column 12: Character codes for the "UniCNS-UTF32-H" and
+# "UniCNS-UTF32-V" CMaps (Unicode 10.0 UTF-32 encoding, proportional
+# Latin characters).
+#
+# o Column 13: Character codes for the "ETHK-B5-H" and "ETHK-B5-V"
+# CMaps (Big Five character set with the ETen and Hong Kong SCS
+# extensions, Big Five encoding, proportional Latin characters).
+#
+# o Column 14: Character codes for the "HKdla-B5-H" and "HKdla-B5-V"
+# CMaps (Big Five character set with Dynalab's Hong Kong Extension
+# A with 784 Hong Kong hanzi, Big Five encoding, proportional Latin
+# characters).
+#
+# o Column 15: Character codes for the "HKdlb-B5-H" and "HKdlb-B5-V"
+# CMaps (Big Five character set with Dynalab's Hong Kong Extension
+# B with 665 Hong Kong hanzi, Big Five encoding, proportional Latin
+# characters).
+#
+# o Column 16: Character codes for the "HKgccs-B5-H" and "HKgccs-B5-V"
+# CMaps (Big Five character set with Hong Kong's GCCS extension, Big
+# Five encoding, proportional Latin characters).
+#
+# o Column 17: Character codes for the "HKm314-B5-H" and "HKm314-B5-V"
+# CMaps (Big Five character set with Monotype's Hong Kong extension
+# containing 314 Hong Kong hanzi, Big Five encoding, proportional
+# Latin characters).
+#
+# o Column 18: Character codes for the "HKm471-B5-H" and "HKm471-B5-V"
+# CMaps (Big Five character set with Monotype's Hong Kong extension
+# containing 471 Hong Kong hanzi, Big Five encoding, proportional
+# Latin characters).
+#
+# o Column 19: Character codes for the "HKscs-B5-H" and "HKscs-B5-V"
+# CMaps (Big Five character set with Hong Kong's SCS extension,
+# Big Five encoding, proportional Latin characters).
+#
+CID B5 B5pc ETen-B5 ETenms-B5 CNS1 CNS2 CNS-EUC UniCNS-UCS2 UniCNS-UTF8 UniCNS-UTF16 UniCNS-UTF32 ETHK-B5 HKdla-B5 HKdlb-B5 HKgccs-B5 HKm314-B5 HKm471-B5 HKscs-B5
+0 * * * * * * * * * * * * * * * * * *
+1 * 20 * 20 * * * 0020 c2a0,20 00a0,0020 000000a0,00000020 20 20 20 20 20 20 20
+2 * 21 * 21 * * * 0021 21 0021 00000021 21 21 21 21 21 21 21
+3 * 22 * 22 * * * 0022 22 0022 00000022 22 22 22 22 22 22 22
+4 * 23 * 23 * * * 0023 23 0023 00000023 23 23 23 23 23 23 23
+5 * 24 * 24 * * * 0024 24 0024 00000024 24 24 24 24 24 24 24
+6 * 25 * 25 * * * 0025 25 0025 00000025 25 25 25 25 25 25 25
+7 * 26 * 26 * * * 0026 26 0026 00000026 26 26 26 26 26 26 26
+8 * 27 * 27 * * * 0027 27 0027 00000027 27 27 27 27 27 27 27
+9 * 28 * 28 * * * 0028 28 0028 00000028 28 28 28 28 28 28 28
+10 * 29 * 29 * * * 0029 29 0029 00000029 29 29 29 29 29 29 29
+11 * 2a * 2a * * * 002a 2a 002a 0000002a 2a 2a 2a 2a 2a 2a 2a
+12 * 2b * 2b * * * 002b 2b 002b 0000002b 2b 2b 2b 2b 2b 2b 2b
+13 * 2c * 2c * * * 002c 2c 002c 0000002c 2c 2c 2c 2c 2c 2c 2c
+14 * 2d * 2d * * * 002d 2d 002d 0000002d 2d 2d 2d 2d 2d 2d 2d
+15 * 2e * 2e * * * 002e 2e 002e 0000002e 2e 2e 2e 2e 2e 2e 2e
+16 * 2f * 2f * * * 002f 2f 002f 0000002f 2f 2f 2f 2f 2f 2f 2f
+17 * 30 * 30 * * * 0030 30 0030 00000030 30 30 30 30 30 30 30
+18 * 31 * 31 * * * 0031 31 0031 00000031 31 31 31 31 31 31 31
+19 * 32 * 32 * * * 0032 32 0032 00000032 32 32 32 32 32 32 32
+20 * 33 * 33 * * * 0033 33 0033 00000033 33 33 33 33 33 33 33
+21 * 34 * 34 * * * 0034 34 0034 00000034 34 34 34 34 34 34 34
+22 * 35 * 35 * * * 0035 35 0035 00000035 35 35 35 35 35 35 35
+23 * 36 * 36 * * * 0036 36 0036 00000036 36 36 36 36 36 36 36
+24 * 37 * 37 * * * 0037 37 0037 00000037 37 37 37 37 37 37 37
+25 * 38 * 38 * * * 0038 38 0038 00000038 38 38 38 38 38 38 38
+26 * 39 * 39 * * * 0039 39 0039 00000039 39 39 39 39 39 39 39
+27 * 3a * 3a * * * 003a 3a 003a 0000003a 3a 3a 3a 3a 3a 3a 3a
+28 * 3b * 3b * * * 003b 3b 003b 0000003b 3b 3b 3b 3b 3b 3b 3b
+29 * 3c * 3c * * * 003c 3c 003c 0000003c 3c 3c 3c 3c 3c 3c 3c
+30 * 3d * 3d * * * 003d 3d 003d 0000003d 3d 3d 3d 3d 3d 3d 3d
+31 * 3e * 3e * * * 003e 3e 003e 0000003e 3e 3e 3e 3e 3e 3e 3e
+32 * 3f * 3f * * * 003f 3f 003f 0000003f 3f 3f 3f 3f 3f 3f 3f
+33 * 40 * 40 * * * 0040 40 0040 00000040 40 40 40 40 40 40 40
+34 * 41 * 41 * * * 0041 41 0041 00000041 41 41 41 41 41 41 41
+35 * 42 * 42 * * * 0042 42 0042 00000042 42 42 42 42 42 42 42
+36 * 43 * 43 * * * 0043 43 0043 00000043 43 43 43 43 43 43 43
+37 * 44 * 44 * * * 0044 44 0044 00000044 44 44 44 44 44 44 44
+38 * 45 * 45 * * * 0045 45 0045 00000045 45 45 45 45 45 45 45
+39 * 46 * 46 * * * 0046 46 0046 00000046 46 46 46 46 46 46 46
+40 * 47 * 47 * * * 0047 47 0047 00000047 47 47 47 47 47 47 47
+41 * 48 * 48 * * * 0048 48 0048 00000048 48 48 48 48 48 48 48
+42 * 49 * 49 * * * 0049 49 0049 00000049 49 49 49 49 49 49 49
+43 * 4a * 4a * * * 004a 4a 004a 0000004a 4a 4a 4a 4a 4a 4a 4a
+44 * 4b * 4b * * * 004b 4b 004b 0000004b 4b 4b 4b 4b 4b 4b 4b
+45 * 4c * 4c * * * 004c 4c 004c 0000004c 4c 4c 4c 4c 4c 4c 4c
+46 * 4d * 4d * * * 004d 4d 004d 0000004d 4d 4d 4d 4d 4d 4d 4d
+47 * 4e * 4e * * * 004e 4e 004e 0000004e 4e 4e 4e 4e 4e 4e 4e
+48 * 4f * 4f * * * 004f 4f 004f 0000004f 4f 4f 4f 4f 4f 4f 4f
+49 * 50 * 50 * * * 0050 50 0050 00000050 50 50 50 50 50 50 50
+50 * 51 * 51 * * * 0051 51 0051 00000051 51 51 51 51 51 51 51
+51 * 52 * 52 * * * 0052 52 0052 00000052 52 52 52 52 52 52 52
+52 * 53 * 53 * * * 0053 53 0053 00000053 53 53 53 53 53 53 53
+53 * 54 * 54 * * * 0054 54 0054 00000054 54 54 54 54 54 54 54
+54 * 55 * 55 * * * 0055 55 0055 00000055 55 55 55 55 55 55 55
+55 * 56 * 56 * * * 0056 56 0056 00000056 56 56 56 56 56 56 56
+56 * 57 * 57 * * * 0057 57 0057 00000057 57 57 57 57 57 57 57
+57 * 58 * 58 * * * 0058 58 0058 00000058 58 58 58 58 58 58 58
+58 * 59 * 59 * * * 0059 59 0059 00000059 59 59 59 59 59 59 59
+59 * 5a * 5a * * * 005a 5a 005a 0000005a 5a 5a 5a 5a 5a 5a 5a
+60 * 5b * 5b * * * 005b 5b 005b 0000005b 5b 5b 5b 5b 5b 5b 5b
+61 * 5c,80 * 5c * * * 005c 5c 005c 0000005c 5c 5c 5c 5c 5c 5c 5c
+62 * 5d * 5d * * * 005d 5d 005d 0000005d 5d 5d 5d 5d 5d 5d 5d
+63 * 5e * 5e * * * 005e 5e 005e 0000005e 5e 5e 5e 5e 5e 5e 5e
+64 * 5f * 5f * * * 005f 5f 005f 0000005f 5f 5f 5f 5f 5f 5f 5f
+65 * 60 * 60 * * * 0060 60 0060 00000060 60 60 60 60 60 60 60
+66 * 61 * 61 * * * 0061 61 0061 00000061 61 61 61 61 61 61 61
+67 * 62 * 62 * * * 0062 62 0062 00000062 62 62 62 62 62 62 62
+68 * 63 * 63 * * * 0063 63 0063 00000063 63 63 63 63 63 63 63
+69 * 64 * 64 * * * 0064 64 0064 00000064 64 64 64 64 64 64 64
+70 * 65 * 65 * * * 0065 65 0065 00000065 65 65 65 65 65 65 65
+71 * 66 * 66 * * * 0066 66 0066 00000066 66 66 66 66 66 66 66
+72 * 67 * 67 * * * 0067 67 0067 00000067 67 67 67 67 67 67 67
+73 * 68 * 68 * * * 0068 68 0068 00000068 68 68 68 68 68 68 68
+74 * 69 * 69 * * * 0069 69 0069 00000069 69 69 69 69 69 69 69
+75 * 6a * 6a * * * 006a 6a 006a 0000006a 6a 6a 6a 6a 6a 6a 6a
+76 * 6b * 6b * * * 006b 6b 006b 0000006b 6b 6b 6b 6b 6b 6b 6b
+77 * 6c * 6c * * * 006c 6c 006c 0000006c 6c 6c 6c 6c 6c 6c 6c
+78 * 6d * 6d * * * 006d 6d 006d 0000006d 6d 6d 6d 6d 6d 6d 6d
+79 * 6e * 6e * * * 006e 6e 006e 0000006e 6e 6e 6e 6e 6e 6e 6e
+80 * 6f * 6f * * * 006f 6f 006f 0000006f 6f 6f 6f 6f 6f 6f 6f
+81 * 70 * 70 * * * 0070 70 0070 00000070 70 70 70 70 70 70 70
+82 * 71 * 71 * * * 0071 71 0071 00000071 71 71 71 71 71 71 71
+83 * 72 * 72 * * * 0072 72 0072 00000072 72 72 72 72 72 72 72
+84 * 73 * 73 * * * 0073 73 0073 00000073 73 73 73 73 73 73 73
+85 * 74 * 74 * * * 0074 74 0074 00000074 74 74 74 74 74 74 74
+86 * 75 * 75 * * * 0075 75 0075 00000075 75 75 75 75 75 75 75
+87 * 76 * 76 * * * 0076 76 0076 00000076 76 76 76 76 76 76 76
+88 * 77 * 77 * * * 0077 77 0077 00000077 77 77 77 77 77 77 77
+89 * 78 * 78 * * * 0078 78 0078 00000078 78 78 78 78 78 78 78
+90 * 79 * 79 * * * 0079 79 0079 00000079 79 79 79 79 79 79 79
+91 * 7a * 7a * * * 007a 7a 007a 0000007a 7a 7a 7a 7a 7a 7a 7a
+92 * 7b * 7b * * * 007b 7b 007b 0000007b 7b 7b 7b 7b 7b 7b 7b
+93 * 7c * 7c * * * 007c 7c 007c 0000007c 7c 7c 7c 7c 7c 7c 7c
+94 * 7d * 7d * * * 007d 7d 007d 0000007d 7d 7d 7d 7d 7d 7d 7d
+95 * 7e * 7e * * * 007e 7e 007e 0000007e 7e 7e 7e 7e 7e 7e 7e
+96 * fd * * * * * * c2a9 00a9 000000a9 * * * * * * *
+97 * fe * * * * * * e284a2 2122 00002122 * * * * * * *
+98 * ff * * * * * * * * * * * * * * * *
+99 a140 a140 a140 * 2121 * 8ea1a1a1,a1a1,8ea1a1a1v,a1a1v 3000 e38080 3000 00003000 a140 a140 a140 a140 a140 a140 a140
+100 a141 a141 a141 * 2122 * 8ea1a1a2,a1a2,8ea1a1a2v,a1a2v ff0c efbc8c ff0c 0000ff0c a141 a141 a141 a141 a141 a141 a141
+101 a142 a142 a142 * 2123 * 8ea1a1a3,a1a3,8ea1a1a3v,a1a3v 3001 e38081 3001 00003001 a142 a142 a142 a142 a142 a142 a142
+102 a143 a143 a143 * 2124 * 8ea1a1a4,a1a4,8ea1a1a4v,a1a4v 3002 e38082 3002 00003002 a143 a143 a143 a143 a143 a143 a143
+103 a144 a144 a144 * 2125 * 8ea1a1a5,a1a5,8ea1a1a5v,a1a5v ff0e efbc8e ff0e 0000ff0e a144 a144 a144 a144 a144 a144 a144
+104 a145 a145 a145 * 2126 * 8ea1a1a6,a1a6,8ea1a1a6v,a1a6v 2022 e280a2,e280a7 2022,2027 00002022,00002027 a145 a145 a145 a145 a145 a145 a145
+105 a146 a146 a146 * 2127 * 8ea1a1a7,a1a7,8ea1a1a7v,a1a7v ff1b efbc9b ff1b 0000ff1b a146 a146 a146 a146 a146 a146 a146
+106 a147 a147 a147 * 2128 * 8ea1a1a8,a1a8,8ea1a1a8v,a1a8v ff1a efbc9a ff1a 0000ff1a a147 a147 a147 a147 a147 a147 a147
+107 a148 a148 a148 * 2129 * 8ea1a1a9,a1a9,8ea1a1a9v,a1a9v ff1f efbc9f ff1f 0000ff1f a148 a148 a148 a148 a148 a148 a148
+108 a149 a149 a149 * 212a * 8ea1a1aa,a1aa,8ea1a1aav,a1aav ff01 efbc81 ff01 0000ff01 a149 a149 a149 a149 a149 a149 a149
+109 a14a a14a a14a a14cv 212b * 8ea1a1ab,a1ab,8ea1a1abv,a1abv fe30,2025v efb8b0,e280a5v fe30,2025v 0000fe30,00002025v a14a a14a a14a a14a a14a a14a a14a
+110 a14b a14b a14b * 212c * 8ea1a1ac,a1ac 2026 e280a6,e28baf 2026,22ef 00002026,000022ef a14b a14b a14b a14b a14b a14b a14b
+111 a14c a14c a14c * 212d * 8ea1a1ad,a1ad,8ea1a1adv,a1adv 2025 e280a5 2025 00002025 a14c a14c a14c a14c a14c a14c a14c
+112 a14d a14d a14d * 212e * 8ea1a1ae,a1ae,8ea1a1aev,a1aev fe50 efb990 fe50 0000fe50 a14d a14d a14d a14d a14d a14d a14d
+113 a14e a14e a14e * 212f * 8ea1a1af,a1af,8ea1a1afv,a1afv ff64 efbda4,efb991 ff64,fe51 0000ff64,0000fe51 a14e a14e a14e a14e a14e a14e a14e
+114 a14f a14f a14f * 2130 * 8ea1a1b0,a1b0,8ea1a1b0v,a1b0v fe52 efb992 fe52 0000fe52 a14f a14f a14f a14f a14f a14f a14f
+115 a150 a150 a150 * 2131 * 8ea1a1b1,a1b1,8ea1a1b1v,a1b1v 00b7 c2b7 00b7 000000b7 a150 a150 a150 a150 a150 a150 a150
+116 a151 a151 a151 * 2132 * 8ea1a1b2,a1b2,8ea1a1b2v,a1b2v fe54 efb994 fe54 0000fe54 a151 a151 a151 a151 a151 a151 a151
+117 a152 a152 a152 * 2133 * 8ea1a1b3,a1b3,8ea1a1b3v,a1b3v fe55 efb995 fe55 0000fe55 a152 a152 a152 a152 a152 a152 a152
+118 a153 a153 a153 * 2134 * 8ea1a1b4,a1b4,8ea1a1b4v,a1b4v fe56 efb996 fe56 0000fe56 a153 a153 a153 a153 a153 a153 a153
+119 a154 a154 a154 * 2135 * 8ea1a1b5,a1b5,8ea1a1b5v,a1b5v fe57 efb997 fe57 0000fe57 a154 a154 a154 a154 a154 a154 a154
+120 a155 a155 a155 * 2136 * 8ea1a1b6,a1b6,8ea1a1b6v,a1b6v ff5c,2013v efbd9c,e28093v ff5c,2013v 0000ff5c,00002013v a155 a155 a155 a155 a155 a155 a155
+121 a156 a156 a156 * 2137 * 8ea1a1b7,a1b7,8ea1a1b7v,a1b7v 2013 e28093 2013 00002013 a156 a156 a156 a156 a156 a156 a156
+122 a157 a157 a157 a158v 2138 * 8ea1a1b8,a1b8,8ea1a1b8v,a1b8v fe31,2014v efb8b1,e28094v fe31,2014v 0000fe31,00002014v a157 a157 a157 a157 a157 a157 a157
+123 a158 a158 a158 * 2139 * 8ea1a1b9,a1b9,8ea1a1b9v,a1b9v 2014 e28094 2014 00002014 a158 a158 a158 a158 a158 a158 a158
+124 * * * * 213a,213bv * 8ea1a1ba,a1ba,8ea1a1bav,8ea1a1bbv,a1bav,a1bbv * * * * * * * * * * *
+125 * * * * 213b * 8ea1a1bb,a1bb * * * * * * * * * * *
+126 * * * * 213c,213dv * 8ea1a1bc,a1bc,8ea1a1bcv,8ea1a1bdv,a1bcv,a1bdv * * * * * * * * * * *
+127 * * * * 213d * 8ea1a1bd,a1bd * * * * * * * * * * *
+128 a15d a15d a15d * 213e * 8ea1a1be,a1be ff08 efbc88 ff08 0000ff08 a15d a15d a15d a15d a15d a15d a15d
+129 a15e a15e a15e * 213f * 8ea1a1bf,a1bf ff09 efbc89 ff09 0000ff09 a15e a15e a15e a15e a15e a15e a15e
+130 a15f,a15dv a15f,a15dv a15f,a15dv a15dv,a17dv 2140,213ev * 8ea1a1c0,a1c0,8ea1a1bev,8ea1a1c0v,a1bev,a1c0v fe35,ff08v efb8b5,efbc88v fe35,ff08v 0000fe35,0000ff08v a15f,a15dv a15f,a15dv a15f,a15dv a15f,a15dv a15f,a15dv a15f,a15dv a15f,a15dv
+131 a160,a15ev a160,a15ev a160,a15ev a15ev,a17ev 2141,213fv * 8ea1a1c1,a1c1,8ea1a1bfv,8ea1a1c1v,a1bfv,a1c1v fe36,ff09v efb8b6,efbc89v fe36,ff09v 0000fe36,0000ff09v a160,a15ev a160,a15ev a160,a15ev a160,a15ev a160,a15ev a160,a15ev a160,a15ev
+132 a161 a161 a161 * 2142 * 8ea1a1c2,a1c2 ff5b efbd9b ff5b 0000ff5b a161 a161 a161 a161 a161 a161 a161
+133 a162 a162 a162 * 2143 * 8ea1a1c3,a1c3 ff5d efbd9d ff5d 0000ff5d a162 a162 a162 a162 a162 a162 a162
+134 a163,a161v a163,a161v a163,a161v a161v,a1a1v 2144,2142v * 8ea1a1c4,a1c4,8ea1a1c2v,8ea1a1c4v,a1c2v,a1c4v fe37,ff5bv efb8b7,efbd9bv fe37,ff5bv 0000fe37,0000ff5bv a163,a161v a163,a161v a163,a161v a163,a161v a163,a161v a163,a161v a163,a161v
+135 a164,a162v a164,a162v a164,a162v a162v,a1a2v 2145,2143v * 8ea1a1c5,a1c5,8ea1a1c3v,8ea1a1c5v,a1c3v,a1c5v fe38,ff5dv efb8b8,efbd9dv fe38,ff5dv 0000fe38,0000ff5dv a164,a162v a164,a162v a164,a162v a164,a162v a164,a162v a164,a162v a164,a162v
+136 a165 a165 a165 * 2146 * 8ea1a1c6,a1c6 3014 e38094 3014 00003014 a165 a165 a165 a165 a165 a165 a165
+137 a166 a166 a166 * 2147 * 8ea1a1c7,a1c7 3015 e38095 3015 00003015 a166 a166 a166 a166 a166 a166 a166
+138 a167,a165v a167,a165v a167,a165v a165v,a1a3v 2148,2146v * 8ea1a1c8,a1c8,8ea1a1c6v,8ea1a1c8v,a1c6v,a1c8v fe39,3014v efb8b9,e38094v fe39,3014v 0000fe39,00003014v a167,a165v a167,a165v a167,a165v a167,a165v a167,a165v a167,a165v a167,a165v
+139 a168,a166v a168,a166v a168,a166v a166v,a1a4v 2149,2147v * 8ea1a1c9,a1c9,8ea1a1c7v,8ea1a1c9v,a1c7v,a1c9v fe3a,3015v efb8ba,e38095v fe3a,3015v 0000fe3a,00003015v a168,a166v a168,a166v a168,a166v a168,a166v a168,a166v a168,a166v a168,a166v
+140 a169 a169 a169 * 214a * 8ea1a1ca,a1ca 3010 e38090 3010 00003010 a169 a169 a169 a169 a169 a169 a169
+141 a16a a16a a16a * 214b * 8ea1a1cb,a1cb 3011 e38091 3011 00003011 a16a a16a a16a a16a a16a a16a a16a
+142 a16b,a169v a16b,a169v a16b,a169v a169v 214c,214av * 8ea1a1cc,a1cc,8ea1a1cav,8ea1a1ccv,a1cav,a1ccv fe3b,3010v efb8bb,e38090v fe3b,3010v 0000fe3b,00003010v a16b,a169v a16b,a169v a16b,a169v a16b,a169v a16b,a169v a16b,a169v a16b,a169v
+143 a16c,a16av a16c,a16av a16c,a16av a16av 214d,214bv * 8ea1a1cd,a1cd,8ea1a1cbv,8ea1a1cdv,a1cbv,a1cdv fe3c,3011v efb8bc,e38091v fe3c,3011v 0000fe3c,00003011v a16c,a16av a16c,a16av a16c,a16av a16c,a16av a16c,a16av a16c,a16av a16c,a16av
+144 a16d a16d a16d * 214e * 8ea1a1ce,a1ce 300a e3808a 300a 0000300a a16d a16d a16d a16d a16d a16d a16d
+145 a16e a16e a16e * 214f * 8ea1a1cf,a1cf 300b e3808b 300b 0000300b a16e a16e a16e a16e a16e a16e a16e
+146 a16f,a16dv a16f,a16dv a16f,a16dv a16dv 2150,214ev * 8ea1a1d0,a1d0,8ea1a1cev,8ea1a1d0v,a1cev,a1d0v fe3d,300av efb8bd,e3808av fe3d,300av 0000fe3d,0000300av a16f,a16dv a16f,a16dv a16f,a16dv a16f,a16dv a16f,a16dv a16f,a16dv a16f,a16dv
+147 a170,a16ev a170,a16ev a170,a16ev a16ev 2151,214fv * 8ea1a1d1,a1d1,8ea1a1cfv,8ea1a1d1v,a1cfv,a1d1v fe3e,300bv efb8be,e3808bv fe3e,300bv 0000fe3e,0000300bv a170,a16ev a170,a16ev a170,a16ev a170,a16ev a170,a16ev a170,a16ev a170,a16ev
+148 a171 a171 a171 * 2152 * 8ea1a1d2,a1d2 3008 e28ca9,e38088 2329,3008 00002329,00003008 a171 a171 a171 a171 a171 a171 a171
+149 a172 a172 a172 * 2153 * 8ea1a1d3,a1d3 3009 e28caa,e38089 232a,3009 0000232a,00003009 a172 a172 a172 a172 a172 a172 a172
+150 a173,a171v a173,a171v a173,a171v a171v 2154,2152v * 8ea1a1d4,a1d4,8ea1a1d2v,8ea1a1d4v,a1d2v,a1d4v fe3f,3008v efb8bf,e38088v fe3f,3008v 0000fe3f,00003008v a173,a171v a173,a171v a173,a171v a173,a171v a173,a171v a173,a171v a173,a171v
+151 a174,a172v a174,a172v a174,a172v a172v 2155,2153v * 8ea1a1d5,a1d5,8ea1a1d3v,8ea1a1d5v,a1d3v,a1d5v fe40,3009v efb980,e38089v fe40,3009v 0000fe40,00003009v a174,a172v a174,a172v a174,a172v a174,a172v a174,a172v a174,a172v a174,a172v
+152 a175 a175 a175 * 2156 * 8ea1a1d6,a1d6 300c e3808c 300c 0000300c a175 a175 a175 a175 a175 a175 a175
+153 a176 a176 a176 * 2157 * 8ea1a1d7,a1d7 300d e3808d 300d 0000300d a176 a176 a176 a176 a176 a176 a176
+154 a177,a175v a177,a175v a177,a175v a175v 2158,2156v * 8ea1a1d8,a1d8,8ea1a1d6v,8ea1a1d8v,a1d6v,a1d8v fe41,300cv efb981,e3808cv fe41,300cv 0000fe41,0000300cv a177,a175v a177,a175v a177,a175v a177,a175v a177,a175v a177,a175v a177,a175v
+155 a178,a176v a178,a176v a178,a176v a176v 2159,2157v * 8ea1a1d9,a1d9,8ea1a1d7v,8ea1a1d9v,a1d7v,a1d9v fe42,300dv efb982,e3808dv fe42,300dv 0000fe42,0000300dv a178,a176v a178,a176v a178,a176v a178,a176v a178,a176v a178,a176v a178,a176v
+156 a179 a179 a179 * 215a * 8ea1a1da,a1da 300e e3808e 300e 0000300e a179 a179 a179 a179 a179 a179 a179
+157 a17a a17a a17a * 215b * 8ea1a1db,a1db 300f e3808f 300f 0000300f a17a a17a a17a a17a a17a a17a a17a
+158 a17b,a179v a17b,a179v a17b,a179v a179v 215c,215av * 8ea1a1dc,a1dc,8ea1a1dav,8ea1a1dcv,a1dav,a1dcv fe43,300ev efb983,e3808ev fe43,300ev 0000fe43,0000300ev a17b,a179v a17b,a179v a17b,a179v a17b,a179v a17b,a179v a17b,a179v a17b,a179v
+159 a17c,a17av a17c,a17av a17c,a17av a17av 215d,215bv * 8ea1a1dd,a1dd,8ea1a1dbv,8ea1a1ddv,a1dbv,a1ddv fe44,300fv efb984,e3808fv fe44,300fv 0000fe44,0000300fv a17c,a17av a17c,a17av a17c,a17av a17c,a17av a17c,a17av a17c,a17av a17c,a17av
+160 a17d a17d a17d * 215e * 8ea1a1de,a1de,8ea1a1dev,a1dev fe59 efb999 fe59 0000fe59 a17d a17d a17d a17d a17d a17d a17d
+161 a17e a17e a17e * 215f * 8ea1a1df,a1df,8ea1a1dfv,a1dfv fe5a efb99a fe5a 0000fe5a a17e a17e a17e a17e a17e a17e a17e
+162 a1a1 a1a1 a1a1 * 2160 * 8ea1a1e0,a1e0,8ea1a1e0v,a1e0v fe5b efb99b fe5b 0000fe5b a1a1 a1a1 a1a1 a1a1 a1a1 a1a1 a1a1
+163 a1a2 a1a2 a1a2 * 2161 * 8ea1a1e1,a1e1,8ea1a1e1v,a1e1v fe5c efb99c fe5c 0000fe5c a1a2 a1a2 a1a2 a1a2 a1a2 a1a2 a1a2
+164 a1a3 a1a3 a1a3 * 2162 * 8ea1a1e2,a1e2,8ea1a1e2v,a1e2v fe5d efb99d fe5d 0000fe5d a1a3 a1a3 a1a3 a1a3 a1a3 a1a3 a1a3
+165 a1a4 a1a4 a1a4 * 2163 * 8ea1a1e3,a1e3,8ea1a1e3v,a1e3v fe5e efb99e fe5e 0000fe5e a1a4 a1a4 a1a4 a1a4 a1a4 a1a4 a1a4
+166 a1a5 a1a5 a1a5 * 2164 * 8ea1a1e4,a1e4,8ea1a1e4v,a1e4v 2018 e28098 2018 00002018 a1a5 a1a5 a1a5 a1a5 a1a5 a1a5 a1a5
+167 a1a6 a1a6 a1a6 * 2165 * 8ea1a1e5,a1e5,8ea1a1e5v,a1e5v 2019 e28099 2019 00002019 a1a6 a1a6 a1a6 a1a6 a1a6 a1a6 a1a6
+168 a1a7 a1a7 a1a7 * 2166 * 8ea1a1e6,a1e6,8ea1a1e6v,a1e6v 201c e2809c 201c 0000201c a1a7 a1a7 a1a7 a1a7 a1a7 a1a7 a1a7
+169 a1a8 a1a8 a1a8 * 2167 * 8ea1a1e7,a1e7,8ea1a1e7v,a1e7v 201d e2809d 201d 0000201d a1a8 a1a8 a1a8 a1a8 a1a8 a1a8 a1a8
+170 a1a9 a1a9 a1a9 * 2168 * 8ea1a1e8,a1e8,8ea1a1e8v,a1e8v 301d e3809d 301d 0000301d a1a9 a1a9 a1a9 a1a9 a1a9 a1a9 a1a9
+171 a1aa a1aa a1aa * 2169 * 8ea1a1e9,a1e9,8ea1a1e9v,a1e9v 301e e3809e 301e 0000301e a1aa a1aa a1aa a1aa a1aa a1aa a1aa
+172 a1ab a1ab a1ab * 216a * 8ea1a1ea,a1ea,8ea1a1eav,a1eav 2035 e280b5 2035 00002035 a1ab a1ab a1ab a1ab a1ab a1ab a1ab
+173 a1ac a1ac a1ac * 216b * 8ea1a1eb,a1eb,8ea1a1ebv,a1ebv 2032 e280b2 2032 00002032 a1ac a1ac a1ac a1ac a1ac a1ac a1ac
+174 a1ad a1ad a1ad * 216c * 8ea1a1ec,a1ec,8ea1a1ecv,a1ecv ff03 efbc83 ff03 0000ff03 a1ad a1ad a1ad a1ad a1ad a1ad a1ad
+175 a1ae a1ae a1ae * 216d * 8ea1a1ed,a1ed,8ea1a1edv,a1edv ff06 efbc86 ff06 0000ff06 a1ae a1ae a1ae a1ae a1ae a1ae a1ae
+176 a1af a1af a1af * 216e * 8ea1a1ee,a1ee,8ea1a1eev,a1eev ff0a efbc8a ff0a 0000ff0a a1af a1af a1af a1af a1af a1af a1af
+177 a1b0 a1b0 a1b0 * 216f * 8ea1a1ef,a1ef,8ea1a1efv,a1efv 203b e280bb 203b 0000203b a1b0 a1b0 a1b0 a1b0 a1b0 a1b0 a1b0
+178 a1b1 a1b1 a1b1 * 2170 * 8ea1a1f0,a1f0,8ea1a1f0v,a1f0v 00a7 c2a7 00a7 000000a7 a1b1 a1b1 a1b1 a1b1 a1b1 a1b1 a1b1
+179 a1b2 a1b2 a1b2 * 2171 * 8ea1a1f1,a1f1,8ea1a1f1v,a1f1v 3003 e38083 3003 00003003 a1b2 a1b2 a1b2 a1b2 a1b2 a1b2 a1b2
+180 a1b3 a1b3 a1b3 * 2172 * 8ea1a1f2,a1f2,8ea1a1f2v,a1f2v 25cb e2978b 25cb 000025cb a1b3 a1b3 a1b3 a1b3 a1b3 a1b3 a1b3
+181 a1b4 a1b4 a1b4 * 2173 * 8ea1a1f3,a1f3,8ea1a1f3v,a1f3v 25cf e2978f 25cf 000025cf a1b4 a1b4 a1b4 a1b4 a1b4 a1b4 a1b4
+182 a1b5 a1b5 a1b5 * 2174 * 8ea1a1f4,a1f4,8ea1a1f4v,a1f4v 25b3 e296b3 25b3 000025b3 a1b5 a1b5 a1b5 a1b5 a1b5 a1b5 a1b5
+183 a1b6 a1b6 a1b6 * 2175 * 8ea1a1f5,a1f5,8ea1a1f5v,a1f5v 25b2 e296b2 25b2 000025b2 a1b6 a1b6 a1b6 a1b6 a1b6 a1b6 a1b6
+184 a1b7 a1b7 a1b7 * 2176 * 8ea1a1f6,a1f6,8ea1a1f6v,a1f6v 25ce e2978e 25ce 000025ce a1b7 a1b7 a1b7 a1b7 a1b7 a1b7 a1b7
+185 a1b8 a1b8 a1b8 * 2177 * 8ea1a1f7,a1f7,8ea1a1f7v,a1f7v 2606 e29886 2606 00002606 a1b8 a1b8 a1b8 a1b8 a1b8 a1b8 a1b8
+186 a1b9 a1b9 a1b9 * 2178 * 8ea1a1f8,a1f8,8ea1a1f8v,a1f8v 2605 e29885 2605 00002605 a1b9 a1b9 a1b9 a1b9 a1b9 a1b9 a1b9
+187 a1ba a1ba a1ba * 2179 * 8ea1a1f9,a1f9,8ea1a1f9v,a1f9v 25c7 e29787 25c7 000025c7 a1ba a1ba a1ba a1ba a1ba a1ba a1ba
+188 a1bb a1bb a1bb * 217a * 8ea1a1fa,a1fa,8ea1a1fav,a1fav 25c6 e29786 25c6 000025c6 a1bb a1bb a1bb a1bb a1bb a1bb a1bb
+189 a1bc a1bc a1bc * 217b * 8ea1a1fb,a1fb,8ea1a1fbv,a1fbv 25a1 e296a1 25a1 000025a1 a1bc a1bc a1bc a1bc a1bc a1bc a1bc
+190 a1bd a1bd a1bd * 217c * 8ea1a1fc,a1fc,8ea1a1fcv,a1fcv 25a0 e296a0 25a0 000025a0 a1bd a1bd a1bd a1bd a1bd a1bd a1bd
+191 a1be a1be a1be * 217d * 8ea1a1fd,a1fd,8ea1a1fdv,a1fdv 25bd e296bd 25bd 000025bd a1be a1be a1be a1be a1be a1be a1be
+192 a1bf a1bf a1bf * 217e * 8ea1a1fe,a1fe,8ea1a1fev,a1fev 25bc e296bc 25bc 000025bc a1bf a1bf a1bf a1bf a1bf a1bf a1bf
+193 a1c0 a1c0 a1c0 * 2221 * 8ea1a2a1,a2a1,8ea1a2a1v,a2a1v 32a3 e38aa3 32a3 000032a3 a1c0 a1c0 a1c0 a1c0 a1c0 a1c0 a1c0
+194 a1c1 a1c1 a1c1 * 2222 * 8ea1a2a2,a2a2,8ea1a2a2v,a2a2v 2105 e28485 2105 00002105 a1c1 a1c1 a1c1 a1c1 a1c1 a1c1 a1c1
+195 a1c2 a1c2 a1c2 * 2223 * 8ea1a2a3,a2a3,8ea1a2a3v,a2a3v 203e c2af,cc84,e280be 00af,0304,203e 000000af,00000304,0000203e a1c2 a1c2 a1c2 a1c2 a1c2 a1c2 a1c2
+196 a1c3 a1c3 a1c3 * 2224 * 8ea1a2a4,a2a4,8ea1a2a4v,a2a4v * efbfa3 ffe3 0000ffe3 a1c3 a1c3 a1c3 a1c3 a1c3 a1c3 a1c3
+197 a1c4 a1c4 a1c4 * 2225 * 8ea1a2a5,a2a5,8ea1a2a5v,a2a5v ff3f efbcbf ff3f 0000ff3f a1c4 a1c4 a1c4 a1c4 a1c4 a1c4 a1c4
+198 a1c5 a1c5 a1c5 * 2226 * 8ea1a2a6,a2a6,8ea1a2a6v,a2a6v * cb8d 02cd 000002cd a1c5 a1c5 a1c5 a1c5 a1c5 a1c5 a1c5
+199 a1c6 a1c6 a1c6 * 2227 * 8ea1a2a7,a2a7,8ea1a2a7v,a2a7v fe49 efb989 fe49 0000fe49 a1c6 a1c6 a1c6 a1c6 a1c6 a1c6 a1c6
+200 a1c7 a1c7 a1c7 * 2228 * 8ea1a2a8,a2a8,8ea1a2a8v,a2a8v fe4a efb98a fe4a 0000fe4a a1c7 a1c7 a1c7 a1c7 a1c7 a1c7 a1c7
+201 a1c8 a1c8 a1c8 * 2229 * 8ea1a2a9,a2a9,8ea1a2a9v,a2a9v fe4d efb98d fe4d 0000fe4d a1c8 a1c8 a1c8 a1c8 a1c8 a1c8 a1c8
+202 a1c9 a1c9 a1c9 * 222a * 8ea1a2aa,a2aa,8ea1a2aav,a2aav fe4e efb98e fe4e 0000fe4e a1c9 a1c9 a1c9 a1c9 a1c9 a1c9 a1c9
+203 a1ca a1ca a1ca * 222b * 8ea1a2ab,a2ab,8ea1a2abv,a2abv fe4b efb98b fe4b 0000fe4b a1ca a1ca a1ca a1ca a1ca a1ca a1ca
+204 a1cb a1cb a1cb * 222c * 8ea1a2ac,a2ac,8ea1a2acv,a2acv fe4c efb98c fe4c 0000fe4c a1cb a1cb a1cb a1cb a1cb a1cb a1cb
+205 a1cc a1cc a1cc * 222d * 8ea1a2ad,a2ad,8ea1a2adv,a2adv fe5f efb99f fe5f 0000fe5f a1cc a1cc a1cc a1cc a1cc a1cc a1cc
+206 a1cd a1cd a1cd * 222e * 8ea1a2ae,a2ae,8ea1a2aev,a2aev fe60 efb9a0 fe60 0000fe60 a1cd a1cd a1cd a1cd a1cd a1cd a1cd
+207 a1ce a1ce a1ce * 222f * 8ea1a2af,a2af,8ea1a2afv,a2afv fe61 efb9a1 fe61 0000fe61 a1ce a1ce a1ce a1ce a1ce a1ce a1ce
+208 a1cf a1cf a1cf * 2230 * 8ea1a2b0,a2b0,8ea1a2b0v,a2b0v ff0b efbc8b ff0b 0000ff0b a1cf a1cf a1cf a1cf a1cf a1cf a1cf
+209 a1d0 a1d0 a1d0 * 2231 * 8ea1a2b1,a2b1,8ea1a2b1v,a2b1v ff0d efbc8d ff0d 0000ff0d a1d0 a1d0 a1d0 a1d0 a1d0 a1d0 a1d0
+210 a1d1 a1d1 a1d1 * 2232 * 8ea1a2b2,a2b2,8ea1a2b2v,a2b2v 00d7 c397 00d7 000000d7 a1d1 a1d1 a1d1 a1d1 a1d1 a1d1 a1d1
+211 a1d2 a1d2 a1d2 * 2233 * 8ea1a2b3,a2b3,8ea1a2b3v,a2b3v 00f7 c3b7 00f7 000000f7 a1d2 a1d2 a1d2 a1d2 a1d2 a1d2 a1d2
+212 a1d3 a1d3 a1d3 * 2234 * 8ea1a2b4,a2b4,8ea1a2b4v,a2b4v 00b1 c2b1 00b1 000000b1 a1d3 a1d3 a1d3 a1d3 a1d3 a1d3 a1d3
+213 a1d4 a1d4 a1d4 * 2235 * 8ea1a2b5,a2b5,8ea1a2b5v,a2b5v 221a e2889a 221a 0000221a a1d4 a1d4 a1d4 a1d4 a1d4 a1d4 a1d4
+214 a1d5 a1d5 a1d5 * 2236 * 8ea1a2b6,a2b6,8ea1a2b6v,a2b6v ff1c efbc9c ff1c 0000ff1c a1d5 a1d5 a1d5 a1d5 a1d5 a1d5 a1d5
+215 a1d6 a1d6 a1d6 * 2237 * 8ea1a2b7,a2b7,8ea1a2b7v,a2b7v ff1e efbc9e ff1e 0000ff1e a1d6 a1d6 a1d6 a1d6 a1d6 a1d6 a1d6
+216 a1d7 a1d7 a1d7 * 2238 * 8ea1a2b8,a2b8,8ea1a2b8v,a2b8v ff1d efbc9d ff1d 0000ff1d a1d7 a1d7 a1d7 a1d7 a1d7 a1d7 a1d7
+217 a1d8 a1d8 a1d8 * 2239 * 8ea1a2b9,a2b9,8ea1a2b9v,a2b9v 2266 e289a6 2266 00002266 a1d8 a1d8 a1d8 a1d8 a1d8 a1d8 a1d8
+218 a1d9 a1d9 a1d9 * 223a * 8ea1a2ba,a2ba,8ea1a2bav,a2bav 2267 e289a7 2267 00002267 a1d9 a1d9 a1d9 a1d9 a1d9 a1d9 a1d9
+219 a1da a1da a1da * 223b * 8ea1a2bb,a2bb,8ea1a2bbv,a2bbv 2260 e289a0 2260 00002260 a1da a1da a1da a1da a1da a1da a1da
+220 a1db a1db a1db * 223c * 8ea1a2bc,a2bc,8ea1a2bcv,a2bcv 221e e2889e 221e 0000221e a1db a1db a1db a1db a1db a1db a1db
+221 a1dc a1dc a1dc * 223d * 8ea1a2bd,a2bd,8ea1a2bdv,a2bdv 2252 e28992 2252 00002252 a1dc a1dc a1dc a1dc a1dc a1dc a1dc
+222 a1dd a1dd a1dd * 223e * 8ea1a2be,a2be,8ea1a2bev,a2bev 2261 e289a1 2261 00002261 a1dd a1dd a1dd a1dd a1dd a1dd a1dd
+223 a1de a1de a1de * 223f * 8ea1a2bf,a2bf,8ea1a2bfv,a2bfv fe62 efb9a2 fe62 0000fe62 a1de a1de a1de a1de a1de a1de a1de
+224 a1df a1df a1df * 2240 * 8ea1a2c0,a2c0,8ea1a2c0v,a2c0v fe63 efb9a3 fe63 0000fe63 a1df a1df a1df a1df a1df a1df a1df
+225 a1e0 a1e0 a1e0 * 2241 * 8ea1a2c1,a2c1,8ea1a2c1v,a2c1v fe64 efb9a4 fe64 0000fe64 a1e0 a1e0 a1e0 a1e0 a1e0 a1e0 a1e0
+226 a1e1 a1e1 a1e1 * 2242 * 8ea1a2c2,a2c2,8ea1a2c2v,a2c2v fe65 efb9a5 fe65 0000fe65 a1e1 a1e1 a1e1 a1e1 a1e1 a1e1 a1e1
+227 a1e2 a1e2 a1e2 * 2243 * 8ea1a2c3,a2c3,8ea1a2c3v,a2c3v fe66 efb9a6 fe66 0000fe66 a1e2 a1e2 a1e2 a1e2 a1e2 a1e2 a1e2
+228 a1e3 a1e3 a1e3 * 2244 * 8ea1a2c4,a2c4 223c e288bc,efbd9e 223c,ff5e 0000223c,0000ff5e a1e3 a1e3 a1e3 a1e3 a1e3 a1e3 a1e3
+229 a1e4 a1e4 a1e4 * 2245 * 8ea1a2c5,a2c5,8ea1a2c5v,a2c5v 2229 e288a9 2229 00002229 a1e4 a1e4 a1e4 a1e4 a1e4 a1e4 a1e4
+230 a1e5 a1e5 a1e5 * 2246 * 8ea1a2c6,a2c6,8ea1a2c6v,a2c6v 222a e288aa 222a 0000222a a1e5 a1e5 a1e5 a1e5 a1e5 a1e5 a1e5
+231 a1e6 a1e6 a1e6 * 2247 * 8ea1a2c7,a2c7,8ea1a2c7v,a2c7v 22a5 e28aa5 22a5 000022a5 a1e6 a1e6 a1e6 a1e6 a1e6 a1e6 a1e6
+232 a1e7 a1e7 a1e7 * 2248 * 8ea1a2c8,a2c8,8ea1a2c8v,a2c8v 2220 e288a0 2220 00002220 a1e7 a1e7 a1e7 a1e7 a1e7 a1e7 a1e7
+233 a1e8 a1e8 a1e8 * 2249 * 8ea1a2c9,a2c9,8ea1a2c9v,a2c9v 221f e2889f 221f 0000221f a1e8 a1e8 a1e8 a1e8 a1e8 a1e8 a1e8
+234 a1e9 a1e9 a1e9 * 224a * 8ea1a2ca,a2ca,8ea1a2cav,a2cav 22bf e28abf 22bf 000022bf a1e9 a1e9 a1e9 a1e9 a1e9 a1e9 a1e9
+235 a1ea a1ea a1ea * 224b * 8ea1a2cb,a2cb,8ea1a2cbv,a2cbv 33d2 e38f92 33d2 000033d2 a1ea a1ea a1ea a1ea a1ea a1ea a1ea
+236 a1eb a1eb a1eb * 224c * 8ea1a2cc,a2cc,8ea1a2ccv,a2ccv 33d1 e38f91 33d1 000033d1 a1eb a1eb a1eb a1eb a1eb a1eb a1eb
+237 a1ec a1ec a1ec * 224d * 8ea1a2cd,a2cd,8ea1a2cdv,a2cdv 222b e288ab 222b 0000222b a1ec a1ec a1ec a1ec a1ec a1ec a1ec
+238 a1ed a1ed a1ed * 224e * 8ea1a2ce,a2ce,8ea1a2cev,a2cev 222e e288ae 222e 0000222e a1ed a1ed a1ed a1ed a1ed a1ed a1ed
+239 a1ee a1ee a1ee * 224f * 8ea1a2cf,a2cf,8ea1a2cfv,a2cfv 2235 e288b5 2235 00002235 a1ee a1ee a1ee a1ee a1ee a1ee a1ee
+240 a1ef a1ef a1ef * 2250 * 8ea1a2d0,a2d0,8ea1a2d0v,a2d0v 2234 e288b4 2234 00002234 a1ef a1ef a1ef a1ef a1ef a1ef a1ef
+241 a1f0 a1f0 a1f0 * 2251 * 8ea1a2d1,a2d1,8ea1a2d1v,a2d1v 2640 e29980 2640 00002640 a1f0 a1f0 a1f0 a1f0 a1f0 a1f0 a1f0
+242 a1f1 a1f1 a1f1 * 2252 * 8ea1a2d2,a2d2,8ea1a2d2v,a2d2v 2642 e29982 2642 00002642 a1f1 a1f1 a1f1 a1f1 a1f1 a1f1 a1f1
+243 a1f2 a1f2 a1f2 * 2253 * 8ea1a2d3,a2d3,8ea1a2d3v,a2d3v 2641 e28a95,e29981 2295,2641 00002295,00002641 a1f2 a1f2 a1f2 a1f2 a1f2 a1f2 a1f2
+244 a1f3 a1f3 a1f3 * 2254 * 8ea1a2d4,a2d4,8ea1a2d4v,a2d4v 2609 e28a99,e29889 2299,2609 00002299,00002609 a1f3 a1f3 a1f3 a1f3 a1f3 a1f3 a1f3
+245 a1f4 a1f4 a1f4 * 2255 * 8ea1a2d5,a2d5,8ea1a2d5v,a2d5v 2191 e28691 2191 00002191 a1f4 a1f4 a1f4 a1f4 a1f4 a1f4 a1f4
+246 a1f5 a1f5 a1f5 * 2256 * 8ea1a2d6,a2d6,8ea1a2d6v,a2d6v 2193 e28693 2193 00002193 a1f5 a1f5 a1f5 a1f5 a1f5 a1f5 a1f5
+247 a1f7 a1f7 a1f7 * 2257 * 8ea1a2d7,a2d7,8ea1a2d7v,a2d7v 2192 e28692 2192 00002192 a1f7 a1f7 a1f7 a1f7 a1f7 a1f7 a1f7
+248 a1f6 a1f6 a1f6 * 2258 * 8ea1a2d8,a2d8,8ea1a2d8v,a2d8v 2190 e28690 2190 00002190 a1f6 a1f6 a1f6 a1f6 a1f6 a1f6 a1f6
+249 a1f8 a1f8 a1f8 * 2259 * 8ea1a2d9,a2d9,8ea1a2d9v,a2d9v 2196 e28696 2196 00002196 a1f8 a1f8 a1f8 a1f8 a1f8 a1f8 a1f8
+250 a1f9 a1f9 a1f9 * 225a * 8ea1a2da,a2da,8ea1a2dav,a2dav 2197 e28697 2197 00002197 a1f9 a1f9 a1f9 a1f9 a1f9 a1f9 a1f9
+251 a1fa a1fa a1fa * 225b * 8ea1a2db,a2db,8ea1a2dbv,a2dbv 2199 e28699 2199 00002199 a1fa a1fa a1fa a1fa a1fa a1fa a1fa
+252 a1fb a1fb a1fb * 225c * 8ea1a2dc,a2dc,8ea1a2dcv,a2dcv 2198 e28698 2198 00002198 a1fb a1fb a1fb a1fb a1fb a1fb a1fb
+253 a1fc a1fc a1fc * 225d * 8ea1a2dd,a2dd,8ea1a2ddv,a2ddv 2225 e288a5 2225 00002225 a1fc a1fc a1fc a1fc a1fc a1fc a1fc
+254 a1fd a1fd a1fd * 225e * 8ea1a2de,a2de,8ea1a2dev,a2dev 2223 e288a3 2223 00002223 a1fd a1fd a1fd a1fd a1fd a1fd a1fd
+255 a1fe a1fe a1fe * 225f * 8ea1a2df,a2df,8ea1a2dfv,a2dfv * * * * a1fe a1fe a1fe a1fe a1fe a1fe a1fe
+256 a240 a240 a240 * 2260 * 8ea1a2e0,a2e0,8ea1a2e0v,a2e0v * * * * a240 a240 a240 a240 a240 a240 a240
+257 a241 a241 a241 * 2261 * 8ea1a2e1,a2e1,8ea1a2e1v,a2e1v ff0f e28895,efbc8f 2215,ff0f 00002215,0000ff0f a241 a241 a241 a241 a241 a241 a241
+258 a242 a242 a242 * 2262 * 8ea1a2e2,a2e2,8ea1a2e2v,a2e2v ff3c efb9a8,efbcbc fe68,ff3c 0000fe68,0000ff3c a242 a242 a242 a242 a242 a242 a242
+259 a243 a243 a243 * 2263 * 8ea1a2e3,a2e3,8ea1a2e3v,a2e3v ff04 efbc84 ff04 0000ff04 a243 a243 a243 a243 a243 a243 a243
+260 a244 a244 a244 * 2264 * 8ea1a2e4,a2e4,8ea1a2e4v,a2e4v 00a5 c2a5,efbfa5 00a5,ffe5 000000a5,0000ffe5 a244 a244 a244 a244 a244 a244 a244
+261 a245 a245 a245 * 2265 * 8ea1a2e5,a2e5,8ea1a2e5v,a2e5v 3012 e38092 3012 00003012 a245 a245 a245 a245 a245 a245 a245
+262 a246 a246 a246 * 2266 * 8ea1a2e6,a2e6,8ea1a2e6v,a2e6v 00a2 c2a2,efbfa0 00a2,ffe0 000000a2,0000ffe0 a246 a246 a246 a246 a246 a246 a246
+263 a247 a247 a247 * 2267 * 8ea1a2e7,a2e7,8ea1a2e7v,a2e7v 00a3 c2a3,efbfa1 00a3,ffe1 000000a3,0000ffe1 a247 a247 a247 a247 a247 a247 a247
+264 a248 a248 a248 * 2268 * 8ea1a2e8,a2e8,8ea1a2e8v,a2e8v ff05 efbc85 ff05 0000ff05 a248 a248 a248 a248 a248 a248 a248
+265 a249 a249 a249 * 2269 * 8ea1a2e9,a2e9,8ea1a2e9v,a2e9v ff20 efbca0 ff20 0000ff20 a249 a249 a249 a249 a249 a249 a249
+266 a24a a24a a24a * 226a * 8ea1a2ea,a2ea,8ea1a2eav,a2eav 2103 e28483 2103 00002103 a24a a24a a24a a24a a24a a24a a24a
+267 a24b a24b a24b * 226b * 8ea1a2eb,a2eb,8ea1a2ebv,a2ebv 2109 e28489 2109 00002109 a24b a24b a24b a24b a24b a24b a24b
+268 a24c a24c a24c * 226c * 8ea1a2ec,a2ec,8ea1a2ecv,a2ecv fe69 efb9a9 fe69 0000fe69 a24c a24c a24c a24c a24c a24c a24c
+269 a24d a24d a24d * 226d * 8ea1a2ed,a2ed,8ea1a2edv,a2edv fe6a efb9aa fe6a 0000fe6a a24d a24d a24d a24d a24d a24d a24d
+270 a24e a24e a24e * 226e * 8ea1a2ee,a2ee,8ea1a2eev,a2eev fe6b efb9ab fe6b 0000fe6b a24e a24e a24e a24e a24e a24e a24e
+271 a24f a24f a24f * 226f * 8ea1a2ef,a2ef,8ea1a2efv,a2efv 33d5 e38f95 33d5 000033d5 a24f a24f a24f a24f a24f a24f a24f
+272 a250 a250 a250 * 2270 * 8ea1a2f0,a2f0,8ea1a2f0v,a2f0v 339c e38e9c 339c 0000339c a250 a250 a250 a250 a250 a250 a250
+273 a251 a251 a251 * 2271 * 8ea1a2f1,a2f1,8ea1a2f1v,a2f1v 339d e38e9d 339d 0000339d a251 a251 a251 a251 a251 a251 a251
+274 a252 a252 a252 * 2272 * 8ea1a2f2,a2f2,8ea1a2f2v,a2f2v 339e e38e9e 339e 0000339e a252 a252 a252 a252 a252 a252 a252
+275 a253 a253 a253 * 2273 * 8ea1a2f3,a2f3,8ea1a2f3v,a2f3v 33ce e38f8e 33ce 000033ce a253 a253 a253 a253 a253 a253 a253
+276 a254 a254 a254 * 2274 * 8ea1a2f4,a2f4,8ea1a2f4v,a2f4v 33a1 e38ea1 33a1 000033a1 a254 a254 a254 a254 a254 a254 a254
+277 a255 a255 a255 * 2275 * 8ea1a2f5,a2f5,8ea1a2f5v,a2f5v 338e e38e8e 338e 0000338e a255 a255 a255 a255 a255 a255 a255
+278 a256 a256 a256 * 2276 * 8ea1a2f6,a2f6,8ea1a2f6v,a2f6v 338f e38e8f 338f 0000338f a256 a256 a256 a256 a256 a256 a256
+279 a257 a257 a257 * 2277 * 8ea1a2f7,a2f7,8ea1a2f7v,a2f7v 33c4 e38f84 33c4 000033c4 a257 a257 a257 a257 a257 a257 a257
+280 a258 a258 a258 * 2278 * 8ea1a2f8,a2f8,8ea1a2f8v,a2f8v 00b0 c2b0 00b0 000000b0 a258 a258 a258 a258 a258 a258 a258
+281 a259 a259 a259 * 2279 * 8ea1a2f9,a2f9,8ea1a2f9v,a2f9v 5159 e58599,ee9792 5159,e5d2 00005159,0000e5d2 92af,a259 a259 a259 92af,a259 a259 a259 92af,a259
+282 a25a a25a a25a * 227a * 8ea1a2fa,a2fa,8ea1a2fav,a2fav 515b e5859b,ee9793 515b,e5d3 0000515b,0000e5d3 92b0,a25a a25a a25a 92b0,a25a a25a a25a 92b0,a25a
+283 a25b a25b a25b * 227b * 8ea1a2fb,a2fb,8ea1a2fbv,a2fbv 515e e5859e,ee9795 515e,e5d5 0000515e,0000e5d5 92b2,a25b a25b a25b 92b2,a25b a25b a25b 92b2,a25b
+284 a25c a25c a25c * 227c * 8ea1a2fc,a2fc,8ea1a2fcv,a2fcv 515d e5859d,ee9794 515d,e5d4 0000515d,0000e5d4 92b1,a25c a25c a25c 92b1,a25c a25c a25c 92b1,a25c
+285 a25d a25d a25d * 227d * 8ea1a2fd,a2fd,8ea1a2fdv,a2fdv 5161 e585a1 5161 00005161 a25d a25d a25d a25d a25d a25d a25d
+286 a25e a25e a25e * 227e * 8ea1a2fe,a2fe,8ea1a2fev,a2fev 5163 e585a3 5163 00005163 a25e a25e a25e a25e a25e a25e a25e
+287 a25f a25f a25f * 2321 * 8ea1a3a1,a3a1,8ea1a3a1v,a3a1v 55e7 e597a7 55e7 000055e7 a25f a25f a25f a25f a25f a25f a25f
+288 a260 a260 a260 * 2322 * 8ea1a3a2,a3a2,8ea1a3a2v,a3a2v 74e9 e793a9,ee8abc 74e9,e2bc 000074e9,0000e2bc feaa,a260 a260 a260 a260,feaa a260 a260 feaa,a260
+289 a261 a261 a261 * 2323 * 8ea1a3a3,a3a3,8ea1a3a3v,a3a3v 7cce e7b38e,ee8d8f 7cce,e34f 00007cce,0000e34f 8e7e,a261 a261 a261 8e7e,a261 a261 a261 8e7e,a261
+290 a262 a262 a262 * 2324 * 8ea1a3a4,a3a4,8ea1a3a4v,a3a4v 2581 e29681 2581 00002581 a262 a262 a262 a262 a262 a262 a262
+291 a263 a263 a263 * 2325 * 8ea1a3a5,a3a5,8ea1a3a5v,a3a5v 2582 e29682 2582 00002582 a263 a263 a263 a263 a263 a263 a263
+292 a264 a264 a264 * 2326 * 8ea1a3a6,a3a6,8ea1a3a6v,a3a6v 2583 e29683 2583 00002583 a264 a264 a264 a264 a264 a264 a264
+293 a265 a265 a265 * 2327 * 8ea1a3a7,a3a7,8ea1a3a7v,a3a7v 2584 e29684 2584 00002584 a265 a265 a265 a265 a265 a265 a265
+294 a266 a266 a266 * 2328 * 8ea1a3a8,a3a8,8ea1a3a8v,a3a8v 2585 e29685 2585 00002585 a266 a266 a266 a266 a266 a266 a266
+295 a267 a267 a267 * 2329 * 8ea1a3a9,a3a9,8ea1a3a9v,a3a9v 2586 e29686 2586 00002586 a267 a267 a267 a267 a267 a267 a267
+296 a268 a268 a268 * 232a * 8ea1a3aa,a3aa,8ea1a3aav,a3aav 2587 e29687 2587 00002587 a268 a268 a268 a268 a268 a268 a268
+297 a269 a269 a269 * 232b * 8ea1a3ab,a3ab,8ea1a3abv,a3abv 2588 e29688 2588 00002588 a269 a269 a269 a269 a269 a269 a269
+298 a26a a26a a26a * 232c * 8ea1a3ac,a3ac,8ea1a3acv,a3acv 258f e2968f 258f 0000258f a26a a26a a26a a26a a26a a26a a26a
+299 a26b a26b a26b * 232d * 8ea1a3ad,a3ad,8ea1a3adv,a3adv 258e e2968e 258e 0000258e a26b a26b a26b a26b a26b a26b a26b
+300 a26c a26c a26c * 232e * 8ea1a3ae,a3ae,8ea1a3aev,a3aev 258d e2968d 258d 0000258d a26c a26c a26c a26c a26c a26c a26c
+301 a26d a26d a26d * 232f * 8ea1a3af,a3af,8ea1a3afv,a3afv 258c e2968c 258c 0000258c a26d a26d a26d a26d a26d a26d a26d
+302 a26e a26e a26e * 2330 * 8ea1a3b0,a3b0,8ea1a3b0v,a3b0v 258b e2968b 258b 0000258b a26e a26e a26e a26e a26e a26e a26e
+303 a26f a26f a26f * 2331 * 8ea1a3b1,a3b1,8ea1a3b1v,a3b1v 258a e2968a 258a 0000258a a26f a26f a26f a26f a26f a26f a26f
+304 a270 a270 a270 * 2332 * 8ea1a3b2,a3b2,8ea1a3b2v,a3b2v 2589 e29689 2589 00002589 a270 a270 a270 a270 a270 a270 a270
+305 a271 a271 a271 * 2333 * 8ea1a3b3,a3b3,8ea1a3b3v,a3b3v 253c e294bc 253c 0000253c a271 a271 a271 a271 a271 a271 a271
+306 a272 a272 a272 * 2334 * 8ea1a3b4,a3b4,8ea1a3b4v,a3b4v 2534 e294b4 2534 00002534 a272 a272 a272 a272 a272 a272 a272
+307 a273 a273 a273 * 2335 * 8ea1a3b5,a3b5,8ea1a3b5v,a3b5v 252c e294ac 252c 0000252c a273 a273 a273 a273 a273 a273 a273
+308 a274 a274 a274 * 2336 * 8ea1a3b6,a3b6,8ea1a3b6v,a3b6v 2524 e294a4 2524 00002524 a274 a274 a274 a274 a274 a274 a274
+309 a275 a275 a275 * 2337 * 8ea1a3b7,a3b7,8ea1a3b7v,a3b7v 251c e2949c 251c 0000251c a275 a275 a275 a275 a275 a275 a275
+310 a276 a276 a276 * 2338 * 8ea1a3b8,a3b8,8ea1a3b8v,a3b8v 2594 e29694 2594 00002594 a276 a276 a276 a276 a276 a276 a276
+311 a277 a277 a277 * 2339 * 8ea1a3b9,a3b9,8ea1a3b9v,a3b9v 2500 e29480 2500 00002500 a277 a277 a277 a277 a277 a277 a277
+312 a278 a278 a278 a156v 233a * 8ea1a3ba,a3ba,8ea1a3bav,a3bav 2502 e29482 2502 00002502 a278 a278 a278 a278 a278 a278 a278
+313 a279 a279 a279 * 233b * 8ea1a3bb,a3bb,8ea1a3bbv,a3bbv 2595 e29695 2595 00002595 a279 a279 a279 a279 a279 a279 a279
+314 a27a a27a a27a * 233c * 8ea1a3bc,a3bc,8ea1a3bcv,a3bcv 250c e2948c 250c 0000250c a27a a27a a27a a27a a27a a27a a27a
+315 a27b a27b a27b * 233d * 8ea1a3bd,a3bd,8ea1a3bdv,a3bdv 2510 e29490 2510 00002510 a27b a27b a27b a27b a27b a27b a27b
+316 a27c a27c a27c * 233e * 8ea1a3be,a3be,8ea1a3bev,a3bev 2514 e29494 2514 00002514 a27c a27c a27c a27c a27c a27c a27c
+317 a27d a27d a27d * 233f * 8ea1a3bf,a3bf,8ea1a3bfv,a3bfv 2518 e29498 2518 00002518 a27d a27d a27d a27d a27d a27d a27d
+318 a27e a27e a27e * 2340 * 8ea1a3c0,a3c0,8ea1a3c0v,a3c0v 256d e295ad 256d 0000256d a27e a27e a27e a27e a27e a27e a27e
+319 a2a1 a2a1 a2a1 * 2341 * 8ea1a3c1,a3c1,8ea1a3c1v,a3c1v 256e e295ae 256e 0000256e a2a1 a2a1 a2a1 a2a1 a2a1 a2a1 a2a1
+320 a2a2 a2a2 a2a2 * 2342 * 8ea1a3c2,a3c2,8ea1a3c2v,a3c2v 2570 e295b0 2570 00002570 a2a2 a2a2 a2a2 a2a2 a2a2 a2a2 a2a2
+321 a2a3 a2a3 a2a3 * 2343 * 8ea1a3c3,a3c3,8ea1a3c3v,a3c3v 256f e295af 256f 0000256f a2a3 a2a3 a2a3 a2a3 a2a3 a2a3 a2a3
+322 a2a4 a2a4 a2a4 * 2344 * 8ea1a3c4,a3c4,8ea1a3c4v,a3c4v 2550 * * * a2a4 a2a4 a2a4 a2a4 a2a4 a2a4 a2a4
+323 a2a5 a2a5 a2a5 * 2345 * 8ea1a3c5,a3c5,8ea1a3c5v,a3c5v 255e * * * a2a5 a2a5 a2a5 a2a5 a2a5 a2a5 a2a5
+324 a2a6 a2a6 a2a6 * 2346 * 8ea1a3c6,a3c6,8ea1a3c6v,a3c6v 256a * * * a2a6 a2a6 a2a6 a2a6 a2a6 a2a6 a2a6
+325 a2a7 a2a7 a2a7 * 2347 * 8ea1a3c7,a3c7,8ea1a3c7v,a3c7v 2561 * * * a2a7 a2a7 a2a7 a2a7 a2a7 a2a7 a2a7
+326 a2a8 a2a8 a2a8 * 2348 * 8ea1a3c8,a3c8,8ea1a3c8v,a3c8v 25e2 e297a2 25e2 000025e2 a2a8 a2a8 a2a8 a2a8 a2a8 a2a8 a2a8
+327 a2a9 a2a9 a2a9 * 2349 * 8ea1a3c9,a3c9,8ea1a3c9v,a3c9v 25e3 e297a3 25e3 000025e3 a2a9 a2a9 a2a9 a2a9 a2a9 a2a9 a2a9
+328 a2aa a2aa a2aa * 234a * 8ea1a3ca,a3ca,8ea1a3cav,a3cav 25e5 e297a5 25e5 000025e5 a2aa a2aa a2aa a2aa a2aa a2aa a2aa
+329 a2ab a2ab a2ab * 234b * 8ea1a3cb,a3cb,8ea1a3cbv,a3cbv 25e4 e297a4 25e4 000025e4 a2ab a2ab a2ab a2ab a2ab a2ab a2ab
+330 a2ac a2ac a2ac * 234c * 8ea1a3cc,a3cc,8ea1a3ccv,a3ccv 2571 e295b1 2571 00002571 a2ac a2ac a2ac a2ac a2ac a2ac a2ac
+331 a2ad a2ad a2ad * 234d * 8ea1a3cd,a3cd,8ea1a3cdv,a3cdv 2572 e295b2 2572 00002572 a2ad a2ad a2ad a2ad a2ad a2ad a2ad
+332 a2ae a2ae a2ae * 234e * 8ea1a3ce,a3ce,8ea1a3cev,a3cev 2573 e295b3 2573 00002573 a2ae a2ae a2ae a2ae a2ae a2ae a2ae
+333 a2af a2af a2af * 2421 * 8ea1a4a1,a4a1,8ea1a4a1v,a4a1v ff10 efbc90 ff10 0000ff10 a2af a2af a2af a2af a2af a2af a2af
+334 a2b0 a2b0 a2b0 * 2422 * 8ea1a4a2,a4a2,8ea1a4a2v,a4a2v ff11 efbc91 ff11 0000ff11 a2b0 a2b0 a2b0 a2b0 a2b0 a2b0 a2b0
+335 a2b1 a2b1 a2b1 * 2423 * 8ea1a4a3,a4a3,8ea1a4a3v,a4a3v ff12 efbc92 ff12 0000ff12 a2b1 a2b1 a2b1 a2b1 a2b1 a2b1 a2b1
+336 a2b2 a2b2 a2b2 * 2424 * 8ea1a4a4,a4a4,8ea1a4a4v,a4a4v ff13 efbc93 ff13 0000ff13 a2b2 a2b2 a2b2 a2b2 a2b2 a2b2 a2b2
+337 a2b3 a2b3 a2b3 * 2425 * 8ea1a4a5,a4a5,8ea1a4a5v,a4a5v ff14 efbc94 ff14 0000ff14 a2b3 a2b3 a2b3 a2b3 a2b3 a2b3 a2b3
+338 a2b4 a2b4 a2b4 * 2426 * 8ea1a4a6,a4a6,8ea1a4a6v,a4a6v ff15 efbc95 ff15 0000ff15 a2b4 a2b4 a2b4 a2b4 a2b4 a2b4 a2b4
+339 a2b5 a2b5 a2b5 * 2427 * 8ea1a4a7,a4a7,8ea1a4a7v,a4a7v ff16 efbc96 ff16 0000ff16 a2b5 a2b5 a2b5 a2b5 a2b5 a2b5 a2b5
+340 a2b6 a2b6 a2b6 * 2428 * 8ea1a4a8,a4a8,8ea1a4a8v,a4a8v ff17 efbc97 ff17 0000ff17 a2b6 a2b6 a2b6 a2b6 a2b6 a2b6 a2b6
+341 a2b7 a2b7 a2b7 * 2429 * 8ea1a4a9,a4a9,8ea1a4a9v,a4a9v ff18 efbc98 ff18 0000ff18 a2b7 a2b7 a2b7 a2b7 a2b7 a2b7 a2b7
+342 a2b8 a2b8 a2b8 * 242a * 8ea1a4aa,a4aa,8ea1a4aav,a4aav ff19 efbc99 ff19 0000ff19 a2b8 a2b8 a2b8 a2b8 a2b8 a2b8 a2b8
+343 a2b9 a2b9 a2b9 * 242b * 8ea1a4ab,a4ab,8ea1a4abv,a4abv 2160 e285a0 2160 00002160 a2b9 a2b9 a2b9 a2b9 a2b9 a2b9 a2b9
+344 a2ba a2ba a2ba * 242c * 8ea1a4ac,a4ac,8ea1a4acv,a4acv 2161 e285a1 2161 00002161 a2ba a2ba a2ba a2ba a2ba a2ba a2ba
+345 a2bb a2bb a2bb * 242d * 8ea1a4ad,a4ad,8ea1a4adv,a4adv 2162 e285a2 2162 00002162 a2bb a2bb a2bb a2bb a2bb a2bb a2bb
+346 a2bc a2bc a2bc * 242e * 8ea1a4ae,a4ae,8ea1a4aev,a4aev 2163 e285a3 2163 00002163 a2bc a2bc a2bc a2bc a2bc a2bc a2bc
+347 a2bd a2bd a2bd * 242f * 8ea1a4af,a4af,8ea1a4afv,a4afv 2164 e285a4 2164 00002164 a2bd a2bd a2bd a2bd a2bd a2bd a2bd
+348 a2be a2be a2be * 2430 * 8ea1a4b0,a4b0,8ea1a4b0v,a4b0v 2165 e285a5 2165 00002165 a2be a2be a2be a2be a2be a2be a2be
+349 a2bf a2bf a2bf * 2431 * 8ea1a4b1,a4b1,8ea1a4b1v,a4b1v 2166 e285a6 2166 00002166 a2bf a2bf a2bf a2bf a2bf a2bf a2bf
+350 a2c0 a2c0 a2c0 * 2432 * 8ea1a4b2,a4b2,8ea1a4b2v,a4b2v 2167 e285a7 2167 00002167 a2c0 a2c0 a2c0 a2c0 a2c0 a2c0 a2c0
+351 a2c1 a2c1 a2c1 * 2433 * 8ea1a4b3,a4b3,8ea1a4b3v,a4b3v 2168 e285a8 2168 00002168 a2c1 a2c1 a2c1 a2c1 a2c1 a2c1 a2c1
+352 a2c2 a2c2 a2c2 * 2434 * 8ea1a4b4,a4b4,8ea1a4b4v,a4b4v 2169 e285a9 2169 00002169 a2c2 a2c2 a2c2 a2c2 a2c2 a2c2 a2c2
+353 a2c3 a2c3 a2c3 * 2435 * 8ea1a4b5,a4b5,8ea1a4b5v,a4b5v 3021 e380a1 3021 00003021 a2c3 a2c3 a2c3 a2c3 a2c3 a2c3 a2c3
+354 a2c4 a2c4 a2c4 * 2436 * 8ea1a4b6,a4b6,8ea1a4b6v,a4b6v 3022 e380a2 3022 00003022 a2c4 a2c4 a2c4 a2c4 a2c4 a2c4 a2c4
+355 a2c5 a2c5 a2c5 * 2437 * 8ea1a4b7,a4b7,8ea1a4b7v,a4b7v 3023 e380a3 3023 00003023 a2c5 a2c5 a2c5 a2c5 a2c5 a2c5 a2c5
+356 a2c6 a2c6 a2c6 * 2438 * 8ea1a4b8,a4b8,8ea1a4b8v,a4b8v 3024 e380a4 3024 00003024 a2c6 a2c6 a2c6 a2c6 a2c6 a2c6 a2c6
+357 a2c7 a2c7 a2c7 * 2439 * 8ea1a4b9,a4b9,8ea1a4b9v,a4b9v 3025 e380a5 3025 00003025 a2c7 a2c7 a2c7 a2c7 a2c7 a2c7 a2c7
+358 a2c8 a2c8 a2c8 * 243a * 8ea1a4ba,a4ba,8ea1a4bav,a4bav 3026 e380a6 3026 00003026 a2c8 a2c8 a2c8 a2c8 a2c8 a2c8 a2c8
+359 a2c9 a2c9 a2c9 * 243b * 8ea1a4bb,a4bb,8ea1a4bbv,a4bbv 3027 e380a7 3027 00003027 a2c9 a2c9 a2c9 a2c9 a2c9 a2c9 a2c9
+360 a2ca a2ca a2ca * 243c * 8ea1a4bc,a4bc,8ea1a4bcv,a4bcv 3028 e380a8 3028 00003028 a2ca a2ca a2ca a2ca a2ca a2ca a2ca
+361 a2cb a2cb a2cb * 243d * 8ea1a4bd,a4bd,8ea1a4bdv,a4bdv 3029 e380a9 3029 00003029 a2cb a2cb a2cb a2cb a2cb a2cb a2cb
+362 a2cc a2cc a2cc * 243e * 8ea1a4be,a4be,8ea1a4bev,a4bev * e380b8 3038 00003038 a2cc a2cc a2cc a2cc a2cc a2cc a2cc
+363 a2cd a2cd a2cd * 243f * 8ea1a4bf,a4bf,8ea1a4bfv,a4bfv 5344 e58d84,ee81a3,e380b9 5344,e063,3039 00005344,0000e063,00003039 fac5,a2cd a2cd a2cd a2cd a2cd a2cd fac5,a2cd
+364 a2ce a2ce a2ce * 2440 * 8ea1a4c0,a4c0,8ea1a4c0v,a4c0v * e380ba 303a 0000303a a2ce a2ce a2ce a2ce a2ce a2ce a2ce
+365 a2cf a2cf a2cf * 2441 * 8ea1a4c1,a4c1,8ea1a4c1v,a4c1v ff21 efbca1 ff21 0000ff21 a2cf a2cf a2cf a2cf a2cf a2cf a2cf
+366 a2d0 a2d0 a2d0 * 2442 * 8ea1a4c2,a4c2,8ea1a4c2v,a4c2v ff22 efbca2 ff22 0000ff22 a2d0 a2d0 a2d0 a2d0 a2d0 a2d0 a2d0
+367 a2d1 a2d1 a2d1 * 2443 * 8ea1a4c3,a4c3,8ea1a4c3v,a4c3v ff23 efbca3 ff23 0000ff23 a2d1 a2d1 a2d1 a2d1 a2d1 a2d1 a2d1
+368 a2d2 a2d2 a2d2 * 2444 * 8ea1a4c4,a4c4,8ea1a4c4v,a4c4v ff24 efbca4 ff24 0000ff24 a2d2 a2d2 a2d2 a2d2 a2d2 a2d2 a2d2
+369 a2d3 a2d3 a2d3 * 2445 * 8ea1a4c5,a4c5,8ea1a4c5v,a4c5v ff25 efbca5 ff25 0000ff25 a2d3 a2d3 a2d3 a2d3 a2d3 a2d3 a2d3
+370 a2d4 a2d4 a2d4 * 2446 * 8ea1a4c6,a4c6,8ea1a4c6v,a4c6v ff26 efbca6 ff26 0000ff26 a2d4 a2d4 a2d4 a2d4 a2d4 a2d4 a2d4
+371 a2d5 a2d5 a2d5 * 2447 * 8ea1a4c7,a4c7,8ea1a4c7v,a4c7v ff27 efbca7 ff27 0000ff27 a2d5 a2d5 a2d5 a2d5 a2d5 a2d5 a2d5
+372 a2d6 a2d6 a2d6 * 2448 * 8ea1a4c8,a4c8,8ea1a4c8v,a4c8v ff28 efbca8 ff28 0000ff28 a2d6 a2d6 a2d6 a2d6 a2d6 a2d6 a2d6
+373 a2d7 a2d7 a2d7 * 2449 * 8ea1a4c9,a4c9,8ea1a4c9v,a4c9v ff29 efbca9 ff29 0000ff29 a2d7 a2d7 a2d7 a2d7 a2d7 a2d7 a2d7
+374 a2d8 a2d8 a2d8 * 244a * 8ea1a4ca,a4ca,8ea1a4cav,a4cav ff2a efbcaa ff2a 0000ff2a a2d8 a2d8 a2d8 a2d8 a2d8 a2d8 a2d8
+375 a2d9 a2d9 a2d9 * 244b * 8ea1a4cb,a4cb,8ea1a4cbv,a4cbv ff2b efbcab ff2b 0000ff2b a2d9 a2d9 a2d9 a2d9 a2d9 a2d9 a2d9
+376 a2da a2da a2da * 244c * 8ea1a4cc,a4cc,8ea1a4ccv,a4ccv ff2c efbcac ff2c 0000ff2c a2da a2da a2da a2da a2da a2da a2da
+377 a2db a2db a2db * 244d * 8ea1a4cd,a4cd,8ea1a4cdv,a4cdv ff2d efbcad ff2d 0000ff2d a2db a2db a2db a2db a2db a2db a2db
+378 a2dc a2dc a2dc * 244e * 8ea1a4ce,a4ce,8ea1a4cev,a4cev ff2e efbcae ff2e 0000ff2e a2dc a2dc a2dc a2dc a2dc a2dc a2dc
+379 a2dd a2dd a2dd * 244f * 8ea1a4cf,a4cf,8ea1a4cfv,a4cfv ff2f efbcaf ff2f 0000ff2f a2dd a2dd a2dd a2dd a2dd a2dd a2dd
+380 a2de a2de a2de * 2450 * 8ea1a4d0,a4d0,8ea1a4d0v,a4d0v ff30 efbcb0 ff30 0000ff30 a2de a2de a2de a2de a2de a2de a2de
+381 a2df a2df a2df * 2451 * 8ea1a4d1,a4d1,8ea1a4d1v,a4d1v ff31 efbcb1 ff31 0000ff31 a2df a2df a2df a2df a2df a2df a2df
+382 a2e0 a2e0 a2e0 * 2452 * 8ea1a4d2,a4d2,8ea1a4d2v,a4d2v ff32 efbcb2 ff32 0000ff32 a2e0 a2e0 a2e0 a2e0 a2e0 a2e0 a2e0
+383 a2e1 a2e1 a2e1 * 2453 * 8ea1a4d3,a4d3,8ea1a4d3v,a4d3v ff33 efbcb3 ff33 0000ff33 a2e1 a2e1 a2e1 a2e1 a2e1 a2e1 a2e1
+384 a2e2 a2e2 a2e2 * 2454 * 8ea1a4d4,a4d4,8ea1a4d4v,a4d4v ff34 efbcb4 ff34 0000ff34 a2e2 a2e2 a2e2 a2e2 a2e2 a2e2 a2e2
+385 a2e3 a2e3 a2e3 * 2455 * 8ea1a4d5,a4d5,8ea1a4d5v,a4d5v ff35 efbcb5 ff35 0000ff35 a2e3 a2e3 a2e3 a2e3 a2e3 a2e3 a2e3
+386 a2e4 a2e4 a2e4 * 2456 * 8ea1a4d6,a4d6,8ea1a4d6v,a4d6v ff36 efbcb6 ff36 0000ff36 a2e4 a2e4 a2e4 a2e4 a2e4 a2e4 a2e4
+387 a2e5 a2e5 a2e5 * 2457 * 8ea1a4d7,a4d7,8ea1a4d7v,a4d7v ff37 efbcb7 ff37 0000ff37 a2e5 a2e5 a2e5 a2e5 a2e5 a2e5 a2e5
+388 a2e6 a2e6 a2e6 * 2458 * 8ea1a4d8,a4d8,8ea1a4d8v,a4d8v ff38 efbcb8 ff38 0000ff38 a2e6 a2e6 a2e6 a2e6 a2e6 a2e6 a2e6
+389 a2e7 a2e7 a2e7 * 2459 * 8ea1a4d9,a4d9,8ea1a4d9v,a4d9v ff39 efbcb9 ff39 0000ff39 a2e7 a2e7 a2e7 a2e7 a2e7 a2e7 a2e7
+390 a2e8 a2e8 a2e8 * 245a * 8ea1a4da,a4da,8ea1a4dav,a4dav ff3a efbcba ff3a 0000ff3a a2e8 a2e8 a2e8 a2e8 a2e8 a2e8 a2e8
+391 a2e9 a2e9 a2e9 * 245b * 8ea1a4db,a4db,8ea1a4dbv,a4dbv ff41 efbd81 ff41 0000ff41 a2e9 a2e9 a2e9 a2e9 a2e9 a2e9 a2e9
+392 a2ea a2ea a2ea * 245c * 8ea1a4dc,a4dc,8ea1a4dcv,a4dcv ff42 efbd82 ff42 0000ff42 a2ea a2ea a2ea a2ea a2ea a2ea a2ea
+393 a2eb a2eb a2eb * 245d * 8ea1a4dd,a4dd,8ea1a4ddv,a4ddv ff43 efbd83 ff43 0000ff43 a2eb a2eb a2eb a2eb a2eb a2eb a2eb
+394 a2ec a2ec a2ec * 245e * 8ea1a4de,a4de,8ea1a4dev,a4dev ff44 efbd84 ff44 0000ff44 a2ec a2ec a2ec a2ec a2ec a2ec a2ec
+395 a2ed a2ed a2ed * 245f * 8ea1a4df,a4df,8ea1a4dfv,a4dfv ff45 efbd85 ff45 0000ff45 a2ed a2ed a2ed a2ed a2ed a2ed a2ed
+396 a2ee a2ee a2ee * 2460 * 8ea1a4e0,a4e0,8ea1a4e0v,a4e0v ff46 efbd86 ff46 0000ff46 a2ee a2ee a2ee a2ee a2ee a2ee a2ee
+397 a2ef a2ef a2ef * 2461 * 8ea1a4e1,a4e1,8ea1a4e1v,a4e1v ff47 efbd87 ff47 0000ff47 a2ef a2ef a2ef a2ef a2ef a2ef a2ef
+398 a2f0 a2f0 a2f0 * 2462 * 8ea1a4e2,a4e2,8ea1a4e2v,a4e2v ff48 efbd88 ff48 0000ff48 a2f0 a2f0 a2f0 a2f0 a2f0 a2f0 a2f0
+399 a2f1 a2f1 a2f1 * 2463 * 8ea1a4e3,a4e3,8ea1a4e3v,a4e3v ff49 efbd89 ff49 0000ff49 a2f1 a2f1 a2f1 a2f1 a2f1 a2f1 a2f1
+400 a2f2 a2f2 a2f2 * 2464 * 8ea1a4e4,a4e4,8ea1a4e4v,a4e4v ff4a efbd8a ff4a 0000ff4a a2f2 a2f2 a2f2 a2f2 a2f2 a2f2 a2f2
+401 a2f3 a2f3 a2f3 * 2465 * 8ea1a4e5,a4e5,8ea1a4e5v,a4e5v ff4b efbd8b ff4b 0000ff4b a2f3 a2f3 a2f3 a2f3 a2f3 a2f3 a2f3
+402 a2f4 a2f4 a2f4 * 2466 * 8ea1a4e6,a4e6,8ea1a4e6v,a4e6v ff4c efbd8c ff4c 0000ff4c a2f4 a2f4 a2f4 a2f4 a2f4 a2f4 a2f4
+403 a2f5 a2f5 a2f5 * 2467 * 8ea1a4e7,a4e7,8ea1a4e7v,a4e7v ff4d efbd8d ff4d 0000ff4d a2f5 a2f5 a2f5 a2f5 a2f5 a2f5 a2f5
+404 a2f6 a2f6 a2f6 * 2468 * 8ea1a4e8,a4e8,8ea1a4e8v,a4e8v ff4e efbd8e ff4e 0000ff4e a2f6 a2f6 a2f6 a2f6 a2f6 a2f6 a2f6
+405 a2f7 a2f7 a2f7 * 2469 * 8ea1a4e9,a4e9,8ea1a4e9v,a4e9v ff4f efbd8f ff4f 0000ff4f a2f7 a2f7 a2f7 a2f7 a2f7 a2f7 a2f7
+406 a2f8 a2f8 a2f8 * 246a * 8ea1a4ea,a4ea,8ea1a4eav,a4eav ff50 efbd90 ff50 0000ff50 a2f8 a2f8 a2f8 a2f8 a2f8 a2f8 a2f8
+407 a2f9 a2f9 a2f9 * 246b * 8ea1a4eb,a4eb,8ea1a4ebv,a4ebv ff51 efbd91 ff51 0000ff51 a2f9 a2f9 a2f9 a2f9 a2f9 a2f9 a2f9
+408 a2fa a2fa a2fa * 246c * 8ea1a4ec,a4ec,8ea1a4ecv,a4ecv ff52 efbd92 ff52 0000ff52 a2fa a2fa a2fa a2fa a2fa a2fa a2fa
+409 a2fb a2fb a2fb * 246d * 8ea1a4ed,a4ed,8ea1a4edv,a4edv ff53 efbd93 ff53 0000ff53 a2fb a2fb a2fb a2fb a2fb a2fb a2fb
+410 a2fc a2fc a2fc * 246e * 8ea1a4ee,a4ee,8ea1a4eev,a4eev ff54 efbd94 ff54 0000ff54 a2fc a2fc a2fc a2fc a2fc a2fc a2fc
+411 a2fd a2fd a2fd * 246f * 8ea1a4ef,a4ef,8ea1a4efv,a4efv ff55 efbd95 ff55 0000ff55 a2fd a2fd a2fd a2fd a2fd a2fd a2fd
+412 a2fe a2fe a2fe * 2470 * 8ea1a4f0,a4f0,8ea1a4f0v,a4f0v ff56 efbd96 ff56 0000ff56 a2fe a2fe a2fe a2fe a2fe a2fe a2fe
+413 a340 a340 a340 * 2471 * 8ea1a4f1,a4f1,8ea1a4f1v,a4f1v ff57 efbd97 ff57 0000ff57 a340 a340 a340 a340 a340 a340 a340
+414 a341 a341 a341 * 2472 * 8ea1a4f2,a4f2,8ea1a4f2v,a4f2v ff58 efbd98 ff58 0000ff58 a341 a341 a341 a341 a341 a341 a341
+415 a342 a342 a342 * 2473 * 8ea1a4f3,a4f3,8ea1a4f3v,a4f3v ff59 efbd99 ff59 0000ff59 a342 a342 a342 a342 a342 a342 a342
+416 a343 a343 a343 * 2474 * 8ea1a4f4,a4f4,8ea1a4f4v,a4f4v ff5a efbd9a ff5a 0000ff5a a343 a343 a343 a343 a343 a343 a343
+417 a344 a344 a344 * 2475 * 8ea1a4f5,a4f5,8ea1a4f5v,a4f5v 0391 ce91 0391 00000391 a344 a344 a344 a344 a344 a344 a344
+418 a345 a345 a345 * 2476 * 8ea1a4f6,a4f6,8ea1a4f6v,a4f6v 0392 ce92 0392 00000392 a345 a345 a345 a345 a345 a345 a345
+419 a346 a346 a346 * 2477 * 8ea1a4f7,a4f7,8ea1a4f7v,a4f7v 0393 ce93 0393 00000393 a346 a346 a346 a346 a346 a346 a346
+420 a347 a347 a347 * 2478 * 8ea1a4f8,a4f8,8ea1a4f8v,a4f8v 0394 ce94 0394 00000394 a347 a347 a347 a347 a347 a347 a347
+421 a348 a348 a348 * 2479 * 8ea1a4f9,a4f9,8ea1a4f9v,a4f9v 0395 ce95 0395 00000395 a348 a348 a348 a348 a348 a348 a348
+422 a349 a349 a349 * 247a * 8ea1a4fa,a4fa,8ea1a4fav,a4fav 0396 ce96 0396 00000396 a349 a349 a349 a349 a349 a349 a349
+423 a34a a34a a34a * 247b * 8ea1a4fb,a4fb,8ea1a4fbv,a4fbv 0397 ce97 0397 00000397 a34a a34a a34a a34a a34a a34a a34a
+424 a34b a34b a34b * 247c * 8ea1a4fc,a4fc,8ea1a4fcv,a4fcv 0398 ce98 0398 00000398 a34b a34b a34b a34b a34b a34b a34b
+425 a34c a34c a34c * 247d * 8ea1a4fd,a4fd,8ea1a4fdv,a4fdv 0399 ce99 0399 00000399 a34c a34c a34c a34c a34c a34c a34c
+426 a34d a34d a34d * 247e * 8ea1a4fe,a4fe,8ea1a4fev,a4fev 039a ce9a 039a 0000039a a34d a34d a34d a34d a34d a34d a34d
+427 a34e a34e a34e * 2521 * 8ea1a5a1,a5a1,8ea1a5a1v,a5a1v 039b ce9b 039b 0000039b a34e a34e a34e a34e a34e a34e a34e
+428 a34f a34f a34f * 2522 * 8ea1a5a2,a5a2,8ea1a5a2v,a5a2v 039c ce9c 039c 0000039c a34f a34f a34f a34f a34f a34f a34f
+429 a350 a350 a350 * 2523 * 8ea1a5a3,a5a3,8ea1a5a3v,a5a3v 039d ce9d 039d 0000039d a350 a350 a350 a350 a350 a350 a350
+430 a351 a351 a351 * 2524 * 8ea1a5a4,a5a4,8ea1a5a4v,a5a4v 039e ce9e 039e 0000039e a351 a351 a351 a351 a351 a351 a351
+431 a352 a352 a352 * 2525 * 8ea1a5a5,a5a5,8ea1a5a5v,a5a5v 039f ce9f 039f 0000039f a352 a352 a352 a352 a352 a352 a352
+432 a353 a353 a353 * 2526 * 8ea1a5a6,a5a6,8ea1a5a6v,a5a6v 03a0 cea0 03a0 000003a0 a353 a353 a353 a353 a353 a353 a353
+433 a354 a354 a354 * 2527 * 8ea1a5a7,a5a7,8ea1a5a7v,a5a7v 03a1 cea1 03a1 000003a1 a354 a354 a354 a354 a354 a354 a354
+434 a355 a355 a355 * 2528 * 8ea1a5a8,a5a8,8ea1a5a8v,a5a8v 03a3 cea3 03a3 000003a3 a355 a355 a355 a355 a355 a355 a355
+435 a356 a356 a356 * 2529 * 8ea1a5a9,a5a9,8ea1a5a9v,a5a9v 03a4 cea4 03a4 000003a4 a356 a356 a356 a356 a356 a356 a356
+436 a357 a357 a357 * 252a * 8ea1a5aa,a5aa,8ea1a5aav,a5aav 03a5 cea5 03a5 000003a5 a357 a357 a357 a357 a357 a357 a357
+437 a358 a358 a358 * 252b * 8ea1a5ab,a5ab,8ea1a5abv,a5abv 03a6 cea6 03a6 000003a6 a358 a358 a358 a358 a358 a358 a358
+438 a359 a359 a359 * 252c * 8ea1a5ac,a5ac,8ea1a5acv,a5acv 03a7 cea7 03a7 000003a7 a359 a359 a359 a359 a359 a359 a359
+439 a35a a35a a35a * 252d * 8ea1a5ad,a5ad,8ea1a5adv,a5adv 03a8 cea8 03a8 000003a8 a35a a35a a35a a35a a35a a35a a35a
+440 a35b a35b a35b * 252e * 8ea1a5ae,a5ae,8ea1a5aev,a5aev 03a9 cea9 03a9 000003a9 a35b a35b a35b a35b a35b a35b a35b
+441 a35c a35c a35c * 252f * 8ea1a5af,a5af,8ea1a5afv,a5afv 03b1 ceb1 03b1 000003b1 a35c a35c a35c a35c a35c a35c a35c
+442 a35d a35d a35d * 2530 * 8ea1a5b0,a5b0,8ea1a5b0v,a5b0v 03b2 ceb2 03b2 000003b2 a35d a35d a35d a35d a35d a35d a35d
+443 a35e a35e a35e * 2531 * 8ea1a5b1,a5b1,8ea1a5b1v,a5b1v 03b3 ceb3 03b3 000003b3 a35e a35e a35e a35e a35e a35e a35e
+444 a35f a35f a35f * 2532 * 8ea1a5b2,a5b2,8ea1a5b2v,a5b2v 03b4 ceb4 03b4 000003b4 a35f a35f a35f a35f a35f a35f a35f
+445 a360 a360 a360 * 2533 * 8ea1a5b3,a5b3,8ea1a5b3v,a5b3v 03b5 ceb5 03b5 000003b5 a360 a360 a360 a360 a360 a360 a360
+446 a361 a361 a361 * 2534 * 8ea1a5b4,a5b4,8ea1a5b4v,a5b4v 03b6 ceb6 03b6 000003b6 a361 a361 a361 a361 a361 a361 a361
+447 a362 a362 a362 * 2535 * 8ea1a5b5,a5b5,8ea1a5b5v,a5b5v 03b7 ceb7 03b7 000003b7 a362 a362 a362 a362 a362 a362 a362
+448 a363 a363 a363 * 2536 * 8ea1a5b6,a5b6,8ea1a5b6v,a5b6v 03b8 ceb8 03b8 000003b8 a363 a363 a363 a363 a363 a363 a363
+449 a364 a364 a364 * 2537 * 8ea1a5b7,a5b7,8ea1a5b7v,a5b7v 03b9 ceb9 03b9 000003b9 a364 a364 a364 a364 a364 a364 a364
+450 a365 a365 a365 * 2538 * 8ea1a5b8,a5b8,8ea1a5b8v,a5b8v 03ba ceba 03ba 000003ba a365 a365 a365 a365 a365 a365 a365
+451 a366 a366 a366 * 2539 * 8ea1a5b9,a5b9,8ea1a5b9v,a5b9v 03bb cebb 03bb 000003bb a366 a366 a366 a366 a366 a366 a366
+452 a367 a367 a367 * 253a * 8ea1a5ba,a5ba,8ea1a5bav,a5bav 03bc cebc 03bc 000003bc a367 a367 a367 a367 a367 a367 a367
+453 a368 a368 a368 * 253b * 8ea1a5bb,a5bb,8ea1a5bbv,a5bbv 03bd cebd 03bd 000003bd a368 a368 a368 a368 a368 a368 a368
+454 a369 a369 a369 * 253c * 8ea1a5bc,a5bc,8ea1a5bcv,a5bcv 03be cebe 03be 000003be a369 a369 a369 a369 a369 a369 a369
+455 a36a a36a a36a * 253d * 8ea1a5bd,a5bd,8ea1a5bdv,a5bdv 03bf cebf 03bf 000003bf a36a a36a a36a a36a a36a a36a a36a
+456 a36b a36b a36b * 253e * 8ea1a5be,a5be,8ea1a5bev,a5bev 03c0 cf80 03c0 000003c0 a36b a36b a36b a36b a36b a36b a36b
+457 a36c a36c a36c * 253f * 8ea1a5bf,a5bf,8ea1a5bfv,a5bfv 03c1 cf81 03c1 000003c1 a36c a36c a36c a36c a36c a36c a36c
+458 a36d a36d a36d * 2540 * 8ea1a5c0,a5c0,8ea1a5c0v,a5c0v 03c3 cf83 03c3 000003c3 a36d a36d a36d a36d a36d a36d a36d
+459 a36e a36e a36e * 2541 * 8ea1a5c1,a5c1,8ea1a5c1v,a5c1v 03c4 cf84 03c4 000003c4 a36e a36e a36e a36e a36e a36e a36e
+460 a36f a36f a36f * 2542 * 8ea1a5c2,a5c2,8ea1a5c2v,a5c2v 03c5 cf85 03c5 000003c5 a36f a36f a36f a36f a36f a36f a36f
+461 a370 a370 a370 * 2543 * 8ea1a5c3,a5c3,8ea1a5c3v,a5c3v 03c6 cf86 03c6 000003c6 a370 a370 a370 a370 a370 a370 a370
+462 a371 a371 a371 * 2544 * 8ea1a5c4,a5c4,8ea1a5c4v,a5c4v 03c7 cf87 03c7 000003c7 a371 a371 a371 a371 a371 a371 a371
+463 a372 a372 a372 * 2545 * 8ea1a5c5,a5c5,8ea1a5c5v,a5c5v 03c8 cf88 03c8 000003c8 a372 a372 a372 a372 a372 a372 a372
+464 a373 a373 a373 * 2546 * 8ea1a5c6,a5c6,8ea1a5c6v,a5c6v 03c9 cf89 03c9 000003c9 a373 a373 a373 a373 a373 a373 a373
+465 a374 a374 a374 * 2547 * 8ea1a5c7,a5c7,8ea1a5c7v,a5c7v 3105 e38485 3105 00003105 a374 a374 a374 a374 a374 a374 a374
+466 a375 a375 a375 * 2548 * 8ea1a5c8,a5c8,8ea1a5c8v,a5c8v 3106 e38486 3106 00003106 a375 a375 a375 a375 a375 a375 a375
+467 a376 a376 a376 * 2549 * 8ea1a5c9,a5c9,8ea1a5c9v,a5c9v 3107 e38487 3107 00003107 a376 a376 a376 a376 a376 a376 a376
+468 a377 a377 a377 * 254a * 8ea1a5ca,a5ca,8ea1a5cav,a5cav 3108 e38488 3108 00003108 a377 a377 a377 a377 a377 a377 a377
+469 a378 a378 a378 * 254b * 8ea1a5cb,a5cb,8ea1a5cbv,a5cbv 3109 e38489 3109 00003109 a378 a378 a378 a378 a378 a378 a378
+470 a379 a379 a379 * 254c * 8ea1a5cc,a5cc,8ea1a5ccv,a5ccv 310a e3848a 310a 0000310a a379 a379 a379 a379 a379 a379 a379
+471 a37a a37a a37a * 254d * 8ea1a5cd,a5cd,8ea1a5cdv,a5cdv 310b e3848b 310b 0000310b a37a a37a a37a a37a a37a a37a a37a
+472 a37b a37b a37b * 254e * 8ea1a5ce,a5ce,8ea1a5cev,a5cev 310c e3848c 310c 0000310c a37b a37b a37b a37b a37b a37b a37b
+473 a37c a37c a37c * 254f * 8ea1a5cf,a5cf,8ea1a5cfv,a5cfv 310d e3848d 310d 0000310d a37c a37c a37c a37c a37c a37c a37c
+474 a37d a37d a37d * 2550 * 8ea1a5d0,a5d0,8ea1a5d0v,a5d0v 310e e3848e 310e 0000310e a37d a37d a37d a37d a37d a37d a37d
+475 a37e a37e a37e * 2551 * 8ea1a5d1,a5d1,8ea1a5d1v,a5d1v 310f e3848f 310f 0000310f a37e a37e a37e a37e a37e a37e a37e
+476 a3a1 a3a1 a3a1 * 2552 * 8ea1a5d2,a5d2,8ea1a5d2v,a5d2v 3110 e38490 3110 00003110 a3a1 a3a1 a3a1 a3a1 a3a1 a3a1 a3a1
+477 a3a2 a3a2 a3a2 * 2553 * 8ea1a5d3,a5d3,8ea1a5d3v,a5d3v 3111 e38491 3111 00003111 a3a2 a3a2 a3a2 a3a2 a3a2 a3a2 a3a2
+478 a3a3 a3a3 a3a3 * 2554 * 8ea1a5d4,a5d4,8ea1a5d4v,a5d4v 3112 e38492 3112 00003112 a3a3 a3a3 a3a3 a3a3 a3a3 a3a3 a3a3
+479 a3a4 a3a4 a3a4 * 2555 * 8ea1a5d5,a5d5,8ea1a5d5v,a5d5v 3113 e38493 3113 00003113 a3a4 a3a4 a3a4 a3a4 a3a4 a3a4 a3a4
+480 a3a5 a3a5 a3a5 * 2556 * 8ea1a5d6,a5d6,8ea1a5d6v,a5d6v 3114 e38494 3114 00003114 a3a5 a3a5 a3a5 a3a5 a3a5 a3a5 a3a5
+481 a3a6 a3a6 a3a6 * 2557 * 8ea1a5d7,a5d7,8ea1a5d7v,a5d7v 3115 e38495 3115 00003115 a3a6 a3a6 a3a6 a3a6 a3a6 a3a6 a3a6
+482 a3a7 a3a7 a3a7 * 2558 * 8ea1a5d8,a5d8,8ea1a5d8v,a5d8v 3116 e38496 3116 00003116 a3a7 a3a7 a3a7 a3a7 a3a7 a3a7 a3a7
+483 a3a8 a3a8 a3a8 * 2559 * 8ea1a5d9,a5d9,8ea1a5d9v,a5d9v 3117 e38497 3117 00003117 a3a8 a3a8 a3a8 a3a8 a3a8 a3a8 a3a8
+484 a3a9 a3a9 a3a9 * 255a * 8ea1a5da,a5da,8ea1a5dav,a5dav 3118 e38498 3118 00003118 a3a9 a3a9 a3a9 a3a9 a3a9 a3a9 a3a9
+485 a3aa a3aa a3aa * 255b * 8ea1a5db,a5db,8ea1a5dbv,a5dbv 3119 e38499 3119 00003119 a3aa a3aa a3aa a3aa a3aa a3aa a3aa
+486 a3ab a3ab a3ab * 255c * 8ea1a5dc,a5dc,8ea1a5dcv,a5dcv 311a e3849a 311a 0000311a a3ab a3ab a3ab a3ab a3ab a3ab a3ab
+487 a3ac a3ac a3ac * 255d * 8ea1a5dd,a5dd,8ea1a5ddv,a5ddv 311b e3849b 311b 0000311b a3ac a3ac a3ac a3ac a3ac a3ac a3ac
+488 a3ad a3ad a3ad * 255e * 8ea1a5de,a5de,8ea1a5dev,a5dev 311c e3849c 311c 0000311c a3ad a3ad a3ad a3ad a3ad a3ad a3ad
+489 a3ae a3ae a3ae * 255f * 8ea1a5df,a5df,8ea1a5dfv,a5dfv 311d e3849d 311d 0000311d a3ae a3ae a3ae a3ae a3ae a3ae a3ae
+490 a3af a3af a3af * 2560 * 8ea1a5e0,a5e0,8ea1a5e0v,a5e0v 311e e3849e 311e 0000311e a3af a3af a3af a3af a3af a3af a3af
+491 a3b0 a3b0 a3b0 * 2561 * 8ea1a5e1,a5e1,8ea1a5e1v,a5e1v 311f e3849f 311f 0000311f a3b0 a3b0 a3b0 a3b0 a3b0 a3b0 a3b0
+492 a3b1 a3b1 a3b1 * 2562 * 8ea1a5e2,a5e2,8ea1a5e2v,a5e2v 3120 e384a0 3120 00003120 a3b1 a3b1 a3b1 a3b1 a3b1 a3b1 a3b1
+493 a3b2 a3b2 a3b2 * 2563 * 8ea1a5e3,a5e3,8ea1a5e3v,a5e3v 3121 e384a1 3121 00003121 a3b2 a3b2 a3b2 a3b2 a3b2 a3b2 a3b2
+494 a3b3 a3b3 a3b3 * 2564 * 8ea1a5e4,a5e4,8ea1a5e4v,a5e4v 3122 e384a2 3122 00003122 a3b3 a3b3 a3b3 a3b3 a3b3 a3b3 a3b3
+495 a3b4 a3b4 a3b4 * 2565 * 8ea1a5e5,a5e5,8ea1a5e5v,a5e5v 3123 e384a3 3123 00003123 a3b4 a3b4 a3b4 a3b4 a3b4 a3b4 a3b4
+496 a3b5 a3b5 a3b5 * 2566 * 8ea1a5e6,a5e6,8ea1a5e6v,a5e6v 3124 e384a4 3124 00003124 a3b5 a3b5 a3b5 a3b5 a3b5 a3b5 a3b5
+497 a3b6 a3b6 a3b6 * 2567 * 8ea1a5e7,a5e7,8ea1a5e7v,a5e7v 3125 e384a5 3125 00003125 a3b6 a3b6 a3b6 a3b6 a3b6 a3b6 a3b6
+498 a3b7 a3b7 a3b7 * 2568 * 8ea1a5e8,a5e8,8ea1a5e8v,a5e8v 3126 e384a6 3126 00003126 a3b7 a3b7 a3b7 a3b7 a3b7 a3b7 a3b7
+499 a3b8 a3b8 a3b8 * 2569 * 8ea1a5e9,a5e9,8ea1a5e9v,a5e9v 3127 e384a7 3127 00003127 a3b8 a3b8 a3b8 a3b8 a3b8 a3b8 a3b8
+500 a3b9 a3b9 a3b9 * 256a * 8ea1a5ea,a5ea,8ea1a5eav,a5eav 3128 e384a8 3128 00003128 a3b9 a3b9 a3b9 a3b9 a3b9 a3b9 a3b9
+501 a3ba a3ba a3ba * 256b * 8ea1a5eb,a5eb,8ea1a5ebv,a5ebv 3129 e384a9 3129 00003129 a3ba a3ba a3ba a3ba a3ba a3ba a3ba
+502 a3bb a3bb a3bb * 256c * 8ea1a5ec,a5ec,8ea1a5ecv,a5ecv 02d9 cb99 02d9 000002d9 a3bb a3bb a3bb a3bb a3bb a3bb a3bb
+503 a3bd a3bd a3bd * 256e * 8ea1a5ee,a5ee,8ea1a5eev,a5eev 02ca cb8a 02ca 000002ca a3bd a3bd a3bd a3bd a3bd a3bd a3bd
+504 a3be a3be a3be * 256f * 8ea1a5ef,a5ef,8ea1a5efv,a5efv 02c7 cb87,cc8c 02c7,030c 000002c7,0000030c a3be a3be a3be a3be a3be a3be a3be
+505 a3bf a3bf a3bf * 2570 * 8ea1a5f0,a5f0,8ea1a5f0v,a5f0v 02cb cb8b 02cb 000002cb a3bf a3bf a3bf a3bf a3bf a3bf a3bf
+506 * * c6a1 * 2621 * 8ea1a6a1,a6a1,8ea1a6a1v,a6a1v 2460 e291a0,ef9ab1 2460,f6b1 00002460,0000f6b1 c6a1 * * * * * c6a1
+507 * * c6a2 * 2622 * 8ea1a6a2,a6a2,8ea1a6a2v,a6a2v 2461 e291a1,ef9ab2 2461,f6b2 00002461,0000f6b2 c6a2 * * * * * c6a2
+508 * * c6a3 * 2623 * 8ea1a6a3,a6a3,8ea1a6a3v,a6a3v 2462 e291a2,ef9ab3 2462,f6b3 00002462,0000f6b3 c6a3 * * * * * c6a3
+509 * * c6a4 * 2624 * 8ea1a6a4,a6a4,8ea1a6a4v,a6a4v 2463 e291a3,ef9ab4 2463,f6b4 00002463,0000f6b4 c6a4 * * * * * c6a4
+510 * * c6a5 * 2625 * 8ea1a6a5,a6a5,8ea1a6a5v,a6a5v 2464 e291a4,ef9ab5 2464,f6b5 00002464,0000f6b5 c6a5 * * * * * c6a5
+511 * * c6a6 * 2626 * 8ea1a6a6,a6a6,8ea1a6a6v,a6a6v 2465 e291a5,ef9ab6 2465,f6b6 00002465,0000f6b6 c6a6 * * * * * c6a6
+512 * * c6a7 * 2627 * 8ea1a6a7,a6a7,8ea1a6a7v,a6a7v 2466 e291a6,ef9ab7 2466,f6b7 00002466,0000f6b7 c6a7 * * * * * c6a7
+513 * * c6a8 * 2628 * 8ea1a6a8,a6a8,8ea1a6a8v,a6a8v 2467 e291a7,ef9ab8 2467,f6b8 00002467,0000f6b8 c6a8 * * * * * c6a8
+514 * * c6a9 * 2629 * 8ea1a6a9,a6a9,8ea1a6a9v,a6a9v 2468 e291a8,ef9ab9 2468,f6b9 00002468,0000f6b9 c6a9 * * * * * c6a9
+515 * * c6aa * 262a * 8ea1a6aa,a6aa,8ea1a6aav,a6aav 2469 e291a9,ef9aba 2469,f6ba 00002469,0000f6ba c6aa * * * * * c6aa
+516 * * c6ab * 262b * 8ea1a6ab,a6ab,8ea1a6abv,a6abv 2474 e291b4,ef9abb 2474,f6bb 00002474,0000f6bb c6ab * * * * * c6ab
+517 * * c6ac * 262c * 8ea1a6ac,a6ac,8ea1a6acv,a6acv 2475 e291b5,ef9abc 2475,f6bc 00002475,0000f6bc c6ac * * * * * c6ac
+518 * * c6ad * 262d * 8ea1a6ad,a6ad,8ea1a6adv,a6adv 2476 e291b6,ef9abd 2476,f6bd 00002476,0000f6bd c6ad * * * * * c6ad
+519 * * c6ae * 262e * 8ea1a6ae,a6ae,8ea1a6aev,a6aev 2477 e291b7,ef9abe 2477,f6be 00002477,0000f6be c6ae * * * * * c6ae
+520 * * c6af * 262f * 8ea1a6af,a6af,8ea1a6afv,a6afv 2478 e291b8,ef9abf 2478,f6bf 00002478,0000f6bf c6af * * * * * c6af
+521 * * c6b0 * 2630 * 8ea1a6b0,a6b0,8ea1a6b0v,a6b0v 2479 e291b9,ef9b80 2479,f6c0 00002479,0000f6c0 c6b0 * * * * * c6b0
+522 * * c6b1 * 2631 * 8ea1a6b1,a6b1,8ea1a6b1v,a6b1v 247a e291ba,ef9b81 247a,f6c1 0000247a,0000f6c1 c6b1 * * * * * c6b1
+523 * * c6b2 * 2632 * 8ea1a6b2,a6b2,8ea1a6b2v,a6b2v 247b e291bb,ef9b82 247b,f6c2 0000247b,0000f6c2 c6b2 * * * * * c6b2
+524 * * c6b3 * 2633 * 8ea1a6b3,a6b3,8ea1a6b3v,a6b3v 247c e291bc,ef9b83 247c,f6c3 0000247c,0000f6c3 c6b3 * * * * * c6b3
+525 * * c6b4 * 2634 * 8ea1a6b4,a6b4,8ea1a6b4v,a6b4v 247d e291bd,ef9b84 247d,f6c4 0000247d,0000f6c4 c6b4 * * * * * c6b4
+526 * * c6b5 * 2635 * 8ea1a6b5,a6b5,8ea1a6b5v,a6b5v 2170 e285b0,ef9b85 2170,f6c5 00002170,0000f6c5 c6b5 * * * * * c6b5
+527 * * c6b6 * 2636 * 8ea1a6b6,a6b6,8ea1a6b6v,a6b6v 2171 e285b1,ef9b86 2171,f6c6 00002171,0000f6c6 c6b6 * * * * * c6b6
+528 * * c6b7 * 2637 * 8ea1a6b7,a6b7,8ea1a6b7v,a6b7v 2172 e285b2,ef9b87 2172,f6c7 00002172,0000f6c7 c6b7 * * * * * c6b7
+529 * * c6b8 * 2638 * 8ea1a6b8,a6b8,8ea1a6b8v,a6b8v 2173 e285b3,ef9b88 2173,f6c8 00002173,0000f6c8 c6b8 * * * * * c6b8
+530 * * c6b9 * 2639 * 8ea1a6b9,a6b9,8ea1a6b9v,a6b9v 2174 e285b4,ef9b89 2174,f6c9 00002174,0000f6c9 c6b9 * * * * * c6b9
+531 * * c6ba * 263a * 8ea1a6ba,a6ba,8ea1a6bav,a6bav 2175 e285b5,ef9b8a 2175,f6ca 00002175,0000f6ca c6ba * * * * * c6ba
+532 * * c6bb * 263b * 8ea1a6bb,a6bb,8ea1a6bbv,a6bbv 2176 e285b6,ef9b8b 2176,f6cb 00002176,0000f6cb c6bb * * * * * c6bb
+533 * * c6bc * 263c * 8ea1a6bc,a6bc,8ea1a6bcv,a6bcv 2177 e285b7,ef9b8c 2177,f6cc 00002177,0000f6cc c6bc * * * * * c6bc
+534 * * c6bd * 263d * 8ea1a6bd,a6bd,8ea1a6bdv,a6bdv 2178 e285b8,ef9b8d 2178,f6cd 00002178,0000f6cd c6bd * * * * * c6bd
+535 * * c6be * 263e * 8ea1a6be,a6be,8ea1a6bev,a6bev 2179 e285b9,ef9b8e 2179,f6ce 00002179,0000f6ce c6be * * * * * c6be
+536 * * * * 2722 * 8ea1a7a2,a7a2,8ea1a7a2v,a7a2v 4e28 e4b8a8,e2bc81 4e28,2f01 00004e28,00002f01 * * * * * * *
+537 * * c6bf * 2723 * 8ea1a7a3,a7a3,8ea1a7a3v,a7a3v 4e36 e4b8b6,e2bc82,ef9b8f 4e36,2f02,f6cf 00004e36,00002f02,0000f6cf c6bf * * * * * c6bf
+538 * * c6c0 * 2724 * 8ea1a7a4,a7a4,8ea1a7a4v,a7a4v 4e3f e4b8bf,e2bc83,ef9b90 4e3f,2f03,f6d0 00004e3f,00002f03,0000f6d0 c6c0 * * * * * c6c0
+539 * * c6c1 * 2726 * 8ea1a7a6,a7a6,8ea1a7a6v,a7a6v 4e85 e2bc85,e4ba85,ef9b91 2f05,4e85,f6d1 00002f05,00004e85,0000f6d1 c6c1 * * * * * c6c1
+540 * * c6c2 * 2728 * 8ea1a7a8,a7a8,8ea1a7a8v,a7a8v 4ea0 e2bc87,e4baa0,ef9b92 2f07,4ea0,f6d2 00002f07,00004ea0,0000f6d2 c6c2 * * * * * c6c2
+541 * * c6c3 * 272d * 8ea1a7ad,a7ad,8ea1a7adv,a7adv 5182 e58682,e2bc8c,ef9b93 5182,2f0c,f6d3 00005182,00002f0c,0000f6d3 c6c3 * * * * * c6c3
+542 * * c6c4 * 272e * 8ea1a7ae,a7ae,8ea1a7aev,a7aev 5196 e58696,e2bc8d,ef9b94 5196,2f0d,f6d4 00005196,00002f0d,0000f6d4 c6c4 * * * * * c6c4
+543 * * c6c5 * 272f * 8ea1a7af,a7af,8ea1a7afv,a7afv 51ab e586ab,e2bc8e,ef9b95 51ab,2f0e,f6d5 000051ab,00002f0e,0000f6d5 c6c5 * * * * * c6c5
+544 * * c6c6 * 2734 * 8ea1a7b4,a7b4,8ea1a7b4v,a7b4v 52f9 e2bc93,e58bb9,ef9b96 2f13,52f9,f6d6 00002f13,000052f9,0000f6d6 c6c6 * * * * * c6c6
+545 * * c6c7 * 2737 * 8ea1a7b7,a7b7,8ea1a7b7v,a7b7v 5338 e2bc96,e58cb8,ef9b97 2f16,5338,f6d7 00002f16,00005338,0000f6d7 c6c7 * * * * * c6c7
+546 * * c6c8 * 273a * 8ea1a7ba,a7ba,8ea1a7bav,a7bav 5369 e2bc99,e58da9,ef9b98 2f19,5369,f6d8 00002f19,00005369,0000f6d8 c6c8 * * * * * c6c8
+547 * * c6c9 * 273c * 8ea1a7bc,a7bc,8ea1a7bcv,a7bcv 53b6 e2bc9b,e58eb6,ef9b99 2f1b,53b6,f6d9 00002f1b,000053b6,0000f6d9 c6c9 * * * * * c6c9
+548 * * c6ca * 2742 * 8ea1a7c2,a7c2,8ea1a7c2v,a7c2v 5902,590a e2bca2,e5a48a,ef9b9a 2f22,590a,f6da 00002f22,0000590a,0000f6da c6ca * * * * * c6ca
+549 * * c6cb * 2747 * 8ea1a7c7,a7c7,8ea1a7c7v,a7c7v 5b80 e2bca7,e5ae80,ef9b9b 2f27,5b80,f6db 00002f27,00005b80,0000f6db c6cb * * * * * c6cb
+550 * * c6cc * 274e * 8ea1a7ce,a7ce,8ea1a7cev,a7cev 5ddb e2bcae,e5b79b,ef9b9c 2f2e,5ddb,f6dc 00002f2e,00005ddb,0000f6dc c6cc * 91b0 * * * c6cc
+551 * * c6cd * 2753 * 8ea1a7d3,a7d3,8ea1a7d3v,a7d3v 2f33,5e7a e5b9ba,e2bcb3,ef9b9d 5e7a,2f33,f6dd 00005e7a,00002f33,0000f6dd c6cd * * * * * c6cd
+552 * * c6ce * 2754 * 8ea1a7d4,a7d4,8ea1a7d4v,a7d4v 5e7f e5b9bf,e2bcb4,ef9b9e 5e7f,2f34,f6de 00005e7f,00002f34,0000f6de c6ce * 9159 * * * c6ce
+553 * * c6cf * 2755 * 8ea1a7d5,a7d5,8ea1a7d5v,a7d5v 5ef4 e5bbb4,e2bcb5 5ef4,2f35 00005ef4,00002f35 c6cf * * * * * *
+554 * * c6d0 * 2759 * 8ea1a7d9,a7d9,8ea1a7d9v,a7d9v 5f50 e5bd90,e2bcb9,ef9ba0 5f50,2f39,f6e0 00005f50,00002f39,0000f6e0 c6d0 * * * * * c6d0
+555 * * c6d1 * 275a * 8ea1a7da,a7da,8ea1a7dav,a7dav 5f61 e5bda1,e2bcba,ef9ba1 5f61,2f3a,f6e1 00005f61,00002f3a,0000f6e1 c6d1 * * * * * c6d1
+556 * * c6d2 * 2761 * 8ea1a7e1,a7e1,8ea1a7e1v,a7e1v 6534 e2bd81,e694b4,ef9ba2 2f41,6534,f6e2 00002f41,00006534,0000f6e2 c6d2 * * * * * c6d2
+557 * * c6d3 * 2766 * 8ea1a7e6,a7e6,8ea1a7e6v,a7e6v 65e0 e2bd86,e697a0 2f46,65e0 00002f46,000065e0 c6d3 * * * * * *
+558 * * c6d4 * 2829 * 8ea1a8a9,a8a9,8ea1a8a9v,a8a9v 7592 e79692,ef9ba4,e2bda7 7592,f6e4,2f67 00007592,0000f6e4,00002f67 c6d4 * * * * * c6d4
+559 * * c6d5 * 282a * 8ea1a8aa,a8aa,8ea1a8aav,a8aav 7676 e799b6,e2bda8 7676,2f68 00007676,00002f68 c6d5 * * * * * *
+560 * * c6d6 * 2863 * 8ea1a8e3,a8e3,8ea1a8e3v,a8e3v 8fb5 e2bea1,e8beb5,ef9ba6 2fa1,8fb5,f6e6 00002fa1,00008fb5,0000f6e6 c6d6 * 90c4 * * * c6d6
+561 * * c6d7 * 286c * 8ea1a8ec,a8ec,8ea1a8ecv,a8ecv 96b6 e2beaa,e99ab6 2faa,96b6 00002faa,000096b6 c6d7 * * * * * *
+562 * a3c0 * * 4221 * 8ea1c2a1,c2a1,8ea1c2a1v,c2a1v 2400 e29080 2400 00002400 * * * * * * *
+563 * a3c1 * * 4222 * 8ea1c2a2,c2a2,8ea1c2a2v,c2a2v 2401 e29081 2401 00002401 * * * * * * *
+564 * a3c2 * * 4223 * 8ea1c2a3,c2a3,8ea1c2a3v,c2a3v 2402 e29082 2402 00002402 * * * * * * *
+565 * a3c3 * * 4224 * 8ea1c2a4,c2a4,8ea1c2a4v,c2a4v 2403 e29083 2403 00002403 * * * * * * *
+566 * a3c4 * * 4225 * 8ea1c2a5,c2a5,8ea1c2a5v,c2a5v 2404 e29084 2404 00002404 * * * * * * *
+567 * a3c5 * * 4226 * 8ea1c2a6,c2a6,8ea1c2a6v,c2a6v 2405 e29085 2405 00002405 * * * * * * *
+568 * a3c6 * * 4227 * 8ea1c2a7,c2a7,8ea1c2a7v,c2a7v 2406 e29086 2406 00002406 * * * * * * *
+569 * a3c7 * * 4228 * 8ea1c2a8,c2a8,8ea1c2a8v,c2a8v 2407 e29087 2407 00002407 * * * * * * *
+570 * a3c8 * * 4229 * 8ea1c2a9,c2a9,8ea1c2a9v,c2a9v 2408 e29088 2408 00002408 * * * * * * *
+571 * a3c9 * * 422a * 8ea1c2aa,c2aa,8ea1c2aav,c2aav 2409 e29089 2409 00002409 * * * * * * *
+572 * a3ca * * 422b * 8ea1c2ab,c2ab,8ea1c2abv,c2abv 240a e2908a 240a 0000240a * * * * * * *
+573 * a3cb * * 422c * 8ea1c2ac,c2ac,8ea1c2acv,c2acv 240b e2908b 240b 0000240b * * * * * * *
+574 * a3cc * * 422d * 8ea1c2ad,c2ad,8ea1c2adv,c2adv 240c e2908c 240c 0000240c * * * * * * *
+575 * a3cd * * 422e * 8ea1c2ae,c2ae,8ea1c2aev,c2aev 240d e2908d 240d 0000240d * * * * * * *
+576 * a3ce * * 422f * 8ea1c2af,c2af,8ea1c2afv,c2afv 240e e2908e 240e 0000240e * * * * * * *
+577 * a3cf * * 4230 * 8ea1c2b0,c2b0,8ea1c2b0v,c2b0v 240f e2908f 240f 0000240f * * * * * * *
+578 * a3d0 * * 4231 * 8ea1c2b1,c2b1,8ea1c2b1v,c2b1v 2410 e29090 2410 00002410 * * * * * * *
+579 * a3d1 * * 4232 * 8ea1c2b2,c2b2,8ea1c2b2v,c2b2v 2411 e29091 2411 00002411 * * * * * * *
+580 * a3d2 * * 4233 * 8ea1c2b3,c2b3,8ea1c2b3v,c2b3v 2412 e29092 2412 00002412 * * * * * * *
+581 * a3d3 * * 4234 * 8ea1c2b4,c2b4,8ea1c2b4v,c2b4v 2413 e29093 2413 00002413 * * * * * * *
+582 * a3d4 * * 4235 * 8ea1c2b5,c2b5,8ea1c2b5v,c2b5v 2414 e29094 2414 00002414 * * * * * * *
+583 * a3d5 * * 4236 * 8ea1c2b6,c2b6,8ea1c2b6v,c2b6v 2415 e29095 2415 00002415 * * * * * * *
+584 * a3d6 * * 4237 * 8ea1c2b7,c2b7,8ea1c2b7v,c2b7v 2416 e29096 2416 00002416 * * * * * * *
+585 * a3d7 * * 4238 * 8ea1c2b8,c2b8,8ea1c2b8v,c2b8v 2417 e29097 2417 00002417 * * * * * * *
+586 * a3d8 * * 4239 * 8ea1c2b9,c2b9,8ea1c2b9v,c2b9v 2418 e29098 2418 00002418 * * * * * * *
+587 * a3d9 * * 423a * 8ea1c2ba,c2ba,8ea1c2bav,c2bav 2419 e29099 2419 00002419 * * * * * * *
+588 * a3da * * 423b * 8ea1c2bb,c2bb,8ea1c2bbv,c2bbv 241a e2909a 241a 0000241a * * * * * * *
+589 * a3db * * 423c * 8ea1c2bc,c2bc,8ea1c2bcv,c2bcv 241b e2909b 241b 0000241b * * * * * * *
+590 * a3dc * * 423d * 8ea1c2bd,c2bd,8ea1c2bdv,c2bdv 241c e2909c 241c 0000241c * * * * * * *
+591 * a3dd * * 423e * 8ea1c2be,c2be,8ea1c2bev,c2bev 241d e2909d 241d 0000241d * * * * * * *
+592 * a3de * * 423f * 8ea1c2bf,c2bf,8ea1c2bfv,c2bfv 241e e2909e 241e 0000241e * * * * * * *
+593 * a3df * * 4240 * 8ea1c2c0,c2c0,8ea1c2c0v,c2c0v 241f e2909f 241f 0000241f * * * * * * *
+594 * a3e0 * * 4241 * 8ea1c2c1,c2c1,8ea1c2c1v,c2c1v 2421 e290a1 2421 00002421 * * * * * * *
+595 a440 a440 a440 * 2721,4421 * 8ea1a7a1,8ea1c4a1,a7a1,c4a1,8ea1a7a1v,8ea1c4a1v,a7a1v,c4a1v 4e00 e2bc80,e4b880 2f00,4e00 00002f00,00004e00 a440 a440 a440 a440 a440 a440 a440
+596 a441 a441 a441 * 2725,4422 * 8ea1a7a5,8ea1c4a2,a7a5,c4a2,8ea1a7a5v,8ea1c4a2v,a7a5v,c4a2v 4e59 e2bc84,e4b999 2f04,4e59 00002f04,00004e59 a441 a441 a441 a441 a441 a441 a441
+597 a442 a442 a442 * 4423 * 8ea1c4a3,c4a3,8ea1c4a3v,c4a3v 4e01 e4b881 4e01 00004e01 a442 a442 a442 a442 a442 a442 a442
+598 a443 a443 a443 * 4424 * 8ea1c4a4,c4a4,8ea1c4a4v,c4a4v 4e03 e4b883 4e03 00004e03 a443 a443 a443 a443 a443 a443 a443
+599 a444 a444 a444 * 4425 * 8ea1c4a5,c4a5,8ea1c4a5v,c4a5v 4e43 e4b983 4e43 00004e43 a444 a444 a444 a444 a444 a444 a444
+600 a445 a445 a445 * 4426 * 8ea1c4a6,c4a6,8ea1c4a6v,c4a6v 4e5d e4b99d 4e5d 00004e5d a445 a445 a445 a445 a445 a445 a445
+601 a446 a446 a446 * 4427 * 8ea1c4a7,c4a7,8ea1c4a7v,c4a7v 4e86 e4ba86 4e86 00004e86 a446 a446 a446 a446 a446 a446 a446
+602 a447 a447 a447 * 2727,4428 * 8ea1a7a7,8ea1c4a8,a7a7,c4a8,8ea1a7a7v,8ea1c4a8v,a7a7v,c4a8v 4e8c e2bc86,e4ba8c 2f06,4e8c 00002f06,00004e8c a447 a447 a447 a447 a447 a447 a447
+603 a448 a448 a448 * 2729,4429 * 8ea1a7a9,8ea1c4a9,a7a9,c4a9,8ea1a7a9v,8ea1c4a9v,a7a9v,c4a9v 4eba e4baba,e2bc88 4eba,2f08 00004eba,00002f08 a448 a448 a448 a448 a448 a448 a448
+604 a449 a449 a449 * 272a,442a * 8ea1a7aa,8ea1c4aa,a7aa,c4aa,8ea1a7aav,8ea1c4aav,a7aav,c4aav 513f e584bf,e2bc89 513f,2f09 0000513f,00002f09 a449 a449 a449 a449 a449 a449 a449
+605 a44a a44a a44a * 272b,442b * 8ea1a7ab,8ea1c4ab,a7ab,c4ab,8ea1a7abv,8ea1c4abv,a7abv,c4abv 5165 e585a5,e2bc8a 5165,2f0a 00005165,00002f0a a44a a44a a44a a44a a44a a44a a44a
+606 a44b a44b a44b * 272c,442c * 8ea1a7ac,8ea1c4ac,a7ac,c4ac,8ea1a7acv,8ea1c4acv,a7acv,c4acv 516b e585ab,e2bc8b 516b,2f0b 0000516b,00002f0b a44b a44b a44b a44b a44b a44b a44b
+607 a44c a44c a44c * 2730,442d * 8ea1a7b0,8ea1c4ad,a7b0,c4ad,8ea1a7b0v,8ea1c4adv,a7b0v,c4adv 51e0 e2bc8f,e587a0 2f0f,51e0 00002f0f,000051e0 a44c a44c a44c a44c a44c a44c a44c
+608 a44d a44d a44d * 2732,442e * 8ea1a7b2,8ea1c4ae,a7b2,c4ae,8ea1a7b2v,8ea1c4aev,a7b2v,c4aev 5200 e2bc91,e58880 2f11,5200 00002f11,00005200 a44d a44d a44d a44d a44d a44d a44d
+609 a44e a44e a44e * 442f * 8ea1c4af,c4af,8ea1c4afv,c4afv 5201 e58881 5201 00005201 a44e a44e a44e a44e a44e a44e a44e
+610 a44f a44f a44f * 2733,4430 * 8ea1a7b3,8ea1c4b0,a7b3,c4b0,8ea1a7b3v,8ea1c4b0v,a7b3v,c4b0v 529b e2bc92,e58a9b 2f12,529b 00002f12,0000529b a44f a44f a44f a44f a44f a44f a44f
+611 a450 a450 a450 * 2735,4431 * 8ea1a7b5,8ea1c4b1,a7b5,c4b1,8ea1a7b5v,8ea1c4b1v,a7b5v,c4b1v 5315 e2bc94,e58c95 2f14,5315 00002f14,00005315 a450 a450 a450 a450 a450 a450 a450
+612 a451 a451 a451 * 2738,4432 * 8ea1a7b8,8ea1c4b2,a7b8,c4b2,8ea1a7b8v,8ea1c4b2v,a7b8v,c4b2v 5341 e58d81,e2bc97 5341,2f17 00005341,00002f17 a451 a451 a451 a451 a451 a451 a451
+613 a452 a452 a452 * 2739,4433 * 8ea1a7b9,8ea1c4b3,a7b9,c4b3,8ea1a7b9v,8ea1c4b3v,a7b9v,c4b3v 535c e58d9c,e2bc98 535c,2f18 0000535c,00002f18 a452 a452 a452 a452 a452 a452 a452
+614 a453 a453 a453 * 273d,4434 * 8ea1a7bd,8ea1c4b4,a7bd,c4b4,8ea1a7bdv,8ea1c4b4v,a7bdv,c4b4v 53c8 e2bc9c,e58f88 2f1c,53c8 00002f1c,000053c8 a453 a453 a453 a453 a453 a453 a453
+615 a454 a454 a454 * 4435 * 8ea1c4b5,c4b5,8ea1c4b5v,c4b5v 4e09 e4b889 4e09 00004e09 a454 a454 a454 a454 a454 a454 a454
+616 a455 a455 a455 * 4436 * 8ea1c4b6,c4b6,8ea1c4b6v,c4b6v 4e0b e4b88b 4e0b 00004e0b a455 a455 a455 a455 a455 a455 a455
+617 a456 a456 a456 * 4437 * 8ea1c4b7,c4b7,8ea1c4b7v,c4b7v 4e08 e4b888 4e08 00004e08 a456 a456 a456 a456 a456 a456 a456
+618 a457 a457 a457 * 4438 * 8ea1c4b8,c4b8,8ea1c4b8v,c4b8v 4e0a e4b88a 4e0a 00004e0a a457 a457 a457 a457 a457 a457 a457
+619 a458 a458 a458 * 4439 * 8ea1c4b9,c4b9,8ea1c4b9v,c4b9v 4e2b e4b8ab 4e2b 00004e2b a458 a458 a458 a458 a458 a458 a458
+620 a459 a459 a459 * 443a * 8ea1c4ba,c4ba,8ea1c4bav,c4bav 4e38 e4b8b8 4e38 00004e38 a459 a459 a459 a459 a459 a459 a459
+621 a45a a45a a45a * 443b * 8ea1c4bb,c4bb,8ea1c4bbv,c4bbv 51e1 e587a1 51e1 000051e1 a45a a45a a45a a45a a45a a45a a45a
+622 a45b a45b a45b * 443c * 8ea1c4bc,c4bc,8ea1c4bcv,c4bcv 4e45 e4b985 4e45 00004e45 a45b a45b a45b a45b a45b a45b a45b
+623 a45c a45c a45c * 443d * 8ea1c4bd,c4bd,8ea1c4bdv,c4bdv 4e48 e4b988 4e48 00004e48 a45c a45c a45c a45c a45c a45c a45c
+624 a45d a45d a45d * 443e * 8ea1c4be,c4be,8ea1c4bev,c4bev 4e5f e4b99f 4e5f 00004e5f a45d a45d a45d a45d a45d a45d a45d
+625 a45e a45e a45e * 443f * 8ea1c4bf,c4bf,8ea1c4bfv,c4bfv 4e5e e4b99e 4e5e 00004e5e a45e a45e a45e a45e a45e a45e a45e
+626 a45f a45f a45f * 4440 * 8ea1c4c0,c4c0,8ea1c4c0v,c4c0v 4e8e e4ba8e 4e8e 00004e8e a45f a45f a45f a45f a45f a45f a45f
+627 a460 a460 a460 * 4441 * 8ea1c4c1,c4c1,8ea1c4c1v,c4c1v 4ea1 e4baa1 4ea1 00004ea1 a460 a460 a460 a460 a460 a460 a460
+628 a461,c94a a461,c94a a461,c94a * 4442 * 8ea1c4c2,c4c2,8ea1c4c2v,c4c2v 5140,fa0c e58580,efa88c 5140,fa0c 00005140,0000fa0c c94a,a461 a461,c94a a461,c94a a461,c94a a461,c94a a461,c94a c94a,a461
+629 a462 a462 a462 * 4443 * 8ea1c4c3,c4c3,8ea1c4c3v,c4c3v 5203 e58883 5203 00005203 a462 a462 a462 a462 a462 a462 a462
+630 a463 a463 a463 * 4444 * 8ea1c4c4,c4c4,8ea1c4c4v,c4c4v 52fa e58bba 52fa 000052fa a463 a463 a463 a463 a463 a463 a463
+631 a464 a464 a464 * 4445 * 8ea1c4c5,c4c5,8ea1c4c5v,c4c5v 5343 e58d83 5343 00005343 a464 a464 a464 a464 a464 a464 a464
+632 a465 a465 a465 * 4446 * 8ea1c4c6,c4c6,8ea1c4c6v,c4c6v 53c9 e58f89 53c9 000053c9 a465 a465 a465 a465 a465 a465 a465
+633 a466 a466 a466 * 273e,4447 * 8ea1a7be,8ea1c4c7,a7be,c4c7,8ea1a7bev,8ea1c4c7v,a7bev,c4c7v 53e3 e2bc9d,e58fa3 2f1d,53e3 00002f1d,000053e3 a466 a466 a466 a466 a466 a466 a466
+634 a467 a467 a467 * 2740,4448 * 8ea1a7c0,8ea1c4c8,a7c0,c4c8,8ea1a7c0v,8ea1c4c8v,a7c0v,c4c8v 571f e59c9f,e2bc9f 571f,2f1f 0000571f,00002f1f a467 a467 a467 a467 a467 a467 a467
+635 a468 a468 a468 * 2741,4449 * 8ea1a7c1,8ea1c4c9,a7c1,c4c9,8ea1a7c1v,8ea1c4c9v,a7c1v,c4c9v 58eb e5a3ab,e2bca0 58eb,2f20 000058eb,00002f20 a468 a468 a468 a468 a468 a468 a468
+636 a469 a469 a469 * 2743,444a * 8ea1a7c3,8ea1c4ca,a7c3,c4ca,8ea1a7c3v,8ea1c4cav,a7c3v,c4cav 5915 e5a495,e2bca3 5915,2f23 00005915,00002f23 a469 a469 a469 a469 a469 a469 a469
+637 a46a a46a a46a * 2744,444b * 8ea1a7c4,8ea1c4cb,a7c4,c4cb,8ea1a7c4v,8ea1c4cbv,a7c4v,c4cbv 5927 e5a4a7,e2bca4 5927,2f24 00005927,00002f24 a46a a46a a46a a46a a46a a46a a46a
+638 a46b a46b a46b * 2745,444c * 8ea1a7c5,8ea1c4cc,a7c5,c4cc,8ea1a7c5v,8ea1c4ccv,a7c5v,c4ccv 5973 e5a5b3,e2bca5 5973,2f25 00005973,00002f25 a46b a46b a46b a46b a46b a46b a46b
+639 a46c a46c a46c * 2746,444d * 8ea1a7c6,8ea1c4cd,a7c6,c4cd,8ea1a7c6v,8ea1c4cdv,a7c6v,c4cdv 5b50 e2bca6,e5ad90 2f26,5b50 00002f26,00005b50 a46c a46c a46c a46c a46c a46c a46c
+640 a46d a46d a46d * 444e * 8ea1c4ce,c4ce,8ea1c4cev,c4cev 5b51 e5ad91 5b51 00005b51 a46d a46d a46d a46d a46d a46d a46d
+641 a46e a46e a46e * 444f * 8ea1c4cf,c4cf,8ea1c4cfv,c4cfv 5b53 e5ad93 5b53 00005b53 a46e a46e a46e a46e a46e a46e a46e
+642 a46f a46f a46f * 2748,4450 * 8ea1a7c8,8ea1c4d0,a7c8,c4d0,8ea1a7c8v,8ea1c4d0v,a7c8v,c4d0v 5bf8 e5afb8,e2bca8 5bf8,2f28 00005bf8,00002f28 a46f a46f a46f a46f a46f a46f a46f
+643 a470 a470 a470 * 2749,4451 * 8ea1a7c9,8ea1c4d1,a7c9,c4d1,8ea1a7c9v,8ea1c4d1v,a7c9v,c4d1v 5c0f e5b08f,e2bca9 5c0f,2f29 00005c0f,00002f29 a470 a470 a470 a470 a470 a470 a470
+644 a471 a471 a471 * 274a,4452 * 8ea1a7ca,8ea1c4d2,a7ca,c4d2,8ea1a7cav,8ea1c4d2v,a7cav,c4d2v 5c22 e5b0a2,e2bcaa 5c22,2f2a 00005c22,00002f2a a471 a471 a471 a471 a471 a471 a471
+645 a472 a472 a472 * 274b,4453 * 8ea1a7cb,8ea1c4d3,a7cb,c4d3,8ea1a7cbv,8ea1c4d3v,a7cbv,c4d3v 5c38 e5b0b8,e2bcab 5c38,2f2b 00005c38,00002f2b a472 a472 a472 a472 a472 a472 a472
+646 a473 a473 a473 * 274d,4454 * 8ea1a7cd,8ea1c4d4,a7cd,c4d4,8ea1a7cdv,8ea1c4d4v,a7cdv,c4d4v 5c71 e2bcad,e5b1b1 2f2d,5c71 00002f2d,00005c71 a473 a473 a473 a473 a473 a473 a473
+647 a474 a474 a474 * 4455 * 8ea1c4d5,c4d5,8ea1c4d5v,c4d5v 5ddd e5b79d 5ddd 00005ddd a474 a474 a474 a474 a474 a474 a474
+648 a475 a475 a475 * 274f,4456 * 8ea1a7cf,8ea1c4d6,a7cf,c4d6,8ea1a7cfv,8ea1c4d6v,a7cfv,c4d6v 5de5 e5b7a5,e2bcaf 5de5,2f2f 00005de5,00002f2f a475 a475 a475 a475 a475 a475 a475
+649 a476 a476 a476 * 2750,4457 * 8ea1a7d0,8ea1c4d7,a7d0,c4d7,8ea1a7d0v,8ea1c4d7v,a7d0v,c4d7v 5df1 e2bcb0,e5b7b1 2f30,5df1 00002f30,00005df1 a476 a476 a476 a476 a476 a476 a476
+650 a477 a477 a477 * 4458 * 8ea1c4d8,c4d8,8ea1c4d8v,c4d8v 5df2 e5b7b2 5df2 00005df2 a477 a477 a477 a477 a477 a477 a477
+651 a478 a478 a478 * 4459 * 8ea1c4d9,c4d9,8ea1c4d9v,c4d9v 5df3 e5b7b3 5df3 00005df3 a478 a478 a478 a478 a478 a478 a478
+652 a479 a479 a479 * 2751,445a * 8ea1a7d1,8ea1c4da,a7d1,c4da,8ea1a7d1v,8ea1c4dav,a7d1v,c4dav 5dfe e5b7be,e2bcb1 5dfe,2f31 00005dfe,00002f31 a479 a479 a479 a479 a479 a479 a479
+653 a47a a47a a47a * 2752,445b * 8ea1a7d2,8ea1c4db,a7d2,c4db,8ea1a7d2v,8ea1c4dbv,a7d2v,c4dbv 5e72 e5b9b2,e2bcb2 5e72,2f32 00005e72,00002f32 a47a a47a a47a a47a a47a a47a a47a
+654 a47b a47b a47b * 2756,445c * 8ea1a7d6,8ea1c4dc,a7d6,c4dc,8ea1a7d6v,8ea1c4dcv,a7d6v,c4dcv 5efe e5bbbe,e2bcb6 5efe,2f36 00005efe,00002f36 a47b a47b a47b a47b a47b a47b a47b
+655 a47c a47c a47c * 2757,445d * 8ea1a7d7,8ea1c4dd,a7d7,c4dd,8ea1a7d7v,8ea1c4ddv,a7d7v,c4ddv 5f0b e5bc8b,e2bcb7 5f0b,2f37 00005f0b,00002f37 a47c a47c a47c a47c a47c a47c a47c
+656 a47d a47d a47d * 2758,445e * 8ea1a7d8,8ea1c4de,a7d8,c4de,8ea1a7d8v,8ea1c4dev,a7d8v,c4dev 5f13 e5bc93,e2bcb8 5f13,2f38 00005f13,00002f38 a47d a47d a47d a47d a47d a47d a47d
+657 a47e a47e a47e * 445f * 8ea1c4df,c4df,8ea1c4dfv,c4dfv 624d e6898d 624d 0000624d a47e a47e a47e a47e a47e a47e a47e
+658 a4a1 a4a1 a4a1 * 4460 * 8ea1c4e0,c4e0,8ea1c4e0v,c4e0v 4e11 e4b891 4e11 00004e11 a4a1 a4a1 a4a1 a4a1 a4a1 a4a1 a4a1
+659 a4a2 a4a2 a4a2 * 4461 * 8ea1c4e1,c4e1,8ea1c4e1v,c4e1v 4e10 e4b890 4e10 00004e10 a4a2 a4a2 a4a2 a4a2 a4a2 a4a2 a4a2
+660 a4a3 a4a3 a4a3 * 4462 * 8ea1c4e2,c4e2,8ea1c4e2v,c4e2v 4e0d e4b88d 4e0d 00004e0d a4a3 a4a3 a4a3 a4a3 a4a3 a4a3 a4a3
+661 a4a4 a4a4 a4a4 * 4463 * 8ea1c4e3,c4e3,8ea1c4e3v,c4e3v 4e2d e4b8ad 4e2d 00004e2d a4a4 a4a4 a4a4 a4a4 a4a4 a4a4 a4a4
+662 a4a5 a4a5 a4a5 * 4464 * 8ea1c4e4,c4e4,8ea1c4e4v,c4e4v 4e30 e4b8b0 4e30 00004e30 a4a5 a4a5 a4a5 a4a5 a4a5 a4a5 a4a5
+663 a4a6 a4a6 a4a6 * 4465 * 8ea1c4e5,c4e5,8ea1c4e5v,c4e5v 4e39 e4b8b9 4e39 00004e39 a4a6 a4a6 a4a6 a4a6 a4a6 a4a6 a4a6
+664 a4a7 a4a7 a4a7 * 4466 * 8ea1c4e6,c4e6,8ea1c4e6v,c4e6v 4e4b e4b98b 4e4b 00004e4b a4a7 a4a7 a4a7 a4a7 a4a7 a4a7 a4a7
+665 a4a8 a4a8 a4a8 * 4467 * 8ea1c4e7,c4e7,8ea1c4e7v,c4e7v 5c39 e5b0b9 5c39 00005c39 a4a8 a4a8 a4a8 a4a8 a4a8 a4a8 a4a8
+666 a4a9 a4a9 a4a9 * 4468 * 8ea1c4e8,c4e8,8ea1c4e8v,c4e8v 4e88 e4ba88 4e88 00004e88 a4a9 a4a9 a4a9 a4a9 a4a9 a4a9 a4a9
+667 a4aa a4aa a4aa * 4469 * 8ea1c4e9,c4e9,8ea1c4e9v,c4e9v 4e91 e4ba91 4e91 00004e91 a4aa a4aa a4aa a4aa a4aa a4aa a4aa
+668 a4ab a4ab a4ab * 446a * 8ea1c4ea,c4ea,8ea1c4eav,c4eav 4e95 e4ba95 4e95 00004e95 a4ab a4ab a4ab a4ab a4ab a4ab a4ab
+669 a4ac a4ac a4ac * 446b * 8ea1c4eb,c4eb,8ea1c4ebv,c4ebv 4e92 e4ba92 4e92 00004e92 a4ac a4ac a4ac a4ac a4ac a4ac a4ac
+670 a4ad a4ad a4ad * 446c * 8ea1c4ec,c4ec,8ea1c4ecv,c4ecv 4e94 e4ba94 4e94 00004e94 a4ad a4ad a4ad a4ad a4ad a4ad a4ad
+671 a4ae a4ae a4ae * 446d * 8ea1c4ed,c4ed,8ea1c4edv,c4edv 4ea2 e4baa2 4ea2 00004ea2 a4ae a4ae a4ae a4ae a4ae a4ae a4ae
+672 a4af a4af a4af * 446e * 8ea1c4ee,c4ee,8ea1c4eev,c4eev 4ec1 e4bb81 4ec1 00004ec1 a4af a4af a4af a4af a4af a4af a4af
+673 a4b0 a4b0 a4b0 * 446f * 8ea1c4ef,c4ef,8ea1c4efv,c4efv 4ec0 e4bb80 4ec0 00004ec0 a4b0 a4b0 a4b0 a4b0 a4b0 a4b0 a4b0
+674 a4b1 a4b1 a4b1 * 4470 * 8ea1c4f0,c4f0,8ea1c4f0v,c4f0v 4ec3 e4bb83 4ec3 00004ec3 a4b1 a4b1 a4b1 a4b1 a4b1 a4b1 a4b1
+675 a4b2 a4b2 a4b2 * 4471 * 8ea1c4f1,c4f1,8ea1c4f1v,c4f1v 4ec6 e4bb86 4ec6 00004ec6 a4b2 a4b2 a4b2 a4b2 a4b2 a4b2 a4b2
+676 a4b3 a4b3 a4b3 * 4472 * 8ea1c4f2,c4f2,8ea1c4f2v,c4f2v 4ec7 e4bb87 4ec7 00004ec7 a4b3 a4b3 a4b3 a4b3 a4b3 a4b3 a4b3
+677 a4b4 a4b4 a4b4 * 4473 * 8ea1c4f3,c4f3,8ea1c4f3v,c4f3v 4ecd e4bb8d 4ecd 00004ecd a4b4 a4b4 a4b4 a4b4 a4b4 a4b4 a4b4
+678 a4b5 a4b5 a4b5 * 4474 * 8ea1c4f4,c4f4,8ea1c4f4v,c4f4v 4eca e4bb8a 4eca 00004eca a4b5 a4b5 a4b5 a4b5 a4b5 a4b5 a4b5
+679 a4b6 a4b6 a4b6 * 4475 * 8ea1c4f5,c4f5,8ea1c4f5v,c4f5v 4ecb e4bb8b 4ecb 00004ecb a4b6 a4b6 a4b6 a4b6 a4b6 a4b6 a4b6
+680 a4b7 a4b7 a4b7 * 4476 * 8ea1c4f6,c4f6,8ea1c4f6v,c4f6v 4ec4 e4bb84 4ec4 00004ec4 a4b7 a4b7 a4b7 a4b7 a4b7 a4b7 a4b7
+681 a4b8 a4b8 a4b8 * 4477 * 8ea1c4f7,c4f7,8ea1c4f7v,c4f7v 5143 e58583 5143 00005143 a4b8 a4b8 a4b8 a4b8 a4b8 a4b8 a4b8
+682 a4b9 a4b9 a4b9 * 4478 * 8ea1c4f8,c4f8,8ea1c4f8v,c4f8v 5141 e58581 5141 00005141 a4b9 a4b9 a4b9 a4b9 a4b9 a4b9 a4b9
+683 a4ba a4ba a4ba * 4479 * 8ea1c4f9,c4f9,8ea1c4f9v,c4f9v 5167 e585a7 5167 00005167 a4ba a4ba a4ba a4ba a4ba a4ba a4ba
+684 a4bb a4bb a4bb * 447a * 8ea1c4fa,c4fa,8ea1c4fav,c4fav 516d e585ad 516d 0000516d a4bb a4bb a4bb a4bb a4bb a4bb a4bb
+685 a4bc a4bc a4bc * 447b * 8ea1c4fb,c4fb,8ea1c4fbv,c4fbv 516e e585ae 516e 0000516e a4bc a4bc a4bc a4bc a4bc a4bc a4bc
+686 a4bd a4bd a4bd * 447c * 8ea1c4fc,c4fc,8ea1c4fcv,c4fcv 516c e585ac 516c 0000516c a4bd a4bd a4bd a4bd a4bd a4bd a4bd
+687 a4be a4be a4be * 447d * 8ea1c4fd,c4fd,8ea1c4fdv,c4fdv 5197 e58697 5197 00005197 a4be a4be a4be a4be a4be a4be a4be
+688 a4bf a4bf a4bf * 447e * 8ea1c4fe,c4fe,8ea1c4fev,c4fev 51f6 e587b6 51f6 000051f6 a4bf a4bf a4bf a4bf a4bf a4bf a4bf
+689 a4c0 a4c0 a4c0 * 4521 * 8ea1c5a1,c5a1,8ea1c5a1v,c5a1v 5206 e58886 5206 00005206 a4c0 a4c0 a4c0 a4c0 a4c0 a4c0 a4c0
+690 a4c1 a4c1 a4c1 * 4522 * 8ea1c5a2,c5a2,8ea1c5a2v,c5a2v 5207 e58887 5207 00005207 a4c1 a4c1 a4c1 a4c1 a4c1 a4c1 a4c1
+691 a4c2 a4c2 a4c2 * 4523 * 8ea1c5a3,c5a3,8ea1c5a3v,c5a3v 5208 e58888 5208 00005208 a4c2 a4c2 a4c2 a4c2 a4c2 a4c2 a4c2
+692 a4c3 a4c3 a4c3 * 4524 * 8ea1c5a4,c5a4,8ea1c5a4v,c5a4v 52fb e58bbb 52fb 000052fb a4c3 a4c3 a4c3 a4c3 a4c3 a4c3 a4c3
+693 a4c4 a4c4 a4c4 * 4525 * 8ea1c5a5,c5a5,8ea1c5a5v,c5a5v 52fe e58bbe 52fe 000052fe a4c4 a4c4 a4c4 a4c4 a4c4 a4c4 a4c4
+694 a4c5 a4c5 a4c5 * 4526 * 8ea1c5a6,c5a6,8ea1c5a6v,c5a6v 52ff e58bbf 52ff 000052ff a4c5 a4c5 a4c5 a4c5 a4c5 a4c5 a4c5
+695 a4c6 a4c6 a4c6 * 4527 * 8ea1c5a7,c5a7,8ea1c5a7v,c5a7v 5316 e58c96 5316 00005316 a4c6 a4c6 a4c6 a4c6 a4c6 a4c6 a4c6
+696 a4c7 a4c7 a4c7 * 4528 * 8ea1c5a8,c5a8,8ea1c5a8v,c5a8v 5339 e58cb9 5339 00005339 a4c7 a4c7 a4c7 a4c7 a4c7 a4c7 a4c7
+697 a4c8 a4c8 a4c8 * 4529 * 8ea1c5a9,c5a9,8ea1c5a9v,c5a9v 5348 e58d88 5348 00005348 a4c8 a4c8 a4c8 a4c8 a4c8 a4c8 a4c8
+698 a4c9 a4c9 a4c9 * 452a * 8ea1c5aa,c5aa,8ea1c5aav,c5aav 5347 e58d87 5347 00005347 a4c9 a4c9 a4c9 a4c9 a4c9 a4c9 a4c9
+699 a4ca a4ca a4ca * 452b * 8ea1c5ab,c5ab,8ea1c5abv,c5abv 5345 e58d85 5345 00005345 a4ca a4ca a4ca a4ca a4ca a4ca a4ca
+700 a4cb a4cb a4cb * 452c * 8ea1c5ac,c5ac,8ea1c5acv,c5acv 535e e58d9e 535e 0000535e a4cb a4cb a4cb a4cb a4cb a4cb a4cb
+701 a4cc a4cc a4cc * 452d * 8ea1c5ad,c5ad,8ea1c5adv,c5adv 5384 e58e84 5384 00005384 a4cc a4cc a4cc a4cc a4cc a4cc a4cc
+702 a4cd a4cd a4cd * 452e * 8ea1c5ae,c5ae,8ea1c5aev,c5aev 53cb e58f8b 53cb 000053cb a4cd a4cd a4cd a4cd a4cd a4cd a4cd
+703 a4ce a4ce a4ce * 452f * 8ea1c5af,c5af,8ea1c5afv,c5afv 53ca e58f8a 53ca 000053ca a4ce a4ce a4ce a4ce a4ce a4ce a4ce
+704 a4cf a4cf a4cf * 4530 * 8ea1c5b0,c5b0,8ea1c5b0v,c5b0v 53cd e58f8d 53cd 000053cd a4cf a4cf a4cf a4cf a4cf a4cf a4cf
+705 a4d0 a4d0 a4d0 * 4531 * 8ea1c5b1,c5b1,8ea1c5b1v,c5b1v 58ec e5a3ac 58ec 000058ec a4d0 a4d0 a4d0 a4d0 a4d0 a4d0 a4d0
+706 a4d1 a4d1 a4d1 * 4532 * 8ea1c5b2,c5b2,8ea1c5b2v,c5b2v 5929 e5a4a9 5929 00005929 a4d1 a4d1 a4d1 a4d1 a4d1 a4d1 a4d1
+707 a4d2 a4d2 a4d2 * 4533 * 8ea1c5b3,c5b3,8ea1c5b3v,c5b3v 592b e5a4ab 592b 0000592b a4d2 a4d2 a4d2 a4d2 a4d2 a4d2 a4d2
+708 a4d3 a4d3 a4d3 * 4534 * 8ea1c5b4,c5b4,8ea1c5b4v,c5b4v 592a e5a4aa 592a 0000592a a4d3 a4d3 a4d3 a4d3 a4d3 a4d3 a4d3
+709 a4d4 a4d4 a4d4 * 4535 * 8ea1c5b5,c5b5,8ea1c5b5v,c5b5v 592d e5a4ad 592d 0000592d a4d4 a4d4 a4d4 a4d4 a4d4 a4d4 a4d4
+710 a4d5 a4d5 a4d5 * 4536 * 8ea1c5b6,c5b6,8ea1c5b6v,c5b6v 5b54 e5ad94 5b54 00005b54 a4d5 a4d5 a4d5 a4d5 a4d5 a4d5 a4d5
+711 a4d6 a4d6 a4d6 * 4537 * 8ea1c5b7,c5b7,8ea1c5b7v,c5b7v 5c11 e5b091 5c11 00005c11 a4d6 a4d6 a4d6 a4d6 a4d6 a4d6 a4d6
+712 a4d7 a4d7 a4d7 * 4538 * 8ea1c5b8,c5b8,8ea1c5b8v,c5b8v 5c24 e5b0a4 5c24 00005c24 a4d7 a4d7 a4d7 a4d7 a4d7 a4d7 a4d7
+713 a4d8 a4d8 a4d8 * 4539 * 8ea1c5b9,c5b9,8ea1c5b9v,c5b9v 5c3a e5b0ba 5c3a 00005c3a a4d8 a4d8 a4d8 a4d8 a4d8 a4d8 a4d8
+714 a4d9 a4d9 a4d9 * 453a * 8ea1c5ba,c5ba,8ea1c5bav,c5bav 5c6f e5b1af 5c6f 00005c6f a4d9 a4d9 a4d9 a4d9 a4d9 a4d9 a4d9
+715 a4da a4da a4da * 453b * 8ea1c5bb,c5bb,8ea1c5bbv,c5bbv 5df4 e5b7b4 5df4 00005df4 a4da a4da a4da a4da a4da a4da a4da
+716 a4db a4db a4db * 453c * 8ea1c5bc,c5bc,8ea1c5bcv,c5bcv 5e7b e5b9bb 5e7b 00005e7b a4db a4db a4db a4db a4db a4db a4db
+717 a4dc a4dc a4dc * 453d * 8ea1c5bd,c5bd,8ea1c5bdv,c5bdv 5eff e5bbbf 5eff 00005eff a4dc a4dc a4dc a4dc a4dc a4dc a4dc
+718 a4dd a4dd a4dd * 453e * 8ea1c5be,c5be,8ea1c5bev,c5bev 5f14 e5bc94 5f14 00005f14 a4dd a4dd a4dd a4dd a4dd a4dd a4dd
+719 a4de a4de a4de * 453f * 8ea1c5bf,c5bf,8ea1c5bfv,c5bfv 5f15 e5bc95 5f15 00005f15 a4de a4de a4de a4de a4de a4de a4de
+720 a4df a4df a4df * 275c,4540 * 8ea1a7dc,8ea1c5c0,a7dc,c5c0,8ea1a7dcv,8ea1c5c0v,a7dcv,c5c0v 5fc3 e5bf83,e2bcbc 5fc3,2f3c 00005fc3,00002f3c a4df a4df a4df a4df a4df a4df a4df
+721 a4e0 a4e0 a4e0 * 275d,4541 * 8ea1a7dd,8ea1c5c1,a7dd,c5c1,8ea1a7ddv,8ea1c5c1v,a7ddv,c5c1v 6208 e68888,e2bcbd 6208,2f3d 00006208,00002f3d a4e0 a4e0 a4e0 a4e0 a4e0 a4e0 a4e0
+722 a4e1 a4e1 a4e1 * 275e,4542 * 8ea1a7de,8ea1c5c2,a7de,c5c2,8ea1a7dev,8ea1c5c2v,a7dev,c5c2v 6236 e688b6,e2bcbe 6236,2f3e 00006236,00002f3e a4e1 a4e1 a4e1 a4e1 a4e1 a4e1 a4e1
+723 a4e2 a4e2 a4e2 * 275f,4543 * 8ea1a7df,8ea1c5c3,a7df,c5c3,8ea1a7dfv,8ea1c5c3v,a7dfv,c5c3v 624b e6898b,e2bcbf 624b,2f3f 0000624b,00002f3f a4e2 a4e2 a4e2 a4e2 a4e2 a4e2 a4e2
+724 a4e3 a4e3 a4e3 * 4544 * 8ea1c5c4,c5c4,8ea1c5c4v,c5c4v 624e e6898e 624e 0000624e a4e3 a4e3 a4e3 a4e3 a4e3 a4e3 a4e3
+725 a4e4 a4e4 a4e4 * 2760,4545 * 8ea1a7e0,8ea1c5c5,a7e0,c5c5,8ea1a7e0v,8ea1c5c5v,a7e0v,c5c5v 652f e2bd80,e694af 2f40,652f 00002f40,0000652f a4e4 a4e4 a4e4 a4e4 a4e4 a4e4 a4e4
+726 a4e5 a4e5 a4e5 * 2762,4546 * 8ea1a7e2,8ea1c5c6,a7e2,c5c6,8ea1a7e2v,8ea1c5c6v,a7e2v,c5c6v 6587 e69687,e2bd82 6587,2f42 00006587,00002f42 a4e5 a4e5 a4e5 a4e5 a4e5 a4e5 a4e5
+727 a4e6 a4e6 a4e6 * 2763,4547 * 8ea1a7e3,8ea1c5c7,a7e3,c5c7,8ea1a7e3v,8ea1c5c7v,a7e3v,c5c7v 6597 e69697,e2bd83 6597,2f43 00006597,00002f43 a4e6 a4e6 a4e6 a4e6 a4e6 a4e6 a4e6
+728 a4e7 a4e7 a4e7 * 2764,4548 * 8ea1a7e4,8ea1c5c8,a7e4,c5c8,8ea1a7e4v,8ea1c5c8v,a7e4v,c5c8v 65a4 e696a4,e2bd84 65a4,2f44 000065a4,00002f44 a4e7 a4e7 a4e7 a4e7 a4e7 a4e7 a4e7
+729 a4e8 a4e8 a4e8 * 2765,4549 * 8ea1a7e5,8ea1c5c9,a7e5,c5c9,8ea1a7e5v,8ea1c5c9v,a7e5v,c5c9v 65b9 e696b9,e2bd85 65b9,2f45 000065b9,00002f45 a4e8 a4e8 a4e8 a4e8 a4e8 a4e8 a4e8
+730 a4e9 a4e9 a4e9 * 2767,454a * 8ea1a7e7,8ea1c5ca,a7e7,c5ca,8ea1a7e7v,8ea1c5cav,a7e7v,c5cav 65e5 e697a5,e2bd87 65e5,2f47 000065e5,00002f47 a4e9 a4e9 a4e9 a4e9 a4e9 a4e9 a4e9
+731 a4ea a4ea a4ea * 2768,454b * 8ea1a7e8,8ea1c5cb,a7e8,c5cb,8ea1a7e8v,8ea1c5cbv,a7e8v,c5cbv 66f0 e69bb0,e2bd88 66f0,2f48 000066f0,00002f48 a4ea a4ea a4ea a4ea a4ea a4ea a4ea
+732 a4eb a4eb a4eb * 2769,454c * 8ea1a7e9,8ea1c5cc,a7e9,c5cc,8ea1a7e9v,8ea1c5ccv,a7e9v,c5ccv 2e9d,6708 e69c88,e2bd89 6708,2f49 00006708,00002f49 a4eb a4eb a4eb a4eb a4eb a4eb a4eb
+733 a4ec a4ec a4ec * 276a,454d * 8ea1a7ea,8ea1c5cd,a7ea,c5cd,8ea1a7eav,8ea1c5cdv,a7eav,c5cdv 6728 e69ca8,e2bd8a 6728,2f4a 00006728,00002f4a a4ec a4ec a4ec a4ec a4ec a4ec a4ec
+734 a4ed a4ed a4ed * 276b,454e * 8ea1a7eb,8ea1c5ce,a7eb,c5ce,8ea1a7ebv,8ea1c5cev,a7ebv,c5cev 6b20 e6aca0,e2bd8b 6b20,2f4b 00006b20,00002f4b a4ed a4ed a4ed a4ed a4ed a4ed a4ed
+735 a4ee a4ee a4ee * 276c,454f * 8ea1a7ec,8ea1c5cf,a7ec,c5cf,8ea1a7ecv,8ea1c5cfv,a7ecv,c5cfv 6b62 e6ada2,e2bd8c 6b62,2f4c 00006b62,00002f4c a4ee a4ee a4ee a4ee a4ee a4ee a4ee
+736 a4ef a4ef a4ef * 276d,4550 * 8ea1a7ed,8ea1c5d0,a7ed,c5d0,8ea1a7edv,8ea1c5d0v,a7edv,c5d0v 6b79 e6adb9,e2bd8d 6b79,2f4d 00006b79,00002f4d a4ef a4ef a4ef a4ef a4ef a4ef a4ef
+737 a4f0 a4f0 a4f0 * 276f,4551 * 8ea1a7ef,8ea1c5d1,a7ef,c5d1,8ea1a7efv,8ea1c5d1v,a7efv,c5d1v 6bcb e6af8b,e2bd8f 6bcb,2f4f 00006bcb,00002f4f a4f0 a4f0 a4f0 a4f0 a4f0 a4f0 a4f0
+738 a4f1 a4f1 a4f1 * 2770,4552 * 8ea1a7f0,8ea1c5d2,a7f0,c5d2,8ea1a7f0v,8ea1c5d2v,a7f0v,c5d2v 6bd4 e6af94,e2bd90 6bd4,2f50 00006bd4,00002f50 a4f1 a4f1 a4f1 a4f1 a4f1 a4f1 a4f1
+739 a4f2 a4f2 a4f2 * 2771,4553 * 8ea1a7f1,8ea1c5d3,a7f1,c5d3,8ea1a7f1v,8ea1c5d3v,a7f1v,c5d3v 6bdb e6af9b,e2bd91 6bdb,2f51 00006bdb,00002f51 a4f2 a4f2 a4f2 a4f2 a4f2 a4f2 a4f2
+740 a4f3 a4f3 a4f3 * 2772,4554 * 8ea1a7f2,8ea1c5d4,a7f2,c5d4,8ea1a7f2v,8ea1c5d4v,a7f2v,c5d4v 6c0f e6b08f,e2bd92 6c0f,2f52 00006c0f,00002f52 a4f3 a4f3 a4f3 a4f3 a4f3 a4f3 a4f3
+741 a4f4 a4f4 a4f4 * 2774,4555 * 8ea1a7f4,8ea1c5d5,a7f4,c5d5,8ea1a7f4v,8ea1c5d5v,a7f4v,c5d5v 6c34 e6b0b4,e2bd94 6c34,2f54 00006c34,00002f54 a4f4 a4f4 a4f4 a4f4 a4f4 a4f4 a4f4
+742 a4f5 a4f5 a4f5 * 2775,4556 * 8ea1a7f5,8ea1c5d6,a7f5,c5d6,8ea1a7f5v,8ea1c5d6v,a7f5v,c5d6v 706b e781ab,e2bd95 706b,2f55 0000706b,00002f55 a4f5 a4f5 a4f5 a4f5 a4f5 a4f5 a4f5
+743 a4f6 a4f6 a4f6 * 2776,4557 * 8ea1a7f6,8ea1c5d7,a7f6,c5d7,8ea1a7f6v,8ea1c5d7v,a7f6v,c5d7v 722a e788aa,e2bd96 722a,2f56 0000722a,00002f56 a4f6 a4f6 a4f6 a4f6 a4f6 a4f6 a4f6
+744 a4f7 a4f7 a4f7 * 2777,4558 * 8ea1a7f7,8ea1c5d8,a7f7,c5d8,8ea1a7f7v,8ea1c5d8v,a7f7v,c5d8v 7236 e788b6,e2bd97 7236,2f57 00007236,00002f57 a4f7 a4f7 a4f7 a4f7 a4f7 a4f7 a4f7
+745 a4f8 a4f8 a4f8 * 2778,4559 * 8ea1a7f8,8ea1c5d9,a7f8,c5d9,8ea1a7f8v,8ea1c5d9v,a7f8v,c5d9v 723b e788bb,e2bd98 723b,2f58 0000723b,00002f58 a4f8 a4f8 a4f8 a4f8 a4f8 a4f8 a4f8
+746 a4f9 a4f9 a4f9 * 277a,455a * 8ea1a7fa,8ea1c5da,a7fa,c5da,8ea1a7fav,8ea1c5dav,a7fav,c5dav 7247 e78987,e2bd9a 7247,2f5a 00007247,00002f5a a4f9 a4f9 a4f9 a4f9 a4f9 a4f9 a4f9
+747 a4fa a4fa a4fa * 277b,455b * 8ea1a7fb,8ea1c5db,a7fb,c5db,8ea1a7fbv,8ea1c5dbv,a7fbv,c5dbv 7259 e78999,e2bd9b 7259,2f5b 00007259,00002f5b a4fa a4fa a4fa a4fa a4fa a4fa a4fa
+748 a4fb a4fb a4fb * 277c,455c * 8ea1a7fc,8ea1c5dc,a7fc,c5dc,8ea1a7fcv,8ea1c5dcv,a7fcv,c5dcv 725b e7899b,e2bd9c 725b,2f5c 0000725b,00002f5c a4fb a4fb a4fb a4fb a4fb a4fb a4fb
+749 a4fc a4fc a4fc * 277d,455d * 8ea1a7fd,8ea1c5dd,a7fd,c5dd,8ea1a7fdv,8ea1c5ddv,a7fdv,c5ddv 72ac e78aac,e2bd9d 72ac,2f5d 000072ac,00002f5d a4fc a4fc a4fc a4fc a4fc a4fc a4fc
+750 a4fd a4fd a4fd * 455e * 8ea1c5de,c5de,8ea1c5dev,c5dev 738b e78e8b 738b 0000738b a4fd a4fd a4fd a4fd a4fd a4fd a4fd
+751 a4fe a4fe a4fe * 455f * 8ea1c5df,c5df,8ea1c5dfv,c5dfv 4e19 e4b899 4e19 00004e19 a4fe a4fe a4fe a4fe a4fe a4fe a4fe
+752 a540 a540 a540 * 4560 * 8ea1c5e0,c5e0,8ea1c5e0v,c5e0v 4e16 e4b896 4e16 00004e16 a540 a540 a540 a540 a540 a540 a540
+753 a541 a541 a541 * 4561 * 8ea1c5e1,c5e1,8ea1c5e1v,c5e1v 4e15 e4b895 4e15 00004e15 a541 a541 a541 a541 a541 a541 a541
+754 a542 a542 a542 * 4562 * 8ea1c5e2,c5e2,8ea1c5e2v,c5e2v 4e14 e4b894 4e14 00004e14 a542 a542 a542 a542 a542 a542 a542
+755 a543 a543 a543 * 4563 * 8ea1c5e3,c5e3,8ea1c5e3v,c5e3v 4e18 e4b898 4e18 00004e18 a543 a543 a543 a543 a543 a543 a543
+756 a544 a544 a544 * 4564 * 8ea1c5e4,c5e4,8ea1c5e4v,c5e4v 4e3b e4b8bb 4e3b 00004e3b a544 a544 a544 a544 a544 a544 a544
+757 a545 a545 a545 * 4565 * 8ea1c5e5,c5e5,8ea1c5e5v,c5e5v 4e4d e4b98d 4e4d 00004e4d a545 a545 a545 a545 a545 a545 a545
+758 a546 a546 a546 * 4566 * 8ea1c5e6,c5e6,8ea1c5e6v,c5e6v 4e4f e4b98f 4e4f 00004e4f a546 a546 a546 a546 a546 a546 a546
+759 a547 a547 a547 * 4567 * 8ea1c5e7,c5e7,8ea1c5e7v,c5e7v 4e4e e4b98e 4e4e 00004e4e a547 a547 a547 a547 a547 a547 a547
+760 a548 a548 a548 * 4568 * 8ea1c5e8,c5e8,8ea1c5e8v,c5e8v 4ee5 e4bba5 4ee5 00004ee5 a548 a548 a548 a548 a548 a548 a548
+761 a549 a549 a549 * 4569 * 8ea1c5e9,c5e9,8ea1c5e9v,c5e9v 4ed8 e4bb98 4ed8 00004ed8 a549 a549 a549 a549 a549 a549 a549
+762 a54a a54a a54a * 456a * 8ea1c5ea,c5ea,8ea1c5eav,c5eav 4ed4 e4bb94 4ed4 00004ed4 a54a a54a a54a a54a a54a a54a a54a
+763 a54b a54b a54b * 456b * 8ea1c5eb,c5eb,8ea1c5ebv,c5ebv 4ed5 e4bb95 4ed5 00004ed5 a54b a54b a54b a54b a54b a54b a54b
+764 a54c a54c a54c * 456c * 8ea1c5ec,c5ec,8ea1c5ecv,c5ecv 4ed6 e4bb96 4ed6 00004ed6 a54c a54c a54c a54c a54c a54c a54c
+765 a54d a54d a54d * 456d * 8ea1c5ed,c5ed,8ea1c5edv,c5edv 4ed7 e4bb97 4ed7 00004ed7 a54d a54d a54d a54d a54d a54d a54d
+766 a54e a54e a54e * 456e * 8ea1c5ee,c5ee,8ea1c5eev,c5eev 4ee3 e4bba3 4ee3 00004ee3 a54e a54e a54e a54e a54e a54e a54e
+767 a54f a54f a54f * 456f * 8ea1c5ef,c5ef,8ea1c5efv,c5efv 4ee4 e4bba4 4ee4 00004ee4 a54f a54f a54f a54f a54f a54f a54f
+768 a550 a550 a550 * 4570 * 8ea1c5f0,c5f0,8ea1c5f0v,c5f0v 4ed9 e4bb99 4ed9 00004ed9 a550 a550 a550 a550 a550 a550 a550
+769 a551 a551 a551 * 4571 * 8ea1c5f1,c5f1,8ea1c5f1v,c5f1v 4ede e4bb9e 4ede 00004ede a551 a551 a551 a551 a551 a551 a551
+770 a552 a552 a552 * 4572 * 8ea1c5f2,c5f2,8ea1c5f2v,c5f2v 5145 e58585 5145 00005145 a552 a552 a552 a552 a552 a552 a552
+771 a553 a553 a553 * 4573 * 8ea1c5f3,c5f3,8ea1c5f3v,c5f3v 5144 e58584 5144 00005144 a553 a553 a553 a553 a553 a553 a553
+772 a554 a554 a554 * 4574 * 8ea1c5f4,c5f4,8ea1c5f4v,c5f4v 5189 e58689 5189 00005189 a554 a554 a554 a554 a554 a554 a554
+773 a555 a555 a555 * 4575 * 8ea1c5f5,c5f5,8ea1c5f5v,c5f5v 518a e5868a 518a 0000518a a555 a555 a555 a555 a555 a555 a555
+774 a556 a556 a556 * 4576 * 8ea1c5f6,c5f6,8ea1c5f6v,c5f6v 51ac e586ac 51ac 000051ac a556 a556 a556 a556 a556 a556 a556
+775 a557 a557 a557 * 4577 * 8ea1c5f7,c5f7,8ea1c5f7v,c5f7v 51f9 e587b9 51f9 000051f9 a557 a557 a557 a557 a557 a557 a557
+776 a558 a558 a558 * 4578 * 8ea1c5f8,c5f8,8ea1c5f8v,c5f8v 51fa e587ba 51fa 000051fa a558 a558 a558 a558 a558 a558 a558
+777 a559 a559 a559 * 4579 * 8ea1c5f9,c5f9,8ea1c5f9v,c5f9v 51f8 e587b8 51f8 000051f8 a559 a559 a559 a559 a559 a559 a559
+778 a55a a55a a55a * 457a * 8ea1c5fa,c5fa,8ea1c5fav,c5fav 520a e5888a 520a 0000520a a55a a55a a55a a55a a55a a55a a55a
+779 a55b a55b a55b * 457b * 8ea1c5fb,c5fb,8ea1c5fbv,c5fbv 52a0 e58aa0 52a0 000052a0 a55b a55b a55b a55b a55b a55b a55b
+780 a55c a55c a55c * 457c * 8ea1c5fc,c5fc,8ea1c5fcv,c5fcv 529f e58a9f 529f 0000529f a55c a55c a55c a55c a55c a55c a55c
+781 a55d a55d a55d * 457d * 8ea1c5fd,c5fd,8ea1c5fdv,c5fdv 5305 ee819b,e58c85 e05b,5305 0000e05b,00005305 fabd,a55d a55d a55d a55d a55d a55d fabd,a55d
+782 a55e a55e a55e * 457e * 8ea1c5fe,c5fe,8ea1c5fev,c5fev 5306 e58c86 5306 00005306 a55e a55e a55e a55e a55e a55e a55e
+783 a55f a55f a55f * 4621 * 8ea1c6a1,c6a1,8ea1c6a1v,c6a1v 5317 e58c97 5317 00005317 a55f a55f a55f a55f a55f a55f a55f
+784 a560 a560 a560 * 4622 * 8ea1c6a2,c6a2,8ea1c6a2v,c6a2v 531d e58c9d 531d 0000531d a560 a560 a560 a560 a560 a560 a560
+785 a561 a561 a561 * 4623 * 8ea1c6a3,c6a3,8ea1c6a3v,c6a3v 4edf e4bb9f 4edf 00004edf a561 a561 a561 a561 a561 a561 a561
+786 a562 a562 a562 * 4624 * 8ea1c6a4,c6a4,8ea1c6a4v,c6a4v 534a e58d8a 534a 0000534a a562 a562 a562 a562 a562 a562 a562
+787 a563 a563 a563 * 4625 * 8ea1c6a5,c6a5,8ea1c6a5v,c6a5v 5349 e58d89 5349 00005349 a563 a563 a563 a563 a563 a563 a563
+788 a564 a564 a564 * 4626 * 8ea1c6a6,c6a6,8ea1c6a6v,c6a6v 5361 e58da1 5361 00005361 a564 a564 a564 a564 a564 a564 a564
+789 a565 a565 a565 * 4627 * 8ea1c6a7,c6a7,8ea1c6a7v,c6a7v 5360 e58da0 5360 00005360 a565 a565 a565 a565 a565 a565 a565
+790 a566 a566 a566 * 4628 * 8ea1c6a8,c6a8,8ea1c6a8v,c6a8v 536f e58daf 536f 0000536f a566 a566 a566 a566 a566 a566 a566
+791 a567 a567 a567 * 4629 * 8ea1c6a9,c6a9,8ea1c6a9v,c6a9v 536e e58dae 536e 0000536e a567 a567 a567 a567 a567 a567 a567
+792 a568 a568 a568 * 462a * 8ea1c6aa,c6aa,8ea1c6aav,c6aav 53bb e58ebb 53bb 000053bb a568 a568 a568 a568 a568 a568 a568
+793 a569 a569 a569 * 462b * 8ea1c6ab,c6ab,8ea1c6abv,c6abv 53ef e58faf 53ef 000053ef a569 a569 a569 a569 a569 a569 a569
+794 a56a a56a a56a * 462c * 8ea1c6ac,c6ac,8ea1c6acv,c6acv 53e4 e58fa4 53e4 000053e4 a56a a56a a56a a56a a56a a56a a56a
+795 a56b a56b a56b * 462d * 8ea1c6ad,c6ad,8ea1c6adv,c6adv 53f3 e58fb3 53f3 000053f3 a56b a56b a56b a56b a56b a56b a56b
+796 a56c a56c a56c * 462e * 8ea1c6ae,c6ae,8ea1c6aev,c6aev 53ec e58fac 53ec 000053ec a56c a56c a56c a56c a56c a56c a56c
+797 a56d a56d a56d * 462f * 8ea1c6af,c6af,8ea1c6afv,c6afv 53ee e58fae 53ee 000053ee a56d a56d a56d a56d a56d a56d a56d
+798 a56e a56e a56e * 4630 * 8ea1c6b0,c6b0,8ea1c6b0v,c6b0v 53e9 e58fa9 53e9 000053e9 a56e a56e a56e a56e a56e a56e a56e
+799 a56f a56f a56f * 4631 * 8ea1c6b1,c6b1,8ea1c6b1v,c6b1v 53e8 e58fa8 53e8 000053e8 a56f a56f a56f a56f a56f a56f a56f
+800 a570 a570 a570 * 4632 * 8ea1c6b2,c6b2,8ea1c6b2v,c6b2v 53fc e58fbc 53fc 000053fc a570 a570 a570 a570 a570 a570 a570
+801 a571 a571 a571 * 4633 * 8ea1c6b3,c6b3,8ea1c6b3v,c6b3v 53f8 e58fb8 53f8 000053f8 a571 a571 a571 a571 a571 a571 a571
+802 a572 a572 a572 * 4634 * 8ea1c6b4,c6b4,8ea1c6b4v,c6b4v 53f5 e58fb5 53f5 000053f5 a572 a572 a572 a572 a572 a572 a572
+803 a573 a573 a573 * 4635 * 8ea1c6b5,c6b5,8ea1c6b5v,c6b5v 53eb e58fab 53eb 000053eb a573 a573 a573 a573 a573 a573 a573
+804 a574 a574 a574 * 4636 * 8ea1c6b6,c6b6,8ea1c6b6v,c6b6v 53e6 e58fa6 53e6 000053e6 a574 a574 a574 a574 a574 a574 a574
+805 a575 a575 a575 * 4637 * 8ea1c6b7,c6b7,8ea1c6b7v,c6b7v 53ea e58faa 53ea 000053ea a575 a575 a575 a575 a575 a575 a575
+806 a576 a576 a576 * 4638 * 8ea1c6b8,c6b8,8ea1c6b8v,c6b8v 53f2 e58fb2 53f2 000053f2 a576 a576 a576 a576 a576 a576 a576
+807 a577 a577 a577 * 4639 * 8ea1c6b9,c6b9,8ea1c6b9v,c6b9v 53f1 e58fb1 53f1 000053f1 a577 a577 a577 a577 a577 a577 a577
+808 a578 a578 a578 * 463a * 8ea1c6ba,c6ba,8ea1c6bav,c6bav 53f0 e58fb0 53f0 000053f0 a578 a578 a578 a578 a578 a578 a578
+809 a579 a579 a579 * 463b * 8ea1c6bb,c6bb,8ea1c6bbv,c6bbv 53e5 e58fa5 53e5 000053e5 a579 a579 a579 a579 a579 a579 a579
+810 a57a a57a a57a * 463c * 8ea1c6bc,c6bc,8ea1c6bcv,c6bcv 53ed e58fad 53ed 000053ed a57a a57a a57a a57a a57a a57a a57a
+811 a57b a57b a57b * 463d * 8ea1c6bd,c6bd,8ea1c6bdv,c6bdv 53fb e58fbb 53fb 000053fb a57b a57b a57b a57b a57b a57b a57b
+812 a57c a57c a57c * 463e * 8ea1c6be,c6be,8ea1c6bev,c6bev 56db e59b9b 56db 000056db a57c a57c a57c a57c a57c a57c a57c
+813 a57d a57d a57d * 463f * 8ea1c6bf,c6bf,8ea1c6bfv,c6bfv 56da e59b9a 56da 000056da a57d a57d a57d a57d a57d a57d a57d
+814 a57e a57e a57e * 4640 * 8ea1c6c0,c6c0,8ea1c6c0v,c6c0v 5916 e5a496 5916 00005916 a57e a57e a57e a57e a57e a57e a57e
+815 a5a1 a5a1 a5a1 * 4641 * 8ea1c6c1,c6c1,8ea1c6c1v,c6c1v 592e e5a4ae 592e 0000592e a5a1 a5a1 a5a1 a5a1 a5a1 a5a1 a5a1
+816 a5a2 a5a2 a5a2 * 4642 * 8ea1c6c2,c6c2,8ea1c6c2v,c6c2v 5931 e5a4b1 5931 00005931 a5a2 a5a2 a5a2 a5a2 a5a2 a5a2 a5a2
+817 a5a3 a5a3 a5a3 * 4643 * 8ea1c6c3,c6c3,8ea1c6c3v,c6c3v 5974 e5a5b4 5974 00005974 a5a3 a5a3 a5a3 a5a3 a5a3 a5a3 a5a3
+818 a5a4 a5a4 a5a4 * 4644 * 8ea1c6c4,c6c4,8ea1c6c4v,c6c4v 5976 e5a5b6 5976 00005976 a5a4 a5a4 a5a4 a5a4 a5a4 a5a4 a5a4
+819 a5a5 a5a5 a5a5 * 4645 * 8ea1c6c5,c6c5,8ea1c6c5v,c6c5v 5b55 e5ad95 5b55 00005b55 a5a5 a5a5 a5a5 a5a5 a5a5 a5a5 a5a5
+820 a5a6 a5a6 a5a6 * 4646 * 8ea1c6c6,c6c6,8ea1c6c6v,c6c6v 5b83 e5ae83 5b83 00005b83 a5a6 a5a6 a5a6 a5a6 a5a6 a5a6 a5a6
+821 a5a7 a5a7 a5a7 * 4647 * 8ea1c6c7,c6c7,8ea1c6c7v,c6c7v 5c3c e5b0bc 5c3c 00005c3c a5a7 a5a7 a5a7 a5a7 a5a7 a5a7 a5a7
+822 a5a8 a5a8 a5a8 * 4648 * 8ea1c6c8,c6c8,8ea1c6c8v,c6c8v 5de8 e5b7a8 5de8 00005de8 a5a8 a5a8 a5a8 a5a8 a5a8 a5a8 a5a8
+823 a5a9 a5a9 a5a9 * 4649 * 8ea1c6c9,c6c9,8ea1c6c9v,c6c9v 5de7 e5b7a7 5de7 00005de7 a5a9 a5a9 a5a9 a5a9 a5a9 a5a9 a5a9
+824 a5aa a5aa a5aa * 464a * 8ea1c6ca,c6ca,8ea1c6cav,c6cav 5de6 e5b7a6 5de6 00005de6 a5aa a5aa a5aa a5aa a5aa a5aa a5aa
+825 a5ab a5ab a5ab * 464b * 8ea1c6cb,c6cb,8ea1c6cbv,c6cbv 5e02 e5b882 5e02 00005e02 a5ab a5ab a5ab a5ab a5ab a5ab a5ab
+826 a5ac a5ac a5ac * 464c * 8ea1c6cc,c6cc,8ea1c6ccv,c6ccv 5e03 e5b883 5e03 00005e03 a5ac a5ac a5ac a5ac a5ac a5ac a5ac
+827 a5ad a5ad a5ad * 464d * 8ea1c6cd,c6cd,8ea1c6cdv,c6cdv 5e73 e5b9b3 5e73 00005e73 a5ad a5ad a5ad a5ad a5ad a5ad a5ad
+828 a5ae a5ae a5ae * 464e * 8ea1c6ce,c6ce,8ea1c6cev,c6cev 5e7c e5b9bc 5e7c 00005e7c a5ae a5ae a5ae a5ae a5ae a5ae a5ae
+829 a5af a5af a5af * 464f * 8ea1c6cf,c6cf,8ea1c6cfv,c6cfv 5f01 e5bc81 5f01 00005f01 a5af a5af a5af a5af a5af a5af a5af
+830 a5b0 a5b0 a5b0 * 4650 * 8ea1c6d0,c6d0,8ea1c6d0v,c6d0v 5f18 e5bc98 5f18 00005f18 a5b0 a5b0 a5b0 a5b0 a5b0 a5b0 a5b0
+831 a5b1 a5b1 a5b1 * 4651 * 8ea1c6d1,c6d1,8ea1c6d1v,c6d1v 5f17 e5bc97 5f17 00005f17 a5b1 a5b1 a5b1 a5b1 a5b1 a5b1 a5b1
+832 a5b2 a5b2 a5b2 * 4652 * 8ea1c6d2,c6d2,8ea1c6d2v,c6d2v 5fc5 e5bf85 5fc5 00005fc5 a5b2 a5b2 a5b2 a5b2 a5b2 a5b2 a5b2
+833 a5b3 a5b3 a5b3 * 4653 * 8ea1c6d3,c6d3,8ea1c6d3v,c6d3v 620a e6888a 620a 0000620a a5b3 a5b3 a5b3 a5b3 a5b3 a5b3 a5b3
+834 a5b4 a5b4 a5b4 * 4654 * 8ea1c6d4,c6d4,8ea1c6d4v,c6d4v 6253 e68993 6253 00006253 a5b4 a5b4 a5b4 a5b4 a5b4 a5b4 a5b4
+835 a5b5 a5b5 a5b5 * 4655 * 8ea1c6d5,c6d5,8ea1c6d5v,c6d5v 6254 e68994 6254 00006254 a5b5 a5b5 a5b5 a5b5 a5b5 a5b5 a5b5
+836 a5b6 a5b6 a5b6 * 4656 * 8ea1c6d6,c6d6,8ea1c6d6v,c6d6v 6252 e68992 6252 00006252 a5b6 a5b6 a5b6 a5b6 a5b6 a5b6 a5b6
+837 a5b7 a5b7 a5b7 * 4657 * 8ea1c6d7,c6d7,8ea1c6d7v,c6d7v 6251 e68991 6251 00006251 a5b7 a5b7 a5b7 a5b7 a5b7 a5b7 a5b7
+838 a5b8 a5b8 a5b8 * 4658 * 8ea1c6d8,c6d8,8ea1c6d8v,c6d8v 65a5 e696a5 65a5 000065a5 a5b8 a5b8 a5b8 a5b8 a5b8 a5b8 a5b8
+839 a5b9 a5b9 a5b9 * 4659 * 8ea1c6d9,c6d9,8ea1c6d9v,c6d9v 65e6 e697a6 65e6 000065e6 a5b9 a5b9 a5b9 a5b9 a5b9 a5b9 a5b9
+840 a5ba a5ba a5ba * 465a * 8ea1c6da,c6da,8ea1c6dav,c6dav 672e e69cae 672e 0000672e a5ba a5ba a5ba a5ba a5ba a5ba a5ba
+841 a5bb a5bb a5bb * 465b * 8ea1c6db,c6db,8ea1c6dbv,c6dbv 672c e69cac 672c 0000672c a5bb a5bb a5bb a5bb a5bb a5bb a5bb
+842 a5bc a5bc a5bc * 465c * 8ea1c6dc,c6dc,8ea1c6dcv,c6dcv 672a e69caa 672a 0000672a a5bc a5bc a5bc a5bc a5bc a5bc a5bc
+843 a5bd a5bd a5bd * 465d * 8ea1c6dd,c6dd,8ea1c6ddv,c6ddv 672b e69cab 672b 0000672b a5bd a5bd a5bd a5bd a5bd a5bd a5bd
+844 a5be a5be a5be * 465e * 8ea1c6de,c6de,8ea1c6dev,c6dev 672d e69cad 672d 0000672d a5be a5be a5be a5be a5be a5be a5be
+845 a5bf a5bf a5bf * 465f * 8ea1c6df,c6df,8ea1c6dfv,c6dfv 6b63 e6ada3 6b63 00006b63 a5bf a5bf a5bf a5bf a5bf a5bf a5bf
+846 a5c0 a5c0 a5c0 * 4660 * 8ea1c6e0,c6e0,8ea1c6e0v,c6e0v 6bcd e6af8d 6bcd 00006bcd a5c0 a5c0 a5c0 a5c0 a5c0 a5c0 a5c0
+847 a5c1 a5c1 a5c1 * 4661 * 8ea1c6e1,c6e1,8ea1c6e1v,c6e1v 6c11 e6b091 6c11 00006c11 a5c1 a5c1 a5c1 a5c1 a5c1 a5c1 a5c1
+848 a5c2 a5c2 a5c2 * 4662 * 8ea1c6e2,c6e2,8ea1c6e2v,c6e2v 6c10 e6b090 6c10 00006c10 a5c2 a5c2 a5c2 a5c2 a5c2 a5c2 a5c2
+849 a5c3 a5c3 a5c3 * 4663 * 8ea1c6e3,c6e3,8ea1c6e3v,c6e3v 6c38 e6b0b8 6c38 00006c38 a5c3 a5c3 a5c3 a5c3 a5c3 a5c3 a5c3
+850 a5c4 a5c4 a5c4 * 4664 * 8ea1c6e4,c6e4,8ea1c6e4v,c6e4v 6c41 e6b181 6c41 00006c41 a5c4 a5c4 a5c4 a5c4 a5c4 a5c4 a5c4
+851 a5c5 a5c5 a5c5 * 4665 * 8ea1c6e5,c6e5,8ea1c6e5v,c6e5v 6c40 e6b180 6c40 00006c40 a5c5 a5c5 a5c5 a5c5 a5c5 a5c5 a5c5
+852 a5c6 a5c6 a5c6 * 4666 * 8ea1c6e6,c6e6,8ea1c6e6v,c6e6v 6c3e e6b0be 6c3e 00006c3e a5c6 a5c6 a5c6 a5c6 a5c6 a5c6 a5c6
+853 a5c7 a5c7 a5c7 * 4667 * 8ea1c6e7,c6e7,8ea1c6e7v,c6e7v 72af e78aaf 72af 000072af a5c7 a5c7 a5c7 a5c7 a5c7 a5c7 a5c7
+854 a5c8 a5c8 a5c8 * 277e,4668 * 8ea1a7fe,8ea1c6e8,a7fe,c6e8,8ea1a7fev,8ea1c6e8v,a7fev,c6e8v 7384 e78e84,e2bd9e 7384,2f5e 00007384,00002f5e a5c8 a5c8 a5c8 a5c8 a5c8 a5c8 a5c8
+855 a5c9 a5c9 a5c9 * 2821,4669 * 8ea1a8a1,8ea1c6e9,a8a1,c6e9,8ea1a8a1v,8ea1c6e9v,a8a1v,c6e9v 7389 e78e89,e2bd9f 7389,2f5f 00007389,00002f5f a5c9 a5c9 a5c9 a5c9 a5c9 a5c9 a5c9
+856 a5ca a5ca a5ca * 2822,466a * 8ea1a8a2,8ea1c6ea,a8a2,c6ea,8ea1a8a2v,8ea1c6eav,a8a2v,c6eav 74dc e7939c,e2bda0 74dc,2f60 000074dc,00002f60 a5ca a5ca a5ca a5ca a5ca a5ca a5ca
+857 a5cb a5cb a5cb * 2823,466b * 8ea1a8a3,8ea1c6eb,a8a3,c6eb,8ea1a8a3v,8ea1c6ebv,a8a3v,c6ebv 74e6 e793a6,e2bda1 74e6,2f61 000074e6,00002f61 a5cb a5cb a5cb a5cb a5cb a5cb a5cb
+858 a5cc a5cc a5cc * 2824,466c * 8ea1a8a4,8ea1c6ec,a8a4,c6ec,8ea1a8a4v,8ea1c6ecv,a8a4v,c6ecv 7518 e79498,e2bda2 7518,2f62 00007518,00002f62 a5cc a5cc a5cc a5cc a5cc a5cc a5cc
+859 a5cd a5cd a5cd * 2825,466d * 8ea1a8a5,8ea1c6ed,a8a5,c6ed,8ea1a8a5v,8ea1c6edv,a8a5v,c6edv 751f e7949f,e2bda3 751f,2f63 0000751f,00002f63 a5cd a5cd a5cd a5cd a5cd a5cd a5cd
+860 a5ce a5ce a5ce * 2826,466e * 8ea1a8a6,8ea1c6ee,a8a6,c6ee,8ea1a8a6v,8ea1c6eev,a8a6v,c6eev 7528 e2bda4,e794a8 2f64,7528 00002f64,00007528 a5ce a5ce a5ce a5ce a5ce a5ce a5ce
+861 a5cf a5cf a5cf * 466f * 8ea1c6ef,c6ef,8ea1c6efv,c6efv 7529 e794a9 7529 00007529 a5cf a5cf a5cf a5cf a5cf a5cf a5cf
+862 a5d0 a5d0 a5d0 * 2827,4670 * 8ea1a8a7,8ea1c6f0,a8a7,c6f0,8ea1a8a7v,8ea1c6f0v,a8a7v,c6f0v 7530 e2bda5,e794b0 2f65,7530 00002f65,00007530 a5d0 a5d0 a5d0 a5d0 a5d0 a5d0 a5d0
+863 a5d1 a5d1 a5d1 * 4671 * 8ea1c6f1,c6f1,8ea1c6f1v,c6f1v 7531 e794b1 7531 00007531 a5d1 a5d1 a5d1 a5d1 a5d1 a5d1 a5d1
+864 a5d2 a5d2 a5d2 * 4672 * 8ea1c6f2,c6f2,8ea1c6f2v,c6f2v 7532 e794b2 7532 00007532 a5d2 a5d2 a5d2 a5d2 a5d2 a5d2 a5d2
+865 a5d3 a5d3 a5d3 * 4673 * 8ea1c6f3,c6f3,8ea1c6f3v,c6f3v 7533 e794b3 7533 00007533 a5d3 a5d3 a5d3 a5d3 a5d3 a5d3 a5d3
+866 a5d4 a5d4 a5d4 * 2828,4674 * 8ea1a8a8,8ea1c6f4,a8a8,c6f4,8ea1a8a8v,8ea1c6f4v,a8a8v,c6f4v 758b e2bda6,e7968b 2f66,758b 00002f66,0000758b a5d4 a5d4 a5d4 a5d4 a5d4 a5d4 a5d4
+867 a5d5 a5d5 a5d5 * 282b,4675 * 8ea1a8ab,8ea1c6f5,a8ab,c6f5,8ea1a8abv,8ea1c6f5v,a8abv,c6f5v 767d e799bd,e2bda9 767d,2f69 0000767d,00002f69 a5d5 a5d5 a5d5 a5d5 a5d5 a5d5 a5d5
+868 a5d6 a5d6 a5d6 * 282c,4676 * 8ea1a8ac,8ea1c6f6,a8ac,c6f6,8ea1a8acv,8ea1c6f6v,a8acv,c6f6v 76ae e79aae,e2bdaa 76ae,2f6a 000076ae,00002f6a a5d6 a5d6 a5d6 a5d6 a5d6 a5d6 a5d6
+869 a5d7 a5d7 a5d7 * 282d,4677 * 8ea1a8ad,8ea1c6f7,a8ad,c6f7,8ea1a8adv,8ea1c6f7v,a8adv,c6f7v 76bf e79abf,e2bdab 76bf,2f6b 000076bf,00002f6b a5d7 a5d7 a5d7 a5d7 a5d7 a5d7 a5d7
+870 a5d8 a5d8 a5d8 * 282e,4678 * 8ea1a8ae,8ea1c6f8,a8ae,c6f8,8ea1a8aev,8ea1c6f8v,a8aev,c6f8v 76ee e79bae,e2bdac 76ee,2f6c 000076ee,00002f6c a5d8 a5d8 a5d8 a5d8 a5d8 a5d8 a5d8
+871 a5d9 a5d9 a5d9 * 282f,4679 * 8ea1a8af,8ea1c6f9,a8af,c6f9,8ea1a8afv,8ea1c6f9v,a8afv,c6f9v 77db e79f9b,e2bdad 77db,2f6d 000077db,00002f6d a5d9 a5d9 a5d9 a5d9 a5d9 a5d9 a5d9
+872 a5da a5da a5da * 2830,467a * 8ea1a8b0,8ea1c6fa,a8b0,c6fa,8ea1a8b0v,8ea1c6fav,a8b0v,c6fav 77e2 e79fa2,e2bdae 77e2,2f6e 000077e2,00002f6e a5da a5da a5da a5da a5da a5da a5da
+873 a5db a5db a5db * 2831,467b * 8ea1a8b1,8ea1c6fb,a8b1,c6fb,8ea1a8b1v,8ea1c6fbv,a8b1v,c6fbv 77f3 e79fb3,e2bdaf 77f3,2f6f 000077f3,00002f6f a5db a5db a5db a5db a5db a5db a5db
+874 a5dc a5dc a5dc * 2832,467c * 8ea1a8b2,8ea1c6fc,a8b2,c6fc,8ea1a8b2v,8ea1c6fcv,a8b2v,c6fcv 793a e7a4ba,e2bdb0 793a,2f70 0000793a,00002f70 a5dc a5dc a5dc a5dc a5dc a5dc a5dc
+875 a5dd a5dd a5dd * 2834,467d * 8ea1a8b4,8ea1c6fd,a8b4,c6fd,8ea1a8b4v,8ea1c6fdv,a8b4v,c6fdv 79be e7a6be,e2bdb2 79be,2f72 000079be,00002f72 a5dd a5dd a5dd a5dd a5dd a5dd a5dd
+876 a5de a5de a5de * 2835,467e * 8ea1a8b5,8ea1c6fe,a8b5,c6fe,8ea1a8b5v,8ea1c6fev,a8b5v,c6fev 7a74 e7a9b4,e2bdb3 7a74,2f73 00007a74,00002f73 a5de a5de a5de a5de a5de a5de a5de
+877 a5df a5df a5df * 2836,4721 * 8ea1a8b6,8ea1c7a1,a8b6,c7a1,8ea1a8b6v,8ea1c7a1v,a8b6v,c7a1v 7acb e7ab8b,e2bdb4 7acb,2f74 00007acb,00002f74 a5df a5df a5df a5df a5df a5df a5df
+878 a5e0 a5e0 a5e0 * 4722 * 8ea1c7a2,c7a2,8ea1c7a2v,c7a2v 4e1e e4b89e 4e1e 00004e1e a5e0 a5e0 a5e0 a5e0 a5e0 a5e0 a5e0
+879 a5e1 a5e1 a5e1 * 4723 * 8ea1c7a3,c7a3,8ea1c7a3v,c7a3v 4e1f e4b89f 4e1f 00004e1f a5e1 a5e1 a5e1 a5e1 a5e1 a5e1 a5e1
+880 a5e2 a5e2 a5e2 * 4724 * 8ea1c7a4,c7a4,8ea1c7a4v,c7a4v 4e52 e4b992 4e52 00004e52 a5e2 a5e2 a5e2 a5e2 a5e2 a5e2 a5e2
+881 a5e3 a5e3 a5e3 * 4725 * 8ea1c7a5,c7a5,8ea1c7a5v,c7a5v 4e53 e4b993 4e53 00004e53 a5e3 a5e3 a5e3 a5e3 a5e3 a5e3 a5e3
+882 a5e4 a5e4 a5e4 * 4726 * 8ea1c7a6,c7a6,8ea1c7a6v,c7a6v 4e69 e4b9a9 4e69 00004e69 a5e4 a5e4 a5e4 a5e4 a5e4 a5e4 a5e4
+883 a5e5 a5e5 a5e5 * 4727 * 8ea1c7a7,c7a7,8ea1c7a7v,c7a7v 4e99 e4ba99 4e99 00004e99 a5e5 a5e5 a5e5 a5e5 a5e5 a5e5 a5e5
+884 a5e6 a5e6 a5e6 * 4728 * 8ea1c7a8,c7a8,8ea1c7a8v,c7a8v 4ea4 e4baa4 4ea4 00004ea4 a5e6 a5e6 a5e6 a5e6 a5e6 a5e6 a5e6
+885 a5e7 a5e7 a5e7 * 4729 * 8ea1c7a9,c7a9,8ea1c7a9v,c7a9v 4ea6 e4baa6 4ea6 00004ea6 a5e7 a5e7 a5e7 a5e7 a5e7 a5e7 a5e7
+886 a5e8 a5e8 a5e8 * 472a * 8ea1c7aa,c7aa,8ea1c7aav,c7aav 4ea5 e4baa5 4ea5 00004ea5 a5e8 a5e8 a5e8 a5e8 a5e8 a5e8 a5e8
+887 a5e9 a5e9 a5e9 * 472b * 8ea1c7ab,c7ab,8ea1c7abv,c7abv 4eff e4bbbf 4eff 00004eff a5e9 a5e9 a5e9 a5e9 a5e9 a5e9 a5e9
+888 a5ea a5ea a5ea * 472c * 8ea1c7ac,c7ac,8ea1c7acv,c7acv 4f09 e4bc89 4f09 00004f09 a5ea a5ea a5ea a5ea a5ea a5ea a5ea
+889 a5eb a5eb a5eb * 472d * 8ea1c7ad,c7ad,8ea1c7adv,c7adv 4f19 e4bc99 4f19 00004f19 a5eb a5eb a5eb a5eb a5eb a5eb a5eb
+890 a5ec a5ec a5ec * 472e * 8ea1c7ae,c7ae,8ea1c7aev,c7aev 4f0a e4bc8a 4f0a 00004f0a a5ec a5ec a5ec a5ec a5ec a5ec a5ec
+891 a5ed a5ed a5ed * 472f * 8ea1c7af,c7af,8ea1c7afv,c7afv 4f15 e4bc95 4f15 00004f15 a5ed a5ed a5ed a5ed a5ed a5ed a5ed
+892 a5ee a5ee a5ee * 4730 * 8ea1c7b0,c7b0,8ea1c7b0v,c7b0v 4f0d e4bc8d 4f0d 00004f0d a5ee a5ee a5ee a5ee a5ee a5ee a5ee
+893 a5ef a5ef a5ef * 4731 * 8ea1c7b1,c7b1,8ea1c7b1v,c7b1v 4f10 e4bc90 4f10 00004f10 a5ef a5ef a5ef a5ef a5ef a5ef a5ef
+894 a5f0 a5f0 a5f0 * 4732 * 8ea1c7b2,c7b2,8ea1c7b2v,c7b2v 4f11 e4bc91 4f11 00004f11 a5f0 a5f0 a5f0 a5f0 a5f0 a5f0 a5f0
+895 a5f1 a5f1 a5f1 * 4733 * 8ea1c7b3,c7b3,8ea1c7b3v,c7b3v 4f0f e4bc8f 4f0f 00004f0f a5f1 a5f1 a5f1 a5f1 a5f1 a5f1 a5f1
+896 a5f2 a5f2 a5f2 * 4734 * 8ea1c7b4,c7b4,8ea1c7b4v,c7b4v 4ef2 e4bbb2 4ef2 00004ef2 a5f2 a5f2 a5f2 a5f2 a5f2 a5f2 a5f2
+897 a5f3 a5f3 a5f3 * 4735 * 8ea1c7b5,c7b5,8ea1c7b5v,c7b5v 4ef6 e4bbb6 4ef6 00004ef6 a5f3 a5f3 a5f3 a5f3 a5f3 a5f3 a5f3
+898 a5f4 a5f4 a5f4 * 4736 * 8ea1c7b6,c7b6,8ea1c7b6v,c7b6v 4efb e4bbbb 4efb 00004efb a5f4 a5f4 a5f4 a5f4 a5f4 a5f4 a5f4
+899 a5f5 a5f5 a5f5 * 4737 * 8ea1c7b7,c7b7,8ea1c7b7v,c7b7v 4ef0 e4bbb0 4ef0 00004ef0 a5f5 a5f5 a5f5 a5f5 a5f5 a5f5 a5f5
+900 a5f6 a5f6 a5f6 * 4738 * 8ea1c7b8,c7b8,8ea1c7b8v,c7b8v 4ef3 e4bbb3 4ef3 00004ef3 a5f6 a5f6 a5f6 a5f6 a5f6 a5f6 a5f6
+901 a5f7 a5f7 a5f7 * 4739 * 8ea1c7b9,c7b9,8ea1c7b9v,c7b9v 4efd e4bbbd 4efd 00004efd a5f7 a5f7 a5f7 a5f7 a5f7 a5f7 a5f7
+902 a5f8 a5f8 a5f8 * 473a * 8ea1c7ba,c7ba,8ea1c7bav,c7bav 4f01 e4bc81 4f01 00004f01 a5f8 a5f8 a5f8 a5f8 a5f8 a5f8 a5f8
+903 a5f9 a5f9 a5f9 * 473b * 8ea1c7bb,c7bb,8ea1c7bbv,c7bbv 4f0b e4bc8b 4f0b 00004f0b a5f9 a5f9 a5f9 a5f9 a5f9 a5f9 a5f9
+904 a5fa a5fa a5fa * 473c * 8ea1c7bc,c7bc,8ea1c7bcv,c7bcv 5149 e58589 5149 00005149 a5fa a5fa a5fa a5fa a5fa a5fa a5fa
+905 a5fb a5fb a5fb * 473d * 8ea1c7bd,c7bd,8ea1c7bdv,c7bdv 5147 e58587 5147 00005147 a5fb a5fb a5fb a5fb a5fb a5fb a5fb
+906 a5fc a5fc a5fc * 473e * 8ea1c7be,c7be,8ea1c7bev,c7bev 5146 e58586 5146 00005146 a5fc a5fc a5fc a5fc a5fc a5fc a5fc
+907 a5fd a5fd a5fd * 473f * 8ea1c7bf,c7bf,8ea1c7bfv,c7bfv 5148 e58588 5148 00005148 a5fd a5fd a5fd a5fd a5fd a5fd a5fd
+908 a5fe a5fe a5fe * 4740 * 8ea1c7c0,c7c0,8ea1c7c0v,c7c0v 5168 e585a8 5168 00005168 a5fe a5fe a5fe a5fe a5fe a5fe a5fe
+909 a640 a640 a640 * 4741 * 8ea1c7c1,c7c1,8ea1c7c1v,c7c1v 5171 e585b1 5171 00005171 a640 a640 a640 a640 a640 a640 a640
+910 a641 a641 a641 * 4742 * 8ea1c7c2,c7c2,8ea1c7c2v,c7c2v 518d e5868d 518d 0000518d a641 a641 a641 a641 a641 a641 a641
+911 a642 a642 a642 * 4743 * 8ea1c7c3,c7c3,8ea1c7c3v,c7c3v 51b0 e586b0 51b0 000051b0 a642 a642 a642 a642 a642 a642 a642
+912 a643 a643 a643 * 4744 * 8ea1c7c4,c7c4,8ea1c7c4v,c7c4v 5217 e58897 5217 00005217 a643 a643 a643 a643 a643 a643 a643
+913 a644 a644 a644 * 4745 * 8ea1c7c5,c7c5,8ea1c7c5v,c7c5v 5211 e58891 5211 00005211 a644 a644 a644 a644 a644 a644 a644
+914 a645 a645 a645 * 4746 * 8ea1c7c6,c7c6,8ea1c7c6v,c7c6v 5212 e58892 5212 00005212 a645 a645 a645 a645 a645 a645 a645
+915 a646 a646 a646 * 4747 * 8ea1c7c7,c7c7,8ea1c7c7v,c7c7v 520e e5888e 520e 0000520e a646 a646 a646 a646 a646 a646 a646
+916 a647 a647 a647 * 4748 * 8ea1c7c8,c7c8,8ea1c7c8v,c7c8v 5216 e58896 5216 00005216 a647 a647 a647 a647 a647 a647 a647
+917 a648 a648 a648 * 4749 * 8ea1c7c9,c7c9,8ea1c7c9v,c7c9v 52a3 e58aa3 52a3 000052a3 a648 a648 a648 a648 a648 a648 a648
+918 a649 a649 a649 * 474a * 8ea1c7ca,c7ca,8ea1c7cav,c7cav 5308 e58c88 5308 00005308 a649 a649 a649 a649 a649 a649 a649
+919 a64a a64a a64a * 474b * 8ea1c7cb,c7cb,8ea1c7cbv,c7cbv 5321 e58ca1 5321 00005321 a64a a64a a64a a64a a64a a64a a64a
+920 a64b a64b a64b * 474c * 8ea1c7cc,c7cc,8ea1c7ccv,c7ccv 5320 e58ca0 5320 00005320 a64b a64b a64b a64b a64b a64b a64b
+921 a64c a64c a64c * 474d * 8ea1c7cd,c7cd,8ea1c7cdv,c7cdv 5370 e58db0 5370 00005370 a64c a64c a64c a64c a64c a64c a64c
+922 a64d a64d a64d * 474e * 8ea1c7ce,c7ce,8ea1c7cev,c7cev 5371 e58db1 5371 00005371 a64d a64d a64d a64d a64d a64d a64d
+923 a64e a64e a64e * 474f * 8ea1c7cf,c7cf,8ea1c7cfv,c7cfv 5409 e59089 5409 00005409 a64e a64e a64e a64e a64e a64e a64e
+924 a64f a64f a64f * 4750 * 8ea1c7d0,c7d0,8ea1c7d0v,c7d0v 540f e5908f 540f 0000540f a64f a64f a64f a64f a64f a64f a64f
+925 a650 a650 a650 * 4751 * 8ea1c7d1,c7d1,8ea1c7d1v,c7d1v 540c e5908c 540c 0000540c a650 a650 a650 a650 a650 a650 a650
+926 a651 a651 a651 * 4752 * 8ea1c7d2,c7d2,8ea1c7d2v,c7d2v 540a e5908a 540a 0000540a a651 a651 a651 a651 a651 a651 a651
+927 a652 a652 a652 * 4753 * 8ea1c7d3,c7d3,8ea1c7d3v,c7d3v 5410 e59090 5410 00005410 a652 a652 a652 a652 a652 a652 a652
+928 a653 a653 a653 * 4754 * 8ea1c7d4,c7d4,8ea1c7d4v,c7d4v 5401 e59081 5401 00005401 a653 a653 a653 a653 a653 a653 a653
+929 a654 a654 a654 * 4755 * 8ea1c7d5,c7d5,8ea1c7d5v,c7d5v 540b e5908b 540b 0000540b a654 a654 a654 a654 a654 a654 a654
+930 a655 a655 a655 * 4756 * 8ea1c7d6,c7d6,8ea1c7d6v,c7d6v 5404 e59084 5404 00005404 a655 a655 a655 a655 a655 a655 a655
+931 a656 a656 a656 * 4757 * 8ea1c7d7,c7d7,8ea1c7d7v,c7d7v 5411 e59091 5411 00005411 a656 a656 a656 a656 a656 a656 a656
+932 a657 a657 a657 * 4758 * 8ea1c7d8,c7d8,8ea1c7d8v,c7d8v 540d e5908d 540d 0000540d a657 a657 a657 a657 a657 a657 a657
+933 a658 a658 a658 * 4759 * 8ea1c7d9,c7d9,8ea1c7d9v,c7d9v 5408 e59088 5408 00005408 a658 a658 a658 a658 a658 a658 a658
+934 a659 a659 a659 * 475a * 8ea1c7da,c7da,8ea1c7dav,c7dav 5403 e59083 5403 00005403 a659 a659 a659 a659 a659 a659 a659
+935 a65a a65a a65a * 475b * 8ea1c7db,c7db,8ea1c7dbv,c7dbv 540e e5908e 540e 0000540e a65a a65a a65a a65a a65a a65a a65a
+936 a65b a65b a65b * 475c * 8ea1c7dc,c7dc,8ea1c7dcv,c7dcv 5406 e59086 5406 00005406 a65b a65b a65b a65b a65b a65b a65b
+937 a65c a65c a65c * 475d * 8ea1c7dd,c7dd,8ea1c7ddv,c7ddv 5412 e59092 5412 00005412 a65c a65c a65c a65c a65c a65c a65c
+938 a65d a65d a65d * 475e * 8ea1c7de,c7de,8ea1c7dev,c7dev 56e0 e59ba0 56e0 000056e0 a65d a65d a65d a65d a65d a65d a65d
+939 a65e a65e a65e * 475f * 8ea1c7df,c7df,8ea1c7dfv,c7dfv 56de e59b9e 56de 000056de a65e a65e a65e a65e a65e a65e a65e
+940 a65f a65f a65f * 4760 * 8ea1c7e0,c7e0,8ea1c7e0v,c7e0v 56dd e59b9d 56dd 000056dd a65f a65f a65f a65f a65f a65f a65f
+941 a660 a660 a660 * 4761 * 8ea1c7e1,c7e1,8ea1c7e1v,c7e1v 5733 e59cb3 5733 00005733 a660 a660 a660 a660 a660 a660 a660
+942 a661 a661 a661 * 4762 * 8ea1c7e2,c7e2,8ea1c7e2v,c7e2v 5730 e59cb0 5730 00005730 a661 a661 a661 a661 a661 a661 a661
+943 a662 a662 a662 * 4763 * 8ea1c7e3,c7e3,8ea1c7e3v,c7e3v 5728 e59ca8 5728 00005728 a662 a662 a662 a662 a662 a662 a662
+944 a663 a663 a663 * 4764 * 8ea1c7e4,c7e4,8ea1c7e4v,c7e4v 572d e59cad 572d 0000572d a663 a663 a663 a663 a663 a663 a663
+945 a664 a664 a664 * 4765 * 8ea1c7e5,c7e5,8ea1c7e5v,c7e5v 572c e59cac 572c 0000572c a664 a664 a664 a664 a664 a664 a664
+946 a665 a665 a665 * 4766 * 8ea1c7e6,c7e6,8ea1c7e6v,c7e6v 572f e59caf 572f 0000572f a665 a665 a665 a665 a665 a665 a665
+947 a666 a666 a666 * 4767 * 8ea1c7e7,c7e7,8ea1c7e7v,c7e7v 5729 e59ca9 5729 00005729 a666 a666 a666 a666 a666 a666 a666
+948 a667 a667 a667 * 4768 * 8ea1c7e8,c7e8,8ea1c7e8v,c7e8v 5919 e5a499 5919 00005919 a667 a667 a667 a667 a667 a667 a667
+949 a668 a668 a668 * 4769 * 8ea1c7e9,c7e9,8ea1c7e9v,c7e9v 591a e5a49a 591a 0000591a a668 a668 a668 a668 a668 a668 a668
+950 a669 a669 a669 * 476a * 8ea1c7ea,c7ea,8ea1c7eav,c7eav 5937 e5a4b7 5937 00005937 a669 a669 a669 a669 a669 a669 a669
+951 a66a a66a a66a * 476b * 8ea1c7eb,c7eb,8ea1c7ebv,c7ebv 5938 e5a4b8 5938 00005938 a66a a66a a66a a66a a66a a66a a66a
+952 a66b a66b a66b * 476c * 8ea1c7ec,c7ec,8ea1c7ecv,c7ecv 5984 e5a684 5984 00005984 a66b a66b a66b a66b a66b a66b a66b
+953 a66c a66c a66c * 476d * 8ea1c7ed,c7ed,8ea1c7edv,c7edv 5978 e5a5b8 5978 00005978 a66c a66c a66c a66c a66c a66c a66c
+954 a66d a66d a66d * 476e * 8ea1c7ee,c7ee,8ea1c7eev,c7eev 5983 e5a683 5983 00005983 a66d a66d a66d a66d a66d a66d a66d
+955 a66e a66e a66e * 476f * 8ea1c7ef,c7ef,8ea1c7efv,c7efv 597d e5a5bd 597d 0000597d a66e a66e a66e a66e a66e a66e a66e
+956 a66f a66f a66f * 4770 * 8ea1c7f0,c7f0,8ea1c7f0v,c7f0v 5979 e5a5b9 5979 00005979 a66f a66f a66f a66f a66f a66f a66f
+957 a670 a670 a670 * 4771 * 8ea1c7f1,c7f1,8ea1c7f1v,c7f1v 5982 e5a682 5982 00005982 a670 a670 a670 a670 a670 a670 a670
+958 a671 a671 a671 * 4772 * 8ea1c7f2,c7f2,8ea1c7f2v,c7f2v 5981 e5a681 5981 00005981 a671 a671 a671 a671 a671 a671 a671
+959 a672 a672 a672 * 4773 * 8ea1c7f3,c7f3,8ea1c7f3v,c7f3v 5b57 e5ad97 5b57 00005b57 a672 a672 a672 a672 a672 a672 a672
+960 a673 a673 a673 * 4774 * 8ea1c7f4,c7f4,8ea1c7f4v,c7f4v 5b58 e5ad98 5b58 00005b58 a673 a673 a673 a673 a673 a673 a673
+961 a674 a674 a674 * 4775 * 8ea1c7f5,c7f5,8ea1c7f5v,c7f5v 5b87 e5ae87 5b87 00005b87 a674 a674 a674 a674 a674 a674 a674
+962 a675 a675 a675 * 4776 * 8ea1c7f6,c7f6,8ea1c7f6v,c7f6v 5b88 e5ae88 5b88 00005b88 a675 a675 a675 a675 a675 a675 a675
+963 a676 a676 a676 * 4777 * 8ea1c7f7,c7f7,8ea1c7f7v,c7f7v 5b85 e5ae85 5b85 00005b85 a676 a676 a676 a676 a676 a676 a676
+964 a677 a677 a677 * 4778 * 8ea1c7f8,c7f8,8ea1c7f8v,c7f8v 5b89 e5ae89 5b89 00005b89 a677 a677 a677 a677 a677 a677 a677
+965 a678 a678 a678 * 4779 * 8ea1c7f9,c7f9,8ea1c7f9v,c7f9v 5bfa e5afba 5bfa 00005bfa a678 a678 a678 a678 a678 a678 a678
+966 a679 a679 a679 * 477a * 8ea1c7fa,c7fa,8ea1c7fav,c7fav 5c16 e5b096 5c16 00005c16 a679 a679 a679 a679 a679 a679 a679
+967 a67a a67a a67a * 477b * 8ea1c7fb,c7fb,8ea1c7fbv,c7fbv 5c79 e5b1b9 5c79 00005c79 a67a a67a a67a a67a a67a a67a a67a
+968 a67b a67b a67b * 477c * 8ea1c7fc,c7fc,8ea1c7fcv,c7fcv 5dde e5b79e 5dde 00005dde a67b a67b a67b a67b a67b a67b a67b
+969 a67c a67c a67c * 477d * 8ea1c7fd,c7fd,8ea1c7fdv,c7fdv 5e06 e5b886 5e06 00005e06 a67c a67c a67c a67c a67c a67c a67c
+970 a67d a67d a67d * 477e * 8ea1c7fe,c7fe,8ea1c7fev,c7fev 5e76 e5b9b6 5e76 00005e76 a67d a67d a67d a67d a67d a67d a67d
+971 a67e a67e a67e * 4821 * 8ea1c8a1,c8a1,8ea1c8a1v,c8a1v 5e74 e5b9b4 5e74 00005e74 a67e a67e a67e a67e a67e a67e a67e
+972 a6a1 a6a1 a6a1 * 4822 * 8ea1c8a2,c8a2,8ea1c8a2v,c8a2v 5f0f e5bc8f 5f0f 00005f0f a6a1 a6a1 a6a1 a6a1 a6a1 a6a1 a6a1
+973 a6a2 a6a2 a6a2 * 4823 * 8ea1c8a3,c8a3,8ea1c8a3v,c8a3v 5f1b e5bc9b 5f1b 00005f1b a6a2 a6a2 a6a2 a6a2 a6a2 a6a2 a6a2
+974 a6a3 a6a3 a6a3 * 4824 * 8ea1c8a4,c8a4,8ea1c8a4v,c8a4v 5fd9 e5bf99 5fd9 00005fd9 a6a3 a6a3 a6a3 a6a3 a6a3 a6a3 a6a3
+975 a6a4 a6a4 a6a4 * 4825 * 8ea1c8a5,c8a5,8ea1c8a5v,c8a5v 5fd6 e5bf96 5fd6 00005fd6 a6a4 a6a4 a6a4 a6a4 a6a4 a6a4 a6a4
+976 a6a5 a6a5 a6a5 * 4826 * 8ea1c8a6,c8a6,8ea1c8a6v,c8a6v 620e e6888e 620e 0000620e a6a5 a6a5 a6a5 a6a5 a6a5 a6a5 a6a5
+977 a6a6 a6a6 a6a6 * 4827 * 8ea1c8a7,c8a7,8ea1c8a7v,c8a7v 620c e6888c 620c 0000620c a6a6 a6a6 a6a6 a6a6 a6a6 a6a6 a6a6
+978 a6a7 a6a7 a6a7 * 4828 * 8ea1c8a8,c8a8,8ea1c8a8v,c8a8v 620d e6888d 620d 0000620d a6a7 a6a7 a6a7 a6a7 a6a7 a6a7 a6a7
+979 a6a8 a6a8 a6a8 * 4829 * 8ea1c8a9,c8a9,8ea1c8a9v,c8a9v 6210 e68890 6210 00006210 a6a8 a6a8 a6a8 a6a8 a6a8 a6a8 a6a8
+980 a6a9 a6a9 a6a9 * 482a * 8ea1c8aa,c8aa,8ea1c8aav,c8aav 6263 e689a3 6263 00006263 a6a9 a6a9 a6a9 a6a9 a6a9 a6a9 a6a9
+981 a6aa a6aa a6aa * 482b * 8ea1c8ab,c8ab,8ea1c8abv,c8abv 625b e6899b 625b 0000625b a6aa a6aa a6aa a6aa a6aa a6aa a6aa
+982 a6ab a6ab a6ab * 482c * 8ea1c8ac,c8ac,8ea1c8acv,c8acv 6258 e68998 6258 00006258 a6ab a6ab a6ab a6ab a6ab a6ab a6ab
+983 a6ac a6ac a6ac * 482d * 8ea1c8ad,c8ad,8ea1c8adv,c8adv 6536 e694b6 6536 00006536 a6ac a6ac a6ac a6ac a6ac a6ac a6ac
+984 a6ad a6ad a6ad * 482e * 8ea1c8ae,c8ae,8ea1c8aev,c8aev 65e9 e697a9 65e9 000065e9 a6ad a6ad a6ad a6ad a6ad a6ad a6ad
+985 a6ae a6ae a6ae * 482f * 8ea1c8af,c8af,8ea1c8afv,c8afv 65e8 e697a8 65e8 000065e8 a6ae a6ae a6ae a6ae a6ae a6ae a6ae
+986 a6af a6af a6af * 4830 * 8ea1c8b0,c8b0,8ea1c8b0v,c8b0v 65ec e697ac 65ec 000065ec a6af a6af a6af a6af a6af a6af a6af
+987 a6b0 a6b0 a6b0 * 4831 * 8ea1c8b1,c8b1,8ea1c8b1v,c8b1v 65ed e697ad 65ed 000065ed a6b0 a6b0 a6b0 a6b0 a6b0 a6b0 a6b0
+988 a6b1 a6b1 a6b1 * 4832 * 8ea1c8b2,c8b2,8ea1c8b2v,c8b2v 66f2 e69bb2 66f2 000066f2 a6b1 a6b1 a6b1 a6b1 a6b1 a6b1 a6b1
+989 a6b2 a6b2 a6b2 * 4833 * 8ea1c8b3,c8b3,8ea1c8b3v,c8b3v 66f3 e69bb3 66f3 000066f3 a6b2 a6b2 a6b2 a6b2 a6b2 a6b2 a6b2
+990 a6b3 a6b3 a6b3 * 4834 * 8ea1c8b4,c8b4,8ea1c8b4v,c8b4v 6709 e69c89 6709 00006709 a6b3 a6b3 a6b3 a6b3 a6b3 a6b3 a6b3
+991 a6b4 a6b4 a6b4 * 4835 * 8ea1c8b5,c8b5,8ea1c8b5v,c8b5v 673d e69cbd 673d 0000673d a6b4 a6b4 a6b4 a6b4 a6b4 a6b4 a6b4
+992 a6b5 a6b5 a6b5 * 4836 * 8ea1c8b6,c8b6,8ea1c8b6v,c8b6v 6734 e69cb4 6734 00006734 a6b5 a6b5 a6b5 a6b5 a6b5 a6b5 a6b5
+993 a6b6 a6b6 a6b6 * 4837 * 8ea1c8b7,c8b7,8ea1c8b7v,c8b7v 6731 e69cb1 6731 00006731 a6b6 a6b6 a6b6 a6b6 a6b6 a6b6 a6b6
+994 a6b7 a6b7 a6b7 * 4838 * 8ea1c8b8,c8b8,8ea1c8b8v,c8b8v 6735 e69cb5 6735 00006735 a6b7 a6b7,fcac a6b7 a6b7 a6b7 a6b7 a6b7
+995 a6b8 a6b8 a6b8 * 4839 * 8ea1c8b9,c8b9,8ea1c8b9v,c8b9v 6b21 e6aca1 6b21 00006b21 a6b8 a6b8 a6b8 a6b8 a6b8 a6b8 a6b8
+996 a6b9 a6b9 a6b9 * 483a * 8ea1c8ba,c8ba,8ea1c8bav,c8bav 6b64 e6ada4 6b64 00006b64 a6b9 a6b9 a6b9 a6b9 a6b9 a6b9 a6b9
+997 a6ba a6ba a6ba * 483b * 8ea1c8bb,c8bb,8ea1c8bbv,c8bbv 6b7b e6adbb 6b7b 00006b7b a6ba a6ba a6ba a6ba a6ba a6ba a6ba
+998 a6bb a6bb a6bb * 483c * 8ea1c8bc,c8bc,8ea1c8bcv,c8bcv 6c16 e6b096 6c16 00006c16 a6bb a6bb a6bb a6bb a6bb a6bb a6bb
+999 a6bc a6bc a6bc * 483d * 8ea1c8bd,c8bd,8ea1c8bdv,c8bdv 6c5d e6b19d 6c5d 00006c5d a6bc a6bc a6bc a6bc a6bc a6bc a6bc
+1000 a6bd a6bd a6bd * 483e * 8ea1c8be,c8be,8ea1c8bev,c8bev 6c57 e6b197 6c57 00006c57 a6bd a6bd a6bd a6bd a6bd a6bd a6bd
+1001 a6be a6be a6be * 483f * 8ea1c8bf,c8bf,8ea1c8bfv,c8bfv 6c59 e6b199 6c59 00006c59 a6be a6be a6be a6be a6be a6be a6be
+1002 a6bf a6bf a6bf * 4840 * 8ea1c8c0,c8c0,8ea1c8c0v,c8c0v 6c5f e6b19f 6c5f 00006c5f a6bf a6bf a6bf a6bf a6bf a6bf a6bf
+1003 a6c0 a6c0 a6c0 * 4841 * 8ea1c8c1,c8c1,8ea1c8c1v,c8c1v 6c60 e6b1a0 6c60 00006c60 a6c0 a6c0 a6c0 a6c0 a6c0 a6c0 a6c0
+1004 a6c1 a6c1 a6c1 * 4842 * 8ea1c8c2,c8c2,8ea1c8c2v,c8c2v 6c50 e6b190 6c50 00006c50 a6c1 a6c1 a6c1 a6c1 a6c1 a6c1 a6c1
+1005 a6c2 a6c2 a6c2 * 4843 * 8ea1c8c3,c8c3,8ea1c8c3v,c8c3v 6c55 e6b195 6c55 00006c55 a6c2 a6c2 a6c2 a6c2 a6c2 a6c2 a6c2
+1006 a6c3 a6c3 a6c3 * 4844 * 8ea1c8c4,c8c4,8ea1c8c4v,c8c4v 6c61 e6b1a1 6c61 00006c61 a6c3 a6c3 a6c3 a6c3 a6c3 a6c3 a6c3
+1007 a6c4 a6c4 a6c4 * 4845 * 8ea1c8c5,c8c5,8ea1c8c5v,c8c5v 6c5b e6b19b 6c5b 00006c5b a6c4 a6c4 a6c4 a6c4 a6c4 a6c4 a6c4
+1008 a6c5 a6c5 a6c5 * 4846 * 8ea1c8c6,c8c6,8ea1c8c6v,c8c6v 6c4d e6b18d 6c4d 00006c4d a6c5 a6c5 a6c5 a6c5 a6c5 a6c5 a6c5
+1009 a6c6 a6c6 a6c6 * 4847 * 8ea1c8c7,c8c7,8ea1c8c7v,c8c7v 6c4e e6b18e 6c4e 00006c4e a6c6 a6c6 a6c6 a6c6 a6c6 a6c6 a6c6
+1010 a6c7 a6c7 a6c7 * 4848 * 8ea1c8c8,c8c8,8ea1c8c8v,c8c8v 7070 e781b0 7070 00007070 a6c7 a6c7 a6c7 a6c7 a6c7 a6c7 a6c7
+1011 a6c8 a6c8 a6c8 * 4849 * 8ea1c8c9,c8c9,8ea1c8c9v,c8c9v 725f e7899f 725f 0000725f a6c8 a6c8 a6c8 a6c8 a6c8 a6c8 a6c8
+1012 a6c9 a6c9 a6c9 * 484a * 8ea1c8ca,c8ca,8ea1c8cav,c8cav 725d e7899d 725d 0000725d a6c9 a6c9 a6c9 a6c9 a6c9 a6c9 a6c9
+1013 a6ca a6ca a6ca * 484b * 8ea1c8cb,c8cb,8ea1c8cbv,c8cbv 767e e799be 767e 0000767e a6ca a6ca a6ca a6ca a6ca a6ca a6ca
+1014 a6cb a6cb a6cb * 2837,484c * 8ea1a8b7,8ea1c8cc,a8b7,c8cc,8ea1a8b7v,8ea1c8ccv,a8b7v,c8ccv 7af9 e7abb9,e2bdb5 7af9,2f75 00007af9,00002f75 a6cb a6cb a6cb a6cb a6cb a6cb a6cb
+1015 a6cc a6cc a6cc * 2838,484d * 8ea1a8b8,8ea1c8cd,a8b8,c8cd,8ea1a8b8v,8ea1c8cdv,a8b8v,c8cdv 7c73 e7b1b3,e2bdb6 7c73,2f76 00007c73,00002f76 a6cc a6cc a6cc a6cc a6cc a6cc a6cc
+1016 a6cd a6cd a6cd * 2839,484e * 8ea1a8b9,8ea1c8ce,a8b9,c8ce,8ea1a8b9v,8ea1c8cev,a8b9v,c8cev 7cf8 e7b3b8,e2bdb7 7cf8,2f77 00007cf8,00002f77 a6cd a6cd a6cd a6cd a6cd a6cd a6cd
+1017 a6ce a6ce a6ce * 283a,484f * 8ea1a8ba,8ea1c8cf,a8ba,c8cf,8ea1a8bav,8ea1c8cfv,a8bav,c8cfv 7f36 e7bcb6,e2bdb8 7f36,2f78 00007f36,00002f78 a6ce a6ce a6ce a6ce a6ce a6ce a6ce
+1018 a6cf a6cf a6cf * 283c,4850 * 8ea1a8bc,8ea1c8d0,a8bc,c8d0,8ea1a8bcv,8ea1c8d0v,a8bcv,c8d0v 7f8a e7be8a,e2bdba 7f8a,2f7a 00007f8a,00002f7a a6cf a6cf a6cf a6cf a6cf a6cf a6cf
+1019 a6d0 a6d0 a6d0 * 283d,4851 * 8ea1a8bd,8ea1c8d1,a8bd,c8d1,8ea1a8bdv,8ea1c8d1v,a8bdv,c8d1v 7fbd e7bebd,e2bdbb 7fbd,2f7b 00007fbd,00002f7b a6d0 a6d0 a6d0 a6d0 a6d0 a6d0 a6d0
+1020 a6d1 a6d1 a6d1 * 283e,4852 * 8ea1a8be,8ea1c8d2,a8be,c8d2,8ea1a8bev,8ea1c8d2v,a8bev,c8d2v 8001 e88081,e2bdbc 8001,2f7c 00008001,00002f7c a6d1 a6d1 a6d1 a6d1 a6d1 a6d1 a6d1
+1021 a6d2 a6d2 a6d2 * 4853 * 8ea1c8d3,c8d3,8ea1c8d3v,c8d3v 8003 e88083 8003 00008003 a6d2 a6d2 a6d2 a6d2 a6d2 a6d2 a6d2
+1022 a6d3 a6d3 a6d3 * 283f,4854 * 8ea1a8bf,8ea1c8d4,a8bf,c8d4,8ea1a8bfv,8ea1c8d4v,a8bfv,c8d4v 800c e8808c,e2bdbd 800c,2f7d 0000800c,00002f7d a6d3 a6d3 a6d3 a6d3 a6d3 a6d3 a6d3
+1023 a6d4 a6d4 a6d4 * 2840,4855 * 8ea1a8c0,8ea1c8d5,a8c0,c8d5,8ea1a8c0v,8ea1c8d5v,a8c0v,c8d5v 8012 e88092,e2bdbe 8012,2f7e 00008012,00002f7e a6d4 a6d4 a6d4 a6d4 a6d4 a6d4 a6d4
+1024 a6d5 a6d5 a6d5 * 2841,4856 * 8ea1a8c1,8ea1c8d6,a8c1,c8d6,8ea1a8c1v,8ea1c8d6v,a8c1v,c8d6v 8033 e880b3,e2bdbf 8033,2f7f 00008033,00002f7f a6d5 a6d5 a6d5 a6d5 a6d5 a6d5 a6d5
+1025 a6d6 a6d6 a6d6 * 2842,4857 * 8ea1a8c2,8ea1c8d7,a8c2,c8d7,8ea1a8c2v,8ea1c8d7v,a8c2v,c8d7v 807f e881bf,e2be80 807f,2f80 0000807f,00002f80 a6d6 a6d6 a6d6 a6d6 a6d6 a6d6 a6d6
+1026 a6d7 a6d7 a6d7 * 2843,4858 * 8ea1a8c3,8ea1c8d8,a8c3,c8d8,8ea1a8c3v,8ea1c8d8v,a8c3v,c8d8v 8089 e88289,e2be81 8089,2f81 00008089,00002f81 a6d7 a6d7 a6d7 a6d7 a6d7 a6d7 a6d7
+1027 a6d8 a6d8 a6d8 * 4859 * 8ea1c8d9,c8d9,8ea1c8d9v,c8d9v 808b e8828b 808b 0000808b a6d8 a6d8 a6d8 a6d8 a6d8 a6d8 a6d8
+1028 a6d9 a6d9 a6d9 * 485a * 8ea1c8da,c8da,8ea1c8dav,c8dav 808c e8828c 808c 0000808c a6d9 a6d9 a6d9 a6d9 a6d9 a6d9 a6d9
+1029 a6da a6da a6da * 2844,485b * 8ea1a8c4,8ea1c8db,a8c4,c8db,8ea1a8c4v,8ea1c8dbv,a8c4v,c8dbv 81e3 e887a3,e2be82 81e3,2f82 000081e3,00002f82 a6da a6da a6da a6da a6da a6da a6da
+1030 a6db a6db a6db * 2845,485c * 8ea1a8c5,8ea1c8dc,a8c5,c8dc,8ea1a8c5v,8ea1c8dcv,a8c5v,c8dcv 81ea e887aa,e2be83 81ea,2f83 000081ea,00002f83 a6db a6db a6db a6db a6db a6db a6db
+1031 a6dc a6dc a6dc * 2846,485d * 8ea1a8c6,8ea1c8dd,a8c6,c8dd,8ea1a8c6v,8ea1c8ddv,a8c6v,c8ddv 81f3 e887b3,e2be84 81f3,2f84 000081f3,00002f84 a6dc a6dc a6dc a6dc a6dc a6dc a6dc
+1032 a6dd a6dd a6dd * 2847,485e * 8ea1a8c7,8ea1c8de,a8c7,c8de,8ea1a8c7v,8ea1c8dev,a8c7v,c8dev 81fc e887bc,e2be85 81fc,2f85 000081fc,00002f85 a6dd a6dd a6dd a6dd a6dd a6dd a6dd
+1033 a6de a6de a6de * 2848,485f * 8ea1a8c8,8ea1c8df,a8c8,c8df,8ea1a8c8v,8ea1c8dfv,a8c8v,c8dfv 820c e8888c,e2be86 820c,2f86 0000820c,00002f86 a6de a6de a6de a6de a6de a6de a6de
+1034 a6df a6df a6df * 2849,4860 * 8ea1a8c9,8ea1c8e0,a8c9,c8e0,8ea1a8c9v,8ea1c8e0v,a8c9v,c8e0v 821b e8889b,e2be87 821b,2f87 0000821b,00002f87 a6df a6df a6df a6df a6df a6df a6df
+1035 a6e0 a6e0 a6e0 * 284a,4861 * 8ea1a8ca,8ea1c8e1,a8ca,c8e1,8ea1a8cav,8ea1c8e1v,a8cav,c8e1v 821f e8889f,e2be88 821f,2f88 0000821f,00002f88 a6e0 a6e0 a6e0 a6e0 a6e0 a6e0 a6e0
+1036 a6e1 a6e1 a6e1 * 284b,4862 * 8ea1a8cb,8ea1c8e2,a8cb,c8e2,8ea1a8cbv,8ea1c8e2v,a8cbv,c8e2v 826e e889ae,e2be89 826e,2f89 0000826e,00002f89 a6e1 a6e1 a6e1 a6e1 a6e1 a6e1 a6e1
+1037 a6e2 a6e2 a6e2 * 284c,4863 * 8ea1a8cc,8ea1c8e3,a8cc,c8e3,8ea1a8ccv,8ea1c8e3v,a8ccv,c8e3v 8272 e889b2,e2be8a 8272,2f8a 00008272,00002f8a a6e2 a6e2 a6e2 a6e2 a6e2 a6e2 a6e2
+1038 a6e3 a6e3 a6e3 * 4864 * 8ea1c8e4,c8e4,8ea1c8e4v,c8e4v 827e e889be 827e 0000827e a6e3 a6e3 a6e3 a6e3 a6e3 a6e3 a6e3
+1039 a6e4 a6e4 a6e4 * 284f,4865 * 8ea1a8cf,8ea1c8e5,a8cf,c8e5,8ea1a8cfv,8ea1c8e5v,a8cfv,c8e5v 866b e899ab,e2be8d 866b,2f8d 0000866b,00002f8d a6e4 a6e4 a6e4 a6e4 a6e4 a6e4 a6e4
+1040 a6e5 a6e5 a6e5 * 2850,4866 * 8ea1a8d0,8ea1c8e6,a8d0,c8e6,8ea1a8d0v,8ea1c8e6v,a8d0v,c8e6v 8840 e8a180,e2be8e 8840,2f8e 00008840,00002f8e a6e5 a6e5 a6e5 a6e5 a6e5 a6e5 a6e5
+1041 a6e6 a6e6 a6e6 * 2851,4867 * 8ea1a8d1,8ea1c8e7,a8d1,c8e7,8ea1a8d1v,8ea1c8e7v,a8d1v,c8e7v 884c e8a18c,e2be8f 884c,2f8f 0000884c,00002f8f a6e6 a6e6 a6e6 a6e6 a6e6 a6e6 a6e6
+1042 a6e7 a6e7 a6e7 * 2852,4868 * 8ea1a8d2,8ea1c8e8,a8d2,c8e8,8ea1a8d2v,8ea1c8e8v,a8d2v,c8e8v 8863 e8a1a3,e2be90 8863,2f90 00008863,00002f90 a6e7 a6e7 a6e7 a6e7 a6e7 a6e7 a6e7
+1043 a6e8 a6e8 a6e8 * 4869 * 8ea1c8e9,c8e9,8ea1c8e9v,c8e9v 897f e8a5bf 897f 0000897f a6e8 a6e8 a6e8 a6e8 a6e8 a6e8 a6e8
+1044 a6e9 a6e9 a6e9 * 486a * 8ea1c8ea,c8ea,8ea1c8eav,c8eav 9621 e998a1 9621 00009621 a6e9 a6e9 a6e9 a6e9 a6e9 a6e9 a6e9
+1045 a6ea a6ea a6ea * 486b * 8ea1c8eb,c8eb,8ea1c8ebv,c8ebv 4e32 e4b8b2 4e32 00004e32 a6ea a6ea a6ea a6ea a6ea a6ea a6ea
+1046 a6eb a6eb a6eb * 486c * 8ea1c8ec,c8ec,8ea1c8ecv,c8ecv 4ea8 e4baa8 4ea8 00004ea8 a6eb a6eb a6eb a6eb a6eb a6eb a6eb
+1047 a6ec a6ec a6ec * 486d * 8ea1c8ed,c8ed,8ea1c8edv,c8edv 4f4d e4bd8d 4f4d 00004f4d a6ec a6ec a6ec a6ec a6ec a6ec a6ec
+1048 a6ed a6ed a6ed * 486e * 8ea1c8ee,c8ee,8ea1c8eev,c8eev 4f4f e4bd8f 4f4f 00004f4f a6ed a6ed a6ed a6ed a6ed a6ed a6ed
+1049 a6ee a6ee a6ee * 486f * 8ea1c8ef,c8ef,8ea1c8efv,c8efv 4f47 e4bd87 4f47 00004f47 a6ee a6ee a6ee a6ee a6ee a6ee a6ee
+1050 a6ef a6ef a6ef * 4870 * 8ea1c8f0,c8f0,8ea1c8f0v,c8f0v 4f57 e4bd97 4f57 00004f57 a6ef a6ef a6ef a6ef a6ef a6ef a6ef
+1051 a6f0 a6f0 a6f0 * 4871 * 8ea1c8f1,c8f1,8ea1c8f1v,c8f1v 4f5e e4bd9e 4f5e 00004f5e a6f0 a6f0 a6f0 a6f0 a6f0 a6f0 a6f0
+1052 a6f1 a6f1 a6f1 * 4872 * 8ea1c8f2,c8f2,8ea1c8f2v,c8f2v 4f34 e4bcb4 4f34 00004f34 a6f1 a6f1 a6f1 a6f1 a6f1 a6f1 a6f1
+1053 a6f2 a6f2 a6f2 * 4873 * 8ea1c8f3,c8f3,8ea1c8f3v,c8f3v 4f5b e4bd9b 4f5b 00004f5b a6f2 a6f2 a6f2 a6f2 a6f2 a6f2 a6f2
+1054 a6f3 a6f3 a6f3 * 4874 * 8ea1c8f4,c8f4,8ea1c8f4v,c8f4v 4f55 e4bd95 4f55 00004f55 a6f3 a6f3 a6f3 a6f3 a6f3 a6f3 a6f3
+1055 a6f4 a6f4 a6f4 * 4875 * 8ea1c8f5,c8f5,8ea1c8f5v,c8f5v 4f30 e4bcb0 4f30 00004f30 a6f4 a6f4 a6f4 a6f4 a6f4 a6f4 a6f4
+1056 a6f5 a6f5 a6f5 * 4876 * 8ea1c8f6,c8f6,8ea1c8f6v,c8f6v 4f50 e4bd90 4f50 00004f50 a6f5 a6f5 a6f5 a6f5 a6f5 a6f5 a6f5
+1057 a6f6 a6f6 a6f6 * 4877 * 8ea1c8f7,c8f7,8ea1c8f7v,c8f7v 4f51 e4bd91 4f51 00004f51 a6f6 a6f6 a6f6 a6f6 a6f6 a6f6 a6f6
+1058 a6f7 a6f7 a6f7 * 4878 * 8ea1c8f8,c8f8,8ea1c8f8v,c8f8v 4f3d e4bcbd 4f3d 00004f3d a6f7 a6f7 a6f7 a6f7 a6f7 a6f7 a6f7
+1059 a6f8 a6f8 a6f8 * 4879 * 8ea1c8f9,c8f9,8ea1c8f9v,c8f9v 4f3a e4bcba 4f3a 00004f3a a6f8 a6f8 a6f8 a6f8 a6f8 a6f8 a6f8
+1060 a6f9 a6f9 a6f9 * 487a * 8ea1c8fa,c8fa,8ea1c8fav,c8fav 4f38 e4bcb8 4f38 00004f38 a6f9 a6f9 a6f9 a6f9 a6f9 a6f9 a6f9
+1061 a6fa a6fa a6fa * 487b * 8ea1c8fb,c8fb,8ea1c8fbv,c8fbv 4f43 e4bd83 4f43 00004f43 a6fa a6fa a6fa a6fa a6fa a6fa a6fa
+1062 a6fb a6fb a6fb * 487c * 8ea1c8fc,c8fc,8ea1c8fcv,c8fcv 4f54 e4bd94 4f54 00004f54 a6fb a6fb a6fb a6fb a6fb a6fb a6fb
+1063 a6fc a6fc a6fc * 487d * 8ea1c8fd,c8fd,8ea1c8fdv,c8fdv 4f3c e4bcbc 4f3c 00004f3c a6fc a6fc a6fc a6fc a6fc a6fc a6fc
+1064 a6fd a6fd a6fd * 487e * 8ea1c8fe,c8fe,8ea1c8fev,c8fev 4f46 e4bd86 4f46 00004f46 a6fd a6fd a6fd a6fd a6fd a6fd a6fd
+1065 a6fe a6fe a6fe * 4921 * 8ea1c9a1,c9a1,8ea1c9a1v,c9a1v 4f63 e4bda3 4f63 00004f63 a6fe a6fe a6fe a6fe a6fe a6fe a6fe
+1066 a740 a740 a740 * 4922 * 8ea1c9a2,c9a2,8ea1c9a2v,c9a2v 4f5c e4bd9c 4f5c 00004f5c a740 a740 a740 a740 a740 a740 a740
+1067 a741 a741 a741 * 4923 * 8ea1c9a3,c9a3,8ea1c9a3v,c9a3v 4f60 e4bda0 4f60 00004f60 a741 a741 a741 a741 a741 a741 a741
+1068 a742 a742 a742 * 4924 * 8ea1c9a4,c9a4,8ea1c9a4v,c9a4v 4f2f e4bcaf 4f2f 00004f2f a742 a742 a742 a742 a742 a742 a742
+1069 a743 a743 a743 * 4925 * 8ea1c9a5,c9a5,8ea1c9a5v,c9a5v 4f4e e4bd8e 4f4e 00004f4e a743 a743 a743 a743 a743 a743 a743
+1070 a744 a744 a744 * 4926 * 8ea1c9a6,c9a6,8ea1c9a6v,c9a6v 4f36 e4bcb6 4f36 00004f36 a744 a744 a744 a744 a744 a744 a744
+1071 a745 a745 a745 * 4927 * 8ea1c9a7,c9a7,8ea1c9a7v,c9a7v 4f59 e4bd99 4f59 00004f59 a745 a745 a745 a745 a745 a745 a745
+1072 a746 a746 a746 * 4928 * 8ea1c9a8,c9a8,8ea1c9a8v,c9a8v 4f5d e4bd9d 4f5d 00004f5d a746 a746 a746 a746 a746 a746 a746
+1073 a747 a747 a747 * 4929 * 8ea1c9a9,c9a9,8ea1c9a9v,c9a9v 4f48 e4bd88 4f48 00004f48 a747 a747 a747 a747 a747 a747 a747
+1074 a748 a748 a748 * 492a * 8ea1c9aa,c9aa,8ea1c9aav,c9aav 4f5a e4bd9a 4f5a 00004f5a a748 a748 a748 a748 a748 a748 a748
+1075 a749 a749 a749 * 492b * 8ea1c9ab,c9ab,8ea1c9abv,c9abv 514c e5858c 514c 0000514c a749 a749 a749 a749 a749 a749 a749
+1076 a74a a74a a74a * 492c * 8ea1c9ac,c9ac,8ea1c9acv,c9acv 514b e5858b 514b 0000514b a74a a74a a74a a74a a74a a74a a74a
+1077 a74b a74b a74b * 492d * 8ea1c9ad,c9ad,8ea1c9adv,c9adv 514d e5858d 514d 0000514d a74b a74b a74b a74b a74b a74b a74b
+1078 a74c a74c a74c * 492e * 8ea1c9ae,c9ae,8ea1c9aev,c9aev 5175 e585b5 5175 00005175 a74c a74c a74c a74c a74c a74c a74c
+1079 a74d a74d a74d * 492f * 8ea1c9af,c9af,8ea1c9afv,c9afv 51b6 e586b6 51b6 000051b6 a74d a74d a74d a74d a74d a74d a74d
+1080 a74e a74e a74e * 4930 * 8ea1c9b0,c9b0,8ea1c9b0v,c9b0v 51b7 e586b7 51b7 000051b7 a74e a74e a74e a74e a74e a74e a74e
+1081 a74f a74f a74f * 4931 * 8ea1c9b1,c9b1,8ea1c9b1v,c9b1v 5225 e588a5 5225 00005225 a74f a74f a74f a74f a74f a74f a74f
+1082 a750 a750 a750 * 4932 * 8ea1c9b2,c9b2,8ea1c9b2v,c9b2v 5224 e588a4 5224 00005224 a750 a750 a750 a750 a750 a750 a750
+1083 a751 a751 a751 * 4933 * 8ea1c9b3,c9b3,8ea1c9b3v,c9b3v 5229 e588a9 5229 00005229 a751 a751 a751 a751 a751 a751 a751
+1084 a752 a752 a752 * 4934 * 8ea1c9b4,c9b4,8ea1c9b4v,c9b4v 522a e588aa 522a 0000522a a752 a752 a752 a752 a752 a752 a752
+1085 a753 a753 a753 * 4935 * 8ea1c9b5,c9b5,8ea1c9b5v,c9b5v 5228 e588a8 5228 00005228 a753 a753 a753 a753 a753 a753 a753
+1086 a754 a754 a754 * 4936 * 8ea1c9b6,c9b6,8ea1c9b6v,c9b6v 52ab e58aab 52ab 000052ab a754 a754 a754 a754 a754 a754 a754
+1087 a755 a755 a755 * 4937 * 8ea1c9b7,c9b7,8ea1c9b7v,c9b7v 52a9 e58aa9 52a9 000052a9 a755 a755 a755 a755 a755 a755 a755
+1088 a756 a756 a756 * 4938 * 8ea1c9b8,c9b8,8ea1c9b8v,c9b8v 52aa e58aaa 52aa 000052aa a756 a756 a756 a756 a756 a756 a756
+1089 a757 a757 a757 * 4939 * 8ea1c9b9,c9b9,8ea1c9b9v,c9b9v 52ac e58aac 52ac 000052ac a757 a757 a757 a757 a757 a757 a757
+1090 a758 a758 a758 * 493a * 8ea1c9ba,c9ba,8ea1c9bav,c9bav 5323 e58ca3 5323 00005323 a758 a758 a758 a758 a758 a758 a758
+1091 a759 a759 a759 * 493b * 8ea1c9bb,c9bb,8ea1c9bbv,c9bbv 5373 e58db3 5373 00005373 a759 a759 a759 a759 a759 a759 a759
+1092 a75a a75a a75a * 493c * 8ea1c9bc,c9bc,8ea1c9bcv,c9bcv 5375 e58db5 5375 00005375 a75a a75a a75a a75a a75a a75a a75a
+1093 a75b a75b a75b * 493d * 8ea1c9bd,c9bd,8ea1c9bdv,c9bdv 541d e5909d 541d 0000541d a75b a75b a75b a75b a75b a75b a75b
+1094 a75c a75c a75c * 493e * 8ea1c9be,c9be,8ea1c9bev,c9bev 542d e590ad 542d 0000542d a75c a75c a75c a75c a75c a75c a75c
+1095 a75d a75d a75d * 493f * 8ea1c9bf,c9bf,8ea1c9bfv,c9bfv 541e e5909e 541e 0000541e a75d a75d a75d a75d a75d a75d a75d
+1096 a75e a75e a75e * 4940 * 8ea1c9c0,c9c0,8ea1c9c0v,c9c0v 543e e590be 543e 0000543e a75e a75e a75e a75e a75e a75e a75e
+1097 a75f a75f a75f * 4941 * 8ea1c9c1,c9c1,8ea1c9c1v,c9c1v 5426 e590a6 5426 00005426 a75f a75f a75f a75f a75f a75f a75f
+1098 a760 a760 a760 * 4942 * 8ea1c9c2,c9c2,8ea1c9c2v,c9c2v 544e e5918e 544e 0000544e a760 a760 a760 a760 a760 a760 a760
+1099 a761 a761 a761 * 4943 * 8ea1c9c3,c9c3,8ea1c9c3v,c9c3v 5427 e590a7 5427 00005427 a761 a761 a761 a761 a761 a761 a761
+1100 a762 a762 a762 * 4944 * 8ea1c9c4,c9c4,8ea1c9c4v,c9c4v 5446 e59186 5446 00005446 a762 a762 a762 a762 a762 a762 a762
+1101 a763 a763 a763 * 4945 * 8ea1c9c5,c9c5,8ea1c9c5v,c9c5v 5443 e59183 5443 00005443 a763 a763 a763 a763 a763 a763 a763
+1102 a764 a764 a764 * 4946 * 8ea1c9c6,c9c6,8ea1c9c6v,c9c6v 5433 e590b3 5433 00005433 a764 a764 a764 a764 a764 a764 a764
+1103 a765 a765 a765 * 4947 * 8ea1c9c7,c9c7,8ea1c9c7v,c9c7v 5448 e59188 5448 00005448 a765 a765 a765 a765 a765 a765 a765
+1104 a766 a766 a766 * 4948 * 8ea1c9c8,c9c8,8ea1c9c8v,c9c8v 5442 e59182 5442 00005442 a766 a766 a766 a766 a766 a766 a766
+1105 a767 a767 a767 * 4949 * 8ea1c9c9,c9c9,8ea1c9c9v,c9c9v 541b e5909b 541b 0000541b a767 a767 a767 a767 a767 a767 a767
+1106 a768 a768 a768 * 494a * 8ea1c9ca,c9ca,8ea1c9cav,c9cav 5429 e590a9 5429 00005429 a768 a768 a768 a768 a768 a768 a768
+1107 a769 a769 a769 * 494b * 8ea1c9cb,c9cb,8ea1c9cbv,c9cbv 544a e5918a 544a 0000544a a769 a769 a769 a769 a769 a769 a769
+1108 a76a a76a a76a * 494c * 8ea1c9cc,c9cc,8ea1c9ccv,c9ccv 5439 e590b9 5439 00005439 a76a a76a a76a a76a a76a a76a a76a
+1109 a76b a76b a76b * 494d * 8ea1c9cd,c9cd,8ea1c9cdv,c9cdv 543b e590bb 543b 0000543b a76b a76b a76b a76b a76b a76b a76b
+1110 a76c a76c a76c * 494e * 8ea1c9ce,c9ce,8ea1c9cev,c9cev 5438 e590b8 5438 00005438 a76c a76c a76c a76c a76c a76c a76c
+1111 a76d a76d a76d * 494f * 8ea1c9cf,c9cf,8ea1c9cfv,c9cfv 542e e590ae 542e 0000542e a76d a76d a76d a76d a76d a76d a76d
+1112 a76e a76e a76e * 4950 * 8ea1c9d0,c9d0,8ea1c9d0v,c9d0v 5435 e590b5 5435 00005435 a76e a76e a76e a76e a76e a76e a76e
+1113 a76f a76f a76f * 4951 * 8ea1c9d1,c9d1,8ea1c9d1v,c9d1v 5436 e590b6 5436 00005436 a76f a76f a76f a76f a76f a76f a76f
+1114 a770 a770 a770 * 4952 * 8ea1c9d2,c9d2,8ea1c9d2v,c9d2v 5420 e590a0 5420 00005420 a770 a770 a770 a770 a770 a770 a770
+1115 a771 a771 a771 * 4953 * 8ea1c9d3,c9d3,8ea1c9d3v,c9d3v 543c e590bc 543c 0000543c a771 a771 a771 a771 a771 a771 a771
+1116 a772 a772 a772 * 4954 * 8ea1c9d4,c9d4,8ea1c9d4v,c9d4v 5440 e59180 5440 00005440 a772 a772 a772 a772 a772 a772 a772
+1117 a773 a773 a773 * 4955 * 8ea1c9d5,c9d5,8ea1c9d5v,c9d5v 5431 e590b1 5431 00005431 a773 a773 a773 a773 a773 a773 a773
+1118 a774 a774 a774 * 4956 * 8ea1c9d6,c9d6,8ea1c9d6v,c9d6v 542b e590ab 542b 0000542b a774 a774 a774 a774 a774 a774 a774
+1119 a775 a775 a775 * 4957 * 8ea1c9d7,c9d7,8ea1c9d7v,c9d7v 541f e5909f 541f 0000541f a775 a775 a775 a775 a775 a775 a775
+1120 a776 a776 a776 * 4958 * 8ea1c9d8,c9d8,8ea1c9d8v,c9d8v 542c e590ac 542c 0000542c a776 a776 a776 a776 a776 a776 a776
+1121 a777 a777 a777 * 4959 * 8ea1c9d9,c9d9,8ea1c9d9v,c9d9v 56ea e59baa 56ea 000056ea a777 a777 a777 a777 a777 a777 a777
+1122 a778 a778 a778 * 495a * 8ea1c9da,c9da,8ea1c9dav,c9dav 56f0 e59bb0 56f0 000056f0 a778 a778 a778 a778 a778 a778 a778
+1123 a779 a779 a779 * 495b * 8ea1c9db,c9db,8ea1c9dbv,c9dbv 56e4 e59ba4 56e4 000056e4 a779 a779 a779 a779 a779 a779 a779
+1124 a77a a77a a77a * 495c * 8ea1c9dc,c9dc,8ea1c9dcv,c9dcv 56eb e59bab 56eb 000056eb a77a a77a a77a a77a a77a a77a a77a
+1125 a77b a77b a77b * 495d * 8ea1c9dd,c9dd,8ea1c9ddv,c9ddv 574a e59d8a 574a 0000574a a77b a77b a77b a77b a77b a77b a77b
+1126 a77c a77c a77c * 495e * 8ea1c9de,c9de,8ea1c9dev,c9dev 5751 e59d91 5751 00005751 a77c a77c a77c a77c a77c a77c a77c
+1127 a77d a77d a77d * 495f * 8ea1c9df,c9df,8ea1c9dfv,c9dfv 5740 e59d80 5740 00005740 a77d a77d a77d a77d a77d a77d a77d
+1128 a77e a77e a77e * 4960 * 8ea1c9e0,c9e0,8ea1c9e0v,c9e0v 574d e59d8d 574d 0000574d a77e a77e a77e a77e a77e a77e a77e
+1129 a7a1 a7a1 a7a1 * 4961 * 8ea1c9e1,c9e1,8ea1c9e1v,c9e1v 5747 e59d87 5747 00005747 a7a1 a7a1 a7a1 a7a1 a7a1 a7a1 a7a1
+1130 a7a2 a7a2 a7a2 * 4962 * 8ea1c9e2,c9e2,8ea1c9e2v,c9e2v 574e e59d8e 574e 0000574e a7a2 a7a2 a7a2 a7a2 a7a2 a7a2 a7a2
+1131 a7a3 a7a3 a7a3 * 4963 * 8ea1c9e3,c9e3,8ea1c9e3v,c9e3v 573e e59cbe 573e 0000573e a7a3 a7a3 a7a3 a7a3 a7a3 a7a3 a7a3
+1132 a7a4 a7a4 a7a4 * 4964 * 8ea1c9e4,c9e4,8ea1c9e4v,c9e4v 5750 e59d90 5750 00005750 a7a4 a7a4 a7a4 a7a4 a7a4 a7a4 a7a4
+1133 a7a5 a7a5 a7a5 * 4965 * 8ea1c9e5,c9e5,8ea1c9e5v,c9e5v 574f e59d8f 574f 0000574f a7a5 a7a5 a7a5 a7a5 a7a5 a7a5 a7a5
+1134 a7a6 a7a6 a7a6 * 4966 * 8ea1c9e6,c9e6,8ea1c9e6v,c9e6v 573b e59cbb 573b 0000573b a7a6 a7a6 a7a6 a7a6 a7a6 a7a6 a7a6
+1135 a7a7 a7a7 a7a7 * 4967 * 8ea1c9e7,c9e7,8ea1c9e7v,c9e7v 58ef e5a3af 58ef 000058ef a7a7 a7a7 a7a7 a7a7 a7a7 a7a7 a7a7
+1136 a7a8 a7a8 a7a8 * 4968 * 8ea1c9e8,c9e8,8ea1c9e8v,c9e8v 593e e5a4be 593e 0000593e a7a8 a7a8 a7a8 a7a8 a7a8 a7a8 a7a8
+1137 a7a9 a7a9 a7a9 * 4969 * 8ea1c9e9,c9e9,8ea1c9e9v,c9e9v 599d e5a69d 599d 0000599d a7a9 a7a9 a7a9 a7a9 a7a9 a7a9 a7a9
+1138 a7aa a7aa a7aa * 496a * 8ea1c9ea,c9ea,8ea1c9eav,c9eav 5992 e5a692 5992 00005992 a7aa a7aa a7aa a7aa a7aa a7aa a7aa
+1139 a7ab a7ab a7ab * 496b * 8ea1c9eb,c9eb,8ea1c9ebv,c9ebv 59a8 e5a6a8 59a8 000059a8 a7ab a7ab a7ab a7ab a7ab a7ab a7ab
+1140 a7ac a7ac a7ac * 496c * 8ea1c9ec,c9ec,8ea1c9ecv,c9ecv 599e e5a69e 599e 0000599e a7ac a7ac a7ac a7ac a7ac a7ac a7ac
+1141 a7ad a7ad a7ad * 496d * 8ea1c9ed,c9ed,8ea1c9edv,c9edv 59a3 e5a6a3 59a3 000059a3 a7ad a7ad a7ad a7ad a7ad a7ad a7ad
+1142 a7ae a7ae a7ae * 496e * 8ea1c9ee,c9ee,8ea1c9eev,c9eev 5999 e5a699 5999 00005999 a7ae a7ae a7ae a7ae a7ae a7ae a7ae
+1143 a7af a7af a7af * 496f * 8ea1c9ef,c9ef,8ea1c9efv,c9efv 5996 e5a696 5996 00005996 a7af a7af a7af a7af a7af a7af a7af
+1144 a7b0 a7b0 a7b0 * 4970 * 8ea1c9f0,c9f0,8ea1c9f0v,c9f0v 598d e5a68d 598d 0000598d a7b0 a7b0 a7b0 a7b0 a7b0 a7b0 a7b0
+1145 a7b1 a7b1 a7b1 * 4971 * 8ea1c9f1,c9f1,8ea1c9f1v,c9f1v 59a4 e5a6a4 59a4 000059a4 a7b1 a7b1 a7b1 a7b1 a7b1 a7b1 a7b1
+1146 a7b2 a7b2 a7b2 * 4972 * 8ea1c9f2,c9f2,8ea1c9f2v,c9f2v 5993 e5a693 5993 00005993 a7b2 a7b2 a7b2 a7b2 a7b2 a7b2 a7b2
+1147 a7b3 a7b3 a7b3 * 4973 * 8ea1c9f3,c9f3,8ea1c9f3v,c9f3v 598a e5a68a 598a 0000598a a7b3 a7b3 a7b3 a7b3 a7b3 a7b3 a7b3
+1148 a7b4 a7b4 a7b4 * 4974 * 8ea1c9f4,c9f4,8ea1c9f4v,c9f4v 59a5 e5a6a5 59a5 000059a5 a7b4 a7b4 a7b4 a7b4 a7b4 a7b4 a7b4
+1149 a7b5 a7b5 a7b5 * 4975 * 8ea1c9f5,c9f5,8ea1c9f5v,c9f5v 5b5d e5ad9d 5b5d 00005b5d a7b5 a7b5 a7b5 a7b5 a7b5 a7b5 a7b5
+1150 a7b6 a7b6 a7b6 * 4976 * 8ea1c9f6,c9f6,8ea1c9f6v,c9f6v 5b5c e5ad9c 5b5c 00005b5c a7b6 a7b6 a7b6 a7b6 a7b6 a7b6 a7b6
+1151 a7b7 a7b7 a7b7 * 4977 * 8ea1c9f7,c9f7,8ea1c9f7v,c9f7v 5b5a e5ad9a 5b5a 00005b5a a7b7 a7b7 a7b7 a7b7 a7b7 a7b7 a7b7
+1152 a7b8 a7b8 a7b8 * 4978 * 8ea1c9f8,c9f8,8ea1c9f8v,c9f8v 5b5b e5ad9b 5b5b 00005b5b a7b8 a7b8 a7b8 a7b8 a7b8 a7b8 a7b8
+1153 a7b9 a7b9 a7b9 * 4979 * 8ea1c9f9,c9f9,8ea1c9f9v,c9f9v 5b8c e5ae8c 5b8c 00005b8c a7b9 a7b9 a7b9 a7b9 a7b9 a7b9 a7b9
+1154 a7ba a7ba a7ba * 497a * 8ea1c9fa,c9fa,8ea1c9fav,c9fav 5b8b e5ae8b 5b8b 00005b8b a7ba a7ba a7ba a7ba a7ba a7ba a7ba
+1155 a7bb a7bb a7bb * 497b * 8ea1c9fb,c9fb,8ea1c9fbv,c9fbv 5b8f e5ae8f 5b8f 00005b8f a7bb a7bb a7bb a7bb a7bb a7bb a7bb
+1156 a7bc a7bc a7bc * 497c * 8ea1c9fc,c9fc,8ea1c9fcv,c9fcv 5c2c e5b0ac 5c2c 00005c2c a7bc a7bc a7bc a7bc a7bc a7bc a7bc
+1157 a7bd a7bd a7bd * 497d * 8ea1c9fd,c9fd,8ea1c9fdv,c9fdv 5c40 e5b180 5c40 00005c40 a7bd a7bd a7bd a7bd a7bd a7bd a7bd
+1158 a7be a7be a7be * 497e * 8ea1c9fe,c9fe,8ea1c9fev,c9fev 5c41 e5b181 5c41 00005c41 a7be a7be a7be a7be a7be a7be a7be
+1159 a7bf a7bf a7bf * 4a21 * 8ea1caa1,caa1,8ea1caa1v,caa1v 5c3f e5b0bf 5c3f 00005c3f a7bf a7bf a7bf a7bf a7bf a7bf a7bf
+1160 a7c0 a7c0 a7c0 * 4a22 * 8ea1caa2,caa2,8ea1caa2v,caa2v 5c3e e5b0be 5c3e 00005c3e a7c0 a7c0 a7c0 a7c0 a7c0 a7c0 a7c0
+1161 a7c1 a7c1 a7c1 * 4a23 * 8ea1caa3,caa3,8ea1caa3v,caa3v 5c90 e5b290 5c90 00005c90 a7c1 a7c1 a7c1 a7c1 a7c1 a7c1 a7c1
+1162 a7c2 a7c2 a7c2 * 4a24 * 8ea1caa4,caa4,8ea1caa4v,caa4v 5c91 e5b291 5c91 00005c91 a7c2 a7c2 a7c2 a7c2 a7c2 a7c2 a7c2
+1163 a7c3 a7c3 a7c3 * 4a25 * 8ea1caa5,caa5,8ea1caa5v,caa5v 5c94 e5b294 5c94 00005c94 a7c3 a7c3 a7c3 a7c3 a7c3 a7c3 a7c3
+1164 a7c4 a7c4 a7c4 * 4a26 * 8ea1caa6,caa6,8ea1caa6v,caa6v 5c8c e5b28c 5c8c 00005c8c a7c4 a7c4 a7c4 a7c4 a7c4 a7c4 a7c4
+1165 a7c5 a7c5 a7c5 * 4a27 * 8ea1caa7,caa7,8ea1caa7v,caa7v 5deb e5b7ab 5deb 00005deb a7c5 a7c5 a7c5 a7c5 a7c5 a7c5 a7c5
+1166 a7c6 a7c6 a7c6 * 4a28 * 8ea1caa8,caa8,8ea1caa8v,caa8v 5e0c e5b88c 5e0c 00005e0c a7c6 a7c6 a7c6 a7c6 a7c6 a7c6 a7c6
+1167 a7c7 a7c7 a7c7 * 4a29 * 8ea1caa9,caa9,8ea1caa9v,caa9v 5e8f e5ba8f 5e8f 00005e8f a7c7 a7c7 a7c7 a7c7 a7c7 a7c7 a7c7
+1168 a7c8 a7c8 a7c8 * 4a2a * 8ea1caaa,caaa,8ea1caaav,caaav 5e87 e5ba87 5e87 00005e87 a7c8 a7c8 a7c8 a7c8 a7c8 a7c8 a7c8
+1169 a7c9 a7c9 a7c9 * 4a2b * 8ea1caab,caab,8ea1caabv,caabv 5e8a e5ba8a 5e8a 00005e8a a7c9 a7c9 a7c9 a7c9 a7c9 a7c9 a7c9
+1170 a7ca a7ca a7ca * 4a2c * 8ea1caac,caac,8ea1caacv,caacv 5ef7 e5bbb7 5ef7 00005ef7 a7ca a7ca a7ca a7ca a7ca a7ca a7ca
+1171 a7cb a7cb a7cb * 4a2d * 8ea1caad,caad,8ea1caadv,caadv 5f04 e5bc84 5f04 00005f04 a7cb a7cb a7cb a7cb a7cb a7cb a7cb
+1172 a7cc a7cc a7cc * 4a2e * 8ea1caae,caae,8ea1caaev,caaev 5f1f e5bc9f 5f1f 00005f1f a7cc a7cc a7cc a7cc a7cc a7cc a7cc
+1173 a7cd a7cd a7cd * 4a2f * 8ea1caaf,caaf,8ea1caafv,caafv 5f64 e5bda4 5f64 00005f64 a7cd a7cd a7cd a7cd a7cd a7cd a7cd
+1174 a7ce a7ce a7ce * 4a30 * 8ea1cab0,cab0,8ea1cab0v,cab0v 5f62 e5bda2 5f62 00005f62 a7ce a7ce a7ce a7ce a7ce a7ce a7ce
+1175 a7cf a7cf a7cf * 4a31 * 8ea1cab1,cab1,8ea1cab1v,cab1v 5f77 e5bdb7 5f77 00005f77 a7cf a7cf a7cf a7cf a7cf a7cf a7cf
+1176 a7d0 a7d0 a7d0 * 4a32 * 8ea1cab2,cab2,8ea1cab2v,cab2v 5f79 e5bdb9 5f79 00005f79 a7d0 a7d0 a7d0 a7d0 a7d0 a7d0 a7d0
+1177 a7d1 a7d1 a7d1 * 4a33 * 8ea1cab3,cab3,8ea1cab3v,cab3v 5fd8 e5bf98 5fd8 00005fd8 a7d1 a7d1 a7d1 a7d1 a7d1 a7d1 a7d1
+1178 a7d2 a7d2 a7d2 * 4a34 * 8ea1cab4,cab4,8ea1cab4v,cab4v 5fcc e5bf8c 5fcc 00005fcc a7d2 a7d2 a7d2 a7d2 a7d2 a7d2 a7d2
+1179 a7d3 a7d3 a7d3 * 4a35 * 8ea1cab5,cab5,8ea1cab5v,cab5v 5fd7 e5bf97 5fd7 00005fd7 a7d3 a7d3 a7d3 a7d3 a7d3 a7d3 a7d3
+1180 a7d4 a7d4 a7d4 * 4a36 * 8ea1cab6,cab6,8ea1cab6v,cab6v 5fcd e5bf8d 5fcd 00005fcd a7d4 a7d4 a7d4 a7d4 a7d4 a7d4 a7d4
+1181 a7d5 a7d5 a7d5 * 4a37 * 8ea1cab7,cab7,8ea1cab7v,cab7v 5ff1 e5bfb1 5ff1 00005ff1 a7d5 a7d5 a7d5 a7d5 a7d5 a7d5 a7d5
+1182 a7d6 a7d6 a7d6 * 4a38 * 8ea1cab8,cab8,8ea1cab8v,cab8v 5feb e5bfab 5feb 00005feb a7d6 a7d6 a7d6 a7d6 a7d6 a7d6 a7d6
+1183 a7d7 a7d7 a7d7 * 4a39 * 8ea1cab9,cab9,8ea1cab9v,cab9v 5ff8 e5bfb8 5ff8 00005ff8 a7d7 a7d7 a7d7 a7d7 a7d7 a7d7 a7d7
+1184 a7d8 a7d8 a7d8 * 4a3a * 8ea1caba,caba,8ea1cabav,cabav 5fea e5bfaa 5fea 00005fea a7d8 a7d8 a7d8 a7d8 a7d8 a7d8 a7d8
+1185 a7d9 a7d9 a7d9 * 4a3b * 8ea1cabb,cabb,8ea1cabbv,cabbv 6212 e68892 6212 00006212 a7d9 a7d9 a7d9 a7d9 a7d9 a7d9 a7d9
+1186 a7da a7da a7da * 4a3c * 8ea1cabc,cabc,8ea1cabcv,cabcv 6211 e68891 6211 00006211 a7da a7da a7da a7da a7da a7da a7da
+1187 a7db a7db a7db * 4a3d * 8ea1cabd,cabd,8ea1cabdv,cabdv 6284 e68a84 6284 00006284 a7db a7db a7db a7db a7db a7db a7db
+1188 a7dc a7dc a7dc * 4a3e * 8ea1cabe,cabe,8ea1cabev,cabev 6297 e68a97 6297 00006297 a7dc a7dc a7dc a7dc a7dc a7dc a7dc
+1189 a7dd a7dd a7dd * 4a3f * 8ea1cabf,cabf,8ea1cabfv,cabfv 6296 e68a96 6296 00006296 a7dd a7dd a7dd a7dd a7dd a7dd a7dd
+1190 a7de a7de a7de * 4a40 * 8ea1cac0,cac0,8ea1cac0v,cac0v 6280 e68a80 6280 00006280 a7de a7de a7de a7de a7de a7de a7de
+1191 a7df a7df a7df * 4a41 * 8ea1cac1,cac1,8ea1cac1v,cac1v 6276 e689b6 6276 00006276 a7df a7df a7df a7df a7df a7df a7df
+1192 a7e0 a7e0 a7e0 * 4a42 * 8ea1cac2,cac2,8ea1cac2v,cac2v 6289 e68a89 6289 00006289 a7e0 a7e0 a7e0 a7e0 a7e0 a7e0 a7e0
+1193 a7e1 a7e1 a7e1 * 4a43 * 8ea1cac3,cac3,8ea1cac3v,cac3v 626d e689ad 626d 0000626d a7e1 a7e1 a7e1 a7e1 a7e1 a7e1 a7e1
+1194 a7e2 a7e2 a7e2 * 4a44 * 8ea1cac4,cac4,8ea1cac4v,cac4v 628a e68a8a 628a 0000628a a7e2 a7e2 a7e2 a7e2 a7e2 a7e2 a7e2
+1195 a7e3 a7e3 a7e3 * 4a45 * 8ea1cac5,cac5,8ea1cac5v,cac5v 627c e689bc 627c 0000627c a7e3 a7e3 a7e3 a7e3 a7e3 a7e3 a7e3
+1196 a7e4 a7e4 a7e4 * 4a46 * 8ea1cac6,cac6,8ea1cac6v,cac6v 627e e689be 627e 0000627e a7e4 a7e4 a7e4 a7e4 a7e4 a7e4 a7e4
+1197 a7e5 a7e5 a7e5 * 4a47 * 8ea1cac7,cac7,8ea1cac7v,cac7v 6279 e689b9 6279 00006279 a7e5 a7e5 a7e5 a7e5 a7e5 a7e5 a7e5
+1198 a7e6 a7e6 a7e6 * 4a48 * 8ea1cac8,cac8,8ea1cac8v,cac8v 6273 e689b3 6273 00006273 a7e6 a7e6 a7e6 a7e6 a7e6 a7e6 a7e6
+1199 a7e7 a7e7 a7e7 * 4a49 * 8ea1cac9,cac9,8ea1cac9v,cac9v 6292 e68a92 6292 00006292 a7e7 a7e7 a7e7 a7e7 a7e7 a7e7 a7e7
+1200 a7e8 a7e8 a7e8 * 4a4a * 8ea1caca,caca,8ea1cacav,cacav 626f e689af 626f 0000626f a7e8 a7e8 a7e8 a7e8 a7e8 a7e8 a7e8
+1201 a7e9 a7e9 a7e9 * 4a4b * 8ea1cacb,cacb,8ea1cacbv,cacbv 6298 e68a98 6298 00006298 a7e9 a7e9 a7e9 a7e9 a7e9 a7e9 a7e9
+1202 a7ea a7ea a7ea * 4a4c * 8ea1cacc,cacc,8ea1caccv,caccv 626e e689ae 626e 0000626e a7ea a7ea a7ea a7ea a7ea a7ea a7ea
+1203 a7eb a7eb a7eb * 4a4d * 8ea1cacd,cacd,8ea1cacdv,cacdv 6295 e68a95 6295 00006295 a7eb a7eb a7eb a7eb a7eb a7eb a7eb
+1204 a7ec a7ec a7ec * 4a4e * 8ea1cace,cace,8ea1cacev,cacev 6293 e68a93 6293 00006293 a7ec a7ec a7ec a7ec a7ec a7ec a7ec
+1205 a7ed a7ed a7ed * 4a4f * 8ea1cacf,cacf,8ea1cacfv,cacfv 6291 e68a91 6291 00006291 a7ed a7ed a7ed a7ed a7ed a7ed a7ed
+1206 a7ee a7ee a7ee * 4a50 * 8ea1cad0,cad0,8ea1cad0v,cad0v 6286 e68a86 6286 00006286 a7ee a7ee a7ee a7ee a7ee a7ee a7ee
+1207 a7ef a7ef a7ef * 4a51 * 8ea1cad1,cad1,8ea1cad1v,cad1v 6539 e694b9 6539 00006539 a7ef a7ef a7ef a7ef a7ef a7ef a7ef
+1208 a7f0 a7f0 a7f0 * 4a52 * 8ea1cad2,cad2,8ea1cad2v,cad2v 653b e694bb 653b 0000653b a7f0 a7f0 a7f0 a7f0 a7f0 a7f0 a7f0
+1209 a7f1 a7f1 a7f1 * 4a53 * 8ea1cad3,cad3,8ea1cad3v,cad3v 6538 e694b8 6538 00006538 a7f1 a7f1 a7f1 a7f1 a7f1 a7f1 a7f1
+1210 a7f2 a7f2 a7f2 * 4a54 * 8ea1cad4,cad4,8ea1cad4v,cad4v 65f1 e697b1 65f1 000065f1 a7f2 a7f2 a7f2 a7f2 a7f2 a7f2 a7f2
+1211 a7f3 a7f3 a7f3 * 4a55 * 8ea1cad5,cad5,8ea1cad5v,cad5v 66f4 e69bb4 66f4 000066f4 a7f3 a7f3 a7f3 a7f3 a7f3 a7f3 a7f3
+1212 a7f4 a7f4 a7f4 * 4a56 * 8ea1cad6,cad6,8ea1cad6v,cad6v 675f e69d9f 675f 0000675f a7f4 a7f4 a7f4 a7f4 a7f4 a7f4 a7f4
+1213 a7f5 a7f5 a7f5 * 4a57 * 8ea1cad7,cad7,8ea1cad7v,cad7v 674e e69d8e 674e 0000674e a7f5 a7f5 a7f5 a7f5 a7f5 a7f5 a7f5
+1214 a7f6 a7f6 a7f6 * 4a58 * 8ea1cad8,cad8,8ea1cad8v,cad8v 674f e69d8f 674f 0000674f a7f6 a7f6 a7f6 a7f6 a7f6 a7f6 a7f6
+1215 a7f7 a7f7 a7f7 * 4a59 * 8ea1cad9,cad9,8ea1cad9v,cad9v 6750 e69d90 6750 00006750 a7f7 a7f7 a7f7 a7f7 a7f7 a7f7 a7f7
+1216 a7f8 a7f8 a7f8 * 4a5a * 8ea1cada,cada,8ea1cadav,cadav 6751 e69d91 6751 00006751 a7f8 a7f8 a7f8 a7f8 a7f8 a7f8 a7f8
+1217 a7f9 a7f9 a7f9 * 4a5b * 8ea1cadb,cadb,8ea1cadbv,cadbv 675c e69d9c 675c 0000675c a7f9 a7f9 a7f9 a7f9 a7f9 a7f9 a7f9
+1218 a7fa a7fa a7fa * 4a5c * 8ea1cadc,cadc,8ea1cadcv,cadcv 6756 e69d96 6756 00006756 a7fa a7fa a7fa a7fa a7fa a7fa a7fa
+1219 a7fb a7fb a7fb * 4a5d * 8ea1cadd,cadd,8ea1caddv,caddv 675e e69d9e,ee8789 675e,e1c9 0000675e,0000e1c9 fcf1,a7fb a7fb a7fb a7fb a7fb a7fb fcf1,a7fb
+1220 a7fc a7fc a7fc * 4a5e * 8ea1cade,cade,8ea1cadev,cadev 6749 e69d89 6749 00006749 a7fc a7fc a7fc a7fc a7fc a7fc a7fc
+1221 a7fd a7fd a7fd * 4a5f * 8ea1cadf,cadf,8ea1cadfv,cadfv 6746 e69d86 6746 00006746 a7fd a7fd a7fd a7fd a7fd a7fd a7fd
+1222 a7fe a7fe a7fe * 4a60 * 8ea1cae0,cae0,8ea1cae0v,cae0v 6760 e69da0 6760 00006760 a7fe a7fe a7fe a7fe a7fe a7fe a7fe
+1223 a840 a840 a840 * 4a61 * 8ea1cae1,cae1,8ea1cae1v,cae1v 6753 e69d93 6753 00006753 a840 a840 a840 a840 a840 a840 a840
+1224 a841 a841 a841 * 4a62 * 8ea1cae2,cae2,8ea1cae2v,cae2v 6757 e69d97 6757 00006757 a841 a841 a841 a841 a841 a841 a841
+1225 a842 a842 a842 * 4a63 * 8ea1cae3,cae3,8ea1cae3v,cae3v 6b65 e6ada5 6b65 00006b65 a842 a842 a842 a842 a842 a842 a842
+1226 a843 a843 a843 * 4a64 * 8ea1cae4,cae4,8ea1cae4v,cae4v 6bcf e6af8f 6bcf 00006bcf a843 a843 a843 a843 a843 a843 a843
+1227 a844 a844 a844 * 4a65 * 8ea1cae5,cae5,8ea1cae5v,cae5v 6c42 e6b182 6c42 00006c42 a844 a844 a844 a844 a844 a844 a844
+1228 a845 a845 a845 * 4a66 * 8ea1cae6,cae6,8ea1cae6v,cae6v 6c5e e6b19e 6c5e 00006c5e a845 a845 a845 a845 a845 a845 a845
+1229 a846 a846 a846 * 4a67 * 8ea1cae7,cae7,8ea1cae7v,cae7v 6c99 e6b299 6c99 00006c99 a846 a846 a846 a846 a846 a846 a846
+1230 a847 a847 a847 * 4a68 * 8ea1cae8,cae8,8ea1cae8v,cae8v 6c81 e6b281 6c81 00006c81 a847 a847 a847 a847 a847 a847 a847
+1231 a848 a848 a848 * 4a69 * 8ea1cae9,cae9,8ea1cae9v,cae9v 6c88 e6b288 6c88 00006c88 a848 a848 a848 a848 a848 a848 a848
+1232 a849 a849 a849 * 4a6a * 8ea1caea,caea,8ea1caeav,caeav 6c89 e6b289 6c89 00006c89 a849 a849 a849 a849 a849 a849 a849
+1233 a84a a84a a84a * 4a6b * 8ea1caeb,caeb,8ea1caebv,caebv 6c85 e6b285 6c85 00006c85 a84a a84a a84a a84a a84a a84a a84a
+1234 a84b a84b a84b * 4a6c * 8ea1caec,caec,8ea1caecv,caecv 6c9b e6b29b 6c9b 00006c9b a84b a84b a84b a84b a84b a84b a84b
+1235 a84c a84c a84c * 4a6d * 8ea1caed,caed,8ea1caedv,caedv 6c6a e6b1aa 6c6a 00006c6a a84c a84c a84c a84c a84c a84c a84c
+1236 a84d a84d a84d * 4a6e * 8ea1caee,caee,8ea1caeev,caeev 6c7a e6b1ba 6c7a 00006c7a a84d a84d a84d a84d a84d a84d a84d
+1237 a84e a84e a84e * 4a6f * 8ea1caef,caef,8ea1caefv,caefv 6c90 e6b290 6c90 00006c90 a84e a84e a84e a84e a84e a84e a84e
+1238 a84f a84f a84f * 4a70 * 8ea1caf0,caf0,8ea1caf0v,caf0v 6c70 e6b1b0 6c70 00006c70 a84f a84f a84f a84f a84f a84f a84f
+1239 a850 a850 a850 * 4a71 * 8ea1caf1,caf1,8ea1caf1v,caf1v 6c8c e6b28c 6c8c 00006c8c a850 a850 a850 a850 a850 a850 a850
+1240 a851 a851 a851 * 4a72 * 8ea1caf2,caf2,8ea1caf2v,caf2v 6c68 e6b1a8 6c68 00006c68 a851 a851 a851 a851 a851 a851 a851
+1241 a852 a852 a852 * 4a73 * 8ea1caf3,caf3,8ea1caf3v,caf3v 6c96 e6b296 6c96 00006c96 a852 a852 a852 a852 a852 a852 a852
+1242 a853 a853 a853 * 4a74 * 8ea1caf4,caf4,8ea1caf4v,caf4v 6c92 e6b292 6c92 00006c92 a853 a853 a853 a853 a853 a853 a853
+1243 a854 a854 a854 * 4a75 * 8ea1caf5,caf5,8ea1caf5v,caf5v 6c7d e6b1bd 6c7d 00006c7d a854 a854 a854 a854 a854 a854 a854
+1244 a855 a855 a855 * 4a76 * 8ea1caf6,caf6,8ea1caf6v,caf6v 6c83 e6b283 6c83 00006c83 a855 a855 a855 a855 a855 a855 a855
+1245 a856 a856 a856 * 4a77 * 8ea1caf7,caf7,8ea1caf7v,caf7v 6c72 e6b1b2 6c72 00006c72 a856 a856 a856 a856 a856 a856 a856
+1246 a857 a857 a857 * 4a78 * 8ea1caf8,caf8,8ea1caf8v,caf8v 6c7e e6b1be 6c7e 00006c7e a857 a857 a857 a857 a857 a857 a857
+1247 a858 a858 a858 * 4a79 * 8ea1caf9,caf9,8ea1caf9v,caf9v 6c74 e6b1b4 6c74 00006c74 a858 a858 a858 a858 a858 a858 a858
+1248 a859 a859 a859 * 4a7a * 8ea1cafa,cafa,8ea1cafav,cafav 6c86 e6b286 6c86 00006c86 a859 a859 a859 a859 a859 a859 a859
+1249 a85a a85a a85a * 4a7b * 8ea1cafb,cafb,8ea1cafbv,cafbv 6c76 e6b1b6 6c76 00006c76 a85a a85a a85a a85a a85a a85a a85a
+1250 a85b a85b a85b * 4a7c * 8ea1cafc,cafc,8ea1cafcv,cafcv 6c8d e6b28d 6c8d 00006c8d a85b a85b a85b a85b a85b a85b a85b
+1251 a85c a85c a85c * 4a7d * 8ea1cafd,cafd,8ea1cafdv,cafdv 6c94 e6b294 6c94 00006c94 a85c a85c a85c a85c a85c a85c a85c
+1252 a85d a85d a85d * 4a7e * 8ea1cafe,cafe,8ea1cafev,cafev 6c98 e6b298 6c98 00006c98 a85d a85d a85d a85d a85d a85d a85d
+1253 a85e a85e a85e * 4b21 * 8ea1cba1,cba1,8ea1cba1v,cba1v 6c82 e6b282 6c82 00006c82 a85e a85e a85e a85e a85e a85e a85e
+1254 a85f a85f a85f * 4b22 * 8ea1cba2,cba2,8ea1cba2v,cba2v 7076 e781b6 7076 00007076 a85f a85f a85f a85f a85f a85f a85f
+1255 a860 a860 a860 * 4b23 * 8ea1cba3,cba3,8ea1cba3v,cba3v 707c e781bc 707c 0000707c a860 a860 a860 a860 a860 a860 a860
+1256 a861 a861 a861 * 4b24 * 8ea1cba4,cba4,8ea1cba4v,cba4v 707d e781bd 707d 0000707d a861 a861 a861 a861 a861 a861 a861
+1257 a862 a862 a862 * 4b25 * 8ea1cba5,cba5,8ea1cba5v,cba5v 7078 e781b8 7078 00007078 a862 a862 a862 a862 a862 a862 a862
+1258 a863 a863 a863 * 4b26 * 8ea1cba6,cba6,8ea1cba6v,cba6v 7262 e789a2 7262 00007262 a863 a863 a863 a863 a863 a863 a863
+1259 a864 a864 a864 * 4b27 * 8ea1cba7,cba7,8ea1cba7v,cba7v 7261 e789a1 7261 00007261 a864 a864 a864 a864 a864 a864 a864
+1260 a865 a865 a865 * 4b28 * 8ea1cba8,cba8,8ea1cba8v,cba8v 7260 e789a0 7260 00007260 a865 a865 a865 a865 a865 a865 a865
+1261 a866 a866 a866 * 4b29 * 8ea1cba9,cba9,8ea1cba9v,cba9v 72c4 e78b84 72c4 000072c4 a866 a866 a866 a866 a866 a866 a866
+1262 a867 a867 a867 * 4b2a * 8ea1cbaa,cbaa,8ea1cbaav,cbaav 72c2 e78b82 72c2 000072c2 a867 a867 a867 a867 a867 a867 a867
+1263 a868 a868 a868 * 4b2b * 8ea1cbab,cbab,8ea1cbabv,cbabv 7396 e78e96 7396 00007396 a868 a868 a868 a868 a868 a868 a868
+1264 a869 a869 a869 * 4b2c * 8ea1cbac,cbac,8ea1cbacv,cbacv 752c e794ac 752c 0000752c a869 a869 a869 a869 a869 a869 a869
+1265 a86a a86a a86a * 4b2d * 8ea1cbad,cbad,8ea1cbadv,cbadv 752b e794ab 752b 0000752b a86a a86a a86a a86a a86a a86a a86a
+1266 a86b a86b a86b * 4b2e * 8ea1cbae,cbae,8ea1cbaev,cbaev 7537 e794b7 7537 00007537 a86b a86b a86b a86b a86b a86b a86b
+1267 a86c a86c a86c * 4b2f * 8ea1cbaf,cbaf,8ea1cbafv,cbafv 7538 e794b8 7538 00007538 a86c a86c a86c a86c a86c a86c a86c
+1268 a86d a86d a86d * 4b30 * 8ea1cbb0,cbb0,8ea1cbb0v,cbb0v 7682 e79a82 7682 00007682 a86d a86d a86d a86d a86d a86d a86d
+1269 a86e a86e a86e * 4b31 * 8ea1cbb1,cbb1,8ea1cbb1v,cbb1v 76ef e79baf 76ef 000076ef a86e a86e a86e a86e a86e a86e a86e
+1270 a86f a86f a86f * 4b32 * 8ea1cbb2,cbb2,8ea1cbb2v,cbb2v 77e3 e79fa3 77e3 000077e3 a86f a86f a86f a86f a86f a86f a86f
+1271 a870 a870 a870 * 4b33 * 8ea1cbb3,cbb3,8ea1cbb3v,cbb3v 79c1 e7a781 79c1 000079c1 a870 a870 a870 a870 a870 a870 a870
+1272 a871 a871 a871 * 4b34 * 8ea1cbb4,cbb4,8ea1cbb4v,cbb4v 79c0 e7a780 79c0 000079c0 a871 a871 a871 a871 a871 a871 a871
+1273 a872 a872 a872 * 4b35 * 8ea1cbb5,cbb5,8ea1cbb5v,cbb5v 79bf e7a6bf 79bf 000079bf a872 a872 a872 a872 a872 a872 a872
+1274 a873 a873 a873 * 4b36 * 8ea1cbb6,cbb6,8ea1cbb6v,cbb6v 7a76 e7a9b6 7a76 00007a76 a873 a873 a873 a873 a873 a873 a873
+1275 a874 a874 a874 * 4b37 * 8ea1cbb7,cbb7,8ea1cbb7v,cbb7v 7cfb e7b3bb 7cfb 00007cfb a874 a874 a874 a874 a874 a874 a874
+1276 a875 a875 a875 * 4b38 * 8ea1cbb8,cbb8,8ea1cbb8v,cbb8v 7f55 e7bd95 7f55 00007f55 a875 a875 a875 a875 a875 a875 a875
+1277 a876 a876 a876 * 4b39 * 8ea1cbb9,cbb9,8ea1cbb9v,cbb9v 8096 e88296 8096 00008096 a876 a876 a876 a876 a876 a876 a876
+1278 a877 a877 a877 * 4b3a * 8ea1cbba,cbba,8ea1cbbav,cbbav 8093 e88293 8093 00008093 a877 a877 a877 a877 a877 a877 a877
+1279 a878 a878 a878 * 4b3b * 8ea1cbbb,cbbb,8ea1cbbbv,cbbbv 809d e8829d 809d 0000809d a878 a878 a878 a878 a878 a878 a878
+1280 a879 a879 a879 * 4b3c * 8ea1cbbc,cbbc,8ea1cbbcv,cbbcv 8098 e88298 8098 00008098 a879 a879 a879 a879 a879 a879 a879
+1281 a87a a87a a87a * 4b3d * 8ea1cbbd,cbbd,8ea1cbbdv,cbbdv 809b e8829b 809b 0000809b a87a a87a a87a a87a a87a a87a a87a
+1282 a87b a87b a87b * 4b3e * 8ea1cbbe,cbbe,8ea1cbbev,cbbev 809a e8829a 809a 0000809a a87b a87b a87b a87b a87b a87b a87b
+1283 a87c a87c a87c * 4b3f * 8ea1cbbf,cbbf,8ea1cbbfv,cbbfv 80b2 e882b2 80b2 000080b2 a87c a87c a87c a87c a87c a87c a87c
+1284 a87d a87d a87d * 4b40 * 8ea1cbc0,cbc0,8ea1cbc0v,cbc0v 826f e889af 826f 0000826f a87d a87d a87d a87d a87d a87d a87d
+1285 a87e a87e a87e * 4b41 * 8ea1cbc1,cbc1,8ea1cbc1v,cbc1v 8292 e88a92 8292 00008292 a87e a87e a87e a87e a87e a87e a87e
+1286 a8a1 a8a1 a8a1 * 4b42 * 8ea1cbc2,cbc2,8ea1cbc2v,cbc2v 828b e88a8b 828b 0000828b a8a1 a8a1 a8a1 a8a1 a8a1 a8a1 a8a1
+1287 a8a2 a8a2 a8a2 * 4b43 * 8ea1cbc3,cbc3,8ea1cbc3v,cbc3v 828d e88a8d 828d 0000828d a8a2 a8a2 a8a2 a8a2 a8a2 a8a2 a8a2
+1288 a8a3 a8a3 a8a3 * 2854,4b44 * 8ea1a8d4,8ea1cbc4,a8d4,cbc4,8ea1a8d4v,8ea1cbc4v,a8d4v,cbc4v 898b e8a68b,e2be92 898b,2f92 0000898b,00002f92 a8a3 a8a3 a8a3 a8a3 a8a3 a8a3 a8a3
+1289 a8a4 a8a4 a8a4 * 2855,4b45 * 8ea1a8d5,8ea1cbc5,a8d5,cbc5,8ea1a8d5v,8ea1cbc5v,a8d5v,cbc5v 2ec6,89d2 e8a792,e2be93 89d2,2f93 000089d2,00002f93 a8a4 a8a4 a8a4 a8a4 a8a4 a8a4 a8a4
+1290 a8a5 a8a5 a8a5 * 2856,4b46 * 8ea1a8d6,8ea1cbc6,a8d6,cbc6,8ea1a8d6v,8ea1cbc6v,a8d6v,cbc6v 8a00 e8a880,e2be94 8a00,2f94 00008a00,00002f94 a8a5 a8a5 a8a5 a8a5 a8a5 a8a5 a8a5
+1291 a8a6 a8a6 a8a6 * 2857,4b47 * 8ea1a8d7,8ea1cbc7,a8d7,cbc7,8ea1a8d7v,8ea1cbc7v,a8d7v,cbc7v 8c37 e8b0b7,e2be95 8c37,2f95 00008c37,00002f95 a8a6 a8a6 a8a6 a8a6 a8a6 a8a6 a8a6
+1292 a8a7 a8a7 a8a7 * 2858,4b48 * 8ea1a8d8,8ea1cbc8,a8d8,cbc8,8ea1a8d8v,8ea1cbc8v,a8d8v,cbc8v 8c46 e8b186,e2be96 8c46,2f96 00008c46,00002f96 a8a7 a8a7 a8a7 a8a7 a8a7 a8a7 a8a7
+1293 a8a8 a8a8 a8a8 * 2859,4b49 * 8ea1a8d9,8ea1cbc9,a8d9,cbc9,8ea1a8d9v,8ea1cbc9v,a8d9v,cbc9v 8c55 e8b195,e2be97 8c55,2f97 00008c55,00002f97 a8a8 a8a8 a8a8 a8a8 a8a8 a8a8 a8a8
+1294 a8a9 a8a9 a8a9 * 285b,4b4a * 8ea1a8db,8ea1cbca,a8db,cbca,8ea1a8dbv,8ea1cbcav,a8dbv,cbcav 8c9d e8b29d,e2be99 8c9d,2f99 00008c9d,00002f99 a8a9 a8a9 a8a9 a8a9 a8a9 a8a9 a8a9
+1295 a8aa a8aa a8aa * 285c,4b4b * 8ea1a8dc,8ea1cbcb,a8dc,cbcb,8ea1a8dcv,8ea1cbcbv,a8dcv,cbcbv 8d64 e8b5a4,e2be9a 8d64,2f9a 00008d64,00002f9a a8aa a8aa a8aa a8aa a8aa a8aa a8aa
+1296 a8ab a8ab a8ab * 285d,4b4c * 8ea1a8dd,8ea1cbcc,a8dd,cbcc,8ea1a8ddv,8ea1cbccv,a8ddv,cbccv 8d70 e8b5b0,e2be9b 8d70,2f9b 00008d70,00002f9b a8ab a8ab a8ab a8ab a8ab a8ab a8ab
+1297 a8ac a8ac a8ac * 285e,4b4d * 8ea1a8de,8ea1cbcd,a8de,cbcd,8ea1a8dev,8ea1cbcdv,a8dev,cbcdv 8db3 e8b6b3,e2be9c 8db3,2f9c 00008db3,00002f9c a8ac a8ac a8ac a8ac a8ac a8ac a8ac
+1298 a8ad a8ad a8ad * 285f,4b4e * 8ea1a8df,8ea1cbce,a8df,cbce,8ea1a8dfv,8ea1cbcev,a8dfv,cbcev 8eab e8baab,e2be9d 8eab,2f9d 00008eab,00002f9d a8ad a8ad a8ad a8ad a8ad a8ad a8ad
+1299 a8ae a8ae a8ae * 2860,4b4f * 8ea1a8e0,8ea1cbcf,a8e0,cbcf,8ea1a8e0v,8ea1cbcfv,a8e0v,cbcfv 8eca e8bb8a,e2be9e 8eca,2f9e 00008eca,00002f9e a8ae a8ae a8ae a8ae a8ae a8ae a8ae
+1300 a8af a8af a8af * 2861,4b50 * 8ea1a8e1,8ea1cbd0,a8e1,cbd0,8ea1a8e1v,8ea1cbd0v,a8e1v,cbd0v 8f9b e8be9b,e2be9f 8f9b,2f9f 00008f9b,00002f9f a8af a8af a8af a8af a8af a8af a8af
+1301 a8b0 a8b0 a8b0 * 2862,4b51 * 8ea1a8e2,8ea1cbd1,a8e2,cbd1,8ea1a8e2v,8ea1cbd1v,a8e2v,cbd1v 8fb0 e8beb0,e2bea0 8fb0,2fa0 00008fb0,00002fa0 a8b0 a8b0 a8b0 a8b0 a8b0 a8b0 a8b0
+1302 a8b1 a8b1 a8b1 * 4b52 * 8ea1cbd2,cbd2,8ea1cbd2v,cbd2v 8fc2 e8bf82 8fc2 00008fc2 a8b1 a8b1 a8b1 a8b1 a8b1 a8b1 a8b1
+1303 a8b2 a8b2 a8b2 * 4b53 * 8ea1cbd3,cbd3,8ea1cbd3v,cbd3v 8fc6 e8bf86 8fc6 00008fc6 a8b2 a8b2 a8b2 a8b2 a8b2 a8b2 a8b2
+1304 a8b3 a8b3 a8b3 * 4b54 * 8ea1cbd4,cbd4,8ea1cbd4v,cbd4v 8fc5 e8bf85 8fc5 00008fc5 a8b3 a8b3 a8b3 a8b3 a8b3 a8b3 a8b3
+1305 a8b4 a8b4 a8b4 * 4b55 * 8ea1cbd5,cbd5,8ea1cbd5v,cbd5v 8fc4 e8bf84 8fc4 00008fc4 a8b4 a8b4 a8b4 a8b4 a8b4 a8b4 a8b4
+1306 a8b5 a8b5 a8b5 * 4b56 * 8ea1cbd6,cbd6,8ea1cbd6v,cbd6v 5de1 e5b7a1 5de1 00005de1 a8b5 a8b5 a8b5 a8b5 a8b5 a8b5 a8b5
+1307 a8b6 a8b6 a8b6 * 2864,4b57 * 8ea1a8e4,8ea1cbd7,a8e4,cbd7,8ea1a8e4v,8ea1cbd7v,a8e4v,cbd7v 9091 e2bea2,e98291 2fa2,9091 00002fa2,00009091 a8b6 a8b6 a8b6 a8b6 a8b6 a8b6 a8b6
+1308 a8b7 a8b7 a8b7 * 4b58 * 8ea1cbd8,cbd8,8ea1cbd8v,cbd8v 90a2 e982a2 90a2 000090a2 a8b7 a8b7 a8b7 a8b7 a8b7 a8b7 a8b7
+1309 a8b8 a8b8 a8b8 * 4b59 * 8ea1cbd9,cbd9,8ea1cbd9v,cbd9v 90aa e982aa 90aa 000090aa a8b8 a8b8 a8b8 a8b8 a8b8 a8b8 a8b8
+1310 a8b9 a8b9 a8b9 * 4b5a * 8ea1cbda,cbda,8ea1cbdav,cbdav 90a6 e982a6 90a6 000090a6 a8b9 a8b9 a8b9 a8b9 a8b9 a8b9 a8b9
+1311 a8ba a8ba a8ba * 4b5b * 8ea1cbdb,cbdb,8ea1cbdbv,cbdbv 90a3 e982a3 90a3 000090a3 a8ba a8ba a8ba a8ba a8ba a8ba a8ba
+1312 a8bb a8bb a8bb * 2865,4b5c * 8ea1a8e5,8ea1cbdc,a8e5,cbdc,8ea1a8e5v,8ea1cbdcv,a8e5v,cbdcv 9149 e98589,e2bea3 9149,2fa3 00009149,00002fa3 a8bb a8bb a8bb a8bb a8bb a8bb a8bb
+1313 a8bc a8bc a8bc * 2866,4b5d * 8ea1a8e6,8ea1cbdd,a8e6,cbdd,8ea1a8e6v,8ea1cbddv,a8e6v,cbddv 91c6 e98786,e2bea4 91c6,2fa4 000091c6,00002fa4 a8bc a8bc a8bc a8bc a8bc a8bc a8bc
+1314 a8bd a8bd a8bd * 2867,4b5e * 8ea1a8e7,8ea1cbde,a8e7,cbde,8ea1a8e7v,8ea1cbdev,a8e7v,cbdev 91cc e9878c,e2bea5 91cc,2fa5 000091cc,00002fa5 a8bd a8bd a8bd a8bd a8bd a8bd a8bd
+1315 a8be a8be a8be * 4b5f * 8ea1cbdf,cbdf,8ea1cbdfv,cbdfv 9632 e998b2 9632 00009632 a8be a8be a8be a8be a8be a8be a8be
+1316 a8bf a8bf a8bf * 4b60 * 8ea1cbe0,cbe0,8ea1cbe0v,cbe0v 962e e998ae 962e 0000962e a8bf a8bf a8bf a8bf a8bf a8bf a8bf
+1317 a8c0 a8c0 a8c0 * 4b61 * 8ea1cbe1,cbe1,8ea1cbe1v,cbe1v 9631 e998b1 9631 00009631 a8c0 a8c0 a8c0 a8c0 a8c0 a8c0 a8c0
+1318 a8c1 a8c1 a8c1 * 4b62 * 8ea1cbe2,cbe2,8ea1cbe2v,cbe2v 962a e998aa 962a 0000962a a8c1 a8c1 a8c1 a8c1 a8c1 a8c1 a8c1
+1319 a8c2 a8c2 a8c2 * 4b63 * 8ea1cbe3,cbe3,8ea1cbe3v,cbe3v 962c e998ac 962c 0000962c a8c2 a8c2 a8c2 a8c2 a8c2 a8c2 a8c2
+1320 a8c3 a8c3 a8c3 * 4b64 * 8ea1cbe4,cbe4,8ea1cbe4v,cbe4v 4e26 e4b8a6 4e26 00004e26 a8c3 a8c3 a8c3 a8c3 a8c3 a8c3 a8c3
+1321 a8c4 a8c4 a8c4 * 4b65 * 8ea1cbe5,cbe5,8ea1cbe5v,cbe5v 4e56 e4b996 4e56 00004e56 a8c4 a8c4 a8c4 a8c4 a8c4 a8c4 a8c4
+1322 a8c5 a8c5 a8c5 * 4b66 * 8ea1cbe6,cbe6,8ea1cbe6v,cbe6v 4e73 e4b9b3 4e73 00004e73 a8c5 a8c5 a8c5 a8c5 a8c5 a8c5 a8c5
+1323 a8c6 a8c6 a8c6 * 4b67 * 8ea1cbe7,cbe7,8ea1cbe7v,cbe7v 4e8b e4ba8b 4e8b 00004e8b a8c6 a8c6 a8c6 a8c6 a8c6 a8c6 a8c6
+1324 a8c7 a8c7 a8c7 * 4b68 * 8ea1cbe8,cbe8,8ea1cbe8v,cbe8v 4e9b e4ba9b 4e9b 00004e9b a8c7 a8c7 a8c7 a8c7 a8c7 a8c7 a8c7
+1325 a8c8 a8c8 a8c8 * 4b69 * 8ea1cbe9,cbe9,8ea1cbe9v,cbe9v 4e9e e4ba9e 4e9e 00004e9e a8c8 a8c8 a8c8 a8c8 a8c8 a8c8 a8c8
+1326 a8c9 a8c9 a8c9 * 4b6a * 8ea1cbea,cbea,8ea1cbeav,cbeav 4eab e4baab 4eab 00004eab a8c9 a8c9 a8c9 a8c9 a8c9 a8c9 a8c9
+1327 a8ca a8ca a8ca * 4b6b * 8ea1cbeb,cbeb,8ea1cbebv,cbebv 4eac e4baac 4eac 00004eac a8ca a8ca a8ca a8ca a8ca a8ca a8ca
+1328 a8cb a8cb a8cb * 4b6c * 8ea1cbec,cbec,8ea1cbecv,cbecv 4f6f e4bdaf 4f6f 00004f6f a8cb a8cb a8cb a8cb a8cb a8cb a8cb
+1329 a8cc a8cc a8cc * 4b6d * 8ea1cbed,cbed,8ea1cbedv,cbedv 4f9d e4be9d 4f9d 00004f9d a8cc a8cc a8cc a8cc a8cc a8cc a8cc
+1330 a8cd a8cd a8cd * 4b6e * 8ea1cbee,cbee,8ea1cbeev,cbeev 4f8d e4be8d 4f8d 00004f8d a8cd a8cd a8cd a8cd a8cd a8cd a8cd
+1331 a8ce a8ce a8ce * 4b6f * 8ea1cbef,cbef,8ea1cbefv,cbefv 4f73 e4bdb3 4f73 00004f73 a8ce a8ce a8ce a8ce a8ce a8ce a8ce
+1332 a8cf a8cf a8cf * 4b70 * 8ea1cbf0,cbf0,8ea1cbf0v,cbf0v 4f7f e4bdbf 4f7f 00004f7f a8cf a8cf a8cf a8cf a8cf a8cf a8cf
+1333 a8d0 a8d0 a8d0 * 4b71 * 8ea1cbf1,cbf1,8ea1cbf1v,cbf1v 4f6c e4bdac 4f6c 00004f6c a8d0 a8d0 a8d0 a8d0 a8d0 a8d0 a8d0
+1334 a8d1 a8d1 a8d1 * 4b72 * 8ea1cbf2,cbf2,8ea1cbf2v,cbf2v 4f9b e4be9b 4f9b 00004f9b a8d1 a8d1 a8d1 a8d1 a8d1 a8d1 a8d1
+1335 a8d2 a8d2 a8d2 * 4b73 * 8ea1cbf3,cbf3,8ea1cbf3v,cbf3v 4f8b e4be8b 4f8b 00004f8b a8d2 a8d2 a8d2 a8d2 a8d2 a8d2 a8d2
+1336 a8d3 a8d3 a8d3 * 4b74 * 8ea1cbf4,cbf4,8ea1cbf4v,cbf4v 4f86 e4be86 4f86 00004f86 a8d3 a8d3 a8d3 a8d3 a8d3 a8d3 a8d3
+1337 a8d4 a8d4 a8d4 * 4b75 * 8ea1cbf5,cbf5,8ea1cbf5v,cbf5v 4f83 e4be83 4f83 00004f83 a8d4 a8d4 a8d4 a8d4 a8d4 a8d4 a8d4
+1338 a8d5 a8d5 a8d5 * 4b76 * 8ea1cbf6,cbf6,8ea1cbf6v,cbf6v 4f70 e4bdb0 4f70 00004f70 a8d5 a8d5 a8d5 a8d5 a8d5 a8d5 a8d5
+1339 a8d6 a8d6 a8d6 * 4b77 * 8ea1cbf7,cbf7,8ea1cbf7v,cbf7v 4f75 e4bdb5 4f75 00004f75 a8d6 a8d6 a8d6 a8d6 a8d6 a8d6 a8d6
+1340 a8d7 a8d7 a8d7 * 4b78 * 8ea1cbf8,cbf8,8ea1cbf8v,cbf8v 4f88 e4be88 4f88 00004f88 a8d7 a8d7 a8d7 a8d7 a8d7 a8d7 a8d7
+1341 a8d8 a8d8 a8d8 * 4b79 * 8ea1cbf9,cbf9,8ea1cbf9v,cbf9v 4f69 e4bda9 4f69 00004f69 a8d8 a8d8 a8d8 a8d8 a8d8 a8d8 a8d8
+1342 a8d9 a8d9 a8d9 * 4b7a * 8ea1cbfa,cbfa,8ea1cbfav,cbfav 4f7b e4bdbb 4f7b 00004f7b a8d9 a8d9 a8d9 a8d9 a8d9 a8d9 a8d9
+1343 a8da a8da a8da * 4b7b * 8ea1cbfb,cbfb,8ea1cbfbv,cbfbv 4f96 e4be96 4f96 00004f96 a8da a8da a8da a8da a8da a8da a8da
+1344 a8db a8db a8db * 4b7c * 8ea1cbfc,cbfc,8ea1cbfcv,cbfcv 4f7e e4bdbe 4f7e 00004f7e a8db a8db a8db a8db a8db a8db a8db
+1345 a8dc a8dc a8dc * 4b7d * 8ea1cbfd,cbfd,8ea1cbfdv,cbfdv 4f8f e4be8f 4f8f 00004f8f a8dc a8dc a8dc a8dc a8dc a8dc a8dc
+1346 a8dd a8dd a8dd * 4b7e * 8ea1cbfe,cbfe,8ea1cbfev,cbfev 4f91 e4be91 4f91 00004f91 a8dd a8dd a8dd a8dd a8dd a8dd a8dd
+1347 a8de a8de a8de * 4c21 * 8ea1cca1,cca1,8ea1cca1v,cca1v 4f7a e4bdba 4f7a 00004f7a a8de a8de a8de a8de a8de a8de a8de
+1348 a8df a8df a8df * 4c22 * 8ea1cca2,cca2,8ea1cca2v,cca2v 5154 e58594 5154 00005154 a8df a8df a8df a8df a8df a8df a8df
+1349 a8e0 a8e0 a8e0 * 4c23 * 8ea1cca3,cca3,8ea1cca3v,cca3v 5152 e58592 5152 00005152 a8e0 a8e0 a8e0 a8e0 a8e0 a8e0 a8e0
+1350 a8e1 a8e1 a8e1 * 4c24 * 8ea1cca4,cca4,8ea1cca4v,cca4v 5155 e58595 5155 00005155 a8e1 a8e1 a8e1 a8e1 a8e1 a8e1 a8e1
+1351 a8e2 a8e2 a8e2 * 4c25 * 8ea1cca5,cca5,8ea1cca5v,cca5v 5169 e585a9 5169 00005169 a8e2 a8e2 a8e2 a8e2 a8e2 a8e2 a8e2
+1352 a8e3 a8e3 a8e3 * 4c26 * 8ea1cca6,cca6,8ea1cca6v,cca6v 5177 e585b7 5177 00005177 a8e3 a8e3 a8e3 a8e3 a8e3 a8e3 a8e3
+1353 a8e4 a8e4 a8e4 * 4c27 * 8ea1cca7,cca7,8ea1cca7v,cca7v 5176 e585b6 5176 00005176 a8e4 a8e4 a8e4 a8e4 a8e4 a8e4 a8e4
+1354 a8e5 a8e5 a8e5 * 4c28 * 8ea1cca8,cca8,8ea1cca8v,cca8v 5178 e585b8 5178 00005178 a8e5 a8e5 a8e5 a8e5 a8e5 a8e5 a8e5
+1355 a8e6 a8e6 a8e6 * 4c29 * 8ea1cca9,cca9,8ea1cca9v,cca9v 51bd e586bd 51bd 000051bd a8e6 a8e6 a8e6 a8e6 a8e6 a8e6 a8e6
+1356 a8e7 a8e7 a8e7 * 4c2a * 8ea1ccaa,ccaa,8ea1ccaav,ccaav 51fd e587bd 51fd 000051fd a8e7 a8e7 a8e7 a8e7 a8e7 a8e7 a8e7
+1357 a8e8 a8e8 a8e8 * 4c2b * 8ea1ccab,ccab,8ea1ccabv,ccabv 523b e588bb 523b 0000523b a8e8 a8e8 a8e8 a8e8 a8e8 a8e8 a8e8
+1358 a8e9 a8e9 a8e9 * 4c2c * 8ea1ccac,ccac,8ea1ccacv,ccacv 5238 e588b8 5238 00005238 a8e9 a8e9 a8e9 a8e9 a8e9 a8e9 a8e9
+1359 a8ea a8ea a8ea * 4c2d * 8ea1ccad,ccad,8ea1ccadv,ccadv 5237 e588b7 5237 00005237 a8ea a8ea a8ea a8ea a8ea a8ea a8ea
+1360 a8eb a8eb a8eb * 4c2e * 8ea1ccae,ccae,8ea1ccaev,ccaev 523a e588ba 523a 0000523a a8eb a8eb a8eb a8eb a8eb a8eb a8eb
+1361 a8ec a8ec a8ec * 4c2f * 8ea1ccaf,ccaf,8ea1ccafv,ccafv 5230 e588b0 5230 00005230 a8ec a8ec a8ec a8ec a8ec a8ec a8ec
+1362 a8ed a8ed a8ed * 4c30 * 8ea1ccb0,ccb0,8ea1ccb0v,ccb0v 522e e588ae 522e 0000522e a8ed a8ed a8ed a8ed a8ed a8ed a8ed
+1363 a8ee a8ee a8ee * 4c31 * 8ea1ccb1,ccb1,8ea1ccb1v,ccb1v 5236 e588b6 5236 00005236 a8ee a8ee a8ee a8ee a8ee a8ee a8ee
+1364 a8ef a8ef a8ef * 4c32 * 8ea1ccb2,ccb2,8ea1ccb2v,ccb2v 5241 e58981 5241 00005241 a8ef a8ef a8ef a8ef a8ef a8ef a8ef
+1365 a8f0 a8f0 a8f0 * 4c33 * 8ea1ccb3,ccb3,8ea1ccb3v,ccb3v 52be e58abe 52be 000052be a8f0 a8f0 a8f0 a8f0 a8f0 a8f0 a8f0
+1366 a8f1 a8f1 a8f1 * 4c34 * 8ea1ccb4,ccb4,8ea1ccb4v,ccb4v 52bb e58abb 52bb 000052bb a8f1 a8f1 a8f1 a8f1 a8f1 a8f1 a8f1
+1367 a8f2 a8f2 a8f2 * 4c35 * 8ea1ccb5,ccb5,8ea1ccb5v,ccb5v 5352 e58d92 5352 00005352 a8f2 a8f2 a8f2 a8f2 a8f2 a8f2 a8f2
+1368 a8f3 a8f3 a8f3 * 4c36 * 8ea1ccb6,ccb6,8ea1ccb6v,ccb6v 5354 e58d94 5354 00005354 a8f3 a8f3 a8f3 a8f3 a8f3 a8f3 a8f3
+1369 a8f4 a8f4 a8f4 * 4c37 * 8ea1ccb7,ccb7,8ea1ccb7v,ccb7v 5353 e58d93 5353 00005353 a8f4 a8f4 a8f4 a8f4 a8f4 a8f4 a8f4
+1370 a8f5 a8f5 a8f5 * 4c38 * 8ea1ccb8,ccb8,8ea1ccb8v,ccb8v 5351 e58d91 5351 00005351 a8f5 a8f5 a8f5 a8f5 a8f5 a8f5 a8f5
+1371 a8f6 a8f6 a8f6 * 4c39 * 8ea1ccb9,ccb9,8ea1ccb9v,ccb9v 5366 e58da6 5366 00005366 a8f6 a8f6 a8f6 a8f6 a8f6 a8f6 a8f6
+1372 a8f7 a8f7 a8f7 * 4c3a * 8ea1ccba,ccba,8ea1ccbav,ccbav 5377 e58db7 5377 00005377 a8f7 a8f7 a8f7 a8f7 a8f7 a8f7 a8f7
+1373 a8f8 a8f8 a8f8 * 4c3b * 8ea1ccbb,ccbb,8ea1ccbbv,ccbbv 5378 e58db8 5378 00005378 a8f8 a8f8 a8f8 a8f8 a8f8 a8f8 a8f8
+1374 a8f9 a8f9 a8f9 * 4c3c * 8ea1ccbc,ccbc,8ea1ccbcv,ccbcv 5379 e58db9 5379 00005379 a8f9 a8f9 a8f9 a8f9 a8f9 a8f9 a8f9
+1375 a8fa a8fa a8fa * 4c3d * 8ea1ccbd,ccbd,8ea1ccbdv,ccbdv 53d6 e58f96 53d6 000053d6 a8fa a8fa a8fa a8fa a8fa a8fa a8fa
+1376 a8fb a8fb a8fb * 4c3e * 8ea1ccbe,ccbe,8ea1ccbev,ccbev 53d4 e58f94 53d4 000053d4 a8fb a8fb a8fb a8fb a8fb a8fb a8fb
+1377 a8fc a8fc a8fc * 4c3f * 8ea1ccbf,ccbf,8ea1ccbfv,ccbfv 53d7 e58f97 53d7 000053d7 a8fc a8fc a8fc a8fc a8fc a8fc a8fc
+1378 a8fd a8fd a8fd * 4c40 * 8ea1ccc0,ccc0,8ea1ccc0v,ccc0v 5473 e591b3 5473 00005473 a8fd a8fd a8fd a8fd a8fd a8fd a8fd
+1379 a8fe a8fe a8fe * 4c41 * 8ea1ccc1,ccc1,8ea1ccc1v,ccc1v 5475 e591b5 5475 00005475 a8fe a8fe a8fe a8fe a8fe a8fe a8fe
+1380 a940 a940 a940 * 4c42 * 8ea1ccc2,ccc2,8ea1ccc2v,ccc2v 5496 e59296 5496 00005496 a940 a940 a940 a940 a940 a940 a940
+1381 a941 a941 a941 * 4c43 * 8ea1ccc3,ccc3,8ea1ccc3v,ccc3v 5478 e591b8 5478 00005478 a941 a941 a941 a941 a941 a941 a941
+1382 a942 a942 a942 * 4c44 * 8ea1ccc4,ccc4,8ea1ccc4v,ccc4v 5495 e59295 5495 00005495 a942 a942 a942 a942 a942 a942 a942
+1383 a943 a943 a943 * 4c45 * 8ea1ccc5,ccc5,8ea1ccc5v,ccc5v 5480 e59280 5480 00005480 a943 a943 a943 a943 a943 a943 a943
+1384 a944 a944 a944 * 4c46 * 8ea1ccc6,ccc6,8ea1ccc6v,ccc6v 547b e591bb 547b 0000547b a944 a944 a944 a944 a944 a944 a944
+1385 a945 a945 a945 * 4c47 * 8ea1ccc7,ccc7,8ea1ccc7v,ccc7v 5477 e591b7 5477 00005477 a945 a945 a945 a945 a945 a945 a945
+1386 a946 a946 a946 * 4c48 * 8ea1ccc8,ccc8,8ea1ccc8v,ccc8v 5484 e59284 5484 00005484 a946 a946 a946 a946 a946 a946 a946
+1387 a947 a947 a947 * 4c49 * 8ea1ccc9,ccc9,8ea1ccc9v,ccc9v 5492 e59292 5492 00005492 a947 a947 a947 a947 a947 a947 a947
+1388 a948 a948 a948 * 4c4a * 8ea1ccca,ccca,8ea1cccav,cccav 5486 e59286 5486 00005486 a948 a948 a948 a948 a948 a948 a948
+1389 a949 a949 a949 * 4c4b * 8ea1cccb,cccb,8ea1cccbv,cccbv 547c e591bc 547c 0000547c a949 a949 a949 a949 a949 a949 a949
+1390 a94a a94a a94a * 4c4c * 8ea1cccc,cccc,8ea1ccccv,ccccv 5490 e59290 5490 00005490 a94a a94a a94a a94a a94a a94a a94a
+1391 a94b a94b a94b * 4c4d * 8ea1cccd,cccd,8ea1cccdv,cccdv 5471 e591b1 5471 00005471 a94b a94b a94b a94b a94b a94b a94b
+1392 a94c a94c a94c * 4c4e * 8ea1ccce,ccce,8ea1cccev,cccev 5476 e591b6 5476 00005476 a94c a94c,fbd1 9154,a94c a94c a94c a94c a94c
+1393 a94d a94d a94d * 4c4f * 8ea1cccf,cccf,8ea1cccfv,cccfv 548c e5928c 548c 0000548c a94d a94d a94d a94d a94d a94d a94d
+1394 a94e a94e a94e * 4c50 * 8ea1ccd0,ccd0,8ea1ccd0v,ccd0v 549a e5929a 549a 0000549a a94e a94e a94e a94e a94e a94e a94e
+1395 a94f a94f a94f * 4c51 * 8ea1ccd1,ccd1,8ea1ccd1v,ccd1v 5462 e591a2 5462 00005462 a94f a94f a94f a94f a94f a94f a94f
+1396 a950 a950 a950 * 4c52 * 8ea1ccd2,ccd2,8ea1ccd2v,ccd2v 5468 e591a8 5468 00005468 a950 a950 a950 a950 a950 a950 a950
+1397 a951 a951 a951 * 4c53 * 8ea1ccd3,ccd3,8ea1ccd3v,ccd3v 548b e5928b 548b 0000548b a951 a951 a951 a951 a951 a951 a951
+1398 a952 a952 a952 * 4c54 * 8ea1ccd4,ccd4,8ea1ccd4v,ccd4v 547d e591bd 547d 0000547d a952 a952 a952 a952 a952 a952 a952
+1399 a953 a953 a953 * 4c55 * 8ea1ccd5,ccd5,8ea1ccd5v,ccd5v 548e e5928e 548e 0000548e a953 a953 a953 a953 a953 a953 a953
+1400 a954 a954 a954 * 4c56 * 8ea1ccd6,ccd6,8ea1ccd6v,ccd6v 56fa e59bba 56fa 000056fa a954 a954 a954 a954 a954 a954 a954
+1401 a955 a955 a955 * 4c57 * 8ea1ccd7,ccd7,8ea1ccd7v,ccd7v 5783 e59e83 5783 00005783 a955 a955 a955 a955 a955 a955 a955
+1402 a956 a956 a956 * 4c58 * 8ea1ccd8,ccd8,8ea1ccd8v,ccd8v 5777 e59db7 5777 00005777 a956 a956 a956 a956 a956 a956 a956
+1403 a957 a957 a957 * 4c59 * 8ea1ccd9,ccd9,8ea1ccd9v,ccd9v 576a e59daa 576a 0000576a a957 a957 a957 a957 a957 a957 a957
+1404 a958 a958 a958 * 4c5a * 8ea1ccda,ccda,8ea1ccdav,ccdav 5769 e59da9 5769 00005769 a958 a958 a958 a958 a958 a958 a958
+1405 a959 a959 a959 * 4c5b * 8ea1ccdb,ccdb,8ea1ccdbv,ccdbv 5761 e59da1 5761 00005761 a959 a959 a959 a959 a959 a959 a959
+1406 a95a a95a a95a * 4c5c * 8ea1ccdc,ccdc,8ea1ccdcv,ccdcv 5766 e59da6 5766 00005766 a95a a95a a95a a95a a95a a95a a95a
+1407 a95b a95b a95b * 4c5d * 8ea1ccdd,ccdd,8ea1ccddv,ccddv 5764 e59da4 5764 00005764 a95b a95b a95b a95b a95b a95b a95b
+1408 a95c a95c a95c * 4c5e * 8ea1ccde,ccde,8ea1ccdev,ccdev 577c e59dbc 577c 0000577c a95c a95c a95c a95c a95c a95c a95c
+1409 a95d a95d a95d * 4c5f * 8ea1ccdf,ccdf,8ea1ccdfv,ccdfv 591c e5a49c 591c 0000591c a95d a95d a95d a95d a95d a95d a95d
+1410 a95e a95e a95e * 4c60 * 8ea1cce0,cce0,8ea1cce0v,cce0v 5949 e5a589 5949 00005949 a95e a95e a95e a95e a95e a95e a95e
+1411 a95f a95f a95f * 4c61 * 8ea1cce1,cce1,8ea1cce1v,cce1v 5947 e5a587 5947 00005947 a95f a95f a95f a95f a95f a95f a95f
+1412 a960 a960 a960 * 4c62 * 8ea1cce2,cce2,8ea1cce2v,cce2v 5948 e5a588 5948 00005948 a960 a960 a960 a960 a960 a960 a960
+1413 a961 a961 a961 * 4c63 * 8ea1cce3,cce3,8ea1cce3v,cce3v 5944 e5a584 5944 00005944 a961 a961 a961 a961 a961 a961 a961
+1414 a962 a962 a962 * 4c64 * 8ea1cce4,cce4,8ea1cce4v,cce4v 5954 e5a594 5954 00005954 a962 a962 a962 a962 a962 a962 a962
+1415 a963 a963 a963 * 4c65 * 8ea1cce5,cce5,8ea1cce5v,cce5v 59be e5a6be 59be 000059be a963 a963 a963 a963 a963 a963 a963
+1416 a964 a964 a964 * 4c66 * 8ea1cce6,cce6,8ea1cce6v,cce6v 59bb e5a6bb 59bb 000059bb a964 a964 a964 a964 a964 a964 a964
+1417 a965 a965 a965 * 4c67 * 8ea1cce7,cce7,8ea1cce7v,cce7v 59d4 e5a794 59d4 000059d4 a965 a965 a965 a965 a965 a965 a965
+1418 a966 a966 a966 * 4c68 * 8ea1cce8,cce8,8ea1cce8v,cce8v 59b9 e5a6b9 59b9 000059b9 a966 a966 a966 a966 a966 a966 a966
+1419 a967 a967 a967 * 4c69 * 8ea1cce9,cce9,8ea1cce9v,cce9v 59ae e5a6ae 59ae 000059ae a967 a967 a967 a967 a967 a967 a967
+1420 a968 a968 a968 * 4c6a * 8ea1ccea,ccea,8ea1cceav,cceav 59d1 e5a791 59d1 000059d1 a968 a968 a968 a968 a968 a968 a968
+1421 a969 a969 a969 * 4c6b * 8ea1cceb,cceb,8ea1ccebv,ccebv 59c6 e5a786 59c6 000059c6 a969 a969 a969 a969 a969 a969 a969
+1422 a96a a96a a96a * 4c6c * 8ea1ccec,ccec,8ea1ccecv,ccecv 59d0 e5a790 59d0 000059d0 a96a a96a a96a a96a a96a a96a a96a
+1423 a96b a96b a96b * 4c6d * 8ea1cced,cced,8ea1ccedv,ccedv 59cd e5a78d 59cd 000059cd a96b a96b a96b a96b a96b a96b a96b
+1424 a96c a96c a96c * 4c6e * 8ea1ccee,ccee,8ea1cceev,cceev 59cb e5a78b 59cb 000059cb a96c a96c a96c a96c a96c a96c a96c
+1425 a96d a96d a96d * 4c6f * 8ea1ccef,ccef,8ea1ccefv,ccefv 59d3 e5a793 59d3 000059d3 a96d a96d a96d a96d a96d a96d a96d
+1426 a96e a96e a96e * 4c70 * 8ea1ccf0,ccf0,8ea1ccf0v,ccf0v 59ca e5a78a 59ca 000059ca a96e a96e a96e a96e a96e a96e a96e
+1427 a96f a96f a96f * 4c71 * 8ea1ccf1,ccf1,8ea1ccf1v,ccf1v 59af e5a6af 59af 000059af a96f a96f a96f a96f a96f a96f a96f
+1428 a970 a970 a970 * 4c72 * 8ea1ccf2,ccf2,8ea1ccf2v,ccf2v 59b3 e5a6b3 59b3 000059b3 a970 a970 a970 a970 a970 a970 a970
+1429 a971 a971 a971 * 4c73 * 8ea1ccf3,ccf3,8ea1ccf3v,ccf3v 59d2 e5a792 59d2 000059d2 a971 a971,fbf4 9158,a971 a971 a971 a971 a971
+1430 a972 a972 a972 * 4c74 * 8ea1ccf4,ccf4,8ea1ccf4v,ccf4v 59c5 e5a785 59c5 000059c5 a972 a972 a972 a972 a972 a972 a972
+1431 a973 a973 a973 * 4c75 * 8ea1ccf5,ccf5,8ea1ccf5v,ccf5v 5b5f e5ad9f 5b5f 00005b5f a973 a973 a973 a973 a973 a973 a973
+1432 a974 a974 a974 * 4c76 * 8ea1ccf6,ccf6,8ea1ccf6v,ccf6v 5b64 e5ada4 5b64 00005b64 a974 a974 a974 a974 a974 a974 a974
+1433 a975 a975 a975 * 4c77 * 8ea1ccf7,ccf7,8ea1ccf7v,ccf7v 5b63 e5ada3 5b63 00005b63 a975 a975 a975 a975 a975 a975 a975
+1434 a976 a976 a976 * 4c78 * 8ea1ccf8,ccf8,8ea1ccf8v,ccf8v 5b97 e5ae97 5b97 00005b97 a976 a976 a976 a976 a976 a976 a976
+1435 a977 a977 a977 * 4c79 * 8ea1ccf9,ccf9,8ea1ccf9v,ccf9v 5b9a e5ae9a 5b9a 00005b9a a977 a977 a977 a977 a977 a977 a977
+1436 a978 a978 a978 * 4c7a * 8ea1ccfa,ccfa,8ea1ccfav,ccfav 5b98 e5ae98 5b98 00005b98 a978 a978 a978 a978 a978 a978 a978
+1437 a979 a979 a979 * 4c7b * 8ea1ccfb,ccfb,8ea1ccfbv,ccfbv 5b9c e5ae9c 5b9c 00005b9c a979 a979 a979 a979 a979 a979 a979
+1438 a97a a97a a97a * 4c7c * 8ea1ccfc,ccfc,8ea1ccfcv,ccfcv 5b99 e5ae99 5b99 00005b99 a97a a97a a97a a97a a97a a97a a97a
+1439 a97b a97b a97b * 4c7d * 8ea1ccfd,ccfd,8ea1ccfdv,ccfdv 5b9b e5ae9b 5b9b 00005b9b a97b a97b a97b a97b a97b a97b a97b
+1440 a97c a97c a97c * 4c7e * 8ea1ccfe,ccfe,8ea1ccfev,ccfev 5c1a e5b09a 5c1a 00005c1a a97c a97c a97c a97c a97c a97c a97c
+1441 a97d a97d a97d * 4d21 * 8ea1cda1,cda1,8ea1cda1v,cda1v 5c48 e5b188 5c48 00005c48 a97d a97d a97d a97d a97d a97d a97d
+1442 a97e a97e a97e * 4d22 * 8ea1cda2,cda2,8ea1cda2v,cda2v 5c45 e5b185 5c45 00005c45 a97e a97e a97e a97e a97e a97e a97e
+1443 a9a1 a9a1 a9a1 * 4d23 * 8ea1cda3,cda3,8ea1cda3v,cda3v 5c46 e5b186 5c46 00005c46 a9a1 a9a1 a9a1 a9a1 a9a1 a9a1 a9a1
+1444 a9a2 a9a2 a9a2 * 4d24 * 8ea1cda4,cda4,8ea1cda4v,cda4v 5cb7 e5b2b7 5cb7 00005cb7 a9a2 a9a2 a9a2 a9a2 a9a2 a9a2 a9a2
+1445 a9a3 a9a3 a9a3 * 4d25 * 8ea1cda5,cda5,8ea1cda5v,cda5v 5ca1 e5b2a1 5ca1 00005ca1 a9a3 a9a3 a9a3 a9a3 a9a3 a9a3 a9a3
+1446 a9a4 a9a4 a9a4 * 4d26 * 8ea1cda6,cda6,8ea1cda6v,cda6v 5cb8 e5b2b8 5cb8 00005cb8 a9a4 a9a4 a9a4 a9a4 a9a4 a9a4 a9a4
+1447 a9a5 a9a5 a9a5 * 4d27 * 8ea1cda7,cda7,8ea1cda7v,cda7v 5ca9 e5b2a9 5ca9 00005ca9 a9a5 a9a5 a9a5 a9a5 a9a5 a9a5 a9a5
+1448 a9a6 a9a6 a9a6 * 4d28 * 8ea1cda8,cda8,8ea1cda8v,cda8v 5cab e5b2ab 5cab 00005cab a9a6 a9a6 a9a6 a9a6 a9a6 a9a6 a9a6
+1449 a9a7 a9a7 a9a7 * 4d29 * 8ea1cda9,cda9,8ea1cda9v,cda9v 5cb1 e5b2b1 5cb1 00005cb1 a9a7 a9a7 a9a7 a9a7 a9a7 a9a7 a9a7
+1450 a9a8 a9a8 a9a8 * 4d2a * 8ea1cdaa,cdaa,8ea1cdaav,cdaav 5cb3 e5b2b3 5cb3 00005cb3 a9a8 a9a8 a9a8 a9a8 a9a8 a9a8 a9a8
+1451 a9a9 a9a9 a9a9 * 4d2b * 8ea1cdab,cdab,8ea1cdabv,cdabv 5e18 e5b898 5e18 00005e18 a9a9 a9a9 a9a9 a9a9 a9a9 a9a9 a9a9
+1452 a9aa a9aa a9aa * 4d2c * 8ea1cdac,cdac,8ea1cdacv,cdacv 5e1a e5b89a 5e1a 00005e1a a9aa a9aa a9aa a9aa a9aa a9aa a9aa
+1453 a9ab a9ab a9ab * 4d2d * 8ea1cdad,cdad,8ea1cdadv,cdadv 5e16 e5b896 5e16 00005e16 a9ab a9ab a9ab a9ab a9ab a9ab a9ab
+1454 a9ac a9ac a9ac * 4d2e * 8ea1cdae,cdae,8ea1cdaev,cdaev 5e15 e5b895 5e15 00005e15 a9ac a9ac a9ac a9ac a9ac a9ac a9ac
+1455 a9ad a9ad a9ad * 4d2f * 8ea1cdaf,cdaf,8ea1cdafv,cdafv 5e1b e5b89b 5e1b 00005e1b a9ad a9ad a9ad a9ad a9ad a9ad a9ad
+1456 a9ae a9ae a9ae * 4d30 * 8ea1cdb0,cdb0,8ea1cdb0v,cdb0v 5e11 e5b891 5e11 00005e11 a9ae a9ae a9ae a9ae a9ae a9ae a9ae
+1457 a9af a9af a9af * 4d31 * 8ea1cdb1,cdb1,8ea1cdb1v,cdb1v 5e78 e5b9b8 5e78 00005e78 a9af a9af a9af a9af a9af a9af a9af
+1458 a9b0 a9b0 a9b0 * 4d32 * 8ea1cdb2,cdb2,8ea1cdb2v,cdb2v 5e9a e5ba9a 5e9a 00005e9a a9b0 a9b0 a9b0 a9b0 a9b0 a9b0 a9b0
+1459 a9b1 a9b1 a9b1 * 4d33 * 8ea1cdb3,cdb3,8ea1cdb3v,cdb3v 5e97 e5ba97 5e97 00005e97 a9b1 a9b1 a9b1 a9b1 a9b1 a9b1 a9b1
+1460 a9b2 a9b2 a9b2 * 4d34 * 8ea1cdb4,cdb4,8ea1cdb4v,cdb4v 5e9c e5ba9c 5e9c 00005e9c a9b2 a9b2 a9b2 a9b2 a9b2 a9b2 a9b2
+1461 a9b3 a9b3 a9b3 * 4d35 * 8ea1cdb5,cdb5,8ea1cdb5v,cdb5v 5e95 e5ba95 5e95 00005e95 a9b3 a9b3 a9b3 a9b3 a9b3 a9b3 a9b3
+1462 a9b4 a9b4 a9b4 * 4d36 * 8ea1cdb6,cdb6,8ea1cdb6v,cdb6v 5e96 e5ba96 5e96 00005e96 a9b4 a9b4 a9b4 a9b4 a9b4 a9b4 a9b4
+1463 a9b5 a9b5 a9b5 * 4d37 * 8ea1cdb7,cdb7,8ea1cdb7v,cdb7v 5ef6 e5bbb6 5ef6 00005ef6 a9b5 a9b5 a9b5 a9b5 a9b5 a9b5 a9b5
+1464 a9b6 a9b6 a9b6 * 4d38 * 8ea1cdb8,cdb8,8ea1cdb8v,cdb8v 5f26 e5bca6 5f26 00005f26 a9b6 a9b6 a9b6 a9b6 a9b6 a9b6 a9b6
+1465 a9b7 a9b7 a9b7 * 4d39 * 8ea1cdb9,cdb9,8ea1cdb9v,cdb9v 5f27 e5bca7 5f27 00005f27 a9b7 a9b7 a9b7 a9b7 a9b7 a9b7 a9b7
+1466 a9b8 a9b8 a9b8 * 4d3a * 8ea1cdba,cdba,8ea1cdbav,cdbav 5f29 e5bca9 5f29 00005f29 a9b8 a9b8 a9b8 a9b8 a9b8 a9b8 a9b8
+1467 a9b9 a9b9 a9b9 * 4d3b * 8ea1cdbb,cdbb,8ea1cdbbv,cdbbv 5f80 e5be80 5f80 00005f80 a9b9 a9b9 a9b9 a9b9 a9b9 a9b9 a9b9
+1468 a9ba a9ba a9ba * 4d3c * 8ea1cdbc,cdbc,8ea1cdbcv,cdbcv 5f81 e5be81 5f81 00005f81 a9ba a9ba a9ba a9ba a9ba a9ba a9ba
+1469 a9bb a9bb a9bb * 4d3d * 8ea1cdbd,cdbd,8ea1cdbdv,cdbdv 5f7f e5bdbf 5f7f 00005f7f a9bb a9bb a9bb a9bb a9bb a9bb a9bb
+1470 a9bc a9bc a9bc * 4d3e * 8ea1cdbe,cdbe,8ea1cdbev,cdbev 5f7c e5bdbc 5f7c 00005f7c a9bc a9bc a9bc a9bc a9bc a9bc a9bc
+1471 a9bd a9bd a9bd * 4d3f * 8ea1cdbf,cdbf,8ea1cdbfv,cdbfv 5fdd e5bf9d 5fdd 00005fdd a9bd a9bd a9bd a9bd a9bd a9bd a9bd
+1472 a9be a9be a9be * 4d40 * 8ea1cdc0,cdc0,8ea1cdc0v,cdc0v 5fe0 e5bfa0 5fe0 00005fe0 a9be a9be a9be a9be a9be a9be a9be
+1473 a9bf a9bf a9bf * 4d41 * 8ea1cdc1,cdc1,8ea1cdc1v,cdc1v 5ffd e5bfbd 5ffd 00005ffd a9bf a9bf a9bf a9bf a9bf a9bf a9bf
+1474 a9c0 a9c0 a9c0 * 4d42 * 8ea1cdc2,cdc2,8ea1cdc2v,cdc2v 5ff5 e5bfb5 5ff5 00005ff5 a9c0 a9c0 a9c0 a9c0 a9c0 a9c0 a9c0
+1475 a9c1 a9c1 a9c1 * 4d43 * 8ea1cdc3,cdc3,8ea1cdc3v,cdc3v 5fff e5bfbf 5fff 00005fff a9c1 a9c1 a9c1 a9c1 a9c1 a9c1 a9c1
+1476 a9c2 a9c2 a9c2 * 4d44 * 8ea1cdc4,cdc4,8ea1cdc4v,cdc4v 600f e6808f 600f 0000600f a9c2 a9c2 a9c2 a9c2 a9c2 a9c2 a9c2
+1477 a9c3 a9c3 a9c3 * 4d45 * 8ea1cdc5,cdc5,8ea1cdc5v,cdc5v 6014 e68094 6014 00006014 a9c3 a9c3 a9c3 a9c3 a9c3 a9c3 a9c3
+1478 a9c4 a9c4 a9c4 * 4d46 * 8ea1cdc6,cdc6,8ea1cdc6v,cdc6v 602f e680af 602f 0000602f a9c4 a9c4 a9c4 a9c4 a9c4 a9c4 a9c4
+1479 a9c5 a9c5 a9c5 * 4d47 * 8ea1cdc7,cdc7,8ea1cdc7v,cdc7v 6035 e680b5 6035 00006035 a9c5 a9c5 a9c5 a9c5 a9c5 a9c5 a9c5
+1480 a9c6 a9c6 a9c6 * 4d48 * 8ea1cdc8,cdc8,8ea1cdc8v,cdc8v 6016 e68096 6016 00006016 a9c6 a9c6 a9c6 a9c6 a9c6 a9c6 a9c6
+1481 a9c7 a9c7 a9c7 * 4d49 * 8ea1cdc9,cdc9,8ea1cdc9v,cdc9v 602a e680aa 602a 0000602a a9c7 a9c7 a9c7 a9c7 a9c7 a9c7 a9c7
+1482 a9c8 a9c8 a9c8 * 4d4a * 8ea1cdca,cdca,8ea1cdcav,cdcav 6015 e68095 6015 00006015 a9c8 a9c8 a9c8 a9c8 a9c8 a9c8 a9c8
+1483 a9c9 a9c9 a9c9 * 4d4b * 8ea1cdcb,cdcb,8ea1cdcbv,cdcbv 6021 e680a1 6021 00006021 a9c9 a9c9 a9c9 a9c9 a9c9 a9c9 a9c9
+1484 a9ca a9ca a9ca * 4d4c * 8ea1cdcc,cdcc,8ea1cdccv,cdccv 6027 e680a7 6027 00006027 a9ca a9ca a9ca a9ca a9ca a9ca a9ca
+1485 a9cb a9cb a9cb * 4d4d * 8ea1cdcd,cdcd,8ea1cdcdv,cdcdv 6029 e680a9 6029 00006029 a9cb a9cb a9cb a9cb a9cb a9cb a9cb
+1486 a9cc a9cc a9cc * 4d4e * 8ea1cdce,cdce,8ea1cdcev,cdcev 602b e680ab 602b 0000602b a9cc a9cc a9cc a9cc a9cc a9cc a9cc
+1487 a9cd a9cd a9cd * 4d4f * 8ea1cdcf,cdcf,8ea1cdcfv,cdcfv 601b e6809b 601b 0000601b a9cd a9cd a9cd a9cd a9cd a9cd a9cd
+1488 a9ce a9ce a9ce * 4d50 * 8ea1cdd0,cdd0,8ea1cdd0v,cdd0v 6216 e68896 6216 00006216 a9ce a9ce a9ce a9ce a9ce a9ce a9ce
+1489 a9cf a9cf a9cf * 4d51 * 8ea1cdd1,cdd1,8ea1cdd1v,cdd1v 6215 e68895 6215 00006215 a9cf a9cf a9cf a9cf a9cf a9cf a9cf
+1490 a9d0 a9d0 a9d0 * 4d52 * 8ea1cdd2,cdd2,8ea1cdd2v,cdd2v 623f e688bf 623f 0000623f a9d0 a9d0 a9d0 a9d0 a9d0 a9d0 a9d0
+1491 a9d1 a9d1 a9d1 * 4d53 * 8ea1cdd3,cdd3,8ea1cdd3v,cdd3v 623e e688be 623e 0000623e a9d1 a9d1 a9d1 a9d1 a9d1 a9d1 a9d1
+1492 a9d2 a9d2 a9d2 * 4d54 * 8ea1cdd4,cdd4,8ea1cdd4v,cdd4v 6240 e68980 6240 00006240 a9d2 a9d2 a9d2 a9d2 a9d2 a9d2 a9d2
+1493 a9d3 a9d3 a9d3 * 4d55 * 8ea1cdd5,cdd5,8ea1cdd5v,cdd5v 627f e689bf 627f 0000627f a9d3 a9d3 a9d3 a9d3 a9d3 a9d3 a9d3
+1494 a9d4 a9d4 a9d4 * 4d56 * 8ea1cdd6,cdd6,8ea1cdd6v,cdd6v 62c9 e68b89 62c9 000062c9 a9d4 a9d4 a9d4 a9d4 a9d4 a9d4 a9d4
+1495 a9d5 a9d5 a9d5 * 4d57 * 8ea1cdd7,cdd7,8ea1cdd7v,cdd7v 62cc e68b8c 62cc 000062cc a9d5 a9d5 a9d5 a9d5 a9d5 a9d5 a9d5
+1496 a9d6 a9d6 a9d6 * 4d58 * 8ea1cdd8,cdd8,8ea1cdd8v,cdd8v 62c4 e68b84 62c4 000062c4 a9d6 a9d6 a9d6 a9d6 a9d6 a9d6 a9d6
+1497 a9d7 a9d7 a9d7 * 4d59 * 8ea1cdd9,cdd9,8ea1cdd9v,cdd9v 62bf e68abf 62bf 000062bf a9d7 a9d7 a9d7 a9d7 a9d7 a9d7 a9d7
+1498 a9d8 a9d8 a9d8 * 4d5a * 8ea1cdda,cdda,8ea1cddav,cddav 62c2 e68b82 62c2 000062c2 a9d8 a9d8 a9d8 a9d8 a9d8 a9d8 a9d8
+1499 a9d9 a9d9 a9d9 * 4d5b * 8ea1cddb,cddb,8ea1cddbv,cddbv 62b9 e68ab9 62b9 000062b9 a9d9 a9d9 a9d9 a9d9 a9d9 a9d9 a9d9
+1500 a9da a9da a9da * 4d5c * 8ea1cddc,cddc,8ea1cddcv,cddcv 62d2 e68b92 62d2 000062d2 a9da a9da a9da a9da a9da a9da a9da
+1501 a9db a9db a9db * 4d5d * 8ea1cddd,cddd,8ea1cdddv,cdddv 62db e68b9b 62db 000062db a9db a9db a9db a9db a9db a9db a9db
+1502 a9dc a9dc a9dc * 4d5e * 8ea1cdde,cdde,8ea1cddev,cddev 62ab e68aab 62ab 000062ab a9dc a9dc a9dc a9dc a9dc a9dc a9dc
+1503 a9dd a9dd a9dd * 4d5f * 8ea1cddf,cddf,8ea1cddfv,cddfv 62d3 e68b93 62d3 000062d3 a9dd a9dd a9dd a9dd a9dd a9dd a9dd
+1504 a9de a9de a9de * 4d60 * 8ea1cde0,cde0,8ea1cde0v,cde0v 62d4 e68b94 62d4 000062d4 a9de a9de a9de a9de a9de a9de a9de
+1505 a9df a9df a9df * 4d61 * 8ea1cde1,cde1,8ea1cde1v,cde1v 62cb e68b8b 62cb 000062cb a9df a9df a9df a9df a9df a9df a9df
+1506 a9e0 a9e0 a9e0 * 4d62 * 8ea1cde2,cde2,8ea1cde2v,cde2v 62c8 e68b88 62c8 000062c8 a9e0 a9e0 a9e0 a9e0 a9e0 a9e0 a9e0
+1507 a9e1 a9e1 a9e1 * 4d63 * 8ea1cde3,cde3,8ea1cde3v,cde3v 62a8 e68aa8 62a8 000062a8 a9e1 a9e1 a9e1 a9e1 a9e1 a9e1 a9e1
+1508 a9e2 a9e2 a9e2 * 4d64 * 8ea1cde4,cde4,8ea1cde4v,cde4v 62bd e68abd 62bd 000062bd a9e2 a9e2 a9e2 a9e2 a9e2 a9e2 a9e2
+1509 a9e3 a9e3 a9e3 * 4d65 * 8ea1cde5,cde5,8ea1cde5v,cde5v 62bc e68abc 62bc 000062bc a9e3 a9e3 a9e3 a9e3 a9e3 a9e3 a9e3
+1510 a9e4 a9e4 a9e4 * 4d66 * 8ea1cde6,cde6,8ea1cde6v,cde6v 62d0 e68b90,eeb2a6 62d0,eca6 000062d0,0000eca6 9dc4,a9e4 a9e4 a9e4 a9e4 a9e4 a9e4 9dc4,a9e4
+1511 a9e5 a9e5 a9e5 * 4d67 * 8ea1cde7,cde7,8ea1cde7v,cde7v 62d9 e68b99 62d9 000062d9 a9e5 a9e5 a9e5 a9e5 a9e5 a9e5 a9e5
+1512 a9e6 a9e6 a9e6 * 4d68 * 8ea1cde8,cde8,8ea1cde8v,cde8v 62c7 e68b87 62c7 000062c7 a9e6 a9e6 a9e6 a9e6 a9e6 a9e6 a9e6
+1513 a9e7 a9e7 a9e7 * 4d69 * 8ea1cde9,cde9,8ea1cde9v,cde9v 62cd e68b8d 62cd 000062cd a9e7 a9e7 a9e7 a9e7 a9e7 a9e7 a9e7
+1514 a9e8 a9e8 a9e8 * 4d6a * 8ea1cdea,cdea,8ea1cdeav,cdeav 62b5 e68ab5 62b5 000062b5 a9e8 a9e8 a9e8 a9e8 a9e8 a9e8 a9e8
+1515 a9e9 a9e9 a9e9 * 4d6b * 8ea1cdeb,cdeb,8ea1cdebv,cdebv 62da e68b9a 62da 000062da a9e9 a9e9 a9e9 a9e9 a9e9 a9e9 a9e9
+1516 a9ea a9ea a9ea * 4d6c * 8ea1cdec,cdec,8ea1cdecv,cdecv 62b1 e68ab1 62b1 000062b1 a9ea a9ea a9ea a9ea a9ea a9ea a9ea
+1517 a9eb a9eb a9eb * 4d6d * 8ea1cded,cded,8ea1cdedv,cdedv 62d8 e68b98 62d8 000062d8 a9eb a9eb a9eb a9eb a9eb a9eb a9eb
+1518 a9ec a9ec a9ec * 4d6e * 8ea1cdee,cdee,8ea1cdeev,cdeev 62d6 e68b96 62d6 000062d6 a9ec a9ec a9ec a9ec a9ec a9ec a9ec
+1519 a9ed a9ed a9ed * 4d6f * 8ea1cdef,cdef,8ea1cdefv,cdefv 62d7 e68b97 62d7 000062d7 a9ed a9ed a9ed a9ed a9ed a9ed a9ed
+1520 a9ee a9ee a9ee * 4d70 * 8ea1cdf0,cdf0,8ea1cdf0v,cdf0v 62c6 e68b86 62c6 000062c6 a9ee a9ee a9ee a9ee a9ee a9ee a9ee
+1521 a9ef a9ef a9ef * 4d71 * 8ea1cdf1,cdf1,8ea1cdf1v,cdf1v 62ac e68aac 62ac 000062ac a9ef a9ef a9ef a9ef a9ef a9ef a9ef
+1522 a9f0 a9f0 a9f0 * 4d72 * 8ea1cdf2,cdf2,8ea1cdf2v,cdf2v 62ce e68b8e,eeb992 62ce,ee52 000062ce,0000ee52 a077,a9f0 a9f0 a9f0 a9f0 a9f0 a9f0 a077,a9f0
+1523 a9f1 a9f1 a9f1 * 4d73 * 8ea1cdf3,cdf3,8ea1cdf3v,cdf3v 653e e694be 653e 0000653e a9f1 a9f1 a9f1 a9f1 a9f1 a9f1 a9f1
+1524 a9f2 a9f2 a9f2 * 4d74 * 8ea1cdf4,cdf4,8ea1cdf4v,cdf4v 65a7 e696a7 65a7 000065a7 a9f2 a9f2 a9f2 a9f2 a9f2 a9f2 a9f2
+1525 a9f3 a9f3 a9f3 * 4d75 * 8ea1cdf5,cdf5,8ea1cdf5v,cdf5v 65bc e696bc 65bc 000065bc a9f3 a9f3 a9f3 a9f3 a9f3 a9f3 a9f3
+1526 a9f4 a9f4 a9f4 * 4d76 * 8ea1cdf6,cdf6,8ea1cdf6v,cdf6v 65fa e697ba 65fa 000065fa a9f4 a9f4 a9f4 a9f4 a9f4 a9f4 a9f4
+1527 a9f5 a9f5 a9f5 * 4d77 * 8ea1cdf7,cdf7,8ea1cdf7v,cdf7v 6614 e69894 6614 00006614 a9f5 a9f5 a9f5 a9f5 a9f5 a9f5 a9f5
+1528 a9f6 a9f6 a9f6 * 4d78 * 8ea1cdf8,cdf8,8ea1cdf8v,cdf8v 6613 e69893 6613 00006613 a9f6 a9f6 a9f6 a9f6 a9f6 a9f6 a9f6
+1529 a9f7 a9f7 a9f7 * 4d79 * 8ea1cdf9,cdf9,8ea1cdf9v,cdf9v 660c e6988c 660c 0000660c a9f7 a9f7 a9f7 a9f7 a9f7 a9f7 a9f7
+1530 a9f8 a9f8 a9f8 * 4d7a * 8ea1cdfa,cdfa,8ea1cdfav,cdfav 6606 e69886 6606 00006606 a9f8 a9f8 a9f8 a9f8 a9f8 a9f8 a9f8
+1531 a9f9 a9f9 a9f9 * 4d7b * 8ea1cdfb,cdfb,8ea1cdfbv,cdfbv 6602 e69882 6602 00006602 a9f9 a9f9 a9f9 a9f9 a9f9 a9f9 a9f9
+1532 a9fa a9fa a9fa * 4d7c * 8ea1cdfc,cdfc,8ea1cdfcv,cdfcv 660e e6988e 660e 0000660e a9fa a9fa a9fa a9fa a9fa a9fa a9fa
+1533 a9fb a9fb a9fb * 4d7d * 8ea1cdfd,cdfd,8ea1cdfdv,cdfdv 6600 e69880 6600 00006600 a9fb a9fb a9fb a9fb a9fb a9fb a9fb
+1534 a9fc a9fc a9fc * 4d7e * 8ea1cdfe,cdfe,8ea1cdfev,cdfev 660f e6988f 660f 0000660f a9fc a9fc a9fc a9fc a9fc a9fc a9fc
+1535 a9fd a9fd a9fd * 4e21 * 8ea1cea1,cea1,8ea1cea1v,cea1v 6615 e69895 6615 00006615 a9fd a9fd a9fd a9fd a9fd a9fd a9fd
+1536 a9fe a9fe a9fe * 4e22 * 8ea1cea2,cea2,8ea1cea2v,cea2v 660a e6988a 660a 0000660a a9fe a9fe a9fe a9fe a9fe a9fe a9fe
+1537 aa40 aa40 aa40 * 4e23 * 8ea1cea3,cea3,8ea1cea3v,cea3v 6607 e69887 6607 00006607 aa40 aa40 aa40 aa40 aa40 aa40 aa40
+1538 aa41 aa41 aa41 * 4e24 * 8ea1cea4,cea4,8ea1cea4v,cea4v 670d e69c8d 670d 0000670d aa41 aa41 aa41 aa41 aa41 aa41 aa41
+1539 aa42 aa42 aa42 * 4e25 * 8ea1cea5,cea5,8ea1cea5v,cea5v 670b e69c8b 670b 0000670b aa42 aa42 aa42 aa42 aa42 aa42 aa42
+1540 aa43 aa43 aa43 * 4e26 * 8ea1cea6,cea6,8ea1cea6v,cea6v 676d e69dad 676d 0000676d aa43 aa43 aa43 aa43 aa43 aa43 aa43
+1541 aa44 aa44 aa44 * 4e27 * 8ea1cea7,cea7,8ea1cea7v,cea7v 678b e69e8b 678b 0000678b aa44 aa44 aa44 aa44 aa44 aa44 aa44
+1542 aa45 aa45 aa45 * 4e28 * 8ea1cea8,cea8,8ea1cea8v,cea8v 6795 e69e95 6795 00006795 aa45 aa45 aa45 aa45 aa45 aa45 aa45
+1543 aa46 aa46 aa46 * 4e29 * 8ea1cea9,cea9,8ea1cea9v,cea9v 6771 e69db1 6771 00006771 aa46 aa46 aa46 aa46 aa46 aa46 aa46
+1544 aa47 aa47 aa47 * 4e2a * 8ea1ceaa,ceaa,8ea1ceaav,ceaav 679c e69e9c 679c 0000679c aa47 aa47 aa47 aa47 aa47 aa47 aa47
+1545 aa48 aa48 aa48 * 4e2b * 8ea1ceab,ceab,8ea1ceabv,ceabv 6773 e69db3 6773 00006773 aa48 aa48 aa48 aa48 aa48 aa48 aa48
+1546 aa49 aa49 aa49 * 4e2c * 8ea1ceac,ceac,8ea1ceacv,ceacv 6777 e69db7 6777 00006777 aa49 aa49 aa49 aa49 aa49 aa49 aa49
+1547 aa4a aa4a aa4a * 4e2d * 8ea1cead,cead,8ea1ceadv,ceadv 6787 e69e87 6787 00006787 aa4a aa4a aa4a aa4a aa4a aa4a aa4a
+1548 aa4b aa4b aa4b * 4e2e * 8ea1ceae,ceae,8ea1ceaev,ceaev 679d e69e9d 679d 0000679d aa4b aa4b aa4b aa4b aa4b aa4b aa4b
+1549 aa4c aa4c aa4c * 4e2f * 8ea1ceaf,ceaf,8ea1ceafv,ceafv 6797 e69e97 6797 00006797 aa4c aa4c aa4c aa4c aa4c aa4c aa4c
+1550 aa4d aa4d aa4d * 4e30 * 8ea1ceb0,ceb0,8ea1ceb0v,ceb0v 676f e69daf 676f 0000676f aa4d aa4d aa4d aa4d aa4d aa4d aa4d
+1551 aa4e aa4e aa4e * 4e31 * 8ea1ceb1,ceb1,8ea1ceb1v,ceb1v 6770 e69db0 6770 00006770 aa4e aa4e aa4e aa4e aa4e aa4e aa4e
+1552 aa4f aa4f aa4f * 4e32 * 8ea1ceb2,ceb2,8ea1ceb2v,ceb2v 677f e69dbf 677f 0000677f aa4f aa4f aa4f aa4f aa4f aa4f aa4f
+1553 aa50 aa50 aa50 * 4e33 * 8ea1ceb3,ceb3,8ea1ceb3v,ceb3v 6789 e69e89 6789 00006789 aa50 aa50 aa50 aa50 aa50 aa50 aa50
+1554 aa51 aa51 aa51 * 4e34 * 8ea1ceb4,ceb4,8ea1ceb4v,ceb4v 677e e69dbe 677e 0000677e aa51 aa51 aa51 aa51 aa51 aa51 aa51
+1555 aa52 aa52 aa52 * 4e35 * 8ea1ceb5,ceb5,8ea1ceb5v,ceb5v 6790 e69e90 6790 00006790 aa52 aa52 aa52 aa52 aa52 aa52 aa52
+1556 aa53 aa53 aa53 * 4e36 * 8ea1ceb6,ceb6,8ea1ceb6v,ceb6v 6775 e69db5 6775 00006775 aa53 aa53 aa53 aa53 aa53 aa53 aa53
+1557 aa54 aa54 aa54 * 4e37 * 8ea1ceb7,ceb7,8ea1ceb7v,ceb7v 679a e69e9a 679a 0000679a aa54 aa54 aa54 aa54 aa54 aa54 aa54
+1558 aa55 aa55 aa55 * 4e38 * 8ea1ceb8,ceb8,8ea1ceb8v,ceb8v 6793 e69e93 6793 00006793 aa55 aa55 aa55 aa55 aa55 aa55 aa55
+1559 aa56 aa56 aa56 * 4e39 * 8ea1ceb9,ceb9,8ea1ceb9v,ceb9v 677c e69dbc 677c 0000677c aa56 aa56 aa56 aa56 aa56 aa56 aa56
+1560 aa57 aa57 aa57 * 4e3a * 8ea1ceba,ceba,8ea1cebav,cebav 676a e69daa 676a 0000676a aa57 aa57 aa57 aa57 aa57 aa57 aa57
+1561 aa58 aa58 aa58 * 4e3b * 8ea1cebb,cebb,8ea1cebbv,cebbv 6772 e69db2 6772 00006772 aa58 aa58,fcb0 9061,aa58 aa58 aa58 aa58 aa58
+1562 aa59 aa59 aa59 * 4e3c * 8ea1cebc,cebc,8ea1cebcv,cebcv 6b23 e6aca3 6b23 00006b23 aa59 aa59 aa59 aa59 aa59 aa59 aa59
+1563 aa5a aa5a aa5a * 4e3d * 8ea1cebd,cebd,8ea1cebdv,cebdv 6b66 e6ada6 6b66 00006b66 aa5a aa5a aa5a aa5a aa5a aa5a aa5a
+1564 aa5b aa5b aa5b * 4e3e * 8ea1cebe,cebe,8ea1cebev,cebev 6b67 e6ada7 6b67 00006b67 aa5b aa5b 9265,aa5b aa5b aa5b aa5b aa5b
+1565 aa5c aa5c aa5c * 4e3f * 8ea1cebf,cebf,8ea1cebfv,cebfv 6b7f e6adbf 6b7f 00006b7f aa5c aa5c aa5c aa5c aa5c aa5c aa5c
+1566 aa5d aa5d aa5d * 4e40 * 8ea1cec0,cec0,8ea1cec0v,cec0v 6c13 e6b093 6c13 00006c13 aa5d aa5d aa5d aa5d aa5d aa5d aa5d
+1567 aa5e aa5e aa5e * 4e41 * 8ea1cec1,cec1,8ea1cec1v,cec1v 6c1b e6b09b 6c1b 00006c1b aa5e aa5e aa5e aa5e aa5e aa5e aa5e
+1568 aa5f aa5f aa5f * 4e42 * 8ea1cec2,cec2,8ea1cec2v,cec2v 6ce3 e6b3a3 6ce3 00006ce3 aa5f aa5f aa5f aa5f aa5f aa5f aa5f
+1569 aa60 aa60 aa60 * 4e43 * 8ea1cec3,cec3,8ea1cec3v,cec3v 6ce8 e6b3a8 6ce8 00006ce8 aa60 aa60 aa60 aa60 aa60 aa60 aa60
+1570 aa61 aa61 aa61 * 4e44 * 8ea1cec4,cec4,8ea1cec4v,cec4v 6cf3 e6b3b3 6cf3 00006cf3 aa61 aa61 aa61 aa61 aa61 aa61 aa61
+1571 aa62 aa62 aa62 * 4e45 * 8ea1cec5,cec5,8ea1cec5v,cec5v 6cb1 e6b2b1 6cb1 00006cb1 aa62 aa62 aa62 aa62 aa62 aa62 aa62
+1572 aa63 aa63 aa63 * 4e46 * 8ea1cec6,cec6,8ea1cec6v,cec6v 6ccc e6b38c 6ccc 00006ccc aa63 aa63 aa63 aa63 aa63 aa63 aa63
+1573 aa64 aa64 aa64 * 4e47 * 8ea1cec7,cec7,8ea1cec7v,cec7v 6ce5 e6b3a5 6ce5 00006ce5 aa64 aa64 aa64 aa64 aa64 aa64 aa64
+1574 aa65 aa65 aa65 * 4e48 * 8ea1cec8,cec8,8ea1cec8v,cec8v 6cb3 e6b2b3 6cb3 00006cb3 aa65 aa65 aa65 aa65 aa65 aa65 aa65
+1575 aa66 aa66 aa66 * 4e49 * 8ea1cec9,cec9,8ea1cec9v,cec9v 6cbd e6b2bd 6cbd 00006cbd aa66 aa66 aa66 aa66 aa66 aa66 aa66
+1576 aa67 aa67 aa67 * 4e4a * 8ea1ceca,ceca,8ea1cecav,cecav 6cbe e6b2be 6cbe 00006cbe aa67 aa67 aa67 aa67 aa67 aa67 aa67
+1577 aa68 aa68 aa68 * 4e4b * 8ea1cecb,cecb,8ea1cecbv,cecbv 6cbc e6b2bc 6cbc 00006cbc aa68 aa68 aa68 aa68 aa68 aa68 aa68
+1578 aa69 aa69 aa69 * 4e4c * 8ea1cecc,cecc,8ea1ceccv,ceccv 6ce2 e6b3a2 6ce2 00006ce2 aa69 aa69 aa69 aa69 aa69 aa69 aa69
+1579 aa6a aa6a aa6a * 4e4d * 8ea1cecd,cecd,8ea1cecdv,cecdv 6cab e6b2ab 6cab 00006cab aa6a aa6a aa6a aa6a aa6a aa6a aa6a
+1580 aa6b aa6b aa6b * 4e4e * 8ea1cece,cece,8ea1cecev,cecev 6cd5 e6b395 6cd5 00006cd5 aa6b aa6b aa6b aa6b aa6b aa6b aa6b
+1581 aa6c aa6c aa6c * 4e4f * 8ea1cecf,cecf,8ea1cecfv,cecfv 6cd3 e6b393 6cd3 00006cd3 aa6c aa6c aa6c aa6c aa6c aa6c aa6c
+1582 aa6d aa6d aa6d * 4e50 * 8ea1ced0,ced0,8ea1ced0v,ced0v 6cb8 e6b2b8 6cb8 00006cb8 aa6d aa6d aa6d aa6d aa6d aa6d aa6d
+1583 aa6e aa6e aa6e * 4e51 * 8ea1ced1,ced1,8ea1ced1v,ced1v 6cc4 e6b384 6cc4 00006cc4 aa6e aa6e aa6e aa6e aa6e aa6e aa6e
+1584 aa6f aa6f aa6f * 4e52 * 8ea1ced2,ced2,8ea1ced2v,ced2v 6cb9 e6b2b9 6cb9 00006cb9 aa6f aa6f aa6f aa6f aa6f aa6f aa6f
+1585 aa70 aa70 aa70 * 4e53 * 8ea1ced3,ced3,8ea1ced3v,ced3v 6cc1 e6b381 6cc1 00006cc1 aa70 aa70 aa70 aa70 aa70 aa70 aa70
+1586 aa71 aa71 aa71 * 4e54 * 8ea1ced4,ced4,8ea1ced4v,ced4v 6cae e6b2ae 6cae 00006cae aa71 aa71 aa71 aa71 aa71 aa71 aa71
+1587 aa72 aa72 aa72 * 4e55 * 8ea1ced5,ced5,8ea1ced5v,ced5v 6cd7 e6b397 6cd7 00006cd7 aa72 aa72 aa72 aa72 aa72 aa72 aa72
+1588 aa73 aa73 aa73 * 4e56 * 8ea1ced6,ced6,8ea1ced6v,ced6v 6cc5 e6b385 6cc5 00006cc5 aa73 aa73 aa73 aa73 aa73 aa73 aa73
+1589 aa74 aa74 aa74 * 4e57 * 8ea1ced7,ced7,8ea1ced7v,ced7v 6cf1 e6b3b1 6cf1 00006cf1 aa74 aa74 aa74 aa74 aa74 aa74 aa74
+1590 aa75 aa75 aa75 * 4e58 * 8ea1ced8,ced8,8ea1ced8v,ced8v 6cbf e6b2bf 6cbf 00006cbf aa75 aa75 aa75 aa75 aa75 aa75 aa75
+1591 aa76 aa76 aa76 * 4e59 * 8ea1ced9,ced9,8ea1ced9v,ced9v 6cbb e6b2bb 6cbb 00006cbb aa76 aa76 aa76 aa76 aa76 aa76 aa76
+1592 aa77 aa77 aa77 * 4e5a * 8ea1ceda,ceda,8ea1cedav,cedav 6ce1 e6b3a1 6ce1 00006ce1 aa77 aa77 aa77 aa77 aa77 aa77 aa77
+1593 aa78 aa78 aa78 * 4e5b * 8ea1cedb,cedb,8ea1cedbv,cedbv 6cdb e6b39b 6cdb 00006cdb aa78 aa78 aa78 aa78 aa78 aa78 aa78
+1594 aa79 aa79 aa79 * 4e5c * 8ea1cedc,cedc,8ea1cedcv,cedcv 6cca e6b38a 6cca 00006cca aa79 aa79 aa79 aa79 aa79 aa79 aa79
+1595 aa7a aa7a aa7a * 4e5d * 8ea1cedd,cedd,8ea1ceddv,ceddv 6cac e6b2ac 6cac 00006cac aa7a aa7a aa7a aa7a aa7a aa7a aa7a
+1596 aa7b aa7b aa7b * 4e5e * 8ea1cede,cede,8ea1cedev,cedev 6cef e6b3af 6cef 00006cef aa7b aa7b aa7b aa7b aa7b aa7b aa7b
+1597 aa7c aa7c aa7c * 4e5f * 8ea1cedf,cedf,8ea1cedfv,cedfv 6cdc e6b39c 6cdc 00006cdc aa7c aa7c aa7c aa7c aa7c aa7c aa7c
+1598 aa7d aa7d aa7d * 4e60 * 8ea1cee0,cee0,8ea1cee0v,cee0v 6cd6 e6b396 6cd6 00006cd6 aa7d aa7d aa7d aa7d aa7d aa7d aa7d
+1599 aa7e aa7e aa7e * 4e61 * 8ea1cee1,cee1,8ea1cee1v,cee1v 6ce0 e6b3a0 6ce0 00006ce0 aa7e aa7e aa7e aa7e aa7e aa7e aa7e
+1600 aaa1 aaa1 aaa1 * 4e62 * 8ea1cee2,cee2,8ea1cee2v,cee2v 7095 e78295 7095 00007095 aaa1 aaa1 aaa1 aaa1 aaa1 aaa1 aaa1
+1601 aaa2 aaa2 aaa2 * 4e63 * 8ea1cee3,cee3,8ea1cee3v,cee3v 708e e7828e 708e 0000708e aaa2 aaa2 aaa2 aaa2 aaa2 aaa2 aaa2
+1602 aaa3 aaa3 aaa3 * 4e64 * 8ea1cee4,cee4,8ea1cee4v,cee4v 7092 e78292 7092 00007092 aaa3 aaa3 aaa3 aaa3 aaa3 aaa3 aaa3
+1603 aaa4 aaa4 aaa4 * 4e65 * 8ea1cee5,cee5,8ea1cee5v,cee5v 708a e7828a 708a 0000708a aaa4 aaa4 aaa4 aaa4 aaa4 aaa4 aaa4
+1604 aaa5 aaa5 aaa5 * 4e66 * 8ea1cee6,cee6,8ea1cee6v,cee6v 7099 e78299 7099 00007099 aaa5 aaa5 aaa5 aaa5 aaa5 aaa5 aaa5
+1605 aaa6 aaa6 aaa6 * 4e67 * 8ea1cee7,cee7,8ea1cee7v,cee7v 722c e788ac 722c 0000722c aaa6 aaa6 aaa6 aaa6 aaa6 aaa6 aaa6
+1606 aaa7 aaa7 aaa7 * 4e68 * 8ea1cee8,cee8,8ea1cee8v,cee8v 722d e788ad 722d 0000722d aaa7 aaa7 aaa7 aaa7 aaa7 aaa7 aaa7
+1607 aaa8 aaa8 aaa8 * 4e69 * 8ea1cee9,cee9,8ea1cee9v,cee9v 7238 e788b8 7238 00007238 aaa8 aaa8 aaa8 aaa8 aaa8 aaa8 aaa8
+1608 aaa9 aaa9 aaa9 * 4e6a * 8ea1ceea,ceea,8ea1ceeav,ceeav 7248 e78988 7248 00007248 aaa9 aaa9 aaa9 aaa9 aaa9 aaa9 aaa9
+1609 aaaa aaaa aaaa * 4e6b * 8ea1ceeb,ceeb,8ea1ceebv,ceebv 7267 e789a7 7267 00007267 aaaa aaaa aaaa aaaa aaaa aaaa aaaa
+1610 aaab aaab aaab * 4e6c * 8ea1ceec,ceec,8ea1ceecv,ceecv 7269 e789a9 7269 00007269 aaab aaab aaab aaab aaab aaab aaab
+1611 aaac aaac aaac * 4e6d * 8ea1ceed,ceed,8ea1ceedv,ceedv 72c0 e78b80 72c0 000072c0 aaac aaac aaac aaac aaac aaac aaac
+1612 aaad aaad aaad * 4e6e * 8ea1ceee,ceee,8ea1ceeev,ceeev 72ce e78b8e 72ce 000072ce aaad aaad aaad aaad aaad aaad aaad
+1613 aaae aaae aaae * 4e6f * 8ea1ceef,ceef,8ea1ceefv,ceefv 72d9 e78b99 72d9 000072d9 aaae aaae aaae aaae aaae aaae aaae
+1614 aaaf aaaf aaaf * 4e70 * 8ea1cef0,cef0,8ea1cef0v,cef0v 72d7 e78b97 72d7 000072d7 aaaf aaaf aaaf aaaf aaaf aaaf aaaf
+1615 aab0 aab0 aab0 * 4e71 * 8ea1cef1,cef1,8ea1cef1v,cef1v 72d0 e78b90 72d0 000072d0 aab0 aab0 aab0 aab0 aab0 aab0 aab0
+1616 aab1 aab1 aab1 * 4e72 * 8ea1cef2,cef2,8ea1cef2v,cef2v 73a9 e78ea9 73a9 000073a9 aab1 aab1 aab1 aab1 aab1 aab1 aab1
+1617 aab2 aab2 aab2 * 4e73 * 8ea1cef3,cef3,8ea1cef3v,cef3v 73a8 e78ea8 73a8 000073a8 aab2 aab2 aab2 aab2 aab2 aab2 aab2
+1618 aab3 aab3 aab3 * 4e74 * 8ea1cef4,cef4,8ea1cef4v,cef4v 739f e78e9f 739f 0000739f aab3 aab3 aab3 aab3 aab3 aab3 aab3
+1619 aab4 aab4 aab4 * 4e75 * 8ea1cef5,cef5,8ea1cef5v,cef5v 73ab e78eab 73ab 000073ab aab4 aab4 aab4 aab4 aab4 aab4 aab4
+1620 aab5 aab5 aab5 * 4e76 * 8ea1cef6,cef6,8ea1cef6v,cef6v 73a5 e78ea5 73a5 000073a5 aab5 aab5 aab5 aab5 aab5 aab5 aab5
+1621 aab6 aab6 aab6 * 4e77 * 8ea1cef7,cef7,8ea1cef7v,cef7v 753d e794bd 753d 0000753d aab6 aab6 aab6 aab6 aab6 aab6 aab6
+1622 aab7 aab7 aab7 * 4e78 * 8ea1cef8,cef8,8ea1cef8v,cef8v 759d e7969d 759d 0000759d aab7 aab7 aab7 aab7 aab7 aab7 aab7
+1623 aab8 aab8 aab8 * 4e79 * 8ea1cef9,cef9,8ea1cef9v,cef9v 7599 e79699 7599 00007599 aab8 aab8 aab8 aab8 aab8 aab8 aab8
+1624 aab9 aab9 aab9 * 4e7a * 8ea1cefa,cefa,8ea1cefav,cefav 759a e7969a 759a 0000759a aab9 aab9 aab9 aab9 aab9 aab9 aab9
+1625 aaba aaba aaba * 4e7b * 8ea1cefb,cefb,8ea1cefbv,cefbv 7684 e79a84 7684 00007684 aaba aaba aaba aaba aaba aaba aaba
+1626 aabb aabb aabb * 4e7c * 8ea1cefc,cefc,8ea1cefcv,cefcv 76c2 e79b82 76c2 000076c2 aabb aabb aabb aabb aabb aabb aabb
+1627 aabc aabc aabc * 4e7d * 8ea1cefd,cefd,8ea1cefdv,cefdv 76f2 e79bb2 76f2 000076f2 aabc aabc aabc aabc aabc aabc aabc
+1628 aabd aabd aabd * 4e7e * 8ea1cefe,cefe,8ea1cefev,cefev 76f4 e79bb4 76f4 000076f4 aabd aabd aabd aabd aabd aabd aabd
+1629 aabe aabe aabe * 4f21 * 8ea1cfa1,cfa1,8ea1cfa1v,cfa1v 77e5 e79fa5 77e5 000077e5 aabe aabe aabe aabe aabe aabe aabe
+1630 aabf aabf aabf * 4f22 * 8ea1cfa2,cfa2,8ea1cfa2v,cfa2v 77fd e79fbd 77fd 000077fd aabf aabf aabf aabf aabf aabf aabf
+1631 aac0 aac0 aac0 * 4f23 * 8ea1cfa3,cfa3,8ea1cfa3v,cfa3v 793e e7a4be 793e 0000793e aac0 aac0 aac0 aac0 aac0 aac0 aac0
+1632 aac1 aac1 aac1 * 4f24 * 8ea1cfa4,cfa4,8ea1cfa4v,cfa4v 7940 e7a580 7940 00007940 aac1 aac1 aac1 aac1 aac1 aac1 aac1
+1633 aac2 aac2 aac2 * 4f25 * 8ea1cfa5,cfa5,8ea1cfa5v,cfa5v 7941 e7a581 7941 00007941 aac2 aac2 aac2 aac2 aac2 aac2 aac2
+1634 aac3 aac3 aac3 * 4f26 * 8ea1cfa6,cfa6,8ea1cfa6v,cfa6v 79c9 e7a789 79c9 000079c9 aac3 aac3 aac3 aac3 aac3 aac3 aac3
+1635 aac4 aac4 aac4 * 4f27 * 8ea1cfa7,cfa7,8ea1cfa7v,cfa7v 79c8 e7a788 79c8 000079c8 aac4 aac4 aac4 aac4 aac4 aac4 aac4
+1636 aac5 aac5 aac5 * 4f28 * 8ea1cfa8,cfa8,8ea1cfa8v,cfa8v 7a7a e7a9ba 7a7a 00007a7a aac5 aac5 aac5 aac5 aac5 aac5 aac5
+1637 aac6 aac6 aac6 * 4f29 * 8ea1cfa9,cfa9,8ea1cfa9v,cfa9v 7a79 e7a9b9 7a79 00007a79 aac6 aac6 aac6 aac6 aac6 aac6 aac6
+1638 aac7 aac7 aac7 * 4f2a * 8ea1cfaa,cfaa,8ea1cfaav,cfaav 7afa e7abba 7afa 00007afa aac7 aac7 aac7 aac7 aac7 aac7 aac7
+1639 aac8 aac8 aac8 * 4f2b * 8ea1cfab,cfab,8ea1cfabv,cfabv 7cfe e7b3be 7cfe 00007cfe aac8 aac8 aac8 aac8 aac8 aac8 aac8
+1640 aac9 aac9 aac9 * 4f2c * 8ea1cfac,cfac,8ea1cfacv,cfacv 7f54 e7bd94 7f54 00007f54 aac9 aac9 aac9 aac9 aac9 aac9 aac9
+1641 aaca aaca aaca * 4f2d * 8ea1cfad,cfad,8ea1cfadv,cfadv 7f8c e7be8c 7f8c 00007f8c aaca aaca aaca aaca aaca aaca aaca
+1642 aacb aacb aacb * 4f2e * 8ea1cfae,cfae,8ea1cfaev,cfaev 7f8b e7be8b 7f8b 00007f8b aacb aacb aacb aacb aacb aacb aacb
+1643 aacc aacc aacc * 4f2f * 8ea1cfaf,cfaf,8ea1cfafv,cfafv 8005 e88085,ee8dbc 8005,e37c 00008005,0000e37c 8ecd,aacc aacc aacc aacc aacc aacc 8ecd,aacc
+1644 aacd aacd aacd * 4f30 * 8ea1cfb0,cfb0,8ea1cfb0v,cfb0v 80ba e882ba 80ba 000080ba aacd aacd aacd aacd aacd aacd aacd
+1645 aace aace aace * 4f31 * 8ea1cfb1,cfb1,8ea1cfb1v,cfb1v 80a5 e882a5 80a5 000080a5 aace aace aace aace aace aace aace
+1646 aacf aacf aacf * 4f32 * 8ea1cfb2,cfb2,8ea1cfb2v,cfb2v 80a2 e882a2 80a2 000080a2 aacf aacf aacf aacf aacf aacf aacf
+1647 aad0 aad0 aad0 * 4f33 * 8ea1cfb3,cfb3,8ea1cfb3v,cfb3v 80b1 e882b1 80b1 000080b1 aad0 aad0 aad0 aad0 aad0 aad0 aad0
+1648 aad1 aad1 aad1 * 4f34 * 8ea1cfb4,cfb4,8ea1cfb4v,cfb4v 80a1 e882a1 80a1 000080a1 aad1 aad1 aad1 aad1 aad1 aad1 aad1
+1649 aad2 aad2 aad2 * 4f35 * 8ea1cfb5,cfb5,8ea1cfb5v,cfb5v 80ab e882ab 80ab 000080ab aad2 aad2 aad2 aad2 aad2 aad2 aad2
+1650 aad3 aad3 aad3 * 4f36 * 8ea1cfb6,cfb6,8ea1cfb6v,cfb6v 80a9 e882a9 80a9 000080a9 aad3 aad3 aad3 aad3 aad3 aad3 aad3
+1651 aad4 aad4 aad4 * 4f37 * 8ea1cfb7,cfb7,8ea1cfb7v,cfb7v 80b4 e882b4 80b4 000080b4 aad4 aad4 aad4 aad4 aad4 aad4 aad4
+1652 aad5 aad5 aad5 * 4f38 * 8ea1cfb8,cfb8,8ea1cfb8v,cfb8v 80aa e882aa 80aa 000080aa aad5 aad5 aad5 aad5 aad5 aad5 aad5
+1653 aad6 aad6 aad6 * 4f39 * 8ea1cfb9,cfb9,8ea1cfb9v,cfb9v 80af e882af 80af 000080af aad6 aad6 aad6 aad6 aad6 aad6 aad6
+1654 aad7 aad7 aad7 * 4f3a * 8ea1cfba,cfba,8ea1cfbav,cfbav 81e5 e887a5 81e5 000081e5 aad7 aad7 aad7 aad7 aad7 aad7 aad7
+1655 aad8 aad8 aad8 * 4f3b * 8ea1cfbb,cfbb,8ea1cfbbv,cfbbv 81fe e887be 81fe 000081fe aad8 aad8 aad8 aad8 aad8 aad8 aad8
+1656 aad9 aad9 aad9 * 4f3c * 8ea1cfbc,cfbc,8ea1cfbcv,cfbcv 820d e8888d 820d 0000820d aad9 aad9 aad9 aad9 aad9 aad9 aad9
+1657 aada aada aada * 4f3d * 8ea1cfbd,cfbd,8ea1cfbdv,cfbdv 82b3 e88ab3 82b3 000082b3 aada aada aada aada aada aada aada
+1658 aadb aadb aadb * 4f3e * 8ea1cfbe,cfbe,8ea1cfbev,cfbev 829d e88a9d 829d 0000829d aadb aadb aadb aadb aadb aadb aadb
+1659 aadc aadc aadc * 4f3f * 8ea1cfbf,cfbf,8ea1cfbfv,cfbfv 8299 e88a99 8299 00008299 aadc aadc aadc aadc aadc aadc aadc
+1660 aadd aadd aadd * 4f40 * 8ea1cfc0,cfc0,8ea1cfc0v,cfc0v 82ad e88aad 82ad 000082ad aadd aadd aadd aadd aadd aadd aadd
+1661 aade aade aade * 4f41 * 8ea1cfc1,cfc1,8ea1cfc1v,cfc1v 82bd e88abd 82bd 000082bd aade aade aade aade aade aade aade
+1662 aadf aadf aadf * 4f42 * 8ea1cfc2,cfc2,8ea1cfc2v,cfc2v 829f e88a9f 829f 0000829f aadf aadf aadf aadf aadf aadf aadf
+1663 aae0 aae0 aae0 * 4f43 * 8ea1cfc3,cfc3,8ea1cfc3v,cfc3v 82b9 e88ab9 82b9 000082b9 aae0 aae0 aae0 aae0 aae0 aae0 aae0
+1664 aae1 aae1 aae1 * 4f44 * 8ea1cfc4,cfc4,8ea1cfc4v,cfc4v 82b1 e88ab1 82b1 000082b1 aae1 aae1 aae1 aae1 aae1 aae1 aae1
+1665 aae2 aae2 aae2 * 4f45 * 8ea1cfc5,cfc5,8ea1cfc5v,cfc5v 82ac e88aac 82ac 000082ac aae2 aae2 aae2 aae2 aae2 aae2 aae2
+1666 aae3 aae3 aae3 * 4f46 * 8ea1cfc6,cfc6,8ea1cfc6v,cfc6v 82a5 e88aa5 82a5 000082a5 aae3 aae3 aae3 aae3 aae3 aae3 aae3
+1667 aae4 aae4 aae4 * 4f47 * 8ea1cfc7,cfc7,8ea1cfc7v,cfc7v 82af e88aaf 82af 000082af aae4 aae4 aae4 aae4 aae4 aae4 aae4
+1668 aae5 aae5 aae5 * 4f48 * 8ea1cfc8,cfc8,8ea1cfc8v,cfc8v 82b8 e88ab8 82b8 000082b8 aae5 aae5 aae5 aae5 aae5 aae5 aae5
+1669 aae6 aae6 aae6 * 4f49 * 8ea1cfc9,cfc9,8ea1cfc9v,cfc9v 82a3 e88aa3 82a3 000082a3 aae6 aae6 aae6 aae6 aae6 aae6 aae6
+1670 aae7 aae7 aae7 * 4f4a * 8ea1cfca,cfca,8ea1cfcav,cfcav 82b0 e88ab0 82b0 000082b0 aae7 aae7 aae7 aae7 aae7 aae7 aae7
+1671 aae8 aae8 aae8 * 4f4b * 8ea1cfcb,cfcb,8ea1cfcbv,cfcbv 82be e88abe 82be 000082be aae8 aae8 aae8 aae8 aae8 aae8 aae8
+1672 aae9 aae9 aae9 * 4f4c * 8ea1cfcc,cfcc,8ea1cfccv,cfccv 82b7 e88ab7 82b7 000082b7 aae9 aae9 aae9 aae9 aae9 aae9 aae9
+1673 aaea aaea aaea * 4f4d * 8ea1cfcd,cfcd,8ea1cfcdv,cfcdv 864e e8998e 864e 0000864e aaea aaea aaea aaea aaea aaea aaea
+1674 aaeb aaeb aaeb * 4f4e * 8ea1cfce,cfce,8ea1cfcev,cfcev 8671 e899b1 8671 00008671 aaeb aaeb aaeb aaeb aaeb aaeb aaeb
+1675 aaec aaec aaec * 4f4f * 8ea1cfcf,cfcf,8ea1cfcfv,cfcfv 521d e5889d 521d 0000521d aaec aaec aaec aaec aaec aaec aaec
+1676 aaed aaed aaed * 4f50 * 8ea1cfd0,cfd0,8ea1cfd0v,cfd0v 8868 e8a1a8 8868 00008868 aaed aaed aaed aaed aaed aaed aaed
+1677 aaee aaee aaee * 4f51 * 8ea1cfd1,cfd1,8ea1cfd1v,cfd1v 8ecb e8bb8b 8ecb 00008ecb aaee aaee aaee aaee aaee aaee aaee
+1678 aaef aaef aaef * 4f52 * 8ea1cfd2,cfd2,8ea1cfd2v,cfd2v 8fce e8bf8e 8fce 00008fce aaef aaef aaef aaef aaef aaef aaef
+1679 aaf0 aaf0 aaf0 * 4f53 * 8ea1cfd3,cfd3,8ea1cfd3v,cfd3v 8fd4 e8bf94 8fd4 00008fd4 aaf0 aaf0 aaf0 aaf0 aaf0 aaf0 aaf0
+1680 aaf1 aaf1 aaf1 * 4f54 * 8ea1cfd4,cfd4,8ea1cfd4v,cfd4v 8fd1 e8bf91 8fd1 00008fd1 aaf1 aaf1 aaf1 aaf1 aaf1 aaf1 aaf1
+1681 aaf2 aaf2 aaf2 * 4f55 * 8ea1cfd5,cfd5,8ea1cfd5v,cfd5v 90b5 e982b5 90b5 000090b5 aaf2 aaf2 aaf2 aaf2 aaf2 aaf2 aaf2
+1682 aaf3 aaf3 aaf3 * 4f56 * 8ea1cfd6,cfd6,8ea1cfd6v,cfd6v 90b8 e982b8 90b8 000090b8 aaf3 aaf3 aaf3 aaf3 aaf3 aaf3 aaf3
+1683 aaf4 aaf4 aaf4 * 4f57 * 8ea1cfd7,cfd7,8ea1cfd7v,cfd7v 90b1 e982b1 90b1 000090b1 aaf4 aaf4 aaf4 aaf4 aaf4 aaf4 aaf4
+1684 aaf5 aaf5 aaf5 * 4f58 * 8ea1cfd8,cfd8,8ea1cfd8v,cfd8v 90b6 e982b6 90b6 000090b6 aaf5 aaf5 aaf5 aaf5 aaf5 aaf5 aaf5
+1685 aaf6 aaf6 aaf6 * 4f59 * 8ea1cfd9,cfd9,8ea1cfd9v,cfd9v 91c7 e98787 91c7 000091c7 aaf6 aaf6 aaf6 aaf6 aaf6 aaf6 aaf6
+1686 aaf7 aaf7 aaf7 * 2868,4f5a * 8ea1a8e8,8ea1cfda,a8e8,cfda,8ea1a8e8v,8ea1cfdav,a8e8v,cfdav 91d1 e98791,e2bea6 91d1,2fa6 000091d1,00002fa6 aaf7 aaf7 aaf7 aaf7 aaf7 aaf7 aaf7
+1687 aaf8 aaf8 aaf8 * 2869,4f5b * 8ea1a8e9,8ea1cfdb,a8e9,cfdb,8ea1a8e9v,8ea1cfdbv,a8e9v,cfdbv 9577 e995b7,e2bea7 9577,2fa7 00009577,00002fa7 aaf8 aaf8 aaf8 aaf8 aaf8 aaf8 aaf8
+1688 aaf9 aaf9 aaf9 * 286a,4f5c * 8ea1a8ea,8ea1cfdc,a8ea,cfdc,8ea1a8eav,8ea1cfdcv,a8eav,cfdcv 9580 e99680,e2bea8 9580,2fa8 00009580,00002fa8 aaf9 aaf9 aaf9 aaf9 aaf9 aaf9 aaf9
+1689 aafa aafa aafa * 286b,4f5d * 8ea1a8eb,8ea1cfdd,a8eb,cfdd,8ea1a8ebv,8ea1cfddv,a8ebv,cfddv 961c e9989c,e2bea9 961c,2fa9 0000961c,00002fa9 aafa aafa aafa aafa aafa aafa aafa
+1690 aafb aafb aafb * 4f5e * 8ea1cfde,cfde,8ea1cfdev,cfdev 9640 e99980 9640 00009640 aafb aafb aafb aafb aafb aafb aafb
+1691 aafc aafc aafc * 4f5f * 8ea1cfdf,cfdf,8ea1cfdfv,cfdfv 963f e998bf 963f 0000963f aafc aafc aafc aafc aafc aafc aafc
+1692 aafd aafd aafd * 4f60 * 8ea1cfe0,cfe0,8ea1cfe0v,cfe0v 963b e998bb 963b 0000963b aafd aafd aafd aafd aafd aafd aafd
+1693 aafe aafe aafe * 4f61 * 8ea1cfe1,cfe1,8ea1cfe1v,cfe1v 9644 e99984 9644 00009644 aafe aafe aafe aafe aafe aafe aafe
+1694 ab40 ab40 ab40 * 4f62 * 8ea1cfe2,cfe2,8ea1cfe2v,cfe2v 9642 e99982 9642 00009642 ab40 ab40 ab40 ab40 ab40 ab40 ab40
+1695 ab41 ab41 ab41 * 286d,4f63 * 8ea1a8ed,8ea1cfe3,a8ed,cfe3,8ea1a8edv,8ea1cfe3v,a8edv,cfe3v 96b9 e99ab9,e2beab 96b9,2fab 000096b9,00002fab ab41 ab41 ab41 ab41 ab41 ab41 ab41
+1696 ab42 ab42 ab42 * 286e,4f64 * 8ea1a8ee,8ea1cfe4,a8ee,cfe4,8ea1a8eev,8ea1cfe4v,a8eev,cfe4v 96e8 e99ba8,e2beac 96e8,2fac 000096e8,00002fac ab42 ab42 ab42 ab42 ab42 ab42 ab42
+1697 ab43 ab43 ab43 * 286f,4f65 * 8ea1a8ef,8ea1cfe5,a8ef,cfe5,8ea1a8efv,8ea1cfe5v,a8efv,cfe5v 9752 e99d92 9752 00009752 ab43 ab43 ab43 ab43 ab43 ab43 ab43
+1698 ab44 ab44 ab44 * 2870,4f66 * 8ea1a8f0,8ea1cfe6,a8f0,cfe6,8ea1a8f0v,8ea1cfe6v,a8f0v,cfe6v 975e e2beae,e99d9e 2fae,975e 00002fae,0000975e ab44 ab44 ab44 ab44 ab44 ab44 ab44
+1699 ab45 ab45 ab45 * 4f67 * 8ea1cfe7,cfe7,8ea1cfe7v,cfe7v 4e9f e4ba9f 4e9f 00004e9f ab45 ab45 ab45 ab45 ab45 ab45 ab45
+1700 ab46 ab46 ab46 * 4f68 * 8ea1cfe8,cfe8,8ea1cfe8v,cfe8v 4ead e4baad 4ead 00004ead ab46 ab46 ab46 ab46 ab46 ab46 ab46
+1701 ab47 ab47 ab47 * 4f69 * 8ea1cfe9,cfe9,8ea1cfe9v,cfe9v 4eae e4baae 4eae 00004eae ab47 ab47 ab47 ab47 ab47 ab47 ab47
+1702 ab48 ab48 ab48 * 4f6a * 8ea1cfea,cfea,8ea1cfeav,cfeav 4fe1 e4bfa1 4fe1 00004fe1 ab48 ab48 ab48 ab48 ab48 ab48 ab48
+1703 ab49 ab49 ab49 * 4f6b * 8ea1cfeb,cfeb,8ea1cfebv,cfebv 4fb5 e4beb5 4fb5 00004fb5 ab49 ab49 ab49 ab49 ab49 ab49 ab49
+1704 ab4a ab4a ab4a * 4f6c * 8ea1cfec,cfec,8ea1cfecv,cfecv 4faf e4beaf 4faf 00004faf ab4a ab4a ab4a ab4a ab4a ab4a ab4a
+1705 ab4b ab4b ab4b * 4f6d * 8ea1cfed,cfed,8ea1cfedv,cfedv 4fbf e4bebf 4fbf 00004fbf ab4b ab4b ab4b ab4b ab4b ab4b ab4b
+1706 ab4c ab4c ab4c * 4f6e * 8ea1cfee,cfee,8ea1cfeev,cfeev 4fe0 e4bfa0 4fe0 00004fe0 ab4c ab4c ab4c ab4c ab4c ab4c ab4c
+1707 ab4d ab4d ab4d * 4f6f * 8ea1cfef,cfef,8ea1cfefv,cfefv 4fd1 e4bf91 4fd1 00004fd1 ab4d ab4d ab4d ab4d ab4d ab4d ab4d
+1708 ab4e ab4e ab4e * 4f70 * 8ea1cff0,cff0,8ea1cff0v,cff0v 4fcf e4bf8f 4fcf 00004fcf ab4e ab4e ab4e ab4e ab4e ab4e ab4e
+1709 ab4f ab4f ab4f * 4f71 * 8ea1cff1,cff1,8ea1cff1v,cff1v 4fdd e4bf9d 4fdd 00004fdd ab4f ab4f ab4f ab4f ab4f ab4f ab4f
+1710 ab50 ab50 ab50 * 4f72 * 8ea1cff2,cff2,8ea1cff2v,cff2v 4fc3 e4bf83 4fc3 00004fc3 ab50 ab50 ab50 ab50 ab50 ab50 ab50
+1711 ab51 ab51 ab51 * 4f73 * 8ea1cff3,cff3,8ea1cff3v,cff3v 4fb6 e4beb6 4fb6 00004fb6 ab51 ab51 ab51 ab51 ab51 ab51 ab51
+1712 ab52 ab52 ab52 * 4f74 * 8ea1cff4,cff4,8ea1cff4v,cff4v 4fd8 e4bf98 4fd8 00004fd8 ab52 ab52 ab52 ab52 ab52 ab52 ab52
+1713 ab53 ab53 ab53 * 4f75 * 8ea1cff5,cff5,8ea1cff5v,cff5v 4fdf e4bf9f 4fdf 00004fdf ab53 ab53 ab53 ab53 ab53 ab53 ab53
+1714 ab54 ab54 ab54 * 4f76 * 8ea1cff6,cff6,8ea1cff6v,cff6v 4fca e4bf8a 4fca 00004fca ab54 ab54 ab54 ab54 ab54 ab54 ab54
+1715 ab55 ab55 ab55 * 4f77 * 8ea1cff7,cff7,8ea1cff7v,cff7v 4fd7 e4bf97 4fd7 00004fd7 ab55 ab55 ab55 ab55 ab55 ab55 ab55
+1716 ab56 ab56 ab56 * 4f78 * 8ea1cff8,cff8,8ea1cff8v,cff8v 4fae e4beae 4fae 00004fae ab56 ab56 ab56 ab56 ab56 ab56 ab56
+1717 ab57 ab57 ab57 * 4f79 * 8ea1cff9,cff9,8ea1cff9v,cff9v 4fd0 e4bf90 4fd0 00004fd0 ab57 ab57 ab57 ab57 ab57 ab57 ab57
+1718 ab58 ab58 ab58 * 4f7a * 8ea1cffa,cffa,8ea1cffav,cffav 4fc4 e4bf84 4fc4 00004fc4 ab58 ab58 ab58 ab58 ab58 ab58 ab58
+1719 ab59 ab59 ab59 * 4f7b * 8ea1cffb,cffb,8ea1cffbv,cffbv 4fc2 e4bf82 4fc2 00004fc2 ab59 ab59 ab59 ab59 ab59 ab59 ab59
+1720 ab5a ab5a ab5a * 4f7c * 8ea1cffc,cffc,8ea1cffcv,cffcv 4fda e4bf9a 4fda 00004fda ab5a ab5a ab5a ab5a ab5a ab5a ab5a
+1721 ab5b ab5b ab5b * 4f7d * 8ea1cffd,cffd,8ea1cffdv,cffdv 4fce e4bf8e 4fce 00004fce ab5b ab5b ab5b ab5b ab5b ab5b ab5b
+1722 ab5c ab5c ab5c * 4f7e * 8ea1cffe,cffe,8ea1cffev,cffev 4fde e4bf9e 4fde 00004fde ab5c ab5c ab5c ab5c ab5c ab5c ab5c
+1723 ab5d ab5d ab5d * 5021 * 8ea1d0a1,d0a1,8ea1d0a1v,d0a1v 4fb7 e4beb7 4fb7 00004fb7 ab5d ab5d ab5d ab5d ab5d ab5d ab5d
+1724 ab5e ab5e ab5e * 5022 * 8ea1d0a2,d0a2,8ea1d0a2v,d0a2v 5157 e58597 5157 00005157 ab5e ab5e ab5e ab5e ab5e ab5e ab5e
+1725 ab5f ab5f ab5f * 5023 * 8ea1d0a3,d0a3,8ea1d0a3v,d0a3v 5192 e58692 5192 00005192 ab5f ab5f ab5f ab5f ab5f ab5f ab5f
+1726 ab60 ab60 ab60 * 5024 * 8ea1d0a4,d0a4,8ea1d0a4v,d0a4v 5191 e58691 5191 00005191 ab60 ab60 ab60 ab60 ab60 ab60 ab60
+1727 ab61 ab61 ab61 * 5025 * 8ea1d0a5,d0a5,8ea1d0a5v,d0a5v 51a0 e586a0 51a0 000051a0 ab61 ab61 ab61 ab61 ab61 ab61 ab61
+1728 ab62 ab62 ab62 * 5026 * 8ea1d0a6,d0a6,8ea1d0a6v,d0a6v 524e e5898e 524e 0000524e ab62 ab62 ab62 ab62 ab62 ab62 ab62
+1729 ab63 ab63 ab63 * 5027 * 8ea1d0a7,d0a7,8ea1d0a7v,d0a7v 5243 e58983 5243 00005243 ab63 ab63 ab63 ab63 ab63 ab63 ab63
+1730 ab64 ab64 ab64 * 5028 * 8ea1d0a8,d0a8,8ea1d0a8v,d0a8v 524a e5898a 524a 0000524a ab64 ab64 ab64 ab64 ab64 ab64 ab64
+1731 ab65 ab65 ab65 * 5029 * 8ea1d0a9,d0a9,8ea1d0a9v,d0a9v 524d e5898d 524d 0000524d ab65 ab65 ab65 ab65 ab65 ab65 ab65
+1732 ab66 ab66 ab66 * 502a * 8ea1d0aa,d0aa,8ea1d0aav,d0aav 524c e5898c 524c 0000524c ab66 ab66 ab66 ab66 ab66 ab66 ab66
+1733 ab67 ab67 ab67 * 502b * 8ea1d0ab,d0ab,8ea1d0abv,d0abv 524b e5898b 524b 0000524b ab67 ab67 ab67 ab67 ab67 ab67 ab67
+1734 ab68 ab68 ab68 * 502c * 8ea1d0ac,d0ac,8ea1d0acv,d0acv 5247 e58987 5247 00005247 ab68 ab68 ab68 ab68 ab68 ab68 ab68
+1735 ab69 ab69 ab69 * 502d * 8ea1d0ad,d0ad,8ea1d0adv,d0adv 52c7 e58b87 52c7 000052c7 ab69 ab69 ab69 ab69 ab69 ab69 ab69
+1736 ab6a ab6a ab6a * 502e * 8ea1d0ae,d0ae,8ea1d0aev,d0aev 52c9 e58b89 52c9 000052c9 ab6a ab6a ab6a ab6a ab6a ab6a ab6a
+1737 ab6b ab6b ab6b * 502f * 8ea1d0af,d0af,8ea1d0afv,d0afv 52c3 e58b83 52c3 000052c3 ab6b ab6b ab6b ab6b ab6b ab6b ab6b
+1738 ab6c ab6c ab6c * 5030 * 8ea1d0b0,d0b0,8ea1d0b0v,d0b0v 52c1 e58b81 52c1 000052c1 ab6c ab6c ab6c ab6c ab6c ab6c ab6c
+1739 ab6d ab6d ab6d * 5031 * 8ea1d0b1,d0b1,8ea1d0b1v,d0b1v 530d e58c8d 530d 0000530d ab6d ab6d ab6d ab6d ab6d ab6d ab6d
+1740 ab6e ab6e ab6e * 5032 * 8ea1d0b2,d0b2,8ea1d0b2v,d0b2v 5357 e58d97 5357 00005357 ab6e ab6e ab6e ab6e ab6e ab6e ab6e
+1741 ab6f ab6f ab6f * 5033 * 8ea1d0b3,d0b3,8ea1d0b3v,d0b3v 537b e58dbb 537b 0000537b ab6f ab6f ab6f ab6f ab6f ab6f ab6f
+1742 ab70 ab70 ab70 * 5034 * 8ea1d0b4,d0b4,8ea1d0b4v,d0b4v 539a e58e9a 539a 0000539a ab70 ab70 ab70 ab70 ab70 ab70 ab70
+1743 ab71 ab71 ab71 * 5035 * 8ea1d0b5,d0b5,8ea1d0b5v,d0b5v 53db e58f9b 53db 000053db ab71 ab71 ab71 ab71 ab71 ab71 ab71
+1744 ab72 ab72 ab72 * 5036 * 8ea1d0b6,d0b6,8ea1d0b6v,d0b6v 54ac e592ac 54ac 000054ac ab72 ab72 ab72 ab72 ab72 ab72 ab72
+1745 ab73 ab73 ab73 * 5037 * 8ea1d0b7,d0b7,8ea1d0b7v,d0b7v 54c0 e59380 54c0 000054c0 ab73 ab73 ab73 ab73 ab73 ab73 ab73
+1746 ab74 ab74 ab74 * 5038 * 8ea1d0b8,d0b8,8ea1d0b8v,d0b8v 54a8 e592a8 54a8 000054a8 ab74 ab74 ab74 ab74 ab74 ab74 ab74
+1747 ab75 ab75 ab75 * 5039 * 8ea1d0b9,d0b9,8ea1d0b9v,d0b9v 54ce e5938e 54ce 000054ce ab75 ab75 ab75 ab75 ab75 ab75 ab75
+1748 ab76 ab76 ab76 * 503a * 8ea1d0ba,d0ba,8ea1d0bav,d0bav 54c9 e59389 54c9 000054c9 ab76 ab76 ab76 ab76 ab76 ab76 ab76
+1749 ab77 ab77 ab77 * 503b * 8ea1d0bb,d0bb,8ea1d0bbv,d0bbv 54b8 e592b8 54b8 000054b8 ab77 ab77 ab77 ab77 ab77 ab77 ab77
+1750 ab78 ab78 ab78 * 503c * 8ea1d0bc,d0bc,8ea1d0bcv,d0bcv 54a6 e592a6 54a6 000054a6 ab78 ab78 ab78 ab78 ab78 ab78 ab78
+1751 ab79 ab79 ab79 * 503d * 8ea1d0bd,d0bd,8ea1d0bdv,d0bdv 54b3 e592b3 54b3 000054b3 ab79 ab79 ab79 ab79 ab79 ab79 ab79
+1752 ab7a ab7a ab7a * 503e * 8ea1d0be,d0be,8ea1d0bev,d0bev 54c7 e59387 54c7 000054c7 ab7a ab7a ab7a ab7a ab7a ab7a ab7a
+1753 ab7b ab7b ab7b * 503f * 8ea1d0bf,d0bf,8ea1d0bfv,d0bfv 54c2 e59382 54c2 000054c2 ab7b ab7b ab7b ab7b ab7b ab7b ab7b
+1754 ab7c ab7c ab7c * 5040 * 8ea1d0c0,d0c0,8ea1d0c0v,d0c0v 54bd e592bd 54bd 000054bd ab7c ab7c ab7c ab7c ab7c ab7c ab7c
+1755 ab7d ab7d ab7d * 5041 * 8ea1d0c1,d0c1,8ea1d0c1v,d0c1v 54aa e592aa 54aa 000054aa ab7d ab7d ab7d ab7d ab7d ab7d ab7d
+1756 ab7e ab7e ab7e * 5042 * 8ea1d0c2,d0c2,8ea1d0c2v,d0c2v 54c1 e59381 54c1 000054c1 ab7e ab7e ab7e ab7e ab7e ab7e ab7e
+1757 aba1 aba1 aba1 * 5043 * 8ea1d0c3,d0c3,8ea1d0c3v,d0c3v 54c4 e59384 54c4 000054c4 aba1 aba1 aba1 aba1 aba1 aba1 aba1
+1758 aba2 aba2 aba2 * 5044 * 8ea1d0c4,d0c4,8ea1d0c4v,d0c4v 54c8 e59388 54c8 000054c8 aba2 aba2 aba2 aba2 aba2 aba2 aba2
+1759 aba3 aba3 aba3 * 5045 * 8ea1d0c5,d0c5,8ea1d0c5v,d0c5v 54af e592af 54af 000054af aba3 aba3 aba3 aba3 aba3 aba3 aba3
+1760 aba4 aba4 aba4 * 5046 * 8ea1d0c6,d0c6,8ea1d0c6v,d0c6v 54ab e592ab 54ab 000054ab aba4 aba4 aba4 aba4 aba4 aba4 aba4
+1761 aba5 aba5 aba5 * 5047 * 8ea1d0c7,d0c7,8ea1d0c7v,d0c7v 54b1 e592b1 54b1 000054b1 aba5 aba5 aba5 aba5 aba5 aba5 aba5
+1762 aba6 aba6 aba6 * 5048 * 8ea1d0c8,d0c8,8ea1d0c8v,d0c8v 54bb e592bb 54bb 000054bb aba6 aba6 aba6 aba6 aba6 aba6 aba6
+1763 aba7 aba7 aba7 * 5049 * 8ea1d0c9,d0c9,8ea1d0c9v,d0c9v 54a9 e592a9 54a9 000054a9 aba7 aba7 aba7 aba7 aba7 aba7 aba7
+1764 aba8 aba8 aba8 * 504a * 8ea1d0ca,d0ca,8ea1d0cav,d0cav 54a7 e592a7 54a7 000054a7 aba8 aba8 aba8 aba8 aba8 aba8 aba8
+1765 aba9 aba9 aba9 * 504b * 8ea1d0cb,d0cb,8ea1d0cbv,d0cbv 54bf e592bf 54bf 000054bf aba9 aba9 aba9 aba9 aba9 aba9 aba9
+1766 abaa abaa abaa * 504c * 8ea1d0cc,d0cc,8ea1d0ccv,d0ccv 56ff e59bbf 56ff 000056ff abaa abaa abaa abaa abaa abaa abaa
+1767 abab abab abab * 504d * 8ea1d0cd,d0cd,8ea1d0cdv,d0cdv 5782 e59e82 5782 00005782 abab abab abab abab abab abab abab
+1768 abac abac abac * 504e * 8ea1d0ce,d0ce,8ea1d0cev,d0cev 578b e59e8b 578b 0000578b abac abac abac abac abac abac abac
+1769 abad abad abad * 504f * 8ea1d0cf,d0cf,8ea1d0cfv,d0cfv 57a0 e59ea0 57a0 000057a0 abad abad abad abad abad abad abad
+1770 abae abae abae * 5050 * 8ea1d0d0,d0d0,8ea1d0d0v,d0d0v 57a3 e59ea3 57a3 000057a3 abae abae abae abae abae abae abae
+1771 abaf abaf abaf * 5051 * 8ea1d0d1,d0d1,8ea1d0d1v,d0d1v 57a2 e59ea2 57a2 000057a2 abaf abaf abaf abaf abaf abaf abaf
+1772 abb0 abb0 abb0 * 5052 * 8ea1d0d2,d0d2,8ea1d0d2v,d0d2v 57ce e59f8e 57ce 000057ce abb0 abb0 abb0 abb0 abb0 abb0 abb0
+1773 abb1 abb1 abb1 * 5053 * 8ea1d0d3,d0d3,8ea1d0d3v,d0d3v 57ae e59eae 57ae 000057ae abb1 abb1 abb1 abb1 abb1 abb1 abb1
+1774 abb2 abb2 abb2 * 5054 * 8ea1d0d4,d0d4,8ea1d0d4v,d0d4v 5793 e59e93 5793 00005793 abb2 abb2 abb2 abb2 abb2 abb2 abb2
+1775 abb3 abb3 abb3 * 5055 * 8ea1d0d5,d0d5,8ea1d0d5v,d0d5v 5955 e5a595 5955 00005955 abb3 abb3 abb3 abb3 abb3 abb3 abb3
+1776 abb4 abb4 abb4 * 5056 * 8ea1d0d6,d0d6,8ea1d0d6v,d0d6v 5951 e5a591 5951 00005951 abb4 abb4 abb4 abb4 abb4 abb4 abb4
+1777 abb5 abb5 abb5 * 5057 * 8ea1d0d7,d0d7,8ea1d0d7v,d0d7v 594f e5a58f 594f 0000594f abb5 abb5 abb5 abb5 abb5 abb5 abb5
+1778 abb6 abb6 abb6 * 5058 * 8ea1d0d8,d0d8,8ea1d0d8v,d0d8v 594e e5a58e 594e 0000594e abb6 abb6 abb6 abb6 abb6 abb6 abb6
+1779 abb7 abb7 abb7 * 5059 * 8ea1d0d9,d0d9,8ea1d0d9v,d0d9v 5950 e5a590 5950 00005950 abb7 abb7 abb7 abb7 abb7 abb7 abb7
+1780 abb8 abb8 abb8 * 505a * 8ea1d0da,d0da,8ea1d0dav,d0dav 59dc e5a79c 59dc 000059dc abb8 abb8 abb8 abb8 abb8 abb8 abb8
+1781 abb9 abb9 abb9 * 505b * 8ea1d0db,d0db,8ea1d0dbv,d0dbv 59d8 e5a798 59d8 000059d8 abb9 abb9,fbf7 91a6,abb9 abb9 abb9 abb9 abb9
+1782 abba abba abba * 505c * 8ea1d0dc,d0dc,8ea1d0dcv,d0dcv 59ff e5a7bf 59ff 000059ff abba abba abba abba abba abba abba
+1783 abbb abbb abbb * 505d * 8ea1d0dd,d0dd,8ea1d0ddv,d0ddv 59e3 e5a7a3 59e3 000059e3 abbb abbb abbb abbb abbb abbb abbb
+1784 abbc abbc abbc * 505e * 8ea1d0de,d0de,8ea1d0dev,d0dev 59e8 e5a7a8 59e8 000059e8 abbc abbc abbc abbc abbc abbc abbc
+1785 abbd abbd abbd * 505f * 8ea1d0df,d0df,8ea1d0dfv,d0dfv 5a03 e5a883 5a03 00005a03 abbd abbd abbd abbd abbd abbd abbd
+1786 abbe abbe abbe * 5060 * 8ea1d0e0,d0e0,8ea1d0e0v,d0e0v 59e5 e5a7a5 59e5 000059e5 abbe abbe abbe abbe abbe abbe abbe
+1787 abbf abbf abbf * 5061 * 8ea1d0e1,d0e1,8ea1d0e1v,d0e1v 59ea e5a7aa 59ea 000059ea abbf abbf abbf abbf abbf abbf abbf
+1788 abc0 abc0 abc0 * 5062 * 8ea1d0e2,d0e2,8ea1d0e2v,d0e2v 59da e5a79a 59da 000059da abc0 abc0 abc0 abc0 abc0 abc0 abc0
+1789 abc1 abc1 abc1 * 5063 * 8ea1d0e3,d0e3,8ea1d0e3v,d0e3v 59e6 e5a7a6 59e6 000059e6 abc1 abc1 abc1 abc1 abc1 abc1 abc1
+1790 abc2 abc2 abc2 * 5064 * 8ea1d0e4,d0e4,8ea1d0e4v,d0e4v 5a01 e5a881 5a01 00005a01 abc2 abc2 abc2 abc2 abc2 abc2 abc2
+1791 abc3 abc3 abc3 * 5065 * 8ea1d0e5,d0e5,8ea1d0e5v,d0e5v 59fb e5a7bb 59fb 000059fb abc3 abc3 abc3 abc3 abc3 abc3 abc3
+1792 abc4 abc4 abc4 * 5066 * 8ea1d0e6,d0e6,8ea1d0e6v,d0e6v 5b69 e5ada9 5b69 00005b69 abc4 abc4 abc4 abc4 abc4 abc4 abc4
+1793 abc5 abc5 abc5 * 5067 * 8ea1d0e7,d0e7,8ea1d0e7v,d0e7v 5ba3 e5aea3 5ba3 00005ba3 abc5 abc5 abc5 abc5 abc5 abc5 abc5
+1794 abc6 abc6 abc6 * 5068 * 8ea1d0e8,d0e8,8ea1d0e8v,d0e8v 5ba6 e5aea6 5ba6 00005ba6 abc6 abc6 abc6 abc6 abc6 abc6 abc6
+1795 abc7 abc7 abc7 * 5069 * 8ea1d0e9,d0e9,8ea1d0e9v,d0e9v 5ba4 e5aea4 5ba4 00005ba4 abc7 abc7 abc7 abc7 abc7 abc7 abc7
+1796 abc8 abc8 abc8 * 506a * 8ea1d0ea,d0ea,8ea1d0eav,d0eav 5ba2 e5aea2 5ba2 00005ba2 abc8 abc8 abc8 abc8 abc8 abc8 abc8
+1797 abc9 abc9 abc9 * 506b * 8ea1d0eb,d0eb,8ea1d0ebv,d0ebv 5ba5 e5aea5 5ba5 00005ba5 abc9 abc9 abc9 abc9 abc9 abc9 abc9
+1798 abca abca abca * 506c * 8ea1d0ec,d0ec,8ea1d0ecv,d0ecv 5c01 e5b081 5c01 00005c01 abca abca abca abca abca abca abca
+1799 abcb abcb abcb * 506d * 8ea1d0ed,d0ed,8ea1d0edv,d0edv 5c4e e5b18e 5c4e 00005c4e abcb abcb abcb abcb abcb abcb abcb
+1800 abcc abcc abcc * 506e * 8ea1d0ee,d0ee,8ea1d0eev,d0eev 5c4f e5b18f 5c4f 00005c4f abcc abcc abcc abcc abcc abcc abcc
+1801 abcd abcd abcd * 506f * 8ea1d0ef,d0ef,8ea1d0efv,d0efv 5c4d e5b18d 5c4d 00005c4d abcd abcd abcd abcd abcd abcd abcd
+1802 abce abce abce * 5070 * 8ea1d0f0,d0f0,8ea1d0f0v,d0f0v 5c4b e5b18b 5c4b 00005c4b abce abce abce abce abce abce abce
+1803 abcf abcf abcf * 5071 * 8ea1d0f1,d0f1,8ea1d0f1v,d0f1v 5cd9 e5b399 5cd9 00005cd9 abcf abcf abcf abcf abcf abcf abcf
+1804 abd0 abd0 abd0 * 5072 * 8ea1d0f2,d0f2,8ea1d0f2v,d0f2v 5cd2 e5b392 5cd2 00005cd2 abd0 abd0 abd0 abd0 abd0 abd0 abd0
+1805 abd1 abd1 abd1 * 5073 * 8ea1d0f3,d0f3,8ea1d0f3v,d0f3v 5df7 e5b7b7 5df7 00005df7 abd1 abd1 abd1 abd1 abd1 abd1 abd1
+1806 abd2 abd2 abd2 * 5074 * 8ea1d0f4,d0f4,8ea1d0f4v,d0f4v 5e1d e5b89d 5e1d 00005e1d abd2 abd2 abd2 abd2 abd2 abd2 abd2
+1807 abd3 abd3 abd3 * 5075 * 8ea1d0f5,d0f5,8ea1d0f5v,d0f5v 5e25 e5b8a5 5e25 00005e25 abd3 abd3 abd3 abd3 abd3 abd3 abd3
+1808 abd4 abd4 abd4 * 5076 * 8ea1d0f6,d0f6,8ea1d0f6v,d0f6v 5e1f e5b89f 5e1f 00005e1f abd4 abd4 abd4 abd4 abd4 abd4 abd4
+1809 abd5 abd5 abd5 * 5077 * 8ea1d0f7,d0f7,8ea1d0f7v,d0f7v 5e7d e5b9bd 5e7d 00005e7d abd5 abd5 abd5 abd5 abd5 abd5 abd5
+1810 abd6 abd6 abd6 * 5078 * 8ea1d0f8,d0f8,8ea1d0f8v,d0f8v 5ea0 e5baa0 5ea0 00005ea0 abd6 abd6 abd6 abd6 abd6 abd6 abd6
+1811 abd7 abd7 abd7 * 5079 * 8ea1d0f9,d0f9,8ea1d0f9v,d0f9v 5ea6 e5baa6 5ea6 00005ea6 abd7 abd7 abd7 abd7 abd7 abd7 abd7
+1812 abd8 abd8 abd8 * 507a * 8ea1d0fa,d0fa,8ea1d0fav,d0fav 5efa e5bbba 5efa 00005efa abd8 abd8 abd8 abd8 abd8 abd8 abd8
+1813 abd9 abd9 abd9 * 507b * 8ea1d0fb,d0fb,8ea1d0fbv,d0fbv 5f08 e5bc88 5f08 00005f08 abd9 abd9 abd9 abd9 abd9 abd9 abd9
+1814 abda abda abda * 507c * 8ea1d0fc,d0fc,8ea1d0fcv,d0fcv 5f2d e5bcad 5f2d 00005f2d abda abda abda abda abda abda abda
+1815 abdb abdb abdb * 507d * 8ea1d0fd,d0fd,8ea1d0fdv,d0fdv 5f65 e5bda5 5f65 00005f65 abdb abdb abdb abdb abdb abdb abdb
+1816 abdc abdc abdc * 507e * 8ea1d0fe,d0fe,8ea1d0fev,d0fev 5f88 e5be88 5f88 00005f88 abdc abdc abdc abdc abdc abdc abdc
+1817 abdd abdd abdd * 5121 * 8ea1d1a1,d1a1,8ea1d1a1v,d1a1v 5f85 e5be85 5f85 00005f85 abdd abdd abdd abdd abdd abdd abdd
+1818 abde abde abde * 5122 * 8ea1d1a2,d1a2,8ea1d1a2v,d1a2v 5f8a e5be8a 5f8a 00005f8a abde abde abde abde abde abde abde
+1819 abdf abdf abdf * 5123 * 8ea1d1a3,d1a3,8ea1d1a3v,d1a3v 5f8b e5be8b 5f8b 00005f8b abdf abdf abdf abdf abdf abdf abdf
+1820 abe0 abe0 abe0 * 5124 * 8ea1d1a4,d1a4,8ea1d1a4v,d1a4v 5f87 e5be87 5f87 00005f87 abe0 abe0 abe0 abe0 abe0 abe0 abe0
+1821 abe1 abe1 abe1 * 5125 * 8ea1d1a5,d1a5,8ea1d1a5v,d1a5v 5f8c e5be8c 5f8c 00005f8c abe1 abe1 abe1 abe1 abe1 abe1 abe1
+1822 abe2 abe2 abe2 * 5126 * 8ea1d1a6,d1a6,8ea1d1a6v,d1a6v 5f89 e5be89 5f89 00005f89 abe2 abe2 abe2 abe2 abe2 abe2 abe2
+1823 abe3 abe3 abe3 * 5127 * 8ea1d1a7,d1a7,8ea1d1a7v,d1a7v 6012 e68092 6012 00006012 abe3 abe3 abe3 abe3 abe3 abe3 abe3
+1824 abe4 abe4 abe4 * 5128 * 8ea1d1a8,d1a8,8ea1d1a8v,d1a8v 601d e6809d 601d 0000601d abe4 abe4 abe4 abe4 abe4 abe4 abe4
+1825 abe5 abe5 abe5 * 5129 * 8ea1d1a9,d1a9,8ea1d1a9v,d1a9v 6020 e680a0 6020 00006020 abe5 abe5 abe5 abe5 abe5 abe5 abe5
+1826 abe6 abe6 abe6 * 512a * 8ea1d1aa,d1aa,8ea1d1aav,d1aav 6025 e680a5 6025 00006025 abe6 abe6 abe6 abe6 abe6 abe6 abe6
+1827 abe7 abe7 abe7 * 512b * 8ea1d1ab,d1ab,8ea1d1abv,d1abv 600e e6808e 600e 0000600e abe7 abe7 abe7 abe7 abe7 abe7 abe7
+1828 abe8 abe8 abe8 * 512c * 8ea1d1ac,d1ac,8ea1d1acv,d1acv 6028 e680a8 6028 00006028 abe8 abe8 abe8 abe8 abe8 abe8 abe8
+1829 abe9 abe9 abe9 * 512d * 8ea1d1ad,d1ad,8ea1d1adv,d1adv 604d e6818d 604d 0000604d abe9 abe9 abe9 abe9 abe9 abe9 abe9
+1830 abea abea abea * 512e * 8ea1d1ae,d1ae,8ea1d1aev,d1aev 6070 e681b0 6070 00006070 abea abea abea abea abea abea abea
+1831 abeb abeb abeb * 512f * 8ea1d1af,d1af,8ea1d1afv,d1afv 6068 e681a8 6068 00006068 abeb abeb abeb abeb abeb abeb abeb
+1832 abec abec abec * 5130 * 8ea1d1b0,d1b0,8ea1d1b0v,d1b0v 6062 e681a2,eeb4a8 6062,ed28 00006062,0000ed28 9ea9,abec abec abec abec abec abec 9ea9,abec
+1833 abed abed abed * 5131 * 8ea1d1b1,d1b1,8ea1d1b1v,d1b1v 6046 e68186 6046 00006046 abed abed abed abed abed abed abed
+1834 abee abee abee * 5132 * 8ea1d1b2,d1b2,8ea1d1b2v,d1b2v 6043 e68183 6043 00006043 abee abee abee abee abee abee abee
+1835 abef abef abef * 5133 * 8ea1d1b3,d1b3,8ea1d1b3v,d1b3v 606c e681ac 606c 0000606c abef abef abef abef abef abef abef
+1836 abf0 abf0 abf0 * 5134 * 8ea1d1b4,d1b4,8ea1d1b4v,d1b4v 606b e681ab 606b 0000606b abf0 abf0 abf0 abf0 abf0 abf0 abf0
+1837 abf1 abf1 abf1 * 5135 * 8ea1d1b5,d1b5,8ea1d1b5v,d1b5v 606a e681aa 606a 0000606a abf1 abf1 abf1 abf1 abf1 abf1 abf1
+1838 abf2 abf2 abf2 * 5136 * 8ea1d1b6,d1b6,8ea1d1b6v,d1b6v 6064 e681a4 6064 00006064 abf2 abf2 abf2 abf2 abf2 abf2 abf2
+1839 abf3 abf3 abf3 * 5137 * 8ea1d1b7,d1b7,8ea1d1b7v,d1b7v 6241 e68981 6241 00006241 abf3 abf3 abf3 abf3 abf3 abf3 abf3
+1840 abf4 abf4 abf4 * 5138 * 8ea1d1b8,d1b8,8ea1d1b8v,d1b8v 62dc e68b9c 62dc 000062dc abf4 abf4 abf4 abf4 abf4 abf4 abf4
+1841 abf5 abf5 abf5 * 5139 * 8ea1d1b9,d1b9,8ea1d1b9v,d1b9v 6316 e68c96 6316 00006316 abf5 abf5 abf5 abf5 abf5 abf5 abf5
+1842 abf6 abf6 abf6 * 513a * 8ea1d1ba,d1ba,8ea1d1bav,d1bav 6309 e68c89 6309 00006309 abf6 abf6 abf6 abf6 abf6 abf6 abf6
+1843 abf7 abf7 abf7 * 513b * 8ea1d1bb,d1bb,8ea1d1bbv,d1bbv 62fc e68bbc 62fc 000062fc abf7 abf7 abf7 abf7 abf7 abf7 abf7
+1844 abf8 abf8 abf8 * 513c * 8ea1d1bc,d1bc,8ea1d1bcv,d1bcv 62ed e68bad 62ed 000062ed abf8 abf8 abf8 abf8 abf8 abf8 abf8
+1845 abf9 abf9 abf9 * 513d * 8ea1d1bd,d1bd,8ea1d1bdv,d1bdv 6301 e68c81 6301 00006301 abf9 abf9 abf9 abf9 abf9 abf9 abf9
+1846 abfa abfa abfa * 513e * 8ea1d1be,d1be,8ea1d1bev,d1bev 62ee e68bae 62ee 000062ee abfa abfa abfa abfa abfa abfa abfa
+1847 abfb abfb abfb * 513f * 8ea1d1bf,d1bf,8ea1d1bfv,d1bfv 62fd e68bbd 62fd 000062fd abfb abfb abfb abfb abfb abfb abfb
+1848 abfc abfc abfc * 5140 * 8ea1d1c0,d1c0,8ea1d1c0v,d1c0v 6307 e68c87 6307 00006307 abfc abfc abfc abfc abfc abfc abfc
+1849 abfd abfd abfd * 5141 * 8ea1d1c1,d1c1,8ea1d1c1v,d1c1v 62f1 e68bb1 62f1 000062f1 abfd abfd abfd abfd abfd abfd abfd
+1850 abfe abfe abfe * 5142 * 8ea1d1c2,d1c2,8ea1d1c2v,d1c2v 62f7 e68bb7 62f7 000062f7 abfe abfe abfe abfe abfe abfe abfe
+1851 ac40 ac40 ac40 * 5143 * 8ea1d1c3,d1c3,8ea1d1c3v,d1c3v 62ef e68baf 62ef 000062ef ac40 ac40 ac40 ac40 ac40 ac40 ac40
+1852 ac41 ac41 ac41 * 5144 * 8ea1d1c4,d1c4,8ea1d1c4v,d1c4v 62ec e68bac 62ec 000062ec ac41 ac41 ac41 ac41 ac41 ac41 ac41
+1853 ac42 ac42 ac42 * 5145 * 8ea1d1c5,d1c5,8ea1d1c5v,d1c5v 62fe e68bbe 62fe 000062fe ac42 ac42 ac42 ac42 ac42 ac42 ac42
+1854 ac43 ac43 ac43 * 5146 * 8ea1d1c6,d1c6,8ea1d1c6v,d1c6v 62f4 e68bb4 62f4 000062f4 ac43 ac43 ac43 ac43 ac43 ac43 ac43
+1855 ac44 ac44 ac44 * 5147 * 8ea1d1c7,d1c7,8ea1d1c7v,d1c7v 6311 e68c91 6311 00006311 ac44 ac44 ac44 ac44 ac44 ac44 ac44
+1856 ac45 ac45 ac45 * 5148 * 8ea1d1c8,d1c8,8ea1d1c8v,d1c8v 6302 e68c82 6302 00006302 ac45 ac45 ac45 ac45 ac45 ac45 ac45
+1857 ac46 ac46 ac46 * 5149 * 8ea1d1c9,d1c9,8ea1d1c9v,d1c9v 653f e694bf 653f 0000653f ac46 ac46 ac46 ac46 ac46 ac46 ac46
+1858 ac47 ac47 ac47 * 514a * 8ea1d1ca,d1ca,8ea1d1cav,d1cav 6545 e69585 6545 00006545 ac47 ac47 ac47 ac47 ac47 ac47 ac47
+1859 ac48 ac48 ac48 * 514b * 8ea1d1cb,d1cb,8ea1d1cbv,d1cbv 65ab e696ab 65ab 000065ab ac48 ac48 ac48 ac48 ac48 ac48 ac48
+1860 ac49 ac49 ac49 * 514c * 8ea1d1cc,d1cc,8ea1d1ccv,d1ccv 65bd e696bd 65bd 000065bd ac49 ac49 ac49 ac49 ac49 ac49 ac49
+1861 ac4a ac4a ac4a * 514d * 8ea1d1cd,d1cd,8ea1d1cdv,d1cdv 65e2 e697a2 65e2 000065e2 ac4a ac4a 91f6,ac4a ac4a ac4a ac4a ac4a
+1862 ac4b ac4b ac4b * 514e * 8ea1d1ce,d1ce,8ea1d1cev,d1cev 6625 e698a5 6625 00006625 ac4b ac4b ac4b ac4b ac4b ac4b ac4b
+1863 ac4c ac4c ac4c * 514f * 8ea1d1cf,d1cf,8ea1d1cfv,d1cfv 662d e698ad 662d 0000662d ac4c ac4c ac4c ac4c ac4c ac4c ac4c
+1864 ac4d ac4d ac4d * 5150 * 8ea1d1d0,d1d0,8ea1d1d0v,d1d0v 6620 e698a0 6620 00006620 ac4d ac4d ac4d ac4d ac4d ac4d ac4d
+1865 ac4e ac4e ac4e * 5151 * 8ea1d1d1,d1d1,8ea1d1d1v,d1d1v 6627 e698a7 6627 00006627 ac4e ac4e ac4e ac4e ac4e ac4e ac4e
+1866 ac4f ac4f ac4f * 5152 * 8ea1d1d2,d1d2,8ea1d1d2v,d1d2v 662f e698af 662f 0000662f ac4f ac4f ac4f ac4f ac4f ac4f ac4f
+1867 ac50 ac50 ac50 * 5153 * 8ea1d1d3,d1d3,8ea1d1d3v,d1d3v 661f e6989f 661f 0000661f ac50 ac50 ac50 ac50 ac50 ac50 ac50
+1868 ac51 ac51 ac51 * 5154 * 8ea1d1d4,d1d4,8ea1d1d4v,d1d4v 6628 e698a8 6628 00006628 ac51 ac51 ac51 ac51 ac51 ac51 ac51
+1869 ac52 ac52 ac52 * 5155 * 8ea1d1d5,d1d5,8ea1d1d5v,d1d5v 6631 e698b1 6631 00006631 ac52 ac52 ac52 ac52 ac52 ac52 ac52
+1870 ac53 ac53 ac53 * 5156 * 8ea1d1d6,d1d6,8ea1d1d6v,d1d6v 6624 e698a4 6624 00006624 ac53 ac53 ac53 ac53 ac53 ac53 ac53
+1871 ac54 ac54 ac54 * 5157 * 8ea1d1d7,d1d7,8ea1d1d7v,d1d7v 66f7 e69bb7 66f7 000066f7 ac54 ac54 ac54 ac54 ac54 ac54 ac54
+1872 ac55 ac55 ac55 * 5158 * 8ea1d1d8,d1d8,8ea1d1d8v,d1d8v 67ff e69fbf 67ff 000067ff ac55 ac55 ac55 ac55 ac55 ac55 ac55
+1873 ac56 ac56 ac56 * 5159 * 8ea1d1d9,d1d9,8ea1d1d9v,d1d9v 67d3 e69f93 67d3 000067d3 ac56 ac56 ac56 ac56 ac56 ac56 ac56
+1874 ac57 ac57 ac57 * 515a * 8ea1d1da,d1da,8ea1d1dav,d1dav 67f1 e69fb1 67f1 000067f1 ac57 ac57 ac57 ac57 ac57 ac57 ac57
+1875 ac58 ac58 ac58 * 515b * 8ea1d1db,d1db,8ea1d1dbv,d1dbv 67d4 e69f94 67d4 000067d4 ac58 ac58 ac58 ac58 ac58 ac58 ac58
+1876 ac59 ac59 ac59 * 515c * 8ea1d1dc,d1dc,8ea1d1dcv,d1dcv 67d0 e69f90 67d0 000067d0 ac59 ac59 ac59 ac59 ac59 ac59 ac59
+1877 ac5a ac5a ac5a * 515d * 8ea1d1dd,d1dd,8ea1d1ddv,d1ddv 67ec e69fac 67ec 000067ec ac5a ac5a ac5a ac5a ac5a ac5a ac5a
+1878 ac5b ac5b ac5b * 515e * 8ea1d1de,d1de,8ea1d1dev,d1dev 67b6 e69eb6 67b6 000067b6 ac5b ac5b ac5b ac5b ac5b ac5b ac5b
+1879 ac5c ac5c ac5c * 515f * 8ea1d1df,d1df,8ea1d1dfv,d1dfv 67af e69eaf 67af 000067af ac5c ac5c ac5c ac5c ac5c ac5c ac5c
+1880 ac5d ac5d ac5d * 5160 * 8ea1d1e0,d1e0,8ea1d1e0v,d1e0v 67f5 e69fb5 67f5 000067f5 ac5d ac5d ac5d ac5d ac5d ac5d ac5d
+1881 ac5e ac5e ac5e * 5161 * 8ea1d1e1,d1e1,8ea1d1e1v,d1e1v 67e9 e69fa9 67e9 000067e9 ac5e ac5e ac5e ac5e ac5e ac5e ac5e
+1882 ac5f ac5f ac5f * 5162 * 8ea1d1e2,d1e2,8ea1d1e2v,d1e2v 67ef e69faf 67ef 000067ef ac5f ac5f ac5f ac5f ac5f ac5f ac5f
+1883 ac60 ac60 ac60 * 5163 * 8ea1d1e3,d1e3,8ea1d1e3v,d1e3v 67c4 e69f84 67c4 000067c4 ac60 ac60 ac60 ac60 ac60 ac60 ac60
+1884 ac61 ac61 ac61 * 5164 * 8ea1d1e4,d1e4,8ea1d1e4v,d1e4v 67d1 e69f91 67d1 000067d1 ac61 ac61 ac61 ac61 ac61 ac61 ac61
+1885 ac62 ac62 ac62 * 5165 * 8ea1d1e5,d1e5,8ea1d1e5v,d1e5v 67b4 e69eb4 67b4 000067b4 ac62 ac62 ac62 ac62 ac62 ac62 ac62
+1886 ac63 ac63 ac63 * 5166 * 8ea1d1e6,d1e6,8ea1d1e6v,d1e6v 67da e69f9a 67da 000067da ac63 ac63 ac63 ac63 ac63 ac63 ac63
+1887 ac64 ac64 ac64 * 5167 * 8ea1d1e7,d1e7,8ea1d1e7v,d1e7v 67e5 e69fa5 67e5 000067e5 ac64 ac64 ac64 ac64 ac64 ac64 ac64
+1888 ac65 ac65 ac65 * 5168 * 8ea1d1e8,d1e8,8ea1d1e8v,d1e8v 67b8 e69eb8 67b8 000067b8 ac65 ac65 ac65 ac65 ac65 ac65 ac65
+1889 ac66 ac66 ac66 * 5169 * 8ea1d1e9,d1e9,8ea1d1e9v,d1e9v 67cf e69f8f 67cf 000067cf ac66 ac66 ac66 ac66 ac66 ac66 ac66
+1890 ac67 ac67 ac67 * 516a * 8ea1d1ea,d1ea,8ea1d1eav,d1eav 67de e69f9e 67de 000067de ac67 ac67 ac67 ac67 ac67 ac67 ac67
+1891 ac68 ac68 ac68 * 516b * 8ea1d1eb,d1eb,8ea1d1ebv,d1ebv 67f3 e69fb3 67f3 000067f3 ac68 ac68 ac68 ac68 ac68 ac68 ac68
+1892 ac69 ac69 ac69 * 516c * 8ea1d1ec,d1ec,8ea1d1ecv,d1ecv 67b0 e69eb0 67b0 000067b0 ac69 ac69 ac69 ac69 ac69 ac69 ac69
+1893 ac6a ac6a ac6a * 516d * 8ea1d1ed,d1ed,8ea1d1edv,d1edv 67d9 e69f99 67d9 000067d9 ac6a ac6a ac6a ac6a ac6a ac6a ac6a
+1894 ac6b ac6b ac6b * 516e * 8ea1d1ee,d1ee,8ea1d1eev,d1eev 67e2 e69fa2 67e2 000067e2 ac6b ac6b ac6b ac6b ac6b ac6b ac6b
+1895 ac6c ac6c ac6c * 516f * 8ea1d1ef,d1ef,8ea1d1efv,d1efv 67dd e69f9d 67dd 000067dd ac6c ac6c ac6c ac6c ac6c ac6c ac6c
+1896 ac6d ac6d ac6d * 5170 * 8ea1d1f0,d1f0,8ea1d1f0v,d1f0v 67d2 e69f92 67d2 000067d2 ac6d ac6d ac6d ac6d ac6d ac6d ac6d
+1897 ac6e ac6e ac6e * 5171 * 8ea1d1f1,d1f1,8ea1d1f1v,d1f1v 6b6a e6adaa 6b6a 00006b6a ac6e ac6e ac6e ac6e ac6e ac6e ac6e
+1898 ac6f ac6f ac6f * 5172 * 8ea1d1f2,d1f2,8ea1d1f2v,d1f2v 6b83 e6ae83 6b83 00006b83 ac6f ac6f ac6f ac6f ac6f ac6f ac6f
+1899 ac70 ac70 ac70 * 5173 * 8ea1d1f3,d1f3,8ea1d1f3v,d1f3v 6b86 e6ae86 6b86 00006b86 ac70 ac70 ac70 ac70 ac70 ac70 ac70
+1900 ac71 ac71 ac71 * 5174 * 8ea1d1f4,d1f4,8ea1d1f4v,d1f4v 6bb5 e6aeb5 6bb5 00006bb5 ac71 ac71 ac71 ac71 ac71 ac71 ac71
+1901 ac72 ac72 ac72 * 5175 * 8ea1d1f5,d1f5,8ea1d1f5v,d1f5v 6bd2 e6af92 6bd2 00006bd2 ac72 ac72 ac72 ac72 ac72 ac72 ac72
+1902 ac73 ac73 ac73 * 5176 * 8ea1d1f6,d1f6,8ea1d1f6v,d1f6v 6bd7 e6af97 6bd7 00006bd7 ac73 ac73 ac73 ac73 ac73 ac73 ac73
+1903 ac74 ac74 ac74 * 5177 * 8ea1d1f7,d1f7,8ea1d1f7v,d1f7v 6c1f e6b09f 6c1f 00006c1f ac74 ac74 ac74 ac74 ac74 ac74 ac74
+1904 ac75 ac75 ac75 * 5178 * 8ea1d1f8,d1f8,8ea1d1f8v,d1f8v 6cc9 e6b389 6cc9 00006cc9 ac75 ac75 ac75 ac75 ac75 ac75 ac75
+1905 ac76 ac76 ac76 * 5179 * 8ea1d1f9,d1f9,8ea1d1f9v,d1f9v 6d0b e6b48b 6d0b 00006d0b ac76 ac76 ac76 ac76 ac76 ac76 ac76
+1906 ac77 ac77 ac77 * 517a * 8ea1d1fa,d1fa,8ea1d1fav,d1fav 6d32 e6b4b2 6d32 00006d32 ac77 ac77 ac77 ac77 ac77 ac77 ac77
+1907 ac78 ac78 ac78 * 517b * 8ea1d1fb,d1fb,8ea1d1fbv,d1fbv 6d2a e6b4aa 6d2a 00006d2a ac78 ac78 ac78 ac78 ac78 ac78 ac78
+1908 ac79 ac79 ac79 * 517c * 8ea1d1fc,d1fc,8ea1d1fcv,d1fcv 6d41 e6b581 6d41 00006d41 ac79 ac79 ac79 ac79 ac79 ac79 ac79
+1909 ac7a ac7a ac7a * 517d * 8ea1d1fd,d1fd,8ea1d1fdv,d1fdv 6d25 e6b4a5 6d25 00006d25 ac7a ac7a ac7a ac7a ac7a ac7a ac7a
+1910 ac7b ac7b ac7b * 517e * 8ea1d1fe,d1fe,8ea1d1fev,d1fev 6d0c e6b48c 6d0c 00006d0c ac7b ac7b ac7b ac7b ac7b ac7b ac7b
+1911 ac7c ac7c ac7c * 5221 * 8ea1d2a1,d2a1,8ea1d2a1v,d2a1v 6d31 e6b4b1 6d31 00006d31 ac7c ac7c ac7c ac7c ac7c ac7c ac7c
+1912 ac7d ac7d ac7d * 5222 * 8ea1d2a2,d2a2,8ea1d2a2v,d2a2v 6d1e e6b49e 6d1e 00006d1e ac7d ac7d ac7d ac7d ac7d ac7d ac7d
+1913 ac7e ac7e ac7e * 5223 * 8ea1d2a3,d2a3,8ea1d2a3v,d2a3v 6d17 e6b497 6d17 00006d17 ac7e ac7e ac7e ac7e ac7e ac7e ac7e
+1914 aca1 aca1 aca1 * 5224 * 8ea1d2a4,d2a4,8ea1d2a4v,d2a4v 6d3b e6b4bb 6d3b 00006d3b aca1 aca1 aca1 aca1 aca1 aca1 aca1
+1915 aca2 aca2 aca2 * 5225 * 8ea1d2a5,d2a5,8ea1d2a5v,d2a5v 6d3d e6b4bd 6d3d 00006d3d aca2 aca2 aca2 aca2 aca2 aca2 aca2
+1916 aca3 aca3 aca3 * 5226 * 8ea1d2a6,d2a6,8ea1d2a6v,d2a6v 6d3e e6b4be 6d3e 00006d3e aca3 aca3 aca3 aca3 aca3 aca3 aca3
+1917 aca4 aca4 aca4 * 5227 * 8ea1d2a7,d2a7,8ea1d2a7v,d2a7v 6d36 e6b4b6 6d36 00006d36 aca4 aca4 aca4 aca4 aca4 aca4 aca4
+1918 aca5 aca5 aca5 * 5228 * 8ea1d2a8,d2a8,8ea1d2a8v,d2a8v 6d1b e6b49b 6d1b 00006d1b aca5 aca5 aca5 aca5 aca5 aca5 aca5
+1919 aca6 aca6 aca6 * 5229 * 8ea1d2a9,d2a9,8ea1d2a9v,d2a9v 6cf5 e6b3b5 6cf5 00006cf5 aca6 aca6 aca6 aca6 aca6 aca6 aca6
+1920 aca7 aca7 aca7 * 522a * 8ea1d2aa,d2aa,8ea1d2aav,d2aav 6d39 e6b4b9 6d39 00006d39 aca7 aca7 aca7 aca7 aca7 aca7 aca7
+1921 aca8 aca8 aca8 * 522b * 8ea1d2ab,d2ab,8ea1d2abv,d2abv 6d27 e6b4a7 6d27 00006d27 aca8 aca8 aca8 aca8 aca8 aca8 aca8
+1922 aca9 aca9 aca9 * 522c * 8ea1d2ac,d2ac,8ea1d2acv,d2acv 6d38 e6b4b8 6d38 00006d38 aca9 aca9 aca9 aca9 aca9 aca9 aca9
+1923 acaa acaa acaa * 522d * 8ea1d2ad,d2ad,8ea1d2adv,d2adv 6d29 e6b4a9 6d29 00006d29 acaa acaa acaa acaa acaa acaa acaa
+1924 acab acab acab * 522e * 8ea1d2ae,d2ae,8ea1d2aev,d2aev 6d2e e6b4ae 6d2e 00006d2e acab acab acab acab acab acab acab
+1925 acac acac acac * 522f * 8ea1d2af,d2af,8ea1d2afv,d2afv 6d35 e6b4b5 6d35 00006d35 acac acac acac acac acac acac acac
+1926 acad acad acad * 5230 * 8ea1d2b0,d2b0,8ea1d2b0v,d2b0v 6d0e e6b48e 6d0e 00006d0e acad acad acad acad acad acad acad
+1927 acae acae acae * 5231 * 8ea1d2b1,d2b1,8ea1d2b1v,d2b1v 6d2b e6b4ab 6d2b 00006d2b acae acae acae acae acae acae acae
+1928 acaf acaf acaf * 5232 * 8ea1d2b2,d2b2,8ea1d2b2v,d2b2v 70ab e782ab 70ab 000070ab acaf acaf acaf acaf acaf acaf acaf
+1929 acb0 acb0 acb0 * 5233 * 8ea1d2b3,d2b3,8ea1d2b3v,d2b3v 70ba e782ba 70ba 000070ba acb0 acb0 acb0 acb0 acb0 acb0 acb0
+1930 acb1 acb1 acb1 * 5234 * 8ea1d2b4,d2b4,8ea1d2b4v,d2b4v 70b3 e782b3 70b3 000070b3 acb1 acb1 acb1 acb1 acb1 acb1 acb1
+1931 acb2 acb2 acb2 * 5235 * 8ea1d2b5,d2b5,8ea1d2b5v,d2b5v 70ac e782ac 70ac 000070ac acb2 acb2 acb2 acb2 acb2 acb2 acb2
+1932 acb3 acb3 acb3 * 5236 * 8ea1d2b6,d2b6,8ea1d2b6v,d2b6v 70af e782af 70af 000070af acb3 acb3 acb3 acb3 acb3 acb3 acb3
+1933 acb4 acb4 acb4 * 5237 * 8ea1d2b7,d2b7,8ea1d2b7v,d2b7v 70ad e782ad 70ad 000070ad acb4 acb4 acb4 acb4 acb4 acb4 acb4
+1934 acb5 acb5 acb5 * 5238 * 8ea1d2b8,d2b8,8ea1d2b8v,d2b8v 70b8 e782b8 70b8 000070b8 acb5 acb5 acb5 acb5 acb5 acb5 acb5
+1935 acb6 acb6 acb6 * 5239 * 8ea1d2b9,d2b9,8ea1d2b9v,d2b9v 70ae e782ae 70ae 000070ae acb6 acb6 acb6 acb6 acb6 acb6 acb6
+1936 acb7 acb7 acb7 * 523a * 8ea1d2ba,d2ba,8ea1d2bav,d2bav 70a4 e782a4 70a4 000070a4 acb7 acb7 acb7 acb7 acb7 acb7 acb7
+1937 acb8 acb8 acb8 * 523b * 8ea1d2bb,d2bb,8ea1d2bbv,d2bbv 7230 e788b0 7230 00007230 acb8 acb8 acb8 acb8 acb8 acb8 acb8
+1938 acb9 acb9 acb9 * 523c * 8ea1d2bc,d2bc,8ea1d2bcv,d2bcv 7272 e789b2 7272 00007272 acb9 acb9 acb9 acb9 acb9 acb9 acb9
+1939 acba acba acba * 523d * 8ea1d2bd,d2bd,8ea1d2bdv,d2bdv 726f e789af 726f 0000726f acba acba acba acba acba acba acba
+1940 acbb acbb acbb * 523e * 8ea1d2be,d2be,8ea1d2bev,d2bev 7274 e789b4 7274 00007274 acbb acbb acbb acbb acbb acbb acbb
+1941 acbc acbc acbc * 523f * 8ea1d2bf,d2bf,8ea1d2bfv,d2bfv 72e9 e78ba9 72e9 000072e9 acbc acbc acbc acbc acbc acbc acbc
+1942 acbd acbd acbd * 5240 * 8ea1d2c0,d2c0,8ea1d2c0v,d2c0v 72e0 e78ba0 72e0 000072e0 acbd acbd acbd acbd acbd acbd acbd
+1943 acbe acbe acbe * 5241 * 8ea1d2c1,d2c1,8ea1d2c1v,d2c1v 72e1 e78ba1 72e1 000072e1 acbe acbe acbe acbe acbe acbe acbe
+1944 acbf acbf acbf * 5242 * 8ea1d2c2,d2c2,8ea1d2c2v,d2c2v 73b7 e78eb7 73b7 000073b7 acbf acbf acbf acbf acbf acbf acbf
+1945 acc0 acc0 acc0 * 5243 * 8ea1d2c3,d2c3,8ea1d2c3v,d2c3v 73ca e78f8a 73ca 000073ca acc0 acc0 acc0 acc0 acc0 acc0 acc0
+1946 acc1 acc1 acc1 * 5244 * 8ea1d2c4,d2c4,8ea1d2c4v,d2c4v 73bb e78ebb 73bb 000073bb acc1 acc1 acc1 acc1 acc1 acc1 acc1
+1947 acc2 acc2 acc2 * 5245 * 8ea1d2c5,d2c5,8ea1d2c5v,d2c5v 73b2 e78eb2 73b2 000073b2 acc2 acc2 acc2 acc2 acc2 acc2 acc2
+1948 acc3 acc3 acc3 * 5246 * 8ea1d2c6,d2c6,8ea1d2c6v,d2c6v 73cd e78f8d 73cd 000073cd acc3 acc3 acc3 acc3 acc3 acc3 acc3
+1949 acc4 acc4 acc4 * 5247 * 8ea1d2c7,d2c7,8ea1d2c7v,d2c7v 73c0 e78f80 73c0 000073c0 acc4 acc4 acc4 acc4 acc4 acc4 acc4
+1950 acc5 acc5 acc5 * 5248 * 8ea1d2c8,d2c8,8ea1d2c8v,d2c8v 73b3 e78eb3 73b3 000073b3 acc5 acc5 acc5 acc5 acc5 acc5 acc5
+1951 acc6 acc6 acc6 * 5249 * 8ea1d2c9,d2c9,8ea1d2c9v,d2c9v 751a e7949a 751a 0000751a acc6 acc6 acc6 acc6 acc6 acc6 acc6
+1952 acc7 acc7 acc7 * 524a * 8ea1d2ca,d2ca,8ea1d2cav,d2cav 752d e794ad 752d 0000752d acc7 acc7 acc7 acc7 acc7 acc7 acc7
+1953 acc8 acc8 acc8 * 524b * 8ea1d2cb,d2cb,8ea1d2cbv,d2cbv 754f e7958f 754f 0000754f acc8 acc8 acc8 acc8 acc8 acc8 acc8
+1954 acc9 acc9 acc9 * 524c * 8ea1d2cc,d2cc,8ea1d2ccv,d2ccv 754c e7958c 754c 0000754c acc9 acc9 acc9 acc9 acc9 acc9 acc9
+1955 acca acca acca * 524d * 8ea1d2cd,d2cd,8ea1d2cdv,d2cdv 754e e7958e 754e 0000754e acca acca acca acca acca acca acca
+1956 accb accb accb * 524e * 8ea1d2ce,d2ce,8ea1d2cev,d2cev 754b e7958b 754b 0000754b accb accb accb accb accb accb accb
+1957 accc accc accc * 524f * 8ea1d2cf,d2cf,8ea1d2cfv,d2cfv 75ab e796ab 75ab 000075ab accc accc accc accc accc accc accc
+1958 accd accd accd * 5250 * 8ea1d2d0,d2d0,8ea1d2d0v,d2d0v 75a4 e796a4 75a4 000075a4 accd accd accd accd accd accd accd
+1959 acce acce acce * 5251 * 8ea1d2d1,d2d1,8ea1d2d1v,d2d1v 75a5 e796a5 75a5 000075a5 acce acce acce acce acce acce acce
+1960 accf accf accf * 5252 * 8ea1d2d2,d2d2,8ea1d2d2v,d2d2v 75a2 e796a2 75a2 000075a2 accf accf accf accf accf accf accf
+1961 acd0 acd0 acd0 * 5253 * 8ea1d2d3,d2d3,8ea1d2d3v,d2d3v 75a3 e796a3 75a3 000075a3 acd0 acd0 acd0 acd0 acd0 acd0 acd0
+1962 acd1 acd1 acd1 * 5254 * 8ea1d2d4,d2d4,8ea1d2d4v,d2d4v 7678 e799b8 7678 00007678 acd1 acd1 acd1 acd1 acd1 acd1 acd1
+1963 acd2 acd2 acd2 * 5255 * 8ea1d2d5,d2d5,8ea1d2d5v,d2d5v 7686 e79a86 7686 00007686 acd2 acd2 acd2 acd2 acd2 acd2 acd2
+1964 acd3 acd3 acd3 * 5256 * 8ea1d2d6,d2d6,8ea1d2d6v,d2d6v 7687 e79a87 7687 00007687 acd3 acd3 acd3 acd3 acd3 acd3 acd3
+1965 acd4 acd4 acd4 * 5257 * 8ea1d2d7,d2d7,8ea1d2d7v,d2d7v 7688 e79a88 7688 00007688 acd4 acd4 acd4 acd4 acd4 acd4 acd4
+1966 acd5 acd5 acd5 * 5258 * 8ea1d2d8,d2d8,8ea1d2d8v,d2d8v 76c8 e79b88 76c8 000076c8 acd5 acd5 acd5 acd5 acd5 acd5 acd5
+1967 acd6 acd6 acd6 * 5259 * 8ea1d2d9,d2d9,8ea1d2d9v,d2d9v 76c6 e79b86 76c6 000076c6 acd6 acd6 acd6 acd6 acd6 acd6 acd6
+1968 acd7 acd7 acd7 * 525a * 8ea1d2da,d2da,8ea1d2dav,d2dav 76c3 e79b83 76c3 000076c3 acd7 acd7 acd7 acd7 acd7 acd7 acd7
+1969 acd8 acd8 acd8 * 525b * 8ea1d2db,d2db,8ea1d2dbv,d2dbv 76c5 e79b85 76c5 000076c5 acd8 acd8 acd8 acd8 acd8 acd8 acd8
+1970 acd9 acd9 acd9 * 525c * 8ea1d2dc,d2dc,8ea1d2dcv,d2dcv 7701 e79c81 7701 00007701 acd9 acd9 acd9 acd9 acd9 acd9 acd9
+1971 acda acda acda * 525d * 8ea1d2dd,d2dd,8ea1d2ddv,d2ddv 76f9 e79bb9 76f9 000076f9 acda acda acda acda acda acda acda
+1972 acdb acdb acdb * 525e * 8ea1d2de,d2de,8ea1d2dev,d2dev 76f8 e79bb8 76f8 000076f8 acdb acdb acdb acdb acdb acdb acdb
+1973 acdc acdc acdc * 525f * 8ea1d2df,d2df,8ea1d2dfv,d2dfv 7709 e79c89 7709 00007709 acdc acdc acdc acdc acdc acdc acdc
+1974 acdd acdd acdd * 5260 * 8ea1d2e0,d2e0,8ea1d2e0v,d2e0v 770b e79c8b 770b 0000770b acdd acdd acdd acdd acdd acdd acdd
+1975 acde acde acde * 5261 * 8ea1d2e1,d2e1,8ea1d2e1v,d2e1v 76fe e79bbe 76fe 000076fe acde acde acde acde acde acde acde
+1976 acdf acdf acdf * 5262 * 8ea1d2e2,d2e2,8ea1d2e2v,d2e2v 76fc e79bbc 76fc 000076fc acdf acdf acdf acdf acdf acdf acdf
+1977 ace0 ace0 ace0 * 5263 * 8ea1d2e3,d2e3,8ea1d2e3v,d2e3v 7707 e79c87 7707 00007707 ace0 ace0 ace0 ace0 ace0 ace0 ace0
+1978 ace1 ace1 ace1 * 5264 * 8ea1d2e4,d2e4,8ea1d2e4v,d2e4v 77dc e79f9c 77dc 000077dc ace1 ace1 ace1 ace1 ace1 ace1 ace1
+1979 ace2 ace2 ace2 * 5265 * 8ea1d2e5,d2e5,8ea1d2e5v,d2e5v 7802 e7a082 7802 00007802 ace2 ace2 ace2 ace2 ace2 ace2 ace2
+1980 ace3 ace3 ace3 * 5266 * 8ea1d2e6,d2e6,8ea1d2e6v,d2e6v 7814 e7a094 7814 00007814 ace3 ace3 ace3 ace3 ace3 ace3 ace3
+1981 ace4 ace4 ace4 * 5267 * 8ea1d2e7,d2e7,8ea1d2e7v,d2e7v 780c e7a08c 780c 0000780c ace4 ace4 ace4 ace4 ace4 ace4 ace4
+1982 ace5 ace5 ace5 * 5268 * 8ea1d2e8,d2e8,8ea1d2e8v,d2e8v 780d e7a08d 780d 0000780d ace5 ace5 ace5 ace5 ace5 ace5 ace5
+1983 ace6 ace6 ace6 * 5269 * 8ea1d2e9,d2e9,8ea1d2e9v,d2e9v 7946 e7a586 7946 00007946 ace6 ace6 ace6 ace6 ace6 ace6 ace6
+1984 ace7 ace7 ace7 * 526a * 8ea1d2ea,d2ea,8ea1d2eav,d2eav 7949 e7a589 7949 00007949 ace7 ace7 ace7 ace7 ace7 ace7 ace7
+1985 ace8 ace8 ace8 * 526b * 8ea1d2eb,d2eb,8ea1d2ebv,d2ebv 7948 e7a588 7948 00007948 ace8 ace8 ace8 ace8 ace8 ace8 ace8
+1986 ace9 ace9 ace9 * 526c * 8ea1d2ec,d2ec,8ea1d2ecv,d2ecv 7947 e7a587 7947 00007947 ace9 ace9,fb53,fd5e 9160,ace9 ace9 ace9 ace9 ace9
+1987 acea acea acea * 526d * 8ea1d2ed,d2ed,8ea1d2edv,d2edv 79b9 e7a6b9 79b9 000079b9 acea acea acea acea acea acea acea
+1988 aceb aceb aceb * 526e * 8ea1d2ee,d2ee,8ea1d2eev,d2eev 79ba e7a6ba 79ba 000079ba aceb aceb aceb aceb aceb aceb aceb
+1989 acec acec acec * 526f * 8ea1d2ef,d2ef,8ea1d2efv,d2efv 79d1 e7a791 79d1 000079d1 acec acec acec acec acec acec acec
+1990 aced aced aced * 5270 * 8ea1d2f0,d2f0,8ea1d2f0v,d2f0v 79d2 e7a792 79d2 000079d2 aced aced aced aced aced aced aced
+1991 acee acee acee * 5271 * 8ea1d2f1,d2f1,8ea1d2f1v,d2f1v 79cb e7a78b 79cb 000079cb acee acee acee acee acee acee acee
+1992 acef acef acef * 5272 * 8ea1d2f2,d2f2,8ea1d2f2v,d2f2v 7a7f e7a9bf 7a7f 00007a7f acef acef acef acef acef acef acef
+1993 acf0 acf0 acf0 * 5273 * 8ea1d2f3,d2f3,8ea1d2f3v,d2f3v 7a81 e7aa81 7a81 00007a81 acf0 acf0 acf0 acf0 acf0 acf0 acf0
+1994 acf1 acf1 acf1 * 5274 * 8ea1d2f4,d2f4,8ea1d2f4v,d2f4v 7aff e7abbf 7aff 00007aff acf1 acf1 acf1 acf1 acf1 acf1 acf1
+1995 acf2 acf2 acf2 * 5275 * 8ea1d2f5,d2f5,8ea1d2f5v,d2f5v 7afd e7abbd 7afd 00007afd acf2 acf2 acf2 acf2 acf2 acf2 acf2
+1996 acf3 acf3 acf3 * 5276 * 8ea1d2f6,d2f6,8ea1d2f6v,d2f6v 7c7d e7b1bd 7c7d 00007c7d acf3 acf3 acf3 acf3 acf3 acf3 acf3
+1997 acf4 acf4 acf4 * 5277 * 8ea1d2f7,d2f7,8ea1d2f7v,d2f7v 7d02 e7b482 7d02 00007d02 acf4 acf4 acf4 acf4 acf4 acf4 acf4
+1998 acf5 acf5 acf5 * 5278 * 8ea1d2f8,d2f8,8ea1d2f8v,d2f8v 7d05 e7b485 7d05 00007d05 acf5 acf5 acf5 acf5 acf5 acf5 acf5
+1999 acf6 acf6 acf6 * 5279 * 8ea1d2f9,d2f9,8ea1d2f9v,d2f9v 7d00 e7b480 7d00 00007d00 acf6 acf6 acf6 acf6 acf6 acf6 acf6
+2000 acf7 acf7 acf7 * 527a * 8ea1d2fa,d2fa,8ea1d2fav,d2fav 7d09 e7b489 7d09 00007d09 acf7 acf7 acf7 acf7 acf7 acf7 acf7
+2001 acf8 acf8 acf8 * 527b * 8ea1d2fb,d2fb,8ea1d2fbv,d2fbv 7d07 e7b487 7d07 00007d07 acf8 acf8 acf8 acf8 acf8 acf8 acf8
+2002 acf9 acf9 acf9 * 527c * 8ea1d2fc,d2fc,8ea1d2fcv,d2fcv 7d04 e7b484 7d04 00007d04 acf9 acf9 acf9 acf9 acf9 acf9 acf9
+2003 acfa acfa acfa * 527d * 8ea1d2fd,d2fd,8ea1d2fdv,d2fdv 7d06 e7b486 7d06 00007d06 acfa acfa acfa acfa acfa acfa acfa
+2004 acfb acfb acfb * 527e * 8ea1d2fe,d2fe,8ea1d2fev,d2fev 7f38 e7bcb8 7f38 00007f38 acfb acfb acfb acfb acfb acfb acfb
+2005 acfc acfc acfc * 5321 * 8ea1d3a1,d3a1,8ea1d3a1v,d3a1v 7f8e e7be8e 7f8e 00007f8e acfc acfc acfc acfc acfc acfc acfc
+2006 acfd acfd acfd * 5322 * 8ea1d3a2,d3a2,8ea1d3a2v,d3a2v 7fbf e7bebf 7fbf 00007fbf acfd acfd acfd acfd acfd acfd acfd
+2007 ad40 ad40 ad40 * 5323 * 8ea1d3a3,d3a3,8ea1d3a3v,d3a3v 8010 e88090 8010 00008010 ad40 ad40 ad40 ad40 ad40 ad40 ad40
+2008 ad41 ad41 ad41 * 5324 * 8ea1d3a4,d3a4,8ea1d3a4v,d3a4v 800d e8808d 800d 0000800d ad41 ad41 ad41 ad41 ad41 ad41 ad41
+2009 ad42 ad42 ad42 * 5325 * 8ea1d3a5,d3a5,8ea1d3a5v,d3a5v 8011 e88091 8011 00008011 ad42 ad42 ad42 ad42 ad42 ad42 ad42
+2010 ad43 ad43 ad43 * 5326 * 8ea1d3a6,d3a6,8ea1d3a6v,d3a6v 8036 e880b6 8036 00008036 ad43 ad43 ad43 ad43 ad43 ad43 ad43
+2011 ad44 ad44 ad44 * 5327 * 8ea1d3a7,d3a7,8ea1d3a7v,d3a7v 80d6 e88396 80d6 000080d6 ad44 ad44 ad44 ad44 ad44 ad44 ad44
+2012 ad45 ad45 ad45 * 5328 * 8ea1d3a8,d3a8,8ea1d3a8v,d3a8v 80e5 e883a5 80e5 000080e5 ad45 ad45 ad45 ad45 ad45 ad45 ad45
+2013 ad46 ad46 ad46 * 5329 * 8ea1d3a9,d3a9,8ea1d3a9v,d3a9v 80da e8839a 80da 000080da ad46 ad46 ad46 ad46 ad46 ad46 ad46
+2014 ad47 ad47 ad47 * 532a * 8ea1d3aa,d3aa,8ea1d3aav,d3aav 80c3 e88383 80c3 000080c3 ad47 ad47 ad47 ad47 ad47 ad47 ad47
+2015 ad48 ad48 ad48 * 532b * 8ea1d3ab,d3ab,8ea1d3abv,d3abv 80c4 e88384 80c4 000080c4 ad48 ad48 ad48 ad48 ad48 ad48 ad48
+2016 ad49 ad49 ad49 * 532c * 8ea1d3ac,d3ac,8ea1d3acv,d3acv 80cc e8838c 80cc 000080cc ad49 ad49 ad49 ad49 ad49 ad49 ad49
+2017 ad4a ad4a ad4a * 532d * 8ea1d3ad,d3ad,8ea1d3adv,d3adv 80e1 e883a1 80e1 000080e1 ad4a ad4a ad4a ad4a ad4a ad4a ad4a
+2018 ad4b ad4b ad4b * 532e * 8ea1d3ae,d3ae,8ea1d3aev,d3aev 80db e8839b 80db 000080db ad4b ad4b ad4b ad4b ad4b ad4b ad4b
+2019 ad4c ad4c ad4c * 532f * 8ea1d3af,d3af,8ea1d3afv,d3afv 80ce e8838e 80ce 000080ce ad4c ad4c ad4c ad4c ad4c ad4c ad4c
+2020 ad4d ad4d ad4d * 5330 * 8ea1d3b0,d3b0,8ea1d3b0v,d3b0v 80de e8839e 80de 000080de ad4d ad4d ad4d ad4d ad4d ad4d ad4d
+2021 ad4e ad4e ad4e * 5331 * 8ea1d3b1,d3b1,8ea1d3b1v,d3b1v 80e4 e883a4 80e4 000080e4 ad4e ad4e ad4e ad4e ad4e ad4e ad4e
+2022 ad4f ad4f ad4f * 5332 * 8ea1d3b2,d3b2,8ea1d3b2v,d3b2v 80dd e8839d 80dd 000080dd ad4f ad4f ad4f ad4f ad4f ad4f ad4f
+2023 ad50 ad50 ad50 * 5333 * 8ea1d3b3,d3b3,8ea1d3b3v,d3b3v 81f4 e887b4 81f4 000081f4 ad50 ad50 ad50 ad50 ad50 ad50 ad50
+2024 ad51 ad51 ad51 * 5334 * 8ea1d3b4,d3b4,8ea1d3b4v,d3b4v 8222 e888a2 8222 00008222 ad51 ad51 ad51 ad51 ad51 ad51 ad51
+2025 ad52 ad52 ad52 * 5335 * 8ea1d3b5,d3b5,8ea1d3b5v,d3b5v 82e7 e88ba7 82e7 000082e7 ad52 ad52 ad52 ad52 ad52 ad52 ad52
+2026 ad53 ad53 ad53 * 5336 * 8ea1d3b6,d3b6,8ea1d3b6v,d3b6v 8303 e88c83 8303 00008303 ad53 ad53 ad53 ad53 ad53 ad53 ad53
+2027 ad54 ad54 ad54 * 5337 * 8ea1d3b7,d3b7,8ea1d3b7v,d3b7v 8305 e88c85 8305 00008305 ad54 ad54 ad54 ad54 ad54 ad54 ad54
+2028 ad55 ad55 ad55 * 5338 * 8ea1d3b8,d3b8,8ea1d3b8v,d3b8v 82e3 e88ba3 82e3 000082e3 ad55 ad55 ad55 ad55 ad55 ad55 ad55
+2029 ad56 ad56 ad56 * 5339 * 8ea1d3b9,d3b9,8ea1d3b9v,d3b9v 82db e88b9b 82db 000082db ad56 ad56 ad56 ad56 ad56 ad56 ad56
+2030 ad57 ad57 ad57 * 533a * 8ea1d3ba,d3ba,8ea1d3bav,d3bav 82e6 e88ba6 82e6 000082e6 ad57 ad57 ad57 ad57 ad57 ad57 ad57
+2031 ad58 ad58 ad58 * 533b * 8ea1d3bb,d3bb,8ea1d3bbv,d3bbv 8304 e88c84 8304 00008304 ad58 ad58 ad58 ad58 ad58 ad58 ad58
+2032 ad59 ad59 ad59 * 533c * 8ea1d3bc,d3bc,8ea1d3bcv,d3bcv 82e5 e88ba5 82e5 000082e5 ad59 ad59 ad59 ad59 ad59 ad59 ad59
+2033 ad5a ad5a ad5a * 533d * 8ea1d3bd,d3bd,8ea1d3bdv,d3bdv 8302 e88c82 8302 00008302 ad5a ad5a ad5a ad5a ad5a ad5a ad5a
+2034 ad5b ad5b ad5b * 533e * 8ea1d3be,d3be,8ea1d3bev,d3bev 8309 e88c89 8309 00008309 ad5b ad5b ad5b ad5b ad5b ad5b ad5b
+2035 ad5c ad5c ad5c * 533f * 8ea1d3bf,d3bf,8ea1d3bfv,d3bfv 82d2 e88b92 82d2 000082d2 ad5c ad5c ad5c ad5c ad5c ad5c ad5c
+2036 ad5d ad5d ad5d * 5340 * 8ea1d3c0,d3c0,8ea1d3c0v,d3c0v 82d7 e88b97 82d7 000082d7 ad5d ad5d ad5d ad5d ad5d ad5d ad5d
+2037 ad5e ad5e ad5e * 5341 * 8ea1d3c1,d3c1,8ea1d3c1v,d3c1v 82f1 e88bb1 82f1 000082f1 ad5e ad5e ad5e ad5e ad5e ad5e ad5e
+2038 ad5f ad5f ad5f * 5342 * 8ea1d3c2,d3c2,8ea1d3c2v,d3c2v 8301 e88c81 8301 00008301 ad5f ad5f ad5f ad5f ad5f ad5f ad5f
+2039 ad60 ad60 ad60 * 5343 * 8ea1d3c3,d3c3,8ea1d3c3v,d3c3v 82dc e88b9c 82dc 000082dc ad60 ad60 ad60 ad60 ad60 ad60 ad60
+2040 ad61 ad61 ad61 * 5344 * 8ea1d3c4,d3c4,8ea1d3c4v,d3c4v 82d4 e88b94 82d4 000082d4 ad61 ad61 ad61 ad61 ad61 ad61 ad61
+2041 ad62 ad62 ad62 * 5345 * 8ea1d3c5,d3c5,8ea1d3c5v,d3c5v 82d1 e88b91 82d1 000082d1 ad62 ad62 ad62 ad62 ad62 ad62 ad62
+2042 ad63 ad63 ad63 * 5346 * 8ea1d3c6,d3c6,8ea1d3c6v,d3c6v 82de e88b9e 82de 000082de ad63 ad63 ad63 ad63 ad63 ad63 ad63
+2043 ad64 ad64 ad64 * 5347 * 8ea1d3c7,d3c7,8ea1d3c7v,d3c7v 82d3 e88b93 82d3 000082d3 ad64 ad64 ad64 ad64 ad64 ad64 ad64
+2044 ad65 ad65 ad65 * 5348 * 8ea1d3c8,d3c8,8ea1d3c8v,d3c8v 82df e88b9f 82df 000082df ad65 ad65 ad65 ad65 ad65 ad65 ad65
+2045 ad66 ad66 ad66 * 5349 * 8ea1d3c9,d3c9,8ea1d3c9v,d3c9v 82ef e88baf 82ef 000082ef ad66 ad66 ad66 ad66 ad66 ad66 ad66
+2046 ad67 ad67 ad67 * 534a * 8ea1d3ca,d3ca,8ea1d3cav,d3cav 8306 e88c86 8306 00008306 ad67 ad67 ad67 ad67 ad67 ad67 ad67
+2047 ad68 ad68 ad68 * 534b * 8ea1d3cb,d3cb,8ea1d3cbv,d3cbv 8650 e89990 8650 00008650 ad68 ad68 ad68 ad68 ad68 ad68 ad68
+2048 ad69 ad69 ad69 * 534c * 8ea1d3cc,d3cc,8ea1d3ccv,d3ccv 8679 e899b9 8679 00008679 ad69 ad69 ad69 ad69 ad69 ad69 ad69
+2049 ad6a ad6a ad6a * 534d * 8ea1d3cd,d3cd,8ea1d3cdv,d3cdv 867b e899bb 867b 0000867b ad6a ad6a ad6a ad6a ad6a ad6a ad6a
+2050 ad6b ad6b ad6b * 534e * 8ea1d3ce,d3ce,8ea1d3cev,d3cev 867a e899ba 867a 0000867a ad6b ad6b ad6b ad6b ad6b ad6b ad6b
+2051 ad6c ad6c ad6c * 534f * 8ea1d3cf,d3cf,8ea1d3cfv,d3cfv 884d e8a18d 884d 0000884d ad6c ad6c ad6c ad6c ad6c ad6c ad6c
+2052 ad6d ad6d ad6d * 5350 * 8ea1d3d0,d3d0,8ea1d3d0v,d3d0v 886b e8a1ab 886b 0000886b ad6d ad6d ad6d ad6d ad6d ad6d ad6d
+2053 ad6e ad6e ad6e * 5351 * 8ea1d3d1,d3d1,8ea1d3d1v,d3d1v 8981 e8a681 8981 00008981 ad6e ad6e ad6e ad6e ad6e ad6e ad6e
+2054 ad6f ad6f ad6f * 5352 * 8ea1d3d2,d3d2,8ea1d3d2v,d3d2v 89d4 e8a794 89d4 000089d4 ad6f ad6f ad6f ad6f ad6f ad6f ad6f
+2055 ad70 ad70 ad70 * 5353 * 8ea1d3d3,d3d3,8ea1d3d3v,d3d3v 8a08 e8a888 8a08 00008a08 ad70 ad70 ad70 ad70 ad70 ad70 ad70
+2056 ad71 ad71 ad71 * 5354 * 8ea1d3d4,d3d4,8ea1d3d4v,d3d4v 8a02 e8a882 8a02 00008a02 ad71 ad71 ad71 ad71 ad71 ad71 ad71
+2057 ad72 ad72 ad72 * 5355 * 8ea1d3d5,d3d5,8ea1d3d5v,d3d5v 8a03 e8a883 8a03 00008a03 ad72 ad72 ad72 ad72 ad72 ad72 ad72
+2058 ad73 ad73 ad73 * 5356 * 8ea1d3d6,d3d6,8ea1d3d6v,d3d6v 8c9e e8b29e 8c9e 00008c9e ad73 ad73 ad73 ad73 ad73 ad73 ad73
+2059 ad74 ad74 ad74 * 5357 * 8ea1d3d7,d3d7,8ea1d3d7v,d3d7v 8ca0 e8b2a0 8ca0 00008ca0 ad74 ad74 ad74 ad74 ad74 ad74 ad74
+2060 ad75 ad75 ad75 * 5358 * 8ea1d3d8,d3d8,8ea1d3d8v,d3d8v 8d74 e8b5b4 8d74 00008d74 ad75 ad75 ad75 ad75 ad75 ad75 ad75
+2061 ad76 ad76 ad76 * 5359 * 8ea1d3d9,d3d9,8ea1d3d9v,d3d9v 8d73 e8b5b3 8d73 00008d73 ad76 ad76 ad76 ad76 ad76 ad76 ad76
+2062 ad77 ad77 ad77 * 535a * 8ea1d3da,d3da,8ea1d3dav,d3dav 8db4 e8b6b4 8db4 00008db4 ad77 ad77 ad77 ad77 ad77 ad77 ad77
+2063 ad78 ad78 ad78 * 535b * 8ea1d3db,d3db,8ea1d3dbv,d3dbv 8ecd e8bb8d 8ecd 00008ecd ad78 ad78 ad78 ad78 ad78 ad78 ad78
+2064 ad79 ad79 ad79 * 535c * 8ea1d3dc,d3dc,8ea1d3dcv,d3dcv 8ecc e8bb8c 8ecc 00008ecc ad79 ad79 ad79 ad79 ad79 ad79 ad79
+2065 ad7a ad7a ad7a * 535d * 8ea1d3dd,d3dd,8ea1d3ddv,d3ddv 8ff0 e8bfb0 8ff0 00008ff0 ad7a ad7a ad7a ad7a ad7a ad7a ad7a
+2066 ad7b ad7b ad7b * 535e * 8ea1d3de,d3de,8ea1d3dev,d3dev 8fe6 e8bfa6 8fe6 00008fe6 ad7b ad7b ad7b ad7b ad7b ad7b ad7b
+2067 ad7c ad7c ad7c * 535f * 8ea1d3df,d3df,8ea1d3dfv,d3dfv 8fe2 e8bfa2 8fe2 00008fe2 ad7c ad7c ad7c ad7c ad7c ad7c ad7c
+2068 ad7d ad7d ad7d * 5360 * 8ea1d3e0,d3e0,8ea1d3e0v,d3e0v 8fea e8bfaa 8fea 00008fea ad7d ad7d ad7d ad7d ad7d ad7d ad7d
+2069 ad7e ad7e ad7e * 5361 * 8ea1d3e1,d3e1,8ea1d3e1v,d3e1v 8fe5 e8bfa5 8fe5 00008fe5 ad7e ad7e ad7e ad7e ad7e ad7e ad7e
+2070 ada1 ada1 ada1 * 5362 * 8ea1d3e2,d3e2,8ea1d3e2v,d3e2v 8fed e8bfad 8fed 00008fed ada1 ada1 ada1 ada1 ada1 ada1 ada1
+2071 ada2 ada2 ada2 * 5363 * 8ea1d3e3,d3e3,8ea1d3e3v,d3e3v 8feb e8bfab 8feb 00008feb ada2 ada2 ada2 ada2 ada2 ada2 ada2
+2072 ada3 ada3 ada3 * 5364 * 8ea1d3e4,d3e4,8ea1d3e4v,d3e4v 8fe4 e8bfa4 8fe4 00008fe4 ada3 ada3 ada3 ada3 ada3 ada3 ada3
+2073 ada4 ada4 ada4 * 5365 * 8ea1d3e5,d3e5,8ea1d3e5v,d3e5v 8fe8 e8bfa8 8fe8 00008fe8 ada4 ada4 ada4 ada4 ada4 ada4 ada4
+2074 ada5 ada5 ada5 * 5366 * 8ea1d3e6,d3e6,8ea1d3e6v,d3e6v 90ca e9838a 90ca 000090ca ada5 ada5 ada5 ada5 ada5 ada5 ada5
+2075 ada6 ada6 ada6 * 5367 * 8ea1d3e7,d3e7,8ea1d3e7v,d3e7v 90ce e9838e 90ce 000090ce ada6 ada6 ada6 ada6 ada6 ada6 ada6
+2076 ada7 ada7 ada7 * 5368 * 8ea1d3e8,d3e8,8ea1d3e8v,d3e8v 90c1 e98381 90c1 000090c1 ada7 ada7 ada7 ada7 ada7 ada7 ada7
+2077 ada8 ada8 ada8 * 5369 * 8ea1d3e9,d3e9,8ea1d3e9v,d3e9v 90c3 e98383 90c3 000090c3 ada8 ada8 ada8 ada8 ada8 ada8 ada8
+2078 ada9 ada9 ada9 * 536a * 8ea1d3ea,d3ea,8ea1d3eav,d3eav 914b e9858b 914b 0000914b ada9 ada9 ada9 ada9 ada9 ada9 ada9
+2079 adaa adaa adaa * 536b * 8ea1d3eb,d3eb,8ea1d3ebv,d3ebv 914a e9858a 914a 0000914a adaa adaa adaa adaa adaa adaa adaa
+2080 adab adab adab * 536c * 8ea1d3ec,d3ec,8ea1d3ecv,d3ecv 91cd e9878d 91cd 000091cd adab adab adab adab adab adab adab
+2081 adac adac adac * 536d * 8ea1d3ed,d3ed,8ea1d3edv,d3edv 9582 e99682 9582 00009582 adac adac adac adac adac adac adac
+2082 adad adad adad * 536e * 8ea1d3ee,d3ee,8ea1d3eev,d3eev 9650 e99990 9650 00009650 adad adad adad adad adad adad adad
+2083 adae adae adae * 536f * 8ea1d3ef,d3ef,8ea1d3efv,d3efv 964b e9998b 964b 0000964b adae adae adae adae adae adae adae
+2084 adaf adaf adaf * 5370 * 8ea1d3f0,d3f0,8ea1d3f0v,d3f0v 964c e9998c 964c 0000964c adaf adaf adaf adaf adaf adaf adaf
+2085 adb0 adb0 adb0 * 5371 * 8ea1d3f1,d3f1,8ea1d3f1v,d3f1v 964d e9998d 964d 0000964d adb0 adb0 adb0 adb0 adb0 adb0 adb0
+2086 adb1 adb1 adb1 * 2871,5372 * 8ea1a8f1,8ea1d3f2,a8f1,d3f2,8ea1a8f1v,8ea1d3f2v,a8f1v,d3f2v 9762 e99da2,e2beaf 9762,2faf 00009762,00002faf adb1 adb1 adb1 adb1 adb1 adb1 adb1
+2087 adb2 adb2 adb2 * 2872,5373 * 8ea1a8f2,8ea1d3f3,a8f2,d3f3,8ea1a8f2v,8ea1d3f3v,a8f2v,d3f3v 9769 e99da9,e2beb0 9769,2fb0 00009769,00002fb0 adb2 adb2 adb2 adb2 adb2 adb2 adb2
+2088 adb3 adb3 adb3 * 2873,5374 * 8ea1a8f3,8ea1d3f4,a8f3,d3f4,8ea1a8f3v,8ea1d3f4v,a8f3v,d3f4v 97cb e99f8b,e2beb1 97cb,2fb1 000097cb,00002fb1 adb3 adb3 adb3 adb3 adb3 adb3 adb3
+2089 adb4 adb4 adb4 * 2874,5375 * 8ea1a8f4,8ea1d3f5,a8f4,d3f5,8ea1a8f4v,8ea1d3f5v,a8f4v,d3f5v 97ed e99fad,e2beb2 97ed,2fb2 000097ed,00002fb2 adb4 adb4 adb4 adb4 adb4 adb4 adb4
+2090 adb5 adb5 adb5 * 2875,5376 * 8ea1a8f5,8ea1d3f6,a8f5,d3f6,8ea1a8f5v,8ea1d3f6v,a8f5v,d3f6v 97f3 e99fb3,e2beb3 97f3,2fb3 000097f3,00002fb3 adb5 adb5 adb5 adb5 adb5 adb5 adb5
+2091 adb6 adb6 adb6 * 2876,5377 * 8ea1a8f6,8ea1d3f7,a8f6,d3f7,8ea1a8f6v,8ea1d3f7v,a8f6v,d3f7v 9801 e9a081,e2beb4 9801,2fb4 00009801,00002fb4 adb6 adb6 adb6 adb6 adb6 adb6 adb6
+2092 adb7 adb7 adb7 * 2877,5378 * 8ea1a8f7,8ea1d3f8,a8f7,d3f8,8ea1a8f7v,8ea1d3f8v,a8f7v,d3f8v 98a8 e9a2a8,e2beb5 98a8,2fb5 000098a8,00002fb5 adb7 adb7 adb7 adb7 adb7 adb7 adb7
+2093 adb8 adb8 adb8 * 2878,5379 * 8ea1a8f8,8ea1d3f9,a8f8,d3f9,8ea1a8f8v,8ea1d3f9v,a8f8v,d3f9v 98db e9a39b,e2beb6 98db,2fb6 000098db,00002fb6 adb8 adb8 adb8 adb8 adb8 adb8 adb8
+2094 adb9 adb9 adb9 * 2879,537a * 8ea1a8f9,8ea1d3fa,a8f9,d3fa,8ea1a8f9v,8ea1d3fav,a8f9v,d3fav 98df e9a39f,e2beb7 98df,2fb7 000098df,00002fb7 adb9 adb9 adb9 adb9 adb9 adb9 adb9
+2095 adba adba adba * 287a,537b * 8ea1a8fa,8ea1d3fb,a8fa,d3fb,8ea1a8fav,8ea1d3fbv,a8fav,d3fbv 9996 e9a696,e2beb8 9996,2fb8 00009996,00002fb8 adba adba adba adba adba adba adba
+2096 adbb adbb adbb * 287b,537c * 8ea1a8fb,8ea1d3fc,a8fb,d3fc,8ea1a8fbv,8ea1d3fcv,a8fbv,d3fcv 9999 e9a699,e2beb9 9999,2fb9 00009999,00002fb9 adbb adbb adbb adbb adbb adbb adbb
+2097 adbc adbc adbc * 537d * 8ea1d3fd,d3fd,8ea1d3fdv,d3fdv 4e58 e4b998 4e58 00004e58 adbc adbc adbc adbc adbc adbc adbc
+2098 adbd adbd adbd * 537e * 8ea1d3fe,d3fe,8ea1d3fev,d3fev 4eb3 e4bab3 4eb3 00004eb3 adbd adbd adbd adbd adbd adbd adbd
+2099 adbe adbe adbe * 5421 * 8ea1d4a1,d4a1,8ea1d4a1v,d4a1v 500c e5808c 500c 0000500c adbe adbe adbe adbe adbe adbe adbe
+2100 adbf adbf adbf * 5422 * 8ea1d4a2,d4a2,8ea1d4a2v,d4a2v 500d e5808d 500d 0000500d adbf adbf adbf adbf adbf adbf adbf
+2101 adc0 adc0 adc0 * 5423 * 8ea1d4a3,d4a3,8ea1d4a3v,d4a3v 5023 e580a3 5023 00005023 adc0 adc0 adc0 adc0 adc0 adc0 adc0
+2102 adc1 adc1 adc1 * 5424 * 8ea1d4a4,d4a4,8ea1d4a4v,d4a4v 4fef e4bfaf 4fef 00004fef adc1 adc1 adc1 adc1 adc1 adc1 adc1
+2103 adc2 adc2 adc2 * 5425 * 8ea1d4a5,d4a5,8ea1d4a5v,d4a5v 5026 e580a6 5026 00005026 adc2 adc2 adc2 adc2 adc2 adc2 adc2
+2104 adc3 adc3 adc3 * 5426 * 8ea1d4a6,d4a6,8ea1d4a6v,d4a6v 5025 e580a5 5025 00005025 adc3 adc3 adc3 adc3 adc3 adc3 adc3
+2105 adc4 adc4 adc4 * 5427 * 8ea1d4a7,d4a7,8ea1d4a7v,d4a7v 4ff8 e4bfb8 4ff8 00004ff8 adc4 adc4 adc4 adc4 adc4 adc4 adc4
+2106 adc5 adc5 adc5 * 5428 * 8ea1d4a8,d4a8,8ea1d4a8v,d4a8v 5029 e580a9,ee809f 5029,e01f 00005029,0000e01f fa5f,adc5 adc5 adc5 adc5 adc5 adc5 fa5f,adc5
+2107 adc6 adc6 adc6 * 5429 * 8ea1d4a9,d4a9,8ea1d4a9v,d4a9v 5016 e58096 5016 00005016 adc6 adc6 adc6 adc6 adc6 adc6 adc6
+2108 adc7 adc7 adc7 * 542a * 8ea1d4aa,d4aa,8ea1d4aav,d4aav 5006 e58086 5006 00005006 adc7 adc7 adc7 adc7 adc7 adc7 adc7
+2109 adc8 adc8 adc8 * 542b * 8ea1d4ab,d4ab,8ea1d4abv,d4abv 503c e580bc 503c 0000503c adc8 adc8 adc8 adc8 adc8 adc8 adc8
+2110 adc9 adc9 adc9 * 542c * 8ea1d4ac,d4ac,8ea1d4acv,d4acv 501f e5809f 501f 0000501f adc9 adc9 adc9 adc9 adc9 adc9 adc9
+2111 adca adca adca * 542d * 8ea1d4ad,d4ad,8ea1d4adv,d4adv 501a e5809a 501a 0000501a adca adca adca adca adca adca adca
+2112 adcb adcb adcb * 542e * 8ea1d4ae,d4ae,8ea1d4aev,d4aev 5012 e58092 5012 00005012 adcb adcb adcb adcb adcb adcb adcb
+2113 adcc adcc adcc * 542f * 8ea1d4af,d4af,8ea1d4afv,d4afv 5011 e58091 5011 00005011 adcc adcc adcc adcc adcc adcc adcc
+2114 adcd adcd adcd * 5430 * 8ea1d4b0,d4b0,8ea1d4b0v,d4b0v 4ffa e4bfba 4ffa 00004ffa adcd adcd adcd adcd adcd adcd adcd
+2115 adce adce adce * 5431 * 8ea1d4b1,d4b1,8ea1d4b1v,d4b1v 5000 e58080 5000 00005000 adce adce adce adce adce adce adce
+2116 adcf adcf adcf * 5432 * 8ea1d4b2,d4b2,8ea1d4b2v,d4b2v 5014 e58094 5014 00005014 adcf adcf adcf adcf adcf adcf adcf
+2117 add0 add0 add0 * 5433 * 8ea1d4b3,d4b3,8ea1d4b3v,d4b3v 5028 e580a8 5028 00005028 add0 add0 add0 add0 add0 add0 add0
+2118 add1 add1 add1 * 5434 * 8ea1d4b4,d4b4,8ea1d4b4v,d4b4v 4ff1 e4bfb1 4ff1 00004ff1 add1 add1 add1 add1 add1 add1 add1
+2119 add2 add2 add2 * 5435 * 8ea1d4b5,d4b5,8ea1d4b5v,d4b5v 5021 e580a1 5021 00005021 add2 add2 add2 add2 add2 add2 add2
+2120 add3 add3 add3 * 5436 * 8ea1d4b6,d4b6,8ea1d4b6v,d4b6v 500b e5808b 500b 0000500b add3 add3 add3 add3 add3 add3 add3
+2121 add4 add4 add4 * 5437 * 8ea1d4b7,d4b7,8ea1d4b7v,d4b7v 5019 e58099 5019 00005019 add4 add4 add4 add4 add4 add4 add4
+2122 add5 add5 add5 * 5438 * 8ea1d4b8,d4b8,8ea1d4b8v,d4b8v 5018 e58098 5018 00005018 add5 add5 add5 add5 add5 add5 add5
+2123 add6 add6 add6 * 5439 * 8ea1d4b9,d4b9,8ea1d4b9v,d4b9v 4ff3 e4bfb3 4ff3 00004ff3 add6 add6 add6 add6 add6 add6 add6
+2124 add7 add7 add7 * 543a * 8ea1d4ba,d4ba,8ea1d4bav,d4bav 4fee e4bfae 4fee 00004fee add7 add7 add7 add7 add7 add7 add7
+2125 add8 add8 add8 * 543b * 8ea1d4bb,d4bb,8ea1d4bbv,d4bbv 502d e580ad 502d 0000502d add8 add8 add8 add8 add8 add8 add8
+2126 add9 add9 add9 * 543c * 8ea1d4bc,d4bc,8ea1d4bcv,d4bcv 502a e580aa 502a 0000502a add9 add9 add9 add9 add9 add9 add9
+2127 adda adda adda * 543d * 8ea1d4bd,d4bd,8ea1d4bdv,d4bdv 4ffe e4bfbe 4ffe 00004ffe adda adda adda adda adda adda adda
+2128 addb addb addb * 543e * 8ea1d4be,d4be,8ea1d4bev,d4bev 502b e580ab 502b 0000502b addb addb addb addb addb addb addb
+2129 addc addc addc * 543f * 8ea1d4bf,d4bf,8ea1d4bfv,d4bfv 5009 e58089 5009 00005009 addc addc addc addc addc addc addc
+2130 addd addd addd * 5440 * 8ea1d4c0,d4c0,8ea1d4c0v,d4c0v 517c e585bc 517c 0000517c addd addd addd addd addd addd addd
+2131 adde adde adde * 5441 * 8ea1d4c1,d4c1,8ea1d4c1v,d4c1v 51a4 e586a4 51a4 000051a4 adde adde adde adde adde adde adde
+2132 addf addf addf * 5442 * 8ea1d4c2,d4c2,8ea1d4c2v,d4c2v 51a5 e586a5 51a5 000051a5 addf addf addf addf addf addf addf
+2133 ade0 ade0 ade0 * 5443 * 8ea1d4c3,d4c3,8ea1d4c3v,d4c3v 51a2 e586a2 51a2 000051a2 ade0 ade0 ade0 ade0 ade0 ade0 ade0
+2134 ade1 ade1 ade1 * 5444 * 8ea1d4c4,d4c4,8ea1d4c4v,d4c4v 51cd e5878d 51cd 000051cd ade1 ade1 ade1 ade1 ade1 ade1 ade1
+2135 ade2 ade2 ade2 * 5445 * 8ea1d4c5,d4c5,8ea1d4c5v,d4c5v 51cc e5878c 51cc 000051cc ade2 ade2 ade2 ade2 ade2 ade2 ade2
+2136 ade3 ade3 ade3 * 5446 * 8ea1d4c6,d4c6,8ea1d4c6v,d4c6v 51c6 e58786 51c6 000051c6 ade3 ade3 ade3 ade3 ade3 ade3 ade3
+2137 ade4 ade4 ade4 * 5447 * 8ea1d4c7,d4c7,8ea1d4c7v,d4c7v 51cb e5878b 51cb 000051cb ade4 ade4 ade4 ade4 ade4 ade4 ade4
+2138 ade5 ade5 ade5 * 5448 * 8ea1d4c8,d4c8,8ea1d4c8v,d4c8v 5256 e58996 5256 00005256 ade5 ade5 ade5 ade5 ade5 ade5 ade5
+2139 ade6 ade6 ade6 * 5449 * 8ea1d4c9,d4c9,8ea1d4c9v,d4c9v 525c e5899c 525c 0000525c ade6 ade6 ade6 ade6 ade6 ade6 ade6
+2140 ade7 ade7 ade7 * 544a * 8ea1d4ca,d4ca,8ea1d4cav,d4cav 5254 e58994 5254 00005254 ade7 ade7 ade7 ade7 ade7 ade7 ade7
+2141 ade8 ade8 ade8 * 544b * 8ea1d4cb,d4cb,8ea1d4cbv,d4cbv 525b e5899b 525b 0000525b ade8 ade8 ade8 ade8 ade8 ade8 ade8
+2142 ade9 ade9 ade9 * 544c * 8ea1d4cc,d4cc,8ea1d4ccv,d4ccv 525d e5899d 525d 0000525d ade9 ade9 ade9 ade9 ade9 ade9 ade9
+2143 adea adea adea * 544d * 8ea1d4cd,d4cd,8ea1d4cdv,d4cdv 532a e58caa 532a 0000532a adea adea adea adea adea adea adea
+2144 adeb adeb adeb * 544e * 8ea1d4ce,d4ce,8ea1d4cev,d4cev 537f e58dbf,ee81b3 537f,e073 0000537f,0000e073 fad5,adeb adeb adeb adeb adeb adeb fad5,adeb
+2145 adec adec adec * 544f * 8ea1d4cf,d4cf,8ea1d4cfv,d4cfv 539f e58e9f 539f 0000539f adec adec adec adec adec adec adec
+2146 aded aded aded * 5450 * 8ea1d4d0,d4d0,8ea1d4d0v,d4d0v 539d e58e9d 539d 0000539d aded aded aded aded aded aded aded
+2147 adee adee adee * 5451 * 8ea1d4d1,d4d1,8ea1d4d1v,d4d1v 53df e58f9f 53df 000053df adee adee adee adee adee adee adee
+2148 adef adef adef * 5452 * 8ea1d4d2,d4d2,8ea1d4d2v,d4d2v 54e8 e593a8 54e8 000054e8 adef adef adef adef adef adef adef
+2149 adf0 adf0 adf0 * 5453 * 8ea1d4d3,d4d3,8ea1d4d3v,d4d3v 5510 e59490 5510 00005510 adf0 adf0 adf0 adf0 adf0 adf0 adf0
+2150 adf1 adf1 adf1 * 5454 * 8ea1d4d4,d4d4,8ea1d4d4v,d4d4v 5501 e59481 5501 00005501 adf1 adf1 adf1 adf1 adf1 adf1 adf1
+2151 adf2 adf2 adf2 * 5455 * 8ea1d4d5,d4d5,8ea1d4d5v,d4d5v 5537 e594b7 5537 00005537 adf2 adf2 adf2 adf2 adf2 adf2 adf2
+2152 adf3 adf3 adf3 * 5456 * 8ea1d4d6,d4d6,8ea1d4d6v,d4d6v 54fc e593bc 54fc 000054fc adf3 adf3 adf3 adf3 adf3 adf3 adf3
+2153 adf4 adf4 adf4 * 5457 * 8ea1d4d7,d4d7,8ea1d4d7v,d4d7v 54e5 e593a5 54e5 000054e5 adf4 adf4 adf4 adf4 adf4 adf4 adf4
+2154 adf5 adf5 adf5 * 5458 * 8ea1d4d8,d4d8,8ea1d4d8v,d4d8v 54f2 e593b2 54f2 000054f2 adf5 adf5 adf5 adf5 adf5 adf5 adf5
+2155 adf6 adf6 adf6 * 5459 * 8ea1d4d9,d4d9,8ea1d4d9v,d4d9v 5506 e59486 5506 00005506 adf6 adf6 adf6 adf6 adf6 adf6 adf6
+2156 adf7 adf7 adf7 * 545a * 8ea1d4da,d4da,8ea1d4dav,d4dav 54fa e593ba 54fa 000054fa adf7 adf7 adf7 adf7 adf7 adf7 adf7
+2157 adf8 adf8 adf8 * 545b * 8ea1d4db,d4db,8ea1d4dbv,d4dbv 5514 e59494 5514 00005514 adf8 adf8 adf8 adf8 adf8 adf8 adf8
+2158 adf9 adf9 adf9 * 545c * 8ea1d4dc,d4dc,8ea1d4dcv,d4dcv 54e9 e593a9 54e9 000054e9 adf9 adf9 adf9 adf9 adf9 adf9 adf9
+2159 adfa adfa adfa * 545d * 8ea1d4dd,d4dd,8ea1d4ddv,d4ddv 54ed e593ad 54ed 000054ed adfa adfa adfa adfa adfa adfa adfa
+2160 adfb adfb adfb * 545e * 8ea1d4de,d4de,8ea1d4dev,d4dev 54e1 e593a1 54e1 000054e1 adfb adfb adfb adfb adfb adfb adfb
+2161 adfc adfc adfc * 545f * 8ea1d4df,d4df,8ea1d4dfv,d4dfv 5509 e59489 5509 00005509 adfc adfc,fbd3 9062,adfc adfc adfc adfc adfc
+2162 adfd adfd adfd * 5460 * 8ea1d4e0,d4e0,8ea1d4e0v,d4e0v 54ee e593ae 54ee 000054ee adfd adfd adfd adfd adfd adfd adfd
+2163 adfe adfe adfe * 5461 * 8ea1d4e1,d4e1,8ea1d4e1v,d4e1v 54ea e593aa 54ea 000054ea adfe adfe adfe adfe adfe adfe adfe
+2164 ae40 ae40 ae40 * 5462 * 8ea1d4e2,d4e2,8ea1d4e2v,d4e2v 54e6 e593a6 54e6 000054e6 ae40 ae40 ae40 ae40 ae40 ae40 ae40
+2165 ae41 ae41 ae41 * 5463 * 8ea1d4e3,d4e3,8ea1d4e3v,d4e3v 5527 e594a7 5527 00005527 ae41 ae41 ae41 ae41 ae41 ae41 ae41
+2166 ae42 ae42 ae42 * 5464 * 8ea1d4e4,d4e4,8ea1d4e4v,d4e4v 5507 e59487 5507 00005507 ae42 ae42 ae42 ae42 ae42 ae42 ae42
+2167 ae43 ae43 ae43 * 5465 * 8ea1d4e5,d4e5,8ea1d4e5v,d4e5v 54fd e593bd 54fd 000054fd ae43 ae43 ae43 ae43 ae43 ae43 ae43
+2168 ae44 ae44 ae44 * 5466 * 8ea1d4e6,d4e6,8ea1d4e6v,d4e6v 550f e5948f 550f 0000550f ae44 ae44 ae44 ae44 ae44 ae44 ae44
+2169 ae45 ae45 ae45 * 5467 * 8ea1d4e7,d4e7,8ea1d4e7v,d4e7v 5703 e59c83 5703 00005703 ae45 ae45 ae45 ae45 ae45 ae45 ae45
+2170 ae46 ae46 ae46 * 5468 * 8ea1d4e8,d4e8,8ea1d4e8v,d4e8v 5704 e59c84 5704 00005704 ae46 ae46 ae46 ae46 ae46 ae46 ae46
+2171 ae47 ae47 ae47 * 5469 * 8ea1d4e9,d4e9,8ea1d4e9v,d4e9v 57c2 e59f82 57c2 000057c2 ae47 ae47 ae47 ae47 ae47 ae47 ae47
+2172 ae48 ae48 ae48 * 546a * 8ea1d4ea,d4ea,8ea1d4eav,d4eav 57d4 e59f94 57d4 000057d4 ae48 ae48 ae48 ae48 ae48 ae48 ae48
+2173 ae49 ae49 ae49 * 546b * 8ea1d4eb,d4eb,8ea1d4ebv,d4ebv 57cb e59f8b 57cb 000057cb ae49 ae49 ae49 ae49 ae49 ae49 ae49
+2174 ae4a ae4a ae4a * 546c * 8ea1d4ec,d4ec,8ea1d4ecv,d4ecv 57c3 e59f83 57c3 000057c3 ae4a ae4a ae4a ae4a ae4a ae4a ae4a
+2175 ae4b ae4b ae4b * 546d * 8ea1d4ed,d4ed,8ea1d4edv,d4edv 5809 e5a089 5809 00005809 ae4b ae4b ae4b ae4b ae4b ae4b ae4b
+2176 ae4c ae4c ae4c * 546e * 8ea1d4ee,d4ee,8ea1d4eev,d4eev 590f e5a48f 590f 0000590f ae4c ae4c ae4c ae4c ae4c ae4c ae4c
+2177 ae4d ae4d ae4d * 546f * 8ea1d4ef,d4ef,8ea1d4efv,d4efv 5957 e5a597 5957 00005957 ae4d ae4d ae4d ae4d ae4d ae4d ae4d
+2178 ae4e ae4e ae4e * 5470 * 8ea1d4f0,d4f0,8ea1d4f0v,d4f0v 5958 e5a598 5958 00005958 ae4e ae4e ae4e ae4e ae4e ae4e ae4e
+2179 ae4f ae4f ae4f * 5471 * 8ea1d4f1,d4f1,8ea1d4f1v,d4f1v 595a e5a59a 595a 0000595a ae4f ae4f ae4f ae4f ae4f ae4f ae4f
+2180 ae50 ae50 ae50 * 5472 * 8ea1d4f2,d4f2,8ea1d4f2v,d4f2v 5a11 e5a891 5a11 00005a11 ae50 ae50 ae50 ae50 ae50 ae50 ae50
+2181 ae51 ae51 ae51 * 5473 * 8ea1d4f3,d4f3,8ea1d4f3v,d4f3v 5a18 e5a898 5a18 00005a18 ae51 ae51 ae51 ae51 ae51 ae51 ae51
+2182 ae52 ae52 ae52 * 5474 * 8ea1d4f4,d4f4,8ea1d4f4v,d4f4v 5a1c e5a89c 5a1c 00005a1c ae52 ae52 ae52 ae52 ae52 ae52 ae52
+2183 ae53 ae53 ae53 * 5475 * 8ea1d4f5,d4f5,8ea1d4f5v,d4f5v 5a1f e5a89f 5a1f 00005a1f ae53 ae53 ae53 ae53 ae53 ae53 ae53
+2184 ae54 ae54 ae54 * 5476 * 8ea1d4f6,d4f6,8ea1d4f6v,d4f6v 5a1b e5a89b 5a1b 00005a1b ae54 ae54 ae54 ae54 ae54 ae54 ae54
+2185 ae55 ae55 ae55 * 5477 * 8ea1d4f7,d4f7,8ea1d4f7v,d4f7v 5a13 e5a893 5a13 00005a13 ae55 ae55 ae55 ae55 ae55 ae55 ae55
+2186 ae56 ae56 ae56 * 5478 * 8ea1d4f8,d4f8,8ea1d4f8v,d4f8v 59ec e5a7ac 59ec 000059ec ae56 ae56 ae56 ae56 ae56 ae56 ae56
+2187 ae57 ae57 ae57 * 5479 * 8ea1d4f9,d4f9,8ea1d4f9v,d4f9v 5a20 e5a8a0 5a20 00005a20 ae57 ae57 ae57 ae57 ae57 ae57 ae57
+2188 ae58 ae58 ae58 * 547a * 8ea1d4fa,d4fa,8ea1d4fav,d4fav 5a23 e5a8a3 5a23 00005a23 ae58 ae58 ae58 ae58 ae58 ae58 ae58
+2189 ae59 ae59 ae59 * 547b * 8ea1d4fb,d4fb,8ea1d4fbv,d4fbv 5a29 e5a8a9 5a29 00005a29 ae59 ae59 ae59 ae59 ae59 ae59 ae59
+2190 ae5a ae5a ae5a * 547c * 8ea1d4fc,d4fc,8ea1d4fcv,d4fcv 5a25 e5a8a5 5a25 00005a25 ae5a ae5a ae5a ae5a ae5a ae5a ae5a
+2191 ae5b ae5b ae5b * 547d * 8ea1d4fd,d4fd,8ea1d4fdv,d4fdv 5a0c e5a88c 5a0c 00005a0c ae5b ae5b ae5b ae5b ae5b ae5b ae5b
+2192 ae5c ae5c ae5c * 547e * 8ea1d4fe,d4fe,8ea1d4fev,d4fev 5a09 e5a889 5a09 00005a09 ae5c ae5c ae5c ae5c ae5c ae5c ae5c
+2193 ae5d ae5d ae5d * 5521 * 8ea1d5a1,d5a1,8ea1d5a1v,d5a1v 5b6b e5adab 5b6b 00005b6b ae5d ae5d ae5d ae5d ae5d ae5d ae5d
+2194 ae5e ae5e ae5e * 5522 * 8ea1d5a2,d5a2,8ea1d5a2v,d5a2v 5c58 e5b198 5c58 00005c58 ae5e ae5e ae5e ae5e ae5e ae5e ae5e
+2195 ae5f ae5f ae5f * 5523 * 8ea1d5a3,d5a3,8ea1d5a3v,d5a3v 5bb0 e5aeb0 5bb0 00005bb0 ae5f ae5f ae5f ae5f ae5f ae5f ae5f
+2196 ae60 ae60 ae60 * 5524 * 8ea1d5a4,d5a4,8ea1d5a4v,d5a4v 5bb3 e5aeb3 5bb3 00005bb3 ae60 ae60 ae60 ae60 ae60 ae60 ae60
+2197 ae61 ae61 ae61 * 5525 * 8ea1d5a5,d5a5,8ea1d5a5v,d5a5v 5bb6 e5aeb6 5bb6 00005bb6 ae61 ae61 ae61 ae61 ae61 ae61 ae61
+2198 ae62 ae62 ae62 * 5526 * 8ea1d5a6,d5a6,8ea1d5a6v,d5a6v 5bb4 e5aeb4 5bb4 00005bb4 ae62 ae62 ae62 ae62 ae62 ae62 ae62
+2199 ae63 ae63 ae63 * 5527 * 8ea1d5a7,d5a7,8ea1d5a7v,d5a7v 5bae e5aeae 5bae 00005bae ae63 ae63 ae63 ae63 ae63 ae63 ae63
+2200 ae64 ae64 ae64 * 5528 * 8ea1d5a8,d5a8,8ea1d5a8v,d5a8v 5bb5 e5aeb5 5bb5 00005bb5 ae64 ae64 ae64 ae64 ae64 ae64 ae64
+2201 ae65 ae65 ae65 * 5529 * 8ea1d5a9,d5a9,8ea1d5a9v,d5a9v 5bb9 e5aeb9 5bb9 00005bb9 ae65 ae65 ae65 ae65 ae65 ae65 ae65
+2202 ae66 ae66 ae66 * 552a * 8ea1d5aa,d5aa,8ea1d5aav,d5aav 5bb8 e5aeb8 5bb8 00005bb8 ae66 ae66 ae66 ae66 ae66 ae66 ae66
+2203 ae67 ae67 ae67 * 552b * 8ea1d5ab,d5ab,8ea1d5abv,d5abv 5c04 e5b084 5c04 00005c04 ae67 ae67 ae67 ae67 ae67 ae67 ae67
+2204 ae68 ae68 ae68 * 552c * 8ea1d5ac,d5ac,8ea1d5acv,d5acv 5c51 e5b191 5c51 00005c51 ae68 ae68 ae68 ae68 ae68 ae68 ae68
+2205 ae69 ae69 ae69 * 552d * 8ea1d5ad,d5ad,8ea1d5adv,d5adv 5c55 e5b195 5c55 00005c55 ae69 ae69 ae69 ae69 ae69 ae69 ae69
+2206 ae6a ae6a ae6a * 552e * 8ea1d5ae,d5ae,8ea1d5aev,d5aev 5c50 e5b190 5c50 00005c50 ae6a ae6a ae6a ae6a ae6a ae6a ae6a
+2207 ae6b ae6b ae6b * 552f * 8ea1d5af,d5af,8ea1d5afv,d5afv 5ced e5b3ad 5ced 00005ced ae6b ae6b ae6b ae6b ae6b ae6b ae6b
+2208 ae6c ae6c ae6c * 5530 * 8ea1d5b0,d5b0,8ea1d5b0v,d5b0v 5cfd e5b3bd 5cfd 00005cfd ae6c ae6c ae6c ae6c ae6c ae6c ae6c
+2209 ae6d ae6d ae6d * 5531 * 8ea1d5b1,d5b1,8ea1d5b1v,d5b1v 5cfb e5b3bb 5cfb 00005cfb ae6d ae6d ae6d ae6d ae6d ae6d ae6d
+2210 ae6e ae6e ae6e * 5532 * 8ea1d5b2,d5b2,8ea1d5b2v,d5b2v 5cea e5b3aa 5cea 00005cea ae6e ae6e ae6e ae6e ae6e ae6e ae6e
+2211 ae6f ae6f ae6f * 5533 * 8ea1d5b3,d5b3,8ea1d5b3v,d5b3v 5ce8 e5b3a8 5ce8 00005ce8 ae6f ae6f ae6f ae6f ae6f ae6f ae6f
+2212 ae70 ae70 ae70 * 5534 * 8ea1d5b4,d5b4,8ea1d5b4v,d5b4v 5cf0 e5b3b0 5cf0 00005cf0 ae70 ae70 ae70 ae70 ae70 ae70 ae70
+2213 ae71 ae71 ae71 * 5535 * 8ea1d5b5,d5b5,8ea1d5b5v,d5b5v 5cf6 e5b3b6 5cf6 00005cf6 ae71 ae71 ae71 ae71 ae71 ae71 ae71
+2214 ae72 ae72 ae72 * 5536 * 8ea1d5b6,d5b6,8ea1d5b6v,d5b6v 5d01 e5b481 5d01 00005d01 ae72 ae72 ae72 ae72 ae72 ae72 ae72
+2215 ae73 ae73 ae73 * 5537 * 8ea1d5b7,d5b7,8ea1d5b7v,d5b7v 5cf4 e5b3b4 5cf4 00005cf4 ae73 ae73 ae73 ae73 ae73 ae73 ae73
+2216 ae74 ae74 ae74 * 5538 * 8ea1d5b8,d5b8,8ea1d5b8v,d5b8v 5dee e5b7ae 5dee 00005dee ae74 ae74 ae74 ae74 ae74 ae74 ae74
+2217 ae75 ae75 ae75 * 5539 * 8ea1d5b9,d5b9,8ea1d5b9v,d5b9v 5e2d e5b8ad 5e2d 00005e2d ae75 ae75 ae75 ae75 ae75 ae75 ae75
+2218 ae76 ae76 ae76 * 553a * 8ea1d5ba,d5ba,8ea1d5bav,d5bav 5e2b e5b8ab 5e2b 00005e2b ae76 ae76 ae76 ae76 ae76 ae76 ae76
+2219 ae77 ae77 ae77 * 553b * 8ea1d5bb,d5bb,8ea1d5bbv,d5bbv 5eab e5baab 5eab 00005eab ae77 ae77 ae77 ae77 ae77 ae77 ae77
+2220 ae78 ae78 ae78 * 553c * 8ea1d5bc,d5bc,8ea1d5bcv,d5bcv 5ead e5baad 5ead 00005ead ae78 ae78 ae78 ae78 ae78 ae78 ae78
+2221 ae79 ae79 ae79 * 553d * 8ea1d5bd,d5bd,8ea1d5bdv,d5bdv 5ea7 e5baa7 5ea7 00005ea7 ae79 ae79 ae79 ae79 ae79 ae79 ae79
+2222 ae7a ae7a ae7a * 553e * 8ea1d5be,d5be,8ea1d5bev,d5bev 5f31 e5bcb1 5f31 00005f31 ae7a ae7a ae7a ae7a ae7a ae7a ae7a
+2223 ae7b ae7b ae7b * 553f * 8ea1d5bf,d5bf,8ea1d5bfv,d5bfv 5f92 e5be92 5f92 00005f92 ae7b ae7b ae7b ae7b ae7b ae7b ae7b
+2224 ae7c ae7c ae7c * 5540 * 8ea1d5c0,d5c0,8ea1d5c0v,d5c0v 5f91 e5be91 5f91 00005f91 ae7c ae7c ae7c ae7c ae7c ae7c ae7c
+2225 ae7d ae7d ae7d * 5541 * 8ea1d5c1,d5c1,8ea1d5c1v,d5c1v 5f90 e5be90 5f90 00005f90 ae7d ae7d ae7d ae7d ae7d ae7d ae7d
+2226 ae7e ae7e ae7e * 5542 * 8ea1d5c2,d5c2,8ea1d5c2v,d5c2v 6059 e68199 6059 00006059 ae7e ae7e ae7e ae7e ae7e ae7e ae7e
+2227 aea1 aea1 aea1 * 5543 * 8ea1d5c3,d5c3,8ea1d5c3v,d5c3v 6063 e681a3 6063 00006063 aea1 aea1 aea1 aea1 aea1 aea1 aea1
+2228 aea2 aea2 aea2 * 5544 * 8ea1d5c4,d5c4,8ea1d5c4v,d5c4v 6065 e681a5 6065 00006065 aea2 aea2 aea2 aea2 aea2 aea2 aea2
+2229 aea3 aea3 aea3 * 5545 * 8ea1d5c5,d5c5,8ea1d5c5v,d5c5v 6050 e68190 6050 00006050 aea3 aea3 aea3 aea3 aea3 aea3 aea3
+2230 aea4 aea4 aea4 * 5546 * 8ea1d5c6,d5c6,8ea1d5c6v,d5c6v 6055 e68195 6055 00006055 aea4 aea4 aea4 aea4 aea4 aea4 aea4
+2231 aea5 aea5 aea5 * 5547 * 8ea1d5c7,d5c7,8ea1d5c7v,d5c7v 606d e681ad 606d 0000606d aea5 aea5 aea5 aea5 aea5 aea5 aea5
+2232 aea6 aea6 aea6 * 5548 * 8ea1d5c8,d5c8,8ea1d5c8v,d5c8v 6069 e681a9 6069 00006069 aea6 aea6 aea6 aea6 aea6 aea6 aea6
+2233 aea7 aea7 aea7 * 5549 * 8ea1d5c9,d5c9,8ea1d5c9v,d5c9v 606f e681af 606f 0000606f aea7 aea7 aea7 aea7 aea7 aea7 aea7
+2234 aea8 aea8 aea8 * 554a * 8ea1d5ca,d5ca,8ea1d5cav,d5cav 6084 e68284 6084 00006084 aea8 aea8 aea8 aea8 aea8 aea8 aea8
+2235 aea9 aea9 aea9 * 554b * 8ea1d5cb,d5cb,8ea1d5cbv,d5cbv 609f e6829f 609f 0000609f aea9 aea9 aea9 aea9 aea9 aea9 aea9
+2236 aeaa aeaa aeaa * 554c * 8ea1d5cc,d5cc,8ea1d5ccv,d5ccv 609a e6829a 609a 0000609a aeaa aeaa aeaa aeaa aeaa aeaa aeaa
+2237 aeab aeab aeab * 554d * 8ea1d5cd,d5cd,8ea1d5cdv,d5cdv 608d e6828d 608d 0000608d aeab aeab aeab aeab aeab aeab aeab
+2238 aeac aeac aeac * 554e * 8ea1d5ce,d5ce,8ea1d5cev,d5cev 6094 e68294 6094 00006094 aeac aeac aeac aeac aeac aeac aeac
+2239 aead aead aead * 554f * 8ea1d5cf,d5cf,8ea1d5cfv,d5cfv 608c e6828c 608c 0000608c aead aead aead aead aead aead aead
+2240 aeae aeae aeae * 5550 * 8ea1d5d0,d5d0,8ea1d5d0v,d5d0v 6085 e68285 6085 00006085 aeae aeae aeae aeae aeae aeae aeae
+2241 aeaf aeaf aeaf * 5551 * 8ea1d5d1,d5d1,8ea1d5d1v,d5d1v 6096 e68296 6096 00006096 aeaf aeaf aeaf aeaf aeaf aeaf aeaf
+2242 aeb0 aeb0 aeb0 * 5552 * 8ea1d5d2,d5d2,8ea1d5d2v,d5d2v 6247 e68987 6247 00006247 aeb0 aeb0 aeb0 aeb0 aeb0 aeb0 aeb0
+2243 aeb1 aeb1 aeb1 * 5553 * 8ea1d5d3,d5d3,8ea1d5d3v,d5d3v 62f3 e68bb3 62f3 000062f3 aeb1 aeb1 aeb1 aeb1 aeb1 aeb1 aeb1
+2244 aeb2 aeb2 aeb2 * 5554 * 8ea1d5d4,d5d4,8ea1d5d4v,d5d4v 6308 e68c88 6308 00006308 aeb2 aeb2 aeb2 aeb2 aeb2 aeb2 aeb2
+2245 aeb3 aeb3 aeb3 * 5555 * 8ea1d5d5,d5d5,8ea1d5d5v,d5d5v 62ff e68bbf 62ff 000062ff aeb3 aeb3 aeb3 aeb3 aeb3 aeb3 aeb3
+2246 aeb4 aeb4 aeb4 * 5556 * 8ea1d5d6,d5d6,8ea1d5d6v,d5d6v 634e e68d8e 634e 0000634e aeb4 aeb4 aeb4 aeb4 aeb4 aeb4 aeb4
+2247 aeb5 aeb5 aeb5 * 5557 * 8ea1d5d7,d5d7,8ea1d5d7v,d5d7v 633e e68cbe 633e 0000633e aeb5 aeb5 aeb5 aeb5 aeb5 aeb5 aeb5
+2248 aeb6 aeb6 aeb6 * 5558 * 8ea1d5d8,d5d8,8ea1d5d8v,d5d8v 632f e68caf 632f 0000632f aeb6 aeb6 aeb6 aeb6 aeb6 aeb6 aeb6
+2249 aeb7 aeb7 aeb7 * 5559 * 8ea1d5d9,d5d9,8ea1d5d9v,d5d9v 6355 e68d95 6355 00006355 aeb7 aeb7 aeb7 aeb7 aeb7 aeb7 aeb7
+2250 aeb8 aeb8 aeb8 * 555a * 8ea1d5da,d5da,8ea1d5dav,d5dav 6342 e68d82 6342 00006342 aeb8 aeb8 aeb8 aeb8 aeb8 aeb8 aeb8
+2251 aeb9 aeb9 aeb9 * 555b * 8ea1d5db,d5db,8ea1d5dbv,d5dbv 6346 e68d86 6346 00006346 aeb9 aeb9 aeb9 aeb9 aeb9 aeb9 aeb9
+2252 aeba aeba aeba * 555c * 8ea1d5dc,d5dc,8ea1d5dcv,d5dcv 634f e68d8f 634f 0000634f aeba aeba aeba aeba aeba aeba aeba
+2253 aebb aebb aebb * 555d * 8ea1d5dd,d5dd,8ea1d5ddv,d5ddv 6349 e68d89 6349 00006349 aebb aebb aebb aebb aebb aebb aebb
+2254 aebc aebc aebc * 555e * 8ea1d5de,d5de,8ea1d5dev,d5dev 633a e68cba 633a 0000633a aebc aebc aebc aebc aebc aebc aebc
+2255 aebd aebd aebd * 555f * 8ea1d5df,d5df,8ea1d5dfv,d5dfv 6350 e68d90 6350 00006350 aebd aebd aebd aebd aebd aebd aebd
+2256 aebe aebe aebe * 5560 * 8ea1d5e0,d5e0,8ea1d5e0v,d5e0v 633d e68cbd 633d 0000633d aebe aebe aebe aebe aebe aebe aebe
+2257 aebf aebf aebf * 5561 * 8ea1d5e1,d5e1,8ea1d5e1v,d5e1v 632a e68caa 632a 0000632a aebf aebf aebf aebf aebf aebf aebf
+2258 aec0 aec0 aec0 * 5562 * 8ea1d5e2,d5e2,8ea1d5e2v,d5e2v 632b e68cab 632b 0000632b aec0 aec0 aec0 aec0 aec0 aec0 aec0
+2259 aec1 aec1 aec1 * 5563 * 8ea1d5e3,d5e3,8ea1d5e3v,d5e3v 6328 e68ca8 6328 00006328 aec1 aec1 aec1 aec1 aec1 aec1 aec1
+2260 aec2 aec2 aec2 * 5564 * 8ea1d5e4,d5e4,8ea1d5e4v,d5e4v 634d e68d8d 634d 0000634d aec2 aec2 aec2 aec2 aec2 aec2 aec2
+2261 aec3 aec3 aec3 * 5565 * 8ea1d5e5,d5e5,8ea1d5e5v,d5e5v 634c e68d8c 634c 0000634c aec3 aec3 aec3 aec3 aec3 aec3 aec3
+2262 aec4 aec4 aec4 * 5566 * 8ea1d5e6,d5e6,8ea1d5e6v,d5e6v 6548 e69588 6548 00006548 aec4 aec4 aec4 aec4 aec4 aec4 aec4
+2263 aec5 aec5 aec5 * 5567 * 8ea1d5e7,d5e7,8ea1d5e7v,d5e7v 6549 e69589 6549 00006549 aec5 aec5 aec5 aec5 aec5 aec5 aec5
+2264 aec6 aec6 aec6 * 5568 * 8ea1d5e8,d5e8,8ea1d5e8v,d5e8v 6599 e69699 6599 00006599 aec6 aec6 aec6 aec6 aec6 aec6 aec6
+2265 aec7 aec7 aec7 * 5569 * 8ea1d5e9,d5e9,8ea1d5e9v,d5e9v 65c1 e69781 65c1 000065c1 aec7 aec7 aec7 aec7 aec7 aec7 aec7
+2266 aec8 aec8 aec8 * 556a * 8ea1d5ea,d5ea,8ea1d5eav,d5eav 65c5 e69785 65c5 000065c5 aec8 aec8 aec8 aec8 aec8 aec8 aec8
+2267 aec9 aec9 aec9 * 556b * 8ea1d5eb,d5eb,8ea1d5ebv,d5ebv 6642 e69982 6642 00006642 aec9 aec9 aec9 aec9 aec9 aec9 aec9
+2268 aeca aeca aeca * 556c * 8ea1d5ec,d5ec,8ea1d5ecv,d5ecv 6649 e69989 6649 00006649 aeca aeca aeca aeca aeca aeca aeca
+2269 aecb aecb aecb * 556d * 8ea1d5ed,d5ed,8ea1d5edv,d5edv 664f e6998f 664f 0000664f aecb aecb aecb aecb aecb aecb aecb
+2270 aecc aecc aecc * 556e * 8ea1d5ee,d5ee,8ea1d5eev,d5eev 6643 e69983 6643 00006643 aecc aecc aecc aecc aecc aecc aecc
+2271 aecd aecd aecd * 556f * 8ea1d5ef,d5ef,8ea1d5efv,d5efv 6652 e69992 6652 00006652 aecd aecd aecd aecd aecd aecd aecd
+2272 aece aece aece * 5570 * 8ea1d5f0,d5f0,8ea1d5f0v,d5f0v 664c e6998c 664c 0000664c aece aece aece aece aece aece aece
+2273 aecf aecf aecf * 5571 * 8ea1d5f1,d5f1,8ea1d5f1v,d5f1v 6645 e69985 6645 00006645 aecf aecf aecf aecf aecf aecf aecf
+2274 aed0 aed0 aed0 * 5572 * 8ea1d5f2,d5f2,8ea1d5f2v,d5f2v 6641 e69981 6641 00006641 aed0 aed0 aed0 aed0 aed0 aed0 aed0
+2275 aed1 aed1 aed1 * 5573 * 8ea1d5f3,d5f3,8ea1d5f3v,d5f3v 66f8 e69bb8 66f8 000066f8 aed1 aed1 aed1 aed1 aed1 aed1 aed1
+2276 aed2 aed2 aed2 * 5574 * 8ea1d5f4,d5f4,8ea1d5f4v,d5f4v 6714 e69c94 6714 00006714 aed2 aed2 aed2 aed2 aed2 aed2 aed2
+2277 aed3 aed3 aed3 * 5575 * 8ea1d5f5,d5f5,8ea1d5f5v,d5f5v 6715 e69c95 6715 00006715 aed3 aed3 aed3 aed3 aed3 aed3 aed3
+2278 aed4 aed4 aed4 * 5576 * 8ea1d5f6,d5f6,8ea1d5f6v,d5f6v 6717 e69c97 6717 00006717 aed4 aed4 aed4 aed4 aed4 aed4 aed4
+2279 aed5 aed5 aed5 * 5577 * 8ea1d5f7,d5f7,8ea1d5f7v,d5f7v 6821 e6a0a1 6821 00006821 aed5 aed5 aed5 aed5 aed5 aed5 aed5
+2280 aed6 aed6 aed6 * 5578 * 8ea1d5f8,d5f8,8ea1d5f8v,d5f8v 6838 e6a0b8 6838 00006838 aed6 aed6 aed6 aed6 aed6 aed6 aed6
+2281 aed7 aed7 aed7 * 5579 * 8ea1d5f9,d5f9,8ea1d5f9v,d5f9v 6848 e6a188 6848 00006848 aed7 aed7 aed7 aed7 aed7 aed7 aed7
+2282 aed8 aed8 aed8 * 557a * 8ea1d5fa,d5fa,8ea1d5fav,d5fav 6846 e6a186 6846 00006846 aed8 aed8 aed8 aed8 aed8 aed8 aed8
+2283 aed9 aed9 aed9 * 557b * 8ea1d5fb,d5fb,8ea1d5fbv,d5fbv 6853 e6a193 6853 00006853 aed9 aed9 aed9 aed9 aed9 aed9 aed9
+2284 aeda aeda aeda * 557c * 8ea1d5fc,d5fc,8ea1d5fcv,d5fcv 6839 e6a0b9 6839 00006839 aeda aeda aeda aeda aeda aeda aeda
+2285 aedb aedb aedb * 557d * 8ea1d5fd,d5fd,8ea1d5fdv,d5fdv 6842 e6a182 6842 00006842 aedb aedb aedb aedb aedb aedb aedb
+2286 aedc aedc aedc * 557e * 8ea1d5fe,d5fe,8ea1d5fev,d5fev 6854 e6a194 6854 00006854 aedc aedc aedc aedc aedc aedc aedc
+2287 aedd aedd aedd * 5621 * 8ea1d6a1,d6a1,8ea1d6a1v,d6a1v 6829 e6a0a9 6829 00006829 aedd aedd aedd aedd aedd aedd aedd
+2288 aede aede aede * 5622 * 8ea1d6a2,d6a2,8ea1d6a2v,d6a2v 68b3 e6a2b3 68b3 000068b3 aede aede aede aede aede aede aede
+2289 aedf aedf aedf * 5623 * 8ea1d6a3,d6a3,8ea1d6a3v,d6a3v 6817 e6a097 6817 00006817 aedf aedf aedf aedf aedf aedf aedf
+2290 aee0 aee0 aee0 * 5624 * 8ea1d6a4,d6a4,8ea1d6a4v,d6a4v 684c e6a18c 684c 0000684c aee0 aee0 aee0 aee0 aee0 aee0 aee0
+2291 aee1 aee1 aee1 * 5625 * 8ea1d6a5,d6a5,8ea1d6a5v,d6a5v 6851 e6a191 6851 00006851 aee1 aee1 aee1 aee1 aee1 aee1 aee1
+2292 aee2 aee2 aee2 * 5626 * 8ea1d6a6,d6a6,8ea1d6a6v,d6a6v 683d e6a0bd 683d 0000683d aee2 aee2 aee2 aee2 aee2 aee2 aee2
+2293 aee3 aee3 aee3 * 5627 * 8ea1d6a7,d6a7,8ea1d6a7v,d6a7v 67f4 e69fb4 67f4 000067f4 aee3 aee3 aee3 aee3 aee3 aee3 aee3
+2294 aee4 aee4 aee4 * 5628 * 8ea1d6a8,d6a8,8ea1d6a8v,d6a8v 6850 e6a190 6850 00006850 aee4 aee4 aee4 aee4 aee4 aee4 aee4
+2295 aee5 aee5 aee5 * 5629 * 8ea1d6a9,d6a9,8ea1d6a9v,d6a9v 6840 e6a180 6840 00006840 aee5 aee5 aee5 aee5 aee5 aee5 aee5
+2296 aee6 aee6 aee6 * 562a * 8ea1d6aa,d6aa,8ea1d6aav,d6aav 683c e6a0bc 683c 0000683c aee6 aee6 aee6 aee6 aee6 aee6 aee6
+2297 aee7 aee7 aee7 * 562b * 8ea1d6ab,d6ab,8ea1d6abv,d6abv 6843 e6a183 6843 00006843 aee7 aee7 aee7 aee7 aee7 aee7 aee7
+2298 aee8 aee8 aee8 * 562c * 8ea1d6ac,d6ac,8ea1d6acv,d6acv 682a e6a0aa 682a 0000682a aee8 aee8 aee8 aee8 aee8 aee8 aee8
+2299 aee9 aee9 aee9 * 562d * 8ea1d6ad,d6ad,8ea1d6adv,d6adv 6845 e6a185 6845 00006845 aee9 aee9 aee9 aee9 aee9 aee9 aee9
+2300 aeea aeea aeea * 562e * 8ea1d6ae,d6ae,8ea1d6aev,d6aev 6813 e6a093 6813 00006813 aeea aeea aeea aeea aeea aeea aeea
+2301 aeeb aeeb aeeb * 562f * 8ea1d6af,d6af,8ea1d6afv,d6afv 6818 e6a098 6818 00006818 aeeb aeeb aeeb aeeb aeeb aeeb aeeb
+2302 aeec aeec aeec * 5630 * 8ea1d6b0,d6b0,8ea1d6b0v,d6b0v 6841 e6a181 6841 00006841 aeec aeec aeec aeec aeec aeec aeec
+2303 aeed aeed aeed * 5631 * 8ea1d6b1,d6b1,8ea1d6b1v,d6b1v 6b8a e6ae8a 6b8a 00006b8a aeed aeed aeed aeed aeed aeed aeed
+2304 aeee aeee aeee * 5632 * 8ea1d6b2,d6b2,8ea1d6b2v,d6b2v 6b89 e6ae89 6b89 00006b89 aeee aeee aeee aeee aeee aeee aeee
+2305 aeef aeef aeef * 5633 * 8ea1d6b3,d6b3,8ea1d6b3v,d6b3v 6bb7 e6aeb7 6bb7 00006bb7 aeef aeef aeef aeef aeef aeef aeef
+2306 aef0 aef0 aef0 * 5634 * 8ea1d6b4,d6b4,8ea1d6b4v,d6b4v 6c23 e6b0a3 6c23 00006c23 aef0 aef0 aef0 aef0 aef0 aef0 aef0
+2307 aef1 aef1 aef1 * 5635 * 8ea1d6b5,d6b5,8ea1d6b5v,d6b5v 6c27 e6b0a7 6c27 00006c27 aef1 aef1 aef1 aef1 aef1 aef1 aef1
+2308 aef2 aef2 aef2 * 5636 * 8ea1d6b6,d6b6,8ea1d6b6v,d6b6v 6c28 e6b0a8 6c28 00006c28 aef2 aef2 aef2 aef2 aef2 aef2 aef2
+2309 aef3 aef3 aef3 * 5637 * 8ea1d6b7,d6b7,8ea1d6b7v,d6b7v 6c26 e6b0a6 6c26 00006c26 aef3 aef3 aef3 aef3 aef3 aef3 aef3
+2310 aef4 aef4 aef4 * 5638 * 8ea1d6b8,d6b8,8ea1d6b8v,d6b8v 6c24 e6b0a4 6c24 00006c24 aef4 aef4 aef4 aef4 aef4 aef4 aef4
+2311 aef5 aef5 aef5 * 5639 * 8ea1d6b9,d6b9,8ea1d6b9v,d6b9v 6cf0 e6b3b0 6cf0 00006cf0 aef5 aef5 aef5 aef5 aef5 aef5 aef5
+2312 aef6 aef6 aef6 * 563a * 8ea1d6ba,d6ba,8ea1d6bav,d6bav 6d6a e6b5aa 6d6a 00006d6a aef6 aef6 aef6 aef6 aef6 aef6 aef6
+2313 aef7 aef7 aef7 * 563b * 8ea1d6bb,d6bb,8ea1d6bbv,d6bbv 6d95 e6b695 6d95 00006d95 aef7 aef7 aef7 aef7 aef7 aef7 aef7
+2314 aef8 aef8 aef8 * 563c * 8ea1d6bc,d6bc,8ea1d6bcv,d6bcv 6d88 e6b688 6d88 00006d88 aef8 aef8 aef8 aef8 aef8 aef8 aef8
+2315 aef9 aef9 aef9 * 563d * 8ea1d6bd,d6bd,8ea1d6bdv,d6bdv 6d87 e6b687 6d87 00006d87 aef9 aef9 aef9 aef9 aef9 aef9 aef9
+2316 aefa aefa aefa * 563e * 8ea1d6be,d6be,8ea1d6bev,d6bev 6d66 e6b5a6 6d66 00006d66 aefa aefa aefa aefa aefa aefa aefa
+2317 aefb aefb aefb * 563f * 8ea1d6bf,d6bf,8ea1d6bfv,d6bfv 6d78 e6b5b8 6d78 00006d78 aefb aefb aefb aefb aefb aefb aefb
+2318 aefc aefc aefc * 5640 * 8ea1d6c0,d6c0,8ea1d6c0v,d6c0v 6d77 e6b5b7 6d77 00006d77 aefc aefc aefc aefc aefc aefc aefc
+2319 aefd aefd aefd * 5641 * 8ea1d6c1,d6c1,8ea1d6c1v,d6c1v 6d59 e6b599 6d59 00006d59 aefd aefd aefd aefd aefd aefd aefd
+2320 aefe aefe aefe * 5642 * 8ea1d6c2,d6c2,8ea1d6c2v,d6c2v 6d93 e6b693 6d93 00006d93 aefe aefe aefe aefe aefe aefe aefe
+2321 af40 af40 af40 * 5643 * 8ea1d6c3,d6c3,8ea1d6c3v,d6c3v 6d6c e6b5ac 6d6c 00006d6c af40 af40 af40 af40 af40 af40 af40
+2322 af41 af41 af41 * 5644 * 8ea1d6c4,d6c4,8ea1d6c4v,d6c4v 6d89 e6b689 6d89 00006d89 af41 af41 af41 af41 af41 af41 af41
+2323 af42 af42 af42 * 5645 * 8ea1d6c5,d6c5,8ea1d6c5v,d6c5v 6d6e e6b5ae 6d6e 00006d6e af42 af42 af42 af42 af42 af42 af42
+2324 af43 af43 af43 * 5646 * 8ea1d6c6,d6c6,8ea1d6c6v,d6c6v 6d5a e6b59a 6d5a 00006d5a af43 af43 af43 af43 af43 af43 af43
+2325 af44 af44 af44 * 5647 * 8ea1d6c7,d6c7,8ea1d6c7v,d6c7v 6d74 e6b5b4 6d74 00006d74 af44 af44 af44 af44 af44 af44 af44
+2326 af45 af45 af45 * 5648 * 8ea1d6c8,d6c8,8ea1d6c8v,d6c8v 6d69 e6b5a9 6d69 00006d69 af45 af45 af45 af45 af45 af45 af45
+2327 af46 af46 af46 * 5649 * 8ea1d6c9,d6c9,8ea1d6c9v,d6c9v 6d8c e6b68c 6d8c 00006d8c af46 af46 af46 af46 af46 af46 af46
+2328 af47 af47 af47 * 564a * 8ea1d6ca,d6ca,8ea1d6cav,d6cav 6d8a e6b68a 6d8a 00006d8a af47 af47 af47 af47 af47 af47 af47
+2329 af48 af48 af48 * 564b * 8ea1d6cb,d6cb,8ea1d6cbv,d6cbv 6d79 e6b5b9 6d79 00006d79 af48 af48 af48 af48 af48 af48 af48
+2330 af49 af49 af49 * 564c * 8ea1d6cc,d6cc,8ea1d6ccv,d6ccv 6d85 e6b685 6d85 00006d85 af49 af49,fcd1 915c,af49 af49 af49 af49 af49
+2331 af4a af4a af4a * 564d * 8ea1d6cd,d6cd,8ea1d6cdv,d6cdv 6d65 e6b5a5 6d65 00006d65 af4a af4a af4a af4a af4a af4a af4a
+2332 af4b af4b af4b * 564e * 8ea1d6ce,d6ce,8ea1d6cev,d6cev 6d94 e6b694 6d94 00006d94 af4b af4b af4b af4b af4b af4b af4b
+2333 af4c af4c af4c * 564f * 8ea1d6cf,d6cf,8ea1d6cfv,d6cfv 70ca e7838a 70ca 000070ca af4c af4c af4c af4c af4c af4c af4c
+2334 af4d af4d af4d * 5650 * 8ea1d6d0,d6d0,8ea1d6d0v,d6d0v 70d8 e78398 70d8 000070d8 af4d af4d af4d af4d af4d af4d af4d
+2335 af4e af4e af4e * 5651 * 8ea1d6d1,d6d1,8ea1d6d1v,d6d1v 70e4 e783a4 70e4 000070e4 af4e af4e af4e af4e af4e af4e af4e
+2336 af4f af4f af4f * 5652 * 8ea1d6d2,d6d2,8ea1d6d2v,d6d2v 70d9 e78399 70d9 000070d9 af4f af4f af4f af4f af4f af4f af4f
+2337 af50 af50 af50 * 5653 * 8ea1d6d3,d6d3,8ea1d6d3v,d6d3v 70c8 e78388 70c8 000070c8 af50 af50 af50 af50 af50 af50 af50
+2338 af51 af51 af51 * 5654 * 8ea1d6d4,d6d4,8ea1d6d4v,d6d4v 70cf e7838f 70cf 000070cf af51 af51 af51 af51 af51 af51 af51
+2339 af52 af52 af52 * 5655 * 8ea1d6d5,d6d5,8ea1d6d5v,d6d5v 7239 e788b9 7239 00007239 af52 af52 af52 af52 af52 af52 af52
+2340 af53 af53 af53 * 5656 * 8ea1d6d6,d6d6,8ea1d6d6v,d6d6v 7279 e789b9 7279 00007279 af53 af53 af53 af53 af53 af53 af53
+2341 af54 af54 af54 * 5657 * 8ea1d6d7,d6d7,8ea1d6d7v,d6d7v 72fc e78bbc 72fc 000072fc af54 af54 af54 af54 af54 af54 af54
+2342 af55 af55 af55 * 5658 * 8ea1d6d8,d6d8,8ea1d6d8v,d6d8v 72f9 e78bb9 72f9 000072f9 af55 af55 af55 af55 af55 af55 af55
+2343 af56 af56 af56 * 5659 * 8ea1d6d9,d6d9,8ea1d6d9v,d6d9v 72fd e78bbd 72fd 000072fd af56 af56 af56 af56 af56 af56 af56
+2344 af57 af57 af57 * 565a * 8ea1d6da,d6da,8ea1d6dav,d6dav 72f8 e78bb8 72f8 000072f8 af57 af57 af57 af57 af57 af57 af57
+2345 af58 af58 af58 * 565b * 8ea1d6db,d6db,8ea1d6dbv,d6dbv 72f7 e78bb7 72f7 000072f7 af58 af58 af58 af58 af58 af58 af58
+2346 af59 af59 af59 * 565c * 8ea1d6dc,d6dc,8ea1d6dcv,d6dcv 7386 e78e86 7386 00007386 af59 af59 af59 af59 af59 af59 af59
+2347 af5a af5a af5a * 565d * 8ea1d6dd,d6dd,8ea1d6ddv,d6ddv 73ed e78fad 73ed 000073ed af5a af5a af5a af5a af5a af5a af5a
+2348 af5b af5b af5b * 565e * 8ea1d6de,d6de,8ea1d6dev,d6dev 7409 e79089 7409 00007409 af5b af5b af5b af5b af5b af5b af5b
+2349 af5c af5c af5c * 565f * 8ea1d6df,d6df,8ea1d6dfv,d6dfv 73ee e78fae 73ee 000073ee af5c af5c af5c af5c af5c af5c af5c
+2350 af5d af5d af5d * 5660 * 8ea1d6e0,d6e0,8ea1d6e0v,d6e0v 73e0 e78fa0 73e0 000073e0 af5d af5d af5d af5d af5d af5d af5d
+2351 af5e af5e af5e * 5661 * 8ea1d6e1,d6e1,8ea1d6e1v,d6e1v 73ea e78faa 73ea 000073ea af5e af5e af5e af5e af5e af5e af5e
+2352 af5f af5f af5f * 5662 * 8ea1d6e2,d6e2,8ea1d6e2v,d6e2v 73de e78f9e 73de 000073de af5f af5f af5f af5f af5f af5f af5f
+2353 af60 af60 af60 * 5663 * 8ea1d6e3,d6e3,8ea1d6e3v,d6e3v 7554 e79594 7554 00007554 af60 af60 af60 af60 af60 af60 af60
+2354 af61 af61 af61 * 5664 * 8ea1d6e4,d6e4,8ea1d6e4v,d6e4v 755d e7959d 755d 0000755d af61 af61 af61 af61 af61 af61 af61
+2355 af62 af62 af62 * 5665 * 8ea1d6e5,d6e5,8ea1d6e5v,d6e5v 755c e7959c 755c 0000755c af62 af62 af62 af62 af62 af62 af62
+2356 af63 af63 af63 * 5666 * 8ea1d6e6,d6e6,8ea1d6e6v,d6e6v 755a e7959a 755a 0000755a af63 af63 af63 af63 af63 af63 af63
+2357 af64 af64 af64 * 5667 * 8ea1d6e7,d6e7,8ea1d6e7v,d6e7v 7559 e79599 7559 00007559 af64 af64 af64 af64 af64 af64 af64
+2358 af65 af65 af65 * 5668 * 8ea1d6e8,d6e8,8ea1d6e8v,d6e8v 75be e796be 75be 000075be af65 af65 af65 af65 af65 af65 af65
+2359 af66 af66 af66 * 5669 * 8ea1d6e9,d6e9,8ea1d6e9v,d6e9v 75c5 e79785 75c5 000075c5 af66 af66 af66 af66 af66 af66 af66
+2360 af67 af67 af67 * 566a * 8ea1d6ea,d6ea,8ea1d6eav,d6eav 75c7 e79787 75c7 000075c7 af67 af67 af67 af67 af67 af67 af67
+2361 af68 af68 af68 * 566b * 8ea1d6eb,d6eb,8ea1d6ebv,d6ebv 75b2 e796b2 75b2 000075b2 af68 af68 af68 af68 af68 af68 af68
+2362 af69 af69 af69 * 566c * 8ea1d6ec,d6ec,8ea1d6ecv,d6ecv 75b3 e796b3 75b3 000075b3 af69 af69 af69 af69 af69 af69 af69
+2363 af6a af6a af6a * 566d * 8ea1d6ed,d6ed,8ea1d6edv,d6edv 75bd e796bd 75bd 000075bd af6a af6a af6a af6a af6a af6a af6a
+2364 af6b af6b af6b * 566e * 8ea1d6ee,d6ee,8ea1d6eev,d6eev 75bc e796bc 75bc 000075bc af6b af6b af6b af6b af6b af6b af6b
+2365 af6c af6c af6c * 566f * 8ea1d6ef,d6ef,8ea1d6efv,d6efv 75b9 e796b9 75b9 000075b9 af6c af6c af6c af6c af6c af6c af6c
+2366 af6d af6d af6d * 5670 * 8ea1d6f0,d6f0,8ea1d6f0v,d6f0v 75c2 e79782 75c2 000075c2 af6d af6d af6d af6d af6d af6d af6d
+2367 af6e af6e af6e * 5671 * 8ea1d6f1,d6f1,8ea1d6f1v,d6f1v 75b8 e796b8 75b8 000075b8 af6e af6e af6e af6e af6e af6e af6e
+2368 af6f af6f af6f * 5672 * 8ea1d6f2,d6f2,8ea1d6f2v,d6f2v 768b e79a8b 768b 0000768b af6f af6f af6f af6f af6f af6f af6f
+2369 af70 af70 af70 * 5673 * 8ea1d6f3,d6f3,8ea1d6f3v,d6f3v 76b0 e79ab0 76b0 000076b0 af70 af70 af70 af70 af70 af70 af70
+2370 af71 af71 af71 * 5674 * 8ea1d6f4,d6f4,8ea1d6f4v,d6f4v 76ca e79b8a 76ca 000076ca af71 af71 af71 af71 af71 af71 af71
+2371 af72 af72 af72 * 5675 * 8ea1d6f5,d6f5,8ea1d6f5v,d6f5v 76cd e79b8d 76cd 000076cd af72 af72 af72 af72 af72 af72 af72
+2372 af73 af73 af73 * 5676 * 8ea1d6f6,d6f6,8ea1d6f6v,d6f6v 76ce e79b8e 76ce 000076ce af73 af73 af73 af73 af73 af73 af73
+2373 af74 af74 af74 * 5677 * 8ea1d6f7,d6f7,8ea1d6f7v,d6f7v 7729 e79ca9 7729 00007729 af74 af74 af74 af74 af74 af74 af74
+2374 af75 af75 af75 * 5678 * 8ea1d6f8,d6f8,8ea1d6f8v,d6f8v 771f e79c9f 771f 0000771f af75 af75 af75 af75 af75 af75 af75
+2375 af76 af76 af76 * 5679 * 8ea1d6f9,d6f9,8ea1d6f9v,d6f9v 7720 e79ca0 7720 00007720 af76 af76 af76 af76 af76 af76 af76
+2376 af77 af77 af77 * 567a * 8ea1d6fa,d6fa,8ea1d6fav,d6fav 7728 e79ca8 7728 00007728 af77 af77 af77 af77 af77 af77 af77
+2377 af78 af78 af78 * 567b * 8ea1d6fb,d6fb,8ea1d6fbv,d6fbv 77e9 e79fa9 77e9 000077e9 af78 af78 af78 af78 af78 af78 af78
+2378 af79 af79 af79 * 567c * 8ea1d6fc,d6fc,8ea1d6fcv,d6fcv 7830 e7a0b0 7830 00007830 af79 af79 af79 af79 af79 af79 af79
+2379 af7a af7a af7a * 567d * 8ea1d6fd,d6fd,8ea1d6fdv,d6fdv 7827 e7a0a7 7827 00007827 af7a af7a af7a af7a af7a af7a af7a
+2380 af7b af7b af7b * 567e * 8ea1d6fe,d6fe,8ea1d6fev,d6fev 7838 e7a0b8 7838 00007838 af7b af7b af7b af7b af7b af7b af7b
+2381 af7c af7c af7c * 5721 * 8ea1d7a1,d7a1,8ea1d7a1v,d7a1v 781d e7a09d 781d 0000781d af7c af7c af7c af7c af7c af7c af7c
+2382 af7d af7d af7d * 5722 * 8ea1d7a2,d7a2,8ea1d7a2v,d7a2v 7834 e7a0b4 7834 00007834 af7d af7d af7d af7d af7d af7d af7d
+2383 af7e af7e af7e * 5723 * 8ea1d7a3,d7a3,8ea1d7a3v,d7a3v 7837 e7a0b7 7837 00007837 af7e af7e af7e af7e af7e af7e af7e
+2384 afa1 afa1 afa1 * 5724 * 8ea1d7a4,d7a4,8ea1d7a4v,d7a4v 7825 e7a0a5 7825 00007825 afa1 afa1 afa1 afa1 afa1 afa1 afa1
+2385 afa2 afa2 afa2 * 5725 * 8ea1d7a5,d7a5,8ea1d7a5v,d7a5v 782d e7a0ad 782d 0000782d afa2 afa2 afa2 afa2 afa2 afa2 afa2
+2386 afa3 afa3 afa3 * 5726 * 8ea1d7a6,d7a6,8ea1d7a6v,d7a6v 7820 e7a0a0 7820 00007820 afa3 afa3 afa3 afa3 afa3 afa3 afa3
+2387 afa4 afa4 afa4 * 5727 * 8ea1d7a7,d7a7,8ea1d7a7v,d7a7v 781f e7a09f 781f 0000781f afa4 afa4 afa4 afa4 afa4 afa4 afa4
+2388 afa5 afa5 afa5 * 5728 * 8ea1d7a8,d7a8,8ea1d7a8v,d7a8v 7832 e7a0b2 7832 00007832 afa5 afa5 afa5 afa5 afa5 afa5 afa5
+2389 afa6 afa6 afa6 * 5729 * 8ea1d7a9,d7a9,8ea1d7a9v,d7a9v 7955 e7a595 7955 00007955 afa6 afa6,fd5f 9161,afa6 afa6 afa6 afa6 afa6
+2390 afa7 afa7 afa7 * 572a * 8ea1d7aa,d7aa,8ea1d7aav,d7aav 7950 e7a590 7950 00007950 afa7 afa7 afa7 afa7 afa7 afa7 afa7
+2391 afa8 afa8 afa8 * 572b * 8ea1d7ab,d7ab,8ea1d7abv,d7abv 7960 e7a5a0 7960 00007960 afa8 afa8 afa8 afa8 afa8 afa8 afa8
+2392 afa9 afa9 afa9 * 572c * 8ea1d7ac,d7ac,8ea1d7acv,d7acv 795f e7a59f 795f 0000795f afa9 afa9 afa9 afa9 afa9 afa9 afa9
+2393 afaa afaa afaa * 572d * 8ea1d7ad,d7ad,8ea1d7adv,d7adv 7956 e7a596 7956 00007956 afaa afaa afaa afaa afaa afaa afaa
+2394 afab afab afab * 572e * 8ea1d7ae,d7ae,8ea1d7aev,d7aev 795e e7a59e 795e 0000795e afab afab afab afab afab afab afab
+2395 afac afac afac * 572f * 8ea1d7af,d7af,8ea1d7afv,d7afv 795d e7a59d 795d 0000795d afac afac afac afac afac afac afac
+2396 afad afad afad * 5730 * 8ea1d7b0,d7b0,8ea1d7b0v,d7b0v 7957 e7a597 7957 00007957 afad afad afad afad afad afad afad
+2397 afae afae afae * 5731 * 8ea1d7b1,d7b1,8ea1d7b1v,d7b1v 795a e7a59a 795a 0000795a afae afae afae afae afae afae afae
+2398 afaf afaf afaf * 5732 * 8ea1d7b2,d7b2,8ea1d7b2v,d7b2v 79e4 e7a7a4 79e4 000079e4 afaf afaf afaf afaf afaf afaf afaf
+2399 afb0 afb0 afb0 * 5733 * 8ea1d7b3,d7b3,8ea1d7b3v,d7b3v 79e3 e7a7a3,eeb082 79e3,ec02 000079e3,0000ec02 9cbd,afb0 afb0 afb0 afb0 afb0 afb0 9cbd,afb0
+2400 afb1 afb1 afb1 * 5734 * 8ea1d7b4,d7b4,8ea1d7b4v,d7b4v 79e7 e7a7a7 79e7 000079e7 afb1 afb1 afb1 afb1 afb1 afb1 afb1
+2401 afb2 afb2 afb2 * 5735 * 8ea1d7b5,d7b5,8ea1d7b5v,d7b5v 79df e7a79f 79df 000079df afb2 afb2 afb2 afb2 afb2 afb2 afb2
+2402 afb3 afb3 afb3 * 5736 * 8ea1d7b6,d7b6,8ea1d7b6v,d7b6v 79e6 e7a7a6 79e6 000079e6 afb3 afb3 afb3 afb3 afb3 afb3 afb3
+2403 afb4 afb4 afb4 * 5737 * 8ea1d7b7,d7b7,8ea1d7b7v,d7b7v 79e9 e7a7a9 79e9 000079e9 afb4 afb4 afb4 afb4 afb4 afb4 afb4
+2404 afb5 afb5 afb5 * 5738 * 8ea1d7b8,d7b8,8ea1d7b8v,d7b8v 79d8 e7a798 79d8 000079d8 afb5 afb5 afb5 afb5 afb5 afb5 afb5
+2405 afb6 afb6 afb6 * 5739 * 8ea1d7b9,d7b9,8ea1d7b9v,d7b9v 7a84 e7aa84 7a84 00007a84 afb6 afb6 afb6 afb6 afb6 afb6 afb6
+2406 afb7 afb7 afb7 * 573a * 8ea1d7ba,d7ba,8ea1d7bav,d7bav 7a88 e7aa88 7a88 00007a88 afb7 afb7 afb7 afb7 afb7 afb7 afb7
+2407 afb8 afb8 afb8 * 573b * 8ea1d7bb,d7bb,8ea1d7bbv,d7bbv 7ad9 e7ab99 7ad9 00007ad9 afb8 afb8 afb8 afb8 afb8 afb8 afb8
+2408 afb9 afb9 afb9 * 573c * 8ea1d7bc,d7bc,8ea1d7bcv,d7bcv 7b06 e7ac86 7b06 00007b06 afb9 afb9 afb9 afb9 afb9 afb9 afb9
+2409 afba afba afba * 573d * 8ea1d7bd,d7bd,8ea1d7bdv,d7bdv 7b11 e7ac91 7b11 00007b11 afba afba afba afba afba afba afba
+2410 afbb afbb afbb * 573e * 8ea1d7be,d7be,8ea1d7bev,d7bev 7c89 e7b289 7c89 00007c89 afbb afbb afbb afbb afbb afbb afbb
+2411 afbc afbc afbc * 573f * 8ea1d7bf,d7bf,8ea1d7bfv,d7bfv 7d21 e7b4a1 7d21 00007d21 afbc afbc afbc afbc afbc afbc afbc
+2412 afbd afbd afbd * 5740 * 8ea1d7c0,d7c0,8ea1d7c0v,d7c0v 7d17 e7b497 7d17 00007d17 afbd afbd afbd afbd afbd afbd afbd
+2413 afbe afbe afbe * 5741 * 8ea1d7c1,d7c1,8ea1d7c1v,d7c1v 7d0b e7b48b 7d0b 00007d0b afbe afbe afbe afbe afbe afbe afbe
+2414 afbf afbf afbf * 5742 * 8ea1d7c2,d7c2,8ea1d7c2v,d7c2v 7d0a e7b48a 7d0a 00007d0a afbf afbf afbf afbf afbf afbf afbf
+2415 afc0 afc0 afc0 * 5743 * 8ea1d7c3,d7c3,8ea1d7c3v,d7c3v 7d20 e7b4a0 7d20 00007d20 afc0 afc0 afc0 afc0 afc0 afc0 afc0
+2416 afc1 afc1 afc1 * 5744 * 8ea1d7c4,d7c4,8ea1d7c4v,d7c4v 7d22 e7b4a2 7d22 00007d22 afc1 afc1 afc1 afc1 afc1 afc1 afc1
+2417 afc2 afc2 afc2 * 5745 * 8ea1d7c5,d7c5,8ea1d7c5v,d7c5v 7d14 e7b494 7d14 00007d14 afc2 afc2 afc2 afc2 afc2 afc2 afc2
+2418 afc3 afc3 afc3 * 5746 * 8ea1d7c6,d7c6,8ea1d7c6v,d7c6v 7d10 e7b490 7d10 00007d10 afc3 afc3 afc3 afc3 afc3 afc3 afc3
+2419 afc4 afc4 afc4 * 5747 * 8ea1d7c7,d7c7,8ea1d7c7v,d7c7v 7d15 e7b495 7d15 00007d15 afc4 afc4 afc4 afc4 afc4 afc4 afc4
+2420 afc5 afc5 afc5 * 5748 * 8ea1d7c8,d7c8,8ea1d7c8v,d7c8v 7d1a e7b49a 7d1a 00007d1a afc5 afc5 afc5 afc5 afc5 afc5 afc5
+2421 afc6 afc6 afc6 * 5749 * 8ea1d7c9,d7c9,8ea1d7c9v,d7c9v 7d1c e7b49c 7d1c 00007d1c afc6 afc6 afc6 afc6 afc6 afc6 afc6
+2422 afc7 afc7 afc7 * 574a * 8ea1d7ca,d7ca,8ea1d7cav,d7cav 7d0d e7b48d 7d0d 00007d0d afc7 afc7 afc7 afc7 afc7 afc7 afc7
+2423 afc8 afc8 afc8 * 574b * 8ea1d7cb,d7cb,8ea1d7cbv,d7cbv 7d19 e7b499 7d19 00007d19 afc8 afc8 afc8 afc8 afc8 afc8 afc8
+2424 afc9 afc9 afc9 * 574c * 8ea1d7cc,d7cc,8ea1d7ccv,d7ccv 7d1b e7b49b 7d1b 00007d1b afc9 afc9 afc9 afc9 afc9 afc9 afc9
+2425 afca afca afca * 574d * 8ea1d7cd,d7cd,8ea1d7cdv,d7cdv 7f3a e7bcba 7f3a 00007f3a afca afca afca afca afca afca afca
+2426 afcb afcb afcb * 574e * 8ea1d7ce,d7ce,8ea1d7cev,d7cev 7f5f e7bd9f 7f5f 00007f5f afcb afcb afcb afcb afcb afcb afcb
+2427 afcc afcc afcc * 574f * 8ea1d7cf,d7cf,8ea1d7cfv,d7cfv 7f94 e7be94 7f94 00007f94 afcc afcc afcc afcc afcc afcc afcc
+2428 afcd afcd afcd * 5750 * 8ea1d7d0,d7d0,8ea1d7d0v,d7d0v 7fc5 e7bf85 7fc5 00007fc5 afcd afcd afcd afcd afcd afcd afcd
+2429 afce afce afce * 5751 * 8ea1d7d1,d7d1,8ea1d7d1v,d7d1v 7fc1 e7bf81 7fc1 00007fc1 afce afce afce afce afce afce afce
+2430 afcf afcf afcf * 5752 * 8ea1d7d2,d7d2,8ea1d7d2v,d7d2v 8006 e88086 8006 00008006 afcf afcf afcf afcf afcf afcf afcf
+2431 acfe acfe acfe * 5753 * 8ea1d7d3,d7d3,8ea1d7d3v,d7d3v 8004 e88084 8004 00008004 acfe acfe acfe acfe acfe acfe acfe
+2432 afd0 afd0 afd0 * 5754 * 8ea1d7d4,d7d4,8ea1d7d4v,d7d4v 8018 e88098 8018 00008018 afd0 afd0 afd0 afd0 afd0 afd0 afd0
+2433 afd1 afd1 afd1 * 5755 * 8ea1d7d5,d7d5,8ea1d7d5v,d7d5v 8015 e88095 8015 00008015 afd1 afd1 afd1 afd1 afd1 afd1 afd1
+2434 afd2 afd2 afd2 * 5756 * 8ea1d7d6,d7d6,8ea1d7d6v,d7d6v 8019 e88099 8019 00008019 afd2 afd2 afd2 afd2 afd2 afd2 afd2
+2435 afd3 afd3 afd3 * 5757 * 8ea1d7d7,d7d7,8ea1d7d7v,d7d7v 8017 e88097 8017 00008017 afd3 afd3 afd3 afd3 afd3 afd3 afd3
+2436 afd4 afd4 afd4 * 5758 * 8ea1d7d8,d7d8,8ea1d7d8v,d7d8v 803d e880bd 803d 0000803d afd4 afd4 afd4 afd4 afd4 afd4 afd4
+2437 afd5 afd5 afd5 * 5759 * 8ea1d7d9,d7d9,8ea1d7d9v,d7d9v 803f e880bf 803f 0000803f afd5 afd5 afd5 afd5 afd5 afd5 afd5
+2438 afd6 afd6 afd6 * 575a * 8ea1d7da,d7da,8ea1d7dav,d7dav 80f1 e883b1 80f1 000080f1 afd6 afd6 afd6 afd6 afd6 afd6 afd6
+2439 afd7 afd7 afd7 * 575b * 8ea1d7db,d7db,8ea1d7dbv,d7dbv 8102 e88482 8102 00008102 afd7 afd7 afd7 afd7 afd7 afd7 afd7
+2440 afd8 afd8 afd8 * 575c * 8ea1d7dc,d7dc,8ea1d7dcv,d7dcv 80f0 e883b0 80f0 000080f0 afd8 afd8 afd8 afd8 afd8 afd8 afd8
+2441 afd9 afd9 afd9 * 575d * 8ea1d7dd,d7dd,8ea1d7ddv,d7ddv 8105 e88485 8105 00008105 afd9 afd9 afd9 afd9 afd9 afd9 afd9
+2442 afda afda afda * 575e * 8ea1d7de,d7de,8ea1d7dev,d7dev 80ed e883ad 80ed 000080ed afda afda afda afda afda afda afda
+2443 afdb afdb afdb * 575f * 8ea1d7df,d7df,8ea1d7dfv,d7dfv 80f4 e883b4 80f4 000080f4 afdb afdb afdb afdb afdb afdb afdb
+2444 afdc afdc afdc * 5760 * 8ea1d7e0,d7e0,8ea1d7e0v,d7e0v 8106 e88486 8106 00008106 afdc afdc afdc afdc afdc afdc afdc
+2445 afdd afdd afdd * 5761 * 8ea1d7e1,d7e1,8ea1d7e1v,d7e1v 80f8 e883b8 80f8 000080f8 afdd afdd afdd afdd afdd afdd afdd
+2446 afde afde afde * 5762 * 8ea1d7e2,d7e2,8ea1d7e2v,d7e2v 80f3 e883b3 80f3 000080f3 afde afde afde afde afde afde afde
+2447 afdf afdf afdf * 5763 * 8ea1d7e3,d7e3,8ea1d7e3v,d7e3v 8108 e88488 8108 00008108 afdf afdf afdf afdf afdf afdf afdf
+2448 afe0 afe0 afe0 * 5764 * 8ea1d7e4,d7e4,8ea1d7e4v,d7e4v 80fd e883bd 80fd 000080fd afe0 afe0 afe0 afe0 afe0 afe0 afe0
+2449 afe1 afe1 afe1 * 5765 * 8ea1d7e5,d7e5,8ea1d7e5v,d7e5v 810a e8848a 810a 0000810a afe1 afe1 afe1 afe1 afe1 afe1 afe1
+2450 afe2 afe2 afe2 * 5766 * 8ea1d7e6,d7e6,8ea1d7e6v,d7e6v 80fc e883bc 80fc 000080fc afe2 afe2 afe2 afe2 afe2 afe2 afe2
+2451 afe3 afe3 afe3 * 5767 * 8ea1d7e7,d7e7,8ea1d7e7v,d7e7v 80ef e883af 80ef 000080ef afe3 afe3 afe3 afe3 afe3 afe3 afe3
+2452 afe4 afe4 afe4 * 5768 * 8ea1d7e8,d7e8,8ea1d7e8v,d7e8v 81ed e887ad 81ed 000081ed afe4 afe4 afe4 afe4 afe4 afe4 afe4
+2453 afe5 afe5 afe5 * 5769 * 8ea1d7e9,d7e9,8ea1d7e9v,d7e9v 81ec e887ac 81ec 000081ec afe5 afe5 afe5 afe5 afe5 afe5 afe5
+2454 afe6 afe6 afe6 * 576a * 8ea1d7ea,d7ea,8ea1d7eav,d7eav 8200 e88880 8200 00008200 afe6 afe6 afe6 afe6 afe6 afe6 afe6
+2455 afe7 afe7 afe7 * 576b * 8ea1d7eb,d7eb,8ea1d7ebv,d7ebv 8210 e88890 8210 00008210 afe7 afe7 afe7 afe7 afe7 afe7 afe7
+2456 afe8 afe8 afe8 * 576c * 8ea1d7ec,d7ec,8ea1d7ecv,d7ecv 822a e888aa 822a 0000822a afe8 afe8 afe8 afe8 afe8 afe8 afe8
+2457 afe9 afe9 afe9 * 576d * 8ea1d7ed,d7ed,8ea1d7edv,d7edv 822b e888ab 822b 0000822b afe9 afe9 afe9 afe9 afe9 afe9 afe9
+2458 afea afea afea * 576e * 8ea1d7ee,d7ee,8ea1d7eev,d7eev 8228 e888a8 8228 00008228 afea afea afea afea afea afea afea
+2459 afeb afeb afeb * 576f * 8ea1d7ef,d7ef,8ea1d7efv,d7efv 822c e888ac 822c 0000822c afeb afeb afeb afeb afeb afeb afeb
+2460 afec afec afec * 5770 * 8ea1d7f0,d7f0,8ea1d7f0v,d7f0v 82bb e88abb 82bb 000082bb afec afec afec afec afec afec afec
+2461 afed afed afed * 5771 * 8ea1d7f1,d7f1,8ea1d7f1v,d7f1v 832b e88cab 832b 0000832b afed afed afed afed afed afed afed
+2462 afee afee afee * 5772 * 8ea1d7f2,d7f2,8ea1d7f2v,d7f2v 8352 e88d92 8352 00008352 afee afee afee afee afee afee afee
+2463 afef afef afef * 5773 * 8ea1d7f3,d7f3,8ea1d7f3v,d7f3v 8354 e88d94 8354 00008354 afef afef afef afef afef afef afef
+2464 aff0 aff0 aff0 * 5774 * 8ea1d7f4,d7f4,8ea1d7f4v,d7f4v 834a e88d8a 834a 0000834a aff0 aff0 aff0 aff0 aff0 aff0 aff0
+2465 aff1 aff1 aff1 * 5775 * 8ea1d7f5,d7f5,8ea1d7f5v,d7f5v 8338 e88cb8 8338 00008338 aff1 aff1 aff1 aff1 aff1 aff1 aff1
+2466 aff2 aff2 aff2 * 5776 * 8ea1d7f6,d7f6,8ea1d7f6v,d7f6v 8350 e88d90 8350 00008350 aff2 aff2 aff2 aff2 aff2 aff2 aff2
+2467 aff3 aff3 aff3 * 5777 * 8ea1d7f7,d7f7,8ea1d7f7v,d7f7v 8349 e88d89 8349 00008349 aff3 aff3 aff3 aff3 aff3 aff3 aff3
+2468 aff4 aff4 aff4 * 5778 * 8ea1d7f8,d7f8,8ea1d7f8v,d7f8v 8335 e88cb5 8335 00008335 aff4 aff4 aff4 aff4 aff4 aff4 aff4
+2469 aff5 aff5 aff5 * 5779 * 8ea1d7f9,d7f9,8ea1d7f9v,d7f9v 8334 e88cb4 8334 00008334 aff5 aff5 aff5 aff5 aff5 aff5 aff5
+2470 aff6 aff6 aff6 * 577a * 8ea1d7fa,d7fa,8ea1d7fav,d7fav 834f e88d8f 834f 0000834f aff6 aff6 aff6 aff6 aff6 aff6 aff6
+2471 aff7 aff7 aff7 * 577b * 8ea1d7fb,d7fb,8ea1d7fbv,d7fbv 8332 e88cb2 8332 00008332 aff7 aff7 aff7 aff7 aff7 aff7 aff7
+2472 aff8 aff8 aff8 * 577c * 8ea1d7fc,d7fc,8ea1d7fcv,d7fcv 8339 e88cb9 8339 00008339 aff8 aff8 aff8 aff8 aff8 aff8 aff8
+2473 aff9 aff9 aff9 * 577d * 8ea1d7fd,d7fd,8ea1d7fdv,d7fdv 8336 e88cb6 8336 00008336 aff9 aff9 aff9 aff9 aff9 aff9 aff9
+2474 affa affa affa * 577e * 8ea1d7fe,d7fe,8ea1d7fev,d7fev 8317 e88c97 8317 00008317 affa affa affa affa affa affa affa
+2475 affb affb affb * 5821 * 8ea1d8a1,d8a1,8ea1d8a1v,d8a1v 8340 e88d80 8340 00008340 affb affb affb affb affb affb affb
+2476 affc affc affc * 5822 * 8ea1d8a2,d8a2,8ea1d8a2v,d8a2v 8331 e88cb1 8331 00008331 affc affc affc affc affc affc affc
+2477 affd affd affd * 5823 * 8ea1d8a3,d8a3,8ea1d8a3v,d8a3v 8328 e88ca8 8328 00008328 affd affd affd affd affd affd affd
+2478 affe affe affe * 5824 * 8ea1d8a4,d8a4,8ea1d8a4v,d8a4v 8343 e88d83 8343 00008343 affe affe affe affe affe affe affe
+2479 b040 b040 b040 * 5825 * 8ea1d8a5,d8a5,8ea1d8a5v,d8a5v 8654 e89994 8654 00008654 b040 b040 b040 b040 b040 b040 b040
+2480 b041 b041 b041 * 5826 * 8ea1d8a6,d8a6,8ea1d8a6v,d8a6v 868a e89a8a 868a 0000868a b041 b041 b041 b041 b041 b041 b041
+2481 b042 b042 b042 * 5827 * 8ea1d8a7,d8a7,8ea1d8a7v,d8a7v 86aa e89aaa 86aa 000086aa b042 b042 b042 b042 b042 b042 b042
+2482 b043 b043 b043 * 5828 * 8ea1d8a8,d8a8,8ea1d8a8v,d8a8v 8693 e89a93 8693 00008693 b043 b043 b043 b043 b043 b043 b043
+2483 b044 b044 b044 * 5829 * 8ea1d8a9,d8a9,8ea1d8a9v,d8a9v 86a4 e89aa4 86a4 000086a4 b044 b044 b044 b044 b044 b044 b044
+2484 b045 b045 b045 * 582a * 8ea1d8aa,d8aa,8ea1d8aav,d8aav 86a9 e89aa9 86a9 000086a9 b045 b045 b045 b045 b045 b045 b045
+2485 b046 b046 b046 * 582b * 8ea1d8ab,d8ab,8ea1d8abv,d8abv 868c e89a8c 868c 0000868c b046 b046 b046 b046 b046 b046 b046
+2486 b047 b047 b047 * 582c * 8ea1d8ac,d8ac,8ea1d8acv,d8acv 86a3 e89aa3 86a3 000086a3 b047 b047 b047 b047 b047 b047 b047
+2487 b048 b048 b048 * 582d * 8ea1d8ad,d8ad,8ea1d8adv,d8adv 869c e89a9c 869c 0000869c b048 b048 b048 b048 b048 b048 b048
+2488 b049 b049 b049 * 582e * 8ea1d8ae,d8ae,8ea1d8aev,d8aev 8870 e8a1b0 8870 00008870 b049 b049 b049 b049 b049 b049 b049
+2489 b04a b04a b04a * 582f * 8ea1d8af,d8af,8ea1d8afv,d8afv 8877 e8a1b7 8877 00008877 b04a b04a b04a b04a b04a b04a b04a
+2490 b04b b04b b04b * 5830 * 8ea1d8b0,d8b0,8ea1d8b0v,d8b0v 8881 e8a281 8881 00008881 b04b b04b b04b b04b b04b b04b b04b
+2491 b04c b04c b04c * 5831 * 8ea1d8b1,d8b1,8ea1d8b1v,d8b1v 8882 e8a282 8882 00008882 b04c b04c b04c b04c b04c b04c b04c
+2492 b04d b04d b04d * 5832 * 8ea1d8b2,d8b2,8ea1d8b2v,d8b2v 887d e8a1bd 887d 0000887d b04d b04d b04d b04d b04d b04d b04d
+2493 b04e b04e b04e * 5833 * 8ea1d8b3,d8b3,8ea1d8b3v,d8b3v 8879 e8a1b9 8879 00008879 b04e b04e b04e b04e b04e b04e b04e
+2494 b04f b04f b04f * 5834 * 8ea1d8b4,d8b4,8ea1d8b4v,d8b4v 8a18 e8a898 8a18 00008a18 b04f b04f b04f b04f b04f b04f b04f
+2495 b050 b050 b050 * 5835 * 8ea1d8b5,d8b5,8ea1d8b5v,d8b5v 8a10 e8a890 8a10 00008a10 b050 b050 b050 b050 b050 b050 b050
+2496 b051 b051 b051 * 5836 * 8ea1d8b6,d8b6,8ea1d8b6v,d8b6v 8a0e e8a88e 8a0e 00008a0e b051 b051 b051 b051 b051 b051 b051
+2497 b052 b052 b052 * 5837 * 8ea1d8b7,d8b7,8ea1d8b7v,d8b7v 8a0c e8a88c 8a0c 00008a0c b052 b052 b052 b052 b052 b052 b052
+2498 b053 b053 b053 * 5838 * 8ea1d8b8,d8b8,8ea1d8b8v,d8b8v 8a15 e8a895 8a15 00008a15 b053 b053 b053 b053 b053 b053 b053
+2499 b054 b054 b054 * 5839 * 8ea1d8b9,d8b9,8ea1d8b9v,d8b9v 8a0a e8a88a 8a0a 00008a0a b054 b054 b054 b054 b054 b054 b054
+2500 b055 b055 b055 * 583a * 8ea1d8ba,d8ba,8ea1d8bav,d8bav 8a17 e8a897 8a17 00008a17 b055 b055 b055 b055 b055 b055 b055
+2501 b056 b056 b056 * 583b * 8ea1d8bb,d8bb,8ea1d8bbv,d8bbv 8a13 e8a893 8a13 00008a13 b056 b056 b056 b056 b056 b056 b056
+2502 b057 b057 b057 * 583c * 8ea1d8bc,d8bc,8ea1d8bcv,d8bcv 8a16 e8a896 8a16 00008a16 b057 b057 b057 b057 b057 b057 b057
+2503 b058 b058 b058 * 583d * 8ea1d8bd,d8bd,8ea1d8bdv,d8bdv 8a0f e8a88f 8a0f 00008a0f b058 b058 b058 b058 b058 b058 b058
+2504 b059 b059 b059 * 583e * 8ea1d8be,d8be,8ea1d8bev,d8bev 8a11 e8a891 8a11 00008a11 b059 b059 b059 b059 b059 b059 b059
+2505 b05a b05a b05a * 583f * 8ea1d8bf,d8bf,8ea1d8bfv,d8bfv 8c48 e8b188 8c48 00008c48 b05a b05a b05a b05a b05a b05a b05a
+2506 b05b b05b b05b * 5840 * 8ea1d8c0,d8c0,8ea1d8c0v,d8c0v 8c7a e8b1ba 8c7a 00008c7a b05b b05b b05b b05b b05b b05b b05b
+2507 b05c b05c b05c * 5841 * 8ea1d8c1,d8c1,8ea1d8c1v,d8c1v 8c79 e8b1b9 8c79 00008c79 b05c b05c b05c b05c b05c b05c b05c
+2508 b05d b05d b05d * 5842 * 8ea1d8c2,d8c2,8ea1d8c2v,d8c2v 8ca1 e8b2a1 8ca1 00008ca1 b05d b05d b05d b05d b05d b05d b05d
+2509 b05e b05e b05e * 5843 * 8ea1d8c3,d8c3,8ea1d8c3v,d8c3v 8ca2 e8b2a2 8ca2 00008ca2 b05e b05e b05e b05e b05e b05e b05e
+2510 b05f b05f b05f * 5844 * 8ea1d8c4,d8c4,8ea1d8c4v,d8c4v 8d77 e8b5b7,ee918a 8d77,e44a 00008d77,0000e44a 8ffe,b05f b05f b05f b05f b05f b05f 8ffe,b05f
+2511 b060 b060 b060 * 5845 * 8ea1d8c5,d8c5,8ea1d8c5v,d8c5v 8eac e8baac 8eac 00008eac b060 b060 b060 b060 b060 b060 b060
+2512 b061 b061 b061 * 5846 * 8ea1d8c6,d8c6,8ea1d8c6v,d8c6v 8ed2 e8bb92 8ed2 00008ed2 b061 b061 b061 b061 b061 b061 b061
+2513 b062 b062 b062 * 5847 * 8ea1d8c7,d8c7,8ea1d8c7v,d8c7v 8ed4 e8bb94 8ed4 00008ed4 b062 b062 b062 b062 b062 b062 b062
+2514 b063 b063 b063 * 5848 * 8ea1d8c8,d8c8,8ea1d8c8v,d8c8v 8ecf e8bb8f 8ecf 00008ecf b063 b063 b063 b063 b063 b063 b063
+2515 b064 b064 b064 * 5849 * 8ea1d8c9,d8c9,8ea1d8c9v,d8c9v 8fb1 e8beb1 8fb1 00008fb1 b064 b064 b064 b064 b064 b064 b064
+2516 b065 b065 b065 * 584a * 8ea1d8ca,d8ca,8ea1d8cav,d8cav 9001 e98081 9001 00009001 b065 b065 b065 b065 b065 b065 b065
+2517 b066 b066 b066 * 584b * 8ea1d8cb,d8cb,8ea1d8cbv,d8cbv 9006 e98086 9006 00009006 b066 b066 b066 b066 b066 b066 b066
+2518 b067 b067 b067 * 584c * 8ea1d8cc,d8cc,8ea1d8ccv,d8ccv 8ff7 e8bfb7 8ff7 00008ff7 b067 b067 b067 b067 b067 b067 b067
+2519 b068 b068 b068 * 584d * 8ea1d8cd,d8cd,8ea1d8cdv,d8cdv 9000 e98080 9000 00009000 b068 b068 b068 b068 b068 b068 b068
+2520 b069 b069 b069 * 584e * 8ea1d8ce,d8ce,8ea1d8cev,d8cev 8ffa e8bfba 8ffa 00008ffa b069 b069 b069 b069 b069 b069 b069
+2521 b06a b06a b06a * 584f * 8ea1d8cf,d8cf,8ea1d8cfv,d8cfv 8ff4 e8bfb4 8ff4 00008ff4 b06a b06a b06a b06a b06a b06a b06a
+2522 b06b b06b b06b * 5850 * 8ea1d8d0,d8d0,8ea1d8d0v,d8d0v 9003 e98083 9003 00009003 b06b b06b b06b b06b b06b b06b b06b
+2523 b06c b06c b06c * 5851 * 8ea1d8d1,d8d1,8ea1d8d1v,d8d1v 8ffd e8bfbd 8ffd 00008ffd b06c b06c b06c b06c b06c b06c b06c
+2524 b06d b06d b06d * 5852 * 8ea1d8d2,d8d2,8ea1d8d2v,d8d2v 9005 e98085 9005 00009005 b06d b06d b06d b06d b06d b06d b06d
+2525 b06e b06e b06e * 5853 * 8ea1d8d3,d8d3,8ea1d8d3v,d8d3v 8ff8 e8bfb8 8ff8 00008ff8 b06e b06e b06e b06e b06e b06e b06e
+2526 b06f b06f b06f * 5854 * 8ea1d8d4,d8d4,8ea1d8d4v,d8d4v 9095 e98295 9095 00009095 b06f b06f b06f b06f b06f b06f b06f
+2527 b070 b070 b070 * 5855 * 8ea1d8d5,d8d5,8ea1d8d5v,d8d5v 90e1 e983a1 90e1 000090e1 b070 b070 b070 b070 b070 b070 b070
+2528 b071 b071 b071 * 5856 * 8ea1d8d6,d8d6,8ea1d8d6v,d8d6v 90dd e9839d 90dd 000090dd b071 b071 b071 b071 b071 b071 b071
+2529 b072 b072 b072 * 5857 * 8ea1d8d7,d8d7,8ea1d8d7v,d8d7v 90e2 e983a2 90e2 000090e2 b072 b072 b072 b072 b072 b072 b072
+2530 b073 b073 b073 * 5858 * 8ea1d8d8,d8d8,8ea1d8d8v,d8d8v 9152 e98592 9152 00009152 b073 b073 b073 b073 b073 b073 b073
+2531 b074 b074 b074 * 5859 * 8ea1d8d9,d8d9,8ea1d8d9v,d8d9v 914d e9858d 914d 0000914d b074 b074 b074 b074 b074 b074 b074
+2532 b075 b075 b075 * 585a * 8ea1d8da,d8da,8ea1d8dav,d8dav 914c e9858c 914c 0000914c b075 b075 b075 b075 b075 b075 b075
+2533 b076 b076 b076 * 585b * 8ea1d8db,d8db,8ea1d8dbv,d8dbv 91d8 e98798 91d8 000091d8 b076 b076 b076 b076 b076 b076 b076
+2534 b077 b077 b077 * 585c * 8ea1d8dc,d8dc,8ea1d8dcv,d8dcv 91dd e9879d 91dd 000091dd b077 b077 b077 b077 b077 b077 b077
+2535 b078 b078 b078 * 585d * 8ea1d8dd,d8dd,8ea1d8ddv,d8ddv 91d7 e98797 91d7 000091d7 b078 b078 b078 b078 b078 b078 b078
+2536 b079 b079 b079 * 585e * 8ea1d8de,d8de,8ea1d8dev,d8dev 91dc e9879c 91dc 000091dc b079 b079 b079 b079 b079 b079 b079
+2537 b07a b07a b07a * 585f * 8ea1d8df,d8df,8ea1d8dfv,d8dfv 91d9 e98799 91d9 000091d9 b07a b07a b07a b07a b07a b07a b07a
+2538 b07b b07b b07b * 5860 * 8ea1d8e0,d8e0,8ea1d8e0v,d8e0v 9583 e99683 9583 00009583 b07b b07b b07b b07b b07b b07b b07b
+2539 b07c b07c b07c * 5861 * 8ea1d8e1,d8e1,8ea1d8e1v,d8e1v 9662 e999a2 9662 00009662 b07c b07c b07c b07c b07c b07c b07c
+2540 b07d b07d b07d * 5862 * 8ea1d8e2,d8e2,8ea1d8e2v,d8e2v 9663 e999a3 9663 00009663 b07d b07d b07d b07d b07d b07d b07d
+2541 b07e b07e b07e * 5863 * 8ea1d8e3,d8e3,8ea1d8e3v,d8e3v 9661 e999a1 9661 00009661 b07e b07e b07e b07e b07e b07e b07e
+2542 b0a1 b0a1 b0a1 * 5864 * 8ea1d8e4,d8e4,8ea1d8e4v,d8e4v 965b e9999b 965b 0000965b b0a1 b0a1 b0a1 b0a1 b0a1 b0a1 b0a1
+2543 b0a2 b0a2 b0a2 * 5865 * 8ea1d8e5,d8e5,8ea1d8e5v,d8e5v 965d e9999d 965d 0000965d b0a2 b0a2 b0a2 b0a2 b0a2 b0a2 b0a2
+2544 b0a3 b0a3 b0a3 * 5866 * 8ea1d8e6,d8e6,8ea1d8e6v,d8e6v 9664 e999a4 9664 00009664 b0a3 b0a3 b0a3 b0a3 b0a3 b0a3 b0a3
+2545 b0a4 b0a4 b0a4 * 5867 * 8ea1d8e7,d8e7,8ea1d8e7v,d8e7v 9658 e99998 9658 00009658 b0a4 b0a4 b0a4 b0a4 b0a4 b0a4 b0a4
+2546 b0a5 b0a5 b0a5 * 5868 * 8ea1d8e8,d8e8,8ea1d8e8v,d8e8v 965e e9999e 965e 0000965e b0a5 b0a5 b0a5 b0a5 b0a5 b0a5 b0a5
+2547 b0a6 b0a6 b0a6 * 5869 * 8ea1d8e9,d8e9,8ea1d8e9v,d8e9v 96bb e99abb 96bb 000096bb b0a6 b0a6 b0a6 b0a6 b0a6 b0a6 b0a6
+2548 b0a7 b0a7 b0a7 * 586a * 8ea1d8ea,d8ea,8ea1d8eav,d8eav 98e2 e9a3a2 98e2 000098e2 b0a7 b0a7 b0a7 b0a7 b0a7 b0a7 b0a7
+2549 b0a8 b0a8 b0a8 * 287c,586b * 8ea1a8fc,8ea1d8eb,a8fc,d8eb,8ea1a8fcv,8ea1d8ebv,a8fcv,d8ebv 99ac e9a6ac,e2beba 99ac,2fba 000099ac,00002fba b0a8 b0a8 b0a8 b0a8 b0a8 b0a8 b0a8
+2550 b0a9 b0a9 b0a9 * 287d,586c * 8ea1a8fd,8ea1d8ec,a8fd,d8ec,8ea1a8fdv,8ea1d8ecv,a8fdv,d8ecv 2ee3,9aa8 e9aaa8,e2bebb 9aa8,2fbb 00009aa8,00002fbb b0a9 b0a9 b0a9 b0a9 b0a9 b0a9 b0a9
+2551 b0aa b0aa b0aa * 287e,586d * 8ea1a8fe,8ea1d8ed,a8fe,d8ed,8ea1a8fev,8ea1d8edv,a8fev,d8edv 9ad8 e9ab98,e2bebc 9ad8,2fbc 00009ad8,00002fbc b0aa b0aa b0aa b0aa b0aa b0aa b0aa
+2552 b0ab b0ab b0ab * 2922,586e * 8ea1a9a2,8ea1d8ee,a9a2,d8ee,8ea1a9a2v,8ea1d8eev,a9a2v,d8eev 9b25 e2bebe,e9aca5 2fbe,9b25 00002fbe,00009b25 b0ab b0ab b0ab b0ab b0ab b0ab b0ab
+2553 b0ac b0ac b0ac * 2924,586f * 8ea1a9a4,8ea1d8ef,a9a4,d8ef,8ea1a9a4v,8ea1d8efv,a9a4v,d8efv 9b32 e9acb2,e2bf80 9b32,2fc0 00009b32,00002fc0 b0ac b0ac b0ac b0ac b0ac b0ac b0ac
+2554 b0ad b0ad b0ad * 2925,5870 * 8ea1a9a5,8ea1d8f0,a9a5,d8f0,8ea1a9a5v,8ea1d8f0v,a9a5v,d8f0v 9b3c e9acbc,e2bf81 9b3c,2fc1 00009b3c,00002fc1 b0ad b0ad b0ad b0ad b0ad b0ad b0ad
+2555 b0ae b0ae b0ae * 5871 * 8ea1d8f1,d8f1,8ea1d8f1v,d8f1v 4e7e e4b9be 4e7e 00004e7e b0ae b0ae b0ae b0ae b0ae b0ae b0ae
+2556 b0af b0af b0af * 5872 * 8ea1d8f2,d8f2,8ea1d8f2v,d8f2v 507a e581ba 507a 0000507a b0af b0af b0af b0af b0af b0af b0af
+2557 b0b0 b0b0 b0b0 * 5873 * 8ea1d8f3,d8f3,8ea1d8f3v,d8f3v 507d e581bd,ee80a6 507d,e026 0000507d,0000e026 fa66,b0b0 b0b0 b0b0 b0b0 b0b0 b0b0 fa66,b0b0
+2558 b0b1 b0b1 b0b1 * 5874 * 8ea1d8f4,d8f4,8ea1d8f4v,d8f4v 505c e5819c 505c 0000505c b0b1 b0b1 b0b1 b0b1 b0b1 b0b1 b0b1
+2559 b0b2 b0b2 b0b2 * 5875 * 8ea1d8f5,d8f5,8ea1d8f5v,d8f5v 5047 e58187 5047 00005047 b0b2 b0b2 b0b2 b0b2 b0b2 b0b2 b0b2
+2560 b0b3 b0b3 b0b3 * 5876 * 8ea1d8f6,d8f6,8ea1d8f6v,d8f6v 5043 e58183 5043 00005043 b0b3 b0b3 b0b3 b0b3 b0b3 b0b3 b0b3
+2561 b0b4 b0b4 b0b4 * 5877 * 8ea1d8f7,d8f7,8ea1d8f7v,d8f7v 504c e5818c 504c 0000504c b0b4 b0b4 b0b4 b0b4 b0b4 b0b4 b0b4
+2562 b0b5 b0b5 b0b5 * 5878 * 8ea1d8f8,d8f8,8ea1d8f8v,d8f8v 505a e5819a 505a 0000505a b0b5 b0b5 b0b5 b0b5 b0b5 b0b5 b0b5
+2563 b0b6 b0b6 b0b6 * 5879 * 8ea1d8f9,d8f9,8ea1d8f9v,d8f9v 5049 e58189 5049 00005049 b0b6 b0b6 b0b6 b0b6 b0b6 b0b6 b0b6
+2564 b0b7 b0b7 b0b7 * 587a * 8ea1d8fa,d8fa,8ea1d8fav,d8fav 5065 e581a5 5065 00005065 b0b7 b0b7 b0b7 b0b7 b0b7 b0b7 b0b7
+2565 b0b8 b0b8 b0b8 * 587b * 8ea1d8fb,d8fb,8ea1d8fbv,d8fbv 5076 e581b6 5076 00005076 b0b8 b0b8 b0b8 b0b8 b0b8 b0b8 b0b8
+2566 b0b9 b0b9 b0b9 * 587c * 8ea1d8fc,d8fc,8ea1d8fcv,d8fcv 504e e5818e 504e 0000504e b0b9 b0b9 b0b9 b0b9 b0b9 b0b9 b0b9
+2567 b0ba b0ba b0ba * 587d * 8ea1d8fd,d8fd,8ea1d8fdv,d8fdv 5055 e58195 5055 00005055 b0ba b0ba b0ba b0ba b0ba b0ba b0ba
+2568 b0bb b0bb b0bb * 587e * 8ea1d8fe,d8fe,8ea1d8fev,d8fev 5075 e581b5 5075 00005075 b0bb b0bb b0bb b0bb b0bb b0bb b0bb
+2569 b0bc b0bc b0bc * 5921 * 8ea1d9a1,d9a1,8ea1d9a1v,d9a1v 5074 e581b4 5074 00005074 b0bc b0bc b0bc b0bc b0bc b0bc b0bc
+2570 b0bd b0bd b0bd * 5922 * 8ea1d9a2,d9a2,8ea1d9a2v,d9a2v 5077 e581b7 5077 00005077 b0bd b0bd b0bd b0bd b0bd b0bd b0bd
+2571 b0be b0be b0be * 5923 * 8ea1d9a3,d9a3,8ea1d9a3v,d9a3v 504f e5818f 504f 0000504f b0be b0be b0be b0be b0be b0be b0be
+2572 b0bf b0bf b0bf * 5924 * 8ea1d9a4,d9a4,8ea1d9a4v,d9a4v 500f e5808f 500f 0000500f b0bf b0bf b0bf b0bf b0bf b0bf b0bf
+2573 b0c0 b0c0 b0c0 * 5925 * 8ea1d9a5,d9a5,8ea1d9a5v,d9a5v 506f e581af 506f 0000506f b0c0 b0c0 b0c0 b0c0 b0c0 b0c0 b0c0
+2574 b0c1 b0c1 b0c1 * 5926 * 8ea1d9a6,d9a6,8ea1d9a6v,d9a6v 506d e581ad 506d 0000506d b0c1 b0c1 b0c1 b0c1 b0c1 b0c1 b0c1
+2575 b0c2 b0c2 b0c2 * 5927 * 8ea1d9a7,d9a7,8ea1d9a7v,d9a7v 515c e5859c 515c 0000515c b0c2 b0c2 b0c2 b0c2 b0c2 b0c2 b0c2
+2576 b0c3 b0c3 b0c3 * 5928 * 8ea1d9a8,d9a8,8ea1d9a8v,d9a8v 5195 e58695 5195 00005195 b0c3 b0c3 b0c3 b0c3 b0c3 b0c3 b0c3
+2577 b0c4 b0c4 b0c4 * 5929 * 8ea1d9a9,d9a9,8ea1d9a9v,d9a9v 51f0 e587b0 51f0 000051f0 b0c4 b0c4 b0c4 b0c4 b0c4 b0c4 b0c4
+2578 b0c5 b0c5 b0c5 * 592a * 8ea1d9aa,d9aa,8ea1d9aav,d9aav 526a e589aa 526a 0000526a b0c5 b0c5 b0c5 b0c5 b0c5 b0c5 b0c5
+2579 b0c6 b0c6 b0c6 * 592b * 8ea1d9ab,d9ab,8ea1d9abv,d9abv 526f e589af 526f 0000526f b0c6 b0c6 b0c6 b0c6 b0c6 b0c6 b0c6
+2580 b0c7 b0c7 b0c7 * 592c * 8ea1d9ac,d9ac,8ea1d9acv,d9acv 52d2 e58b92 52d2 000052d2 b0c7 b0c7 b0c7 b0c7 b0c7 b0c7 b0c7
+2581 b0c8 b0c8 b0c8 * 592d * 8ea1d9ad,d9ad,8ea1d9adv,d9adv 52d9 e58b99 52d9 000052d9 b0c8 b0c8 b0c8 b0c8 b0c8 b0c8 b0c8
+2582 b0c9 b0c9 b0c9 * 592e * 8ea1d9ae,d9ae,8ea1d9aev,d9aev 52d8 e58b98 52d8 000052d8 b0c9 b0c9 b0c9 b0c9 b0c9 b0c9 b0c9
+2583 b0ca b0ca b0ca * 592f * 8ea1d9af,d9af,8ea1d9afv,d9afv 52d5 e58b95 52d5 000052d5 b0ca b0ca b0ca b0ca b0ca b0ca b0ca
+2584 b0cb b0cb b0cb * 5930 * 8ea1d9b0,d9b0,8ea1d9b0v,d9b0v 5310 e58c90 5310 00005310 b0cb b0cb b0cb b0cb b0cb b0cb b0cb
+2585 b0cc b0cc b0cc * 5931 * 8ea1d9b1,d9b1,8ea1d9b1v,d9b1v 530f e58c8f 530f 0000530f b0cc b0cc b0cc b0cc b0cc b0cc b0cc
+2586 b0cd b0cd b0cd * 5932 * 8ea1d9b2,d9b2,8ea1d9b2v,d9b2v 5319 e58c99 5319 00005319 b0cd b0cd b0cd b0cd b0cd b0cd b0cd
+2587 b0ce b0ce b0ce * 5933 * 8ea1d9b3,d9b3,8ea1d9b3v,d9b3v 533f e58cbf 533f 0000533f b0ce b0ce b0ce b0ce b0ce b0ce b0ce
+2588 b0cf b0cf b0cf * 5934 * 8ea1d9b4,d9b4,8ea1d9b4v,d9b4v 5340 e58d80 5340 00005340 b0cf b0cf b0cf b0cf b0cf b0cf b0cf
+2589 b0d0 b0d0 b0d0 * 5935 * 8ea1d9b5,d9b5,8ea1d9b5v,d9b5v 533e e58cbe 533e 0000533e b0d0 b0d0 b0d0 b0d0 b0d0 b0d0 b0d0
+2590 b0d1 b0d1 b0d1 * 5936 * 8ea1d9b6,d9b6,8ea1d9b6v,d9b6v 53c3 e58f83 53c3 000053c3 b0d1 b0d1 b0d1 b0d1 b0d1 b0d1 b0d1
+2591 b0d2 b0d2 b0d2 * 5937 * 8ea1d9b7,d9b7,8ea1d9b7v,d9b7v 66fc e69bbc 66fc 000066fc b0d2 b0d2 b0d2 b0d2 b0d2 b0d2 b0d2
+2592 b0d3 b0d3 b0d3 * 5938 * 8ea1d9b8,d9b8,8ea1d9b8v,d9b8v 5546 e59586 5546 00005546 b0d3 b0d3 b0d3 b0d3 b0d3 b0d3 b0d3
+2593 b0d4 b0d4 b0d4 * 5939 * 8ea1d9b9,d9b9,8ea1d9b9v,d9b9v 556a e595aa 556a 0000556a b0d4 b0d4 b0d4 b0d4 b0d4 b0d4 b0d4
+2594 b0d5 b0d5 b0d5 * 593a * 8ea1d9ba,d9ba,8ea1d9bav,d9bav 5566 e595a6 5566 00005566 b0d5 b0d5 b0d5 b0d5 b0d5 b0d5 b0d5
+2595 b0d6 b0d6 b0d6 * 593b * 8ea1d9bb,d9bb,8ea1d9bbv,d9bbv 5544 e59584 5544 00005544 b0d6 b0d6 b0d6 b0d6 b0d6 b0d6 b0d6
+2596 b0d7 b0d7 b0d7 * 593c * 8ea1d9bc,d9bc,8ea1d9bcv,d9bcv 555e e5959e 555e 0000555e b0d7 b0d7 b0d7 b0d7 b0d7 b0d7 b0d7
+2597 b0d8 b0d8 b0d8 * 593d * 8ea1d9bd,d9bd,8ea1d9bdv,d9bdv 5561 e595a1 5561 00005561 b0d8 b0d8 b0d8 b0d8 b0d8 b0d8 b0d8
+2598 b0d9 b0d9 b0d9 * 593e * 8ea1d9be,d9be,8ea1d9bev,d9bev 5543 e59583 5543 00005543 b0d9 b0d9 b0d9 b0d9 b0d9 b0d9 b0d9
+2599 b0da b0da b0da * 593f * 8ea1d9bf,d9bf,8ea1d9bfv,d9bfv 554a e5958a 554a 0000554a b0da b0da b0da b0da b0da b0da b0da
+2600 b0db b0db b0db * 5940 * 8ea1d9c0,d9c0,8ea1d9c0v,d9c0v 5531 e594b1 5531 00005531 b0db b0db b0db b0db b0db b0db b0db
+2601 b0dc b0dc b0dc * 5941 * 8ea1d9c1,d9c1,8ea1d9c1v,d9c1v 5556 e59596 5556 00005556 b0dc b0dc b0dc b0dc b0dc b0dc b0dc
+2602 b0dd b0dd b0dd * 5942 * 8ea1d9c2,d9c2,8ea1d9c2v,d9c2v 554f e5958f 554f 0000554f b0dd b0dd b0dd b0dd b0dd b0dd b0dd
+2603 b0de b0de b0de * 5943 * 8ea1d9c3,d9c3,8ea1d9c3v,d9c3v 5555 e59595 5555 00005555 b0de b0de b0de b0de b0de b0de b0de
+2604 b0df b0df b0df * 5944 * 8ea1d9c4,d9c4,8ea1d9c4v,d9c4v 552f e594af 552f 0000552f b0df b0df b0df b0df b0df b0df b0df
+2605 b0e0 b0e0 b0e0 * 5945 * 8ea1d9c5,d9c5,8ea1d9c5v,d9c5v 5564 e595a4 5564 00005564 b0e0 b0e0 b0e0 b0e0 b0e0 b0e0 b0e0
+2606 b0e1 b0e1 b0e1 * 5946 * 8ea1d9c6,d9c6,8ea1d9c6v,d9c6v 5538 e594b8 5538 00005538 b0e1 b0e1 b0e1 b0e1 b0e1 b0e1 b0e1
+2607 b0e2 b0e2 b0e2 * 5947 * 8ea1d9c7,d9c7,8ea1d9c7v,d9c7v 552e e594ae 552e 0000552e b0e2 b0e2 b0e2 b0e2 b0e2 b0e2 b0e2
+2608 b0e3 b0e3 b0e3 * 5948 * 8ea1d9c8,d9c8,8ea1d9c8v,d9c8v 555c e5959c 555c 0000555c b0e3 b0e3 b0e3 b0e3 b0e3 b0e3 b0e3
+2609 b0e4 b0e4 b0e4 * 5949 * 8ea1d9c9,d9c9,8ea1d9c9v,d9c9v 552c e594ac 552c 0000552c b0e4 b0e4 b0e4 b0e4 b0e4 b0e4 b0e4
+2610 b0e5 b0e5 b0e5 * 594a * 8ea1d9ca,d9ca,8ea1d9cav,d9cav 5563 e595a3 5563 00005563 b0e5 b0e5 b0e5 b0e5 b0e5 b0e5 b0e5
+2611 b0e6 b0e6 b0e6 * 594b * 8ea1d9cb,d9cb,8ea1d9cbv,d9cbv 5533 e594b3 5533 00005533 b0e6 b0e6 b0e6 b0e6 b0e6 b0e6 b0e6
+2612 b0e7 b0e7 b0e7 * 594c * 8ea1d9cc,d9cc,8ea1d9ccv,d9ccv 5541 e59581 5541 00005541 b0e7 b0e7 b0e7 b0e7 b0e7 b0e7 b0e7
+2613 b0e8 b0e8 b0e8 * 594d * 8ea1d9cd,d9cd,8ea1d9cdv,d9cdv 5557 e59597 5557 00005557 b0e8 b0e8 b0e8 b0e8 b0e8 b0e8 b0e8
+2614 b0e9 b0e9 b0e9 * 594e * 8ea1d9ce,d9ce,8ea1d9cev,d9cev 5708 e59c88 5708 00005708 b0e9 b0e9 b0e9 b0e9 b0e9 b0e9 b0e9
+2615 b0ea b0ea b0ea * 594f * 8ea1d9cf,d9cf,8ea1d9cfv,d9cfv 570b e59c8b 570b 0000570b b0ea b0ea b0ea b0ea b0ea b0ea b0ea
+2616 b0eb b0eb b0eb * 5950 * 8ea1d9d0,d9d0,8ea1d9d0v,d9d0v 5709 e59c89 5709 00005709 b0eb b0eb b0eb b0eb b0eb b0eb b0eb
+2617 b0ec b0ec b0ec * 5951 * 8ea1d9d1,d9d1,8ea1d9d1v,d9d1v 57df e59f9f 57df 000057df b0ec b0ec b0ec b0ec b0ec b0ec b0ec
+2618 b0ed b0ed b0ed * 5952 * 8ea1d9d2,d9d2,8ea1d9d2v,d9d2v 5805 e5a085 5805 00005805 b0ed b0ed b0ed b0ed b0ed b0ed b0ed
+2619 b0ee b0ee b0ee * 5953 * 8ea1d9d3,d9d3,8ea1d9d3v,d9d3v 580a e5a08a 580a 0000580a b0ee b0ee b0ee b0ee b0ee b0ee b0ee
+2620 b0ef b0ef b0ef * 5954 * 8ea1d9d4,d9d4,8ea1d9d4v,d9d4v 5806 e5a086 5806 00005806 b0ef b0ef b0ef b0ef b0ef b0ef b0ef
+2621 b0f0 b0f0 b0f0 * 5955 * 8ea1d9d5,d9d5,8ea1d9d5v,d9d5v 57e0 e59fa0 57e0 000057e0 b0f0 b0f0 b0f0 b0f0 b0f0 b0f0 b0f0
+2622 b0f1 b0f1 b0f1 * 5956 * 8ea1d9d6,d9d6,8ea1d9d6v,d9d6v 57e4 e59fa4 57e4 000057e4 b0f1 b0f1 b0f1 b0f1 b0f1 b0f1 b0f1
+2623 b0f2 b0f2 b0f2 * 5957 * 8ea1d9d7,d9d7,8ea1d9d7v,d9d7v 57fa e59fba 57fa 000057fa b0f2 b0f2 b0f2 b0f2 b0f2 b0f2 b0f2
+2624 b0f3 b0f3 b0f3 * 5958 * 8ea1d9d8,d9d8,8ea1d9d8v,d9d8v 5802 e5a082 5802 00005802 b0f3 b0f3 b0f3 b0f3 b0f3 b0f3 b0f3
+2625 b0f4 b0f4 b0f4 * 5959 * 8ea1d9d9,d9d9,8ea1d9d9v,d9d9v 5835 e5a0b5 5835 00005835 b0f4 b0f4 b0f4 b0f4 b0f4 b0f4 b0f4
+2626 b0f5 b0f5 b0f5 * 595a * 8ea1d9da,d9da,8ea1d9dav,d9dav 57f7 e59fb7 57f7 000057f7 b0f5 b0f5 b0f5 b0f5 b0f5 b0f5 b0f5
+2627 b0f6 b0f6 b0f6 * 595b * 8ea1d9db,d9db,8ea1d9dbv,d9dbv 57f9 e59fb9 57f9 000057f9 b0f6 b0f6 b0f6 b0f6 b0f6 b0f6 b0f6
+2628 b0f7 b0f7 b0f7 * 595c * 8ea1d9dc,d9dc,8ea1d9dcv,d9dcv 5920 e5a4a0 5920 00005920 b0f7 b0f7 b0f7 b0f7 b0f7 b0f7 b0f7
+2629 b0f8 b0f8 b0f8 * 595d * 8ea1d9dd,d9dd,8ea1d9ddv,d9ddv 5962 e5a5a2 5962 00005962 b0f8 b0f8 b0f8 b0f8 b0f8 b0f8 b0f8
+2630 b0f9 b0f9 b0f9 * 595e * 8ea1d9de,d9de,8ea1d9dev,d9dev 5a36 e5a8b6 5a36 00005a36 b0f9 b0f9 b0f9 b0f9 b0f9 b0f9 b0f9
+2631 b0fa b0fa b0fa * 595f * 8ea1d9df,d9df,8ea1d9dfv,d9dfv 5a41 e5a981 5a41 00005a41 b0fa b0fa b0fa b0fa b0fa b0fa b0fa
+2632 b0fb b0fb b0fb * 5960 * 8ea1d9e0,d9e0,8ea1d9e0v,d9e0v 5a49 e5a989 5a49 00005a49 b0fb b0fb b0fb b0fb b0fb b0fb b0fb
+2633 b0fc b0fc b0fc * 5961 * 8ea1d9e1,d9e1,8ea1d9e1v,d9e1v 5a66 e5a9a6 5a66 00005a66 b0fc b0fc b0fc b0fc b0fc b0fc b0fc
+2634 b0fd b0fd b0fd * 5962 * 8ea1d9e2,d9e2,8ea1d9e2v,d9e2v 5a6a e5a9aa 5a6a 00005a6a b0fd b0fd b0fd b0fd b0fd b0fd b0fd
+2635 b0fe b0fe b0fe * 5963 * 8ea1d9e3,d9e3,8ea1d9e3v,d9e3v 5a40 e5a980 5a40 00005a40 b0fe b0fe b0fe b0fe b0fe b0fe b0fe
+2636 b140 b140 b140 * 5964 * 8ea1d9e4,d9e4,8ea1d9e4v,d9e4v 5a3c e5a8bc 5a3c 00005a3c b140 b140 b140 b140 b140 b140 b140
+2637 b141 b141 b141 * 5965 * 8ea1d9e5,d9e5,8ea1d9e5v,d9e5v 5a62 e5a9a2 5a62 00005a62 b141 b141 b141 b141 b141 b141 b141
+2638 b142 b142 b142 * 5966 * 8ea1d9e6,d9e6,8ea1d9e6v,d9e6v 5a5a e5a99a 5a5a 00005a5a b142 b142 b142 b142 b142 b142 b142
+2639 b143 b143 b143 * 5967 * 8ea1d9e7,d9e7,8ea1d9e7v,d9e7v 5a46 e5a986 5a46 00005a46 b143 b143 b143 b143 b143 b143 b143
+2640 b144 b144 b144 * 5968 * 8ea1d9e8,d9e8,8ea1d9e8v,d9e8v 5a4a e5a98a 5a4a 00005a4a b144 b144 b144 b144 b144 b144 b144
+2641 b145 b145 b145 * 5969 * 8ea1d9e9,d9e9,8ea1d9e9v,d9e9v 5b70 e5adb0 5b70 00005b70 b145 b145 b145 b145 b145 b145 b145
+2642 b146 b146 b146 * 596a * 8ea1d9ea,d9ea,8ea1d9eav,d9eav 5bc7 e5af87 5bc7 00005bc7 b146 b146 b146 b146 b146 b146 b146
+2643 b147 b147 b147 * 596b * 8ea1d9eb,d9eb,8ea1d9ebv,d9ebv 5bc5 e5af85 5bc5 00005bc5 b147 b147 b147 b147 b147 b147 b147
+2644 b148 b148 b148 * 596c * 8ea1d9ec,d9ec,8ea1d9ecv,d9ecv 5bc4 e5af84 5bc4 00005bc4 b148 b148 b148 b148 b148 b148 b148
+2645 b149 b149 b149 * 596d * 8ea1d9ed,d9ed,8ea1d9edv,d9edv 5bc2 e5af82 5bc2 00005bc2 b149 b149 b149 b149 b149 b149 b149
+2646 b14a b14a b14a * 596e * 8ea1d9ee,d9ee,8ea1d9eev,d9eev 5bbf e5aebf 5bbf 00005bbf b14a b14a b14a b14a b14a b14a b14a
+2647 b14b b14b b14b * 596f * 8ea1d9ef,d9ef,8ea1d9efv,d9efv 5bc6 e5af86 5bc6 00005bc6 b14b b14b b14b b14b b14b b14b b14b
+2648 b14c b14c b14c * 5970 * 8ea1d9f0,d9f0,8ea1d9f0v,d9f0v 5c09 e5b089 5c09 00005c09 b14c b14c b14c b14c b14c b14c b14c
+2649 b14d b14d b14d * 5971 * 8ea1d9f1,d9f1,8ea1d9f1v,d9f1v 5c08 e5b088 5c08 00005c08 b14d b14d b14d b14d b14d b14d b14d
+2650 b14e b14e b14e * 5972 * 8ea1d9f2,d9f2,8ea1d9f2v,d9f2v 5c07 e5b087 5c07 00005c07 b14e b14e b14e b14e b14e b14e b14e
+2651 b14f b14f b14f * 5973 * 8ea1d9f3,d9f3,8ea1d9f3v,d9f3v 5c60 e5b1a0 5c60 00005c60 b14f b14f b14f b14f b14f b14f b14f
+2652 b150 b150 b150 * 5974 * 8ea1d9f4,d9f4,8ea1d9f4v,d9f4v 5c5c e5b19c 5c5c 00005c5c b150 b150 b150 b150 b150 b150 b150
+2653 b151 b151 b151 * 5975 * 8ea1d9f5,d9f5,8ea1d9f5v,d9f5v 5c5d e5b19d 5c5d 00005c5d b151 b151 b151 b151 b151 b151 b151
+2654 b152 b152 b152 * 5976 * 8ea1d9f6,d9f6,8ea1d9f6v,d9f6v 5d07 e5b487 5d07 00005d07 b152 b152 b152 b152 b152 b152 b152
+2655 b153 b153 b153 * 5977 * 8ea1d9f7,d9f7,8ea1d9f7v,d9f7v 5d06 e5b486 5d06 00005d06 b153 b153 b153 b153 b153 b153 b153
+2656 b154 b154 b154 * 5978 * 8ea1d9f8,d9f8,8ea1d9f8v,d9f8v 5d0e e5b48e 5d0e 00005d0e b154 b154 b154 b154 b154 b154 b154
+2657 b155 b155 b155 * 5979 * 8ea1d9f9,d9f9,8ea1d9f9v,d9f9v 5d1b e5b49b 5d1b 00005d1b b155 b155 b155 b155 b155 b155 b155
+2658 b156 b156 b156 * 597a * 8ea1d9fa,d9fa,8ea1d9fav,d9fav 5d16 e5b496 5d16 00005d16 b156 b156 b156 b156 b156 b156 b156
+2659 b157 b157 b157 * 597b * 8ea1d9fb,d9fb,8ea1d9fbv,d9fbv 5d22 e5b4a2 5d22 00005d22 b157 b157 b157 b157 b157 b157 b157
+2660 b158 b158 b158 * 597c * 8ea1d9fc,d9fc,8ea1d9fcv,d9fcv 5d11 e5b491 5d11 00005d11 b158 b158 b158 b158 b158 b158 b158
+2661 b159 b159 b159 * 597d * 8ea1d9fd,d9fd,8ea1d9fdv,d9fdv 5d29 e5b4a9 5d29 00005d29 b159 b159 b159 b159 b159 b159 b159
+2662 b15a b15a b15a * 597e * 8ea1d9fe,d9fe,8ea1d9fev,d9fev 5d14 e5b494 5d14 00005d14 b15a b15a b15a b15a b15a b15a b15a
+2663 b15b b15b b15b * 5a21 * 8ea1daa1,daa1,8ea1daa1v,daa1v 5d19 e5b499 5d19 00005d19 b15b b15b b15b b15b b15b b15b b15b
+2664 b15c b15c b15c * 5a22 * 8ea1daa2,daa2,8ea1daa2v,daa2v 5d24 e5b4a4 5d24 00005d24 b15c b15c b15c b15c b15c b15c b15c
+2665 b15d b15d b15d * 5a23 * 8ea1daa3,daa3,8ea1daa3v,daa3v 5d27 e5b4a7 5d27 00005d27 b15d b15d b15d b15d b15d b15d b15d
+2666 b15e b15e b15e * 5a24 * 8ea1daa4,daa4,8ea1daa4v,daa4v 5d17 e5b497 5d17 00005d17 b15e b15e b15e b15e b15e b15e b15e
+2667 b15f b15f b15f * 5a25 * 8ea1daa5,daa5,8ea1daa5v,daa5v 5de2 e5b7a2 5de2 00005de2 b15f b15f b15f b15f b15f b15f b15f
+2668 b160 b160 b160 * 5a26 * 8ea1daa6,daa6,8ea1daa6v,daa6v 5e38 e5b8b8 5e38 00005e38 b160 b160 b160 b160 b160 b160 b160
+2669 b161 b161 b161 * 5a27 * 8ea1daa7,daa7,8ea1daa7v,daa7v 5e36 e5b8b6 5e36 00005e36 b161 b161 b161 b161 b161 b161 b161
+2670 b162 b162 b162 * 5a28 * 8ea1daa8,daa8,8ea1daa8v,daa8v 5e33 e5b8b3 5e33 00005e33 b162 b162 b162 b162 b162 b162 b162
+2671 b163 b163 b163 * 5a29 * 8ea1daa9,daa9,8ea1daa9v,daa9v 5e37 e5b8b7 5e37 00005e37 b163 b163 b163 b163 b163 b163 b163
+2672 b164 b164 b164 * 5a2a * 8ea1daaa,daaa,8ea1daaav,daaav 5eb7 e5bab7 5eb7 00005eb7 b164 b164 b164 b164 b164 b164 b164
+2673 b165 b165 b165 * 5a2b * 8ea1daab,daab,8ea1daabv,daabv 5eb8 e5bab8 5eb8 00005eb8 b165 b165 b165 b165 b165 b165 b165
+2674 b166 b166 b166 * 5a2c * 8ea1daac,daac,8ea1daacv,daacv 5eb6 e5bab6 5eb6 00005eb6 b166 b166 b166 b166 b166 b166 b166
+2675 b167 b167 b167 * 5a2d * 8ea1daad,daad,8ea1daadv,daadv 5eb5 e5bab5 5eb5 00005eb5 b167 b167 b167 b167 b167 b167 b167
+2676 b168 b168 b168 * 5a2e * 8ea1daae,daae,8ea1daaev,daaev 5ebe e5babe 5ebe 00005ebe b168 b168 b168 b168 b168 b168 b168
+2677 b169 b169 b169 * 5a2f * 8ea1daaf,daaf,8ea1daafv,daafv 5f35 e5bcb5 5f35 00005f35 b169 b169 b169 b169 b169 b169 b169
+2678 b16a b16a b16a * 5a30 * 8ea1dab0,dab0,8ea1dab0v,dab0v 5f37 e5bcb7 5f37 00005f37 b16a b16a b16a b16a b16a b16a b16a
+2679 b16b b16b b16b * 5a31 * 8ea1dab1,dab1,8ea1dab1v,dab1v 5f57 e5bd97 5f57 00005f57 b16b b16b b16b b16b b16b b16b b16b
+2680 b16c b16c b16c * 5a32 * 8ea1dab2,dab2,8ea1dab2v,dab2v 5f6c e5bdac 5f6c 00005f6c b16c b16c b16c b16c b16c b16c b16c
+2681 b16d b16d b16d * 5a33 * 8ea1dab3,dab3,8ea1dab3v,dab3v 5f69 e5bda9 5f69 00005f69 b16d b16d b16d b16d b16d b16d b16d
+2682 b16e b16e b16e * 5a34 * 8ea1dab4,dab4,8ea1dab4v,dab4v 5f6b e5bdab 5f6b 00005f6b b16e b16e b16e b16e b16e b16e b16e
+2683 b16f b16f b16f * 5a35 * 8ea1dab5,dab5,8ea1dab5v,dab5v 5f97 e5be97 5f97 00005f97 b16f b16f b16f b16f b16f b16f b16f
+2684 b170 b170 b170 * 5a36 * 8ea1dab6,dab6,8ea1dab6v,dab6v 5f99 e5be99 5f99 00005f99 b170 b170 b170 b170 b170 b170 b170
+2685 b171 b171 b171 * 5a37 * 8ea1dab7,dab7,8ea1dab7v,dab7v 5f9e e5be9e 5f9e 00005f9e b171 b171 b171 b171 b171 b171 b171
+2686 b172 b172 b172 * 5a38 * 8ea1dab8,dab8,8ea1dab8v,dab8v 5f98 e5be98 5f98 00005f98 b172 b172 b172 b172 b172 b172 b172
+2687 b173 b173 b173 * 5a39 * 8ea1dab9,dab9,8ea1dab9v,dab9v 5fa1 e5bea1 5fa1 00005fa1 b173 b173 b173 b173 b173 b173 b173
+2688 b174 b174 b174 * 5a3a * 8ea1daba,daba,8ea1dabav,dabav 5fa0 e5bea0 5fa0 00005fa0 b174 b174 b174 b174 b174 b174 b174
+2689 b175 b175 b175 * 5a3b * 8ea1dabb,dabb,8ea1dabbv,dabbv 5f9c e5be9c 5f9c 00005f9c b175 b175 b175 b175 b175 b175 b175
+2690 b176 b176 b176 * 5a3c * 8ea1dabc,dabc,8ea1dabcv,dabcv 607f e681bf 607f 0000607f b176 b176 b176 b176 b176 b176 b176
+2691 b177 b177 b177 * 5a3d * 8ea1dabd,dabd,8ea1dabdv,dabdv 60a3 e682a3 60a3 000060a3 b177 b177 b177 b177 b177 b177 b177
+2692 b178 b178 b178 * 5a3e * 8ea1dabe,dabe,8ea1dabev,dabev 6089 e68289 6089 00006089 b178 b178 b178 b178 b178 b178 b178
+2693 b179 b179 b179 * 5a3f * 8ea1dabf,dabf,8ea1dabfv,dabfv 60a0 e682a0 60a0 000060a0 b179 b179 b179 b179 b179 b179 b179
+2694 b17a b17a b17a * 5a40 * 8ea1dac0,dac0,8ea1dac0v,dac0v 60a8 e682a8 60a8 000060a8 b17a b17a b17a b17a b17a b17a b17a
+2695 b17b b17b b17b * 5a41 * 8ea1dac1,dac1,8ea1dac1v,dac1v 60cb e6838b 60cb 000060cb b17b b17b b17b b17b b17b b17b b17b
+2696 b17c b17c b17c * 5a42 * 8ea1dac2,dac2,8ea1dac2v,dac2v 60b4 e682b4 60b4 000060b4 b17c b17c b17c b17c b17c b17c b17c
+2697 b17d b17d b17d * 5a43 * 8ea1dac3,dac3,8ea1dac3v,dac3v 60e6 e683a6 60e6 000060e6 b17d b17d b17d b17d b17d b17d b17d
+2698 b17e b17e b17e * 5a44 * 8ea1dac4,dac4,8ea1dac4v,dac4v 60bd e682bd 60bd 000060bd b17e b17e b17e b17e b17e b17e b17e
+2699 b1a1 b1a1 b1a1 * 5a45 * 8ea1dac5,dac5,8ea1dac5v,dac5v 60c5 e68385 60c5 000060c5 b1a1 b1a1 b1a1 b1a1 b1a1 b1a1 b1a1
+2700 b1a2 b1a2 b1a2 * 5a46 * 8ea1dac6,dac6,8ea1dac6v,dac6v 60bb e682bb 60bb 000060bb b1a2 b1a2 b1a2 b1a2 b1a2 b1a2 b1a2
+2701 b1a3 b1a3 b1a3 * 5a47 * 8ea1dac7,dac7,8ea1dac7v,dac7v 60b5 e682b5 60b5 000060b5 b1a3 b1a3 b1a3 b1a3 b1a3 b1a3 b1a3
+2702 b1a4 b1a4 b1a4 * 5a48 * 8ea1dac8,dac8,8ea1dac8v,dac8v 60dc e6839c 60dc 000060dc b1a4 b1a4 b1a4 b1a4 b1a4 b1a4 b1a4
+2703 b1a5 b1a5 b1a5 * 5a49 * 8ea1dac9,dac9,8ea1dac9v,dac9v 60bc e682bc 60bc 000060bc b1a5 b1a5 b1a5 b1a5 b1a5 b1a5 b1a5
+2704 b1a6 b1a6 b1a6 * 5a4a * 8ea1daca,daca,8ea1dacav,dacav 60d8 e68398 60d8 000060d8 b1a6 b1a6 b1a6 b1a6 b1a6 b1a6 b1a6
+2705 b1a7 b1a7 b1a7 * 5a4b * 8ea1dacb,dacb,8ea1dacbv,dacbv 60d5 e68395 60d5 000060d5 b1a7 b1a7 b1a7 b1a7 b1a7 b1a7 b1a7
+2706 b1a8 b1a8 b1a8 * 5a4c * 8ea1dacc,dacc,8ea1daccv,daccv 60c6 e68386 60c6 000060c6 b1a8 b1a8 b1a8 b1a8 b1a8 b1a8 b1a8
+2707 b1a9 b1a9 b1a9 * 5a4d * 8ea1dacd,dacd,8ea1dacdv,dacdv 60df e6839f 60df 000060df b1a9 b1a9 b1a9 b1a9 b1a9 b1a9 b1a9
+2708 b1aa b1aa b1aa * 5a4e * 8ea1dace,dace,8ea1dacev,dacev 60b8 e682b8 60b8 000060b8 b1aa b1aa b1aa b1aa b1aa b1aa b1aa
+2709 b1ab b1ab b1ab * 5a4f * 8ea1dacf,dacf,8ea1dacfv,dacfv 60da e6839a 60da 000060da b1ab b1ab,fc63 915a,b1ab b1ab b1ab b1ab b1ab
+2710 b1ac b1ac b1ac * 5a50 * 8ea1dad0,dad0,8ea1dad0v,dad0v 60c7 e68387 60c7 000060c7 b1ac b1ac b1ac b1ac b1ac b1ac b1ac
+2711 b1ad b1ad b1ad * 5a51 * 8ea1dad1,dad1,8ea1dad1v,dad1v 621a e6889a 621a 0000621a b1ad b1ad b1ad b1ad b1ad b1ad b1ad
+2712 b1ae b1ae b1ae * 5a52 * 8ea1dad2,dad2,8ea1dad2v,dad2v 621b e6889b 621b 0000621b b1ae b1ae b1ae b1ae b1ae b1ae b1ae
+2713 b1af b1af b1af * 5a53 * 8ea1dad3,dad3,8ea1dad3v,dad3v 6248 e68988 6248 00006248 b1af b1af b1af b1af b1af b1af b1af
+2714 b1b0 b1b0 b1b0 * 5a54 * 8ea1dad4,dad4,8ea1dad4v,dad4v 63a0 e68ea0 63a0 000063a0 b1b0 b1b0 b1b0 b1b0 b1b0 b1b0 b1b0
+2715 b1b1 b1b1 b1b1 * 5a55 * 8ea1dad5,dad5,8ea1dad5v,dad5v 63a7 e68ea7 63a7 000063a7 b1b1 b1b1 b1b1 b1b1 b1b1 b1b1 b1b1
+2716 b1b2 b1b2 b1b2 * 5a56 * 8ea1dad6,dad6,8ea1dad6v,dad6v 6372 e68db2 6372 00006372 b1b2 b1b2 b1b2 b1b2 b1b2 b1b2 b1b2
+2717 b1b3 b1b3 b1b3 * 5a57 * 8ea1dad7,dad7,8ea1dad7v,dad7v 6396 e68e96 6396 00006396 b1b3 b1b3 b1b3 b1b3 b1b3 b1b3 b1b3
+2718 b1b4 b1b4 b1b4 * 5a58 * 8ea1dad8,dad8,8ea1dad8v,dad8v 63a2 e68ea2 63a2 000063a2 b1b4 b1b4 b1b4 b1b4 b1b4 b1b4 b1b4
+2719 b1b5 b1b5 b1b5 * 5a59 * 8ea1dad9,dad9,8ea1dad9v,dad9v 63a5 e68ea5 63a5 000063a5 b1b5 b1b5 b1b5 b1b5 b1b5 b1b5 b1b5
+2720 b1b6 b1b6 b1b6 * 5a5a * 8ea1dada,dada,8ea1dadav,dadav 6377 e68db7 6377 00006377 b1b6 b1b6 b1b6 b1b6 b1b6 b1b6 b1b6
+2721 b1b7 b1b7 b1b7 * 5a5b * 8ea1dadb,dadb,8ea1dadbv,dadbv 6367 e68da7 6367 00006367 b1b7 b1b7 b1b7 b1b7 b1b7 b1b7 b1b7
+2722 b1b8 b1b8 b1b8 * 5a5c * 8ea1dadc,dadc,8ea1dadcv,dadcv 6398 e68e98 6398 00006398 b1b8 b1b8 b1b8 b1b8 b1b8 b1b8 b1b8
+2723 b1b9 b1b9 b1b9 * 5a5d * 8ea1dadd,dadd,8ea1daddv,daddv 63aa e68eaa 63aa 000063aa b1b9 b1b9 b1b9 b1b9 b1b9 b1b9 b1b9
+2724 b1ba b1ba b1ba * 5a5e * 8ea1dade,dade,8ea1dadev,dadev 6371 e68db1 6371 00006371 b1ba b1ba b1ba b1ba b1ba b1ba b1ba
+2725 b1bb b1bb b1bb * 5a5f * 8ea1dadf,dadf,8ea1dadfv,dadfv 63a9 e68ea9 63a9 000063a9 b1bb b1bb b1bb b1bb b1bb b1bb b1bb
+2726 b1bc b1bc b1bc * 5a60 * 8ea1dae0,dae0,8ea1dae0v,dae0v 6389 e68e89 6389 00006389 b1bc b1bc b1bc b1bc b1bc b1bc b1bc
+2727 b1bd b1bd b1bd * 5a61 * 8ea1dae1,dae1,8ea1dae1v,dae1v 6383 e68e83 6383 00006383 b1bd b1bd b1bd b1bd b1bd b1bd b1bd
+2728 b1be b1be b1be * 5a62 * 8ea1dae2,dae2,8ea1dae2v,dae2v 639b e68e9b 639b 0000639b b1be b1be b1be b1be b1be b1be b1be
+2729 b1bf b1bf b1bf * 5a63 * 8ea1dae3,dae3,8ea1dae3v,dae3v 636b e68dab 636b 0000636b b1bf b1bf b1bf b1bf b1bf b1bf b1bf
+2730 b1c0 b1c0 b1c0 * 5a64 * 8ea1dae4,dae4,8ea1dae4v,dae4v 63a8 e68ea8 63a8 000063a8 b1c0 b1c0 b1c0 b1c0 b1c0 b1c0 b1c0
+2731 b1c1 b1c1 b1c1 * 5a65 * 8ea1dae5,dae5,8ea1dae5v,dae5v 6384 e68e84 6384 00006384 b1c1 b1c1 b1c1 b1c1 b1c1 b1c1 b1c1
+2732 b1c2 b1c2 b1c2 * 5a66 * 8ea1dae6,dae6,8ea1dae6v,dae6v 6388 e68e88 6388 00006388 b1c2 b1c2 b1c2 b1c2 b1c2 b1c2 b1c2
+2733 b1c3 b1c3 b1c3 * 5a67 * 8ea1dae7,dae7,8ea1dae7v,dae7v 6399 e68e99 6399 00006399 b1c3 b1c3 b1c3 b1c3 b1c3 b1c3 b1c3
+2734 b1c4 b1c4 b1c4 * 5a68 * 8ea1dae8,dae8,8ea1dae8v,dae8v 63a1 e68ea1 63a1 000063a1 b1c4 b1c4 b1c4 b1c4 b1c4 b1c4 b1c4
+2735 b1c5 b1c5 b1c5 * 5a69 * 8ea1dae9,dae9,8ea1dae9v,dae9v 63ac e68eac 63ac 000063ac b1c5 b1c5 b1c5 b1c5 b1c5 b1c5 b1c5
+2736 b1c6 b1c6 b1c6 * 5a6a * 8ea1daea,daea,8ea1daeav,daeav 6392 e68e92 6392 00006392 b1c6 b1c6 b1c6 b1c6 b1c6 b1c6 b1c6
+2737 b1c7 b1c7 b1c7 * 5a6b * 8ea1daeb,daeb,8ea1daebv,daebv 638f e68e8f 638f 0000638f b1c7 b1c7 b1c7 b1c7 b1c7 b1c7 b1c7
+2738 b1c8 b1c8 b1c8 * 5a6c * 8ea1daec,daec,8ea1daecv,daecv 6380 e68e80 6380 00006380 b1c8 b1c8 b1c8 b1c8 b1c8 b1c8 b1c8
+2739 b1c9 b1c9 b1c9 * 5a6d * 8ea1daed,daed,8ea1daedv,daedv 637b e68dbb 637b 0000637b b1c9 b1c9 b1c9 b1c9 b1c9 b1c9 b1c9
+2740 b1ca b1ca b1ca * 5a6e * 8ea1daee,daee,8ea1daeev,daeev 6369 e68da9 6369 00006369 b1ca b1ca b1ca b1ca b1ca b1ca b1ca
+2741 b1cb b1cb b1cb * 5a6f * 8ea1daef,daef,8ea1daefv,daefv 6368 e68da8 6368 00006368 b1cb b1cb b1cb b1cb b1cb b1cb b1cb
+2742 b1cc b1cc b1cc * 5a70 * 8ea1daf0,daf0,8ea1daf0v,daf0v 637a e68dba 637a 0000637a b1cc b1cc b1cc b1cc b1cc b1cc b1cc
+2743 b1cd b1cd b1cd * 5a71 * 8ea1daf1,daf1,8ea1daf1v,daf1v 655d e6959d 655d 0000655d b1cd b1cd b1cd b1cd b1cd b1cd b1cd
+2744 b1ce b1ce b1ce * 5a72 * 8ea1daf2,daf2,8ea1daf2v,daf2v 6556 e69596 6556 00006556 b1ce b1ce b1ce b1ce b1ce b1ce b1ce
+2745 b1cf b1cf b1cf * 5a73 * 8ea1daf3,daf3,8ea1daf3v,daf3v 6551 e69591 6551 00006551 b1cf b1cf b1cf b1cf b1cf b1cf b1cf
+2746 b1d0 b1d0 b1d0 * 5a74 * 8ea1daf4,daf4,8ea1daf4v,daf4v 6559 e69599 6559 00006559 b1d0 b1d0 b1d0 b1d0 b1d0,c8fe b1d0,fcfe b1d0
+2747 b1d1 b1d1 b1d1 * 5a75 * 8ea1daf5,daf5,8ea1daf5v,daf5v 6557 e69597 6557 00006557 b1d1 b1d1 b1d1 b1d1 b1d1 b1d1 b1d1
+2748 b1d2 b1d2 b1d2 * 5a76 * 8ea1daf6,daf6,8ea1daf6v,daf6v 555f e5959f 555f 0000555f b1d2 b1d2 b1d2 b1d2 b1d2 b1d2 b1d2
+2749 b1d3 b1d3 b1d3 * 5a77 * 8ea1daf7,daf7,8ea1daf7v,daf7v 654f e6958f 654f 0000654f b1d3 b1d3 b1d3 b1d3 b1d3 b1d3 b1d3
+2750 b1d4 b1d4 b1d4 * 5a78 * 8ea1daf8,daf8,8ea1daf8v,daf8v 6558 e69598 6558 00006558 b1d4 b1d4 b1d4 b1d4 b1d4 b1d4 b1d4
+2751 b1d5 b1d5 b1d5 * 5a79 * 8ea1daf9,daf9,8ea1daf9v,daf9v 6555 e69595 6555 00006555 b1d5 b1d5 b1d5 b1d5 b1d5 b1d5 b1d5
+2752 b1d6 b1d6 b1d6 * 5a7a * 8ea1dafa,dafa,8ea1dafav,dafav 6554 e69594 6554 00006554 b1d6 b1d6 b1d6 b1d6 b1d6 b1d6 b1d6
+2753 b1d7 b1d7 b1d7 * 5a7b * 8ea1dafb,dafb,8ea1dafbv,dafbv 659c e6969c 659c 0000659c b1d7 b1d7 b1d7 b1d7 b1d7 b1d7 b1d7
+2754 b1d8 b1d8 b1d8 * 5a7c * 8ea1dafc,dafc,8ea1dafcv,dafcv 659b e6969b 659b 0000659b b1d8 b1d8 b1d8 b1d8 b1d8 b1d8 b1d8
+2755 b1d9 b1d9 b1d9 * 5a7d * 8ea1dafd,dafd,8ea1dafdv,dafdv 65ac e696ac 65ac 000065ac b1d9 b1d9 b1d9 b1d9 b1d9 b1d9 b1d9
+2756 b1da b1da b1da * 5a7e * 8ea1dafe,dafe,8ea1dafev,dafev 65cf e6978f 65cf 000065cf b1da b1da b1da b1da b1da b1da b1da
+2757 b1db b1db b1db * 5b21 * 8ea1dba1,dba1,8ea1dba1v,dba1v 65cb e6978b 65cb 000065cb b1db b1db b1db b1db b1db b1db b1db
+2758 b1dc b1dc b1dc * 5b22 * 8ea1dba2,dba2,8ea1dba2v,dba2v 65cc e6978c 65cc 000065cc b1dc b1dc b1dc b1dc b1dc b1dc b1dc
+2759 b1dd b1dd b1dd * 5b23 * 8ea1dba3,dba3,8ea1dba3v,dba3v 65ce e6978e 65ce 000065ce b1dd b1dd b1dd b1dd b1dd b1dd b1dd
+2760 b1de b1de b1de * 5b24 * 8ea1dba4,dba4,8ea1dba4v,dba4v 665d e6999d 665d 0000665d b1de b1de b1de b1de b1de b1de b1de
+2761 b1df b1df b1df * 5b25 * 8ea1dba5,dba5,8ea1dba5v,dba5v 665a e6999a 665a 0000665a b1df b1df b1df b1df b1df b1df b1df
+2762 b1e0 b1e0 b1e0 * 5b26 * 8ea1dba6,dba6,8ea1dba6v,dba6v 6664 e699a4 6664 00006664 b1e0 b1e0 b1e0 b1e0 b1e0 b1e0 b1e0
+2763 b1e1 b1e1 b1e1 * 5b27 * 8ea1dba7,dba7,8ea1dba7v,dba7v 6668 e699a8 6668 00006668 b1e1 b1e1 b1e1 b1e1 b1e1 b1e1 b1e1
+2764 b1e2 b1e2 b1e2 * 5b28 * 8ea1dba8,dba8,8ea1dba8v,dba8v 6666 e699a6 6666 00006666 b1e2 b1e2 b1e2 b1e2 b1e2 b1e2 b1e2
+2765 b1e3 b1e3 b1e3 * 5b29 * 8ea1dba9,dba9,8ea1dba9v,dba9v 665e e6999e 665e 0000665e b1e3 b1e3 b1e3 b1e3 b1e3 b1e3 b1e3
+2766 b1e4 b1e4 b1e4 * 5b2a * 8ea1dbaa,dbaa,8ea1dbaav,dbaav 66f9 e69bb9 66f9 000066f9 b1e4 b1e4 b1e4 b1e4 b1e4 b1e4 b1e4
+2767 b1e5 b1e5 b1e5 * 5b2b * 8ea1dbab,dbab,8ea1dbabv,dbabv 52d7 e58b97 52d7 000052d7 b1e5 b1e5 b1e5 b1e5 b1e5 b1e5 b1e5
+2768 b1e6 b1e6 b1e6 * 5b2c * 8ea1dbac,dbac,8ea1dbacv,dbacv 671b e69c9b 671b 0000671b b1e6 b1e6 b1e6 b1e6 b1e6 b1e6 b1e6
+2769 b1e7 b1e7 b1e7 * 5b2d * 8ea1dbad,dbad,8ea1dbadv,dbadv 6881 e6a281 6881 00006881 b1e7 b1e7 b1e7 b1e7 b1e7 b1e7 b1e7
+2770 b1e8 b1e8 b1e8 * 5b2e * 8ea1dbae,dbae,8ea1dbaev,dbaev 68af e6a2af 68af 000068af b1e8 b1e8 b1e8 b1e8 b1e8 b1e8 b1e8
+2771 b1e9 b1e9 b1e9 * 5b2f * 8ea1dbaf,dbaf,8ea1dbafv,dbafv 68a2 e6a2a2 68a2 000068a2 b1e9 b1e9 b1e9 b1e9 b1e9 b1e9 b1e9
+2772 b1ea b1ea b1ea * 5b30 * 8ea1dbb0,dbb0,8ea1dbb0v,dbb0v 6893 e6a293 6893 00006893 b1ea b1ea b1ea b1ea b1ea b1ea b1ea
+2773 b1eb b1eb b1eb * 5b31 * 8ea1dbb1,dbb1,8ea1dbb1v,dbb1v 68b5 e6a2b5 68b5 000068b5 b1eb b1eb b1eb b1eb b1eb b1eb b1eb
+2774 b1ec b1ec b1ec * 5b32 * 8ea1dbb2,dbb2,8ea1dbb2v,dbb2v 687f e6a1bf 687f 0000687f b1ec b1ec b1ec b1ec b1ec b1ec b1ec
+2775 b1ed b1ed b1ed * 5b33 * 8ea1dbb3,dbb3,8ea1dbb3v,dbb3v 6876 e6a1b6 6876 00006876 b1ed b1ed b1ed b1ed b1ed b1ed b1ed
+2776 b1ee b1ee b1ee * 5b34 * 8ea1dbb4,dbb4,8ea1dbb4v,dbb4v 68b1 e6a2b1 68b1 000068b1 b1ee b1ee b1ee b1ee b1ee b1ee b1ee
+2777 b1ef b1ef b1ef * 5b35 * 8ea1dbb5,dbb5,8ea1dbb5v,dbb5v 68a7 e6a2a7 68a7 000068a7 b1ef b1ef b1ef b1ef b1ef b1ef b1ef
+2778 b1f0 b1f0 b1f0 * 5b36 * 8ea1dbb6,dbb6,8ea1dbb6v,dbb6v 6897 e6a297 6897 00006897 b1f0 b1f0 b1f0 b1f0 b1f0 b1f0 b1f0
+2779 b1f1 b1f1 b1f1 * 5b37 * 8ea1dbb7,dbb7,8ea1dbb7v,dbb7v 68b0 e6a2b0 68b0 000068b0 b1f1 b1f1 b1f1 b1f1 b1f1 b1f1 b1f1
+2780 b1f2 b1f2 b1f2 * 5b38 * 8ea1dbb8,dbb8,8ea1dbb8v,dbb8v 6883 e6a283 6883 00006883 b1f2 b1f2 b1f2 b1f2 b1f2 b1f2 b1f2
+2781 b1f3 b1f3 b1f3 * 5b39 * 8ea1dbb9,dbb9,8ea1dbb9v,dbb9v 68c4 e6a384 68c4 000068c4 b1f3 b1f3 b1f3 b1f3 b1f3 b1f3 b1f3
+2782 b1f4 b1f4 b1f4 * 5b3a * 8ea1dbba,dbba,8ea1dbbav,dbbav 68ad e6a2ad 68ad 000068ad b1f4 b1f4 b1f4 b1f4 b1f4 b1f4 b1f4
+2783 b1f5 b1f5 b1f5 * 5b3b * 8ea1dbbb,dbbb,8ea1dbbbv,dbbbv 6886 e6a286 6886 00006886 b1f5 b1f5 b1f5 b1f5 b1f5 b1f5 b1f5
+2784 b1f6 b1f6 b1f6 * 5b3c * 8ea1dbbc,dbbc,8ea1dbbcv,dbbcv 6885 e6a285 6885 00006885 b1f6 b1f6 b1f6 b1f6 b1f6 b1f6 b1f6
+2785 b1f7 b1f7 b1f7 * 5b3d * 8ea1dbbd,dbbd,8ea1dbbdv,dbbdv 6894 e6a294 6894 00006894 b1f7 b1f7 b1f7 b1f7 b1f7 b1f7 b1f7
+2786 b1f8 b1f8 b1f8 * 5b3e * 8ea1dbbe,dbbe,8ea1dbbev,dbbev 689d e6a29d 689d 0000689d b1f8 b1f8 b1f8 b1f8 b1f8 b1f8 b1f8
+2787 b1f9 b1f9 b1f9 * 5b3f * 8ea1dbbf,dbbf,8ea1dbbfv,dbbfv 68a8 e6a2a8 68a8 000068a8 b1f9 b1f9 b1f9 b1f9 b1f9 b1f9 b1f9
+2788 b1fa b1fa b1fa * 5b40 * 8ea1dbc0,dbc0,8ea1dbc0v,dbc0v 689f e6a29f 689f 0000689f b1fa b1fa b1fa b1fa b1fa b1fa b1fa
+2789 b1fb b1fb b1fb * 5b41 * 8ea1dbc1,dbc1,8ea1dbc1v,dbc1v 68a1 e6a2a1 68a1 000068a1 b1fb b1fb b1fb b1fb b1fb b1fb b1fb
+2790 b1fc b1fc b1fc * 5b42 * 8ea1dbc2,dbc2,8ea1dbc2v,dbc2v 6882 e6a282 6882 00006882 b1fc b1fc b1fc b1fc b1fc b1fc b1fc
+2791 b1fd b1fd b1fd * 5b43 * 8ea1dbc3,dbc3,8ea1dbc3v,dbc3v 6b32 e6acb2 6b32 00006b32 b1fd b1fd b1fd b1fd b1fd b1fd b1fd
+2792 b1fe b1fe b1fe * 5b44 * 8ea1dbc4,dbc4,8ea1dbc4v,dbc4v 6bba e6aeba 6bba 00006bba b1fe b1fe b1fe b1fe b1fe b1fe b1fe
+2793 b240 b240 b240 * 5b45 * 8ea1dbc5,dbc5,8ea1dbc5v,dbc5v 6beb e6afab 6beb 00006beb b240 b240 b240 b240 b240 b240 b240
+2794 b241 b241 b241 * 5b46 * 8ea1dbc6,dbc6,8ea1dbc6v,dbc6v 6bec e6afac 6bec 00006bec b241 b241 b241 b241 b241 b241 b241
+2795 b242 b242 b242 * 5b47 * 8ea1dbc7,dbc7,8ea1dbc7v,dbc7v 6c2b e6b0ab 6c2b 00006c2b b242 b242 b242 b242 b242 b242 b242
+2796 b243 b243 b243 * 5b48 * 8ea1dbc8,dbc8,8ea1dbc8v,dbc8v 6d8e e6b68e 6d8e 00006d8e b243 b243 b243 b243 b243 b243 b243
+2797 b244 b244 b244 * 5b49 * 8ea1dbc9,dbc9,8ea1dbc9v,dbc9v 6dbc e6b6bc 6dbc 00006dbc b244 b244 b244 b244 b244 b244 b244
+2798 b245 b245 b245 * 5b4a * 8ea1dbca,dbca,8ea1dbcav,dbcav 6df3 e6b7b3 6df3 00006df3 b245 b245 b245 b245 b245 b245 b245
+2799 b246 b246 b246 * 5b4b * 8ea1dbcb,dbcb,8ea1dbcbv,dbcbv 6dd9 e6b799 6dd9 00006dd9 b246 b246 b246 b246 b246 b246 b246
+2800 b247 b247 b247 * 5b4c * 8ea1dbcc,dbcc,8ea1dbccv,dbccv 6db2 e6b6b2 6db2 00006db2 b247 b247 b247 b247 b247 b247 b247
+2801 b248 b248 b248 * 5b4d * 8ea1dbcd,dbcd,8ea1dbcdv,dbcdv 6de1 e6b7a1 6de1 00006de1 b248 b248 b248 b248 b248 b248 b248
+2802 b249 b249 b249 * 5b4e * 8ea1dbce,dbce,8ea1dbcev,dbcev 6dcc e6b78c 6dcc 00006dcc b249 b249 b249 b249 b249 b249 b249
+2803 b24a b24a b24a * 5b4f * 8ea1dbcf,dbcf,8ea1dbcfv,dbcfv 6de4 e6b7a4 6de4 00006de4 b24a b24a b24a b24a b24a b24a b24a
+2804 b24b b24b b24b * 5b50 * 8ea1dbd0,dbd0,8ea1dbd0v,dbd0v 6dfb e6b7bb 6dfb 00006dfb b24b b24b b24b b24b b24b b24b b24b
+2805 b24c b24c b24c * 5b51 * 8ea1dbd1,dbd1,8ea1dbd1v,dbd1v 6dfa e6b7ba 6dfa 00006dfa b24c b24c b24c b24c b24c b24c b24c
+2806 b24d b24d b24d * 5b52 * 8ea1dbd2,dbd2,8ea1dbd2v,dbd2v 6e05 e6b885 6e05 00006e05 b24d b24d b24d b24d b24d b24d b24d
+2807 b24e b24e b24e * 5b53 * 8ea1dbd3,dbd3,8ea1dbd3v,dbd3v 6dc7 e6b787 6dc7 00006dc7 b24e b24e b24e b24e b24e b24e b24e
+2808 b24f b24f b24f * 5b54 * 8ea1dbd4,dbd4,8ea1dbd4v,dbd4v 6dcb e6b78b 6dcb 00006dcb b24f b24f b24f b24f b24f b24f b24f
+2809 b250 b250 b250 * 5b55 * 8ea1dbd5,dbd5,8ea1dbd5v,dbd5v 6daf e6b6af 6daf 00006daf b250 b250 b250 b250 b250 b250 b250
+2810 b251 b251 b251 * 5b56 * 8ea1dbd6,dbd6,8ea1dbd6v,dbd6v 6dd1 e6b791 6dd1 00006dd1 b251 b251 b251 b251 b251 b251 b251
+2811 b252 b252 b252 * 5b57 * 8ea1dbd7,dbd7,8ea1dbd7v,dbd7v 6dae e6b6ae 6dae 00006dae b252 b252 b252 b252 b252 b252 b252
+2812 b253 b253 b253 * 5b58 * 8ea1dbd8,dbd8,8ea1dbd8v,dbd8v 6dde e6b79e 6dde 00006dde b253 b253 b253 b253 b253 b253 b253
+2813 b254 b254 b254 * 5b59 * 8ea1dbd9,dbd9,8ea1dbd9v,dbd9v 6df9 e6b7b9 6df9 00006df9 b254 b254 b254 b254 b254 b254 b254
+2814 b255 b255 b255 * 5b5a * 8ea1dbda,dbda,8ea1dbdav,dbdav 6db8 e6b6b8 6db8 00006db8 b255 b255 b255 b255 b255 b255 b255
+2815 b256 b256 b256 * 5b5b * 8ea1dbdb,dbdb,8ea1dbdbv,dbdbv 6df7 e6b7b7 6df7 00006df7 b256 b256 b256 b256 b256 b256 b256
+2816 b257 b257 b257 * 5b5c * 8ea1dbdc,dbdc,8ea1dbdcv,dbdcv 6df5 e6b7b5 6df5 00006df5 b257 b257 b257 b257 b257 b257 b257
+2817 b258 b258 b258 * 5b5d * 8ea1dbdd,dbdd,8ea1dbddv,dbddv 6dc5 e6b785 6dc5 00006dc5 b258 b258 b258 b258 b258 b258 b258
+2818 b259 b259 b259 * 5b5e * 8ea1dbde,dbde,8ea1dbdev,dbdev 6dd2 e6b792 6dd2 00006dd2 b259 b259 b259 b259 b259 b259 b259
+2819 b25a b25a b25a * 5b5f * 8ea1dbdf,dbdf,8ea1dbdfv,dbdfv 6e1a e6b89a 6e1a 00006e1a b25a b25a b25a b25a b25a b25a b25a
+2820 b25b b25b b25b * 5b60 * 8ea1dbe0,dbe0,8ea1dbe0v,dbe0v 6db5 e6b6b5 6db5 00006db5 b25b b25b b25b b25b b25b b25b b25b
+2821 b25c b25c b25c * 5b61 * 8ea1dbe1,dbe1,8ea1dbe1v,dbe1v 6dda e6b79a 6dda 00006dda b25c b25c b25c b25c b25c b25c b25c
+2822 b25d b25d b25d * 5b62 * 8ea1dbe2,dbe2,8ea1dbe2v,dbe2v 6deb e6b7ab 6deb 00006deb b25d b25d b25d b25d b25d b25d b25d
+2823 b25e b25e b25e * 5b63 * 8ea1dbe3,dbe3,8ea1dbe3v,dbe3v 6dd8 e6b798 6dd8 00006dd8 b25e b25e b25e b25e b25e b25e b25e
+2824 b25f b25f b25f * 5b64 * 8ea1dbe4,dbe4,8ea1dbe4v,dbe4v 6dea e6b7aa 6dea 00006dea b25f b25f b25f b25f b25f b25f b25f
+2825 b260 b260 b260 * 5b65 * 8ea1dbe5,dbe5,8ea1dbe5v,dbe5v 6df1 e6b7b1 6df1 00006df1 b260 b260 b260 b260 b260 b260 b260
+2826 b261 b261 b261 * 5b66 * 8ea1dbe6,dbe6,8ea1dbe6v,dbe6v 6dee e6b7ae 6dee 00006dee b261 b261 b261 b261 b261 b261 b261
+2827 b262 b262 b262 * 5b67 * 8ea1dbe7,dbe7,8ea1dbe7v,dbe7v 6de8 e6b7a8 6de8 00006de8 b262 b262 b262 b262 b262 b262 b262
+2828 b263 b263 b263 * 5b68 * 8ea1dbe8,dbe8,8ea1dbe8v,dbe8v 6dc6 e6b786 6dc6 00006dc6 b263 b263 b263 b263 b263 b263 b263
+2829 b264 b264 b264 * 5b69 * 8ea1dbe9,dbe9,8ea1dbe9v,dbe9v 6dc4 e6b784 6dc4 00006dc4 b264 b264 b264 b264 b264 b264 b264
+2830 b265 b265 b265 * 5b6a * 8ea1dbea,dbea,8ea1dbeav,dbeav 6daa e6b6aa 6daa 00006daa b265 b265 b265 b265 b265 b265 b265
+2831 b266 b266 b266 * 5b6b * 8ea1dbeb,dbeb,8ea1dbebv,dbebv 6dec e6b7ac 6dec 00006dec b266 b266 b266 b266 b266 b266 b266
+2832 b267 b267 b267 * 5b6c * 8ea1dbec,dbec,8ea1dbecv,dbecv 6dbf e6b6bf 6dbf 00006dbf b267 b267 b267 b267 b267 b267 b267
+2833 b268 b268 b268 * 5b6d * 8ea1dbed,dbed,8ea1dbedv,dbedv 6de6 e6b7a6 6de6 00006de6 b268 b268 b268 b268 b268 b268 b268
+2834 b269 b269 b269 * 5b6e * 8ea1dbee,dbee,8ea1dbeev,dbeev 70f9 e783b9 70f9 000070f9 b269 b269 b269 b269 b269 b269 b269
+2835 b26a b26a b26a * 5b6f * 8ea1dbef,dbef,8ea1dbefv,dbefv 7109 e78489 7109 00007109 b26a b26a b26a b26a b26a b26a b26a
+2836 b26b b26b b26b * 5b70 * 8ea1dbf0,dbf0,8ea1dbf0v,dbf0v 710a e7848a 710a 0000710a b26b b26b b26b b26b b26b b26b b26b
+2837 b26c b26c b26c * 5b71 * 8ea1dbf1,dbf1,8ea1dbf1v,dbf1v 70fd e783bd 70fd 000070fd b26c b26c b26c b26c b26c b26c b26c
+2838 b26d b26d b26d * 5b72 * 8ea1dbf2,dbf2,8ea1dbf2v,dbf2v 70ef e783af 70ef 000070ef b26d b26d b26d b26d b26d b26d b26d
+2839 b26e b26e b26e * 5b73 * 8ea1dbf3,dbf3,8ea1dbf3v,dbf3v 723d e788bd 723d 0000723d b26e b26e b26e b26e b26e b26e b26e
+2840 b26f b26f b26f * 5b74 * 8ea1dbf4,dbf4,8ea1dbf4v,dbf4v 727d e789bd 727d 0000727d b26f b26f b26f b26f b26f b26f b26f
+2841 b270 b270 b270 * 5b75 * 8ea1dbf5,dbf5,8ea1dbf5v,dbf5v 7281 e78a81 7281 00007281 b270 b270 b270 b270 b270 b270 b270
+2842 b271 b271 b271 * 5b76 * 8ea1dbf6,dbf6,8ea1dbf6v,dbf6v 731c e78c9c 731c 0000731c b271 b271 b271 b271 b271 b271 b271
+2843 b272 b272 b272 * 5b77 * 8ea1dbf7,dbf7,8ea1dbf7v,dbf7v 731b e78c9b 731b 0000731b b272 b272 b272 b272 b272 b272 b272
+2844 b273 b273 b273 * 5b78 * 8ea1dbf8,dbf8,8ea1dbf8v,dbf8v 7316 e78c96 7316 00007316 b273 b273 b273 b273 b273 b273 b273
+2845 b274 b274 b274 * 5b79 * 8ea1dbf9,dbf9,8ea1dbf9v,dbf9v 7313 e78c93 7313 00007313 b274 b274 b274 b274 b274 b274 b274
+2846 b275 b275 b275 * 5b7a * 8ea1dbfa,dbfa,8ea1dbfav,dbfav 7319 e78c99 7319 00007319 b275 b275 b275 b275 b275 b275 b275
+2847 b276 b276 b276 * 5b7b * 8ea1dbfb,dbfb,8ea1dbfbv,dbfbv 7387 e78e87 7387 00007387 b276 b276 b276 b276 b276 b276 b276
+2848 b277 b277 b277 * 5b7c * 8ea1dbfc,dbfc,8ea1dbfcv,dbfcv 7405 e79085 7405 00007405 b277 b277 b277 b277 b277 b277 b277
+2849 b278 b278 b278 * 5b7d * 8ea1dbfd,dbfd,8ea1dbfdv,dbfdv 740a e7908a 740a 0000740a b278 b278 b278 b278 b278 b278 b278
+2850 b279 b279 b279 * 5b7e * 8ea1dbfe,dbfe,8ea1dbfev,dbfev 7403 e79083 7403 00007403 b279 b279 b279 b279 b279 b279 b279
+2851 b27a b27a b27a * 5c21 * 8ea1dca1,dca1,8ea1dca1v,dca1v 7406 e79086 7406 00007406 b27a b27a b27a b27a b27a b27a b27a
+2852 b27b b27b b27b * 5c22 * 8ea1dca2,dca2,8ea1dca2v,dca2v 73fe e78fbe 73fe 000073fe b27b b27b b27b b27b b27b b27b b27b
+2853 b27c b27c b27c * 5c23 * 8ea1dca3,dca3,8ea1dca3v,dca3v 740d e7908d 740d 0000740d b27c b27c b27c b27c b27c b27c b27c
+2854 b27d b27d b27d * 5c24 * 8ea1dca4,dca4,8ea1dca4v,dca4v 74e0 e793a0 74e0 000074e0 b27d b27d b27d b27d b27d b27d b27d
+2855 b27e b27e b27e * 5c25 * 8ea1dca5,dca5,8ea1dca5v,dca5v 74f6 e793b6 74f6 000074f6 b27e b27e b27e b27e b27e b27e b27e
+2856 b2a1 b2a1 b2a1 * 5c26 * 8ea1dca6,dca6,8ea1dca6v,dca6v 74f7 e793b7 74f7 000074f7 b2a1 b2a1 b2a1 b2a1 b2a1 b2a1 b2a1
+2857 b2a2 b2a2 b2a2 * 5c27 * 8ea1dca7,dca7,8ea1dca7v,dca7v 751c e7949c 751c 0000751c b2a2 b2a2 b2a2 b2a2 b2a2 b2a2 b2a2
+2858 b2a3 b2a3 b2a3 * 5c28 * 8ea1dca8,dca8,8ea1dca8v,dca8v 7522 e794a2 7522 00007522 b2a3 b2a3 b2a3 b2a3 b2a3 b2a3 b2a3
+2859 b2a4 b2a4 b2a4 * 5c29 * 8ea1dca9,dca9,8ea1dca9v,dca9v 7565 e795a5 7565 00007565 b2a4 b2a4 b2a4 b2a4 b2a4 b2a4 b2a4
+2860 b2a5 b2a5 b2a5 * 5c2a * 8ea1dcaa,dcaa,8ea1dcaav,dcaav 7566 e795a6 7566 00007566 b2a5 b2a5 b2a5 b2a5 b2a5 b2a5 b2a5
+2861 b2a6 b2a6 b2a6 * 5c2b * 8ea1dcab,dcab,8ea1dcabv,dcabv 7562 e795a2 7562 00007562 b2a6 b2a6 b2a6 b2a6 b2a6 b2a6 b2a6
+2862 b2a7 b2a7 b2a7 * 5c2c * 8ea1dcac,dcac,8ea1dcacv,dcacv 7570 e795b0 7570 00007570 b2a7 b2a7 b2a7 b2a7 b2a7 b2a7 b2a7
+2863 b2a8 b2a8 b2a8 * 5c2d * 8ea1dcad,dcad,8ea1dcadv,dcadv 758f e7968f 758f 0000758f b2a8 b2a8 b2a8 b2a8 b2a8 b2a8 b2a8
+2864 b2a9 b2a9 b2a9 * 5c2e * 8ea1dcae,dcae,8ea1dcaev,dcaev 75d4 e79794 75d4 000075d4 b2a9 b2a9 b2a9 b2a9 b2a9 b2a9 b2a9
+2865 b2aa b2aa b2aa * 5c2f * 8ea1dcaf,dcaf,8ea1dcafv,dcafv 75d5 e79795 75d5 000075d5 b2aa b2aa b2aa b2aa b2aa b2aa b2aa
+2866 b2ab b2ab b2ab * 5c30 * 8ea1dcb0,dcb0,8ea1dcb0v,dcb0v 75b5 e796b5 75b5 000075b5 b2ab b2ab b2ab b2ab b2ab b2ab b2ab
+2867 b2ac b2ac b2ac * 5c31 * 8ea1dcb1,dcb1,8ea1dcb1v,dcb1v 75ca e7978a 75ca 000075ca b2ac b2ac b2ac b2ac b2ac b2ac b2ac
+2868 b2ad b2ad b2ad * 5c32 * 8ea1dcb2,dcb2,8ea1dcb2v,dcb2v 75cd e7978d 75cd 000075cd b2ad b2ad b2ad b2ad b2ad b2ad b2ad
+2869 b2ae b2ae b2ae * 5c33 * 8ea1dcb3,dcb3,8ea1dcb3v,dcb3v 768e e79a8e 768e 0000768e b2ae b2ae b2ae b2ae b2ae b2ae b2ae
+2870 b2af b2af b2af * 5c34 * 8ea1dcb4,dcb4,8ea1dcb4v,dcb4v 76d4 e79b94 76d4 000076d4 b2af b2af b2af b2af b2af b2af b2af
+2871 b2b0 b2b0 b2b0 * 5c35 * 8ea1dcb5,dcb5,8ea1dcb5v,dcb5v 76d2 e79b92 76d2 000076d2 b2b0 b2b0 b2b0 b2b0 b2b0 b2b0 b2b0
+2872 b2b1 b2b1 b2b1 * 5c36 * 8ea1dcb6,dcb6,8ea1dcb6v,dcb6v 76db e79b9b 76db 000076db b2b1 b2b1 b2b1 b2b1 b2b1 b2b1 b2b1
+2873 b2b2 b2b2 b2b2 * 5c37 * 8ea1dcb7,dcb7,8ea1dcb7v,dcb7v 7737 e79cb7 7737 00007737 b2b2 b2b2 b2b2 b2b2 b2b2 b2b2 b2b2
+2874 b2b3 b2b3 b2b3 * 5c38 * 8ea1dcb8,dcb8,8ea1dcb8v,dcb8v 773e e79cbe 773e 0000773e b2b3 b2b3 b2b3 b2b3 b2b3 b2b3 b2b3
+2875 b2b4 b2b4 b2b4 * 5c39 * 8ea1dcb9,dcb9,8ea1dcb9v,dcb9v 773c e79cbc 773c 0000773c b2b4 b2b4 b2b4 b2b4 b2b4 b2b4 b2b4
+2876 b2b5 b2b5 b2b5 * 5c3a * 8ea1dcba,dcba,8ea1dcbav,dcbav 7736 e79cb6 7736 00007736 b2b5 b2b5 b2b5 b2b5 b2b5 b2b5 b2b5
+2877 b2b6 b2b6 b2b6 * 5c3b * 8ea1dcbb,dcbb,8ea1dcbbv,dcbbv 7738 e79cb8 7738 00007738 b2b6 b2b6 b2b6 b2b6 b2b6 b2b6 b2b6
+2878 b2b7 b2b7 b2b7 * 5c3c * 8ea1dcbc,dcbc,8ea1dcbcv,dcbcv 773a e79cba 773a 0000773a b2b7 b2b7 b2b7 b2b7 b2b7 b2b7 b2b7
+2879 b2b8 b2b8 b2b8 * 5c3d * 8ea1dcbd,dcbd,8ea1dcbdv,dcbdv 786b e7a1ab 786b 0000786b b2b8 b2b8 b2b8 b2b8 b2b8 b2b8 b2b8
+2880 b2b9 b2b9 b2b9 * 5c3e * 8ea1dcbe,dcbe,8ea1dcbev,dcbev 7843 e7a183 7843 00007843 b2b9 b2b9 b2b9 b2b9 b2b9 b2b9 b2b9
+2881 b2ba b2ba b2ba * 5c3f * 8ea1dcbf,dcbf,8ea1dcbfv,dcbfv 784e e7a18e 784e 0000784e b2ba b2ba b2ba b2ba b2ba b2ba b2ba
+2882 b2bb b2bb b2bb * 5c40 * 8ea1dcc0,dcc0,8ea1dcc0v,dcc0v 7965 e7a5a5 7965 00007965 b2bb b2bb b2bb b2bb b2bb b2bb b2bb
+2883 b2bc b2bc b2bc * 5c41 * 8ea1dcc1,dcc1,8ea1dcc1v,dcc1v 7968 e7a5a8 7968 00007968 b2bc b2bc b2bc b2bc b2bc b2bc b2bc
+2884 b2bd b2bd b2bd * 5c42 * 8ea1dcc2,dcc2,8ea1dcc2v,dcc2v 796d e7a5ad 796d 0000796d b2bd b2bd b2bd b2bd b2bd b2bd b2bd
+2885 b2be b2be b2be * 5c43 * 8ea1dcc3,dcc3,8ea1dcc3v,dcc3v 79fb e7a7bb 79fb 000079fb b2be b2be b2be b2be b2be b2be b2be
+2886 b2bf b2bf b2bf * 5c44 * 8ea1dcc4,dcc4,8ea1dcc4v,dcc4v 7a92 e7aa92 7a92 00007a92 b2bf b2bf b2bf b2bf b2bf b2bf b2bf
+2887 b2c0 b2c0 b2c0 * 5c45 * 8ea1dcc5,dcc5,8ea1dcc5v,dcc5v 7a95 e7aa95 7a95 00007a95 b2c0 b2c0 b2c0 b2c0 b2c0 b2c0 b2c0
+2888 b2c1 b2c1 b2c1 * 5c46 * 8ea1dcc6,dcc6,8ea1dcc6v,dcc6v 7b20 e7aca0 7b20 00007b20 b2c1 b2c1 b2c1 b2c1 b2c1 b2c1 b2c1
+2889 b2c2 b2c2 b2c2 * 5c47 * 8ea1dcc7,dcc7,8ea1dcc7v,dcc7v 7b28 e7aca8 7b28 00007b28 b2c2 b2c2 b2c2 b2c2 b2c2 b2c2 b2c2
+2890 b2c3 b2c3 b2c3 * 5c48 * 8ea1dcc8,dcc8,8ea1dcc8v,dcc8v 7b1b e7ac9b 7b1b 00007b1b b2c3 b2c3 b2c3 b2c3 b2c3 b2c3 b2c3
+2891 b2c4 b2c4 b2c4 * 5c49 * 8ea1dcc9,dcc9,8ea1dcc9v,dcc9v 7b2c e7acac 7b2c 00007b2c b2c4 b2c4 b2c4 b2c4 b2c4 b2c4 b2c4
+2892 b2c5 b2c5 b2c5 * 5c4a * 8ea1dcca,dcca,8ea1dccav,dccav 7b26 e7aca6 7b26 00007b26 b2c5 b2c5 b2c5 b2c5 b2c5 b2c5 b2c5
+2893 b2c6 b2c6 b2c6 * 5c4b * 8ea1dccb,dccb,8ea1dccbv,dccbv 7b19 e7ac99 7b19 00007b19 b2c6 b2c6 b2c6 b2c6 b2c6 b2c6 b2c6
+2894 b2c7 b2c7 b2c7 * 5c4c * 8ea1dccc,dccc,8ea1dcccv,dcccv 7b1e e7ac9e 7b1e 00007b1e b2c7 b2c7 b2c7 b2c7 b2c7 b2c7 b2c7
+2895 b2c8 b2c8 b2c8 * 5c4d * 8ea1dccd,dccd,8ea1dccdv,dccdv 7b2e e7acae 7b2e 00007b2e b2c8 b2c8 b2c8 b2c8 b2c8 b2c8 b2c8
+2896 b2c9 b2c9 b2c9 * 5c4e * 8ea1dcce,dcce,8ea1dccev,dccev 7c92 e7b292 7c92 00007c92 b2c9 b2c9 b2c9 b2c9 b2c9 b2c9 b2c9
+2897 b2ca b2ca b2ca * 5c4f * 8ea1dccf,dccf,8ea1dccfv,dccfv 7c97 e7b297 7c97 00007c97 b2ca b2ca b2ca b2ca b2ca b2ca b2ca
+2898 b2cb b2cb b2cb * 5c50 * 8ea1dcd0,dcd0,8ea1dcd0v,dcd0v 7c95 e7b295 7c95 00007c95 b2cb b2cb b2cb b2cb b2cb b2cb b2cb
+2899 b2cc b2cc b2cc * 5c51 * 8ea1dcd1,dcd1,8ea1dcd1v,dcd1v 7d46 e7b586 7d46 00007d46 b2cc b2cc b2cc b2cc b2cc b2cc b2cc
+2900 b2cd b2cd b2cd * 5c52 * 8ea1dcd2,dcd2,8ea1dcd2v,dcd2v 7d43 e7b583 7d43 00007d43 b2cd b2cd b2cd b2cd b2cd b2cd b2cd
+2901 b2ce b2ce b2ce * 5c53 * 8ea1dcd3,dcd3,8ea1dcd3v,dcd3v 7d71 e7b5b1 7d71 00007d71 b2ce b2ce b2ce b2ce b2ce b2ce b2ce
+2902 b2cf b2cf b2cf * 5c54 * 8ea1dcd4,dcd4,8ea1dcd4v,dcd4v 7d2e e7b4ae 7d2e 00007d2e b2cf b2cf b2cf b2cf b2cf b2cf b2cf
+2903 b2d0 b2d0 b2d0 * 5c55 * 8ea1dcd5,dcd5,8ea1dcd5v,dcd5v 7d39 e7b4b9 7d39 00007d39 b2d0 b2d0 b2d0 b2d0 b2d0 b2d0 b2d0
+2904 b2d1 b2d1 b2d1 * 5c56 * 8ea1dcd6,dcd6,8ea1dcd6v,dcd6v 7d3c e7b4bc 7d3c 00007d3c b2d1 b2d1 b2d1 b2d1 b2d1 b2d1 b2d1
+2905 b2d2 b2d2 b2d2 * 5c57 * 8ea1dcd7,dcd7,8ea1dcd7v,dcd7v 7d40 e7b580 7d40 00007d40 b2d2 b2d2 b2d2 b2d2 b2d2 b2d2 b2d2
+2906 b2d3 b2d3 b2d3 * 5c58 * 8ea1dcd8,dcd8,8ea1dcd8v,dcd8v 7d30 e7b4b0 7d30 00007d30 b2d3 b2d3 b2d3 b2d3 b2d3 b2d3 b2d3
+2907 b2d4 b2d4 b2d4 * 5c59 * 8ea1dcd9,dcd9,8ea1dcd9v,dcd9v 7d33 e7b4b3 7d33 00007d33 b2d4 b2d4 b2d4 b2d4 b2d4 b2d4 b2d4
+2908 b2d5 b2d5 b2d5 * 5c5a * 8ea1dcda,dcda,8ea1dcdav,dcdav 7d44 e7b584 7d44 00007d44 b2d5 b2d5 b2d5 b2d5 b2d5 b2d5 b2d5
+2909 b2d6 b2d6 b2d6 * 5c5b * 8ea1dcdb,dcdb,8ea1dcdbv,dcdbv 7d2f e7b4af 7d2f 00007d2f b2d6 b2d6 b2d6 b2d6 b2d6 b2d6 b2d6
+2910 b2d7 b2d7 b2d7 * 5c5c * 8ea1dcdc,dcdc,8ea1dcdcv,dcdcv 7d42 e7b582 7d42 00007d42 b2d7 b2d7 b2d7 b2d7 b2d7 b2d7 b2d7
+2911 b2d8 b2d8 b2d8 * 5c5d * 8ea1dcdd,dcdd,8ea1dcddv,dcddv 7d32 e7b4b2 7d32 00007d32 b2d8 b2d8 b2d8 b2d8 b2d8 b2d8 b2d8
+2912 b2d9 b2d9 b2d9 * 5c5e * 8ea1dcde,dcde,8ea1dcdev,dcdev 7d31 e7b4b1 7d31 00007d31 b2d9 b2d9 b2d9 b2d9 b2d9 b2d9 b2d9
+2913 b2da b2da b2da * 5c5f * 8ea1dcdf,dcdf,8ea1dcdfv,dcdfv 7f3d e7bcbd 7f3d 00007f3d b2da b2da b2da b2da b2da b2da b2da
+2914 b2db b2db b2db * 5c60 * 8ea1dce0,dce0,8ea1dce0v,dce0v 7f9e e7be9e 7f9e 00007f9e b2db b2db b2db b2db b2db b2db b2db
+2915 b2dc b2dc b2dc * 5c61 * 8ea1dce1,dce1,8ea1dce1v,dce1v 7f9a e7be9a 7f9a 00007f9a b2dc b2dc b2dc b2dc b2dc b2dc b2dc
+2916 b2dd b2dd b2dd * 5c62 * 8ea1dce2,dce2,8ea1dce2v,dce2v 7fcc e7bf8c 7fcc 00007fcc b2dd b2dd b2dd b2dd b2dd b2dd b2dd
+2917 b2de b2de b2de * 5c63 * 8ea1dce3,dce3,8ea1dce3v,dce3v 7fce e7bf8e 7fce 00007fce b2de b2de b2de b2de b2de b2de b2de
+2918 b2df b2df b2df * 5c64 * 8ea1dce4,dce4,8ea1dce4v,dce4v 7fd2 e7bf92 7fd2 00007fd2 b2df b2df b2df b2df b2df b2df b2df
+2919 b2e0 b2e0 b2e0 * 5c65 * 8ea1dce5,dce5,8ea1dce5v,dce5v 801c e8809c 801c 0000801c b2e0 b2e0 b2e0 b2e0 b2e0 b2e0 b2e0
+2920 b2e1 b2e1 b2e1 * 5c66 * 8ea1dce6,dce6,8ea1dce6v,dce6v 804a e8818a 804a 0000804a b2e1 b2e1 b2e1 b2e1 b2e1 b2e1 b2e1
+2921 b2e2 b2e2 b2e2 * 5c67 * 8ea1dce7,dce7,8ea1dce7v,dce7v 8046 e88186 8046 00008046 b2e2 b2e2 b2e2 b2e2 b2e2 b2e2 b2e2
+2922 b2e3 b2e3 b2e3 * 5c68 * 8ea1dce8,dce8,8ea1dce8v,dce8v 812f e884af 812f 0000812f b2e3 b2e3 b2e3 b2e3 b2e3 b2e3 b2e3
+2923 b2e4 b2e4 b2e4 * 5c69 * 8ea1dce9,dce9,8ea1dce9v,dce9v 8116 e88496 8116 00008116 b2e4 b2e4 b2e4 b2e4 b2e4 b2e4 b2e4
+2924 b2e5 b2e5 b2e5 * 5c6a * 8ea1dcea,dcea,8ea1dceav,dceav 8123 e884a3 8123 00008123 b2e5 b2e5 b2e5 b2e5 b2e5 b2e5 b2e5
+2925 b2e6 b2e6 b2e6 * 5c6b * 8ea1dceb,dceb,8ea1dcebv,dcebv 812b e884ab 812b 0000812b b2e6 b2e6 b2e6 b2e6 b2e6 b2e6 b2e6
+2926 b2e7 b2e7 b2e7 * 5c6c * 8ea1dcec,dcec,8ea1dcecv,dcecv 8129 e884a9 8129 00008129 b2e7 b2e7 b2e7 b2e7 b2e7 b2e7 b2e7
+2927 b2e8 b2e8 b2e8 * 5c6d * 8ea1dced,dced,8ea1dcedv,dcedv 8130 e884b0 8130 00008130 b2e8 b2e8 b2e8 b2e8 b2e8 b2e8 b2e8
+2928 b2e9 b2e9 b2e9 * 5c6e * 8ea1dcee,dcee,8ea1dceev,dceev 8124 e884a4 8124 00008124 b2e9 b2e9 b2e9 b2e9 b2e9 b2e9 b2e9
+2929 b2ea b2ea b2ea * 5c6f * 8ea1dcef,dcef,8ea1dcefv,dcefv 8202 e88882 8202 00008202 b2ea b2ea b2ea b2ea b2ea b2ea b2ea
+2930 b2eb b2eb b2eb * 5c70 * 8ea1dcf0,dcf0,8ea1dcf0v,dcf0v 8235 e888b5 8235 00008235 b2eb b2eb b2eb b2eb b2eb b2eb b2eb
+2931 b2ec b2ec b2ec * 5c71 * 8ea1dcf1,dcf1,8ea1dcf1v,dcf1v 8237 e888b7 8237 00008237 b2ec b2ec b2ec b2ec b2ec b2ec b2ec
+2932 b2ed b2ed b2ed * 5c72 * 8ea1dcf2,dcf2,8ea1dcf2v,dcf2v 8236 e888b6 8236 00008236 b2ed b2ed b2ed b2ed b2ed b2ed b2ed
+2933 b2ee b2ee b2ee * 5c73 * 8ea1dcf3,dcf3,8ea1dcf3v,dcf3v 8239 e888b9 8239 00008239 b2ee b2ee b2ee b2ee b2ee b2ee b2ee
+2934 b2ef b2ef b2ef * 5c74 * 8ea1dcf4,dcf4,8ea1dcf4v,dcf4v 838e e88e8e 838e 0000838e b2ef b2ef b2ef b2ef b2ef b2ef b2ef
+2935 b2f0 b2f0 b2f0 * 5c75 * 8ea1dcf5,dcf5,8ea1dcf5v,dcf5v 839e e88e9e 839e 0000839e b2f0 b2f0 b2f0 b2f0 b2f0 b2f0 b2f0
+2936 b2f1 b2f1 b2f1 * 5c76 * 8ea1dcf6,dcf6,8ea1dcf6v,dcf6v 8398 e88e98 8398 00008398 b2f1 b2f1 b2f1 b2f1 b2f1 b2f1 b2f1
+2937 b2f2 b2f2 b2f2 * 5c77 * 8ea1dcf7,dcf7,8ea1dcf7v,dcf7v 8378 e88db8 8378 00008378 b2f2 b2f2 b2f2 b2f2 b2f2 b2f2 b2f2
+2938 b2f3 b2f3 b2f3 * 5c78 * 8ea1dcf8,dcf8,8ea1dcf8v,dcf8v 83a2 e88ea2 83a2 000083a2 b2f3 b2f3 b2f3 b2f3 b2f3 b2f3 b2f3
+2939 b2f4 b2f4 b2f4 * 5c79 * 8ea1dcf9,dcf9,8ea1dcf9v,dcf9v 8396 e88e96 8396 00008396 b2f4 b2f4 b2f4 b2f4 b2f4 b2f4 b2f4
+2940 b2f5 b2f5 b2f5 * 5c7a * 8ea1dcfa,dcfa,8ea1dcfav,dcfav 83bd e88ebd 83bd 000083bd b2f5 b2f5 b2f5 b2f5 b2f5 b2f5 b2f5
+2941 b2f6 b2f6 b2f6 * 5c7b * 8ea1dcfb,dcfb,8ea1dcfbv,dcfbv 83ab e88eab 83ab 000083ab b2f6 b2f6 b2f6 b2f6 b2f6 b2f6 b2f6
+2942 b2f7 b2f7 b2f7 * 5c7c * 8ea1dcfc,dcfc,8ea1dcfcv,dcfcv 8392 e88e92 8392 00008392 b2f7 b2f7 b2f7 b2f7 b2f7 b2f7 b2f7
+2943 b2f8 b2f8 b2f8 * 5c7d * 8ea1dcfd,dcfd,8ea1dcfdv,dcfdv 838a e88e8a 838a 0000838a b2f8 b2f8 b2f8 b2f8 b2f8 b2f8 b2f8
+2944 b2f9 b2f9 b2f9 * 5c7e * 8ea1dcfe,dcfe,8ea1dcfev,dcfev 8393 e88e93 8393 00008393 b2f9 b2f9 b2f9 b2f9 b2f9 b2f9 b2f9
+2945 b2fa b2fa b2fa * 5d21 * 8ea1dda1,dda1,8ea1dda1v,dda1v 8389 e88e89 8389 00008389 b2fa b2fa b2fa b2fa b2fa b2fa b2fa
+2946 b2fb b2fb b2fb * 5d22 * 8ea1dda2,dda2,8ea1dda2v,dda2v 83a0 e88ea0 83a0 000083a0 b2fb b2fb b2fb b2fb b2fb b2fb b2fb
+2947 b2fc b2fc b2fc * 5d23 * 8ea1dda3,dda3,8ea1dda3v,dda3v 8377 e88db7 8377 00008377 b2fc b2fc b2fc b2fc b2fc b2fc b2fc
+2948 b2fd b2fd b2fd * 5d24 * 8ea1dda4,dda4,8ea1dda4v,dda4v 837b e88dbb 837b 0000837b b2fd b2fd b2fd b2fd b2fd b2fd b2fd
+2949 b2fe b2fe b2fe * 5d25 * 8ea1dda5,dda5,8ea1dda5v,dda5v 837c e88dbc 837c 0000837c b2fe b2fe b2fe b2fe b2fe b2fe b2fe
+2950 b340 b340 b340 * 5d26 * 8ea1dda6,dda6,8ea1dda6v,dda6v 8386 e88e86 8386 00008386 b340 b340 b340 b340 b340 b340 b340
+2951 b341 b341 b341 * 5d27 * 8ea1dda7,dda7,8ea1dda7v,dda7v 83a7 e88ea7 83a7 000083a7 b341 b341 b341 b341 b341 b341 b341
+2952 b342 b342 b342 * 5d28 * 8ea1dda8,dda8,8ea1dda8v,dda8v 8655 e89995 8655 00008655 b342 b342 b342 b342 b342 b342 b342
+2953 b343 b343 b343 * 5d29 * 8ea1dda9,dda9,8ea1dda9v,dda9v 5f6a e5bdaa 5f6a 00005f6a b343 b343 b343 b343 b343 b343 b343
+2954 b344 b344 b344 * 5d2a * 8ea1ddaa,ddaa,8ea1ddaav,ddaav 86c7 e89b87 86c7 000086c7 b344 b344 b344 b344 b344 b344 b344
+2955 b345 b345 b345 * 5d2b * 8ea1ddab,ddab,8ea1ddabv,ddabv 86c0 e89b80 86c0 000086c0 b345 b345 b345 b345 b345 b345 b345
+2956 b346 b346 b346 * 5d2c * 8ea1ddac,ddac,8ea1ddacv,ddacv 86b6 e89ab6 86b6 000086b6 b346 b346 b346 b346 b346 b346 b346
+2957 b347 b347 b347 * 5d2d * 8ea1ddad,ddad,8ea1ddadv,ddadv 86c4 e89b84 86c4 000086c4 b347 b347 b347 b347 b347 b347 b347
+2958 b348 b348 b348 * 5d2e * 8ea1ddae,ddae,8ea1ddaev,ddaev 86b5 e89ab5 86b5 000086b5 b348 b348 b348 b348 b348 b348 b348
+2959 b349 b349 b349 * 5d2f * 8ea1ddaf,ddaf,8ea1ddafv,ddafv 86c6 e89b86 86c6 000086c6 b349 b349 b349 b349 b349 b349 b349
+2960 b34a b34a b34a * 5d30 * 8ea1ddb0,ddb0,8ea1ddb0v,ddb0v 86cb e89b8b 86cb 000086cb b34a b34a b34a b34a b34a b34a b34a
+2961 b34b b34b b34b * 5d31 * 8ea1ddb1,ddb1,8ea1ddb1v,ddb1v 86b1 e89ab1 86b1 000086b1 b34b b34b b34b b34b b34b b34b b34b
+2962 b34c b34c b34c * 5d32 * 8ea1ddb2,ddb2,8ea1ddb2v,ddb2v 86af e89aaf 86af 000086af b34c b34c b34c b34c b34c b34c b34c
+2963 b34d b34d b34d * 5d33 * 8ea1ddb3,ddb3,8ea1ddb3v,ddb3v 86c9 e89b89 86c9 000086c9 b34d b34d b34d b34d b34d b34d b34d
+2964 b34e b34e b34e * 5d34 * 8ea1ddb4,ddb4,8ea1ddb4v,ddb4v 8853 e8a193 8853 00008853 b34e b34e b34e b34e b34e b34e b34e
+2965 b34f b34f b34f * 5d35 * 8ea1ddb5,ddb5,8ea1ddb5v,ddb5v 889e e8a29e 889e 0000889e b34f b34f b34f b34f b34f b34f b34f
+2966 b350 b350 b350 * 5d36 * 8ea1ddb6,ddb6,8ea1ddb6v,ddb6v 8888 e8a288 8888 00008888 b350 b350 b350 b350 b350 b350 b350
+2967 b351 b351 b351 * 5d37 * 8ea1ddb7,ddb7,8ea1ddb7v,ddb7v 88ab e8a2ab 88ab 000088ab b351 b351 b351 b351 b351 b351 b351
+2968 b352 b352 b352 * 5d38 * 8ea1ddb8,ddb8,8ea1ddb8v,ddb8v 8892 e8a292 8892 00008892 b352 b352 b352 b352 b352 b352 b352
+2969 b353 b353 b353 * 5d39 * 8ea1ddb9,ddb9,8ea1ddb9v,ddb9v 8896 e8a296 8896 00008896 b353 b353 b353 b353 b353 b353 b353
+2970 b354 b354 b354 * 5d3a * 8ea1ddba,ddba,8ea1ddbav,ddbav 888d e8a28d 888d 0000888d b354 b354 b354 b354 b354 b354 b354
+2971 b355 b355 b355 * 5d3b * 8ea1ddbb,ddbb,8ea1ddbbv,ddbbv 888b e8a28b 888b 0000888b b355 b355 b355 b355 b355 b355 b355
+2972 b356 b356 b356 * 5d3c * 8ea1ddbc,ddbc,8ea1ddbcv,ddbcv 8993 e8a693 8993 00008993 b356 b356 b356 b356 b356 b356 b356
+2973 b357 b357 b357 * 5d3d * 8ea1ddbd,ddbd,8ea1ddbdv,ddbdv 898f e8a68f 898f 0000898f b357 b357 b357 b357 b357 b357 b357
+2974 b358 b358 b358 * 5d3e * 8ea1ddbe,ddbe,8ea1ddbev,ddbev 8a2a e8a8aa 8a2a 00008a2a b358 b358 b358 b358 b358 b358 b358
+2975 b359 b359 b359 * 5d3f * 8ea1ddbf,ddbf,8ea1ddbfv,ddbfv 8a1d e8a89d 8a1d 00008a1d b359 b359 b359 b359 b359 b359 b359
+2976 b35a b35a b35a * 5d40 * 8ea1ddc0,ddc0,8ea1ddc0v,ddc0v 8a23 e8a8a3 8a23 00008a23 b35a b35a b35a b35a b35a b35a b35a
+2977 b35b b35b b35b * 5d41 * 8ea1ddc1,ddc1,8ea1ddc1v,ddc1v 8a25 e8a8a5 8a25 00008a25 b35b b35b b35b b35b b35b b35b b35b
+2978 b35c b35c b35c * 5d42 * 8ea1ddc2,ddc2,8ea1ddc2v,ddc2v 8a31 e8a8b1 8a31 00008a31 b35c b35c b35c b35c b35c b35c b35c
+2979 b35d b35d b35d * 5d43 * 8ea1ddc3,ddc3,8ea1ddc3v,ddc3v 8a2d e8a8ad 8a2d 00008a2d b35d b35d b35d b35d b35d b35d b35d
+2980 b35e b35e b35e * 5d44 * 8ea1ddc4,ddc4,8ea1ddc4v,ddc4v 8a1f e8a89f 8a1f 00008a1f b35e b35e b35e b35e b35e b35e b35e
+2981 b35f b35f b35f * 5d45 * 8ea1ddc5,ddc5,8ea1ddc5v,ddc5v 8a1b e8a89b 8a1b 00008a1b b35f b35f b35f b35f b35f b35f b35f
+2982 b360 b360 b360 * 5d46 * 8ea1ddc6,ddc6,8ea1ddc6v,ddc6v 8a22 e8a8a2 8a22 00008a22 b360 b360 b360 b360 b360 b360 b360
+2983 b361 b361 b361 * 5d47 * 8ea1ddc7,ddc7,8ea1ddc7v,ddc7v 8c49 e8b189 8c49 00008c49 b361 b361 b361 b361 b361 b361 b361
+2984 b362 b362 b362 * 5d48 * 8ea1ddc8,ddc8,8ea1ddc8v,ddc8v 8c5a e8b19a 8c5a 00008c5a b362 b362 b362 b362 b362 b362 b362
+2985 b363 b363 b363 * 5d49 * 8ea1ddc9,ddc9,8ea1ddc9v,ddc9v 8ca9 e8b2a9 8ca9 00008ca9 b363 b363 b363 b363 b363 b363 b363
+2986 b364 b364 b364 * 5d4a * 8ea1ddca,ddca,8ea1ddcav,ddcav 8cac e8b2ac 8cac 00008cac b364 b364 b364 b364 b364 b364 b364
+2987 b365 b365 b365 * 5d4b * 8ea1ddcb,ddcb,8ea1ddcbv,ddcbv 8cab e8b2ab 8cab 00008cab b365 b365 b365 b365 b365 b365 b365
+2988 b366 b366 b366 * 5d4c * 8ea1ddcc,ddcc,8ea1ddccv,ddccv 8ca8 e8b2a8 8ca8 00008ca8 b366 b366 b366 b366 b366 b366 b366
+2989 b367 b367 b367 * 5d4d * 8ea1ddcd,ddcd,8ea1ddcdv,ddcdv 8caa e8b2aa 8caa 00008caa b367 b367 b367 b367 b367 b367 b367
+2990 b368 b368 b368 * 5d4e * 8ea1ddce,ddce,8ea1ddcev,ddcev 8ca7 e8b2a7 8ca7 00008ca7 b368 b368 b368 b368 b368 b368 b368
+2991 b369 b369 b369 * 5d4f * 8ea1ddcf,ddcf,8ea1ddcfv,ddcfv 8d67 e8b5a7 8d67 00008d67 b369 b369 b369 b369 b369 b369 b369
+2992 b36a b36a b36a * 5d50 * 8ea1ddd0,ddd0,8ea1ddd0v,ddd0v 8d66 e8b5a6 8d66 00008d66 b36a b36a b36a b36a b36a b36a b36a
+2993 b36b b36b b36b * 5d51 * 8ea1ddd1,ddd1,8ea1ddd1v,ddd1v 8dbe e8b6be 8dbe 00008dbe b36b b36b b36b b36b b36b b36b b36b
+2994 b36c b36c b36c * 5d52 * 8ea1ddd2,ddd2,8ea1ddd2v,ddd2v 8dba e8b6ba 8dba 00008dba b36c b36c b36c b36c b36c b36c b36c
+2995 b36d b36d b36d * 5d53 * 8ea1ddd3,ddd3,8ea1ddd3v,ddd3v 8edb e8bb9b 8edb 00008edb b36d b36d b36d b36d b36d b36d b36d
+2996 b36e b36e b36e * 5d54 * 8ea1ddd4,ddd4,8ea1ddd4v,ddd4v 8edf e8bb9f 8edf 00008edf b36e b36e b36e b36e b36e b36e b36e
+2997 b36f b36f b36f * 5d55 * 8ea1ddd5,ddd5,8ea1ddd5v,ddd5v 9019 e98099 9019 00009019 b36f b36f b36f b36f b36f b36f b36f
+2998 b370 b370 b370 * 5d56 * 8ea1ddd6,ddd6,8ea1ddd6v,ddd6v 900d e9808d 900d 0000900d b370 b370 b370 b370 b370 b370 b370
+2999 b371 b371 b371 * 5d57 * 8ea1ddd7,ddd7,8ea1ddd7v,ddd7v 901a e9809a 901a 0000901a b371 b371 b371 b371 b371 b371 b371
+3000 b372 b372 b372 * 5d58 * 8ea1ddd8,ddd8,8ea1ddd8v,ddd8v 9017 e98097 9017 00009017 b372 b372 b372 b372 b372 b372 b372
+3001 b373 b373 b373 * 5d59 * 8ea1ddd9,ddd9,8ea1ddd9v,ddd9v 9023 e980a3 9023 00009023 b373 b373 b373 b373 b373 b373 b373
+3002 b374 b374 b374 * 5d5a * 8ea1ddda,ddda,8ea1dddav,dddav 901f e9809f 901f 0000901f b374 b374 b374 b374 b374 b374 b374
+3003 b375 b375 b375 * 5d5b * 8ea1dddb,dddb,8ea1dddbv,dddbv 901d e9809d 901d 0000901d b375 b375 b375 b375 b375 b375 b375
+3004 b376 b376 b376 * 5d5c * 8ea1dddc,dddc,8ea1dddcv,dddcv 9010 e98090 9010 00009010 b376 b376 b376 b376 b376 b376 b376
+3005 b377 b377 b377 * 5d5d * 8ea1dddd,dddd,8ea1ddddv,ddddv 9015 e98095 9015 00009015 b377 b377 b377 b377 b377 b377 b377
+3006 b378 b378 b378 * 5d5e * 8ea1ddde,ddde,8ea1dddev,dddev 901e e9809e 901e 0000901e b378 b378 b378 b378 b378 b378 b378
+3007 b379 b379 b379 * 5d5f * 8ea1dddf,dddf,8ea1dddfv,dddfv 9020 e980a0 9020 00009020 b379 b379 b379 b379 b379 b379 b379
+3008 b37a b37a b37a * 5d60 * 8ea1dde0,dde0,8ea1dde0v,dde0v 900f e9808f 900f 0000900f b37a b37a b37a b37a b37a b37a b37a
+3009 b37b b37b b37b * 5d61 * 8ea1dde1,dde1,8ea1dde1v,dde1v 9022 e980a2 9022 00009022 b37b b37b b37b b37b b37b b37b b37b
+3010 b37c b37c b37c * 5d62 * 8ea1dde2,dde2,8ea1dde2v,dde2v 9016 e98096 9016 00009016 b37c b37c b37c b37c b37c b37c b37c
+3011 b37d b37d b37d * 5d63 * 8ea1dde3,dde3,8ea1dde3v,dde3v 901b e9809b 901b 0000901b b37d b37d b37d b37d b37d b37d b37d
+3012 b37e b37e b37e * 5d64 * 8ea1dde4,dde4,8ea1dde4v,dde4v 9014 e98094 9014 00009014 b37e b37e b37e b37e b37e b37e b37e
+3013 b3a1 b3a1 b3a1 * 5d65 * 8ea1dde5,dde5,8ea1dde5v,dde5v 90e8 e983a8 90e8 000090e8 b3a1 b3a1 b3a1 b3a1 b3a1 b3a1 b3a1
+3014 b3a2 b3a2 b3a2 * 5d66 * 8ea1dde6,dde6,8ea1dde6v,dde6v 90ed e983ad 90ed 000090ed b3a2 b3a2 b3a2 b3a2 b3a2 b3a2 b3a2
+3015 b3a3 b3a3 b3a3 * 5d67 * 8ea1dde7,dde7,8ea1dde7v,dde7v 90fd e983bd,ee91b8 90fd,e478 000090fd,0000e478 906d,b3a3 b3a3 b3a3 b3a3 b3a3 b3a3 906d,b3a3
+3016 b3a4 b3a4 b3a4 * 5d68 * 8ea1dde8,dde8,8ea1dde8v,dde8v 9157 e98597 9157 00009157 b3a4 b3a4 b3a4 b3a4 b3a4 b3a4 b3a4
+3017 b3a5 b3a5 b3a5 * 5d69 * 8ea1dde9,dde9,8ea1dde9v,dde9v 91ce e9878e 91ce 000091ce b3a5 b3a5 b3a5 b3a5 b3a5 b3a5 b3a5
+3018 b3a6 b3a6 b3a6 * 5d6a * 8ea1ddea,ddea,8ea1ddeav,ddeav 91f5 e987b5 91f5 000091f5 b3a6 b3a6 b3a6 b3a6 b3a6 b3a6 b3a6
+3019 b3a7 b3a7 b3a7 * 5d6b * 8ea1ddeb,ddeb,8ea1ddebv,ddebv 91e6 e987a6 91e6 000091e6 b3a7 b3a7 b3a7 b3a7 b3a7 b3a7 b3a7
+3020 b3a8 b3a8 b3a8 * 5d6c * 8ea1ddec,ddec,8ea1ddecv,ddecv 91e3 e987a3 91e3 000091e3 b3a8 b3a8 b3a8 b3a8 b3a8 b3a8 b3a8
+3021 b3a9 b3a9 b3a9 * 5d6d * 8ea1dded,dded,8ea1ddedv,ddedv 91e7 e987a7 91e7 000091e7 b3a9 b3a9 b3a9 b3a9 b3a9 b3a9 b3a9
+3022 b3aa b3aa b3aa * 5d6e * 8ea1ddee,ddee,8ea1ddeev,ddeev 91ed e987ad 91ed 000091ed b3aa b3aa b3aa b3aa b3aa b3aa b3aa
+3023 b3ab b3ab b3ab * 5d6f * 8ea1ddef,ddef,8ea1ddefv,ddefv 91e9 e987a9 91e9 000091e9 b3ab b3ab b3ab b3ab b3ab b3ab b3ab
+3024 b3ac b3ac b3ac * 5d70 * 8ea1ddf0,ddf0,8ea1ddf0v,ddf0v 9589 e99689 9589 00009589 b3ac b3ac b3ac b3ac b3ac b3ac b3ac
+3025 b3ad b3ad b3ad * 5d71 * 8ea1ddf1,ddf1,8ea1ddf1v,ddf1v 966a e999aa 966a 0000966a b3ad b3ad b3ad b3ad b3ad b3ad b3ad
+3026 b3ae b3ae b3ae * 5d72 * 8ea1ddf2,ddf2,8ea1ddf2v,ddf2v 9675 e999b5 9675 00009675 b3ae b3ae b3ae b3ae b3ae b3ae b3ae
+3027 b3af b3af b3af * 5d73 * 8ea1ddf3,ddf3,8ea1ddf3v,ddf3v 9673 e999b3 9673 00009673 b3af b3af b3af b3af b3af b3af b3af
+3028 b3b0 b3b0 b3b0 * 5d74 * 8ea1ddf4,ddf4,8ea1ddf4v,ddf4v 9678 e999b8 9678 00009678 b3b0 b3b0 b3b0 b3b0 b3b0 b3b0 b3b0
+3029 b3b1 b3b1 b3b1 * 5d75 * 8ea1ddf5,ddf5,8ea1ddf5v,ddf5v 9670 e999b0 9670 00009670 b3b1 b3b1 b3b1 b3b1 b3b1 b3b1 b3b1
+3030 b3b2 b3b2 b3b2 * 5d76 * 8ea1ddf6,ddf6,8ea1ddf6v,ddf6v 9674 e999b4 9674 00009674 b3b2 b3b2 b3b2 b3b2 b3b2 b3b2 b3b2
+3031 b3b3 b3b3 b3b3 * 5d77 * 8ea1ddf7,ddf7,8ea1ddf7v,ddf7v 9676 e999b6 9676 00009676 b3b3 b3b3 b3b3 b3b3 b3b3 b3b3 b3b3
+3032 b3b4 b3b4 b3b4 * 5d78 * 8ea1ddf8,ddf8,8ea1ddf8v,ddf8v 9677 e999b7 9677 00009677 b3b4 b3b4 b3b4 b3b4 b3b4 b3b4 b3b4
+3033 b3b5 b3b5 b3b5 * 5d79 * 8ea1ddf9,ddf9,8ea1ddf9v,ddf9v 966c e999ac 966c 0000966c b3b5 b3b5 b3b5 b3b5 b3b5 b3b5 b3b5
+3034 b3b6 b3b6 b3b6 * 5d7a * 8ea1ddfa,ddfa,8ea1ddfav,ddfav 96c0 e99b80 96c0 000096c0 b3b6 b3b6 b3b6 b3b6 b3b6 b3b6 b3b6
+3035 b3b7 b3b7 b3b7 * 5d7b * 8ea1ddfb,ddfb,8ea1ddfbv,ddfbv 96ea e99baa 96ea 000096ea b3b7 b3b7 b3b7 b3b7 b3b7 b3b7 b3b7
+3036 b3b8 b3b8 b3b8 * 5d7c * 8ea1ddfc,ddfc,8ea1ddfcv,ddfcv 96e9 e99ba9 96e9 000096e9 b3b8 b3b8 b3b8 b3b8 b3b8 b3b8 b3b8
+3037 b3b9 b3b9 b3b9 * 5d7d * 8ea1ddfd,ddfd,8ea1ddfdv,ddfdv 7ae0 e7aba0 7ae0 00007ae0 b3b9 b3b9 b3b9 b3b9 b3b9 b3b9 b3b9
+3038 b3ba b3ba b3ba * 5d7e * 8ea1ddfe,ddfe,8ea1ddfev,ddfev 7adf e7ab9f 7adf 00007adf b3ba b3ba b3ba b3ba b3ba b3ba b3ba
+3039 b3bb b3bb b3bb * 5e21 * 8ea1dea1,dea1,8ea1dea1v,dea1v 9802 e9a082 9802 00009802 b3bb b3bb b3bb b3bb b3bb b3bb b3bb
+3040 b3bc b3bc b3bc * 5e22 * 8ea1dea2,dea2,8ea1dea2v,dea2v 9803 e9a083 9803 00009803 b3bc b3bc b3bc b3bc b3bc b3bc b3bc
+3041 b3bd b3bd b3bd * 2926,5e23 * 8ea1a9a6,8ea1dea3,a9a6,dea3,8ea1a9a6v,8ea1dea3v,a9a6v,dea3v 9b5a e9ad9a,e2bf82 9b5a,2fc2 00009b5a,00002fc2 b3bd b3bd b3bd b3bd b3bd b3bd b3bd
+3042 b3be b3be b3be * 2927,5e24 * 8ea1a9a7,8ea1dea4,a9a7,dea4,8ea1a9a7v,8ea1dea4v,a9a7v,dea4v 9ce5 e9b3a5,e2bf83 9ce5,2fc3 00009ce5,00002fc3 b3be b3be b3be b3be b3be b3be b3be
+3043 b3bf b3bf b3bf * 2928,5e25 * 8ea1a9a8,8ea1dea5,a9a8,dea5,8ea1a9a8v,8ea1dea5v,a9a8v,dea5v 9e75 e9b9b5,e2bf84 9e75,2fc4 00009e75,00002fc4 b3bf b3bf 9157,b3bf b3bf b3bf b3bf b3bf
+3044 b3c0 b3c0 b3c0 * 2929,5e26 * 8ea1a9a9,8ea1dea6,a9a9,dea6,8ea1a9a9v,8ea1dea6v,a9a9v,dea6v 9e7f e9b9bf,e2bf85 9e7f,2fc5 00009e7f,00002fc5 b3c0 b3c0 b3c0 b3c0 b3c0 b3c0 b3c0
+3045 b3c1 b3c1 b3c1 * 292a,5e27 * 8ea1a9aa,8ea1dea7,a9aa,dea7,8ea1a9aav,8ea1dea7v,a9aav,dea7v 9ea5 e9baa5,e2bf86 9ea5,2fc6 00009ea5,00002fc6 b3c1 b3c1 b3c1 b3c1 b3c1 b3c1 b3c1
+3046 b3c2 b3c2 b3c2 * 292b,5e28 * 8ea1a9ab,8ea1dea8,a9ab,dea8,8ea1a9abv,8ea1dea8v,a9abv,dea8v 9ebb e9babb,e2bf87 9ebb,2fc7 00009ebb,00002fc7 b3c2 b3c2 b3c2 b3c2 b3c2 b3c2 b3c2
+3047 b3c3 b3c3 b3c3 * 5e29 * 8ea1dea9,dea9,8ea1dea9v,dea9v 50a2 e582a2 50a2 000050a2 b3c3 b3c3 b3c3 b3c3 b3c3 b3c3 b3c3
+3048 b3c4 b3c4 b3c4 * 5e2a * 8ea1deaa,deaa,8ea1deaav,deaav 508d e5828d 508d 0000508d b3c4 b3c4 b3c4 b3c4 b3c4 b3c4 b3c4
+3049 b3c5 b3c5 b3c5 * 5e2b * 8ea1deab,deab,8ea1deabv,deabv 5085 e58285 5085 00005085 b3c5 b3c5 b3c5 b3c5 b3c5 b3c5 b3c5
+3050 b3c6 b3c6 b3c6 * 5e2c * 8ea1deac,deac,8ea1deacv,deacv 5099 e58299 5099 00005099 b3c6 b3c6 b3c6 b3c6 b3c6 b3c6 b3c6
+3051 b3c7 b3c7 b3c7 * 5e2d * 8ea1dead,dead,8ea1deadv,deadv 5091 e58291 5091 00005091 b3c7 b3c7 b3c7 b3c7 b3c7 b3c7 b3c7
+3052 b3c8 b3c8 b3c8 * 5e2e * 8ea1deae,deae,8ea1deaev,deaev 5080 e58280 5080 00005080 b3c8 b3c8 b3c8 b3c8 b3c8 b3c8 b3c8
+3053 b3c9 b3c9 b3c9 * 5e2f * 8ea1deaf,deaf,8ea1deafv,deafv 5096 e58296 5096 00005096 b3c9 b3c9 b3c9 b3c9 b3c9 b3c9 b3c9
+3054 b3ca b3ca b3ca * 5e30 * 8ea1deb0,deb0,8ea1deb0v,deb0v 5098 e58298 5098 00005098 b3ca b3ca b3ca b3ca b3ca b3ca b3ca
+3055 b3cb b3cb b3cb * 5e31 * 8ea1deb1,deb1,8ea1deb1v,deb1v 509a e5829a 509a 0000509a b3cb b3cb b3cb b3cb b3cb b3cb b3cb
+3056 b3cc b3cc b3cc * 5e32 * 8ea1deb2,deb2,8ea1deb2v,deb2v 6700 e69c80 6700 00006700 b3cc b3cc b3cc b3cc b3cc b3cc b3cc
+3057 b3cd b3cd b3cd * 5e33 * 8ea1deb3,deb3,8ea1deb3v,deb3v 51f1 e587b1 51f1 000051f1 b3cd b3cd b3cd b3cd b3cd b3cd b3cd
+3058 b3ce b3ce b3ce * 5e34 * 8ea1deb4,deb4,8ea1deb4v,deb4v 5272 e589b2 5272 00005272 b3ce b3ce b3ce b3ce b3ce b3ce b3ce
+3059 b3cf b3cf b3cf * 5e35 * 8ea1deb5,deb5,8ea1deb5v,deb5v 5274 e589b4 5274 00005274 b3cf b3cf b3cf b3cf b3cf b3cf b3cf
+3060 b3d0 b3d0 b3d0 * 5e36 * 8ea1deb6,deb6,8ea1deb6v,deb6v 5275 e589b5 5275 00005275 b3d0 b3d0 b3d0 b3d0 b3d0 b3d0 b3d0
+3061 b3d1 b3d1 b3d1 * 5e37 * 8ea1deb7,deb7,8ea1deb7v,deb7v 5269 e589a9 5269 00005269 b3d1 b3d1 b3d1 b3d1 b3d1 b3d1 b3d1
+3062 b3d2 b3d2 b3d2 * 5e38 * 8ea1deb8,deb8,8ea1deb8v,deb8v 52de e58b9e 52de 000052de b3d2 b3d2 b3d2 b3d2 b3d2 b3d2 b3d2
+3063 b3d3 b3d3 b3d3 * 5e39 * 8ea1deb9,deb9,8ea1deb9v,deb9v 52dd e58b9d 52dd 000052dd b3d3 b3d3 b3d3 b3d3 b3d3 b3d3 b3d3
+3064 b3d4 b3d4 b3d4 * 5e3a * 8ea1deba,deba,8ea1debav,debav 52db e58b9b 52db 000052db b3d4 b3d4 b3d4 b3d4 b3d4 b3d4 b3d4
+3065 b3d5 b3d5 b3d5 * 5e3b * 8ea1debb,debb,8ea1debbv,debbv 535a e58d9a 535a 0000535a b3d5 b3d5 b3d5 b3d5 b3d5 b3d5 b3d5
+3066 b3d6 b3d6 b3d6 * 5e3c * 8ea1debc,debc,8ea1debcv,debcv 53a5 e58ea5 53a5 000053a5 b3d6 b3d6 b3d6 b3d6 b3d6 b3d6 b3d6
+3067 b3d7 b3d7 b3d7 * 5e3d * 8ea1debd,debd,8ea1debdv,debdv 557b e595bb 557b 0000557b b3d7 b3d7 b3d7 b3d7 b3d7 b3d7 b3d7
+3068 b3d8 b3d8 b3d8 * 5e3e * 8ea1debe,debe,8ea1debev,debev 5580 e59680 5580 00005580 b3d8 b3d8 b3d8 b3d8 b3d8 b3d8 b3d8
+3069 b3d9 b3d9 b3d9 * 5e3f * 8ea1debf,debf,8ea1debfv,debfv 55a7 e596a7 55a7 000055a7 b3d9 b3d9 b3d9 b3d9 b3d9 b3d9 b3d9
+3070 b3da b3da b3da * 5e40 * 8ea1dec0,dec0,8ea1dec0v,dec0v 557c e595bc 557c 0000557c b3da b3da b3da b3da b3da b3da b3da
+3071 b3db b3db b3db * 5e41 * 8ea1dec1,dec1,8ea1dec1v,dec1v 558a e5968a 558a 0000558a b3db b3db b3db b3db b3db b3db b3db
+3072 b3dc b3dc b3dc * 5e42 * 8ea1dec2,dec2,8ea1dec2v,dec2v 559d e5969d 559d 0000559d b3dc b3dc b3dc b3dc b3dc b3dc b3dc
+3073 b3dd b3dd b3dd * 5e43 * 8ea1dec3,dec3,8ea1dec3v,dec3v 5598 e59698 5598 00005598 b3dd b3dd b3dd b3dd b3dd b3dd b3dd
+3074 b3de b3de b3de * 5e44 * 8ea1dec4,dec4,8ea1dec4v,dec4v 5582 e59682 5582 00005582 b3de b3de b3de b3de b3de b3de b3de
+3075 b3df b3df b3df * 5e45 * 8ea1dec5,dec5,8ea1dec5v,dec5v 559c e5969c 559c 0000559c b3df b3df b3df b3df b3df b3df b3df
+3076 b3e0 b3e0 b3e0 * 5e46 * 8ea1dec6,dec6,8ea1dec6v,dec6v 55aa e596aa 55aa 000055aa b3e0 b3e0 b3e0 b3e0 b3e0 b3e0 b3e0
+3077 b3e1 b3e1 b3e1 * 5e47 * 8ea1dec7,dec7,8ea1dec7v,dec7v 5594 e59694 5594 00005594 b3e1 b3e1 b3e1 b3e1 b3e1 b3e1 b3e1
+3078 b3e2 b3e2 b3e2 * 5e48 * 8ea1dec8,dec8,8ea1dec8v,dec8v 5587 e59687 5587 00005587 b3e2 b3e2 b3e2 b3e2 b3e2 b3e2 b3e2
+3079 b3e3 b3e3 b3e3 * 5e49 * 8ea1dec9,dec9,8ea1dec9v,dec9v 558b e5968b 558b 0000558b b3e3 b3e3 b3e3 b3e3 b3e3 b3e3 b3e3
+3080 b3e4 b3e4 b3e4 * 5e4a * 8ea1deca,deca,8ea1decav,decav 5583 e59683 5583 00005583 b3e4 b3e4 b3e4 b3e4 b3e4 b3e4 b3e4
+3081 b3e5 b3e5 b3e5 * 5e4b * 8ea1decb,decb,8ea1decbv,decbv 55b3 e596b3 55b3 000055b3 b3e5 b3e5 b3e5 b3e5 b3e5 b3e5 b3e5
+3082 b3e6 b3e6 b3e6 * 5e4c * 8ea1decc,decc,8ea1deccv,deccv 55ae e596ae 55ae 000055ae b3e6 b3e6 b3e6 b3e6 b3e6 b3e6 b3e6
+3083 b3e7 b3e7 b3e7 * 5e4d * 8ea1decd,decd,8ea1decdv,decdv 559f e5969f 559f 0000559f b3e7 b3e7 b3e7 b3e7 b3e7 b3e7 b3e7
+3084 b3e8 b3e8 b3e8 * 5e4e * 8ea1dece,dece,8ea1decev,decev 553e e594be 553e 0000553e b3e8 b3e8 b3e8 b3e8 b3e8 b3e8 b3e8
+3085 b3e9 b3e9 b3e9 * 5e4f * 8ea1decf,decf,8ea1decfv,decfv 55b2 e596b2 55b2 000055b2 b3e9 b3e9 b3e9 b3e9 b3e9 b3e9 b3e9
+3086 b3ea b3ea b3ea * 5e50 * 8ea1ded0,ded0,8ea1ded0v,ded0v 559a e5969a 559a 0000559a b3ea b3ea b3ea b3ea b3ea b3ea b3ea
+3087 b3eb b3eb b3eb * 5e51 * 8ea1ded1,ded1,8ea1ded1v,ded1v 55bb e596bb 55bb 000055bb b3eb b3eb b3eb b3eb b3eb b3eb b3eb
+3088 b3ec b3ec b3ec * 5e52 * 8ea1ded2,ded2,8ea1ded2v,ded2v 55ac e596ac 55ac 000055ac b3ec b3ec b3ec b3ec b3ec b3ec b3ec
+3089 b3ed b3ed b3ed * 5e53 * 8ea1ded3,ded3,8ea1ded3v,ded3v 55b1 e596b1 55b1 000055b1 b3ed b3ed b3ed b3ed b3ed b3ed b3ed
+3090 b3ee b3ee b3ee * 5e54 * 8ea1ded4,ded4,8ea1ded4v,ded4v 557e e595be 557e 0000557e b3ee b3ee b3ee b3ee b3ee b3ee b3ee
+3091 b3ef b3ef b3ef * 5e55 * 8ea1ded5,ded5,8ea1ded5v,ded5v 5589 e59689 5589 00005589 b3ef b3ef b3ef b3ef b3ef b3ef b3ef
+3092 b3f0 b3f0 b3f0 * 5e56 * 8ea1ded6,ded6,8ea1ded6v,ded6v 55ab e596ab 55ab 000055ab b3f0 b3f0 b3f0 b3f0 b3f0 b3f0 b3f0
+3093 b3f1 b3f1 b3f1 * 5e57 * 8ea1ded7,ded7,8ea1ded7v,ded7v 5599 e59699 5599 00005599 b3f1 b3f1 b3f1 b3f1 b3f1 b3f1 b3f1
+3094 b3f2 b3f2 b3f2 * 5e58 * 8ea1ded8,ded8,8ea1ded8v,ded8v 570d e59c8d 570d 0000570d b3f2 b3f2 b3f2 b3f2 b3f2 b3f2 b3f2
+3095 b3f3 b3f3 b3f3 * 5e59 * 8ea1ded9,ded9,8ea1ded9v,ded9v 582f e5a0af 582f 0000582f b3f3 b3f3 b3f3 b3f3 b3f3 b3f3 b3f3
+3096 b3f4 b3f4 b3f4 * 5e5a * 8ea1deda,deda,8ea1dedav,dedav 582a e5a0aa 582a 0000582a b3f4 b3f4 b3f4 b3f4 b3f4 b3f4 b3f4
+3097 b3f5 b3f5 b3f5 * 5e5b * 8ea1dedb,dedb,8ea1dedbv,dedbv 5834 e5a0b4 5834 00005834 b3f5 b3f5 b3f5 b3f5 b3f5 b3f5 b3f5
+3098 b3f6 b3f6 b3f6 * 5e5c * 8ea1dedc,dedc,8ea1dedcv,dedcv 5824 e5a0a4 5824 00005824 b3f6 b3f6 b3f6 b3f6 b3f6 b3f6 b3f6
+3099 b3f7 b3f7 b3f7 * 5e5d * 8ea1dedd,dedd,8ea1deddv,deddv 5830 e5a0b0 5830 00005830 b3f7 b3f7 b3f7 b3f7 b3f7 b3f7 b3f7
+3100 b3f8 b3f8 b3f8 * 5e5e * 8ea1dede,dede,8ea1dedev,dedev 5831 e5a0b1 5831 00005831 b3f8 b3f8 b3f8 b3f8 b3f8 b3f8 b3f8
+3101 b3f9 b3f9 b3f9 * 5e5f * 8ea1dedf,dedf,8ea1dedfv,dedfv 5821 e5a0a1 5821 00005821 b3f9 b3f9 b3f9 b3f9 b3f9 b3f9 b3f9
+3102 b3fa b3fa b3fa * 5e60 * 8ea1dee0,dee0,8ea1dee0v,dee0v 581d e5a09d 581d 0000581d b3fa b3fa b3fa b3fa b3fa b3fa b3fa
+3103 b3fb b3fb b3fb * 5e61 * 8ea1dee1,dee1,8ea1dee1v,dee1v 5820 e5a0a0 5820 00005820 b3fb b3fb b3fb b3fb b3fb b3fb b3fb
+3104 b3fc b3fc b3fc * 5e62 * 8ea1dee2,dee2,8ea1dee2v,dee2v 58f9 e5a3b9 58f9 000058f9 b3fc b3fc b3fc b3fc b3fc b3fc b3fc
+3105 b3fd b3fd b3fd * 5e63 * 8ea1dee3,dee3,8ea1dee3v,dee3v 58fa e5a3ba 58fa 000058fa b3fd b3fd b3fd b3fd b3fd b3fd b3fd
+3106 b3fe b3fe b3fe * 5e64 * 8ea1dee4,dee4,8ea1dee4v,dee4v 5960 e5a5a0 5960 00005960 b3fe b3fe b3fe b3fe b3fe b3fe b3fe
+3107 b440 b440 b440 * 5e65 * 8ea1dee5,dee5,8ea1dee5v,dee5v 5a77 e5a9b7,ee83b3 5a77,e0f3 00005a77,0000e0f3 fbb8,b440 b440 b440 b440 b440 b440 fbb8,b440
+3108 b441 b441 b441 * 5e66 * 8ea1dee6,dee6,8ea1dee6v,dee6v 5a9a e5aa9a 5a9a 00005a9a b441 b441 b441 b441 b441 b441 b441
+3109 b442 b442 b442 * 5e67 * 8ea1dee7,dee7,8ea1dee7v,dee7v 5a7f e5a9bf 5a7f 00005a7f b442 b442 b442 b442 b442 b442 b442
+3110 b443 b443 b443 * 5e68 * 8ea1dee8,dee8,8ea1dee8v,dee8v 5a92 e5aa92 5a92 00005a92 b443 b443 b443 b443 b443 b443 b443
+3111 b444 b444 b444 * 5e69 * 8ea1dee9,dee9,8ea1dee9v,dee9v 5a9b e5aa9b 5a9b 00005a9b b444 b444 b444 b444 b444 b444 b444
+3112 b445 b445 b445 * 5e6a * 8ea1deea,deea,8ea1deeav,deeav 5aa7 e5aaa7 5aa7 00005aa7 b445 b445 b445 b445 b445 b445 b445
+3113 b446 b446 b446 * 5e6b * 8ea1deeb,deeb,8ea1deebv,deebv 5b73 e5adb3 5b73 00005b73 b446 b446 b446 b446 b446 b446 b446
+3114 b447 b447 b447 * 5e6c * 8ea1deec,deec,8ea1deecv,deecv 5b71 e5adb1 5b71 00005b71 b447 b447 b447 b447 b447 b447 b447
+3115 b448 b448 b448 * 5e6d * 8ea1deed,deed,8ea1deedv,deedv 5bd2 e5af92 5bd2 00005bd2 b448 b448 b448 b448 b448 b448 b448
+3116 b449 b449 b449 * 5e6e * 8ea1deee,deee,8ea1deeev,deeev 5bcc e5af8c 5bcc 00005bcc b449 b449 b449 b449 b449 b449 b449
+3117 b44a b44a b44a * 5e6f * 8ea1deef,deef,8ea1deefv,deefv 5bd3 e5af93 5bd3 00005bd3 b44a b44a b44a b44a b44a b44a b44a
+3118 b44b b44b b44b * 5e70 * 8ea1def0,def0,8ea1def0v,def0v 5bd0 e5af90 5bd0 00005bd0 b44b b44b b44b b44b b44b b44b b44b
+3119 b44c b44c b44c * 5e71 * 8ea1def1,def1,8ea1def1v,def1v 5c0a e5b08a 5c0a 00005c0a b44c b44c b44c b44c b44c b44c b44c
+3120 b44d b44d b44d * 5e72 * 8ea1def2,def2,8ea1def2v,def2v 5c0b e5b08b 5c0b 00005c0b b44d b44d b44d b44d b44d b44d b44d
+3121 b44e b44e b44e * 5e73 * 8ea1def3,def3,8ea1def3v,def3v 5c31 e5b0b1 5c31 00005c31 b44e b44e b44e b44e b44e b44e b44e
+3122 b44f b44f b44f * 5e74 * 8ea1def4,def4,8ea1def4v,def4v 5d4c e5b58c 5d4c 00005d4c b44f b44f b44f b44f b44f b44f b44f
+3123 b450 b450 b450 * 5e75 * 8ea1def5,def5,8ea1def5v,def5v 5d50 e5b590 5d50 00005d50 b450 b450 b450 b450 b450 b450 b450
+3124 b451 b451 b451 * 5e76 * 8ea1def6,def6,8ea1def6v,def6v 5d34 e5b4b4 5d34 00005d34 b451 b451 b451 b451 b451 b451 b451
+3125 b452 b452 b452 * 5e77 * 8ea1def7,def7,8ea1def7v,def7v 5d47 e5b587 5d47 00005d47 b452 b452 b452 b452 b452 b452 b452
+3126 b453 b453 b453 * 5e78 * 8ea1def8,def8,8ea1def8v,def8v 5dfd e5b7bd 5dfd 00005dfd b453 b453 b453 b453 b453 b453 b453
+3127 b454 b454 b454 * 5e79 * 8ea1def9,def9,8ea1def9v,def9v 5e45 e5b985 5e45 00005e45 b454 b454 b454 b454 b454 b454 b454
+3128 b455 b455 b455 * 5e7a * 8ea1defa,defa,8ea1defav,defav 5e3d e5b8bd 5e3d 00005e3d b455 b455 b455 b455 b455 b455 b455
+3129 b456 b456 b456 * 5e7b * 8ea1defb,defb,8ea1defbv,defbv 5e40 e5b980 5e40 00005e40 b456 b456 b456 b456 b456 b456 b456
+3130 b457 b457 b457 * 5e7c * 8ea1defc,defc,8ea1defcv,defcv 5e43 e5b983 5e43 00005e43 b457 b457 b457 b457 b457 b457 b457
+3131 b458 b458 b458 * 5e7d * 8ea1defd,defd,8ea1defdv,defdv 5e7e e5b9be 5e7e 00005e7e b458 b458 b458 b458 b458 b458 b458
+3132 b459 b459 b459 * 5e7e * 8ea1defe,defe,8ea1defev,defev 5eca e5bb8a 5eca 00005eca b459 b459 b459 b459 b459 b459 b459
+3133 b45a b45a b45a * 5f21 * 8ea1dfa1,dfa1,8ea1dfa1v,dfa1v 5ec1 e5bb81 5ec1 00005ec1 b45a b45a b45a b45a b45a b45a b45a
+3134 b45b b45b b45b * 5f22 * 8ea1dfa2,dfa2,8ea1dfa2v,dfa2v 5ec2 e5bb82 5ec2 00005ec2 b45b b45b b45b b45b b45b b45b b45b
+3135 b45c b45c b45c * 5f23 * 8ea1dfa3,dfa3,8ea1dfa3v,dfa3v 5ec4 e5bb84 5ec4 00005ec4 b45c b45c b45c b45c b45c b45c b45c
+3136 b45d b45d b45d * 5f24 * 8ea1dfa4,dfa4,8ea1dfa4v,dfa4v 5f3c e5bcbc 5f3c 00005f3c b45d b45d b45d b45d b45d b45d b45d
+3137 b45e b45e b45e * 5f25 * 8ea1dfa5,dfa5,8ea1dfa5v,dfa5v 5f6d e5bdad 5f6d 00005f6d b45e b45e b45e b45e b45e b45e b45e
+3138 b45f b45f b45f * 5f26 * 8ea1dfa6,dfa6,8ea1dfa6v,dfa6v 5fa9 e5bea9 5fa9 00005fa9 b45f b45f b45f b45f b45f b45f b45f
+3139 b460 b460 b460 * 5f27 * 8ea1dfa7,dfa7,8ea1dfa7v,dfa7v 5faa e5beaa 5faa 00005faa b460 b460 b460 b460 b460 b460 b460
+3140 b461 b461 b461 * 5f28 * 8ea1dfa8,dfa8,8ea1dfa8v,dfa8v 5fa8 e5bea8 5fa8 00005fa8 b461 b461 b461 b461 b461 b461 b461
+3141 b462 b462 b462 * 5f29 * 8ea1dfa9,dfa9,8ea1dfa9v,dfa9v 60d1 e68391 60d1 000060d1 b462 b462 b462 b462 b462 b462 b462
+3142 b463 b463 b463 * 5f2a * 8ea1dfaa,dfaa,8ea1dfaav,dfaav 60e1 e683a1 60e1 000060e1 b463 b463 b463 b463 b463 b463 b463
+3143 b464 b464 b464 * 5f2b * 8ea1dfab,dfab,8ea1dfabv,dfabv 60b2 e682b2 60b2 000060b2 b464 b464 b464 b464 b464 b464 b464
+3144 b465 b465 b465 * 5f2c * 8ea1dfac,dfac,8ea1dfacv,dfacv 60b6 e682b6 60b6 000060b6 b465 b465 b465 b465 b465 b465 b465
+3145 b466 b466 b466 * 5f2d * 8ea1dfad,dfad,8ea1dfadv,dfadv 60e0 e683a0 60e0 000060e0 b466 b466 b466 b466 b466 b466 b466
+3146 b467 b467 b467 * 5f2e * 8ea1dfae,dfae,8ea1dfaev,dfaev 611c e6849c 611c 0000611c b467 b467 b467 b467 b467 b467 b467
+3147 b468 b468 b468 * 5f2f * 8ea1dfaf,dfaf,8ea1dfafv,dfafv 6123 e684a3 6123 00006123 b468 b468 b468 b468 b468 b468 b468
+3148 b469 b469 b469 * 5f30 * 8ea1dfb0,dfb0,8ea1dfb0v,dfb0v 60fa e683ba 60fa 000060fa b469 b469 b469 b469 b469 b469 b469
+3149 b46a b46a b46a * 5f31 * 8ea1dfb1,dfb1,8ea1dfb1v,dfb1v 6115 e68495 6115 00006115 b46a b46a b46a b46a b46a b46a b46a
+3150 b46b b46b b46b * 5f32 * 8ea1dfb2,dfb2,8ea1dfb2v,dfb2v 60f0 e683b0 60f0 000060f0 b46b b46b b46b b46b b46b b46b b46b
+3151 b46c b46c b46c * 5f33 * 8ea1dfb3,dfb3,8ea1dfb3v,dfb3v 60fb e683bb 60fb 000060fb b46c b46c b46c b46c b46c b46c b46c
+3152 b46d b46d b46d * 5f34 * 8ea1dfb4,dfb4,8ea1dfb4v,dfb4v 60f4 e683b4 60f4 000060f4 b46d b46d b46d b46d b46d b46d b46d
+3153 b46e b46e b46e * 5f35 * 8ea1dfb5,dfb5,8ea1dfb5v,dfb5v 6168 e685a8 6168 00006168 b46e b46e b46e b46e b46e b46e b46e
+3154 b46f b46f b46f * 5f36 * 8ea1dfb6,dfb6,8ea1dfb6v,dfb6v 60f1 e683b1 60f1 000060f1 b46f b46f b46f b46f b46f b46f b46f
+3155 b470 b470 b470 * 5f37 * 8ea1dfb7,dfb7,8ea1dfb7v,dfb7v 610e e6848e 610e 0000610e b470 b470 b470 b470 b470 b470 b470
+3156 b471 b471 b471 * 5f38 * 8ea1dfb8,dfb8,8ea1dfb8v,dfb8v 60f6 e683b6 60f6 000060f6 b471 b471 b471 b471 b471 b471 b471
+3157 b472 b472 b472 * 5f39 * 8ea1dfb9,dfb9,8ea1dfb9v,dfb9v 6109 e68489 6109 00006109 b472 b472 b472 b472 b472 b472 b472
+3158 b473 b473 b473 * 5f3a * 8ea1dfba,dfba,8ea1dfbav,dfbav 6100 e68480 6100 00006100 b473 b473 b473 b473 b473 b473 b473
+3159 b474 b474 b474 * 5f3b * 8ea1dfbb,dfbb,8ea1dfbbv,dfbbv 6112 e68492 6112 00006112 b474 b474 b474 b474 b474 b474 b474
+3160 b475 b475 b475 * 5f3c * 8ea1dfbc,dfbc,8ea1dfbcv,dfbcv 621f e6889f 621f 0000621f b475 b475 b475 b475 b475 b475 b475
+3161 b476 b476 b476 * 5f3d * 8ea1dfbd,dfbd,8ea1dfbdv,dfbdv 6249 e68989 6249 00006249 b476 b476 b476 b476 b476 b476 b476
+3162 b477 b477 b477 * 5f3e * 8ea1dfbe,dfbe,8ea1dfbev,dfbev 63a3 e68ea3 63a3 000063a3 b477 b477 b477 b477 b477 b477 b477
+3163 b478 b478 b478 * 5f3f * 8ea1dfbf,dfbf,8ea1dfbfv,dfbfv 638c e68e8c 638c 0000638c b478 b478 b478 b478 b478 b478 b478
+3164 b479 b479 b479 * 5f40 * 8ea1dfc0,dfc0,8ea1dfc0v,dfc0v 63cf e68f8f 63cf 000063cf b479 b479 b479 b479 b479 b479 b479
+3165 b47a b47a b47a * 5f41 * 8ea1dfc1,dfc1,8ea1dfc1v,dfc1v 63c0 e68f80 63c0 000063c0 b47a b47a b47a b47a b47a b47a b47a
+3166 b47b b47b b47b * 5f42 * 8ea1dfc2,dfc2,8ea1dfc2v,dfc2v 63e9 e68fa9 63e9 000063e9 b47b b47b b47b b47b b47b b47b b47b
+3167 b47c b47c b47c * 5f43 * 8ea1dfc3,dfc3,8ea1dfc3v,dfc3v 63c9 e68f89 63c9 000063c9 b47c b47c b47c b47c b47c b47c b47c
+3168 b47d b47d b47d * 5f44 * 8ea1dfc4,dfc4,8ea1dfc4v,dfc4v 63c6 e68f86 63c6 000063c6 b47d b47d b47d b47d b47d b47d b47d
+3169 b47e b47e b47e * 5f45 * 8ea1dfc5,dfc5,8ea1dfc5v,dfc5v 63cd e68f8d 63cd 000063cd b47e b47e b47e b47e b47e b47e b47e
+3170 b4a1 b4a1 b4a1 * 5f46 * 8ea1dfc6,dfc6,8ea1dfc6v,dfc6v 63d2 e68f92 63d2 000063d2 b4a1 b4a1 b4a1 b4a1 b4a1 b4a1 b4a1
+3171 b4a2 b4a2 b4a2 * 5f47 * 8ea1dfc7,dfc7,8ea1dfc7v,dfc7v 63e3 e68fa3 63e3 000063e3 b4a2 b4a2 b4a2 b4a2 b4a2 b4a2 b4a2
+3172 b4a3 b4a3 b4a3 * 5f48 * 8ea1dfc8,dfc8,8ea1dfc8v,dfc8v 63d0 e68f90 63d0 000063d0 b4a3 b4a3 b4a3 b4a3 b4a3 b4a3 b4a3
+3173 b4a4 b4a4 b4a4 * 5f49 * 8ea1dfc9,dfc9,8ea1dfc9v,dfc9v 63e1 e68fa1 63e1 000063e1 b4a4 b4a4 b4a4 b4a4 b4a4 b4a4 b4a4
+3174 b4a5 b4a5 b4a5 * 5f4a * 8ea1dfca,dfca,8ea1dfcav,dfcav 63d6 e68f96 63d6 000063d6 b4a5 b4a5 b4a5 b4a5 b4a5 b4a5 b4a5
+3175 b4a6 b4a6 b4a6 * 5f4b * 8ea1dfcb,dfcb,8ea1dfcbv,dfcbv 63ed e68fad 63ed 000063ed b4a6 b4a6 b4a6 b4a6 b4a6 b4a6 b4a6
+3176 b4a7 b4a7 b4a7 * 5f4c * 8ea1dfcc,dfcc,8ea1dfccv,dfccv 63ee e68fae 63ee 000063ee b4a7 b4a7 b4a7 b4a7 b4a7 b4a7 b4a7
+3177 b4a8 b4a8 b4a8 * 5f4d * 8ea1dfcd,dfcd,8ea1dfcdv,dfcdv 6376 e68db6 6376 00006376 b4a8 b4a8 b4a8 b4a8 b4a8 b4a8 b4a8
+3178 b4a9 b4a9 b4a9 * 5f4e * 8ea1dfce,dfce,8ea1dfcev,dfcev 63f4 e68fb4 63f4 000063f4 b4a9 b4a9 b4a9 b4a9 b4a9 b4a9 b4a9
+3179 b4aa b4aa b4aa * 5f4f * 8ea1dfcf,dfcf,8ea1dfcfv,dfcfv 63ea e68faa 63ea 000063ea b4aa b4aa b4aa b4aa b4aa b4aa b4aa
+3180 b4ab b4ab b4ab * 5f50 * 8ea1dfd0,dfd0,8ea1dfd0v,dfd0v 63db e68f9b 63db 000063db b4ab b4ab b4ab b4ab b4ab b4ab b4ab
+3181 b4ac b4ac b4ac * 5f51 * 8ea1dfd1,dfd1,8ea1dfd1v,dfd1v 6452 e69192 6452 00006452 b4ac b4ac b4ac b4ac b4ac b4ac b4ac
+3182 b4ad b4ad b4ad * 5f52 * 8ea1dfd2,dfd2,8ea1dfd2v,dfd2v 63da e68f9a 63da 000063da b4ad b4ad b4ad b4ad b4ad b4ad b4ad
+3183 b4ae b4ae b4ae * 5f53 * 8ea1dfd3,dfd3,8ea1dfd3v,dfd3v 63f9 e68fb9 63f9 000063f9 b4ae b4ae b4ae b4ae b4ae b4ae b4ae
+3184 b4af b4af b4af * 5f54 * 8ea1dfd4,dfd4,8ea1dfd4v,dfd4v 655e e6959e 655e 0000655e b4af b4af b4af b4af b4af b4af b4af
+3185 b4b0 b4b0 b4b0 * 5f55 * 8ea1dfd5,dfd5,8ea1dfd5v,dfd5v 6566 e695a6 6566 00006566 b4b0 b4b0 b4b0 b4b0 b4b0 b4b0 b4b0
+3186 b4b1 b4b1 b4b1 * 5f56 * 8ea1dfd6,dfd6,8ea1dfd6v,dfd6v 6562 e695a2 6562 00006562 b4b1 b4b1 b4b1 b4b1 b4b1 b4b1 b4b1
+3187 b4b2 b4b2 b4b2 * 5f57 * 8ea1dfd7,dfd7,8ea1dfd7v,dfd7v 6563 e695a3 6563 00006563 b4b2 b4b2 b4b2 b4b2 b4b2 b4b2 b4b2
+3188 b4b3 b4b3 b4b3 * 5f58 * 8ea1dfd8,dfd8,8ea1dfd8v,dfd8v 6591 e69691 6591 00006591 b4b3 b4b3 b4b3 b4b3 b4b3 b4b3 b4b3
+3189 b4b4 b4b4 b4b4 * 5f59 * 8ea1dfd9,dfd9,8ea1dfd9v,dfd9v 6590 e69690 6590 00006590 b4b4 b4b4 b4b4 b4b4 b4b4 b4b4 b4b4
+3190 b4b5 b4b5 b4b5 * 5f5a * 8ea1dfda,dfda,8ea1dfdav,dfdav 65af e696af 65af 000065af b4b5 b4b5 b4b5 b4b5 b4b5 b4b5 b4b5
+3191 b4b6 b4b6 b4b6 * 5f5b * 8ea1dfdb,dfdb,8ea1dfdbv,dfdbv 666e e699ae 666e 0000666e b4b6 b4b6 b4b6 b4b6 b4b6 b4b6 b4b6
+3192 b4b7 b4b7 b4b7 * 5f5c * 8ea1dfdc,dfdc,8ea1dfdcv,dfdcv 6670 e699b0 6670 00006670 b4b7 b4b7 b4b7 b4b7 b4b7 b4b7 b4b7
+3193 b4b8 b4b8 b4b8 * 5f5d * 8ea1dfdd,dfdd,8ea1dfddv,dfddv 6674 e699b4,ee86ba 6674,e1ba 00006674,0000e1ba fce2,b4b8 b4b8 b4b8 b4b8 b4b8 b4b8 fce2,b4b8
+3194 b4b9 b4b9 b4b9 * 5f5e * 8ea1dfde,dfde,8ea1dfdev,dfdev 6676 e699b6 6676 00006676 b4b9 b4b9 b4b9 b4b9 b4b9 b4b9 b4b9
+3195 b4ba b4ba b4ba * 5f5f * 8ea1dfdf,dfdf,8ea1dfdfv,dfdfv 666f e699af 666f 0000666f b4ba b4ba b4ba b4ba b4ba b4ba b4ba
+3196 b4bb b4bb b4bb * 5f60 * 8ea1dfe0,dfe0,8ea1dfe0v,dfe0v 6691 e69a91 6691 00006691 b4bb b4bb b4bb b4bb b4bb b4bb b4bb
+3197 b4bc b4bc b4bc * 5f61 * 8ea1dfe1,dfe1,8ea1dfe1v,dfe1v 667a e699ba 667a 0000667a b4bc b4bc b4bc b4bc b4bc b4bc b4bc
+3198 b4bd b4bd b4bd * 5f62 * 8ea1dfe2,dfe2,8ea1dfe2v,dfe2v 667e e699be 667e 0000667e b4bd b4bd b4bd b4bd b4bd b4bd b4bd
+3199 b4be b4be b4be * 5f63 * 8ea1dfe3,dfe3,8ea1dfe3v,dfe3v 6677 e699b7 6677 00006677 b4be b4be b4be b4be b4be b4be b4be
+3200 b4bf b4bf b4bf * 5f64 * 8ea1dfe4,dfe4,8ea1dfe4v,dfe4v 66fe e69bbe 66fe 000066fe b4bf b4bf b4bf b4bf b4bf b4bf b4bf
+3201 b4c0 b4c0 b4c0 * 5f65 * 8ea1dfe5,dfe5,8ea1dfe5v,dfe5v 66ff e69bbf 66ff 000066ff b4c0 b4c0 b4c0 b4c0 b4c0 b4c0 b4c0
+3202 b4c1 b4c1 b4c1 * 5f66 * 8ea1dfe6,dfe6,8ea1dfe6v,dfe6v 671f e69c9f 671f 0000671f b4c1 b4c1 b4c1 b4c1 b4c1 b4c1 b4c1
+3203 b4c2 b4c2 b4c2 * 5f67 * 8ea1dfe7,dfe7,8ea1dfe7v,dfe7v 671d e69c9d 671d 0000671d b4c2 b4c2 b4c2 b4c2 b4c2 b4c2 b4c2
+3204 b4c3 b4c3 b4c3 * 5f68 * 8ea1dfe8,dfe8,8ea1dfe8v,dfe8v 68fa e6a3ba 68fa 000068fa b4c3 b4c3 b4c3 b4c3 b4c3 b4c3 b4c3
+3205 b4c4 b4c4 b4c4 * 5f69 * 8ea1dfe9,dfe9,8ea1dfe9v,dfe9v 68d5 e6a395 68d5 000068d5 b4c4 b4c4 b4c4 b4c4 b4c4 b4c4 b4c4
+3206 b4c5 b4c5 b4c5 * 5f6a * 8ea1dfea,dfea,8ea1dfeav,dfeav 68e0 e6a3a0 68e0 000068e0 b4c5 b4c5 b4c5 b4c5 b4c5 b4c5 b4c5
+3207 b4c6 b4c6 b4c6 * 5f6b * 8ea1dfeb,dfeb,8ea1dfebv,dfebv 68d8 e6a398 68d8 000068d8 b4c6 b4c6 b4c6 b4c6 b4c6 b4c6 b4c6
+3208 b4c7 b4c7 b4c7 * 5f6c * 8ea1dfec,dfec,8ea1dfecv,dfecv 68d7 e6a397 68d7 000068d7 b4c7 b4c7 b4c7 b4c7 b4c7 b4c7 b4c7
+3209 b4c8 b4c8 b4c8 * 5f6d * 8ea1dfed,dfed,8ea1dfedv,dfedv 6905 e6a485 6905 00006905 b4c8 b4c8 b4c8 b4c8 b4c8 b4c8 b4c8
+3210 b4c9 b4c9 b4c9 * 5f6e * 8ea1dfee,dfee,8ea1dfeev,dfeev 68df e6a39f 68df 000068df b4c9 b4c9 b4c9 b4c9 b4c9 b4c9 b4c9
+3211 b4ca b4ca b4ca * 5f6f * 8ea1dfef,dfef,8ea1dfefv,dfefv 68f5 e6a3b5 68f5 000068f5 b4ca b4ca b4ca b4ca b4ca b4ca b4ca
+3212 b4cb b4cb b4cb * 5f70 * 8ea1dff0,dff0,8ea1dff0v,dff0v 68ee e6a3ae 68ee 000068ee b4cb b4cb b4cb b4cb b4cb b4cb b4cb
+3213 b4cc b4cc b4cc * 5f71 * 8ea1dff1,dff1,8ea1dff1v,dff1v 68e7 e6a3a7 68e7 000068e7 b4cc b4cc b4cc b4cc b4cc b4cc b4cc
+3214 b4cd b4cd b4cd * 5f72 * 8ea1dff2,dff2,8ea1dff2v,dff2v 68f9 e6a3b9 68f9 000068f9 b4cd b4cd b4cd b4cd b4cd b4cd b4cd
+3215 b4ce b4ce b4ce * 5f73 * 8ea1dff3,dff3,8ea1dff3v,dff3v 68d2 e6a392 68d2 000068d2 b4ce b4ce b4ce b4ce b4ce b4ce b4ce
+3216 b4cf b4cf b4cf * 5f74 * 8ea1dff4,dff4,8ea1dff4v,dff4v 68f2 e6a3b2 68f2 000068f2 b4cf b4cf b4cf b4cf b4cf b4cf b4cf
+3217 b4d0 b4d0 b4d0 * 5f75 * 8ea1dff5,dff5,8ea1dff5v,dff5v 68e3 e6a3a3 68e3 000068e3 b4d0 b4d0 b4d0 b4d0 b4d0 b4d0 b4d0
+3218 b4d1 b4d1 b4d1 * 5f76 * 8ea1dff6,dff6,8ea1dff6v,dff6v 68cb e6a38b 68cb 000068cb b4d1 b4d1 b4d1 b4d1 b4d1 b4d1 b4d1
+3219 b4d2 b4d2 b4d2 * 5f77 * 8ea1dff7,dff7,8ea1dff7v,dff7v 68cd e6a38d 68cd 000068cd b4d2 b4d2 b4d2 b4d2 b4d2 b4d2 b4d2
+3220 b4d3 b4d3 b4d3 * 5f78 * 8ea1dff8,dff8,8ea1dff8v,dff8v 690d e6a48d 690d 0000690d b4d3 b4d3 b4d3 b4d3 b4d3 b4d3 b4d3
+3221 b4d4 b4d4 b4d4 * 5f79 * 8ea1dff9,dff9,8ea1dff9v,dff9v 6912 e6a492 6912 00006912 b4d4 b4d4 b4d4 b4d4 b4d4 b4d4 b4d4
+3222 b4d5 b4d5 b4d5 * 5f7a * 8ea1dffa,dffa,8ea1dffav,dffav 690e e6a48e 690e 0000690e b4d5 b4d5 b4d5 b4d5 b4d5 b4d5 b4d5
+3223 b4d6 b4d6 b4d6 * 5f7b * 8ea1dffb,dffb,8ea1dffbv,dffbv 68c9 e6a389 68c9 000068c9 b4d6 b4d6 b4d6 b4d6 b4d6 b4d6 b4d6
+3224 b4d7 b4d7 b4d7 * 5f7c * 8ea1dffc,dffc,8ea1dffcv,dffcv 68da e6a39a 68da 000068da b4d7 b4d7 b4d7 b4d7 b4d7 b4d7 b4d7
+3225 b4d8 b4d8 b4d8 * 5f7d * 8ea1dffd,dffd,8ea1dffdv,dffdv 696e e6a5ae 696e 0000696e b4d8 b4d8 b4d8 b4d8 b4d8 b4d8 b4d8
+3226 b4d9 b4d9 b4d9 * 5f7e * 8ea1dffe,dffe,8ea1dffev,dffev 68fb e6a3bb 68fb 000068fb b4d9 b4d9 b4d9 b4d9 b4d9 b4d9 b4d9
+3227 b4da b4da b4da * 6021 * 8ea1e0a1,e0a1,8ea1e0a1v,e0a1v 6b3e e6acbe 6b3e 00006b3e b4da b4da b4da b4da b4da b4da b4da
+3228 b4db b4db b4db * 6022 * 8ea1e0a2,e0a2,8ea1e0a2v,e0a2v 6b3a e6acba 6b3a 00006b3a b4db b4db b4db b4db b4db b4db b4db
+3229 b4dc b4dc b4dc * 6023 * 8ea1e0a3,e0a3,8ea1e0a3v,e0a3v 6b3d e6acbd 6b3d 00006b3d b4dc b4dc b4dc b4dc b4dc b4dc b4dc
+3230 b4dd b4dd b4dd * 6024 * 8ea1e0a4,e0a4,8ea1e0a4v,e0a4v 6b98 e6ae98 6b98 00006b98 b4dd b4dd b4dd b4dd b4dd b4dd b4dd
+3231 b4de b4de b4de * 6025 * 8ea1e0a5,e0a5,8ea1e0a5v,e0a5v 6b96 e6ae96 6b96 00006b96 b4de b4de b4de b4de b4de b4de b4de
+3232 b4df b4df b4df * 6026 * 8ea1e0a6,e0a6,8ea1e0a6v,e0a6v 6bbc e6aebc 6bbc 00006bbc b4df b4df b4df b4df b4df b4df b4df
+3233 b4e0 b4e0 b4e0 * 6027 * 8ea1e0a7,e0a7,8ea1e0a7v,e0a7v 6bef e6afaf 6bef 00006bef b4e0 b4e0 b4e0 b4e0 b4e0 b4e0 b4e0
+3234 b4e1 b4e1 b4e1 * 6028 * 8ea1e0a8,e0a8,8ea1e0a8v,e0a8v 6c2e e6b0ae 6c2e 00006c2e b4e1 b4e1 b4e1 b4e1 b4e1 b4e1 b4e1
+3235 b4e2 b4e2 b4e2 * 6029 * 8ea1e0a9,e0a9,8ea1e0a9v,e0a9v 6c2f e6b0af 6c2f 00006c2f b4e2 b4e2 b4e2 b4e2 b4e2 b4e2 b4e2
+3236 b4e3 b4e3 b4e3 * 602a * 8ea1e0aa,e0aa,8ea1e0aav,e0aav 6c2c e6b0ac 6c2c 00006c2c b4e3 b4e3 b4e3 b4e3 b4e3 b4e3 b4e3
+3237 b4e4 b4e4 b4e4 * 602b * 8ea1e0ab,e0ab,8ea1e0abv,e0abv 6e2f e6b8af,ee88b0 6e2f,e230 00006e2f,0000e230 fdbb,b4e4 b4e4 b4e4 b4e4 b4e4 b4e4 fdbb,b4e4
+3238 b4e5 b4e5 b4e5 * 602c * 8ea1e0ac,e0ac,8ea1e0acv,e0acv 6e38 e6b8b8 6e38 00006e38 b4e5 b4e5 b4e5 b4e5 b4e5 b4e5 b4e5
+3239 b4e6 b4e6 b4e6 * 602d * 8ea1e0ad,e0ad,8ea1e0adv,e0adv 6e54 e6b994 6e54 00006e54 b4e6 b4e6 b4e6 b4e6 b4e6 b4e6 b4e6
+3240 b4e7 b4e7 b4e7 * 602e * 8ea1e0ae,e0ae,8ea1e0aev,e0aev 6e21 e6b8a1 6e21 00006e21 b4e7 b4e7 b4e7 b4e7 b4e7 b4e7 b4e7
+3241 b4e8 b4e8 b4e8 * 602f * 8ea1e0af,e0af,8ea1e0afv,e0afv 6e32 e6b8b2 6e32 00006e32 b4e8 b4e8 b4e8 b4e8 b4e8 b4e8 b4e8
+3242 b4e9 b4e9 b4e9 * 6030 * 8ea1e0b0,e0b0,8ea1e0b0v,e0b0v 6e67 e6b9a7 6e67 00006e67 b4e9 b4e9 b4e9 b4e9 b4e9 b4e9 b4e9
+3243 b4ea b4ea b4ea * 6031 * 8ea1e0b1,e0b1,8ea1e0b1v,e0b1v 6e4a e6b98a 6e4a 00006e4a b4ea b4ea b4ea b4ea b4ea b4ea b4ea
+3244 b4eb b4eb b4eb * 6032 * 8ea1e0b2,e0b2,8ea1e0b2v,e0b2v 6e20 e6b8a0 6e20 00006e20 b4eb b4eb b4eb b4eb b4eb b4eb b4eb
+3245 b4ec b4ec b4ec * 6033 * 8ea1e0b3,e0b3,8ea1e0b3v,e0b3v 6e25 e6b8a5 6e25 00006e25 b4ec b4ec b4ec b4ec b4ec b4ec b4ec
+3246 b4ed b4ed b4ed * 6034 * 8ea1e0b4,e0b4,8ea1e0b4v,e0b4v 6e23 e6b8a3 6e23 00006e23 b4ed b4ed b4ed b4ed b4ed b4ed b4ed
+3247 b4ee b4ee b4ee * 6035 * 8ea1e0b5,e0b5,8ea1e0b5v,e0b5v 6e1b e6b89b 6e1b 00006e1b b4ee b4ee b4ee b4ee b4ee b4ee b4ee
+3248 b4ef b4ef b4ef * 6036 * 8ea1e0b6,e0b6,8ea1e0b6v,e0b6v 6e5b e6b99b 6e5b 00006e5b b4ef b4ef b4ef b4ef b4ef b4ef b4ef
+3249 b4f0 b4f0 b4f0 * 6037 * 8ea1e0b7,e0b7,8ea1e0b7v,e0b7v 6e58 e6b998 6e58 00006e58 b4f0 b4f0 b4f0 b4f0 b4f0 b4f0 b4f0
+3250 b4f1 b4f1 b4f1 * 6038 * 8ea1e0b8,e0b8,8ea1e0b8v,e0b8v 6e24 e6b8a4 6e24 00006e24 b4f1 b4f1 b4f1 b4f1 b4f1 b4f1 b4f1
+3251 b4f2 b4f2 b4f2 * 6039 * 8ea1e0b9,e0b9,8ea1e0b9v,e0b9v 6e56 e6b996 6e56 00006e56 b4f2 b4f2 b4f2 b4f2 b4f2 b4f2 b4f2
+3252 b4f3 b4f3 b4f3 * 603a * 8ea1e0ba,e0ba,8ea1e0bav,e0bav 6e6e e6b9ae 6e6e 00006e6e b4f3 b4f3 b4f3 b4f3 b4f3 b4f3 b4f3
+3253 b4f4 b4f4 b4f4 * 603b * 8ea1e0bb,e0bb,8ea1e0bbv,e0bbv 6e2d e6b8ad 6e2d 00006e2d b4f4 b4f4 b4f4 b4f4 b4f4 b4f4 b4f4
+3254 b4f5 b4f5 b4f5 * 603c * 8ea1e0bc,e0bc,8ea1e0bcv,e0bcv 6e26 e6b8a6 6e26 00006e26 b4f5 b4f5 b4f5 b4f5 b4f5 b4f5 b4f5
+3255 b4f6 b4f6 b4f6 * 603d * 8ea1e0bd,e0bd,8ea1e0bdv,e0bdv 6e6f e6b9af 6e6f 00006e6f b4f6 b4f6 b4f6 b4f6 b4f6 b4f6 b4f6
+3256 b4f7 b4f7 b4f7 * 603e * 8ea1e0be,e0be,8ea1e0bev,e0bev 6e34 e6b8b4 6e34 00006e34 b4f7 b4f7 b4f7 b4f7 b4f7 b4f7 b4f7
+3257 b4f8 b4f8 b4f8 * 603f * 8ea1e0bf,e0bf,8ea1e0bfv,e0bfv 6e4d e6b98d 6e4d 00006e4d b4f8 b4f8 b4f8 b4f8 b4f8 b4f8 b4f8
+3258 b4f9 b4f9 b4f9 * 6040 * 8ea1e0c0,e0c0,8ea1e0c0v,e0c0v 6e3a e6b8ba 6e3a 00006e3a b4f9 b4f9 b4f9 b4f9 b4f9 b4f9 b4f9
+3259 b4fa b4fa b4fa * 6041 * 8ea1e0c1,e0c1,8ea1e0c1v,e0c1v 6e2c e6b8ac 6e2c 00006e2c b4fa b4fa b4fa b4fa b4fa b4fa b4fa
+3260 b4fb b4fb b4fb * 6042 * 8ea1e0c2,e0c2,8ea1e0c2v,e0c2v 6e43 e6b983 6e43 00006e43 b4fb b4fb b4fb b4fb b4fb b4fb b4fb
+3261 b4fc b4fc b4fc * 6043 * 8ea1e0c3,e0c3,8ea1e0c3v,e0c3v 6e1d e6b89d,ee88ad 6e1d,e22d 00006e1d,0000e22d fdb8,b4fc b4fc b4fc b4fc b4fc b4fc fdb8,b4fc
+3262 b4fd b4fd b4fd * 6044 * 8ea1e0c4,e0c4,8ea1e0c4v,e0c4v 6e3e e6b8be 6e3e 00006e3e b4fd b4fd b4fd b4fd b4fd b4fd b4fd
+3263 b4fe b4fe b4fe * 6045 * 8ea1e0c5,e0c5,8ea1e0c5v,e0c5v 6ecb e6bb8b 6ecb 00006ecb b4fe b4fe b4fe b4fe b4fe b4fe b4fe
+3264 b540 b540 b540 * 6046 * 8ea1e0c6,e0c6,8ea1e0c6v,e0c6v 6e89 e6ba89 6e89 00006e89 b540 b540 b540 b540 b540 b540 b540
+3265 b541 b541 b541 * 6047 * 8ea1e0c7,e0c7,8ea1e0c7v,e0c7v 6e19 e6b899 6e19 00006e19 b541 b541 b541 b541 b541 b541 b541
+3266 b542 b542 b542 * 6048 * 8ea1e0c8,e0c8,8ea1e0c8v,e0c8v 6e4e e6b98e 6e4e 00006e4e b542 b542 b542 b542 b542 b542 b542
+3267 b543 b543 b543 * 6049 * 8ea1e0c9,e0c9,8ea1e0c9v,e0c9v 6e63 e6b9a3 6e63 00006e63 b543 b543 b543 b543 b543 b543 b543
+3268 b544 b544 b544 * 604a * 8ea1e0ca,e0ca,8ea1e0cav,e0cav 6e44 e6b984 6e44 00006e44 b544 b544 b544 b544 b544 b544 b544
+3269 b545 b545 b545 * 604b * 8ea1e0cb,e0cb,8ea1e0cbv,e0cbv 6e72 e6b9b2 6e72 00006e72 b545 b545 b545 b545 b545 b545 b545
+3270 b546 b546 b546 * 604c * 8ea1e0cc,e0cc,8ea1e0ccv,e0ccv 6e69 e6b9a9 6e69 00006e69 b546 b546 b546 b546 b546 b546 b546
+3271 b547 b547 b547 * 604d * 8ea1e0cd,e0cd,8ea1e0cdv,e0cdv 6e5f e6b99f 6e5f 00006e5f b547 b547 b547 b547 b547 b547 b547
+3272 b548 b548 b548 * 604e * 8ea1e0ce,e0ce,8ea1e0cev,e0cev 7119 e78499 7119 00007119 b548 b548 b548 b548 b548 b548 b548
+3273 b549 b549 b549 * 604f * 8ea1e0cf,e0cf,8ea1e0cfv,e0cfv 711a e7849a 711a 0000711a b549 b549 b549 b549 b549 b549 b549
+3274 b54a b54a b54a * 6050 * 8ea1e0d0,e0d0,8ea1e0d0v,e0d0v 7126 e784a6 7126 00007126 b54a b54a b54a b54a b54a b54a b54a
+3275 b54b b54b b54b * 6051 * 8ea1e0d1,e0d1,8ea1e0d1v,e0d1v 7130 e784b0 7130 00007130 b54b b54b b54b b54b b54b b54b b54b
+3276 b54c b54c b54c * 6052 * 8ea1e0d2,e0d2,8ea1e0d2v,e0d2v 7121 e784a1 7121 00007121 b54c b54c b54c b54c b54c b54c b54c
+3277 b54d b54d b54d * 6053 * 8ea1e0d3,e0d3,8ea1e0d3v,e0d3v 7136 e784b6 7136 00007136 b54d b54d b54d b54d b54d b54d b54d
+3278 b54e b54e b54e * 6054 * 8ea1e0d4,e0d4,8ea1e0d4v,e0d4v 716e e785ae,ee89a6 716e,e266 0000716e,0000e266 fdf1,b54e b54e b54e b54e b54e b54e fdf1,b54e
+3279 b54f b54f b54f * 6055 * 8ea1e0d5,e0d5,8ea1e0d5v,e0d5v 711c e7849c 711c 0000711c b54f b54f b54f b54f b54f b54f b54f
+3280 b550 b550 b550 * 6056 * 8ea1e0d6,e0d6,8ea1e0d6v,e0d6v 724c e7898c 724c 0000724c b550 b550 b550 b550 b550 b550 b550
+3281 b551 b551 b551 * 6057 * 8ea1e0d7,e0d7,8ea1e0d7v,e0d7v 7284 e78a84 7284 00007284 b551 b551 b551 b551 b551 b551 b551
+3282 b552 b552 b552 * 6058 * 8ea1e0d8,e0d8,8ea1e0d8v,e0d8v 7280 e78a80 7280 00007280 b552 b552 b552 b552 b552 b552 b552
+3283 b553 b553 b553 * 6059 * 8ea1e0d9,e0d9,8ea1e0d9v,e0d9v 7336 e78cb6 7336 00007336 b553 b553 b553 b553 b553 b553 b553
+3284 b554 b554 b554 * 605a * 8ea1e0da,e0da,8ea1e0dav,e0dav 7325 e78ca5 7325 00007325 b554 b554 b554 b554 b554 b554 b554
+3285 b555 b555 b555 * 605b * 8ea1e0db,e0db,8ea1e0dbv,e0dbv 7334 e78cb4 7334 00007334 b555 b555 b555 b555 b555 b555 b555
+3286 b556 b556 b556 * 605c * 8ea1e0dc,e0dc,8ea1e0dcv,e0dcv 7329 e78ca9 7329 00007329 b556 b556 b556 b556 b556 b556 b556
+3287 b557 b557 b557 * 605d * 8ea1e0dd,e0dd,8ea1e0ddv,e0ddv 743a e790ba 743a 0000743a b557 b557 b557 b557 b557 b557 b557
+3288 b558 b558 b558 * 605e * 8ea1e0de,e0de,8ea1e0dev,e0dev 742a e790aa 742a 0000742a b558 b558 b558 b558 b558 b558 b558
+3289 b559 b559 b559 * 605f * 8ea1e0df,e0df,8ea1e0dfv,e0dfv 7433 e790b3 7433 00007433 b559 b559 b559 b559 b559 b559 b559
+3290 b55a b55a b55a * 6060 * 8ea1e0e0,e0e0,8ea1e0e0v,e0e0v 7422 e790a2 7422 00007422 b55a b55a b55a b55a b55a b55a b55a
+3291 b55b b55b b55b * 6061 * 8ea1e0e1,e0e1,8ea1e0e1v,e0e1v 7425 e790a5 7425 00007425 b55b b55b b55b b55b b55b b55b b55b
+3292 b55c b55c b55c * 6062 * 8ea1e0e2,e0e2,8ea1e0e2v,e0e2v 7435 e790b5 7435 00007435 b55c b55c b55c b55c b55c b55c b55c
+3293 b55d b55d b55d * 6063 * 8ea1e0e3,e0e3,8ea1e0e3v,e0e3v 7436 e790b6 7436 00007436 b55d b55d b55d b55d b55d b55d b55d
+3294 b55e b55e b55e * 6064 * 8ea1e0e4,e0e4,8ea1e0e4v,e0e4v 7434 e790b4 7434 00007434 b55e b55e b55e b55e b55e b55e b55e
+3295 b55f b55f b55f * 6065 * 8ea1e0e5,e0e5,8ea1e0e5v,e0e5v 742f e790af 742f 0000742f b55f b55f b55f b55f b55f b55f b55f
+3296 b560 b560 b560 * 6066 * 8ea1e0e6,e0e6,8ea1e0e6v,e0e6v 741b e7909b 741b 0000741b b560 b560 b560 b560 b560 b560 b560
+3297 b561 b561 b561 * 6067 * 8ea1e0e7,e0e7,8ea1e0e7v,e0e7v 7426 e790a6 7426 00007426 b561 b561 b561 b561 b561 b561 b561
+3298 b562 b562 b562 * 6068 * 8ea1e0e8,e0e8,8ea1e0e8v,e0e8v 7428 e790a8 7428 00007428 b562 b562 b562 b562 b562 b562 b562
+3299 b563 b563 b563 * 6069 * 8ea1e0e9,e0e9,8ea1e0e9v,e0e9v 7525 e794a5 7525 00007525 b563 b563 b563 b563 b563 b563 b563
+3300 b564 b564 b564 * 606a * 8ea1e0ea,e0ea,8ea1e0eav,e0eav 7526 e794a6 7526 00007526 b564 b564 b564 b564 b564 b564 b564
+3301 b565 b565 b565 * 606b * 8ea1e0eb,e0eb,8ea1e0ebv,e0ebv 756b e795ab 756b 0000756b b565 b565 b565 b565 b565 b565 b565
+3302 b566 b566 b566 * 606c * 8ea1e0ec,e0ec,8ea1e0ecv,e0ecv 756a e795aa 756a 0000756a b566 b566 b566 b566 b566 b566 b566
+3303 b567 b567 b567 * 606d * 8ea1e0ed,e0ed,8ea1e0edv,e0edv 75e2 e797a2 75e2 000075e2 b567 b567 b567 b567 b567 b567 b567
+3304 b568 b568 b568 * 606e * 8ea1e0ee,e0ee,8ea1e0eev,e0eev 75db e7979b 75db 000075db b568 b568 b568 b568 b568 b568 b568
+3305 b569 b569 b569 * 606f * 8ea1e0ef,e0ef,8ea1e0efv,e0efv 75e3 e797a3 75e3 000075e3 b569 b569 b569 b569 b569 b569 b569
+3306 b56a b56a b56a * 6070 * 8ea1e0f0,e0f0,8ea1e0f0v,e0f0v 75d9 e79799 75d9 000075d9 b56a b56a b56a b56a b56a b56a b56a
+3307 b56b b56b b56b * 6071 * 8ea1e0f1,e0f1,8ea1e0f1v,e0f1v 75d8 e79798 75d8 000075d8 b56b b56b b56b b56b b56b b56b b56b
+3308 b56c b56c b56c * 6072 * 8ea1e0f2,e0f2,8ea1e0f2v,e0f2v 75de e7979e 75de 000075de b56c b56c b56c b56c b56c b56c b56c
+3309 b56d b56d b56d * 6073 * 8ea1e0f3,e0f3,8ea1e0f3v,e0f3v 75e0 e797a0 75e0 000075e0 b56d b56d b56d b56d b56d b56d b56d
+3310 b56e b56e b56e * 6074 * 8ea1e0f4,e0f4,8ea1e0f4v,e0f4v 767b e799bb 767b 0000767b b56e b56e b56e b56e b56e b56e b56e
+3311 b56f b56f b56f * 6075 * 8ea1e0f5,e0f5,8ea1e0f5v,e0f5v 767c e799bc 767c 0000767c b56f b56f b56f b56f b56f b56f b56f
+3312 b570 b570 b570 * 6076 * 8ea1e0f6,e0f6,8ea1e0f6v,e0f6v 7696 e79a96 7696 00007696 b570 b570 b570 b570 b570 b570 b570
+3313 b571 b571 b571 * 6077 * 8ea1e0f7,e0f7,8ea1e0f7v,e0f7v 7693 e79a93 7693 00007693 b571 b571 b571 b571 b571 b571 b571
+3314 b572 b572 b572 * 6078 * 8ea1e0f8,e0f8,8ea1e0f8v,e0f8v 76b4 e79ab4 76b4 000076b4 b572 b572 b572 b572 b572 b572 b572
+3315 b573 b573 b573 * 6079 * 8ea1e0f9,e0f9,8ea1e0f9v,e0f9v 76dc e79b9c 76dc 000076dc b573 b573 b573 b573 b573 b573 b573
+3316 b574 b574 b574 * 607a * 8ea1e0fa,e0fa,8ea1e0fav,e0fav 774f e79d8f 774f 0000774f b574 b574 b574 b574 b574 b574 b574
+3317 b575 b575 b575 * 607b * 8ea1e0fb,e0fb,8ea1e0fbv,e0fbv 77ed e79fad 77ed 000077ed b575 b575 b575 b575 b575 b575 b575
+3318 b576 b576 b576 * 607c * 8ea1e0fc,e0fc,8ea1e0fcv,e0fcv 785d e7a19d 785d 0000785d b576 b576 b576 b576 b576 b576 b576
+3319 b577 b577 b577 * 607d * 8ea1e0fd,e0fd,8ea1e0fdv,e0fdv 786c e7a1ac 786c 0000786c b577 b577 b577 b577 b577 b577 b577
+3320 b578 b578 b578 * 607e * 8ea1e0fe,e0fe,8ea1e0fev,e0fev 786f e7a1af 786f 0000786f b578 b578 b578 b578 b578 b578 b578
+3321 b579 b579 b579 * 6121 * 8ea1e1a1,e1a1,8ea1e1a1v,e1a1v 7a0d e7a88d 7a0d 00007a0d b579 b579 b579 b579 b579 b579 b579
+3322 b57a b57a b57a * 6122 * 8ea1e1a2,e1a2,8ea1e1a2v,e1a2v 7a08 e7a888 7a08 00007a08 b57a b57a b57a b57a b57a b57a b57a
+3323 b57b b57b b57b * 6123 * 8ea1e1a3,e1a3,8ea1e1a3v,e1a3v 7a0b e7a88b 7a0b 00007a0b b57b b57b b57b b57b b57b b57b b57b
+3324 b57c b57c b57c * 6124 * 8ea1e1a4,e1a4,8ea1e1a4v,e1a4v 7a05 e7a885 7a05 00007a05 b57c b57c b57c b57c b57c b57c b57c
+3325 b57d b57d b57d * 6125 * 8ea1e1a5,e1a5,8ea1e1a5v,e1a5v 7a00 e7a880 7a00 00007a00 b57d b57d b57d b57d b57d b57d b57d
+3326 b57e b57e b57e * 6126 * 8ea1e1a6,e1a6,8ea1e1a6v,e1a6v 7a98 e7aa98 7a98 00007a98 b57e b57e b57e b57e b57e b57e b57e
+3327 b5a1 b5a1 b5a1 * 6127 * 8ea1e1a7,e1a7,8ea1e1a7v,e1a7v 7a97 e7aa97 7a97 00007a97 b5a1 b5a1 b5a1 b5a1 b5a1 b5a1 b5a1
+3328 b5a2 b5a2 b5a2 * 6128 * 8ea1e1a8,e1a8,8ea1e1a8v,e1a8v 7a96 e7aa96 7a96 00007a96 b5a2 b5a2 b5a2 b5a2 b5a2 b5a2 b5a2
+3329 b5a3 b5a3 b5a3 * 6129 * 8ea1e1a9,e1a9,8ea1e1a9v,e1a9v 7ae5 e7aba5 7ae5 00007ae5 b5a3 b5a3 b5a3 b5a3 b5a3 b5a3 b5a3
+3330 b5a4 b5a4 b5a4 * 612a * 8ea1e1aa,e1aa,8ea1e1aav,e1aav 7ae3 e7aba3 7ae3 00007ae3 b5a4 b5a4 b5a4 b5a4 b5a4 b5a4 b5a4
+3331 b5a5 b5a5 b5a5 * 612b * 8ea1e1ab,e1ab,8ea1e1abv,e1abv 7b49 e7ad89 7b49 00007b49 b5a5 b5a5 b5a5 b5a5 b5a5 b5a5 b5a5
+3332 b5a6 b5a6 b5a6 * 612c * 8ea1e1ac,e1ac,8ea1e1acv,e1acv 7b56 e7ad96 7b56 00007b56 b5a6 b5a6 b5a6 b5a6 b5a6 b5a6 b5a6
+3333 b5a7 b5a7 b5a7 * 612d * 8ea1e1ad,e1ad,8ea1e1adv,e1adv 7b46 e7ad86 7b46 00007b46 b5a7 b5a7 b5a7 b5a7 b5a7 b5a7 b5a7
+3334 b5a8 b5a8 b5a8 * 612e * 8ea1e1ae,e1ae,8ea1e1aev,e1aev 7b50 e7ad90 7b50 00007b50 b5a8 b5a8 b5a8 b5a8 b5a8 b5a8 b5a8
+3335 b5a9 b5a9 b5a9 * 612f * 8ea1e1af,e1af,8ea1e1afv,e1afv 7b52 e7ad92 7b52 00007b52 b5a9 b5a9 b5a9 b5a9 b5a9 b5a9 b5a9
+3336 b5aa b5aa b5aa * 6130 * 8ea1e1b0,e1b0,8ea1e1b0v,e1b0v 7b54 e7ad94 7b54 00007b54 b5aa b5aa b5aa b5aa b5aa b5aa b5aa
+3337 b5ab b5ab b5ab * 6131 * 8ea1e1b1,e1b1,8ea1e1b1v,e1b1v 7b4d e7ad8d 7b4d 00007b4d b5ab b5ab b5ab b5ab b5ab b5ab b5ab
+3338 b5ac b5ac b5ac * 6132 * 8ea1e1b2,e1b2,8ea1e1b2v,e1b2v 7b4b e7ad8b 7b4b 00007b4b b5ac b5ac,fd77 91ea,b5ac b5ac b5ac b5ac b5ac
+3339 b5ad b5ad b5ad * 6133 * 8ea1e1b3,e1b3,8ea1e1b3v,e1b3v 7b4f e7ad8f 7b4f 00007b4f b5ad b5ad b5ad b5ad b5ad b5ad b5ad
+3340 b5ae b5ae b5ae * 6134 * 8ea1e1b4,e1b4,8ea1e1b4v,e1b4v 7b51 e7ad91,eeb19e 7b51,ec5e 00007b51,0000ec5e 9d5a,b5ae b5ae b5ae b5ae b5ae b5ae 9d5a,b5ae
+3341 b5af b5af b5af * 6135 * 8ea1e1b5,e1b5,8ea1e1b5v,e1b5v 7c9f e7b29f 7c9f 00007c9f b5af b5af b5af b5af b5af b5af b5af
+3342 b5b0 b5b0 b5b0 * 6136 * 8ea1e1b6,e1b6,8ea1e1b6v,e1b6v 7ca5 e7b2a5 7ca5 00007ca5 b5b0 b5b0 b5b0 b5b0 b5b0 b5b0 b5b0
+3343 b5b1 b5b1 b5b1 * 6137 * 8ea1e1b7,e1b7,8ea1e1b7v,e1b7v 7d5e e7b59e 7d5e 00007d5e b5b1 b5b1 b5b1 b5b1 b5b1 b5b1 b5b1
+3344 b5b2 b5b2 b5b2 * 6138 * 8ea1e1b8,e1b8,8ea1e1b8v,e1b8v 7d50 e7b590 7d50 00007d50 b5b2 b5b2 b5b2 b5b2 b5b2 b5b2 b5b2
+3345 b5b3 b5b3 b5b3 * 6139 * 8ea1e1b9,e1b9,8ea1e1b9v,e1b9v 7d68 e7b5a8 7d68 00007d68 b5b3 b5b3 b5b3 b5b3 b5b3 b5b3 b5b3
+3346 b5b4 b5b4 b5b4 * 613a * 8ea1e1ba,e1ba,8ea1e1bav,e1bav 7d55 e7b595 7d55 00007d55 b5b4 b5b4 b5b4 b5b4 b5b4 b5b4 b5b4
+3347 b5b5 b5b5 b5b5 * 613b * 8ea1e1bb,e1bb,8ea1e1bbv,e1bbv 7d2b e7b4ab 7d2b 00007d2b b5b5 b5b5 b5b5 b5b5 b5b5 b5b5 b5b5
+3348 b5b6 b5b6 b5b6 * 613c * 8ea1e1bc,e1bc,8ea1e1bcv,e1bcv 7d6e e7b5ae 7d6e 00007d6e b5b6 b5b6 b5b6 b5b6 b5b6 b5b6 b5b6
+3349 b5b7 b5b7 b5b7 * 613d * 8ea1e1bd,e1bd,8ea1e1bdv,e1bdv 7d72 e7b5b2 7d72 00007d72 b5b7 b5b7 b5b7 b5b7 b5b7 b5b7 b5b7
+3350 b5b8 b5b8 b5b8 * 613e * 8ea1e1be,e1be,8ea1e1bev,e1bev 7d61 e7b5a1 7d61 00007d61 b5b8 b5b8 b5b8 b5b8 b5b8 b5b8 b5b8
+3351 b5b9 b5b9 b5b9 * 613f * 8ea1e1bf,e1bf,8ea1e1bfv,e1bfv 7d66 e7b5a6 7d66 00007d66 b5b9 b5b9 b5b9 b5b9 b5b9 b5b9 b5b9
+3352 b5ba b5ba b5ba * 6140 * 8ea1e1c0,e1c0,8ea1e1c0v,e1c0v 7d62 e7b5a2 7d62 00007d62 b5ba b5ba b5ba b5ba b5ba b5ba b5ba
+3353 b5bb b5bb b5bb * 6141 * 8ea1e1c1,e1c1,8ea1e1c1v,e1c1v 7d70 e7b5b0 7d70 00007d70 b5bb b5bb b5bb b5bb b5bb b5bb b5bb
+3354 b5bc b5bc b5bc * 6142 * 8ea1e1c2,e1c2,8ea1e1c2v,e1c2v 7d73 e7b5b3 7d73 00007d73 b5bc b5bc b5bc b5bc b5bc b5bc b5bc
+3355 b5bd b5bd b5bd * 6143 * 8ea1e1c3,e1c3,8ea1e1c3v,e1c3v 5584 e59684 5584 00005584 b5bd b5bd b5bd b5bd b5bd b5bd b5bd
+3356 b5be b5be b5be * 6144 * 8ea1e1c4,e1c4,8ea1e1c4v,e1c4v 7fd4 e7bf94 7fd4 00007fd4 b5be b5be b5be b5be b5be b5be b5be
+3357 b5bf b5bf b5bf * 6145 * 8ea1e1c5,e1c5,8ea1e1c5v,e1c5v 7fd5 e7bf95 7fd5 00007fd5 b5bf b5bf b5bf b5bf b5bf b5bf b5bf
+3358 b5c0 b5c0 b5c0 * 6146 * 8ea1e1c6,e1c6,8ea1e1c6v,e1c6v 800b e8808b 800b 0000800b b5c0 b5c0 b5c0 b5c0 b5c0 b5c0 b5c0
+3359 b5c1 b5c1 b5c1 * 6147 * 8ea1e1c7,e1c7,8ea1e1c7v,e1c7v 8052 e88192 8052 00008052 b5c1 b5c1 b5c1 b5c1 b5c1 b5c1 b5c1
+3360 b5c2 b5c2 b5c2 * 6148 * 8ea1e1c8,e1c8,8ea1e1c8v,e1c8v 8085 e88285 8085 00008085 b5c2 b5c2 b5c2 b5c2 b5c2 b5c2 b5c2
+3361 b5c3 b5c3 b5c3 * 6149 * 8ea1e1c9,e1c9,8ea1e1c9v,e1c9v 8155 e88595 8155 00008155 b5c3 b5c3 b5c3 b5c3 b5c3 b5c3 b5c3
+3362 b5c4 b5c4 b5c4 * 614a * 8ea1e1ca,e1ca,8ea1e1cav,e1cav 8154 e88594 8154 00008154 b5c4 b5c4 b5c4 b5c4 b5c4 b5c4 b5c4
+3363 b5c5 b5c5 b5c5 * 614b * 8ea1e1cb,e1cb,8ea1e1cbv,e1cbv 814b e8858b 814b 0000814b b5c5 b5c5 b5c5 b5c5 b5c5 b5c5 b5c5
+3364 b5c6 b5c6 b5c6 * 614c * 8ea1e1cc,e1cc,8ea1e1ccv,e1ccv 8151 e88591 8151 00008151 b5c6 b5c6 b5c6 b5c6 b5c6 b5c6 b5c6
+3365 b5c7 b5c7 b5c7 * 614d * 8ea1e1cd,e1cd,8ea1e1cdv,e1cdv 814e e8858e 814e 0000814e b5c7 b5c7 b5c7 b5c7 b5c7 b5c7 b5c7
+3366 b5c8 b5c8 b5c8 * 614e * 8ea1e1ce,e1ce,8ea1e1cev,e1cev 8139 e884b9 8139 00008139 b5c8 b5c8 b5c8 b5c8 b5c8 b5c8 b5c8
+3367 b5c9 b5c9 b5c9 * 614f * 8ea1e1cf,e1cf,8ea1e1cfv,e1cfv 8146 e88586 8146 00008146 b5c9 b5c9 b5c9 b5c9 b5c9 b5c9 b5c9
+3368 b5ca b5ca b5ca * 6150 * 8ea1e1d0,e1d0,8ea1e1d0v,e1d0v 813e e884be 813e 0000813e b5ca b5ca b5ca b5ca b5ca b5ca b5ca
+3369 b5cb b5cb b5cb * 6151 * 8ea1e1d1,e1d1,8ea1e1d1v,e1d1v 814c e8858c 814c 0000814c b5cb b5cb b5cb b5cb b5cb b5cb b5cb
+3370 b5cc b5cc b5cc * 6152 * 8ea1e1d2,e1d2,8ea1e1d2v,e1d2v 8153 e88593 8153 00008153 b5cc b5cc,fdc2 9078,b5cc b5cc b5cc b5cc b5cc
+3371 b5cd b5cd b5cd * 6153 * 8ea1e1d3,e1d3,8ea1e1d3v,e1d3v 8174 e885b4 8174 00008174 b5cd b5cd b5cd b5cd b5cd b5cd b5cd
+3372 b5ce b5ce b5ce * 6154 * 8ea1e1d4,e1d4,8ea1e1d4v,e1d4v 8212 e88892 8212 00008212 b5ce b5ce b5ce b5ce b5ce b5ce b5ce
+3373 b5cf b5cf b5cf * 6155 * 8ea1e1d5,e1d5,8ea1e1d5v,e1d5v 821c e8889c 821c 0000821c b5cf b5cf b5cf b5cf b5cf b5cf b5cf
+3374 b5d0 b5d0 b5d0 * 6156 * 8ea1e1d6,e1d6,8ea1e1d6v,e1d6v 83e9 e88fa9 83e9 000083e9 b5d0 b5d0 b5d0 b5d0 b5d0 b5d0 b5d0
+3375 b5d1 b5d1 b5d1 * 6157 * 8ea1e1d7,e1d7,8ea1e1d7v,e1d7v 8403 e89083 8403 00008403 b5d1 b5d1 b5d1 b5d1 b5d1 b5d1 b5d1
+3376 b5d2 b5d2 b5d2 * 6158 * 8ea1e1d8,e1d8,8ea1e1d8v,e1d8v 83f8 e88fb8 83f8 000083f8 b5d2 b5d2 b5d2 b5d2 b5d2 b5d2 b5d2
+3377 b5d3 b5d3 b5d3 * 6159 * 8ea1e1d9,e1d9,8ea1e1d9v,e1d9v 840d e8908d 840d 0000840d b5d3 b5d3 b5d3 b5d3 b5d3 b5d3 b5d3
+3378 b5d4 b5d4 b5d4 * 615a * 8ea1e1da,e1da,8ea1e1dav,e1dav 83e0 e88fa0 83e0 000083e0 b5d4 b5d4 b5d4 b5d4 b5d4 b5d4 b5d4
+3379 b5d5 b5d5 b5d5 * 615b * 8ea1e1db,e1db,8ea1e1dbv,e1dbv 83c5 e88f85 83c5 000083c5 b5d5 b5d5 b5d5 b5d5 b5d5 b5d5 b5d5
+3380 b5d6 b5d6 b5d6 * 615c * 8ea1e1dc,e1dc,8ea1e1dcv,e1dcv 840b e8908b 840b 0000840b b5d6 b5d6 b5d6 b5d6 b5d6 b5d6 b5d6
+3381 b5d7 b5d7 b5d7 * 615d * 8ea1e1dd,e1dd,8ea1e1ddv,e1ddv 83c1 e88f81,ee8f85 83c1,e3c5 000083c1,0000e3c5 8f57,b5d7 b5d7 b5d7 b5d7 b5d7 b5d7 8f57,b5d7
+3382 b5d8 b5d8 b5d8 * 615e * 8ea1e1de,e1de,8ea1e1dev,e1dev 83ef e88faf 83ef 000083ef b5d8 b5d8 b5d8 b5d8 b5d8 b5d8 b5d8
+3383 b5d9 b5d9 b5d9 * 615f * 8ea1e1df,e1df,8ea1e1dfv,e1dfv 83f1 e88fb1 83f1 000083f1 b5d9 b5d9 b5d9 b5d9 b5d9 b5d9 b5d9
+3384 b5da b5da b5da * 6160 * 8ea1e1e0,e1e0,8ea1e1e0v,e1e0v 83f4 e88fb4 83f4 000083f4 b5da b5da b5da b5da b5da b5da b5da
+3385 b5db b5db b5db * 6161 * 8ea1e1e1,e1e1,8ea1e1e1v,e1e1v 8457 e89197 8457 00008457 b5db b5db b5db b5db b5db b5db b5db
+3386 b5dc b5dc b5dc * 6162 * 8ea1e1e2,e1e2,8ea1e1e2v,e1e2v 840a e8908a 840a 0000840a b5dc b5dc b5dc b5dc b5dc b5dc b5dc
+3387 b5dd b5dd b5dd * 6163 * 8ea1e1e3,e1e3,8ea1e1e3v,e1e3v 83f0 e88fb0 83f0 000083f0 b5dd b5dd b5dd b5dd b5dd b5dd b5dd
+3388 b5de b5de b5de * 6164 * 8ea1e1e4,e1e4,8ea1e1e4v,e1e4v 840c e8908c 840c 0000840c b5de b5de b5de b5de b5de b5de b5de
+3389 b5df b5df b5df * 6165 * 8ea1e1e5,e1e5,8ea1e1e5v,e1e5v 83cc e88f8c 83cc 000083cc b5df b5df b5df b5df b5df b5df b5df
+3390 b5e0 b5e0 b5e0 * 6166 * 8ea1e1e6,e1e6,8ea1e1e6v,e1e6v 83fd e88fbd 83fd 000083fd b5e0 b5e0 b5e0 b5e0 b5e0 b5e0 b5e0
+3391 b5e1 b5e1 b5e1 * 6167 * 8ea1e1e7,e1e7,8ea1e1e7v,e1e7v 83f2 e88fb2 83f2 000083f2 b5e1 b5e1 b5e1 b5e1 b5e1 b5e1 b5e1
+3392 b5e2 b5e2 b5e2 * 6168 * 8ea1e1e8,e1e8,8ea1e1e8v,e1e8v 83ca e88f8a 83ca 000083ca b5e2 b5e2 b5e2 b5e2 b5e2 b5e2 b5e2
+3393 b5e3 b5e3 b5e3 * 6169 * 8ea1e1e9,e1e9,8ea1e1e9v,e1e9v 8438 e890b8 8438 00008438 b5e3 b5e3 b5e3 b5e3 b5e3 b5e3 b5e3
+3394 b5e4 b5e4 b5e4 * 616a * 8ea1e1ea,e1ea,8ea1e1eav,e1eav 840e e8908e 840e 0000840e b5e4 b5e4 b5e4 b5e4 b5e4 b5e4 b5e4
+3395 b5e5 b5e5 b5e5 * 616b * 8ea1e1eb,e1eb,8ea1e1ebv,e1ebv 8404 e89084 8404 00008404 b5e5 b5e5 b5e5 b5e5 b5e5 b5e5 b5e5
+3396 b5e6 b5e6 b5e6 * 616c * 8ea1e1ec,e1ec,8ea1e1ecv,e1ecv 83dc e88f9c 83dc 000083dc b5e6 b5e6 b5e6 b5e6 b5e6 b5e6 b5e6
+3397 b5e7 b5e7 b5e7 * 616d * 8ea1e1ed,e1ed,8ea1e1edv,e1edv 8407 e89087 8407 00008407 b5e7 b5e7 b5e7 b5e7 b5e7 b5e7 b5e7
+3398 b5e8 b5e8 b5e8 * 616e * 8ea1e1ee,e1ee,8ea1e1eev,e1eev 83d4 e88f94 83d4 000083d4 b5e8 b5e8 b5e8 b5e8 b5e8 b5e8 b5e8
+3399 b5e9 b5e9 b5e9 * 616f * 8ea1e1ef,e1ef,8ea1e1efv,e1efv 83df e88f9f 83df 000083df b5e9 b5e9 b5e9 b5e9 b5e9 b5e9 b5e9
+3400 b5ea b5ea b5ea * 6170 * 8ea1e1f0,e1f0,8ea1e1f0v,e1f0v 865b e8999b 865b 0000865b b5ea b5ea b5ea b5ea b5ea b5ea b5ea
+3401 b5eb b5eb b5eb * 6171 * 8ea1e1f1,e1f1,8ea1e1f1v,e1f1v 86df e89b9f 86df 000086df b5eb b5eb b5eb b5eb b5eb b5eb b5eb
+3402 b5ec b5ec b5ec * 6172 * 8ea1e1f2,e1f2,8ea1e1f2v,e1f2v 86d9 e89b99 86d9 000086d9 b5ec b5ec b5ec b5ec b5ec b5ec b5ec
+3403 b5ed b5ed b5ed * 6173 * 8ea1e1f3,e1f3,8ea1e1f3v,e1f3v 86ed e89bad 86ed 000086ed b5ed b5ed b5ed b5ed b5ed b5ed b5ed
+3404 b5ee b5ee b5ee * 6174 * 8ea1e1f4,e1f4,8ea1e1f4v,e1f4v 86d4 e89b94 86d4 000086d4 b5ee b5ee b5ee b5ee b5ee b5ee b5ee
+3405 b5ef b5ef b5ef * 6175 * 8ea1e1f5,e1f5,8ea1e1f5v,e1f5v 86db e89b9b 86db 000086db b5ef b5ef b5ef b5ef b5ef b5ef b5ef
+3406 b5f0 b5f0 b5f0 * 6176 * 8ea1e1f6,e1f6,8ea1e1f6v,e1f6v 86e4 e89ba4 86e4 000086e4 b5f0 b5f0 b5f0 b5f0 b5f0 b5f0 b5f0
+3407 b5f1 b5f1 b5f1 * 6177 * 8ea1e1f7,e1f7,8ea1e1f7v,e1f7v 86d0 e89b90 86d0 000086d0 b5f1 b5f1 b5f1 b5f1 b5f1 b5f1 b5f1
+3408 b5f2 b5f2 b5f2 * 6178 * 8ea1e1f8,e1f8,8ea1e1f8v,e1f8v 86de e89b9e 86de 000086de b5f2 b5f2 b5f2 b5f2 b5f2 b5f2 b5f2
+3409 b5f3 b5f3 b5f3 * 6179 * 8ea1e1f9,e1f9,8ea1e1f9v,e1f9v 8857 e8a197 8857 00008857 b5f3 b5f3 b5f3 b5f3 b5f3 b5f3 b5f3
+3410 b5f4 b5f4 b5f4 * 617a * 8ea1e1fa,e1fa,8ea1e1fav,e1fav 88c1 e8a381 88c1 000088c1 b5f4 b5f4 b5f4 b5f4 b5f4 b5f4 b5f4
+3411 b5f5 b5f5 b5f5 * 617b * 8ea1e1fb,e1fb,8ea1e1fbv,e1fbv 88c2 e8a382 88c2 000088c2 b5f5 b5f5 b5f5 b5f5 b5f5 b5f5 b5f5
+3412 b5f6 b5f6 b5f6 * 617c * 8ea1e1fc,e1fc,8ea1e1fcv,e1fcv 88b1 e8a2b1 88b1 000088b1 b5f6 b5f6 b5f6 b5f6 b5f6 b5f6 b5f6
+3413 b5f7 b5f7 b5f7 * 617d * 8ea1e1fd,e1fd,8ea1e1fdv,e1fdv 8983 e8a683 8983 00008983 b5f7 b5f7 b5f7 b5f7 b5f7 b5f7 b5f7
+3414 b5f8 b5f8 b5f8 * 617e * 8ea1e1fe,e1fe,8ea1e1fev,e1fev 8996 e8a696 8996 00008996 b5f8 b5f8 b5f8 b5f8 b5f8 b5f8 b5f8
+3415 b5f9 b5f9 b5f9 * 6221 * 8ea1e2a1,e2a1,8ea1e2a1v,e2a1v 8a3b e8a8bb 8a3b 00008a3b b5f9 b5f9 b5f9 b5f9 b5f9 b5f9 b5f9
+3416 b5fa b5fa b5fa * 6222 * 8ea1e2a2,e2a2,8ea1e2a2v,e2a2v 8a60 e8a9a0 8a60 00008a60 b5fa b5fa b5fa b5fa b5fa b5fa b5fa
+3417 b5fb b5fb b5fb * 6223 * 8ea1e2a3,e2a3,8ea1e2a3v,e2a3v 8a55 e8a995 8a55 00008a55 b5fb b5fb b5fb b5fb b5fb b5fb b5fb
+3418 b5fc b5fc b5fc * 6224 * 8ea1e2a4,e2a4,8ea1e2a4v,e2a4v 8a5e e8a99e 8a5e 00008a5e b5fc b5fc b5fc b5fc b5fc b5fc b5fc
+3419 b5fd b5fd b5fd * 6225 * 8ea1e2a5,e2a5,8ea1e2a5v,e2a5v 8a3c e8a8bc 8a3c 00008a3c b5fd b5fd b5fd b5fd b5fd b5fd b5fd
+3420 b5fe b5fe b5fe * 6226 * 8ea1e2a6,e2a6,8ea1e2a6v,e2a6v 8a41 e8a981 8a41 00008a41 b5fe b5fe b5fe b5fe b5fe b5fe b5fe
+3421 b640 b640 b640 * 6227 * 8ea1e2a7,e2a7,8ea1e2a7v,e2a7v 8a54 e8a994 8a54 00008a54 b640 b640 b640 b640 b640 b640 b640
+3422 b641 b641 b641 * 6228 * 8ea1e2a8,e2a8,8ea1e2a8v,e2a8v 8a5b e8a99b 8a5b 00008a5b b641 b641 b641 b641 b641 b641 b641
+3423 b642 b642 b642 * 6229 * 8ea1e2a9,e2a9,8ea1e2a9v,e2a9v 8a50 e8a990 8a50 00008a50 b642 b642 b642 b642 b642 b642 b642
+3424 b643 b643 b643 * 622a * 8ea1e2aa,e2aa,8ea1e2aav,e2aav 8a46 e8a986 8a46 00008a46 b643 b643 b643 b643 b643 b643 b643
+3425 b644 b644 b644 * 622b * 8ea1e2ab,e2ab,8ea1e2abv,e2abv 8a34 e8a8b4 8a34 00008a34 b644 b644 b644 b644 b644 b644 b644
+3426 b645 b645 b645 * 622c * 8ea1e2ac,e2ac,8ea1e2acv,e2acv 8a3a e8a8ba 8a3a 00008a3a b645 b645 b645 b645 b645 b645 b645
+3427 b646 b646 b646 * 622d * 8ea1e2ad,e2ad,8ea1e2adv,e2adv 8a36 e8a8b6 8a36 00008a36 b646 b646 b646 b646 b646 b646 b646
+3428 b647 b647 b647 * 622e * 8ea1e2ae,e2ae,8ea1e2aev,e2aev 8a56 e8a996 8a56 00008a56 b647 b647 b647 b647 b647 b647 b647
+3429 b648 b648 b648 * 622f * 8ea1e2af,e2af,8ea1e2afv,e2afv 8c61 e8b1a1 8c61 00008c61 b648 b648 b648 b648 b648 b648 b648
+3430 b649 b649 b649 * 6230 * 8ea1e2b0,e2b0,8ea1e2b0v,e2b0v 8c82 e8b282 8c82 00008c82 b649 b649 b649 b649 b649 b649 b649
+3431 b64a b64a b64a * 6231 * 8ea1e2b1,e2b1,8ea1e2b1v,e2b1v 8caf e8b2af 8caf 00008caf b64a b64a b64a b64a b64a b64a b64a
+3432 b64b b64b b64b * 6232 * 8ea1e2b2,e2b2,8ea1e2b2v,e2b2v 8cbc e8b2bc 8cbc 00008cbc b64b b64b b64b b64b b64b b64b b64b
+3433 b64c b64c b64c * 6233 * 8ea1e2b3,e2b3,8ea1e2b3v,e2b3v 8cb3 e8b2b3 8cb3 00008cb3 b64c b64c b64c b64c b64c b64c b64c
+3434 b64d b64d b64d * 6234 * 8ea1e2b4,e2b4,8ea1e2b4v,e2b4v 8cbd e8b2bd 8cbd 00008cbd b64d b64d b64d b64d b64d b64d b64d
+3435 b64e b64e b64e * 6235 * 8ea1e2b5,e2b5,8ea1e2b5v,e2b5v 8cc1 e8b381 8cc1 00008cc1 b64e b64e b64e b64e b64e b64e b64e
+3436 b64f b64f b64f * 6236 * 8ea1e2b6,e2b6,8ea1e2b6v,e2b6v 8cbb e8b2bb 8cbb 00008cbb b64f b64f b64f b64f b64f b64f b64f
+3437 b650 b650 b650 * 6237 * 8ea1e2b7,e2b7,8ea1e2b7v,e2b7v 8cc0 e8b380 8cc0 00008cc0 b650 b650 b650 b650 b650 b650 b650
+3438 b651 b651 b651 * 6238 * 8ea1e2b8,e2b8,8ea1e2b8v,e2b8v 8cb4 e8b2b4 8cb4 00008cb4 b651 b651 b651 b651 b651 b651 b651
+3439 b652 b652 b652 * 6239 * 8ea1e2b9,e2b9,8ea1e2b9v,e2b9v 8cb7 e8b2b7 8cb7 00008cb7 b652 b652 b652 b652 b652 b652 b652
+3440 b653 b653 b653 * 623a * 8ea1e2ba,e2ba,8ea1e2bav,e2bav 8cb6 e8b2b6 8cb6 00008cb6 b653 b653 b653 b653 b653 b653 b653
+3441 b654 b654 b654 * 623b * 8ea1e2bb,e2bb,8ea1e2bbv,e2bbv 8cbf e8b2bf 8cbf 00008cbf b654 b654 b654 b654 b654 b654 b654
+3442 b655 b655 b655 * 623c * 8ea1e2bc,e2bc,8ea1e2bcv,e2bcv 8cb8 e8b2b8 8cb8 00008cb8 b655 b655 b655 b655 b655 b655 b655
+3443 b656 b656 b656 * 623d * 8ea1e2bd,e2bd,8ea1e2bdv,e2bdv 8d8a e8b68a 8d8a 00008d8a b656 b656 b656 b656 b656 b656 b656
+3444 b657 b657 b657 * 623e * 8ea1e2be,e2be,8ea1e2bev,e2bev 8d85 e8b685 8d85 00008d85 b657 b657 b657 b657 b657 b657 b657
+3445 b658 b658 b658 * 623f * 8ea1e2bf,e2bf,8ea1e2bfv,e2bfv 8d81 e8b681 8d81 00008d81 b658 b658 b658 b658 b658 b658 b658
+3446 b659 b659 b659 * 6240 * 8ea1e2c0,e2c0,8ea1e2c0v,e2c0v 8dce e8b78e 8dce 00008dce b659 b659 b659 b659 b659 b659 b659
+3447 b65a b65a b65a * 6241 * 8ea1e2c1,e2c1,8ea1e2c1v,e2c1v 8ddd e8b79d 8ddd 00008ddd b65a b65a b65a b65a b65a b65a b65a
+3448 b65b b65b b65b * 6242 * 8ea1e2c2,e2c2,8ea1e2c2v,e2c2v 8dcb e8b78b 8dcb 00008dcb b65b b65b b65b b65b b65b b65b b65b
+3449 b65c b65c b65c * 6243 * 8ea1e2c3,e2c3,8ea1e2c3v,e2c3v 8dda e8b79a 8dda 00008dda b65c b65c b65c b65c b65c b65c b65c
+3450 b65d b65d b65d * 6244 * 8ea1e2c4,e2c4,8ea1e2c4v,e2c4v 8dd1 e8b791 8dd1 00008dd1 b65d b65d b65d b65d b65d b65d b65d
+3451 b65e b65e b65e * 6245 * 8ea1e2c5,e2c5,8ea1e2c5v,e2c5v 8dcc e8b78c 8dcc 00008dcc b65e b65e b65e b65e b65e b65e b65e
+3452 b65f b65f b65f * 6246 * 8ea1e2c6,e2c6,8ea1e2c6v,e2c6v 8ddb e8b79b 8ddb 00008ddb b65f b65f b65f b65f b65f b65f b65f
+3453 b660 b660 b660 * 6247 * 8ea1e2c7,e2c7,8ea1e2c7v,e2c7v 8dc6 e8b786 8dc6 00008dc6 b660 b660 b660 b660 b660 b660 b660
+3454 b661 b661 b661 * 6248 * 8ea1e2c8,e2c8,8ea1e2c8v,e2c8v 8efb e8bbbb 8efb 00008efb b661 b661 b661 b661 b661 b661 b661
+3455 b662 b662 b662 * 6249 * 8ea1e2c9,e2c9,8ea1e2c9v,e2c9v 8ef8 e8bbb8 8ef8 00008ef8 b662 b662 b662 b662 b662 b662 b662
+3456 b663 b663 b663 * 624a * 8ea1e2ca,e2ca,8ea1e2cav,e2cav 8efc e8bbbc 8efc 00008efc b663 b663 b663 b663 b663 b663 b663
+3457 b664 b664 b664 * 624b * 8ea1e2cb,e2cb,8ea1e2cbv,e2cbv 8f9c e8be9c 8f9c 00008f9c b664 b664 b664 b664 b664 b664 b664
+3458 b665 b665 b665 * 624c * 8ea1e2cc,e2cc,8ea1e2ccv,e2ccv 902e e980ae 902e 0000902e b665 b665 b665 b665 b665 b665 b665
+3459 b666 b666 b666 * 624d * 8ea1e2cd,e2cd,8ea1e2cdv,e2cdv 9035 e980b5 9035 00009035 b666 b666 b666 b666 b666 b666 b666
+3460 b667 b667 b667 * 624e * 8ea1e2ce,e2ce,8ea1e2cev,e2cev 9031 e980b1 9031 00009031 b667 b667 b667 b667 b667 b667 b667
+3461 b668 b668 b668 * 624f * 8ea1e2cf,e2cf,8ea1e2cfv,e2cfv 9038 e980b8 9038 00009038 b668 b668 b668 b668 b668 b668 b668
+3462 b669 b669 b669 * 6250 * 8ea1e2d0,e2d0,8ea1e2d0v,e2d0v 9032 e980b2 9032 00009032 b669 b669 b669 b669 b669 b669 b669
+3463 b66a b66a b66a * 6251 * 8ea1e2d1,e2d1,8ea1e2d1v,e2d1v 9036 e980b6 9036 00009036 b66a b66a b66a b66a b66a b66a b66a
+3464 b66b b66b b66b * 6252 * 8ea1e2d2,e2d2,8ea1e2d2v,e2d2v 9102 e98482 9102 00009102 b66b b66b b66b b66b b66b b66b b66b
+3465 b66c b66c b66c * 6253 * 8ea1e2d3,e2d3,8ea1e2d3v,e2d3v 90f5 e983b5 90f5 000090f5 b66c b66c b66c b66c b66c b66c b66c
+3466 b66d b66d b66d * 6254 * 8ea1e2d4,e2d4,8ea1e2d4v,e2d4v 9109 e98489 9109 00009109 b66d b66d b66d b66d b66d b66d b66d
+3467 b66e b66e b66e * 6255 * 8ea1e2d5,e2d5,8ea1e2d5v,e2d5v 90fe e983be 90fe 000090fe b66e b66e b66e b66e b66e b66e b66e
+3468 b66f b66f b66f * 6256 * 8ea1e2d6,e2d6,8ea1e2d6v,e2d6v 9163 e985a3 9163 00009163 b66f b66f b66f b66f b66f b66f b66f
+3469 b670 b670 b670 * 6257 * 8ea1e2d7,e2d7,8ea1e2d7v,e2d7v 9165 e985a5 9165 00009165 b670 b670 b670 b670 b670 b670 b670
+3470 b671 b671 b671 * 6258 * 8ea1e2d8,e2d8,8ea1e2d8v,e2d8v 91cf e9878f 91cf 000091cf b671 b671 b671 b671 b671 b671 b671
+3471 b672 b672 b672 * 6259 * 8ea1e2d9,e2d9,8ea1e2d9v,e2d9v 9214 e98894 9214 00009214 b672 b672 b672 b672 b672 b672 b672
+3472 b673 b673 b673 * 625a * 8ea1e2da,e2da,8ea1e2dav,e2dav 9215 e98895 9215 00009215 b673 b673 b673 b673 b673 b673 b673
+3473 b674 b674 b674 * 625b * 8ea1e2db,e2db,8ea1e2dbv,e2dbv 9223 e988a3 9223 00009223 b674 b674 b674 b674 b674 b674 b674
+3474 b675 b675 b675 * 625c * 8ea1e2dc,e2dc,8ea1e2dcv,e2dcv 9209 e98889 9209 00009209 b675 b675 b675 b675 b675 b675 b675
+3475 b676 b676 b676 * 625d * 8ea1e2dd,e2dd,8ea1e2ddv,e2ddv 921e e9889e 921e 0000921e b676 b676 b676 b676 b676 b676 b676
+3476 b677 b677 b677 * 625e * 8ea1e2de,e2de,8ea1e2dev,e2dev 920d e9888d 920d 0000920d b677 b677 b677 b677 b677 b677 b677
+3477 b678 b678 b678 * 625f * 8ea1e2df,e2df,8ea1e2dfv,e2dfv 9210 e98890 9210 00009210 b678 b678 b678 b678 b678 b678 b678
+3478 b679 b679 b679 * 6260 * 8ea1e2e0,e2e0,8ea1e2e0v,e2e0v 9207 e98887 9207 00009207 b679 b679 b679 b679 b679 b679 b679
+3479 b67a b67a b67a * 6261 * 8ea1e2e1,e2e1,8ea1e2e1v,e2e1v 9211 e98891 9211 00009211 b67a b67a b67a b67a b67a b67a b67a
+3480 b67b b67b b67b * 6262 * 8ea1e2e2,e2e2,8ea1e2e2v,e2e2v 9594 e99694 9594 00009594 b67b b67b b67b b67b b67b b67b b67b
+3481 b67c b67c b67c * 6263 * 8ea1e2e3,e2e3,8ea1e2e3v,e2e3v 958f e9968f 958f 0000958f b67c b67c b67c b67c b67c b67c b67c
+3482 b67d b67d b67d * 6264 * 8ea1e2e4,e2e4,8ea1e2e4v,e2e4v 958b e9968b 958b 0000958b b67d b67d b67d b67d b67d b67d b67d
+3483 b67e b67e b67e * 6265 * 8ea1e2e5,e2e5,8ea1e2e5v,e2e5v 9591 e99691 9591 00009591 b67e b67e b67e b67e b67e b67e b67e
+3484 b6a1 b6a1 b6a1 * 6266 * 8ea1e2e6,e2e6,8ea1e2e6v,e2e6v 9593 e99693 9593 00009593 b6a1 b6a1 b6a1 b6a1 b6a1 b6a1 b6a1
+3485 b6a2 b6a2 b6a2 * 6267 * 8ea1e2e7,e2e7,8ea1e2e7v,e2e7v 9592 e99692 9592 00009592 b6a2 b6a2 b6a2 b6a2 b6a2 b6a2 b6a2
+3486 b6a3 b6a3 b6a3 * 6268 * 8ea1e2e8,e2e8,8ea1e2e8v,e2e8v 958e e9968e 958e 0000958e b6a3 b6a3 b6a3 b6a3 b6a3 b6a3 b6a3
+3487 b6a4 b6a4 b6a4 * 6269 * 8ea1e2e9,e2e9,8ea1e2e9v,e2e9v 968a e99a8a 968a 0000968a b6a4 b6a4 b6a4 b6a4 b6a4 b6a4 b6a4
+3488 b6a5 b6a5 b6a5 * 626a * 8ea1e2ea,e2ea,8ea1e2eav,e2eav 968e e99a8e 968e 0000968e b6a5 b6a5 b6a5 b6a5 b6a5 b6a5 b6a5
+3489 b6a6 b6a6 b6a6 * 626b * 8ea1e2eb,e2eb,8ea1e2ebv,e2ebv 968b e99a8b 968b 0000968b b6a6 b6a6 b6a6 b6a6 b6a6 b6a6 b6a6
+3490 b6a7 b6a7 b6a7 * 626c * 8ea1e2ec,e2ec,8ea1e2ecv,e2ecv 967d e999bd 967d 0000967d b6a7 b6a7 b6a7 b6a7 b6a7 b6a7 b6a7
+3491 b6a8 b6a8 b6a8 * 626d * 8ea1e2ed,e2ed,8ea1e2edv,e2edv 9685 e99a85 9685 00009685 b6a8 b6a8 b6a8 b6a8 b6a8 b6a8 b6a8
+3492 b6a9 b6a9 b6a9 * 626e * 8ea1e2ee,e2ee,8ea1e2eev,e2eev 9686 e99a86 9686 00009686 b6a9 b6a9 b6a9 b6a9 b6a9 b6a9 b6a9
+3493 b6aa b6aa b6aa * 626f * 8ea1e2ef,e2ef,8ea1e2efv,e2efv 968d e99a8d 968d 0000968d b6aa b6aa b6aa b6aa b6aa b6aa b6aa
+3494 b6ab b6ab b6ab * 6270 * 8ea1e2f0,e2f0,8ea1e2f0v,e2f0v 9672 e999b2 9672 00009672 b6ab b6ab b6ab b6ab b6ab b6ab b6ab
+3495 b6ac b6ac b6ac * 6271 * 8ea1e2f1,e2f1,8ea1e2f1v,e2f1v 9684 e99a84 9684 00009684 b6ac b6ac b6ac b6ac b6ac b6ac b6ac
+3496 b6ad b6ad b6ad * 6272 * 8ea1e2f2,e2f2,8ea1e2f2v,e2f2v 96c1 e99b81 96c1 000096c1 b6ad b6ad b6ad b6ad b6ad b6ad b6ad
+3497 b6ae b6ae b6ae * 6273 * 8ea1e2f3,e2f3,8ea1e2f3v,e2f3v 96c5 e99b85 96c5 000096c5 b6ae b6ae b6ae b6ae b6ae b6ae b6ae
+3498 b6af b6af b6af * 6274 * 8ea1e2f4,e2f4,8ea1e2f4v,e2f4v 96c4 e99b84 96c4 000096c4 b6af b6af b6af b6af b6af b6af b6af
+3499 b6b0 b6b0 b6b0 * 6275 * 8ea1e2f5,e2f5,8ea1e2f5v,e2f5v 96c6 e99b86 96c6 000096c6 b6b0 b6b0 b6b0 b6b0 b6b0 b6b0 b6b0
+3500 b6b1 b6b1 b6b1 * 6276 * 8ea1e2f6,e2f6,8ea1e2f6v,e2f6v 96c7 e99b87 96c7 000096c7 b6b1 b6b1 b6b1 b6b1 b6b1 b6b1 b6b1
+3501 b6b2 b6b2 b6b2 * 6277 * 8ea1e2f7,e2f7,8ea1e2f7v,e2f7v 96ef e99baf 96ef 000096ef b6b2 b6b2 b6b2 b6b2 b6b2 b6b2 b6b2
+3502 b6b3 b6b3 b6b3 * 6278 * 8ea1e2f8,e2f8,8ea1e2f8v,e2f8v 96f2 e99bb2 96f2 000096f2 b6b3 b6b3 b6b3 b6b3 b6b3 b6b3 b6b3
+3503 b6b4 b6b4 b6b4 * 6279 * 8ea1e2f9,e2f9,8ea1e2f9v,e2f9v 97cc e99f8c 97cc 000097cc b6b4 b6b4 b6b4 b6b4 b6b4 b6b4 b6b4
+3504 b6b5 b6b5 b6b5 * 627a * 8ea1e2fa,e2fa,8ea1e2fav,e2fav 9805 e9a085 9805 00009805 b6b5 b6b5 b6b5 b6b5 b6b5 b6b5 b6b5
+3505 b6b6 b6b6 b6b6 * 627b * 8ea1e2fb,e2fb,8ea1e2fbv,e2fbv 9806 e9a086 9806 00009806 b6b6 b6b6 b6b6 b6b6 b6b6 b6b6 b6b6
+3506 b6b7 b6b7 b6b7 * 627c * 8ea1e2fc,e2fc,8ea1e2fcv,e2fcv 9808 e9a088 9808 00009808 b6b7 b6b7 b6b7 b6b7 b6b7 b6b7 b6b7
+3507 b6b8 b6b8 b6b8 * 627d * 8ea1e2fd,e2fd,8ea1e2fdv,e2fdv 98e7 e9a3a7 98e7 000098e7 b6b8 b6b8 b6b8 b6b8 b6b8 b6b8 b6b8
+3508 b6b9 b6b9 b6b9 * 627e * 8ea1e2fe,e2fe,8ea1e2fev,e2fev 98ea e9a3aa 98ea 000098ea b6b9 b6b9 b6b9 b6b9 b6b9 b6b9 b6b9
+3509 b6ba b6ba b6ba * 6321 * 8ea1e3a1,e3a1,8ea1e3a1v,e3a1v 98ef e9a3af 98ef 000098ef b6ba b6ba b6ba b6ba b6ba b6ba b6ba
+3510 b6bb b6bb b6bb * 6322 * 8ea1e3a2,e3a2,8ea1e3a2v,e3a2v 98e9 e9a3a9 98e9 000098e9 b6bb b6bb b6bb b6bb b6bb b6bb b6bb
+3511 b6bc b6bc b6bc * 6323 * 8ea1e3a3,e3a3,8ea1e3a3v,e3a3v 98f2 e9a3b2 98f2 000098f2 b6bc b6bc b6bc b6bc b6bc b6bc b6bc
+3512 b6bd b6bd b6bd * 6324 * 8ea1e3a4,e3a4,8ea1e3a4v,e3a4v 98ed e9a3ad 98ed 000098ed b6bd b6bd b6bd b6bd b6bd b6bd b6bd
+3513 b6be b6be b6be * 6325 * 8ea1e3a5,e3a5,8ea1e3a5v,e3a5v 99ae e9a6ae 99ae 000099ae b6be b6be b6be b6be b6be b6be b6be
+3514 b6bf b6bf b6bf * 6326 * 8ea1e3a6,e3a6,8ea1e3a6v,e3a6v 99ad e9a6ad 99ad 000099ad b6bf b6bf b6bf b6bf b6bf b6bf b6bf
+3515 b6c0 b6c0 b6c0 * 292c,6327 * 8ea1a9ac,8ea1e3a7,a9ac,e3a7,8ea1a9acv,8ea1e3a7v,a9acv,e3a7v 9ec3 e9bb83,e2bf88 9ec3,2fc8 00009ec3,00002fc8 b6c0 b6c0 b6c0 b6c0 b6c0 b6c0 b6c0
+3516 b6c1 b6c1 b6c1 * 292d,6328 * 8ea1a9ad,8ea1e3a8,a9ad,e3a8,8ea1a9adv,8ea1e3a8v,a9adv,e3a8v 9ecd e9bb8d,e2bf89 9ecd,2fc9 00009ecd,00002fc9 b6c1 b6c1 b6c1 b6c1 b6c1 b6c1 b6c1
+3517 b6c2 b6c2 b6c2 * 292e,6329 * 8ea1a9ae,8ea1e3a9,a9ae,e3a9,8ea1a9aev,8ea1e3a9v,a9aev,e3a9v 9ed1 e9bb91,e2bf8a 9ed1,2fca 00009ed1,00002fca b6c2 b6c2 b6c2 b6c2 b6c2 b6c2 b6c2
+3518 b6c3 b6c3 b6c3 * 632a * 8ea1e3aa,e3aa,8ea1e3aav,e3aav 4e82 e4ba82 4e82 00004e82 b6c3 b6c3 b6c3 b6c3 b6c3 b6c3 b6c3
+3519 b6c4 b6c4 b6c4 * 632b * 8ea1e3ab,e3ab,8ea1e3abv,e3abv 50ad e582ad 50ad 000050ad b6c4 b6c4 b6c4 b6c4 b6c4 b6c4 b6c4
+3520 b6c5 b6c5 b6c5 * 632c * 8ea1e3ac,e3ac,8ea1e3acv,e3acv 50b5 e582b5 50b5 000050b5 b6c5 b6c5 b6c5 b6c5 b6c5 b6c5 b6c5
+3521 b6c6 b6c6 b6c6 * 632d * 8ea1e3ad,e3ad,8ea1e3adv,e3adv 50b2 e582b2 50b2 000050b2 b6c6 b6c6 b6c6 b6c6 b6c6 b6c6 b6c6
+3522 b6c7 b6c7 b6c7 * 632e * 8ea1e3ae,e3ae,8ea1e3aev,e3aev 50b3 e582b3 50b3 000050b3 b6c7 b6c7 b6c7 b6c7 b6c7 b6c7 b6c7
+3523 b6c8 b6c8 b6c8 * 632f * 8ea1e3af,e3af,8ea1e3afv,e3afv 50c5 e58385 50c5 000050c5 b6c8 b6c8 b6c8 b6c8 b6c8 b6c8 b6c8
+3524 b6c9 b6c9 b6c9 * 6330 * 8ea1e3b0,e3b0,8ea1e3b0v,e3b0v 50be e582be 50be 000050be b6c9 b6c9 b6c9 b6c9 b6c9 b6c9 b6c9
+3525 b6ca b6ca b6ca * 6331 * 8ea1e3b1,e3b1,8ea1e3b1v,e3b1v 50ac e582ac 50ac 000050ac b6ca b6ca b6ca b6ca b6ca b6ca b6ca
+3526 b6cb b6cb b6cb * 6332 * 8ea1e3b2,e3b2,8ea1e3b2v,e3b2v 50b7 e582b7 50b7 000050b7 b6cb b6cb b6cb b6cb b6cb b6cb b6cb
+3527 b6cc b6cc b6cc * 6333 * 8ea1e3b3,e3b3,8ea1e3b3v,e3b3v 50bb e582bb 50bb 000050bb b6cc b6cc b6cc b6cc b6cc b6cc b6cc
+3528 b6cd b6cd b6cd * 6334 * 8ea1e3b4,e3b4,8ea1e3b4v,e3b4v 50af e582af 50af 000050af b6cd b6cd b6cd b6cd b6cd b6cd b6cd
+3529 b6ce b6ce b6ce * 6335 * 8ea1e3b5,e3b5,8ea1e3b5v,e3b5v 50c7 e58387 50c7 000050c7 b6ce b6ce b6ce b6ce b6ce b6ce b6ce
+3530 b6cf b6cf b6cf * 6336 * 8ea1e3b6,e3b6,8ea1e3b6v,e3b6v 527f e589bf 527f 0000527f b6cf b6cf b6cf b6cf b6cf b6cf b6cf
+3531 b6d0 b6d0 b6d0 * 6337 * 8ea1e3b7,e3b7,8ea1e3b7v,e3b7v 5277 e589b7 5277 00005277 b6d0 b6d0 b6d0 b6d0 b6d0 b6d0 b6d0
+3532 b6d1 b6d1 b6d1 * 6338 * 8ea1e3b8,e3b8,8ea1e3b8v,e3b8v 527d e589bd 527d 0000527d b6d1 b6d1 b6d1 b6d1 b6d1 b6d1 b6d1
+3533 b6d2 b6d2 b6d2 * 6339 * 8ea1e3b9,e3b9,8ea1e3b9v,e3b9v 52df e58b9f 52df 000052df b6d2 b6d2 b6d2 b6d2 b6d2 b6d2 b6d2
+3534 b6d3 b6d3 b6d3 * 633a * 8ea1e3ba,e3ba,8ea1e3bav,e3bav 52e6 e58ba6 52e6 000052e6 b6d3 b6d3 b6d3 b6d3 b6d3 b6d3 b6d3
+3535 b6d4 b6d4 b6d4 * 633b * 8ea1e3bb,e3bb,8ea1e3bbv,e3bbv 52e4 e58ba4 52e4 000052e4 b6d4 b6d4 b6d4 b6d4 b6d4 b6d4 b6d4
+3536 b6d5 b6d5 b6d5 * 633c * 8ea1e3bc,e3bc,8ea1e3bcv,e3bcv 52e2 e58ba2 52e2 000052e2 b6d5 b6d5 b6d5 b6d5 b6d5 b6d5 b6d5
+3537 b6d6 b6d6 b6d6 * 633d * 8ea1e3bd,e3bd,8ea1e3bdv,e3bdv 52e3 e58ba3 52e3 000052e3 b6d6 b6d6 b6d6 b6d6 b6d6 b6d6 b6d6
+3538 b6d7 b6d7 b6d7 * 633e * 8ea1e3be,e3be,8ea1e3bev,e3bev 532f e58caf 532f 0000532f b6d7 b6d7 b6d7 b6d7 b6d7 b6d7 b6d7
+3539 b6d8 b6d8 b6d8 * 633f * 8ea1e3bf,e3bf,8ea1e3bfv,e3bfv 55df e5979f 55df 000055df b6d8 b6d8 b6d8 b6d8 b6d8 b6d8 b6d8
+3540 b6d9 b6d9 b6d9 * 6340 * 8ea1e3c0,e3c0,8ea1e3c0v,e3c0v 55e8 e597a8 55e8 000055e8 b6d9 b6d9 b6d9 b6d9 b6d9 b6d9 b6d9
+3541 b6da b6da b6da * 6341 * 8ea1e3c1,e3c1,8ea1e3c1v,e3c1v 55d3 e59793 55d3 000055d3 b6da b6da b6da b6da b6da b6da b6da
+3542 b6db b6db b6db * 6342 * 8ea1e3c2,e3c2,8ea1e3c2v,e3c2v 55e6 e597a6 55e6 000055e6 b6db b6db b6db b6db b6db b6db b6db
+3543 b6dc b6dc b6dc * 6343 * 8ea1e3c3,e3c3,8ea1e3c3v,e3c3v 55ce e5978e 55ce 000055ce b6dc b6dc b6dc b6dc b6dc b6dc b6dc
+3544 b6dd b6dd b6dd * 6344 * 8ea1e3c4,e3c4,8ea1e3c4v,e3c4v 55dc e5979c 55dc 000055dc b6dd b6dd b6dd b6dd b6dd b6dd b6dd
+3545 b6de b6de b6de * 6345 * 8ea1e3c5,e3c5,8ea1e3c5v,e3c5v 55c7 e59787 55c7 000055c7 b6de b6de b6de b6de b6de b6de b6de
+3546 b6df b6df b6df * 6346 * 8ea1e3c6,e3c6,8ea1e3c6v,e3c6v 55d1 e59791 55d1 000055d1 b6df b6df b6df b6df b6df b6df b6df
+3547 b6e0 b6e0 b6e0 * 6347 * 8ea1e3c7,e3c7,8ea1e3c7v,e3c7v 55e3 e597a3 55e3 000055e3 b6e0 b6e0 b6e0 b6e0 b6e0 b6e0 b6e0
+3548 b6e1 b6e1 b6e1 * 6348 * 8ea1e3c8,e3c8,8ea1e3c8v,e3c8v 55e4 e597a4 55e4 000055e4 b6e1 b6e1 b6e1 b6e1 b6e1 b6e1 b6e1
+3549 b6e2 b6e2 b6e2 * 6349 * 8ea1e3c9,e3c9,8ea1e3c9v,e3c9v 55ef e597af 55ef 000055ef b6e2 b6e2 b6e2 b6e2 b6e2 b6e2 b6e2
+3550 b6e3 b6e3 b6e3 * 634a * 8ea1e3ca,e3ca,8ea1e3cav,e3cav 55da e5979a 55da 000055da b6e3 b6e3 b6e3 b6e3 b6e3 b6e3 b6e3
+3551 b6e4 b6e4 b6e4 * 634b * 8ea1e3cb,e3cb,8ea1e3cbv,e3cbv 55e1 e597a1 55e1 000055e1 b6e4 b6e4 b6e4 b6e4 b6e4 b6e4 b6e4
+3552 b6e5 b6e5 b6e5 * 634c * 8ea1e3cc,e3cc,8ea1e3ccv,e3ccv 55c5 e59785 55c5 000055c5 b6e5 b6e5 b6e5 b6e5 b6e5 b6e5 b6e5
+3553 b6e6 b6e6 b6e6 * 634d * 8ea1e3cd,e3cd,8ea1e3cdv,e3cdv 55c6 e59786 55c6 000055c6 b6e6 b6e6 b6e6 b6e6 b6e6 b6e6 b6e6
+3554 b6e7 b6e7 b6e7 * 634e * 8ea1e3ce,e3ce,8ea1e3cev,e3cev 55e5 e597a5 55e5 000055e5 b6e7 b6e7 b6e7 b6e7 b6e7 b6e7 b6e7
+3555 b6e8 b6e8 b6e8 * 634f * 8ea1e3cf,e3cf,8ea1e3cfv,e3cfv 55c9 e59789 55c9 000055c9 b6e8 b6e8 b6e8 b6e8 b6e8 b6e8 b6e8
+3556 b6e9 b6e9 b6e9 * 6350 * 8ea1e3d0,e3d0,8ea1e3d0v,e3d0v 5712 e59c92 5712 00005712 b6e9 b6e9 b6e9 b6e9 b6e9 b6e9 b6e9
+3557 b6ea b6ea b6ea * 6351 * 8ea1e3d1,e3d1,8ea1e3d1v,e3d1v 5713 e59c93 5713 00005713 b6ea b6ea b6ea b6ea b6ea b6ea b6ea
+3558 b6eb b6eb b6eb * 6352 * 8ea1e3d2,e3d2,8ea1e3d2v,e3d2v 585e e5a19e 585e 0000585e b6eb b6eb b6eb b6eb b6eb b6eb b6eb
+3559 b6ec b6ec b6ec * 6353 * 8ea1e3d3,e3d3,8ea1e3d3v,e3d3v 5851 e5a191 5851 00005851 b6ec b6ec b6ec b6ec b6ec b6ec b6ec
+3560 b6ed b6ed b6ed * 6354 * 8ea1e3d4,e3d4,8ea1e3d4v,e3d4v 5858 e5a198 5858 00005858 b6ed b6ed b6ed b6ed b6ed b6ed b6ed
+3561 b6ee b6ee b6ee * 6355 * 8ea1e3d5,e3d5,8ea1e3d5v,e3d5v 5857 e5a197 5857 00005857 b6ee b6ee b6ee b6ee b6ee b6ee b6ee
+3562 b6ef b6ef b6ef * 6356 * 8ea1e3d6,e3d6,8ea1e3d6v,e3d6v 585a e5a19a 585a 0000585a b6ef b6ef b6ef b6ef b6ef b6ef b6ef
+3563 b6f0 b6f0 b6f0 * 6357 * 8ea1e3d7,e3d7,8ea1e3d7v,e3d7v 5854 e5a194 5854 00005854 b6f0 b6f0 b6f0 b6f0 b6f0 b6f0 b6f0
+3564 b6f1 b6f1 b6f1 * 6358 * 8ea1e3d8,e3d8,8ea1e3d8v,e3d8v 586b e5a1ab 586b 0000586b b6f1 b6f1 b6f1 b6f1 b6f1 b6f1 b6f1
+3565 b6f2 b6f2 b6f2 * 6359 * 8ea1e3d9,e3d9,8ea1e3d9v,e3d9v 584c e5a18c 584c 0000584c b6f2 b6f2 b6f2 b6f2 b6f2 b6f2 b6f2
+3566 b6f3 b6f3 b6f3 * 635a * 8ea1e3da,e3da,8ea1e3dav,e3dav 586d e5a1ad 586d 0000586d b6f3 b6f3 b6f3 b6f3 b6f3 b6f3 b6f3
+3567 b6f4 b6f4 b6f4 * 635b * 8ea1e3db,e3db,8ea1e3dbv,e3dbv 584a e5a18a 584a 0000584a b6f4 b6f4 b6f4 b6f4 b6f4 b6f4 b6f4
+3568 b6f5 b6f5 b6f5 * 635c * 8ea1e3dc,e3dc,8ea1e3dcv,e3dcv 5862 e5a1a2 5862 00005862 b6f5 b6f5 b6f5 b6f5 b6f5 b6f5 b6f5
+3569 b6f6 b6f6 b6f6 * 635d * 8ea1e3dd,e3dd,8ea1e3ddv,e3ddv 5852 e5a192 5852 00005852 b6f6 b6f6 b6f6 b6f6 b6f6 b6f6 b6f6
+3570 b6f7 b6f7 b6f7 * 635e * 8ea1e3de,e3de,8ea1e3dev,e3dev 584b e5a18b 584b 0000584b b6f7 b6f7 b6f7 b6f7 b6f7 b6f7 b6f7
+3571 b6f8 b6f8 b6f8 * 635f * 8ea1e3df,e3df,8ea1e3dfv,e3dfv 5967 e5a5a7 5967 00005967 b6f8 b6f8 b6f8 b6f8 b6f8 b6f8 b6f8
+3572 b6f9 b6f9 b6f9 * 6360 * 8ea1e3e0,e3e0,8ea1e3e0v,e3e0v 5ac1 e5ab81 5ac1 00005ac1 b6f9 b6f9 b6f9 b6f9 b6f9 b6f9 b6f9
+3573 b6fa b6fa b6fa * 6361 * 8ea1e3e1,e3e1,8ea1e3e1v,e3e1v 5ac9 e5ab89 5ac9 00005ac9 b6fa b6fa b6fa b6fa b6fa b6fa b6fa
+3574 b6fb b6fb b6fb * 6362 * 8ea1e3e2,e3e2,8ea1e3e2v,e3e2v 5acc e5ab8c 5acc 00005acc b6fb b6fb b6fb b6fb b6fb b6fb b6fb
+3575 b6fc b6fc b6fc * 6363 * 8ea1e3e3,e3e3,8ea1e3e3v,e3e3v 5abe e5aabe 5abe 00005abe b6fc b6fc b6fc b6fc b6fc b6fc b6fc
+3576 b6fd b6fd b6fd * 6364 * 8ea1e3e4,e3e4,8ea1e3e4v,e3e4v 5abd e5aabd 5abd 00005abd b6fd b6fd b6fd b6fd b6fd b6fd b6fd
+3577 b6fe b6fe b6fe * 6365 * 8ea1e3e5,e3e5,8ea1e3e5v,e3e5v 5abc e5aabc 5abc 00005abc b6fe b6fe b6fe b6fe b6fe b6fe b6fe
+3578 b740 b740 b740 * 6366 * 8ea1e3e6,e3e6,8ea1e3e6v,e3e6v 5ab3 e5aab3 5ab3 00005ab3 b740 b740 b740 b740 b740 b740 b740
+3579 b741 b741 b741 * 6367 * 8ea1e3e7,e3e7,8ea1e3e7v,e3e7v 5ac2 e5ab82 5ac2 00005ac2 b741 b741 b741 b741 b741 b741 b741
+3580 b742 b742 b742 * 6368 * 8ea1e3e8,e3e8,8ea1e3e8v,e3e8v 5ab2 e5aab2 5ab2 00005ab2 b742 b742 b742 b742 b742 b742 b742
+3581 b743 b743 b743 * 6369 * 8ea1e3e9,e3e9,8ea1e3e9v,e3e9v 5d69 e5b5a9 5d69 00005d69 b743 b743 b743 b743 b743 b743 b743
+3582 b744 b744 b744 * 636a * 8ea1e3ea,e3ea,8ea1e3eav,e3eav 5d6f e5b5af 5d6f 00005d6f b744 b744 b744 b744 b744 b744 b744
+3583 b745 b745 b745 * 636b * 8ea1e3eb,e3eb,8ea1e3ebv,e3ebv 5e4c e5b98c 5e4c 00005e4c b745 b745 b745 b745 b745 b745 b745
+3584 b746 b746 b746 * 636c * 8ea1e3ec,e3ec,8ea1e3ecv,e3ecv 5e79 e5b9b9 5e79 00005e79 b746 b746 b746 b746 b746 b746 b746
+3585 b747 b747 b747 * 636d * 8ea1e3ed,e3ed,8ea1e3edv,e3edv 5ec9 e5bb89 5ec9 00005ec9 b747 b747 b747 b747 b747 b747 b747
+3586 b748 b748 b748 * 636e * 8ea1e3ee,e3ee,8ea1e3eev,e3eev 5ec8 e5bb88 5ec8 00005ec8 b748 b748 b748 b748 b748 b748 b748
+3587 b749 b749 b749 * 636f * 8ea1e3ef,e3ef,8ea1e3efv,e3efv 5f12 e5bc92 5f12 00005f12 b749 b749 b749 b749 b749 b749 b749
+3588 b74a b74a b74a * 6370 * 8ea1e3f0,e3f0,8ea1e3f0v,e3f0v 5f59 e5bd99 5f59 00005f59 b74a b74a b74a b74a b74a b74a b74a
+3589 b74b b74b b74b * 6371 * 8ea1e3f1,e3f1,8ea1e3f1v,e3f1v 5fac e5beac 5fac 00005fac b74b b74b b74b b74b b74b b74b b74b
+3590 b74c b74c b74c * 6372 * 8ea1e3f2,e3f2,8ea1e3f2v,e3f2v 5fae e5beae 5fae 00005fae b74c b74c b74c b74c b74c b74c b74c
+3591 b74d b74d b74d * 6373 * 8ea1e3f3,e3f3,8ea1e3f3v,e3f3v 611a e6849a 611a 0000611a b74d b74d b74d b74d b74d b74d b74d
+3592 b74e b74e b74e * 6374 * 8ea1e3f4,e3f4,8ea1e3f4v,e3f4v 610f e6848f 610f 0000610f b74e b74e b74e b74e b74e b74e b74e
+3593 b74f b74f b74f * 6375 * 8ea1e3f5,e3f5,8ea1e3f5v,e3f5v 6148 e68588 6148 00006148 b74f b74f b74f b74f b74f b74f b74f
+3594 b750 b750 b750 * 6376 * 8ea1e3f6,e3f6,8ea1e3f6v,e3f6v 611f e6849f 611f 0000611f b750 b750 b750 b750 b750 b750 b750
+3595 b751 b751 b751 * 6377 * 8ea1e3f7,e3f7,8ea1e3f7v,e3f7v 60f3 e683b3 60f3 000060f3 b751 b751 b751 b751 b751 b751 b751
+3596 b752 b752 b752 * 6378 * 8ea1e3f8,e3f8,8ea1e3f8v,e3f8v 611b e6849b 611b 0000611b b752 b752 b752 b752 b752 b752 b752
+3597 b753 b753 b753 * 6379 * 8ea1e3f9,e3f9,8ea1e3f9v,e3f9v 60f9 e683b9 60f9 000060f9 b753 b753 b753 b753 b753 b753 b753
+3598 b754 b754 b754 * 637a * 8ea1e3fa,e3fa,8ea1e3fav,e3fav 6101 e68481 6101 00006101 b754 b754 b754 b754 b754 b754 b754
+3599 b755 b755 b755 * 637b * 8ea1e3fb,e3fb,8ea1e3fbv,e3fbv 6108 e68488 6108 00006108 b755 b755 b755 b755 b755 b755 b755
+3600 b756 b756 b756 * 637c * 8ea1e3fc,e3fc,8ea1e3fcv,e3fcv 614e e6858e 614e 0000614e b756 b756 b756 b756 b756 b756 b756
+3601 b757 b757 b757 * 637d * 8ea1e3fd,e3fd,8ea1e3fdv,e3fdv 614c e6858c 614c 0000614c b757 b757 b757 b757 b757 b757 b757
+3602 b758 b758 b758 * 637e * 8ea1e3fe,e3fe,8ea1e3fev,e3fev 6144 e68584 6144 00006144 b758 b758 b758 b758 b758 b758 b758
+3603 b759 b759 b759 * 6421 * 8ea1e4a1,e4a1,8ea1e4a1v,e4a1v 614d e6858d 614d 0000614d b759 b759 b759 b759 b759 b759 b759
+3604 b75a b75a b75a * 6422 * 8ea1e4a2,e4a2,8ea1e4a2v,e4a2v 613e e684be 613e 0000613e b75a b75a b75a b75a b75a b75a b75a
+3605 b75b b75b b75b * 6423 * 8ea1e4a3,e4a3,8ea1e4a3v,e4a3v 6134 e684b4 6134 00006134 b75b b75b b75b b75b b75b b75b b75b
+3606 b75c b75c b75c * 6424 * 8ea1e4a4,e4a4,8ea1e4a4v,e4a4v 6127 e684a7 6127 00006127 b75c b75c b75c b75c b75c b75c b75c
+3607 b75d b75d b75d * 6425 * 8ea1e4a5,e4a5,8ea1e4a5v,e4a5v 610d e6848d 610d 0000610d b75d b75d b75d b75d b75d b75d b75d
+3608 b75e b75e b75e * 6426 * 8ea1e4a6,e4a6,8ea1e4a6v,e4a6v 6106 e68486 6106 00006106 b75e b75e b75e b75e b75e b75e b75e
+3609 b75f b75f b75f * 6427 * 8ea1e4a7,e4a7,8ea1e4a7v,e4a7v 6137 e684b7 6137 00006137 b75f b75f b75f b75f b75f b75f b75f
+3610 b760 b760 b760 * 6428 * 8ea1e4a8,e4a8,8ea1e4a8v,e4a8v 6221 e688a1 6221 00006221 b760 b760 b760 b760 b760 b760 b760
+3611 b761 b761 b761 * 6429 * 8ea1e4a9,e4a9,8ea1e4a9v,e4a9v 6222 e688a2 6222 00006222 b761 b761 b761 b761 b761 b761 b761
+3612 b762 b762 b762 * 642a * 8ea1e4aa,e4aa,8ea1e4aav,e4aav 6413 e69093 6413 00006413 b762 b762 b762 b762 b762 b762 b762
+3613 b763 b763 b763 * 642b * 8ea1e4ab,e4ab,8ea1e4abv,e4abv 643e e690be 643e 0000643e b763 b763 b763 b763 b763 b763 b763
+3614 b764 b764 b764 * 642c * 8ea1e4ac,e4ac,8ea1e4acv,e4acv 641e e6909e 641e 0000641e b764 b764 b764 b764 b764 b764 b764
+3615 b765 b765 b765 * 642d * 8ea1e4ad,e4ad,8ea1e4adv,e4adv 642a e690aa 642a 0000642a b765 b765 b765 b765 b765 b765 b765
+3616 b766 b766 b766 * 642e * 8ea1e4ae,e4ae,8ea1e4aev,e4aev 642d e690ad 642d 0000642d b766 b766 b766 b766 b766 b766 b766
+3617 b767 b767 b767 * 642f * 8ea1e4af,e4af,8ea1e4afv,e4afv 643d e690bd 643d 0000643d b767 b767 b767 b767 b767 b767 b767
+3618 b768 b768 b768 * 6430 * 8ea1e4b0,e4b0,8ea1e4b0v,e4b0v 642c e690ac 642c 0000642c b768 b768 b768 b768 b768 b768 b768
+3619 b769 b769 b769 * 6431 * 8ea1e4b1,e4b1,8ea1e4b1v,e4b1v 640f e6908f 640f 0000640f b769 b769 b769 b769 b769 b769 b769
+3620 b76a b76a b76a * 6432 * 8ea1e4b2,e4b2,8ea1e4b2v,e4b2v 641c e6909c 641c 0000641c b76a b76a b76a b76a b76a b76a b76a
+3621 b76b b76b b76b * 6433 * 8ea1e4b3,e4b3,8ea1e4b3v,e4b3v 6414 e69094 6414 00006414 b76b b76b b76b b76b b76b b76b b76b
+3622 b76c b76c b76c * 6434 * 8ea1e4b4,e4b4,8ea1e4b4v,e4b4v 640d e6908d 640d 0000640d b76c b76c b76c b76c b76c b76c b76c
+3623 b76d b76d b76d * 6435 * 8ea1e4b5,e4b5,8ea1e4b5v,e4b5v 6436 e690b6 6436 00006436 b76d b76d b76d b76d b76d b76d b76d
+3624 b76e b76e b76e * 6436 * 8ea1e4b6,e4b6,8ea1e4b6v,e4b6v 6416 e69096 6416 00006416 b76e b76e b76e b76e b76e b76e b76e
+3625 b76f b76f b76f * 6437 * 8ea1e4b7,e4b7,8ea1e4b7v,e4b7v 6417 e69097 6417 00006417 b76f b76f b76f b76f b76f b76f b76f
+3626 b770 b770 b770 * 6438 * 8ea1e4b8,e4b8,8ea1e4b8v,e4b8v 6406 e69086 6406 00006406 b770 b770 b770 b770 b770 b770 b770
+3627 b771 b771 b771 * 6439 * 8ea1e4b9,e4b9,8ea1e4b9v,e4b9v 656c e695ac 656c 0000656c b771 b771 b771 b771 b771 b771 b771
+3628 b772 b772 b772 * 643a * 8ea1e4ba,e4ba,8ea1e4bav,e4bav 659f e6969f 659f 0000659f b772 b772 b772 b772 b772 b772 b772
+3629 b773 b773 b773 * 643b * 8ea1e4bb,e4bb,8ea1e4bbv,e4bbv 65b0 e696b0 65b0 000065b0 b773 b773 b773 b773 b773 b773 b773
+3630 b774 b774 b774 * 643c * 8ea1e4bc,e4bc,8ea1e4bcv,e4bcv 6697 e69a97 6697 00006697 b774 b774 b774 b774 b774 b774 b774
+3631 b775 b775 b775 * 643d * 8ea1e4bd,e4bd,8ea1e4bdv,e4bdv 6689 e69a89 6689 00006689 b775 b775 b775 b775 b775 b775 b775
+3632 b776 b776 b776 * 643e * 8ea1e4be,e4be,8ea1e4bev,e4bev 6687 e69a87 6687 00006687 b776 b776 b776 b776 b776 b776 b776
+3633 b777 b777 b777 * 643f * 8ea1e4bf,e4bf,8ea1e4bfv,e4bfv 6688 e69a88 6688 00006688 b777 b777 b777 b777 b777 b777 b777
+3634 b778 b778 b778 * 6440 * 8ea1e4c0,e4c0,8ea1e4c0v,e4c0v 6696 e69a96 6696 00006696 b778 b778 b778 b778 b778 b778 b778
+3635 b779 b779 b779 * 6441 * 8ea1e4c1,e4c1,8ea1e4c1v,e4c1v 6684 e69a84 6684 00006684 b779 b779 b779 b779 b779 b779 b779
+3636 b77a b77a b77a * 6442 * 8ea1e4c2,e4c2,8ea1e4c2v,e4c2v 6698 e69a98 6698 00006698 b77a b77a b77a b77a b77a b77a b77a
+3637 b77b b77b b77b * 6443 * 8ea1e4c3,e4c3,8ea1e4c3v,e4c3v 668d e69a8d 668d 0000668d b77b b77b b77b b77b b77b b77b b77b
+3638 b77c b77c b77c * 6444 * 8ea1e4c4,e4c4,8ea1e4c4v,e4c4v 6703 e69c83 6703 00006703 b77c b77c b77c b77c b77c b77c b77c
+3639 b77d b77d b77d * 6445 * 8ea1e4c5,e4c5,8ea1e4c5v,e4c5v 6994 e6a694 6994 00006994 b77d b77d b77d b77d b77d b77d b77d
+3640 b77e b77e b77e * 6446 * 8ea1e4c6,e4c6,8ea1e4c6v,e4c6v 696d e6a5ad 696d 0000696d b77e b77e b77e b77e b77e b77e b77e
+3641 b7a1 b7a1 b7a1 * 6447 * 8ea1e4c7,e4c7,8ea1e4c7v,e4c7v 695a e6a59a 695a 0000695a b7a1 b7a1 b7a1 b7a1 b7a1 b7a1 b7a1
+3642 b7a2 b7a2 b7a2 * 6448 * 8ea1e4c8,e4c8,8ea1e4c8v,e4c8v 6977 e6a5b7 6977 00006977 b7a2 b7a2 b7a2 b7a2 b7a2 b7a2 b7a2
+3643 b7a3 b7a3 b7a3 * 6449 * 8ea1e4c9,e4c9,8ea1e4c9v,e4c9v 6960 e6a5a0 6960 00006960 b7a3 b7a3 b7a3 b7a3 b7a3 b7a3 b7a3
+3644 b7a4 b7a4 b7a4 * 644a * 8ea1e4ca,e4ca,8ea1e4cav,e4cav 6954 e6a594 6954 00006954 b7a4 b7a4 b7a4 b7a4 b7a4 b7a4 b7a4
+3645 b7a5 b7a5 b7a5 * 644b * 8ea1e4cb,e4cb,8ea1e4cbv,e4cbv 6975 e6a5b5 6975 00006975 b7a5 b7a5 b7a5 b7a5 b7a5 b7a5 b7a5
+3646 b7a6 b7a6 b7a6 * 644c * 8ea1e4cc,e4cc,8ea1e4ccv,e4ccv 6930 e6a4b0 6930 00006930 b7a6 b7a6 b7a6 b7a6 b7a6 b7a6 b7a6
+3647 b7a7 b7a7 b7a7 * 644d * 8ea1e4cd,e4cd,8ea1e4cdv,e4cdv 6982 e6a682 6982 00006982 b7a7 b7a7 b7a7 b7a7 b7a7 b7a7 b7a7
+3648 b7a8 b7a8 b7a8 * 644e * 8ea1e4ce,e4ce,8ea1e4cev,e4cev 694a e6a58a 694a 0000694a b7a8 b7a8 b7a8 b7a8 b7a8 b7a8 b7a8
+3649 b7a9 b7a9 b7a9 * 644f * 8ea1e4cf,e4cf,8ea1e4cfv,e4cfv 6968 e6a5a8 6968 00006968 b7a9 b7a9 b7a9 b7a9 b7a9 b7a9 b7a9
+3650 b7aa b7aa b7aa * 6450 * 8ea1e4d0,e4d0,8ea1e4d0v,e4d0v 696b e6a5ab 696b 0000696b b7aa b7aa b7aa b7aa b7aa b7aa b7aa
+3651 b7ab b7ab b7ab * 6451 * 8ea1e4d1,e4d1,8ea1e4d1v,e4d1v 695e e6a59e 695e 0000695e b7ab b7ab b7ab b7ab b7ab b7ab b7ab
+3652 b7ac b7ac b7ac * 6452 * 8ea1e4d2,e4d2,8ea1e4d2v,e4d2v 6953 e6a593 6953 00006953 b7ac b7ac b7ac b7ac b7ac b7ac b7ac
+3653 b7ad b7ad b7ad * 6453 * 8ea1e4d3,e4d3,8ea1e4d3v,e4d3v 6979 e6a5b9 6979 00006979 b7ad b7ad b7ad b7ad b7ad b7ad b7ad
+3654 b7ae b7ae b7ae * 6454 * 8ea1e4d4,e4d4,8ea1e4d4v,e4d4v 6986 e6a686 6986 00006986 b7ae b7ae b7ae b7ae b7ae b7ae b7ae
+3655 b7af b7af b7af * 6455 * 8ea1e4d5,e4d5,8ea1e4d5v,e4d5v 695d e6a59d 695d 0000695d b7af b7af b7af b7af b7af b7af b7af
+3656 b7b0 b7b0 b7b0 * 6456 * 8ea1e4d6,e4d6,8ea1e4d6v,e4d6v 6963 e6a5a3 6963 00006963 b7b0 b7b0 b7b0 b7b0 b7b0 b7b0 b7b0
+3657 b7b1 b7b1 b7b1 * 6457 * 8ea1e4d7,e4d7,8ea1e4d7v,e4d7v 695b e6a59b 695b 0000695b b7b1 b7b1 b7b1 b7b1 b7b1 b7b1 b7b1
+3658 b7b2 b7b2 b7b2 * 6458 * 8ea1e4d8,e4d8,8ea1e4d8v,e4d8v 6b47 e6ad87 6b47 00006b47 b7b2 b7b2 b7b2 b7b2 b7b2 b7b2 b7b2
+3659 b7b3 b7b3 b7b3 * 6459 * 8ea1e4d9,e4d9,8ea1e4d9v,e4d9v 6b72 e6adb2 6b72 00006b72 b7b3 b7b3 b7b3 b7b3 b7b3 b7b3 b7b3
+3660 b7b4 b7b4 b7b4 * 645a * 8ea1e4da,e4da,8ea1e4dav,e4dav 6bc0 e6af80 6bc0 00006bc0 b7b4 b7b4 b7b4 b7b4 b7b4 b7b4 b7b4
+3661 b7b5 b7b5 b7b5 * 645b * 8ea1e4db,e4db,8ea1e4dbv,e4dbv 6bbf e6aebf 6bbf 00006bbf b7b5 b7b5 b7b5 b7b5 b7b5 b7b5 b7b5
+3662 b7b6 b7b6 b7b6 * 645c * 8ea1e4dc,e4dc,8ea1e4dcv,e4dcv 6bd3 e6af93 6bd3 00006bd3 b7b6 b7b6 b7b6 b7b6 b7b6 b7b6 b7b6
+3663 b7b7 b7b7 b7b7 * 645d * 8ea1e4dd,e4dd,8ea1e4ddv,e4ddv 6bfd e6afbd 6bfd 00006bfd b7b7 b7b7 b7b7 b7b7 b7b7 b7b7 b7b7
+3664 b7b8 b7b8 b7b8 * 645e * 8ea1e4de,e4de,8ea1e4dev,e4dev 6ea2 e6baa2 6ea2 00006ea2 b7b8 b7b8 b7b8 b7b8 b7b8 b7b8 b7b8
+3665 b7b9 b7b9 b7b9 * 645f * 8ea1e4df,e4df,8ea1e4dfv,e4dfv 6eaf e6baaf 6eaf 00006eaf b7b9 b7b9 b7b9 b7b9 b7b9 b7b9 b7b9
+3666 b7ba b7ba b7ba * 6460 * 8ea1e4e0,e4e0,8ea1e4e0v,e4e0v 6ed3 e6bb93 6ed3 00006ed3 b7ba b7ba b7ba b7ba b7ba b7ba b7ba
+3667 b7bb b7bb b7bb * 6461 * 8ea1e4e1,e4e1,8ea1e4e1v,e4e1v 6eb6 e6bab6 6eb6 00006eb6 b7bb b7bb b7bb b7bb b7bb b7bb b7bb
+3668 b7bc b7bc b7bc * 6462 * 8ea1e4e2,e4e2,8ea1e4e2v,e4e2v 6ec2 e6bb82 6ec2 00006ec2 b7bc b7bc b7bc b7bc b7bc b7bc b7bc
+3669 b7bd b7bd b7bd * 6463 * 8ea1e4e3,e4e3,8ea1e4e3v,e4e3v 6e90 e6ba90 6e90 00006e90 b7bd b7bd b7bd b7bd b7bd b7bd b7bd
+3670 b7be b7be b7be * 6464 * 8ea1e4e4,e4e4,8ea1e4e4v,e4e4v 6e9d e6ba9d 6e9d 00006e9d b7be b7be b7be b7be b7be b7be b7be
+3671 b7bf b7bf b7bf * 6465 * 8ea1e4e5,e4e5,8ea1e4e5v,e4e5v 6ec7 e6bb87 6ec7 00006ec7 b7bf b7bf b7bf b7bf b7bf b7bf b7bf
+3672 b7c0 b7c0 b7c0 * 6466 * 8ea1e4e6,e4e6,8ea1e4e6v,e4e6v 6ec5 e6bb85 6ec5 00006ec5 b7c0 b7c0 b7c0 b7c0 b7c0 b7c0 b7c0
+3673 b7c1 b7c1 b7c1 * 6467 * 8ea1e4e7,e4e7,8ea1e4e7v,e4e7v 6ea5 e6baa5 6ea5 00006ea5 b7c1 b7c1 b7c1 b7c1 b7c1 b7c1 b7c1
+3674 b7c2 b7c2 b7c2 * 6468 * 8ea1e4e8,e4e8,8ea1e4e8v,e4e8v 6e98 e6ba98 6e98 00006e98 b7c2 b7c2 b7c2 b7c2 b7c2 b7c2 b7c2
+3675 b7c3 b7c3 b7c3 * 6469 * 8ea1e4e9,e4e9,8ea1e4e9v,e4e9v 6ebc e6babc 6ebc 00006ebc b7c3 b7c3 b7c3 b7c3 b7c3 b7c3 b7c3
+3676 b7c4 b7c4 b7c4 * 646a * 8ea1e4ea,e4ea,8ea1e4eav,e4eav 6eba e6baba 6eba 00006eba b7c4 b7c4 b7c4 b7c4 b7c4 b7c4 b7c4
+3677 b7c5 b7c5 b7c5 * 646b * 8ea1e4eb,e4eb,8ea1e4ebv,e4ebv 6eab e6baab 6eab 00006eab b7c5 b7c5 b7c5 b7c5 b7c5 b7c5 b7c5
+3678 b7c6 b7c6 b7c6 * 646c * 8ea1e4ec,e4ec,8ea1e4ecv,e4ecv 6ed1 e6bb91 6ed1 00006ed1 b7c6 b7c6 b7c6 b7c6 b7c6 b7c6 b7c6
+3679 b7c7 b7c7 b7c7 * 646d * 8ea1e4ed,e4ed,8ea1e4edv,e4edv 6e96 e6ba96 6e96 00006e96 b7c7 b7c7 b7c7 b7c7 b7c7 b7c7 b7c7
+3680 b7c8 b7c8 b7c8 * 646e * 8ea1e4ee,e4ee,8ea1e4eev,e4eev 6e9c e6ba9c 6e9c 00006e9c b7c8 b7c8 b7c8 b7c8 b7c8 b7c8 b7c8
+3681 b7c9 b7c9 b7c9 * 646f * 8ea1e4ef,e4ef,8ea1e4efv,e4efv 6ec4 e6bb84 6ec4 00006ec4 b7c9 b7c9 b7c9 b7c9 b7c9 b7c9 b7c9
+3682 b7ca b7ca b7ca * 6470 * 8ea1e4f0,e4f0,8ea1e4f0v,e4f0v 6ed4 e6bb94 6ed4 00006ed4 b7ca b7ca b7ca b7ca b7ca b7ca b7ca
+3683 b7cb b7cb b7cb * 6471 * 8ea1e4f1,e4f1,8ea1e4f1v,e4f1v 6eaa e6baaa 6eaa 00006eaa b7cb b7cb b7cb b7cb b7cb b7cb b7cb
+3684 b7cc b7cc b7cc * 6472 * 8ea1e4f2,e4f2,8ea1e4f2v,e4f2v 6ea7 e6baa7 6ea7 00006ea7 b7cc b7cc b7cc b7cc b7cc b7cc b7cc
+3685 b7cd b7cd b7cd * 6473 * 8ea1e4f3,e4f3,8ea1e4f3v,e4f3v 6eb4 e6bab4 6eb4 00006eb4 b7cd b7cd b7cd b7cd b7cd b7cd b7cd
+3686 b7ce b7ce b7ce * 6474 * 8ea1e4f4,e4f4,8ea1e4f4v,e4f4v 714e e7858e 714e 0000714e b7ce b7ce b7ce b7ce b7ce b7ce b7ce
+3687 b7cf b7cf b7cf * 6475 * 8ea1e4f5,e4f5,8ea1e4f5v,e4f5v 7159 e78599 7159 00007159 b7cf b7cf b7cf b7cf b7cf b7cf b7cf
+3688 b7d0 b7d0 b7d0 * 6476 * 8ea1e4f6,e4f6,8ea1e4f6v,e4f6v 7169 e785a9 7169 00007169 b7d0 b7d0 b7d0 b7d0 b7d0 b7d0 b7d0
+3689 b7d1 b7d1 b7d1 * 6477 * 8ea1e4f7,e4f7,8ea1e4f7v,e4f7v 7164 e785a4 7164 00007164 b7d1 b7d1 b7d1 b7d1 b7d1 b7d1 b7d1
+3690 b7d2 b7d2 b7d2 * 6478 * 8ea1e4f8,e4f8,8ea1e4f8v,e4f8v 7149 e78589 7149 00007149 b7d2 b7d2 b7d2 b7d2 b7d2 b7d2 b7d2
+3691 b7d3 b7d3 b7d3 * 6479 * 8ea1e4f9,e4f9,8ea1e4f9v,e4f9v 7167 e785a7 7167 00007167 b7d3 b7d3 b7d3 b7d3 b7d3 b7d3 b7d3
+3692 b7d4 b7d4 b7d4 * 647a * 8ea1e4fa,e4fa,8ea1e4fav,e4fav 715c e7859c 715c 0000715c b7d4 b7d4 b7d4 b7d4 b7d4 b7d4 b7d4
+3693 b7d5 b7d5 b7d5 * 647b * 8ea1e4fb,e4fb,8ea1e4fbv,e4fbv 716c e785ac 716c 0000716c b7d5 b7d5 b7d5 b7d5 b7d5 b7d5 b7d5
+3694 b7d6 b7d6 b7d6 * 647c * 8ea1e4fc,e4fc,8ea1e4fcv,e4fcv 7166 e785a6 7166 00007166 b7d6 b7d6 b7d6 b7d6 b7d6 b7d6 b7d6
+3695 b7d7 b7d7 b7d7 * 647d * 8ea1e4fd,e4fd,8ea1e4fdv,e4fdv 714c e7858c 714c 0000714c b7d7 b7d7 b7d7 b7d7 b7d7 b7d7 b7d7
+3696 b7d8 b7d8 b7d8 * 647e * 8ea1e4fe,e4fe,8ea1e4fev,e4fev 7165 e785a5 7165 00007165 b7d8 b7d8 b7d8 b7d8 b7d8 b7d8 b7d8
+3697 b7d9 b7d9 b7d9 * 6521 * 8ea1e5a1,e5a1,8ea1e5a1v,e5a1v 715e e7859e 715e 0000715e b7d9 b7d9 b7d9 b7d9 b7d9 b7d9 b7d9
+3698 b7da b7da b7da * 6522 * 8ea1e5a2,e5a2,8ea1e5a2v,e5a2v 7146 e78586 7146 00007146 b7da b7da,fce5 91d0,b7da b7da b7da b7da b7da
+3699 b7db b7db b7db * 6523 * 8ea1e5a3,e5a3,8ea1e5a3v,e5a3v 7168 e785a8 7168 00007168 b7db b7db b7db b7db b7db b7db b7db
+3700 b7dc b7dc b7dc * 6524 * 8ea1e5a4,e5a4,8ea1e5a4v,e5a4v 7156 e78596 7156 00007156 b7dc b7dc b7dc b7dc b7dc b7dc b7dc
+3701 b7dd b7dd b7dd * 6525 * 8ea1e5a5,e5a5,8ea1e5a5v,e5a5v 723a e788ba 723a 0000723a b7dd b7dd b7dd b7dd b7dd b7dd b7dd
+3702 b7de b7de b7de * 6526 * 8ea1e5a6,e5a6,8ea1e5a6v,e5a6v 7252 e78992 7252 00007252 b7de b7de b7de b7de b7de b7de b7de
+3703 b7df b7df b7df * 6527 * 8ea1e5a7,e5a7,8ea1e5a7v,e5a7v 7337 e78cb7 7337 00007337 b7df b7df b7df b7df b7df b7df b7df
+3704 b7e0 b7e0 b7e0 * 6528 * 8ea1e5a8,e5a8,8ea1e5a8v,e5a8v 7345 e78d85 7345 00007345 b7e0 b7e0 b7e0 b7e0 b7e0 b7e0 b7e0
+3705 b7e1 b7e1 b7e1 * 6529 * 8ea1e5a9,e5a9,8ea1e5a9v,e5a9v 733f e78cbf 733f 0000733f b7e1 b7e1 b7e1 b7e1 b7e1 b7e1 b7e1
+3706 b7e2 b7e2 b7e2 * 652a * 8ea1e5aa,e5aa,8ea1e5aav,e5aav 733e e78cbe 733e 0000733e b7e2 b7e2 b7e2 b7e2 b7e2 b7e2 b7e2
+3707 b7e3 b7e3 b7e3 * 652b * 8ea1e5ab,e5ab,8ea1e5abv,e5abv 746f e791af 746f 0000746f b7e3 b7e3 b7e3 b7e3 b7e3 b7e3 b7e3
+3708 b7e4 b7e4 b7e4 * 652c * 8ea1e5ac,e5ac,8ea1e5acv,e5acv 745a e7919a 745a 0000745a b7e4 b7e4 b7e4 b7e4 b7e4 b7e4 b7e4
+3709 b7e5 b7e5 b7e5 * 652d * 8ea1e5ad,e5ad,8ea1e5adv,e5adv 7455 e79195 7455 00007455 b7e5 b7e5 b7e5 b7e5 b7e5 b7e5 b7e5
+3710 b7e6 b7e6 b7e6 * 652e * 8ea1e5ae,e5ae,8ea1e5aev,e5aev 745f e7919f 745f 0000745f b7e6 b7e6 b7e6 b7e6 b7e6 b7e6 b7e6
+3711 b7e7 b7e7 b7e7 * 652f * 8ea1e5af,e5af,8ea1e5afv,e5afv 745e e7919e 745e 0000745e b7e7 b7e7 b7e7 b7e7 b7e7 b7e7 b7e7
+3712 b7e8 b7e8 b7e8 * 6530 * 8ea1e5b0,e5b0,8ea1e5b0v,e5b0v 7441 e79181 7441 00007441 b7e8 b7e8 b7e8 b7e8 b7e8 b7e8 b7e8
+3713 b7e9 b7e9 b7e9 * 6531 * 8ea1e5b1,e5b1,8ea1e5b1v,e5b1v 743f e790bf 743f 0000743f b7e9 b7e9 b7e9 b7e9 b7e9 b7e9 b7e9
+3714 b7ea b7ea b7ea * 6532 * 8ea1e5b2,e5b2,8ea1e5b2v,e5b2v 7459 e79199 7459 00007459 b7ea b7ea b7ea b7ea b7ea b7ea b7ea
+3715 b7eb b7eb b7eb * 6533 * 8ea1e5b3,e5b3,8ea1e5b3v,e5b3v 745b e7919b 745b 0000745b b7eb b7eb b7eb b7eb b7eb b7eb b7eb
+3716 b7ec b7ec b7ec * 6534 * 8ea1e5b4,e5b4,8ea1e5b4v,e5b4v 745c ee8aa3,e7919c e2a3,745c 0000e2a3,0000745c fe6f,b7ec b7ec b7ec b7ec b7ec b7ec fe6f,b7ec
+3717 b7ed b7ed b7ed * 6535 * 8ea1e5b5,e5b5,8ea1e5b5v,e5b5v 7576 e795b6 7576 00007576 b7ed b7ed b7ed b7ed b7ed b7ed b7ed
+3718 b7ee b7ee b7ee * 6536 * 8ea1e5b6,e5b6,8ea1e5b6v,e5b6v 7578 e795b8 7578 00007578 b7ee b7ee b7ee b7ee b7ee b7ee b7ee
+3719 b7ef b7ef b7ef * 6537 * 8ea1e5b7,e5b7,8ea1e5b7v,e5b7v 7600 e79880 7600 00007600 b7ef b7ef b7ef b7ef b7ef b7ef b7ef
+3720 b7f0 b7f0 b7f0 * 6538 * 8ea1e5b8,e5b8,8ea1e5b8v,e5b8v 75f0 e797b0 75f0 000075f0 b7f0 b7f0 b7f0 b7f0 b7f0 b7f0 b7f0
+3721 b7f1 b7f1 b7f1 * 6539 * 8ea1e5b9,e5b9,8ea1e5b9v,e5b9v 7601 e79881 7601 00007601 b7f1 b7f1 b7f1 b7f1 b7f1 b7f1 b7f1
+3722 b7f2 b7f2 b7f2 * 653a * 8ea1e5ba,e5ba,8ea1e5bav,e5bav 75f2 e797b2 75f2 000075f2 b7f2 b7f2 b7f2 b7f2 b7f2 b7f2 b7f2
+3723 b7f3 b7f3 b7f3 * 653b * 8ea1e5bb,e5bb,8ea1e5bbv,e5bbv 75f1 e797b1 75f1 000075f1 b7f3 b7f3 b7f3 b7f3 b7f3 b7f3 b7f3
+3724 b7f4 b7f4 b7f4 * 653c * 8ea1e5bc,e5bc,8ea1e5bcv,e5bcv 75fa e797ba 75fa 000075fa b7f4 b7f4 b7f4 b7f4 b7f4 b7f4 b7f4
+3725 b7f5 b7f5 b7f5 * 653d * 8ea1e5bd,e5bd,8ea1e5bdv,e5bdv 75ff e797bf 75ff 000075ff b7f5 b7f5 b7f5 b7f5 b7f5 b7f5 b7f5
+3726 b7f6 b7f6 b7f6 * 653e * 8ea1e5be,e5be,8ea1e5bev,e5bev 75f4 e797b4 75f4 000075f4 b7f6 b7f6 b7f6 b7f6 b7f6 b7f6 b7f6
+3727 b7f7 b7f7 b7f7 * 653f * 8ea1e5bf,e5bf,8ea1e5bfv,e5bfv 75f3 e797b3 75f3 000075f3 b7f7 b7f7 b7f7 b7f7 b7f7 b7f7 b7f7
+3728 b7f8 b7f8 b7f8 * 6540 * 8ea1e5c0,e5c0,8ea1e5c0v,e5c0v 76de e79b9e 76de 000076de b7f8 b7f8 b7f8 b7f8 b7f8 b7f8 b7f8
+3729 b7f9 b7f9 b7f9 * 6541 * 8ea1e5c1,e5c1,8ea1e5c1v,e5c1v 76df e79b9f 76df 000076df b7f9 b7f9 b7f9 b7f9 b7f9 b7f9 b7f9
+3730 b7fa b7fa b7fa * 6542 * 8ea1e5c2,e5c2,8ea1e5c2v,e5c2v 775b e79d9b 775b 0000775b b7fa b7fa b7fa b7fa b7fa b7fa b7fa
+3731 b7fb b7fb b7fb * 6543 * 8ea1e5c3,e5c3,8ea1e5c3v,e5c3v 776b e79dab 776b 0000776b b7fb b7fb b7fb b7fb b7fb b7fb b7fb
+3732 b7fc b7fc b7fc * 6544 * 8ea1e5c4,e5c4,8ea1e5c4v,e5c4v 7766 e79da6 7766 00007766 b7fc b7fc b7fc b7fc b7fc b7fc b7fc
+3733 b7fd b7fd b7fd * 6545 * 8ea1e5c5,e5c5,8ea1e5c5v,e5c5v 775e e79d9e 775e 0000775e b7fd b7fd b7fd b7fd b7fd b7fd b7fd
+3734 b7fe b7fe b7fe * 6546 * 8ea1e5c6,e5c6,8ea1e5c6v,e5c6v 7763 e79da3 7763 00007763 b7fe b7fe b7fe b7fe b7fe b7fe b7fe
+3735 b840 b840 b840 * 6547 * 8ea1e5c7,e5c7,8ea1e5c7v,e5c7v 7779 e79db9 7779 00007779 b840 b840 b840 b840 b840 b840 b840
+3736 b841 b841 b841 * 6548 * 8ea1e5c8,e5c8,8ea1e5c8v,e5c8v 776a e79daa 776a 0000776a b841 b841 b841 b841 b841 b841 b841
+3737 b842 b842 b842 * 6549 * 8ea1e5c9,e5c9,8ea1e5c9v,e5c9v 776c e79dac 776c 0000776c b842 b842 b842 b842 b842 b842 b842
+3738 b843 b843 b843 * 654a * 8ea1e5ca,e5ca,8ea1e5cav,e5cav 775c e79d9c 775c 0000775c b843 b843 b843 b843 b843 b843 b843
+3739 b844 b844 b844 * 654b * 8ea1e5cb,e5cb,8ea1e5cbv,e5cbv 7765 e79da5 7765 00007765 b844 b844 b844 b844 b844 b844 b844
+3740 b845 b845 b845 * 654c * 8ea1e5cc,e5cc,8ea1e5ccv,e5ccv 7768 e79da8 7768 00007768 b845 b845 b845 b845 b845 b845 b845
+3741 b846 b846 b846 * 654d * 8ea1e5cd,e5cd,8ea1e5cdv,e5cdv 7762 e79da2 7762 00007762 b846 b846 b846 b846 b846 b846 b846
+3742 b847 b847 b847 * 654e * 8ea1e5ce,e5ce,8ea1e5cev,e5cev 77ee e79fae 77ee 000077ee b847 b847 b847 b847 b847 b847 b847
+3743 b848 b848 b848 * 654f * 8ea1e5cf,e5cf,8ea1e5cfv,e5cfv 788e e7a28e 788e 0000788e b848 b848 b848 b848 b848 b848 b848
+3744 b849 b849 b849 * 6550 * 8ea1e5d0,e5d0,8ea1e5d0v,e5d0v 78b0 e7a2b0 78b0 000078b0 b849 b849 b849 b849 b849 b849 b849
+3745 b84a b84a b84a * 6551 * 8ea1e5d1,e5d1,8ea1e5d1v,e5d1v 7897 e7a297 7897 00007897 b84a b84a b84a b84a b84a b84a b84a
+3746 b84b b84b b84b * 6552 * 8ea1e5d2,e5d2,8ea1e5d2v,e5d2v 7898 e7a298 7898 00007898 b84b b84b b84b b84b b84b b84b b84b
+3747 b84c b84c b84c * 6553 * 8ea1e5d3,e5d3,8ea1e5d3v,e5d3v 788c e7a28c 788c 0000788c b84c b84c b84c b84c b84c b84c b84c
+3748 b84d b84d b84d * 6554 * 8ea1e5d4,e5d4,8ea1e5d4v,e5d4v 7889 e7a289 7889 00007889 b84d b84d b84d b84d b84d b84d b84d
+3749 b84e b84e b84e * 6555 * 8ea1e5d5,e5d5,8ea1e5d5v,e5d5v 787c e7a1bc 787c 0000787c b84e b84e b84e b84e b84e b84e b84e
+3750 b84f b84f b84f * 6556 * 8ea1e5d6,e5d6,8ea1e5d6v,e5d6v 7891 e7a291 7891 00007891 b84f b84f b84f b84f b84f b84f b84f
+3751 b850 b850 b850 * 6557 * 8ea1e5d7,e5d7,8ea1e5d7v,e5d7v 7893 e7a293 7893 00007893 b850 b850 b850 b850 b850 b850 b850
+3752 b851 b851 b851 * 6558 * 8ea1e5d8,e5d8,8ea1e5d8v,e5d8v 787f e7a1bf 787f 0000787f b851 b851 b851 b851 b851 b851 b851
+3753 b852 b852 b852 * 6559 * 8ea1e5d9,e5d9,8ea1e5d9v,e5d9v 797a e7a5ba 797a 0000797a b852 b852 b852 b852 b852 b852 b852
+3754 b853 b853 b853 * 655a * 8ea1e5da,e5da,8ea1e5dav,e5dav 797f e7a5bf 797f 0000797f b853 b853 b853 b853 b853 b853 b853
+3755 b854 b854 b854 * 655b * 8ea1e5db,e5db,8ea1e5dbv,e5dbv 7981 e7a681 7981 00007981 b854 b854 b854 b854 b854 b854 b854
+3756 b855 b855 b855 * 655c * 8ea1e5dc,e5dc,8ea1e5dcv,e5dcv 842c e890ac 842c 0000842c b855 b855 b855 b855 b855 b855 b855
+3757 b856 b856 b856 * 655d * 8ea1e5dd,e5dd,8ea1e5ddv,e5ddv 79bd e7a6bd 79bd 000079bd b856 b856 b856 b856 b856 b856 b856
+3758 b857 b857 b857 * 655e * 8ea1e5de,e5de,8ea1e5dev,e5dev 7a1c e7a89c 7a1c 00007a1c b857 b857 b857 b857 b857 b857 b857
+3759 b858 b858 b858 * 655f * 8ea1e5df,e5df,8ea1e5dfv,e5dfv 7a1a e7a89a 7a1a 00007a1a b858 b858 b858 b858 b858 b858 b858
+3760 b859 b859 b859 * 6560 * 8ea1e5e0,e5e0,8ea1e5e0v,e5e0v 7a20 e7a8a0 7a20 00007a20 b859 b859 b859 b859 b859 b859 b859
+3761 b85a b85a b85a * 6561 * 8ea1e5e1,e5e1,8ea1e5e1v,e5e1v 7a14 e7a894 7a14 00007a14 b85a b85a b85a b85a b85a b85a b85a
+3762 b85b b85b b85b * 6562 * 8ea1e5e2,e5e2,8ea1e5e2v,e5e2v 7a1f e7a89f 7a1f 00007a1f b85b b85b b85b b85b b85b b85b b85b
+3763 b85c b85c b85c * 6563 * 8ea1e5e3,e5e3,8ea1e5e3v,e5e3v 7a1e e7a89e 7a1e 00007a1e b85c b85c b85c b85c b85c b85c b85c
+3764 b85d b85d b85d * 6564 * 8ea1e5e4,e5e4,8ea1e5e4v,e5e4v 7a9f e7aa9f 7a9f 00007a9f b85d b85d b85d b85d b85d b85d b85d
+3765 b85e b85e b85e * 6565 * 8ea1e5e5,e5e5,8ea1e5e5v,e5e5v 7aa0 e7aaa0 7aa0 00007aa0 b85e b85e b85e b85e b85e b85e b85e
+3766 b85f b85f b85f * 6566 * 8ea1e5e6,e5e6,8ea1e5e6v,e5e6v 7b77 e7adb7 7b77 00007b77 b85f b85f b85f b85f b85f b85f b85f
+3767 b860 b860 b860 * 6567 * 8ea1e5e7,e5e7,8ea1e5e7v,e5e7v 7bc0 e7af80 7bc0 00007bc0 b860 b860 b860 b860 b860 b860 b860
+3768 b861 b861 b861 * 6568 * 8ea1e5e8,e5e8,8ea1e5e8v,e5e8v 7b60 e7ada0 7b60 00007b60 b861 b861 b861 b861 b861 b861 b861
+3769 b862 b862 b862 * 6569 * 8ea1e5e9,e5e9,8ea1e5e9v,e5e9v 7b6e e7adae 7b6e 00007b6e b862 b862 b862 b862 b862 b862 b862
+3770 b863 b863 b863 * 656a * 8ea1e5ea,e5ea,8ea1e5eav,e5eav 7b67 e7ada7 7b67 00007b67 b863 b863 b863 b863 b863 b863 b863
+3771 b864 b864 b864 * 656b * 8ea1e5eb,e5eb,8ea1e5ebv,e5ebv 7cb1 e7b2b1 7cb1 00007cb1 b864 b864 b864 b864 b864 b864 b864
+3772 b865 b865 b865 * 656c * 8ea1e5ec,e5ec,8ea1e5ecv,e5ecv 7cb3 e7b2b3 7cb3 00007cb3 b865 b865 b865 b865 b865 b865 b865
+3773 b866 b866 b866 * 656d * 8ea1e5ed,e5ed,8ea1e5edv,e5edv 7cb5 e7b2b5 7cb5 00007cb5 b866 b866 b866 b866 b866 b866 b866
+3774 b867 b867 b867 * 656e * 8ea1e5ee,e5ee,8ea1e5eev,e5eev 7d93 e7b693 7d93 00007d93 b867 b867 b867 b867 b867 b867 b867
+3775 b868 b868 b868 * 656f * 8ea1e5ef,e5ef,8ea1e5efv,e5efv 7d79 e7b5b9 7d79 00007d79 b868 b868 b868 b868 b868 b868 b868
+3776 b869 b869 b869 * 6570 * 8ea1e5f0,e5f0,8ea1e5f0v,e5f0v 7d91 e7b691 7d91 00007d91 b869 b869 b869 b869 b869 b869 b869
+3777 b86a b86a b86a * 6571 * 8ea1e5f1,e5f1,8ea1e5f1v,e5f1v 7d81 e7b681 7d81 00007d81 b86a b86a b86a b86a b86a b86a b86a
+3778 b86b b86b b86b * 6572 * 8ea1e5f2,e5f2,8ea1e5f2v,e5f2v 7d8f e7b68f 7d8f 00007d8f b86b b86b b86b b86b b86b b86b b86b
+3779 b86c b86c b86c * 6573 * 8ea1e5f3,e5f3,8ea1e5f3v,e5f3v 7d5b e7b59b 7d5b 00007d5b b86c b86c b86c b86c b86c b86c b86c
+3780 b86d b86d b86d * 6574 * 8ea1e5f4,e5f4,8ea1e5f4v,e5f4v 7f6e e7bdae 7f6e 00007f6e b86d b86d b86d b86d b86d b86d b86d
+3781 b86e b86e b86e * 6575 * 8ea1e5f5,e5f5,8ea1e5f5v,e5f5v 7f69 e7bda9 7f69 00007f69 b86e b86e b86e b86e b86e b86e b86e
+3782 b86f b86f b86f * 6576 * 8ea1e5f6,e5f6,8ea1e5f6v,e5f6v 7f6a e7bdaa 7f6a 00007f6a b86f b86f b86f b86f b86f b86f b86f
+3783 b870 b870 b870 * 6577 * 8ea1e5f7,e5f7,8ea1e5f7v,e5f7v 7f72 e7bdb2 7f72 00007f72 b870 b870 b870 b870 b870 b870 b870
+3784 b871 b871 b871 * 6578 * 8ea1e5f8,e5f8,8ea1e5f8v,e5f8v 7fa9 e7bea9 7fa9 00007fa9 b871 b871 b871 b871 b871 b871 b871
+3785 b872 b872 b872 * 6579 * 8ea1e5f9,e5f9,8ea1e5f9v,e5f9v 7fa8 e7bea8 7fa8 00007fa8 b872 b872 b872 b872 b872 b872 b872
+3786 b873 b873 b873 * 657a * 8ea1e5fa,e5fa,8ea1e5fav,e5fav 7fa4 e7bea4 7fa4 00007fa4 b873 b873 b873 b873 b873 b873 b873
+3787 b874 b874 b874 * 657b * 8ea1e5fb,e5fb,8ea1e5fbv,e5fbv 8056 e88196 8056 00008056 b874 b874 b874 b874 b874 b874 b874
+3788 b875 b875 b875 * 657c * 8ea1e5fc,e5fc,8ea1e5fcv,e5fcv 8058 e88198 8058 00008058 b875 b875 b875 b875 b875 b875 b875
+3789 b876 b876 b876 * 657d * 8ea1e5fd,e5fd,8ea1e5fdv,e5fdv 8086 e88286 8086 00008086 b876 b876 b876 b876 b876 b876 b876
+3790 b877 b877 b877 * 657e * 8ea1e5fe,e5fe,8ea1e5fev,e5fev 8084 e88284 8084 00008084 b877 b877 b877 b877 b877 b877 b877
+3791 b878 b878 b878 * 6621 * 8ea1e6a1,e6a1,8ea1e6a1v,e6a1v 8171 e885b1 8171 00008171 b878 b878 b878 b878 b878 b878 b878
+3792 b879 b879 b879 * 6622 * 8ea1e6a2,e6a2,8ea1e6a2v,e6a2v 8170 e885b0 8170 00008170 b879 b879 b879 b879 b879 b879 b879
+3793 b87a b87a b87a * 6623 * 8ea1e6a3,e6a3,8ea1e6a3v,e6a3v 8178 e885b8 8178 00008178 b87a b87a b87a b87a b87a b87a b87a
+3794 b87b b87b b87b * 6624 * 8ea1e6a4,e6a4,8ea1e6a4v,e6a4v 8165 e885a5 8165 00008165 b87b b87b b87b b87b b87b b87b b87b
+3795 b87c b87c b87c * 6625 * 8ea1e6a5,e6a5,8ea1e6a5v,e6a5v 816e e885ae 816e 0000816e b87c b87c b87c b87c b87c b87c b87c
+3796 b87d b87d b87d * 6626 * 8ea1e6a6,e6a6,8ea1e6a6v,e6a6v 8173 e885b3 8173 00008173 b87d b87d b87d b87d b87d b87d b87d
+3797 b87e b87e b87e * 6627 * 8ea1e6a7,e6a7,8ea1e6a7v,e6a7v 816b e885ab 816b 0000816b b87e b87e b87e b87e b87e b87e b87e
+3798 b8a1 b8a1 b8a1 * 6628 * 8ea1e6a8,e6a8,8ea1e6a8v,e6a8v 8179 e885b9 8179 00008179 b8a1 b8a1 b8a1 b8a1 b8a1 b8a1 b8a1
+3799 b8a2 b8a2 b8a2 * 6629 * 8ea1e6a9,e6a9,8ea1e6a9v,e6a9v 817a e885ba 817a 0000817a b8a2 b8a2 b8a2 b8a2 b8a2 b8a2 b8a2
+3800 b8a3 b8a3 b8a3 * 662a * 8ea1e6aa,e6aa,8ea1e6aav,e6aav 8166 e885a6 8166 00008166 b8a3 b8a3 b8a3 b8a3 b8a3 b8a3 b8a3
+3801 b8a4 b8a4 b8a4 * 662b * 8ea1e6ab,e6ab,8ea1e6abv,e6abv 8205 e88885 8205 00008205 b8a4 b8a4 b8a4 b8a4 b8a4 b8a4 b8a4
+3802 b8a5 b8a5 b8a5 * 662c * 8ea1e6ac,e6ac,8ea1e6acv,e6acv 8247 e88987 8247 00008247 b8a5 b8a5 b8a5 b8a5 b8a5 b8a5 b8a5
+3803 b8a6 b8a6 b8a6 * 662d * 8ea1e6ad,e6ad,8ea1e6adv,e6adv 8482 e89282 8482 00008482 b8a6 b8a6 b8a6 b8a6 b8a6 b8a6 b8a6
+3804 b8a7 b8a7 b8a7 * 662e * 8ea1e6ae,e6ae,8ea1e6aev,e6aev 8477 e891b7 8477 00008477 b8a7 b8a7 b8a7 b8a7 b8a7 b8a7 b8a7
+3805 b8a8 b8a8 b8a8 * 662f * 8ea1e6af,e6af,8ea1e6afv,e6afv 843d e890bd 843d 0000843d b8a8 b8a8 b8a8 b8a8 b8a8 b8a8 b8a8
+3806 b8a9 b8a9 b8a9 * 6630 * 8ea1e6b0,e6b0,8ea1e6b0v,e6b0v 8431 e890b1 8431 00008431 b8a9 b8a9 b8a9 b8a9 b8a9 b8a9 b8a9
+3807 b8aa b8aa b8aa * 6631 * 8ea1e6b1,e6b1,8ea1e6b1v,e6b1v 8475 e891b5 8475 00008475 b8aa b8aa b8aa b8aa b8aa b8aa b8aa
+3808 b8ab b8ab b8ab * 6632 * 8ea1e6b2,e6b2,8ea1e6b2v,e6b2v 8466 e891a6 8466 00008466 b8ab b8ab b8ab b8ab b8ab b8ab b8ab
+3809 b8ac b8ac b8ac * 6633 * 8ea1e6b3,e6b3,8ea1e6b3v,e6b3v 846b e891ab 846b 0000846b b8ac b8ac b8ac b8ac b8ac b8ac b8ac
+3810 b8ad b8ad b8ad * 6634 * 8ea1e6b4,e6b4,8ea1e6b4v,e6b4v 8449 e89189 8449 00008449 b8ad b8ad b8ad b8ad b8ad b8ad b8ad
+3811 b8ae b8ae b8ae * 6635 * 8ea1e6b5,e6b5,8ea1e6b5v,e6b5v 846c e891ac 846c 0000846c b8ae b8ae b8ae b8ae b8ae b8ae b8ae
+3812 b8af b8af b8af * 6636 * 8ea1e6b6,e6b6,8ea1e6b6v,e6b6v 845b e8919b 845b 0000845b b8af b8af b8af b8af b8af b8af b8af
+3813 b8b0 b8b0 b8b0 * 6637 * 8ea1e6b7,e6b7,8ea1e6b7v,e6b7v 843c e890bc 843c 0000843c b8b0 b8b0 b8b0 b8b0 b8b0 b8b0 b8b0
+3814 b8b1 b8b1 b8b1 * 6638 * 8ea1e6b8,e6b8,8ea1e6b8v,e6b8v 8435 e890b5 8435 00008435 b8b1 b8b1 b8b1 b8b1 b8b1 b8b1 b8b1
+3815 b8b2 b8b2 b8b2 * 6639 * 8ea1e6b9,e6b9,8ea1e6b9v,e6b9v 8461 e891a1 8461 00008461 b8b2 b8b2 b8b2 b8b2 b8b2 b8b2 b8b2
+3816 b8b3 b8b3 b8b3 * 663a * 8ea1e6ba,e6ba,8ea1e6bav,e6bav 8463 e891a3 8463 00008463 b8b3 b8b3 b8b3 b8b3 b8b3 b8b3 b8b3
+3817 b8b4 b8b4 b8b4 * 663b * 8ea1e6bb,e6bb,8ea1e6bbv,e6bbv 8469 e891a9 8469 00008469 b8b4 b8b4 b8b4 b8b4 b8b4 b8b4 b8b4
+3818 b8b5 b8b5 b8b5 * 663c * 8ea1e6bc,e6bc,8ea1e6bcv,e6bcv 846d e891ad 846d 0000846d b8b5 b8b5 b8b5 b8b5 b8b5 b8b5 b8b5
+3819 b8b6 b8b6 b8b6 * 663d * 8ea1e6bd,e6bd,8ea1e6bdv,e6bdv 8446 e89186 8446 00008446 b8b6 b8b6 b8b6 b8b6 b8b6 b8b6 b8b6
+3820 b8b7 b8b7 b8b7 * 663e * 8ea1e6be,e6be,8ea1e6bev,e6bev 865e e8999e 865e 0000865e b8b7 b8b7 b8b7 b8b7 b8b7 b8b7 b8b7
+3821 b8b8 b8b8 b8b8 * 663f * 8ea1e6bf,e6bf,8ea1e6bfv,e6bfv 865c e8999c 865c 0000865c b8b8 b8b8 b8b8 b8b8 b8b8 b8b8 b8b8
+3822 b8b9 b8b9 b8b9 * 6640 * 8ea1e6c0,e6c0,8ea1e6c0v,e6c0v 865f e8999f 865f 0000865f b8b9 b8b9 b8b9 b8b9 b8b9 b8b9 b8b9
+3823 b8ba b8ba b8ba * 6641 * 8ea1e6c1,e6c1,8ea1e6c1v,e6c1v 86f9 e89bb9 86f9 000086f9 b8ba b8ba b8ba b8ba b8ba b8ba b8ba
+3824 b8bb b8bb b8bb * 6642 * 8ea1e6c2,e6c2,8ea1e6c2v,e6c2v 8713 e89c93 8713 00008713 b8bb b8bb b8bb b8bb b8bb b8bb b8bb
+3825 b8bc b8bc b8bc * 6643 * 8ea1e6c3,e6c3,8ea1e6c3v,e6c3v 8708 e89c88 8708 00008708 b8bc b8bc b8bc b8bc b8bc b8bc b8bc
+3826 b8bd b8bd b8bd * 6644 * 8ea1e6c4,e6c4,8ea1e6c4v,e6c4v 8707 e89c87 8707 00008707 b8bd b8bd b8bd b8bd b8bd b8bd b8bd
+3827 b8be b8be b8be * 6645 * 8ea1e6c5,e6c5,8ea1e6c5v,e6c5v 8700 e89c80 8700 00008700 b8be b8be b8be b8be b8be b8be b8be
+3828 b8bf b8bf b8bf * 6646 * 8ea1e6c6,e6c6,8ea1e6c6v,e6c6v 86fe e89bbe 86fe 000086fe b8bf b8bf b8bf b8bf b8bf b8bf b8bf
+3829 b8c0 b8c0 b8c0 * 6647 * 8ea1e6c7,e6c7,8ea1e6c7v,e6c7v 86fb e89bbb 86fb 000086fb b8c0 b8c0 b8c0 b8c0 b8c0 b8c0 b8c0
+3830 b8c1 b8c1 b8c1 * 6648 * 8ea1e6c8,e6c8,8ea1e6c8v,e6c8v 8702 e89c82 8702 00008702 b8c1 b8c1 b8c1 b8c1 b8c1 b8c1 b8c1
+3831 b8c2 b8c2 b8c2 * 6649 * 8ea1e6c9,e6c9,8ea1e6c9v,e6c9v 8703 e89c83 8703 00008703 b8c2 b8c2 b8c2 b8c2 b8c2 b8c2 b8c2
+3832 b8c3 b8c3 b8c3 * 664a * 8ea1e6ca,e6ca,8ea1e6cav,e6cav 8706 e89c86 8706 00008706 b8c3 b8c3 b8c3 b8c3 b8c3 b8c3 b8c3
+3833 b8c4 b8c4 b8c4 * 664b * 8ea1e6cb,e6cb,8ea1e6cbv,e6cbv 870a e89c8a 870a 0000870a b8c4 b8c4 b8c4 b8c4 b8c4 b8c4 b8c4
+3834 b8c5 b8c5 b8c5 * 664c * 8ea1e6cc,e6cc,8ea1e6ccv,e6ccv 8859 e8a199 8859 00008859 b8c5 b8c5 b8c5 b8c5 b8c5 b8c5 b8c5
+3835 b8c6 b8c6 b8c6 * 664d * 8ea1e6cd,e6cd,8ea1e6cdv,e6cdv 88df e8a39f 88df 000088df b8c6 b8c6 b8c6 b8c6 b8c6 b8c6 b8c6
+3836 b8c7 b8c7 b8c7 * 664e * 8ea1e6ce,e6ce,8ea1e6cev,e6cev 88d4 e8a394 88d4 000088d4 b8c7 b8c7 b8c7 b8c7 b8c7 b8c7 b8c7
+3837 b8c8 b8c8 b8c8 * 664f * 8ea1e6cf,e6cf,8ea1e6cfv,e6cfv 88d9 e8a399 88d9 000088d9 b8c8 b8c8 b8c8 b8c8 b8c8 b8c8 b8c8
+3838 b8c9 b8c9 b8c9 * 6650 * 8ea1e6d0,e6d0,8ea1e6d0v,e6d0v 88dc e8a39c 88dc 000088dc b8c9 b8c9 b8c9 b8c9 b8c9 b8c9 b8c9
+3839 b8ca b8ca b8ca * 6651 * 8ea1e6d1,e6d1,8ea1e6d1v,e6d1v 88d8 e8a398 88d8 000088d8 b8ca b8ca b8ca b8ca b8ca b8ca b8ca
+3840 b8cb b8cb b8cb * 6652 * 8ea1e6d2,e6d2,8ea1e6d2v,e6d2v 88dd e8a39d 88dd 000088dd b8cb b8cb b8cb b8cb b8cb b8cb b8cb
+3841 b8cc b8cc b8cc * 6653 * 8ea1e6d3,e6d3,8ea1e6d3v,e6d3v 88e1 e8a3a1 88e1 000088e1 b8cc b8cc b8cc b8cc b8cc b8cc b8cc
+3842 b8cd b8cd b8cd * 6654 * 8ea1e6d4,e6d4,8ea1e6d4v,e6d4v 88ca e8a38a 88ca 000088ca b8cd b8cd b8cd b8cd b8cd b8cd b8cd
+3843 b8ce b8ce b8ce * 6655 * 8ea1e6d5,e6d5,8ea1e6d5v,e6d5v 88d5 e8a395 88d5 000088d5 b8ce b8ce b8ce b8ce b8ce b8ce b8ce
+3844 b8cf b8cf b8cf * 6656 * 8ea1e6d6,e6d6,8ea1e6d6v,e6d6v 88d2 e8a392 88d2 000088d2 b8cf b8cf b8cf b8cf b8cf b8cf b8cf
+3845 b8d0 b8d0 b8d0 * 6657 * 8ea1e6d7,e6d7,8ea1e6d7v,e6d7v 899c e8a69c 899c 0000899c b8d0 b8d0 b8d0 b8d0 b8d0 b8d0 b8d0
+3846 b8d1 b8d1 b8d1 * 6658 * 8ea1e6d8,e6d8,8ea1e6d8v,e6d8v 89e3 e8a7a3 89e3 000089e3 b8d1 b8d1 b8d1 b8d1 b8d1 b8d1 b8d1
+3847 b8d2 b8d2 b8d2 * 6659 * 8ea1e6d9,e6d9,8ea1e6d9v,e6d9v 8a6b e8a9ab 8a6b 00008a6b b8d2 b8d2 b8d2 b8d2 b8d2 b8d2 b8d2
+3848 b8d3 b8d3 b8d3 * 665a * 8ea1e6da,e6da,8ea1e6dav,e6dav 8a72 e8a9b2 8a72 00008a72 b8d3 b8d3 b8d3 b8d3 b8d3 b8d3 b8d3
+3849 b8d4 b8d4 b8d4 * 665b * 8ea1e6db,e6db,8ea1e6dbv,e6dbv 8a73 e8a9b3 8a73 00008a73 b8d4 b8d4 b8d4 b8d4 b8d4 b8d4 b8d4
+3850 b8d5 b8d5 b8d5 * 665c * 8ea1e6dc,e6dc,8ea1e6dcv,e6dcv 8a66 e8a9a6 8a66 00008a66 b8d5 b8d5 b8d5 b8d5 b8d5 b8d5 b8d5
+3851 b8d6 b8d6 b8d6 * 665d * 8ea1e6dd,e6dd,8ea1e6ddv,e6ddv 8a69 e8a9a9 8a69 00008a69 b8d6 b8d6 b8d6 b8d6 b8d6 b8d6 b8d6
+3852 b8d7 b8d7 b8d7 * 665e * 8ea1e6de,e6de,8ea1e6dev,e6dev 8a70 e8a9b0 8a70 00008a70 b8d7 b8d7 b8d7 b8d7 b8d7 b8d7 b8d7
+3853 b8d8 b8d8 b8d8 * 665f * 8ea1e6df,e6df,8ea1e6dfv,e6dfv 8a87 e8aa87 8a87 00008a87 b8d8 b8d8 b8d8 b8d8 b8d8 b8d8 b8d8
+3854 b8d9 b8d9 b8d9 * 6660 * 8ea1e6e0,e6e0,8ea1e6e0v,e6e0v 8a7c e8a9bc 8a7c 00008a7c b8d9 b8d9 b8d9 b8d9 b8d9 b8d9 b8d9
+3855 b8da b8da b8da * 6661 * 8ea1e6e1,e6e1,8ea1e6e1v,e6e1v 8a63 e8a9a3 8a63 00008a63 b8da b8da b8da b8da b8da b8da b8da
+3856 b8db b8db b8db * 6662 * 8ea1e6e2,e6e2,8ea1e6e2v,e6e2v 8aa0 e8aaa0 8aa0 00008aa0 b8db b8db b8db b8db b8db b8db b8db
+3857 b8dc b8dc b8dc * 6663 * 8ea1e6e3,e6e3,8ea1e6e3v,e6e3v 8a71 e8a9b1 8a71 00008a71 b8dc b8dc b8dc b8dc b8dc b8dc b8dc
+3858 b8dd b8dd b8dd * 6664 * 8ea1e6e4,e6e4,8ea1e6e4v,e6e4v 8a85 e8aa85 8a85 00008a85 b8dd b8dd b8dd b8dd b8dd b8dd b8dd
+3859 b8de b8de b8de * 6665 * 8ea1e6e5,e6e5,8ea1e6e5v,e6e5v 8a6d e8a9ad 8a6d 00008a6d b8de b8de b8de b8de b8de b8de b8de
+3860 b8df b8df b8df * 6666 * 8ea1e6e6,e6e6,8ea1e6e6v,e6e6v 8a62 e8a9a2 8a62 00008a62 b8df b8df b8df b8df b8df b8df b8df
+3861 b8e0 b8e0 b8e0 * 6667 * 8ea1e6e7,e6e7,8ea1e6e7v,e6e7v 8a6e e8a9ae 8a6e 00008a6e b8e0 b8e0 b8e0 b8e0 b8e0 b8e0 b8e0
+3862 b8e1 b8e1 b8e1 * 6668 * 8ea1e6e8,e6e8,8ea1e6e8v,e6e8v 8a6c e8a9ac 8a6c 00008a6c b8e1 b8e1 b8e1 b8e1 b8e1 b8e1 b8e1
+3863 b8e2 b8e2 b8e2 * 6669 * 8ea1e6e9,e6e9,8ea1e6e9v,e6e9v 8a79 e8a9b9 8a79 00008a79 b8e2 b8e2 b8e2 b8e2 b8e2 b8e2 b8e2
+3864 b8e3 b8e3 b8e3 * 666a * 8ea1e6ea,e6ea,8ea1e6eav,e6eav 8a7b e8a9bb 8a7b 00008a7b b8e3 b8e3 b8e3 b8e3 b8e3 b8e3 b8e3
+3865 b8e4 b8e4 b8e4 * 666b * 8ea1e6eb,e6eb,8ea1e6ebv,e6ebv 8a3e e8a8be 8a3e 00008a3e b8e4 b8e4 b8e4 b8e4 b8e4 b8e4 b8e4
+3866 b8e5 b8e5 b8e5 * 666c * 8ea1e6ec,e6ec,8ea1e6ecv,e6ecv 8a68 e8a9a8 8a68 00008a68 b8e5 b8e5 b8e5 b8e5 b8e5 b8e5 b8e5
+3867 b8e6 b8e6 b8e6 * 666d * 8ea1e6ed,e6ed,8ea1e6edv,e6edv 8c62 e8b1a2 8c62 00008c62 b8e6 b8e6 b8e6 b8e6 b8e6 b8e6 b8e6
+3868 b8e7 b8e7 b8e7 * 666e * 8ea1e6ee,e6ee,8ea1e6eev,e6eev 8c8a e8b28a 8c8a 00008c8a b8e7 b8e7 b8e7 b8e7 b8e7 b8e7 b8e7
+3869 b8e8 b8e8 b8e8 * 666f * 8ea1e6ef,e6ef,8ea1e6efv,e6efv 8c89 e8b289 8c89 00008c89 b8e8 b8e8 b8e8 b8e8 b8e8 b8e8 b8e8
+3870 b8e9 b8e9 b8e9 * 6670 * 8ea1e6f0,e6f0,8ea1e6f0v,e6f0v 8cca e8b38a 8cca 00008cca b8e9 b8e9 b8e9 b8e9 b8e9 b8e9 b8e9
+3871 b8ea b8ea b8ea * 6671 * 8ea1e6f1,e6f1,8ea1e6f1v,e6f1v 8cc7 e8b387 8cc7 00008cc7 b8ea b8ea b8ea b8ea b8ea b8ea b8ea
+3872 b8eb b8eb b8eb * 6672 * 8ea1e6f2,e6f2,8ea1e6f2v,e6f2v 8cc8 e8b388 8cc8 00008cc8 b8eb b8eb b8eb b8eb b8eb b8eb b8eb
+3873 b8ec b8ec b8ec * 6673 * 8ea1e6f3,e6f3,8ea1e6f3v,e6f3v 8cc4 e8b384 8cc4 00008cc4 b8ec b8ec b8ec b8ec b8ec b8ec b8ec
+3874 b8ed b8ed b8ed * 6674 * 8ea1e6f4,e6f4,8ea1e6f4v,e6f4v 8cb2 e8b2b2 8cb2 00008cb2 b8ed b8ed b8ed b8ed b8ed b8ed b8ed
+3875 b8ee b8ee b8ee * 6675 * 8ea1e6f5,e6f5,8ea1e6f5v,e6f5v 8cc3 e8b383 8cc3 00008cc3 b8ee b8ee b8ee b8ee b8ee b8ee b8ee
+3876 b8ef b8ef b8ef * 6676 * 8ea1e6f6,e6f6,8ea1e6f6v,e6f6v 8cc2 e8b382 8cc2 00008cc2 b8ef b8ef b8ef b8ef b8ef b8ef b8ef
+3877 b8f0 b8f0 b8f0 * 6677 * 8ea1e6f7,e6f7,8ea1e6f7v,e6f7v 8cc5 e8b385 8cc5 00008cc5 b8f0 b8f0 b8f0 b8f0 b8f0 b8f0 b8f0
+3878 b8f1 b8f1 b8f1 * 6678 * 8ea1e6f8,e6f8,8ea1e6f8v,e6f8v 8de1 e8b7a1 8de1 00008de1 b8f1 b8f1 b8f1 b8f1 b8f1 b8f1 b8f1
+3879 b8f2 b8f2 b8f2 * 6679 * 8ea1e6f9,e6f9,8ea1e6f9v,e6f9v 8ddf e8b79f 8ddf 00008ddf b8f2 b8f2 b8f2 b8f2 b8f2 b8f2 b8f2
+3880 b8f3 b8f3 b8f3 * 667a * 8ea1e6fa,e6fa,8ea1e6fav,e6fav 8de8 e8b7a8 8de8 00008de8 b8f3 b8f3 b8f3 b8f3 b8f3 b8f3 b8f3
+3881 b8f4 b8f4 b8f4 * 667b * 8ea1e6fb,e6fb,8ea1e6fbv,e6fbv 8def e8b7af 8def 00008def b8f4 b8f4 b8f4 b8f4 b8f4 b8f4 b8f4
+3882 b8f5 b8f5 b8f5 * 667c * 8ea1e6fc,e6fc,8ea1e6fcv,e6fcv 8df3 e8b7b3 8df3 00008df3 b8f5 b8f5 b8f5 b8f5 b8f5 b8f5 b8f5
+3883 b8f6 b8f6 b8f6 * 667d * 8ea1e6fd,e6fd,8ea1e6fdv,e6fdv 8dfa e8b7ba 8dfa 00008dfa b8f6 b8f6 b8f6 b8f6 b8f6 b8f6 b8f6
+3884 b8f7 b8f7 b8f7 * 667e * 8ea1e6fe,e6fe,8ea1e6fev,e6fev 8dea e8b7aa 8dea 00008dea b8f7 b8f7 b8f7 b8f7 b8f7 b8f7 b8f7
+3885 b8f8 b8f8 b8f8 * 6721 * 8ea1e7a1,e7a1,8ea1e7a1v,e7a1v 8de4 e8b7a4 8de4 00008de4 b8f8 b8f8 b8f8 b8f8 b8f8 b8f8 b8f8
+3886 b8f9 b8f9 b8f9 * 6722 * 8ea1e7a2,e7a2,8ea1e7a2v,e7a2v 8de6 e8b7a6 8de6 00008de6 b8f9 b8f9 b8f9 b8f9 b8f9 b8f9 b8f9
+3887 b8fa b8fa b8fa * 6723 * 8ea1e7a3,e7a3,8ea1e7a3v,e7a3v 8eb2 e8bab2 8eb2 00008eb2 b8fa b8fa b8fa b8fa b8fa b8fa b8fa
+3888 b8fb b8fb b8fb * 6724 * 8ea1e7a4,e7a4,8ea1e7a4v,e7a4v 8f03 e8bc83 8f03 00008f03 b8fb b8fb b8fb b8fb b8fb b8fb b8fb
+3889 b8fc b8fc b8fc * 6725 * 8ea1e7a5,e7a5,8ea1e7a5v,e7a5v 8f09 e8bc89 8f09 00008f09 b8fc b8fc b8fc b8fc b8fc b8fc b8fc
+3890 b8fd b8fd b8fd * 6726 * 8ea1e7a6,e7a6,8ea1e7a6v,e7a6v 8efe e8bbbe 8efe 00008efe b8fd b8fd b8fd b8fd b8fd b8fd b8fd
+3891 b8fe b8fe b8fe * 6727 * 8ea1e7a7,e7a7,8ea1e7a7v,e7a7v 8f0a e8bc8a 8f0a 00008f0a b8fe b8fe b8fe b8fe b8fe b8fe b8fe
+3892 b940 b940 b940 * 6728 * 8ea1e7a8,e7a8,8ea1e7a8v,e7a8v 8f9f e8be9f 8f9f 00008f9f b940 b940 b940 b940 b940 b940 b940
+3893 b941 b941 b941 * 6729 * 8ea1e7a9,e7a9,8ea1e7a9v,e7a9v 8fb2 e8beb2 8fb2 00008fb2 b941 b941 b941 b941 b941 b941 b941
+3894 b942 b942 b942 * 672a * 8ea1e7aa,e7aa,8ea1e7aav,e7aav 904b e9818b 904b 0000904b b942 b942 b942 b942 b942 b942 b942
+3895 b943 b943 b943 * 672b * 8ea1e7ab,e7ab,8ea1e7abv,e7abv 904a e9818a 904a 0000904a b943 b943 b943 b943 b943 b943 b943
+3896 b944 b944 b944 * 672c * 8ea1e7ac,e7ac,8ea1e7acv,e7acv 9053 e98193 9053 00009053 b944 b944 b944 b944 b944 b944 b944
+3897 b945 b945 b945 * 672d * 8ea1e7ad,e7ad,8ea1e7adv,e7adv 9042 e98182 9042 00009042 b945 b945 b945 b945 b945 b945 b945
+3898 b946 b946 b946 * 672e * 8ea1e7ae,e7ae,8ea1e7aev,e7aev 9054 e98194 9054 00009054 b946 b946 b946 b946 b946 b946 b946
+3899 b947 b947 b947 * 672f * 8ea1e7af,e7af,8ea1e7afv,e7afv 903c e980bc 903c 0000903c b947 b947 b947 b947 b947 b947 b947
+3900 b948 b948 b948 * 6730 * 8ea1e7b0,e7b0,8ea1e7b0v,e7b0v 9055 e98195 9055 00009055 b948 b948 b948 b948 b948 b948 b948
+3901 b949 b949 b949 * 6731 * 8ea1e7b1,e7b1,8ea1e7b1v,e7b1v 9050 e98190 9050 00009050 b949 b949 b949 b949 b949 b949 b949
+3902 b94a b94a b94a * 6732 * 8ea1e7b2,e7b2,8ea1e7b2v,e7b2v 9047 e98187 9047 00009047 b94a b94a b94a b94a b94a b94a b94a
+3903 b94b b94b b94b * 6733 * 8ea1e7b3,e7b3,8ea1e7b3v,e7b3v 904f e9818f 904f 0000904f b94b b94b b94b b94b b94b b94b b94b
+3904 b94c b94c b94c * 6734 * 8ea1e7b4,e7b4,8ea1e7b4v,e7b4v 904e e9818e 904e 0000904e b94c b94c b94c b94c b94c b94c b94c
+3905 b94d b94d b94d * 6735 * 8ea1e7b5,e7b5,8ea1e7b5v,e7b5v 904d e9818d 904d 0000904d b94d b94d b94d b94d b94d b94d b94d
+3906 b94e b94e b94e * 6736 * 8ea1e7b6,e7b6,8ea1e7b6v,e7b6v 9051 e98191 9051 00009051 b94e b94e b94e b94e b94e b94e b94e
+3907 b94f b94f b94f * 6737 * 8ea1e7b7,e7b7,8ea1e7b7v,e7b7v 903e e980be 903e 0000903e b94f b94f b94f b94f b94f b94f b94f
+3908 b950 b950 b950 * 6738 * 8ea1e7b8,e7b8,8ea1e7b8v,e7b8v 9041 e98181 9041 00009041 b950 b950 b950 b950 b950 b950 b950
+3909 b951 b951 b951 * 6739 * 8ea1e7b9,e7b9,8ea1e7b9v,e7b9v 9112 e98492 9112 00009112 b951 b951 b951 b951 b951 b951 b951
+3910 b952 b952 b952 * 673a * 8ea1e7ba,e7ba,8ea1e7bav,e7bav 9117 e98497 9117 00009117 b952 b952 b952 b952 b952 b952 b952
+3911 b953 b953 b953 * 673b * 8ea1e7bb,e7bb,8ea1e7bbv,e7bbv 916c e985ac 916c 0000916c b953 b953 b953 b953 b953 b953 b953
+3912 b954 b954 b954 * 673c * 8ea1e7bc,e7bc,8ea1e7bcv,e7bcv 916a e985aa 916a 0000916a b954 b954 b954 b954 b954 b954 b954
+3913 b955 b955 b955 * 673d * 8ea1e7bd,e7bd,8ea1e7bdv,e7bdv 9169 e985a9 9169 00009169 b955 b955 b955 b955 b955 b955 b955
+3914 b956 b956 b956 * 673e * 8ea1e7be,e7be,8ea1e7bev,e7bev 91c9 e98789 91c9 000091c9 b956 b956 b956 b956 b956 b956 b956
+3915 b957 b957 b957 * 673f * 8ea1e7bf,e7bf,8ea1e7bfv,e7bfv 9237 e988b7 9237 00009237 b957 b957 b957 b957 b957 b957 b957
+3916 b958 b958 b958 * 6740 * 8ea1e7c0,e7c0,8ea1e7c0v,e7c0v 9257 e98997 9257 00009257 b958 b958 b958 b958 b958 b958 b958
+3917 b959 b959 b959 * 6741 * 8ea1e7c1,e7c1,8ea1e7c1v,e7c1v 9238 e988b8 9238 00009238 b959 b959 b959 b959 b959 b959 b959
+3918 b95a b95a b95a * 6742 * 8ea1e7c2,e7c2,8ea1e7c2v,e7c2v 923d e988bd 923d 0000923d b95a b95a b95a b95a b95a b95a b95a
+3919 b95b b95b b95b * 6743 * 8ea1e7c3,e7c3,8ea1e7c3v,e7c3v 9240 e98980 9240 00009240 b95b b95b b95b b95b b95b b95b b95b
+3920 b95c b95c b95c * 6744 * 8ea1e7c4,e7c4,8ea1e7c4v,e7c4v 923e e988be 923e 0000923e b95c b95c b95c b95c b95c b95c b95c
+3921 b95d b95d b95d * 6745 * 8ea1e7c5,e7c5,8ea1e7c5v,e7c5v 925b e9899b 925b 0000925b b95d b95d b95d b95d b95d b95d b95d
+3922 b95e b95e b95e * 6746 * 8ea1e7c6,e7c6,8ea1e7c6v,e7c6v 924b e9898b 924b 0000924b b95e b95e b95e b95e b95e b95e b95e
+3923 b95f b95f b95f * 6747 * 8ea1e7c7,e7c7,8ea1e7c7v,e7c7v 9264 e989a4 9264 00009264 b95f b95f b95f b95f b95f b95f b95f
+3924 b960 b960 b960 * 6748 * 8ea1e7c8,e7c8,8ea1e7c8v,e7c8v 9251 e98991 9251 00009251 b960 b960 b960 b960 b960 b960 b960
+3925 b961 b961 b961 * 6749 * 8ea1e7c9,e7c9,8ea1e7c9v,e7c9v 9234 e988b4 9234 00009234 b961 b961 b961 b961 b961 b961 b961
+3926 b962 b962 b962 * 674a * 8ea1e7ca,e7ca,8ea1e7cav,e7cav 9249 e98989 9249 00009249 b962 b962 b962 b962 b962 b962 b962
+3927 b963 b963 b963 * 674b * 8ea1e7cb,e7cb,8ea1e7cbv,e7cbv 924d e9898d 924d 0000924d b963 b963 b963 b963 b963 b963 b963
+3928 b964 b964 b964 * 674c * 8ea1e7cc,e7cc,8ea1e7ccv,e7ccv 9245 e98985 9245 00009245 b964 b964 b964 b964 b964 b964 b964
+3929 b965 b965 b965 * 674d * 8ea1e7cd,e7cd,8ea1e7cdv,e7cdv 9239 e988b9 9239 00009239 b965 b965 b965 b965 b965 b965 b965
+3930 b966 b966 b966 * 674e * 8ea1e7ce,e7ce,8ea1e7cev,e7cev 923f e988bf 923f 0000923f b966 b966 b966 b966 b966 b966 b966
+3931 b967 b967 b967 * 674f * 8ea1e7cf,e7cf,8ea1e7cfv,e7cfv 925a e9899a 925a 0000925a b967 b967 b967 b967 b967 b967 b967
+3932 b968 b968 b968 * 6750 * 8ea1e7d0,e7d0,8ea1e7d0v,e7d0v 9598 e99698 9598 00009598 b968 b968 b968 b968 b968 b968 b968
+3933 b969 b969 b969 * 6751 * 8ea1e7d1,e7d1,8ea1e7d1v,e7d1v 9698 e99a98 9698 00009698 b969 b969 b969 b969 b969 b969 b969
+3934 b96a b96a b96a * 6752 * 8ea1e7d2,e7d2,8ea1e7d2v,e7d2v 9694 e99a94 9694 00009694 b96a b96a b96a b96a b96a b96a b96a
+3935 b96b b96b b96b * 6753 * 8ea1e7d3,e7d3,8ea1e7d3v,e7d3v 9695 e99a95 9695 00009695 b96b b96b b96b b96b b96b b96b b96b
+3936 b96c b96c b96c * 6754 * 8ea1e7d4,e7d4,8ea1e7d4v,e7d4v 96cd e99b8d 96cd 000096cd b96c b96c b96c b96c b96c b96c b96c
+3937 b96d b96d b96d * 6755 * 8ea1e7d5,e7d5,8ea1e7d5v,e7d5v 96cb e99b8b 96cb 000096cb b96d b96d b96d b96d b96d b96d b96d
+3938 b96e b96e b96e * 6756 * 8ea1e7d6,e7d6,8ea1e7d6v,e7d6v 96c9 e99b89 96c9 000096c9 b96e b96e b96e b96e b96e b96e b96e
+3939 b96f b96f b96f * 6757 * 8ea1e7d7,e7d7,8ea1e7d7v,e7d7v 96ca e99b8a 96ca 000096ca b96f b96f b96f b96f b96f b96f b96f
+3940 b970 b970 b970 * 6758 * 8ea1e7d8,e7d8,8ea1e7d8v,e7d8v 96f7 e99bb7 96f7 000096f7 b970 b970 b970 b970 b970 b970 b970
+3941 b971 b971 b971 * 6759 * 8ea1e7d9,e7d9,8ea1e7d9v,e7d9v 96fb e99bbb 96fb 000096fb b971 b971 b971 b971 b971 b971 b971
+3942 b972 b972 b972 * 675a * 8ea1e7da,e7da,8ea1e7dav,e7dav 96f9 e99bb9 96f9 000096f9 b972 b972 b972 b972 b972 b972 b972
+3943 b973 b973 b973 * 675b * 8ea1e7db,e7db,8ea1e7dbv,e7dbv 96f6 e99bb6 96f6 000096f6 b973 b973 b973 b973 b973 b973 b973
+3944 b974 b974 b974 * 675c * 8ea1e7dc,e7dc,8ea1e7dcv,e7dcv 9756 e99d96 9756 00009756 b974 b974 b974 b974 b974 b974 b974
+3945 b975 b975 b975 * 675d * 8ea1e7dd,e7dd,8ea1e7ddv,e7ddv 9774 e99db4 9774 00009774 b975 b975 b975 b975 b975 b975 b975
+3946 b976 b976 b976 * 675e * 8ea1e7de,e7de,8ea1e7dev,e7dev 9776 e99db6 9776 00009776 b976 b976 b976 b976 b976 b976 b976
+3947 b977 b977 b977 * 675f * 8ea1e7df,e7df,8ea1e7dfv,e7dfv 9810 e9a090 9810 00009810 b977 b977 b977 b977 b977 b977 b977
+3948 b978 b978 b978 * 6760 * 8ea1e7e0,e7e0,8ea1e7e0v,e7e0v 9811 e9a091 9811 00009811 b978 b978 b978 b978 b978 b978 b978
+3949 b979 b979 b979 * 6761 * 8ea1e7e1,e7e1,8ea1e7e1v,e7e1v 9813 e9a093 9813 00009813 b979 b979 b979 b979 b979 b979 b979
+3950 b97a b97a b97a * 6762 * 8ea1e7e2,e7e2,8ea1e7e2v,e7e2v 980a e9a08a 980a 0000980a b97a b97a b97a b97a b97a b97a b97a
+3951 b97b b97b b97b * 6763 * 8ea1e7e3,e7e3,8ea1e7e3v,e7e3v 9812 e9a092 9812 00009812 b97b b97b b97b b97b b97b b97b b97b
+3952 b97c b97c b97c * 6764 * 8ea1e7e4,e7e4,8ea1e7e4v,e7e4v 980c e9a08c 980c 0000980c b97c b97c b97c b97c b97c b97c b97c
+3953 b97d b97d b97d * 6765 * 8ea1e7e5,e7e5,8ea1e7e5v,e7e5v 98fc e9a3bc 98fc 000098fc b97d b97d b97d b97d b97d b97d b97d
+3954 b97e b97e b97e * 6766 * 8ea1e7e6,e7e6,8ea1e7e6v,e7e6v 98f4 e9a3b4 98f4 000098f4 b97e b97e b97e b97e b97e b97e b97e
+3955 b9a1 b9a1 b9a1 * 6767 * 8ea1e7e7,e7e7,8ea1e7e7v,e7e7v 98fd e9a3bd 98fd 000098fd b9a1 b9a1 b9a1 b9a1 b9a1 b9a1 b9a1
+3956 b9a2 b9a2 b9a2 * 6768 * 8ea1e7e8,e7e8,8ea1e7e8v,e7e8v 98fe e9a3be 98fe 000098fe b9a2 b9a2 b9a2 b9a2 b9a2 b9a2 b9a2
+3957 b9a3 b9a3 b9a3 * 6769 * 8ea1e7e9,e7e9,8ea1e7e9v,e7e9v 99b3 e9a6b3 99b3 000099b3 b9a3 b9a3 b9a3 b9a3 b9a3 b9a3 b9a3
+3958 b9a4 b9a4 b9a4 * 676a * 8ea1e7ea,e7ea,8ea1e7eav,e7eav 99b1 e9a6b1 99b1 000099b1 b9a4 b9a4 b9a4 b9a4 b9a4 b9a4 b9a4
+3959 b9a5 b9a5 b9a5 * 676b * 8ea1e7eb,e7eb,8ea1e7ebv,e7ebv 99b4 e9a6b4 99b4 000099b4 b9a5 b9a5 b9a5 b9a5 b9a5 b9a5 b9a5
+3960 b9a6 b9a6 b9a6 * 676c * 8ea1e7ec,e7ec,8ea1e7ecv,e7ecv 9ae1 e9aba1 9ae1 00009ae1 b9a6 b9a6 b9a6 b9a6 b9a6 b9a6 b9a6
+3961 b9a7 b9a7 b9a7 * 676d * 8ea1e7ed,e7ed,8ea1e7edv,e7edv 9ce9 e9b3a9 9ce9 00009ce9 b9a7 b9a7 b9a7 b9a7 b9a7 b9a7 b9a7
+3962 b9a8 b9a8 b9a8 * 676e * 8ea1e7ee,e7ee,8ea1e7eev,e7eev 9e82 e9ba82 9e82 00009e82 b9a8 b9a8 b9a8 b9a8 b9a8 b9a8 b9a8
+3963 b9a9 b9a9 b9a9 * 2931,676f * 8ea1a9b1,8ea1e7ef,a9b1,e7ef,8ea1a9b1v,8ea1e7efv,a9b1v,e7efv 9f0e e9bc8e,e2bf8d 9f0e,2fcd 00009f0e,00002fcd b9a9 b9a9 b9a9 b9a9 b9a9 b9a9 b9a9
+3964 b9aa b9aa b9aa * 2932,6770 * 8ea1a9b2,8ea1e7f0,a9b2,e7f0,8ea1a9b2v,8ea1e7f0v,a9b2v,e7f0v 9f13 e9bc93,e2bf8e 9f13,2fce 00009f13,00002fce b9aa b9aa b9aa b9aa b9aa b9aa b9aa
+3965 b9ab b9ab b9ab * 2933,6771 * 8ea1a9b3,8ea1e7f1,a9b3,e7f1,8ea1a9b3v,8ea1e7f1v,a9b3v,e7f1v 9f20 e9bca0,e2bf8f 9f20,2fcf 00009f20,00002fcf b9ab b9ab b9ab b9ab b9ab b9ab b9ab
+3966 b9ac b9ac b9ac * 6772 * 8ea1e7f2,e7f2,8ea1e7f2v,e7f2v 50e7 e583a7 50e7 000050e7 b9ac b9ac b9ac b9ac b9ac b9ac b9ac
+3967 b9ad b9ad b9ad * 6773 * 8ea1e7f3,e7f3,8ea1e7f3v,e7f3v 50ee e583ae 50ee 000050ee b9ad b9ad b9ad b9ad b9ad b9ad b9ad
+3968 b9ae b9ae b9ae * 6774 * 8ea1e7f4,e7f4,8ea1e7f4v,e7f4v 50e5 e583a5 50e5 000050e5 b9ae b9ae b9ae b9ae b9ae b9ae b9ae
+3969 b9af b9af b9af * 6775 * 8ea1e7f5,e7f5,8ea1e7f5v,e7f5v 50d6 e58396 50d6 000050d6 b9af b9af b9af b9af b9af b9af b9af
+3970 b9b0 b9b0 b9b0 * 6776 * 8ea1e7f6,e7f6,8ea1e7f6v,e7f6v 50ed e583ad,eeb7a7 50ed,ede7 000050ed,0000ede7 9fcb,b9b0 b9b0 b9b0 b9b0 b9b0 b9b0 9fcb,b9b0
+3971 b9b1 b9b1 b9b1 * 6777 * 8ea1e7f7,e7f7,8ea1e7f7v,e7f7v 50da e5839a 50da 000050da b9b1 b9b1 b9b1 b9b1 b9b1 b9b1 b9b1
+3972 b9b2 b9b2 b9b2 * 6778 * 8ea1e7f8,e7f8,8ea1e7f8v,e7f8v 50d5 e58395 50d5 000050d5 b9b2 b9b2 b9b2 b9b2 b9b2 b9b2 b9b2
+3973 b9b3 b9b3 b9b3 * 6779 * 8ea1e7f9,e7f9,8ea1e7f9v,e7f9v 50cf e5838f 50cf 000050cf b9b3 b9b3 b9b3 b9b3 b9b3 b9b3 b9b3
+3974 b9b4 b9b4 b9b4 * 677a * 8ea1e7fa,e7fa,8ea1e7fav,e7fav 50d1 e58391 50d1 000050d1 b9b4 b9b4 b9b4 b9b4 b9b4 b9b4 b9b4
+3975 b9b5 b9b5 b9b5 * 677b * 8ea1e7fb,e7fb,8ea1e7fbv,e7fbv 50f1 e583b1 50f1 000050f1 b9b5 b9b5 b9b5 b9b5 b9b5 b9b5 b9b5
+3976 b9b6 b9b6 b9b6 * 677c * 8ea1e7fc,e7fc,8ea1e7fcv,e7fcv 50ce e5838e 50ce 000050ce b9b6 b9b6 b9b6 b9b6 b9b6 b9b6 b9b6
+3977 b9b7 b9b7 b9b7 * 677d * 8ea1e7fd,e7fd,8ea1e7fdv,e7fdv 50e9 e583a9 50e9 000050e9 b9b7 b9b7 b9b7 b9b7 b9b7 b9b7 b9b7
+3978 b9b8 b9b8 b9b8 * 677e * 8ea1e7fe,e7fe,8ea1e7fev,e7fev 5162 e585a2 5162 00005162 b9b8 b9b8 b9b8 b9b8 b9b8 b9b8 b9b8
+3979 b9b9 b9b9 b9b9 * 6821 * 8ea1e8a1,e8a1,8ea1e8a1v,e8a1v 51f3 e587b3 51f3 000051f3 b9b9 b9b9 b9b9 b9b9 b9b9 b9b9 b9b9
+3980 b9ba b9ba b9ba * 6822 * 8ea1e8a2,e8a2,8ea1e8a2v,e8a2v 5283 e58a83 5283 00005283 b9ba b9ba b9ba b9ba b9ba b9ba b9ba
+3981 b9bb b9bb b9bb * 6823 * 8ea1e8a3,e8a3,8ea1e8a3v,e8a3v 5282 e58a82 5282 00005282 b9bb b9bb b9bb b9bb b9bb b9bb b9bb
+3982 b9bc b9bc b9bc * 6824 * 8ea1e8a4,e8a4,8ea1e8a4v,e8a4v 5331 e58cb1 5331 00005331 b9bc b9bc b9bc b9bc b9bc b9bc b9bc
+3983 b9bd b9bd b9bd * 6825 * 8ea1e8a5,e8a5,8ea1e8a5v,e8a5v 53ad e58ead 53ad 000053ad b9bd b9bd b9bd b9bd b9bd b9bd b9bd
+3984 b9be b9be b9be * 6826 * 8ea1e8a6,e8a6,8ea1e8a6v,e8a6v 55fe e597be 55fe 000055fe b9be b9be b9be b9be b9be b9be b9be
+3985 b9bf b9bf b9bf * 6827 * 8ea1e8a7,e8a7,8ea1e8a7v,e8a7v 5600 e59880 5600 00005600 b9bf b9bf b9bf b9bf b9bf b9bf b9bf
+3986 b9c0 b9c0 b9c0 * 6828 * 8ea1e8a8,e8a8,8ea1e8a8v,e8a8v 561b e5989b 561b 0000561b b9c0 b9c0 b9c0 b9c0 b9c0 b9c0 b9c0
+3987 b9c1 b9c1 b9c1 * 6829 * 8ea1e8a9,e8a9,8ea1e8a9v,e8a9v 5617 e59897 5617 00005617 b9c1 b9c1 b9c1 b9c1 b9c1 b9c1 b9c1
+3988 b9c2 b9c2 b9c2 * 682a * 8ea1e8aa,e8aa,8ea1e8aav,e8aav 55fd e597bd 55fd 000055fd b9c2 b9c2 b9c2 b9c2 b9c2 b9c2 b9c2
+3989 b9c3 b9c3 b9c3 * 682b * 8ea1e8ab,e8ab,8ea1e8abv,e8abv 5614 e59894 5614 00005614 b9c3 b9c3 b9c3 b9c3 b9c3 b9c3 b9c3
+3990 b9c4 b9c4 b9c4 * 682c * 8ea1e8ac,e8ac,8ea1e8acv,e8acv 5606 e59886 5606 00005606 b9c4 b9c4 b9c4 b9c4 b9c4 b9c4 b9c4
+3991 b9c5 b9c5 b9c5 * 682d * 8ea1e8ad,e8ad,8ea1e8adv,e8adv 5609 e59889 5609 00005609 b9c5 b9c5 b9c5 b9c5 b9c5 b9c5 b9c5
+3992 b9c6 b9c6 b9c6 * 682e * 8ea1e8ae,e8ae,8ea1e8aev,e8aev 560d e5988d 560d 0000560d b9c6 b9c6 b9c6 b9c6 b9c6 b9c6 b9c6
+3993 b9c7 b9c7 b9c7 * 682f * 8ea1e8af,e8af,8ea1e8afv,e8afv 560e e5988e 560e 0000560e b9c7 b9c7 b9c7 b9c7 b9c7 b9c7 b9c7
+3994 b9c8 b9c8 b9c8 * 6830 * 8ea1e8b0,e8b0,8ea1e8b0v,e8b0v 55f7 e597b7 55f7 000055f7 b9c8 b9c8 b9c8 b9c8 b9c8 b9c8 b9c8
+3995 b9c9 b9c9 b9c9 * 6831 * 8ea1e8b1,e8b1,8ea1e8b1v,e8b1v 5616 e59896 5616 00005616 b9c9 b9c9 b9c9 b9c9 b9c9 b9c9 b9c9
+3996 b9ca b9ca b9ca * 6832 * 8ea1e8b2,e8b2,8ea1e8b2v,e8b2v 561f e5989f 561f 0000561f b9ca b9ca b9ca b9ca b9ca b9ca b9ca
+3997 b9cb b9cb b9cb * 6833 * 8ea1e8b3,e8b3,8ea1e8b3v,e8b3v 5608 e59888 5608 00005608 b9cb b9cb b9cb b9cb b9cb b9cb b9cb
+3998 b9cc b9cc b9cc * 6834 * 8ea1e8b4,e8b4,8ea1e8b4v,e8b4v 5610 e59890 5610 00005610 b9cc b9cc b9cc b9cc b9cc b9cc b9cc
+3999 b9cd b9cd b9cd * 6835 * 8ea1e8b5,e8b5,8ea1e8b5v,e8b5v 55f6 e597b6 55f6 000055f6 b9cd b9cd b9cd b9cd b9cd b9cd b9cd
+4000 b9ce b9ce b9ce * 6836 * 8ea1e8b6,e8b6,8ea1e8b6v,e8b6v 5718 e59c98 5718 00005718 b9ce b9ce b9ce b9ce b9ce b9ce b9ce
+4001 b9cf b9cf b9cf * 6837 * 8ea1e8b7,e8b7,8ea1e8b7v,e8b7v 5716 e59c96 5716 00005716 b9cf b9cf b9cf b9cf b9cf b9cf b9cf
+4002 b9d0 b9d0 b9d0 * 6838 * 8ea1e8b8,e8b8,8ea1e8b8v,e8b8v 5875 e5a1b5 5875 00005875 b9d0 b9d0 b9d0 b9d0 b9d0 b9d0 b9d0
+4003 b9d1 b9d1 b9d1 * 6839 * 8ea1e8b9,e8b9,8ea1e8b9v,e8b9v 587e e5a1be 587e 0000587e b9d1 b9d1 b9d1 b9d1 b9d1 b9d1 b9d1
+4004 b9d2 b9d2 b9d2 * 683a * 8ea1e8ba,e8ba,8ea1e8bav,e8bav 5883 e5a283 5883 00005883 b9d2 b9d2 b9d2 b9d2 b9d2 b9d2 b9d2
+4005 b9d3 b9d3 b9d3 * 683b * 8ea1e8bb,e8bb,8ea1e8bbv,e8bbv 5893 e5a293 5893 00005893 b9d3 b9d3 b9d3 b9d3 b9d3 b9d3 b9d3
+4006 b9d4 b9d4 b9d4 * 683c * 8ea1e8bc,e8bc,8ea1e8bcv,e8bcv 588a e5a28a 588a 0000588a b9d4 b9d4 b9d4 b9d4 b9d4 b9d4 b9d4
+4007 b9d5 b9d5 b9d5 * 683d * 8ea1e8bd,e8bd,8ea1e8bdv,e8bdv 5879 e5a1b9 5879 00005879 b9d5 b9d5 b9d5 b9d5 b9d5 b9d5 b9d5
+4008 b9d6 b9d6 b9d6 * 683e * 8ea1e8be,e8be,8ea1e8bev,e8bev 5885 e5a285 5885 00005885 b9d6 b9d6 b9d6 b9d6 b9d6 b9d6 b9d6
+4009 b9d7 b9d7 b9d7 * 683f * 8ea1e8bf,e8bf,8ea1e8bfv,e8bfv 587d e5a1bd 587d 0000587d b9d7 b9d7 b9d7 b9d7 b9d7 b9d7 b9d7
+4010 b9d8 b9d8 b9d8 * 6840 * 8ea1e8c0,e8c0,8ea1e8c0v,e8c0v 58fd e5a3bd 58fd 000058fd b9d8 b9d8 b9d8 b9d8 b9d8 b9d8 b9d8
+4011 b9d9 b9d9 b9d9 * 6841 * 8ea1e8c1,e8c1,8ea1e8c1v,e8c1v 5925 e5a4a5 5925 00005925 b9d9 b9d9 b9d9 b9d9 b9d9 b9d9 b9d9
+4012 b9da b9da b9da * 6842 * 8ea1e8c2,e8c2,8ea1e8c2v,e8c2v 5922 e5a4a2 5922 00005922 b9da b9da b9da b9da b9da b9da b9da
+4013 b9db b9db b9db * 6843 * 8ea1e8c3,e8c3,8ea1e8c3v,e8c3v 5924 e5a4a4 5924 00005924 b9db b9db b9db b9db b9db b9db b9db
+4014 b9dc b9dc b9dc * 6844 * 8ea1e8c4,e8c4,8ea1e8c4v,e8c4v 596a e5a5aa 596a 0000596a b9dc b9dc b9dc b9dc b9dc b9dc b9dc
+4015 b9dd b9dd b9dd * 6845 * 8ea1e8c5,e8c5,8ea1e8c5v,e8c5v 5969 e5a5a9 5969 00005969 b9dd b9dd b9dd b9dd b9dd b9dd b9dd
+4016 b9de b9de b9de * 6846 * 8ea1e8c6,e8c6,8ea1e8c6v,e8c6v 5ae1 e5aba1 5ae1 00005ae1 b9de b9de b9de b9de b9de b9de b9de
+4017 b9df b9df b9df * 6847 * 8ea1e8c7,e8c7,8ea1e8c7v,e8c7v 5ae6 e5aba6 5ae6 00005ae6 b9df b9df b9df b9df b9df b9df b9df
+4018 b9e0 b9e0 b9e0 * 6848 * 8ea1e8c8,e8c8,8ea1e8c8v,e8c8v 5ae9 e5aba9 5ae9 00005ae9 b9e0 b9e0 b9e0 b9e0 b9e0 b9e0 b9e0
+4019 b9e1 b9e1 b9e1 * 6849 * 8ea1e8c9,e8c9,8ea1e8c9v,e8c9v 5ad7 e5ab97 5ad7 00005ad7 b9e1 b9e1 b9e1 b9e1 b9e1 b9e1 b9e1
+4020 b9e2 b9e2 b9e2 * 684a * 8ea1e8ca,e8ca,8ea1e8cav,e8cav 5ad6 e5ab96 5ad6 00005ad6 b9e2 b9e2 b9e2 b9e2 b9e2 b9e2 b9e2
+4021 b9e3 b9e3 b9e3 * 684b * 8ea1e8cb,e8cb,8ea1e8cbv,e8cbv 5ad8 e5ab98 5ad8 00005ad8 b9e3 b9e3 b9e3 b9e3 b9e3 b9e3 b9e3
+4022 b9e4 b9e4 b9e4 * 684c * 8ea1e8cc,e8cc,8ea1e8ccv,e8ccv 5ae3 e5aba3 5ae3 00005ae3 b9e4 b9e4 b9e4 b9e4 b9e4 b9e4 b9e4
+4023 b9e5 b9e5 b9e5 * 684d * 8ea1e8cd,e8cd,8ea1e8cdv,e8cdv 5b75 e5adb5 5b75 00005b75 b9e5 b9e5 b9e5 b9e5 b9e5 b9e5 b9e5
+4024 b9e6 b9e6 b9e6 * 684e * 8ea1e8ce,e8ce,8ea1e8cev,e8cev 5bde e5af9e 5bde 00005bde b9e6 b9e6 b9e6 b9e6 b9e6 b9e6 b9e6
+4025 b9e7 b9e7 b9e7 * 684f * 8ea1e8cf,e8cf,8ea1e8cfv,e8cfv 5be7 e5afa7 5be7 00005be7 b9e7 b9e7 b9e7 b9e7 b9e7 b9e7 b9e7
+4026 b9e8 b9e8 b9e8 * 6850 * 8ea1e8d0,e8d0,8ea1e8d0v,e8d0v 5be1 e5afa1 5be1 00005be1 b9e8 b9e8 b9e8 b9e8 b9e8 b9e8 b9e8
+4027 b9e9 b9e9 b9e9 * 6851 * 8ea1e8d1,e8d1,8ea1e8d1v,e8d1v 5be5 e5afa5 5be5 00005be5 b9e9 b9e9 b9e9 b9e9 b9e9 b9e9 b9e9
+4028 b9ea b9ea b9ea * 6852 * 8ea1e8d2,e8d2,8ea1e8d2v,e8d2v 5be6 e5afa6 5be6 00005be6 b9ea b9ea b9ea b9ea b9ea b9ea b9ea
+4029 b9eb b9eb b9eb * 6853 * 8ea1e8d3,e8d3,8ea1e8d3v,e8d3v 5be8 e5afa8 5be8 00005be8 b9eb b9eb b9eb b9eb b9eb b9eb b9eb
+4030 b9ec b9ec b9ec * 6854 * 8ea1e8d4,e8d4,8ea1e8d4v,e8d4v 5be2 e5afa2 5be2 00005be2 b9ec b9ec b9ec b9ec b9ec b9ec b9ec
+4031 b9ed b9ed b9ed * 6855 * 8ea1e8d5,e8d5,8ea1e8d5v,e8d5v 5be4 e5afa4 5be4 00005be4 b9ed b9ed b9ed b9ed b9ed b9ed b9ed
+4032 b9ee b9ee b9ee * 6856 * 8ea1e8d6,e8d6,8ea1e8d6v,e8d6v 5bdf e5af9f 5bdf 00005bdf b9ee b9ee b9ee b9ee b9ee b9ee b9ee
+4033 b9ef b9ef b9ef * 6857 * 8ea1e8d7,e8d7,8ea1e8d7v,e8d7v 5c0d e5b08d 5c0d 00005c0d b9ef b9ef b9ef b9ef b9ef b9ef b9ef
+4034 b9f0 b9f0 b9f0 * 6858 * 8ea1e8d8,e8d8,8ea1e8d8v,e8d8v 5c62 e5b1a2 5c62 00005c62 b9f0 b9f0 b9f0 b9f0 b9f0 b9f0 b9f0
+4035 b9f1 b9f1 b9f1 * 6859 * 8ea1e8d9,e8d9,8ea1e8d9v,e8d9v 5d84 e5b684 5d84 00005d84 b9f1 b9f1 b9f1 b9f1 b9f1 b9f1 b9f1
+4036 b9f2 b9f2 b9f2 * 685a * 8ea1e8da,e8da,8ea1e8dav,e8dav 5d87 e5b687 5d87 00005d87 b9f2 b9f2 b9f2 b9f2 b9f2 b9f2 b9f2
+4037 b9f3 b9f3 b9f3 * 685b * 8ea1e8db,e8db,8ea1e8dbv,e8dbv 5e5b e5b99b 5e5b 00005e5b b9f3 b9f3 b9f3 b9f3 b9f3 b9f3 b9f3
+4038 b9f4 b9f4 b9f4 * 685c * 8ea1e8dc,e8dc,8ea1e8dcv,e8dcv 5e63 e5b9a3 5e63 00005e63 b9f4 b9f4 b9f4 b9f4 b9f4 b9f4 b9f4
+4039 b9f5 b9f5 b9f5 * 685d * 8ea1e8dd,e8dd,8ea1e8ddv,e8ddv 5e55 e5b995 5e55 00005e55 b9f5 b9f5 b9f5 b9f5 b9f5 b9f5 b9f5
+4040 b9f6 b9f6 b9f6 * 685e * 8ea1e8de,e8de,8ea1e8dev,e8dev 5e57 e5b997 5e57 00005e57 b9f6 b9f6 b9f6 b9f6 b9f6 b9f6 b9f6
+4041 b9f7 b9f7 b9f7 * 685f * 8ea1e8df,e8df,8ea1e8dfv,e8dfv 5e54 e5b994 5e54 00005e54 b9f7 b9f7 b9f7 b9f7 b9f7 b9f7 b9f7
+4042 b9f8 b9f8 b9f8 * 6860 * 8ea1e8e0,e8e0,8ea1e8e0v,e8e0v 5ed3 e5bb93 5ed3 00005ed3 b9f8 b9f8 b9f8 b9f8 b9f8 b9f8 b9f8
+4043 b9f9 b9f9 b9f9 * 6861 * 8ea1e8e1,e8e1,8ea1e8e1v,e8e1v 5ed6 e5bb96 5ed6 00005ed6 b9f9 b9f9 b9f9 b9f9 b9f9 b9f9 b9f9
+4044 b9fa b9fa b9fa * 6862 * 8ea1e8e2,e8e2,8ea1e8e2v,e8e2v 5f0a e5bc8a 5f0a 00005f0a b9fa b9fa b9fa b9fa b9fa b9fa b9fa
+4045 b9fb b9fb b9fb * 6863 * 8ea1e8e3,e8e3,8ea1e8e3v,e8e3v 5f46 e5bd86 5f46 00005f46 b9fb b9fb b9fb b9fb b9fb b9fb b9fb
+4046 b9fc b9fc b9fc * 6864 * 8ea1e8e4,e8e4,8ea1e8e4v,e8e4v 5f70 e5bdb0 5f70 00005f70 b9fc b9fc b9fc b9fc b9fc b9fc b9fc
+4047 b9fd b9fd b9fd * 6865 * 8ea1e8e5,e8e5,8ea1e8e5v,e8e5v 5fb9 e5beb9 5fb9 00005fb9 b9fd b9fd b9fd b9fd b9fd b9fd b9fd
+4048 b9fe b9fe b9fe * 6866 * 8ea1e8e6,e8e6,8ea1e8e6v,e8e6v 6147 e68587 6147 00006147 b9fe b9fe b9fe b9fe b9fe b9fe b9fe
+4049 ba40 ba40 ba40 * 6867 * 8ea1e8e7,e8e7,8ea1e8e7v,e8e7v 613f e684bf 613f 0000613f ba40 ba40 ba40 ba40 ba40 ba40 ba40
+4050 ba41 ba41 ba41 * 6868 * 8ea1e8e8,e8e8,8ea1e8e8v,e8e8v 614b e6858b 614b 0000614b ba41 ba41 ba41 ba41 ba41 ba41 ba41
+4051 ba42 ba42 ba42 * 6869 * 8ea1e8e9,e8e9,8ea1e8e9v,e8e9v 6177 e685b7 6177 00006177 ba42 ba42 ba42 ba42 ba42 ba42 ba42
+4052 ba43 ba43 ba43 * 686a * 8ea1e8ea,e8ea,8ea1e8eav,e8eav 6162 e685a2 6162 00006162 ba43 ba43 ba43 ba43 ba43 ba43 ba43
+4053 ba44 ba44 ba44 * 686b * 8ea1e8eb,e8eb,8ea1e8ebv,e8ebv 6163 e685a3 6163 00006163 ba44 ba44 ba44 ba44 ba44 ba44 ba44
+4054 ba45 ba45 ba45 * 686c * 8ea1e8ec,e8ec,8ea1e8ecv,e8ecv 615f e6859f 615f 0000615f ba45 ba45 ba45 ba45 ba45 ba45 ba45
+4055 ba46 ba46 ba46 * 686d * 8ea1e8ed,e8ed,8ea1e8edv,e8edv 615a e6859a 615a 0000615a ba46 ba46 ba46 ba46 ba46 ba46 ba46
+4056 ba47 ba47 ba47 * 686e * 8ea1e8ee,e8ee,8ea1e8eev,e8eev 6158 e68598 6158 00006158 ba47 ba47 ba47 ba47 ba47 ba47 ba47
+4057 ba48 ba48 ba48 * 686f * 8ea1e8ef,e8ef,8ea1e8efv,e8efv 6175 e685b5 6175 00006175 ba48 ba48 ba48 ba48 ba48 ba48 ba48
+4058 ba49 ba49 ba49 * 6870 * 8ea1e8f0,e8f0,8ea1e8f0v,e8f0v 622a e688aa 622a 0000622a ba49 ba49 ba49 ba49 ba49 ba49 ba49
+4059 ba4a ba4a ba4a * 6871 * 8ea1e8f1,e8f1,8ea1e8f1v,e8f1v 6487 e69287 6487 00006487 ba4a ba4a ba4a ba4a ba4a ba4a ba4a
+4060 ba4b ba4b ba4b * 6872 * 8ea1e8f2,e8f2,8ea1e8f2v,e8f2v 6458 e69198 6458 00006458 ba4b ba4b ba4b ba4b ba4b ba4b ba4b
+4061 ba4c ba4c ba4c * 6873 * 8ea1e8f3,e8f3,8ea1e8f3v,e8f3v 6454 e69194 6454 00006454 ba4c ba4c ba4c ba4c ba4c ba4c ba4c
+4062 ba4d ba4d ba4d * 6874 * 8ea1e8f4,e8f4,8ea1e8f4v,e8f4v 64a4 e692a4 64a4 000064a4 ba4d ba4d ba4d ba4d ba4d ba4d ba4d
+4063 ba4e ba4e ba4e * 6875 * 8ea1e8f5,e8f5,8ea1e8f5v,e8f5v 6478 e691b8 6478 00006478 ba4e ba4e ba4e ba4e ba4e ba4e ba4e
+4064 ba4f ba4f ba4f * 6876 * 8ea1e8f6,e8f6,8ea1e8f6v,e8f6v 645f e6919f 645f 0000645f ba4f ba4f ba4f ba4f ba4f ba4f ba4f
+4065 ba50 ba50 ba50 * 6877 * 8ea1e8f7,e8f7,8ea1e8f7v,e8f7v 647a e691ba 647a 0000647a ba50 ba50 ba50 ba50 ba50 ba50 ba50
+4066 ba51 ba51 ba51 * 6878 * 8ea1e8f8,e8f8,8ea1e8f8v,e8f8v 6451 e69191 6451 00006451 ba51 ba51 ba51 ba51 ba51 ba51 ba51
+4067 ba52 ba52 ba52 * 6879 * 8ea1e8f9,e8f9,8ea1e8f9v,e8f9v 6467 e691a7 6467 00006467 ba52 ba52 ba52 ba52 ba52 ba52 ba52
+4068 ba53 ba53 ba53 * 687a * 8ea1e8fa,e8fa,8ea1e8fav,e8fav 6434 e690b4 6434 00006434 ba53 ba53 ba53 ba53 ba53 ba53 ba53
+4069 ba54 ba54 ba54 * 687b * 8ea1e8fb,e8fb,8ea1e8fbv,e8fbv 646d e691ad 646d 0000646d ba54 ba54 ba54 ba54 ba54 ba54 ba54
+4070 ba55 ba55 ba55 * 687c * 8ea1e8fc,e8fc,8ea1e8fcv,e8fcv 647b e691bb 647b 0000647b ba55 ba55 ba55 ba55 ba55 ba55 ba55
+4071 ba56 ba56 ba56 * 687d * 8ea1e8fd,e8fd,8ea1e8fdv,e8fdv 6572 e695b2 6572 00006572 ba56 ba56 ba56 ba56 ba56 ba56 ba56
+4072 ba57 ba57 ba57 * 687e * 8ea1e8fe,e8fe,8ea1e8fev,e8fev 65a1 e696a1 65a1 000065a1 ba57 ba57 ba57 ba57 ba57 ba57 ba57
+4073 ba58 ba58 ba58 * 6921 * 8ea1e9a1,e9a1,8ea1e9a1v,e9a1v 65d7 e69797 65d7 000065d7 ba58 ba58 ba58 ba58 ba58 ba58 ba58
+4074 ba59 ba59 ba59 * 6922 * 8ea1e9a2,e9a2,8ea1e9a2v,e9a2v 65d6 e69796 65d6 000065d6 ba59 ba59 ba59 ba59 ba59 ba59 ba59
+4075 ba5a ba5a ba5a * 6923 * 8ea1e9a3,e9a3,8ea1e9a3v,e9a3v 66a2 e69aa2 66a2 000066a2 ba5a ba5a ba5a ba5a ba5a ba5a ba5a
+4076 ba5b ba5b ba5b * 6924 * 8ea1e9a4,e9a4,8ea1e9a4v,e9a4v 66a8 e69aa8 66a8 000066a8 ba5b ba5b ba5b ba5b ba5b ba5b ba5b
+4077 ba5c ba5c ba5c * 6925 * 8ea1e9a5,e9a5,8ea1e9a5v,e9a5v 669d e69a9d 669d 0000669d ba5c ba5c ba5c ba5c ba5c ba5c ba5c
+4078 ba5d ba5d ba5d * 6926 * 8ea1e9a6,e9a6,8ea1e9a6v,e9a6v 699c e6a69c 699c 0000699c ba5d ba5d ba5d ba5d ba5d ba5d ba5d
+4079 ba5e ba5e ba5e * 6927 * 8ea1e9a7,e9a7,8ea1e9a7v,e9a7v 69a8 e6a6a8 69a8 000069a8 ba5e ba5e ba5e ba5e ba5e ba5e ba5e
+4080 ba5f ba5f ba5f * 6928 * 8ea1e9a8,e9a8,8ea1e9a8v,e9a8v 6995 e6a695 6995 00006995 ba5f ba5f ba5f ba5f ba5f ba5f ba5f
+4081 ba60 ba60 ba60 * 6929 * 8ea1e9a9,e9a9,8ea1e9a9v,e9a9v 69c1 e6a781 69c1 000069c1 ba60 ba60 ba60 ba60 ba60 ba60 ba60
+4082 ba61 ba61 ba61 * 692a * 8ea1e9aa,e9aa,8ea1e9aav,e9aav 69ae e6a6ae 69ae 000069ae ba61 ba61 ba61 ba61 ba61 ba61 ba61
+4083 ba62 ba62 ba62 * 692b * 8ea1e9ab,e9ab,8ea1e9abv,e9abv 69d3 e6a793 69d3 000069d3 ba62 ba62 ba62 ba62 ba62 ba62 ba62
+4084 ba63 ba63 ba63 * 692c * 8ea1e9ac,e9ac,8ea1e9acv,e9acv 69cb e6a78b 69cb 000069cb ba63 ba63 ba63 ba63 ba63 ba63 ba63
+4085 ba64 ba64 ba64 * 692d * 8ea1e9ad,e9ad,8ea1e9adv,e9adv 699b e6a69b 699b 0000699b ba64 ba64 ba64 ba64 ba64 ba64 ba64
+4086 ba65 ba65 ba65 * 692e * 8ea1e9ae,e9ae,8ea1e9aev,e9aev 69b7 e6a6b7 69b7 000069b7 ba65 ba65 ba65 ba65 ba65 ba65 ba65
+4087 ba66 ba66 ba66 * 692f * 8ea1e9af,e9af,8ea1e9afv,e9afv 69bb e6a6bb 69bb 000069bb ba66 ba66 ba66 ba66 ba66 ba66 ba66
+4088 ba67 ba67 ba67 * 6930 * 8ea1e9b0,e9b0,8ea1e9b0v,e9b0v 69ab e6a6ab 69ab 000069ab ba67 ba67 ba67 ba67 ba67 ba67 ba67
+4089 ba68 ba68 ba68 * 6931 * 8ea1e9b1,e9b1,8ea1e9b1v,e9b1v 69b4 e6a6b4 69b4 000069b4 ba68 ba68 ba68 ba68 ba68 ba68 ba68
+4090 ba69 ba69 ba69 * 6932 * 8ea1e9b2,e9b2,8ea1e9b2v,e9b2v 69d0 e6a790 69d0 000069d0 ba69 ba69 ba69 ba69 ba69 ba69 ba69
+4091 ba6a ba6a ba6a * 6933 * 8ea1e9b3,e9b3,8ea1e9b3v,e9b3v 69cd e6a78d 69cd 000069cd ba6a ba6a ba6a ba6a ba6a ba6a ba6a
+4092 ba6b ba6b ba6b * 6934 * 8ea1e9b4,e9b4,8ea1e9b4v,e9b4v 69ad e6a6ad 69ad 000069ad ba6b ba6b ba6b ba6b ba6b ba6b ba6b
+4093 ba6c ba6c ba6c * 6935 * 8ea1e9b5,e9b5,8ea1e9b5v,e9b5v 69cc e6a78c 69cc 000069cc ba6c ba6c ba6c ba6c ba6c ba6c ba6c
+4094 ba6d ba6d ba6d * 6936 * 8ea1e9b6,e9b6,8ea1e9b6v,e9b6v 69a6 e6a6a6 69a6 000069a6 ba6d ba6d ba6d ba6d ba6d ba6d ba6d
+4095 ba6e ba6e ba6e * 6937 * 8ea1e9b7,e9b7,8ea1e9b7v,e9b7v 69c3 e6a783 69c3 000069c3 ba6e ba6e ba6e ba6e ba6e ba6e ba6e
+4096 ba6f ba6f ba6f * 6938 * 8ea1e9b8,e9b8,8ea1e9b8v,e9b8v 69a3 e6a6a3 69a3 000069a3 ba6f ba6f ba6f ba6f ba6f ba6f ba6f
+4097 ba70 ba70 ba70 * 6939 * 8ea1e9b9,e9b9,8ea1e9b9v,e9b9v 6b49 e6ad89 6b49 00006b49 ba70 ba70 ba70 ba70 ba70 ba70 ba70
+4098 ba71 ba71 ba71 * 693a * 8ea1e9ba,e9ba,8ea1e9bav,e9bav 6b4c e6ad8c 6b4c 00006b4c ba71 ba71 ba71 ba71 ba71 ba71 ba71
+4099 ba72 ba72 ba72 * 693b * 8ea1e9bb,e9bb,8ea1e9bbv,e9bbv 6c33 e6b0b3 6c33 00006c33 ba72 ba72 ba72 ba72 ba72 ba72 ba72
+4100 ba73 ba73 ba73 * 693c * 8ea1e9bc,e9bc,8ea1e9bcv,e9bcv 6f33 e6bcb3 6f33 00006f33 ba73 ba73 ba73 ba73 ba73 ba73 ba73
+4101 ba74 ba74 ba74 * 693d * 8ea1e9bd,e9bd,8ea1e9bdv,e9bdv 6f14 e6bc94 6f14 00006f14 ba74 ba74 ba74 ba74 ba74 ba74 ba74
+4102 ba75 ba75 ba75 * 693e * 8ea1e9be,e9be,8ea1e9bev,e9bev 6efe e6bbbe 6efe 00006efe ba75 ba75 ba75 ba75 ba75 ba75 ba75
+4103 ba76 ba76 ba76 * 693f * 8ea1e9bf,e9bf,8ea1e9bfv,e9bfv 6f13 e6bc93 6f13 00006f13 ba76 ba76 ba76 ba76 ba76 ba76 ba76
+4104 ba77 ba77 ba77 * 6940 * 8ea1e9c0,e9c0,8ea1e9c0v,e9c0v 6ef4 e6bbb4 6ef4 00006ef4 ba77 ba77 ba77 ba77 ba77 ba77 ba77
+4105 ba78 ba78 ba78 * 6941 * 8ea1e9c1,e9c1,8ea1e9c1v,e9c1v 6f29 e6bca9 6f29 00006f29 ba78 ba78 ba78 ba78 ba78 ba78 ba78
+4106 ba79 ba79 ba79 * 6942 * 8ea1e9c2,e9c2,8ea1e9c2v,e9c2v 6f3e e6bcbe 6f3e 00006f3e ba79 ba79 ba79 ba79 ba79 ba79 ba79
+4107 ba7a ba7a ba7a * 6943 * 8ea1e9c3,e9c3,8ea1e9c3v,e9c3v 6f20 e6bca0 6f20 00006f20 ba7a ba7a ba7a ba7a ba7a ba7a ba7a
+4108 ba7b ba7b ba7b * 6944 * 8ea1e9c4,e9c4,8ea1e9c4v,e9c4v 6f2c e6bcac 6f2c 00006f2c ba7b ba7b ba7b ba7b ba7b ba7b ba7b
+4109 ba7c ba7c ba7c * 6945 * 8ea1e9c5,e9c5,8ea1e9c5v,e9c5v 6f0f e6bc8f 6f0f 00006f0f ba7c ba7c ba7c ba7c ba7c ba7c ba7c
+4110 ba7d ba7d ba7d * 6946 * 8ea1e9c6,e9c6,8ea1e9c6v,e9c6v 6f02 e6bc82 6f02 00006f02 ba7d ba7d ba7d ba7d ba7d ba7d ba7d
+4111 ba7e ba7e ba7e * 6947 * 8ea1e9c7,e9c7,8ea1e9c7v,e9c7v 6f22 e6bca2 6f22 00006f22 ba7e ba7e ba7e ba7e ba7e ba7e ba7e
+4112 baa1 baa1 baa1 * 6948 * 8ea1e9c8,e9c8,8ea1e9c8v,e9c8v 6eff e6bbbf 6eff 00006eff baa1 baa1 baa1 baa1 baa1 baa1 baa1
+4113 baa2 baa2 baa2 * 6949 * 8ea1e9c9,e9c9,8ea1e9c9v,e9c9v 6eef e6bbaf 6eef 00006eef baa2 baa2 baa2 baa2 baa2 baa2 baa2
+4114 baa3 baa3 baa3 * 694a * 8ea1e9ca,e9ca,8ea1e9cav,e9cav 6f06 e6bc86 6f06 00006f06 baa3 baa3 baa3 baa3 baa3 baa3 baa3
+4115 baa4 baa4 baa4 * 694b * 8ea1e9cb,e9cb,8ea1e9cbv,e9cbv 6f31 e6bcb1 6f31 00006f31 baa4 baa4 baa4 baa4 baa4 baa4 baa4
+4116 baa5 baa5 baa5 * 694c * 8ea1e9cc,e9cc,8ea1e9ccv,e9ccv 6f38 e6bcb8 6f38 00006f38 baa5 baa5 baa5 baa5 baa5 baa5 baa5
+4117 baa6 baa6 baa6 * 694d * 8ea1e9cd,e9cd,8ea1e9cdv,e9cdv 6f32 e6bcb2 6f32 00006f32 baa6 baa6 baa6 baa6 baa6 baa6 baa6
+4118 baa7 baa7 baa7 * 694e * 8ea1e9ce,e9ce,8ea1e9cev,e9cev 6f23 e6bca3 6f23 00006f23 baa7 baa7 baa7 baa7 baa7 baa7 baa7
+4119 baa8 baa8 baa8 * 694f * 8ea1e9cf,e9cf,8ea1e9cfv,e9cfv 6f15 e6bc95 6f15 00006f15 baa8 baa8 baa8 baa8 baa8 baa8 baa8
+4120 baa9 baa9 baa9 * 6950 * 8ea1e9d0,e9d0,8ea1e9d0v,e9d0v 6f2b e6bcab 6f2b 00006f2b baa9 baa9 baa9 baa9 baa9 baa9 baa9
+4121 baaa baaa baaa * 6951 * 8ea1e9d1,e9d1,8ea1e9d1v,e9d1v 6f2f e6bcaf 6f2f 00006f2f baaa baaa baaa baaa baaa baaa baaa
+4122 baab baab baab * 6952 * 8ea1e9d2,e9d2,8ea1e9d2v,e9d2v 6f88 e6be88 6f88 00006f88 baab baab baab baab baab baab baab
+4123 baac baac baac * 6953 * 8ea1e9d3,e9d3,8ea1e9d3v,e9d3v 6f2a e6bcaa 6f2a 00006f2a baac baac baac baac baac baac baac
+4124 baad baad baad * 6954 * 8ea1e9d4,e9d4,8ea1e9d4v,e9d4v 6eec e6bbac 6eec 00006eec baad baad baad baad baad baad baad
+4125 baae baae baae * 6955 * 8ea1e9d5,e9d5,8ea1e9d5v,e9d5v 6f01 e6bc81 6f01 00006f01 baae baae baae baae baae baae baae
+4126 baaf baaf baaf * 6956 * 8ea1e9d6,e9d6,8ea1e9d6v,e9d6v 6ef2 e6bbb2 6ef2 00006ef2 baaf baaf baaf baaf baaf baaf baaf
+4127 bab0 bab0 bab0 * 6957 * 8ea1e9d7,e9d7,8ea1e9d7v,e9d7v 6ecc e6bb8c 6ecc 00006ecc bab0 bab0 bab0 bab0 bab0 bab0 bab0
+4128 bab1 bab1 bab1 * 6958 * 8ea1e9d8,e9d8,8ea1e9d8v,e9d8v 6ef7 e6bbb7 6ef7 00006ef7 bab1 bab1 bab1 bab1 bab1 bab1 bab1
+4129 bab2 bab2 bab2 * 6959 * 8ea1e9d9,e9d9,8ea1e9d9v,e9d9v 7194 e78694 7194 00007194 bab2 bab2 bab2 bab2 bab2 bab2 bab2
+4130 bab3 bab3 bab3 * 695a * 8ea1e9da,e9da,8ea1e9dav,e9dav 7199 e78699 7199 00007199 bab3 bab3 bab3 bab3 bab3 bab3 bab3
+4131 bab4 bab4 bab4 * 695b * 8ea1e9db,e9db,8ea1e9dbv,e9dbv 717d e785bd 717d 0000717d bab4 bab4 bab4 bab4 bab4 bab4 bab4
+4132 bab5 bab5 bab5 * 695c * 8ea1e9dc,e9dc,8ea1e9dcv,e9dcv 718a e7868a 718a 0000718a bab5 bab5 bab5 bab5 bab5 bab5 bab5
+4133 bab6 bab6 bab6 * 695d * 8ea1e9dd,e9dd,8ea1e9ddv,e9ddv 7184 e78684 7184 00007184 bab6 bab6 bab6 bab6 bab6 bab6 bab6
+4134 bab7 bab7 bab7 * 695e * 8ea1e9de,e9de,8ea1e9dev,e9dev 7192 e78692 7192 00007192 bab7 bab7 bab7 bab7 bab7 bab7 bab7
+4135 bab8 bab8 bab8 * 695f * 8ea1e9df,e9df,8ea1e9dfv,e9dfv 723e e788be 723e 0000723e bab8 bab8 bab8 bab8 bab8 bab8 bab8
+4136 bab9 bab9 bab9 * 6960 * 8ea1e9e0,e9e0,8ea1e9e0v,e9e0v 7292 e78a92 7292 00007292 bab9 bab9 bab9 bab9 bab9 bab9 bab9
+4137 baba baba baba * 6961 * 8ea1e9e1,e9e1,8ea1e9e1v,e9e1v 7296 e78a96 7296 00007296 baba baba baba baba baba baba baba
+4138 babb babb babb * 6962 * 8ea1e9e2,e9e2,8ea1e9e2v,e9e2v 7344 e78d84 7344 00007344 babb babb babb babb babb babb babb
+4139 babc babc babc * 6963 * 8ea1e9e3,e9e3,8ea1e9e3v,e9e3v 7350 e78d90 7350 00007350 babc babc babc babc babc babc babc
+4140 babd babd babd * 6964 * 8ea1e9e4,e9e4,8ea1e9e4v,e9e4v 7464 e791a4 7464 00007464 babd babd babd babd babd babd babd
+4141 babe babe babe * 6965 * 8ea1e9e5,e9e5,8ea1e9e5v,e9e5v 7463 e791a3 7463 00007463 babe babe babe babe babe babe babe
+4142 babf babf babf * 6966 * 8ea1e9e6,e9e6,8ea1e9e6v,e9e6v 746a e791aa 746a 0000746a babf babf babf babf babf babf babf
+4143 bac0 bac0 bac0 * 6967 * 8ea1e9e7,e9e7,8ea1e9e7v,e9e7v 7470 e791b0 7470 00007470 bac0 bac0 bac0 bac0 bac0 bac0 bac0
+4144 bac1 bac1 bac1 * 6968 * 8ea1e9e8,e9e8,8ea1e9e8v,e9e8v 746d e791ad 746d 0000746d bac1 bac1 bac1 bac1 bac1 bac1 bac1
+4145 bac2 bac2 bac2 * 6969 * 8ea1e9e9,e9e9,8ea1e9e9v,e9e9v 7504 e79484 7504 00007504 bac2 bac2 bac2 bac2 bac2 bac2 bac2
+4146 bac3 bac3 bac3 * 696a * 8ea1e9ea,e9ea,8ea1e9eav,e9eav 7591 e79691 7591 00007591 bac3 bac3 bac3 bac3 bac3 bac3 bac3
+4147 bac4 bac4 bac4 * 696b * 8ea1e9eb,e9eb,8ea1e9ebv,e9ebv 7627 e798a7 7627 00007627 bac4 bac4 bac4 bac4 bac4 bac4 bac4
+4148 bac5 bac5 bac5 * 696c * 8ea1e9ec,e9ec,8ea1e9ecv,e9ecv 760d e7988d 760d 0000760d bac5 bac5 bac5 bac5 bac5 bac5 bac5
+4149 bac6 bac6 bac6 * 696d * 8ea1e9ed,e9ed,8ea1e9edv,e9edv 760b e7988b 760b 0000760b bac6 bac6 bac6 bac6 bac6 bac6 bac6
+4150 bac7 bac7 bac7 * 696e * 8ea1e9ee,e9ee,8ea1e9eev,e9eev 7609 e79889 7609 00007609 bac7 bac7 bac7 bac7 bac7 bac7 bac7
+4151 bac8 bac8 bac8 * 696f * 8ea1e9ef,e9ef,8ea1e9efv,e9efv 7613 e79893 7613 00007613 bac8 bac8 bac8 bac8 bac8 bac8 bac8
+4152 bac9 bac9 bac9 * 6970 * 8ea1e9f0,e9f0,8ea1e9f0v,e9f0v 76e1 e79ba1 76e1 000076e1 bac9 bac9 bac9 bac9 bac9 bac9 bac9
+4153 baca baca baca * 6971 * 8ea1e9f1,e9f1,8ea1e9f1v,e9f1v 76e3 e79ba3 76e3 000076e3 baca baca baca baca baca baca baca
+4154 bacb bacb bacb * 6972 * 8ea1e9f2,e9f2,8ea1e9f2v,e9f2v 7784 e79e84 7784 00007784 bacb bacb bacb bacb bacb bacb bacb
+4155 bacc bacc bacc * 6973 * 8ea1e9f3,e9f3,8ea1e9f3v,e9f3v 777d e79dbd 777d 0000777d bacc bacc bacc bacc bacc bacc bacc
+4156 bacd bacd bacd * 6974 * 8ea1e9f4,e9f4,8ea1e9f4v,e9f4v 777f e79dbf 777f 0000777f bacd bacd bacd bacd bacd bacd bacd
+4157 bace bace bace * 6975 * 8ea1e9f5,e9f5,8ea1e9f5v,e9f5v 7761 e79da1 7761 00007761 bace bace bace bace bace bace bace
+4158 bacf bacf bacf * 6976 * 8ea1e9f6,e9f6,8ea1e9f6v,e9f6v 78c1 e7a381 78c1 000078c1 bacf bacf bacf bacf bacf bacf bacf
+4159 bad0 bad0 bad0 * 6977 * 8ea1e9f7,e9f7,8ea1e9f7v,e9f7v 789f e7a29f 789f 0000789f bad0 bad0 bad0 bad0 bad0 bad0 bad0
+4160 bad1 bad1 bad1 * 6978 * 8ea1e9f8,e9f8,8ea1e9f8v,e9f8v 78a7 e7a2a7 78a7 000078a7 bad1 bad1 bad1 bad1 bad1 bad1 bad1
+4161 bad2 bad2 bad2 * 6979 * 8ea1e9f9,e9f9,8ea1e9f9v,e9f9v 78b3 e7a2b3 78b3 000078b3 bad2 bad2 bad2 bad2 bad2 bad2 bad2
+4162 bad3 bad3 bad3 * 697a * 8ea1e9fa,e9fa,8ea1e9fav,e9fav 78a9 e7a2a9 78a9 000078a9 bad3 bad3 bad3 bad3 bad3 bad3 bad3
+4163 bad4 bad4 bad4 * 697b * 8ea1e9fb,e9fb,8ea1e9fbv,e9fbv 78a3 e7a2a3 78a3 000078a3 bad4 bad4 bad4 bad4 bad4 bad4 bad4
+4164 bad5 bad5 bad5 * 697c * 8ea1e9fc,e9fc,8ea1e9fcv,e9fcv 798e e7a68e 798e 0000798e bad5 bad5 bad5 bad5 bad5 bad5 bad5
+4165 bad6 bad6 bad6 * 697d * 8ea1e9fd,e9fd,8ea1e9fdv,e9fdv 798f e7a68f 798f 0000798f bad6 bad6 bad6 bad6 bad6 bad6 bad6
+4166 bad7 bad7 bad7 * 697e * 8ea1e9fe,e9fe,8ea1e9fev,e9fev 798d e7a68d 798d 0000798d bad7 bad7 bad7 bad7 bad7 bad7 bad7
+4167 bad8 bad8 bad8 * 6a21 * 8ea1eaa1,eaa1,8ea1eaa1v,eaa1v 7a2e e7a8ae 7a2e 00007a2e bad8 bad8 bad8 bad8 bad8 bad8 bad8
+4168 bad9 bad9 bad9 * 6a22 * 8ea1eaa2,eaa2,8ea1eaa2v,eaa2v 7a31 e7a8b1 7a31 00007a31 bad9 bad9 bad9 bad9 bad9 bad9 bad9
+4169 bada bada bada * 6a23 * 8ea1eaa3,eaa3,8ea1eaa3v,eaa3v 7aaa e7aaaa 7aaa 00007aaa bada bada bada bada bada bada bada
+4170 badb badb badb * 6a24 * 8ea1eaa4,eaa4,8ea1eaa4v,eaa4v 7aa9 e7aaa9 7aa9 00007aa9 badb badb badb badb badb badb badb
+4171 badc badc badc * 6a25 * 8ea1eaa5,eaa5,8ea1eaa5v,eaa5v 7aed e7abad 7aed 00007aed badc badc badc badc badc badc badc
+4172 badd badd badd * 6a26 * 8ea1eaa6,eaa6,8ea1eaa6v,eaa6v 7aef e7abaf 7aef 00007aef badd badd badd badd badd badd badd
+4173 bade bade bade * 6a27 * 8ea1eaa7,eaa7,8ea1eaa7v,eaa7v 7ba1 e7aea1 7ba1 00007ba1 bade bade bade bade bade bade bade
+4174 badf badf badf * 6a28 * 8ea1eaa8,eaa8,8ea1eaa8v,eaa8v 7b95 e7ae95 7b95 00007b95 badf badf badf badf badf badf badf
+4175 bae0 bae0 bae0 * 6a29 * 8ea1eaa9,eaa9,8ea1eaa9v,eaa9v 7b8b e7ae8b 7b8b 00007b8b bae0 bae0 bae0 bae0 bae0 bae0 bae0
+4176 bae1 bae1 bae1 * 6a2a * 8ea1eaaa,eaaa,8ea1eaaav,eaaav 7b75 e7adb5 7b75 00007b75 bae1 bae1 bae1 bae1 bae1 bae1 bae1
+4177 bae2 bae2 bae2 * 6a2b * 8ea1eaab,eaab,8ea1eaabv,eaabv 7b97 e7ae97 7b97 00007b97 bae2 bae2 bae2 bae2 bae2 bae2 bae2
+4178 bae3 bae3 bae3 * 6a2c * 8ea1eaac,eaac,8ea1eaacv,eaacv 7b9d e7ae9d 7b9d 00007b9d bae3 bae3 bae3 bae3 bae3 bae3 bae3
+4179 bae4 bae4 bae4 * 6a2d * 8ea1eaad,eaad,8ea1eaadv,eaadv 7b94 e7ae94 7b94 00007b94 bae4 bae4 bae4 bae4 bae4 bae4 bae4
+4180 bae5 bae5 bae5 * 6a2e * 8ea1eaae,eaae,8ea1eaaev,eaaev 7b8f e7ae8f 7b8f 00007b8f bae5 bae5 bae5 bae5 bae5 bae5 bae5
+4181 bae6 bae6 bae6 * 6a2f * 8ea1eaaf,eaaf,8ea1eaafv,eaafv 7bb8 e7aeb8,ee8cba 7bb8,e33a 00007bb8,0000e33a 8e69,bae6 bae6 bae6 bae6 bae6 bae6 8e69,bae6
+4182 bae7 bae7 bae7 * 6a30 * 8ea1eab0,eab0,8ea1eab0v,eab0v 7b87 e7ae87 7b87 00007b87 bae7 bae7 bae7 bae7 bae7 bae7 bae7
+4183 bae8 bae8 bae8 * 6a31 * 8ea1eab1,eab1,8ea1eab1v,eab1v 7b84 e7ae84 7b84 00007b84 bae8 bae8 bae8 bae8 bae8 bae8 bae8
+4184 bae9 bae9 bae9 * 6a32 * 8ea1eab2,eab2,8ea1eab2v,eab2v 7cb9 e7b2b9 7cb9 00007cb9 bae9 bae9 bae9 bae9 bae9 bae9 bae9
+4185 baea baea baea * 6a33 * 8ea1eab3,eab3,8ea1eab3v,eab3v 7cbd e7b2bd 7cbd 00007cbd baea baea baea baea baea baea baea
+4186 baeb baeb baeb * 6a34 * 8ea1eab4,eab4,8ea1eab4v,eab4v 7cbe e7b2be 7cbe 00007cbe baeb baeb baeb baeb baeb baeb baeb
+4187 baec baec baec * 6a35 * 8ea1eab5,eab5,8ea1eab5v,eab5v 7dbb e7b6bb 7dbb 00007dbb baec baec baec baec baec baec baec
+4188 baed baed baed * 6a36 * 8ea1eab6,eab6,8ea1eab6v,eab6v 7db0 e7b6b0 7db0 00007db0 baed baed baed baed baed baed baed
+4189 baee baee baee * 6a37 * 8ea1eab7,eab7,8ea1eab7v,eab7v 7d9c e7b69c 7d9c 00007d9c baee baee baee baee baee baee baee
+4190 baef baef baef * 6a38 * 8ea1eab8,eab8,8ea1eab8v,eab8v 7dbd e7b6bd 7dbd 00007dbd baef baef baef baef baef baef baef
+4191 baf0 baf0 baf0 * 6a39 * 8ea1eab9,eab9,8ea1eab9v,eab9v 7dbe e7b6be 7dbe 00007dbe baf0 baf0 baf0 baf0 baf0 baf0 baf0
+4192 baf1 baf1 baf1 * 6a3a * 8ea1eaba,eaba,8ea1eabav,eabav 7da0 e7b6a0 7da0 00007da0 baf1 baf1 baf1 baf1 baf1 baf1 baf1
+4193 baf2 baf2 baf2 * 6a3b * 8ea1eabb,eabb,8ea1eabbv,eabbv 7dca e7b78a 7dca 00007dca baf2 baf2 baf2 baf2 baf2 baf2 baf2
+4194 baf3 baf3 baf3 * 6a3c * 8ea1eabc,eabc,8ea1eabcv,eabcv 7db4 e7b6b4 7db4 00007db4 baf3 baf3 baf3 baf3 baf3 baf3 baf3
+4195 baf4 baf4 baf4 * 6a3d * 8ea1eabd,eabd,8ea1eabdv,eabdv 7db2 e7b6b2 7db2 00007db2 baf4 baf4 baf4 baf4 baf4 baf4 baf4
+4196 baf5 baf5 baf5 * 6a3e * 8ea1eabe,eabe,8ea1eabev,eabev 7db1 e7b6b1 7db1 00007db1 baf5 baf5 baf5 baf5 baf5 baf5 baf5
+4197 baf6 baf6 baf6 * 6a3f * 8ea1eabf,eabf,8ea1eabfv,eabfv 7dba e7b6ba 7dba 00007dba baf6 baf6 baf6 baf6 baf6 baf6 baf6
+4198 baf7 baf7 baf7 * 6a40 * 8ea1eac0,eac0,8ea1eac0v,eac0v 7da2 e7b6a2 7da2 00007da2 baf7 baf7 baf7 baf7 baf7 baf7 baf7
+4199 baf8 baf8 baf8 * 6a41 * 8ea1eac1,eac1,8ea1eac1v,eac1v 7dbf e7b6bf 7dbf 00007dbf baf8 baf8 baf8 baf8 baf8 baf8 baf8
+4200 baf9 baf9 baf9 * 6a42 * 8ea1eac2,eac2,8ea1eac2v,eac2v 7db5 e7b6b5 7db5 00007db5 baf9 baf9 baf9 baf9 baf9 baf9 baf9
+4201 bafa bafa bafa * 6a43 * 8ea1eac3,eac3,8ea1eac3v,eac3v 7db8 e7b6b8 7db8 00007db8 bafa bafa bafa bafa bafa bafa bafa
+4202 bafb bafb bafb * 6a44 * 8ea1eac4,eac4,8ea1eac4v,eac4v 7dad e7b6ad 7dad 00007dad bafb bafb bafb bafb bafb bafb bafb
+4203 bafc bafc bafc * 6a45 * 8ea1eac5,eac5,8ea1eac5v,eac5v 7dd2 e7b792,ee8d9a 7dd2,e35a 00007dd2,0000e35a 8eab,bafc bafc bafc bafc bafc bafc 8eab,bafc
+4204 bafd bafd bafd * 6a46 * 8ea1eac6,eac6,8ea1eac6v,eac6v 7dc7 e7b787 7dc7 00007dc7 bafd bafd bafd bafd bafd bafd bafd
+4205 bafe bafe bafe * 6a47 * 8ea1eac7,eac7,8ea1eac7v,eac7v 7dac e7b6ac 7dac 00007dac bafe bafe bafe bafe bafe bafe bafe
+4206 bb40 bb40 bb40 * 6a48 * 8ea1eac8,eac8,8ea1eac8v,eac8v 7f70 e7bdb0 7f70 00007f70 bb40 bb40 bb40 bb40 bb40 bb40 bb40
+4207 bb41 bb41 bb41 * 6a49 * 8ea1eac9,eac9,8ea1eac9v,eac9v 7fe0 e7bfa0 7fe0 00007fe0 bb41 bb41 bb41 bb41 bb41 bb41 bb41
+4208 bb42 bb42 bb42 * 6a4a * 8ea1eaca,eaca,8ea1eacav,eacav 7fe1 e7bfa1 7fe1 00007fe1 bb42 bb42 bb42 bb42 bb42 bb42 bb42
+4209 bb43 bb43 bb43 * 6a4b * 8ea1eacb,eacb,8ea1eacbv,eacbv 7fdf e7bf9f 7fdf 00007fdf bb43 bb43 bb43 bb43 bb43 bb43 bb43
+4210 bb44 bb44 bb44 * 6a4c * 8ea1eacc,eacc,8ea1eaccv,eaccv 805e e8819e 805e 0000805e bb44 bb44 bb44 bb44 bb44 bb44 bb44
+4211 bb45 bb45 bb45 * 6a4d * 8ea1eacd,eacd,8ea1eacdv,eacdv 805a e8819a 805a 0000805a bb45 bb45 bb45 bb45 bb45 bb45 bb45
+4212 bb46 bb46 bb46 * 6a4e * 8ea1eace,eace,8ea1eacev,eacev 8087 e88287 8087 00008087 bb46 bb46 bb46 bb46 bb46 bb46 bb46
+4213 bb47 bb47 bb47 * 6a4f * 8ea1eacf,eacf,8ea1eacfv,eacfv 8150 e88590 8150 00008150 bb47 bb47 bb47 bb47 bb47 bb47 bb47
+4214 bb48 bb48 bb48 * 6a50 * 8ea1ead0,ead0,8ea1ead0v,ead0v 8180 e88680 8180 00008180 bb48 bb48 bb48 bb48 bb48 bb48 bb48
+4215 bb49 bb49 bb49 * 6a51 * 8ea1ead1,ead1,8ea1ead1v,ead1v 818f e8868f 818f 0000818f bb49 bb49 bb49 bb49 bb49 bb49 bb49
+4216 bb4a bb4a bb4a * 6a52 * 8ea1ead2,ead2,8ea1ead2v,ead2v 8188 e88688 8188 00008188 bb4a bb4a bb4a bb4a bb4a bb4a bb4a
+4217 bb4b bb4b bb4b * 6a53 * 8ea1ead3,ead3,8ea1ead3v,ead3v 818a e8868a 818a 0000818a bb4b bb4b bb4b bb4b bb4b bb4b bb4b
+4218 bb4c bb4c bb4c * 6a54 * 8ea1ead4,ead4,8ea1ead4v,ead4v 817f e885bf 817f 0000817f bb4c bb4c bb4c bb4c bb4c bb4c bb4c
+4219 bb4d bb4d bb4d * 6a55 * 8ea1ead5,ead5,8ea1ead5v,ead5v 8182 e88682 8182 00008182 bb4d bb4d bb4d bb4d bb4d bb4d bb4d
+4220 bb4e bb4e bb4e * 6a56 * 8ea1ead6,ead6,8ea1ead6v,ead6v 81e7 e887a7 81e7 000081e7 bb4e bb4e bb4e bb4e bb4e bb4e bb4e
+4221 bb4f bb4f bb4f * 6a57 * 8ea1ead7,ead7,8ea1ead7v,ead7v 81fa e887ba 81fa 000081fa bb4f bb4f bb4f bb4f bb4f bb4f bb4f
+4222 bb50 bb50 bb50 * 6a58 * 8ea1ead8,ead8,8ea1ead8v,ead8v 8207 e88887 8207 00008207 bb50 bb50 bb50 bb50 bb50 bb50 bb50
+4223 bb51 bb51 bb51 * 6a59 * 8ea1ead9,ead9,8ea1ead9v,ead9v 8214 e88894 8214 00008214 bb51 bb51 bb51 bb51 bb51 bb51 bb51
+4224 bb52 bb52 bb52 * 6a5a * 8ea1eada,eada,8ea1eadav,eadav 821e e8889e 821e 0000821e bb52 bb52 bb52 bb52 bb52 bb52 bb52
+4225 bb53 bb53 bb53 * 6a5b * 8ea1eadb,eadb,8ea1eadbv,eadbv 824b e8898b 824b 0000824b bb53 bb53 bb53 bb53 bb53 bb53 bb53
+4226 bb54 bb54 bb54 * 6a5c * 8ea1eadc,eadc,8ea1eadcv,eadcv 84c9 e89389 84c9 000084c9 bb54 bb54 bb54 bb54 bb54 bb54 bb54
+4227 bb55 bb55 bb55 * 6a5d * 8ea1eadd,eadd,8ea1eaddv,eaddv 84bf e892bf 84bf 000084bf bb55 bb55 bb55 bb55 bb55 bb55 bb55
+4228 bb56 bb56 bb56 * 6a5e * 8ea1eade,eade,8ea1eadev,eadev 84c6 e89386 84c6 000084c6 bb56 bb56 bb56 bb56 bb56 bb56 bb56
+4229 bb57 bb57 bb57 * 6a5f * 8ea1eadf,eadf,8ea1eadfv,eadfv 84c4 e89384 84c4 000084c4 bb57 bb57 bb57 bb57 bb57 bb57 bb57
+4230 bb58 bb58 bb58 * 6a60 * 8ea1eae0,eae0,8ea1eae0v,eae0v 8499 e89299 8499 00008499 bb58 bb58 bb58 bb58 bb58 bb58 bb58
+4231 bb59 bb59 bb59 * 6a61 * 8ea1eae1,eae1,8ea1eae1v,eae1v 849e e8929e 849e 0000849e bb59 bb59 bb59 bb59 bb59 bb59 bb59
+4232 bb5a bb5a bb5a * 6a62 * 8ea1eae2,eae2,8ea1eae2v,eae2v 84b2 e892b2 84b2 000084b2 bb5a bb5a bb5a bb5a bb5a bb5a bb5a
+4233 bb5b bb5b bb5b * 6a63 * 8ea1eae3,eae3,8ea1eae3v,eae3v 849c e8929c 849c 0000849c bb5b bb5b bb5b bb5b bb5b bb5b bb5b
+4234 bb5c bb5c bb5c * 6a64 * 8ea1eae4,eae4,8ea1eae4v,eae4v 84cb e8938b 84cb 000084cb bb5c bb5c bb5c bb5c bb5c bb5c bb5c
+4235 bb5d bb5d bb5d * 6a65 * 8ea1eae5,eae5,8ea1eae5v,eae5v 84b8 e892b8 84b8 000084b8 bb5d bb5d bb5d bb5d bb5d bb5d bb5d
+4236 bb5e bb5e bb5e * 6a66 * 8ea1eae6,eae6,8ea1eae6v,eae6v 84c0 e89380 84c0 000084c0 bb5e bb5e bb5e bb5e bb5e bb5e bb5e
+4237 bb5f bb5f bb5f * 6a67 * 8ea1eae7,eae7,8ea1eae7v,eae7v 84d3 e89393 84d3 000084d3 bb5f bb5f bb5f bb5f bb5f bb5f bb5f
+4238 bb60 bb60 bb60 * 6a68 * 8ea1eae8,eae8,8ea1eae8v,eae8v 8490 e89290 8490 00008490 bb60 bb60 bb60 bb60 bb60 bb60 bb60
+4239 bb61 bb61 bb61 * 6a69 * 8ea1eae9,eae9,8ea1eae9v,eae9v 84bc e892bc 84bc 000084bc bb61 bb61 bb61 bb61 bb61 bb61 bb61
+4240 bb62 bb62 bb62 * 6a6a * 8ea1eaea,eaea,8ea1eaeav,eaeav 84d1 e89391 84d1 000084d1 bb62 bb62 bb62 bb62 bb62 bb62 bb62
+4241 bb63 bb63 bb63 * 6a6b * 8ea1eaeb,eaeb,8ea1eaebv,eaebv 84ca e8938a 84ca 000084ca bb63 bb63 bb63 bb63 bb63 bb63 bb63
+4242 bb64 bb64 bb64 * 6a6c * 8ea1eaec,eaec,8ea1eaecv,eaecv 873f e89cbf 873f 0000873f bb64 bb64 bb64 bb64 bb64 bb64 bb64
+4243 bb65 bb65 bb65 * 6a6d * 8ea1eaed,eaed,8ea1eaedv,eaedv 871c e89c9c 871c 0000871c bb65 bb65 bb65 bb65 bb65 bb65 bb65
+4244 bb66 bb66 bb66 * 6a6e * 8ea1eaee,eaee,8ea1eaeev,eaeev 873b e89cbb 873b 0000873b bb66 bb66 bb66 bb66 bb66 bb66 bb66
+4245 bb67 bb67 bb67 * 6a6f * 8ea1eaef,eaef,8ea1eaefv,eaefv 8722 e89ca2 8722 00008722 bb67 bb67 bb67 bb67 bb67 bb67 bb67
+4246 bb68 bb68 bb68 * 6a70 * 8ea1eaf0,eaf0,8ea1eaf0v,eaf0v 8725 e89ca5 8725 00008725 bb68 bb68 bb68 bb68 bb68 bb68 bb68
+4247 bb69 bb69 bb69 * 6a71 * 8ea1eaf1,eaf1,8ea1eaf1v,eaf1v 8734 e89cb4 8734 00008734 bb69 bb69 bb69 bb69 bb69 bb69 bb69
+4248 bb6a bb6a bb6a * 6a72 * 8ea1eaf2,eaf2,8ea1eaf2v,eaf2v 8718 e89c98 8718 00008718 bb6a bb6a bb6a bb6a bb6a bb6a bb6a
+4249 bb6b bb6b bb6b * 6a73 * 8ea1eaf3,eaf3,8ea1eaf3v,eaf3v 8755 e89d95 8755 00008755 bb6b bb6b bb6b bb6b bb6b bb6b bb6b
+4250 bb6c bb6c bb6c * 6a74 * 8ea1eaf4,eaf4,8ea1eaf4v,eaf4v 8737 e89cb7 8737 00008737 bb6c bb6c bb6c bb6c bb6c bb6c bb6c
+4251 bb6d bb6d bb6d * 6a75 * 8ea1eaf5,eaf5,8ea1eaf5v,eaf5v 8729 e89ca9 8729 00008729 bb6d bb6d bb6d bb6d bb6d bb6d bb6d
+4252 bb6e bb6e bb6e * 6a76 * 8ea1eaf6,eaf6,8ea1eaf6v,eaf6v 88f3 e8a3b3 88f3 000088f3 bb6e bb6e bb6e bb6e bb6e bb6e bb6e
+4253 bb6f bb6f bb6f * 6a77 * 8ea1eaf7,eaf7,8ea1eaf7v,eaf7v 8902 e8a482 8902 00008902 bb6f bb6f bb6f bb6f bb6f bb6f bb6f
+4254 bb70 bb70 bb70 * 6a78 * 8ea1eaf8,eaf8,8ea1eaf8v,eaf8v 88f4 e8a3b4 88f4 000088f4 bb70 bb70 bb70 bb70 bb70 bb70 bb70
+4255 bb71 bb71 bb71 * 6a79 * 8ea1eaf9,eaf9,8ea1eaf9v,eaf9v 88f9 e8a3b9 88f9 000088f9 bb71 bb71 bb71 bb71 bb71 bb71 bb71
+4256 bb72 bb72 bb72 * 6a7a * 8ea1eafa,eafa,8ea1eafav,eafav 88f8 e8a3b8 88f8 000088f8 bb72 bb72 bb72 bb72 bb72 bb72 bb72
+4257 bb73 bb73 bb73 * 6a7b * 8ea1eafb,eafb,8ea1eafbv,eafbv 88fd e8a3bd 88fd 000088fd bb73 bb73 bb73 bb73 bb73 bb73 bb73
+4258 bb74 bb74 bb74 * 6a7c * 8ea1eafc,eafc,8ea1eafcv,eafcv 88e8 e8a3a8 88e8 000088e8 bb74 bb74 bb74 bb74 bb74 bb74 bb74
+4259 bb75 bb75 bb75 * 6a7d * 8ea1eafd,eafd,8ea1eafdv,eafdv 891a e8a49a 891a 0000891a bb75 bb75 bb75 bb75 bb75 bb75 bb75
+4260 bb76 bb76 bb76 * 6a7e * 8ea1eafe,eafe,8ea1eafev,eafev 88ef e8a3af 88ef 000088ef bb76 bb76 bb76 bb76 bb76 bb76 bb76
+4261 bb77 bb77 bb77 * 6b21 * 8ea1eba1,eba1,8ea1eba1v,eba1v 8aa6 e8aaa6 8aa6 00008aa6 bb77 bb77 bb77 bb77 bb77 bb77 bb77
+4262 bb78 bb78 bb78 * 6b22 * 8ea1eba2,eba2,8ea1eba2v,eba2v 8a8c e8aa8c 8a8c 00008a8c bb78 bb78 bb78 bb78 bb78 bb78 bb78
+4263 bb79 bb79 bb79 * 6b23 * 8ea1eba3,eba3,8ea1eba3v,eba3v 8a9e e8aa9e 8a9e 00008a9e bb79 bb79 bb79 bb79 bb79 bb79 bb79
+4264 bb7a bb7a bb7a * 6b24 * 8ea1eba4,eba4,8ea1eba4v,eba4v 8aa3 e8aaa3 8aa3 00008aa3 bb7a bb7a bb7a bb7a bb7a bb7a bb7a
+4265 bb7b bb7b bb7b * 6b25 * 8ea1eba5,eba5,8ea1eba5v,eba5v 8a8d e8aa8d 8a8d 00008a8d bb7b bb7b bb7b bb7b bb7b bb7b bb7b
+4266 bb7c bb7c bb7c * 6b26 * 8ea1eba6,eba6,8ea1eba6v,eba6v 8aa1 e8aaa1 8aa1 00008aa1 bb7c bb7c bb7c bb7c bb7c bb7c bb7c
+4267 bb7d bb7d bb7d * 6b27 * 8ea1eba7,eba7,8ea1eba7v,eba7v 8a93 e8aa93 8a93 00008a93 bb7d bb7d bb7d bb7d bb7d bb7d bb7d
+4268 bb7e bb7e bb7e * 6b28 * 8ea1eba8,eba8,8ea1eba8v,eba8v 8aa4 e8aaa4 8aa4 00008aa4 bb7e bb7e bb7e bb7e bb7e bb7e bb7e
+4269 bba1 bba1 bba1 * 6b29 * 8ea1eba9,eba9,8ea1eba9v,eba9v 8aaa e8aaaa 8aaa 00008aaa bba1 bba1 bba1 bba1 bba1 bba1 bba1
+4270 bba2 bba2 bba2 * 6b2a * 8ea1ebaa,ebaa,8ea1ebaav,ebaav 8aa5 e8aaa5 8aa5 00008aa5 bba2 bba2 bba2 bba2 bba2 bba2 bba2
+4271 bba3 bba3 bba3 * 6b2b * 8ea1ebab,ebab,8ea1ebabv,ebabv 8aa8 e8aaa8 8aa8 00008aa8 bba3 bba3 bba3 bba3 bba3 bba3 bba3
+4272 bba4 bba4 bba4 * 6b2c * 8ea1ebac,ebac,8ea1ebacv,ebacv 8a98 e8aa98 8a98 00008a98 bba4 bba4 bba4 bba4 bba4 bba4 bba4
+4273 bba5 bba5 bba5 * 6b2d * 8ea1ebad,ebad,8ea1ebadv,ebadv 8a91 e8aa91 8a91 00008a91 bba5 bba5 bba5 bba5 bba5 bba5 bba5
+4274 bba6 bba6 bba6 * 6b2e * 8ea1ebae,ebae,8ea1ebaev,ebaev 8a9a e8aa9a 8a9a 00008a9a bba6 bba6 bba6 bba6 bba6 bba6 bba6
+4275 bba7 bba7 bba7 * 6b2f * 8ea1ebaf,ebaf,8ea1ebafv,ebafv 8aa7 e8aaa7 8aa7 00008aa7 bba7 bba7 bba7 bba7 bba7 bba7 bba7
+4276 bba8 bba8 bba8 * 6b30 * 8ea1ebb0,ebb0,8ea1ebb0v,ebb0v 8c6a e8b1aa 8c6a 00008c6a bba8 bba8 bba8 bba8 bba8 bba8 bba8
+4277 bba9 bba9 bba9 * 6b31 * 8ea1ebb1,ebb1,8ea1ebb1v,ebb1v 8c8d e8b28d 8c8d 00008c8d bba9 bba9 bba9 bba9 bba9 bba9 bba9
+4278 bbaa bbaa bbaa * 6b32 * 8ea1ebb2,ebb2,8ea1ebb2v,ebb2v 8c8c e8b28c 8c8c 00008c8c bbaa bbaa bbaa bbaa bbaa bbaa bbaa
+4279 bbab bbab bbab * 6b33 * 8ea1ebb3,ebb3,8ea1ebb3v,ebb3v 8cd3 e8b393 8cd3 00008cd3 bbab bbab bbab bbab bbab bbab bbab
+4280 bbac bbac bbac * 6b34 * 8ea1ebb4,ebb4,8ea1ebb4v,ebb4v 8cd1 e8b391 8cd1 00008cd1 bbac bbac bbac bbac bbac bbac bbac
+4281 bbad bbad bbad * 6b35 * 8ea1ebb5,ebb5,8ea1ebb5v,ebb5v 8cd2 e8b392 8cd2 00008cd2 bbad bbad bbad bbad bbad bbad bbad
+4282 bbae bbae bbae * 6b36 * 8ea1ebb6,ebb6,8ea1ebb6v,ebb6v 8d6b e8b5ab 8d6b 00008d6b bbae bbae bbae bbae bbae bbae bbae
+4283 bbaf bbaf bbaf * 6b37 * 8ea1ebb7,ebb7,8ea1ebb7v,ebb7v 8d99 e8b699 8d99 00008d99 bbaf bbaf bbaf bbaf bbaf bbaf bbaf
+4284 bbb0 bbb0 bbb0 * 6b38 * 8ea1ebb8,ebb8,8ea1ebb8v,ebb8v 8d95 e8b695 8d95 00008d95 bbb0 bbb0 bbb0 bbb0 bbb0 bbb0 bbb0
+4285 bbb1 bbb1 bbb1 * 6b39 * 8ea1ebb9,ebb9,8ea1ebb9v,ebb9v 8dfc e8b7bc 8dfc 00008dfc bbb1 bbb1 bbb1 bbb1 bbb1 bbb1 bbb1
+4286 bbb2 bbb2 bbb2 * 6b3a * 8ea1ebba,ebba,8ea1ebbav,ebbav 8f14 e8bc94 8f14 00008f14 bbb2 bbb2 bbb2 bbb2 bbb2 bbb2 bbb2
+4287 bbb3 bbb3 bbb3 * 6b3b * 8ea1ebbb,ebbb,8ea1ebbbv,ebbbv 8f12 e8bc92 8f12 00008f12 bbb3 bbb3 bbb3 bbb3 bbb3 bbb3 bbb3
+4288 bbb4 bbb4 bbb4 * 6b3c * 8ea1ebbc,ebbc,8ea1ebbcv,ebbcv 8f15 e8bc95 8f15 00008f15 bbb4 bbb4 bbb4 bbb4 bbb4 bbb4 bbb4
+4289 bbb5 bbb5 bbb5 * 6b3d * 8ea1ebbd,ebbd,8ea1ebbdv,ebbdv 8f13 e8bc93 8f13 00008f13 bbb5 bbb5 bbb5 bbb5 bbb5 bbb5 bbb5
+4290 bbb6 bbb6 bbb6 * 6b3e * 8ea1ebbe,ebbe,8ea1ebbev,ebbev 8fa3 e8bea3 8fa3 00008fa3 bbb6 bbb6 bbb6 bbb6 bbb6 bbb6 bbb6
+4291 bbb7 bbb7 bbb7 * 6b3f * 8ea1ebbf,ebbf,8ea1ebbfv,ebbfv 9060 e981a0 9060 00009060 bbb7 bbb7 bbb7 bbb7 bbb7 bbb7 bbb7
+4292 bbb8 bbb8 bbb8 * 6b40 * 8ea1ebc0,ebc0,8ea1ebc0v,ebc0v 9058 e98198 9058 00009058 bbb8 bbb8 bbb8 bbb8 bbb8 bbb8 bbb8
+4293 bbb9 bbb9 bbb9 * 6b41 * 8ea1ebc1,ebc1,8ea1ebc1v,ebc1v 905c e9819c 905c 0000905c bbb9 bbb9 bbb9 bbb9 bbb9 bbb9 bbb9
+4294 bbba bbba bbba * 6b42 * 8ea1ebc2,ebc2,8ea1ebc2v,ebc2v 9063 e981a3 9063 00009063 bbba bbba bbba bbba bbba bbba bbba
+4295 bbbb bbbb bbbb * 6b43 * 8ea1ebc3,ebc3,8ea1ebc3v,ebc3v 9059 e98199 9059 00009059 bbbb bbbb bbbb bbbb bbbb bbbb bbbb
+4296 bbbc bbbc bbbc * 6b44 * 8ea1ebc4,ebc4,8ea1ebc4v,ebc4v 905e e9819e 905e 0000905e bbbc bbbc bbbc bbbc bbbc bbbc bbbc
+4297 bbbd bbbd bbbd * 6b45 * 8ea1ebc5,ebc5,8ea1ebc5v,ebc5v 9062 e981a2 9062 00009062 bbbd bbbd bbbd bbbd bbbd bbbd bbbd
+4298 bbbe bbbe bbbe * 6b46 * 8ea1ebc6,ebc6,8ea1ebc6v,ebc6v 905d e9819d 905d 0000905d bbbe bbbe bbbe bbbe bbbe bbbe bbbe
+4299 bbbf bbbf bbbf * 6b47 * 8ea1ebc7,ebc7,8ea1ebc7v,ebc7v 905b e9819b 905b 0000905b bbbf bbbf bbbf bbbf bbbf bbbf bbbf
+4300 bbc0 bbc0 bbc0 * 6b48 * 8ea1ebc8,ebc8,8ea1ebc8v,ebc8v 9119 e98499 9119 00009119 bbc0 bbc0 bbc0 bbc0 bbc0 bbc0 bbc0
+4301 bbc1 bbc1 bbc1 * 6b49 * 8ea1ebc9,ebc9,8ea1ebc9v,ebc9v 9118 e98498 9118 00009118 bbc1 bbc1 bbc1 bbc1 bbc1 bbc1 bbc1
+4302 bbc2 bbc2 bbc2 * 6b4a * 8ea1ebca,ebca,8ea1ebcav,ebcav 911e e9849e 911e 0000911e bbc2 bbc2 bbc2 bbc2 bbc2 bbc2 bbc2
+4303 bbc3 bbc3 bbc3 * 6b4b * 8ea1ebcb,ebcb,8ea1ebcbv,ebcbv 9175 e985b5 9175 00009175 bbc3 bbc3 bbc3 bbc3 bbc3 bbc3 bbc3
+4304 bbc4 bbc4 bbc4 * 6b4c * 8ea1ebcc,ebcc,8ea1ebccv,ebccv 9178 e985b8 9178 00009178 bbc4 bbc4 bbc4 bbc4 bbc4 bbc4 bbc4
+4305 bbc5 bbc5 bbc5 * 6b4d * 8ea1ebcd,ebcd,8ea1ebcdv,ebcdv 9177 e985b7 9177 00009177 bbc5 bbc5 bbc5 bbc5 bbc5 bbc5 bbc5
+4306 bbc6 bbc6 bbc6 * 6b4e * 8ea1ebce,ebce,8ea1ebcev,ebcev 9174 e985b4 9174 00009174 bbc6 bbc6 bbc6 bbc6 bbc6 bbc6 bbc6
+4307 bbc7 bbc7 bbc7 * 6b4f * 8ea1ebcf,ebcf,8ea1ebcfv,ebcfv 9278 e989b8 9278 00009278 bbc7 bbc7 bbc7 bbc7 bbc7 bbc7 bbc7
+4308 be52 be52 be52 * 6b50 * 8ea1ebd0,ebd0,8ea1ebd0v,ebd0v 92ac e98aac 92ac 000092ac be52 be52 be52 be52 be52 be52 be52
+4309 bbc8 bbc8 bbc8 * 6b51 * 8ea1ebd1,ebd1,8ea1ebd1v,ebd1v 9280 e98a80 9280 00009280 bbc8 bbc8 bbc8 bbc8 bbc8 bbc8 bbc8
+4310 bbc9 bbc9 bbc9 * 6b52 * 8ea1ebd2,ebd2,8ea1ebd2v,ebd2v 9285 e98a85 9285 00009285 bbc9 bbc9 bbc9 bbc9 bbc9 bbc9 bbc9
+4311 bbca bbca bbca * 6b53 * 8ea1ebd3,ebd3,8ea1ebd3v,ebd3v 9298 e98a98 9298 00009298 bbca bbca bbca bbca bbca bbca bbca
+4312 bbcb bbcb bbcb * 6b54 * 8ea1ebd4,ebd4,8ea1ebd4v,ebd4v 9296 e98a96 9296 00009296 bbcb bbcb bbcb bbcb bbcb bbcb bbcb
+4313 bbcc bbcc bbcc * 6b55 * 8ea1ebd5,ebd5,8ea1ebd5v,ebd5v 927b e989bb 927b 0000927b bbcc bbcc bbcc bbcc bbcc bbcc bbcc
+4314 bbcd bbcd bbcd * 6b56 * 8ea1ebd6,ebd6,8ea1ebd6v,ebd6v 9293 e98a93 9293 00009293 bbcd bbcd bbcd bbcd bbcd bbcd bbcd
+4315 bbce bbce bbce * 6b57 * 8ea1ebd7,ebd7,8ea1ebd7v,ebd7v 929c e98a9c 929c 0000929c bbce bbce bbce bbce bbce bbce bbce
+4316 bbcf bbcf bbcf * 6b58 * 8ea1ebd8,ebd8,8ea1ebd8v,ebd8v 92a8 e98aa8 92a8 000092a8 bbcf bbcf bbcf bbcf bbcf bbcf bbcf
+4317 bbd0 bbd0 bbd0 * 6b59 * 8ea1ebd9,ebd9,8ea1ebd9v,ebd9v 927c e989bc 927c 0000927c bbd0 bbd0 bbd0 bbd0 bbd0 bbd0 bbd0
+4318 bbd1 bbd1 bbd1 * 6b5a * 8ea1ebda,ebda,8ea1ebdav,ebdav 9291 e98a91 9291 00009291 bbd1 bbd1 bbd1 bbd1 bbd1 bbd1 bbd1
+4319 bbd2 bbd2 bbd2 * 6b5b * 8ea1ebdb,ebdb,8ea1ebdbv,ebdbv 95a1 e996a1 95a1 000095a1 bbd2 bbd2 bbd2 bbd2 bbd2 bbd2 bbd2
+4320 bbd3 bbd3 bbd3 * 6b5c * 8ea1ebdc,ebdc,8ea1ebdcv,ebdcv 95a8 e996a8 95a8 000095a8 bbd3 bbd3 bbd3 bbd3 bbd3 bbd3 bbd3
+4321 bbd4 bbd4 bbd4 * 6b5d * 8ea1ebdd,ebdd,8ea1ebddv,ebddv 95a9 e996a9 95a9 000095a9 bbd4 bbd4 bbd4 bbd4 bbd4 bbd4 bbd4
+4322 bbd5 bbd5 bbd5 * 6b5e * 8ea1ebde,ebde,8ea1ebdev,ebdev 95a3 e996a3 95a3 000095a3 bbd5 bbd5 bbd5 bbd5 bbd5 bbd5 bbd5
+4323 bbd6 bbd6 bbd6 * 6b5f * 8ea1ebdf,ebdf,8ea1ebdfv,ebdfv 95a5 e996a5 95a5 000095a5 bbd6 bbd6 bbd6 bbd6 bbd6 bbd6 bbd6
+4324 bbd7 bbd7 bbd7 * 6b60 * 8ea1ebe0,ebe0,8ea1ebe0v,ebe0v 95a4 e996a4 95a4 000095a4 bbd7 bbd7 bbd7 bbd7 bbd7 bbd7 bbd7
+4325 bbd8 bbd8 bbd8 * 6b61 * 8ea1ebe1,ebe1,8ea1ebe1v,ebe1v 9699 e99a99 9699 00009699 bbd8 bbd8 bbd8 bbd8 bbd8 bbd8 bbd8
+4326 bbd9 bbd9 bbd9 * 6b62 * 8ea1ebe2,ebe2,8ea1ebe2v,ebe2v 969c e99a9c 969c 0000969c bbd9 bbd9 bbd9 bbd9 bbd9 bbd9 bbd9
+4327 bbda bbda bbda * 6b63 * 8ea1ebe3,ebe3,8ea1ebe3v,ebe3v 969b e99a9b 969b 0000969b bbda bbda bbda bbda bbda bbda bbda
+4328 bbdb bbdb bbdb * 6b64 * 8ea1ebe4,ebe4,8ea1ebe4v,ebe4v 96cc e99b8c 96cc 000096cc bbdb bbdb bbdb bbdb bbdb bbdb bbdb
+4329 bbdc bbdc bbdc * 6b65 * 8ea1ebe5,ebe5,8ea1ebe5v,ebe5v 96d2 e99b92 96d2 000096d2 bbdc bbdc bbdc bbdc bbdc bbdc bbdc
+4330 bbdd bbdd bbdd * 6b66 * 8ea1ebe6,ebe6,8ea1ebe6v,ebe6v 9700 e99c80 9700 00009700 bbdd bbdd bbdd bbdd bbdd bbdd bbdd
+4331 bbde bbde bbde * 6b67 * 8ea1ebe7,ebe7,8ea1ebe7v,ebe7v 977c e99dbc 977c 0000977c bbde bbde bbde bbde bbde bbde bbde
+4332 bbdf bbdf bbdf * 6b68 * 8ea1ebe8,ebe8,8ea1ebe8v,ebe8v 9785 e99e85 9785 00009785 bbdf bbdf bbdf bbdf bbdf bbdf bbdf
+4333 bbe0 bbe0 bbe0 * 6b69 * 8ea1ebe9,ebe9,8ea1ebe9v,ebe9v 97f6 e99fb6 97f6 000097f6 bbe0 bbe0 bbe0 bbe0 bbe0 bbe0 bbe0
+4334 bbe1 bbe1 bbe1 * 6b6a * 8ea1ebea,ebea,8ea1ebeav,ebeav 9817 e9a097 9817 00009817 bbe1 bbe1 bbe1 bbe1 bbe1 bbe1 bbe1
+4335 bbe2 bbe2 bbe2 * 6b6b * 8ea1ebeb,ebeb,8ea1ebebv,ebebv 9818 e9a098 9818 00009818 bbe2 bbe2 bbe2 bbe2 bbe2 bbe2 bbe2
+4336 bbe3 bbe3 bbe3 * 6b6c * 8ea1ebec,ebec,8ea1ebecv,ebecv 98af e9a2af 98af 000098af bbe3 bbe3 bbe3 bbe3 bbe3 bbe3 bbe3
+4337 bbe4 bbe4 bbe4 * 6b6d * 8ea1ebed,ebed,8ea1ebedv,ebedv 98b1 e9a2b1 98b1 000098b1 bbe4 bbe4 bbe4 bbe4 bbe4 bbe4 bbe4
+4338 bbe5 bbe5 bbe5 * 6b6e * 8ea1ebee,ebee,8ea1ebeev,ebeev 9903 e9a483 9903 00009903 bbe5 bbe5 bbe5 bbe5 bbe5 bbe5 bbe5
+4339 bbe6 bbe6 bbe6 * 6b6f * 8ea1ebef,ebef,8ea1ebefv,ebefv 9905 e9a485 9905 00009905 bbe6 bbe6 bbe6 bbe6 bbe6 bbe6 bbe6
+4340 bbe7 bbe7 bbe7 * 6b70 * 8ea1ebf0,ebf0,8ea1ebf0v,ebf0v 990c e9a48c 990c 0000990c bbe7 bbe7 bbe7 bbe7 bbe7 bbe7 bbe7
+4341 bbe8 bbe8 bbe8 * 6b71 * 8ea1ebf1,ebf1,8ea1ebf1v,ebf1v 9909 e9a489 9909 00009909 bbe8 bbe8 bbe8 bbe8 bbe8 bbe8 bbe8
+4342 bbe9 bbe9 bbe9 * 6b72 * 8ea1ebf2,ebf2,8ea1ebf2v,ebf2v 99c1 e9a781 99c1 000099c1 bbe9 bbe9 bbe9 bbe9 bbe9 bbe9 bbe9
+4343 bbea bbea bbea * 6b73 * 8ea1ebf3,ebf3,8ea1ebf3v,ebf3v 9aaf e9aaaf 9aaf 00009aaf bbea bbea bbea bbea bbea bbea bbea
+4344 bbeb bbeb bbeb * 6b74 * 8ea1ebf4,ebf4,8ea1ebf4v,ebf4v 9ab0 e9aab0 9ab0 00009ab0 bbeb bbeb bbeb bbeb bbeb bbeb bbeb
+4345 bbec bbec bbec * 6b75 * 8ea1ebf5,ebf5,8ea1ebf5v,ebf5v 9ae6 e9aba6 9ae6 00009ae6 bbec bbec bbec bbec bbec bbec bbec
+4346 bbed bbed bbed * 6b76 * 8ea1ebf6,ebf6,8ea1ebf6v,ebf6v 9b41 e9ad81 9b41 00009b41 bbed bbed bbed bbed bbed bbed bbed
+4347 bbee bbee bbee * 6b77 * 8ea1ebf7,ebf7,8ea1ebf7v,ebf7v 9b42 e9ad82 9b42 00009b42 bbee bbee bbee bbee bbee bbee bbee
+4348 bbef bbef bbef * 6b78 * 8ea1ebf8,ebf8,8ea1ebf8v,ebf8v 9cf4 e9b3b4 9cf4 00009cf4 bbef bbef bbef bbef bbef bbef bbef
+4349 bbf0 bbf0 bbf0 * 6b79 * 8ea1ebf9,ebf9,8ea1ebf9v,ebf9v 9cf6 e9b3b6 9cf6 00009cf6 bbf0 bbf0 bbf0 bbf0 bbf0 bbf0 bbf0
+4350 bbf1 bbf1 bbf1 * 6b7a * 8ea1ebfa,ebfa,8ea1ebfav,ebfav 9cf3 e9b3b3 9cf3 00009cf3 bbf1 bbf1 bbf1 bbf1 bbf1 bbf1 bbf1
+4351 bbf2 bbf2 bbf2 * 6b7b * 8ea1ebfb,ebfb,8ea1ebfbv,ebfbv 9ebc e9babc 9ebc 00009ebc bbf2 bbf2 bbf2 bbf2 bbf2 bbf2 bbf2
+4352 bbf3 bbf3 bbf3 * 2934,6b7c * 8ea1a9b4,8ea1ebfc,a9b4,ebfc,8ea1a9b4v,8ea1ebfcv,a9b4v,ebfcv 9f3b e9bcbb,e2bf90 9f3b,2fd0 00009f3b,00002fd0 bbf3 bbf3 bbf3 bbf3 bbf3 bbf3 bbf3
+4353 bbf4 bbf4 bbf4 * 2935,6b7d * 8ea1a9b5,8ea1ebfd,a9b5,ebfd,8ea1a9b5v,8ea1ebfdv,a9b5v,ebfdv 9f4a e9bd8a,e2bf91 9f4a,2fd1 00009f4a,00002fd1 bbf4 bbf4 bbf4 bbf4 bbf4 bbf4 bbf4
+4354 bbf5 bbf5 bbf5 * 6b7e * 8ea1ebfe,ebfe,8ea1ebfev,ebfev 5104 e58484 5104 00005104 bbf5 bbf5 bbf5 bbf5 bbf5 bbf5 bbf5
+4355 bbf6 bbf6 bbf6 * 6c21 * 8ea1eca1,eca1,8ea1eca1v,eca1v 5100 e58480 5100 00005100 bbf6 bbf6 bbf6 bbf6 bbf6 bbf6 bbf6
+4356 bbf7 bbf7 bbf7 * 6c22 * 8ea1eca2,eca2,8ea1eca2v,eca2v 50fb e583bb 50fb 000050fb bbf7 bbf7 bbf7 bbf7 bbf7 bbf7 bbf7
+4357 bbf8 bbf8 bbf8 * 6c23 * 8ea1eca3,eca3,8ea1eca3v,eca3v 50f5 e583b5 50f5 000050f5 bbf8 bbf8 bbf8 bbf8 bbf8 bbf8 bbf8
+4358 bbf9 bbf9 bbf9 * 6c24 * 8ea1eca4,eca4,8ea1eca4v,eca4v 50f9 e583b9 50f9 000050f9 bbf9 bbf9 bbf9 bbf9 bbf9 bbf9 bbf9
+4359 bbfa bbfa bbfa * 6c25 * 8ea1eca5,eca5,8ea1eca5v,eca5v 5102 e58482 5102 00005102 bbfa bbfa bbfa bbfa bbfa bbfa bbfa
+4360 bbfb bbfb bbfb * 6c26 * 8ea1eca6,eca6,8ea1eca6v,eca6v 5108 e58488 5108 00005108 bbfb bbfb bbfb bbfb bbfb bbfb bbfb
+4361 bbfc bbfc bbfc * 6c27 * 8ea1eca7,eca7,8ea1eca7v,eca7v 5109 e58489 5109 00005109 bbfc bbfc bbfc bbfc bbfc bbfc bbfc
+4362 bbfd bbfd bbfd * 6c28 * 8ea1eca8,eca8,8ea1eca8v,eca8v 5105 e58485 5105 00005105 bbfd bbfd bbfd bbfd bbfd bbfd bbfd
+4363 bbfe bbfe bbfe * 6c29 * 8ea1eca9,eca9,8ea1eca9v,eca9v 51dc e5879c 51dc 000051dc bbfe bbfe bbfe bbfe bbfe bbfe bbfe
+4364 bc40 bc40 bc40 * 6c2a * 8ea1ecaa,ecaa,8ea1ecaav,ecaav 5287 e58a87 5287 00005287 bc40 bc40 bc40 bc40 bc40 bc40 bc40
+4365 bc41 bc41 bc41 * 6c2b * 8ea1ecab,ecab,8ea1ecabv,ecabv 5288 e58a88 5288 00005288 bc41 bc41 bc41 bc41 bc41 bc41 bc41
+4366 bc42 bc42 bc42 * 6c2c * 8ea1ecac,ecac,8ea1ecacv,ecacv 5289 e58a89 5289 00005289 bc42 bc42 bc42 bc42 bc42 bc42 bc42
+4367 bc43 bc43 bc43 * 6c2d * 8ea1ecad,ecad,8ea1ecadv,ecadv 528d e58a8d 528d 0000528d bc43 bc43 bc43 bc43 bc43 bc43 bc43
+4368 bc44 bc44 bc44 * 6c2e * 8ea1ecae,ecae,8ea1ecaev,ecaev 528a e58a8a 528a 0000528a bc44 bc44 bc44 bc44 bc44 bc44 bc44
+4369 bc45 bc45 bc45 * 6c2f * 8ea1ecaf,ecaf,8ea1ecafv,ecafv 52f0 e58bb0 52f0 000052f0 bc45 bc45 bc45 bc45 bc45 bc45 bc45
+4370 bc46 bc46 bc46 * 6c30 * 8ea1ecb0,ecb0,8ea1ecb0v,ecb0v 53b2 e58eb2 53b2 000053b2 bc46 bc46 bc46 bc46 bc46 bc46 bc46
+4371 bc47 bc47 bc47 * 6c31 * 8ea1ecb1,ecb1,8ea1ecb1v,ecb1v 562e e598ae 562e 0000562e bc47 bc47 bc47 bc47 bc47 bc47 bc47
+4372 bc48 bc48 bc48 * 6c32 * 8ea1ecb2,ecb2,8ea1ecb2v,ecb2v 563b e598bb 563b 0000563b bc48 bc48 bc48 bc48 bc48 bc48 bc48
+4373 bc49 bc49 bc49 * 6c33 * 8ea1ecb3,ecb3,8ea1ecb3v,ecb3v 5639 e598b9 5639 00005639 bc49 bc49 bc49 bc49 bc49 bc49 bc49
+4374 bc4a bc4a bc4a * 6c34 * 8ea1ecb4,ecb4,8ea1ecb4v,ecb4v 5632 e598b2 5632 00005632 bc4a bc4a bc4a bc4a bc4a bc4a bc4a
+4375 bc4b bc4b bc4b * 6c35 * 8ea1ecb5,ecb5,8ea1ecb5v,ecb5v 563f e598bf 563f 0000563f bc4b bc4b bc4b bc4b bc4b bc4b bc4b
+4376 bc4c bc4c bc4c * 6c36 * 8ea1ecb6,ecb6,8ea1ecb6v,ecb6v 5634 e598b4 5634 00005634 bc4c bc4c bc4c bc4c bc4c bc4c bc4c
+4377 bc4d bc4d bc4d * 6c37 * 8ea1ecb7,ecb7,8ea1ecb7v,ecb7v 5629 e598a9 5629 00005629 bc4d bc4d bc4d bc4d bc4d bc4d bc4d
+4378 bc4e bc4e bc4e * 6c38 * 8ea1ecb8,ecb8,8ea1ecb8v,ecb8v 5653 e59993 5653 00005653 bc4e bc4e bc4e bc4e bc4e bc4e bc4e
+4379 bc4f bc4f bc4f * 6c39 * 8ea1ecb9,ecb9,8ea1ecb9v,ecb9v 564e e5998e 564e 0000564e bc4f bc4f bc4f bc4f bc4f bc4f bc4f
+4380 bc50 bc50 bc50 * 6c3a * 8ea1ecba,ecba,8ea1ecbav,ecbav 5657 e59997 5657 00005657 bc50 bc50 bc50 bc50 bc50 bc50 bc50
+4381 bc51 bc51 bc51 * 6c3b * 8ea1ecbb,ecbb,8ea1ecbbv,ecbbv 5674 e599b4 5674 00005674 bc51 bc51 bc51 bc51 bc51 bc51 bc51
+4382 bc52 bc52 bc52 * 6c3c * 8ea1ecbc,ecbc,8ea1ecbcv,ecbcv 5636 e598b6 5636 00005636 bc52 bc52 bc52 bc52 bc52 bc52 bc52
+4383 bc53 bc53 bc53 * 6c3d * 8ea1ecbd,ecbd,8ea1ecbdv,ecbdv 562f e598af 562f 0000562f bc53 bc53 bc53 bc53 bc53 bc53 bc53
+4384 bc54 bc54 bc54 * 6c3e * 8ea1ecbe,ecbe,8ea1ecbev,ecbev 5630 e598b0 5630 00005630 bc54 bc54 bc54 bc54 bc54 bc54 bc54
+4385 bc55 bc55 bc55 * 6c3f * 8ea1ecbf,ecbf,8ea1ecbfv,ecbfv 5880 e5a280 5880 00005880 bc55 bc55 bc55 bc55 bc55 bc55 bc55
+4386 bc56 bc56 bc56 * 6c40 * 8ea1ecc0,ecc0,8ea1ecc0v,ecc0v 589f e5a29f 589f 0000589f bc56 bc56 bc56 bc56 bc56 bc56 bc56
+4387 bc57 bc57 bc57 * 6c41 * 8ea1ecc1,ecc1,8ea1ecc1v,ecc1v 589e e5a29e 589e 0000589e bc57 bc57 bc57 bc57 bc57 bc57 bc57
+4388 bc58 bc58 bc58 * 6c42 * 8ea1ecc2,ecc2,8ea1ecc2v,ecc2v 58b3 e5a2b3 58b3 000058b3 bc58 bc58 bc58 bc58 bc58 bc58 bc58
+4389 bc59 bc59 bc59 * 6c43 * 8ea1ecc3,ecc3,8ea1ecc3v,ecc3v 589c e5a29c 589c 0000589c bc59 bc59 bc59 bc59 bc59 bc59 bc59
+4390 bc5a bc5a bc5a * 6c44 * 8ea1ecc4,ecc4,8ea1ecc4v,ecc4v 58ae e5a2ae 58ae 000058ae bc5a bc5a bc5a bc5a bc5a bc5a bc5a
+4391 bc5b bc5b bc5b * 6c45 * 8ea1ecc5,ecc5,8ea1ecc5v,ecc5v 58a9 e5a2a9 58a9 000058a9 bc5b bc5b bc5b bc5b bc5b bc5b bc5b
+4392 bc5c bc5c bc5c * 6c46 * 8ea1ecc6,ecc6,8ea1ecc6v,ecc6v 58a6 e5a2a6 58a6 000058a6 bc5c bc5c bc5c bc5c bc5c bc5c bc5c
+4393 bc5d bc5d bc5d * 6c47 * 8ea1ecc7,ecc7,8ea1ecc7v,ecc7v 596d e5a5ad 596d 0000596d bc5d bc5d bc5d bc5d bc5d bc5d bc5d
+4394 bc5e bc5e bc5e * 6c48 * 8ea1ecc8,ecc8,8ea1ecc8v,ecc8v 5b09 e5ac89 5b09 00005b09 bc5e bc5e bc5e bc5e bc5e bc5e bc5e
+4395 bc5f bc5f bc5f * 6c49 * 8ea1ecc9,ecc9,8ea1ecc9v,ecc9v 5afb e5abbb 5afb 00005afb bc5f bc5f bc5f bc5f bc5f bc5f bc5f
+4396 bc60 bc60 bc60 * 6c4a * 8ea1ecca,ecca,8ea1eccav,eccav 5b0b e5ac8b 5b0b 00005b0b bc60 bc60 bc60 bc60 bc60 bc60 bc60
+4397 bc61 bc61 bc61 * 6c4b * 8ea1eccb,eccb,8ea1eccbv,eccbv 5af5 e5abb5 5af5 00005af5 bc61 bc61 bc61 bc61 bc61 bc61 bc61
+4398 bc62 bc62 bc62 * 6c4c * 8ea1eccc,eccc,8ea1ecccv,ecccv 5b0c e5ac8c 5b0c 00005b0c bc62 bc62 bc62 bc62 bc62 bc62 bc62
+4399 bc63 bc63 bc63 * 6c4d * 8ea1eccd,eccd,8ea1eccdv,eccdv 5b08 e5ac88 5b08 00005b08 bc63 bc63 bc63 bc63 bc63 bc63 bc63
+4400 bc64 bc64 bc64 * 6c4e * 8ea1ecce,ecce,8ea1eccev,eccev 5bee e5afae 5bee 00005bee bc64 bc64 bc64 bc64 bc64 bc64 bc64
+4401 bc65 bc65 bc65 * 6c4f * 8ea1eccf,eccf,8ea1eccfv,eccfv 5bec e5afac 5bec 00005bec bc65 bc65 bc65 bc65 bc65 bc65 bc65
+4402 bc66 bc66 bc66 * 6c50 * 8ea1ecd0,ecd0,8ea1ecd0v,ecd0v 5be9 e5afa9 5be9 00005be9 bc66 bc66 bc66 bc66 bc66 bc66 bc66
+4403 bc67 bc67 bc67 * 6c51 * 8ea1ecd1,ecd1,8ea1ecd1v,ecd1v 5beb e5afab 5beb 00005beb bc67 bc67 bc67 bc67 bc67 bc67 bc67
+4404 bc68 bc68 bc68 * 6c52 * 8ea1ecd2,ecd2,8ea1ecd2v,ecd2v 5c64 e5b1a4 5c64 00005c64 bc68 bc68 bc68 bc68 bc68 bc68 bc68
+4405 bc69 bc69 bc69 * 6c53 * 8ea1ecd3,ecd3,8ea1ecd3v,ecd3v 5c65 e5b1a5 5c65 00005c65 bc69 bc69 bc69 bc69 bc69 bc69 bc69
+4406 bc6a bc6a bc6a * 6c54 * 8ea1ecd4,ecd4,8ea1ecd4v,ecd4v 5d9d e5b69d 5d9d 00005d9d bc6a bc6a bc6a bc6a bc6a bc6a bc6a
+4407 bc6b bc6b bc6b * 6c55 * 8ea1ecd5,ecd5,8ea1ecd5v,ecd5v 5d94 e5b694 5d94 00005d94 bc6b bc6b bc6b bc6b bc6b bc6b bc6b
+4408 bc6c bc6c bc6c * 6c56 * 8ea1ecd6,ecd6,8ea1ecd6v,ecd6v 5e62 e5b9a2 5e62 00005e62 bc6c bc6c bc6c bc6c bc6c bc6c bc6c
+4409 bc6d bc6d bc6d * 6c57 * 8ea1ecd7,ecd7,8ea1ecd7v,ecd7v 5e5f e5b99f 5e5f 00005e5f bc6d bc6d bc6d bc6d bc6d bc6d bc6d
+4410 bc6e bc6e bc6e * 6c58 * 8ea1ecd8,ecd8,8ea1ecd8v,ecd8v 5e61 e5b9a1 5e61 00005e61 bc6e bc6e bc6e bc6e bc6e bc6e bc6e
+4411 bc6f bc6f bc6f * 6c59 * 8ea1ecd9,ecd9,8ea1ecd9v,ecd9v 5ee2 e5bba2 5ee2 00005ee2 bc6f bc6f bc6f bc6f bc6f bc6f bc6f
+4412 bc70 bc70 bc70 * 6c5a * 8ea1ecda,ecda,8ea1ecdav,ecdav 5eda e5bb9a 5eda 00005eda bc70 bc70 bc70 bc70 bc70 bc70 bc70
+4413 bc71 bc71 bc71 * 6c5b * 8ea1ecdb,ecdb,8ea1ecdbv,ecdbv 5edf e5bb9f 5edf 00005edf bc71 bc71 bc71 bc71 bc71 bc71 bc71
+4414 bc72 bc72 bc72 * 6c5c * 8ea1ecdc,ecdc,8ea1ecdcv,ecdcv 5edd e5bb9d 5edd 00005edd bc72 bc72 bc72 bc72 bc72 bc72 bc72
+4415 bc73 bc73 bc73 * 6c5d * 8ea1ecdd,ecdd,8ea1ecddv,ecddv 5ee3 e5bba3 5ee3 00005ee3 bc73 bc73 bc73 bc73 bc73 bc73 bc73
+4416 bc74 bc74 bc74 * 6c5e * 8ea1ecde,ecde,8ea1ecdev,ecdev 5ee0 e5bba0 5ee0 00005ee0 bc74 bc74 bc74 bc74 bc74 bc74 bc74
+4417 bc75 bc75 bc75 * 6c5f * 8ea1ecdf,ecdf,8ea1ecdfv,ecdfv 5f48 e5bd88 5f48 00005f48 bc75 bc75 bc75 bc75 bc75 bc75 bc75
+4418 bc76 bc76 bc76 * 6c60 * 8ea1ece0,ece0,8ea1ece0v,ece0v 5f71 e5bdb1 5f71 00005f71 bc76 bc76 bc76 bc76 bc76 bc76 bc76
+4419 bc77 bc77 bc77 * 6c61 * 8ea1ece1,ece1,8ea1ece1v,ece1v 5fb7 e5beb7 5fb7 00005fb7 bc77 bc77 bc77 bc77 bc77 bc77 bc77
+4420 bc78 bc78 bc78 * 6c62 * 8ea1ece2,ece2,8ea1ece2v,ece2v 5fb5 e5beb5 5fb5 00005fb5 bc78 bc78 bc78 bc78 bc78 bc78 bc78
+4421 bc79 bc79 bc79 * 6c63 * 8ea1ece3,ece3,8ea1ece3v,ece3v 6176 e685b6 6176 00006176 bc79 bc79 bc79 bc79 bc79 bc79 bc79
+4422 bc7a bc7a bc7a * 6c64 * 8ea1ece4,ece4,8ea1ece4v,ece4v 6167 e685a7 6167 00006167 bc7a bc7a bc7a bc7a bc7a bc7a bc7a
+4423 bc7b bc7b bc7b * 6c65 * 8ea1ece5,ece5,8ea1ece5v,ece5v 616e e685ae 616e 0000616e bc7b bc7b bc7b bc7b bc7b bc7b bc7b
+4424 bc7c bc7c bc7c * 6c66 * 8ea1ece6,ece6,8ea1ece6v,ece6v 615d e6859d 615d 0000615d bc7c bc7c bc7c bc7c bc7c bc7c bc7c
+4425 bc7d bc7d bc7d * 6c67 * 8ea1ece7,ece7,8ea1ece7v,ece7v 6155 e68595 6155 00006155 bc7d bc7d bc7d bc7d bc7d bc7d bc7d
+4426 bc7e bc7e bc7e * 6c68 * 8ea1ece8,ece8,8ea1ece8v,ece8v 6182 e68682 6182 00006182 bc7e bc7e bc7e bc7e bc7e bc7e bc7e
+4427 bca1 bca1 bca1 * 6c69 * 8ea1ece9,ece9,8ea1ece9v,ece9v 617c e685bc 617c 0000617c bca1 bca1 bca1 bca1 bca1 bca1 bca1
+4428 bca2 bca2 bca2 * 6c6a * 8ea1ecea,ecea,8ea1eceav,eceav 6170 e685b0 6170 00006170 bca2 bca2 bca2 bca2 bca2 bca2 bca2
+4429 bca3 bca3 bca3 * 6c6b * 8ea1eceb,eceb,8ea1ecebv,ecebv 616b e685ab 616b 0000616b bca3 bca3 bca3 bca3 bca3 bca3 bca3
+4430 bca4 bca4 bca4 * 6c6c * 8ea1ecec,ecec,8ea1ececv,ececv 617e e685be 617e 0000617e bca4 bca4 bca4 bca4 bca4 bca4 bca4
+4431 bca5 bca5 bca5 * 6c6d * 8ea1eced,eced,8ea1ecedv,ecedv 61a7 e686a7 61a7 000061a7 bca5 bca5 bca5 bca5 bca5 bca5 bca5
+4432 bca6 bca6 bca6 * 6c6e * 8ea1ecee,ecee,8ea1eceev,eceev 6190 e68690 6190 00006190 bca6 bca6 bca6 bca6 bca6 bca6 bca6
+4433 bca7 bca7 bca7 * 6c6f * 8ea1ecef,ecef,8ea1ecefv,ecefv 61ab e686ab 61ab 000061ab bca7 bca7 bca7 bca7 bca7 bca7 bca7
+4434 bca8 bca8 bca8 * 6c70 * 8ea1ecf0,ecf0,8ea1ecf0v,ecf0v 618e e6868e 618e 0000618e bca8 bca8 bca8 bca8 bca8 bca8 bca8
+4435 bca9 bca9 bca9 * 6c71 * 8ea1ecf1,ecf1,8ea1ecf1v,ecf1v 61ac e686ac 61ac 000061ac bca9 bca9 bca9 bca9 bca9 bca9 bca9
+4436 bcaa bcaa bcaa * 6c72 * 8ea1ecf2,ecf2,8ea1ecf2v,ecf2v 619a e6869a 619a 0000619a bcaa bcaa bcaa bcaa bcaa bcaa bcaa
+4437 bcab bcab bcab * 6c73 * 8ea1ecf3,ecf3,8ea1ecf3v,ecf3v 61a4 e686a4 61a4 000061a4 bcab bcab bcab bcab bcab bcab bcab
+4438 bcac bcac bcac * 6c74 * 8ea1ecf4,ecf4,8ea1ecf4v,ecf4v 6194 e68694 6194 00006194 bcac bcac bcac bcac bcac bcac bcac
+4439 bcad bcad bcad * 6c75 * 8ea1ecf5,ecf5,8ea1ecf5v,ecf5v 61ae e686ae 61ae 000061ae bcad bcad bcad bcad bcad bcad bcad
+4440 bcae bcae bcae * 6c76 * 8ea1ecf6,ecf6,8ea1ecf6v,ecf6v 622e e688ae 622e 0000622e bcae bcae bcae bcae bcae bcae bcae
+4441 bcaf bcaf bcaf * 6c77 * 8ea1ecf7,ecf7,8ea1ecf7v,ecf7v 6469 e691a9 6469 00006469 bcaf bcaf bcaf bcaf bcaf bcaf bcaf
+4442 bcb0 bcb0 bcb0 * 6c78 * 8ea1ecf8,ecf8,8ea1ecf8v,ecf8v 646f e691af 646f 0000646f bcb0 bcb0 bcb0 bcb0 bcb0 bcb0 bcb0
+4443 bcb1 bcb1 bcb1 * 6c79 * 8ea1ecf9,ecf9,8ea1ecf9v,ecf9v 6479 e691b9 6479 00006479 bcb1 bcb1 bcb1 bcb1 bcb1 bcb1 bcb1
+4444 bcb2 bcb2 bcb2 * 6c7a * 8ea1ecfa,ecfa,8ea1ecfav,ecfav 649e e6929e 649e 0000649e bcb2 bcb2 bcb2 bcb2 bcb2 bcb2 bcb2
+4445 bcb3 bcb3 bcb3 * 6c7b * 8ea1ecfb,ecfb,8ea1ecfbv,ecfbv 64b2 e692b2 64b2 000064b2 bcb3 bcb3 bcb3 bcb3 bcb3 bcb3 bcb3
+4446 bcb4 bcb4 bcb4 * 6c7c * 8ea1ecfc,ecfc,8ea1ecfcv,ecfcv 6488 e69288 6488 00006488 bcb4 bcb4 bcb4 bcb4 bcb4 bcb4 bcb4
+4447 bcb5 bcb5 bcb5 * 6c7d * 8ea1ecfd,ecfd,8ea1ecfdv,ecfdv 6490 e69290,ee8691 6490,e191 00006490,0000e191 fcb9,bcb5 bcb5,fca3 9063,bcb5 bcb5,fcb9 bcb5 bcb5 fcb9,bcb5
+4448 bcb6 bcb6 bcb6 * 6c7e * 8ea1ecfe,ecfe,8ea1ecfev,ecfev 64b0 e692b0 64b0 000064b0 bcb6 bcb6 bcb6 bcb6 bcb6 bcb6 bcb6
+4449 bcb7 bcb7 bcb7 * 6d21 * 8ea1eda1,eda1,8ea1eda1v,eda1v 64a5 e692a5 64a5 000064a5 bcb7 bcb7 bcb7 bcb7 bcb7 bcb7 bcb7
+4450 bcb8 bcb8 bcb8 * 6d22 * 8ea1eda2,eda2,8ea1eda2v,eda2v 6493 e69293 6493 00006493 bcb8 bcb8 bcb8 bcb8 bcb8 bcb8 bcb8
+4451 bcb9 bcb9 bcb9 * 6d23 * 8ea1eda3,eda3,8ea1eda3v,eda3v 6495 e69295 6495 00006495 bcb9 bcb9 bcb9 bcb9 bcb9 bcb9 bcb9
+4452 bcba bcba bcba * 6d24 * 8ea1eda4,eda4,8ea1eda4v,eda4v 64a9 e692a9 64a9 000064a9 bcba bcba bcba bcba bcba bcba bcba
+4453 bcbb bcbb bcbb * 6d25 * 8ea1eda5,eda5,8ea1eda5v,eda5v 6492 e69292 6492 00006492 bcbb bcbb bcbb bcbb bcbb bcbb bcbb
+4454 bcbc bcbc bcbc * 6d26 * 8ea1eda6,eda6,8ea1eda6v,eda6v 64ae e692ae 64ae 000064ae bcbc bcbc bcbc bcbc bcbc bcbc bcbc
+4455 bcbd bcbd bcbd * 6d27 * 8ea1eda7,eda7,8ea1eda7v,eda7v 64ad e692ad 64ad 000064ad bcbd bcbd bcbd bcbd bcbd bcbd bcbd
+4456 bcbe bcbe bcbe * 6d28 * 8ea1eda8,eda8,8ea1eda8v,eda8v 64ab e692ab 64ab 000064ab bcbe bcbe bcbe bcbe bcbe bcbe bcbe
+4457 bcbf bcbf bcbf * 6d29 * 8ea1eda9,eda9,8ea1eda9v,eda9v 649a e6929a 649a 0000649a bcbf bcbf bcbf bcbf bcbf bcbf bcbf
+4458 bcc0 bcc0 bcc0 * 6d2a * 8ea1edaa,edaa,8ea1edaav,edaav 64ac e692ac 64ac 000064ac bcc0 bcc0 bcc0 bcc0 bcc0 bcc0 bcc0
+4459 bcc1 bcc1 bcc1 * 6d2b * 8ea1edab,edab,8ea1edabv,edabv 6499 e69299 6499 00006499 bcc1 bcc1 bcc1 bcc1 bcc1 bcc1 bcc1
+4460 bcc2 bcc2 bcc2 * 6d2c * 8ea1edac,edac,8ea1edacv,edacv 64a2 e692a2 64a2 000064a2 bcc2 bcc2 bcc2 bcc2 bcc2 bcc2 bcc2
+4461 bcc3 bcc3 bcc3 * 6d2d * 8ea1edad,edad,8ea1edadv,edadv 64b3 e692b3 64b3 000064b3 bcc3 bcc3 bcc3 bcc3 bcc3 bcc3 bcc3
+4462 bcc4 bcc4 bcc4 * 6d2e * 8ea1edae,edae,8ea1edaev,edaev 6575 e695b5 6575 00006575 bcc4 bcc4 bcc4 bcc4 bcc4 bcc4 bcc4
+4463 bcc5 bcc5 bcc5 * 6d2f * 8ea1edaf,edaf,8ea1edafv,edafv 6577 e695b7 6577 00006577 bcc5 bcc5 bcc5 bcc5 bcc5 bcc5 bcc5
+4464 bcc6 bcc6 bcc6 * 6d30 * 8ea1edb0,edb0,8ea1edb0v,edb0v 6578 e695b8 6578 00006578 bcc6 bcc6 bcc6 bcc6 bcc6 bcc6 bcc6
+4465 bcc7 bcc7 bcc7 * 6d31 * 8ea1edb1,edb1,8ea1edb1v,edb1v 66ae e69aae 66ae 000066ae bcc7 bcc7 bcc7 bcc7 bcc7 bcc7 bcc7
+4466 bcc8 bcc8 bcc8 * 6d32 * 8ea1edb2,edb2,8ea1edb2v,edb2v 66ab e69aab 66ab 000066ab bcc8 bcc8 bcc8 bcc8 bcc8 bcc8 bcc8
+4467 bcc9 bcc9 bcc9 * 6d33 * 8ea1edb3,edb3,8ea1edb3v,edb3v 66b4 e69ab4 66b4 000066b4 bcc9 bcc9 bcc9 bcc9 bcc9 bcc9 bcc9
+4468 bcca bcca bcca * 6d34 * 8ea1edb4,edb4,8ea1edb4v,edb4v 66b1 e69ab1 66b1 000066b1 bcca bcca bcca bcca bcca bcca bcca
+4469 bccb bccb bccb * 6d35 * 8ea1edb5,edb5,8ea1edb5v,edb5v 6a23 e6a8a3 6a23 00006a23 bccb bccb bccb bccb bccb bccb bccb
+4470 bccc bccc bccc * 6d36 * 8ea1edb6,edb6,8ea1edb6v,edb6v 6a1f e6a89f 6a1f 00006a1f bccc bccc bccc bccc bccc bccc bccc
+4471 bccd bccd bccd * 6d37 * 8ea1edb7,edb7,8ea1edb7v,edb7v 69e8 e6a7a8 69e8 000069e8 bccd bccd bccd bccd bccd bccd bccd
+4472 bcce bcce bcce * 6d38 * 8ea1edb8,edb8,8ea1edb8v,edb8v 6a01 e6a881 6a01 00006a01 bcce bcce bcce bcce bcce bcce bcce
+4473 bccf bccf bccf * 6d39 * 8ea1edb9,edb9,8ea1edb9v,edb9v 6a1e e6a89e 6a1e 00006a1e bccf bccf bccf bccf bccf bccf bccf
+4474 bcd0 bcd0 bcd0 * 6d3a * 8ea1edba,edba,8ea1edbav,edbav 6a19 e6a899 6a19 00006a19 bcd0 bcd0 bcd0 bcd0 bcd0 bcd0 bcd0
+4475 bcd1 bcd1 bcd1 * 6d3b * 8ea1edbb,edbb,8ea1edbbv,edbbv 69fd e6a7bd 69fd 000069fd bcd1 bcd1 bcd1 bcd1 bcd1 bcd1 bcd1
+4476 bcd2 bcd2 bcd2 * 6d3c * 8ea1edbc,edbc,8ea1edbcv,edbcv 6a21 e6a8a1 6a21 00006a21 bcd2 bcd2 bcd2 bcd2 bcd2 bcd2 bcd2
+4477 bcd3 bcd3 bcd3 * 6d3d * 8ea1edbd,edbd,8ea1edbdv,edbdv 6a13 e6a893 6a13 00006a13 bcd3 bcd3 bcd3 bcd3 bcd3 bcd3 bcd3
+4478 bcd4 bcd4 bcd4 * 6d3e * 8ea1edbe,edbe,8ea1edbev,edbev 6a0a e6a88a 6a0a 00006a0a bcd4 bcd4 bcd4 bcd4 bcd4 bcd4 bcd4
+4479 bcd5 bcd5 bcd5 * 6d3f * 8ea1edbf,edbf,8ea1edbfv,edbfv 69f3 e6a7b3 69f3 000069f3 bcd5 bcd5 bcd5 bcd5 bcd5 bcd5 bcd5
+4480 bcd6 bcd6 bcd6 * 6d40 * 8ea1edc0,edc0,8ea1edc0v,edc0v 6a02 e6a882 6a02 00006a02 bcd6 bcd6 bcd6 bcd6 bcd6 bcd6 bcd6
+4481 bcd7 bcd7 bcd7 * 6d41 * 8ea1edc1,edc1,8ea1edc1v,edc1v 6a05 e6a885 6a05 00006a05 bcd7 bcd7 bcd7 bcd7 bcd7 bcd7 bcd7
+4482 bcd8 bcd8 bcd8 * 6d42 * 8ea1edc2,edc2,8ea1edc2v,edc2v 69ed e6a7ad 69ed 000069ed bcd8 bcd8 bcd8 bcd8 bcd8 bcd8 bcd8
+4483 bcd9 bcd9 bcd9 * 6d43 * 8ea1edc3,edc3,8ea1edc3v,edc3v 6a11 e6a891 6a11 00006a11 bcd9 bcd9 bcd9 bcd9 bcd9 bcd9 bcd9
+4484 bcda bcda bcda * 6d44 * 8ea1edc4,edc4,8ea1edc4v,edc4v 6b50 e6ad90 6b50 00006b50 bcda bcda bcda bcda bcda bcda bcda
+4485 bcdb bcdb bcdb * 6d45 * 8ea1edc5,edc5,8ea1edc5v,edc5v 6b4e e6ad8e 6b4e 00006b4e bcdb bcdb bcdb bcdb bcdb bcdb bcdb
+4486 bcdc bcdc bcdc * 6d46 * 8ea1edc6,edc6,8ea1edc6v,edc6v 6ba4 e6aea4 6ba4 00006ba4 bcdc bcdc bcdc bcdc bcdc bcdc bcdc
+4487 bcdd bcdd bcdd * 6d47 * 8ea1edc7,edc7,8ea1edc7v,edc7v 6bc5 e6af85 6bc5 00006bc5 bcdd bcdd bcdd bcdd bcdd bcdd bcdd
+4488 bcde bcde bcde * 6d48 * 8ea1edc8,edc8,8ea1edc8v,edc8v 6bc6 e6af86 6bc6 00006bc6 bcde bcde bcde bcde bcde bcde bcde
+4489 bcdf bcdf bcdf * 6d49 * 8ea1edc9,edc9,8ea1edc9v,edc9v 6f3f e6bcbf 6f3f 00006f3f bcdf bcdf bcdf bcdf bcdf bcdf bcdf
+4490 bce0 bce0 bce0 * 6d4a * 8ea1edca,edca,8ea1edcav,edcav 6f7c e6bdbc 6f7c 00006f7c bce0 bce0 bce0 bce0 bce0 bce0 bce0
+4491 bce1 bce1 bce1 * 6d4b * 8ea1edcb,edcb,8ea1edcbv,edcbv 6f84 e6be84 6f84 00006f84 bce1 bce1 bce1 bce1 bce1 bce1 bce1
+4492 bce2 bce2 bce2 * 6d4c * 8ea1edcc,edcc,8ea1edccv,edccv 6f51 e6bd91 6f51 00006f51 bce2 bce2 bce2 bce2 bce2 bce2 bce2
+4493 bce3 bce3 bce3 * 6d4d * 8ea1edcd,edcd,8ea1edcdv,edcdv 6f66 e6bda6 6f66 00006f66 bce3 bce3 bce3 bce3 bce3 bce3 bce3
+4494 bce4 bce4 bce4 * 6d4e * 8ea1edce,edce,8ea1edcev,edcev 6f54 e6bd94 6f54 00006f54 bce4 bce4 bce4 bce4 bce4 bce4 bce4
+4495 bce5 bce5 bce5 * 6d4f * 8ea1edcf,edcf,8ea1edcfv,edcfv 6f86 e6be86 6f86 00006f86 bce5 bce5 bce5 bce5 bce5 bce5 bce5
+4496 bce6 bce6 bce6 * 6d50 * 8ea1edd0,edd0,8ea1edd0v,edd0v 6f6d e6bdad 6f6d 00006f6d bce6 bce6 bce6 bce6 bce6 bce6 bce6
+4497 bce7 bce7 bce7 * 6d51 * 8ea1edd1,edd1,8ea1edd1v,edd1v 6f5b e6bd9b 6f5b 00006f5b bce7 bce7 bce7 bce7 bce7 bce7 bce7
+4498 bce8 bce8 bce8 * 6d52 * 8ea1edd2,edd2,8ea1edd2v,edd2v 6f78 e6bdb8 6f78 00006f78 bce8 bce8 bce8 bce8 bce8 bce8 bce8
+4499 bce9 bce9 bce9 * 6d53 * 8ea1edd3,edd3,8ea1edd3v,edd3v 6f6e e6bdae 6f6e 00006f6e bce9 bce9 bce9 bce9 bce9 bce9 bce9
+4500 bcea bcea bcea * 6d54 * 8ea1edd4,edd4,8ea1edd4v,edd4v 6f8e e6be8e 6f8e 00006f8e bcea bcea bcea bcea bcea bcea bcea
+4501 bceb bceb bceb * 6d55 * 8ea1edd5,edd5,8ea1edd5v,edd5v 6f7a e6bdba 6f7a 00006f7a bceb bceb bceb bceb bceb bceb bceb
+4502 bcec bcec bcec * 6d56 * 8ea1edd6,edd6,8ea1edd6v,edd6v 6f70 e6bdb0 6f70 00006f70 bcec bcec bcec bcec bcec bcec bcec
+4503 bced bced bced * 6d57 * 8ea1edd7,edd7,8ea1edd7v,edd7v 6f64 e6bda4 6f64 00006f64 bced bced bced bced bced bced bced
+4504 bcee bcee bcee * 6d58 * 8ea1edd8,edd8,8ea1edd8v,edd8v 6f97 e6be97 6f97 00006f97 bcee bcee bcee bcee bcee bcee bcee
+4505 bcef bcef bcef * 6d59 * 8ea1edd9,edd9,8ea1edd9v,edd9v 6f58 e6bd98 6f58 00006f58 bcef bcef bcef bcef bcef bcef bcef
+4506 bcf0 bcf0 bcf0 * 6d5a * 8ea1edda,edda,8ea1eddav,eddav 6ed5 e6bb95 6ed5 00006ed5 bcf0 bcf0 bcf0 bcf0 bcf0 bcf0 bcf0
+4507 bcf1 bcf1 bcf1 * 6d5b * 8ea1eddb,eddb,8ea1eddbv,eddbv 6f6f e6bdaf 6f6f 00006f6f bcf1 bcf1 bcf1 bcf1 bcf1 bcf1 bcf1
+4508 bcf2 bcf2 bcf2 * 6d5c * 8ea1eddc,eddc,8ea1eddcv,eddcv 6f60 e6bda0 6f60 00006f60 bcf2 bcf2 bcf2 bcf2 bcf2 bcf2 bcf2
+4509 bcf3 bcf3 bcf3 * 6d5d * 8ea1eddd,eddd,8ea1edddv,edddv 6f5f e6bd9f 6f5f 00006f5f bcf3 bcf3 bcf3 bcf3 bcf3 bcf3 bcf3
+4510 bcf4 bcf4 bcf4 * 6d5e * 8ea1edde,edde,8ea1eddev,eddev 719f e7869f 719f 0000719f bcf4 bcf4 bcf4 bcf4 bcf4 bcf4 bcf4
+4511 bcf5 bcf5 bcf5 * 6d5f * 8ea1eddf,eddf,8ea1eddfv,eddfv 71ac e786ac 71ac 000071ac bcf5 bcf5 bcf5 bcf5 bcf5 bcf5 bcf5
+4512 bcf6 bcf6 bcf6 * 6d60 * 8ea1ede0,ede0,8ea1ede0v,ede0v 71b1 e786b1 71b1 000071b1 bcf6 bcf6 bcf6 bcf6 bcf6 bcf6 bcf6
+4513 bcf7 bcf7 bcf7 * 6d61 * 8ea1ede1,ede1,8ea1ede1v,ede1v 71a8 e786a8 71a8 000071a8 bcf7 bcf7 bcf7 bcf7 bcf7 bcf7 bcf7
+4514 bcf8 bcf8 bcf8 * 6d62 * 8ea1ede2,ede2,8ea1ede2v,ede2v 7256 e78996 7256 00007256 bcf8 bcf8 bcf8 bcf8 bcf8 bcf8 bcf8
+4515 bcf9 bcf9 bcf9 * 6d63 * 8ea1ede3,ede3,8ea1ede3v,ede3v 729b e78a9b 729b 0000729b bcf9 bcf9 bcf9 bcf9 bcf9 bcf9 bcf9
+4516 bcfa bcfa bcfa * 6d64 * 8ea1ede4,ede4,8ea1ede4v,ede4v 734e e78d8e 734e 0000734e bcfa bcfa bcfa bcfa bcfa bcfa bcfa
+4517 bcfb bcfb bcfb * 6d65 * 8ea1ede5,ede5,8ea1ede5v,ede5v 7357 e78d97 7357 00007357 bcfb bcfb bcfb bcfb bcfb bcfb bcfb
+4518 bcfc bcfc bcfc * 6d66 * 8ea1ede6,ede6,8ea1ede6v,ede6v 7469 e791a9 7469 00007469 bcfc bcfc bcfc bcfc bcfc bcfc bcfc
+4519 bcfd bcfd bcfd * 6d67 * 8ea1ede7,ede7,8ea1ede7v,ede7v 748b e7928b 748b 0000748b bcfd bcfd bcfd bcfd bcfd bcfd bcfd
+4520 bcfe bcfe bcfe * 6d68 * 8ea1ede8,ede8,8ea1ede8v,ede8v 7483 e79283 7483 00007483 bcfe bcfe bcfe bcfe bcfe bcfe bcfe
+4521 bd40 bd40 bd40 * 6d69 * 8ea1ede9,ede9,8ea1ede9v,ede9v 747e e791be 747e 0000747e bd40 bd40 bd40 bd40 bd40 bd40 bd40
+4522 bd41 bd41 bd41 * 6d6a * 8ea1edea,edea,8ea1edeav,edeav 7480 e79280 7480 00007480 bd41 bd41 bd41 bd41 bd41 bd41 bd41
+4523 bd42 bd42 bd42 * 6d6b * 8ea1edeb,edeb,8ea1edebv,edebv 757f e795bf 757f 0000757f bd42 bd42 bd42 bd42 bd42 bd42 bd42
+4524 bd43 bd43 bd43 * 6d6c * 8ea1edec,edec,8ea1edecv,edecv 7620 e798a0 7620 00007620 bd43 bd43 bd43 bd43 bd43 bd43 bd43
+4525 bd44 bd44 bd44 * 6d6d * 8ea1eded,eded,8ea1ededv,ededv 7629 e798a9 7629 00007629 bd44 bd44 bd44 bd44 bd44 bd44 bd44
+4526 bd45 bd45 bd45 * 6d6e * 8ea1edee,edee,8ea1edeev,edeev 761f e7989f 761f 0000761f bd45 bd45 bd45 bd45 bd45 bd45 bd45
+4527 bd46 bd46 bd46 * 6d6f * 8ea1edef,edef,8ea1edefv,edefv 7624 e798a4 7624 00007624 bd46 bd46 bd46 bd46 bd46 bd46 bd46
+4528 bd47 bd47 bd47 * 6d70 * 8ea1edf0,edf0,8ea1edf0v,edf0v 7626 e798a6 7626 00007626 bd47 bd47 bd47 bd47 bd47 bd47 bd47
+4529 bd48 bd48 bd48 * 6d71 * 8ea1edf1,edf1,8ea1edf1v,edf1v 7621 e798a1 7621 00007621 bd48 bd48 bd48 bd48 bd48 bd48 bd48
+4530 bd49 bd49 bd49 * 6d72 * 8ea1edf2,edf2,8ea1edf2v,edf2v 7622 e798a2 7622 00007622 bd49 bd49 bd49 bd49 bd49 bd49 bd49
+4531 bd4a bd4a bd4a * 6d73 * 8ea1edf3,edf3,8ea1edf3v,edf3v 769a e79a9a 769a 0000769a bd4a bd4a bd4a bd4a bd4a bd4a bd4a
+4532 bd4b bd4b bd4b * 6d74 * 8ea1edf4,edf4,8ea1edf4v,edf4v 76ba e79aba 76ba 000076ba bd4b bd4b bd4b bd4b bd4b bd4b bd4b
+4533 bd4c bd4c bd4c * 6d75 * 8ea1edf5,edf5,8ea1edf5v,edf5v 76e4 e79ba4 76e4 000076e4 bd4c bd4c bd4c bd4c bd4c bd4c bd4c
+4534 bd4d bd4d bd4d * 6d76 * 8ea1edf6,edf6,8ea1edf6v,edf6v 778e e79e8e 778e 0000778e bd4d bd4d bd4d bd4d bd4d bd4d bd4d
+4535 bd4e bd4e bd4e * 6d77 * 8ea1edf7,edf7,8ea1edf7v,edf7v 7787 e79e87 7787 00007787 bd4e bd4e bd4e bd4e bd4e bd4e bd4e
+4536 bd4f bd4f bd4f * 6d78 * 8ea1edf8,edf8,8ea1edf8v,edf8v 778c e79e8c 778c 0000778c bd4f bd4f bd4f bd4f bd4f bd4f bd4f
+4537 bd50 bd50 bd50 * 6d79 * 8ea1edf9,edf9,8ea1edf9v,edf9v 7791 e79e91 7791 00007791 bd50 bd50 bd50 bd50 bd50 bd50 bd50
+4538 bd51 bd51 bd51 * 6d7a * 8ea1edfa,edfa,8ea1edfav,edfav 778b e79e8b 778b 0000778b bd51 bd51 bd51 bd51 bd51 bd51 bd51
+4539 bd52 bd52 bd52 * 6d7b * 8ea1edfb,edfb,8ea1edfbv,edfbv 78cb e7a38b 78cb 000078cb bd52 bd52 bd52 bd52 bd52 bd52 bd52
+4540 bd53 bd53 bd53 * 6d7c * 8ea1edfc,edfc,8ea1edfcv,edfcv 78c5 e7a385 78c5 000078c5 bd53 bd53 bd53 bd53 bd53 bd53 bd53
+4541 bd54 bd54 bd54 * 6d7d * 8ea1edfd,edfd,8ea1edfdv,edfdv 78ba e7a2ba 78ba 000078ba bd54 bd54 bd54 bd54 bd54 bd54 bd54
+4542 bd55 bd55 bd55 * 6d7e * 8ea1edfe,edfe,8ea1edfev,edfev 78ca e7a38a 78ca 000078ca bd55 bd55 bd55 bd55 bd55 bd55 bd55
+4543 bd56 bd56 bd56 * 6e21 * 8ea1eea1,eea1,8ea1eea1v,eea1v 78be e7a2be 78be 000078be bd56 bd56 bd56 bd56 bd56 bd56 bd56
+4544 bd57 bd57 bd57 * 6e22 * 8ea1eea2,eea2,8ea1eea2v,eea2v 78d5 e7a395 78d5 000078d5 bd57 bd57 bd57 bd57 bd57 bd57 bd57
+4545 bd58 bd58 bd58 * 6e23 * 8ea1eea3,eea3,8ea1eea3v,eea3v 78bc e7a2bc 78bc 000078bc bd58 bd58 bd58 bd58 bd58 bd58 bd58
+4546 bd59 bd59 bd59 * 6e24 * 8ea1eea4,eea4,8ea1eea4v,eea4v 78d0 e7a390 78d0 000078d0 bd59 bd59 bd59 bd59 bd59 bd59 bd59
+4547 bd5a bd5a bd5a * 6e25 * 8ea1eea5,eea5,8ea1eea5v,eea5v 7a3f e7a8bf 7a3f 00007a3f bd5a bd5a bd5a bd5a bd5a bd5a bd5a
+4548 bd5b bd5b bd5b * 6e26 * 8ea1eea6,eea6,8ea1eea6v,eea6v 7a3c e7a8bc 7a3c 00007a3c bd5b bd5b bd5b bd5b bd5b bd5b bd5b
+4549 bd5c bd5c bd5c * 6e27 * 8ea1eea7,eea7,8ea1eea7v,eea7v 7a40 e7a980 7a40 00007a40 bd5c bd5c bd5c bd5c bd5c bd5c bd5c
+4550 bd5d bd5d bd5d * 6e28 * 8ea1eea8,eea8,8ea1eea8v,eea8v 7a3d e7a8bd 7a3d 00007a3d bd5d bd5d bd5d bd5d bd5d bd5d bd5d
+4551 bd5e bd5e bd5e * 6e29 * 8ea1eea9,eea9,8ea1eea9v,eea9v 7a37 e7a8b7 7a37 00007a37 bd5e bd5e bd5e bd5e bd5e bd5e bd5e
+4552 bd5f bd5f bd5f * 6e2a * 8ea1eeaa,eeaa,8ea1eeaav,eeaav 7a3b e7a8bb 7a3b 00007a3b bd5f bd5f bd5f bd5f bd5f bd5f bd5f
+4553 bd60 bd60 bd60 * 6e2b * 8ea1eeab,eeab,8ea1eeabv,eeabv 7aaf e7aaaf 7aaf 00007aaf bd60 bd60 bd60 bd60 bd60 bd60 bd60
+4554 bd61 bd61 bd61 * 6e2c * 8ea1eeac,eeac,8ea1eeacv,eeacv 7aae e7aaae 7aae 00007aae bd61 bd61 bd61 bd61 bd61 bd61 bd61
+4555 bd62 bd62 bd62 * 6e2d * 8ea1eead,eead,8ea1eeadv,eeadv 7bad e7aead 7bad 00007bad bd62 bd62 bd62 bd62 bd62 bd62 bd62
+4556 bd63 bd63 bd63 * 6e2e * 8ea1eeae,eeae,8ea1eeaev,eeaev 7bb1 e7aeb1 7bb1 00007bb1 bd63 bd63 bd63 bd63 bd63 bd63 bd63
+4557 bd64 bd64 bd64 * 6e2f * 8ea1eeaf,eeaf,8ea1eeafv,eeafv 7bc4 e7af84 7bc4 00007bc4 bd64 bd64 bd64 bd64 bd64 bd64 bd64
+4558 bd65 bd65 bd65 * 6e30 * 8ea1eeb0,eeb0,8ea1eeb0v,eeb0v 7bb4 e7aeb4 7bb4 00007bb4 bd65 bd65 bd65 bd65 bd65 bd65 bd65
+4559 bd66 bd66 bd66 * 6e31 * 8ea1eeb1,eeb1,8ea1eeb1v,eeb1v 7bc6 e7af86 7bc6 00007bc6 bd66 bd66 bd66 bd66 bd66 bd66 bd66
+4560 bd67 bd67 bd67 * 6e32 * 8ea1eeb2,eeb2,8ea1eeb2v,eeb2v 7bc7 e7af87 7bc7 00007bc7 bd67 bd67 bd67 bd67 bd67 bd67 bd67
+4561 bd68 bd68 bd68 * 6e33 * 8ea1eeb3,eeb3,8ea1eeb3v,eeb3v 7bc1 e7af81 7bc1 00007bc1 bd68 bd68 bd68 bd68 bd68 bd68 bd68
+4562 bd69 bd69 bd69 * 6e34 * 8ea1eeb4,eeb4,8ea1eeb4v,eeb4v 7ba0 e7aea0 7ba0 00007ba0 bd69 bd69 bd69 bd69 bd69 bd69 bd69
+4563 bd6a bd6a bd6a * 6e35 * 8ea1eeb5,eeb5,8ea1eeb5v,eeb5v 7bcc e7af8c 7bcc 00007bcc bd6a bd6a bd6a bd6a bd6a bd6a bd6a
+4564 bd6b bd6b bd6b * 6e36 * 8ea1eeb6,eeb6,8ea1eeb6v,eeb6v 7cca e7b38a 7cca 00007cca bd6b bd6b bd6b bd6b bd6b bd6b bd6b
+4565 bd6c bd6c bd6c * 6e37 * 8ea1eeb7,eeb7,8ea1eeb7v,eeb7v 7de0 e7b7a0 7de0 00007de0 bd6c bd6c bd6c bd6c bd6c bd6c bd6c
+4566 bd6d bd6d bd6d * 6e38 * 8ea1eeb8,eeb8,8ea1eeb8v,eeb8v 7df4 e7b7b4 7df4 00007df4 bd6d bd6d bd6d bd6d bd6d bd6d bd6d
+4567 bd6e bd6e bd6e * 6e39 * 8ea1eeb9,eeb9,8ea1eeb9v,eeb9v 7def e7b7af 7def 00007def bd6e bd6e bd6e bd6e bd6e bd6e bd6e
+4568 bd6f bd6f bd6f * 6e3a * 8ea1eeba,eeba,8ea1eebav,eebav 7dfb e7b7bb 7dfb 00007dfb bd6f bd6f bd6f bd6f bd6f bd6f bd6f
+4569 bd70 bd70 bd70 * 6e3b * 8ea1eebb,eebb,8ea1eebbv,eebbv 7dd8 e7b798 7dd8 00007dd8 bd70 bd70 bd70 bd70 bd70 bd70 bd70
+4570 bd71 bd71 bd71 * 6e3c * 8ea1eebc,eebc,8ea1eebcv,eebcv 7dec e7b7ac 7dec 00007dec bd71 bd71 bd71 bd71 bd71 bd71 bd71
+4571 bd72 bd72 bd72 * 6e3d * 8ea1eebd,eebd,8ea1eebdv,eebdv 7ddd e7b79d 7ddd 00007ddd bd72 bd72 bd72 bd72 bd72 bd72 bd72
+4572 bd73 bd73 bd73 * 6e3e * 8ea1eebe,eebe,8ea1eebev,eebev 7de8 e7b7a8 7de8 00007de8 bd73 bd73 bd73 bd73 bd73 bd73 bd73
+4573 bd74 bd74 bd74 * 6e3f * 8ea1eebf,eebf,8ea1eebfv,eebfv 7de3 e7b7a3 7de3 00007de3 bd74 bd74 bd74 bd74 bd74 bd74 bd74
+4574 bd75 bd75 bd75 * 6e40 * 8ea1eec0,eec0,8ea1eec0v,eec0v 7dda e7b79a 7dda 00007dda bd75 bd75 bd75 bd75 bd75 bd75 bd75
+4575 bd76 bd76 bd76 * 6e41 * 8ea1eec1,eec1,8ea1eec1v,eec1v 7dde e7b79e 7dde 00007dde bd76 bd76 bd76 bd76 bd76 bd76 bd76
+4576 bd77 bd77 bd77 * 6e42 * 8ea1eec2,eec2,8ea1eec2v,eec2v 7de9 e7b7a9 7de9 00007de9 bd77 bd77 bd77 bd77 bd77 bd77 bd77
+4577 bd78 bd78 bd78 * 6e43 * 8ea1eec3,eec3,8ea1eec3v,eec3v 7d9e e7b69e 7d9e 00007d9e bd78 bd78 bd78 bd78 bd78 bd78 bd78
+4578 bd79 bd79 bd79 * 6e44 * 8ea1eec4,eec4,8ea1eec4v,eec4v 7dd9 e7b799 7dd9 00007dd9 bd79 bd79 bd79 bd79 bd79 bd79 bd79
+4579 bd7a bd7a bd7a * 6e45 * 8ea1eec5,eec5,8ea1eec5v,eec5v 7df2 e7b7b2 7df2 00007df2 bd7a bd7a bd7a bd7a bd7a bd7a bd7a
+4580 bd7b bd7b bd7b * 6e46 * 8ea1eec6,eec6,8ea1eec6v,eec6v 7df9 e7b7b9 7df9 00007df9 bd7b bd7b bd7b bd7b bd7b bd7b bd7b
+4581 bd7c bd7c bd7c * 6e47 * 8ea1eec7,eec7,8ea1eec7v,eec7v 7f75 e7bdb5 7f75 00007f75 bd7c bd7c bd7c bd7c bd7c bd7c bd7c
+4582 bd7d bd7d bd7d * 6e48 * 8ea1eec8,eec8,8ea1eec8v,eec8v 7f77 e7bdb7 7f77 00007f77 bd7d bd7d bd7d bd7d bd7d bd7d bd7d
+4583 bd7e bd7e bd7e * 6e49 * 8ea1eec9,eec9,8ea1eec9v,eec9v 7faf e7beaf 7faf 00007faf bd7e bd7e bd7e bd7e bd7e bd7e bd7e
+4584 bda1 bda1 bda1 * 6e4a * 8ea1eeca,eeca,8ea1eecav,eecav 7fe9 e7bfa9 7fe9 00007fe9 bda1 bda1 bda1 bda1 bda1 bda1 bda1
+4585 bda2 bda2 bda2 * 6e4b * 8ea1eecb,eecb,8ea1eecbv,eecbv 8026 e880a6 8026 00008026 bda2 bda2 bda2 bda2 bda2 bda2 bda2
+4586 bda3 bda3 bda3 * 6e4c * 8ea1eecc,eecc,8ea1eeccv,eeccv 819b e8869b 819b 0000819b bda3 bda3 bda3 bda3 bda3 bda3 bda3
+4587 bda4 bda4 bda4 * 6e4d * 8ea1eecd,eecd,8ea1eecdv,eecdv 819c e8869c 819c 0000819c bda4 bda4 bda4 bda4 bda4 bda4 bda4
+4588 bda5 bda5 bda5 * 6e4e * 8ea1eece,eece,8ea1eecev,eecev 819d e8869d 819d 0000819d bda5 bda5 bda5 bda5 bda5 bda5 bda5
+4589 bda6 bda6 bda6 * 6e4f * 8ea1eecf,eecf,8ea1eecfv,eecfv 81a0 e886a0 81a0 000081a0 bda6 bda6 bda6 bda6 bda6 bda6 bda6
+4590 bda7 bda7 bda7 * 6e50 * 8ea1eed0,eed0,8ea1eed0v,eed0v 819a e8869a 819a 0000819a bda7 bda7 bda7 bda7 bda7 bda7 bda7
+4591 bda8 bda8 bda8 * 6e51 * 8ea1eed1,eed1,8ea1eed1v,eed1v 8198 e88698 8198 00008198 bda8 bda8 bda8 bda8 bda8 bda8 bda8
+4592 bda9 bda9 bda9 * 6e52 * 8ea1eed2,eed2,8ea1eed2v,eed2v 8517 e89497 8517 00008517 bda9 bda9 bda9 bda9 bda9 bda9 bda9
+4593 bdaa bdaa bdaa * 6e53 * 8ea1eed3,eed3,8ea1eed3v,eed3v 853d e894bd 853d 0000853d bdaa bdaa bdaa bdaa bdaa bdaa bdaa
+4594 bdab bdab bdab * 6e54 * 8ea1eed4,eed4,8ea1eed4v,eed4v 851a e8949a 851a 0000851a bdab bdab bdab bdab bdab bdab bdab
+4595 bdac bdac bdac * 6e55 * 8ea1eed5,eed5,8ea1eed5v,eed5v 84ee e893ae 84ee 000084ee bdac bdac bdac bdac bdac bdac bdac
+4596 bdad bdad bdad * 6e56 * 8ea1eed6,eed6,8ea1eed6v,eed6v 852c e894ac 852c 0000852c bdad bdad bdad bdad bdad bdad bdad
+4597 bdae bdae bdae * 6e57 * 8ea1eed7,eed7,8ea1eed7v,eed7v 852d e894ad 852d 0000852d bdae bdae bdae bdae bdae bdae bdae
+4598 bdaf bdaf bdaf * 6e58 * 8ea1eed8,eed8,8ea1eed8v,eed8v 8513 e89493 8513 00008513 bdaf bdaf bdaf bdaf bdaf bdaf bdaf
+4599 bdb0 bdb0 bdb0 * 6e59 * 8ea1eed9,eed9,8ea1eed9v,eed9v 8511 e89491 8511 00008511 bdb0 bdb0 bdb0 bdb0 bdb0 bdb0 bdb0
+4600 bdb1 bdb1 bdb1 * 6e5a * 8ea1eeda,eeda,8ea1eedav,eedav 8523 e894a3 8523 00008523 bdb1 bdb1 bdb1 bdb1 bdb1 bdb1 bdb1
+4601 bdb2 bdb2 bdb2 * 6e5b * 8ea1eedb,eedb,8ea1eedbv,eedbv 8521 e894a1 8521 00008521 bdb2 bdb2 bdb2 bdb2 bdb2 bdb2 bdb2
+4602 bdb3 bdb3 bdb3 * 6e5c * 8ea1eedc,eedc,8ea1eedcv,eedcv 8514 e89494 8514 00008514 bdb3 bdb3 bdb3 bdb3 bdb3 bdb3 bdb3
+4603 bdb4 bdb4 bdb4 * 6e5d * 8ea1eedd,eedd,8ea1eeddv,eeddv 84ec e893ac 84ec 000084ec bdb4 bdb4 bdb4 bdb4 bdb4 bdb4 bdb4
+4604 bdb5 bdb5 bdb5 * 6e5e * 8ea1eede,eede,8ea1eedev,eedev 8525 e894a5 8525 00008525 bdb5 bdb5 bdb5 bdb5 bdb5 bdb5 bdb5
+4605 bdb6 bdb6 bdb6 * 6e5f * 8ea1eedf,eedf,8ea1eedfv,eedfv 84ff e893bf 84ff 000084ff bdb6 bdb6 bdb6 bdb6 bdb6 bdb6 bdb6
+4606 bdb7 bdb7 bdb7 * 6e60 * 8ea1eee0,eee0,8ea1eee0v,eee0v 8506 e89486 8506 00008506 bdb7 bdb7 bdb7 bdb7 bdb7 bdb7 bdb7
+4607 bdb8 bdb8 bdb8 * 6e61 * 8ea1eee1,eee1,8ea1eee1v,eee1v 8782 e89e82 8782 00008782 bdb8 bdb8 bdb8 bdb8 bdb8 bdb8 bdb8
+4608 bdb9 bdb9 bdb9 * 6e62 * 8ea1eee2,eee2,8ea1eee2v,eee2v 8774 e89db4 8774 00008774 bdb9 bdb9 bdb9 bdb9 bdb9 bdb9 bdb9
+4609 bdba bdba bdba * 6e63 * 8ea1eee3,eee3,8ea1eee3v,eee3v 8776 e89db6 8776 00008776 bdba bdba bdba bdba bdba bdba bdba
+4610 bdbb bdbb bdbb * 6e64 * 8ea1eee4,eee4,8ea1eee4v,eee4v 8760 e89da0 8760 00008760 bdbb bdbb bdbb bdbb bdbb bdbb bdbb
+4611 bdbc bdbc bdbc * 6e65 * 8ea1eee5,eee5,8ea1eee5v,eee5v 8766 e89da6 8766 00008766 bdbc bdbc bdbc bdbc bdbc bdbc bdbc
+4612 bdbd bdbd bdbd * 6e66 * 8ea1eee6,eee6,8ea1eee6v,eee6v 8778 e89db8 8778 00008778 bdbd bdbd bdbd bdbd bdbd bdbd bdbd
+4613 bdbe bdbe bdbe * 6e67 * 8ea1eee7,eee7,8ea1eee7v,eee7v 8768 e89da8 8768 00008768 bdbe bdbe bdbe bdbe bdbe bdbe bdbe
+4614 bdbf bdbf bdbf * 6e68 * 8ea1eee8,eee8,8ea1eee8v,eee8v 8759 e89d99 8759 00008759 bdbf bdbf bdbf bdbf bdbf bdbf bdbf
+4615 bdc0 bdc0 bdc0 * 6e69 * 8ea1eee9,eee9,8ea1eee9v,eee9v 8757 e89d97 8757 00008757 bdc0 bdc0 bdc0 bdc0 bdc0 bdc0 bdc0
+4616 bdc1 bdc1 bdc1 * 6e6a * 8ea1eeea,eeea,8ea1eeeav,eeeav 874c e89d8c 874c 0000874c bdc1 bdc1 bdc1 bdc1 bdc1 bdc1 bdc1
+4617 bdc2 bdc2 bdc2 * 6e6b * 8ea1eeeb,eeeb,8ea1eeebv,eeebv 8753 e89d93 8753 00008753 bdc2 bdc2 bdc2 bdc2 bdc2 bdc2 bdc2
+4618 bdc3 bdc3 bdc3 * 6e6c * 8ea1eeec,eeec,8ea1eeecv,eeecv 885b e8a19b 885b 0000885b bdc3 bdc3 bdc3 bdc3 bdc3 bdc3 bdc3
+4619 bdc4 bdc4 bdc4 * 6e6d * 8ea1eeed,eeed,8ea1eeedv,eeedv 885d e8a19d 885d 0000885d bdc4 bdc4 bdc4 bdc4 bdc4 bdc4 bdc4
+4620 bdc5 bdc5 bdc5 * 6e6e * 8ea1eeee,eeee,8ea1eeeev,eeeev 8910 e8a490 8910 00008910 bdc5 bdc5 bdc5 bdc5 bdc5 bdc5 bdc5
+4621 bdc6 bdc6 bdc6 * 6e6f * 8ea1eeef,eeef,8ea1eeefv,eeefv 8907 e8a487 8907 00008907 bdc6 bdc6 bdc6 bdc6 bdc6 bdc6 bdc6
+4622 bdc7 bdc7 bdc7 * 6e70 * 8ea1eef0,eef0,8ea1eef0v,eef0v 8912 e8a492 8912 00008912 bdc7 bdc7 bdc7 bdc7 bdc7 bdc7 bdc7
+4623 bdc8 bdc8 bdc8 * 6e71 * 8ea1eef1,eef1,8ea1eef1v,eef1v 8913 e8a493 8913 00008913 bdc8 bdc8 bdc8 bdc8 bdc8 bdc8 bdc8
+4624 bdc9 bdc9 bdc9 * 6e72 * 8ea1eef2,eef2,8ea1eef2v,eef2v 8915 e8a495 8915 00008915 bdc9 bdc9 bdc9 bdc9 bdc9 bdc9 bdc9
+4625 bdca bdca bdca * 6e73 * 8ea1eef3,eef3,8ea1eef3v,eef3v 890a e8a48a 890a 0000890a bdca bdca bdca bdca bdca bdca bdca
+4626 bdcb bdcb bdcb * 6e74 * 8ea1eef4,eef4,8ea1eef4v,eef4v 8abc e8aabc 8abc 00008abc bdcb bdcb bdcb bdcb bdcb bdcb bdcb
+4627 bdcc bdcc bdcc * 6e75 * 8ea1eef5,eef5,8ea1eef5v,eef5v 8ad2 e8ab92 8ad2 00008ad2 bdcc bdcc bdcc bdcc bdcc bdcc bdcc
+4628 bdcd bdcd bdcd * 6e76 * 8ea1eef6,eef6,8ea1eef6v,eef6v 8ac7 e8ab87 8ac7 00008ac7 bdcd bdcd bdcd bdcd bdcd bdcd bdcd
+4629 bdce bdce bdce * 6e77 * 8ea1eef7,eef7,8ea1eef7v,eef7v 8ac4 e8ab84 8ac4 00008ac4 bdce bdce bdce bdce bdce bdce bdce
+4630 bdcf bdcf bdcf * 6e78 * 8ea1eef8,eef8,8ea1eef8v,eef8v 8a95 e8aa95 8a95 00008a95 bdcf bdcf bdcf bdcf bdcf bdcf bdcf
+4631 bdd0 bdd0 bdd0 * 6e79 * 8ea1eef9,eef9,8ea1eef9v,eef9v 8acb e8ab8b 8acb 00008acb bdd0 bdd0 bdd0 bdd0 bdd0 bdd0 bdd0
+4632 bdd1 bdd1 bdd1 * 6e7a * 8ea1eefa,eefa,8ea1eefav,eefav 8af8 e8abb8 8af8 00008af8 bdd1 bdd1 bdd1 bdd1 bdd1 bdd1 bdd1
+4633 bdd2 bdd2 bdd2 * 6e7b * 8ea1eefb,eefb,8ea1eefbv,eefbv 8ab2 e8aab2 8ab2 00008ab2 bdd2 bdd2 bdd2 bdd2 bdd2 bdd2 bdd2
+4634 bdd3 bdd3 bdd3 * 6e7c * 8ea1eefc,eefc,8ea1eefcv,eefcv 8ac9 e8ab89 8ac9 00008ac9 bdd3 bdd3 bdd3 bdd3 bdd3 bdd3 bdd3
+4635 bdd4 bdd4 bdd4 * 6e7d * 8ea1eefd,eefd,8ea1eefdv,eefdv 8ac2 e8ab82 8ac2 00008ac2 bdd4 bdd4 bdd4 bdd4 bdd4 bdd4 bdd4
+4636 bdd5 bdd5 bdd5 * 6e7e * 8ea1eefe,eefe,8ea1eefev,eefev 8abf e8aabf 8abf 00008abf bdd5 bdd5 bdd5 bdd5 bdd5 bdd5 bdd5
+4637 bdd6 bdd6 bdd6 * 6f21 * 8ea1efa1,efa1,8ea1efa1v,efa1v 8ab0 e8aab0 8ab0 00008ab0 bdd6 bdd6 bdd6 bdd6 bdd6 bdd6 bdd6
+4638 bdd7 bdd7 bdd7 * 6f22 * 8ea1efa2,efa2,8ea1efa2v,efa2v 8ad6 e8ab96 8ad6 00008ad6 bdd7 bdd7 bdd7 bdd7 bdd7 bdd7 bdd7
+4639 bdd8 bdd8 bdd8 * 6f23 * 8ea1efa3,efa3,8ea1efa3v,efa3v 8acd e8ab8d 8acd 00008acd bdd8 bdd8 bdd8 bdd8 bdd8 bdd8 bdd8
+4640 bdd9 bdd9 bdd9 * 6f24 * 8ea1efa4,efa4,8ea1efa4v,efa4v 8ab6 e8aab6 8ab6 00008ab6 bdd9 bdd9 bdd9 bdd9 bdd9 bdd9 bdd9
+4641 bdda bdda bdda * 6f25 * 8ea1efa5,efa5,8ea1efa5v,efa5v 8ab9 e8aab9 8ab9 00008ab9 bdda bdda bdda bdda bdda bdda bdda
+4642 bddb bddb bddb * 6f26 * 8ea1efa6,efa6,8ea1efa6v,efa6v 8adb e8ab9b 8adb 00008adb bddb bddb bddb bddb bddb bddb bddb
+4643 bddc bddc bddc * 6f27 * 8ea1efa7,efa7,8ea1efa7v,efa7v 8c4c e8b18c 8c4c 00008c4c bddc bddc bddc bddc bddc bddc bddc
+4644 bddd bddd bddd * 6f28 * 8ea1efa8,efa8,8ea1efa8v,efa8v 8c4e e8b18e 8c4e 00008c4e bddd bddd bddd bddd bddd bddd bddd
+4645 bdde bdde bdde * 6f29 * 8ea1efa9,efa9,8ea1efa9v,efa9v 8c6c e8b1ac 8c6c 00008c6c bdde bdde bdde bdde bdde bdde bdde
+4646 bddf bddf bddf * 6f2a * 8ea1efaa,efaa,8ea1efaav,efaav 8ce0 e8b3a0 8ce0 00008ce0 bddf bddf bddf bddf bddf bddf bddf
+4647 bde0 bde0 bde0 * 6f2b * 8ea1efab,efab,8ea1efabv,efabv 8cde e8b39e 8cde 00008cde bde0 bde0 bde0 bde0 bde0 bde0 bde0
+4648 bde1 bde1 bde1 * 6f2c * 8ea1efac,efac,8ea1efacv,efacv 8ce6 e8b3a6 8ce6 00008ce6 bde1 bde1 bde1 bde1 bde1 bde1 bde1
+4649 bde2 bde2 bde2 * 6f2d * 8ea1efad,efad,8ea1efadv,efadv 8ce4 e8b3a4 8ce4 00008ce4 bde2 bde2 bde2 bde2 bde2 bde2 bde2
+4650 bde3 bde3 bde3 * 6f2e * 8ea1efae,efae,8ea1efaev,efaev 8cec e8b3ac 8cec 00008cec bde3 bde3 bde3 bde3 bde3 bde3 bde3
+4651 bde4 bde4 bde4 * 6f2f * 8ea1efaf,efaf,8ea1efafv,efafv 8ced e8b3ad 8ced 00008ced bde4 bde4 bde4 bde4 bde4 bde4 bde4
+4652 bde5 bde5 bde5 * 6f30 * 8ea1efb0,efb0,8ea1efb0v,efb0v 8ce2 e8b3a2 8ce2 00008ce2 bde5 bde5 bde5 bde5 bde5 bde5 bde5
+4653 bde6 bde6 bde6 * 6f31 * 8ea1efb1,efb1,8ea1efb1v,efb1v 8ce3 e8b3a3 8ce3 00008ce3 bde6 bde6 bde6 bde6 bde6 bde6 bde6
+4654 bde7 bde7 bde7 * 6f32 * 8ea1efb2,efb2,8ea1efb2v,efb2v 8cdc e8b39c 8cdc 00008cdc bde7 bde7 bde7 bde7 bde7 bde7 bde7
+4655 bde8 bde8 bde8 * 6f33 * 8ea1efb3,efb3,8ea1efb3v,efb3v 8cea e8b3aa 8cea 00008cea bde8 bde8 bde8 bde8 bde8 bde8 bde8
+4656 bde9 bde9 bde9 * 6f34 * 8ea1efb4,efb4,8ea1efb4v,efb4v 8ce1 e8b3a1 8ce1 00008ce1 bde9 bde9 bde9 bde9 bde9 bde9 bde9
+4657 bdea bdea bdea * 6f35 * 8ea1efb5,efb5,8ea1efb5v,efb5v 8d6d e8b5ad 8d6d 00008d6d bdea bdea bdea bdea bdea bdea bdea
+4658 bdeb bdeb bdeb * 6f36 * 8ea1efb6,efb6,8ea1efb6v,efb6v 8d9f e8b69f 8d9f 00008d9f bdeb bdeb bdeb bdeb bdeb bdeb bdeb
+4659 bdec bdec bdec * 6f37 * 8ea1efb7,efb7,8ea1efb7v,efb7v 8da3 e8b6a3 8da3 00008da3 bdec bdec bdec bdec bdec bdec bdec
+4660 bded bded bded * 6f38 * 8ea1efb8,efb8,8ea1efb8v,efb8v 8e2b e8b8ab 8e2b 00008e2b bded bded bded bded bded bded bded
+4661 bdee bdee bdee * 6f39 * 8ea1efb9,efb9,8ea1efb9v,efb9v 8e10 e8b890 8e10 00008e10 bdee bdee bdee bdee bdee bdee bdee
+4662 bdef bdef bdef * 6f3a * 8ea1efba,efba,8ea1efbav,efbav 8e1d e8b89d 8e1d 00008e1d bdef bdef bdef bdef bdef bdef bdef
+4663 bdf0 bdf0 bdf0 * 6f3b * 8ea1efbb,efbb,8ea1efbbv,efbbv 8e22 e8b8a2 8e22 00008e22 bdf0 bdf0 bdf0 bdf0 bdf0 bdf0 bdf0
+4664 bdf1 bdf1 bdf1 * 6f3c * 8ea1efbc,efbc,8ea1efbcv,efbcv 8e0f e8b88f 8e0f 00008e0f bdf1 bdf1 bdf1 bdf1 bdf1 bdf1 bdf1
+4665 bdf2 bdf2 bdf2 * 6f3d * 8ea1efbd,efbd,8ea1efbdv,efbdv 8e29 e8b8a9 8e29 00008e29 bdf2 bdf2 bdf2 bdf2 bdf2 bdf2 bdf2
+4666 bdf3 bdf3 bdf3 * 6f3e * 8ea1efbe,efbe,8ea1efbev,efbev 8e1f e8b89f 8e1f 00008e1f bdf3 bdf3 bdf3 bdf3 bdf3 bdf3 bdf3
+4667 bdf4 bdf4 bdf4 * 6f3f * 8ea1efbf,efbf,8ea1efbfv,efbfv 8e21 e8b8a1 8e21 00008e21 bdf4 bdf4 bdf4 bdf4 bdf4 bdf4 bdf4
+4668 bdf5 bdf5 bdf5 * 6f40 * 8ea1efc0,efc0,8ea1efc0v,efc0v 8e1e e8b89e 8e1e 00008e1e bdf5 bdf5 bdf5 bdf5 bdf5 bdf5 bdf5
+4669 bdf6 bdf6 bdf6 * 6f41 * 8ea1efc1,efc1,8ea1efc1v,efc1v 8eba e8baba 8eba 00008eba bdf6 bdf6 bdf6 bdf6 bdf6 bdf6 bdf6
+4670 bdf7 bdf7 bdf7 * 6f42 * 8ea1efc2,efc2,8ea1efc2v,efc2v 8f1d e8bc9d 8f1d 00008f1d bdf7 bdf7 bdf7 bdf7 bdf7 bdf7 bdf7
+4671 bdf8 bdf8 bdf8 * 6f43 * 8ea1efc3,efc3,8ea1efc3v,efc3v 8f1b e8bc9b 8f1b 00008f1b bdf8 bdf8 bdf8 bdf8 bdf8 bdf8 bdf8
+4672 bdf9 bdf9 bdf9 * 6f44 * 8ea1efc4,efc4,8ea1efc4v,efc4v 8f1f e8bc9f 8f1f 00008f1f bdf9 bdf9 bdf9 bdf9 bdf9 bdf9 bdf9
+4673 bdfa bdfa bdfa * 6f45 * 8ea1efc5,efc5,8ea1efc5v,efc5v 8f29 e8bca9 8f29 00008f29 bdfa bdfa bdfa bdfa bdfa bdfa bdfa
+4674 bdfb bdfb bdfb * 6f46 * 8ea1efc6,efc6,8ea1efc6v,efc6v 8f26 e8bca6 8f26 00008f26 bdfb bdfb bdfb bdfb bdfb bdfb bdfb
+4675 bdfc bdfc bdfc * 6f47 * 8ea1efc7,efc7,8ea1efc7v,efc7v 8f2a e8bcaa 8f2a 00008f2a bdfc bdfc bdfc bdfc bdfc bdfc bdfc
+4676 bdfd bdfd bdfd * 6f48 * 8ea1efc8,efc8,8ea1efc8v,efc8v 8f1c e8bc9c 8f1c 00008f1c bdfd bdfd bdfd bdfd bdfd bdfd bdfd
+4677 bdfe bdfe bdfe * 6f49 * 8ea1efc9,efc9,8ea1efc9v,efc9v 8f1e e8bc9e 8f1e 00008f1e bdfe bdfe bdfe bdfe bdfe bdfe bdfe
+4678 be40 be40 be40 * 6f4a * 8ea1efca,efca,8ea1efcav,efcav 8f25 e8bca5 8f25 00008f25 be40 be40 be40 be40 be40 be40 be40
+4679 be41 be41 be41 * 6f4b * 8ea1efcb,efcb,8ea1efcbv,efcbv 9069 e981a9 9069 00009069 be41 be41 be41 be41 be41 be41 be41
+4680 be42 be42 be42 * 6f4c * 8ea1efcc,efcc,8ea1efccv,efccv 906e e981ae 906e 0000906e be42 be42 be42 be42 be42 be42 be42
+4681 be43 be43 be43 * 6f4d * 8ea1efcd,efcd,8ea1efcdv,efcdv 9068 e981a8 9068 00009068 be43 be43 be43 be43 be43 be43 be43
+4682 be44 be44 be44 * 6f4e * 8ea1efce,efce,8ea1efcev,efcev 906d e981ad 906d 0000906d be44 be44 be44 be44 be44 be44 be44
+4683 be45 be45 be45 * 6f4f * 8ea1efcf,efcf,8ea1efcfv,efcfv 9077 e981b7 9077 00009077 be45 be45 be45 be45 be45 be45 be45
+4684 be46 be46 be46 * 6f50 * 8ea1efd0,efd0,8ea1efd0v,efd0v 9130 e984b0 9130 00009130 be46 be46 be46 be46 be46 be46 be46
+4685 be47 be47 be47 * 6f51 * 8ea1efd1,efd1,8ea1efd1v,efd1v 912d e984ad 912d 0000912d be47 be47 be47 be47 be47 be47 be47
+4686 be48 be48 be48 * 6f52 * 8ea1efd2,efd2,8ea1efd2v,efd2v 9127 e984a7 9127 00009127 be48 be48 be48 be48 be48 be48 be48
+4687 be49 be49 be49 * 6f53 * 8ea1efd3,efd3,8ea1efd3v,efd3v 9131 e984b1 9131 00009131 be49 be49 be49 be49 be49 be49 be49
+4688 be4a be4a be4a * 6f54 * 8ea1efd4,efd4,8ea1efd4v,efd4v 9187 e98687 9187 00009187 be4a be4a be4a be4a be4a be4a be4a
+4689 be4b be4b be4b * 6f55 * 8ea1efd5,efd5,8ea1efd5v,efd5v 9189 e98689 9189 00009189 be4b be4b be4b be4b be4b be4b be4b
+4690 be4c be4c be4c * 6f56 * 8ea1efd6,efd6,8ea1efd6v,efd6v 918b e9868b 918b 0000918b be4c be4c be4c be4c be4c be4c be4c
+4691 be4d be4d be4d * 6f57 * 8ea1efd7,efd7,8ea1efd7v,efd7v 9183 e98683 9183 00009183 be4d be4d be4d be4d be4d be4d be4d
+4692 be4e be4e be4e * 6f58 * 8ea1efd8,efd8,8ea1efd8v,efd8v 92c5 e98b85 92c5 000092c5 be4e be4e be4e be4e be4e be4e be4e
+4693 be4f be4f be4f * 6f59 * 8ea1efd9,efd9,8ea1efd9v,efd9v 92bb e98abb 92bb 000092bb be4f be4f be4f be4f be4f be4f be4f
+4694 be50 be50 be50 * 6f5a * 8ea1efda,efda,8ea1efdav,efdav 92b7 e98ab7 92b7 000092b7 be50 be50 be50 be50 be50 be50 be50
+4695 be51 be51 be51 * 6f5b * 8ea1efdb,efdb,8ea1efdbv,efdbv 92ea e98baa 92ea 000092ea be51 be51 be51 be51 be51 be51 be51
+4696 be53 be53 be53 * 6f5c * 8ea1efdc,efdc,8ea1efdcv,efdcv 92e4 e98ba4 92e4 000092e4 be53 be53 be53 be53 be53 be53 be53
+4697 be54 be54 be54 * 6f5d * 8ea1efdd,efdd,8ea1efddv,efddv 92c1 e98b81 92c1 000092c1 be54 be54 be54 be54 be54 be54 be54
+4698 be55 be55 be55 * 6f5e * 8ea1efde,efde,8ea1efdev,efdev 92b3 e98ab3 92b3 000092b3 be55 be55 be55 be55 be55 be55 be55
+4699 be56 be56 be56 * 6f5f * 8ea1efdf,efdf,8ea1efdfv,efdfv 92bc e98abc 92bc 000092bc be56 be56 be56 be56 be56 be56 be56
+4700 be57 be57 be57 * 6f60 * 8ea1efe0,efe0,8ea1efe0v,efe0v 92d2 e98b92 92d2 000092d2 be57 be57 be57 be57 be57 be57 be57
+4701 be58 be58 be58 * 6f61 * 8ea1efe1,efe1,8ea1efe1v,efe1v 92c7 e98b87 92c7 000092c7 be58 be58 be58 be58 be58 be58 be58
+4702 be59 be59 be59 * 6f62 * 8ea1efe2,efe2,8ea1efe2v,efe2v 92f0 e98bb0 92f0 000092f0 be59 be59 be59 be59 be59 be59 be59
+4703 be5a be5a be5a * 6f63 * 8ea1efe3,efe3,8ea1efe3v,efe3v 92b2 e98ab2 92b2 000092b2 be5a be5a be5a be5a be5a be5a be5a
+4704 be5b be5b be5b * 6f64 * 8ea1efe4,efe4,8ea1efe4v,efe4v 95ad e996ad 95ad 000095ad be5b be5b be5b be5b be5b be5b be5b
+4705 be5c be5c be5c * 6f65 * 8ea1efe5,efe5,8ea1efe5v,efe5v 95b1 e996b1 95b1 000095b1 be5c be5c be5c be5c be5c be5c be5c
+4706 be5d be5d be5d * 6f66 * 8ea1efe6,efe6,8ea1efe6v,efe6v 9704 e99c84 9704 00009704 be5d be5d be5d be5d be5d be5d be5d
+4707 be5e be5e be5e * 6f67 * 8ea1efe7,efe7,8ea1efe7v,efe7v 9706 e99c86 9706 00009706 be5e be5e be5e be5e be5e be5e be5e
+4708 be5f be5f be5f * 6f68 * 8ea1efe8,efe8,8ea1efe8v,efe8v 9707 e99c87 9707 00009707 be5f be5f be5f be5f be5f be5f be5f
+4709 be60 be60 be60 * 6f69 * 8ea1efe9,efe9,8ea1efe9v,efe9v 9709 e99c89 9709 00009709 be60 be60 be60 be60 be60 be60 be60
+4710 be61 be61 be61 * 6f6a * 8ea1efea,efea,8ea1efeav,efeav 9760 e99da0 9760 00009760 be61 be61 be61 be61 be61 be61 be61
+4711 be62 be62 be62 * 6f6b * 8ea1efeb,efeb,8ea1efebv,efebv 978d e99e8d 978d 0000978d be62 be62 be62 be62 be62 be62 be62
+4712 be63 be63 be63 * 6f6c * 8ea1efec,efec,8ea1efecv,efecv 978b e99e8b 978b 0000978b be63 be63 be63 be63 be63 be63 be63
+4713 be64 be64 be64 * 6f6d * 8ea1efed,efed,8ea1efedv,efedv 978f e99e8f 978f 0000978f be64 be64 be64 be64 be64 be64 be64
+4714 be65 be65 be65 * 6f6e * 8ea1efee,efee,8ea1efeev,efeev 9821 e9a0a1 9821 00009821 be65 be65 be65 be65 be65 be65 be65
+4715 be66 be66 be66 * 6f6f * 8ea1efef,efef,8ea1efefv,efefv 982b e9a0ab 982b 0000982b be66 be66 be66 be66 be66 be66 be66
+4716 be67 be67 be67 * 6f70 * 8ea1eff0,eff0,8ea1eff0v,eff0v 981c e9a09c 981c 0000981c be67 be67 be67 be67 be67 be67 be67
+4717 be68 be68 be68 * 6f71 * 8ea1eff1,eff1,8ea1eff1v,eff1v 98b3 e9a2b3 98b3 000098b3 be68 be68 be68 be68 be68 be68 be68
+4718 be69 be69 be69 * 6f72 * 8ea1eff2,eff2,8ea1eff2v,eff2v 990a e9a48a 990a 0000990a be69 be69 be69 be69 be69 be69 be69
+4719 be6a be6a be6a * 6f73 * 8ea1eff3,eff3,8ea1eff3v,eff3v 9913 e9a493 9913 00009913 be6a be6a be6a be6a be6a be6a be6a
+4720 be6b be6b be6b * 6f74 * 8ea1eff4,eff4,8ea1eff4v,eff4v 9912 e9a492 9912 00009912 be6b be6b be6b be6b be6b be6b be6b
+4721 be6c be6c be6c * 6f75 * 8ea1eff5,eff5,8ea1eff5v,eff5v 9918 e9a498 9918 00009918 be6c be6c be6c be6c be6c be6c be6c
+4722 be6d be6d be6d * 6f76 * 8ea1eff6,eff6,8ea1eff6v,eff6v 99dd e9a79d 99dd 000099dd be6d be6d be6d be6d be6d be6d be6d
+4723 be6e be6e be6e * 6f77 * 8ea1eff7,eff7,8ea1eff7v,eff7v 99d0 e9a790 99d0 000099d0 be6e be6e be6e be6e be6e be6e be6e
+4724 be6f be6f be6f * 6f78 * 8ea1eff8,eff8,8ea1eff8v,eff8v 99df e9a79f 99df 000099df be6f be6f be6f be6f be6f be6f be6f
+4725 be70 be70 be70 * 6f79 * 8ea1eff9,eff9,8ea1eff9v,eff9v 99db e9a79b 99db 000099db be70 be70 be70 be70 be70 be70 be70
+4726 be71 be71 be71 * 6f7a * 8ea1effa,effa,8ea1effav,effav 99d1 e9a791 99d1 000099d1 be71 be71 be71 be71 be71 be71 be71
+4727 be72 be72 be72 * 6f7b * 8ea1effb,effb,8ea1effbv,effbv 99d5 e9a795 99d5 000099d5 be72 be72 be72 be72 be72 be72 be72
+4728 be73 be73 be73 * 6f7c * 8ea1effc,effc,8ea1effcv,effcv 99d2 e9a792 99d2 000099d2 be73 be73 be73 be73 be73 be73 be73
+4729 be74 be74 be74 * 6f7d * 8ea1effd,effd,8ea1effdv,effdv 99d9 e9a799 99d9 000099d9 be74 be74 be74 be74 be74 be74 be74
+4730 be75 be75 be75 * 6f7e * 8ea1effe,effe,8ea1effev,effev 9ab7 e9aab7 9ab7 00009ab7 be75 be75 be75 be75 be75 be75 be75
+4731 be76 be76 be76 * 7021 * 8ea1f0a1,f0a1,8ea1f0a1v,f0a1v 9aee e9abae 9aee 00009aee be76 be76 be76 be76 be76 be76 be76
+4732 be77 be77 be77 * 7022 * 8ea1f0a2,f0a2,8ea1f0a2v,f0a2v 9aef e9abaf 9aef 00009aef be77 be77 be77 be77 be77 be77 be77
+4733 be78 be78 be78 * 7023 * 8ea1f0a3,f0a3,8ea1f0a3v,f0a3v 9b27 e9aca7 9b27 00009b27 be78 be78 be78 be78 be78 be78 be78
+4734 be79 be79 be79 * 7024 * 8ea1f0a4,f0a4,8ea1f0a4v,f0a4v 9b45 e9ad85 9b45 00009b45 be79 be79 be79 be79 be79 be79 be79
+4735 be7a be7a be7a * 7025 * 8ea1f0a5,f0a5,8ea1f0a5v,f0a5v 9b44 e9ad84 9b44 00009b44 be7a be7a be7a be7a be7a be7a be7a
+4736 be7b be7b be7b * 7026 * 8ea1f0a6,f0a6,8ea1f0a6v,f0a6v 9b77 e9adb7 9b77 00009b77 be7b be7b be7b be7b be7b be7b be7b
+4737 be7c be7c be7c * 7027 * 8ea1f0a7,f0a7,8ea1f0a7v,f0a7v 9b6f e9adaf 9b6f 00009b6f be7c be7c be7c be7c be7c be7c be7c
+4738 be7d be7d be7d * 7028 * 8ea1f0a8,f0a8,8ea1f0a8v,f0a8v 9d06 e9b486 9d06 00009d06 be7d be7d be7d be7d be7d be7d be7d
+4739 be7e be7e be7e * 7029 * 8ea1f0a9,f0a9,8ea1f0a9v,f0a9v 9d09 e9b489 9d09 00009d09 be7e be7e be7e be7e be7e be7e be7e
+4740 bea1 bea1 bea1 * 702a * 8ea1f0aa,f0aa,8ea1f0aav,f0aav 9d03 e9b483 9d03 00009d03 bea1 bea1 bea1 bea1 bea1 bea1 bea1
+4741 bea2 bea2 bea2 * 702b * 8ea1f0ab,f0ab,8ea1f0abv,f0abv 9ea9 e9baa9 9ea9 00009ea9 bea2 bea2 bea2 bea2 bea2 bea2 bea2
+4742 bea3 bea3 bea3 * 702c * 8ea1f0ac,f0ac,8ea1f0acv,f0acv 9ebe e9babe 9ebe 00009ebe bea3 bea3 bea3 bea3 bea3 bea3 bea3
+4743 bea4 bea4 bea4 * 702d * 8ea1f0ad,f0ad,8ea1f0adv,f0adv 9ece e9bb8e 9ece 00009ece bea4 bea4 bea4 bea4 bea4 bea4 bea4
+4744 bea5 bea5 bea5 * 702e * 8ea1f0ae,f0ae,8ea1f0aev,f0aev 58a8 e5a2a8 58a8 000058a8 bea5 bea5 bea5 bea5 bea5 bea5 bea5
+4745 bea6 bea6 bea6 * 2936,702f * 8ea1a9b6,8ea1f0af,a9b6,f0af,8ea1a9b6v,8ea1f0afv,a9b6v,f0afv 9f52 e2bf92,e9bd92 2fd2,9f52 00002fd2,00009f52 bea6 bea6 bea6 bea6 bea6 bea6 bea6
+4746 bea7 bea7 bea7 * 7030 * 8ea1f0b0,f0b0,8ea1f0b0v,f0b0v 5112 e58492 5112 00005112 bea7 bea7 bea7 bea7 bea7 bea7 bea7
+4747 bea8 bea8 bea8 * 7031 * 8ea1f0b1,f0b1,8ea1f0b1v,f0b1v 5118 e58498 5118 00005118 bea8 bea8 bea8 bea8 bea8 bea8 bea8
+4748 bea9 bea9 bea9 * 7032 * 8ea1f0b2,f0b2,8ea1f0b2v,f0b2v 5114 e58494 5114 00005114 bea9 bea9 bea9 bea9 bea9 bea9 bea9
+4749 beaa beaa beaa * 7033 * 8ea1f0b3,f0b3,8ea1f0b3v,f0b3v 5110 e58490 5110 00005110 beaa beaa beaa beaa beaa beaa beaa
+4750 beab beab beab * 7034 * 8ea1f0b4,f0b4,8ea1f0b4v,f0b4v 5115 e58495 5115 00005115 beab beab beab beab beab beab beab
+4751 beac beac beac * 7035 * 8ea1f0b5,f0b5,8ea1f0b5v,f0b5v 5180 e58680 5180 00005180 beac beac beac beac beac beac beac
+4752 bead bead bead * 7036 * 8ea1f0b6,f0b6,8ea1f0b6v,f0b6v 51aa e586aa 51aa 000051aa bead bead bead bead bead bead bead
+4753 beae beae beae * 7037 * 8ea1f0b7,f0b7,8ea1f0b7v,f0b7v 51dd e5879d 51dd 000051dd beae beae beae beae beae beae beae
+4754 beaf beaf beaf * 7038 * 8ea1f0b8,f0b8,8ea1f0b8v,f0b8v 5291 e58a91 5291 00005291 beaf beaf beaf beaf beaf beaf beaf
+4755 beb0 beb0 beb0 * 7039 * 8ea1f0b9,f0b9,8ea1f0b9v,f0b9v 5293 e58a93 5293 00005293 beb0 beb0 beb0 beb0 beb0 beb0 beb0
+4756 beb1 beb1 beb1 * 703a * 8ea1f0ba,f0ba,8ea1f0bav,f0bav 52f3 e58bb3 52f3 000052f3 beb1 beb1 beb1 beb1 beb1 beb1 beb1
+4757 beb2 beb2 beb2 * 703b * 8ea1f0bb,f0bb,8ea1f0bbv,f0bbv 5659 e59999 5659 00005659 beb2 beb2 beb2 beb2 beb2 beb2 beb2
+4758 beb3 beb3 beb3 * 703c * 8ea1f0bc,f0bc,8ea1f0bcv,f0bcv 566b e599ab 566b 0000566b beb3 beb3 beb3 beb3 beb3 beb3 beb3
+4759 beb4 beb4 beb4 * 703d * 8ea1f0bd,f0bd,8ea1f0bdv,f0bdv 5679 e599b9 5679 00005679 beb4 beb4 beb4 beb4 beb4 beb4 beb4
+4760 beb5 beb5 beb5 * 703e * 8ea1f0be,f0be,8ea1f0bev,f0bev 5669 e599a9 5669 00005669 beb5 beb5 beb5 beb5 beb5 beb5 beb5
+4761 beb6 beb6 beb6 * 703f * 8ea1f0bf,f0bf,8ea1f0bfv,f0bfv 5664 e599a4 5664 00005664 beb6 beb6 beb6 beb6 beb6 beb6 beb6
+4762 beb7 beb7 beb7 * 7040 * 8ea1f0c0,f0c0,8ea1f0c0v,f0c0v 5678 e599b8 5678 00005678 beb7 beb7 beb7 beb7 beb7 beb7 beb7
+4763 beb8 beb8 beb8 * 7041 * 8ea1f0c1,f0c1,8ea1f0c1v,f0c1v 566a e599aa 566a 0000566a beb8 beb8 beb8 beb8 beb8 beb8 beb8
+4764 beb9 beb9 beb9 * 7042 * 8ea1f0c2,f0c2,8ea1f0c2v,f0c2v 5668 e599a8 5668 00005668 beb9 beb9 beb9 beb9 beb9 beb9 beb9
+4765 beba beba beba * 7043 * 8ea1f0c3,f0c3,8ea1f0c3v,f0c3v 5665 e599a5 5665 00005665 beba beba beba beba beba beba beba
+4766 bebb bebb bebb * 7044 * 8ea1f0c4,f0c4,8ea1f0c4v,f0c4v 5671 e599b1 5671 00005671 bebb bebb bebb bebb bebb bebb bebb
+4767 bebc bebc bebc * 7045 * 8ea1f0c5,f0c5,8ea1f0c5v,f0c5v 566f e599af 566f 0000566f bebc bebc bebc bebc bebc bebc bebc
+4768 bebd bebd bebd * 7046 * 8ea1f0c6,f0c6,8ea1f0c6v,f0c6v 566c e599ac 566c 0000566c bebd bebd bebd bebd bebd bebd bebd
+4769 bebe bebe bebe * 7047 * 8ea1f0c7,f0c7,8ea1f0c7v,f0c7v 5662 e599a2 5662 00005662 bebe bebe bebe bebe bebe bebe bebe
+4770 bebf bebf bebf * 7048 * 8ea1f0c8,f0c8,8ea1f0c8v,f0c8v 5676 e599b6 5676 00005676 bebf bebf bebf bebf bebf bebf bebf
+4771 bec0 bec0 bec0 * 7049 * 8ea1f0c9,f0c9,8ea1f0c9v,f0c9v 58c1 e5a381 58c1 000058c1 bec0 bec0 bec0 bec0 bec0 bec0 bec0
+4772 bec1 bec1 bec1 * 704a * 8ea1f0ca,f0ca,8ea1f0cav,f0cav 58be e5a2be 58be 000058be bec1 bec1 bec1 bec1 bec1 bec1 bec1
+4773 bec2 bec2 bec2 * 704b * 8ea1f0cb,f0cb,8ea1f0cbv,f0cbv 58c7 e5a387 58c7 000058c7 bec2 bec2 bec2 bec2 bec2 bec2 bec2
+4774 bec3 bec3 bec3 * 704c * 8ea1f0cc,f0cc,8ea1f0ccv,f0ccv 58c5 e5a385 58c5 000058c5 bec3 bec3 bec3 bec3 bec3 bec3 bec3
+4775 bec4 bec4 bec4 * 704d * 8ea1f0cd,f0cd,8ea1f0cdv,f0cdv 596e e5a5ae 596e 0000596e bec4 bec4 bec4 bec4 bec4 bec4 bec4
+4776 bec5 bec5 bec5 * 704e * 8ea1f0ce,f0ce,8ea1f0cev,f0cev 5b1d e5ac9d 5b1d 00005b1d bec5 bec5 bec5 bec5 bec5 bec5 bec5
+4777 bec6 bec6 bec6 * 704f * 8ea1f0cf,f0cf,8ea1f0cfv,f0cfv 5b34 e5acb4 5b34 00005b34 bec6 bec6 bec6 bec6 bec6 bec6 bec6
+4778 bec7 bec7 bec7 * 7050 * 8ea1f0d0,f0d0,8ea1f0d0v,f0d0v 5b78 e5adb8 5b78 00005b78 bec7 bec7 bec7 bec7 bec7 bec7 bec7
+4779 bec8 bec8 bec8 * 7051 * 8ea1f0d1,f0d1,8ea1f0d1v,f0d1v 5bf0 e5afb0 5bf0 00005bf0 bec8 bec8 bec8 bec8 bec8 bec8 bec8
+4780 bec9 bec9 bec9 * 7052 * 8ea1f0d2,f0d2,8ea1f0d2v,f0d2v 5c0e e5b08e 5c0e 00005c0e bec9 bec9 bec9 bec9 bec9 bec9 bec9
+4781 beca beca beca * 7053 * 8ea1f0d3,f0d3,8ea1f0d3v,f0d3v 5f4a e5bd8a 5f4a 00005f4a beca beca beca beca beca beca beca
+4782 becb becb becb * 7054 * 8ea1f0d4,f0d4,8ea1f0d4v,f0d4v 61b2 e686b2 61b2 000061b2 becb becb becb becb becb becb becb
+4783 becc becc becc * 7055 * 8ea1f0d5,f0d5,8ea1f0d5v,f0d5v 6191 e68691 6191 00006191 becc becc becc becc becc becc becc
+4784 becd becd becd * 7056 * 8ea1f0d6,f0d6,8ea1f0d6v,f0d6v 61a9 e686a9 61a9 000061a9 becd becd,fc6f 915b,becd becd becd becd becd
+4785 bece bece bece * 7057 * 8ea1f0d7,f0d7,8ea1f0d7v,f0d7v 618a e6868a 618a 0000618a bece bece bece bece bece bece bece
+4786 becf becf becf * 7058 * 8ea1f0d8,f0d8,8ea1f0d8v,f0d8v 61cd e6878d 61cd 000061cd becf becf becf becf becf becf becf
+4787 bed0 bed0 bed0 * 7059 * 8ea1f0d9,f0d9,8ea1f0d9v,f0d9v 61b6 e686b6 61b6 000061b6 bed0 bed0 bed0 bed0 bed0 bed0 bed0
+4788 bed1 bed1 bed1 * 705a * 8ea1f0da,f0da,8ea1f0dav,f0dav 61be e686be 61be 000061be bed1 bed1 bed1 bed1 bed1 bed1 bed1
+4789 bed2 bed2 bed2 * 705b * 8ea1f0db,f0db,8ea1f0dbv,f0dbv 61ca e6878a 61ca 000061ca bed2 bed2 bed2 bed2 bed2 bed2 bed2
+4790 bed3 bed3 bed3 * 705c * 8ea1f0dc,f0dc,8ea1f0dcv,f0dcv 61c8 e68788 61c8 000061c8 bed3 bed3 bed3 bed3 bed3 bed3 bed3
+4791 bed4 bed4 bed4 * 705d * 8ea1f0dd,f0dd,8ea1f0ddv,f0ddv 6230 e688b0 6230 00006230 bed4 bed4 bed4 bed4 bed4 bed4 bed4
+4792 bed5 bed5 bed5 * 705e * 8ea1f0de,f0de,8ea1f0dev,f0dev 64c5 e69385 64c5 000064c5 bed5 bed5 bed5 bed5 bed5 bed5 bed5
+4793 bed6 bed6 bed6 * 705f * 8ea1f0df,f0df,8ea1f0dfv,f0dfv 64c1 e69381 64c1 000064c1 bed6 bed6 bed6 bed6 bed6 bed6 bed6
+4794 bed7 bed7 bed7 * 7060 * 8ea1f0e0,f0e0,8ea1f0e0v,f0e0v 64cb e6938b 64cb 000064cb bed7 bed7 bed7 bed7 bed7 bed7 bed7
+4795 bed8 bed8 bed8 * 7061 * 8ea1f0e1,f0e1,8ea1f0e1v,f0e1v 64bb e692bb 64bb 000064bb bed8 bed8 bed8 bed8 bed8 bed8 bed8
+4796 bed9 bed9 bed9 * 7062 * 8ea1f0e2,f0e2,8ea1f0e2v,f0e2v 64bc e692bc 64bc 000064bc bed9 bed9 bed9 bed9 bed9 bed9 bed9
+4797 beda beda beda * 7063 * 8ea1f0e3,f0e3,8ea1f0e3v,f0e3v 64da e6939a 64da 000064da beda beda beda beda beda beda beda
+4798 bedb bedb bedb * 7064 * 8ea1f0e4,f0e4,8ea1f0e4v,f0e4v 64c4 e69384 64c4 000064c4 bedb bedb bedb bedb bedb bedb bedb
+4799 bedc bedc bedc * 7065 * 8ea1f0e5,f0e5,8ea1f0e5v,f0e5v 64c7 e69387 64c7 000064c7 bedc bedc bedc bedc bedc bedc bedc
+4800 bedd bedd bedd * 7066 * 8ea1f0e6,f0e6,8ea1f0e6v,f0e6v 64c2 e69382 64c2 000064c2 bedd bedd bedd bedd bedd bedd bedd
+4801 bede bede bede * 7067 * 8ea1f0e7,f0e7,8ea1f0e7v,f0e7v 64cd e6938d 64cd 000064cd bede bede bede bede bede bede bede
+4802 bedf bedf bedf * 7068 * 8ea1f0e8,f0e8,8ea1f0e8v,f0e8v 64bf e692bf 64bf 000064bf bedf bedf bedf bedf bedf bedf bedf
+4803 bee0 bee0 bee0 * 7069 * 8ea1f0e9,f0e9,8ea1f0e9v,f0e9v 64d2 e69392 64d2 000064d2 bee0 bee0 bee0 bee0 bee0 bee0 bee0
+4804 bee1 bee1 bee1 * 706a * 8ea1f0ea,f0ea,8ea1f0eav,f0eav 64d4 e69394 64d4 000064d4 bee1 bee1 bee1 bee1 bee1 bee1 bee1
+4805 bee2 bee2 bee2 * 706b * 8ea1f0eb,f0eb,8ea1f0ebv,f0ebv 64be e692be 64be 000064be bee2 bee2 bee2 bee2 bee2 bee2 bee2
+4806 bee3 bee3 bee3 * 706c * 8ea1f0ec,f0ec,8ea1f0ecv,f0ecv 6574 e695b4 6574 00006574 bee3 bee3 bee3 bee3 bee3 bee3 bee3
+4807 bee4 bee4 bee4 * 706d * 8ea1f0ed,f0ed,8ea1f0edv,f0edv 66c6 e69b86 66c6 000066c6 bee4 bee4 bee4 bee4 bee4 bee4 bee4
+4808 bee5 bee5 bee5 * 706e * 8ea1f0ee,f0ee,8ea1f0eev,f0eev 66c9 e69b89 66c9 000066c9 bee5 bee5 bee5 bee5 bee5 bee5 bee5
+4809 bee6 bee6 bee6 * 706f * 8ea1f0ef,f0ef,8ea1f0efv,f0efv 66b9 e69ab9 66b9 000066b9 bee6 bee6 bee6 bee6 bee6 bee6 bee6
+4810 bee7 bee7 bee7 * 7070 * 8ea1f0f0,f0f0,8ea1f0f0v,f0f0v 66c4 e69b84 66c4 000066c4 bee7 bee7 bee7 bee7 bee7 bee7 bee7
+4811 bee8 bee8 bee8 * 7071 * 8ea1f0f1,f0f1,8ea1f0f1v,f0f1v 66c7 e69b87 66c7 000066c7 bee8 bee8 bee8 bee8 bee8 bee8 bee8
+4812 bee9 bee9 bee9 * 7072 * 8ea1f0f2,f0f2,8ea1f0f2v,f0f2v 66b8 e69ab8 66b8 000066b8 bee9 bee9 bee9 bee9 bee9 bee9 bee9
+4813 beea beea beea * 7073 * 8ea1f0f3,f0f3,8ea1f0f3v,f0f3v 6a3d e6a8bd 6a3d 00006a3d beea beea beea beea beea beea beea
+4814 beeb beeb beeb * 7074 * 8ea1f0f4,f0f4,8ea1f0f4v,f0f4v 6a38 e6a8b8 6a38 00006a38 beeb beeb beeb beeb beeb beeb beeb
+4815 beec beec beec * 7075 * 8ea1f0f5,f0f5,8ea1f0f5v,f0f5v 6a3a e6a8ba 6a3a 00006a3a beec beec beec beec beec beec beec
+4816 beed beed beed * 7076 * 8ea1f0f6,f0f6,8ea1f0f6v,f0f6v 6a59 e6a999 6a59 00006a59 beed beed beed beed beed beed beed
+4817 beee beee beee * 7077 * 8ea1f0f7,f0f7,8ea1f0f7v,f0f7v 6a6b e6a9ab 6a6b 00006a6b beee beee beee beee beee beee beee
+4818 beef beef beef * 7078 * 8ea1f0f8,f0f8,8ea1f0f8v,f0f8v 6a58 e6a998 6a58 00006a58 beef beef beef beef beef beef beef
+4819 bef0 bef0 bef0 * 7079 * 8ea1f0f9,f0f9,8ea1f0f9v,f0f9v 6a39 e6a8b9 6a39 00006a39 bef0 bef0 bef0 bef0 bef0 bef0 bef0
+4820 bef1 bef1 bef1 * 707a * 8ea1f0fa,f0fa,8ea1f0fav,f0fav 6a44 e6a984 6a44 00006a44 bef1 bef1 bef1 bef1 bef1 bef1 bef1
+4821 bef2 bef2 bef2 * 707b * 8ea1f0fb,f0fb,8ea1f0fbv,f0fbv 6a62 e6a9a2 6a62 00006a62 bef2 bef2 bef2 bef2 bef2 bef2 bef2
+4822 bef3 bef3 bef3 * 707c * 8ea1f0fc,f0fc,8ea1f0fcv,f0fcv 6a61 e6a9a1 6a61 00006a61 bef3 bef3 bef3 bef3 bef3 bef3 bef3
+4823 bef4 bef4 bef4 * 707d * 8ea1f0fd,f0fd,8ea1f0fdv,f0fdv 6a4b e6a98b 6a4b 00006a4b bef4 bef4 bef4 bef4 bef4 bef4 bef4
+4824 bef5 bef5 bef5 * 707e * 8ea1f0fe,f0fe,8ea1f0fev,f0fev 6a47 e6a987 6a47 00006a47 bef5 bef5 bef5 bef5 bef5 bef5 bef5
+4825 bef6 bef6 bef6 * 7121 * 8ea1f1a1,f1a1,8ea1f1a1v,f1a1v 6a35 e6a8b5 6a35 00006a35 bef6 bef6 bef6 bef6 bef6 bef6 bef6
+4826 bef7 bef7 bef7 * 7122 * 8ea1f1a2,f1a2,8ea1f1a2v,f1a2v 6a5f e6a99f 6a5f 00006a5f bef7 bef7 bef7 bef7 bef7 bef7 bef7
+4827 bef8 bef8 bef8 * 7123 * 8ea1f1a3,f1a3,8ea1f1a3v,f1a3v 6a48 e6a988 6a48 00006a48 bef8 bef8 bef8 bef8 bef8 bef8 bef8
+4828 bef9 bef9 bef9 * 7124 * 8ea1f1a4,f1a4,8ea1f1a4v,f1a4v 6b59 e6ad99 6b59 00006b59 bef9 bef9 bef9 bef9 bef9 bef9 bef9
+4829 befa befa befa * 7125 * 8ea1f1a5,f1a5,8ea1f1a5v,f1a5v 6b77 e6adb7 6b77 00006b77 befa befa befa befa befa befa befa
+4830 befb befb befb * 7126 * 8ea1f1a6,f1a6,8ea1f1a6v,f1a6v 6c05 e6b085 6c05 00006c05 befb befb befb befb befb befb befb
+4831 befc befc befc * 7127 * 8ea1f1a7,f1a7,8ea1f1a7v,f1a7v 6fc2 e6bf82 6fc2 00006fc2 befc befc befc befc befc befc befc
+4832 befd befd befd * 7128 * 8ea1f1a8,f1a8,8ea1f1a8v,f1a8v 6fb1 e6beb1 6fb1 00006fb1 befd befd befd befd befd befd befd
+4833 befe befe befe * 7129 * 8ea1f1a9,f1a9,8ea1f1a9v,f1a9v 6fa1 e6bea1 6fa1 00006fa1 befe befe befe befe befe befe befe
+4834 bf40 bf40 bf40 * 712a * 8ea1f1aa,f1aa,8ea1f1aav,f1aav 6fc3 e6bf83 6fc3 00006fc3 bf40 bf40 bf40 bf40 bf40 bf40 bf40
+4835 bf41 bf41 bf41 * 712b * 8ea1f1ab,f1ab,8ea1f1abv,f1abv 6fa4 e6bea4 6fa4 00006fa4 bf41 bf41 bf41 bf41 bf41 bf41 bf41
+4836 bf42 bf42 bf42 * 712c * 8ea1f1ac,f1ac,8ea1f1acv,f1acv 6fc1 e6bf81 6fc1 00006fc1 bf42 bf42 bf42 bf42 bf42 bf42 bf42
+4837 bf43 bf43 bf43 * 712d * 8ea1f1ad,f1ad,8ea1f1adv,f1adv 6fa7 e6bea7 6fa7 00006fa7 bf43 bf43 bf43 bf43 bf43 bf43 bf43
+4838 bf44 bf44 bf44 * 712e * 8ea1f1ae,f1ae,8ea1f1aev,f1aev 6fb3 e6beb3 6fb3 00006fb3 bf44 bf44 bf44 bf44 bf44 bf44 bf44
+4839 bf45 bf45 bf45 * 712f * 8ea1f1af,f1af,8ea1f1afv,f1afv 6fc0 e6bf80 6fc0 00006fc0 bf45 bf45 bf45 bf45 bf45 bf45 bf45
+4840 bf46 bf46 bf46 * 7130 * 8ea1f1b0,f1b0,8ea1f1b0v,f1b0v 6fb9 e6beb9 6fb9 00006fb9 bf46 bf46 bf46 bf46 bf46 bf46 bf46
+4841 bf47 bf47 bf47 * 7131 * 8ea1f1b1,f1b1,8ea1f1b1v,f1b1v 6fb6 e6beb6,eeae9e 6fb6,eb9e 00006fb6,0000eb9e 9bf6,bf47 bf47 bf47 bf47 bf47 bf47 9bf6,bf47
+4842 bf48 bf48 bf48 * 7132 * 8ea1f1b2,f1b2,8ea1f1b2v,f1b2v 6fa6 e6bea6 6fa6 00006fa6 bf48 bf48 bf48 bf48 bf48 bf48 bf48
+4843 bf49 bf49 bf49 * 7133 * 8ea1f1b3,f1b3,8ea1f1b3v,f1b3v 6fa0 e6bea0 6fa0 00006fa0 bf49 bf49 bf49 bf49 bf49 bf49 bf49
+4844 bf4a bf4a bf4a * 7134 * 8ea1f1b4,f1b4,8ea1f1b4v,f1b4v 6fb4 e6beb4 6fb4 00006fb4 bf4a bf4a bf4a bf4a bf4a bf4a bf4a
+4845 bf4b bf4b bf4b * 7135 * 8ea1f1b5,f1b5,8ea1f1b5v,f1b5v 71be e786be 71be 000071be bf4b bf4b bf4b bf4b bf4b bf4b bf4b
+4846 bf4c bf4c bf4c * 7136 * 8ea1f1b6,f1b6,8ea1f1b6v,f1b6v 71c9 e78789 71c9 000071c9 bf4c bf4c bf4c bf4c bf4c bf4c bf4c
+4847 bf4d bf4d bf4d * 7137 * 8ea1f1b7,f1b7,8ea1f1b7v,f1b7v 71d0 e78790 71d0 000071d0 bf4d bf4d bf4d bf4d bf4d bf4d bf4d
+4848 bf4e bf4e bf4e * 7138 * 8ea1f1b8,f1b8,8ea1f1b8v,f1b8v 71d2 e78792 71d2 000071d2 bf4e bf4e bf4e bf4e bf4e bf4e bf4e
+4849 bf4f bf4f bf4f * 7139 * 8ea1f1b9,f1b9,8ea1f1b9v,f1b9v 71c8 e78788 71c8 000071c8 bf4f bf4f bf4f bf4f bf4f bf4f bf4f
+4850 bf50 bf50 bf50 * 713a * 8ea1f1ba,f1ba,8ea1f1bav,f1bav 71d5 e78795 71d5 000071d5 bf50 bf50 bf50 bf50 bf50 bf50 bf50
+4851 bf51 bf51 bf51 * 713b * 8ea1f1bb,f1bb,8ea1f1bbv,f1bbv 71b9 e786b9 71b9 000071b9 bf51 bf51 bf51 bf51 bf51 bf51 bf51
+4852 bf52 bf52 bf52 * 713c * 8ea1f1bc,f1bc,8ea1f1bcv,f1bcv 71ce e7878e 71ce 000071ce bf52 bf52 bf52 bf52 bf52 bf52 bf52
+4853 bf53 bf53 bf53 * 713d * 8ea1f1bd,f1bd,8ea1f1bdv,f1bdv 71d9 e78799 71d9 000071d9 bf53 bf53 bf53 bf53 bf53 bf53 bf53
+4854 bf54 bf54 bf54 * 713e * 8ea1f1be,f1be,8ea1f1bev,f1bev 71dc e7879c 71dc 000071dc bf54 bf54 bf54 bf54 bf54 bf54 bf54
+4855 bf55 bf55 bf55 * 713f * 8ea1f1bf,f1bf,8ea1f1bfv,f1bfv 71c3 e78783 71c3 000071c3 bf55 bf55 bf55 bf55 bf55 bf55 bf55
+4856 bf56 bf56 bf56 * 7140 * 8ea1f1c0,f1c0,8ea1f1c0v,f1c0v 71c4 e78784 71c4 000071c4 bf56 bf56 bf56 bf56 bf56 bf56 bf56
+4857 bf57 bf57 bf57 * 7141 * 8ea1f1c1,f1c1,8ea1f1c1v,f1c1v 7368 e78da8 7368 00007368 bf57 bf57 bf57 bf57 bf57 bf57 bf57
+4858 bf58 bf58 bf58 * 7142 * 8ea1f1c2,f1c2,8ea1f1c2v,f1c2v 749c e7929c 749c 0000749c bf58 bf58 bf58 bf58 bf58 bf58 bf58
+4859 bf59 bf59 bf59 * 7143 * 8ea1f1c3,f1c3,8ea1f1c3v,f1c3v 74a3 e792a3 74a3 000074a3 bf59 bf59 bf59 bf59 bf59 bf59 bf59
+4860 bf5a bf5a bf5a * 7144 * 8ea1f1c4,f1c4,8ea1f1c4v,f1c4v 7498 e79298 7498 00007498 bf5a bf5a bf5a bf5a bf5a bf5a bf5a
+4861 bf5b bf5b bf5b * 7145 * 8ea1f1c5,f1c5,8ea1f1c5v,f1c5v 749f e7929f 749f 0000749f bf5b bf5b bf5b bf5b bf5b bf5b bf5b
+4862 bf5c bf5c bf5c * 7146 * 8ea1f1c6,f1c6,8ea1f1c6v,f1c6v 749e e7929e 749e 0000749e bf5c bf5c bf5c bf5c bf5c bf5c bf5c
+4863 bf5d bf5d bf5d * 7147 * 8ea1f1c7,f1c7,8ea1f1c7v,f1c7v 74e2 e793a2 74e2 000074e2 bf5d bf5d bf5d bf5d bf5d bf5d bf5d
+4864 bf5e bf5e bf5e * 7148 * 8ea1f1c8,f1c8,8ea1f1c8v,f1c8v 750c e7948c 750c 0000750c bf5e bf5e bf5e bf5e bf5e bf5e bf5e
+4865 bf5f bf5f bf5f * 7149 * 8ea1f1c9,f1c9,8ea1f1c9v,f1c9v 750d e7948d 750d 0000750d bf5f bf5f bf5f bf5f bf5f bf5f bf5f
+4866 bf60 bf60 bf60 * 714a * 8ea1f1ca,f1ca,8ea1f1cav,f1cav 7634 e798b4 7634 00007634 bf60 bf60 bf60 bf60 bf60 bf60 bf60
+4867 bf61 bf61 bf61 * 714b * 8ea1f1cb,f1cb,8ea1f1cbv,f1cbv 7638 e798b8 7638 00007638 bf61 bf61 bf61 bf61 bf61 bf61 bf61
+4868 bf62 bf62 bf62 * 714c * 8ea1f1cc,f1cc,8ea1f1ccv,f1ccv 763a e798ba 763a 0000763a bf62 bf62 bf62 bf62 bf62 bf62 bf62
+4869 bf63 bf63 bf63 * 714d * 8ea1f1cd,f1cd,8ea1f1cdv,f1cdv 76e7 e79ba7 76e7 000076e7 bf63 bf63 bf63 bf63 bf63 bf63 bf63
+4870 bf64 bf64 bf64 * 714e * 8ea1f1ce,f1ce,8ea1f1cev,f1cev 76e5 e79ba5 76e5 000076e5 bf64 bf64 bf64 bf64 bf64 bf64 bf64
+4871 bf65 bf65 bf65 * 714f * 8ea1f1cf,f1cf,8ea1f1cfv,f1cfv 77a0 e79ea0 77a0 000077a0 bf65 bf65 bf65 bf65 bf65 bf65 bf65
+4872 bf66 bf66 bf66 * 7150 * 8ea1f1d0,f1d0,8ea1f1d0v,f1d0v 779e e79e9e 779e 0000779e bf66 bf66 bf66 bf66 bf66 bf66 bf66
+4873 bf67 bf67 bf67 * 7151 * 8ea1f1d1,f1d1,8ea1f1d1v,f1d1v 779f e79e9f 779f 0000779f bf67 bf67 bf67 bf67 bf67 bf67 bf67
+4874 bf68 bf68 bf68 * 7152 * 8ea1f1d2,f1d2,8ea1f1d2v,f1d2v 77a5 e79ea5 77a5 000077a5 bf68 bf68 bf68 bf68 bf68 bf68 bf68
+4875 bf69 bf69 bf69 * 7153 * 8ea1f1d3,f1d3,8ea1f1d3v,f1d3v 78e8 e7a3a8 78e8 000078e8 bf69 bf69 bf69 bf69 bf69 bf69 bf69
+4876 bf6a bf6a bf6a * 7154 * 8ea1f1d4,f1d4,8ea1f1d4v,f1d4v 78da e7a39a 78da 000078da bf6a bf6a bf6a bf6a bf6a bf6a bf6a
+4877 bf6b bf6b bf6b * 7155 * 8ea1f1d5,f1d5,8ea1f1d5v,f1d5v 78ec e7a3ac 78ec 000078ec bf6b bf6b bf6b bf6b bf6b bf6b bf6b
+4878 bf6c bf6c bf6c * 7156 * 8ea1f1d6,f1d6,8ea1f1d6v,f1d6v 78e7 e7a3a7 78e7 000078e7 bf6c bf6c bf6c bf6c bf6c bf6c bf6c
+4879 bf6d bf6d bf6d * 7157 * 8ea1f1d7,f1d7,8ea1f1d7v,f1d7v 79a6 e7a6a6 79a6 000079a6 bf6d bf6d bf6d bf6d bf6d bf6d bf6d
+4880 bf6e bf6e bf6e * 7158 * 8ea1f1d8,f1d8,8ea1f1d8v,f1d8v 7a4d e7a98d 7a4d 00007a4d bf6e bf6e bf6e bf6e bf6e bf6e bf6e
+4881 bf6f bf6f bf6f * 7159 * 8ea1f1d9,f1d9,8ea1f1d9v,f1d9v 7a4e e7a98e 7a4e 00007a4e bf6f bf6f bf6f bf6f bf6f bf6f bf6f
+4882 bf70 bf70 bf70 * 715a * 8ea1f1da,f1da,8ea1f1dav,f1dav 7a46 e7a986 7a46 00007a46 bf70 bf70 bf70 bf70 bf70 bf70 bf70
+4883 bf71 bf71 bf71 * 715b * 8ea1f1db,f1db,8ea1f1dbv,f1dbv 7a4c e7a98c 7a4c 00007a4c bf71 bf71 bf71 bf71 bf71 bf71 bf71
+4884 bf72 bf72 bf72 * 715c * 8ea1f1dc,f1dc,8ea1f1dcv,f1dcv 7a4b e7a98b 7a4b 00007a4b bf72 bf72 bf72 bf72 bf72 bf72 bf72
+4885 bf73 bf73 bf73 * 715d * 8ea1f1dd,f1dd,8ea1f1ddv,f1ddv 7aba e7aaba 7aba 00007aba bf73 bf73 bf73 bf73 bf73 bf73 bf73
+4886 bf74 bf74 bf74 * 715e * 8ea1f1de,f1de,8ea1f1dev,f1dev 7bd9 e7af99 7bd9 00007bd9 bf74 bf74 bf74 bf74 bf74 bf74 bf74
+4887 bf75 bf75 bf75 * 715f * 8ea1f1df,f1df,8ea1f1dfv,f1dfv 7c11 e7b091 7c11 00007c11 bf75 bf75 bf75 bf75 bf75 bf75 bf75
+4888 bf76 bf76 bf76 * 7160 * 8ea1f1e0,f1e0,8ea1f1e0v,f1e0v 7bc9 e7af89 7bc9 00007bc9 bf76 bf76 bf76 bf76 bf76 bf76 bf76
+4889 bf77 bf77 bf77 * 7161 * 8ea1f1e1,f1e1,8ea1f1e1v,f1e1v 7be4 e7afa4 7be4 00007be4 bf77 bf77 bf77 bf77 bf77 bf77 bf77
+4890 bf78 bf78 bf78 * 7162 * 8ea1f1e2,f1e2,8ea1f1e2v,f1e2v 7bdb e7af9b 7bdb 00007bdb bf78 bf78 bf78 bf78 bf78 bf78 bf78
+4891 bf79 bf79 bf79 * 7163 * 8ea1f1e3,f1e3,8ea1f1e3v,f1e3v 7be1 e7afa1 7be1 00007be1 bf79 bf79 bf79 bf79 bf79 bf79 bf79
+4892 bf7a bf7a bf7a * 7164 * 8ea1f1e4,f1e4,8ea1f1e4v,f1e4v 7be9 e7afa9 7be9 00007be9 bf7a bf7a bf7a bf7a bf7a bf7a bf7a
+4893 bf7b bf7b bf7b * 7165 * 8ea1f1e5,f1e5,8ea1f1e5v,f1e5v 7be6 e7afa6 7be6 00007be6 bf7b bf7b bf7b bf7b bf7b bf7b bf7b
+4894 bf7c bf7c bf7c * 7166 * 8ea1f1e6,f1e6,8ea1f1e6v,f1e6v 7cd5 e7b395 7cd5 00007cd5 bf7c bf7c bf7c bf7c bf7c bf7c bf7c
+4895 bf7d bf7d bf7d * 7167 * 8ea1f1e7,f1e7,8ea1f1e7v,f1e7v 7cd6 e7b396 7cd6 00007cd6 bf7d bf7d bf7d bf7d bf7d bf7d bf7d
+4896 bf7e bf7e bf7e * 7168 * 8ea1f1e8,f1e8,8ea1f1e8v,f1e8v 7e0a e7b88a 7e0a 00007e0a bf7e bf7e bf7e bf7e bf7e bf7e bf7e
+4897 bfa1 bfa1 bfa1 * 7169 * 8ea1f1e9,f1e9,8ea1f1e9v,f1e9v 7e11 e7b891 7e11 00007e11 bfa1 bfa1 bfa1 bfa1 bfa1 bfa1 bfa1
+4898 bfa2 bfa2 bfa2 * 716a * 8ea1f1ea,f1ea,8ea1f1eav,f1eav 7e08 e7b888 7e08 00007e08 bfa2 bfa2 bfa2 bfa2 bfa2 bfa2 bfa2
+4899 bfa3 bfa3 bfa3 * 716b * 8ea1f1eb,f1eb,8ea1f1ebv,f1ebv 7e1b e7b89b 7e1b 00007e1b bfa3 bfa3 bfa3 bfa3 bfa3 bfa3 bfa3
+4900 bfa4 bfa4 bfa4 * 716c * 8ea1f1ec,f1ec,8ea1f1ecv,f1ecv 7e23 e7b8a3 7e23 00007e23 bfa4 bfa4 bfa4 bfa4 bfa4 bfa4 bfa4
+4901 bfa5 bfa5 bfa5 * 716d * 8ea1f1ed,f1ed,8ea1f1edv,f1edv 7e1e e7b89e 7e1e 00007e1e bfa5 bfa5 bfa5 bfa5 bfa5 bfa5 bfa5
+4902 bfa6 bfa6 bfa6 * 716e * 8ea1f1ee,f1ee,8ea1f1eev,f1eev 7e1d e7b89d,ee8da3 7e1d,e363 00007e1d,0000e363 8eb4,bfa6 bfa6 bfa6 bfa6 bfa6 bfa6 8eb4,bfa6
+4903 bfa7 bfa7 bfa7 * 716f * 8ea1f1ef,f1ef,8ea1f1efv,f1efv 7e09 e7b889 7e09 00007e09 bfa7 bfa7 bfa7 bfa7 bfa7 bfa7 bfa7
+4904 bfa8 bfa8 bfa8 * 7170 * 8ea1f1f0,f1f0,8ea1f1f0v,f1f0v 7e10 e7b890 7e10 00007e10 bfa8 bfa8 bfa8 bfa8 bfa8 bfa8 bfa8
+4905 bfa9 bfa9 bfa9 * 7171 * 8ea1f1f1,f1f1,8ea1f1f1v,f1f1v 7f79 e7bdb9 7f79 00007f79 bfa9 bfa9 bfa9 bfa9 bfa9 bfa9 bfa9
+4906 bfaa bfaa bfaa * 7172 * 8ea1f1f2,f1f2,8ea1f1f2v,f1f2v 7fb2 e7beb2 7fb2 00007fb2 bfaa bfaa bfaa bfaa bfaa bfaa bfaa
+4907 bfab bfab bfab * 7173 * 8ea1f1f3,f1f3,8ea1f1f3v,f1f3v 7ff0 e7bfb0 7ff0 00007ff0 bfab bfab bfab bfab bfab bfab bfab
+4908 bfac bfac bfac * 7174 * 8ea1f1f4,f1f4,8ea1f1f4v,f1f4v 7ff1 e7bfb1 7ff1 00007ff1 bfac bfac bfac bfac bfac bfac bfac
+4909 bfad bfad bfad * 7175 * 8ea1f1f5,f1f5,8ea1f1f5v,f1f5v 7fee e7bfae 7fee 00007fee bfad bfad bfad bfad bfad bfad bfad
+4910 bfae bfae bfae * 7176 * 8ea1f1f6,f1f6,8ea1f1f6v,f1f6v 8028 e880a8,ee8dbf 8028,e37f 00008028,0000e37f 8ed0,bfae bfae bfae bfae bfae bfae 8ed0,bfae
+4911 bfaf bfaf bfaf * 7177 * 8ea1f1f7,f1f7,8ea1f1f7v,f1f7v 81b3 e886b3 81b3 000081b3 bfaf bfaf bfaf bfaf bfaf bfaf bfaf
+4912 bfb0 bfb0 bfb0 * 7178 * 8ea1f1f8,f1f8,8ea1f1f8v,f1f8v 81a9 e886a9 81a9 000081a9 bfb0 bfb0 bfb0 bfb0 bfb0 bfb0 bfb0
+4913 bfb1 bfb1 bfb1 * 7179 * 8ea1f1f9,f1f9,8ea1f1f9v,f1f9v 81a8 e886a8 81a8 000081a8 bfb1 bfb1 bfb1 bfb1 bfb1 bfb1 bfb1
+4914 bfb2 bfb2 bfb2 * 717a * 8ea1f1fa,f1fa,8ea1f1fav,f1fav 81fb e887bb 81fb 000081fb bfb2 bfb2 bfb2 bfb2 bfb2 bfb2 bfb2
+4915 bfb3 bfb3 bfb3 * 717b * 8ea1f1fb,f1fb,8ea1f1fbv,f1fbv 8208 e88888 8208 00008208 bfb3 bfb3 bfb3 bfb3 bfb3 bfb3 bfb3
+4916 bfb4 bfb4 bfb4 * 717c * 8ea1f1fc,f1fc,8ea1f1fcv,f1fcv 8258 e88998 8258 00008258 bfb4 bfb4 bfb4 bfb4 bfb4 bfb4 bfb4
+4917 bfb5 bfb5 bfb5 * 717d * 8ea1f1fd,f1fd,8ea1f1fdv,f1fdv 8259 e88999 8259 00008259 bfb5 bfb5 bfb5 bfb5 bfb5 bfb5 bfb5
+4918 bfb6 bfb6 bfb6 * 717e * 8ea1f1fe,f1fe,8ea1f1fev,f1fev 854a e8958a 854a 0000854a bfb6 bfb6 bfb6 bfb6 bfb6 bfb6 bfb6
+4919 bfb7 bfb7 bfb7 * 7221 * 8ea1f2a1,f2a1,8ea1f2a1v,f2a1v 8559 e89599 8559 00008559 bfb7 bfb7 bfb7 bfb7 bfb7 bfb7 bfb7
+4920 bfb8 bfb8 bfb8 * 7222 * 8ea1f2a2,f2a2,8ea1f2a2v,f2a2v 8548 e89588 8548 00008548 bfb8 bfb8 bfb8 bfb8 bfb8 bfb8 bfb8
+4921 bfb9 bfb9 bfb9 * 7223 * 8ea1f2a3,f2a3,8ea1f2a3v,f2a3v 8568 e895a8 8568 00008568 bfb9 bfb9 bfb9 bfb9 bfb9 bfb9 bfb9
+4922 bfba bfba bfba * 7224 * 8ea1f2a4,f2a4,8ea1f2a4v,f2a4v 8569 e895a9 8569 00008569 bfba bfba bfba bfba bfba bfba bfba
+4923 bfbb bfbb bfbb * 7225 * 8ea1f2a5,f2a5,8ea1f2a5v,f2a5v 8543 e89583 8543 00008543 bfbb bfbb bfbb bfbb bfbb bfbb bfbb
+4924 bfbc bfbc bfbc * 7226 * 8ea1f2a6,f2a6,8ea1f2a6v,f2a6v 8549 e89589 8549 00008549 bfbc bfbc bfbc bfbc bfbc bfbc bfbc
+4925 bfbd bfbd bfbd * 7227 * 8ea1f2a7,f2a7,8ea1f2a7v,f2a7v 856d e895ad 856d 0000856d bfbd bfbd bfbd bfbd bfbd bfbd bfbd
+4926 bfbe bfbe bfbe * 7228 * 8ea1f2a8,f2a8,8ea1f2a8v,f2a8v 856a e895aa 856a 0000856a bfbe bfbe bfbe bfbe bfbe bfbe bfbe
+4927 bfbf bfbf bfbf * 7229 * 8ea1f2a9,f2a9,8ea1f2a9v,f2a9v 855e e8959e 855e 0000855e bfbf bfbf bfbf bfbf bfbf bfbf bfbf
+4928 bfc0 bfc0 bfc0 * 722a * 8ea1f2aa,f2aa,8ea1f2aav,f2aav 8783 e89e83 8783 00008783 bfc0 bfc0 bfc0 bfc0 bfc0 bfc0 bfc0
+4929 bfc1 bfc1 bfc1 * 722b * 8ea1f2ab,f2ab,8ea1f2abv,f2abv 879f e89e9f 879f 0000879f bfc1 bfc1 bfc1 bfc1 bfc1 bfc1 bfc1
+4930 bfc2 bfc2 bfc2 * 722c * 8ea1f2ac,f2ac,8ea1f2acv,f2acv 879e e89e9e 879e 0000879e bfc2 bfc2 bfc2 bfc2 bfc2 bfc2 bfc2
+4931 bfc3 bfc3 bfc3 * 722d * 8ea1f2ad,f2ad,8ea1f2adv,f2adv 87a2 e89ea2 87a2 000087a2 bfc3 bfc3 bfc3 bfc3 bfc3 bfc3 bfc3
+4932 bfc4 bfc4 bfc4 * 722e * 8ea1f2ae,f2ae,8ea1f2aev,f2aev 878d e89e8d 878d 0000878d bfc4 bfc4 bfc4 bfc4 bfc4 bfc4 bfc4
+4933 bfc5 bfc5 bfc5 * 722f * 8ea1f2af,f2af,8ea1f2afv,f2afv 8861 e8a1a1 8861 00008861 bfc5 bfc5 bfc5 bfc5 bfc5 bfc5 bfc5
+4934 bfc6 bfc6 bfc6 * 7230 * 8ea1f2b0,f2b0,8ea1f2b0v,f2b0v 892a e8a4aa 892a 0000892a bfc6 bfc6 bfc6 bfc6 bfc6 bfc6 bfc6
+4935 bfc7 bfc7 bfc7 * 7231 * 8ea1f2b1,f2b1,8ea1f2b1v,f2b1v 8932 e8a4b2 8932 00008932 bfc7 bfc7 bfc7 bfc7 bfc7 bfc7 bfc7
+4936 bfc8 bfc8 bfc8 * 7232 * 8ea1f2b2,f2b2,8ea1f2b2v,f2b2v 8925 e8a4a5 8925 00008925 bfc8 bfc8 bfc8 bfc8 bfc8 bfc8 bfc8
+4937 bfc9 bfc9 bfc9 * 7233 * 8ea1f2b3,f2b3,8ea1f2b3v,f2b3v 892b e8a4ab 892b 0000892b bfc9 bfc9 bfc9 bfc9 bfc9 bfc9 bfc9
+4938 bfca bfca bfca * 7234 * 8ea1f2b4,f2b4,8ea1f2b4v,f2b4v 8921 e8a4a1 8921 00008921 bfca bfca bfca bfca bfca bfca,fca5 bfca
+4939 bfcb bfcb bfcb * 7235 * 8ea1f2b5,f2b5,8ea1f2b5v,f2b5v 89aa e8a6aa 89aa 000089aa bfcb bfcb bfcb bfcb bfcb bfcb bfcb
+4940 bfcc bfcc bfcc * 7236 * 8ea1f2b6,f2b6,8ea1f2b6v,f2b6v 89a6 e8a6a6,ee9097 89a6,e417 000089a6,0000e417 8fcb,bfcc bfcc bfcc bfcc bfcc bfcc 8fcb,bfcc
+4941 bfcd bfcd bfcd * 7237 * 8ea1f2b7,f2b7,8ea1f2b7v,f2b7v 8ae6 e8aba6 8ae6 00008ae6 bfcd bfcd bfcd bfcd bfcd bfcd bfcd
+4942 bfce bfce bfce * 7238 * 8ea1f2b8,f2b8,8ea1f2b8v,f2b8v 8afa e8abba 8afa 00008afa bfce bfce bfce bfce bfce bfce bfce
+4943 bfcf bfcf bfcf * 7239 * 8ea1f2b9,f2b9,8ea1f2b9v,f2b9v 8aeb e8abab 8aeb 00008aeb bfcf bfcf bfcf bfcf bfcf bfcf bfcf
+4944 bfd0 bfd0 bfd0 * 723a * 8ea1f2ba,f2ba,8ea1f2bav,f2bav 8af1 e8abb1 8af1 00008af1 bfd0 bfd0 bfd0 bfd0 bfd0 bfd0 bfd0
+4945 bfd1 bfd1 bfd1 * 723b * 8ea1f2bb,f2bb,8ea1f2bbv,f2bbv 8b00 e8ac80 8b00 00008b00 bfd1 bfd1 bfd1 bfd1 bfd1 bfd1 bfd1
+4946 bfd2 bfd2 bfd2 * 723c * 8ea1f2bc,f2bc,8ea1f2bcv,f2bcv 8adc e8ab9c 8adc 00008adc bfd2 bfd2 bfd2 bfd2 bfd2 bfd2 bfd2
+4947 bfd3 bfd3 bfd3 * 723d * 8ea1f2bd,f2bd,8ea1f2bdv,f2bdv 8ae7 e8aba7 8ae7 00008ae7 bfd3 bfd3 bfd3 bfd3 bfd3 bfd3 bfd3
+4948 bfd4 bfd4 bfd4 * 723e * 8ea1f2be,f2be,8ea1f2bev,f2bev 8aee e8abae 8aee 00008aee bfd4 bfd4 bfd4 bfd4 bfd4 bfd4 bfd4
+4949 bfd5 bfd5 bfd5 * 723f * 8ea1f2bf,f2bf,8ea1f2bfv,f2bfv 8afe e8abbe 8afe 00008afe bfd5 bfd5 bfd5 bfd5 bfd5 bfd5 bfd5
+4950 bfd6 bfd6 bfd6 * 7240 * 8ea1f2c0,f2c0,8ea1f2c0v,f2c0v 8b01 e8ac81 8b01 00008b01 bfd6 bfd6 bfd6 bfd6 bfd6 bfd6 bfd6
+4951 bfd7 bfd7 bfd7 * 7241 * 8ea1f2c1,f2c1,8ea1f2c1v,f2c1v 8b02 e8ac82 8b02 00008b02 bfd7 bfd7 bfd7 bfd7 bfd7 bfd7 bfd7
+4952 bfd8 bfd8 bfd8 * 7242 * 8ea1f2c2,f2c2,8ea1f2c2v,f2c2v 8af7 e8abb7 8af7 00008af7 bfd8 bfd8 bfd8 bfd8 bfd8 bfd8 bfd8
+4953 bfd9 bfd9 bfd9 * 7243 * 8ea1f2c3,f2c3,8ea1f2c3v,f2c3v 8aed e8abad 8aed 00008aed bfd9 bfd9 bfd9 bfd9 bfd9 bfd9 bfd9
+4954 bfda bfda bfda * 7244 * 8ea1f2c4,f2c4,8ea1f2c4v,f2c4v 8af3 e8abb3 8af3 00008af3 bfda bfda bfda bfda bfda bfda bfda
+4955 bfdb bfdb bfdb * 7245 * 8ea1f2c5,f2c5,8ea1f2c5v,f2c5v 8af6 e8abb6 8af6 00008af6 bfdb bfdb bfdb bfdb bfdb bfdb bfdb
+4956 bfdc bfdc bfdc * 7246 * 8ea1f2c6,f2c6,8ea1f2c6v,f2c6v 8afc e8abbc 8afc 00008afc bfdc bfdc bfdc bfdc bfdc bfdc bfdc
+4957 bfdd bfdd bfdd * 7247 * 8ea1f2c7,f2c7,8ea1f2c7v,f2c7v 8c6b e8b1ab 8c6b 00008c6b bfdd bfdd bfdd bfdd bfdd bfdd bfdd
+4958 bfde bfde bfde * 7248 * 8ea1f2c8,f2c8,8ea1f2c8v,f2c8v 8c6d e8b1ad 8c6d 00008c6d bfde bfde bfde bfde bfde bfde bfde
+4959 bfdf bfdf bfdf * 7249 * 8ea1f2c9,f2c9,8ea1f2c9v,f2c9v 8c93 e8b293 8c93 00008c93 bfdf bfdf bfdf bfdf bfdf bfdf bfdf
+4960 bfe0 bfe0 bfe0 * 724a * 8ea1f2ca,f2ca,8ea1f2cav,f2cav 8cf4 e8b3b4 8cf4 00008cf4 bfe0 bfe0 bfe0 bfe0 bfe0 bfe0 bfe0
+4961 bfe1 bfe1 bfe1 * 724b * 8ea1f2cb,f2cb,8ea1f2cbv,f2cbv 8e44 e8b984 8e44 00008e44 bfe1 bfe1 bfe1 bfe1 bfe1 bfe1 bfe1
+4962 bfe2 bfe2 bfe2 * 724c * 8ea1f2cc,f2cc,8ea1f2ccv,f2ccv 8e31 e8b8b1 8e31 00008e31 bfe2 bfe2 bfe2 bfe2 bfe2 bfe2 bfe2
+4963 bfe3 bfe3 bfe3 * 724d * 8ea1f2cd,f2cd,8ea1f2cdv,f2cdv 8e34 e8b8b4 8e34 00008e34 bfe3 bfe3 bfe3 bfe3 bfe3 bfe3 bfe3
+4964 bfe4 bfe4 bfe4 * 724e * 8ea1f2ce,f2ce,8ea1f2cev,f2cev 8e42 e8b982 8e42 00008e42 bfe4 bfe4 bfe4 bfe4 bfe4 bfe4 bfe4
+4965 bfe5 bfe5 bfe5 * 724f * 8ea1f2cf,f2cf,8ea1f2cfv,f2cfv 8e39 e8b8b9 8e39 00008e39 bfe5 bfe5 bfe5 bfe5 bfe5 bfe5 bfe5
+4966 bfe6 bfe6 bfe6 * 7250 * 8ea1f2d0,f2d0,8ea1f2d0v,f2d0v 8e35 e8b8b5 8e35 00008e35 bfe6 bfe6 bfe6 bfe6 bfe6 bfe6 bfe6
+4967 bfe7 bfe7 bfe7 * 7251 * 8ea1f2d1,f2d1,8ea1f2d1v,f2d1v 8f3b e8bcbb 8f3b 00008f3b bfe7 bfe7 bfe7 bfe7 bfe7 bfe7 bfe7
+4968 bfe8 bfe8 bfe8 * 7252 * 8ea1f2d2,f2d2,8ea1f2d2v,f2d2v 8f2f e8bcaf 8f2f 00008f2f bfe8 bfe8 bfe8 bfe8 bfe8 bfe8 bfe8
+4969 bfe9 bfe9 bfe9 * 7253 * 8ea1f2d3,f2d3,8ea1f2d3v,f2d3v 8f38 e8bcb8 8f38 00008f38 bfe9 bfe9 bfe9 bfe9 bfe9 bfe9 bfe9
+4970 bfea bfea bfea * 7254 * 8ea1f2d4,f2d4,8ea1f2d4v,f2d4v 8f33 e8bcb3 8f33 00008f33 bfea bfea bfea bfea bfea bfea bfea
+4971 bfeb bfeb bfeb * 7255 * 8ea1f2d5,f2d5,8ea1f2d5v,f2d5v 8fa8 e8bea8 8fa8 00008fa8 bfeb bfeb bfeb bfeb bfeb bfeb bfeb
+4972 bfec bfec bfec * 7256 * 8ea1f2d6,f2d6,8ea1f2d6v,f2d6v 8fa6 e8bea6 8fa6 00008fa6 bfec bfec bfec bfec bfec bfec bfec
+4973 bfed bfed bfed * 7257 * 8ea1f2d7,f2d7,8ea1f2d7v,f2d7v 9075 e981b5 9075 00009075 bfed bfed bfed bfed bfed bfed bfed
+4974 bfee bfee bfee * 7258 * 8ea1f2d8,f2d8,8ea1f2d8v,f2d8v 9074 e981b4 9074 00009074 bfee bfee bfee bfee bfee bfee bfee
+4975 bfef bfef bfef * 7259 * 8ea1f2d9,f2d9,8ea1f2d9v,f2d9v 9078 e981b8 9078 00009078 bfef bfef bfef bfef bfef bfef bfef
+4976 bff0 bff0 bff0 * 725a * 8ea1f2da,f2da,8ea1f2dav,f2dav 9072 e981b2 9072 00009072 bff0 bff0 bff0 bff0 bff0 bff0 bff0
+4977 bff1 bff1 bff1 * 725b * 8ea1f2db,f2db,8ea1f2dbv,f2dbv 907c e981bc 907c 0000907c bff1 bff1 bff1 bff1 bff1 bff1 bff1
+4978 bff2 bff2 bff2 * 725c * 8ea1f2dc,f2dc,8ea1f2dcv,f2dcv 907a e981ba 907a 0000907a bff2 bff2 bff2 bff2 bff2 bff2 bff2
+4979 bff3 bff3 bff3 * 725d * 8ea1f2dd,f2dd,8ea1f2ddv,f2ddv 9134 e984b4 9134 00009134 bff3 bff3 bff3 bff3 bff3 bff3 bff3
+4980 bff4 bff4 bff4 * 725e * 8ea1f2de,f2de,8ea1f2dev,f2dev 9192 e98692 9192 00009192 bff4 bff4 bff4 bff4 bff4 bff4 bff4
+4981 bff5 bff5 bff5 * 725f * 8ea1f2df,f2df,8ea1f2dfv,f2dfv 9320 e98ca0 9320 00009320 bff5 bff5 bff5 bff5 bff5 bff5 bff5
+4982 bff6 bff6 bff6 * 7260 * 8ea1f2e0,f2e0,8ea1f2e0v,f2e0v 9336 e98cb6 9336 00009336 bff6 bff6 bff6 bff6 bff6 bff6 bff6
+4983 bff7 bff7 bff7 * 7261 * 8ea1f2e1,f2e1,8ea1f2e1v,f2e1v 92f8 e98bb8 92f8 000092f8 bff7 bff7 bff7 bff7 bff7 bff7 bff7
+4984 bff8 bff8 bff8 * 7262 * 8ea1f2e2,f2e2,8ea1f2e2v,f2e2v 9333 e98cb3 9333 00009333 bff8 bff8 bff8 bff8 bff8 bff8 bff8
+4985 bff9 bff9 bff9 * 7263 * 8ea1f2e3,f2e3,8ea1f2e3v,f2e3v 932f e98caf 932f 0000932f bff9 bff9 bff9 bff9 bff9 bff9 bff9
+4986 bffa bffa bffa * 7264 * 8ea1f2e4,f2e4,8ea1f2e4v,f2e4v 9322 e98ca2 9322 00009322 bffa bffa bffa bffa bffa bffa bffa
+4987 bffb bffb bffb * 7265 * 8ea1f2e5,f2e5,8ea1f2e5v,f2e5v 92fc e98bbc 92fc 000092fc bffb bffb bffb bffb bffb bffb bffb
+4988 bffc bffc bffc * 7266 * 8ea1f2e6,f2e6,8ea1f2e6v,f2e6v 932b e98cab 932b 0000932b bffc bffc bffc bffc bffc bffc bffc
+4989 bffd bffd bffd * 7267 * 8ea1f2e7,f2e7,8ea1f2e7v,f2e7v 9304 e98c84 9304 00009304 bffd bffd bffd bffd bffd bffd bffd
+4990 bffe bffe bffe * 7268 * 8ea1f2e8,f2e8,8ea1f2e8v,f2e8v 931a e98c9a 931a 0000931a bffe bffe bffe bffe bffe bffe bffe
+4991 c040 c040 c040 * 7269 * 8ea1f2e9,f2e9,8ea1f2e9v,f2e9v 9310 e98c90 9310 00009310 c040 c040 c040 c040 c040 c040 c040
+4992 c041 c041 c041 * 726a * 8ea1f2ea,f2ea,8ea1f2eav,f2eav 9326 e98ca6 9326 00009326 c041 c041 c041 c041 c041 c041 c041
+4993 c042 c042 c042 * 726b * 8ea1f2eb,f2eb,8ea1f2ebv,f2ebv 9321 e98ca1 9321 00009321 c042 c042 c042 c042 c042 c042 c042
+4994 c043 c043 c043 * 726c * 8ea1f2ec,f2ec,8ea1f2ecv,f2ecv 9315 e98c95 9315 00009315 c043 c043 c043 c043 c043 c043 c043
+4995 c044 c044 c044 * 726d * 8ea1f2ed,f2ed,8ea1f2edv,f2edv 932e e98cae 932e 0000932e c044 c044 c044 c044 c044 c044 c044
+4996 c045 c045 c045 * 726e * 8ea1f2ee,f2ee,8ea1f2eev,f2eev 9319 e98c99 9319 00009319 c045 c045 c045 c045 c045 c045 c045
+4997 c046 c046 c046 * 726f * 8ea1f2ef,f2ef,8ea1f2efv,f2efv 95bb e996bb 95bb 000095bb c046 c046 c046 c046 c046 c046 c046
+4998 c047 c047 c047 * 7270 * 8ea1f2f0,f2f0,8ea1f2f0v,f2f0v 96a7 e99aa7 96a7 000096a7 c047 c047 c047 c047 c047 c047 c047
+4999 c048 c048 c048 * 7271 * 8ea1f2f1,f2f1,8ea1f2f1v,f2f1v 96a8 e99aa8 96a8 000096a8 c048 c048 c048 c048 c048 c048 c048
+5000 c049 c049 c049 * 7272 * 8ea1f2f2,f2f2,8ea1f2f2v,f2f2v 96aa e99aaa 96aa 000096aa c049 c049 c049 c049 c049 c049 c049
+5001 c04a c04a c04a * 7273 * 8ea1f2f3,f2f3,8ea1f2f3v,f2f3v 96d5 e99b95 96d5 000096d5 c04a c04a c04a c04a c04a c04a c04a
+5002 c04b c04b c04b * 7274 * 8ea1f2f4,f2f4,8ea1f2f4v,f2f4v 970e e99c8e 970e 0000970e c04b c04b c04b c04b c04b c04b c04b
+5003 c04c c04c c04c * 7275 * 8ea1f2f5,f2f5,8ea1f2f5v,f2f5v 9711 e99c91 9711 00009711 c04c c04c c04c c04c c04c c04c c04c
+5004 c04d c04d c04d * 7276 * 8ea1f2f6,f2f6,8ea1f2f6v,f2f6v 9716 e99c96 9716 00009716 c04d c04d c04d c04d c04d c04d c04d
+5005 c04e c04e c04e * 7277 * 8ea1f2f7,f2f7,8ea1f2f7v,f2f7v 970d e99c8d 970d 0000970d c04e c04e c04e c04e c04e c04e c04e
+5006 c04f c04f c04f * 7278 * 8ea1f2f8,f2f8,8ea1f2f8v,f2f8v 9713 e99c93 9713 00009713 c04f c04f c04f c04f c04f c04f c04f
+5007 c050 c050 c050 * 7279 * 8ea1f2f9,f2f9,8ea1f2f9v,f2f9v 970f e99c8f 970f 0000970f c050 c050 c050 c050 c050 c050 c050
+5008 c051 c051 c051 * 727a * 8ea1f2fa,f2fa,8ea1f2fav,f2fav 975b e99d9b 975b 0000975b c051 c051 c051 c051 c051 c051 c051
+5009 c052 c052 c052 * 727b * 8ea1f2fb,f2fb,8ea1f2fbv,f2fbv 975c ee9385,e99d9c e4c5,975c 0000e4c5,0000975c 90dc,c052 c052 c052 c052 c052 c052 90dc,c052
+5010 c053 c053 c053 * 727c * 8ea1f2fc,f2fc,8ea1f2fcv,f2fcv 9766 e99da6 9766 00009766 c053 c053 c053 c053 c053 c053 c053
+5011 c054 c054 c054 * 727d * 8ea1f2fd,f2fd,8ea1f2fdv,f2fdv 9798 e99e98 9798 00009798 c054 c054 c054 c054 c054 c054 c054
+5012 c055 c055 c055 * 727e * 8ea1f2fe,f2fe,8ea1f2fev,f2fev 9830 e9a0b0 9830 00009830 c055 c055 c055 c055 c055 c055 c055
+5013 c056 c056 c056 * 7321 * 8ea1f3a1,f3a1,8ea1f3a1v,f3a1v 9838 e9a0b8 9838 00009838 c056 c056 c056 c056 c056 c056 c056
+5014 c057 c057 c057 * 7322 * 8ea1f3a2,f3a2,8ea1f3a2v,f3a2v 983b e9a0bb 983b 0000983b c057 c057 c057 c057 c057 c057 c057
+5015 c058 c058 c058 * 7323 * 8ea1f3a3,f3a3,8ea1f3a3v,f3a3v 9837 e9a0b7 9837 00009837 c058 c058 c058 c058 c058 c058 c058
+5016 c059 c059 c059 * 7324 * 8ea1f3a4,f3a4,8ea1f3a4v,f3a4v 982d e9a0ad 982d 0000982d c059 c059 c059 c059 c059 c059 c059
+5017 c05a c05a c05a * 7325 * 8ea1f3a5,f3a5,8ea1f3a5v,f3a5v 9839 e9a0b9 9839 00009839 c05a c05a c05a c05a c05a c05a c05a
+5018 c05b c05b c05b * 7326 * 8ea1f3a6,f3a6,8ea1f3a6v,f3a6v 9824 e9a0a4 9824 00009824 c05b c05b c05b c05b c05b c05b c05b
+5019 c05c c05c c05c * 7327 * 8ea1f3a7,f3a7,8ea1f3a7v,f3a7v 9910 e9a490 9910 00009910 c05c c05c c05c c05c c05c c05c c05c
+5020 c05d c05d c05d * 7328 * 8ea1f3a8,f3a8,8ea1f3a8v,f3a8v 9928 e9a4a8 9928 00009928 c05d c05d c05d c05d c05d c05d c05d
+5021 c05e c05e c05e * 7329 * 8ea1f3a9,f3a9,8ea1f3a9v,f3a9v 991e e9a49e 991e 0000991e c05e c05e c05e c05e c05e c05e c05e
+5022 c05f c05f c05f * 732a * 8ea1f3aa,f3aa,8ea1f3aav,f3aav 991b e9a49b 991b 0000991b c05f c05f c05f c05f c05f c05f c05f
+5023 c060 c060 c060 * 732b * 8ea1f3ab,f3ab,8ea1f3abv,f3abv 9921 e9a4a1 9921 00009921 c060 c060 c060 c060 c060 c060 c060
+5024 c061 c061 c061 * 732c * 8ea1f3ac,f3ac,8ea1f3acv,f3acv 991a e9a49a 991a 0000991a c061 c061 c061 c061 c061 c061 c061
+5025 c062 c062 c062 * 732d * 8ea1f3ad,f3ad,8ea1f3adv,f3adv 99ed e9a7ad 99ed 000099ed c062 c062 c062 c062 c062 c062 c062
+5026 c063 c063 c063 * 732e * 8ea1f3ae,f3ae,8ea1f3aev,f3aev 99e2 e9a7a2 99e2 000099e2 c063 c063 c063 c063 c063 c063 c063
+5027 c064 c064 c064 * 732f * 8ea1f3af,f3af,8ea1f3afv,f3afv 99f1 e9a7b1 99f1 000099f1 c064 c064 c064 c064 c064 c064 c064
+5028 c065 c065 c065 * 7330 * 8ea1f3b0,f3b0,8ea1f3b0v,f3b0v 9ab8 e9aab8 9ab8 00009ab8 c065 c065 c065 c065 c065 c065 c065
+5029 c066 c066 c066 * 7331 * 8ea1f3b1,f3b1,8ea1f3b1v,f3b1v 9abc e9aabc 9abc 00009abc c066 c066 c066 c066 c066 c066 c066
+5030 c067 c067 c067 * 7332 * 8ea1f3b2,f3b2,8ea1f3b2v,f3b2v 9afb e9abbb 9afb 00009afb c067 c067 c067 c067 c067 c067 c067
+5031 c068 c068 c068 * 7333 * 8ea1f3b3,f3b3,8ea1f3b3v,f3b3v 9aed e9abad 9aed 00009aed c068 c068 c068 c068 c068 c068 c068
+5032 c069 c069 c069 * 7334 * 8ea1f3b4,f3b4,8ea1f3b4v,f3b4v 9b28 e9aca8 9b28 00009b28 c069 c069 c069 c069 c069 c069 c069
+5033 c06a c06a c06a * 7335 * 8ea1f3b5,f3b5,8ea1f3b5v,f3b5v 9b91 e9ae91 9b91 00009b91 c06a c06a c06a c06a c06a c06a c06a
+5034 c06b c06b c06b * 7336 * 8ea1f3b6,f3b6,8ea1f3b6v,f3b6v 9d15 e9b495 9d15 00009d15 c06b c06b c06b c06b c06b c06b c06b
+5035 c06c c06c c06c * 7337 * 8ea1f3b7,f3b7,8ea1f3b7v,f3b7v 9d23 e9b4a3 9d23 00009d23 c06c c06c c06c c06c c06c c06c c06c
+5036 c06d c06d c06d * 7338 * 8ea1f3b8,f3b8,8ea1f3b8v,f3b8v 9d26 e9b4a6 9d26 00009d26 c06d c06d c06d c06d c06d c06d c06d
+5037 c06e c06e c06e * 7339 * 8ea1f3b9,f3b9,8ea1f3b9v,f3b9v 9d28 e9b4a8 9d28 00009d28 c06e c06e c06e c06e c06e c06e c06e
+5038 c06f c06f c06f * 733a * 8ea1f3ba,f3ba,8ea1f3bav,f3bav 9d12 e9b492 9d12 00009d12 c06f c06f c06f c06f c06f c06f c06f
+5039 c070 c070 c070 * 733b * 8ea1f3bb,f3bb,8ea1f3bbv,f3bbv 9d1b e9b49b 9d1b 00009d1b c070 c070 c070 c070 c070 c070 c070
+5040 c071 c071 c071 * 733c * 8ea1f3bc,f3bc,8ea1f3bcv,f3bcv 9ed8 e9bb98 9ed8 00009ed8 c071 c071 c071 c071 c071 c071 c071
+5041 c072 c072 c072 * 733d * 8ea1f3bd,f3bd,8ea1f3bdv,f3bdv 9ed4 e9bb94 9ed4 00009ed4 c072 c072 c072 c072 c072 c072 c072
+5042 c073 c073 c073 * 2937,733e * 8ea1a9b7,8ea1f3be,a9b7,f3be,8ea1a9b7v,8ea1f3bev,a9b7v,f3bev 9f8d e9be8d,e2bf93 9f8d,2fd3 00009f8d,00002fd3 c073 c073 c073 c073 c073 c073 c073
+5043 c074 c074 c074 * 2938,733f * 8ea1a9b8,8ea1f3bf,a9b8,f3bf,8ea1a9b8v,8ea1f3bfv,a9b8v,f3bfv 9f9c e9be9c,e2bf94 9f9c,2fd4 00009f9c,00002fd4 c074 c074 c074 c074 c074 c074 c074
+5044 c075 c075 c075 * 7340 * 8ea1f3c0,f3c0,8ea1f3c0v,f3c0v 512a e584aa 512a 0000512a c075 c075 c075 c075 c075 c075 c075
+5045 c076 c076 c076 * 7341 * 8ea1f3c1,f3c1,8ea1f3c1v,f3c1v 511f e5849f 511f 0000511f c076 c076 c076 c076 c076 c076 c076
+5046 c077 c077 c077 * 7342 * 8ea1f3c2,f3c2,8ea1f3c2v,f3c2v 5121 e584a1 5121 00005121 c077 c077 c077 c077 c077 c077 c077
+5047 c078 c078 c078 * 7343 * 8ea1f3c3,f3c3,8ea1f3c3v,f3c3v 5132 e584b2 5132 00005132 c078 c078 c078 c078 c078 c078 c078
+5048 c079 c079 c079 * 7344 * 8ea1f3c4,f3c4,8ea1f3c4v,f3c4v 52f5 e58bb5 52f5 000052f5 c079 c079 c079 c079 c079 c079 c079
+5049 c07a c07a c07a * 7345 * 8ea1f3c5,f3c5,8ea1f3c5v,f3c5v 568e e59a8e 568e 0000568e c07a c07a c07a c07a c07a c07a c07a
+5050 c07b c07b c07b * 7346 * 8ea1f3c6,f3c6,8ea1f3c6v,f3c6v 5680 e59a80 5680 00005680 c07b c07b c07b c07b c07b c07b c07b
+5051 c07c c07c c07c * 7347 * 8ea1f3c7,f3c7,8ea1f3c7v,f3c7v 5690 e59a90 5690 00005690 c07c c07c c07c c07c c07c c07c c07c
+5052 c07d c07d c07d * 7348 * 8ea1f3c8,f3c8,8ea1f3c8v,f3c8v 5685 e59a85 5685 00005685 c07d c07d c07d c07d c07d c07d c07d
+5053 c07e c07e c07e * 7349 * 8ea1f3c9,f3c9,8ea1f3c9v,f3c9v 5687 e59a87 5687 00005687 c07e c07e c07e c07e c07e c07e c07e
+5054 c0a1 c0a1 c0a1 * 734a * 8ea1f3ca,f3ca,8ea1f3cav,f3cav 568f e59a8f 568f 0000568f c0a1 c0a1 c0a1 c0a1 c0a1 c0a1 c0a1
+5055 c0a2 c0a2 c0a2 * 734b * 8ea1f3cb,f3cb,8ea1f3cbv,f3cbv 58d5 e5a395 58d5 000058d5 c0a2 c0a2 c0a2 c0a2 c0a2 c0a2 c0a2
+5056 c0a3 c0a3 c0a3 * 734c * 8ea1f3cc,f3cc,8ea1f3ccv,f3ccv 58d3 e5a393 58d3 000058d3 c0a3 c0a3 c0a3 c0a3 c0a3 c0a3 c0a3
+5057 c0a4 c0a4 c0a4 * 734d * 8ea1f3cd,f3cd,8ea1f3cdv,f3cdv 58d1 e5a391 58d1 000058d1 c0a4 c0a4 c0a4 c0a4 c0a4 c0a4 c0a4
+5058 c0a5 c0a5 c0a5 * 734e * 8ea1f3ce,f3ce,8ea1f3cev,f3cev 58ce e5a38e 58ce 000058ce c0a5 c0a5 c0a5 c0a5 c0a5 c0a5 c0a5
+5059 c0a6 c0a6 c0a6 * 734f * 8ea1f3cf,f3cf,8ea1f3cfv,f3cfv 5b30 e5acb0 5b30 00005b30 c0a6 c0a6 c0a6 c0a6 c0a6 c0a6 c0a6
+5060 c0a7 c0a7 c0a7 * 7350 * 8ea1f3d0,f3d0,8ea1f3d0v,f3d0v 5b2a e5acaa 5b2a 00005b2a c0a7 c0a7 c0a7 c0a7 c0a7 c0a7 c0a7
+5061 c0a8 c0a8 c0a8 * 7351 * 8ea1f3d1,f3d1,8ea1f3d1v,f3d1v 5b24 e5aca4 5b24 00005b24 c0a8 c0a8 c0a8 c0a8 c0a8 c0a8 c0a8
+5062 c0a9 c0a9 c0a9 * 7352 * 8ea1f3d2,f3d2,8ea1f3d2v,f3d2v 5b7a e5adba 5b7a 00005b7a c0a9 c0a9 c0a9 c0a9 c0a9 c0a9 c0a9
+5063 c0aa c0aa c0aa * 7353 * 8ea1f3d3,f3d3,8ea1f3d3v,f3d3v 5c37 e5b0b7 5c37 00005c37 c0aa c0aa c0aa c0aa c0aa c0aa c0aa
+5064 c0ab c0ab c0ab * 7354 * 8ea1f3d4,f3d4,8ea1f3d4v,f3d4v 5c68 e5b1a8 5c68 00005c68 c0ab c0ab c0ab c0ab c0ab c0ab c0ab
+5065 c0ac c0ac c0ac * 7355 * 8ea1f3d5,f3d5,8ea1f3d5v,f3d5v 5dbc e5b6bc 5dbc 00005dbc c0ac c0ac c0ac c0ac c0ac c0ac c0ac
+5066 c0ad c0ad c0ad * 7356 * 8ea1f3d6,f3d6,8ea1f3d6v,f3d6v 5dba e5b6ba 5dba 00005dba c0ad c0ad c0ad c0ad c0ad c0ad c0ad
+5067 c0ae c0ae c0ae * 7357 * 8ea1f3d7,f3d7,8ea1f3d7v,f3d7v 5dbd e5b6bd 5dbd 00005dbd c0ae c0ae c0ae c0ae c0ae c0ae c0ae
+5068 c0af c0af c0af * 7358 * 8ea1f3d8,f3d8,8ea1f3d8v,f3d8v 5db8 e5b6b8 5db8 00005db8 c0af c0af c0af c0af c0af c0af c0af
+5069 c0b0 c0b0 c0b0 * 7359 * 8ea1f3d9,f3d9,8ea1f3d9v,f3d9v 5e6b e5b9ab 5e6b 00005e6b c0b0 c0b0 c0b0 c0b0 c0b0 c0b0 c0b0
+5070 c0b1 c0b1 c0b1 * 735a * 8ea1f3da,f3da,8ea1f3dav,f3dav 5f4c e5bd8c 5f4c 00005f4c c0b1 c0b1 c0b1 c0b1 c0b1 c0b1 c0b1
+5071 c0b2 c0b2 c0b2 * 735b * 8ea1f3db,f3db,8ea1f3dbv,f3dbv 5fbd e5bebd 5fbd 00005fbd c0b2 c0b2 c0b2 c0b2 c0b2 c0b2 c0b2
+5072 c0b3 c0b3 c0b3 * 735c * 8ea1f3dc,f3dc,8ea1f3dcv,f3dcv 61c9 e68789 61c9 000061c9 c0b3 c0b3 c0b3 c0b3 c0b3 c0b3 c0b3
+5073 c0b4 c0b4 c0b4 * 735d * 8ea1f3dd,f3dd,8ea1f3ddv,f3ddv 61c2 e68782 61c2 000061c2 c0b4 c0b4 c0b4 c0b4 c0b4 c0b4 c0b4
+5074 c0b5 c0b5 c0b5 * 735e * 8ea1f3de,f3de,8ea1f3dev,f3dev 61c7 e68787 61c7 000061c7 c0b5 c0b5 c0b5 c0b5 c0b5 c0b5 c0b5
+5075 c0b6 c0b6 c0b6 * 735f * 8ea1f3df,f3df,8ea1f3dfv,f3dfv 61e6 e687a6 61e6 000061e6 c0b6 c0b6 c0b6 c0b6 c0b6 c0b6 c0b6
+5076 c0b7 c0b7 c0b7 * 7360 * 8ea1f3e0,f3e0,8ea1f3e0v,f3e0v 61cb e6878b 61cb 000061cb c0b7 c0b7 c0b7 c0b7 c0b7 c0b7 c0b7
+5077 c0b8 c0b8 c0b8 * 7361 * 8ea1f3e1,f3e1,8ea1f3e1v,f3e1v 6232 e688b2 6232 00006232 c0b8 c0b8 c0b8 c0b8 c0b8 c0b8 c0b8
+5078 c0b9 c0b9 c0b9 * 7362 * 8ea1f3e2,f3e2,8ea1f3e2v,f3e2v 6234 e688b4 6234 00006234 c0b9 c0b9 c0b9 c0b9 c0b9 c0b9 c0b9
+5079 c0ba c0ba c0ba * 7363 * 8ea1f3e3,f3e3,8ea1f3e3v,f3e3v 64ce e6938e 64ce 000064ce c0ba c0ba c0ba c0ba c0ba c0ba c0ba
+5080 c0bb c0bb c0bb * 7364 * 8ea1f3e4,f3e4,8ea1f3e4v,f3e4v 64ca e6938a 64ca 000064ca c0bb c0bb c0bb c0bb c0bb c0bb c0bb
+5081 c0bc c0bc c0bc * 7365 * 8ea1f3e5,f3e5,8ea1f3e5v,f3e5v 64d8 e69398 64d8 000064d8 c0bc c0bc c0bc c0bc c0bc c0bc c0bc
+5082 c0bd c0bd c0bd * 7366 * 8ea1f3e6,f3e6,8ea1f3e6v,f3e6v 64e0 e693a0 64e0 000064e0 c0bd c0bd c0bd c0bd c0bd c0bd c0bd
+5083 c0be c0be c0be * 7367 * 8ea1f3e7,f3e7,8ea1f3e7v,f3e7v 64f0 e693b0 64f0 000064f0 c0be c0be c0be c0be c0be c0be c0be
+5084 c0bf c0bf c0bf * 7368 * 8ea1f3e8,f3e8,8ea1f3e8v,f3e8v 64e6 e693a6 64e6 000064e6 c0bf c0bf c0bf c0bf c0bf c0bf c0bf
+5085 c0c0 c0c0 c0c0 * 7369 * 8ea1f3e9,f3e9,8ea1f3e9v,f3e9v 64ec e693ac 64ec 000064ec c0c0 c0c0 c0c0 c0c0 c0c0 c0c0 c0c0
+5086 c0c1 c0c1 c0c1 * 736a * 8ea1f3ea,f3ea,8ea1f3eav,f3eav 64f1 e693b1 64f1 000064f1 c0c1 c0c1 c0c1 c0c1 c0c1 c0c1 c0c1
+5087 c0c2 c0c2 c0c2 * 736b * 8ea1f3eb,f3eb,8ea1f3ebv,f3ebv 64e2 e693a2 64e2 000064e2 c0c2 c0c2 c0c2 c0c2 c0c2 c0c2 c0c2
+5088 c0c3 c0c3 c0c3 * 736c * 8ea1f3ec,f3ec,8ea1f3ecv,f3ecv 64ed e693ad 64ed 000064ed c0c3 c0c3 c0c3 c0c3 c0c3 c0c3 c0c3
+5089 c0c4 c0c4 c0c4 * 736d * 8ea1f3ed,f3ed,8ea1f3edv,f3edv 6582 e69682 6582 00006582 c0c4 c0c4 c0c4 c0c4 c0c4 c0c4 c0c4
+5090 c0c5 c0c5 c0c5 * 736e * 8ea1f3ee,f3ee,8ea1f3eev,f3eev 6583 e69683 6583 00006583 c0c5 c0c5 c0c5 c0c5 c0c5 c0c5 c0c5
+5091 c0c6 c0c6 c0c6 * 736f * 8ea1f3ef,f3ef,8ea1f3efv,f3efv 66d9 e69b99 66d9 000066d9 c0c6 c0c6 c0c6 c0c6 c0c6 c0c6 c0c6
+5092 c0c7 c0c7 c0c7 * 7370 * 8ea1f3f0,f3f0,8ea1f3f0v,f3f0v 66d6 e69b96 66d6 000066d6 c0c7 c0c7 c0c7 c0c7 c0c7 c0c7 c0c7
+5093 c0c8 c0c8 c0c8 * 7371 * 8ea1f3f1,f3f1,8ea1f3f1v,f3f1v 6a80 e6aa80 6a80 00006a80 c0c8 c0c8 c0c8 c0c8 c0c8 c0c8 c0c8
+5094 c0c9 c0c9 c0c9 * 7372 * 8ea1f3f2,f3f2,8ea1f3f2v,f3f2v 6a94 e6aa94 6a94 00006a94 c0c9 c0c9 c0c9 c0c9 c0c9 c0c9 c0c9
+5095 c0ca c0ca c0ca * 7373 * 8ea1f3f3,f3f3,8ea1f3f3v,f3f3v 6a84 e6aa84 6a84 00006a84 c0ca c0ca c0ca c0ca c0ca c0ca c0ca
+5096 c0cb c0cb c0cb * 7374 * 8ea1f3f4,f3f4,8ea1f3f4v,f3f4v 6aa2 e6aaa2 6aa2 00006aa2 c0cb c0cb c0cb c0cb c0cb c0cb c0cb
+5097 c0cc c0cc c0cc * 7375 * 8ea1f3f5,f3f5,8ea1f3f5v,f3f5v 6a9c e6aa9c 6a9c 00006a9c c0cc c0cc c0cc c0cc c0cc c0cc c0cc
+5098 c0cd c0cd c0cd * 7376 * 8ea1f3f6,f3f6,8ea1f3f6v,f3f6v 6adb e6ab9b 6adb 00006adb c0cd c0cd c0cd c0cd c0cd c0cd c0cd
+5099 c0ce c0ce c0ce * 7377 * 8ea1f3f7,f3f7,8ea1f3f7v,f3f7v 6aa3 e6aaa3 6aa3 00006aa3 c0ce c0ce c0ce c0ce c0ce c0ce c0ce
+5100 c0cf c0cf c0cf * 7378 * 8ea1f3f8,f3f8,8ea1f3f8v,f3f8v 6a7e e6a9be 6a7e 00006a7e c0cf c0cf c0cf c0cf c0cf c0cf c0cf
+5101 c0d0 c0d0 c0d0 * 7379 * 8ea1f3f9,f3f9,8ea1f3f9v,f3f9v 6a97 e6aa97 6a97 00006a97 c0d0 c0d0 c0d0 c0d0 c0d0 c0d0 c0d0
+5102 c0d1 c0d1 c0d1 * 737a * 8ea1f3fa,f3fa,8ea1f3fav,f3fav 6a90 e6aa90 6a90 00006a90 c0d1 c0d1 c0d1 c0d1 c0d1 c0d1 c0d1
+5103 c0d2 c0d2 c0d2 * 737b * 8ea1f3fb,f3fb,8ea1f3fbv,f3fbv 6aa0 e6aaa0 6aa0 00006aa0 c0d2 c0d2 c0d2 c0d2 c0d2 c0d2 c0d2
+5104 c0d3 c0d3 c0d3 * 737c * 8ea1f3fc,f3fc,8ea1f3fcv,f3fcv 6b5c e6ad9c 6b5c 00006b5c c0d3 c0d3 c0d3 c0d3 c0d3 c0d3 c0d3
+5105 c0d4 c0d4 c0d4 * 737d * 8ea1f3fd,f3fd,8ea1f3fdv,f3fdv 6bae e6aeae 6bae 00006bae c0d4 c0d4 c0d4 c0d4 c0d4 c0d4 c0d4
+5106 c0d5 c0d5 c0d5 * 737e * 8ea1f3fe,f3fe,8ea1f3fev,f3fev 6bda e6af9a 6bda 00006bda c0d5 c0d5 c0d5 c0d5 c0d5 c0d5 c0d5
+5107 c0d6 c0d6 c0d6 * 7421 * 8ea1f4a1,f4a1,8ea1f4a1v,f4a1v 6c08 e6b088 6c08 00006c08 c0d6 c0d6 c0d6 c0d6 c0d6 c0d6 c0d6
+5108 c0d7 c0d7 c0d7 * 7422 * 8ea1f4a2,f4a2,8ea1f4a2v,f4a2v 6fd8 e6bf98 6fd8 00006fd8 c0d7 c0d7 c0d7 c0d7 c0d7 c0d7 c0d7
+5109 c0d8 c0d8 c0d8 * 7423 * 8ea1f4a3,f4a3,8ea1f4a3v,f4a3v 6ff1 e6bfb1 6ff1 00006ff1 c0d8 c0d8 c0d8 c0d8 c0d8 c0d8 c0d8
+5110 c0d9 c0d9 c0d9 * 7424 * 8ea1f4a4,f4a4,8ea1f4a4v,f4a4v 6fdf e6bf9f 6fdf 00006fdf c0d9 c0d9 c0d9 c0d9 c0d9 c0d9 c0d9
+5111 c0da c0da c0da * 7425 * 8ea1f4a5,f4a5,8ea1f4a5v,f4a5v 6fe0 e6bfa0 6fe0 00006fe0 c0da c0da c0da c0da c0da c0da c0da
+5112 c0db c0db c0db * 7426 * 8ea1f4a6,f4a6,8ea1f4a6v,f4a6v 6fdb e6bf9b 6fdb 00006fdb c0db c0db c0db c0db c0db c0db c0db
+5113 c0dc c0dc c0dc * 7427 * 8ea1f4a7,f4a7,8ea1f4a7v,f4a7v 6fe4 e6bfa4 6fe4 00006fe4 c0dc c0dc c0dc c0dc c0dc c0dc c0dc
+5114 c0dd c0dd c0dd * 7428 * 8ea1f4a8,f4a8,8ea1f4a8v,f4a8v 6feb e6bfab 6feb 00006feb c0dd c0dd c0dd c0dd c0dd c0dd c0dd
+5115 c0de c0de c0de * 7429 * 8ea1f4a9,f4a9,8ea1f4a9v,f4a9v 6fef e6bfaf 6fef 00006fef c0de c0de c0de c0de c0de c0de c0de
+5116 c0df c0df c0df * 742a * 8ea1f4aa,f4aa,8ea1f4aav,f4aav 6f80 e6be80 6f80 00006f80 c0df c0df c0df c0df c0df c0df c0df
+5117 c0e0 c0e0 c0e0 * 742b * 8ea1f4ab,f4ab,8ea1f4abv,f4abv 6fec e6bfac 6fec 00006fec c0e0 c0e0 c0e0 c0e0 c0e0 c0e0 c0e0
+5118 c0e1 c0e1 c0e1 * 742c * 8ea1f4ac,f4ac,8ea1f4acv,f4acv 6fe1 e6bfa1 6fe1 00006fe1 c0e1 c0e1 c0e1 c0e1 c0e1 c0e1 c0e1
+5119 c0e2 c0e2 c0e2 * 742d * 8ea1f4ad,f4ad,8ea1f4adv,f4adv 6fe9 e6bfa9 6fe9 00006fe9 c0e2 c0e2 c0e2 c0e2 c0e2 c0e2 c0e2
+5120 c0e3 c0e3 c0e3 * 742e * 8ea1f4ae,f4ae,8ea1f4aev,f4aev 6fd5 e6bf95 6fd5 00006fd5 c0e3 c0e3 c0e3 c0e3 c0e3 c0e3 c0e3
+5121 c0e4 c0e4 c0e4 * 742f * 8ea1f4af,f4af,8ea1f4afv,f4afv 6fee e6bfae 6fee 00006fee c0e4 c0e4 c0e4 c0e4 c0e4 c0e4 c0e4
+5122 c0e5 c0e5 c0e5 * 7430 * 8ea1f4b0,f4b0,8ea1f4b0v,f4b0v 6ff0 e6bfb0 6ff0 00006ff0 c0e5 c0e5 c0e5 c0e5 c0e5 c0e5 c0e5
+5123 c0e6 c0e6 c0e6 * 7431 * 8ea1f4b1,f4b1,8ea1f4b1v,f4b1v 71e7 e787a7 71e7 000071e7 c0e6 c0e6 c0e6 c0e6 c0e6 c0e6 c0e6
+5124 c0e7 c0e7 c0e7 * 7432 * 8ea1f4b2,f4b2,8ea1f4b2v,f4b2v 71df e7879f,eeaf89 71df,ebc9 000071df,0000ebc9 9c62,c0e7 c0e7 c0e7 c0e7 c0e7 c0e7 9c62,c0e7
+5125 c0e8 c0e8 c0e8 * 7433 * 8ea1f4b3,f4b3,8ea1f4b3v,f4b3v 71ee e787ae 71ee 000071ee c0e8 c0e8 c0e8 c0e8 c0e8 c0e8 c0e8
+5126 c0e9 c0e9 c0e9 * 7434 * 8ea1f4b4,f4b4,8ea1f4b4v,f4b4v 71e6 e787a6 71e6 000071e6 c0e9 c0e9 c0e9 c0e9 c0e9 c0e9 c0e9
+5127 c0ea c0ea c0ea * 7435 * 8ea1f4b5,f4b5,8ea1f4b5v,f4b5v 71e5 e787a5 71e5 000071e5 c0ea c0ea c0ea c0ea c0ea c0ea c0ea
+5128 c0eb c0eb c0eb * 7436 * 8ea1f4b6,f4b6,8ea1f4b6v,f4b6v 71ed e787ad 71ed 000071ed c0eb c0eb c0eb c0eb c0eb c0eb c0eb
+5129 c0ec c0ec c0ec * 7437 * 8ea1f4b7,f4b7,8ea1f4b7v,f4b7v 71ec e787ac 71ec 000071ec c0ec c0ec c0ec c0ec c0ec c0ec c0ec
+5130 c0ed c0ed c0ed * 7438 * 8ea1f4b8,f4b8,8ea1f4b8v,f4b8v 71f4 e787b4 71f4 000071f4 c0ed c0ed c0ed c0ed c0ed c0ed c0ed
+5131 c0ee c0ee c0ee * 7439 * 8ea1f4b9,f4b9,8ea1f4b9v,f4b9v 71e0 e787a0 71e0 000071e0 c0ee c0ee c0ee c0ee c0ee c0ee c0ee
+5132 c0ef c0ef c0ef * 743a * 8ea1f4ba,f4ba,8ea1f4bav,f4bav 7235 e788b5 7235 00007235 c0ef c0ef c0ef c0ef c0ef c0ef c0ef
+5133 c0f0 c0f0 c0f0 * 743b * 8ea1f4bb,f4bb,8ea1f4bbv,f4bbv 7246 e78986 7246 00007246 c0f0 c0f0 c0f0 c0f0 c0f0 c0f0 c0f0
+5134 c0f1 c0f1 c0f1 * 743c * 8ea1f4bc,f4bc,8ea1f4bcv,f4bcv 7370 e78db0 7370 00007370 c0f1 c0f1 c0f1 c0f1 c0f1 c0f1 c0f1
+5135 c0f2 c0f2 c0f2 * 743d * 8ea1f4bd,f4bd,8ea1f4bdv,f4bdv 7372 e78db2 7372 00007372 c0f2 c0f2 c0f2 c0f2 c0f2 c0f2 c0f2
+5136 c0f3 c0f3 c0f3 * 743e * 8ea1f4be,f4be,8ea1f4bev,f4bev 74a9 e792a9 74a9 000074a9 c0f3 c0f3 c0f3 c0f3 c0f3 c0f3 c0f3
+5137 c0f4 c0f4 c0f4 * 743f * 8ea1f4bf,f4bf,8ea1f4bfv,f4bfv 74b0 e792b0 74b0 000074b0 c0f4 c0f4 c0f4 c0f4 c0f4 c0f4 c0f4
+5138 c0f5 c0f5 c0f5 * 7440 * 8ea1f4c0,f4c0,8ea1f4c0v,f4c0v 74a6 e792a6 74a6 000074a6 c0f5 c0f5 c0f5 c0f5 c0f5 c0f5 c0f5
+5139 c0f6 c0f6 c0f6 * 7441 * 8ea1f4c1,f4c1,8ea1f4c1v,f4c1v 74a8 e792a8 74a8 000074a8 c0f6 c0f6 c0f6 c0f6 c0f6 c0f6 c0f6
+5140 c0f7 c0f7 c0f7 * 7442 * 8ea1f4c2,f4c2,8ea1f4c2v,f4c2v 7646 e79986 7646 00007646 c0f7 c0f7 c0f7 c0f7 c0f7 c0f7 c0f7
+5141 c0f8 c0f8 c0f8 * 7443 * 8ea1f4c3,f4c3,8ea1f4c3v,f4c3v 7642 e79982 7642 00007642 c0f8 c0f8 c0f8 c0f8 c0f8 c0f8 c0f8
+5142 c0f9 c0f9 c0f9 * 7444 * 8ea1f4c4,f4c4,8ea1f4c4v,f4c4v 764c e7998c 764c 0000764c c0f9 c0f9 c0f9 c0f9 c0f9 c0f9 c0f9
+5143 c0fa c0fa c0fa * 7445 * 8ea1f4c5,f4c5,8ea1f4c5v,f4c5v 76ea e79baa 76ea 000076ea c0fa c0fa c0fa c0fa c0fa c0fa c0fa
+5144 c0fb c0fb c0fb * 7446 * 8ea1f4c6,f4c6,8ea1f4c6v,f4c6v 77b3 e79eb3 77b3 000077b3 c0fb c0fb c0fb c0fb c0fb c0fb c0fb
+5145 c0fc c0fc c0fc * 7447 * 8ea1f4c7,f4c7,8ea1f4c7v,f4c7v 77aa e79eaa 77aa 000077aa c0fc c0fc c0fc c0fc c0fc c0fc c0fc
+5146 c0fd c0fd c0fd * 7448 * 8ea1f4c8,f4c8,8ea1f4c8v,f4c8v 77b0 e79eb0 77b0 000077b0 c0fd c0fd c0fd c0fd c0fd c0fd c0fd
+5147 c0fe c0fe c0fe * 7449 * 8ea1f4c9,f4c9,8ea1f4c9v,f4c9v 77ac e79eac 77ac 000077ac c0fe c0fe c0fe c0fe c0fe c0fe c0fe
+5148 c140 c140 c140 * 744a * 8ea1f4ca,f4ca,8ea1f4cav,f4cav 77a7 e79ea7 77a7 000077a7 c140 c140 c140 c140 c140 c140 c140
+5149 c141 c141 c141 * 744b * 8ea1f4cb,f4cb,8ea1f4cbv,f4cbv 77ad e79ead 77ad 000077ad c141 c141 c141 c141 c141 c141 c141
+5150 c142 c142 c142 * 744c * 8ea1f4cc,f4cc,8ea1f4ccv,f4ccv 77ef e79faf 77ef 000077ef c142 c142 c142 c142 c142 c142 c142
+5151 c143 c143 c143 * 744d * 8ea1f4cd,f4cd,8ea1f4cdv,f4cdv 78f7 e7a3b7 78f7 000078f7 c143 c143 c143 c143 c143 c143 c143
+5152 c144 c144 c144 * 744e * 8ea1f4ce,f4ce,8ea1f4cev,f4cev 78fa e7a3ba 78fa 000078fa c144 c144 c144 c144 c144 c144 c144
+5153 c145 c145 c145 * 744f * 8ea1f4cf,f4cf,8ea1f4cfv,f4cfv 78f4 e7a3b4 78f4 000078f4 c145 c145 c145 c145 c145 c145 c145
+5154 c146 c146 c146 * 7450 * 8ea1f4d0,f4d0,8ea1f4d0v,f4d0v 78ef e7a3af 78ef 000078ef c146 c146 c146 c146 c146 c146 c146
+5155 c147 c147 c147 * 7451 * 8ea1f4d1,f4d1,8ea1f4d1v,f4d1v 7901 e7a481 7901 00007901 c147 c147 c147 c147 c147 c147 c147
+5156 c148 c148 c148 * 7452 * 8ea1f4d2,f4d2,8ea1f4d2v,f4d2v 79a7 e7a6a7 79a7 000079a7 c148 c148 c148 c148 c148 c148 c148
+5157 c149 c149 c149 * 7453 * 8ea1f4d3,f4d3,8ea1f4d3v,f4d3v 79aa e7a6aa 79aa 000079aa c149 c149 c149 c149 c149 c149 c149
+5158 c14a c14a c14a * 7454 * 8ea1f4d4,f4d4,8ea1f4d4v,f4d4v 7a57 e7a997 7a57 00007a57 c14a c14a c14a c14a c14a c14a c14a
+5159 c14b c14b c14b * 7455 * 8ea1f4d5,f4d5,8ea1f4d5v,f4d5v 7abf e7aabf 7abf 00007abf c14b c14b c14b c14b c14b c14b c14b
+5160 c14c c14c c14c * 7456 * 8ea1f4d6,f4d6,8ea1f4d6v,f4d6v 7c07 e7b087 7c07 00007c07 c14c c14c c14c c14c c14c c14c c14c
+5161 c14d c14d c14d * 7457 * 8ea1f4d7,f4d7,8ea1f4d7v,f4d7v 7c0d e7b08d 7c0d 00007c0d c14d c14d c14d c14d c14d c14d c14d
+5162 c14e c14e c14e * 7458 * 8ea1f4d8,f4d8,8ea1f4d8v,f4d8v 7bfe e7afbe 7bfe 00007bfe c14e c14e c14e c14e c14e c14e c14e
+5163 c14f c14f c14f * 7459 * 8ea1f4d9,f4d9,8ea1f4d9v,f4d9v 7bf7 e7afb7 7bf7 00007bf7 c14f c14f c14f c14f c14f c14f c14f
+5164 c150 c150 c150 * 745a * 8ea1f4da,f4da,8ea1f4dav,f4dav 7c0c e7b08c 7c0c 00007c0c c150 c150 c150 c150 c150 c150 c150
+5165 c151 c151 c151 * 745b * 8ea1f4db,f4db,8ea1f4dbv,f4dbv 7be0 e7afa0 7be0 00007be0 c151 c151 c151 c151 c151 c151 c151
+5166 c152 c152 c152 * 745c * 8ea1f4dc,f4dc,8ea1f4dcv,f4dcv 7ce0 e7b3a0 7ce0 00007ce0 c152 c152 c152 c152 c152 c152 c152
+5167 c153 c153 c153 * 745d * 8ea1f4dd,f4dd,8ea1f4ddv,f4ddv 7cdc e7b39c 7cdc 00007cdc c153 c153 c153 c153 c153 c153 c153
+5168 c154 c154 c154 * 745e * 8ea1f4de,f4de,8ea1f4dev,f4dev 7cde e7b39e 7cde 00007cde c154 c154 c154 c154 c154 c154 c154
+5169 c155 c155 c155 * 745f * 8ea1f4df,f4df,8ea1f4dfv,f4dfv 7ce2 e7b3a2 7ce2 00007ce2 c155 c155 c155 c155 c155 c155 c155
+5170 c156 c156 c156 * 7460 * 8ea1f4e0,f4e0,8ea1f4e0v,f4e0v 7cdf e7b39f 7cdf 00007cdf c156 c156 c156 c156 c156 c156 c156
+5171 c157 c157 c157 * 7461 * 8ea1f4e1,f4e1,8ea1f4e1v,f4e1v 7cd9 e7b399 7cd9 00007cd9 c157 c157 c157 c157 c157 c157 c157
+5172 c158 c158 c158 * 7462 * 8ea1f4e2,f4e2,8ea1f4e2v,f4e2v 7cdd e7b39d 7cdd 00007cdd c158 c158 c158 c158 c158 c158 c158
+5173 c159 c159 c159 * 7463 * 8ea1f4e3,f4e3,8ea1f4e3v,f4e3v 7e2e e7b8ae 7e2e 00007e2e c159 c159 c159 c159 c159 c159 c159
+5174 c15a c15a c15a * 7464 * 8ea1f4e4,f4e4,8ea1f4e4v,f4e4v 7e3e e7b8be 7e3e 00007e3e c15a c15a c15a c15a c15a c15a c15a
+5175 c15b c15b c15b * 7465 * 8ea1f4e5,f4e5,8ea1f4e5v,f4e5v 7e46 e7b986 7e46 00007e46 c15b c15b c15b c15b c15b c15b c15b
+5176 c15c c15c c15c * 7466 * 8ea1f4e6,f4e6,8ea1f4e6v,f4e6v 7e37 e7b8b7 7e37 00007e37 c15c c15c c15c c15c c15c c15c c15c
+5177 c15d c15d c15d * 7467 * 8ea1f4e7,f4e7,8ea1f4e7v,f4e7v 7e32 e7b8b2 7e32 00007e32 c15d c15d c15d c15d c15d c15d c15d
+5178 c15e c15e c15e * 7468 * 8ea1f4e8,f4e8,8ea1f4e8v,f4e8v 7e43 e7b983 7e43 00007e43 c15e c15e c15e c15e c15e c15e c15e
+5179 c15f c15f c15f * 7469 * 8ea1f4e9,f4e9,8ea1f4e9v,f4e9v 7e2b e7b8ab 7e2b 00007e2b c15f c15f c15f c15f c15f c15f c15f
+5180 c160 c160 c160 * 746a * 8ea1f4ea,f4ea,8ea1f4eav,f4eav 7e3d e7b8bd 7e3d 00007e3d c160 c160 c160 c160 c160 c160 c160
+5181 c161 c161 c161 * 746b * 8ea1f4eb,f4eb,8ea1f4ebv,f4ebv 7e31 e7b8b1 7e31 00007e31 c161 c161 c161 c161 c161 c161 c161
+5182 c162 c162 c162 * 746c * 8ea1f4ec,f4ec,8ea1f4ecv,f4ecv 7e45 e7b985 7e45 00007e45 c162 c162 c162 c162 c162 c162 c162
+5183 c163 c163 c163 * 746d * 8ea1f4ed,f4ed,8ea1f4edv,f4edv 7e41 e7b981 7e41 00007e41 c163 c163 c163 c163 c163 c163 c163
+5184 c164 c164 c164 * 746e * 8ea1f4ee,f4ee,8ea1f4eev,f4eev 7e34 e7b8b4 7e34 00007e34 c164 c164 c164 c164 c164 c164 c164
+5185 c165 c165 c165 * 746f * 8ea1f4ef,f4ef,8ea1f4efv,f4efv 7e39 e7b8b9 7e39 00007e39 c165 c165 c165 c165 c165 c165 c165
+5186 c166 c166 c166 * 7470 * 8ea1f4f0,f4f0,8ea1f4f0v,f4f0v 7e48 e7b988 7e48 00007e48 c166 c166 c166 c166 c166 c166 c166
+5187 c167 c167 c167 * 7471 * 8ea1f4f1,f4f1,8ea1f4f1v,f4f1v 7e35 e7b8b5 7e35 00007e35 c167 c167 c167 c167 c167 c167 c167
+5188 c168 c168 c168 * 7472 * 8ea1f4f2,f4f2,8ea1f4f2v,f4f2v 7e3f e7b8bf 7e3f 00007e3f c168 c168 c168 c168 c168 c168 c168
+5189 c169 c169 c169 * 7473 * 8ea1f4f3,f4f3,8ea1f4f3v,f4f3v 7e2f e7b8af 7e2f 00007e2f c169 c169 c169 c169 c169 c169 c169
+5190 c16a c16a c16a * 7474 * 8ea1f4f4,f4f4,8ea1f4f4v,f4f4v 7f44 e7bd84 7f44 00007f44 c16a c16a c16a c16a c16a c16a c16a
+5191 c16b c16b c16b * 7475 * 8ea1f4f5,f4f5,8ea1f4f5v,f4f5v 7ff3 e7bfb3 7ff3 00007ff3 c16b c16b c16b c16b c16b c16b c16b
+5192 c16c c16c c16c * 7476 * 8ea1f4f6,f4f6,8ea1f4f6v,f4f6v 7ffc e7bfbc 7ffc 00007ffc c16c c16c c16c c16c c16c c16c c16c
+5193 c16d c16d c16d * 7477 * 8ea1f4f7,f4f7,8ea1f4f7v,f4f7v 8071 e881b1 8071 00008071 c16d c16d c16d c16d c16d c16d c16d
+5194 c16e c16e c16e * 7478 * 8ea1f4f8,f4f8,8ea1f4f8v,f4f8v 8072 e881b2 8072 00008072 c16e c16e c16e c16e c16e c16e c16e
+5195 c16f c16f c16f * 7479 * 8ea1f4f9,f4f9,8ea1f4f9v,f4f9v 8070 e881b0 8070 00008070 c16f c16f c16f c16f c16f c16f c16f
+5196 c170 c170 c170 * 747a * 8ea1f4fa,f4fa,8ea1f4fav,f4fav 806f e881af 806f 0000806f c170 c170 c170 c170 c170 c170 c170
+5197 c171 c171 c171 * 747b * 8ea1f4fb,f4fb,8ea1f4fbv,f4fbv 8073 e881b3 8073 00008073 c171 c171 c171 c171 c171 c171 c171
+5198 c172 c172 c172 * 747c * 8ea1f4fc,f4fc,8ea1f4fcv,f4fcv 81c6 e88786 81c6 000081c6 c172 c172 c172 c172 c172 c172 c172
+5199 c173 c173 c173 * 747d * 8ea1f4fd,f4fd,8ea1f4fdv,f4fdv 81c3 e88783 81c3 000081c3 c173 c173 c173 c173 c173 c173 c173
+5200 c174 c174 c174 * 747e * 8ea1f4fe,f4fe,8ea1f4fev,f4fev 81ba e886ba 81ba 000081ba c174 c174 c174 c174 c174 c174 c174
+5201 c175 c175 c175 * 7521 * 8ea1f5a1,f5a1,8ea1f5a1v,f5a1v 81c2 e88782 81c2 000081c2 c175 c175 c175 c175 c175 c175 c175
+5202 c176 c176 c176 * 7522 * 8ea1f5a2,f5a2,8ea1f5a2v,f5a2v 81c0 e88780 81c0 000081c0 c176 c176 c176 c176 c176 c176 c176
+5203 c177 c177 c177 * 7523 * 8ea1f5a3,f5a3,8ea1f5a3v,f5a3v 81bf e886bf 81bf 000081bf c177 c177 c177 c177 c177 c177 c177
+5204 c178 c178 c178 * 7524 * 8ea1f5a4,f5a4,8ea1f5a4v,f5a4v 81bd e886bd 81bd 000081bd c178 c178 c178 c178 c178 c178 c178
+5205 c179 c179 c179 * 7525 * 8ea1f5a5,f5a5,8ea1f5a5v,f5a5v 81c9 e88789 81c9 000081c9 c179 c179 c179 c179 c179 c179 c179
+5206 c17a c17a c17a * 7526 * 8ea1f5a6,f5a6,8ea1f5a6v,f5a6v 81be e886be 81be 000081be c17a c17a c17a c17a c17a c17a c17a
+5207 c17b c17b c17b * 7527 * 8ea1f5a7,f5a7,8ea1f5a7v,f5a7v 81e8 e887a8 81e8 000081e8 c17b c17b c17b c17b c17b c17b c17b
+5208 c17c c17c c17c * 7528 * 8ea1f5a8,f5a8,8ea1f5a8v,f5a8v 8209 e88889 8209 00008209 c17c c17c c17c c17c c17c c17c c17c
+5209 c17d c17d c17d * 7529 * 8ea1f5a9,f5a9,8ea1f5a9v,f5a9v 8271 e889b1 8271 00008271 c17d c17d c17d c17d c17d c17d c17d
+5210 c17e c17e c17e * 752a * 8ea1f5aa,f5aa,8ea1f5aav,f5aav 85aa e896aa 85aa 000085aa c17e c17e c17e c17e c17e c17e c17e
+5211 c1a1 c1a1 c1a1 * 752b * 8ea1f5ab,f5ab,8ea1f5abv,f5abv 8584 e89684 8584 00008584 c1a1 c1a1 c1a1 c1a1 c1a1 c1a1 c1a1
+5212 c1a2 c1a2 c1a2 * 752c * 8ea1f5ac,f5ac,8ea1f5acv,f5acv 857e e895be 857e 0000857e c1a2 c1a2 c1a2 c1a2 c1a2 c1a2 c1a2
+5213 c1a3 c1a3 c1a3 * 752d * 8ea1f5ad,f5ad,8ea1f5adv,f5adv 859c e8969c 859c 0000859c c1a3 c1a3 c1a3 c1a3 c1a3 c1a3 c1a3
+5214 c1a4 c1a4 c1a4 * 752e * 8ea1f5ae,f5ae,8ea1f5aev,f5aev 8591 e89691 8591 00008591 c1a4 c1a4 c1a4 c1a4 c1a4 c1a4 c1a4
+5215 c1a5 c1a5 c1a5 * 752f * 8ea1f5af,f5af,8ea1f5afv,f5afv 8594 e89694 8594 00008594 c1a5 c1a5 c1a5 c1a5 c1a5 c1a5 c1a5
+5216 c1a6 c1a6 c1a6 * 7530 * 8ea1f5b0,f5b0,8ea1f5b0v,f5b0v 85af e896af 85af 000085af c1a6 c1a6 c1a6 c1a6 c1a6 c1a6 c1a6
+5217 c1a7 c1a7 c1a7 * 7531 * 8ea1f5b1,f5b1,8ea1f5b1v,f5b1v 859b e8969b 859b 0000859b c1a7 c1a7 c1a7 c1a7 c1a7 c1a7 c1a7
+5218 c1a8 c1a8 c1a8 * 7532 * 8ea1f5b2,f5b2,8ea1f5b2v,f5b2v 8587 e89687 8587 00008587 c1a8 c1a8 c1a8 c1a8 c1a8 c1a8 c1a8
+5219 c1a9 c1a9 c1a9 * 7533 * 8ea1f5b3,f5b3,8ea1f5b3v,f5b3v 85a8 e896a8 85a8 000085a8 c1a9 c1a9 c1a9 c1a9 c1a9 c1a9 c1a9
+5220 c1aa c1aa c1aa * 7534 * 8ea1f5b4,f5b4,8ea1f5b4v,f5b4v 858a e8968a 858a 0000858a c1aa c1aa c1aa c1aa c1aa c1aa c1aa
+5221 c2cb c2cb c2cb * 7535 * 8ea1f5b5,f5b5,8ea1f5b5v,f5b5v 85a6 e896a6 85a6 000085a6 c2cb c2cb c2cb c2cb c2cb c2cb c2cb
+5222 c1ab c1ab c1ab * 7536 * 8ea1f5b6,f5b6,8ea1f5b6v,f5b6v 8667 e899a7 8667 00008667 c1ab c1ab c1ab c1ab c1ab c1ab c1ab
+5223 c1ac c1ac c1ac * 7537 * 8ea1f5b7,f5b7,8ea1f5b7v,f5b7v 87c0 e89f80 87c0 000087c0 c1ac c1ac c1ac c1ac c1ac c1ac c1ac
+5224 c1ad c1ad c1ad * 7538 * 8ea1f5b8,f5b8,8ea1f5b8v,f5b8v 87d1 e89f91 87d1 000087d1 c1ad c1ad c1ad c1ad c1ad c1ad c1ad
+5225 c1ae c1ae c1ae * 7539 * 8ea1f5b9,f5b9,8ea1f5b9v,f5b9v 87b3 e89eb3 87b3 000087b3 c1ae c1ae c1ae c1ae c1ae c1ae c1ae
+5226 c1af c1af c1af * 753a * 8ea1f5ba,f5ba,8ea1f5bav,f5bav 87d2 e89f92 87d2 000087d2 c1af c1af c1af c1af c1af c1af c1af
+5227 c1b0 c1b0 c1b0 * 753b * 8ea1f5bb,f5bb,8ea1f5bbv,f5bbv 87c6 e89f86 87c6 000087c6 c1b0 c1b0 c1b0 c1b0 c1b0 c1b0 c1b0
+5228 c1b1 c1b1 c1b1 * 753c * 8ea1f5bc,f5bc,8ea1f5bcv,f5bcv 87ab e89eab 87ab 000087ab c1b1 c1b1 c1b1 c1b1 c1b1 c1b1 c1b1
+5229 c1b2 c1b2 c1b2 * 753d * 8ea1f5bd,f5bd,8ea1f5bdv,f5bdv 87bb e89ebb 87bb 000087bb c1b2 c1b2 c1b2 c1b2 c1b2 c1b2 c1b2
+5230 c1b3 c1b3 c1b3 * 753e * 8ea1f5be,f5be,8ea1f5bev,f5bev 87ba e89eba 87ba 000087ba c1b3 c1b3 c1b3 c1b3 c1b3 c1b3 c1b3
+5231 c1b4 c1b4 c1b4 * 753f * 8ea1f5bf,f5bf,8ea1f5bfv,f5bfv 87c8 e89f88 87c8 000087c8 c1b4 c1b4 c1b4 c1b4 c1b4 c1b4 c1b4
+5232 c1b5 c1b5 c1b5 * 7540 * 8ea1f5c0,f5c0,8ea1f5c0v,f5c0v 87cb e89f8b 87cb 000087cb c1b5 c1b5 c1b5 c1b5 c1b5 c1b5 c1b5
+5233 c1b6 c1b6 c1b6 * 7541 * 8ea1f5c1,f5c1,8ea1f5c1v,f5c1v 893b e8a4bb 893b 0000893b c1b6 c1b6 c1b6 c1b6 c1b6 c1b6 c1b6
+5234 c1b7 c1b7 c1b7 * 7542 * 8ea1f5c2,f5c2,8ea1f5c2v,f5c2v 8936 e8a4b6 8936 00008936 c1b7 c1b7 c1b7 c1b7 c1b7 c1b7 c1b7
+5235 c1b8 c1b8 c1b8 * 7543 * 8ea1f5c3,f5c3,8ea1f5c3v,f5c3v 8944 e8a584 8944 00008944 c1b8 c1b8 c1b8 c1b8 c1b8 c1b8 c1b8
+5236 c1b9 c1b9 c1b9 * 7544 * 8ea1f5c4,f5c4,8ea1f5c4v,f5c4v 8938 e8a4b8 8938 00008938 c1b9 c1b9 c1b9 c1b9 c1b9 c1b9 c1b9
+5237 c1ba c1ba c1ba * 7545 * 8ea1f5c5,f5c5,8ea1f5c5v,f5c5v 893d e8a4bd 893d 0000893d c1ba c1ba c1ba c1ba c1ba c1ba c1ba
+5238 c1bb c1bb c1bb * 7546 * 8ea1f5c6,f5c6,8ea1f5c6v,f5c6v 89ac e8a6ac 89ac 000089ac c1bb c1bb c1bb c1bb c1bb c1bb c1bb
+5239 c1bc c1bc c1bc * 7547 * 8ea1f5c7,f5c7,8ea1f5c7v,f5c7v 8b0e e8ac8e 8b0e 00008b0e c1bc c1bc c1bc c1bc c1bc c1bc c1bc
+5240 c1bd c1bd c1bd * 7548 * 8ea1f5c8,f5c8,8ea1f5c8v,f5c8v 8b17 e8ac97 8b17 00008b17 c1bd c1bd c1bd c1bd c1bd c1bd c1bd
+5241 c1be c1be c1be * 7549 * 8ea1f5c9,f5c9,8ea1f5c9v,f5c9v 8b19 e8ac99 8b19 00008b19 c1be c1be c1be c1be c1be c1be c1be
+5242 c1bf c1bf c1bf * 754a * 8ea1f5ca,f5ca,8ea1f5cav,f5cav 8b1b e8ac9b 8b1b 00008b1b c1bf c1bf c1bf c1bf c1bf c1bf c1bf
+5243 c1c0 c1c0 c1c0 * 754b * 8ea1f5cb,f5cb,8ea1f5cbv,f5cbv 8b0a e8ac8a 8b0a 00008b0a c1c0 c1c0 c1c0 c1c0 c1c0 c1c0 c1c0
+5244 c1c1 c1c1 c1c1 * 754c * 8ea1f5cc,f5cc,8ea1f5ccv,f5ccv 8b20 e8aca0 8b20 00008b20 c1c1 c1c1 c1c1 c1c1 c1c1 c1c1 c1c1
+5245 c1c2 c1c2 c1c2 * 754d * 8ea1f5cd,f5cd,8ea1f5cdv,f5cdv 8b1d e8ac9d 8b1d 00008b1d c1c2 c1c2 c1c2 c1c2 c1c2 c1c2 c1c2
+5246 c1c3 c1c3 c1c3 * 754e * 8ea1f5ce,f5ce,8ea1f5cev,f5cev 8b04 e8ac84 8b04 00008b04 c1c3 c1c3 c1c3 c1c3 c1c3 c1c3 c1c3
+5247 c1c4 c1c4 c1c4 * 754f * 8ea1f5cf,f5cf,8ea1f5cfv,f5cfv 8b10 e8ac90 8b10 00008b10 c1c4 c1c4 c1c4 c1c4 c1c4 c1c4 c1c4
+5248 c1c5 c1c5 c1c5 * 7550 * 8ea1f5d0,f5d0,8ea1f5d0v,f5d0v 8c41 e8b181 8c41 00008c41 c1c5 c1c5 c1c5 c1c5 c1c5 c1c5 c1c5
+5249 c1c6 c1c6 c1c6 * 7551 * 8ea1f5d1,f5d1,8ea1f5d1v,f5d1v 8c3f e8b0bf 8c3f 00008c3f c1c6 c1c6 c1c6 c1c6 c1c6 c1c6 c1c6
+5250 c1c7 c1c7 c1c7 * 7552 * 8ea1f5d2,f5d2,8ea1f5d2v,f5d2v 8c73 e8b1b3 8c73 00008c73 c1c7 c1c7 c1c7 c1c7 c1c7 c1c7 c1c7
+5251 c1c8 c1c8 c1c8 * 7553 * 8ea1f5d3,f5d3,8ea1f5d3v,f5d3v 8cfa e8b3ba 8cfa 00008cfa c1c8 c1c8 c1c8 c1c8 c1c8 c1c8 c1c8
+5252 c1c9 c1c9 c1c9 * 7554 * 8ea1f5d4,f5d4,8ea1f5d4v,f5d4v 8cfd e8b3bd 8cfd 00008cfd c1c9 c1c9 c1c9 c1c9 c1c9 c1c9 c1c9
+5253 c1ca c1ca c1ca * 7555 * 8ea1f5d5,f5d5,8ea1f5d5v,f5d5v 8cfc e8b3bc 8cfc 00008cfc c1ca c1ca c1ca c1ca c1ca c1ca c1ca
+5254 c1cb c1cb c1cb * 7556 * 8ea1f5d6,f5d6,8ea1f5d6v,f5d6v 8cf8 e8b3b8 8cf8 00008cf8 c1cb c1cb c1cb c1cb c1cb c1cb c1cb
+5255 c1cc c1cc c1cc * 7557 * 8ea1f5d7,f5d7,8ea1f5d7v,f5d7v 8cfb e8b3bb 8cfb 00008cfb c1cc c1cc c1cc c1cc c1cc c1cc c1cc
+5256 c1cd c1cd c1cd * 7558 * 8ea1f5d8,f5d8,8ea1f5d8v,f5d8v 8da8 e8b6a8 8da8 00008da8 c1cd c1cd c1cd c1cd c1cd c1cd c1cd
+5257 c1ce c1ce c1ce * 7559 * 8ea1f5d9,f5d9,8ea1f5d9v,f5d9v 8e49 e8b989 8e49 00008e49 c1ce c1ce c1ce c1ce c1ce c1ce c1ce
+5258 c1cf c1cf c1cf * 755a * 8ea1f5da,f5da,8ea1f5dav,f5dav 8e4b e8b98b 8e4b 00008e4b c1cf c1cf c1cf c1cf c1cf c1cf c1cf
+5259 c1d0 c1d0 c1d0 * 755b * 8ea1f5db,f5db,8ea1f5dbv,f5dbv 8e48 e8b988 8e48 00008e48 c1d0 c1d0 c1d0 c1d0 c1d0 c1d0 c1d0
+5260 c1d1 c1d1 c1d1 * 755c * 8ea1f5dc,f5dc,8ea1f5dcv,f5dcv 8e4a e8b98a 8e4a 00008e4a c1d1 c1d1 c1d1 c1d1 c1d1 c1d1 c1d1
+5261 c1d2 c1d2 c1d2 * 755d * 8ea1f5dd,f5dd,8ea1f5ddv,f5ddv 8f44 e8bd84 8f44 00008f44 c1d2 c1d2 c1d2 c1d2 c1d2 c1d2 c1d2
+5262 c1d3 c1d3 c1d3 * 755e * 8ea1f5de,f5de,8ea1f5dev,f5dev 8f3e e8bcbe 8f3e 00008f3e c1d3 c1d3 c1d3 c1d3 c1d3 c1d3 c1d3
+5263 c1d4 c1d4 c1d4 * 755f * 8ea1f5df,f5df,8ea1f5dfv,f5dfv 8f42 e8bd82 8f42 00008f42 c1d4 c1d4 c1d4 c1d4 c1d4 c1d4 c1d4
+5264 c1d5 c1d5 c1d5 * 7560 * 8ea1f5e0,f5e0,8ea1f5e0v,f5e0v 8f45 e8bd85 8f45 00008f45 c1d5 c1d5 c1d5 c1d5 c1d5 c1d5 c1d5
+5265 c1d6 c1d6 c1d6 * 7561 * 8ea1f5e1,f5e1,8ea1f5e1v,f5e1v 8f3f e8bcbf 8f3f 00008f3f c1d6 c1d6 c1d6 c1d6 c1d6 c1d6 c1d6
+5266 c1d7 c1d7 c1d7 * 7562 * 8ea1f5e2,f5e2,8ea1f5e2v,f5e2v 907f e981bf 907f 0000907f c1d7 c1d7 c1d7 c1d7 c1d7 c1d7 c1d7
+5267 c1d8 c1d8 c1d8 * 7563 * 8ea1f5e3,f5e3,8ea1f5e3v,f5e3v 907d e981bd 907d 0000907d c1d8 c1d8 c1d8 c1d8 c1d8 c1d8 c1d8
+5268 c1d9 c1d9 c1d9 * 7564 * 8ea1f5e4,f5e4,8ea1f5e4v,f5e4v 9084 e98284 9084 00009084 c1d9 c1d9 c1d9 c1d9 c1d9 c1d9 c1d9
+5269 c1da c1da c1da * 7565 * 8ea1f5e5,f5e5,8ea1f5e5v,f5e5v 9081 e98281 9081 00009081 c1da c1da c1da c1da c1da c1da c1da
+5270 c1db c1db c1db * 7566 * 8ea1f5e6,f5e6,8ea1f5e6v,f5e6v 9082 e98282 9082 00009082 c1db c1db c1db c1db c1db c1db c1db
+5271 c1dc c1dc c1dc * 7567 * 8ea1f5e7,f5e7,8ea1f5e7v,f5e7v 9080 e98280 9080 00009080 c1dc c1dc c1dc c1dc c1dc c1dc c1dc
+5272 c1dd c1dd c1dd * 7568 * 8ea1f5e8,f5e8,8ea1f5e8v,f5e8v 9139 e984b9 9139 00009139 c1dd c1dd c1dd c1dd c1dd c1dd c1dd
+5273 c1de c1de c1de * 7569 * 8ea1f5e9,f5e9,8ea1f5e9v,f5e9v 91a3 e986a3 91a3 000091a3 c1de c1de c1de c1de c1de c1de c1de
+5274 c1df c1df c1df * 756a * 8ea1f5ea,f5ea,8ea1f5eav,f5eav 919e e9869e 919e 0000919e c1df c1df c1df c1df c1df c1df c1df
+5275 c1e0 c1e0 c1e0 * 756b * 8ea1f5eb,f5eb,8ea1f5ebv,f5ebv 919c e9869c 919c 0000919c c1e0 c1e0 c1e0 c1e0 c1e0 c1e0 c1e0
+5276 c1e1 c1e1 c1e1 * 756c * 8ea1f5ec,f5ec,8ea1f5ecv,f5ecv 934d e98d8d 934d 0000934d c1e1 c1e1 c1e1 c1e1 c1e1 c1e1 c1e1
+5277 c1e2 c1e2 c1e2 * 756d * 8ea1f5ed,f5ed,8ea1f5edv,f5edv 9382 e98e82 9382 00009382 c1e2 c1e2 c1e2 c1e2 c1e2 c1e2 c1e2
+5278 c1e3 c1e3 c1e3 * 756e * 8ea1f5ee,f5ee,8ea1f5eev,f5eev 9328 e98ca8 9328 00009328 c1e3 c1e3 c1e3 c1e3 c1e3 c1e3 c1e3
+5279 c1e4 c1e4 c1e4 * 756f * 8ea1f5ef,f5ef,8ea1f5efv,f5efv 9375 e98db5 9375 00009375 c1e4 c1e4 c1e4 c1e4 c1e4 c1e4 c1e4
+5280 c1e5 c1e5 c1e5 * 7570 * 8ea1f5f0,f5f0,8ea1f5f0v,f5f0v 934a e98d8a 934a 0000934a c1e5 c1e5 c1e5 c1e5 c1e5 c1e5 c1e5
+5281 c1e6 c1e6 c1e6 * 7571 * 8ea1f5f1,f5f1,8ea1f5f1v,f5f1v 9365 e98da5 9365 00009365 c1e6 c1e6 c1e6 c1e6 c1e6 c1e6 c1e6
+5282 c1e7 c1e7 c1e7 * 7572 * 8ea1f5f2,f5f2,8ea1f5f2v,f5f2v 934b e98d8b 934b 0000934b c1e7 c1e7 c1e7 c1e7 c1e7 c1e7 c1e7
+5283 c1e8 c1e8 c1e8 * 7573 * 8ea1f5f3,f5f3,8ea1f5f3v,f5f3v 9318 e98c98 9318 00009318 c1e8 c1e8 c1e8 c1e8 c1e8 c1e8 c1e8
+5284 c1e9 c1e9 c1e9 * 7574 * 8ea1f5f4,f5f4,8ea1f5f4v,f5f4v 937e e98dbe 937e 0000937e c1e9 c1e9 c1e9 c1e9 c1e9 c1e9 c1e9
+5285 c1ea c1ea c1ea * 7575 * 8ea1f5f5,f5f5,8ea1f5f5v,f5f5v 936c e98dac 936c 0000936c c1ea c1ea c1ea c1ea c1ea c1ea c1ea
+5286 c1eb c1eb c1eb * 7576 * 8ea1f5f6,f5f6,8ea1f5f6v,f5f6v 935b e98d9b 935b 0000935b c1eb c1eb c1eb c1eb c1eb c1eb c1eb
+5287 c1ec c1ec c1ec * 7577 * 8ea1f5f7,f5f7,8ea1f5f7v,f5f7v 9370 e98db0 9370 00009370 c1ec c1ec c1ec c1ec c1ec c1ec c1ec
+5288 c1ed c1ed c1ed * 7578 * 8ea1f5f8,f5f8,8ea1f5f8v,f5f8v 935a e98d9a 935a 0000935a c1ed c1ed c1ed c1ed c1ed c1ed c1ed
+5289 c1ee c1ee c1ee * 7579 * 8ea1f5f9,f5f9,8ea1f5f9v,f5f9v 9354 e98d94 9354 00009354 c1ee c1ee c1ee c1ee c1ee c1ee c1ee
+5290 c1ef c1ef c1ef * 757a * 8ea1f5fa,f5fa,8ea1f5fav,f5fav 95ca e9978a 95ca 000095ca c1ef c1ef c1ef c1ef c1ef c1ef c1ef
+5291 c1f0 c1f0 c1f0 * 757b * 8ea1f5fb,f5fb,8ea1f5fbv,f5fbv 95cb e9978b 95cb 000095cb c1f0 c1f0 c1f0 c1f0 c1f0 c1f0 c1f0
+5292 c1f1 c1f1 c1f1 * 757c * 8ea1f5fc,f5fc,8ea1f5fcv,f5fcv 95cc e9978c 95cc 000095cc c1f1 c1f1 c1f1 c1f1 c1f1 c1f1 c1f1
+5293 c1f2 c1f2 c1f2 * 757d * 8ea1f5fd,f5fd,8ea1f5fdv,f5fdv 95c8 e99788 95c8 000095c8 c1f2 c1f2 c1f2 c1f2 c1f2 c1f2 c1f2
+5294 c1f3 c1f3 c1f3 * 757e * 8ea1f5fe,f5fe,8ea1f5fev,f5fev 95c6 e99786 95c6 000095c6 c1f3 c1f3 c1f3 c1f3 c1f3 c1f3 c1f3
+5295 c1f4 c1f4 c1f4 * 7621 * 8ea1f6a1,f6a1,8ea1f6a1v,f6a1v 96b1 e99ab1 96b1 000096b1 c1f4 c1f4 c1f4 c1f4 c1f4 c1f4 c1f4
+5296 c1f5 c1f5 c1f5 * 7622 * 8ea1f6a2,f6a2,8ea1f6a2v,f6a2v 96b8 e99ab8 96b8 000096b8 c1f5 c1f5 c1f5 c1f5 c1f5 c1f5 c1f5
+5297 c1f6 c1f6 c1f6 * 7623 * 8ea1f6a3,f6a3,8ea1f6a3v,f6a3v 96d6 e99b96 96d6 000096d6 c1f6 c1f6 c1f6 c1f6 c1f6 c1f6 c1f6
+5298 c1f7 c1f7 c1f7 * 7624 * 8ea1f6a4,f6a4,8ea1f6a4v,f6a4v 971c e99c9c 971c 0000971c c1f7 c1f7 c1f7 c1f7 c1f7 c1f7 c1f7
+5299 c1f8 c1f8 c1f8 * 7625 * 8ea1f6a5,f6a5,8ea1f6a5v,f6a5v 971e e99c9e 971e 0000971e c1f8 c1f8 c1f8 c1f8 c1f8 c1f8 c1f8
+5300 c1f9 c1f9 c1f9 * 7626 * 8ea1f6a6,f6a6,8ea1f6a6v,f6a6v 97a0 e99ea0 97a0 000097a0 c1f9 c1f9 c1f9 c1f9 c1f9 c1f9 c1f9
+5301 c1fa c1fa c1fa * 7627 * 8ea1f6a7,f6a7,8ea1f6a7v,f6a7v 97d3 e99f93 97d3 000097d3 c1fa c1fa c1fa c1fa c1fa c1fa c1fa
+5302 c1fb c1fb c1fb * 7628 * 8ea1f6a8,f6a8,8ea1f6a8v,f6a8v 9846 e9a186 9846 00009846 c1fb c1fb c1fb c1fb c1fb c1fb c1fb
+5303 c1fc c1fc c1fc * 7629 * 8ea1f6a9,f6a9,8ea1f6a9v,f6a9v 98b6 e9a2b6 98b6 000098b6 c1fc c1fc c1fc c1fc c1fc c1fc c1fc
+5304 c1fd c1fd c1fd * 762a * 8ea1f6aa,f6aa,8ea1f6aav,f6aav 9935 e9a4b5 9935 00009935 c1fd c1fd c1fd c1fd c1fd c1fd c1fd
+5305 c1fe c1fe c1fe * 762b * 8ea1f6ab,f6ab,8ea1f6abv,f6abv 9a01 e9a881 9a01 00009a01 c1fe c1fe c1fe c1fe c1fe c1fe c1fe
+5306 c240 c240 c240 * 762c * 8ea1f6ac,f6ac,8ea1f6acv,f6acv 99ff e9a7bf 99ff 000099ff c240 c240 c240 c240 c240 c240 c240
+5307 c241 c241 c241 * 762d * 8ea1f6ad,f6ad,8ea1f6adv,f6adv 9bae e9aeae 9bae 00009bae c241 c241 c241 c241 c241 c241 c241
+5308 c242 c242 c242 * 762e * 8ea1f6ae,f6ae,8ea1f6aev,f6aev 9bab e9aeab 9bab 00009bab c242 c242 c242 c242 c242 c242 c242
+5309 c243 c243 c243 * 762f * 8ea1f6af,f6af,8ea1f6afv,f6afv 9baa e9aeaa 9baa 00009baa c243 c243 c243 c243 c243 c243 c243
+5310 c244 c244 c244 * 7630 * 8ea1f6b0,f6b0,8ea1f6b0v,f6b0v 9bad e9aead 9bad 00009bad c244 c244 c244 c244 c244 c244 c244
+5311 c245 c245 c245 * 7631 * 8ea1f6b1,f6b1,8ea1f6b1v,f6b1v 9d3b e9b4bb 9d3b 00009d3b c245 c245 c245 c245 c245 c245 c245
+5312 c246 c246 c246 * 7632 * 8ea1f6b2,f6b2,8ea1f6b2v,f6b2v 9d3f e9b4bf 9d3f 00009d3f c246 c246 c246 c246 c246 c246 c246
+5313 c247 c247 c247 * 7633 * 8ea1f6b3,f6b3,8ea1f6b3v,f6b3v 9e8b e9ba8b 9e8b 00009e8b c247 c247 c247 c247 c247 c247 c247
+5314 c248 c248 c248 * 7634 * 8ea1f6b4,f6b4,8ea1f6b4v,f6b4v 9ecf e9bb8f 9ecf 00009ecf c248 c248 c248 c248 c248 c248 c248
+5315 c249 c249 c249 * 7635 * 8ea1f6b5,f6b5,8ea1f6b5v,f6b5v 9ede e9bb9e 9ede 00009ede c249 c249 c249 c249 c249 c249 c249
+5316 c24a c24a c24a * 7636 * 8ea1f6b6,f6b6,8ea1f6b6v,f6b6v 9edc e9bb9c 9edc 00009edc c24a c24a c24a c24a c24a c24a c24a
+5317 c24b c24b c24b * 7637 * 8ea1f6b7,f6b7,8ea1f6b7v,f6b7v 9edd e9bb9d 9edd 00009edd c24b c24b c24b c24b c24b c24b c24b
+5318 c24c c24c c24c * 7638 * 8ea1f6b8,f6b8,8ea1f6b8v,f6b8v 9edb e9bb9b 9edb 00009edb c24c c24c c24c c24c c24c c24c c24c
+5319 c24d c24d c24d * 7639 * 8ea1f6b9,f6b9,8ea1f6b9v,f6b9v 9f3e e9bcbe 9f3e 00009f3e c24d c24d c24d c24d c24d c24d c24d
+5320 c24e c24e c24e * 763a * 8ea1f6ba,f6ba,8ea1f6bav,f6bav 9f4b e9bd8b 9f4b 00009f4b c24e c24e c24e c24e c24e c24e c24e
+5321 c24f c24f c24f * 763b * 8ea1f6bb,f6bb,8ea1f6bbv,f6bbv 53e2 e58fa2 53e2 000053e2 c24f c24f c24f c24f c24f c24f c24f
+5322 c250 c250 c250 * 763c * 8ea1f6bc,f6bc,8ea1f6bcv,f6bcv 5695 e59a95 5695 00005695 c250 c250 c250 c250 c250 c250 c250
+5323 c251 c251 c251 * 763d * 8ea1f6bd,f6bd,8ea1f6bdv,f6bdv 56ae e59aae 56ae 000056ae c251 c251 c251 c251 c251 c251 c251
+5324 c252 c252 c252 * 763e * 8ea1f6be,f6be,8ea1f6bev,f6bev 58d9 e5a399 58d9 000058d9 c252 c252 c252 c252 c252 c252 c252
+5325 c253 c253 c253 * 763f * 8ea1f6bf,f6bf,8ea1f6bfv,f6bfv 58d8 e5a398 58d8 000058d8 c253 c253 c253 c253 c253 c253 c253
+5326 c254 c254 c254 * 7640 * 8ea1f6c0,f6c0,8ea1f6c0v,f6c0v 5b38 e5acb8 5b38 00005b38 c254 c254 c254 c254 c254 c254 c254
+5327 c255 c255 c255 * 7641 * 8ea1f6c1,f6c1,8ea1f6c1v,f6c1v 5f5d e5bd9d 5f5d 00005f5d c255 c255 c255 c255 c255 c255 c255
+5328 c256 c256 c256 * 7642 * 8ea1f6c2,f6c2,8ea1f6c2v,f6c2v 61e3 e687a3 61e3 000061e3 c256 c256 c256 c256 c256 c256 c256
+5329 c257 c257 c257 * 7643 * 8ea1f6c3,f6c3,8ea1f6c3v,f6c3v 6233 e688b3 6233 00006233 c257 c257 c257 c257 c257 c257 c257
+5330 c258 c258 c258 * 7644 * 8ea1f6c4,f6c4,8ea1f6c4v,f6c4v 64f4 e693b4 64f4 000064f4 c258 c258 c258 c258 c258 c258 c258
+5331 c259 c259 c259 * 7645 * 8ea1f6c5,f6c5,8ea1f6c5v,f6c5v 64f2 e693b2 64f2 000064f2 c259 c259 c259 c259 c259 c259 c259
+5332 c25a c25a c25a * 7646 * 8ea1f6c6,f6c6,8ea1f6c6v,f6c6v 64fe e693be 64fe 000064fe c25a c25a c25a c25a c25a c25a c25a
+5333 c25b c25b c25b * 7647 * 8ea1f6c7,f6c7,8ea1f6c7v,f6c7v 6506 e69486 6506 00006506 c25b c25b c25b c25b c25b c25b c25b
+5334 c25c c25c c25c * 7648 * 8ea1f6c8,f6c8,8ea1f6c8v,f6c8v 64fa e693ba 64fa 000064fa c25c c25c c25c c25c c25c c25c c25c
+5335 c25d c25d c25d * 7649 * 8ea1f6c9,f6c9,8ea1f6c9v,f6c9v 64fb e693bb 64fb 000064fb c25d c25d c25d c25d c25d c25d c25d
+5336 c25e c25e c25e * 764a * 8ea1f6ca,f6ca,8ea1f6cav,f6cav 64f7 e693b7 64f7 000064f7 c25e c25e c25e c25e c25e c25e c25e
+5337 c25f c25f c25f * 764b * 8ea1f6cb,f6cb,8ea1f6cbv,f6cbv 65b7 e696b7 65b7 000065b7 c25f c25f c25f c25f c25f c25f c25f
+5338 c260 c260 c260 * 764c * 8ea1f6cc,f6cc,8ea1f6ccv,f6ccv 66dc e69b9c 66dc 000066dc c260 c260 c260 c260 c260 c260 c260
+5339 c261 c261 c261 * 764d * 8ea1f6cd,f6cd,8ea1f6cdv,f6cdv 6726 e69ca6 6726 00006726 c261 c261 c261 c261 c261 c261 c261
+5340 c262 c262 c262 * 764e * 8ea1f6ce,f6ce,8ea1f6cev,f6cev 6ab3 e6aab3 6ab3 00006ab3 c262 c262 c262 c262 c262 c262 c262
+5341 c263 c263 c263 * 764f * 8ea1f6cf,f6cf,8ea1f6cfv,f6cfv 6aac e6aaac 6aac 00006aac c263 c263 c263 c263 c263 c263 c263
+5342 c264 c264 c264 * 7650 * 8ea1f6d0,f6d0,8ea1f6d0v,f6d0v 6ac3 e6ab83 6ac3 00006ac3 c264 c264 c264 c264 c264 c264 c264
+5343 c265 c265 c265 * 7651 * 8ea1f6d1,f6d1,8ea1f6d1v,f6d1v 6abb e6aabb 6abb 00006abb c265 c265 c265 c265 c265 c265 c265
+5344 c266 c266 c266 * 7652 * 8ea1f6d2,f6d2,8ea1f6d2v,f6d2v 6ab8 e6aab8 6ab8 00006ab8 c266 c266 c266 c266 c266 c266 c266
+5345 c267 c267 c267 * 7653 * 8ea1f6d3,f6d3,8ea1f6d3v,f6d3v 6ac2 e6ab82 6ac2 00006ac2 c267 c267 c267 c267 c267 c267 c267
+5346 c268 c268 c268 * 7654 * 8ea1f6d4,f6d4,8ea1f6d4v,f6d4v 6aae e6aaae 6aae 00006aae c268 c268 c268 c268 c268 c268 c268
+5347 c269 c269 c269 * 7655 * 8ea1f6d5,f6d5,8ea1f6d5v,f6d5v 6aaf e6aaaf 6aaf 00006aaf c269 c269 c269 c269 c269 c269 c269
+5348 c26a c26a c26a * 7656 * 8ea1f6d6,f6d6,8ea1f6d6v,f6d6v 6b5f e6ad9f 6b5f 00006b5f c26a c26a c26a c26a c26a c26a c26a
+5349 c26b c26b c26b * 7657 * 8ea1f6d7,f6d7,8ea1f6d7v,f6d7v 6b78 e6adb8 6b78 00006b78 c26b c26b c26b c26b c26b c26b c26b
+5350 c26c c26c c26c * 7658 * 8ea1f6d8,f6d8,8ea1f6d8v,f6d8v 6baf e6aeaf 6baf 00006baf c26c c26c c26c c26c c26c c26c c26c
+5351 c26d c26d c26d * 7659 * 8ea1f6d9,f6d9,8ea1f6d9v,f6d9v 7009 e78089 7009 00007009 c26d c26d c26d c26d c26d c26d c26d
+5352 c26e c26e c26e * 765a * 8ea1f6da,f6da,8ea1f6dav,f6dav 700b e7808b 700b 0000700b c26e c26e c26e c26e c26e c26e c26e
+5353 c26f c26f c26f * 765b * 8ea1f6db,f6db,8ea1f6dbv,f6dbv 6ffe e6bfbe 6ffe 00006ffe c26f c26f c26f c26f c26f c26f c26f
+5354 c270 c270 c270 * 765c * 8ea1f6dc,f6dc,8ea1f6dcv,f6dcv 7006 e78086 7006 00007006 c270 c270 c270 c270 c270 c270 c270
+5355 c271 c271 c271 * 765d * 8ea1f6dd,f6dd,8ea1f6ddv,f6ddv 6ffa e6bfba 6ffa 00006ffa c271 c271 c271 c271 c271 c271 c271
+5356 c272 c272 c272 * 765e * 8ea1f6de,f6de,8ea1f6dev,f6dev 7011 e78091 7011 00007011 c272 c272 c272 c272 c272 c272 c272
+5357 c273 c273 c273 * 765f * 8ea1f6df,f6df,8ea1f6dfv,f6dfv 700f e7808f 700f 0000700f c273 c273 c273 c273 c273 c273 c273
+5358 c274 c274 c274 * 7660 * 8ea1f6e0,f6e0,8ea1f6e0v,f6e0v 71fb e787bb 71fb 000071fb c274 c274 c274 c274 c274 c274 c274
+5359 c275 c275 c275 * 7661 * 8ea1f6e1,f6e1,8ea1f6e1v,f6e1v 71fc e787bc 71fc 000071fc c275 c275 c275 c275 c275 c275 c275
+5360 c276 c276 c276 * 7662 * 8ea1f6e2,f6e2,8ea1f6e2v,f6e2v 71fe e787be 71fe 000071fe c276 c276 c276 c276 c276 c276 c276
+5361 c277 c277 c277 * 7663 * 8ea1f6e3,f6e3,8ea1f6e3v,f6e3v 71f8 e787b8 71f8 000071f8 c277 c277 c277 c277 c277 c277 c277
+5362 c278 c278 c278 * 7664 * 8ea1f6e4,f6e4,8ea1f6e4v,f6e4v 7377 e78db7 7377 00007377 c278 c278 c278 c278 c278 c278 c278
+5363 c279 c279 c279 * 7665 * 8ea1f6e5,f6e5,8ea1f6e5v,f6e5v 7375 e78db5 7375 00007375 c279 c279 c279 c279 c279 c279 c279
+5364 c27a c27a c27a * 7666 * 8ea1f6e6,f6e6,8ea1f6e6v,f6e6v 74a7 e792a7 74a7 000074a7 c27a c27a c27a c27a c27a c27a c27a
+5365 c27b c27b c27b * 7667 * 8ea1f6e7,f6e7,8ea1f6e7v,f6e7v 74bf e792bf 74bf 000074bf c27b c27b c27b c27b c27b c27b c27b
+5366 c27c c27c c27c * 7668 * 8ea1f6e8,f6e8,8ea1f6e8v,f6e8v 7515 e79495 7515 00007515 c27c c27c c27c c27c c27c c27c c27c
+5367 c27d c27d c27d * 7669 * 8ea1f6e9,f6e9,8ea1f6e9v,f6e9v 7656 e79996 7656 00007656 c27d c27d c27d c27d c27d c27d c27d
+5368 c27e c27e c27e * 766a * 8ea1f6ea,f6ea,8ea1f6eav,f6eav 7658 e79998 7658 00007658 c27e c27e c27e c27e c27e c27e c27e
+5369 c2a1 c2a1 c2a1 * 766b * 8ea1f6eb,f6eb,8ea1f6ebv,f6ebv 7652 e79992 7652 00007652 c2a1 c2a1 c2a1 c2a1 c2a1 c2a1 c2a1
+5370 c2a2 c2a2 c2a2 * 766c * 8ea1f6ec,f6ec,8ea1f6ecv,f6ecv 77bd e79ebd 77bd 000077bd c2a2 c2a2 c2a2 c2a2 c2a2 c2a2 c2a2
+5371 c2a3 c2a3 c2a3 * 766d * 8ea1f6ed,f6ed,8ea1f6edv,f6edv 77bf e79ebf 77bf 000077bf c2a3 c2a3 c2a3 c2a3 c2a3 c2a3 c2a3
+5372 c2a4 c2a4 c2a4 * 766e * 8ea1f6ee,f6ee,8ea1f6eev,f6eev 77bb e79ebb 77bb 000077bb c2a4 c2a4 c2a4 c2a4 c2a4 c2a4 c2a4
+5373 c2a5 c2a5 c2a5 * 766f * 8ea1f6ef,f6ef,8ea1f6efv,f6efv 77bc e79ebc 77bc 000077bc c2a5 c2a5 c2a5 c2a5 c2a5 c2a5 c2a5
+5374 c2a6 c2a6 c2a6 * 7670 * 8ea1f6f0,f6f0,8ea1f6f0v,f6f0v 790e e7a48e 790e 0000790e c2a6 c2a6 c2a6 c2a6 c2a6 c2a6 c2a6
+5375 c2a7 c2a7 c2a7 * 7671 * 8ea1f6f1,f6f1,8ea1f6f1v,f6f1v 79ae e7a6ae 79ae 000079ae c2a7 c2a7 c2a7 c2a7 c2a7 c2a7 c2a7
+5376 c2a8 c2a8 c2a8 * 7672 * 8ea1f6f2,f6f2,8ea1f6f2v,f6f2v 7a61 e7a9a1 7a61 00007a61 c2a8 c2a8 c2a8 c2a8 c2a8 c2a8 c2a8
+5377 c2a9 c2a9 c2a9 * 7673 * 8ea1f6f3,f6f3,8ea1f6f3v,f6f3v 7a62 e7a9a2 7a62 00007a62 c2a9 c2a9 c2a9 c2a9 c2a9 c2a9 c2a9
+5378 c2aa c2aa c2aa * 7674 * 8ea1f6f4,f6f4,8ea1f6f4v,f6f4v 7a60 e7a9a0 7a60 00007a60 c2aa c2aa c2aa c2aa c2aa c2aa c2aa
+5379 c2ab c2ab c2ab * 7675 * 8ea1f6f5,f6f5,8ea1f6f5v,f6f5v 7ac4 e7ab84 7ac4 00007ac4 c2ab c2ab c2ab c2ab c2ab c2ab c2ab
+5380 c2ac c2ac c2ac * 7676 * 8ea1f6f6,f6f6,8ea1f6f6v,f6f6v 7ac5 e7ab85 7ac5 00007ac5 c2ac c2ac c2ac c2ac c2ac c2ac c2ac
+5381 c2ad c2ad c2ad * 7677 * 8ea1f6f7,f6f7,8ea1f6f7v,f6f7v 7c2b e7b0ab 7c2b 00007c2b c2ad c2ad c2ad c2ad c2ad c2ad c2ad
+5382 c2ae c2ae c2ae * 7678 * 8ea1f6f8,f6f8,8ea1f6f8v,f6f8v 7c27 e7b0a7 7c27 00007c27 c2ae c2ae c2ae c2ae c2ae c2ae c2ae
+5383 c2af c2af c2af * 7679 * 8ea1f6f9,f6f9,8ea1f6f9v,f6f9v 7c2a e7b0aa 7c2a 00007c2a c2af c2af c2af c2af c2af c2af c2af
+5384 c2b0 c2b0 c2b0 * 767a * 8ea1f6fa,f6fa,8ea1f6fav,f6fav 7c1e e7b09e 7c1e 00007c1e c2b0 c2b0 c2b0 c2b0 c2b0 c2b0 c2b0
+5385 c2b1 c2b1 c2b1 * 767b * 8ea1f6fb,f6fb,8ea1f6fbv,f6fbv 7c23 e7b0a3 7c23 00007c23 c2b1 c2b1 c2b1 c2b1 c2b1 c2b1 c2b1
+5386 c2b2 c2b2 c2b2 * 767c * 8ea1f6fc,f6fc,8ea1f6fcv,f6fcv 7c21 e7b0a1 7c21 00007c21 c2b2 c2b2 c2b2 c2b2 c2b2 c2b2 c2b2
+5387 c2b3 c2b3 c2b3 * 767d * 8ea1f6fd,f6fd,8ea1f6fdv,f6fdv 7ce7 e7b3a7 7ce7 00007ce7 c2b3 c2b3 c2b3 c2b3 c2b3 c2b3 c2b3
+5388 c2b4 c2b4 c2b4 * 767e * 8ea1f6fe,f6fe,8ea1f6fev,f6fev 7e54 e7b994 7e54 00007e54 c2b4 c2b4 c2b4 c2b4 c2b4 c2b4 c2b4
+5389 c2b5 c2b5 c2b5 * 7721 * 8ea1f7a1,f7a1,8ea1f7a1v,f7a1v 7e55 e7b995 7e55 00007e55 c2b5 c2b5 c2b5 c2b5 c2b5 c2b5 c2b5
+5390 c2b6 c2b6 c2b6 * 7722 * 8ea1f7a2,f7a2,8ea1f7a2v,f7a2v 7e5e e7b99e 7e5e 00007e5e c2b6 c2b6 c2b6 c2b6 c2b6 c2b6 c2b6
+5391 c2b7 c2b7 c2b7 * 7723 * 8ea1f7a3,f7a3,8ea1f7a3v,f7a3v 7e5a e7b99a 7e5a 00007e5a c2b7 c2b7 c2b7 c2b7 c2b7 c2b7 c2b7
+5392 c2b8 c2b8 c2b8 * 7724 * 8ea1f7a4,f7a4,8ea1f7a4v,f7a4v 7e61 e7b9a1 7e61 00007e61 c2b8 c2b8 c2b8 c2b8 c2b8 c2b8 c2b8
+5393 c2b9 c2b9 c2b9 * 7725 * 8ea1f7a5,f7a5,8ea1f7a5v,f7a5v 7e52 e7b992 7e52 00007e52 c2b9 c2b9 c2b9 c2b9 c2b9 c2b9 c2b9
+5394 c2ba c2ba c2ba * 7726 * 8ea1f7a6,f7a6,8ea1f7a6v,f7a6v 7e59 e7b999 7e59 00007e59 c2ba c2ba c2ba c2ba c2ba c2ba c2ba
+5395 c2bb c2bb c2bb * 7727 * 8ea1f7a7,f7a7,8ea1f7a7v,f7a7v 7f48 e7bd88 7f48 00007f48 c2bb c2bb c2bb c2bb c2bb c2bb c2bb
+5396 c2bc c2bc c2bc * 7728 * 8ea1f7a8,f7a8,8ea1f7a8v,f7a8v 7ff9 e7bfb9 7ff9 00007ff9 c2bc c2bc c2bc c2bc c2bc c2bc c2bc
+5397 c2bd c2bd c2bd * 7729 * 8ea1f7a9,f7a9,8ea1f7a9v,f7a9v 7ffb e7bfbb 7ffb 00007ffb c2bd c2bd c2bd c2bd c2bd c2bd c2bd
+5398 c2be c2be c2be * 772a * 8ea1f7aa,f7aa,8ea1f7aav,f7aav 8077 e881b7 8077 00008077 c2be c2be c2be c2be c2be c2be c2be
+5399 c2bf c2bf c2bf * 772b * 8ea1f7ab,f7ab,8ea1f7abv,f7abv 8076 e881b6 8076 00008076 c2bf c2bf c2bf c2bf c2bf c2bf c2bf
+5400 c2c0 c2c0 c2c0 * 772c * 8ea1f7ac,f7ac,8ea1f7acv,f7acv 81cd e8878d 81cd 000081cd c2c0 c2c0 c2c0 c2c0 c2c0 c2c0 c2c0
+5401 c2c1 c2c1 c2c1 * 772d * 8ea1f7ad,f7ad,8ea1f7adv,f7adv 81cf e8878f 81cf 000081cf c2c1 c2c1 c2c1 c2c1 c2c1 c2c1 c2c1
+5402 c2c2 c2c2 c2c2 * 772e * 8ea1f7ae,f7ae,8ea1f7aev,f7aev 820a e8888a 820a 0000820a c2c2 c2c2 c2c2 c2c2 c2c2 c2c2 c2c2
+5403 c2c3 c2c3 c2c3 * 772f * 8ea1f7af,f7af,8ea1f7afv,f7afv 85cf e8978f 85cf 000085cf c2c3 c2c3 c2c3 c2c3 c2c3 c2c3 c2c3
+5404 c2c4 c2c4 c2c4 * 7730 * 8ea1f7b0,f7b0,8ea1f7b0v,f7b0v 85a9 e896a9 85a9 000085a9 c2c4 c2c4 c2c4 c2c4 c2c4 c2c4 c2c4
+5405 c2c5 c2c5 c2c5 * 7731 * 8ea1f7b1,f7b1,8ea1f7b1v,f7b1v 85cd e8978d 85cd 000085cd c2c5 c2c5 c2c5 c2c5 c2c5 c2c5 c2c5
+5406 c2c6 c2c6 c2c6 * 7732 * 8ea1f7b2,f7b2,8ea1f7b2v,f7b2v 85d0 e89790 85d0 000085d0 c2c6 c2c6 c2c6 c2c6 c2c6 c2c6 c2c6
+5407 c2c7 c2c7 c2c7 * 7733 * 8ea1f7b3,f7b3,8ea1f7b3v,f7b3v 85c9 e89789 85c9 000085c9 c2c7 c2c7 c2c7 c2c7 c2c7 c2c7 c2c7
+5408 c2c8 c2c8 c2c8 * 7734 * 8ea1f7b4,f7b4,8ea1f7b4v,f7b4v 85b0 e896b0 85b0 000085b0 c2c8 c2c8 c2c8 c2c8 c2c8 c2c8 c2c8
+5409 c2c9 c2c9 c2c9 * 7735 * 8ea1f7b5,f7b5,8ea1f7b5v,f7b5v 85ba e896ba 85ba 000085ba c2c9 c2c9 c2c9 c2c9 c2c9 c2c9 c2c9
+5410 c2ca c2ca c2ca * 7736 * 8ea1f7b6,f7b6,8ea1f7b6v,f7b6v 85b9 e896b9 85b9 000085b9 c2ca c2ca c2ca c2ca c2ca c2ca c2ca
+5411 c2cc c2cc c2cc * 7737 * 8ea1f7b7,f7b7,8ea1f7b7v,f7b7v 87ef e89faf 87ef 000087ef c2cc c2cc c2cc c2cc c2cc c2cc c2cc
+5412 c2cd c2cd c2cd * 7738 * 8ea1f7b8,f7b8,8ea1f7b8v,f7b8v 87ec e89fac 87ec 000087ec c2cd c2cd c2cd c2cd c2cd c2cd c2cd
+5413 c2ce c2ce c2ce * 7739 * 8ea1f7b9,f7b9,8ea1f7b9v,f7b9v 87f2 e89fb2 87f2 000087f2 c2ce c2ce c2ce c2ce c2ce c2ce c2ce
+5414 c2cf c2cf c2cf * 773a * 8ea1f7ba,f7ba,8ea1f7bav,f7bav 87e0 e89fa0 87e0 000087e0 c2cf c2cf c2cf c2cf c2cf c2cf c2cf
+5415 c2d0 c2d0 c2d0 * 773b * 8ea1f7bb,f7bb,8ea1f7bbv,f7bbv 8986 e8a686 8986 00008986 c2d0 c2d0 c2d0 c2d0 c2d0 c2d0 c2d0
+5416 c2d1 c2d1 c2d1 * 773c * 8ea1f7bc,f7bc,8ea1f7bcv,f7bcv 89b2 e8a6b2 89b2 000089b2 c2d1 c2d1 c2d1 c2d1 c2d1 c2d1 c2d1
+5417 c2d2 c2d2 c2d2 * 773d * 8ea1f7bd,f7bd,8ea1f7bdv,f7bdv 89f4 e8a7b4 89f4 000089f4 c2d2 c2d2 c2d2 c2d2 c2d2 c2d2 c2d2
+5418 c2d3 c2d3 c2d3 * 773e * 8ea1f7be,f7be,8ea1f7bev,f7bev 8b28 e8aca8 8b28 00008b28 c2d3 c2d3 c2d3 c2d3 c2d3 c2d3 c2d3
+5419 c2d4 c2d4 c2d4 * 773f * 8ea1f7bf,f7bf,8ea1f7bfv,f7bfv 8b39 e8acb9 8b39 00008b39 c2d4 c2d4 c2d4 c2d4 c2d4 c2d4 c2d4
+5420 c2d5 c2d5 c2d5 * 7740 * 8ea1f7c0,f7c0,8ea1f7c0v,f7c0v 8b2c e8acac 8b2c 00008b2c c2d5 c2d5 c2d5 c2d5 c2d5 c2d5 c2d5
+5421 c2d6 c2d6 c2d6 * 7741 * 8ea1f7c1,f7c1,8ea1f7c1v,f7c1v 8b2b e8acab 8b2b 00008b2b c2d6 c2d6 c2d6 c2d6 c2d6 c2d6 c2d6
+5422 c2d7 c2d7 c2d7 * 7742 * 8ea1f7c2,f7c2,8ea1f7c2v,f7c2v 8c50 e8b190 8c50 00008c50 c2d7 c2d7 c2d7 c2d7 c2d7 c2d7 c2d7
+5423 c2d8 c2d8 c2d8 * 7743 * 8ea1f7c3,f7c3,8ea1f7c3v,f7c3v 8d05 e8b485 8d05 00008d05 c2d8 c2d8 c2d8 c2d8 c2d8 c2d8 c2d8
+5424 c2d9 c2d9 c2d9 * 7744 * 8ea1f7c4,f7c4,8ea1f7c4v,f7c4v 8e59 e8b999 8e59 00008e59 c2d9 c2d9 c2d9 c2d9 c2d9 c2d9 c2d9
+5425 c2da c2da c2da * 7745 * 8ea1f7c5,f7c5,8ea1f7c5v,f7c5v 8e63 e8b9a3 8e63 00008e63 c2da c2da c2da c2da c2da c2da c2da
+5426 c2db c2db c2db * 7746 * 8ea1f7c6,f7c6,8ea1f7c6v,f7c6v 8e66 e8b9a6 8e66 00008e66 c2db c2db c2db c2db c2db c2db c2db
+5427 c2dc c2dc c2dc * 7747 * 8ea1f7c7,f7c7,8ea1f7c7v,f7c7v 8e64 e8b9a4 8e64 00008e64 c2dc c2dc c2dc c2dc c2dc c2dc c2dc
+5428 c2dd c2dd c2dd * 7748 * 8ea1f7c8,f7c8,8ea1f7c8v,f7c8v 8e5f e8b99f 8e5f 00008e5f c2dd c2dd c2dd c2dd c2dd c2dd c2dd
+5429 c2de c2de c2de * 7749 * 8ea1f7c9,f7c9,8ea1f7c9v,f7c9v 8e55 e8b995 8e55 00008e55 c2de c2de c2de c2de c2de c2de c2de
+5430 c2df c2df c2df * 774a * 8ea1f7ca,f7ca,8ea1f7cav,f7cav 8ec0 e8bb80 8ec0 00008ec0 c2df c2df c2df c2df c2df c2df c2df
+5431 c2e0 c2e0 c2e0 * 774b * 8ea1f7cb,f7cb,8ea1f7cbv,f7cbv 8f49 e8bd89 8f49 00008f49 c2e0 c2e0 c2e0 c2e0 c2e0 c2e0 c2e0
+5432 c2e1 c2e1 c2e1 * 774c * 8ea1f7cc,f7cc,8ea1f7ccv,f7ccv 8f4d e8bd8d 8f4d 00008f4d c2e1 c2e1 c2e1 c2e1 c2e1 c2e1 c2e1
+5433 c2e2 c2e2 c2e2 * 774d * 8ea1f7cd,f7cd,8ea1f7cdv,f7cdv 9087 e98287 9087 00009087 c2e2 c2e2 c2e2 c2e2 c2e2 c2e2 c2e2
+5434 c2e3 c2e3 c2e3 * 774e * 8ea1f7ce,f7ce,8ea1f7cev,f7cev 9083 e98283 9083 00009083 c2e3 c2e3 c2e3 c2e3 c2e3 c2e3 c2e3
+5435 c2e4 c2e4 c2e4 * 774f * 8ea1f7cf,f7cf,8ea1f7cfv,f7cfv 9088 e98288 9088 00009088 c2e4 c2e4 c2e4 c2e4 c2e4 c2e4 c2e4
+5436 c2e5 c2e5 c2e5 * 7750 * 8ea1f7d0,f7d0,8ea1f7d0v,f7d0v 91ab e986ab 91ab 000091ab c2e5 c2e5 c2e5 c2e5 c2e5 c2e5 c2e5
+5437 c2e6 c2e6 c2e6 * 7751 * 8ea1f7d1,f7d1,8ea1f7d1v,f7d1v 91ac e986ac 91ac 000091ac c2e6 c2e6 c2e6 c2e6 c2e6 c2e6 c2e6
+5438 c2e7 c2e7 c2e7 * 7752 * 8ea1f7d2,f7d2,8ea1f7d2v,f7d2v 91d0 e98790 91d0 000091d0 c2e7 c2e7 c2e7 c2e7 c2e7 c2e7 c2e7
+5439 c2e8 c2e8 c2e8 * 7753 * 8ea1f7d3,f7d3,8ea1f7d3v,f7d3v 9394 e98e94 9394 00009394 c2e8 c2e8 c2e8 c2e8 c2e8 c2e8 c2e8
+5440 c2e9 c2e9 c2e9 * 7754 * 8ea1f7d4,f7d4,8ea1f7d4v,f7d4v 938a e98e8a 938a 0000938a c2e9 c2e9 c2e9 c2e9 c2e9 c2e9 c2e9
+5441 c2ea c2ea c2ea * 7755 * 8ea1f7d5,f7d5,8ea1f7d5v,f7d5v 9396 e98e96 9396 00009396 c2ea c2ea c2ea c2ea c2ea c2ea c2ea
+5442 c2eb c2eb c2eb * 7756 * 8ea1f7d6,f7d6,8ea1f7d6v,f7d6v 93a2 e98ea2 93a2 000093a2 c2eb c2eb c2eb c2eb c2eb c2eb c2eb
+5443 c2ec c2ec c2ec * 7757 * 8ea1f7d7,f7d7,8ea1f7d7v,f7d7v 93b3 e98eb3 93b3 000093b3 c2ec c2ec c2ec c2ec c2ec c2ec c2ec
+5444 c2ed c2ed c2ed * 7758 * 8ea1f7d8,f7d8,8ea1f7d8v,f7d8v 93ae e98eae 93ae 000093ae c2ed c2ed c2ed c2ed c2ed c2ed c2ed
+5445 c2ee c2ee c2ee * 7759 * 8ea1f7d9,f7d9,8ea1f7d9v,f7d9v 93ac e98eac 93ac 000093ac c2ee c2ee c2ee c2ee c2ee c2ee c2ee
+5446 c2ef c2ef c2ef * 775a * 8ea1f7da,f7da,8ea1f7dav,f7dav 93b0 e98eb0 93b0 000093b0 c2ef c2ef c2ef c2ef c2ef c2ef c2ef
+5447 c2f0 c2f0 c2f0 * 775b * 8ea1f7db,f7db,8ea1f7dbv,f7dbv 9398 e98e98 9398 00009398 c2f0 c2f0 c2f0 c2f0 c2f0 c2f0 c2f0
+5448 c2f1 c2f1 c2f1 * 775c * 8ea1f7dc,f7dc,8ea1f7dcv,f7dcv 939a e98e9a 939a 0000939a c2f1 c2f1 c2f1 c2f1 c2f1 c2f1 c2f1
+5449 c2f2 c2f2 c2f2 * 775d * 8ea1f7dd,f7dd,8ea1f7ddv,f7ddv 9397 e98e97 9397 00009397 c2f2 c2f2 c2f2 c2f2 c2f2 c2f2 c2f2
+5450 c2f3 c2f3 c2f3 * 775e * 8ea1f7de,f7de,8ea1f7dev,f7dev 95d4 e99794 95d4 000095d4 c2f3 c2f3 c2f3 c2f3 c2f3 c2f3 c2f3
+5451 c2f4 c2f4 c2f4 * 775f * 8ea1f7df,f7df,8ea1f7dfv,f7dfv 95d6 e99796 95d6 000095d6 c2f4 c2f4 c2f4 c2f4 c2f4 c2f4 c2f4
+5452 c2f5 c2f5 c2f5 * 7760 * 8ea1f7e0,f7e0,8ea1f7e0v,f7e0v 95d0 e99790 95d0 000095d0 c2f5 c2f5 c2f5 c2f5 c2f5 c2f5 c2f5
+5453 c2f6 c2f6 c2f6 * 7761 * 8ea1f7e1,f7e1,8ea1f7e1v,f7e1v 95d5 e99795 95d5 000095d5 c2f6 c2f6 c2f6 c2f6 c2f6 c2f6 c2f6
+5454 c2f7 c2f7 c2f7 * 7762 * 8ea1f7e2,f7e2,8ea1f7e2v,f7e2v 96e2 e99ba2 96e2 000096e2 c2f7 c2f7 c2f7 c2f7 c2f7 c2f7 c2f7
+5455 c2f8 c2f8 c2f8 * 7763 * 8ea1f7e3,f7e3,8ea1f7e3v,f7e3v 96dc e99b9c 96dc 000096dc c2f8 c2f8 c2f8 c2f8 c2f8 c2f8 c2f8
+5456 c2f9 c2f9 c2f9 * 7764 * 8ea1f7e4,f7e4,8ea1f7e4v,f7e4v 96d9 e99b99 96d9 000096d9 c2f9 c2f9 c2f9 c2f9 c2f9 c2f9 c2f9
+5457 c2fa c2fa c2fa * 7765 * 8ea1f7e5,f7e5,8ea1f7e5v,f7e5v 96db e99b9b 96db 000096db c2fa c2fa c2fa c2fa c2fa c2fa c2fa
+5458 c2fb c2fb c2fb * 7766 * 8ea1f7e6,f7e6,8ea1f7e6v,f7e6v 96de e99b9e 96de 000096de c2fb c2fb c2fb c2fb c2fb c2fb c2fb
+5459 c2fc c2fc c2fc * 7767 * 8ea1f7e7,f7e7,8ea1f7e7v,f7e7v 9724 e99ca4 9724 00009724 c2fc c2fc c2fc c2fc c2fc c2fc c2fc
+5460 c2fd c2fd c2fd * 7768 * 8ea1f7e8,f7e8,8ea1f7e8v,f7e8v 97a3 e99ea3 97a3 000097a3 c2fd c2fd c2fd c2fd c2fd c2fd c2fd
+5461 c2fe c2fe c2fe * 7769 * 8ea1f7e9,f7e9,8ea1f7e9v,f7e9v 97a6 e99ea6 97a6 000097a6 c2fe c2fe c2fe c2fe c2fe c2fe c2fe
+5462 c340 c340 c340 * 776a * 8ea1f7ea,f7ea,8ea1f7eav,f7eav 97ad e99ead 97ad 000097ad c340 c340 c340 c340 c340 c340 c340
+5463 c341 c341 c341 * 776b * 8ea1f7eb,f7eb,8ea1f7ebv,f7ebv 97f9 e99fb9 97f9 000097f9 c341 c341 c341 c341 c341 c341 c341
+5464 c342 c342 c342 * 776c * 8ea1f7ec,f7ec,8ea1f7ecv,f7ecv 984d e9a18d 984d 0000984d c342 c342 c342 c342 c342 c342 c342
+5465 c343 c343 c343 * 776d * 8ea1f7ed,f7ed,8ea1f7edv,f7edv 984f e9a18f 984f 0000984f c343 c343 c343 c343 c343 c343 c343
+5466 c344 c344 c344 * 776e * 8ea1f7ee,f7ee,8ea1f7eev,f7eev 984c e9a18c 984c 0000984c c344 c344 c344 c344 c344 c344 c344
+5467 c345 c345 c345 * 776f * 8ea1f7ef,f7ef,8ea1f7efv,f7efv 984e e9a18e 984e 0000984e c345 c345 c345 c345 c345 c345 c345
+5468 c346 c346 c346 * 7770 * 8ea1f7f0,f7f0,8ea1f7f0v,f7f0v 9853 e9a193 9853 00009853 c346 c346 c346 c346 c346 c346 c346
+5469 c347 c347 c347 * 7771 * 8ea1f7f1,f7f1,8ea1f7f1v,f7f1v 98ba e9a2ba 98ba 000098ba c347 c347 c347 c347 c347 c347 c347
+5470 c348 c348 c348 * 7772 * 8ea1f7f2,f7f2,8ea1f7f2v,f7f2v 993e e9a4be 993e 0000993e c348 c348 c348 c348 c348 c348 c348
+5471 c349 c349 c349 * 7773 * 8ea1f7f3,f7f3,8ea1f7f3v,f7f3v 993f e9a4bf 993f 0000993f c349 c349 c349 c349 c349 c349 c349
+5472 c34a c34a c34a * 7774 * 8ea1f7f4,f7f4,8ea1f7f4v,f7f4v 993d e9a4bd 993d 0000993d c34a c34a c34a c34a c34a c34a c34a
+5473 c34b c34b c34b * 7775 * 8ea1f7f5,f7f5,8ea1f7f5v,f7f5v 992e e9a4ae 992e 0000992e c34b c34b c34b c34b c34b c34b c34b
+5474 c34c c34c c34c * 7776 * 8ea1f7f6,f7f6,8ea1f7f6v,f7f6v 99a5 e9a6a5 99a5 000099a5 c34c c34c c34c c34c c34c c34c c34c
+5475 c34d c34d c34d * 7777 * 8ea1f7f7,f7f7,8ea1f7f7v,f7f7v 9a0e e9a88e 9a0e 00009a0e c34d c34d c34d c34d c34d c34d c34d
+5476 c34e c34e c34e * 7778 * 8ea1f7f8,f7f8,8ea1f7f8v,f7f8v 9ac1 e9ab81 9ac1 00009ac1 c34e c34e c34e c34e c34e c34e c34e
+5477 c34f c34f c34f * 7779 * 8ea1f7f9,f7f9,8ea1f7f9v,f7f9v 9b03 e9ac83 9b03 00009b03 c34f c34f c34f c34f c34f c34f c34f
+5478 c350 c350 c350 * 777a * 8ea1f7fa,f7fa,8ea1f7fav,f7fav 9b06 e9ac86 9b06 00009b06 c350 c350 c350 c350 c350 c350 c350
+5479 c351 c351 c351 * 777b * 8ea1f7fb,f7fb,8ea1f7fbv,f7fbv 9b4f e9ad8f 9b4f 00009b4f c351 c351 c351 c351 c351 c351 c351
+5480 c352 c352 c352 * 777c * 8ea1f7fc,f7fc,8ea1f7fcv,f7fcv 9b4e e9ad8e 9b4e 00009b4e c352 c352 c352 c352 c352 c352 c352
+5481 c353 c353 c353 * 777d * 8ea1f7fd,f7fd,8ea1f7fdv,f7fdv 9b4d e9ad8d 9b4d 00009b4d c353 c353 c353 c353 c353 c353 c353
+5482 c354 c354 c354 * 777e * 8ea1f7fe,f7fe,8ea1f7fev,f7fev 9bca e9af8a 9bca 00009bca c354 c354 c354 c354 c354 c354 c354
+5483 c355 c355 c355 * 7821 * 8ea1f8a1,f8a1,8ea1f8a1v,f8a1v 9bc9 e9af89 9bc9 00009bc9 c355 c355 c355 c355 c355 c355 c355
+5484 c356 c356 c356 * 7822 * 8ea1f8a2,f8a2,8ea1f8a2v,f8a2v 9bfd e9afbd 9bfd 00009bfd c356 c356 c356 c356 c356 c356 c356
+5485 c357 c357 c357 * 7823 * 8ea1f8a3,f8a3,8ea1f8a3v,f8a3v 9bc8 e9af88 9bc8 00009bc8 c357 c357 c357 c357 c357 c357 c357
+5486 c358 c358 c358 * 7824 * 8ea1f8a4,f8a4,8ea1f8a4v,f8a4v 9bc0 e9af80 9bc0 00009bc0 c358 c358 c358 c358 c358 c358 c358
+5487 c359 c359 c359 * 7825 * 8ea1f8a5,f8a5,8ea1f8a5v,f8a5v 9d51 e9b591 9d51 00009d51 c359 c359 c359 c359 c359 c359 c359
+5488 c35a c35a c35a * 7826 * 8ea1f8a6,f8a6,8ea1f8a6v,f8a6v 9d5d e9b59d 9d5d 00009d5d c35a c35a c35a c35a c35a c35a c35a
+5489 c35b c35b c35b * 7827 * 8ea1f8a7,f8a7,8ea1f8a7v,f8a7v 9d60 e9b5a0 9d60 00009d60 c35b c35b c35b c35b c35b c35b c35b
+5490 c35c c35c c35c * 7828 * 8ea1f8a8,f8a8,8ea1f8a8v,f8a8v 9ee0 e9bba0 9ee0 00009ee0 c35c c35c c35c c35c c35c c35c c35c
+5491 c35d c35d c35d * 7829 * 8ea1f8a9,f8a9,8ea1f8a9v,f8a9v 9f15 e9bc95 9f15 00009f15 c35d c35d c35d c35d c35d c35d c35d
+5492 c35e c35e c35e * 782a * 8ea1f8aa,f8aa,8ea1f8aav,f8aav 9f2c e9bcac 9f2c 00009f2c c35e c35e c35e c35e c35e c35e c35e
+5493 c35f c35f c35f * 782b * 8ea1f8ab,f8ab,8ea1f8abv,f8abv 5133 e584b3 5133 00005133 c35f c35f c35f c35f c35f c35f c35f
+5494 c360 c360 c360 * 782c * 8ea1f8ac,f8ac,8ea1f8acv,f8acv 56a5 e59aa5 56a5 000056a5 c360 c360 c360 c360 c360 c360 c360
+5495 c456 c456 c456 * 782d * 8ea1f8ad,f8ad,8ea1f8adv,f8adv 56a8 e59aa8 56a8 000056a8 c456 c456 c456 c456 c456 c456 c456
+5496 c361 c361 c361 * 782e * 8ea1f8ae,f8ae,8ea1f8aev,f8aev 58de e5a39e 58de 000058de c361 c361 c361 c361 c361 c361 c361
+5497 c362 c362 c362 * 782f * 8ea1f8af,f8af,8ea1f8afv,f8afv 58df e5a39f 58df 000058df c362 c362 c362 c362 c362 c362 c362
+5498 c363 c363 c363 * 7830 * 8ea1f8b0,f8b0,8ea1f8b0v,f8b0v 58e2 e5a3a2 58e2 000058e2 c363 c363 c363 c363 c363 c363 c363
+5499 c364 c364 c364 * 7831 * 8ea1f8b1,f8b1,8ea1f8b1v,f8b1v 5bf5 e5afb5 5bf5 00005bf5 c364 c364 c364 c364 c364 c364 c364
+5500 c365 c365 c365 * 7832 * 8ea1f8b2,f8b2,8ea1f8b2v,f8b2v 9f90 e9be90 9f90 00009f90 c365 c365 c365 c365 c365 c365 c365
+5501 c366 c366 c366 * 7833 * 8ea1f8b3,f8b3,8ea1f8b3v,f8b3v 5eec e5bbac 5eec 00005eec c366 c366 c366 c366 c366 c366 c366
+5502 c367 c367 c367 * 7834 * 8ea1f8b4,f8b4,8ea1f8b4v,f8b4v 61f2 e687b2 61f2 000061f2 c367 c367 c367 c367 c367 c367 c367
+5503 c368 c368 c368 * 7835 * 8ea1f8b5,f8b5,8ea1f8b5v,f8b5v 61f7 e687b7 61f7 000061f7 c368 c368 c368 c368 c368 c368 c368
+5504 c369 c369 c369 * 7836 * 8ea1f8b6,f8b6,8ea1f8b6v,f8b6v 61f6 e687b6 61f6 000061f6 c369 c369 c369 c369 c369 c369 c369
+5505 c36a c36a c36a * 7837 * 8ea1f8b7,f8b7,8ea1f8b7v,f8b7v 61f5 e687b5 61f5 000061f5 c36a c36a c36a c36a c36a c36a c36a
+5506 c36b c36b c36b * 7838 * 8ea1f8b8,f8b8,8ea1f8b8v,f8b8v 6500 e69480 6500 00006500 c36b c36b c36b c36b c36b c36b c36b
+5507 c36c c36c c36c * 7839 * 8ea1f8b9,f8b9,8ea1f8b9v,f8b9v 650f e6948f 650f 0000650f c36c c36c c36c c36c c36c c36c c36c
+5508 c36d c36d c36d * 783a * 8ea1f8ba,f8ba,8ea1f8bav,f8bav 66e0 e69ba0 66e0 000066e0 c36d c36d c36d c36d c36d c36d c36d
+5509 c36e c36e c36e * 783b * 8ea1f8bb,f8bb,8ea1f8bbv,f8bbv 66dd e69b9d 66dd 000066dd c36e c36e c36e c36e c36e c36e c36e
+5510 c36f c36f c36f * 783c * 8ea1f8bc,f8bc,8ea1f8bcv,f8bcv 6ae5 e6aba5 6ae5 00006ae5 c36f c36f c36f c36f c36f c36f c36f
+5511 c370 c370 c370 * 783d * 8ea1f8bd,f8bd,8ea1f8bdv,f8bdv 6add e6ab9d 6add 00006add c370 c370 c370 c370 c370 c370 c370
+5512 c371 c371 c371 * 783e * 8ea1f8be,f8be,8ea1f8bev,f8bev 6ada e6ab9a 6ada 00006ada c371 c371 c371 c371 c371 c371 c371
+5513 c372 c372 c372 * 783f * 8ea1f8bf,f8bf,8ea1f8bfv,f8bfv 6ad3 e6ab93 6ad3 00006ad3 c372 c372 c372 c372 c372 c372 c372
+5514 c373 c373 c373 * 7840 * 8ea1f8c0,f8c0,8ea1f8c0v,f8c0v 701b e7809b 701b 0000701b c373 c373 c373 c373 c373 c373 c373
+5515 c374 c374 c374 * 7841 * 8ea1f8c1,f8c1,8ea1f8c1v,f8c1v 701f e7809f 701f 0000701f c374 c374 c374 c374 c374 c374 c374
+5516 c375 c375 c375 * 7842 * 8ea1f8c2,f8c2,8ea1f8c2v,f8c2v 7028 e780a8 7028 00007028 c375 c375 c375 c375 c375 c375 c375
+5517 c376 c376 c376 * 7843 * 8ea1f8c3,f8c3,8ea1f8c3v,f8c3v 701a e7809a 701a 0000701a c376 c376 c376 c376 c376 c376 c376
+5518 c377 c377 c377 * 7844 * 8ea1f8c4,f8c4,8ea1f8c4v,f8c4v 701d e7809d 701d 0000701d c377 c377 c377 c377 c377 c377 c377
+5519 c378 c378 c378 * 7845 * 8ea1f8c5,f8c5,8ea1f8c5v,f8c5v 7015 e78095 7015 00007015 c378 c378 c378 c378 c378 c378 c378
+5520 c379 c379 c379 * 7846 * 8ea1f8c6,f8c6,8ea1f8c6v,f8c6v 7018 e78098 7018 00007018 c379 c379 c379 c379 c379 c379 c379
+5521 c37a c37a c37a * 7847 * 8ea1f8c7,f8c7,8ea1f8c7v,f8c7v 7206 e78886 7206 00007206 c37a c37a c37a c37a c37a c37a c37a
+5522 c37b c37b c37b * 7848 * 8ea1f8c8,f8c8,8ea1f8c8v,f8c8v 720d e7888d 720d 0000720d c37b c37b c37b c37b c37b c37b c37b
+5523 c37c c37c c37c * 7849 * 8ea1f8c9,f8c9,8ea1f8c9v,f8c9v 7258 e78998 7258 00007258 c37c c37c c37c c37c c37c c37c c37c
+5524 c37d c37d c37d * 784a * 8ea1f8ca,f8ca,8ea1f8cav,f8cav 72a2 e78aa2 72a2 000072a2 c37d c37d c37d c37d c37d c37d c37d
+5525 c37e c37e c37e * 784b * 8ea1f8cb,f8cb,8ea1f8cbv,f8cbv 7378 e78db8 7378 00007378 c37e c37e c37e c37e c37e c37e c37e
+5526 c3a1 c3a1 c3a1 * 784c * 8ea1f8cc,f8cc,8ea1f8ccv,f8ccv 737a e78dba 737a 0000737a c3a1 c3a1 c3a1 c3a1 c3a1 c3a1 c3a1
+5527 c3a2 c3a2 c3a2 * 784d * 8ea1f8cd,f8cd,8ea1f8cdv,f8cdv 74bd e792bd 74bd 000074bd c3a2 c3a2 c3a2 c3a2 c3a2 c3a2 c3a2
+5528 c3a3 c3a3 c3a3 * 784e * 8ea1f8ce,f8ce,8ea1f8cev,f8cev 74ca e7938a 74ca 000074ca c3a3 c3a3 c3a3 c3a3 c3a3 c3a3 c3a3
+5529 c3a4 c3a4 c3a4 * 784f * 8ea1f8cf,f8cf,8ea1f8cfv,f8cfv 74e3 e793a3 74e3 000074e3 c3a4 c3a4 c3a4 c3a4 c3a4 c3a4 c3a4
+5530 c3a5 c3a5 c3a5 * 7850 * 8ea1f8d0,f8d0,8ea1f8d0v,f8d0v 7587 e79687 7587 00007587 c3a5 c3a5 c3a5 c3a5 c3a5 c3a5 c3a5
+5531 c3a6 c3a6 c3a6 * 7851 * 8ea1f8d1,f8d1,8ea1f8d1v,f8d1v 7586 e79686 7586 00007586 c3a6 c3a6 c3a6 c3a6 c3a6 c3a6 c3a6
+5532 c3a7 c3a7 c3a7 * 7852 * 8ea1f8d2,f8d2,8ea1f8d2v,f8d2v 765f e7999f 765f 0000765f c3a7 c3a7 c3a7 c3a7 c3a7 c3a7 c3a7
+5533 c3a8 c3a8 c3a8 * 7853 * 8ea1f8d3,f8d3,8ea1f8d3v,f8d3v 7661 e799a1 7661 00007661 c3a8 c3a8 c3a8 c3a8 c3a8 c3a8 c3a8
+5534 c3a9 c3a9 c3a9 * 7854 * 8ea1f8d4,f8d4,8ea1f8d4v,f8d4v 77c7 e79f87 77c7 000077c7 c3a9 c3a9 c3a9 c3a9 c3a9 c3a9 c3a9
+5535 c3aa c3aa c3aa * 7855 * 8ea1f8d5,f8d5,8ea1f8d5v,f8d5v 7919 e7a499 7919 00007919 c3aa c3aa c3aa c3aa c3aa c3aa c3aa
+5536 c3ab c3ab c3ab * 7856 * 8ea1f8d6,f8d6,8ea1f8d6v,f8d6v 79b1 e7a6b1 79b1 000079b1 c3ab c3ab c3ab c3ab c3ab c3ab c3ab
+5537 c3ac c3ac c3ac * 7857 * 8ea1f8d7,f8d7,8ea1f8d7v,f8d7v 7a6b e7a9ab 7a6b 00007a6b c3ac c3ac c3ac c3ac c3ac c3ac c3ac
+5538 c3ad c3ad c3ad * 7858 * 8ea1f8d8,f8d8,8ea1f8d8v,f8d8v 7a69 e7a9a9 7a69 00007a69 c3ad c3ad c3ad c3ad c3ad c3ad c3ad
+5539 c3ae c3ae c3ae * 7859 * 8ea1f8d9,f8d9,8ea1f8d9v,f8d9v 7c3e e7b0be 7c3e 00007c3e c3ae c3ae c3ae c3ae c3ae c3ae c3ae
+5540 c3af c3af c3af * 785a * 8ea1f8da,f8da,8ea1f8dav,f8dav 7c3f e7b0bf 7c3f 00007c3f c3af c3af c3af c3af c3af c3af c3af
+5541 c3b0 c3b0 c3b0 * 785b * 8ea1f8db,f8db,8ea1f8dbv,f8dbv 7c38 e7b0b8 7c38 00007c38 c3b0 c3b0 c3b0 c3b0 c3b0 c3b0 c3b0
+5542 c3b1 c3b1 c3b1 * 785c * 8ea1f8dc,f8dc,8ea1f8dcv,f8dcv 7c3d e7b0bd 7c3d 00007c3d c3b1 c3b1 c3b1 c3b1 c3b1 c3b1 c3b1
+5543 c3b2 c3b2 c3b2 * 785d * 8ea1f8dd,f8dd,8ea1f8ddv,f8ddv 7c37 e7b0b7 7c37 00007c37 c3b2 c3b2 c3b2 c3b2 c3b2 c3b2 c3b2
+5544 c3b3 c3b3 c3b3 * 785e * 8ea1f8de,f8de,8ea1f8dev,f8dev 7c40 e7b180 7c40 00007c40 c3b3 c3b3 c3b3 c3b3 c3b3 c3b3 c3b3
+5545 c3b4 c3b4 c3b4 * 785f * 8ea1f8df,f8df,8ea1f8dfv,f8dfv 7e6b e7b9ab 7e6b 00007e6b c3b4 c3b4 c3b4 c3b4 c3b4 c3b4 c3b4
+5546 c3b5 c3b5 c3b5 * 7860 * 8ea1f8e0,f8e0,8ea1f8e0v,f8e0v 7e6d e7b9ad 7e6d 00007e6d c3b5 c3b5 c3b5 c3b5 c3b5 c3b5 c3b5
+5547 c3b6 c3b6 c3b6 * 7861 * 8ea1f8e1,f8e1,8ea1f8e1v,f8e1v 7e79 e7b9b9 7e79 00007e79 c3b6 c3b6 c3b6 c3b6 c3b6 c3b6 c3b6
+5548 c3b7 c3b7 c3b7 * 7862 * 8ea1f8e2,f8e2,8ea1f8e2v,f8e2v 7e69 e7b9a9 7e69 00007e69 c3b7 c3b7 c3b7 c3b7 c3b7 c3b7 c3b7
+5549 c3b8 c3b8 c3b8 * 7863 * 8ea1f8e3,f8e3,8ea1f8e3v,f8e3v 7e6a e7b9aa 7e6a 00007e6a c3b8 c3b8 c3b8 c3b8 c3b8 c3b8 c3b8
+5550 c3ba c3ba c3ba * 7864 * 8ea1f8e4,f8e4,8ea1f8e4v,f8e4v 7e73 e7b9b3 7e73 00007e73 c3ba c3ba c3ba c3ba c3ba c3ba c3ba
+5551 c3b9 c3b9 c3b9 * 7865 * 8ea1f8e5,f8e5,8ea1f8e5v,f8e5v 7f85 e7be85 7f85 00007f85 c3b9 c3b9 c3b9 c3b9 c3b9 c3b9 c3b9
+5552 c3bb c3bb c3bb * 7866 * 8ea1f8e6,f8e6,8ea1f8e6v,f8e6v 7fb6 e7beb6 7fb6 00007fb6 c3bb c3bb c3bb c3bb c3bb c3bb c3bb
+5553 c3bc c3bc c3bc * 7867 * 8ea1f8e7,f8e7,8ea1f8e7v,f8e7v 7fb9 e7beb9 7fb9 00007fb9 c3bc c3bc c3bc c3bc c3bc c3bc c3bc
+5554 c3bd c3bd c3bd * 7868 * 8ea1f8e8,f8e8,8ea1f8e8v,f8e8v 7fb8 e7beb8 7fb8 00007fb8 c3bd c3bd c3bd c3bd c3bd c3bd c3bd
+5555 c3be c3be c3be * 7869 * 8ea1f8e9,f8e9,8ea1f8e9v,f8e9v 81d8 e88798 81d8 000081d8 c3be c3be c3be c3be c3be c3be c3be
+5556 c3bf c3bf c3bf * 786a * 8ea1f8ea,f8ea,8ea1f8eav,f8eav 85e9 e897a9 85e9 000085e9 c3bf c3bf c3bf c3bf c3bf c3bf c3bf
+5557 c3c0 c3c0 c3c0 * 786b * 8ea1f8eb,f8eb,8ea1f8ebv,f8ebv 85dd e8979d 85dd 000085dd c3c0 c3c0 c3c0 c3c0 c3c0 c3c0 c3c0
+5558 c3c1 c3c1 c3c1 * 786c * 8ea1f8ec,f8ec,8ea1f8ecv,f8ecv 85ea e897aa 85ea 000085ea c3c1 c3c1 c3c1 c3c1 c3c1 c3c1 c3c1
+5559 c3c2 c3c2 c3c2 * 786d * 8ea1f8ed,f8ed,8ea1f8edv,f8edv 85d5 e89795 85d5 000085d5 c3c2 c3c2 c3c2 c3c2 c3c2 c3c2 c3c2
+5560 c3c3 c3c3 c3c3 * 786e * 8ea1f8ee,f8ee,8ea1f8eev,f8eev 85e4 e897a4 85e4 000085e4 c3c3 c3c3 c3c3 c3c3 c3c3 c3c3 c3c3
+5561 c3c4 c3c4 c3c4 * 786f * 8ea1f8ef,f8ef,8ea1f8efv,f8efv 85e5 e897a5 85e5 000085e5 c3c4 c3c4 c3c4 c3c4 c3c4 c3c4 c3c4
+5562 c3c5 c3c5 c3c5 * 7870 * 8ea1f8f0,f8f0,8ea1f8f0v,f8f0v 85f7 e897b7 85f7 000085f7 c3c5 c3c5 c3c5 c3c5 c3c5 c3c5 c3c5
+5563 c3c6 c3c6 c3c6 * 7871 * 8ea1f8f1,f8f1,8ea1f8f1v,f8f1v 87fb e89fbb 87fb 000087fb c3c6 c3c6 c3c6 c3c6 c3c6 c3c6 c3c6
+5564 c3c7 c3c7 c3c7 * 7872 * 8ea1f8f2,f8f2,8ea1f8f2v,f8f2v 8805 e8a085 8805 00008805 c3c7 c3c7 c3c7 c3c7 c3c7 c3c7 c3c7
+5565 c3c8 c3c8 c3c8 * 7873 * 8ea1f8f3,f8f3,8ea1f8f3v,f8f3v 880d e8a08d 880d 0000880d c3c8 c3c8 c3c8 c3c8 c3c8 c3c8 c3c8
+5566 c3c9 c3c9 c3c9 * 7874 * 8ea1f8f4,f8f4,8ea1f8f4v,f8f4v 87f9 e89fb9 87f9 000087f9 c3c9 c3c9 c3c9 c3c9 c3c9 c3c9 c3c9
+5567 c3ca c3ca c3ca * 7875 * 8ea1f8f5,f8f5,8ea1f8f5v,f8f5v 87fe e89fbe 87fe 000087fe c3ca c3ca c3ca c3ca c3ca c3ca c3ca
+5568 c3cb c3cb c3cb * 7876 * 8ea1f8f6,f8f6,8ea1f8f6v,f8f6v 8960 e8a5a0 8960 00008960 c3cb c3cb c3cb c3cb c3cb c3cb c3cb
+5569 c3cc c3cc c3cc * 7877 * 8ea1f8f7,f8f7,8ea1f8f7v,f8f7v 895f e8a59f 895f 0000895f c3cc c3cc c3cc c3cc c3cc c3cc c3cc
+5570 c3cd c3cd c3cd * 7878 * 8ea1f8f8,f8f8,8ea1f8f8v,f8f8v 8956 e8a596 8956 00008956 c3cd c3cd c3cd c3cd c3cd c3cd c3cd
+5571 c3ce c3ce c3ce * 7879 * 8ea1f8f9,f8f9,8ea1f8f9v,f8f9v 895e e8a59e 895e 0000895e c3ce c3ce c3ce c3ce c3ce c3ce c3ce
+5572 c3cf c3cf c3cf * 787a * 8ea1f8fa,f8fa,8ea1f8fav,f8fav 8b41 e8ad81 8b41 00008b41 c3cf c3cf c3cf c3cf c3cf c3cf c3cf
+5573 c3d0 c3d0 c3d0 * 787b * 8ea1f8fb,f8fb,8ea1f8fbv,f8fbv 8b5c e8ad9c 8b5c 00008b5c c3d0 c3d0 c3d0 c3d0 c3d0 c3d0 c3d0
+5574 c3d1 c3d1 c3d1 * 787c * 8ea1f8fc,f8fc,8ea1f8fcv,f8fcv 8b58 e8ad98 8b58 00008b58 c3d1 c3d1 c3d1 c3d1 c3d1 c3d1 c3d1
+5575 c3d2 c3d2 c3d2 * 787d * 8ea1f8fd,f8fd,8ea1f8fdv,f8fdv 8b49 e8ad89 8b49 00008b49 c3d2 c3d2 c3d2 c3d2 c3d2 c3d2 c3d2
+5576 c3d3 c3d3 c3d3 * 787e * 8ea1f8fe,f8fe,8ea1f8fev,f8fev 8b5a e8ad9a 8b5a 00008b5a c3d3 c3d3 c3d3 c3d3 c3d3 c3d3 c3d3
+5577 c3d4 c3d4 c3d4 * 7921 * 8ea1f9a1,f9a1,8ea1f9a1v,f9a1v 8b4e e8ad8e 8b4e 00008b4e c3d4 c3d4 c3d4 c3d4 c3d4 c3d4 c3d4
+5578 c3d5 c3d5 c3d5 * 7922 * 8ea1f9a2,f9a2,8ea1f9a2v,f9a2v 8b4f e8ad8f 8b4f 00008b4f c3d5 c3d5 c3d5 c3d5 c3d5 c3d5 c3d5
+5579 c3d6 c3d6 c3d6 * 7923 * 8ea1f9a3,f9a3,8ea1f9a3v,f9a3v 8b46 e8ad86 8b46 00008b46 c3d6 c3d6 c3d6 c3d6 c3d6 c3d6 c3d6
+5580 c3d7 c3d7 c3d7 * 7924 * 8ea1f9a4,f9a4,8ea1f9a4v,f9a4v 8b59 e8ad99 8b59 00008b59 c3d7 c3d7 c3d7 c3d7 c3d7 c3d7 c3d7
+5581 c3d8 c3d8 c3d8 * 7925 * 8ea1f9a5,f9a5,8ea1f9a5v,f9a5v 8d08 e8b488 8d08 00008d08 c3d8 c3d8 c3d8 c3d8 c3d8 c3d8 c3d8
+5582 c3d9 c3d9 c3d9 * 7926 * 8ea1f9a6,f9a6,8ea1f9a6v,f9a6v 8d0a e8b48a 8d0a 00008d0a c3d9 c3d9 c3d9 c3d9 c3d9 c3d9 c3d9
+5583 c3da c3da c3da * 7927 * 8ea1f9a7,f9a7,8ea1f9a7v,f9a7v 8e7c e8b9bc 8e7c 00008e7c c3da c3da c3da c3da c3da c3da c3da
+5584 c3db c3db c3db * 7928 * 8ea1f9a8,f9a8,8ea1f9a8v,f9a8v 8e72 e8b9b2 8e72 00008e72 c3db c3db c3db c3db c3db c3db c3db
+5585 c3dc c3dc c3dc * 7929 * 8ea1f9a9,f9a9,8ea1f9a9v,f9a9v 8e87 e8ba87 8e87 00008e87 c3dc c3dc c3dc c3dc c3dc c3dc c3dc
+5586 c3dd c3dd c3dd * 792a * 8ea1f9aa,f9aa,8ea1f9aav,f9aav 8e76 e8b9b6 8e76 00008e76 c3dd c3dd c3dd c3dd c3dd c3dd c3dd
+5587 c3de c3de c3de * 792b * 8ea1f9ab,f9ab,8ea1f9abv,f9abv 8e6c e8b9ac 8e6c 00008e6c c3de c3de c3de c3de c3de c3de c3de
+5588 c3df c3df c3df * 792c * 8ea1f9ac,f9ac,8ea1f9acv,f9acv 8e7a e8b9ba 8e7a 00008e7a c3df c3df c3df c3df c3df c3df c3df
+5589 c3e0 c3e0 c3e0 * 792d * 8ea1f9ad,f9ad,8ea1f9adv,f9adv 8e74 e8b9b4 8e74 00008e74 c3e0 c3e0 c3e0 c3e0 c3e0 c3e0 c3e0
+5590 c3e1 c3e1 c3e1 * 792e * 8ea1f9ae,f9ae,8ea1f9aev,f9aev 8f54 e8bd94 8f54 00008f54 c3e1 c3e1 c3e1 c3e1 c3e1 c3e1 c3e1
+5591 c3e2 c3e2 c3e2 * 792f * 8ea1f9af,f9af,8ea1f9afv,f9afv 8f4e e8bd8e 8f4e 00008f4e c3e2 c3e2 c3e2 c3e2 c3e2 c3e2 c3e2
+5592 c3e3 c3e3 c3e3 * 7930 * 8ea1f9b0,f9b0,8ea1f9b0v,f9b0v 8fad e8bead 8fad 00008fad c3e3 c3e3 c3e3 c3e3 c3e3 c3e3 c3e3
+5593 c3e4 c3e4 c3e4 * 7931 * 8ea1f9b1,f9b1,8ea1f9b1v,f9b1v 908a e9828a 908a 0000908a c3e4 c3e4 c3e4 c3e4 c3e4 c3e4 c3e4
+5594 c3e5 c3e5 c3e5 * 7932 * 8ea1f9b2,f9b2,8ea1f9b2v,f9b2v 908b e9828b 908b 0000908b c3e5 c3e5 c3e5 c3e5 c3e5 c3e5 c3e5
+5595 c3e6 c3e6 c3e6 * 7933 * 8ea1f9b3,f9b3,8ea1f9b3v,f9b3v 91b1 e986b1 91b1 000091b1 c3e6 c3e6 c3e6 c3e6 c3e6 c3e6 c3e6
+5596 c3e7 c3e7 c3e7 * 7934 * 8ea1f9b4,f9b4,8ea1f9b4v,f9b4v 91ae e986ae 91ae 000091ae c3e7 c3e7 c3e7 c3e7 c3e7 c3e7 c3e7
+5597 c3e8 c3e8 c3e8 * 7935 * 8ea1f9b5,f9b5,8ea1f9b5v,f9b5v 93e1 e98fa1 93e1 000093e1 c3e8 c3e8 c3e8 c3e8 c3e8 c3e8 c3e8
+5598 c3e9 c3e9 c3e9 * 7936 * 8ea1f9b6,f9b6,8ea1f9b6v,f9b6v 93d1 e98f91 93d1 000093d1 c3e9 c3e9 c3e9 c3e9 c3e9 c3e9 c3e9
+5599 c3ea c3ea c3ea * 7937 * 8ea1f9b7,f9b7,8ea1f9b7v,f9b7v 93df e98f9f 93df 000093df c3ea c3ea c3ea c3ea c3ea c3ea c3ea
+5600 c3eb c3eb c3eb * 7938 * 8ea1f9b8,f9b8,8ea1f9b8v,f9b8v 93c3 e98f83 93c3 000093c3 c3eb c3eb c3eb c3eb c3eb c3eb c3eb
+5601 c3ec c3ec c3ec * 7939 * 8ea1f9b9,f9b9,8ea1f9b9v,f9b9v 93c8 e98f88 93c8 000093c8 c3ec c3ec c3ec c3ec c3ec c3ec c3ec
+5602 c3ed c3ed c3ed * 793a * 8ea1f9ba,f9ba,8ea1f9bav,f9bav 93dc e98f9c 93dc 000093dc c3ed c3ed c3ed c3ed c3ed c3ed c3ed
+5603 c3ee c3ee c3ee * 793b * 8ea1f9bb,f9bb,8ea1f9bbv,f9bbv 93dd e98f9d 93dd 000093dd c3ee c3ee c3ee c3ee c3ee c3ee c3ee
+5604 c3ef c3ef c3ef * 793c * 8ea1f9bc,f9bc,8ea1f9bcv,f9bcv 93d6 e98f96 93d6 000093d6 c3ef c3ef c3ef c3ef c3ef c3ef c3ef
+5605 c3f0 c3f0 c3f0 * 793d * 8ea1f9bd,f9bd,8ea1f9bdv,f9bdv 93e2 e98fa2 93e2 000093e2 c3f0 c3f0 c3f0 c3f0 c3f0 c3f0 c3f0
+5606 c3f1 c3f1 c3f1 * 793e * 8ea1f9be,f9be,8ea1f9bev,f9bev 93cd e98f8d 93cd 000093cd c3f1 c3f1 c3f1 c3f1 c3f1 c3f1 c3f1
+5607 c3f2 c3f2 c3f2 * 793f * 8ea1f9bf,f9bf,8ea1f9bfv,f9bfv 93d8 e98f98 93d8 000093d8 c3f2 c3f2 c3f2 c3f2 c3f2 c3f2 c3f2
+5608 c3f3 c3f3 c3f3 * 7940 * 8ea1f9c0,f9c0,8ea1f9c0v,f9c0v 93e4 e98fa4 93e4 000093e4 c3f3 c3f3 c3f3 c3f3 c3f3 c3f3 c3f3
+5609 c3f4 c3f4 c3f4 * 7941 * 8ea1f9c1,f9c1,8ea1f9c1v,f9c1v 93d7 e98f97 93d7 000093d7 c3f4 c3f4 c3f4 c3f4 c3f4 c3f4 c3f4
+5610 c3f5 c3f5 c3f5 * 7942 * 8ea1f9c2,f9c2,8ea1f9c2v,f9c2v 93e8 e98fa8 93e8 000093e8 c3f5 c3f5 c3f5 c3f5 c3f5 c3f5 c3f5
+5611 c3f6 c3f6 c3f6 * 7943 * 8ea1f9c3,f9c3,8ea1f9c3v,f9c3v 95dc e9979c 95dc 000095dc c3f6 c3f6 c3f6 c3f6 c3f6 c3f6 c3f6
+5612 c3f7 c3f7 c3f7 * 7944 * 8ea1f9c4,f9c4,8ea1f9c4v,f9c4v 96b4 e99ab4 96b4 000096b4 c3f7 c3f7 c3f7 c3f7 c3f7 c3f7 c3f7
+5613 c3f8 c3f8 c3f8 * 7945 * 8ea1f9c5,f9c5,8ea1f9c5v,f9c5v 96e3 e99ba3 96e3 000096e3 c3f8 c3f8 c3f8 c3f8 c3f8 c3f8 c3f8
+5614 c3f9 c3f9 c3f9 * 7946 * 8ea1f9c6,f9c6,8ea1f9c6v,f9c6v 972a e99caa 972a 0000972a c3f9 c3f9 c3f9 c3f9 c3f9 c3f9 c3f9
+5615 c3fa c3fa c3fa * 7947 * 8ea1f9c7,f9c7,8ea1f9c7v,f9c7v 9727 e99ca7 9727 00009727 c3fa c3fa c3fa c3fa c3fa c3fa c3fa
+5616 c3fb c3fb c3fb * 7948 * 8ea1f9c8,f9c8,8ea1f9c8v,f9c8v 9761 e99da1 9761 00009761 c3fb c3fb c3fb c3fb c3fb c3fb c3fb
+5617 c3fc c3fc c3fc * 7949 * 8ea1f9c9,f9c9,8ea1f9c9v,f9c9v 97dc e99f9c 97dc 000097dc c3fc c3fc c3fc c3fc c3fc c3fc c3fc
+5618 c3fd c3fd c3fd * 794a * 8ea1f9ca,f9ca,8ea1f9cav,f9cav 97fb e99fbb 97fb 000097fb c3fd c3fd c3fd c3fd c3fd c3fd c3fd
+5619 c3fe c3fe c3fe * 794b * 8ea1f9cb,f9cb,8ea1f9cbv,f9cbv 985e e9a19e 985e 0000985e c3fe c3fe c3fe c3fe c3fe c3fe c3fe
+5620 c440 c440 c440 * 794c * 8ea1f9cc,f9cc,8ea1f9ccv,f9ccv 9858 e9a198 9858 00009858 c440 c440 c440 c440 c440 c440 c440
+5621 c441 c441 c441 * 794d * 8ea1f9cd,f9cd,8ea1f9cdv,f9cdv 985b e9a19b 985b 0000985b c441 c441 c441 c441 c441 c441 c441
+5622 c442 c442 c442 * 794e * 8ea1f9ce,f9ce,8ea1f9cev,f9cev 98bc e9a2bc 98bc 000098bc c442 c442 c442 c442 c442 c442 c442
+5623 c443 c443 c443 * 794f * 8ea1f9cf,f9cf,8ea1f9cfv,f9cfv 9945 e9a585 9945 00009945 c443 c443 c443 c443 c443 c443 c443
+5624 c444 c444 c444 * 7950 * 8ea1f9d0,f9d0,8ea1f9d0v,f9d0v 9949 e9a589 9949 00009949 c444 c444 c444 c444 c444 c444 c444
+5625 c445 c445 c445 * 7951 * 8ea1f9d1,f9d1,8ea1f9d1v,f9d1v 9a16 e9a896 9a16 00009a16 c445 c445 c445 c445 c445 c445 c445
+5626 c446 c446 c446 * 7952 * 8ea1f9d2,f9d2,8ea1f9d2v,f9d2v 9a19 e9a899 9a19 00009a19 c446 c446 c446 c446 c446 c446 c446
+5627 c447 c447 c447 * 7953 * 8ea1f9d3,f9d3,8ea1f9d3v,f9d3v 9b0d e9ac8d 9b0d 00009b0d c447 c447 c447 c447 c447 c447 c447
+5628 c448 c448 c448 * 7954 * 8ea1f9d4,f9d4,8ea1f9d4v,f9d4v 9be8 e9afa8 9be8 00009be8 c448 c448 c448 c448 c448 c448 c448
+5629 c449 c449 c449 * 7955 * 8ea1f9d5,f9d5,8ea1f9d5v,f9d5v 9be7 e9afa7 9be7 00009be7 c449 c449 c449 c449 c449 c449 c449
+5630 c44a c44a c44a * 7956 * 8ea1f9d6,f9d6,8ea1f9d6v,f9d6v 9bd6 e9af96 9bd6 00009bd6 c44a c44a c44a c44a c44a c44a c44a
+5631 c44b c44b c44b * 7957 * 8ea1f9d7,f9d7,8ea1f9d7v,f9d7v 9bdb e9af9b 9bdb 00009bdb c44b c44b c44b c44b c44b c44b c44b
+5632 c44c c44c c44c * 7958 * 8ea1f9d8,f9d8,8ea1f9d8v,f9d8v 9d89 e9b689 9d89 00009d89 c44c c44c c44c c44c c44c c44c c44c
+5633 c44d c44d c44d * 7959 * 8ea1f9d9,f9d9,8ea1f9d9v,f9d9v 9d61 e9b5a1 9d61 00009d61 c44d c44d c44d c44d c44d c44d c44d
+5634 c44e c44e c44e * 795a * 8ea1f9da,f9da,8ea1f9dav,f9dav 9d72 e9b5b2 9d72 00009d72 c44e c44e c44e c44e c44e c44e c44e
+5635 c44f c44f c44f * 795b * 8ea1f9db,f9db,8ea1f9dbv,f9dbv 9d6a e9b5aa 9d6a 00009d6a c44f c44f c44f c44f c44f c44f c44f
+5636 c450 c450 c450 * 795c * 8ea1f9dc,f9dc,8ea1f9dcv,f9dcv 9d6c e9b5ac 9d6c 00009d6c c450 c450 c450 c450 c450 c450 c450
+5637 c451 c451 c451 * 795d * 8ea1f9dd,f9dd,8ea1f9ddv,f9ddv 9e92 e9ba92 9e92 00009e92 c451 c451 c451 c451 c451 c451 c451
+5638 c452 c452 c452 * 795e * 8ea1f9de,f9de,8ea1f9dev,f9dev 9e97 e9ba97 9e97 00009e97 c452 c452 c452 c452 c452 c452 c452
+5639 c453 c453 c453 * 795f * 8ea1f9df,f9df,8ea1f9dfv,f9dfv 9e93 e9ba93 9e93 00009e93 c453 c453 c453 c453 c453 c453 c453
+5640 c454 c454 c454 * 7960 * 8ea1f9e0,f9e0,8ea1f9e0v,f9e0v 9eb4 e9bab4 9eb4 00009eb4 c454 c454 c454 c454 c454 c454 c454
+5641 c455 c455 c455 * 7961 * 8ea1f9e1,f9e1,8ea1f9e1v,f9e1v 52f8 e58bb8 52f8 000052f8 c455 c455 c455 c455 c455 c455 c455
+5642 c457 c457 c457 * 7962 * 8ea1f9e2,f9e2,8ea1f9e2v,f9e2v 56b7 e59ab7 56b7 000056b7 c457 c457 c457 c457 c457 c457 c457
+5643 c458 c458 c458 * 7963 * 8ea1f9e3,f9e3,8ea1f9e3v,f9e3v 56b6 e59ab6 56b6 000056b6 c458 c458 c458 c458 c458 c458 c458
+5644 c459 c459 c459 * 7964 * 8ea1f9e4,f9e4,8ea1f9e4v,f9e4v 56b4 e59ab4 56b4 000056b4 c459 c459 c459 c459 c459 c459 c459
+5645 c45a c45a c45a * 7965 * 8ea1f9e5,f9e5,8ea1f9e5v,f9e5v 56bc e59abc 56bc 000056bc c45a c45a c45a c45a c45a c45a c45a
+5646 c45b c45b c45b * 7966 * 8ea1f9e6,f9e6,8ea1f9e6v,f9e6v 58e4 e5a3a4 58e4 000058e4 c45b c45b c45b c45b c45b c45b c45b
+5647 c45c c45c c45c * 7967 * 8ea1f9e7,f9e7,8ea1f9e7v,f9e7v 5b40 e5ad80 5b40 00005b40 c45c c45c c45c c45c c45c c45c c45c
+5648 c45d c45d c45d * 7968 * 8ea1f9e8,f9e8,8ea1f9e8v,f9e8v 5b43 e5ad83 5b43 00005b43 c45d c45d c45d c45d c45d c45d c45d
+5649 c45e c45e c45e * 7969 * 8ea1f9e9,f9e9,8ea1f9e9v,f9e9v 5b7d e5adbd 5b7d 00005b7d c45e c45e c45e c45e c45e c45e c45e
+5650 c45f c45f c45f * 796a * 8ea1f9ea,f9ea,8ea1f9eav,f9eav 5bf6 e5afb6 5bf6 00005bf6 c45f c45f c45f c45f c45f c45f c45f
+5651 c460 c460 c460 * 796b * 8ea1f9eb,f9eb,8ea1f9ebv,f9ebv 5dc9 e5b789 5dc9 00005dc9 c460 c460 c460 c460 c460 c460 c460
+5652 c461 c461 c461 * 796c * 8ea1f9ec,f9ec,8ea1f9ecv,f9ecv 61f8 e687b8 61f8 000061f8 c461 c461 c461 c461 c461 c461 c461
+5653 c462 c462 c462 * 796d * 8ea1f9ed,f9ed,8ea1f9edv,f9edv 61fa e687ba 61fa 000061fa c462 c462 c462 c462 c462 c462 c462
+5654 c463 c463 c463 * 796e * 8ea1f9ee,f9ee,8ea1f9eev,f9eev 6518 e69498 6518 00006518 c463 c463 c463 c463 c463 c463 c463
+5655 c464 c464 c464 * 796f * 8ea1f9ef,f9ef,8ea1f9efv,f9efv 6514 e69494 6514 00006514 c464 c464 c464 c464 c464 c464 c464
+5656 c465 c465 c465 * 7970 * 8ea1f9f0,f9f0,8ea1f9f0v,f9f0v 6519 e69499 6519 00006519 c465 c465 c465 c465 c465 c465 c465
+5657 c466 c466 c466 * 7971 * 8ea1f9f1,f9f1,8ea1f9f1v,f9f1v 66e6 e69ba6 66e6 000066e6 c466 c466 c466 c466 c466 c466 c466
+5658 c467 c467 c467 * 7972 * 8ea1f9f2,f9f2,8ea1f9f2v,f9f2v 6727 e69ca7 6727 00006727 c467 c467 c467 c467 c467 c467 c467
+5659 c468 c468 c468 * 7973 * 8ea1f9f3,f9f3,8ea1f9f3v,f9f3v 6aec e6abac 6aec 00006aec c468 c468 c468 c468 c468 c468 c468
+5660 c469 c469 c469 * 7974 * 8ea1f9f4,f9f4,8ea1f9f4v,f9f4v 703e e780be 703e 0000703e c469 c469 c469 c469 c469 c469 c469
+5661 c46a c46a c46a * 7975 * 8ea1f9f5,f9f5,8ea1f9f5v,f9f5v 7030 e780b0 7030 00007030 c46a c46a c46a c46a c46a c46a c46a
+5662 c46b c46b c46b * 7976 * 8ea1f9f6,f9f6,8ea1f9f6v,f9f6v 7032 e780b2 7032 00007032 c46b c46b c46b c46b c46b c46b c46b
+5663 c46c c46c c46c * 7977 * 8ea1f9f7,f9f7,8ea1f9f7v,f9f7v 7210 e78890 7210 00007210 c46c c46c c46c c46c c46c c46c c46c
+5664 c46d c46d c46d * 7978 * 8ea1f9f8,f9f8,8ea1f9f8v,f9f8v 737b e78dbb 737b 0000737b c46d c46d c46d c46d c46d c46d c46d
+5665 c46e c46e c46e * 7979 * 8ea1f9f9,f9f9,8ea1f9f9v,f9f9v 74cf e7938f 74cf 000074cf c46e c46e c46e c46e c46e c46e c46e
+5666 c46f c46f c46f * 797a * 8ea1f9fa,f9fa,8ea1f9fav,f9fav 7662 e799a2 7662 00007662 c46f c46f c46f c46f c46f c46f c46f
+5667 c470 c470 c470 * 797b * 8ea1f9fb,f9fb,8ea1f9fbv,f9fbv 7665 e799a5 7665 00007665 c470 c470 c470 c470 c470 c470 c470
+5668 c471 c471 c471 * 797c * 8ea1f9fc,f9fc,8ea1f9fcv,f9fcv 7926 e7a4a6 7926 00007926 c471 c471 c471 c471 c471 c471 c471
+5669 c472 c472 c472 * 797d * 8ea1f9fd,f9fd,8ea1f9fdv,f9fdv 792a e7a4aa 792a 0000792a c472 c472 c472 c472 c472 c472 c472
+5670 c473 c473 c473 * 797e * 8ea1f9fe,f9fe,8ea1f9fev,f9fev 792c e7a4ac 792c 0000792c c473 c473 c473 c473 c473 c473 c473
+5671 c474 c474 c474 * 7a21 * 8ea1faa1,faa1,8ea1faa1v,faa1v 792b e7a4ab 792b 0000792b c474 c474 c474 c474 c474 c474 c474
+5672 c475 c475 c475 * 7a22 * 8ea1faa2,faa2,8ea1faa2v,faa2v 7ac7 e7ab87 7ac7 00007ac7 c475 c475 c475 c475 c475 c475 c475
+5673 c476 c476 c476 * 7a23 * 8ea1faa3,faa3,8ea1faa3v,faa3v 7af6 e7abb6 7af6 00007af6 c476 c476 c476 c476 c476 c476 c476
+5674 c477 c477 c477 * 7a24 * 8ea1faa4,faa4,8ea1faa4v,faa4v 7c4c e7b18c 7c4c 00007c4c c477 c477 c477 c477 c477 c477 c477
+5675 c478 c478 c478 * 7a25 * 8ea1faa5,faa5,8ea1faa5v,faa5v 7c43 e7b183 7c43 00007c43 c478 c478 c478 c478 c478 c478 c478
+5676 c479 c479 c479 * 7a26 * 8ea1faa6,faa6,8ea1faa6v,faa6v 7c4d e7b18d 7c4d 00007c4d c479 c479 c479 c479 c479 c479 c479
+5677 c47a c47a c47a * 7a27 * 8ea1faa7,faa7,8ea1faa7v,faa7v 7cef e7b3af 7cef 00007cef c47a c47a c47a c47a c47a c47a c47a
+5678 c47b c47b c47b * 7a28 * 8ea1faa8,faa8,8ea1faa8v,faa8v 7cf0 e7b3b0 7cf0 00007cf0 c47b c47b c47b c47b c47b c47b c47b
+5679 c47c c47c c47c * 7a29 * 8ea1faa9,faa9,8ea1faa9v,faa9v 8fae e8beae 8fae 00008fae c47c c47c c47c c47c c47c c47c c47c
+5680 c47d c47d c47d * 7a2a * 8ea1faaa,faaa,8ea1faaav,faaav 7e7d e7b9bd 7e7d 00007e7d c47d c47d c47d c47d c47d c47d c47d
+5681 c47e c47e c47e * 7a2b * 8ea1faab,faab,8ea1faabv,faabv 7e7c e7b9bc 7e7c 00007e7c c47e c47e c47e c47e c47e c47e c47e
+5682 c4a1 c4a1 c4a1 * 7a2c * 8ea1faac,faac,8ea1faacv,faacv 7e82 e7ba82 7e82 00007e82 c4a1 c4a1 c4a1 c4a1 c4a1 c4a1 c4a1
+5683 c4a2 c4a2 c4a2 * 7a2d * 8ea1faad,faad,8ea1faadv,faadv 7f4c e7bd8c 7f4c 00007f4c c4a2 c4a2 c4a2 c4a2 c4a2 c4a2 c4a2
+5684 c4a3 c4a3 c4a3 * 7a2e * 8ea1faae,faae,8ea1faaev,faaev 8000 e88080 8000 00008000 c4a3 c4a3 c4a3 c4a3 c4a3 c4a3 c4a3
+5685 c4a4 c4a4 c4a4 * 7a2f * 8ea1faaf,faaf,8ea1faafv,faafv 81da e8879a 81da 000081da c4a4 c4a4 c4a4 c4a4 c4a4 c4a4 c4a4
+5686 c4a5 c4a5 c4a5 * 7a30 * 8ea1fab0,fab0,8ea1fab0v,fab0v 8266 e889a6 8266 00008266 c4a5 c4a5 c4a5 c4a5 c4a5 c4a5 c4a5
+5687 c4a6 c4a6 c4a6 * 7a31 * 8ea1fab1,fab1,8ea1fab1v,fab1v 85fb e897bb 85fb 000085fb c4a6 c4a6 c4a6 c4a6 c4a6 c4a6 c4a6
+5688 c4a7 c4a7 c4a7 * 7a32 * 8ea1fab2,fab2,8ea1fab2v,fab2v 85f9 e897b9 85f9 000085f9 c4a7 c4a7 c4a7 c4a7 c4a7 c4a7 c4a7
+5689 c4a8 c4a8 c4a8 * 7a33 * 8ea1fab3,fab3,8ea1fab3v,fab3v 8611 e89891 8611 00008611 c4a8 c4a8 c4a8 c4a8 c4a8 c4a8 c4a8
+5690 c4a9 c4a9 c4a9 * 7a34 * 8ea1fab4,fab4,8ea1fab4v,fab4v 85fa e897ba 85fa 000085fa c4a9 c4a9 c4a9 c4a9 c4a9 c4a9 c4a9
+5691 c4aa c4aa c4aa * 7a35 * 8ea1fab5,fab5,8ea1fab5v,fab5v 8606 e89886 8606 00008606 c4aa c4aa c4aa c4aa c4aa c4aa c4aa
+5692 c4ab c4ab c4ab * 7a36 * 8ea1fab6,fab6,8ea1fab6v,fab6v 860b e8988b 860b 0000860b c4ab c4ab c4ab c4ab c4ab c4ab c4ab
+5693 c4ac c4ac c4ac * 7a37 * 8ea1fab7,fab7,8ea1fab7v,fab7v 8607 e89887 8607 00008607 c4ac c4ac c4ac c4ac c4ac c4ac c4ac
+5694 c4ad c4ad c4ad * 7a38 * 8ea1fab8,fab8,8ea1fab8v,fab8v 860a e8988a 860a 0000860a c4ad c4ad c4ad c4ad c4ad c4ad c4ad
+5695 c4ae c4ae c4ae * 7a39 * 8ea1fab9,fab9,8ea1fab9v,fab9v 8814 e8a094 8814 00008814 c4ae c4ae c4ae c4ae c4ae c4ae c4ae
+5696 c4af c4af c4af * 7a3a * 8ea1faba,faba,8ea1fabav,fabav 8815 e8a095 8815 00008815 c4af c4af c4af c4af c4af c4af c4af
+5697 c4b0 c4b0 c4b0 * 7a3b * 8ea1fabb,fabb,8ea1fabbv,fabbv 8964 e8a5a4 8964 00008964 c4b0 c4b0 c4b0 c4b0 c4b0 c4b0 c4b0
+5698 c4b1 c4b1 c4b1 * 7a3c * 8ea1fabc,fabc,8ea1fabcv,fabcv 89ba e8a6ba 89ba 000089ba c4b1 c4b1 c4b1 c4b1 c4b1 c4b1 c4b1
+5699 c4b2 c4b2 c4b2 * 7a3d * 8ea1fabd,fabd,8ea1fabdv,fabdv 89f8 e8a7b8 89f8 000089f8 c4b2 c4b2 c4b2 c4b2 c4b2 c4b2 c4b2
+5700 c4b3 c4b3 c4b3 * 7a3e * 8ea1fabe,fabe,8ea1fabev,fabev 8b70 e8adb0 8b70 00008b70 c4b3 c4b3 c4b3 c4b3 c4b3 c4b3 c4b3
+5701 c4b4 c4b4 c4b4 * 7a3f * 8ea1fabf,fabf,8ea1fabfv,fabfv 8b6c e8adac 8b6c 00008b6c c4b4 c4b4 c4b4 c4b4 c4b4 c4b4 c4b4
+5702 c4b5 c4b5 c4b5 * 7a40 * 8ea1fac0,fac0,8ea1fac0v,fac0v 8b66 e8ada6 8b66 00008b66 c4b5 c4b5 c4b5 c4b5 c4b5 c4b5 c4b5
+5703 c4b6 c4b6 c4b6 * 7a41 * 8ea1fac1,fac1,8ea1fac1v,fac1v 8b6f e8adaf 8b6f 00008b6f c4b6 c4b6 c4b6 c4b6 c4b6 c4b6 c4b6
+5704 c4b7 c4b7 c4b7 * 7a42 * 8ea1fac2,fac2,8ea1fac2v,fac2v 8b5f e8ad9f 8b5f 00008b5f c4b7 c4b7 c4b7 c4b7 c4b7 c4b7 c4b7
+5705 c4b8 c4b8 c4b8 * 7a43 * 8ea1fac3,fac3,8ea1fac3v,fac3v 8b6b e8adab 8b6b 00008b6b c4b8 c4b8 c4b8 c4b8 c4b8 c4b8 c4b8
+5706 c4b9 c4b9 c4b9 * 7a44 * 8ea1fac4,fac4,8ea1fac4v,fac4v 8d0f e8b48f 8d0f 00008d0f c4b9 c4b9 c4b9 c4b9 c4b9 c4b9 c4b9
+5707 c4ba c4ba c4ba * 7a45 * 8ea1fac5,fac5,8ea1fac5v,fac5v 8d0d e8b48d 8d0d 00008d0d c4ba c4ba c4ba c4ba c4ba c4ba c4ba
+5708 c4bb c4bb c4bb * 7a46 * 8ea1fac6,fac6,8ea1fac6v,fac6v 8e89 e8ba89 8e89 00008e89 c4bb c4bb c4bb c4bb c4bb c4bb c4bb
+5709 c4bc c4bc c4bc * 7a47 * 8ea1fac7,fac7,8ea1fac7v,fac7v 8e81 e8ba81 8e81 00008e81 c4bc c4bc c4bc c4bc c4bc c4bc c4bc
+5710 c4bd c4bd c4bd * 7a48 * 8ea1fac8,fac8,8ea1fac8v,fac8v 8e85 e8ba85 8e85 00008e85 c4bd c4bd c4bd c4bd c4bd c4bd c4bd
+5711 c4be c4be c4be * 7a49 * 8ea1fac9,fac9,8ea1fac9v,fac9v 8e82 e8ba82 8e82 00008e82 c4be c4be c4be c4be c4be c4be c4be
+5712 c4bf c4bf c4bf * 7a4a * 8ea1faca,faca,8ea1facav,facav 91b4 e986b4 91b4 000091b4 c4bf c4bf c4bf c4bf c4bf c4bf c4bf
+5713 c4c0 c4c0 c4c0 * 7a4b * 8ea1facb,facb,8ea1facbv,facbv 91cb e9878b 91cb 000091cb c4c0 c4c0 c4c0 c4c0 c4c0 c4c0 c4c0
+5714 c4c1 c4c1 c4c1 * 7a4c * 8ea1facc,facc,8ea1faccv,faccv 9418 e99098 9418 00009418 c4c1 c4c1 c4c1 c4c1 c4c1 c4c1 c4c1
+5715 c4c2 c4c2 c4c2 * 7a4d * 8ea1facd,facd,8ea1facdv,facdv 9403 e99083 9403 00009403 c4c2 c4c2 c4c2 c4c2 c4c2 c4c2 c4c2
+5716 c4c3 c4c3 c4c3 * 7a4e * 8ea1face,face,8ea1facev,facev 93fd e98fbd 93fd 000093fd c4c3 c4c3 c4c3 c4c3 c4c3 c4c3 c4c3
+5717 c4c4 c4c4 c4c4 * 7a4f * 8ea1facf,facf,8ea1facfv,facfv 95e1 e997a1 95e1 000095e1 c4c4 c4c4 c4c4 c4c4 c4c4 c4c4 c4c4
+5718 c4c5 c4c5 c4c5 * 7a50 * 8ea1fad0,fad0,8ea1fad0v,fad0v 9730 e99cb0 9730 00009730 c4c5 c4c5 c4c5 c4c5 c4c5 c4c5 c4c5
+5719 c4c6 c4c6 c4c6 * 7a51 * 8ea1fad1,fad1,8ea1fad1v,fad1v 98c4 e9a384 98c4 000098c4 c4c6 c4c6 c4c6 c4c6 c4c6 c4c6 c4c6
+5720 c4c7 c4c7 c4c7 * 7a52 * 8ea1fad2,fad2,8ea1fad2v,fad2v 9952 e9a592 9952 00009952 c4c7 c4c7 c4c7 c4c7 c4c7 c4c7 c4c7
+5721 c4c8 c4c8 c4c8 * 7a53 * 8ea1fad3,fad3,8ea1fad3v,fad3v 9951 e9a591 9951 00009951 c4c8 c4c8 c4c8 c4c8 c4c8 c4c8 c4c8
+5722 c4c9 c4c9 c4c9 * 7a54 * 8ea1fad4,fad4,8ea1fad4v,fad4v 99a8 e9a6a8 99a8 000099a8 c4c9 c4c9 c4c9 c4c9 c4c9 c4c9 c4c9
+5723 c4ca c4ca c4ca * 7a55 * 8ea1fad5,fad5,8ea1fad5v,fad5v 9a2b e9a8ab 9a2b 00009a2b c4ca c4ca c4ca c4ca c4ca c4ca c4ca
+5724 c4cb c4cb c4cb * 7a56 * 8ea1fad6,fad6,8ea1fad6v,fad6v 9a30 e9a8b0 9a30 00009a30 c4cb c4cb c4cb c4cb c4cb c4cb c4cb
+5725 c4cc c4cc c4cc * 7a57 * 8ea1fad7,fad7,8ea1fad7v,fad7v 9a37 e9a8b7 9a37 00009a37 c4cc c4cc c4cc c4cc c4cc c4cc c4cc
+5726 c4cd c4cd c4cd * 7a58 * 8ea1fad8,fad8,8ea1fad8v,fad8v 9a35 e9a8b5 9a35 00009a35 c4cd c4cd c4cd c4cd c4cd c4cd c4cd
+5727 c4ce c4ce c4ce * 7a59 * 8ea1fad9,fad9,8ea1fad9v,fad9v 9c13 e9b093 9c13 00009c13 c4ce c4ce c4ce c4ce c4ce c4ce c4ce
+5728 c4cf c4cf c4cf * 7a5a * 8ea1fada,fada,8ea1fadav,fadav 9c0d e9b08d 9c0d 00009c0d c4cf c4cf c4cf c4cf c4cf c4cf c4cf
+5729 c4d0 c4d0 c4d0 * 7a5b * 8ea1fadb,fadb,8ea1fadbv,fadbv 9e79 e9b9b9 9e79 00009e79 c4d0 c4d0 c4d0 c4d0 c4d0 c4d0 c4d0
+5730 c4d1 c4d1 c4d1 * 7a5c * 8ea1fadc,fadc,8ea1fadcv,fadcv 9eb5 e9bab5 9eb5 00009eb5 c4d1 c4d1 c4d1 c4d1 c4d1 c4d1 c4d1
+5731 c4d2 c4d2 c4d2 * 7a5d * 8ea1fadd,fadd,8ea1faddv,faddv 9ee8 e9bba8 9ee8 00009ee8 c4d2 c4d2 c4d2 c4d2 c4d2 c4d2 c4d2
+5732 c4d3 c4d3 c4d3 * 7a5e * 8ea1fade,fade,8ea1fadev,fadev 9f2f e9bcaf 9f2f 00009f2f c4d3 c4d3 c4d3 c4d3 c4d3 c4d3 c4d3
+5733 c4d4 c4d4 c4d4 * 7a5f * 8ea1fadf,fadf,8ea1fadfv,fadfv 9f5f e9bd9f 9f5f 00009f5f c4d4 c4d4 c4d4 c4d4 c4d4 c4d4 c4d4
+5734 c4d5 c4d5 c4d5 * 7a60 * 8ea1fae0,fae0,8ea1fae0v,fae0v 9f63 e9bda3 9f63 00009f63 c4d5 c4d5 c4d5 c4d5 c4d5 c4d5 c4d5
+5735 c4d6 c4d6 c4d6 * 7a61 * 8ea1fae1,fae1,8ea1fae1v,fae1v 9f61 e9bda1 9f61 00009f61 c4d6 c4d6 c4d6 c4d6 c4d6 c4d6 c4d6
+5736 c4d7 c4d7 c4d7 * 7a62 * 8ea1fae2,fae2,8ea1fae2v,fae2v 5137 e584b7 5137 00005137 c4d7 c4d7 c4d7 c4d7 c4d7 c4d7 c4d7
+5737 c4d8 c4d8 c4d8 * 7a63 * 8ea1fae3,fae3,8ea1fae3v,fae3v 5138 e584b8 5138 00005138 c4d8 c4d8 c4d8 c4d8 c4d8 c4d8 c4d8
+5738 c4d9 c4d9 c4d9 * 7a64 * 8ea1fae4,fae4,8ea1fae4v,fae4v 56c1 e59b81 56c1 000056c1 c4d9 c4d9 c4d9 c4d9 c4d9 c4d9 c4d9
+5739 c4da c4da c4da * 7a65 * 8ea1fae5,fae5,8ea1fae5v,fae5v 56c0 e59b80 56c0 000056c0 c4da c4da c4da c4da c4da c4da c4da
+5740 c4db c4db c4db * 7a66 * 8ea1fae6,fae6,8ea1fae6v,fae6v 56c2 e59b82 56c2 000056c2 c4db c4db c4db c4db c4db c4db c4db
+5741 c4dc c4dc c4dc * 7a67 * 8ea1fae7,fae7,8ea1fae7v,fae7v 5914 e5a494 5914 00005914 c4dc c4dc c4dc c4dc c4dc c4dc c4dc
+5742 c4dd c4dd c4dd * 7a68 * 8ea1fae8,fae8,8ea1fae8v,fae8v 5c6c e5b1ac 5c6c 00005c6c c4dd c4dd c4dd c4dd c4dd c4dd c4dd
+5743 c4de c4de c4de * 7a69 * 8ea1fae9,fae9,8ea1fae9v,fae9v 5dcd e5b78d 5dcd 00005dcd c4de c4de c4de c4de c4de c4de c4de
+5744 c4df c4df c4df * 7a6a * 8ea1faea,faea,8ea1faeav,faeav 61fc e687bc 61fc 000061fc c4df c4df c4df c4df c4df c4df c4df
+5745 c4e0 c4e0 c4e0 * 7a6b * 8ea1faeb,faeb,8ea1faebv,faebv 61fe e687be 61fe 000061fe c4e0 c4e0 c4e0 c4e0 c4e0 c4e0 c4e0
+5746 c4e1 c4e1 c4e1 * 7a6c * 8ea1faec,faec,8ea1faecv,faecv 651d e6949d 651d 0000651d c4e1 c4e1 c4e1 c4e1 c4e1 c4e1 c4e1
+5747 c4e2 c4e2 c4e2 * 7a6d * 8ea1faed,faed,8ea1faedv,faedv 651c e6949c 651c 0000651c c4e2 c4e2 c4e2 c4e2 c4e2 c4e2 c4e2
+5748 c4e3 c4e3 c4e3 * 7a6e * 8ea1faee,faee,8ea1faeev,faeev 6595 e69695 6595 00006595 c4e3 c4e3 c4e3 c4e3 c4e3 c4e3 c4e3
+5749 c4e4 c4e4 c4e4 * 7a6f * 8ea1faef,faef,8ea1faefv,faefv 66e9 e69ba9 66e9 000066e9 c4e4 c4e4 c4e4 c4e4 c4e4 c4e4 c4e4
+5750 c4e5 c4e5 c4e5 * 7a70 * 8ea1faf0,faf0,8ea1faf0v,faf0v 6afb e6abbb 6afb 00006afb c4e5 c4e5 c4e5 c4e5 c4e5 c4e5 c4e5
+5751 c4e6 c4e6 c4e6 * 7a71 * 8ea1faf1,faf1,8ea1faf1v,faf1v 6b04 e6ac84 6b04 00006b04 c4e6 c4e6 c4e6 c4e6 c4e6 c4e6 c4e6
+5752 c4e7 c4e7 c4e7 * 7a72 * 8ea1faf2,faf2,8ea1faf2v,faf2v 6afa e6abba 6afa 00006afa c4e7 c4e7 c4e7 c4e7 c4e7 c4e7 c4e7
+5753 c4e8 c4e8 c4e8 * 7a73 * 8ea1faf3,faf3,8ea1faf3v,faf3v 6bb2 e6aeb2 6bb2 00006bb2 c4e8 c4e8 c4e8 c4e8 c4e8 c4e8 c4e8
+5754 c4e9 c4e9 c4e9 * 7a74 * 8ea1faf4,faf4,8ea1faf4v,faf4v 704c e7818c 704c 0000704c c4e9 c4e9 c4e9 c4e9 c4e9 c4e9 c4e9
+5755 c4ea c4ea c4ea * 7a75 * 8ea1faf5,faf5,8ea1faf5v,faf5v 721b e7889b 721b 0000721b c4ea c4ea c4ea c4ea c4ea c4ea c4ea
+5756 c4eb c4eb c4eb * 7a76 * 8ea1faf6,faf6,8ea1faf6v,faf6v 72a7 e78aa7 72a7 000072a7 c4eb c4eb c4eb c4eb c4eb c4eb c4eb
+5757 c4ec c4ec c4ec * 7a77 * 8ea1faf7,faf7,8ea1faf7v,faf7v 74d6 e79396 74d6 000074d6 c4ec c4ec c4ec c4ec c4ec c4ec c4ec
+5758 c4ed c4ed c4ed * 7a78 * 8ea1faf8,faf8,8ea1faf8v,faf8v 74d4 e79394 74d4 000074d4 c4ed c4ed c4ed c4ed c4ed c4ed c4ed
+5759 c4ee c4ee c4ee * 7a79 * 8ea1faf9,faf9,8ea1faf9v,faf9v 7669 e799a9 7669 00007669 c4ee c4ee c4ee c4ee c4ee c4ee c4ee
+5760 c4ef c4ef c4ef * 7a7a * 8ea1fafa,fafa,8ea1fafav,fafav 77d3 e79f93 77d3 000077d3 c4ef c4ef c4ef c4ef c4ef c4ef c4ef
+5761 c4f0 c4f0 c4f0 * 7a7b * 8ea1fafb,fafb,8ea1fafbv,fafbv 7c50 e7b190 7c50 00007c50 c4f0 c4f0 c4f0 c4f0 c4f0 c4f0 c4f0
+5762 c4f1 c4f1 c4f1 * 7a7c * 8ea1fafc,fafc,8ea1fafcv,fafcv 7e8f e7ba8f 7e8f 00007e8f c4f1 c4f1 c4f1 c4f1 c4f1 c4f1 c4f1
+5763 c4f2 c4f2 c4f2 * 7a7d * 8ea1fafd,fafd,8ea1fafdv,fafdv 7e8c e7ba8c 7e8c 00007e8c c4f2 c4f2 c4f2 c4f2 c4f2 c4f2 c4f2
+5764 c4f3 c4f3 c4f3 * 7a7e * 8ea1fafe,fafe,8ea1fafev,fafev 7fbc e7bebc 7fbc 00007fbc c4f3 c4f3 c4f3 c4f3 c4f3 c4f3 c4f3
+5765 c4f4 c4f4 c4f4 * 7b21 * 8ea1fba1,fba1,8ea1fba1v,fba1v 8617 e89897 8617 00008617 c4f4 c4f4 c4f4 c4f4 c4f4 c4f4 c4f4
+5766 c4f5 c4f5 c4f5 * 7b22 * 8ea1fba2,fba2,8ea1fba2v,fba2v 862d e898ad 862d 0000862d c4f5 c4f5 c4f5 c4f5 c4f5 c4f5 c4f5
+5767 c4f6 c4f6 c4f6 * 7b23 * 8ea1fba3,fba3,8ea1fba3v,fba3v 861a e8989a 861a 0000861a c4f6 c4f6 c4f6 c4f6 c4f6 c4f6 c4f6
+5768 c4f7 c4f7 c4f7 * 7b24 * 8ea1fba4,fba4,8ea1fba4v,fba4v 8823 e8a0a3 8823 00008823 c4f7 c4f7 c4f7 c4f7 c4f7 c4f7 c4f7
+5769 c4f8 c4f8 c4f8 * 7b25 * 8ea1fba5,fba5,8ea1fba5v,fba5v 8822 e8a0a2 8822 00008822 c4f8 c4f8 c4f8 c4f8 c4f8 c4f8 c4f8
+5770 c4f9 c4f9 c4f9 * 7b26 * 8ea1fba6,fba6,8ea1fba6v,fba6v 8821 e8a0a1 8821 00008821 c4f9 c4f9 c4f9 c4f9 c4f9 c4f9 c4f9
+5771 c4fa c4fa c4fa * 7b27 * 8ea1fba7,fba7,8ea1fba7v,fba7v 881f e8a09f 881f 0000881f c4fa c4fa c4fa c4fa c4fa c4fa c4fa
+5772 c4fb c4fb c4fb * 7b28 * 8ea1fba8,fba8,8ea1fba8v,fba8v 896a e8a5aa 896a 0000896a c4fb c4fb c4fb c4fb c4fb c4fb c4fb
+5773 c4fc c4fc c4fc * 7b29 * 8ea1fba9,fba9,8ea1fba9v,fba9v 896c e8a5ac 896c 0000896c c4fc c4fc c4fc c4fc c4fc c4fc c4fc
+5774 c4fd c4fd c4fd * 7b2a * 8ea1fbaa,fbaa,8ea1fbaav,fbaav 89bd e8a6bd 89bd 000089bd c4fd c4fd c4fd c4fd c4fd c4fd c4fd
+5775 c4fe c4fe c4fe * 7b2b * 8ea1fbab,fbab,8ea1fbabv,fbabv 8b74 e8adb4 8b74 00008b74 c4fe c4fe c4fe c4fe c4fe c4fe c4fe
+5776 c540 c540 c540 * 7b2c * 8ea1fbac,fbac,8ea1fbacv,fbacv 8b77 e8adb7 8b77 00008b77 c540 c540 c540 c540 c540 c540 c540
+5777 c541 c541 c541 * 7b2d * 8ea1fbad,fbad,8ea1fbadv,fbadv 8b7d e8adbd 8b7d 00008b7d c541 c541 c541 c541 c541 c541 c541
+5778 c542 c542 c542 * 7b2e * 8ea1fbae,fbae,8ea1fbaev,fbaev 8d13 e8b493 8d13 00008d13 c542 c542 c542 c542 c542 c542 c542
+5779 c543 c543 c543 * 7b2f * 8ea1fbaf,fbaf,8ea1fbafv,fbafv 8e8a e8ba8a 8e8a 00008e8a c543 c543 c543 c543 c543 c543 c543
+5780 c544 c544 c544 * 7b30 * 8ea1fbb0,fbb0,8ea1fbb0v,fbb0v 8e8d e8ba8d 8e8d 00008e8d c544 c544 c544 c544 c544 c544 c544
+5781 c545 c545 c545 * 7b31 * 8ea1fbb1,fbb1,8ea1fbb1v,fbb1v 8e8b e8ba8b 8e8b 00008e8b c545 c545 c545 c545 c545 c545 c545
+5782 c546 c546 c546 * 7b32 * 8ea1fbb2,fbb2,8ea1fbb2v,fbb2v 8f5f e8bd9f 8f5f 00008f5f c546 c546 c546 c546 c546 c546 c546
+5783 c547 c547 c547 * 7b33 * 8ea1fbb3,fbb3,8ea1fbb3v,fbb3v 8faf e8beaf 8faf 00008faf c547 c547 c547 c547 c547 c547 c547
+5784 c548 c548 c548 * 7b34 * 8ea1fbb4,fbb4,8ea1fbb4v,fbb4v 91ba e986ba 91ba 000091ba c548 c548 c548 c548 c548 c548 c548
+5785 c549 c549 c549 * 7b35 * 8ea1fbb5,fbb5,8ea1fbb5v,fbb5v 942e e990ae 942e 0000942e c549 c549 c549 c549 c549 c549 c549
+5786 c54a c54a c54a * 7b36 * 8ea1fbb6,fbb6,8ea1fbb6v,fbb6v 9433 e990b3 9433 00009433 c54a c54a c54a c54a c54a c54a c54a
+5787 c54b c54b c54b * 7b37 * 8ea1fbb7,fbb7,8ea1fbb7v,fbb7v 9435 e990b5 9435 00009435 c54b c54b c54b c54b c54b c54b c54b
+5788 c54c c54c c54c * 7b38 * 8ea1fbb8,fbb8,8ea1fbb8v,fbb8v 943a e990ba 943a 0000943a c54c c54c c54c c54c c54c c54c c54c
+5789 c54d c54d c54d * 7b39 * 8ea1fbb9,fbb9,8ea1fbb9v,fbb9v 9438 e990b8 9438 00009438 c54d c54d c54d c54d c54d c54d c54d
+5790 c54e c54e c54e * 7b3a * 8ea1fbba,fbba,8ea1fbbav,fbbav 9432 e990b2 9432 00009432 c54e c54e c54e c54e c54e c54e c54e
+5791 c54f c54f c54f * 7b3b * 8ea1fbbb,fbbb,8ea1fbbbv,fbbbv 942b e990ab 942b 0000942b c54f c54f c54f c54f c54f c54f c54f
+5792 c550 c550 c550 * 7b3c * 8ea1fbbc,fbbc,8ea1fbbcv,fbbcv 95e2 e997a2 95e2 000095e2 c550 c550 c550 c550 c550 c550 c550
+5793 c551 c551 c551 * 7b3d * 8ea1fbbd,fbbd,8ea1fbbdv,fbbdv 9738 e99cb8 9738 00009738 c551 c551 c551 c551 c551 c551 c551
+5794 c552 c552 c552 * 7b3e * 8ea1fbbe,fbbe,8ea1fbbev,fbbev 9739 e99cb9 9739 00009739 c552 c552 c552 c552 c552 c552 c552
+5795 c553 c553 c553 * 7b3f * 8ea1fbbf,fbbf,8ea1fbbfv,fbbfv 9732 e99cb2 9732 00009732 c553 c553 c553 c553 c553 c553 c553
+5796 c554 c554 c554 * 7b40 * 8ea1fbc0,fbc0,8ea1fbc0v,fbc0v 97ff e99fbf,ee939a 97ff,e4da 000097ff,0000e4da 90f1,c554 c554 c554 c554 c554 c554 90f1,c554
+5797 c555 c555 c555 * 7b41 * 8ea1fbc1,fbc1,8ea1fbc1v,fbc1v 9867 e9a1a7 9867 00009867 c555 c555 c555 c555 c555 c555 c555
+5798 c556 c556 c556 * 7b42 * 8ea1fbc2,fbc2,8ea1fbc2v,fbc2v 9865 e9a1a5 9865 00009865 c556 c556 c556 c556 c556 c556 c556
+5799 c557 c557 c557 * 7b43 * 8ea1fbc3,fbc3,8ea1fbc3v,fbc3v 9957 e9a597 9957 00009957 c557 c557 c557 c557 c557 c557 c557
+5800 c558 c558 c558 * 7b44 * 8ea1fbc4,fbc4,8ea1fbc4v,fbc4v 9a45 e9a985 9a45 00009a45 c558 c558 c558 c558 c558 c558 c558
+5801 c559 c559 c559 * 7b45 * 8ea1fbc5,fbc5,8ea1fbc5v,fbc5v 9a43 e9a983 9a43 00009a43 c559 c559 c559 c559 c559 c559 c559
+5802 c55a c55a c55a * 7b46 * 8ea1fbc6,fbc6,8ea1fbc6v,fbc6v 9a40 e9a980 9a40 00009a40 c55a c55a c55a c55a c55a c55a c55a
+5803 c55b c55b c55b * 7b47 * 8ea1fbc7,fbc7,8ea1fbc7v,fbc7v 9a3e e9a8be 9a3e 00009a3e c55b c55b c55b c55b c55b c55b c55b
+5804 c55c c55c c55c * 7b48 * 8ea1fbc8,fbc8,8ea1fbc8v,fbc8v 9acf e9ab8f 9acf 00009acf c55c c55c c55c c55c c55c c55c c55c
+5805 c55d c55d c55d * 7b49 * 8ea1fbc9,fbc9,8ea1fbc9v,fbc9v 9b54 e9ad94 9b54 00009b54 c55d c55d c55d c55d c55d c55d c55d
+5806 c55e c55e c55e * 7b4a * 8ea1fbca,fbca,8ea1fbcav,fbcav 9b51 e9ad91 9b51 00009b51 c55e c55e c55e c55e c55e c55e c55e
+5807 c55f c55f c55f * 7b4b * 8ea1fbcb,fbcb,8ea1fbcbv,fbcbv 9c2d e9b0ad 9c2d 00009c2d c55f c55f c55f c55f c55f c55f c55f
+5808 c560 c560 c560 * 7b4c * 8ea1fbcc,fbcc,8ea1fbccv,fbccv 9c25 e9b0a5 9c25 00009c25 c560 c560 c560 c560 c560 c560 c560
+5809 c561 c561 c561 * 7b4d * 8ea1fbcd,fbcd,8ea1fbcdv,fbcdv 9daf e9b6af 9daf 00009daf c561 c561 c561 c561 c561 c561 c561
+5810 c562 c562 c562 * 7b4e * 8ea1fbce,fbce,8ea1fbcev,fbcev 9db4 e9b6b4 9db4 00009db4 c562 c562 c562 c562 c562 c562 c562
+5811 c563 c563 c563 * 7b4f * 8ea1fbcf,fbcf,8ea1fbcfv,fbcfv 9dc2 e9b782 9dc2 00009dc2 c563 c563 c563 c563 c563 c563 c563
+5812 c564 c564 c564 * 7b50 * 8ea1fbd0,fbd0,8ea1fbd0v,fbd0v 9db8 e9b6b8 9db8 00009db8 c564 c564 c564 c564 c564 c564 c564
+5813 c565 c565 c565 * 7b51 * 8ea1fbd1,fbd1,8ea1fbd1v,fbd1v 9e9d e9ba9d 9e9d 00009e9d c565 c565 c565 c565 c565 c565 c565
+5814 c566 c566 c566 * 7b52 * 8ea1fbd2,fbd2,8ea1fbd2v,fbd2v 9eef e9bbaf 9eef 00009eef c566 c566 c566 c566 c566 c566 c566
+5815 c567 c567 c567 * 7b53 * 8ea1fbd3,fbd3,8ea1fbd3v,fbd3v 9f19 e9bc99 9f19 00009f19 c567 c567 c567 c567 c567 c567 c567
+5816 c568 c568 c568 * 7b54 * 8ea1fbd4,fbd4,8ea1fbd4v,fbd4v 9f5c e9bd9c 9f5c 00009f5c c568 c568 c568 c568 c568 c568 c568
+5817 c569 c569 c569 * 7b55 * 8ea1fbd5,fbd5,8ea1fbd5v,fbd5v 9f66 e9bda6 9f66 00009f66 c569 c569 c569 c569 c569 c569 c569
+5818 c56a c56a c56a * 7b56 * 8ea1fbd6,fbd6,8ea1fbd6v,fbd6v 9f67 e9bda7 9f67 00009f67 c56a c56a c56a c56a c56a c56a c56a
+5819 c56b c56b c56b * 7b57 * 8ea1fbd7,fbd7,8ea1fbd7v,fbd7v 513c e584bc 513c 0000513c c56b c56b c56b c56b c56b c56b c56b
+5820 c56c c56c c56c * 7b58 * 8ea1fbd8,fbd8,8ea1fbd8v,fbd8v 513b e584bb 513b 0000513b c56c c56c c56c c56c c56c c56c c56c
+5821 c56d c56d c56d * 7b59 * 8ea1fbd9,fbd9,8ea1fbd9v,fbd9v 56c8 e59b88 56c8 000056c8 c56d c56d c56d c56d c56d c56d c56d
+5822 c56e c56e c56e * 7b5a * 8ea1fbda,fbda,8ea1fbdav,fbdav 56ca e59b8a 56ca 000056ca c56e c56e c56e c56e c56e c56e c56e
+5823 c56f c56f c56f * 7b5b * 8ea1fbdb,fbdb,8ea1fbdbv,fbdbv 56c9 e59b89 56c9 000056c9 c56f c56f c56f c56f c56f c56f c56f
+5824 c570 c570 c570 * 7b5c * 8ea1fbdc,fbdc,8ea1fbdcv,fbdcv 5b7f e5adbf 5b7f 00005b7f c570 c570 c570 c570 c570 c570 c570
+5825 c571 c571 c571 * 7b5d * 8ea1fbdd,fbdd,8ea1fbddv,fbddv 5dd4 e5b794 5dd4 00005dd4 c571 c571 c571 c571 c571 c571 c571
+5826 c572 c572 c572 * 7b5e * 8ea1fbde,fbde,8ea1fbdev,fbdev 5dd2 e5b792 5dd2 00005dd2 c572 c572 c572 c572 c572 c572 c572
+5827 c573 c573 c573 * 7b5f * 8ea1fbdf,fbdf,8ea1fbdfv,fbdfv 5f4e e5bd8e 5f4e 00005f4e c573 c573 c573 c573 c573 c573 c573
+5828 c574 c574 c574 * 7b60 * 8ea1fbe0,fbe0,8ea1fbe0v,fbe0v 61ff e687bf 61ff 000061ff c574 c574 c574 c574 c574 c574 c574
+5829 c575 c575 c575 * 7b61 * 8ea1fbe1,fbe1,8ea1fbe1v,fbe1v 6524 e694a4 6524 00006524 c575 c575 c575 c575 c575 c575 c575
+5830 c576 c576 c576 * 7b62 * 8ea1fbe2,fbe2,8ea1fbe2v,fbe2v 6b0a e6ac8a 6b0a 00006b0a c576 c576 c576 c576 c576 c576 c576
+5831 c577 c577 c577 * 7b63 * 8ea1fbe3,fbe3,8ea1fbe3v,fbe3v 6b61 e6ada1 6b61 00006b61 c577 c577 c577 c577 c577 c577 c577
+5832 c578 c578 c578 * 7b64 * 8ea1fbe4,fbe4,8ea1fbe4v,fbe4v 7051 e78191 7051 00007051 c578 c578 c578 c578 c578 c578 c578
+5833 c579 c579 c579 * 7b65 * 8ea1fbe5,fbe5,8ea1fbe5v,fbe5v 7058 e78198 7058 00007058 c579 c579 c579 c579 c579 c579 c579
+5834 c57a c57a c57a * 7b66 * 8ea1fbe6,fbe6,8ea1fbe6v,fbe6v 7380 e78e80 7380 00007380 c57a c57a c57a c57a c57a c57a c57a
+5835 c57b c57b c57b * 7b67 * 8ea1fbe7,fbe7,8ea1fbe7v,fbe7v 74e4 e793a4 74e4 000074e4 c57b c57b c57b c57b c57b c57b c57b
+5836 c57c c57c c57c * 7b68 * 8ea1fbe8,fbe8,8ea1fbe8v,fbe8v 758a e7968a 758a 0000758a c57c c57c c57c c57c c57c c57c c57c
+5837 c57d c57d c57d * 7b69 * 8ea1fbe9,fbe9,8ea1fbe9v,fbe9v 766e e799ae 766e 0000766e c57d c57d c57d c57d c57d c57d c57d
+5838 c57e c57e c57e * 7b6a * 8ea1fbea,fbea,8ea1fbeav,fbeav 766c e799ac 766c 0000766c c57e c57e c57e c57e c57e c57e c57e
+5839 c5a1 c5a1 c5a1 * 7b6b * 8ea1fbeb,fbeb,8ea1fbebv,fbebv 79b3 e7a6b3 79b3 000079b3 c5a1 c5a1 c5a1 c5a1 c5a1 c5a1 c5a1
+5840 c5a2 c5a2 c5a2 * 7b6c * 8ea1fbec,fbec,8ea1fbecv,fbecv 7c60 e7b1a0 7c60 00007c60 c5a2 c5a2 c5a2 c5a2 c5a2 c5a2 c5a2
+5841 c5a3 c5a3 c5a3 * 7b6d * 8ea1fbed,fbed,8ea1fbedv,fbedv 7c5f e7b19f 7c5f 00007c5f c5a3 c5a3 c5a3 c5a3 c5a3 c5a3 c5a3
+5842 c5a4 c5a4 c5a4 * 7b6e * 8ea1fbee,fbee,8ea1fbeev,fbeev 807e e881be 807e 0000807e c5a4 c5a4 c5a4 c5a4 c5a4 c5a4 c5a4
+5843 c5a5 c5a5 c5a5 * 7b6f * 8ea1fbef,fbef,8ea1fbefv,fbefv 807d e881bd 807d 0000807d c5a5 c5a5 c5a5 c5a5 c5a5 c5a5 c5a5
+5844 c5a6 c5a6 c5a6 * 7b70 * 8ea1fbf0,fbf0,8ea1fbf0v,fbf0v 81df e8879f 81df 000081df c5a6 c5a6 c5a6 c5a6 c5a6 c5a6 c5a6
+5845 c5a7 c5a7 c5a7 * 7b71 * 8ea1fbf1,fbf1,8ea1fbf1v,fbf1v 8972 e8a5b2 8972 00008972 c5a7 c5a7 c5a7 c5a7 c5a7 c5a7 c5a7
+5846 c5a8 c5a8 c5a8 * 7b72 * 8ea1fbf2,fbf2,8ea1fbf2v,fbf2v 896f e8a5af 896f 0000896f c5a8 c5a8 c5a8 c5a8 c5a8 c5a8 c5a8
+5847 c5a9 c5a9 c5a9 * 7b73 * 8ea1fbf3,fbf3,8ea1fbf3v,fbf3v 89fc e8a7bc 89fc 000089fc c5a9 c5a9 c5a9 c5a9 c5a9 c5a9 c5a9
+5848 c5aa c5aa c5aa * 7b74 * 8ea1fbf4,fbf4,8ea1fbf4v,fbf4v 8b80 e8ae80 8b80 00008b80 c5aa c5aa c5aa c5aa c5aa c5aa c5aa
+5849 c5ab c5ab c5ab * 7b75 * 8ea1fbf5,fbf5,8ea1fbf5v,fbf5v 8d16 e8b496 8d16 00008d16 c5ab c5ab c5ab c5ab c5ab c5ab c5ab
+5850 c5ac c5ac c5ac * 7b76 * 8ea1fbf6,fbf6,8ea1fbf6v,fbf6v 8d17 e8b497 8d17 00008d17 c5ac c5ac c5ac c5ac c5ac c5ac c5ac
+5851 c5ad c5ad c5ad * 7b77 * 8ea1fbf7,fbf7,8ea1fbf7v,fbf7v 8e91 e8ba91 8e91 00008e91 c5ad c5ad c5ad c5ad c5ad c5ad c5ad
+5852 c5ae c5ae c5ae * 7b78 * 8ea1fbf8,fbf8,8ea1fbf8v,fbf8v 8e93 e8ba93 8e93 00008e93 c5ae c5ae c5ae c5ae c5ae c5ae c5ae
+5853 c5af c5af c5af * 7b79 * 8ea1fbf9,fbf9,8ea1fbf9v,fbf9v 8f61 e8bda1 8f61 00008f61 c5af c5af c5af c5af c5af c5af c5af
+5854 c5b0 c5b0 c5b0 * 7b7a * 8ea1fbfa,fbfa,8ea1fbfav,fbfav 9148 e98588 9148 00009148 c5b0 c5b0 c5b0 c5b0 c5b0 c5b0 c5b0
+5855 c5b1 c5b1 c5b1 * 7b7b * 8ea1fbfb,fbfb,8ea1fbfbv,fbfbv 9444 e99184 9444 00009444 c5b1 c5b1 c5b1 c5b1 c5b1 c5b1 c5b1
+5856 c5b2 c5b2 c5b2 * 7b7c * 8ea1fbfc,fbfc,8ea1fbfcv,fbfcv 9451 e99191 9451 00009451 c5b2 c5b2 c5b2 c5b2 c5b2 c5b2 c5b2
+5857 c5b3 c5b3 c5b3 * 7b7d * 8ea1fbfd,fbfd,8ea1fbfdv,fbfdv 9452 e99192 9452 00009452 c5b3 c5b3 c5b3 c5b3 c5b3 c5b3 c5b3
+5858 c5b4 c5b4 c5b4 * 7b7e * 8ea1fbfe,fbfe,8ea1fbfev,fbfev 973d e99cbd 973d 0000973d c5b4 c5b4 c5b4 c5b4 c5b4 c5b4 c5b4
+5859 c5b5 c5b5 c5b5 * 7c21 * 8ea1fca1,fca1,8ea1fca1v,fca1v 973e e99cbe 973e 0000973e c5b5 c5b5 c5b5 c5b5 c5b5 c5b5 c5b5
+5860 c5b6 c5b6 c5b6 * 7c22 * 8ea1fca2,fca2,8ea1fca2v,fca2v 97c3 e99f83 97c3 000097c3 c5b6 c5b6 c5b6 c5b6 c5b6 c5b6 c5b6
+5861 c5b7 c5b7 c5b7 * 7c23 * 8ea1fca3,fca3,8ea1fca3v,fca3v 97c1 e99f81 97c1 000097c1 c5b7 c5b7 c5b7 c5b7 c5b7 c5b7 c5b7
+5862 c5b8 c5b8 c5b8 * 7c24 * 8ea1fca4,fca4,8ea1fca4v,fca4v 986b e9a1ab 986b 0000986b c5b8 c5b8 c5b8 c5b8 c5b8 c5b8 c5b8
+5863 c5b9 c5b9 c5b9 * 7c25 * 8ea1fca5,fca5,8ea1fca5v,fca5v 9955 e9a595 9955 00009955 c5b9 c5b9 c5b9 c5b9 c5b9 c5b9 c5b9
+5864 c5ba c5ba c5ba * 7c26 * 8ea1fca6,fca6,8ea1fca6v,fca6v 9a55 e9a995 9a55 00009a55 c5ba c5ba c5ba c5ba c5ba c5ba c5ba
+5865 c5bb c5bb c5bb * 7c27 * 8ea1fca7,fca7,8ea1fca7v,fca7v 9a4d e9a98d 9a4d 00009a4d c5bb c5bb c5bb c5bb c5bb c5bb c5bb
+5866 c5bc c5bc c5bc * 7c28 * 8ea1fca8,fca8,8ea1fca8v,fca8v 9ad2 e9ab92 9ad2 00009ad2 c5bc c5bc c5bc c5bc c5bc c5bc c5bc
+5867 c5bd c5bd c5bd * 7c29 * 8ea1fca9,fca9,8ea1fca9v,fca9v 9b1a e9ac9a 9b1a 00009b1a c5bd c5bd c5bd c5bd c5bd c5bd c5bd
+5868 c5be c5be c5be * 7c2a * 8ea1fcaa,fcaa,8ea1fcaav,fcaav 9c49 e9b189 9c49 00009c49 c5be c5be c5be c5be c5be c5be c5be
+5869 c5bf c5bf c5bf * 7c2b * 8ea1fcab,fcab,8ea1fcabv,fcabv 9c31 e9b0b1 9c31 00009c31 c5bf c5bf c5bf c5bf c5bf c5bf c5bf
+5870 c5c0 c5c0 c5c0 * 7c2c * 8ea1fcac,fcac,8ea1fcacv,fcacv 9c3e e9b0be 9c3e 00009c3e c5c0 c5c0 c5c0 c5c0 c5c0 c5c0 c5c0
+5871 c5c1 c5c1 c5c1 * 7c2d * 8ea1fcad,fcad,8ea1fcadv,fcadv 9c3b e9b0bb 9c3b 00009c3b c5c1 c5c1 c5c1 c5c1 c5c1 c5c1 c5c1
+5872 c5c2 c5c2 c5c2 * 7c2e * 8ea1fcae,fcae,8ea1fcaev,fcaev 9dd3 e9b793 9dd3 00009dd3 c5c2 c5c2 c5c2 c5c2 c5c2 c5c2 c5c2
+5873 c5c3 c5c3 c5c3 * 7c2f * 8ea1fcaf,fcaf,8ea1fcafv,fcafv 9dd7 e9b797 9dd7 00009dd7 c5c3 c5c3 c5c3 c5c3 c5c3 c5c3 c5c3
+5874 c5c4 c5c4 c5c4 * 7c30 * 8ea1fcb0,fcb0,8ea1fcb0v,fcb0v 9f34 e9bcb4 9f34 00009f34 c5c4 c5c4 c5c4 c5c4 c5c4 c5c4 c5c4
+5875 c5c5 c5c5 c5c5 * 7c31 * 8ea1fcb1,fcb1,8ea1fcb1v,fcb1v 9f6c e9bdac 9f6c 00009f6c c5c5 c5c5 c5c5 c5c5 c5c5 c5c5 c5c5
+5876 c5c6 c5c6 c5c6 * 7c32 * 8ea1fcb2,fcb2,8ea1fcb2v,fcb2v 9f6a e9bdaa 9f6a 00009f6a c5c6 c5c6 c5c6 c5c6 c5c6 c5c6 c5c6
+5877 c5c7 c5c7 c5c7 * 7c33 * 8ea1fcb3,fcb3,8ea1fcb3v,fcb3v 9f94 e9be94 9f94 00009f94 c5c7 c5c7 c5c7 c5c7 c5c7 c5c7 c5c7
+5878 c5c8 c5c8 c5c8 * 7c34 * 8ea1fcb4,fcb4,8ea1fcb4v,fcb4v 56cc e59b8c 56cc 000056cc c5c8 c5c8 c5c8 c5c8 c5c8 c5c8 c5c8
+5879 c5c9 c5c9 c5c9 * 7c35 * 8ea1fcb5,fcb5,8ea1fcb5v,fcb5v 5dd6 e5b796 5dd6 00005dd6 c5c9 c5c9 c5c9 c5c9 c5c9 c5c9 c5c9
+5880 c5ca c5ca c5ca * 7c36 * 8ea1fcb6,fcb6,8ea1fcb6v,fcb6v 6200 e68880 6200 00006200 c5ca c5ca c5ca c5ca c5ca c5ca c5ca
+5881 c5cb c5cb c5cb * 7c37 * 8ea1fcb7,fcb7,8ea1fcb7v,fcb7v 6523 e694a3 6523 00006523 c5cb c5cb c5cb c5cb c5cb c5cb c5cb
+5882 c5cc c5cc c5cc * 7c38 * 8ea1fcb8,fcb8,8ea1fcb8v,fcb8v 652b e694ab 652b 0000652b c5cc c5cc c5cc c5cc c5cc c5cc c5cc
+5883 c5cd c5cd c5cd * 7c39 * 8ea1fcb9,fcb9,8ea1fcb9v,fcb9v 652a e694aa 652a 0000652a c5cd c5cd c5cd c5cd c5cd c5cd c5cd
+5884 c5ce c5ce c5ce * 7c3a * 8ea1fcba,fcba,8ea1fcbav,fcbav 66ec e69bac 66ec 000066ec c5ce c5ce c5ce c5ce c5ce c5ce c5ce
+5885 c5cf c5cf c5cf * 7c3b * 8ea1fcbb,fcbb,8ea1fcbbv,fcbbv 6b10 e6ac90 6b10 00006b10 c5cf c5cf c5cf c5cf c5cf c5cf c5cf
+5886 c5d0 c5d0 c5d0 * 7c3c * 8ea1fcbc,fcbc,8ea1fcbcv,fcbcv 74da e7939a 74da 000074da c5d0 c5d0 c5d0 c5d0 c5d0 c5d0 c5d0
+5887 c5d1 c5d1 c5d1 * 7c3d * 8ea1fcbd,fcbd,8ea1fcbdv,fcbdv 7aca e7ab8a 7aca 00007aca c5d1 c5d1 c5d1 c5d1 c5d1 c5d1 c5d1
+5888 c5d2 c5d2 c5d2 * 7c3e * 8ea1fcbe,fcbe,8ea1fcbev,fcbev 7c64 e7b1a4 7c64 00007c64 c5d2 c5d2 c5d2 c5d2 c5d2 c5d2 c5d2
+5889 c5d3 c5d3 c5d3 * 7c3f * 8ea1fcbf,fcbf,8ea1fcbfv,fcbfv 7c63 e7b1a3 7c63 00007c63 c5d3 c5d3 c5d3 c5d3 c5d3 c5d3 c5d3
+5890 c5d4 c5d4 c5d4 * 7c40 * 8ea1fcc0,fcc0,8ea1fcc0v,fcc0v 7c65 e7b1a5 7c65 00007c65 c5d4 c5d4 c5d4 c5d4 c5d4 c5d4 c5d4
+5891 c5d5 c5d5 c5d5 * 7c41 * 8ea1fcc1,fcc1,8ea1fcc1v,fcc1v 7e93 e7ba93 7e93 00007e93 c5d5 c5d5 c5d5 c5d5 c5d5 c5d5 c5d5
+5892 c5d6 c5d6 c5d6 * 7c42 * 8ea1fcc2,fcc2,8ea1fcc2v,fcc2v 7e96 e7ba96 7e96 00007e96 c5d6 c5d6 c5d6 c5d6 c5d6 c5d6 c5d6
+5893 c5d7 c5d7 c5d7 * 7c43 * 8ea1fcc3,fcc3,8ea1fcc3v,fcc3v 7e94 e7ba94 7e94 00007e94 c5d7 c5d7 c5d7 c5d7 c5d7 c5d7 c5d7
+5894 c5d8 c5d8 c5d8 * 7c44 * 8ea1fcc4,fcc4,8ea1fcc4v,fcc4v 81e2 e887a2 81e2 000081e2 c5d8 c5d8 c5d8 c5d8 c5d8 c5d8 c5d8
+5895 c5d9 c5d9 c5d9 * 7c45 * 8ea1fcc5,fcc5,8ea1fcc5v,fcc5v 8638 e898b8 8638 00008638 c5d9 c5d9 c5d9 c5d9 c5d9 c5d9 c5d9
+5896 c5da c5da c5da * 7c46 * 8ea1fcc6,fcc6,8ea1fcc6v,fcc6v 863f e898bf 863f 0000863f c5da c5da c5da c5da c5da c5da c5da
+5897 c5db c5db c5db * 7c47 * 8ea1fcc7,fcc7,8ea1fcc7v,fcc7v 8831 e8a0b1 8831 00008831 c5db c5db c5db c5db c5db c5db c5db
+5898 c5dc c5dc c5dc * 7c48 * 8ea1fcc8,fcc8,8ea1fcc8v,fcc8v 8b8a e8ae8a 8b8a 00008b8a c5dc c5dc c5dc c5dc c5dc c5dc c5dc
+5899 c5dd c5dd c5dd * 7c49 * 8ea1fcc9,fcc9,8ea1fcc9v,fcc9v 9090 e98290 9090 00009090 c5dd c5dd c5dd c5dd c5dd c5dd c5dd
+5900 c5de c5de c5de * 7c4a * 8ea1fcca,fcca,8ea1fccav,fccav 908f e9828f 908f 0000908f c5de c5de c5de c5de c5de c5de c5de
+5901 c5df c5df c5df * 7c4b * 8ea1fccb,fccb,8ea1fccbv,fccbv 9463 e991a3 9463 00009463 c5df c5df c5df c5df c5df c5df c5df
+5902 c5e0 c5e0 c5e0 * 7c4c * 8ea1fccc,fccc,8ea1fcccv,fcccv 9460 e991a0 9460 00009460 c5e0 c5e0 c5e0 c5e0 c5e0 c5e0 c5e0
+5903 c5e1 c5e1 c5e1 * 7c4d * 8ea1fccd,fccd,8ea1fccdv,fccdv 9464 e991a4 9464 00009464 c5e1 c5e1 c5e1 c5e1 c5e1 c5e1 c5e1
+5904 c5e2 c5e2 c5e2 * 7c4e * 8ea1fcce,fcce,8ea1fccev,fccev 9768 e99da8 9768 00009768 c5e2 c5e2 c5e2 c5e2 c5e2 c5e2 c5e2
+5905 c5e3 c5e3 c5e3 * 7c4f * 8ea1fccf,fccf,8ea1fccfv,fccfv 986f e9a1af 986f 0000986f c5e3 c5e3 c5e3 c5e3 c5e3 c5e3 c5e3
+5906 c5e4 c5e4 c5e4 * 7c50 * 8ea1fcd0,fcd0,8ea1fcd0v,fcd0v 995c e9a59c 995c 0000995c c5e4 c5e4 c5e4 c5e4 c5e4 c5e4 c5e4
+5907 c5e5 c5e5 c5e5 * 7c51 * 8ea1fcd1,fcd1,8ea1fcd1v,fcd1v 9a5a e9a99a 9a5a 00009a5a c5e5 c5e5 c5e5 c5e5 c5e5 c5e5 c5e5
+5908 c5e6 c5e6 c5e6 * 7c52 * 8ea1fcd2,fcd2,8ea1fcd2v,fcd2v 9a5b e9a99b 9a5b 00009a5b c5e6 c5e6 c5e6 c5e6 c5e6 c5e6 c5e6
+5909 c5e7 c5e7 c5e7 * 7c53 * 8ea1fcd3,fcd3,8ea1fcd3v,fcd3v 9a57 e9a997 9a57 00009a57 c5e7 c5e7 c5e7 c5e7 c5e7 c5e7 c5e7
+5910 c5e8 c5e8 c5e8 * 7c54 * 8ea1fcd4,fcd4,8ea1fcd4v,fcd4v 9ad3 e9ab93 9ad3 00009ad3 c5e8 c5e8 c5e8 c5e8 c5e8 c5e8 c5e8
+5911 c5e9 c5e9 c5e9 * 7c55 * 8ea1fcd5,fcd5,8ea1fcd5v,fcd5v 9ad4 e9ab94 9ad4 00009ad4 c5e9 c5e9 c5e9 c5e9 c5e9 c5e9 c5e9
+5912 c5ea c5ea c5ea * 7c56 * 8ea1fcd6,fcd6,8ea1fcd6v,fcd6v 9ad1 e9ab91 9ad1 00009ad1 c5ea c5ea c5ea c5ea c5ea c5ea c5ea
+5913 c5eb c5eb c5eb * 7c57 * 8ea1fcd7,fcd7,8ea1fcd7v,fcd7v 9c54 e9b194 9c54 00009c54 c5eb c5eb c5eb c5eb c5eb c5eb c5eb
+5914 c5ec c5ec c5ec * 7c58 * 8ea1fcd8,fcd8,8ea1fcd8v,fcd8v 9c57 e9b197 9c57 00009c57 c5ec c5ec c5ec c5ec c5ec c5ec c5ec
+5915 c5ed c5ed c5ed * 7c59 * 8ea1fcd9,fcd9,8ea1fcd9v,fcd9v 9c56 e9b196 9c56 00009c56 c5ed c5ed c5ed c5ed c5ed c5ed c5ed
+5916 c5ee c5ee c5ee * 7c5a * 8ea1fcda,fcda,8ea1fcdav,fcdav 9de5 e9b7a5 9de5 00009de5 c5ee c5ee c5ee c5ee c5ee c5ee c5ee
+5917 c5ef c5ef c5ef * 7c5b * 8ea1fcdb,fcdb,8ea1fcdbv,fcdbv 9e9f e9ba9f 9e9f 00009e9f c5ef c5ef c5ef c5ef c5ef c5ef c5ef
+5918 c5f0 c5f0 c5f0 * 7c5c * 8ea1fcdc,fcdc,8ea1fcdcv,fcdcv 9ef4 e9bbb4 9ef4 00009ef4 c5f0 c5f0 c5f0 c5f0 c5f0 c5f0 c5f0
+5919 c5f1 c5f1 c5f1 * 7c5d * 8ea1fcdd,fcdd,8ea1fcddv,fcddv 56d1 e59b91 56d1 000056d1 c5f1 c5f1 c5f1 c5f1 c5f1 c5f1 c5f1
+5920 c5f2 c5f2 c5f2 * 7c5e * 8ea1fcde,fcde,8ea1fcdev,fcdev 58e9 e5a3a9 58e9 000058e9 c5f2 c5f2 c5f2 c5f2 c5f2 c5f2 c5f2
+5921 c5f3 c5f3 c5f3 * 7c5f * 8ea1fcdf,fcdf,8ea1fcdfv,fcdfv 652c e694ac 652c 0000652c c5f3 c5f3 c5f3 c5f3 c5f3 c5f3 c5f3
+5922 c5f4 c5f4 c5f4 * 7c60 * 8ea1fce0,fce0,8ea1fce0v,fce0v 705e e7819e 705e 0000705e c5f4 c5f4 c5f4 c5f4 c5f4 c5f4 c5f4
+5923 c5f5 c5f5 c5f5 * 7c61 * 8ea1fce1,fce1,8ea1fce1v,fce1v 7671 e799b1 7671 00007671 c5f5 c5f5 c5f5 c5f5 c5f5 c5f5 c5f5
+5924 c5f6 c5f6 c5f6 * 7c62 * 8ea1fce2,fce2,8ea1fce2v,fce2v 7672 e799b2 7672 00007672 c5f6 c5f6 c5f6 c5f6 c5f6 c5f6 c5f6
+5925 c5f7 c5f7 c5f7 * 7c63 * 8ea1fce3,fce3,8ea1fce3v,fce3v 77d7 e79f97,eead82 77d7,eb42 000077d7,0000eb42 9b78,c5f7 c5f7 c5f7 c5f7 c5f7 c5f7 9b78,c5f7
+5926 c5f8 c5f8 c5f8 * 7c64 * 8ea1fce4,fce4,8ea1fce4v,fce4v 7f50 e7bd90 7f50 00007f50 c5f8 c5f8 c5f8 c5f8 c5f8 c5f8 c5f8
+5927 c5f9 c5f9 c5f9 * 7c65 * 8ea1fce5,fce5,8ea1fce5v,fce5v 7f88 e7be88 7f88 00007f88 c5f9 c5f9 c5f9 c5f9 c5f9 c5f9 c5f9
+5928 c5fa c5fa c5fa * 7c66 * 8ea1fce6,fce6,8ea1fce6v,fce6v 8836 e8a0b6 8836 00008836 c5fa c5fa c5fa c5fa c5fa c5fa c5fa
+5929 c5fb c5fb c5fb * 7c67 * 8ea1fce7,fce7,8ea1fce7v,fce7v 8839 e8a0b9 8839 00008839 c5fb c5fb c5fb c5fb c5fb c5fb c5fb
+5930 c5fc c5fc c5fc * 7c68 * 8ea1fce8,fce8,8ea1fce8v,fce8v 8862 e8a1a2 8862 00008862 c5fc c5fc c5fc c5fc c5fc c5fc c5fc
+5931 c5fd c5fd c5fd * 7c69 * 8ea1fce9,fce9,8ea1fce9v,fce9v 8b93 e8ae93 8b93 00008b93 c5fd c5fd c5fd c5fd c5fd c5fd c5fd
+5932 c5fe c5fe c5fe * 7c6a * 8ea1fcea,fcea,8ea1fceav,fceav 8b92 e8ae92 8b92 00008b92 c5fe c5fe c5fe c5fe c5fe c5fe c5fe
+5933 c640 c640 c640 * 7c6b * 8ea1fceb,fceb,8ea1fcebv,fcebv 8b96 e8ae96 8b96 00008b96 c640 c640 c640 c640 c640 c640 c640
+5934 c641 c641 c641 * 7c6c * 8ea1fcec,fcec,8ea1fcecv,fcecv 8277 e889b7 8277 00008277 c641 c641 c641 c641 c641 c641 c641
+5935 c642 c642 c642 * 7c6d * 8ea1fced,fced,8ea1fcedv,fcedv 8d1b e8b49b 8d1b 00008d1b c642 c642 c642 c642 c642 c642 c642
+5936 c643 c643 c643 * 7c6e * 8ea1fcee,fcee,8ea1fceev,fceev 91c0 e98780 91c0 000091c0 c643 c643 c643 c643 c643 c643 c643
+5937 c644 c644 c644 * 7c6f * 8ea1fcef,fcef,8ea1fcefv,fcefv 946a e991aa 946a 0000946a c644 c644 c644 c644 c644 c644 c644
+5938 c645 c645 c645 * 7c70 * 8ea1fcf0,fcf0,8ea1fcf0v,fcf0v 9742 e99d82 9742 00009742 c645 c645 c645 c645 c645 c645 c645
+5939 c646 c646 c646 * 7c71 * 8ea1fcf1,fcf1,8ea1fcf1v,fcf1v 9748 e99d88 9748 00009748 c646 c646 c646 c646 c646 c646 c646
+5940 c647 c647 c647 * 7c72 * 8ea1fcf2,fcf2,8ea1fcf2v,fcf2v 9744 e99d84 9744 00009744 c647 c647 c647 c647 c647 c647 c647
+5941 c648 c648 c648 * 7c73 * 8ea1fcf3,fcf3,8ea1fcf3v,fcf3v 97c6 e99f86 97c6 000097c6 c648 c648 c648 c648 c648 c648 c648
+5942 c649 c649 c649 * 7c74 * 8ea1fcf4,fcf4,8ea1fcf4v,fcf4v 9870 e9a1b0 9870 00009870 c649 c649 c649 c649 c649 c649 c649
+5943 c64a c64a c64a * 7c75 * 8ea1fcf5,fcf5,8ea1fcf5v,fcf5v 9a5f e9a99f 9a5f 00009a5f c64a c64a c64a c64a c64a c64a c64a
+5944 c64b c64b c64b * 7c76 * 8ea1fcf6,fcf6,8ea1fcf6v,fcf6v 9b22 e9aca2 9b22 00009b22 c64b c64b c64b c64b c64b c64b c64b
+5945 c64c c64c c64c * 7c77 * 8ea1fcf7,fcf7,8ea1fcf7v,fcf7v 9b58 e9ad98 9b58 00009b58 c64c c64c c64c c64c c64c c64c c64c
+5946 c64d c64d c64d * 7c78 * 8ea1fcf8,fcf8,8ea1fcf8v,fcf8v 9c5f e9b19f 9c5f 00009c5f c64d c64d c64d c64d c64d c64d c64d
+5947 c64e c64e c64e * 7c79 * 8ea1fcf9,fcf9,8ea1fcf9v,fcf9v 9df9 e9b7b9 9df9 00009df9 c64e c64e c64e c64e c64e c64e c64e
+5948 c64f c64f c64f * 7c7a * 8ea1fcfa,fcfa,8ea1fcfav,fcfav 9dfa e9b7ba 9dfa 00009dfa c64f c64f c64f c64f c64f c64f c64f
+5949 c650 c650 c650 * 7c7b * 8ea1fcfb,fcfb,8ea1fcfbv,fcfbv 9e7c e9b9bc 9e7c 00009e7c c650 c650 c650 c650 c650 c650 c650
+5950 c651 c651 c651 * 7c7c * 8ea1fcfc,fcfc,8ea1fcfcv,fcfcv 9e7d e9b9bd 9e7d 00009e7d c651 c651 c651 c651 c651 c651 c651
+5951 c652 c652 c652 * 7c7d * 8ea1fcfd,fcfd,8ea1fcfdv,fcfdv 9f07 e9bc87 9f07 00009f07 c652 c652 c652 c652 c652 c652 c652
+5952 c653 c653 c653 * 7c7e * 8ea1fcfe,fcfe,8ea1fcfev,fcfev 9f77 e9bdb7 9f77 00009f77 c653 c653 c653 c653 c653 c653 c653
+5953 c654 c654 c654 * 7d21 * 8ea1fda1,fda1,8ea1fda1v,fda1v 9f72 e9bdb2 9f72 00009f72 c654 c654 c654 c654 c654 c654 c654
+5954 c655 c655 c655 * 7d22 * 8ea1fda2,fda2,8ea1fda2v,fda2v 5ef3 e5bbb3 5ef3 00005ef3 c655 c655 c655 c655 c655 c655 c655
+5955 c656 c656 c656 * 7d23 * 8ea1fda3,fda3,8ea1fda3v,fda3v 6b16 e6ac96 6b16 00006b16 c656 c656 c656 c656 c656 c656 c656
+5956 c657 c657 c657 * 7d24 * 8ea1fda4,fda4,8ea1fda4v,fda4v 7063 e781a3 7063 00007063 c657 c657 c657 c657 c657 c657 c657
+5957 c658 c658 c658 * 7d25 * 8ea1fda5,fda5,8ea1fda5v,fda5v 7c6c e7b1ac 7c6c 00007c6c c658 c658 c658 c658 c658 c658 c658
+5958 c659 c659 c659 * 7d26 * 8ea1fda6,fda6,8ea1fda6v,fda6v 7c6e e7b1ae 7c6e 00007c6e c659 c659 c659 c659 c659 c659 c659
+5959 c65a c65a c65a * 7d27 * 8ea1fda7,fda7,8ea1fda7v,fda7v 883b e8a0bb 883b 0000883b c65a c65a c65a c65a c65a c65a c65a
+5960 c65b c65b c65b * 7d28 * 8ea1fda8,fda8,8ea1fda8v,fda8v 89c0 e8a780 89c0 000089c0 c65b c65b c65b c65b c65b c65b c65b
+5961 c65c c65c c65c * 7d29 * 8ea1fda9,fda9,8ea1fda9v,fda9v 8ea1 e8baa1 8ea1 00008ea1 c65c c65c c65c c65c c65c c65c c65c
+5962 c65d c65d c65d * 7d2a * 8ea1fdaa,fdaa,8ea1fdaav,fdaav 91c1 e98781 91c1 000091c1 c65d c65d c65d c65d c65d c65d c65d
+5963 c65e c65e c65e * 7d2b * 8ea1fdab,fdab,8ea1fdabv,fdabv 9472 e991b2 9472 00009472 c65e c65e c65e c65e c65e c65e c65e
+5964 c65f c65f c65f * 7d2c * 8ea1fdac,fdac,8ea1fdacv,fdacv 9470 e991b0 9470 00009470 c65f c65f c65f c65f c65f c65f c65f
+5965 c660 c660 c660 * 7d2d * 8ea1fdad,fdad,8ea1fdadv,fdadv 9871 e9a1b1 9871 00009871 c660 c660 c660 c660 c660 c660 c660
+5966 c661 c661 c661 * 7d2e * 8ea1fdae,fdae,8ea1fdaev,fdaev 995e e9a59e 995e 0000995e c661 c661 c661 c661 c661 c661 c661
+5967 c662 c662 c662 * 7d2f * 8ea1fdaf,fdaf,8ea1fdafv,fdafv 9ad6 e9ab96 9ad6 00009ad6 c662 c662 c662 c662 c662 c662 c662
+5968 c663 c663 c663 * 7d30 * 8ea1fdb0,fdb0,8ea1fdb0v,fdb0v 9b23 e9aca3 9b23 00009b23 c663 c663 c663 c663 c663 c663 c663
+5969 c664 c664 c664 * 7d31 * 8ea1fdb1,fdb1,8ea1fdb1v,fdb1v 9ecc e9bb8c 9ecc 00009ecc c664 c664 c664 c664 c664 c664 c664
+5970 c665 c665 c665 * 7d32 * 8ea1fdb2,fdb2,8ea1fdb2v,fdb2v 7064 e781a4 7064 00007064 c665 c665 c665 c665 c665 c665 c665
+5971 c666 c666 c666 * 7d33 * 8ea1fdb3,fdb3,8ea1fdb3v,fdb3v 77da e79f9a 77da 000077da c666 c666 c666 c666 c666 c666 c666
+5972 c667 c667 c667 * 7d34 * 8ea1fdb4,fdb4,8ea1fdb4v,fdb4v 8b9a e8ae9a 8b9a 00008b9a c667 c667 c667 c667 c667 c667 c667
+5973 c668 c668 c668 * 7d35 * 8ea1fdb5,fdb5,8ea1fdb5v,fdb5v 9477 e991b7 9477 00009477 c668 c668 c668 c668 c668 c668 c668
+5974 c669 c669 c669 * 7d36 * 8ea1fdb6,fdb6,8ea1fdb6v,fdb6v 97c9 e99f89 97c9 000097c9 c669 c669 c669 c669 c669 c669 c669
+5975 c66a c66a c66a * 7d37 * 8ea1fdb7,fdb7,8ea1fdb7v,fdb7v 9a62 e9a9a2 9a62 00009a62 c66a c66a c66a c66a c66a c66a c66a
+5976 c66b c66b c66b * 7d38 * 8ea1fdb8,fdb8,8ea1fdb8v,fdb8v 9a65 e9a9a5 9a65 00009a65 c66b c66b c66b c66b c66b c66b c66b
+5977 c66c c66c c66c * 7d39 * 8ea1fdb9,fdb9,8ea1fdb9v,fdb9v 7e9c e7ba9c 7e9c 00007e9c c66c c66c c66c c66c c66c c66c c66c
+5978 c66d c66d c66d * 7d3a * 8ea1fdba,fdba,8ea1fdbav,fdbav 8b9c e8ae9c 8b9c 00008b9c c66d c66d c66d c66d c66d c66d c66d
+5979 c66e c66e c66e * 7d3b * 8ea1fdbb,fdbb,8ea1fdbbv,fdbbv 8eaa e8baaa 8eaa 00008eaa c66e c66e c66e c66e c66e c66e c66e
+5980 c66f c66f c66f * 7d3c * 8ea1fdbc,fdbc,8ea1fdbcv,fdbcv 91c5 e98785 91c5 000091c5 c66f c66f c66f c66f c66f c66f c66f
+5981 c670 c670 c670 * 7d3d * 8ea1fdbd,fdbd,8ea1fdbdv,fdbdv 947d e991bd 947d 0000947d c670 c670 c670 c670 c670 c670 c670
+5982 c671 c671 c671 * 7d3e * 8ea1fdbe,fdbe,8ea1fdbev,fdbev 947e e991be 947e 0000947e c671 c671 c671 c671 c671 c671 c671
+5983 c672 c672 c672 * 7d3f * 8ea1fdbf,fdbf,8ea1fdbfv,fdbfv 947c e991bc 947c 0000947c c672 c672 c672 c672 c672 c672 c672
+5984 c673 c673 c673 * 7d40 * 8ea1fdc0,fdc0,8ea1fdc0v,fdc0v 9c77 e9b1b7 9c77 00009c77 c673 c673 c673 c673 c673 c673 c673
+5985 c674 c674 c674 * 7d41 * 8ea1fdc1,fdc1,8ea1fdc1v,fdc1v 9c78 e9b1b8 9c78 00009c78 c674 c674 c674 c674 c674 c674 c674
+5986 c675 c675 c675 * 7d42 * 8ea1fdc2,fdc2,8ea1fdc2v,fdc2v 9ef7 e9bbb7 9ef7 00009ef7 c675 c675 c675 c675 c675 c675 c675
+5987 c676 c676 c676 * 7d43 * 8ea1fdc3,fdc3,8ea1fdc3v,fdc3v 8c54 e8b194 8c54 00008c54 c676 c676 c676 c676 c676 c676 c676
+5988 c677 c677 c677 * 7d44 * 8ea1fdc4,fdc4,8ea1fdc4v,fdc4v 947f e991bf 947f 0000947f c677 c677 c677 c677 c677 c677 c677
+5989 c678 c678 c678 * 7d45 * 8ea1fdc5,fdc5,8ea1fdc5v,fdc5v 9e1a e9b89a 9e1a 00009e1a c678 c678 c678 c678 c678 c678 c678
+5990 c679 c679 c679 * 7d46 * 8ea1fdc6,fdc6,8ea1fdc6v,fdc6v 7228 e788a8 7228 00007228 c679 c679 c679 c679 c679 c679 c679
+5991 c67a c67a c67a * 7d47 * 8ea1fdc7,fdc7,8ea1fdc7v,fdc7v 9a6a e9a9aa 9a6a 00009a6a c67a c67a c67a c67a c67a c67a c67a
+5992 c67b c67b c67b * 7d48 * 8ea1fdc8,fdc8,8ea1fdc8v,fdc8v 9b31 e9acb1 9b31 00009b31 c67b c67b c67b c67b c67b c67b c67b
+5993 c67c c67c c67c * 7d49 * 8ea1fdc9,fdc9,8ea1fdc9v,fdc9v 9e1b e9b89b 9e1b 00009e1b c67c c67c c67c c67c c67c c67c c67c
+5994 c67d c67d c67d * 7d4a * 8ea1fdca,fdca,8ea1fdcav,fdcav 9e1e e9b89e 9e1e 00009e1e c67d c67d c67d c67d c67d c67d c67d
+5995 c67e c67e c67e * 7d4b * 8ea1fdcb,fdcb,8ea1fdcbv,fdcbv 7c72 e7b1b2 7c72 00007c72 c67e c67e c67e c67e c67e c67e c67e
+5996 c940 c940 c940 * * 2121 8ea2a1a1,8ea2a1a1v 4e42 e4b982 4e42 00004e42 c940 c940 c940 c940 c940 c940 c940
+5997 c941 c941 c941 * * 2122 8ea2a1a2,8ea2a1a2v 4e5c e4b99c 4e5c 00004e5c c941 c941 c941 c941 c941 c941 c941
+5998 c942 c942 c942 * 2731 2123 8ea1a7b1,8ea2a1a3,a7b1,8ea1a7b1v,8ea2a1a3v,a7b1v 51f5 e2bc90,e587b5 2f10,51f5 00002f10,000051f5 c942 c942 c942 c942 c942 c942 c942
+5999 c943 c943 c943 * 2736 2124 8ea1a7b6,8ea2a1a4,a7b6,8ea1a7b6v,8ea2a1a4v,a7b6v 531a e2bc95,e58c9a 2f15,531a 00002f15,0000531a c943 c943 c943 c943 c943 c943 c943
+6000 c944 c944 c944 * 273b 2125 8ea1a7bb,8ea2a1a5,a7bb,8ea1a7bbv,8ea2a1a5v,a7bbv 5382 e2bc9a,e58e82 2f1a,5382 00002f1a,00005382 c944 c944 c944 c944 c944 c944 c944
+6001 c945 c945 c945 * * 2126 8ea2a1a6,8ea2a1a6v 4e07 e4b887 4e07 00004e07 c945 c945 c945 c945 c945 c945 c945
+6002 c946 c946 c946 * * 2127 8ea2a1a7,8ea2a1a7v 4e0c e4b88c 4e0c 00004e0c c946 c946 c946 c946 c946 c946 c946
+6003 c947 c947 c947 * * 2128 8ea2a1a8,8ea2a1a8v 4e47 e4b987 4e47 00004e47 c947 c947 c947 c947 c947 c947 c947
+6004 c948 c948 c948 * * 2129 8ea2a1a9,8ea2a1a9v 4e8d e4ba8d 4e8d 00004e8d c948 c948 c948 c948 c948 c948 c948
+6005 c949 c949 c949 * 273f 212a 8ea1a7bf,8ea2a1aa,a7bf,8ea1a7bfv,8ea2a1aav,a7bfv 56d7 e2bc9e,e59b97 2f1e,56d7 00002f1e,000056d7 c949 c949 c949 c949 c949 c949 c949
+6006 c94b c94b c94b * 274c 212b 8ea1a7cc,8ea2a1ab,a7cc,8ea1a7ccv,8ea2a1abv,a7ccv 5c6e e2bcac,e5b1ae 2f2c,5c6e 00002f2c,00005c6e c94b c94b c94b c94b c94b c94b c94b
+6007 c94c c94c c94c * 275b 212c 8ea1a7db,8ea2a1ac,a7db,8ea1a7dbv,8ea2a1acv,a7dbv 5f73 e2bcbb,e5bdb3 2f3b,5f73 00002f3b,00005f73 c94c c94c c94c c94c c94c c94c c94c
+6008 c94d c94d c94d * * 212d 8ea2a1ad,8ea2a1adv 4e0f e4b88f 4e0f 00004e0f c94d c94d c94d c94d c94d c94d c94d
+6009 c94e c94e c94e * * 212e 8ea2a1ae,8ea2a1aev 5187 e58687 5187 00005187 c94e c94e c94e c94e c94e c94e c94e
+6010 c94f c94f c94f * * 212f 8ea2a1af,8ea2a1afv 4e0e e4b88e 4e0e 00004e0e c94f c94f c94f c94f c94f c94f c94f
+6011 c950 c950 c950 * * 2130 8ea2a1b0,8ea2a1b0v 4e2e e4b8ae 4e2e 00004e2e c950 c950 c950 c950 c950 c950 c950
+6012 c951 c951 c951 * * 2131 8ea2a1b1,8ea2a1b1v 4e93 e4ba93 4e93 00004e93 c951 c951 c951 c951 c951 c951 c951
+6013 c952 c952 c952 * * 2132 8ea2a1b2,8ea2a1b2v 4ec2 e4bb82 4ec2 00004ec2 c952 c952 c952 c952 c952 c952 c952
+6014 c953 c953 c953 * * 2133 8ea2a1b3,8ea2a1b3v 4ec9 e4bb89 4ec9 00004ec9 c953 c953 c953 c953 c953 c953 c953
+6015 c954 c954 c954 * * 2134 8ea2a1b4,8ea2a1b4v 4ec8 e4bb88 4ec8 00004ec8 c954 c954 c954 c954 c954 c954 c954
+6016 c955 c955 c955 * * 2135 8ea2a1b5,8ea2a1b5v 5198 e58698 5198 00005198 c955 c955 c955 c955 c955 c955 c955
+6017 c956 c956 c956 * * 2136 8ea2a1b6,8ea2a1b6v 52fc e58bbc 52fc 000052fc c956 c956 c956 c956 c956 c956 c956
+6018 c957 c957 c957 * * 2137 8ea2a1b7,8ea2a1b7v 536c e58dac 536c 0000536c c957 c957 c957 c957 c957 c957 c957
+6019 c958 c958 c958 * * 2138 8ea2a1b8,8ea2a1b8v 53b9 e58eb9 53b9 000053b9 c958 c958 c958 c958 c958 c958 c958
+6020 c959 c959 c959 * * 2139 8ea2a1b9,8ea2a1b9v 5720 e59ca0 5720 00005720 c959 c959 c959 c959 c959 c959 c959
+6021 c95a c95a c95a * * 213a 8ea2a1ba,8ea2a1bav 5903 e5a483 5903 00005903 c95a c95a c95a c95a c95a c95a c95a
+6022 c95b c95b c95b * * 213b 8ea2a1bb,8ea2a1bbv 592c e5a4ac 592c 0000592c c95b c95b c95b c95b c95b c95b c95b
+6023 c95c c95c c95c * * 213c 8ea2a1bc,8ea2a1bcv 5c10 e5b090,eeb081 5c10,ec01 00005c10,0000ec01 9cbc,c95c c95c c95c c95c c95c c95c 9cbc,c95c
+6024 c95d c95d c95d * * 213d 8ea2a1bd,8ea2a1bdv 5dff e5b7bf 5dff 00005dff c95d c95d c95d c95d c95d c95d c95d
+6025 c95e c95e c95e * * 213e 8ea2a1be,8ea2a1bev 65e1 e697a1 65e1 000065e1 c95e c95e c95e c95e c95e c95e c95e
+6026 c95f c95f c95f * 276e 213f 8ea1a7ee,8ea2a1bf,a7ee,8ea1a7eev,8ea2a1bfv,a7eev 6bb3 e2bd8e,e6aeb3 2f4e,6bb3 00002f4e,00006bb3 c95f c95f c95f c95f c95f c95f c95f
+6027 c960 c960 c960 * * 2140 8ea2a1c0,8ea2a1c0v 6bcc e6af8c 6bcc 00006bcc c960 c960 c960 c960 c960 c960 c960
+6028 c961 c961 c961 * 2773 2141 8ea1a7f3,8ea2a1c1,a7f3,8ea1a7f3v,8ea2a1c1v,a7f3v 6c14 e2bd93,e6b094 2f53,6c14 00002f53,00006c14 c961 c961 c961 c961 c961 c961 c961
+6029 c962 c962 c962 * 2779 2142 8ea1a7f9,8ea2a1c2,a7f9,8ea1a7f9v,8ea2a1c2v,a7f9v 723f e2bd99,e788bf 2f59,723f 00002f59,0000723f c962 c962 c962 c962 c962 c962 c962
+6030 c963 c963 c963 * * 2143 8ea2a1c3,8ea2a1c3v 4e31 e4b8b1 4e31 00004e31 c963 c963 c963 c963 c963 c963 c963
+6031 c964 c964 c964 * * 2144 8ea2a1c4,8ea2a1c4v 4e3c e4b8bc 4e3c 00004e3c c964 c964 c964 c964 c964 c964 c964
+6032 c965 c965 c965 * * 2145 8ea2a1c5,8ea2a1c5v 4ee8 e4bba8 4ee8 00004ee8 c965 c965 c965 c965 c965 c965 c965
+6033 c966 c966 c966 * * 2146 8ea2a1c6,8ea2a1c6v 4edc e4bb9c 4edc 00004edc c966 c966 c966 c966 c966 c966 c966
+6034 c967 c967 c967 * * 2147 8ea2a1c7,8ea2a1c7v 4ee9 e4bba9 4ee9 00004ee9 c967 c967 c967 c967 c967 c967 c967
+6035 c968 c968 c968 * * 2148 8ea2a1c8,8ea2a1c8v 4ee1 e4bba1 4ee1 00004ee1 c968 c968 c968 c968 c968 c968 c968
+6036 c969 c969 c6df,c969 * * 2149 8ea2a1c9,8ea2a1c9v 4edd e4bb9d 4edd 00004edd c6df,c969 c969 c969 c969 c969 c969 c969
+6037 c96a c96a c96a * * 214a 8ea2a1ca,8ea2a1cav 4eda e4bb9a 4eda 00004eda c96a c96a c96a c96a c96a c96a c96a
+6038 c96b c96b c96b * * 214b 8ea2a1cb,8ea2a1cbv 520c e5888c 520c 0000520c c96b c96b c96b c96b c96b c96b c96b
+6039 c9be c9be c9be * * 214c 8ea2a1cc,8ea2a1ccv 5209 e58889 5209 00005209 c9be c9be c9be c9be c9be c9be c9be
+6040 c96c c96c c96c * * 214d 8ea2a1cd,8ea2a1cdv 531c e58c9c 531c 0000531c c96c c96c c96c c96c c96c c96c c96c
+6041 c96d c96d c96d * * 214e 8ea2a1ce,8ea2a1cev 534c e58d8c 534c 0000534c c96d c96d c96d c96d c96d c96d c96d
+6042 c96e c96e c96e * * 214f 8ea2a1cf,8ea2a1cfv 5722 e59ca2 5722 00005722 c96e c96e c96e c96e c96e c96e c96e
+6043 c96f c96f c96f * * 2150 8ea2a1d0,8ea2a1d0v 5723 e59ca3 5723 00005723 c96f c96f c96f c96f c96f c96f c96f
+6044 c970 c970 c970 * * 2151 8ea2a1d1,8ea2a1d1v 5917 e5a497 5917 00005917 c970 c970 c970 c970 c970 c970 c970
+6045 c971 c971 c971 * * 2152 8ea2a1d2,8ea2a1d2v 592f e5a4af 592f 0000592f c971 c971 c971 c971 c971 c971 c971
+6046 c972 c972 c972 * * 2153 8ea2a1d3,8ea2a1d3v 5b81 e5ae81 5b81 00005b81 c972 c972 c972 c972 c972 c972 c972
+6047 c973 c973 c973 * * 2154 8ea2a1d4,8ea2a1d4v 5b84 e5ae84 5b84 00005b84 c973 c973 c973 c973 c973 c973 c973
+6048 c974 c974 c974 * * 2155 8ea2a1d5,8ea2a1d5v 5c12 e5b092 5c12 00005c12 c974 c974 c974 c974 c974 c974 c974
+6049 c975 c975 c975 * * 2156 8ea2a1d6,8ea2a1d6v 5c3b e5b0bb 5c3b 00005c3b c975 c975 c975 c975 c975 c975 c975
+6050 c976 c976 c976 * * 2157 8ea2a1d7,8ea2a1d7v 5c74 e5b1b4 5c74 00005c74 c976 c976 c976 c976 c976 c976 c976
+6051 c977 c977 c977 * * 2158 8ea2a1d8,8ea2a1d8v 5c73 e5b1b3 5c73 00005c73 c977 c977 c977 c977 c977 c977 c977
+6052 c978 c978 c978 * * 2159 8ea2a1d9,8ea2a1d9v 5e04 e5b884 5e04 00005e04 c978 c978 c978 c978 c978 c978 c978
+6053 c979 c979 c979 * * 215a 8ea2a1da,8ea2a1dav 5e80 e5ba80 5e80 00005e80 c979 c979 c979 c979 c979 c979 c979
+6054 c97a c97a c97a * * 215b 8ea2a1db,8ea2a1dbv 5e82 e5ba82 5e82 00005e82 c97a c97a c97a c97a c97a c97a c97a
+6055 c97b c97b c97b * * 215c 8ea2a1dc,8ea2a1dcv 5fc9 e5bf89 5fc9 00005fc9 c97b c97b c97b c97b c97b c97b c97b
+6056 c97c c97c c97c * * 215d 8ea2a1dd,8ea2a1ddv 6209 e68889 6209 00006209 c97c c97c c97c c97c c97c c97c c97c
+6057 c97d c97d c97d * * 215e 8ea2a1de,8ea2a1dev 6250 e68990 6250 00006250 c97d c97d c97d c97d c97d c97d c97d
+6058 c97e c97e c97e * * 215f 8ea2a1df,8ea2a1dfv 6c15 e6b095 6c15 00006c15 c97e c97e c97e c97e c97e c97e c97e
+6059 c9a1 c9a1 c9a1 * * 2160 8ea2a1e0,8ea2a1e0v 6c36 e6b0b6 6c36 00006c36 c9a1 c9a1 c9a1 c9a1 c9a1 c9a1 c9a1
+6060 c9a2 c9a2 c9a2 * * 2161 8ea2a1e1,8ea2a1e1v 6c43 e6b183 6c43 00006c43 c9a2 c9a2 c9a2 c9a2 c9a2 c9a2 c9a2
+6061 c9a3 c9a3 c9a3 * * 2162 8ea2a1e2,8ea2a1e2v 6c3f e6b0bf 6c3f 00006c3f c9a3 c9a3 c9a3 c9a3 c9a3 c9a3 c9a3
+6062 c9a4 c9a4 c9a4 * * 2163 8ea2a1e3,8ea2a1e3v 6c3b e6b0bb 6c3b 00006c3b c9a4 c9a4 c9a4 c9a4 c9a4 c9a4 c9a4
+6063 c9a5 c9a5 c9a5 * * 2164 8ea2a1e4,8ea2a1e4v 72ae e78aae 72ae 000072ae c9a5 c9a5 c9a5 c9a5 c9a5 c9a5 c9a5
+6064 c9a6 c9a6 c9a6 * * 2165 8ea2a1e5,8ea2a1e5v 72b0 e78ab0 72b0 000072b0 c9a6 c9a6 c9a6 c9a6 c9a6 c9a6 c9a6
+6065 c9a7 c9a7 c9a7 * * 2166 8ea2a1e6,8ea2a1e6v 738a e78e8a 738a 0000738a c9a7 c9a7 c9a7 c9a7 c9a7 c9a7 c9a7
+6066 c9a8 c9a8 c9a8 * 2833 2167 8ea1a8b3,8ea2a1e7,a8b3,8ea1a8b3v,8ea2a1e7v,a8b3v 79b8 e2bdb1,e7a6b8 2f71,79b8 00002f71,000079b8 c9a8 c9a8 c9a8 c9a8 c9a8 c9a8 c9a8
+6067 c9a9 c9a9 c9a9 * * 2168 8ea2a1e8,8ea2a1e8v 808a e8828a 808a 0000808a c9a9 c9a9 c9a9 c9a9 c9a9 c9a9 c9a9
+6068 c9aa c9aa c9aa * * 2169 8ea2a1e9,8ea2a1e9v 961e e9989e 961e 0000961e c9aa c9aa c9aa c9aa c9aa c9aa c9aa
+6069 c9ab c9ab c9ab * * 216a 8ea2a1ea,8ea2a1eav 4f0e e4bc8e 4f0e 00004f0e c9ab c9ab c9ab c9ab c9ab c9ab c9ab
+6070 c9ac c9ac c9ac * * 216b 8ea2a1eb,8ea2a1ebv 4f18 e4bc98 4f18 00004f18 c9ac c9ac c9ac c9ac c9ac c9ac c9ac
+6071 c9ad c9ad c9ad * * 216c 8ea2a1ec,8ea2a1ecv 4f2c e4bcac 4f2c 00004f2c c9ad c9ad c9ad c9ad c9ad c9ad c9ad
+6072 c9ae c9ae c9ae * * 216d 8ea2a1ed,8ea2a1edv 4ef5 e4bbb5 4ef5 00004ef5 c9ae c9ae c9ae c9ae c9ae c9ae c9ae
+6073 c9af c9af c9af * * 216e 8ea2a1ee,8ea2a1eev 4f14 e4bc94 4f14 00004f14 c9af c9af c9af c9af c9af c9af c9af
+6074 c9b0 c9b0 c9b0 * * 216f 8ea2a1ef,8ea2a1efv 4ef1 e4bbb1 4ef1 00004ef1 c9b0 c9b0 c9b0 c9b0 c9b0 c9b0 c9b0
+6075 c9b1 c9b1 c9b1 * * 2170 8ea2a1f0,8ea2a1f0v 4f00 e4bc80 4f00 00004f00 c9b1 c9b1 c9b1 c9b1 c9b1 c9b1 c9b1
+6076 c9b2 c9b2 c9b2 * * 2171 8ea2a1f1,8ea2a1f1v 4ef7 e4bbb7 4ef7 00004ef7 c9b2 c9b2 c9b2 c9b2 c9b2 c9b2 c9b2
+6077 c9b3 c9b3 c9b3 * * 2172 8ea2a1f2,8ea2a1f2v 4f08 e4bc88 4f08 00004f08 c9b3 c9b3 c9b3 c9b3 c9b3 c9b3 c9b3
+6078 c9b4 c9b4 c9b4 * * 2173 8ea2a1f3,8ea2a1f3v 4f1d e4bc9d 4f1d 00004f1d c9b4 c9b4 c9b4 c9b4 c9b4 c9b4 c9b4
+6079 c9b5 c9b5 c9b5 * * 2174 8ea2a1f4,8ea2a1f4v 4f02 e4bc82 4f02 00004f02 c9b5 c9b5 c9b5 c9b5 c9b5 c9b5 c9b5
+6080 c9b6 c9b6 c9b6 * * 2175 8ea2a1f5,8ea2a1f5v 4f05 e4bc85 4f05 00004f05 c9b6 c9b6 c9b6 c9b6 c9b6 c9b6 c9b6
+6081 c9b7 c9b7 c9b7 * * 2176 8ea2a1f6,8ea2a1f6v 4f22 e4bca2 4f22 00004f22 c9b7 c9b7 c9b7 c9b7 c9b7 c9b7 c9b7
+6082 c9b8 c9b8 c9b8 * * 2177 8ea2a1f7,8ea2a1f7v 4f13 e4bc93 4f13 00004f13 c9b8 c9b8 c9b8 c9b8 c9b8 c9b8 c9b8
+6083 c9b9 c9b9 c9b9 * * 2178 8ea2a1f8,8ea2a1f8v 4f04 e4bc84 4f04 00004f04 c9b9 c9b9 c9b9 c9b9 c9b9 c9b9 c9b9
+6084 c9ba c9ba c9ba * * 2179 8ea2a1f9,8ea2a1f9v 4ef4 e4bbb4 4ef4 00004ef4 c9ba c9ba c9ba c9ba c9ba c9ba c9ba
+6085 c9bb c9bb c9bb * * 217a 8ea2a1fa,8ea2a1fav 4f12 e4bc92 4f12 00004f12 c9bb c9bb c9bb c9bb c9bb c9bb c9bb
+6086 c9bc c9bc c9bc * * 217b 8ea2a1fb,8ea2a1fbv 51b1 e586b1 51b1 000051b1 c9bc c9bc c9bc c9bc c9bc c9bc c9bc
+6087 c9bd c9bd c9bd * * 217c 8ea2a1fc,8ea2a1fcv 5213 e58893 5213 00005213 c9bd c9bd c9bd c9bd c9bd c9bd c9bd
+6088 c9bf c9bf c9bf * * 217d 8ea2a1fd,8ea2a1fdv 5210 e58890 5210 00005210 c9bf c9bf c9bf c9bf c9bf c9bf c9bf
+6089 c9c0 c9c0 c9c0 * * 217e 8ea2a1fe,8ea2a1fev 52a6 e58aa6 52a6 000052a6 c9c0 c9c0 c9c0 c9c0 c9c0 c9c0 c9c0
+6090 c9c1 c9c1 c9c1 * * 2221 8ea2a2a1,8ea2a2a1v 5322 e58ca2 5322 00005322 c9c1 c9c1 c9c1 c9c1 c9c1 c9c1 c9c1
+6091 c9c2 c9c2 c9c2 * * 2222 8ea2a2a2,8ea2a2a2v 531f e58c9f 531f 0000531f c9c2 c9c2 c9c2 c9c2 c9c2 c9c2 c9c2
+6092 c9c3 c9c3 c9c3 * * 2223 8ea2a2a3,8ea2a2a3v 534d e58d8d 534d 0000534d c9c3 c9c3 c9c3 c9c3 c9c3 c9c3 c9c3
+6093 c9c4 c9c4 c9c4 * * 2224 8ea2a2a4,8ea2a2a4v 538a e58e8a 538a 0000538a c9c4 c9c4 c9c4 c9c4 c9c4 c9c4 c9c4
+6094 c9c5 c9c5 c9c5 * * 2225 8ea2a2a5,8ea2a2a5v 5407 e59087 5407 00005407 c9c5 c9c5 c9c5 c9c5 c9c5 c9c5 c9c5
+6095 c9c6 c9c6 c9c6 * * 2226 8ea2a2a6,8ea2a2a6v 56e1 e59ba1 56e1 000056e1 c9c6 c9c6 c9c6 c9c6 c9c6 c9c6 c9c6
+6096 c9c7 c9c7 c9c7 * * 2227 8ea2a2a7,8ea2a2a7v 56df e59b9f 56df 000056df c9c7 c9c7 c9c7 c9c7 c9c7 c9c7 c9c7
+6097 c9c8 c9c8 c9c8 * * 2228 8ea2a2a8,8ea2a2a8v 572e e59cae 572e 0000572e c9c8 c9c8 c9c8 c9c8 c9c8 c9c8 c9c8
+6098 c9c9 c9c9 c9c9 * * 2229 8ea2a2a9,8ea2a2a9v 572a e59caa 572a 0000572a c9c9 c9c9 c9c9 c9c9 c9c9 c9c9 c9c9
+6099 c9ca c9ca c9ca * * 222a 8ea2a2aa,8ea2a2aav 5734 e59cb4 5734 00005734 c9ca c9ca c9ca c9ca c9ca c9ca c9ca
+6100 c9cb c9cb c9cb * * 222b 8ea2a2ab,8ea2a2abv 593c e5a4bc 593c 0000593c c9cb c9cb c9cb c9cb c9cb c9cb c9cb
+6101 c9cc c9cc c9cc * * 222c 8ea2a2ac,8ea2a2acv 5980 e5a680 5980 00005980 c9cc c9cc c9cc c9cc c9cc c9cc c9cc
+6102 c9cd c9cd c9cd * * 222d 8ea2a2ad,8ea2a2adv 597c e5a5bc 597c 0000597c c9cd c9cd c9cd c9cd c9cd c9cd c9cd
+6103 c9ce c9ce c9ce * * 222e 8ea2a2ae,8ea2a2aev 5985 e5a685 5985 00005985 c9ce c9ce c9ce c9ce c9ce c9ce c9ce
+6104 c9cf c9cf c9cf * * 222f 8ea2a2af,8ea2a2afv 597b e5a5bb 597b 0000597b c9cf c9cf c9cf c9cf c9cf c9cf c9cf
+6105 c9d0 c9d0 c9d0 * * 2230 8ea2a2b0,8ea2a2b0v 597e e5a5be 597e 0000597e c9d0 c9d0 c9d0 c9d0 c9d0 c9d0 c9d0
+6106 c9d1 c9d1 c9d1 * * 2231 8ea2a2b1,8ea2a2b1v 5977 e5a5b7 5977 00005977 c9d1 c9d1 c9d1 c9d1 c9d1 c9d1 c9d1
+6107 c9d2 c9d2 c9d2 * * 2232 8ea2a2b2,8ea2a2b2v 597f e5a5bf 597f 0000597f c9d2 c9d2 c9d2 c9d2 c9d2 c9d2 c9d2
+6108 c9d3 c9d3 c9d3 * * 2233 8ea2a2b3,8ea2a2b3v 5b56 e5ad96 5b56 00005b56 c9d3 c9d3 c9d3 c9d3 c9d3 c9d3 c9d3
+6109 c9d4 c9d4 c9d4 * * 2234 8ea2a2b4,8ea2a2b4v 5c15 e5b095 5c15 00005c15 c9d4 c9d4 c9d4 c9d4 c9d4 c9d4 c9d4
+6110 c9d5 c9d5 c9d5 * * 2235 8ea2a2b5,8ea2a2b5v 5c25 e5b0a5 5c25 00005c25 c9d5 c9d5 c9d5 c9d5 c9d5 c9d5 c9d5
+6111 c9d6 c9d6 c9d6 * * 2236 8ea2a2b6,8ea2a2b6v 5c7c e5b1bc 5c7c 00005c7c c9d6 c9d6 c9d6 c9d6 c9d6 c9d6 c9d6
+6112 c9d7 c9d7 c9d7 * * 2237 8ea2a2b7,8ea2a2b7v 5c7a e5b1ba 5c7a 00005c7a c9d7 c9d7 c9d7 c9d7 c9d7 c9d7 c9d7
+6113 c9d8 c9d8 c9d8 * * 2238 8ea2a2b8,8ea2a2b8v 5c7b e5b1bb 5c7b 00005c7b c9d8 c9d8 c9d8 c9d8 c9d8 c9d8 c9d8
+6114 c9d9 c9d9 c9d9 * * 2239 8ea2a2b9,8ea2a2b9v 5c7e e5b1be 5c7e 00005c7e c9d9 c9d9 c9d9 c9d9 c9d9 c9d9 c9d9
+6115 c9da c9da c9da * * 223a 8ea2a2ba,8ea2a2bav 5ddf e5b79f 5ddf 00005ddf c9da c9da c9da c9da c9da c9da c9da
+6116 c9db c9db c9db * * 223b 8ea2a2bb,8ea2a2bbv 5e75 e5b9b5,ee84ae 5e75,e12e 00005e75,0000e12e fbf3,c9db c9db c9db c9db c9db c9db fbf3,c9db
+6117 c9dc c9dc c9dc * * 223c 8ea2a2bc,8ea2a2bcv 5e84 e5ba84 5e84 00005e84 c9dc c9dc c9dc c9dc c9dc c9dc c9dc
+6118 c9dd c9dd c9dd * * 223d 8ea2a2bd,8ea2a2bdv 5f02 e5bc82 5f02 00005f02 c9dd c9dd c9dd c9dd c9dd c9dd c9dd
+6119 c9de c9de c9de * * 223e 8ea2a2be,8ea2a2bev 5f1a e5bc9a 5f1a 00005f1a c9de c9de c9de c9de c9de c9de c9de
+6120 c9df c9df c9df * * 223f 8ea2a2bf,8ea2a2bfv 5f74 e5bdb4 5f74 00005f74 c9df c9df c9df c9df c9df c9df c9df
+6121 c9e0 c9e0 c9e0 * * 2240 8ea2a2c0,8ea2a2c0v 5fd5 e5bf95 5fd5 00005fd5 c9e0 c9e0 c9e0 c9e0 c9e0 c9e0 c9e0
+6122 c9e1 c9e1 c9e1 * * 2241 8ea2a2c1,8ea2a2c1v 5fd4 e5bf94 5fd4 00005fd4 c9e1 c9e1 c9e1 c9e1 c9e1 c9e1 c9e1
+6123 c9e2 c9e2 c9e2 * * 2242 8ea2a2c2,8ea2a2c2v 5fcf e5bf8f 5fcf 00005fcf c9e2 c9e2 c9e2 c9e2 c9e2 c9e2 c9e2
+6124 c9e3 c9e3 c9e3 * * 2243 8ea2a2c3,8ea2a2c3v 625c e6899c 625c 0000625c c9e3 c9e3 c9e3 c9e3 c9e3 c9e3 c9e3
+6125 c9e4 c9e4 c9e4 * * 2244 8ea2a2c4,8ea2a2c4v 625e e6899e 625e 0000625e c9e4 c9e4 c9e4 c9e4 c9e4 c9e4 c9e4
+6126 c9e5 c9e5 c9e5 * * 2245 8ea2a2c5,8ea2a2c5v 6264 e689a4 6264 00006264 c9e5 c9e5 c9e5 c9e5 c9e5 c9e5 c9e5
+6127 c9e6 c9e6 c9e6 * * 2246 8ea2a2c6,8ea2a2c6v 6261 e689a1 6261 00006261 c9e6 c9e6 c9e6 c9e6 c9e6 c9e6 c9e6
+6128 c9e7 c9e7 c9e7 * * 2247 8ea2a2c7,8ea2a2c7v 6266 e689a6 6266 00006266 c9e7 c9e7 c9e7 c9e7 c9e7 c9e7 c9e7
+6129 c9e8 c9e8 c9e8 * * 2248 8ea2a2c8,8ea2a2c8v 6262 e689a2 6262 00006262 c9e8 c9e8 c9e8 c9e8 c9e8 c9e8 c9e8
+6130 c9e9 c9e9 c9e9 * * 2249 8ea2a2c9,8ea2a2c9v 6259 e68999 6259 00006259 c9e9 c9e9 c9e9 c9e9 c9e9 c9e9 c9e9
+6131 c9ea c9ea c9ea * * 224a 8ea2a2ca,8ea2a2cav 6260 e689a0 6260 00006260 c9ea c9ea c9ea c9ea c9ea c9ea c9ea
+6132 c9eb c9eb c9eb * * 224b 8ea2a2cb,8ea2a2cbv 625a e6899a 625a 0000625a c9eb c9eb c9eb c9eb c9eb c9eb c9eb
+6133 c9ec c9ec c9ec * * 224c 8ea2a2cc,8ea2a2ccv 6265 e689a5 6265 00006265 c9ec c9ec c9ec c9ec c9ec c9ec c9ec
+6134 caf7 caf7 caf7 * * 224d 8ea2a2cd,8ea2a2cdv 6537 e694b7 6537 00006537 caf7 caf7 caf7 caf7 caf7 caf7 caf7
+6135 c9ed c9ed c9ed * * 224e 8ea2a2ce,8ea2a2cev 65ef e697af 65ef 000065ef c9ed c9ed c9ed c9ed c9ed c9ed c9ed
+6136 c9ee c9ee c9ee * * 224f 8ea2a2cf,8ea2a2cfv 65ee e697ae 65ee 000065ee c9ee c9ee c9ee c9ee c9ee c9ee c9ee
+6137 c9ef c9ef c9ef * * 2250 8ea2a2d0,8ea2a2d0v 673e e69cbe 673e 0000673e c9ef c9ef c9ef c9ef c9ef c9ef c9ef
+6138 c9f0 c9f0 c9f0 * * 2251 8ea2a2d1,8ea2a2d1v 6739 e69cb9 6739 00006739 c9f0 c9f0 c9f0 c9f0 c9f0 c9f0 c9f0
+6139 c9f1 c9f1 c9f1 * * 2252 8ea2a2d2,8ea2a2d2v 6738 e69cb8 6738 00006738 c9f1 c9f1 c9f1 c9f1 c9f1 c9f1 c9f1
+6140 c9f2 c9f2 c9f2 * * 2253 8ea2a2d3,8ea2a2d3v 673b e69cbb 673b 0000673b c9f2 c9f2 c9f2 c9f2 c9f2 c9f2 c9f2
+6141 c9f3 c9f3 c9f3 * * 2254 8ea2a2d4,8ea2a2d4v 673a e69cba 673a 0000673a c9f3 c9f3 c9f3 c9f3 c9f3 c9f3 c9f3
+6142 c9f4 c9f4 c9f4 * * 2255 8ea2a2d5,8ea2a2d5v 673f e69cbf 673f 0000673f c9f4 c9f4 c9f4 c9f4 c9f4 c9f4 c9f4
+6143 c9f5 c9f5 c9f5 * * 2256 8ea2a2d6,8ea2a2d6v 673c e69cbc 673c 0000673c c9f5 c9f5 c9f5 c9f5 c9f5 c9f5 c9f5
+6144 c9f6 c9f6 c9f6 * * 2257 8ea2a2d7,8ea2a2d7v 6733 e69cb3 6733 00006733 c9f6 c9f6 c9f6 c9f6 c9f6 c9f6 c9f6
+6145 c9f7 c9f7 c9f7 * * 2258 8ea2a2d8,8ea2a2d8v 6c18 e6b098 6c18 00006c18 c9f7 c9f7 c9f7 c9f7 c9f7 c9f7 c9f7
+6146 c9f8 c9f8 c9f8 * * 2259 8ea2a2d9,8ea2a2d9v 6c46 e6b186 6c46 00006c46 c9f8 c9f8 c9f8 c9f8 c9f8 c9f8 c9f8
+6147 c9f9 c9f9 c9f9 * * 225a 8ea2a2da,8ea2a2dav 6c52 e6b192 6c52 00006c52 c9f9 c9f9 c9f9 c9f9 c9f9 c9f9 c9f9
+6148 c9fa c9fa c9fa * * 225b 8ea2a2db,8ea2a2dbv 6c5c e6b19c 6c5c 00006c5c c9fa c9fa c9fa c9fa c9fa c9fa c9fa
+6149 c9fb c9fb c9fb * * 225c 8ea2a2dc,8ea2a2dcv 6c4f e6b18f 6c4f 00006c4f c9fb c9fb c9fb c9fb c9fb c9fb c9fb
+6150 c9fc c9fc c9fc * * 225d 8ea2a2dd,8ea2a2ddv 6c4a e6b18a,eeb5bc 6c4a,ed7c 00006c4a,0000ed7c 9efd,c9fc c9fc c9fc c9fc c9fc c9fc 9efd,c9fc
+6151 c9fd c9fd c9fd * * 225e 8ea2a2de,8ea2a2dev 6c54 e6b194 6c54 00006c54 c9fd c9fd c9fd c9fd c9fd c9fd c9fd
+6152 c9fe c9fe c9fe * * 225f 8ea2a2df,8ea2a2dfv 6c4b e6b18b 6c4b 00006c4b c9fe c9fe c9fe c9fe c9fe c9fe c9fe
+6153 ca40 ca40 ca40 * * 2260 8ea2a2e0,8ea2a2e0v 6c4c e6b18c 6c4c 00006c4c ca40 ca40 ca40 ca40 ca40 ca40 ca40
+6154 ca41 ca41 ca41 * * 2261 8ea2a2e1,8ea2a2e1v 7071 e781b1 7071 00007071 ca41 ca41 ca41 ca41 ca41 ca41 ca41
+6155 ca42 ca42 ca42 * * 2262 8ea2a2e2,8ea2a2e2v 725e e7899e 725e 0000725e ca42 ca42 ca42 ca42 ca42 ca42 ca42
+6156 ca43 ca43 ca43 * * 2263 8ea2a2e3,8ea2a2e3v 72b4 e78ab4 72b4 000072b4 ca43 ca43 ca43 ca43 ca43 ca43 ca43
+6157 ca44 ca44 ca44 * * 2264 8ea2a2e4,8ea2a2e4v 72b5 e78ab5 72b5 000072b5 ca44 ca44 ca44 ca44 ca44 ca44 ca44
+6158 ca45 ca45 ca45 * * 2265 8ea2a2e5,8ea2a2e5v 738e e78e8e 738e 0000738e ca45 ca45 ca45 ca45 ca45 ca45 ca45
+6159 ca46 ca46 ca46 * * 2266 8ea2a2e6,8ea2a2e6v 752a e794aa 752a 0000752a ca46 ca46 ca46 ca46 ca46 ca46 ca46
+6160 ca47 ca47 ca47 * * 2267 8ea2a2e7,8ea2a2e7v 767f e799bf 767f 0000767f ca47 ca47 ca47 ca47 ca47 ca47 ca47
+6161 ca48 ca48 ca48 * * 2268 8ea2a2e8,8ea2a2e8v 7a75 e7a9b5 7a75 00007a75 ca48 ca48 ca48 ca48 ca48 ca48 ca48
+6162 ca49 ca49 ca49 * 283b 2269 8ea1a8bb,8ea2a2e9,a8bb,8ea1a8bbv,8ea2a2e9v,a8bbv 7f51 e2bdb9,e7bd91 2f79,7f51 00002f79,00007f51 ca49 ca49 ca49 ca49 ca49 ca49 ca49
+6163 ca4a ca4a ca4a * 284d 226a 8ea1a8cd,8ea2a2ea,a8cd,8ea1a8cdv,8ea2a2eav,a8cdv 8278 e2be8b,e889b8 2f8b,8278 00002f8b,00008278 ca4a ca4a ca4a ca4a ca4a ca4a ca4a
+6164 ca4b ca4b ca4b * * 226b 8ea2a2eb,8ea2a2ebv 827c e889bc 827c 0000827c ca4b ca4b ca4b ca4b ca4b ca4b ca4b
+6165 ca4c ca4c ca4c * * 226c 8ea2a2ec,8ea2a2ecv 8280 e88a80 8280 00008280 ca4c ca4c ca4c ca4c ca4c ca4c ca4c
+6166 ca4d ca4d ca4d * * 226d 8ea2a2ed,8ea2a2edv 827d e889bd 827d 0000827d ca4d ca4d ca4d ca4d ca4d ca4d ca4d
+6167 ca4e ca4e ca4e * * 226e 8ea2a2ee,8ea2a2eev 827f e889bf 827f 0000827f ca4e ca4e ca4e ca4e ca4e ca4e ca4e
+6168 ca4f ca4f ca4f * 284e 226f 8ea1a8ce,8ea2a2ef,a8ce,8ea1a8cev,8ea2a2efv,a8cev 864d e2be8c,e8998d 2f8c,864d 00002f8c,0000864d ca4f ca4f ca4f ca4f ca4f ca4f ca4f
+6169 ca50 ca50 ca50 * 2853 2270 8ea1a8d3,8ea2a2f0,a8d3,8ea1a8d3v,8ea2a2f0v,a8d3v 897e e2be91,e8a5be 2f91,897e 00002f91,0000897e ca50 ca50 ca50 ca50 ca50 ca50 ca50
+6170 ca51 ca51 ca51 * * 2271 8ea2a2f1,8ea2a2f1v 9099 e98299 9099 00009099 ca51 ca51 ca51 ca51 ca51 ca51 ca51
+6171 ca52 ca52 ca52 * * 2272 8ea2a2f2,8ea2a2f2v 9097 ee9f93,e98297 e7d3,9097 0000e7d3,00009097 95d9,ca52 ca52 ca52 ca52 ca52 ca52 95d9,ca52
+6172 ca53 ca53 ca53 * * 2273 8ea2a2f3,8ea2a2f3v 9098 e98298 9098 00009098 ca53 ca53 ca53 ca53 ca53 ca53 ca53
+6173 ca54 ca54 ca54 * * 2274 8ea2a2f4,8ea2a2f4v 909b e9829b 909b 0000909b ca54 ca54 ca54 ca54 ca54 ca54 ca54
+6174 ca55 ca55 ca55 * * 2275 8ea2a2f5,8ea2a2f5v 9094 e98294 9094 00009094 ca55 ca55 ca55 ca55 ca55 ca55 ca55
+6175 ca56 ca56 ca56 * * 2276 8ea2a2f6,8ea2a2f6v 9622 e998a2 9622 00009622 ca56 ca56 ca56 ca56 ca56 ca56 ca56
+6176 ca57 ca57 ca57 * * 2277 8ea2a2f7,8ea2a2f7v 9624 e998a4 9624 00009624 ca57 ca57 ca57 ca57 ca57 ca57 ca57
+6177 ca58 ca58 ca58 * * 2278 8ea2a2f8,8ea2a2f8v 9620 e998a0 9620 00009620 ca58 ca58 ca58 ca58 ca58 ca58 ca58
+6178 ca59 ca59 ca59 * * 2279 8ea2a2f9,8ea2a2f9v 9623 e998a3 9623 00009623 ca59 ca59 ca59 ca59 ca59 ca59 ca59
+6179 ca5a ca5a ca5a * * 227a 8ea2a2fa,8ea2a2fav 4f56 e4bd96 4f56 00004f56 ca5a ca5a ca5a ca5a ca5a ca5a ca5a
+6180 ca5b ca5b ca5b * * 227b 8ea2a2fb,8ea2a2fbv 4f3b e4bcbb 4f3b 00004f3b ca5b ca5b ca5b ca5b ca5b ca5b ca5b
+6181 ca5c ca5c ca5c * * 227c 8ea2a2fc,8ea2a2fcv 4f62 e4bda2 4f62 00004f62 ca5c ca5c ca5c ca5c ca5c ca5c ca5c
+6182 ca5d ca5d ca5d * * 227d 8ea2a2fd,8ea2a2fdv 4f49 e4bd89 4f49 00004f49 ca5d ca5d ca5d ca5d ca5d ca5d ca5d
+6183 ca5e ca5e ca5e * * 227e 8ea2a2fe,8ea2a2fev 4f53 e4bd93 4f53 00004f53 ca5e ca5e ca5e ca5e ca5e ca5e ca5e
+6184 ca5f ca5f ca5f * * 2321 8ea2a3a1,8ea2a3a1v 4f64 e4bda4 4f64 00004f64 ca5f ca5f ca5f ca5f ca5f ca5f ca5f
+6185 ca60 ca60 ca60 * * 2322 8ea2a3a2,8ea2a3a2v 4f3e e4bcbe 4f3e 00004f3e ca60 ca60 ca60 ca60 ca60 ca60 ca60
+6186 ca61 ca61 ca61 * * 2323 8ea2a3a3,8ea2a3a3v 4f67 e4bda7 4f67 00004f67 ca61 ca61 ca61 ca61 ca61 ca61 ca61
+6187 ca62 ca62 ca62 * * 2324 8ea2a3a4,8ea2a3a4v 4f52 e4bd92 4f52 00004f52 ca62 ca62 ca62 ca62 ca62 ca62 ca62
+6188 ca63 ca63 ca63 * * 2325 8ea2a3a5,8ea2a3a5v 4f5f e4bd9f 4f5f 00004f5f ca63 ca63 ca63 ca63 ca63 ca63 ca63
+6189 ca64 ca64 ca64 * * 2326 8ea2a3a6,8ea2a3a6v 4f41 e4bd81 4f41 00004f41 ca64 ca64 ca64 ca64 ca64 ca64 ca64
+6190 ca65 ca65 ca65 * * 2327 8ea2a3a7,8ea2a3a7v 4f58 e4bd98 4f58 00004f58 ca65 ca65 ca65 ca65 ca65 ca65 ca65
+6191 ca66 ca66 ca66 * * 2328 8ea2a3a8,8ea2a3a8v 4f2d e4bcad 4f2d 00004f2d ca66 ca66 ca66 ca66 ca66 ca66 ca66
+6192 ca67 ca67 ca67 * * 2329 8ea2a3a9,8ea2a3a9v 4f33 e4bcb3 4f33 00004f33 ca67 ca67 ca67 ca67 ca67 ca67 ca67
+6193 ca68 ca68 ca68 * * 232a 8ea2a3aa,8ea2a3aav 4f3f e4bcbf 4f3f 00004f3f ca68 ca68 ca68 ca68 ca68 ca68 ca68
+6194 ca69 ca69 ca69 * * 232b 8ea2a3ab,8ea2a3abv 4f61 e4bda1 4f61 00004f61 ca69 ca69 ca69 ca69 ca69 ca69 ca69
+6195 ca6a ca6a ca6a * * 232c 8ea2a3ac,8ea2a3acv 518f e5868f 518f 0000518f ca6a ca6a ca6a ca6a ca6a ca6a ca6a
+6196 ca6b ca6b ca6b * * 232d 8ea2a3ad,8ea2a3adv 51b9 e586b9 51b9 000051b9 ca6b ca6b ca6b ca6b ca6b ca6b ca6b
+6197 ca6c ca6c ca6c * * 232e 8ea2a3ae,8ea2a3aev 521c e5889c 521c 0000521c ca6c ca6c ca6c ca6c ca6c ca6c ca6c
+6198 ca6d ca6d ca6d * * 232f 8ea2a3af,8ea2a3afv 521e e5889e 521e 0000521e ca6d ca6d ca6d ca6d ca6d ca6d ca6d
+6199 ca6e ca6e ca6e * * 2330 8ea2a3b0,8ea2a3b0v 5221 e588a1 5221 00005221 ca6e ca6e ca6e ca6e ca6e ca6e ca6e
+6200 ca6f ca6f ca6f * * 2331 8ea2a3b1,8ea2a3b1v 52ad e58aad 52ad 000052ad ca6f ca6f ca6f ca6f ca6f ca6f ca6f
+6201 ca70 ca70 ca70 * * 2332 8ea2a3b2,8ea2a3b2v 52ae e58aae 52ae 000052ae ca70 ca70 ca70 ca70 ca70 ca70 ca70
+6202 ca71 ca71 ca71 * * 2333 8ea2a3b3,8ea2a3b3v 5309 e58c89 5309 00005309 ca71 ca71 ca71 ca71 ca71 ca71 ca71
+6203 ca72 ca72 ca72 * * 2334 8ea2a3b4,8ea2a3b4v 5363 e58da3 5363 00005363 ca72 ca72 ca72 ca72 ca72 ca72 ca72
+6204 ca73 ca73 ca73 * * 2335 8ea2a3b5,8ea2a3b5v 5372 e58db2 5372 00005372 ca73 ca73 ca73 ca73 ca73 ca73 ca73
+6205 ca74 ca74 ca74 * * 2336 8ea2a3b6,8ea2a3b6v 538e e58e8e 538e 0000538e ca74 ca74 ca74 ca74 ca74 ca74 ca74
+6206 ca75 ca75 ca75 * * 2337 8ea2a3b7,8ea2a3b7v 538f e58e8f 538f 0000538f ca75 ca75 ca75 ca75 ca75 ca75 ca75
+6207 ca76 ca76 ca76 * * 2338 8ea2a3b8,8ea2a3b8v 5430 e590b0 5430 00005430 ca76 ca76 ca76 ca76 ca76 ca76 ca76
+6208 ca77 ca77 ca77 * * 2339 8ea2a3b9,8ea2a3b9v 5437 e590b7 5437 00005437 ca77 ca77 ca77 ca77 ca77 ca77 ca77
+6209 ca78 ca78 ca78 * * 233a 8ea2a3ba,8ea2a3bav 542a e590aa 542a 0000542a ca78 ca78 ca78 ca78 ca78 ca78 ca78
+6210 ca79 ca79 ca79 * * 233b 8ea2a3bb,8ea2a3bbv 5454 e59194 5454 00005454 ca79 ca79 ca79 ca79 ca79 ca79 ca79
+6211 ca7a ca7a ca7a * * 233c 8ea2a3bc,8ea2a3bcv 5445 e59185 5445 00005445 ca7a ca7a ca7a ca7a ca7a ca7a ca7a
+6212 ca7b ca7b ca7b * * 233d 8ea2a3bd,8ea2a3bdv 5419 e59099 5419 00005419 ca7b ca7b ca7b ca7b ca7b ca7b ca7b
+6213 ca7c ca7c ca7c * * 233e 8ea2a3be,8ea2a3bev 541c e5909c 541c 0000541c ca7c ca7c ca7c ca7c ca7c ca7c ca7c
+6214 ca7d ca7d ca7d * * 233f 8ea2a3bf,8ea2a3bfv 5425 e590a5 5425 00005425 ca7d ca7d ca7d ca7d ca7d ca7d ca7d
+6215 ca7e ca7e ca7e * * 2340 8ea2a3c0,8ea2a3c0v 5418 e59098 5418 00005418 ca7e ca7e ca7e ca7e ca7e ca7e ca7e
+6216 caa1 caa1 caa1 * * 2341 8ea2a3c1,8ea2a3c1v 543d e590bd 543d 0000543d caa1 caa1 caa1 caa1 caa1 caa1 caa1
+6217 caa2 caa2 caa2 * * 2342 8ea2a3c2,8ea2a3c2v 544f e5918f 544f 0000544f caa2 caa2 caa2 caa2 caa2 caa2 caa2
+6218 caa3 caa3 caa3 * * 2343 8ea2a3c3,8ea2a3c3v 5441 e59181 5441 00005441 caa3 caa3 caa3 caa3 caa3 caa3 caa3
+6219 caa4 caa4 caa4 * * 2344 8ea2a3c4,8ea2a3c4v 5428 e590a8 5428 00005428 caa4 caa4 caa4 caa4 caa4 caa4 caa4
+6220 caa5 caa5 caa5 * * 2345 8ea2a3c5,8ea2a3c5v 5424 e590a4 5424 00005424 caa5 caa5 caa5 caa5 caa5 caa5 caa5
+6221 caa6 caa6 caa6 * * 2346 8ea2a3c6,8ea2a3c6v 5447 e59187 5447 00005447 caa6 caa6 caa6 caa6 caa6 caa6 caa6
+6222 caa7 caa7 caa7 * * 2347 8ea2a3c7,8ea2a3c7v 56ee e59bae 56ee 000056ee caa7 caa7 caa7 caa7 caa7 caa7 caa7
+6223 caa8 caa8 caa8 * * 2348 8ea2a3c8,8ea2a3c8v 56e7 e59ba7 56e7 000056e7 caa8 caa8 caa8 caa8 caa8 caa8 caa8
+6224 caa9 caa9 caa9 * * 2349 8ea2a3c9,8ea2a3c9v 56e5 e59ba5 56e5 000056e5 caa9 caa9 caa9 caa9 caa9 caa9 caa9
+6225 caaa caaa caaa * * 234a 8ea2a3ca,8ea2a3cav 5741 e59d81 5741 00005741 caaa caaa caaa caaa caaa caaa caaa
+6226 caab caab caab * * 234b 8ea2a3cb,8ea2a3cbv 5745 e59d85 5745 00005745 caab caab caab caab caab caab caab
+6227 caac caac caac * * 234c 8ea2a3cc,8ea2a3ccv 574c e59d8c 574c 0000574c caac caac caac caac caac caac caac
+6228 caad caad caad * * 234d 8ea2a3cd,8ea2a3cdv 5749 e59d89 5749 00005749 caad caad caad caad caad caad caad
+6229 caae caae caae * * 234e 8ea2a3ce,8ea2a3cev 574b e59d8b 574b 0000574b caae caae caae caae caae caae caae
+6230 caaf caaf caaf * * 234f 8ea2a3cf,8ea2a3cfv 5752 e59d92 5752 00005752 caaf caaf caaf caaf caaf caaf caaf
+6231 cab0 cab0 cab0 * * 2350 8ea2a3d0,8ea2a3d0v 5906 e5a486 5906 00005906 cab0 cab0 cab0 cab0 cab0 cab0 cab0
+6232 cab1 cab1 cab1 * * 2351 8ea2a3d1,8ea2a3d1v 5940 e5a580 5940 00005940 cab1 cab1 cab1 cab1 cab1 cab1 cab1
+6233 cab2 cab2 cab2 * * 2352 8ea2a3d2,8ea2a3d2v 59a6 e5a6a6 59a6 000059a6 cab2 cab2 cab2 cab2 cab2 cab2 cab2
+6234 cab3 cab3 cab3 * * 2353 8ea2a3d3,8ea2a3d3v 5998 e5a698 5998 00005998 cab3 cab3 cab3 cab3 cab3 cab3 cab3
+6235 cab4 cab4 cab4 * * 2354 8ea2a3d4,8ea2a3d4v 59a0 e5a6a0 59a0 000059a0 cab4 cab4 cab4 cab4 cab4 cab4 cab4
+6236 cab5 cab5 cab5 * * 2355 8ea2a3d5,8ea2a3d5v 5997 e5a697 5997 00005997 cab5 cab5 cab5 cab5 cab5 cab5 cab5
+6237 cab6 cab6 cab6 * * 2356 8ea2a3d6,8ea2a3d6v 598e e5a68e 598e 0000598e cab6 cab6 cab6 cab6 cab6 cab6 cab6
+6238 cab7 cab7 cab7 * * 2357 8ea2a3d7,8ea2a3d7v 59a2 e5a6a2 59a2 000059a2 cab7 cab7 cab7 cab7 cab7 cab7 cab7
+6239 cab8 cab8 cab8 * * 2358 8ea2a3d8,8ea2a3d8v 5990 e5a690 5990 00005990 cab8 cab8 cab8 cab8 cab8 cab8 cab8
+6240 cab9 cab9 cab9 * * 2359 8ea2a3d9,8ea2a3d9v 598f e5a68f 598f 0000598f cab9 cab9 cab9 cab9 cab9 cab9 cab9
+6241 caba caba caba * * 235a 8ea2a3da,8ea2a3dav 59a7 e5a6a7 59a7 000059a7 caba caba caba caba caba caba caba
+6242 cabb cabb cabb * * 235b 8ea2a3db,8ea2a3dbv 59a1 e5a6a1 59a1 000059a1 cabb cabb cabb cabb cabb cabb cabb
+6243 cabc cabc cabc * * 235c 8ea2a3dc,8ea2a3dcv 5b8e e5ae8e 5b8e 00005b8e cabc cabc cabc cabc cabc cabc cabc
+6244 cabd cabd cabd * * 235d 8ea2a3dd,8ea2a3ddv 5b92 e5ae92 5b92 00005b92 cabd cabd cabd cabd cabd cabd cabd
+6245 cabe cabe cabe * * 235e 8ea2a3de,8ea2a3dev 5c28 e5b0a8 5c28 00005c28 cabe cabe cabe cabe cabe cabe cabe
+6246 cabf cabf cabf * * 235f 8ea2a3df,8ea2a3dfv 5c2a e5b0aa 5c2a 00005c2a cabf cabf cabf cabf cabf cabf cabf
+6247 cac0 cac0 cac0 * * 2360 8ea2a3e0,8ea2a3e0v 5c8d e5b28d 5c8d 00005c8d cac0 cac0 cac0 cac0 cac0 cac0 cac0
+6248 cac1 cac1 cac1 * * 2361 8ea2a3e1,8ea2a3e1v 5c8f e5b28f 5c8f 00005c8f cac1 cac1 cac1 cac1 cac1 cac1 cac1
+6249 cac2 cac2 cac2 * * 2362 8ea2a3e2,8ea2a3e2v 5c88 e5b288 5c88 00005c88 cac2 cac2 cac2 cac2 cac2 cac2 cac2
+6250 cac3 cac3 cac3 * * 2363 8ea2a3e3,8ea2a3e3v 5c8b e5b28b 5c8b 00005c8b cac3 cac3 cac3 cac3 cac3 cac3 cac3
+6251 cac4 cac4 cac4 * * 2364 8ea2a3e4,8ea2a3e4v 5c89 e5b289 5c89 00005c89 cac4 cac4 cac4 cac4 cac4 cac4 cac4
+6252 cac5 cac5 cac5 * * 2365 8ea2a3e5,8ea2a3e5v 5c92 e5b292 5c92 00005c92 cac5 cac5 cac5 cac5 cac5 cac5 cac5
+6253 cac6 cac6 cac6 * * 2366 8ea2a3e6,8ea2a3e6v 5c8a e5b28a 5c8a 00005c8a cac6 cac6 cac6 cac6 cac6 cac6 cac6
+6254 cac7 cac7 cac7 * * 2367 8ea2a3e7,8ea2a3e7v 5c86 e5b286 5c86 00005c86 cac7 cac7 cac7 cac7 cac7 cac7 cac7
+6255 cac8 cac8 cac8 * * 2368 8ea2a3e8,8ea2a3e8v 5c93 e5b293 5c93 00005c93 cac8 cac8 cac8 cac8 cac8 cac8 cac8
+6256 cac9 cac9 cac9 * * 2369 8ea2a3e9,8ea2a3e9v 5c95 e5b295 5c95 00005c95 cac9 cac9 cac9 cac9 cac9 cac9 cac9
+6257 caca caca caca * * 236a 8ea2a3ea,8ea2a3eav 5de0 e5b7a0 5de0 00005de0 caca caca caca caca caca caca caca
+6258 cacb cacb cacb * * 236b 8ea2a3eb,8ea2a3ebv 5e0a e5b88a 5e0a 00005e0a cacb cacb cacb cacb cacb cacb cacb
+6259 cacc cacc cacc * * 236c 8ea2a3ec,8ea2a3ecv 5e0e e5b88e 5e0e 00005e0e cacc cacc cacc cacc cacc cacc cacc
+6260 cacd cacd cacd * * 236d 8ea2a3ed,8ea2a3edv 5e8b e5ba8b 5e8b 00005e8b cacd cacd cacd cacd cacd cacd cacd
+6261 cace cace cace * * 236e 8ea2a3ee,8ea2a3eev 5e89 e5ba89 5e89 00005e89 cace cace cace cace cace cace cace
+6262 cacf cacf cacf * * 236f 8ea2a3ef,8ea2a3efv 5e8c e5ba8c 5e8c 00005e8c cacf cacf cacf cacf cacf cacf cacf
+6263 cad0 cad0 cad0 * * 2370 8ea2a3f0,8ea2a3f0v 5e88 e5ba88 5e88 00005e88 cad0 cad0 cad0 cad0 cad0 cad0 cad0
+6264 cad1 cad1 cad1 * * 2371 8ea2a3f1,8ea2a3f1v 5e8d e5ba8d 5e8d 00005e8d cad1 cad1 cad1 cad1 cad1 cad1 cad1
+6265 cad2 cad2 cad2 * * 2372 8ea2a3f2,8ea2a3f2v 5f05 e5bc85 5f05 00005f05 cad2 cad2 cad2 cad2 cad2 cad2 cad2
+6266 cad3 cad3 cad3 * * 2373 8ea2a3f3,8ea2a3f3v 5f1d e5bc9d 5f1d 00005f1d cad3 cad3 cad3 cad3 cad3 cad3 cad3
+6267 cad4 cad4 cad4 * * 2374 8ea2a3f4,8ea2a3f4v 5f78 e5bdb8 5f78 00005f78 cad4 cad4 cad4 cad4 cad4 cad4 cad4
+6268 cad5 cad5 cad5 * * 2375 8ea2a3f5,8ea2a3f5v 5f76 e5bdb6 5f76 00005f76 cad5 cad5 cad5 cad5 cad5 cad5 cad5
+6269 cad6 cad6 cad6 * * 2376 8ea2a3f6,8ea2a3f6v 5fd2 e5bf92 5fd2 00005fd2 cad6 cad6 cad6 cad6 cad6 cad6 cad6
+6270 cad7 cad7 cad7 * * 2377 8ea2a3f7,8ea2a3f7v 5fd1 e5bf91 5fd1 00005fd1 cad7 cad7 cad7 cad7 cad7 cad7 cad7
+6271 cad8 cad8 cad8 * * 2378 8ea2a3f8,8ea2a3f8v 5fd0 e5bf90 5fd0 00005fd0 cad8 cad8 cad8 cad8 cad8 cad8 cad8
+6272 cad9 cad9 cad9 * * 2379 8ea2a3f9,8ea2a3f9v 5fed e5bfad 5fed 00005fed cad9 cad9 cad9 cad9 cad9 cad9 cad9
+6273 cada cada cada * * 237a 8ea2a3fa,8ea2a3fav 5fe8 e5bfa8 5fe8 00005fe8 cada cada cada cada cada cada cada
+6274 cadb cadb cadb * * 237b 8ea2a3fb,8ea2a3fbv 5fee e5bfae 5fee 00005fee cadb cadb cadb cadb cadb cadb cadb
+6275 cadc cadc cadc * * 237c 8ea2a3fc,8ea2a3fcv 5ff3 e5bfb3 5ff3 00005ff3 cadc cadc cadc cadc cadc cadc cadc
+6276 cadd cadd cadd * * 237d 8ea2a3fd,8ea2a3fdv 5fe1 e5bfa1 5fe1 00005fe1 cadd cadd cadd cadd cadd cadd cadd
+6277 cade cade cade * * 237e 8ea2a3fe,8ea2a3fev 5fe4 e5bfa4 5fe4 00005fe4 cade cade cade cade cade cade cade
+6278 cadf cadf cadf * * 2421 8ea2a4a1,8ea2a4a1v 5fe3 e5bfa3 5fe3 00005fe3 cadf cadf cadf cadf cadf cadf cadf
+6279 cae0 cae0 cae0 * * 2422 8ea2a4a2,8ea2a4a2v 5ffa e5bfba 5ffa 00005ffa cae0 cae0 cae0 cae0 cae0 cae0 cae0
+6280 cae1 cae1 cae1 * * 2423 8ea2a4a3,8ea2a4a3v 5fef e5bfaf 5fef 00005fef cae1 cae1 cae1 cae1 cae1 cae1 cae1
+6281 cae2 cae2 cae2 * * 2424 8ea2a4a4,8ea2a4a4v 5ff7 e5bfb7 5ff7 00005ff7 cae2 cae2 cae2 cae2 cae2 cae2 cae2
+6282 cae3 cae3 cae3 * * 2425 8ea2a4a5,8ea2a4a5v 5ffb e5bfbb 5ffb 00005ffb cae3 cae3 cae3 cae3 cae3 cae3 cae3
+6283 cae4 cae4 cae4 * * 2426 8ea2a4a6,8ea2a4a6v 6000 e68080 6000 00006000 cae4 cae4 cae4 cae4 cae4 cae4 cae4
+6284 cae5 cae5 cae5 * * 2427 8ea2a4a7,8ea2a4a7v 5ff4 e5bfb4 5ff4 00005ff4 cae5 cae5 cae5 cae5 cae5 cae5 cae5
+6285 cae6 cae6 cae6 * * 2428 8ea2a4a8,8ea2a4a8v 623a e688ba 623a 0000623a cae6 cae6 cae6 cae6 cae6 cae6 cae6
+6286 cae7 cae7 cae7 * * 2429 8ea2a4a9,8ea2a4a9v 6283 e68a83 6283 00006283 cae7 cae7 cae7 cae7 cae7 cae7 cae7
+6287 cae8 cae8 cae8 * * 242a 8ea2a4aa,8ea2a4aav 628c e68a8c 628c 0000628c cae8 cae8 cae8 cae8 cae8 cae8 cae8
+6288 cae9 cae9 cae9 * * 242b 8ea2a4ab,8ea2a4abv 628e e68a8e 628e 0000628e cae9 cae9 cae9 cae9 cae9 cae9 cae9
+6289 caea caea caea * * 242c 8ea2a4ac,8ea2a4acv 628f e68a8f 628f 0000628f caea caea caea caea caea caea caea
+6290 caeb caeb caeb * * 242d 8ea2a4ad,8ea2a4adv 6294 e68a94 6294 00006294 caeb caeb caeb caeb caeb caeb caeb
+6291 caec caec caec * * 242e 8ea2a4ae,8ea2a4aev 6287 e68a87 6287 00006287 caec caec caec caec caec caec caec
+6292 caed caed caed * * 242f 8ea2a4af,8ea2a4afv 6271 e689b1 6271 00006271 caed caed caed caed caed caed caed
+6293 caee caee caee * * 2430 8ea2a4b0,8ea2a4b0v 627b e689bb 627b 0000627b caee caee caee caee caee caee caee
+6294 caef caef caef * * 2431 8ea2a4b1,8ea2a4b1v 627a e689ba 627a 0000627a caef caef caef caef caef caef caef
+6295 caf0 caf0 caf0 * * 2432 8ea2a4b2,8ea2a4b2v 6270 e689b0 6270 00006270 caf0 caf0 caf0 caf0 caf0 caf0 caf0
+6296 caf1 caf1 caf1 * * 2433 8ea2a4b3,8ea2a4b3v 6281 e68a81 6281 00006281 caf1 caf1 caf1 caf1 caf1 caf1 caf1
+6297 caf2 caf2 caf2 * * 2434 8ea2a4b4,8ea2a4b4v 6288 e68a88 6288 00006288 caf2 caf2 caf2 caf2 caf2 caf2 caf2
+6298 caf3 caf3 caf3 * * 2435 8ea2a4b5,8ea2a4b5v 6277 e689b7 6277 00006277 caf3 caf3 caf3 caf3 caf3 caf3 caf3
+6299 caf4 caf4 caf4 * * 2436 8ea2a4b6,8ea2a4b6v 627d e689bd 627d 0000627d caf4 caf4 caf4 caf4 caf4 caf4 caf4
+6300 caf5 caf5 caf5 * * 2437 8ea2a4b7,8ea2a4b7v 6272 e689b2 6272 00006272 caf5 caf5 caf5 caf5 caf5 caf5 caf5
+6301 caf6 caf6 caf6 * * 2438 8ea2a4b8,8ea2a4b8v 6274 e689b4 6274 00006274 caf6 caf6 caf6 caf6 caf6 caf6 caf6
+6302 caf8 caf8 caf8 * * 2439 8ea2a4b9,8ea2a4b9v 65f0 e697b0 65f0 000065f0 caf8 caf8 caf8 caf8 caf8 caf8 caf8
+6303 caf9 caf9 caf9 * * 243a 8ea2a4ba,8ea2a4bav 65f4 e697b4 65f4 000065f4 caf9 caf9 caf9 caf9 caf9 caf9 caf9
+6304 cafa cafa cafa * * 243b 8ea2a4bb,8ea2a4bbv 65f3 e697b3 65f3 000065f3 cafa cafa cafa cafa cafa cafa cafa
+6305 cafb cafb cafb * * 243c 8ea2a4bc,8ea2a4bcv 65f2 e697b2 65f2 000065f2 cafb cafb cafb cafb cafb cafb cafb
+6306 cafc cafc cafc * * 243d 8ea2a4bd,8ea2a4bdv 65f5 e697b5 65f5 000065f5 cafc cafc cafc cafc cafc cafc cafc
+6307 cafd cafd cafd * * 243e 8ea2a4be,8ea2a4bev 6745 e69d85 6745 00006745 cafd cafd cafd cafd cafd cafd cafd
+6308 cafe cafe cafe * * 243f 8ea2a4bf,8ea2a4bfv 6747 e69d87 6747 00006747 cafe cafe cafe cafe cafe cafe cafe
+6309 cb40 cb40 cb40 * * 2440 8ea2a4c0,8ea2a4c0v 6759 e69d99 6759 00006759 cb40 cb40 cb40 cb40 cb40 cb40 cb40
+6310 cb41 cb41 cb41 * * 2441 8ea2a4c1,8ea2a4c1v 6755 e69d95 6755 00006755 cb41 cb41 cb41 cb41 cb41 cb41 cb41
+6311 cb42 cb42 cb42 * * 2442 8ea2a4c2,8ea2a4c2v 674c e69d8c 674c 0000674c cb42 cb42 cb42 cb42 cb42 cb42 cb42
+6312 cb43 cb43 cb43 * * 2443 8ea2a4c3,8ea2a4c3v 6748 e69d88 6748 00006748 cb43 cb43 cb43 cb43 cb43 cb43 cb43
+6313 cb44 cb44 cb44 * * 2444 8ea2a4c4,8ea2a4c4v 675d e69d9d 675d 0000675d cb44 cb44 cb44 cb44 cb44 cb44 cb44
+6314 cb45 cb45 cb45 * * 2445 8ea2a4c5,8ea2a4c5v 674d e69d8d 674d 0000674d cb45 cb45 cb45 cb45 cb45 cb45 cb45
+6315 cb46 cb46 cb46 * * 2446 8ea2a4c6,8ea2a4c6v 675a e69d9a 675a 0000675a cb46 cb46 cb46 cb46 cb46 cb46 cb46
+6316 cb47 cb47 cb47 * * 2447 8ea2a4c7,8ea2a4c7v 674b e69d8b 674b 0000674b cb47 cb47 cb47 cb47 cb47 cb47 cb47
+6317 cb48 cb48 cb48 * * 2448 8ea2a4c8,8ea2a4c8v 6bd0 e6af90 6bd0 00006bd0 cb48 cb48 cb48 cb48 cb48 cb48 cb48
+6318 cb49 cb49 cb49 * * 2449 8ea2a4c9,8ea2a4c9v 6c19 e6b099 6c19 00006c19 cb49 cb49 cb49 cb49 cb49 cb49 cb49
+6319 cb4a cb4a cb4a * * 244a 8ea2a4ca,8ea2a4cav 6c1a e6b09a 6c1a 00006c1a cb4a cb4a cb4a cb4a cb4a cb4a cb4a
+6320 cb4b cb4b cb4b * * 244b 8ea2a4cb,8ea2a4cbv 6c78 e6b1b8 6c78 00006c78 cb4b cb4b cb4b cb4b cb4b cb4b cb4b
+6321 cb4c cb4c cb4c * * 244c 8ea2a4cc,8ea2a4ccv 6c67 e6b1a7 6c67 00006c67 cb4c cb4c cb4c cb4c cb4c cb4c cb4c
+6322 cb4d cb4d cb4d * * 244d 8ea2a4cd,8ea2a4cdv 6c6b e6b1ab 6c6b 00006c6b cb4d cb4d cb4d cb4d cb4d cb4d cb4d
+6323 cb4e cb4e cb4e * * 244e 8ea2a4ce,8ea2a4cev 6c84 e6b284 6c84 00006c84 cb4e cb4e cb4e cb4e cb4e cb4e cb4e
+6324 cb4f cb4f cb4f * * 244f 8ea2a4cf,8ea2a4cfv 6c8b e6b28b 6c8b 00006c8b cb4f cb4f cb4f cb4f cb4f cb4f cb4f
+6325 cb50 cb50 cb50 * * 2450 8ea2a4d0,8ea2a4d0v 6c8f e6b28f 6c8f 00006c8f cb50 cb50 cb50 cb50 cb50 cb50 cb50
+6326 cb51 cb51 cb51 * * 2451 8ea2a4d1,8ea2a4d1v 6c71 e6b1b1 6c71 00006c71 cb51 cb51 cb51 cb51 cb51 cb51 cb51
+6327 cb52 cb52 cb52 * * 2452 8ea2a4d2,8ea2a4d2v 6c6f e6b1af 6c6f 00006c6f cb52 cb52 cb52 cb52 cb52 cb52 cb52
+6328 cb53 cb53 cb53 * * 2453 8ea2a4d3,8ea2a4d3v 6c69 e6b1a9 6c69 00006c69 cb53 cb53 cb53 cb53 cb53 cb53 cb53
+6329 cb54 cb54 cb54 * * 2454 8ea2a4d4,8ea2a4d4v 6c9a e6b29a 6c9a 00006c9a cb54 cb54 cb54 cb54 cb54 cb54 cb54
+6330 cb55 cb55 cb55 * * 2455 8ea2a4d5,8ea2a4d5v 6c6d e6b1ad 6c6d 00006c6d cb55 cb55 cb55 cb55 cb55 cb55 cb55
+6331 cb56 cb56 cb56 * * 2456 8ea2a4d6,8ea2a4d6v 6c87 e6b287 6c87 00006c87 cb56 cb56 cb56 cb56 cb56 cb56 cb56
+6332 cb57 cb57 cb57 * * 2457 8ea2a4d7,8ea2a4d7v 6c95 e6b295 6c95 00006c95 cb57 cb57 cb57 cb57 cb57 cb57 cb57
+6333 cb58 cb58 cb58 * * 2458 8ea2a4d8,8ea2a4d8v 6c9c e6b29c,ee88ac 6c9c,e22c 00006c9c,0000e22c fdb7,cb58 cb58 cb58 cb58 cb58 cb58 fdb7,cb58
+6334 cb59 cb59 cb59 * * 2459 8ea2a4d9,8ea2a4d9v 6c66 e6b1a6 6c66 00006c66 cb59 cb59 cb59 cb59 cb59 cb59 cb59
+6335 cb5a cb5a cb5a * * 245a 8ea2a4da,8ea2a4dav 6c73 e6b1b3 6c73 00006c73 cb5a cb5a cb5a cb5a cb5a cb5a cb5a
+6336 cb5b cb5b cb5b * * 245b 8ea2a4db,8ea2a4dbv 6c65 e6b1a5 6c65 00006c65 cb5b cb5b cb5b cb5b cb5b cb5b cb5b
+6337 cb5c cb5c cb5c * * 245c 8ea2a4dc,8ea2a4dcv 6c7b e6b1bb 6c7b 00006c7b cb5c cb5c cb5c cb5c cb5c cb5c cb5c
+6338 cb5d cb5d cb5d * * 245d 8ea2a4dd,8ea2a4ddv 6c8e e6b28e 6c8e 00006c8e cb5d cb5d cb5d cb5d cb5d cb5d cb5d
+6339 cb5e cb5e cb5e * * 245e 8ea2a4de,8ea2a4dev 7074 e781b4 7074 00007074 cb5e cb5e cb5e cb5e cb5e cb5e cb5e
+6340 cb5f cb5f cb5f * * 245f 8ea2a4df,8ea2a4dfv 707a e781ba 707a 0000707a cb5f cb5f cb5f cb5f cb5f cb5f cb5f
+6341 cb60 cb60 cb60 * * 2460 8ea2a4e0,8ea2a4e0v 7263 e789a3 7263 00007263 cb60 cb60 cb60 cb60 cb60 cb60 cb60
+6342 cb61 cb61 cb61 * * 2461 8ea2a4e1,8ea2a4e1v 72bf e78abf 72bf 000072bf cb61 cb61 cb61 cb61 cb61 cb61 cb61
+6343 cb62 cb62 cb62 * * 2462 8ea2a4e2,8ea2a4e2v 72bd e78abd 72bd 000072bd cb62 cb62 cb62 cb62 cb62 cb62 cb62
+6344 cb63 cb63 cb63 * * 2463 8ea2a4e3,8ea2a4e3v 72c3 e78b83 72c3 000072c3 cb63 cb63 cb63 cb63 cb63 cb63 cb63
+6345 cb64 cb64 cb64 * * 2464 8ea2a4e4,8ea2a4e4v 72c6 e78b86 72c6 000072c6 cb64 cb64 cb64 cb64 cb64 cb64 cb64
+6346 cb65 cb65 cb65 * * 2465 8ea2a4e5,8ea2a4e5v 72c1 e78b81 72c1 000072c1 cb65 cb65 cb65 cb65 cb65 cb65 cb65
+6347 cb66 cb66 cb66 * * 2466 8ea2a4e6,8ea2a4e6v 72ba e78aba 72ba 000072ba cb66 cb66 cb66 cb66 cb66 cb66 cb66
+6348 cb67 cb67 cb67 * * 2467 8ea2a4e7,8ea2a4e7v 72c5 e78b85 72c5 000072c5 cb67 cb67 cb67 cb67 cb67 cb67 cb67
+6349 cb68 cb68 cb68 * * 2468 8ea2a4e8,8ea2a4e8v 7395 e78e95 7395 00007395 cb68 cb68 cb68 cb68 cb68 cb68 cb68
+6350 cb69 cb69 cb69 * * 2469 8ea2a4e9,8ea2a4e9v 7397 e78e97 7397 00007397 cb69 cb69 cb69 cb69 cb69 cb69 cb69
+6351 cb6a cb6a cb6a * * 246a 8ea2a4ea,8ea2a4eav 7393 e78e93 7393 00007393 cb6a cb6a cb6a cb6a cb6a cb6a cb6a
+6352 cb6b cb6b cb6b * * 246b 8ea2a4eb,8ea2a4ebv 7394 e78e94 7394 00007394 cb6b cb6b cb6b cb6b cb6b cb6b cb6b
+6353 cb6c cb6c cb6c * * 246c 8ea2a4ec,8ea2a4ecv 7392 e78e92 7392 00007392 cb6c cb6c cb6c cb6c cb6c cb6c cb6c
+6354 cb6d cb6d cb6d * * 246d 8ea2a4ed,8ea2a4edv 753a e794ba 753a 0000753a cb6d cb6d cb6d cb6d cb6d cb6d cb6d
+6355 cb6e cb6e cb6e * * 246e 8ea2a4ee,8ea2a4eev 7539 e794b9 7539 00007539 cb6e cb6e cb6e cb6e cb6e cb6e cb6e
+6356 cb6f cb6f cb6f * * 246f 8ea2a4ef,8ea2a4efv 7594 e79694 7594 00007594 cb6f cb6f cb6f cb6f cb6f cb6f cb6f
+6357 cb70 cb70 cb70 * * 2470 8ea2a4f0,8ea2a4f0v 7595 e79695 7595 00007595 cb70 cb70 cb70 cb70 cb70 cb70 cb70
+6358 cb71 cb71 cb71 * * 2471 8ea2a4f1,8ea2a4f1v 7681 e79a81 7681 00007681 cb71 cb71 cb71 cb71 cb71 cb71 cb71
+6359 cb72 cb72 cb72 * * 2472 8ea2a4f2,8ea2a4f2v 793d e7a4bd 793d 0000793d cb72 cb72 cb72 cb72 cb72 cb72 cb72
+6360 cb73 cb73 cb73 * * 2473 8ea2a4f3,8ea2a4f3v 8034 e880b4 8034 00008034 cb73 cb73 cb73 cb73 cb73 cb73 cb73
+6361 cb74 cb74 cb74 * * 2474 8ea2a4f4,8ea2a4f4v 8095 e88295 8095 00008095 cb74 cb74 cb74 cb74 cb74 cb74 cb74
+6362 cb75 cb75 cb75 * * 2475 8ea2a4f5,8ea2a4f5v 8099 e88299 8099 00008099 cb75 cb75 cb75 cb75 cb75 cb75 cb75
+6363 cb76 cb76 cb76 * * 2476 8ea2a4f6,8ea2a4f6v 8090 e88290 8090 00008090 cb76 cb76 cb76 cb76 cb76 cb76 cb76
+6364 cb77 cb77 cb77 * * 2477 8ea2a4f7,8ea2a4f7v 8092 e88292 8092 00008092 cb77 cb77 cb77 cb77 cb77 cb77 cb77
+6365 cb78 cb78 cb78 * * 2478 8ea2a4f8,8ea2a4f8v 809c e8829c 809c 0000809c cb78 cb78 cb78 cb78 cb78 cb78 cb78
+6366 cb79 cb79 cb79 * * 2479 8ea2a4f9,8ea2a4f9v 8290 e88a90 8290 00008290 cb79 cb79 cb79 cb79 cb79 cb79 cb79
+6367 cb7a cb7a cb7a * * 247a 8ea2a4fa,8ea2a4fav 828f e88a8f 828f 0000828f cb7a cb7a cb7a cb7a cb7a cb7a cb7a
+6368 cb7b cb7b cb7b * * 247b 8ea2a4fb,8ea2a4fbv 8285 e88a85 8285 00008285 cb7b cb7b cb7b cb7b cb7b cb7b cb7b
+6369 cb7c cb7c cb7c * * 247c 8ea2a4fc,8ea2a4fcv 828e e88a8e 828e 0000828e cb7c cb7c cb7c cb7c cb7c cb7c cb7c
+6370 cb7d cb7d cb7d * * 247d 8ea2a4fd,8ea2a4fdv 8291 e88a91 8291 00008291 cb7d cb7d cb7d cb7d cb7d cb7d cb7d
+6371 cb7e cb7e cb7e * * 247e 8ea2a4fe,8ea2a4fev 8293 e88a93 8293 00008293 cb7e cb7e cb7e cb7e cb7e cb7e cb7e
+6372 cba1 cba1 cba1 * * 2521 8ea2a5a1,8ea2a5a1v 828a e88a8a 828a 0000828a cba1 cba1 cba1 cba1 cba1 cba1 cba1
+6373 cba2 cba2 cba2 * * 2522 8ea2a5a2,8ea2a5a2v 8283 e88a83 8283 00008283 cba2 cba2 cba2 cba2 cba2 cba2 cba2
+6374 cba3 cba3 cba3 * * 2523 8ea2a5a3,8ea2a5a3v 8284 e88a84 8284 00008284 cba3 cba3 cba3 cba3 cba3 cba3 cba3
+6375 cba4 cba4 cba4 * 285a 2524 8ea1a8da,8ea2a5a4,a8da,8ea1a8dav,8ea2a5a4v,a8dav 8c78 e2be98,e8b1b8 2f98,8c78 00002f98,00008c78 cba4 cba4 cba4 cba4 cba4 cba4 cba4
+6376 cba5 cba5 cba5 * * 2525 8ea2a5a5,8ea2a5a5v 8fc9 e8bf89 8fc9 00008fc9 cba5 cba5 cba5 cba5 cba5 cba5 cba5
+6377 cba6 cba6 cba6 * * 2526 8ea2a5a6,8ea2a5a6v 8fbf e8bebf 8fbf 00008fbf cba6 cba6 cba6 cba6 cba6 cba6 cba6
+6378 cba7 cba7 cba7 * * 2527 8ea2a5a7,8ea2a5a7v 909f e9829f 909f 0000909f cba7 cba7 cba7 cba7 cba7 cba7 cba7
+6379 cba8 cba8 cba8 * * 2528 8ea2a5a8,8ea2a5a8v 90a1 e982a1 90a1 000090a1 cba8 cba8 cba8 cba8 cba8 cba8 cba8
+6380 cba9 cba9 cba9 * * 2529 8ea2a5a9,8ea2a5a9v 90a5 e982a5 90a5 000090a5 cba9 cba9 cba9 cba9 cba9 cba9 cba9
+6381 cbaa cbaa cbaa * * 252a 8ea2a5aa,8ea2a5aav 909e e9829e 909e 0000909e cbaa cbaa cbaa cbaa cbaa cbaa cbaa
+6382 cbab cbab cbab * * 252b 8ea2a5ab,8ea2a5abv 90a7 e982a7 90a7 000090a7 cbab cbab cbab cbab cbab cbab cbab
+6383 cbac cbac cbac * * 252c 8ea2a5ac,8ea2a5acv 90a0 e982a0 90a0 000090a0 cbac cbac cbac cbac cbac cbac cbac
+6384 cbad cbad cbad * * 252d 8ea2a5ad,8ea2a5adv 9630 e998b0 9630 00009630 cbad cbad cbad cbad cbad cbad cbad
+6385 cbae cbae cbae * * 252e 8ea2a5ae,8ea2a5aev 9628 e998a8 9628 00009628 cbae cbae cbae cbae cbae cbae cbae
+6386 cbaf cbaf cbaf * * 252f 8ea2a5af,8ea2a5afv 962f e998af 962f 0000962f cbaf cbaf cbaf cbaf cbaf cbaf cbaf
+6387 cbb0 cbb0 cbb0 * * 2530 8ea2a5b0,8ea2a5b0v 962d e998ad 962d 0000962d cbb0 cbb0 cbb0 cbb0 cbb0 cbb0 cbb0
+6388 cbb1 cbb1 cbb1 * * 2531 8ea2a5b1,8ea2a5b1v 4e33 e4b8b3 4e33 00004e33 cbb1 cbb1 cbb1 cbb1 cbb1 cbb1 cbb1
+6389 cbb2 cbb2 cbb2 * * 2532 8ea2a5b2,8ea2a5b2v 4f98 e4be98 4f98 00004f98 cbb2 cbb2 cbb2 cbb2 cbb2 cbb2 cbb2
+6390 cbb3 cbb3 cbb3 * * 2533 8ea2a5b3,8ea2a5b3v 4f7c e4bdbc 4f7c 00004f7c cbb3 cbb3 cbb3 cbb3 cbb3 cbb3 cbb3
+6391 cbb4 cbb4 cbb4 * * 2534 8ea2a5b4,8ea2a5b4v 4f85 e4be85 4f85 00004f85 cbb4 cbb4 cbb4 cbb4 cbb4 cbb4 cbb4
+6392 cbb5 cbb5 cbb5 * * 2535 8ea2a5b5,8ea2a5b5v 4f7d e4bdbd 4f7d 00004f7d cbb5 cbb5 cbb5 cbb5 cbb5 cbb5 cbb5
+6393 cbb6 cbb6 cbb6 * * 2536 8ea2a5b6,8ea2a5b6v 4f80 e4be80 4f80 00004f80 cbb6 cbb6 cbb6 cbb6 cbb6 cbb6 cbb6
+6394 cbb7 cbb7 cbb7 * * 2537 8ea2a5b7,8ea2a5b7v 4f87 e4be87 4f87 00004f87 cbb7 cbb7 cbb7 cbb7 cbb7 cbb7 cbb7
+6395 cbb8 cbb8 cbb8 * * 2538 8ea2a5b8,8ea2a5b8v 4f76 e4bdb6 4f76 00004f76 cbb8 cbb8 cbb8 cbb8 cbb8 cbb8 cbb8
+6396 cbb9 cbb9 cbb9 * * 2539 8ea2a5b9,8ea2a5b9v 4f74 e4bdb4 4f74 00004f74 cbb9 cbb9 cbb9 cbb9 cbb9 cbb9 cbb9
+6397 cbba cbba cbba * * 253a 8ea2a5ba,8ea2a5bav 4f89 e4be89 4f89 00004f89 cbba cbba cbba cbba cbba cbba cbba
+6398 cbbb cbbb cbbb * * 253b 8ea2a5bb,8ea2a5bbv 4f84 e4be84 4f84 00004f84 cbbb cbbb cbbb cbbb cbbb cbbb cbbb
+6399 cbbc cbbc cbbc * * 253c 8ea2a5bc,8ea2a5bcv 4f77 e4bdb7 4f77 00004f77 cbbc cbbc cbbc cbbc cbbc cbbc cbbc
+6400 cbbd cbbd cbbd * * 253d 8ea2a5bd,8ea2a5bdv 4f4c e4bd8c 4f4c 00004f4c cbbd cbbd cbbd cbbd cbbd cbbd cbbd
+6401 cbbe cbbe cbbe * * 253e 8ea2a5be,8ea2a5bev 4f97 e4be97 4f97 00004f97 cbbe cbbe cbbe cbbe cbbe cbbe cbbe
+6402 cbbf cbbf cbbf * * 253f 8ea2a5bf,8ea2a5bfv 4f6a e4bdaa 4f6a 00004f6a cbbf cbbf cbbf cbbf cbbf cbbf cbbf
+6403 cbc0 cbc0 cbc0 * * 2540 8ea2a5c0,8ea2a5c0v 4f9a e4be9a 4f9a 00004f9a cbc0 cbc0 cbc0 cbc0 cbc0 cbc0 cbc0
+6404 cbc1 cbc1 cbc1 * * 2541 8ea2a5c1,8ea2a5c1v 4f79 e4bdb9 4f79 00004f79 cbc1 cbc1 cbc1 cbc1 cbc1 cbc1 cbc1
+6405 cbc2 cbc2 cbc2 * * 2542 8ea2a5c2,8ea2a5c2v 4f81 e4be81 4f81 00004f81 cbc2 cbc2 cbc2 cbc2 cbc2 cbc2 cbc2
+6406 cbc3 cbc3 cbc3 * * 2543 8ea2a5c3,8ea2a5c3v 4f78 e4bdb8 4f78 00004f78 cbc3 cbc3 cbc3 cbc3 cbc3 cbc3 cbc3
+6407 cbc4 cbc4 cbc4 * * 2544 8ea2a5c4,8ea2a5c4v 4f90 e4be90 4f90 00004f90 cbc4 cbc4 cbc4 cbc4 cbc4 cbc4 cbc4
+6408 cbc5 cbc5 cbc5 * * 2545 8ea2a5c5,8ea2a5c5v 4f9c e4be9c 4f9c 00004f9c cbc5 cbc5 cbc5 cbc5 cbc5 cbc5 cbc5
+6409 cbc6 cbc6 cbc6 * * 2546 8ea2a5c6,8ea2a5c6v 4f94 e4be94 4f94 00004f94 cbc6 cbc6 cbc6 cbc6 cbc6 cbc6 cbc6
+6410 cbc7 cbc7 cbc7 * * 2547 8ea2a5c7,8ea2a5c7v 4f9e e4be9e 4f9e 00004f9e cbc7 cbc7 cbc7 cbc7 cbc7 cbc7 cbc7
+6411 cbc8 cbc8 cbc8 * * 2548 8ea2a5c8,8ea2a5c8v 4f92 e4be92 4f92 00004f92 cbc8 cbc8 cbc8 cbc8 cbc8 cbc8 cbc8
+6412 cbc9 cbc9 cbc9 * * 2549 8ea2a5c9,8ea2a5c9v 4f82 e4be82 4f82 00004f82 cbc9 cbc9 cbc9 cbc9 cbc9 cbc9 cbc9
+6413 cbca cbca cbca * * 254a 8ea2a5ca,8ea2a5cav 4f95 e4be95 4f95 00004f95 cbca cbca cbca cbca cbca cbca cbca
+6414 cbcb cbcb cbcb * * 254b 8ea2a5cb,8ea2a5cbv 4f6b e4bdab 4f6b 00004f6b cbcb cbcb cbcb cbcb cbcb cbcb cbcb
+6415 cbcc cbcc cbcc * * 254c 8ea2a5cc,8ea2a5ccv 4f6e e4bdae 4f6e 00004f6e cbcc cbcc cbcc cbcc cbcc cbcc cbcc
+6416 cbcd cbcd cbcd * * 254d 8ea2a5cd,8ea2a5cdv 519e e5869e 519e 0000519e cbcd cbcd cbcd cbcd cbcd cbcd cbcd
+6417 cbce cbce cbce * * 254e 8ea2a5ce,8ea2a5cev 51bc e586bc 51bc 000051bc cbce cbce cbce cbce cbce cbce cbce
+6418 cbcf cbcf cbcf * * 254f 8ea2a5cf,8ea2a5cfv 51be e586be 51be 000051be cbcf cbcf cbcf cbcf cbcf cbcf cbcf
+6419 cbd0 cbd0 cbd0 * * 2550 8ea2a5d0,8ea2a5d0v 5235 e588b5 5235 00005235 cbd0 cbd0 cbd0 cbd0 cbd0 cbd0 cbd0
+6420 cbd1 cbd1 cbd1 * * 2551 8ea2a5d1,8ea2a5d1v 5232 e588b2 5232 00005232 cbd1 cbd1 cbd1 cbd1 cbd1 cbd1 cbd1
+6421 cbd2 cbd2 cbd2 * * 2552 8ea2a5d2,8ea2a5d2v 5233 e588b3 5233 00005233 cbd2 cbd2 cbd2 cbd2 cbd2 cbd2 cbd2
+6422 cbd3 cbd3 cbd3 * * 2553 8ea2a5d3,8ea2a5d3v 5246 e58986 5246 00005246 cbd3 cbd3 cbd3 cbd3 cbd3 cbd3 cbd3
+6423 cbd4 cbd4 cbd4 * * 2554 8ea2a5d4,8ea2a5d4v 5231 e588b1 5231 00005231 cbd4 cbd4 cbd4 cbd4 cbd4 cbd4 cbd4
+6424 cbd5 cbd5 cbd5 * * 2555 8ea2a5d5,8ea2a5d5v 52bc e58abc 52bc 000052bc cbd5 cbd5 cbd5 cbd5 cbd5 cbd5 cbd5
+6425 cbd6 cbd6 cbd6 * * 2556 8ea2a5d6,8ea2a5d6v 530a e58c8a 530a 0000530a cbd6 cbd6 cbd6 cbd6 cbd6 cbd6 cbd6
+6426 cbd7 cbd7 cbd7 * * 2557 8ea2a5d7,8ea2a5d7v 530b e58c8b 530b 0000530b cbd7 cbd7 cbd7 cbd7 cbd7 cbd7 cbd7
+6427 cbd8 cbd8 cbd8 * * 2558 8ea2a5d8,8ea2a5d8v 533c e58cbc 533c 0000533c cbd8 cbd8 cbd8 cbd8 cbd8 cbd8 cbd8
+6428 cbd9 cbd9 cbd9 * * 2559 8ea2a5d9,8ea2a5d9v 5392 e58e92 5392 00005392 cbd9 cbd9 cbd9 cbd9 cbd9 cbd9 cbd9
+6429 cbda cbda cbda * * 255a 8ea2a5da,8ea2a5dav 5394 e58e94 5394 00005394 cbda cbda cbda cbda cbda cbda cbda
+6430 cbdb cbdb cbdb * * 255b 8ea2a5db,8ea2a5dbv 5487 e59287 5487 00005487 cbdb cbdb cbdb cbdb cbdb cbdb cbdb
+6431 cbdc cbdc cbdc * * 255c 8ea2a5dc,8ea2a5dcv 547f e591bf 547f 0000547f cbdc cbdc cbdc cbdc cbdc cbdc cbdc
+6432 cbdd cbdd cbdd * * 255d 8ea2a5dd,8ea2a5ddv 5481 e59281 5481 00005481 cbdd cbdd cbdd cbdd cbdd cbdd cbdd
+6433 cbde cbde cbde * * 255e 8ea2a5de,8ea2a5dev 5491 e59291 5491 00005491 cbde cbde cbde cbde cbde cbde cbde
+6434 cbdf cbdf cbdf * * 255f 8ea2a5df,8ea2a5dfv 5482 e59282 5482 00005482 cbdf cbdf cbdf cbdf cbdf cbdf cbdf
+6435 cbe0 cbe0 cbe0 * * 2560 8ea2a5e0,8ea2a5e0v 5488 e59288 5488 00005488 cbe0 cbe0 cbe0 cbe0 cbe0 cbe0 cbe0
+6436 cbe1 cbe1 cbe1 * * 2561 8ea2a5e1,8ea2a5e1v 546b e591ab 546b 0000546b cbe1 cbe1 cbe1 cbe1 cbe1 cbe1 cbe1
+6437 cbe2 cbe2 cbe2 * * 2562 8ea2a5e2,8ea2a5e2v 547a e591ba 547a 0000547a cbe2 cbe2 cbe2 cbe2 cbe2 cbe2 cbe2
+6438 cbe3 cbe3 cbe3 * * 2563 8ea2a5e3,8ea2a5e3v 547e e591be 547e 0000547e cbe3 cbe3 cbe3 cbe3 cbe3 cbe3 cbe3
+6439 cbe4 cbe4 cbe4 * * 2564 8ea2a5e4,8ea2a5e4v 5465 e591a5 5465 00005465 cbe4 cbe4 cbe4 cbe4 cbe4 cbe4 cbe4
+6440 cbe5 cbe5 cbe5 * * 2565 8ea2a5e5,8ea2a5e5v 546c e591ac 546c 0000546c cbe5 cbe5 cbe5 cbe5 cbe5 cbe5 cbe5
+6441 cbe6 cbe6 cbe6 * * 2566 8ea2a5e6,8ea2a5e6v 5474 e591b4 5474 00005474 cbe6 cbe6 cbe6 cbe6 cbe6 cbe6 cbe6
+6442 cbe7 cbe7 cbe7 * * 2567 8ea2a5e7,8ea2a5e7v 5466 e591a6 5466 00005466 cbe7 cbe7 cbe7 cbe7 cbe7 cbe7 cbe7
+6443 cbe8 cbe8 cbe8 * * 2568 8ea2a5e8,8ea2a5e8v 548d e5928d 548d 0000548d cbe8 cbe8 cbe8 cbe8 cbe8 cbe8 cbe8
+6444 cbe9 cbe9 cbe9 * * 2569 8ea2a5e9,8ea2a5e9v 546f e591af 546f 0000546f cbe9 cbe9 cbe9 cbe9 cbe9 cbe9 cbe9
+6445 cbea cbea cbea * * 256a 8ea2a5ea,8ea2a5eav 5461 e591a1 5461 00005461 cbea cbea cbea cbea cbea cbea cbea
+6446 cbeb cbeb cbeb * * 256b 8ea2a5eb,8ea2a5ebv 5460 e591a0 5460 00005460 cbeb cbeb cbeb cbeb cbeb cbeb cbeb
+6447 cbec cbec cbec * * 256c 8ea2a5ec,8ea2a5ecv 5498 e59298 5498 00005498 cbec cbec cbec cbec cbec cbec cbec
+6448 cbed cbed cbed * * 256d 8ea2a5ed,8ea2a5edv 5463 e591a3 5463 00005463 cbed cbed cbed cbed cbed cbed cbed
+6449 cbee cbee cbee * * 256e 8ea2a5ee,8ea2a5eev 5467 e591a7 5467 00005467 cbee cbee cbee cbee cbee cbee cbee
+6450 cbef cbef cbef * * 256f 8ea2a5ef,8ea2a5efv 5464 e591a4 5464 00005464 cbef cbef cbef cbef cbef cbef cbef
+6451 cbf0 cbf0 cbf0 * * 2570 8ea2a5f0,8ea2a5f0v 56f7 e59bb7 56f7 000056f7 cbf0 cbf0 cbf0 cbf0 cbf0 cbf0 cbf0
+6452 cbf1 cbf1 cbf1 * * 2571 8ea2a5f1,8ea2a5f1v 56f9 e59bb9 56f9 000056f9 cbf1 cbf1 cbf1 cbf1 cbf1 cbf1 cbf1
+6453 cbf2 cbf2 cbf2 * * 2572 8ea2a5f2,8ea2a5f2v 576f e59daf 576f 0000576f cbf2 cbf2 cbf2 cbf2 cbf2 cbf2 cbf2
+6454 cbf3 cbf3 cbf3 * * 2573 8ea2a5f3,8ea2a5f3v 5772 e59db2 5772 00005772 cbf3 cbf3 cbf3 cbf3 cbf3 cbf3 cbf3
+6455 cbf4 cbf4 cbf4 * * 2574 8ea2a5f4,8ea2a5f4v 576d e59dad 576d 0000576d cbf4 cbf4 cbf4 cbf4 cbf4 cbf4 cbf4
+6456 cbf5 cbf5 cbf5 * * 2575 8ea2a5f5,8ea2a5f5v 576b e59dab 576b 0000576b cbf5 cbf5 cbf5 cbf5 cbf5 cbf5 cbf5
+6457 cbf6 cbf6 cbf6 * * 2576 8ea2a5f6,8ea2a5f6v 5771 e59db1 5771 00005771 cbf6 cbf6 cbf6 cbf6 cbf6 cbf6 cbf6
+6458 cbf7 cbf7 cbf7 * * 2577 8ea2a5f7,8ea2a5f7v 5770 e59db0 5770 00005770 cbf7 cbf7 cbf7 cbf7 cbf7 cbf7 cbf7
+6459 cbf8 cbf8 cbf8 * * 2578 8ea2a5f8,8ea2a5f8v 5776 e59db6 5776 00005776 cbf8 cbf8 cbf8 cbf8 cbf8 cbf8 cbf8
+6460 cbf9 cbf9 cbf9 * * 2579 8ea2a5f9,8ea2a5f9v 5780 e59e80 5780 00005780 cbf9 cbf9 cbf9 cbf9 cbf9 cbf9 cbf9
+6461 cbfa cbfa cbfa * * 257a 8ea2a5fa,8ea2a5fav 5775 e59db5 5775 00005775 cbfa cbfa cbfa cbfa cbfa cbfa cbfa
+6462 cbfb cbfb cbfb * * 257b 8ea2a5fb,8ea2a5fbv 577b e59dbb 577b 0000577b cbfb cbfb cbfb cbfb cbfb cbfb cbfb
+6463 cbfc cbfc cbfc * * 257c 8ea2a5fc,8ea2a5fcv 5773 e59db3 5773 00005773 cbfc cbfc 9060,cbfc cbfc cbfc cbfc cbfc
+6464 cbfd cbfd cbfd * * 257d 8ea2a5fd,8ea2a5fdv 5774 e59db4 5774 00005774 cbfd cbfd cbfd cbfd cbfd cbfd cbfd
+6465 cbfe cbfe cbfe * * 257e 8ea2a5fe,8ea2a5fev 5762 e59da2 5762 00005762 cbfe cbfe cbfe cbfe cbfe cbfe cbfe
+6466 cc40 cc40 cc40 * * 2621 8ea2a6a1,8ea2a6a1v 5768 e59da8 5768 00005768 cc40 cc40 cc40 cc40 cc40 cc40 cc40
+6467 cc41 cc41 cc41 * * 2622 8ea2a6a2,8ea2a6a2v 577d e59dbd 577d 0000577d cc41 cc41 cc41 cc41 cc41 cc41 cc41
+6468 cc42 cc42 cc42 * * 2623 8ea2a6a3,8ea2a6a3v 590c e5a48c 590c 0000590c cc42 cc42 cc42 cc42 cc42 cc42 cc42
+6469 cc43 cc43 cc43 * * 2624 8ea2a6a4,8ea2a6a4v 5945 e5a585 5945 00005945 cc43 cc43 cc43 cc43 cc43 cc43 cc43
+6470 cc44 cc44 cc44 * * 2625 8ea2a6a5,8ea2a6a5v 59b5 e5a6b5 59b5 000059b5 cc44 cc44 cc44 cc44 cc44 cc44 cc44
+6471 cc45 cc45 cc45 * * 2626 8ea2a6a6,8ea2a6a6v 59ba e5a6ba 59ba 000059ba cc45 cc45 cc45 cc45 cc45 cc45 cc45
+6472 cc46 cc46 cc46 * * 2627 8ea2a6a7,8ea2a6a7v 59cf e5a78f 59cf 000059cf cc46 cc46 cc46 cc46 cc46 cc46 cc46
+6473 cc47 cc47 cc47 * * 2628 8ea2a6a8,8ea2a6a8v 59ce e5a78e 59ce 000059ce cc47 cc47 cc47 cc47 cc47 cc47 cc47
+6474 cc48 cc48 cc48 * * 2629 8ea2a6a9,8ea2a6a9v 59b2 e5a6b2 59b2 000059b2 cc48 cc48 cc48 cc48 cc48 cc48 cc48
+6475 cc49 cc49 cc49 * * 262a 8ea2a6aa,8ea2a6aav 59cc e5a78c 59cc 000059cc cc49 cc49 cc49 cc49 cc49 cc49 cc49
+6476 cc4a cc4a cc4a * * 262b 8ea2a6ab,8ea2a6abv 59c1 e5a781 59c1 000059c1 cc4a cc4a cc4a cc4a cc4a cc4a cc4a
+6477 cc4b cc4b cc4b * * 262c 8ea2a6ac,8ea2a6acv 59b6 e5a6b6 59b6 000059b6 cc4b cc4b cc4b cc4b cc4b cc4b cc4b
+6478 cc4c cc4c cc4c * * 262d 8ea2a6ad,8ea2a6adv 59bc e5a6bc 59bc 000059bc cc4c cc4c cc4c cc4c cc4c cc4c cc4c
+6479 cc4d cc4d cc4d * * 262e 8ea2a6ae,8ea2a6aev 59c3 e5a783 59c3 000059c3 cc4d cc4d cc4d cc4d cc4d cc4d cc4d
+6480 cc4e cc4e cc4e * * 262f 8ea2a6af,8ea2a6afv 59d6 e5a796 59d6 000059d6 cc4e cc4e cc4e cc4e cc4e cc4e cc4e
+6481 cc4f cc4f cc4f * * 2630 8ea2a6b0,8ea2a6b0v 59b1 e5a6b1 59b1 000059b1 cc4f cc4f cc4f cc4f cc4f cc4f cc4f
+6482 cc50 cc50 cc50 * * 2631 8ea2a6b1,8ea2a6b1v 59bd e5a6bd 59bd 000059bd cc50 cc50 cc50 cc50 cc50 cc50 cc50
+6483 cc51 cc51 cc51 * * 2632 8ea2a6b2,8ea2a6b2v 59c0 e5a780 59c0 000059c0 cc51 cc51 cc51 cc51 cc51 cc51 cc51
+6484 cc52 cc52 cc52 * * 2633 8ea2a6b3,8ea2a6b3v 59c8 e5a788 59c8 000059c8 cc52 cc52 cc52 cc52 cc52 cc52 cc52
+6485 cc53 cc53 cc53 * * 2634 8ea2a6b4,8ea2a6b4v 59b4 e5a6b4 59b4 000059b4 cc53 cc53 cc53 cc53 cc53 cc53 cc53
+6486 cc54 cc54 cc54 * * 2635 8ea2a6b5,8ea2a6b5v 59c7 e5a787 59c7 000059c7 cc54 cc54 cc54 cc54 cc54 cc54 cc54
+6487 cc55 cc55 cc55 * * 2636 8ea2a6b6,8ea2a6b6v 5b62 e5ada2 5b62 00005b62 cc55 cc55 cc55 cc55 cc55 cc55 cc55
+6488 cc56 cc56 cc56 * * 2637 8ea2a6b7,8ea2a6b7v 5b65 e5ada5 5b65 00005b65 cc56 cc56 cc56 cc56 cc56 cc56 cc56
+6489 cc57 cc57 cc57 * * 2638 8ea2a6b8,8ea2a6b8v 5b93 e5ae93 5b93 00005b93 cc57 cc57 cc57 cc57 cc57 cc57 cc57
+6490 cc58 cc58 cc58 * * 2639 8ea2a6b9,8ea2a6b9v 5b95 e5ae95 5b95 00005b95 cc58 cc58 cc58 cc58 cc58 cc58 cc58
+6491 cc59 cc59 cc59 * * 263a 8ea2a6ba,8ea2a6bav 5c44 e5b184 5c44 00005c44 cc59 cc59 cc59 cc59 cc59 cc59 cc59
+6492 cc5a cc5a cc5a * * 263b 8ea2a6bb,8ea2a6bbv 5c47 e5b187 5c47 00005c47 cc5a cc5a cc5a cc5a cc5a cc5a cc5a
+6493 cc5b cc5b cc5b * * 263c 8ea2a6bc,8ea2a6bcv 5cae e5b2ae 5cae 00005cae cc5b cc5b cc5b cc5b cc5b cc5b cc5b
+6494 cc5c cc5c cc5c * * 263d 8ea2a6bd,8ea2a6bdv 5ca4 e5b2a4 5ca4 00005ca4 cc5c cc5c cc5c cc5c cc5c cc5c cc5c
+6495 cc5d cc5d cc5d * * 263e 8ea2a6be,8ea2a6bev 5ca0 e5b2a0 5ca0 00005ca0 cc5d cc5d cc5d cc5d cc5d cc5d cc5d
+6496 cc5e cc5e cc5e * * 263f 8ea2a6bf,8ea2a6bfv 5cb5 e5b2b5 5cb5 00005cb5 cc5e cc5e cc5e cc5e cc5e cc5e cc5e
+6497 cc5f cc5f cc5f * * 2640 8ea2a6c0,8ea2a6c0v 5caf e5b2af 5caf 00005caf cc5f cc5f cc5f cc5f cc5f cc5f cc5f
+6498 cc60 cc60 cc60 * * 2641 8ea2a6c1,8ea2a6c1v 5ca8 e5b2a8 5ca8 00005ca8 cc60 cc60 cc60 cc60 cc60 cc60 cc60
+6499 cc61 cc61 cc61 * * 2642 8ea2a6c2,8ea2a6c2v 5cac e5b2ac 5cac 00005cac cc61 cc61 cc61 cc61 cc61 cc61 cc61
+6500 cc62 cc62 cc62 * * 2643 8ea2a6c3,8ea2a6c3v 5c9f e5b29f 5c9f 00005c9f cc62 cc62 cc62 cc62 cc62 cc62 cc62
+6501 cc63 cc63 cc63 * * 2644 8ea2a6c4,8ea2a6c4v 5ca3 e5b2a3 5ca3 00005ca3 cc63 cc63 cc63 cc63 cc63 cc63 cc63
+6502 cc64 cc64 cc64 * * 2645 8ea2a6c5,8ea2a6c5v 5cad e5b2ad 5cad 00005cad cc64 cc64 cc64 cc64 cc64 cc64 cc64
+6503 cc65 cc65 cc65 * * 2646 8ea2a6c6,8ea2a6c6v 5ca2 e5b2a2 5ca2 00005ca2 cc65 cc65 cc65 cc65 cc65 cc65 cc65
+6504 cc66 cc66 cc66 * * 2647 8ea2a6c7,8ea2a6c7v 5caa e5b2aa 5caa 00005caa cc66 cc66 cc66 cc66 cc66 cc66 cc66
+6505 cc67 cc67 cc67 * * 2648 8ea2a6c8,8ea2a6c8v 5ca7 e5b2a7 5ca7 00005ca7 cc67 cc67 cc67 cc67 cc67 cc67 cc67
+6506 cc68 cc68 cc68 * * 2649 8ea2a6c9,8ea2a6c9v 5c9d e5b29d 5c9d 00005c9d cc68 cc68 cc68 cc68 cc68 cc68 cc68
+6507 cc69 cc69 cc69 * * 264a 8ea2a6ca,8ea2a6cav 5ca5 e5b2a5 5ca5 00005ca5 cc69 cc69 cc69 cc69 cc69 cc69 cc69
+6508 cc6a cc6a cc6a * * 264b 8ea2a6cb,8ea2a6cbv 5cb6 e5b2b6 5cb6 00005cb6 cc6a cc6a cc6a cc6a cc6a cc6a cc6a
+6509 cc6b cc6b cc6b * * 264c 8ea2a6cc,8ea2a6ccv 5cb0 e5b2b0 5cb0 00005cb0 cc6b cc6b cc6b cc6b cc6b cc6b cc6b
+6510 cc6c cc6c cc6c * * 264d 8ea2a6cd,8ea2a6cdv 5ca6 e5b2a6 5ca6 00005ca6 cc6c cc6c cc6c cc6c cc6c cc6c cc6c
+6511 cc6d cc6d cc6d * * 264e 8ea2a6ce,8ea2a6cev 5e17 e5b897 5e17 00005e17 cc6d cc6d cc6d cc6d cc6d cc6d cc6d
+6512 cc6e cc6e cc6e * * 264f 8ea2a6cf,8ea2a6cfv 5e14 e5b894 5e14 00005e14 cc6e cc6e cc6e cc6e cc6e cc6e cc6e
+6513 cc6f cc6f cc6f * * 2650 8ea2a6d0,8ea2a6d0v 5e19 e5b899 5e19 00005e19 cc6f cc6f,fc4a 91f4,cc6f cc6f cc6f cc6f cc6f
+6514 cc70 cc70 cc70 * * 2651 8ea2a6d1,8ea2a6d1v 5f28 e5bca8 5f28 00005f28 cc70 cc70 cc70 cc70 cc70 cc70 cc70
+6515 cc71 cc71 cc71 * * 2652 8ea2a6d2,8ea2a6d2v 5f22 e5bca2 5f22 00005f22 cc71 cc71 cc71 cc71 cc71 cc71 cc71
+6516 cc72 cc72 cc72 * * 2653 8ea2a6d3,8ea2a6d3v 5f23 e5bca3 5f23 00005f23 cc72 cc72 cc72 cc72 cc72 cc72 cc72
+6517 cc73 cc73 cc73 * * 2654 8ea2a6d4,8ea2a6d4v 5f24 e5bca4 5f24 00005f24 cc73 cc73 cc73 cc73 cc73 cc73 cc73
+6518 cc74 cc74 cc74 * * 2655 8ea2a6d5,8ea2a6d5v 5f54 e5bd94 5f54 00005f54 cc74 cc74 cc74 cc74 cc74 cc74 cc74
+6519 cc75 cc75 cc75 * * 2656 8ea2a6d6,8ea2a6d6v 5f82 e5be82 5f82 00005f82 cc75 cc75 cc75 cc75 cc75 cc75 cc75
+6520 cc76 cc76 cc76 * * 2657 8ea2a6d7,8ea2a6d7v 5f7e e5bdbe 5f7e 00005f7e cc76 cc76 cc76 cc76 cc76 cc76 cc76
+6521 cc77 cc77 cc77 * * 2658 8ea2a6d8,8ea2a6d8v 5f7d e5bdbd 5f7d 00005f7d cc77 cc77 cc77 cc77 cc77 cc77 cc77
+6522 cc78 cc78 cc78 * * 2659 8ea2a6d9,8ea2a6d9v 5fde e5bf9e 5fde 00005fde cc78 cc78 cc78 cc78 cc78 cc78 cc78
+6523 cc79 cc79 cc79 * * 265a 8ea2a6da,8ea2a6dav 5fe5 e5bfa5 5fe5 00005fe5 cc79 cc79 cc79 cc79 cc79 cc79 cc79
+6524 cc7a cc7a cc7a * * 265b 8ea2a6db,8ea2a6dbv 602d e680ad 602d 0000602d cc7a cc7a cc7a cc7a cc7a cc7a cc7a
+6525 cc7b cc7b cc7b * * 265c 8ea2a6dc,8ea2a6dcv 6026 e680a6 6026 00006026 cc7b cc7b cc7b cc7b cc7b cc7b cc7b
+6526 cc7c cc7c cc7c * * 265d 8ea2a6dd,8ea2a6ddv 6019 e68099 6019 00006019 cc7c cc7c cc7c cc7c cc7c cc7c cc7c
+6527 cc7d cc7d cc7d * * 265e 8ea2a6de,8ea2a6dev 6032 e680b2 6032 00006032 cc7d cc7d cc7d cc7d cc7d cc7d cc7d
+6528 cc7e cc7e cc7e * * 265f 8ea2a6df,8ea2a6dfv 600b e6808b 600b 0000600b cc7e cc7e cc7e cc7e cc7e cc7e cc7e
+6529 cca1 cca1 cca1 * * 2660 8ea2a6e0,8ea2a6e0v 6034 e680b4 6034 00006034 cca1 cca1 cca1 cca1 cca1 cca1 cca1
+6530 cca2 cca2 cca2 * * 2661 8ea2a6e1,8ea2a6e1v 600a e6808a 600a 0000600a cca2 cca2 cca2 cca2 cca2 cca2 cca2
+6531 cca3 cca3 cca3 * * 2662 8ea2a6e2,8ea2a6e2v 6017 e68097 6017 00006017 cca3 cca3 cca3 cca3 cca3 cca3 cca3
+6532 cca4 cca4 cca4 * * 2663 8ea2a6e3,8ea2a6e3v 6033 e680b3 6033 00006033 cca4 cca4 cca4 cca4 cca4 cca4 cca4
+6533 cca5 cca5 cca5 * * 2664 8ea2a6e4,8ea2a6e4v 601a e6809a 601a 0000601a cca5 cca5 cca5 cca5 cca5 cca5 cca5
+6534 cca6 cca6 cca6 * * 2665 8ea2a6e5,8ea2a6e5v 601e e6809e 601e 0000601e cca6 cca6 cca6 cca6 cca6 cca6 cca6
+6535 cca7 cca7 cca7 * * 2666 8ea2a6e6,8ea2a6e6v 602c e680ac 602c 0000602c cca7 cca7 cca7 cca7 cca7 cca7 cca7
+6536 cca8 cca8 cca8 * * 2667 8ea2a6e7,8ea2a6e7v 6022 e680a2 6022 00006022 cca8 cca8 cca8 cca8 cca8 cca8 cca8
+6537 cca9 cca9 cca9 * * 2668 8ea2a6e8,8ea2a6e8v 600d e6808d 600d 0000600d cca9 cca9 cca9 cca9 cca9 cca9 cca9
+6538 ccaa ccaa ccaa * * 2669 8ea2a6e9,8ea2a6e9v 6010 e68090 6010 00006010 ccaa ccaa ccaa ccaa ccaa ccaa ccaa
+6539 ccab ccab ccab * * 266a 8ea2a6ea,8ea2a6eav 602e e680ae 602e 0000602e ccab ccab ccab ccab ccab ccab ccab
+6540 ccac ccac ccac * * 266b 8ea2a6eb,8ea2a6ebv 6013 e68093 6013 00006013 ccac ccac ccac ccac ccac ccac ccac
+6541 ccad ccad ccad * * 266c 8ea2a6ec,8ea2a6ecv 6011 e68091 6011 00006011 ccad ccad ccad ccad ccad ccad ccad
+6542 ccae ccae ccae * * 266d 8ea2a6ed,8ea2a6edv 600c e6808c 600c 0000600c ccae ccae ccae ccae ccae ccae ccae
+6543 ccaf ccaf ccaf * * 266e 8ea2a6ee,8ea2a6eev 6009 e68089 6009 00006009 ccaf ccaf ccaf ccaf ccaf ccaf ccaf
+6544 ccb0 ccb0 ccb0 * * 266f 8ea2a6ef,8ea2a6efv 601c e6809c 601c 0000601c ccb0 ccb0 ccb0 ccb0 ccb0 ccb0 ccb0
+6545 ccb1 ccb1 ccb1 * * 2670 8ea2a6f0,8ea2a6f0v 6214 e68894 6214 00006214 ccb1 ccb1 ccb1 ccb1 ccb1 ccb1 ccb1
+6546 ccb2 ccb2 ccb2 * * 2671 8ea2a6f1,8ea2a6f1v 623d e688bd 623d 0000623d ccb2 ccb2 ccb2 ccb2 ccb2 ccb2 ccb2
+6547 ccb3 ccb3 ccb3 * * 2672 8ea2a6f2,8ea2a6f2v 62ad e68aad 62ad 000062ad ccb3 ccb3 ccb3 ccb3 ccb3 ccb3 ccb3
+6548 ccb4 ccb4 ccb4 * * 2673 8ea2a6f3,8ea2a6f3v 62b4 e68ab4 62b4 000062b4 ccb4 ccb4 ccb4 ccb4 ccb4 ccb4 ccb4
+6549 ccb5 ccb5 ccb5 * * 2674 8ea2a6f4,8ea2a6f4v 62d1 e68b91 62d1 000062d1 ccb5 ccb5 ccb5 ccb5 ccb5 ccb5 ccb5
+6550 ccb6 ccb6 ccb6 * * 2675 8ea2a6f5,8ea2a6f5v 62be e68abe 62be 000062be ccb6 ccb6 ccb6 ccb6 ccb6 ccb6 ccb6
+6551 ccb7 ccb7 ccb7 * * 2676 8ea2a6f6,8ea2a6f6v 62aa e68aaa 62aa 000062aa ccb7 ccb7 ccb7 ccb7 ccb7 ccb7 ccb7
+6552 ccb8 ccb8 ccb8 * * 2677 8ea2a6f7,8ea2a6f7v 62b6 e68ab6 62b6 000062b6 ccb8 ccb8 ccb8 ccb8 ccb8 ccb8 ccb8
+6553 ccb9 ccb9 ccb9 * * 2678 8ea2a6f8,8ea2a6f8v 62ca e68b8a 62ca 000062ca ccb9 ccb9 ccb9 ccb9 ccb9 ccb9 ccb9
+6554 ccba ccba ccba * * 2679 8ea2a6f9,8ea2a6f9v 62ae e68aae 62ae 000062ae ccba ccba ccba ccba ccba ccba ccba
+6555 ccbb ccbb ccbb * * 267a 8ea2a6fa,8ea2a6fav 62b3 e68ab3 62b3 000062b3 ccbb ccbb ccbb ccbb ccbb ccbb ccbb
+6556 ccbc ccbc ccbc * * 267b 8ea2a6fb,8ea2a6fbv 62af e68aaf 62af 000062af ccbc ccbc ccbc ccbc ccbc ccbc ccbc
+6557 ccbd ccbd ccbd * * 267c 8ea2a6fc,8ea2a6fcv 62bb e68abb 62bb 000062bb ccbd ccbd ccbd ccbd ccbd ccbd ccbd
+6558 ccbe ccbe ccbe * * 267d 8ea2a6fd,8ea2a6fdv 62a9 e68aa9 62a9 000062a9 ccbe ccbe ccbe ccbe ccbe ccbe ccbe
+6559 ccbf ccbf ccbf * * 267e 8ea2a6fe,8ea2a6fev 62b0 e68ab0 62b0 000062b0 ccbf ccbf ccbf ccbf ccbf ccbf ccbf
+6560 ccc0 ccc0 ccc0 * * 2721 8ea2a7a1,8ea2a7a1v 62b8 e68ab8 62b8 000062b8 ccc0 ccc0 ccc0 ccc0 ccc0 ccc0 ccc0
+6561 ccc1 ccc1 ccc1 * * 2722 8ea2a7a2,8ea2a7a2v 653d e694bd 653d 0000653d ccc1 ccc1 ccc1 ccc1 ccc1 ccc1 ccc1
+6562 ccc2 ccc2 ccc2 * * 2723 8ea2a7a3,8ea2a7a3v 65a8 e696a8 65a8 000065a8 ccc2 ccc2 ccc2 ccc2 ccc2 ccc2 ccc2
+6563 ccc3 ccc3 ccc3 * * 2724 8ea2a7a4,8ea2a7a4v 65bb e696bb 65bb 000065bb ccc3 ccc3 ccc3 ccc3 ccc3 ccc3 ccc3
+6564 ccc4 ccc4 ccc4 * * 2725 8ea2a7a5,8ea2a7a5v 6609 e69889 6609 00006609 ccc4 ccc4 ccc4 ccc4 ccc4 ccc4 ccc4
+6565 ccc5 ccc5 ccc5 * * 2726 8ea2a7a6,8ea2a7a6v 65fc e697bc 65fc 000065fc ccc5 ccc5 ccc5 ccc5 ccc5 ccc5 ccc5
+6566 ccc6 ccc6 ccc6 * * 2727 8ea2a7a7,8ea2a7a7v 6604 e69884 6604 00006604 ccc6 ccc6 ccc6 ccc6 ccc6 ccc6 ccc6
+6567 ccc7 ccc7 ccc7 * * 2728 8ea2a7a8,8ea2a7a8v 6612 e69892 6612 00006612 ccc7 ccc7 ccc7 ccc7 ccc7 ccc7 ccc7
+6568 ccc8 ccc8 ccc8 * * 2729 8ea2a7a9,8ea2a7a9v 6608 e69888 6608 00006608 ccc8 ccc8 ccc8 ccc8 ccc8 ccc8 ccc8
+6569 ccc9 ccc9 ccc9 * * 272a 8ea2a7aa,8ea2a7aav 65fb e697bb 65fb 000065fb ccc9 ccc9 ccc9 ccc9 ccc9 ccc9 ccc9
+6570 ccca ccca ccca * * 272b 8ea2a7ab,8ea2a7abv 6603 e69883 6603 00006603 ccca ccca ccca ccca ccca ccca ccca
+6571 cccb cccb cccb * * 272c 8ea2a7ac,8ea2a7acv 660b e6988b 660b 0000660b cccb cccb cccb cccb cccb cccb cccb
+6572 cccc cccc cccc * * 272d 8ea2a7ad,8ea2a7adv 660d e6988d 660d 0000660d cccc cccc cccc cccc cccc cccc cccc
+6573 cccd cccd cccd * * 272e 8ea2a7ae,8ea2a7aev 6605 e69885 6605 00006605 cccd cccd cccd cccd cccd cccd cccd
+6574 ccce ccce ccce * * 272f 8ea2a7af,8ea2a7afv 65fd e697bd 65fd 000065fd ccce ccce ccce ccce ccce ccce ccce
+6575 cccf cccf cccf * * 2730 8ea2a7b0,8ea2a7b0v 6611 e69891 6611 00006611 cccf cccf cccf cccf cccf cccf cccf
+6576 ccd0 ccd0 ccd0 * * 2731 8ea2a7b1,8ea2a7b1v 6610 e69890 6610 00006610 ccd0 ccd0 ccd0 ccd0 ccd0 ccd0 ccd0
+6577 ccd1 ccd1 ccd1 * * 2732 8ea2a7b2,8ea2a7b2v 66f6 e69bb6 66f6 000066f6 ccd1 ccd1 ccd1 ccd1 ccd1 ccd1 ccd1
+6578 ccd2 ccd2 ccd2 * * 2733 8ea2a7b3,8ea2a7b3v 670a e69c8a 670a 0000670a ccd2 ccd2 ccd2 ccd2 ccd2 ccd2 ccd2
+6579 ccd3 ccd3 ccd3 * * 2734 8ea2a7b4,8ea2a7b4v 6785 e69e85 6785 00006785 ccd3 ccd3 ccd3 ccd3 ccd3 ccd3 ccd3
+6580 ccd4 ccd4 ccd4 * * 2735 8ea2a7b5,8ea2a7b5v 676c e69dac 676c 0000676c ccd4 ccd4 ccd4 ccd4 ccd4 ccd4 ccd4
+6581 ccd5 ccd5 ccd5 * * 2736 8ea2a7b6,8ea2a7b6v 678e e69e8e 678e 0000678e ccd5 ccd5 ccd5 ccd5 ccd5 ccd5 ccd5
+6582 ccd6 ccd6 ccd6 * * 2737 8ea2a7b7,8ea2a7b7v 6792 e69e92 6792 00006792 ccd6 ccd6 ccd6 ccd6 ccd6 ccd6 ccd6
+6583 ccd7 ccd7 ccd7 * * 2738 8ea2a7b8,8ea2a7b8v 6776 e69db6 6776 00006776 ccd7 ccd7 ccd7 ccd7 ccd7 ccd7 ccd7
+6584 ccd8 ccd8 ccd8 * * 2739 8ea2a7b9,8ea2a7b9v 677b e69dbb 677b 0000677b ccd8 ccd8 ccd8 ccd8 ccd8 ccd8 ccd8
+6585 ccd9 ccd9 ccd9 * * 273a 8ea2a7ba,8ea2a7bav 6798 e69e98 6798 00006798 ccd9 ccd9 ccd9 ccd9 ccd9 ccd9 ccd9
+6586 ccda ccda ccda * * 273b 8ea2a7bb,8ea2a7bbv 6786 e69e86 6786 00006786 ccda ccda ccda ccda ccda ccda ccda
+6587 ccdb ccdb ccdb * * 273c 8ea2a7bc,8ea2a7bcv 6784 e69e84 6784 00006784 ccdb ccdb ccdb ccdb ccdb ccdb ccdb
+6588 ccdc ccdc ccdc * * 273d 8ea2a7bd,8ea2a7bdv 6774 e69db4 6774 00006774 ccdc ccdc ccdc ccdc ccdc ccdc ccdc
+6589 ccdd ccdd ccdd * * 273e 8ea2a7be,8ea2a7bev 678d e69e8d 678d 0000678d ccdd ccdd ccdd ccdd ccdd ccdd ccdd
+6590 ccde ccde ccde * * 273f 8ea2a7bf,8ea2a7bfv 678c e69e8c 678c 0000678c ccde ccde ccde ccde ccde ccde ccde
+6591 ccdf ccdf ccdf * * 2740 8ea2a7c0,8ea2a7c0v 677a e69dba 677a 0000677a ccdf ccdf ccdf ccdf ccdf ccdf ccdf
+6592 cce0 cce0 cce0 * * 2741 8ea2a7c1,8ea2a7c1v 679f e69e9f 679f 0000679f cce0 cce0 cce0 cce0 cce0 cce0 cce0
+6593 cce1 cce1 cce1 * * 2742 8ea2a7c2,8ea2a7c2v 6791 e69e91 6791 00006791 cce1 cce1 cce1 cce1 cce1 cce1 cce1
+6594 cce2 cce2 cce2 * * 2743 8ea2a7c3,8ea2a7c3v 6799 e69e99 6799 00006799 cce2 cce2 cce2 cce2 cce2 cce2 cce2
+6595 cce3 cce3 cce3 * * 2744 8ea2a7c4,8ea2a7c4v 6783 e69e83 6783 00006783 cce3 cce3 cce3 cce3 cce3 cce3 cce3
+6596 cce4 cce4 cce4 * * 2745 8ea2a7c5,8ea2a7c5v 677d e69dbd 677d 0000677d cce4 cce4 cce4 cce4 cce4 cce4 cce4
+6597 cce5 cce5 cce5 * * 2746 8ea2a7c6,8ea2a7c6v 6781 e69e81 6781 00006781 cce5 cce5 cce5 cce5 cce5 cce5 cce5
+6598 cce6 cce6 cce6 * * 2747 8ea2a7c7,8ea2a7c7v 6778 e69db8 6778 00006778 cce6 cce6 cce6 cce6 cce6 cce6 cce6
+6599 cce7 cce7 cce7 * * 2748 8ea2a7c8,8ea2a7c8v 6779 e69db9 6779 00006779 cce7 cce7 cce7 cce7 cce7 cce7 cce7
+6600 cce8 cce8 cce8 * * 2749 8ea2a7c9,8ea2a7c9v 6794 e69e94 6794 00006794 cce8 cce8 cce8 cce8 cce8 cce8 cce8
+6601 cce9 cce9 cce9 * * 274a 8ea2a7ca,8ea2a7cav 6b25 e6aca5 6b25 00006b25 cce9 cce9 cce9 cce9 cce9 cce9 cce9
+6602 ccea ccea ccea * * 274b 8ea2a7cb,8ea2a7cbv 6b80 e6ae80 6b80 00006b80 ccea ccea ccea ccea ccea ccea ccea
+6603 cceb cceb cceb * * 274c 8ea2a7cc,8ea2a7ccv 6b7e e6adbe 6b7e 00006b7e cceb cceb cceb cceb cceb cceb cceb
+6604 ccec ccec ccec * * 274d 8ea2a7cd,8ea2a7cdv 6bde e6af9e 6bde 00006bde ccec ccec ccec ccec ccec ccec ccec
+6605 cced cced cced * * 274e 8ea2a7ce,8ea2a7cev 6c1d e6b09d 6c1d 00006c1d cced cced cced cced cced cced cced
+6606 ccee ccee ccee * * 274f 8ea2a7cf,8ea2a7cfv 6c93 e6b293 6c93 00006c93 ccee ccee ccee ccee ccee ccee ccee
+6607 ccef ccef ccef * * 2750 8ea2a7d0,8ea2a7d0v 6cec e6b3ac 6cec 00006cec ccef ccef ccef ccef ccef ccef ccef
+6608 ccf0 ccf0 ccf0 * * 2751 8ea2a7d1,8ea2a7d1v 6ceb e6b3ab 6ceb 00006ceb ccf0 ccf0 ccf0 ccf0 ccf0 ccf0 ccf0
+6609 ccf1 ccf1 ccf1 * * 2752 8ea2a7d2,8ea2a7d2v 6cee e6b3ae 6cee 00006cee ccf1 ccf1 ccf1 ccf1 ccf1 ccf1 ccf1
+6610 ccf2 ccf2 ccf2 * * 2753 8ea2a7d3,8ea2a7d3v 6cd9 e6b399 6cd9 00006cd9 ccf2 ccf2 ccf2 ccf2 ccf2 ccf2 ccf2
+6611 ccf3 ccf3 ccf3 * * 2754 8ea2a7d4,8ea2a7d4v 6cb6 e6b2b6 6cb6 00006cb6 ccf3 ccf3 ccf3 ccf3 ccf3 ccf3 ccf3
+6612 ccf4 ccf4 ccf4 * * 2755 8ea2a7d5,8ea2a7d5v 6cd4 e6b394 6cd4 00006cd4 ccf4 ccf4 ccf4 ccf4 ccf4 ccf4 ccf4
+6613 ccf5 ccf5 ccf5 * * 2756 8ea2a7d6,8ea2a7d6v 6cad e6b2ad 6cad 00006cad ccf5 ccf5 ccf5 ccf5 ccf5 ccf5 ccf5
+6614 ccf6 ccf6 ccf6 * * 2757 8ea2a7d7,8ea2a7d7v 6ce7 e6b3a7 6ce7 00006ce7 ccf6 ccf6 ccf6 ccf6 ccf6 ccf6 ccf6
+6615 ccf7 ccf7 ccf7 * * 2758 8ea2a7d8,8ea2a7d8v 6cb7 e6b2b7 6cb7 00006cb7 ccf7 ccf7 ccf7 ccf7 ccf7 ccf7 ccf7
+6616 ccf8 ccf8 ccf8 * * 2759 8ea2a7d9,8ea2a7d9v 6cd0 e6b390 6cd0 00006cd0 ccf8 ccf8 ccf8 ccf8 ccf8 ccf8 ccf8
+6617 ccf9 ccf9 ccf9 * * 275a 8ea2a7da,8ea2a7dav 6cc2 e6b382 6cc2 00006cc2 ccf9 ccf9 ccf9 ccf9 ccf9 ccf9 ccf9
+6618 ccfa ccfa ccfa * * 275b 8ea2a7db,8ea2a7dbv 6cba e6b2ba 6cba 00006cba ccfa ccfa ccfa ccfa ccfa ccfa ccfa
+6619 ccfb ccfb ccfb * * 275c 8ea2a7dc,8ea2a7dcv 6cc3 e6b383 6cc3 00006cc3 ccfb ccfb ccfb ccfb ccfb ccfb ccfb
+6620 ccfc ccfc ccfc * * 275d 8ea2a7dd,8ea2a7ddv 6cc6 e6b386 6cc6 00006cc6 ccfc ccfc ccfc ccfc ccfc ccfc ccfc
+6621 ccfd ccfd ccfd * * 275e 8ea2a7de,8ea2a7dev 6ced e6b3ad 6ced 00006ced ccfd ccfd ccfd ccfd ccfd ccfd ccfd
+6622 ccfe ccfe ccfe * * 275f 8ea2a7df,8ea2a7dfv 6cf2 e6b3b2 6cf2 00006cf2 ccfe ccfe ccfe ccfe ccfe ccfe ccfe
+6623 cd40 cd40 cd40 * * 2760 8ea2a7e0,8ea2a7e0v 6cd2 e6b392 6cd2 00006cd2 cd40 cd40 cd40 cd40 cd40 cd40 cd40
+6624 cd41 cd41 cd41 * * 2761 8ea2a7e1,8ea2a7e1v 6cdd e6b39d 6cdd 00006cdd cd41 cd41 cd41 cd41 cd41 cd41 cd41
+6625 cd42 cd42 cd42 * * 2762 8ea2a7e2,8ea2a7e2v 6cb4 e6b2b4 6cb4 00006cb4 cd42 cd42 cd42 cd42 cd42 cd42 cd42
+6626 cd43 cd43 cd43 * * 2763 8ea2a7e3,8ea2a7e3v 6c8a e6b28a 6c8a 00006c8a cd43 cd43 cd43 cd43 cd43 cd43 cd43
+6627 cd44 cd44 cd44 * * 2764 8ea2a7e4,8ea2a7e4v 6c9d e6b29d 6c9d 00006c9d cd44 cd44 cd44 cd44 cd44 cd44 cd44
+6628 cd45 cd45 cd45 * * 2765 8ea2a7e5,8ea2a7e5v 6c80 e6b280 6c80 00006c80 cd45 cd45 cd45 cd45 cd45 cd45 cd45
+6629 cd46 cd46 cd46 * * 2766 8ea2a7e6,8ea2a7e6v 6cde e6b39e 6cde 00006cde cd46 cd46 cd46 cd46 cd46 cd46 cd46
+6630 cd47 cd47 cd47 * * 2767 8ea2a7e7,8ea2a7e7v 6cc0 e6b380 6cc0 00006cc0 cd47 cd47 cd47 cd47 cd47 cd47 cd47
+6631 cd48 cd48 cd48 * * 2768 8ea2a7e8,8ea2a7e8v 6d30 e6b4b0 6d30 00006d30 cd48 cd48 cd48 cd48 cd48 cd48 cd48
+6632 cd49 cd49 cd49 * * 2769 8ea2a7e9,8ea2a7e9v 6ccd e6b38d 6ccd 00006ccd cd49 cd49 cd49 cd49 cd49 cd49 cd49
+6633 cd4a cd4a cd4a * * 276a 8ea2a7ea,8ea2a7eav 6cc7 e6b387 6cc7 00006cc7 cd4a cd4a cd4a cd4a cd4a cd4a cd4a
+6634 cd4b cd4b cd4b * * 276b 8ea2a7eb,8ea2a7ebv 6cb0 e6b2b0 6cb0 00006cb0 cd4b cd4b cd4b cd4b cd4b cd4b cd4b
+6635 cd4c cd4c cd4c * * 276c 8ea2a7ec,8ea2a7ecv 6cf9 e6b3b9 6cf9 00006cf9 cd4c cd4c cd4c cd4c cd4c cd4c cd4c
+6636 cd4d cd4d cd4d * * 276d 8ea2a7ed,8ea2a7edv 6ccf e6b38f 6ccf 00006ccf cd4d cd4d cd4d cd4d cd4d cd4d cd4d
+6637 cd4e cd4e cd4e * * 276e 8ea2a7ee,8ea2a7eev 6ce9 e6b3a9 6ce9 00006ce9 cd4e cd4e cd4e cd4e cd4e cd4e cd4e
+6638 cd4f cd4f cd4f * * 276f 8ea2a7ef,8ea2a7efv 6cd1 e6b391 6cd1 00006cd1 cd4f cd4f cd4f cd4f cd4f cd4f cd4f
+6639 cd50 cd50 cd50 * * 2770 8ea2a7f0,8ea2a7f0v 7094 e78294 7094 00007094 cd50 cd50 cd50 cd50 cd50 cd50 cd50
+6640 cd51 cd51 cd51 * * 2771 8ea2a7f1,8ea2a7f1v 7098 e78298 7098 00007098 cd51 cd51 cd51 cd51 cd51 cd51 cd51
+6641 cd52 cd52 cd52 * * 2772 8ea2a7f2,8ea2a7f2v 7085 e78285 7085 00007085 cd52 cd52 cd52 cd52 cd52 cd52 cd52
+6642 cd53 cd53 cd53 * * 2773 8ea2a7f3,8ea2a7f3v 7093 e78293 7093 00007093 cd53 cd53 cd53 cd53 cd53 cd53 cd53
+6643 cd54 cd54 cd54 * * 2774 8ea2a7f4,8ea2a7f4v 7086 e78286 7086 00007086 cd54 cd54 cd54 cd54 cd54 cd54 cd54
+6644 cd55 cd55 cd55 * * 2775 8ea2a7f5,8ea2a7f5v 7084 e78284 7084 00007084 cd55 cd55 cd55 cd55 cd55 cd55 cd55
+6645 cd56 cd56 cd56 * * 2776 8ea2a7f6,8ea2a7f6v 7091 e78291 7091 00007091 cd56 cd56 cd56 cd56 cd56 cd56 cd56
+6646 cd57 cd57 cd57 * * 2777 8ea2a7f7,8ea2a7f7v 7096 e78296 7096 00007096 cd57 cd57 cd57 cd57 cd57 cd57 cd57
+6647 cd58 cd58 cd58 * * 2778 8ea2a7f8,8ea2a7f8v 7082 e78282 7082 00007082 cd58 cd58 cd58 cd58 cd58 cd58 cd58
+6648 cd59 cd59 cd59 * * 2779 8ea2a7f9,8ea2a7f9v 709a e7829a 709a 0000709a cd59 cd59 cd59 cd59 cd59 cd59 cd59
+6649 cd5a cd5a cd5a * * 277a 8ea2a7fa,8ea2a7fav 7083 e78283 7083 00007083 cd5a cd5a cd5a cd5a cd5a cd5a cd5a
+6650 cd5b cd5b cd5b * * 277b 8ea2a7fb,8ea2a7fbv 726a e789aa 726a 0000726a cd5b cd5b cd5b cd5b cd5b cd5b cd5b
+6651 cd5c cd5c cd5c * * 277c 8ea2a7fc,8ea2a7fcv 72d6 e78b96 72d6 000072d6 cd5c cd5c cd5c cd5c cd5c cd5c cd5c
+6652 cd5d cd5d cd5d * * 277d 8ea2a7fd,8ea2a7fdv 72cb e78b8b 72cb 000072cb cd5d cd5d cd5d cd5d cd5d cd5d cd5d
+6653 cd5e cd5e cd5e * * 277e 8ea2a7fe,8ea2a7fev 72d8 e78b98 72d8 000072d8 cd5e cd5e cd5e cd5e cd5e cd5e cd5e
+6654 cd5f cd5f cd5f * * 2821 8ea2a8a1,8ea2a8a1v 72c9 e78b89 72c9 000072c9 cd5f cd5f cd5f cd5f cd5f cd5f cd5f
+6655 cd60 cd60 cd60 * * 2822 8ea2a8a2,8ea2a8a2v 72dc e78b9c 72dc 000072dc cd60 cd60 cd60 cd60 cd60 cd60 cd60
+6656 cd61 cd61 cd61 * * 2823 8ea2a8a3,8ea2a8a3v 72d2 e78b92 72d2 000072d2 cd61 cd61 cd61 cd61 cd61 cd61 cd61
+6657 cd62 cd62 cd62 * * 2824 8ea2a8a4,8ea2a8a4v 72d4 e78b94 72d4 000072d4 cd62 cd62 cd62 cd62 cd62 cd62 cd62
+6658 cd63 cd63 cd63 * * 2825 8ea2a8a5,8ea2a8a5v 72da e78b9a 72da 000072da cd63 cd63 cd63 cd63 cd63 cd63 cd63
+6659 cd64 cd64 cd64 * * 2826 8ea2a8a6,8ea2a8a6v 72cc e78b8c 72cc 000072cc cd64 cd64 cd64 cd64 cd64 cd64 cd64
+6660 cd65 cd65 cd65 * * 2827 8ea2a8a7,8ea2a8a7v 72d1 e78b91 72d1 000072d1 cd65 cd65 cd65 cd65 cd65 cd65 cd65
+6661 cd66 cd66 cd66 * * 2828 8ea2a8a8,8ea2a8a8v 73a4 e78ea4 73a4 000073a4 cd66 cd66 cd66 cd66 cd66 cd66 cd66
+6662 cd67 cd67 cd67 * * 2829 8ea2a8a9,8ea2a8a9v 73a1 e78ea1 73a1 000073a1 cd67 cd67 cd67 cd67 cd67 cd67 cd67
+6663 cd68 cd68 cd68 * * 282a 8ea2a8aa,8ea2a8aav 73ad e78ead 73ad 000073ad cd68 cd68 cd68 cd68 cd68 cd68 cd68
+6664 cd69 cd69 cd69 * * 282b 8ea2a8ab,8ea2a8abv 73a6 e78ea6 73a6 000073a6 cd69 cd69 cd69 cd69 cd69 cd69 cd69
+6665 cd6a cd6a cd6a * * 282c 8ea2a8ac,8ea2a8acv 73a2 e78ea2 73a2 000073a2 cd6a cd6a cd6a cd6a cd6a cd6a cd6a
+6666 cd6b cd6b cd6b * * 282d 8ea2a8ad,8ea2a8adv 73a0 e78ea0 73a0 000073a0 cd6b cd6b cd6b cd6b cd6b cd6b cd6b
+6667 cd6c cd6c cd6c * * 282e 8ea2a8ae,8ea2a8aev 73ac e78eac 73ac 000073ac cd6c cd6c cd6c cd6c cd6c cd6c cd6c
+6668 cd6d cd6d cd6d * * 282f 8ea2a8af,8ea2a8afv 739d e78e9d 739d 0000739d cd6d cd6d cd6d cd6d cd6d cd6d cd6d
+6669 cd6e cd6e cd6e * * 2830 8ea2a8b0,8ea2a8b0v 74dd e7939d 74dd 000074dd cd6e cd6e cd6e cd6e cd6e cd6e cd6e
+6670 cd6f cd6f cd6f * * 2831 8ea2a8b1,8ea2a8b1v 74e8 e793a8 74e8 000074e8 cd6f cd6f cd6f cd6f cd6f cd6f cd6f
+6671 cd70 cd70 cd70 * * 2832 8ea2a8b2,8ea2a8b2v 753f e794bf 753f 0000753f cd70 cd70 cd70 cd70 cd70 cd70 cd70
+6672 cd71 cd71 cd71 * * 2833 8ea2a8b3,8ea2a8b3v 7540 e79580 7540 00007540 cd71 cd71 cd71 cd71 cd71 cd71 cd71
+6673 cd72 cd72 cd72 * * 2834 8ea2a8b4,8ea2a8b4v 753e e794be 753e 0000753e cd72 cd72 cd72 cd72 cd72 cd72 cd72
+6674 cd73 cd73 cd73 * * 2835 8ea2a8b5,8ea2a8b5v 758c e7968c 758c 0000758c cd73 cd73 cd73 cd73 cd73 cd73 cd73
+6675 cd74 cd74 cd74 * * 2836 8ea2a8b6,8ea2a8b6v 7598 e79698 7598 00007598 cd74 cd74 cd74 cd74 cd74 cd74 cd74
+6676 cd75 cd75 cd75 * * 2837 8ea2a8b7,8ea2a8b7v 76af e79aaf 76af 000076af cd75 cd75 cd75 cd75 cd75 cd75 cd75
+6677 cd76 cd76 cd76 * * 2838 8ea2a8b8,8ea2a8b8v 76f3 e79bb3 76f3 000076f3 cd76 cd76 cd76 cd76 cd76 cd76 cd76
+6678 cd77 cd77 cd77 * * 2839 8ea2a8b9,8ea2a8b9v 76f1 e79bb1 76f1 000076f1 cd77 cd77 cd77 cd77 cd77 cd77 cd77
+6679 cd78 cd78 cd78 * * 283a 8ea2a8ba,8ea2a8bav 76f0 e79bb0 76f0 000076f0 cd78 cd78 cd78 cd78 cd78 cd78 cd78
+6680 cd79 cd79 cd79 * * 283b 8ea2a8bb,8ea2a8bbv 76f5 e79bb5 76f5 000076f5 cd79 cd79 cd79 cd79 cd79 cd79 cd79
+6681 cd7a cd7a cd7a * * 283c 8ea2a8bc,8ea2a8bcv 77f8 e79fb8 77f8 000077f8 cd7a cd7a cd7a cd7a cd7a cd7a cd7a
+6682 cd7b cd7b cd7b * * 283d 8ea2a8bd,8ea2a8bdv 77fc e79fbc 77fc 000077fc cd7b cd7b cd7b cd7b cd7b cd7b cd7b
+6683 cd7c cd7c cd7c * * 283e 8ea2a8be,8ea2a8bev 77f9 e79fb9 77f9 000077f9 cd7c cd7c cd7c cd7c cd7c cd7c cd7c
+6684 cd7d cd7d cd7d * * 283f 8ea2a8bf,8ea2a8bfv 77fb e79fbb 77fb 000077fb cd7d cd7d cd7d cd7d cd7d cd7d cd7d
+6685 cd7e cd7e cd7e * * 2840 8ea2a8c0,8ea2a8c0v 77fa e79fba 77fa 000077fa cd7e cd7e cd7e cd7e cd7e cd7e cd7e
+6686 cda1 cda1 cda1 * * 2841 8ea2a8c1,8ea2a8c1v 77f7 e79fb7 77f7 000077f7 cda1 cda1 cda1 cda1 cda1 cda1 cda1
+6687 cda2 cda2 cda2 * * 2842 8ea2a8c2,8ea2a8c2v 7942 e7a582 7942 00007942 cda2 cda2 cda2 cda2 cda2 cda2 cda2
+6688 cda3 cda3 cda3 * * 2843 8ea2a8c3,8ea2a8c3v 793f e7a4bf 793f 0000793f cda3 cda3 cda3 cda3 cda3 cda3 cda3
+6689 cda4 cda4 cda4 * * 2844 8ea2a8c4,8ea2a8c4v 79c5 e7a785 79c5 000079c5 cda4 cda4 cda4 cda4 cda4 cda4 cda4
+6690 cda5 cda5 cda5 * * 2845 8ea2a8c5,8ea2a8c5v 7a78 e7a9b8 7a78 00007a78 cda5 cda5 cda5 cda5 cda5 cda5 cda5
+6691 cda6 cda6 cda6 * * 2846 8ea2a8c6,8ea2a8c6v 7a7b e7a9bb 7a7b 00007a7b cda6 cda6 cda6 cda6 cda6 cda6 cda6
+6692 cda7 cda7 cda7 * * 2847 8ea2a8c7,8ea2a8c7v 7afb e7abbb 7afb 00007afb cda7 cda7 cda7 cda7 cda7 cda7 cda7
+6693 cda8 cda8 cda8 * * 2848 8ea2a8c8,8ea2a8c8v 7c75 e7b1b5 7c75 00007c75 cda8 cda8 cda8 cda8 cda8 cda8 cda8
+6694 cda9 cda9 cda9 * * 2849 8ea2a8c9,8ea2a8c9v 7cfd e7b3bd 7cfd 00007cfd cda9 cda9 cda9 cda9 cda9 cda9 cda9
+6695 cdaa cdaa cdaa * * 284a 8ea2a8ca,8ea2a8cav 8035 e880b5 8035 00008035 cdaa cdaa cdaa cdaa cdaa cdaa cdaa
+6696 cdab cdab cdab * * 284b 8ea2a8cb,8ea2a8cbv 808f e8828f 808f 0000808f cdab cdab cdab cdab cdab cdab cdab
+6697 cdac cdac cdac * * 284c 8ea2a8cc,8ea2a8ccv 80ae e882ae 80ae 000080ae cdac cdac cdac cdac cdac cdac cdac
+6698 cdad cdad cdad * * 284d 8ea2a8cd,8ea2a8cdv 80a3 e882a3 80a3 000080a3 cdad cdad cdad cdad cdad cdad cdad
+6699 cdae cdae cdae * * 284e 8ea2a8ce,8ea2a8cev 80b8 e882b8 80b8 000080b8 cdae cdae cdae cdae cdae cdae cdae
+6700 cdaf cdaf cdaf * * 284f 8ea2a8cf,8ea2a8cfv 80b5 e882b5 80b5 000080b5 cdaf cdaf cdaf cdaf cdaf cdaf cdaf
+6701 cdb0 cdb0 cdb0 * * 2850 8ea2a8d0,8ea2a8d0v 80ad e882ad 80ad 000080ad cdb0 cdb0 cdb0 cdb0 cdb0 cdb0 cdb0
+6702 cdb1 cdb1 cdb1 * * 2851 8ea2a8d1,8ea2a8d1v 8220 e888a0 8220 00008220 cdb1 cdb1 cdb1 cdb1 cdb1 cdb1 cdb1
+6703 cdb2 cdb2 cdb2 * * 2852 8ea2a8d2,8ea2a8d2v 82a0 e88aa0 82a0 000082a0 cdb2 cdb2 cdb2 cdb2 cdb2 cdb2 cdb2
+6704 cdb3 cdb3 cdb3 * * 2853 8ea2a8d3,8ea2a8d3v 82c0 e88b80 82c0 000082c0 cdb3 cdb3 cdb3 cdb3 cdb3 cdb3 cdb3
+6705 cdb4 cdb4 cdb4 * * 2854 8ea2a8d4,8ea2a8d4v 82ab e88aab 82ab 000082ab cdb4 cdb4 cdb4 cdb4 cdb4 cdb4 cdb4
+6706 cdb5 cdb5 cdb5 * * 2855 8ea2a8d5,8ea2a8d5v 829a e88a9a 829a 0000829a cdb5 cdb5 cdb5 cdb5 cdb5 cdb5 cdb5
+6707 cdb6 cdb6 cdb6 * * 2856 8ea2a8d6,8ea2a8d6v 8298 e88a98 8298 00008298 cdb6 cdb6 cdb6 cdb6 cdb6 cdb6 cdb6
+6708 cdb7 cdb7 cdb7 * * 2857 8ea2a8d7,8ea2a8d7v 829b e88a9b 829b 0000829b cdb7 cdb7 cdb7 cdb7 cdb7 cdb7 cdb7
+6709 cdb8 cdb8 cdb8 * * 2858 8ea2a8d8,8ea2a8d8v 82b5 e88ab5 82b5 000082b5 cdb8 cdb8 cdb8 cdb8 cdb8 cdb8 cdb8
+6710 cdb9 cdb9 cdb9 * * 2859 8ea2a8d9,8ea2a8d9v 82a7 e88aa7 82a7 000082a7 cdb9 cdb9 cdb9 cdb9 cdb9 cdb9 cdb9
+6711 cdba cdba cdba * * 285a 8ea2a8da,8ea2a8dav 82ae e88aae 82ae 000082ae cdba cdba cdba cdba cdba cdba cdba
+6712 cdbb cdbb cdbb * * 285b 8ea2a8db,8ea2a8dbv 82bc e88abc 82bc 000082bc cdbb cdbb cdbb cdbb cdbb cdbb cdbb
+6713 cdbc cdbc cdbc * * 285c 8ea2a8dc,8ea2a8dcv 829e e88a9e 829e 0000829e cdbc cdbc cdbc cdbc cdbc cdbc cdbc
+6714 cdbd cdbd cdbd * * 285d 8ea2a8dd,8ea2a8ddv 82ba e88aba 82ba 000082ba cdbd cdbd cdbd cdbd cdbd cdbd cdbd
+6715 cdbe cdbe cdbe * * 285e 8ea2a8de,8ea2a8dev 82b4 e88ab4 82b4 000082b4 cdbe cdbe cdbe cdbe cdbe cdbe cdbe
+6716 cdbf cdbf cdbf * * 285f 8ea2a8df,8ea2a8dfv 82a8 e88aa8 82a8 000082a8 cdbf cdbf cdbf cdbf cdbf cdbf cdbf
+6717 cdc0 cdc0 cdc0 * * 2860 8ea2a8e0,8ea2a8e0v 82a1 e88aa1 82a1 000082a1 cdc0 cdc0 cdc0 cdc0 cdc0 cdc0 cdc0
+6718 cdc1 cdc1 cdc1 * * 2861 8ea2a8e1,8ea2a8e1v 82a9 e88aa9 82a9 000082a9 cdc1 cdc1 cdc1 cdc1 cdc1 cdc1 cdc1
+6719 cdc2 cdc2 cdc2 * * 2862 8ea2a8e2,8ea2a8e2v 82c2 e88b82 82c2 000082c2 cdc2 cdc2 cdc2 cdc2 cdc2 cdc2 cdc2
+6720 cdc3 cdc3 cdc3 * * 2863 8ea2a8e3,8ea2a8e3v 82a4 e88aa4 82a4 000082a4 cdc3 cdc3 cdc3 cdc3 cdc3 cdc3 cdc3
+6721 cdc4 cdc4 cdc4 * * 2864 8ea2a8e4,8ea2a8e4v 82c3 e88b83 82c3 000082c3 cdc4 cdc4 cdc4 cdc4 cdc4 cdc4 cdc4
+6722 cdc5 cdc5 cdc5 * * 2865 8ea2a8e5,8ea2a8e5v 82b6 e88ab6 82b6 000082b6 cdc5 cdc5 cdc5 cdc5 cdc5 cdc5 cdc5
+6723 cdc6 cdc6 cdc6 * * 2866 8ea2a8e6,8ea2a8e6v 82a2 e88aa2 82a2 000082a2 cdc6 cdc6 cdc6 cdc6 cdc6 cdc6 cdc6
+6724 cdc7 cdc7 cdc7 * * 2867 8ea2a8e7,8ea2a8e7v 8670 e899b0 8670 00008670 cdc7 cdc7 cdc7 cdc7 cdc7 cdc7 cdc7
+6725 cdc8 cdc8 cdc8 * * 2868 8ea2a8e8,8ea2a8e8v 866f e899af 866f 0000866f cdc8 cdc8 cdc8 cdc8 cdc8 cdc8 cdc8
+6726 cdc9 cdc9 cdc9 * * 2869 8ea2a8e9,8ea2a8e9v 866d e899ad 866d 0000866d cdc9 cdc9 cdc9 cdc9 cdc9 cdc9 cdc9
+6727 cdca cdca cdca * * 286a 8ea2a8ea,8ea2a8eav 866e e899ae 866e 0000866e cdca cdca cdca cdca cdca cdca cdca
+6728 cdcb cdcb cdcb * * 286b 8ea2a8eb,8ea2a8ebv 8c56 e8b196 8c56 00008c56 cdcb cdcb cdcb cdcb cdcb cdcb cdcb
+6729 cdcc cdcc cdcc * * 286c 8ea2a8ec,8ea2a8ecv 8fd2 e8bf92 8fd2 00008fd2 cdcc cdcc cdcc cdcc cdcc cdcc cdcc
+6730 cdcd cdcd cdcd * * 286d 8ea2a8ed,8ea2a8edv 8fcb e8bf8b 8fcb 00008fcb cdcd cdcd cdcd cdcd cdcd cdcd cdcd
+6731 cdce cdce cdce * * 286e 8ea2a8ee,8ea2a8eev 8fd3 e8bf93 8fd3 00008fd3 cdce cdce cdce cdce cdce cdce cdce
+6732 cdcf cdcf cdcf * * 286f 8ea2a8ef,8ea2a8efv 8fcd e8bf8d 8fcd 00008fcd cdcf cdcf cdcf cdcf cdcf cdcf cdcf
+6733 cdd0 cdd0 cdd0 * * 2870 8ea2a8f0,8ea2a8f0v 8fd6 e8bf96 8fd6 00008fd6 cdd0 cdd0 cdd0 cdd0 cdd0 cdd0 cdd0
+6734 cdd1 cdd1 cdd1 * * 2871 8ea2a8f1,8ea2a8f1v 8fd5 e8bf95 8fd5 00008fd5 cdd1 cdd1 cdd1 cdd1 cdd1 cdd1 cdd1
+6735 cdd2 cdd2 cdd2 * * 2872 8ea2a8f2,8ea2a8f2v 8fd7 e8bf97 8fd7 00008fd7 cdd2 cdd2 cdd2 cdd2 cdd2 cdd2 cdd2
+6736 cdd3 cdd3 cdd3 * * 2873 8ea2a8f3,8ea2a8f3v 90b2 e982b2 90b2 000090b2 cdd3 cdd3 cdd3 cdd3 cdd3 cdd3 cdd3
+6737 cdd4 cdd4 cdd4 * * 2874 8ea2a8f4,8ea2a8f4v 90b4 e982b4 90b4 000090b4 cdd4 cdd4 cdd4 cdd4 cdd4 cdd4 cdd4
+6738 cdd5 cdd5 cdd5 * * 2875 8ea2a8f5,8ea2a8f5v 90af e982af 90af 000090af cdd5 cdd5 cdd5 cdd5 cdd5 cdd5 cdd5
+6739 cdd6 cdd6 cdd6 * * 2876 8ea2a8f6,8ea2a8f6v 90b3 e982b3 90b3 000090b3 cdd6 cdd6 cdd6 cdd6 cdd6 cdd6 cdd6
+6740 cdd7 cdd7 cdd7 * * 2877 8ea2a8f7,8ea2a8f7v 90b0 e982b0 90b0 000090b0 cdd7 cdd7 cdd7 cdd7 cdd7 cdd7 cdd7
+6741 cdd8 cdd8 cdd8 * * 2878 8ea2a8f8,8ea2a8f8v 9639 e998b9 9639 00009639 cdd8 cdd8 cdd8 cdd8 cdd8 cdd8 cdd8
+6742 cdd9 cdd9 cdd9 * * 2879 8ea2a8f9,8ea2a8f9v 963d e998bd 963d 0000963d cdd9 cdd9 cdd9 cdd9 cdd9 cdd9 cdd9
+6743 cdda cdda cdda * * 287a 8ea2a8fa,8ea2a8fav 963c e998bc 963c 0000963c cdda cdda cdda cdda cdda cdda cdda
+6744 cddb cddb cddb * * 287b 8ea2a8fb,8ea2a8fbv 963a e998ba 963a 0000963a cddb cddb cddb cddb cddb cddb cddb
+6745 cddc cddc cddc * * 287c 8ea2a8fc,8ea2a8fcv 9643 e99983 9643 00009643 cddc cddc cddc cddc cddc cddc cddc
+6746 cddd cddd cddd * * 287d 8ea2a8fd,8ea2a8fdv 4fcd e4bf8d 4fcd 00004fcd cddd cddd cddd cddd cddd cddd cddd
+6747 cdde cdde cdde * * 287e 8ea2a8fe,8ea2a8fev 4fc5 e4bf85 4fc5 00004fc5 cdde cdde cdde cdde cdde cdde cdde
+6748 cddf cddf cddf * * 2921 8ea2a9a1,8ea2a9a1v 4fd3 e4bf93 4fd3 00004fd3 cddf cddf cddf cddf cddf cddf cddf
+6749 cde0 cde0 cde0 * * 2922 8ea2a9a2,8ea2a9a2v 4fb2 e4beb2 4fb2 00004fb2 cde0 cde0 cde0 cde0 cde0 cde0 cde0
+6750 cde1 cde1 cde1 * * 2923 8ea2a9a3,8ea2a9a3v 4fc9 e4bf89 4fc9 00004fc9 cde1 cde1 cde1 cde1 cde1 cde1 cde1
+6751 cde2 cde2 cde2 * * 2924 8ea2a9a4,8ea2a9a4v 4fcb e4bf8b 4fcb 00004fcb cde2 cde2 cde2 cde2 cde2 cde2 cde2
+6752 cde3 cde3 cde3 * * 2925 8ea2a9a5,8ea2a9a5v 4fc1 e4bf81 4fc1 00004fc1 cde3 cde3 cde3 cde3 cde3 cde3 cde3
+6753 cde4 cde4 cde4 * * 2926 8ea2a9a6,8ea2a9a6v 4fd4 e4bf94 4fd4 00004fd4 cde4 cde4 cde4 cde4 cde4 cde4 cde4
+6754 cde5 cde5 cde5 * * 2927 8ea2a9a7,8ea2a9a7v 4fdc e4bf9c 4fdc 00004fdc cde5 cde5 cde5 cde5 cde5 cde5 cde5
+6755 cde6 cde6 cde6 * * 2928 8ea2a9a8,8ea2a9a8v 4fd9 e4bf99 4fd9 00004fd9 cde6 cde6 cde6 cde6 cde6 cde6 cde6
+6756 cde7 cde7 cde7 * * 2929 8ea2a9a9,8ea2a9a9v 4fbb e4bebb,eeaeba 4fbb,ebba 00004fbb,0000ebba 9c53,cde7 cde7 cde7 cde7 cde7 cde7 9c53,cde7
+6757 cde8 cde8 cde8 * * 292a 8ea2a9aa,8ea2a9aav 4fb3 e4beb3 4fb3 00004fb3 cde8 cde8 cde8 cde8 cde8 cde8 cde8
+6758 cde9 cde9 cde9 * * 292b 8ea2a9ab,8ea2a9abv 4fdb e4bf9b 4fdb 00004fdb cde9 cde9 cde9 cde9 cde9 cde9 cde9
+6759 cdea cdea cdea * * 292c 8ea2a9ac,8ea2a9acv 4fc7 e4bf87 4fc7 00004fc7 cdea cdea cdea cdea cdea cdea cdea
+6760 cdeb cdeb cdeb * * 292d 8ea2a9ad,8ea2a9adv 4fd6 e4bf96 4fd6 00004fd6 cdeb cdeb cdeb cdeb cdeb cdeb cdeb
+6761 cdec cdec cdec * * 292e 8ea2a9ae,8ea2a9aev 4fba e4beba 4fba 00004fba cdec cdec cdec cdec cdec cdec cdec
+6762 cded cded cded * * 292f 8ea2a9af,8ea2a9afv 4fc0 e4bf80 4fc0 00004fc0 cded cded cded cded cded cded cded
+6763 cdee cdee cdee * * 2930 8ea2a9b0,8ea2a9b0v 4fb9 e4beb9 4fb9 00004fb9 cdee cdee cdee cdee cdee cdee cdee
+6764 cdef cdef cdef * * 2931 8ea2a9b1,8ea2a9b1v 4fec e4bfac 4fec 00004fec cdef cdef cdef cdef cdef cdef cdef
+6765 cdf0 cdf0 cdf0 * * 2932 8ea2a9b2,8ea2a9b2v 5244 e58984 5244 00005244 cdf0 cdf0 cdf0 cdf0 cdf0 cdf0 cdf0
+6766 cdf1 cdf1 cdf1 * * 2933 8ea2a9b3,8ea2a9b3v 5249 e58989 5249 00005249 cdf1 cdf1 cdf1 cdf1 cdf1 cdf1 cdf1
+6767 cdf2 cdf2 cdf2 * * 2934 8ea2a9b4,8ea2a9b4v 52c0 e58b80 52c0 000052c0 cdf2 cdf2 cdf2 cdf2 cdf2 cdf2 cdf2
+6768 cdf3 cdf3 cdf3 * * 2935 8ea2a9b5,8ea2a9b5v 52c2 e58b82 52c2 000052c2 cdf3 cdf3 cdf3 cdf3 cdf3 cdf3 cdf3
+6769 cdf4 cdf4 cdf4 * * 2936 8ea2a9b6,8ea2a9b6v 533d e58cbd 533d 0000533d cdf4 cdf4 cdf4 cdf4 cdf4 cdf4 cdf4
+6770 cdf5 cdf5 cdf5 * * 2937 8ea2a9b7,8ea2a9b7v 537c e58dbc 537c 0000537c cdf5 cdf5 cdf5 cdf5 cdf5 cdf5 cdf5
+6771 cdf6 cdf6 cdf6 * * 2938 8ea2a9b8,8ea2a9b8v 5397 e58e97 5397 00005397 cdf6 cdf6 cdf6 cdf6 cdf6 cdf6 cdf6
+6772 cdf7 cdf7 cdf7 * * 2939 8ea2a9b9,8ea2a9b9v 5396 e58e96 5396 00005396 cdf7 cdf7 cdf7 cdf7 cdf7 cdf7 cdf7
+6773 cdf8 cdf8 cdf8 * * 293a 8ea2a9ba,8ea2a9bav 5399 e58e99 5399 00005399 cdf8 cdf8 cdf8 cdf8 cdf8 cdf8 cdf8
+6774 cdf9 cdf9 cdf9 * * 293b 8ea2a9bb,8ea2a9bbv 5398 e58e98 5398 00005398 cdf9 cdf9 cdf9 cdf9 cdf9 cdf9 cdf9
+6775 cdfa cdfa cdfa * * 293c 8ea2a9bc,8ea2a9bcv 54ba e592ba 54ba 000054ba cdfa cdfa cdfa cdfa cdfa cdfa cdfa
+6776 cdfb cdfb cdfb * * 293d 8ea2a9bd,8ea2a9bdv 54a1 e592a1 54a1 000054a1 cdfb cdfb cdfb cdfb cdfb cdfb cdfb
+6777 cdfc cdfc cdfc * * 293e 8ea2a9be,8ea2a9bev 54ad e592ad 54ad 000054ad cdfc cdfc cdfc cdfc cdfc cdfc cdfc
+6778 cdfd cdfd cdfd * * 293f 8ea2a9bf,8ea2a9bfv 54a5 e592a5 54a5 000054a5 cdfd cdfd cdfd cdfd cdfd cdfd cdfd
+6779 cdfe cdfe cdfe * * 2940 8ea2a9c0,8ea2a9c0v 54cf e5938f 54cf 000054cf cdfe cdfe cdfe cdfe cdfe cdfe cdfe
+6780 ce40 ce40 ce40 * * 2941 8ea2a9c1,8ea2a9c1v 54c3 e59383 54c3 000054c3 ce40 ce40 ce40 ce40 ce40 ce40 ce40
+6781 ce41 ce41 ce41 * * 2942 8ea2a9c2,8ea2a9c2v 830d e88c8d 830d 0000830d ce41 ce41 ce41 ce41 ce41 ce41 ce41
+6782 ce42 ce42 ce42 * * 2943 8ea2a9c3,8ea2a9c3v 54b7 e592b7 54b7 000054b7 ce42 ce42 ce42 ce42 ce42 ce42 ce42
+6783 ce43 ce43 ce43 * * 2944 8ea2a9c4,8ea2a9c4v 54ae e592ae 54ae 000054ae ce43 ce43 ce43 ce43 ce43 ce43 ce43
+6784 ce44 ce44 ce44 * * 2945 8ea2a9c5,8ea2a9c5v 54d6 e59396 54d6 000054d6 ce44 ce44 ce44 ce44 ce44 ce44 ce44
+6785 ce45 ce45 ce45 * * 2946 8ea2a9c6,8ea2a9c6v 54b6 e592b6 54b6 000054b6 ce45 ce45 ce45 ce45 ce45 ce45 ce45
+6786 ce46 ce46 ce46 * * 2947 8ea2a9c7,8ea2a9c7v 54c5 e59385 54c5 000054c5 ce46 ce46 ce46 ce46 ce46 ce46 ce46
+6787 ce47 ce47 ce47 * * 2948 8ea2a9c8,8ea2a9c8v 54c6 e59386 54c6 000054c6 ce47 ce47 ce47 ce47 ce47 ce47 ce47
+6788 ce48 ce48 ce48 * * 2949 8ea2a9c9,8ea2a9c9v 54a0 e592a0 54a0 000054a0 ce48 ce48 ce48 ce48 ce48 ce48 ce48
+6789 ce49 ce49 ce49 * * 294a 8ea2a9ca,8ea2a9cav 5470 e591b0 5470 00005470 ce49 ce49 ce49 ce49 ce49 ce49 ce49
+6790 ce4a ce4a ce4a * * 294b 8ea2a9cb,8ea2a9cbv 54bc e592bc 54bc 000054bc ce4a ce4a ce4a ce4a ce4a ce4a ce4a
+6791 ce4b ce4b ce4b * * 294c 8ea2a9cc,8ea2a9ccv 54a2 e592a2 54a2 000054a2 ce4b ce4b ce4b ce4b ce4b ce4b ce4b
+6792 ce4c ce4c ce4c * * 294d 8ea2a9cd,8ea2a9cdv 54be e592be 54be 000054be ce4c ce4c ce4c ce4c ce4c ce4c ce4c
+6793 ce4d ce4d ce4d * * 294e 8ea2a9ce,8ea2a9cev 5472 e591b2 5472 00005472 ce4d ce4d ce4d ce4d ce4d ce4d ce4d
+6794 ce4e ce4e ce4e * * 294f 8ea2a9cf,8ea2a9cfv 54de e5939e 54de 000054de ce4e ce4e ce4e ce4e ce4e ce4e ce4e
+6795 ce4f ce4f ce4f * * 2950 8ea2a9d0,8ea2a9d0v 54b0 e592b0 54b0 000054b0 ce4f ce4f ce4f ce4f ce4f ce4f ce4f
+6796 ce50 ce50 ce50 * * 2951 8ea2a9d1,8ea2a9d1v 57b5 e59eb5 57b5 000057b5 ce50 ce50 ce50 ce50 ce50 ce50 ce50
+6797 ce51 ce51 ce51 * * 2952 8ea2a9d2,8ea2a9d2v 579e e59e9e 579e 0000579e ce51 ce51 ce51 ce51 ce51 ce51 ce51
+6798 ce52 ce52 ce52 * * 2953 8ea2a9d3,8ea2a9d3v 579f e59e9f 579f 0000579f ce52 ce52 ce52 ce52 ce52 ce52 ce52
+6799 ce53 ce53 ce53 * * 2954 8ea2a9d4,8ea2a9d4v 57a4 e59ea4 57a4 000057a4 ce53 ce53 ce53 ce53 ce53 ce53 ce53
+6800 ce54 ce54 ce54 * * 2955 8ea2a9d5,8ea2a9d5v 578c e59e8c 578c 0000578c ce54 ce54 ce54 ce54 ce54 ce54 ce54
+6801 ce55 ce55 ce55 * * 2956 8ea2a9d6,8ea2a9d6v 5797 e59e97 5797 00005797 ce55 ce55 ce55 ce55 ce55 ce55 ce55
+6802 ce56 ce56 ce56 * * 2957 8ea2a9d7,8ea2a9d7v 579d e59e9d 579d 0000579d ce56 ce56 ce56 ce56 ce56 ce56 ce56
+6803 ce57 ce57 ce57 * * 2958 8ea2a9d8,8ea2a9d8v 579b e59e9b 579b 0000579b ce57 ce57 ce57 ce57 ce57 ce57 ce57
+6804 ce58 ce58 ce58 * * 2959 8ea2a9d9,8ea2a9d9v 5794 e59e94 5794 00005794 ce58 ce58 ce58 ce58 ce58 ce58 ce58
+6805 ce59 ce59 ce59 * * 295a 8ea2a9da,8ea2a9dav 5798 e59e98 5798 00005798 ce59 ce59 ce59 ce59 ce59 ce59 ce59
+6806 ce5a ce5a ce5a * * 295b 8ea2a9db,8ea2a9dbv 578f e59e8f 578f 0000578f ce5a ce5a ce5a ce5a ce5a ce5a ce5a
+6807 ce5b ce5b ce5b * * 295c 8ea2a9dc,8ea2a9dcv 5799 e59e99 5799 00005799 ce5b ce5b ce5b ce5b ce5b ce5b ce5b
+6808 ce5c ce5c ce5c * * 295d 8ea2a9dd,8ea2a9ddv 57a5 e59ea5 57a5 000057a5 ce5c ce5c ce5c ce5c ce5c ce5c ce5c
+6809 ce5d ce5d ce5d * * 295e 8ea2a9de,8ea2a9dev 579a e59e9a 579a 0000579a ce5d ce5d ce5d ce5d ce5d ce5d ce5d
+6810 ce5e ce5e ce5e * * 295f 8ea2a9df,8ea2a9dfv 5795 e59e95 5795 00005795 ce5e ce5e ce5e ce5e ce5e ce5e ce5e
+6811 ce5f ce5f ce5f * * 2960 8ea2a9e0,8ea2a9e0v 58f4 e5a3b4 58f4 000058f4 ce5f ce5f ce5f ce5f ce5f ce5f ce5f
+6812 ce60 ce60 ce60 * * 2961 8ea2a9e1,8ea2a9e1v 590d e5a48d 590d 0000590d ce60 ce60 ce60 ce60 ce60 ce60 ce60
+6813 ce61 ce61 ce61 * * 2962 8ea2a9e2,8ea2a9e2v 5953 e5a593 5953 00005953 ce61 ce61 ce61 ce61 ce61 ce61 ce61
+6814 ce62 ce62 ce62 * * 2963 8ea2a9e3,8ea2a9e3v 59e1 e5a7a1 59e1 000059e1 ce62 ce62 ce62 ce62 ce62 ce62 ce62
+6815 ce63 ce63 ce63 * * 2964 8ea2a9e4,8ea2a9e4v 59de e5a79e 59de 000059de ce63 ce63 ce63 ce63 ce63 ce63 ce63
+6816 ce64 ce64 ce64 * * 2965 8ea2a9e5,8ea2a9e5v 59ee e5a7ae 59ee 000059ee ce64 ce64 ce64 ce64 ce64 ce64 ce64
+6817 ce65 ce65 ce65 * * 2966 8ea2a9e6,8ea2a9e6v 5a00 e5a880 5a00 00005a00 ce65 ce65 ce65 ce65 ce65 ce65 ce65
+6818 ce66 ce66 ce66 * * 2967 8ea2a9e7,8ea2a9e7v 59f1 e5a7b1 59f1 000059f1 ce66 ce66 ce66 ce66 ce66 ce66 ce66
+6819 ce67 ce67 ce67 * * 2968 8ea2a9e8,8ea2a9e8v 59dd e5a79d 59dd 000059dd ce67 ce67 ce67 ce67 ce67 ce67 ce67
+6820 ce68 ce68 ce68 * * 2969 8ea2a9e9,8ea2a9e9v 59fa e5a7ba 59fa 000059fa ce68 ce68 ce68 ce68 ce68 ce68 ce68
+6821 ce69 ce69 ce69 * * 296a 8ea2a9ea,8ea2a9eav 59fd e5a7bd 59fd 000059fd ce69 ce69 ce69 ce69 ce69 ce69 ce69
+6822 ce6a ce6a ce6a * * 296b 8ea2a9eb,8ea2a9ebv 59fc e5a7bc 59fc 000059fc ce6a ce6a ce6a ce6a ce6a ce6a ce6a
+6823 ce6b ce6b ce6b * * 296c 8ea2a9ec,8ea2a9ecv 59f6 e5a7b6 59f6 000059f6 ce6b ce6b ce6b ce6b ce6b ce6b ce6b
+6824 ce6c ce6c ce6c * * 296d 8ea2a9ed,8ea2a9edv 59e4 e5a7a4 59e4 000059e4 ce6c ce6c ce6c ce6c ce6c ce6c ce6c
+6825 ce6d ce6d ce6d * * 296e 8ea2a9ee,8ea2a9eev 59f2 e5a7b2 59f2 000059f2 ce6d ce6d ce6d ce6d ce6d ce6d ce6d
+6826 ce6e ce6e ce6e * * 296f 8ea2a9ef,8ea2a9efv 59f7 e5a7b7 59f7 000059f7 ce6e ce6e ce6e ce6e ce6e ce6e ce6e
+6827 ce6f ce6f ce6f * * 2970 8ea2a9f0,8ea2a9f0v 59db e5a79b 59db 000059db ce6f ce6f ce6f ce6f ce6f ce6f ce6f
+6828 ce70 ce70 ce70 * * 2971 8ea2a9f1,8ea2a9f1v 59e9 e5a7a9 59e9 000059e9 ce70 ce70 ce70 ce70 ce70 ce70 ce70
+6829 ce71 ce71 ce71 * * 2972 8ea2a9f2,8ea2a9f2v 59f3 e5a7b3 59f3 000059f3 ce71 ce71 ce71 ce71 ce71 ce71 ce71
+6830 ce72 ce72 ce72 * * 2973 8ea2a9f3,8ea2a9f3v 59f5 e5a7b5 59f5 000059f5 ce72 ce72 ce72 ce72 ce72 ce72 ce72
+6831 ce73 ce73 ce73 * * 2974 8ea2a9f4,8ea2a9f4v 59e0 e5a7a0 59e0 000059e0 ce73 ce73 ce73 ce73 ce73 ce73 ce73
+6832 ce74 ce74 ce74 * * 2975 8ea2a9f5,8ea2a9f5v 59fe e5a7be 59fe 000059fe ce74 ce74 ce74 ce74 ce74 ce74 ce74
+6833 ce75 ce75 ce75 * * 2976 8ea2a9f6,8ea2a9f6v 59f4 e5a7b4 59f4 000059f4 ce75 ce75 ce75 ce75 ce75 ce75 ce75
+6834 ce76 ce76 ce76 * * 2977 8ea2a9f7,8ea2a9f7v 59ed e5a7ad 59ed 000059ed ce76 ce76 ce76 ce76 ce76 ce76 ce76
+6835 ce77 ce77 ce77 * * 2978 8ea2a9f8,8ea2a9f8v 5ba8 e5aea8 5ba8 00005ba8 ce77 ce77 ce77 ce77 ce77 ce77 ce77
+6836 ce78 ce78 ce78 * * 2979 8ea2a9f9,8ea2a9f9v 5c4c e5b18c 5c4c 00005c4c ce78 ce78 ce78 ce78 ce78 ce78 ce78
+6837 ce79 ce79 ce79 * * 297a 8ea2a9fa,8ea2a9fav 5cd0 e5b390 5cd0 00005cd0 ce79 ce79 ce79 ce79 ce79 ce79 ce79
+6838 ce7a ce7a ce7a * * 297b 8ea2a9fb,8ea2a9fbv 5cd8 e5b398 5cd8 00005cd8 ce7a ce7a ce7a ce7a ce7a ce7a ce7a
+6839 ce7b ce7b ce7b * * 297c 8ea2a9fc,8ea2a9fcv 5ccc e5b38c 5ccc 00005ccc ce7b ce7b ce7b ce7b ce7b ce7b ce7b
+6840 ce7c ce7c ce7c * * 297d 8ea2a9fd,8ea2a9fdv 5cd7 e5b397 5cd7 00005cd7 ce7c ce7c ce7c ce7c ce7c ce7c ce7c
+6841 ce7d ce7d ce7d * * 297e 8ea2a9fe,8ea2a9fev 5ccb e5b38b 5ccb 00005ccb ce7d ce7d ce7d ce7d ce7d ce7d ce7d
+6842 ce7e ce7e ce7e * * 2a21 8ea2aaa1,8ea2aaa1v 5cdb e5b39b 5cdb 00005cdb ce7e ce7e ce7e ce7e ce7e ce7e ce7e
+6843 cea1 cea1 cea1 * * 2a22 8ea2aaa2,8ea2aaa2v 5cde e5b39e 5cde 00005cde cea1 cea1 cea1 cea1 cea1 cea1 cea1
+6844 cea2 cea2 cea2 * * 2a23 8ea2aaa3,8ea2aaa3v 5cda e5b39a 5cda 00005cda cea2 cea2 cea2 cea2 cea2 cea2 cea2
+6845 cea3 cea3 cea3 * * 2a24 8ea2aaa4,8ea2aaa4v 5cc9 e5b389 5cc9 00005cc9 cea3 cea3 cea3 cea3 cea3 cea3 cea3
+6846 cea4 cea4 cea4 * * 2a25 8ea2aaa5,8ea2aaa5v 5cc7 e5b387 5cc7 00005cc7 cea4 cea4 cea4 cea4 cea4 cea4 cea4
+6847 cea5 cea5 cea5 * * 2a26 8ea2aaa6,8ea2aaa6v 5cca e5b38a 5cca 00005cca cea5 cea5 cea5 cea5 cea5 cea5 cea5
+6848 cea6 cea6 cea6 * * 2a27 8ea2aaa7,8ea2aaa7v 5cd6 e5b396 5cd6 00005cd6 cea6 cea6 cea6 cea6 cea6 cea6 cea6
+6849 cea7 cea7 cea7 * * 2a28 8ea2aaa8,8ea2aaa8v 5cd3 e5b393 5cd3 00005cd3 cea7 cea7 cea7 cea7 cea7 cea7 cea7
+6850 cea8 cea8 cea8 * * 2a29 8ea2aaa9,8ea2aaa9v 5cd4 e5b394 5cd4 00005cd4 cea8 cea8 cea8 cea8 cea8 cea8 cea8
+6851 cea9 cea9 cea9 * * 2a2a 8ea2aaaa,8ea2aaaav 5ccf e5b38f 5ccf 00005ccf cea9 cea9 cea9 cea9 cea9 cea9 cea9
+6852 ceaa ceaa ceaa * * 2a2b 8ea2aaab,8ea2aaabv 5cc8 e5b388 5cc8 00005cc8 ceaa ceaa ceaa ceaa ceaa ceaa ceaa
+6853 ceab ceab ceab * * 2a2c 8ea2aaac,8ea2aaacv 5cc6 e5b386 5cc6 00005cc6 ceab ceab ceab ceab ceab ceab ceab
+6854 ceac ceac ceac * * 2a2d 8ea2aaad,8ea2aaadv 5cce e5b38e 5cce 00005cce ceac ceac ceac ceac ceac ceac ceac
+6855 cead cead cead * * 2a2e 8ea2aaae,8ea2aaaev 5cdf e5b39f 5cdf 00005cdf cead cead cead cead cead cead cead
+6856 ceae ceae ceae * * 2a2f 8ea2aaaf,8ea2aaafv 5cf8 e5b3b8 5cf8 00005cf8 ceae ceae ceae ceae ceae ceae ceae
+6857 ceaf ceaf ceaf * * 2a30 8ea2aab0,8ea2aab0v 5df9 e5b7b9 5df9 00005df9 ceaf ceaf ceaf ceaf ceaf ceaf ceaf
+6858 ceb0 ceb0 ceb0 * * 2a31 8ea2aab1,8ea2aab1v 5e21 e5b8a1 5e21 00005e21 ceb0 ceb0 ceb0 ceb0 ceb0 ceb0 ceb0
+6859 ceb1 ceb1 ceb1 * * 2a32 8ea2aab2,8ea2aab2v 5e22 e5b8a2 5e22 00005e22 ceb1 ceb1 ceb1 ceb1 ceb1 ceb1 ceb1
+6860 ceb2 ceb2 ceb2 * * 2a33 8ea2aab3,8ea2aab3v 5e23 e5b8a3 5e23 00005e23 ceb2 ceb2 ceb2 ceb2 ceb2 ceb2 ceb2
+6861 ceb3 ceb3 ceb3 * * 2a34 8ea2aab4,8ea2aab4v 5e20 e5b8a0 5e20 00005e20 ceb3 ceb3 ceb3 ceb3 ceb3 ceb3 ceb3
+6862 ceb4 ceb4 ceb4 * * 2a35 8ea2aab5,8ea2aab5v 5e24 e5b8a4 5e24 00005e24 ceb4 ceb4 ceb4 ceb4 ceb4 ceb4 ceb4
+6863 ceb5 ceb5 ceb5 * * 2a36 8ea2aab6,8ea2aab6v 5eb0 e5bab0 5eb0 00005eb0 ceb5 ceb5 ceb5 ceb5 ceb5 ceb5 ceb5
+6864 ceb6 ceb6 ceb6 * * 2a37 8ea2aab7,8ea2aab7v 5ea4 e5baa4 5ea4 00005ea4 ceb6 ceb6 ceb6 ceb6 ceb6 ceb6 ceb6
+6865 ceb7 ceb7 ceb7 * * 2a38 8ea2aab8,8ea2aab8v 5ea2 e5baa2 5ea2 00005ea2 ceb7 ceb7 ceb7 ceb7 ceb7 ceb7 ceb7
+6866 ceb8 ceb8 ceb8 * * 2a39 8ea2aab9,8ea2aab9v 5e9b e5ba9b 5e9b 00005e9b ceb8 ceb8 ceb8 ceb8 ceb8 ceb8 ceb8
+6867 ceb9 ceb9 ceb9 * * 2a3a 8ea2aaba,8ea2aabav 5ea3 e5baa3 5ea3 00005ea3 ceb9 ceb9 ceb9 ceb9 ceb9 ceb9 ceb9
+6868 ceba ceba ceba * * 2a3b 8ea2aabb,8ea2aabbv 5ea5 e5baa5 5ea5 00005ea5 ceba ceba ceba ceba ceba ceba ceba
+6869 cebb cebb cebb * * 2a3c 8ea2aabc,8ea2aabcv 5f07 e5bc87 5f07 00005f07 cebb cebb cebb cebb cebb cebb cebb
+6870 cebc cebc cebc * * 2a3d 8ea2aabd,8ea2aabdv 5f2e e5bcae 5f2e 00005f2e cebc cebc cebc cebc cebc cebc cebc
+6871 cebd cebd cebd * * 2a3e 8ea2aabe,8ea2aabev 5f56 e5bd96 5f56 00005f56 cebd cebd cebd cebd cebd cebd cebd
+6872 cebe cebe cebe * * 2a3f 8ea2aabf,8ea2aabfv 5f86 e5be86 5f86 00005f86 cebe cebe cebe cebe cebe cebe cebe
+6873 cebf cebf cebf * * 2a40 8ea2aac0,8ea2aac0v 6037 e680b7 6037 00006037 cebf cebf cebf cebf cebf cebf cebf
+6874 cec0 cec0 cec0 * * 2a41 8ea2aac1,8ea2aac1v 6039 e680b9 6039 00006039 cec0 cec0 cec0 cec0 cec0 cec0 cec0
+6875 cec1 cec1 cec1 * * 2a42 8ea2aac2,8ea2aac2v 6054 e68194 6054 00006054 cec1 cec1 cec1 cec1 cec1 cec1 cec1
+6876 cec2 cec2 cec2 * * 2a43 8ea2aac3,8ea2aac3v 6072 e681b2 6072 00006072 cec2 cec2 cec2 cec2 cec2 cec2 cec2
+6877 cec3 cec3 cec3 * * 2a44 8ea2aac4,8ea2aac4v 605e e6819e 605e 0000605e cec3 cec3 cec3 cec3 cec3 cec3 cec3
+6878 cec4 cec4 cec4 * * 2a45 8ea2aac5,8ea2aac5v 6045 e68185 6045 00006045 cec4 cec4 cec4 cec4 cec4 cec4 cec4
+6879 cec5 cec5 cec5 * * 2a46 8ea2aac6,8ea2aac6v 6053 e68193 6053 00006053 cec5 cec5 cec5 cec5 cec5 cec5 cec5
+6880 cec6 cec6 cec6 * * 2a47 8ea2aac7,8ea2aac7v 6047 e68187 6047 00006047 cec6 cec6 cec6 cec6 cec6 cec6 cec6
+6881 cec7 cec7 cec7 * * 2a48 8ea2aac8,8ea2aac8v 6049 e68189 6049 00006049 cec7 cec7 cec7 cec7 cec7 cec7 cec7
+6882 cec8 cec8 cec8 * * 2a49 8ea2aac9,8ea2aac9v 605b e6819b 605b 0000605b cec8 cec8 cec8 cec8 cec8 cec8 cec8
+6883 cec9 cec9 cec9 * * 2a4a 8ea2aaca,8ea2aacav 604c e6818c 604c 0000604c cec9 cec9 cec9 cec9 cec9 cec9 cec9
+6884 ceca ceca ceca * * 2a4b 8ea2aacb,8ea2aacbv 6040 e68180 6040 00006040 ceca ceca ceca ceca ceca ceca ceca
+6885 cecb cecb cecb * * 2a4c 8ea2aacc,8ea2aaccv 6042 e68182 6042 00006042 cecb cecb cecb cecb cecb cecb cecb
+6886 cecc cecc cecc * * 2a4d 8ea2aacd,8ea2aacdv 605f e6819f 605f 0000605f cecc cecc cecc cecc cecc cecc cecc
+6887 cecd cecd cecd * * 2a4e 8ea2aace,8ea2aacev 6024 e680a4 6024 00006024 cecd cecd cecd cecd cecd cecd cecd
+6888 cece cece cece * * 2a4f 8ea2aacf,8ea2aacfv 6044 e68184 6044 00006044 cece cece cece cece cece cece cece
+6889 cecf cecf cecf * * 2a50 8ea2aad0,8ea2aad0v 6058 e68198 6058 00006058 cecf cecf cecf cecf cecf cecf cecf
+6890 ced0 ced0 ced0 * * 2a51 8ea2aad1,8ea2aad1v 6066 e681a6 6066 00006066 ced0 ced0 ced0 ced0 ced0 ced0 ced0
+6891 ced1 ced1 ced1 * * 2a52 8ea2aad2,8ea2aad2v 606e e681ae 606e 0000606e ced1 ced1 ced1 ced1 ced1 ced1 ced1
+6892 ced2 ced2 ced2 * * 2a53 8ea2aad3,8ea2aad3v 6242 e68982 6242 00006242 ced2 ced2 ced2 ced2 ced2 ced2 ced2
+6893 ced3 ced3 ced3 * * 2a54 8ea2aad4,8ea2aad4v 6243 e68983 6243 00006243 ced3 ced3 ced3 ced3 ced3 ced3 ced3
+6894 ced4 ced4 ced4 * * 2a55 8ea2aad5,8ea2aad5v 62cf e68b8f 62cf 000062cf ced4 ced4 ced4 ced4 ced4 ced4 ced4
+6895 ced5 ced5 ced5 * * 2a56 8ea2aad6,8ea2aad6v 630d e68c8d 630d 0000630d ced5 ced5 ced5 ced5 ced5 ced5 ced5
+6896 ced6 ced6 ced6 * * 2a57 8ea2aad7,8ea2aad7v 630b e68c8b 630b 0000630b ced6 ced6 ced6 ced6 ced6 ced6 ced6
+6897 ced7 ced7 ced7 * * 2a58 8ea2aad8,8ea2aad8v 62f5 e68bb5 62f5 000062f5 ced7 ced7 ced7 ced7 ced7 ced7 ced7
+6898 ced8 ced8 ced8 * * 2a59 8ea2aad9,8ea2aad9v 630e e68c8e 630e 0000630e ced8 ced8 ced8 ced8 ced8 ced8 ced8
+6899 ced9 ced9 ced9 * * 2a5a 8ea2aada,8ea2aadav 6303 e68c83 6303 00006303 ced9 ced9 ced9 ced9 ced9 ced9 ced9
+6900 ceda ceda ceda * * 2a5b 8ea2aadb,8ea2aadbv 62eb e68bab 62eb 000062eb ceda ceda ceda ceda ceda ceda ceda
+6901 cedb cedb cedb * * 2a5c 8ea2aadc,8ea2aadcv 62f9 e68bb9 62f9 000062f9 cedb cedb cedb cedb cedb cedb cedb
+6902 cedc cedc cedc * * 2a5d 8ea2aadd,8ea2aaddv 630f e68c8f 630f 0000630f cedc cedc cedc cedc cedc cedc cedc
+6903 cedd cedd cedd * * 2a5e 8ea2aade,8ea2aadev 630c e68c8c 630c 0000630c cedd cedd cedd cedd cedd cedd cedd
+6904 cede cede cede * * 2a5f 8ea2aadf,8ea2aadfv 62f8 e68bb8 62f8 000062f8 cede cede cede cede cede cede cede
+6905 cedf cedf cedf * * 2a60 8ea2aae0,8ea2aae0v 62f6 e68bb6 62f6 000062f6 cedf cedf cedf cedf cedf cedf cedf
+6906 cee0 cee0 cee0 * * 2a61 8ea2aae1,8ea2aae1v 6300 e68c80 6300 00006300 cee0 cee0 cee0 cee0 cee0 cee0 cee0
+6907 cee1 cee1 cee1 * * 2a62 8ea2aae2,8ea2aae2v 6313 e68c93 6313 00006313 cee1 cee1 cee1 cee1 cee1 cee1 cee1
+6908 cee2 cee2 cee2 * * 2a63 8ea2aae3,8ea2aae3v 6314 e68c94 6314 00006314 cee2 cee2 cee2 cee2 cee2 cee2 cee2
+6909 cee3 cee3 cee3 * * 2a64 8ea2aae4,8ea2aae4v 62fa e68bba 62fa 000062fa cee3 cee3 cee3 cee3 cee3 cee3 cee3
+6910 cee4 cee4 cee4 * * 2a65 8ea2aae5,8ea2aae5v 6315 e68c95 6315 00006315 cee4 cee4 cee4 cee4 cee4 cee4 cee4
+6911 cee5 cee5 cee5 * * 2a66 8ea2aae6,8ea2aae6v 62fb e68bbb 62fb 000062fb cee5 cee5 cee5 cee5 cee5 cee5 cee5
+6912 cee6 cee6 cee6 * * 2a67 8ea2aae7,8ea2aae7v 62f0 e68bb0 62f0 000062f0 cee6 cee6 cee6 cee6 cee6 cee6 cee6
+6913 cee7 cee7 cee7 * * 2a68 8ea2aae8,8ea2aae8v 6541 e69581 6541 00006541 cee7 cee7 cee7 cee7 cee7 cee7 cee7
+6914 cee8 cee8 cee8 * * 2a69 8ea2aae9,8ea2aae9v 6543 e69583 6543 00006543 cee8 cee8 cee8 cee8 cee8 cee8 cee8
+6915 cee9 cee9 cee9 * * 2a6a 8ea2aaea,8ea2aaeav 65aa e696aa 65aa 000065aa cee9 cee9 cee9 cee9 cee9 cee9 cee9
+6916 ceea ceea ceea * * 2a6b 8ea2aaeb,8ea2aaebv 65bf e696bf 65bf 000065bf ceea ceea ceea ceea ceea ceea ceea
+6917 ceeb ceeb ceeb * * 2a6c 8ea2aaec,8ea2aaecv 6636 e698b6 6636 00006636 ceeb ceeb ceeb ceeb ceeb ceeb ceeb
+6918 ceec ceec ceec * * 2a6d 8ea2aaed,8ea2aaedv 6621 e698a1 6621 00006621 ceec ceec ceec ceec ceec ceec ceec
+6919 ceed ceed ceed * * 2a6e 8ea2aaee,8ea2aaeev 6632 e698b2 6632 00006632 ceed ceed ceed ceed ceed ceed ceed
+6920 ceee ceee ceee * * 2a6f 8ea2aaef,8ea2aaefv 6635 e698b5 6635 00006635 ceee ceee ceee ceee ceee ceee ceee
+6921 ceef ceef ceef * * 2a70 8ea2aaf0,8ea2aaf0v 661c e6989c 661c 0000661c ceef ceef ceef ceef ceef ceef ceef
+6922 cef0 cef0 cef0 * * 2a71 8ea2aaf1,8ea2aaf1v 6626 e698a6 6626 00006626 cef0 cef0 cef0 cef0 cef0 cef0 cef0
+6923 cef1 cef1 cef1 * * 2a72 8ea2aaf2,8ea2aaf2v 6622 e698a2 6622 00006622 cef1 cef1 cef1 cef1 cef1 cef1 cef1
+6924 cef2 cef2 cef2 * * 2a73 8ea2aaf3,8ea2aaf3v 6633 e698b3 6633 00006633 cef2 cef2 cef2 cef2 cef2 cef2 cef2
+6925 cef3 cef3 cef3 * * 2a74 8ea2aaf4,8ea2aaf4v 662b e698ab 662b 0000662b cef3 cef3 cef3 cef3 cef3 cef3 cef3
+6926 cef4 cef4 cef4 * * 2a75 8ea2aaf5,8ea2aaf5v 663a e698ba 663a 0000663a cef4 cef4 cef4 cef4 cef4 cef4 cef4
+6927 cef5 cef5 cef5 * * 2a76 8ea2aaf6,8ea2aaf6v 661d e6989d 661d 0000661d cef5 cef5 cef5 cef5 cef5 cef5 cef5
+6928 cef6 cef6 cef6 * * 2a77 8ea2aaf7,8ea2aaf7v 6634 e698b4 6634 00006634 cef6 cef6 cef6 cef6 cef6 cef6 cef6
+6929 cef7 cef7 cef7 * * 2a78 8ea2aaf8,8ea2aaf8v 6639 e698b9 6639 00006639 cef7 cef7 cef7 cef7 cef7 cef7 cef7
+6930 cef8 cef8 cef8 * * 2a79 8ea2aaf9,8ea2aaf9v 662e e698ae 662e 0000662e cef8 cef8 cef8 cef8 cef8 cef8 cef8
+6931 cef9 cef9 cef9 * * 2a7a 8ea2aafa,8ea2aafav 670f e69c8f 670f 0000670f cef9 cef9 cef9 cef9 cef9 cef9 cef9
+6932 cefa cefa cefa * * 2a7b 8ea2aafb,8ea2aafbv 6710 e69c90 6710 00006710 cefa cefa cefa cefa cefa cefa cefa
+6933 cefb cefb cefb * * 2a7c 8ea2aafc,8ea2aafcv 67c1 e69f81 67c1 000067c1 cefb cefb cefb cefb cefb cefb cefb
+6934 cefc cefc cefc * * 2a7d 8ea2aafd,8ea2aafdv 67f2 e69fb2 67f2 000067f2 cefc cefc cefc cefc cefc cefc cefc
+6935 cefd cefd cefd * * 2a7e 8ea2aafe,8ea2aafev 67c8 e69f88 67c8 000067c8 cefd cefd cefd cefd cefd cefd cefd
+6936 cefe cefe cefe * * 2b21 8ea2aba1,8ea2aba1v 67ba e69eba 67ba 000067ba cefe cefe cefe cefe cefe cefe cefe
+6937 cf40 cf40 cf40 * * 2b22 8ea2aba2,8ea2aba2v 67dc e69f9c 67dc 000067dc cf40 cf40 cf40 cf40 cf40 cf40 cf40
+6938 cf41 cf41 cf41 * * 2b23 8ea2aba3,8ea2aba3v 67bb e69ebb 67bb 000067bb cf41 cf41 cf41 cf41 cf41 cf41 cf41
+6939 cf42 cf42 cf42 * * 2b24 8ea2aba4,8ea2aba4v 67f8 e69fb8 67f8 000067f8 cf42 cf42 cf42 cf42 cf42 cf42 cf42
+6940 cf43 cf43 cf43 * * 2b25 8ea2aba5,8ea2aba5v 67d8 e69f98 67d8 000067d8 cf43 cf43 cf43 cf43 cf43 cf43 cf43
+6941 cf44 cf44 cf44 * * 2b26 8ea2aba6,8ea2aba6v 67c0 e69f80 67c0 000067c0 cf44 cf44 cf44 cf44 cf44 cf44 cf44
+6942 cf45 cf45 cf45 * * 2b27 8ea2aba7,8ea2aba7v 67b7 e69eb7 67b7 000067b7 cf45 cf45 cf45 cf45 cf45 cf45 cf45
+6943 cf46 cf46 cf46 * * 2b28 8ea2aba8,8ea2aba8v 67c5 e69f85 67c5 000067c5 cf46 cf46 cf46 cf46 cf46 cf46 cf46
+6944 cf47 cf47 cf47 * * 2b29 8ea2aba9,8ea2aba9v 67eb e69fab 67eb 000067eb cf47 cf47 cf47 cf47 cf47 cf47 cf47
+6945 cf48 cf48 cf48 * * 2b2a 8ea2abaa,8ea2abaav 67e4 e69fa4 67e4 000067e4 cf48 cf48 cf48 cf48 cf48 cf48 cf48
+6946 cf49 cf49 cf49 * * 2b2b 8ea2abab,8ea2ababv 67df e69f9f 67df 000067df cf49 cf49 cf49 cf49 cf49 cf49 cf49
+6947 cf4a cf4a cf4a * * 2b2c 8ea2abac,8ea2abacv 67b5 e69eb5 67b5 000067b5 cf4a cf4a cf4a cf4a cf4a cf4a cf4a
+6948 cf4b cf4b cf4b * * 2b2d 8ea2abad,8ea2abadv 67cd e69f8d 67cd 000067cd cf4b cf4b cf4b cf4b cf4b cf4b cf4b
+6949 cf4c cf4c cf4c * * 2b2e 8ea2abae,8ea2abaev 67b3 e69eb3 67b3 000067b3 cf4c cf4c cf4c cf4c cf4c cf4c cf4c
+6950 cf4d cf4d cf4d * * 2b2f 8ea2abaf,8ea2abafv 67f7 e69fb7 67f7 000067f7 cf4d cf4d cf4d cf4d cf4d cf4d cf4d
+6951 cf4e cf4e cf4e * * 2b30 8ea2abb0,8ea2abb0v 67f6 e69fb6 67f6 000067f6 cf4e cf4e cf4e cf4e cf4e cf4e cf4e
+6952 cf4f cf4f cf4f * * 2b31 8ea2abb1,8ea2abb1v 67ee e69fae 67ee 000067ee cf4f cf4f cf4f cf4f cf4f cf4f cf4f
+6953 cf50 cf50 cf50 * * 2b32 8ea2abb2,8ea2abb2v 67e3 e69fa3 67e3 000067e3 cf50 cf50 cf50 cf50 cf50 cf50 cf50
+6954 cf51 cf51 cf51 * * 2b33 8ea2abb3,8ea2abb3v 67c2 e69f82 67c2 000067c2 cf51 cf51 cf51 cf51 cf51 cf51 cf51
+6955 cf52 cf52 cf52 * * 2b34 8ea2abb4,8ea2abb4v 67b9 e69eb9 67b9 000067b9 cf52 cf52 cf52 cf52 cf52 cf52 cf52
+6956 cf53 cf53 cf53 * * 2b35 8ea2abb5,8ea2abb5v 67ce e69f8e 67ce 000067ce cf53 cf53 cf53 cf53 cf53 cf53 cf53
+6957 cf54 cf54 cf54 * * 2b36 8ea2abb6,8ea2abb6v 67e7 e69fa7 67e7 000067e7 cf54 cf54 cf54 cf54 cf54 cf54 cf54
+6958 cf55 cf55 cf55 * * 2b37 8ea2abb7,8ea2abb7v 67f0 e69fb0 67f0 000067f0 cf55 cf55 cf55 cf55 cf55 cf55 cf55
+6959 cf56 cf56 cf56 * * 2b38 8ea2abb8,8ea2abb8v 67b2 e69eb2 67b2 000067b2 cf56 cf56 cf56 cf56 cf56 cf56 cf56
+6960 cf57 cf57 cf57 * * 2b39 8ea2abb9,8ea2abb9v 67fc e69fbc 67fc 000067fc cf57 cf57 cf57 cf57 cf57 cf57 cf57
+6961 cf58 cf58 cf58 * * 2b3a 8ea2abba,8ea2abbav 67c6 e69f86 67c6 000067c6 cf58 cf58 cf58 cf58 cf58 cf58 cf58
+6962 cf59 cf59 cf59 * * 2b3b 8ea2abbb,8ea2abbbv 67ed e69fad 67ed 000067ed cf59 cf59 cf59 cf59 cf59 cf59 cf59
+6963 cf5a cf5a cf5a * * 2b3c 8ea2abbc,8ea2abbcv 67cc e69f8c 67cc 000067cc cf5a cf5a cf5a cf5a cf5a cf5a cf5a
+6964 cf5b cf5b cf5b * * 2b3d 8ea2abbd,8ea2abbdv 67ae e69eae 67ae 000067ae cf5b cf5b cf5b cf5b cf5b cf5b cf5b
+6965 cf5c cf5c cf5c * * 2b3e 8ea2abbe,8ea2abbev 67e6 e69fa6 67e6 000067e6 cf5c cf5c cf5c cf5c cf5c cf5c cf5c
+6966 cf5d cf5d cf5d * * 2b3f 8ea2abbf,8ea2abbfv 67db e69f9b 67db 000067db cf5d cf5d cf5d cf5d cf5d cf5d cf5d
+6967 cf5e cf5e cf5e * * 2b40 8ea2abc0,8ea2abc0v 67fa e69fba 67fa 000067fa cf5e cf5e cf5e cf5e cf5e cf5e cf5e
+6968 cf5f cf5f cf5f * * 2b41 8ea2abc1,8ea2abc1v 67c9 e69f89 67c9 000067c9 cf5f cf5f cf5f cf5f cf5f cf5f cf5f
+6969 cf60 cf60 cf60 * * 2b42 8ea2abc2,8ea2abc2v 67ca e69f8a 67ca 000067ca cf60 cf60 cf60 cf60 cf60 cf60 cf60
+6970 cf61 cf61 cf61 * * 2b43 8ea2abc3,8ea2abc3v 67c3 e69f83 67c3 000067c3 cf61 cf61 cf61 cf61 cf61 cf61 cf61
+6971 cf62 cf62 cf62 * * 2b44 8ea2abc4,8ea2abc4v 67ea e69faa 67ea 000067ea cf62 cf62 cf62 cf62 cf62 cf62 cf62
+6972 cf63 cf63 cf63 * * 2b45 8ea2abc5,8ea2abc5v 67cb e69f8b 67cb 000067cb cf63 cf63 cf63 cf63 cf63 cf63 cf63
+6973 cf64 cf64 cf64 * * 2b46 8ea2abc6,8ea2abc6v 6b28 e6aca8 6b28 00006b28 cf64 cf64 cf64 cf64 cf64 cf64 cf64
+6974 cf65 cf65 cf65 * * 2b47 8ea2abc7,8ea2abc7v 6b82 e6ae82 6b82 00006b82 cf65 cf65 cf65 cf65 cf65 cf65 cf65
+6975 cf66 cf66 cf66 * * 2b48 8ea2abc8,8ea2abc8v 6b84 e6ae84 6b84 00006b84 cf66 cf66 cf66 cf66 cf66 cf66 cf66
+6976 cf67 cf67 cf67 * * 2b49 8ea2abc9,8ea2abc9v 6bb6 e6aeb6 6bb6 00006bb6 cf67 cf67 cf67 cf67 cf67 cf67 cf67
+6977 cf68 cf68 cf68 * * 2b4a 8ea2abca,8ea2abcav 6bd6 e6af96 6bd6 00006bd6 cf68 cf68 cf68 cf68 cf68 cf68 cf68
+6978 cf69 cf69 cf69 * * 2b4b 8ea2abcb,8ea2abcbv 6bd8 e6af98 6bd8 00006bd8 cf69 cf69 cf69 cf69 cf69 cf69 cf69
+6979 cf6a cf6a cf6a * * 2b4c 8ea2abcc,8ea2abccv 6be0 e6afa0 6be0 00006be0 cf6a cf6a cf6a cf6a cf6a cf6a cf6a
+6980 cf6b cf6b cf6b * * 2b4d 8ea2abcd,8ea2abcdv 6c20 e6b0a0 6c20 00006c20 cf6b cf6b cf6b cf6b cf6b cf6b cf6b
+6981 cf6c cf6c cf6c * * 2b4e 8ea2abce,8ea2abcev 6c21 e6b0a1 6c21 00006c21 cf6c cf6c cf6c cf6c cf6c cf6c cf6c
+6982 cf6d cf6d cf6d * * 2b4f 8ea2abcf,8ea2abcfv 6d28 e6b4a8 6d28 00006d28 cf6d cf6d cf6d cf6d cf6d cf6d cf6d
+6983 cf6e cf6e cf6e * * 2b50 8ea2abd0,8ea2abd0v 6d34 e6b4b4 6d34 00006d34 cf6e cf6e cf6e cf6e cf6e cf6e cf6e
+6984 cf6f cf6f cf6f * * 2b51 8ea2abd1,8ea2abd1v 6d2d e6b4ad 6d2d 00006d2d cf6f cf6f cf6f cf6f cf6f cf6f cf6f
+6985 cf70 cf70 cf70 * * 2b52 8ea2abd2,8ea2abd2v 6d1f e6b49f 6d1f 00006d1f cf70 cf70 cf70 cf70 cf70 cf70 cf70
+6986 cf71 cf71 cf71 * * 2b53 8ea2abd3,8ea2abd3v 6d3c e6b4bc 6d3c 00006d3c cf71 cf71 cf71 cf71 cf71 cf71 cf71
+6987 cf72 cf72 cf72 * * 2b54 8ea2abd4,8ea2abd4v 6d3f e6b4bf 6d3f 00006d3f cf72 cf72 cf72 cf72 cf72 cf72 cf72
+6988 cf73 cf73 cf73 * * 2b55 8ea2abd5,8ea2abd5v 6d12 e6b492 6d12 00006d12 cf73 cf73 cf73 cf73 cf73 cf73 cf73
+6989 cf74 cf74 cf74 * * 2b56 8ea2abd6,8ea2abd6v 6d0a e6b48a 6d0a 00006d0a cf74 cf74 cf74 cf74 cf74 cf74 cf74
+6990 cf75 cf75 cf75 * * 2b57 8ea2abd7,8ea2abd7v 6cda e6b39a 6cda 00006cda cf75 cf75 cf75 cf75 cf75 cf75 cf75
+6991 cf76 cf76 cf76 * * 2b58 8ea2abd8,8ea2abd8v 6d33 e6b4b3 6d33 00006d33 cf76 cf76 cf76 cf76 cf76 cf76 cf76
+6992 cf77 cf77 cf77 * * 2b59 8ea2abd9,8ea2abd9v 6d04 e6b484 6d04 00006d04 cf77 cf77 cf77 cf77 cf77 cf77 cf77
+6993 cf78 cf78 cf78 * * 2b5a 8ea2abda,8ea2abdav 6d19 e6b499 6d19 00006d19 cf78 cf78 cf78 cf78 cf78 cf78 cf78
+6994 cf79 cf79 cf79 * * 2b5b 8ea2abdb,8ea2abdbv 6d3a e6b4ba 6d3a 00006d3a cf79 cf79 cf79 cf79 cf79 cf79 cf79
+6995 cf7a cf7a cf7a * * 2b5c 8ea2abdc,8ea2abdcv 6d1a e6b49a 6d1a 00006d1a cf7a cf7a cf7a cf7a cf7a cf7a cf7a
+6996 cf7b cf7b cf7b * * 2b5d 8ea2abdd,8ea2abddv 6d11 e6b491 6d11 00006d11 cf7b cf7b cf7b cf7b cf7b cf7b cf7b
+6997 cf7c cf7c cf7c * * 2b5e 8ea2abde,8ea2abdev 6d00 e6b480 6d00 00006d00 cf7c cf7c cf7c cf7c cf7c cf7c cf7c
+6998 cf7d cf7d cf7d * * 2b5f 8ea2abdf,8ea2abdfv 6d1d e6b49d 6d1d 00006d1d cf7d cf7d cf7d cf7d cf7d cf7d cf7d
+6999 cf7e cf7e cf7e * * 2b60 8ea2abe0,8ea2abe0v 6d42 e6b582 6d42 00006d42 cf7e cf7e cf7e cf7e cf7e cf7e cf7e
+7000 cfa1 cfa1 cfa1 * * 2b61 8ea2abe1,8ea2abe1v 6d01 e6b481 6d01 00006d01 cfa1 cfa1 cfa1 cfa1 cfa1 cfa1 cfa1
+7001 cfa2 cfa2 cfa2 * * 2b62 8ea2abe2,8ea2abe2v 6d18 e6b498 6d18 00006d18 cfa2 cfa2 cfa2 cfa2 cfa2 cfa2 cfa2
+7002 cfa3 cfa3 cfa3 * * 2b63 8ea2abe3,8ea2abe3v 6d37 e6b4b7 6d37 00006d37 cfa3 cfa3 cfa3 cfa3 cfa3 cfa3 cfa3
+7003 cfa4 cfa4 cfa4 * * 2b64 8ea2abe4,8ea2abe4v 6d03 e6b483 6d03 00006d03 cfa4 cfa4 cfa4 cfa4 cfa4 cfa4 cfa4
+7004 cfa5 cfa5 cfa5 * * 2b65 8ea2abe5,8ea2abe5v 6d0f e6b48f 6d0f 00006d0f cfa5 cfa5 cfa5 cfa5 cfa5 cfa5 cfa5
+7005 cfa6 cfa6 cfa6 * * 2b66 8ea2abe6,8ea2abe6v 6d40 e6b580 6d40 00006d40 cfa6 cfa6 cfa6 cfa6 cfa6 cfa6 cfa6
+7006 cfa7 cfa7 cfa7 * * 2b67 8ea2abe7,8ea2abe7v 6d07 e6b487 6d07 00006d07 cfa7 cfa7 cfa7 cfa7 cfa7 cfa7 cfa7
+7007 cfa8 cfa8 cfa8 * * 2b68 8ea2abe8,8ea2abe8v 6d20 e6b4a0 6d20 00006d20 cfa8 cfa8 cfa8 cfa8 cfa8 cfa8 cfa8
+7008 cfa9 cfa9 cfa9 * * 2b69 8ea2abe9,8ea2abe9v 6d2c e6b4ac 6d2c 00006d2c cfa9 cfa9 cfa9 cfa9 cfa9 cfa9 cfa9
+7009 cfaa cfaa cfaa * * 2b6a 8ea2abea,8ea2abeav 6d08 e6b488 6d08 00006d08 cfaa cfaa cfaa cfaa cfaa cfaa cfaa
+7010 cfab cfab cfab * * 2b6b 8ea2abeb,8ea2abebv 6d22 e6b4a2 6d22 00006d22 cfab cfab cfab cfab cfab cfab cfab
+7011 cfac cfac cfac * * 2b6c 8ea2abec,8ea2abecv 6d09 e6b489 6d09 00006d09 cfac cfac cfac cfac cfac cfac cfac
+7012 cfad cfad cfad * * 2b6d 8ea2abed,8ea2abedv 6d10 e6b490 6d10 00006d10 cfad cfad cfad cfad cfad cfad cfad
+7013 cfae cfae cfae * * 2b6e 8ea2abee,8ea2abeev 70b7 e782b7 70b7 000070b7 cfae cfae cfae cfae cfae cfae cfae
+7014 cfaf cfaf cfaf * * 2b6f 8ea2abef,8ea2abefv 709f e7829f 709f 0000709f cfaf cfaf cfaf cfaf cfaf cfaf cfaf
+7015 cfb0 cfb0 cfb0 * * 2b70 8ea2abf0,8ea2abf0v 70be e782be 70be 000070be cfb0 cfb0 cfb0 cfb0 cfb0 cfb0 cfb0
+7016 cfb1 cfb1 cfb1 * * 2b71 8ea2abf1,8ea2abf1v 70b1 e782b1 70b1 000070b1 cfb1 cfb1 cfb1 cfb1 cfb1 cfb1 cfb1
+7017 cfb2 cfb2 cfb2 * * 2b72 8ea2abf2,8ea2abf2v 70b0 e782b0 70b0 000070b0 cfb2 cfb2 cfb2 cfb2 cfb2 cfb2 cfb2
+7018 cfb3 cfb3 cfb3 * * 2b73 8ea2abf3,8ea2abf3v 70a1 e782a1 70a1 000070a1 cfb3 cfb3 cfb3 cfb3 cfb3 cfb3 cfb3
+7019 cfb4 cfb4 cfb4 * * 2b74 8ea2abf4,8ea2abf4v 70b4 e782b4 70b4 000070b4 cfb4 cfb4 cfb4 cfb4 cfb4 cfb4 cfb4
+7020 cfb5 cfb5 cfb5 * * 2b75 8ea2abf5,8ea2abf5v 70b5 e782b5 70b5 000070b5 cfb5 cfb5 cfb5 cfb5 cfb5 cfb5 cfb5
+7021 cfb6 cfb6 cfb6 * * 2b76 8ea2abf6,8ea2abf6v 70a9 e782a9 70a9 000070a9 cfb6 cfb6 cfb6 cfb6 cfb6 cfb6 cfb6
+7022 cfb7 cfb7 cfb7 * * 2b77 8ea2abf7,8ea2abf7v 7241 e78981 7241 00007241 cfb7 cfb7 cfb7 cfb7 cfb7 cfb7 cfb7
+7023 cfb8 cfb8 cfb8 * * 2b78 8ea2abf8,8ea2abf8v 7249 e78989 7249 00007249 cfb8 cfb8 cfb8 cfb8 cfb8 cfb8 cfb8
+7024 cfb9 cfb9 cfb9 * * 2b79 8ea2abf9,8ea2abf9v 724a e7898a 724a 0000724a cfb9 cfb9 cfb9 cfb9 cfb9 cfb9 cfb9
+7025 cfba cfba cfba * * 2b7a 8ea2abfa,8ea2abfav 726c e789ac 726c 0000726c cfba cfba cfba cfba cfba cfba cfba
+7026 cfbb cfbb cfbb * * 2b7b 8ea2abfb,8ea2abfbv 7270 e789b0 7270 00007270 cfbb cfbb cfbb cfbb cfbb cfbb cfbb
+7027 cfbc cfbc cfbc * * 2b7c 8ea2abfc,8ea2abfcv 7273 e789b3 7273 00007273 cfbc cfbc cfbc cfbc cfbc cfbc cfbc
+7028 cfbd cfbd cfbd * * 2b7d 8ea2abfd,8ea2abfdv 726e e789ae 726e 0000726e cfbd cfbd cfbd cfbd cfbd cfbd cfbd
+7029 cfbe cfbe cfbe * * 2b7e 8ea2abfe,8ea2abfev 72ca e78b8a 72ca 000072ca cfbe cfbe cfbe cfbe cfbe cfbe cfbe
+7030 cfbf cfbf cfbf * * 2c21 8ea2aca1,8ea2aca1v 72e4 e78ba4 72e4 000072e4 cfbf cfbf cfbf cfbf cfbf cfbf cfbf
+7031 cfc0 cfc0 cfc0 * * 2c22 8ea2aca2,8ea2aca2v 72e8 e78ba8 72e8 000072e8 cfc0 cfc0 cfc0 cfc0 cfc0 cfc0 cfc0
+7032 cfc1 cfc1 cfc1 * * 2c23 8ea2aca3,8ea2aca3v 72eb e78bab 72eb 000072eb cfc1 cfc1 cfc1 cfc1 cfc1 cfc1 cfc1
+7033 cfc2 cfc2 cfc2 * * 2c24 8ea2aca4,8ea2aca4v 72df e78b9f 72df 000072df cfc2 cfc2 cfc2 cfc2 cfc2 cfc2 cfc2
+7034 cfc3 cfc3 cfc3 * * 2c25 8ea2aca5,8ea2aca5v 72ea e78baa 72ea 000072ea cfc3 cfc3 cfc3 cfc3 cfc3 cfc3 cfc3
+7035 cfc4 cfc4 cfc4 * * 2c26 8ea2aca6,8ea2aca6v 72e6 e78ba6 72e6 000072e6 cfc4 cfc4 cfc4 cfc4 cfc4 cfc4 cfc4
+7036 cfc5 cfc5 cfc5 * * 2c27 8ea2aca7,8ea2aca7v 72e3 e78ba3 72e3 000072e3 cfc5 cfc5 cfc5 cfc5 cfc5 cfc5 cfc5
+7037 cfc6 cfc6 cfc6 * * 2c28 8ea2aca8,8ea2aca8v 7385 e78e85 7385 00007385 cfc6 cfc6 cfc6 cfc6 cfc6 cfc6 cfc6
+7038 cfc7 cfc7 cfc7 * * 2c29 8ea2aca9,8ea2aca9v 73cc e78f8c 73cc 000073cc cfc7 cfc7 cfc7 cfc7 cfc7 cfc7 cfc7
+7039 cfc8 cfc8 cfc8 * * 2c2a 8ea2acaa,8ea2acaav 73c2 e78f82 73c2 000073c2 cfc8 cfc8 cfc8 cfc8 cfc8 cfc8 cfc8
+7040 cfc9 cfc9 cfc9 * * 2c2b 8ea2acab,8ea2acabv 73c8 e78f88 73c8 000073c8 cfc9 cfc9 cfc9 cfc9 cfc9 cfc9 cfc9
+7041 cfca cfca cfca * * 2c2c 8ea2acac,8ea2acacv 73c5 e78f85 73c5 000073c5 cfca cfca cfca cfca cfca cfca cfca
+7042 cfcb cfcb cfcb * * 2c2d 8ea2acad,8ea2acadv 73b9 e78eb9 73b9 000073b9 cfcb cfcb cfcb cfcb cfcb cfcb cfcb
+7043 cfcc cfcc cfcc * * 2c2e 8ea2acae,8ea2acaev 73b6 e78eb6 73b6 000073b6 cfcc cfcc cfcc cfcc cfcc cfcc cfcc
+7044 cfcd cfcd cfcd * * 2c2f 8ea2acaf,8ea2acafv 73b5 e78eb5 73b5 000073b5 cfcd cfcd cfcd cfcd cfcd cfcd cfcd
+7045 cfce cfce cfce * * 2c30 8ea2acb0,8ea2acb0v 73b4 e78eb4 73b4 000073b4 cfce cfce cfce cfce cfce cfce cfce
+7046 cfcf cfcf cfcf * * 2c31 8ea2acb1,8ea2acb1v 73eb e78fab 73eb 000073eb cfcf cfcf cfcf cfcf cfcf cfcf cfcf
+7047 cfd0 cfd0 cfd0 * * 2c32 8ea2acb2,8ea2acb2v 73bf e78ebf 73bf 000073bf cfd0 cfd0 cfd0 cfd0 cfd0 cfd0 cfd0
+7048 cfd1 cfd1 cfd1 * * 2c33 8ea2acb3,8ea2acb3v 73c7 e78f87 73c7 000073c7 cfd1 cfd1 cfd1 cfd1 cfd1 cfd1 cfd1
+7049 cfd2 cfd2 cfd2 * * 2c34 8ea2acb4,8ea2acb4v 73be e78ebe 73be 000073be cfd2 cfd2 cfd2 cfd2 cfd2 cfd2 cfd2
+7050 cfd3 cfd3 cfd3 * * 2c35 8ea2acb5,8ea2acb5v 73c3 e78f83 73c3 000073c3 cfd3 cfd3 cfd3 cfd3 cfd3 cfd3 cfd3
+7051 cfd4 cfd4 cfd4 * * 2c36 8ea2acb6,8ea2acb6v 73c6 e78f86 73c6 000073c6 cfd4 cfd4 cfd4 cfd4 cfd4 cfd4 cfd4
+7052 cfd5 cfd5 cfd5 * * 2c37 8ea2acb7,8ea2acb7v 73b8 e78eb8 73b8 000073b8 cfd5 cfd5 cfd5 cfd5 cfd5 cfd5 cfd5
+7053 cfd6 cfd6 cfd6 * * 2c38 8ea2acb8,8ea2acb8v 73cb e78f8b 73cb 000073cb cfd6 cfd6 cfd6 cfd6 cfd6 cfd6 cfd6
+7054 cfd7 cfd7 cfd7 * * 2c39 8ea2acb9,8ea2acb9v 74ec e793ac 74ec 000074ec cfd7 cfd7 cfd7 cfd7 cfd7 cfd7 cfd7
+7055 cfd8 cfd8 cfd8 * * 2c3a 8ea2acba,8ea2acbav 74ee e793ae 74ee 000074ee cfd8 cfd8 cfd8 cfd8 cfd8 cfd8 cfd8
+7056 cfd9 cfd9 cfd9 * * 2c3b 8ea2acbb,8ea2acbbv 752e e794ae 752e 0000752e cfd9 cfd9 cfd9 cfd9 cfd9 cfd9 cfd9
+7057 cfda cfda cfda * * 2c3c 8ea2acbc,8ea2acbcv 7547 e79587 7547 00007547 cfda cfda cfda cfda cfda cfda cfda
+7058 cfdb cfdb cfdb * * 2c3d 8ea2acbd,8ea2acbdv 7548 e79588 7548 00007548 cfdb cfdb cfdb cfdb cfdb cfdb cfdb
+7059 cfdc cfdc cfdc * * 2c3e 8ea2acbe,8ea2acbev 75a7 e796a7 75a7 000075a7 cfdc cfdc cfdc cfdc cfdc cfdc cfdc
+7060 cfdd cfdd cfdd * * 2c3f 8ea2acbf,8ea2acbfv 75aa e796aa 75aa 000075aa cfdd cfdd cfdd cfdd cfdd cfdd cfdd
+7061 cfde cfde cfde * * 2c40 8ea2acc0,8ea2acc0v 7679 e799b9 7679 00007679 cfde cfde cfde cfde cfde cfde cfde
+7062 cfdf cfdf cfdf * * 2c41 8ea2acc1,8ea2acc1v 76c4 e79b84 76c4 000076c4 cfdf cfdf cfdf cfdf cfdf cfdf cfdf
+7063 cfe0 cfe0 cfe0 * * 2c42 8ea2acc2,8ea2acc2v 7708 e79c88 7708 00007708 cfe0 cfe0 cfe0 cfe0 cfe0 cfe0 cfe0
+7064 cfe1 cfe1 cfe1 * * 2c43 8ea2acc3,8ea2acc3v 7703 e79c83 7703 00007703 cfe1 cfe1 cfe1 cfe1 cfe1 cfe1 cfe1
+7065 cfe2 cfe2 cfe2 * * 2c44 8ea2acc4,8ea2acc4v 7704 e79c84 7704 00007704 cfe2 cfe2 cfe2 cfe2 cfe2 cfe2 cfe2
+7066 cfe3 cfe3 cfe3 * * 2c45 8ea2acc5,8ea2acc5v 7705 e79c85 7705 00007705 cfe3 cfe3 cfe3 cfe3 cfe3 cfe3 cfe3
+7067 cfe4 cfe4 cfe4 * * 2c46 8ea2acc6,8ea2acc6v 770a e79c8a 770a 0000770a cfe4 cfe4 cfe4 cfe4 cfe4 cfe4 cfe4
+7068 cfe5 cfe5 cfe5 * * 2c47 8ea2acc7,8ea2acc7v 76f7 e79bb7 76f7 000076f7 cfe5 cfe5 cfe5 cfe5 cfe5 cfe5 cfe5
+7069 cfe6 cfe6 cfe6 * * 2c48 8ea2acc8,8ea2acc8v 76fb e79bbb 76fb 000076fb cfe6 cfe6 cfe6 cfe6 cfe6 cfe6 cfe6
+7070 cfe7 cfe7 cfe7 * * 2c49 8ea2acc9,8ea2acc9v 76fa e79bba 76fa 000076fa cfe7 cfe7 cfe7 cfe7 cfe7 cfe7 cfe7
+7071 cfe8 cfe8 cfe8 * * 2c4a 8ea2acca,8ea2accav 77e7 e79fa7 77e7 000077e7 cfe8 cfe8 cfe8 cfe8 cfe8 cfe8 cfe8
+7072 cfe9 cfe9 cfe9 * * 2c4b 8ea2accb,8ea2accbv 77e8 e79fa8 77e8 000077e8 cfe9 cfe9 cfe9 cfe9 cfe9 cfe9 cfe9
+7073 cfea cfea cfea * * 2c4c 8ea2accc,8ea2acccv 7806 e7a086 7806 00007806 cfea cfea cfea cfea cfea cfea cfea
+7074 cfeb cfeb cfeb * * 2c4d 8ea2accd,8ea2accdv 7811 e7a091 7811 00007811 cfeb cfeb cfeb cfeb cfeb cfeb cfeb
+7075 cfec cfec cfec * * 2c4e 8ea2acce,8ea2accev 7812 e7a092 7812 00007812 cfec cfec cfec cfec cfec cfec cfec
+7076 cfed cfed cfed * * 2c4f 8ea2accf,8ea2accfv 7805 e7a085 7805 00007805 cfed cfed cfed cfed cfed cfed cfed
+7077 cfee cfee cfee * * 2c50 8ea2acd0,8ea2acd0v 7810 e7a090 7810 00007810 cfee cfee cfee cfee cfee cfee cfee
+7078 cfef cfef cfef * * 2c51 8ea2acd1,8ea2acd1v 780f e7a08f 780f 0000780f cfef cfef cfef cfef cfef cfef cfef
+7079 cff0 cff0 cff0 * * 2c52 8ea2acd2,8ea2acd2v 780e e7a08e 780e 0000780e cff0 cff0 cff0 cff0 cff0 cff0 cff0
+7080 cff1 cff1 cff1 * * 2c53 8ea2acd3,8ea2acd3v 7809 e7a089,ee8baf 7809,e2ef 00007809,0000e2ef fedd,cff1 cff1 cff1 cff1 cff1 cff1 fedd,cff1
+7081 cff2 cff2 cff2 * * 2c54 8ea2acd4,8ea2acd4v 7803 e7a083 7803 00007803 cff2 cff2 cff2 cff2 cff2 cff2 cff2
+7082 cff3 cff3 cff3 * * 2c55 8ea2acd5,8ea2acd5v 7813 e7a093 7813 00007813 cff3 cff3 cff3 cff3 cff3 cff3 cff3
+7083 cff4 cff4 cff4 * * 2c56 8ea2acd6,8ea2acd6v 794a e7a58a 794a 0000794a cff4 cff4 cff4 cff4 cff4 cff4 cff4
+7084 cff5 cff5 cff5 * * 2c57 8ea2acd7,8ea2acd7v 794c e7a58c 794c 0000794c cff5 cff5 cff5 cff5 cff5 cff5 cff5
+7085 cff6 cff6 cff6 * * 2c58 8ea2acd8,8ea2acd8v 794b e7a58b 794b 0000794b cff6 cff6 cff6 cff6 cff6 cff6 cff6
+7086 cff7 cff7 cff7 * * 2c59 8ea2acd9,8ea2acd9v 7945 e7a585 7945 00007945 cff7 cff7 cff7 cff7 cff7 cff7 cff7
+7087 cff8 cff8 cff8 * * 2c5a 8ea2acda,8ea2acdav 7944 e7a584 7944 00007944 cff8 cff8 cff8 cff8 cff8 cff8 cff8
+7088 cff9 cff9 cff9 * * 2c5b 8ea2acdb,8ea2acdbv 79d5 e7a795 79d5 000079d5 cff9 cff9 cff9 cff9 cff9 cff9 cff9
+7089 cffa cffa cffa * * 2c5c 8ea2acdc,8ea2acdcv 79cd e7a78d 79cd 000079cd cffa cffa cffa cffa cffa cffa cffa
+7090 cffb cffb cffb * * 2c5d 8ea2acdd,8ea2acddv 79cf e7a78f 79cf 000079cf cffb cffb cffb cffb cffb cffb cffb
+7091 cffc cffc cffc * * 2c5e 8ea2acde,8ea2acdev 79d6 e7a796 79d6 000079d6 cffc cffc cffc cffc cffc cffc cffc
+7092 cffd cffd cffd * * 2c5f 8ea2acdf,8ea2acdfv 79ce e7a78e 79ce 000079ce cffd cffd cffd cffd cffd cffd cffd
+7093 cffe cffe cffe * * 2c60 8ea2ace0,8ea2ace0v 7a80 e7aa80 7a80 00007a80 cffe cffe cffe cffe cffe cffe cffe
+7094 d040 d040 d040 * * 2c61 8ea2ace1,8ea2ace1v 7a7e e7a9be 7a7e 00007a7e d040 d040 d040 d040 d040 d040 d040
+7095 d041 d041 d041 * * 2c62 8ea2ace2,8ea2ace2v 7ad1 e7ab91 7ad1 00007ad1 d041 d041 d041 d041 d041 d041 d041
+7096 d042 d042 d042 * * 2c63 8ea2ace3,8ea2ace3v 7b00 e7ac80 7b00 00007b00 d042 d042 d042 d042 d042 d042 d042
+7097 d043 d043 d043 * * 2c64 8ea2ace4,8ea2ace4v 7b01 e7ac81 7b01 00007b01 d043 d043 d043 d043 d043 d043 d043
+7098 d044 d044 d044 * * 2c65 8ea2ace5,8ea2ace5v 7c7a e7b1ba 7c7a 00007c7a d044 d044 d044 d044 d044 d044 d044
+7099 d045 d045 d045 * * 2c66 8ea2ace6,8ea2ace6v 7c78 e7b1b8 7c78 00007c78 d045 d045 d045 d045 d045 d045 d045
+7100 d046 d046 d046 * * 2c67 8ea2ace7,8ea2ace7v 7c79 e7b1b9 7c79 00007c79 d046 d046 d046 d046 d046 d046 d046
+7101 d047 d047 d047 * * 2c68 8ea2ace8,8ea2ace8v 7c7f e7b1bf 7c7f 00007c7f d047 d047 d047 d047 d047 d047 d047
+7102 d048 d048 d048 * * 2c69 8ea2ace9,8ea2ace9v 7c80 e7b280 7c80 00007c80 d048 d048 d048 d048 d048 d048 d048
+7103 d049 d049 d049 * * 2c6a 8ea2acea,8ea2aceav 7c81 e7b281 7c81 00007c81 d049 d049 d049 d049 d049 d049 d049
+7104 d04a d04a d04a * * 2c6b 8ea2aceb,8ea2acebv 7d03 e7b483 7d03 00007d03 d04a d04a d04a d04a d04a d04a d04a
+7105 d04b d04b d04b * * 2c6c 8ea2acec,8ea2acecv 7d08 e7b488 7d08 00007d08 d04b d04b d04b d04b d04b d04b d04b
+7106 d04c d04c d04c * * 2c6d 8ea2aced,8ea2acedv 7d01 e7b481 7d01 00007d01 d04c d04c d04c d04c d04c d04c d04c
+7107 d04d d04d d04d * * 2c6e 8ea2acee,8ea2aceev 7f58 e7bd98 7f58 00007f58 d04d d04d d04d d04d d04d d04d d04d
+7108 d04e d04e d04e * * 2c6f 8ea2acef,8ea2acefv 7f91 e7be91 7f91 00007f91 d04e d04e d04e d04e d04e d04e d04e
+7109 d04f d04f d04f * * 2c70 8ea2acf0,8ea2acf0v 7f8d e7be8d 7f8d 00007f8d d04f d04f d04f d04f d04f d04f d04f
+7110 d050 d050 d050 * * 2c71 8ea2acf1,8ea2acf1v 7fbe e7bebe 7fbe 00007fbe d050 d050 d050 d050 d050 d050 d050
+7111 d051 d051 d051 * * 2c72 8ea2acf2,8ea2acf2v 8007 e88087 8007 00008007 d051 d051 d051 d051 d051 d051 d051
+7112 d052 d052 d052 * * 2c73 8ea2acf3,8ea2acf3v 800e e8808e 800e 0000800e d052 d052 d052 d052 d052 d052 d052
+7113 d053 d053 d053 * * 2c74 8ea2acf4,8ea2acf4v 800f e8808f 800f 0000800f d053 d053 d053 d053 d053 d053 d053
+7114 d054 d054 d054 * * 2c75 8ea2acf5,8ea2acf5v 8014 e88094 8014 00008014 d054 d054 d054 d054 d054 d054 d054
+7115 d055 d055 d055 * * 2c76 8ea2acf6,8ea2acf6v 8037 e880b7 8037 00008037 d055 d055 d055 d055 d055 d055 d055
+7116 d056 d056 d056 * * 2c77 8ea2acf7,8ea2acf7v 80d8 e88398 80d8 000080d8 d056 d056 d056 d056 d056 d056 d056
+7117 d057 d057 d057 * * 2c78 8ea2acf8,8ea2acf8v 80c7 e88387 80c7 000080c7 d057 d057 d057 d057 d057 d057 d057
+7118 d058 d058 d058 * * 2c79 8ea2acf9,8ea2acf9v 80e0 e883a0 80e0 000080e0 d058 d058 d058 d058 d058 d058 d058
+7119 d059 d059 d059 * * 2c7a 8ea2acfa,8ea2acfav 80d1 e88391 80d1 000080d1 d059 d059 d059 d059 d059 d059 d059
+7120 d05a d05a d05a * * 2c7b 8ea2acfb,8ea2acfbv 80c8 e88388 80c8 000080c8 d05a d05a d05a d05a d05a d05a d05a
+7121 d05b d05b d05b * * 2c7c 8ea2acfc,8ea2acfcv 80c2 e88382 80c2 000080c2 d05b d05b d05b d05b d05b d05b d05b
+7122 d05c d05c d05c * * 2c7d 8ea2acfd,8ea2acfdv 80d0 e88390 80d0 000080d0 d05c d05c d05c d05c d05c d05c d05c
+7123 d05d d05d d05d * * 2c7e 8ea2acfe,8ea2acfev 80c5 e88385 80c5 000080c5 d05d d05d d05d d05d d05d d05d d05d
+7124 d05e d05e d05e * * 2d21 8ea2ada1,8ea2ada1v 80e3 e883a3 80e3 000080e3 d05e d05e d05e d05e d05e d05e d05e
+7125 d05f d05f d05f * * 2d22 8ea2ada2,8ea2ada2v 80d9 e88399 80d9 000080d9 d05f d05f d05f d05f d05f d05f d05f
+7126 d060 d060 d060 * * 2d23 8ea2ada3,8ea2ada3v 80dc e8839c 80dc 000080dc d060 d060 d060 d060 d060 d060 d060
+7127 d061 d061 d061 * * 2d24 8ea2ada4,8ea2ada4v 80ca e8838a 80ca 000080ca d061 d061 d061 d061 d061 d061 d061
+7128 d062 d062 d062 * * 2d25 8ea2ada5,8ea2ada5v 80d5 e88395 80d5 000080d5 d062 d062 d062 d062 d062 d062 d062
+7129 d063 d063 d063 * * 2d26 8ea2ada6,8ea2ada6v 80c9 e88389 80c9 000080c9 d063 d063 d063 d063 d063 d063 d063
+7130 d064 d064 d064 * * 2d27 8ea2ada7,8ea2ada7v 80cf e8838f 80cf 000080cf d064 d064 d064 d064 d064 d064 d064
+7131 d065 d065 d065 * * 2d28 8ea2ada8,8ea2ada8v 80d7 e88397 80d7 000080d7 d065 d065 d065 d065 d065 d065 d065
+7132 d066 d066 d066 * * 2d29 8ea2ada9,8ea2ada9v 80e6 e883a6 80e6 000080e6 d066 d066 d066 d066 d066 d066 d066
+7133 d067 d067 d067 * * 2d2a 8ea2adaa,8ea2adaav 80cd e8838d 80cd 000080cd d067 d067 d067 d067 d067 d067 d067
+7134 d068 d068 d068 * * 2d2b 8ea2adab,8ea2adabv 81ff e887bf 81ff 000081ff d068 d068 d068 d068 d068 d068 d068
+7135 d069 d069 d069 * * 2d2c 8ea2adac,8ea2adacv 8221 e888a1 8221 00008221 d069 d069 d069 d069 d069 d069 d069
+7136 d06a d06a d06a * * 2d2d 8ea2adad,8ea2adadv 8294 e88a94 8294 00008294 d06a d06a d06a d06a d06a d06a d06a
+7137 d06b d06b d06b * * 2d2e 8ea2adae,8ea2adaev 82d9 e88b99 82d9 000082d9 d06b d06b d06b d06b d06b d06b d06b
+7138 d06c d06c d06c * * 2d2f 8ea2adaf,8ea2adafv 82fe e88bbe 82fe 000082fe d06c d06c d06c d06c d06c d06c d06c
+7139 d06d d06d d06d * * 2d30 8ea2adb0,8ea2adb0v 82f9 e88bb9 82f9 000082f9 d06d d06d d06d d06d d06d d06d d06d
+7140 d06e d06e d06e * * 2d31 8ea2adb1,8ea2adb1v 8307 e88c87 8307 00008307 d06e d06e d06e d06e d06e d06e d06e
+7141 d06f d06f d06f * * 2d32 8ea2adb2,8ea2adb2v 82e8 e88ba8 82e8 000082e8 d06f d06f d06f d06f d06f d06f d06f
+7142 d070 d070 d070 * * 2d33 8ea2adb3,8ea2adb3v 8300 e88c80 8300 00008300 d070 d070 d070 d070 d070 d070 d070
+7143 d071 d071 d071 * * 2d34 8ea2adb4,8ea2adb4v 82d5 e88b95 82d5 000082d5 d071 d071 d071 d071 d071 d071 d071
+7144 d072 d072 d072 * * 2d35 8ea2adb5,8ea2adb5v 833a e88cba 833a 0000833a d072 d072 d072 d072 d072 d072 d072
+7145 d073 d073 d073 * * 2d36 8ea2adb6,8ea2adb6v 82eb e88bab 82eb 000082eb d073 d073 d073 d073 d073 d073 d073
+7146 d074 d074 d074 * * 2d37 8ea2adb7,8ea2adb7v 82d6 e88b96 82d6 000082d6 d074 d074 d074 d074 d074 d074 d074
+7147 d075 d075 d075 * * 2d38 8ea2adb8,8ea2adb8v 82f4 e88bb4 82f4 000082f4 d075 d075 d075 d075 d075 d075 d075
+7148 d076 d076 d076 * * 2d39 8ea2adb9,8ea2adb9v 82ec e88bac 82ec 000082ec d076 d076 d076 d076 d076 d076 d076
+7149 d077 d077 d077 * * 2d3a 8ea2adba,8ea2adbav 82e1 e88ba1 82e1 000082e1 d077 d077 d077 d077 d077 d077 d077
+7150 d078 d078 d078 * * 2d3b 8ea2adbb,8ea2adbbv 82f2 e88bb2 82f2 000082f2 d078 d078 d078 d078 d078 d078 d078
+7151 d079 d079 d079 * * 2d3c 8ea2adbc,8ea2adbcv 82f5 e88bb5 82f5 000082f5 d079 d079 d079 d079 d079 d079 d079
+7152 d07a d07a d07a * * 2d3d 8ea2adbd,8ea2adbdv 830c e88c8c 830c 0000830c d07a d07a d07a d07a d07a d07a d07a
+7153 d07b d07b d07b * * 2d3e 8ea2adbe,8ea2adbev 82fb e88bbb 82fb 000082fb d07b d07b d07b d07b d07b d07b d07b
+7154 d07c d07c d07c * * 2d3f 8ea2adbf,8ea2adbfv 82f6 e88bb6 82f6 000082f6 d07c d07c d07c d07c d07c d07c d07c
+7155 d07d d07d d07d * * 2d40 8ea2adc0,8ea2adc0v 82f0 e88bb0 82f0 000082f0 d07d d07d d07d d07d d07d d07d d07d
+7156 d07e d07e d07e * * 2d41 8ea2adc1,8ea2adc1v 82ea e88baa 82ea 000082ea d07e d07e d07e d07e d07e d07e d07e
+7157 d0a1 d0a1 d0a1 * * 2d42 8ea2adc2,8ea2adc2v 82e4 e88ba4 82e4 000082e4 d0a1 d0a1 d0a1 d0a1 d0a1 d0a1 d0a1
+7158 d0a2 d0a2 d0a2 * * 2d43 8ea2adc3,8ea2adc3v 82e0 e88ba0 82e0 000082e0 d0a2 d0a2 d0a2 d0a2 d0a2 d0a2 d0a2
+7159 d0a3 d0a3 d0a3 * * 2d44 8ea2adc4,8ea2adc4v 82fa e88bba 82fa 000082fa d0a3 d0a3 d0a3 d0a3 d0a3 d0a3 d0a3
+7160 d0a4 d0a4 d0a4 * * 2d45 8ea2adc5,8ea2adc5v 82f3 e88bb3 82f3 000082f3 d0a4 d0a4 d0a4 d0a4 d0a4 d0a4 d0a4
+7161 d0a5 d0a5 d0a5 * * 2d46 8ea2adc6,8ea2adc6v 82ed e88bad 82ed 000082ed d0a5 d0a5 d0a5 d0a5 d0a5 d0a5 d0a5
+7162 d0a6 d0a6 d0a6 * * 2d47 8ea2adc7,8ea2adc7v 8677 e899b7 8677 00008677 d0a6 d0a6 d0a6 d0a6 d0a6 d0a6 d0a6
+7163 d0a7 d0a7 d0a7 * * 2d48 8ea2adc8,8ea2adc8v 8674 e899b4 8674 00008674 d0a7 d0a7 d0a7 d0a7 d0a7 d0a7 d0a7
+7164 d0a8 d0a8 d0a8 * * 2d49 8ea2adc9,8ea2adc9v 867c e899bc 867c 0000867c d0a8 d0a8 d0a8 d0a8 d0a8 d0a8 d0a8
+7165 d0a9 d0a9 d0a9 * * 2d4a 8ea2adca,8ea2adcav 8673 e899b3 8673 00008673 d0a9 d0a9 d0a9 d0a9 d0a9 d0a9 d0a9
+7166 d0aa d0aa d0aa * * 2d4b 8ea2adcb,8ea2adcbv 8841 e8a181 8841 00008841 d0aa d0aa d0aa d0aa d0aa d0aa d0aa
+7167 d0ab d0ab d0ab * * 2d4c 8ea2adcc,8ea2adccv 884e e8a18e 884e 0000884e d0ab d0ab d0ab d0ab d0ab d0ab d0ab
+7168 d0ac d0ac d0ac * * 2d4d 8ea2adcd,8ea2adcdv 8867 e8a1a7 8867 00008867 d0ac d0ac d0ac d0ac d0ac d0ac d0ac
+7169 d0ad d0ad d0ad * * 2d4e 8ea2adce,8ea2adcev 886a e8a1aa 886a 0000886a d0ad d0ad d0ad d0ad d0ad d0ad d0ad
+7170 d0ae d0ae d0ae * * 2d4f 8ea2adcf,8ea2adcfv 8869 e8a1a9 8869 00008869 d0ae d0ae d0ae d0ae d0ae d0ae d0ae
+7171 d0af d0af d0af * * 2d50 8ea2add0,8ea2add0v 89d3 e8a793 89d3 000089d3 d0af d0af d0af d0af d0af d0af d0af
+7172 d0b0 d0b0 d0b0 * * 2d51 8ea2add1,8ea2add1v 8a04 e8a884 8a04 00008a04 d0b0 d0b0 d0b0 d0b0 d0b0 d0b0 d0b0
+7173 d0b1 d0b1 d0b1 * * 2d52 8ea2add2,8ea2add2v 8a07 e8a887 8a07 00008a07 d0b1 d0b1 d0b1 d0b1 d0b1 d0b1 d0b1
+7174 d0b2 d0b2 d0b2 * * 2d53 8ea2add3,8ea2add3v 8d72 e8b5b2 8d72 00008d72 d0b2 d0b2 d0b2 d0b2 d0b2 d0b2 d0b2
+7175 d0b3 d0b3 d0b3 * * 2d54 8ea2add4,8ea2add4v 8fe3 e8bfa3 8fe3 00008fe3 d0b3 d0b3 d0b3 d0b3 d0b3 d0b3 d0b3
+7176 d0b4 d0b4 d0b4 * * 2d55 8ea2add5,8ea2add5v 8fe1 e8bfa1 8fe1 00008fe1 d0b4 d0b4 d0b4 d0b4 d0b4 d0b4 d0b4
+7177 d0b5 d0b5 d0b5 * * 2d56 8ea2add6,8ea2add6v 8fee e8bfae 8fee 00008fee d0b5 d0b5 d0b5 d0b5 d0b5 d0b5 d0b5
+7178 d0b6 d0b6 d0b6 * * 2d57 8ea2add7,8ea2add7v 8fe0 e8bfa0 8fe0 00008fe0 d0b6 d0b6 d0b6 d0b6 d0b6 d0b6 d0b6
+7179 d0b7 d0b7 d0b7 * * 2d58 8ea2add8,8ea2add8v 90f1 e983b1 90f1 000090f1 d0b7 d0b7 d0b7 d0b7 d0b7 d0b7 d0b7
+7180 d0b8 d0b8 d0b8 * * 2d59 8ea2add9,8ea2add9v 90bd e982bd 90bd 000090bd d0b8 d0b8 d0b8 d0b8 d0b8 d0b8 d0b8
+7181 d0b9 d0b9 d0b9 * * 2d5a 8ea2adda,8ea2addav 90bf e982bf 90bf 000090bf d0b9 d0b9 d0b9 d0b9 d0b9 d0b9 d0b9
+7182 d0ba d0ba d0ba * * 2d5b 8ea2addb,8ea2addbv 90d5 e98395 90d5 000090d5 d0ba d0ba d0ba d0ba d0ba d0ba d0ba
+7183 d0bb d0bb d0bb * * 2d5c 8ea2addc,8ea2addcv 90c5 e98385 90c5 000090c5 d0bb d0bb d0bb d0bb d0bb d0bb d0bb
+7184 d0bc d0bc d0bc * * 2d5d 8ea2addd,8ea2adddv 90be e982be 90be 000090be d0bc d0bc d0bc d0bc d0bc d0bc d0bc
+7185 d0bd d0bd d0bd * * 2d5e 8ea2adde,8ea2addev 90c7 e98387 90c7 000090c7 d0bd d0bd d0bd d0bd d0bd d0bd d0bd
+7186 d0be d0be d0be * * 2d5f 8ea2addf,8ea2addfv 90cb e9838b 90cb 000090cb d0be d0be d0be d0be d0be d0be d0be
+7187 d0bf d0bf d0bf * * 2d60 8ea2ade0,8ea2ade0v 90c8 e98388 90c8 000090c8 d0bf d0bf d0bf d0bf d0bf d0bf d0bf
+7188 d0c0 d0c0 d0c0 * * 2d61 8ea2ade1,8ea2ade1v 91d4 e98794,eeae86 91d4,eb86 000091d4,0000eb86 9bde,d0c0 d0c0 d0c0 9bde,d0c0 d0c0 d0c0 9bde,d0c0
+7189 d0c1 d0c1 d0c1 * * 2d62 8ea2ade2,8ea2ade2v 91d3 e98793 91d3 000091d3 d0c1 d0c1 d0c1 d0c1 d0c1 d0c1 d0c1
+7190 d0c2 d0c2 d0c2 * * 2d63 8ea2ade3,8ea2ade3v 9654 e99994 9654 00009654 d0c2 d0c2 d0c2 d0c2 d0c2 d0c2 d0c2
+7191 d0c3 d0c3 d0c3 * * 2d64 8ea2ade4,8ea2ade4v 964f e9998f 964f 0000964f d0c3 d0c3 d0c3 d0c3 d0c3 d0c3 d0c3
+7192 d0c4 d0c4 d0c4 * * 2d65 8ea2ade5,8ea2ade5v 9651 e99991 9651 00009651 d0c4 d0c4 d0c4 d0c4 d0c4 d0c4 d0c4
+7193 d0c5 d0c5 d0c5 * * 2d66 8ea2ade6,8ea2ade6v 9653 e99993 9653 00009653 d0c5 d0c5 d0c5 d0c5 d0c5 d0c5 d0c5
+7194 d0c6 d0c6 d0c6 * * 2d67 8ea2ade7,8ea2ade7v 964a e9998a 964a 0000964a d0c6 d0c6 d0c6 d0c6 d0c6 d0c6 d0c6
+7195 d0c7 d0c7 d0c7 * * 2d68 8ea2ade8,8ea2ade8v 964e e9998e 964e 0000964e d0c7 d0c7 d0c7 d0c7 d0c7 d0c7 d0c7
+7196 d0c8 d0c8 d0c8 * * 2d69 8ea2ade9,8ea2ade9v 501e e5809e 501e 0000501e d0c8 d0c8 d0c8 d0c8 d0c8 d0c8 d0c8
+7197 d0c9 d0c9 d0c9 * * 2d6a 8ea2adea,8ea2adeav 5005 e58085 5005 00005005 d0c9 d0c9 d0c9 d0c9 d0c9 d0c9 d0c9
+7198 d0ca d0ca d0ca * * 2d6b 8ea2adeb,8ea2adebv 5007 e58087 5007 00005007 d0ca d0ca d0ca d0ca d0ca d0ca d0ca
+7199 d0cb d0cb d0cb * * 2d6c 8ea2adec,8ea2adecv 5013 e58093 5013 00005013 d0cb d0cb d0cb d0cb d0cb d0cb d0cb
+7200 d0cc d0cc d0cc * * 2d6d 8ea2aded,8ea2adedv 5022 e580a2 5022 00005022 d0cc d0cc d0cc d0cc d0cc d0cc d0cc
+7201 d0cd d0cd d0cd * * 2d6e 8ea2adee,8ea2adeev 5030 e580b0 5030 00005030 d0cd d0cd d0cd d0cd d0cd d0cd d0cd
+7202 d0ce d0ce d0ce * * 2d6f 8ea2adef,8ea2adefv 501b e5809b 501b 0000501b d0ce d0ce d0ce d0ce d0ce d0ce d0ce
+7203 d0cf d0cf d0cf * * 2d70 8ea2adf0,8ea2adf0v 4ff5 e4bfb5 4ff5 00004ff5 d0cf d0cf d0cf d0cf d0cf d0cf d0cf
+7204 d0d0 d0d0 d0d0 * * 2d71 8ea2adf1,8ea2adf1v 4ff4 e4bfb4 4ff4 00004ff4 d0d0 d0d0 d0d0 d0d0 d0d0 d0d0 d0d0
+7205 d0d1 d0d1 d0d1 * * 2d72 8ea2adf2,8ea2adf2v 5033 e580b3 5033 00005033 d0d1 d0d1 d0d1 d0d1 d0d1 d0d1 d0d1
+7206 d0d2 d0d2 d0d2 * * 2d73 8ea2adf3,8ea2adf3v 5037 e580b7 5037 00005037 d0d2 d0d2 d0d2 d0d2 d0d2 d0d2 d0d2
+7207 d0d3 d0d3 d0d3 * * 2d74 8ea2adf4,8ea2adf4v 502c e580ac 502c 0000502c d0d3 d0d3 d0d3 d0d3 d0d3 d0d3 d0d3
+7208 d0d4 d0d4 d0d4 * * 2d75 8ea2adf5,8ea2adf5v 4ff6 e4bfb6 4ff6 00004ff6 d0d4 d0d4 d0d4 d0d4 d0d4 d0d4 d0d4
+7209 d0d5 d0d5 d0d5 * * 2d76 8ea2adf6,8ea2adf6v 4ff7 e4bfb7 4ff7 00004ff7 d0d5 d0d5 d0d5 d0d5 d0d5 d0d5 d0d5
+7210 d0d6 d0d6 d0d6 * * 2d77 8ea2adf7,8ea2adf7v 5017 e58097 5017 00005017 d0d6 d0d6 d0d6 d0d6 d0d6 d0d6 d0d6
+7211 d0d7 d0d7 d0d7 * * 2d78 8ea2adf8,8ea2adf8v 501c e5809c 501c 0000501c d0d7 d0d7 d0d7 d0d7 d0d7 d0d7 d0d7
+7212 d0d8 d0d8 d0d8 * * 2d79 8ea2adf9,8ea2adf9v 5020 e580a0 5020 00005020 d0d8 d0d8 d0d8 d0d8 d0d8 d0d8 d0d8
+7213 d0d9 d0d9 d0d9 * * 2d7a 8ea2adfa,8ea2adfav 5027 e580a7 5027 00005027 d0d9 d0d9 d0d9 d0d9 d0d9 d0d9 d0d9
+7214 d0da d0da d0da * * 2d7b 8ea2adfb,8ea2adfbv 5035 e580b5 5035 00005035 d0da d0da d0da d0da d0da d0da d0da
+7215 d0db d0db d0db * * 2d7c 8ea2adfc,8ea2adfcv 502f e580af 502f 0000502f d0db d0db d0db d0db d0db d0db d0db
+7216 d0dc d0dc d0dc * * 2d7d 8ea2adfd,8ea2adfdv 5031 e580b1 5031 00005031 d0dc d0dc d0dc d0dc d0dc d0dc d0dc
+7217 d0dd d0dd d0dd * * 2d7e 8ea2adfe,8ea2adfev 500e e5808e 500e 0000500e d0dd d0dd d0dd d0dd d0dd d0dd d0dd
+7218 d0de d0de d0de * * 2e21 8ea2aea1,8ea2aea1v 515a e5859a 515a 0000515a d0de d0de d0de d0de d0de d0de d0de
+7219 d0df d0df d0df * * 2e22 8ea2aea2,8ea2aea2v 5194 e58694 5194 00005194 d0df d0df d0df d0df d0df d0df d0df
+7220 d0e0 d0e0 d0e0 * * 2e23 8ea2aea3,8ea2aea3v 5193 e58693 5193 00005193 d0e0 d0e0 d0e0 d0e0 d0e0 d0e0 d0e0
+7221 d0e1 d0e1 d0e1 * * 2e24 8ea2aea4,8ea2aea4v 51ca e5878a 51ca 000051ca d0e1 d0e1 d0e1 d0e1 d0e1 d0e1 d0e1
+7222 d0e2 d0e2 d0e2 * * 2e25 8ea2aea5,8ea2aea5v 51c4 e58784 51c4 000051c4 d0e2 d0e2 d0e2 d0e2 d0e2 d0e2 d0e2
+7223 d0e3 d0e3 d0e3 * * 2e26 8ea2aea6,8ea2aea6v 51c5 e58785 51c5 000051c5 d0e3 d0e3 d0e3 d0e3 d0e3 d0e3 d0e3
+7224 d0e4 d0e4 d0e4 * * 2e27 8ea2aea7,8ea2aea7v 51c8 e58788 51c8 000051c8 d0e4 d0e4 d0e4 d0e4 d0e4 d0e4 d0e4
+7225 d0e5 d0e5 d0e5 * * 2e28 8ea2aea8,8ea2aea8v 51ce e5878e 51ce 000051ce d0e5 d0e5 d0e5 d0e5 d0e5 d0e5 d0e5
+7226 d0e6 d0e6 d0e6 * * 2e29 8ea2aea9,8ea2aea9v 5261 e589a1 5261 00005261 d0e6 d0e6 d0e6 d0e6 d0e6 d0e6 d0e6
+7227 d0e7 d0e7 d0e7 * * 2e2a 8ea2aeaa,8ea2aeaav 525a e5899a 525a 0000525a d0e7 d0e7 d0e7 d0e7 d0e7 d0e7 d0e7
+7228 d0e8 d0e8 d0e8 * * 2e2b 8ea2aeab,8ea2aeabv 5252 e58992 5252 00005252 d0e8 d0e8 d0e8 d0e8 d0e8 d0e8 d0e8
+7229 d0e9 d0e9 d0e9 * * 2e2c 8ea2aeac,8ea2aeacv 525e e5899e 525e 0000525e d0e9 d0e9 d0e9 d0e9 d0e9 d0e9 d0e9
+7230 d0ea d0ea d0ea * * 2e2d 8ea2aead,8ea2aeadv 525f e5899f 525f 0000525f d0ea d0ea d0ea d0ea d0ea d0ea d0ea
+7231 d0eb d0eb d0eb * * 2e2e 8ea2aeae,8ea2aeaev 5255 e58995 5255 00005255 d0eb d0eb d0eb d0eb d0eb d0eb d0eb
+7232 d0ec d0ec d0ec * * 2e2f 8ea2aeaf,8ea2aeafv 5262 e589a2 5262 00005262 d0ec d0ec d0ec d0ec d0ec d0ec d0ec
+7233 d0ed d0ed d0ed * * 2e30 8ea2aeb0,8ea2aeb0v 52cd e58b8d 52cd 000052cd d0ed d0ed d0ed d0ed d0ed d0ed d0ed
+7234 d0ee d0ee d0ee * * 2e31 8ea2aeb1,8ea2aeb1v 530e e58c8e 530e 0000530e d0ee d0ee d0ee d0ee d0ee d0ee d0ee
+7235 d0ef d0ef d0ef * * 2e32 8ea2aeb2,8ea2aeb2v 539e e58e9e 539e 0000539e d0ef d0ef d0ef d0ef d0ef d0ef d0ef
+7236 d0f0 d0f0 d0f0 * * 2e33 8ea2aeb3,8ea2aeb3v 5526 e594a6 5526 00005526 d0f0 d0f0 d0f0 d0f0 d0f0 d0f0 d0f0
+7237 d0f1 d0f1 d0f1 * * 2e34 8ea2aeb4,8ea2aeb4v 54e2 e593a2 54e2 000054e2 d0f1 d0f1 d0f1 d0f1 d0f1 d0f1 d0f1
+7238 d0f2 d0f2 d0f2 * * 2e35 8ea2aeb5,8ea2aeb5v 5517 e59497 5517 00005517 d0f2 d0f2 d0f2 d0f2 d0f2 d0f2 d0f2
+7239 d0f3 d0f3 d0f3 * * 2e36 8ea2aeb6,8ea2aeb6v 5512 e59492 5512 00005512 d0f3 d0f3 d0f3 d0f3 d0f3 d0f3 d0f3
+7240 d0f4 d0f4 d0f4 * * 2e37 8ea2aeb7,8ea2aeb7v 54e7 e593a7 54e7 000054e7 d0f4 d0f4 d0f4 d0f4 d0f4 d0f4 d0f4
+7241 d0f5 d0f5 d0f5 * * 2e38 8ea2aeb8,8ea2aeb8v 54f3 e593b3 54f3 000054f3 d0f5 d0f5 d0f5 d0f5 d0f5 d0f5 d0f5
+7242 d0f6 d0f6 d0f6 * * 2e39 8ea2aeb9,8ea2aeb9v 54e4 e593a4 54e4 000054e4 d0f6 d0f6 d0f6 d0f6 d0f6 d0f6 d0f6
+7243 d0f7 d0f7 d0f7 * * 2e3a 8ea2aeba,8ea2aebav 551a e5949a 551a 0000551a d0f7 d0f7 d0f7 d0f7 d0f7 d0f7 d0f7
+7244 d0f8 d0f8 d0f8 * * 2e3b 8ea2aebb,8ea2aebbv 54ff e593bf 54ff 000054ff d0f8 d0f8 d0f8 d0f8 d0f8 d0f8 d0f8
+7245 d0f9 d0f9 d0f9 * * 2e3c 8ea2aebc,8ea2aebcv 5504 e59484 5504 00005504 d0f9 d0f9 d0f9 d0f9 d0f9 d0f9 d0f9
+7246 d0fa d0fa d0fa * * 2e3d 8ea2aebd,8ea2aebdv 5508 e59488 5508 00005508 d0fa d0fa d0fa d0fa d0fa d0fa d0fa
+7247 d0fb d0fb d0fb * * 2e3e 8ea2aebe,8ea2aebev 54eb e593ab 54eb 000054eb d0fb d0fb d0fb d0fb d0fb d0fb d0fb
+7248 d0fc d0fc d0fc * * 2e3f 8ea2aebf,8ea2aebfv 5511 e59491 5511 00005511 d0fc d0fc d0fc d0fc d0fc d0fc d0fc
+7249 d0fd d0fd d0fd * * 2e40 8ea2aec0,8ea2aec0v 5505 e59485 5505 00005505 d0fd d0fd d0fd d0fd d0fd d0fd d0fd
+7250 d0fe d0fe d0fe * * 2e41 8ea2aec1,8ea2aec1v 54f1 e593b1 54f1 000054f1 d0fe d0fe d0fe d0fe d0fe d0fe d0fe
+7251 d140 d140 d140 * * 2e42 8ea2aec2,8ea2aec2v 550a e5948a 550a 0000550a d140 d140 d140 d140 d140 d140 d140
+7252 d141 d141 d141 * * 2e43 8ea2aec3,8ea2aec3v 54fb e593bb 54fb 000054fb d141 d141 d141 d141 d141 d141 d141
+7253 d142 d142 d142 * * 2e44 8ea2aec4,8ea2aec4v 54f7 e593b7 54f7 000054f7 d142 d142 d142 d142 d142 d142 d142
+7254 d143 d143 d143 * * 2e45 8ea2aec5,8ea2aec5v 54f8 e593b8 54f8 000054f8 d143 d143 d143 d143 d143 d143 d143
+7255 d144 d144 d144 * * 2e46 8ea2aec6,8ea2aec6v 54e0 e593a0 54e0 000054e0 d144 d144 d144 d144 d144 d144 d144
+7256 d145 d145 d145 * * 2e47 8ea2aec7,8ea2aec7v 550e e5948e 550e 0000550e d145 d145 d145 d145 d145 d145 d145
+7257 d146 d146 d146 * * 2e48 8ea2aec8,8ea2aec8v 5503 e59483 5503 00005503 d146 d146 d146 d146 d146 d146 d146
+7258 d147 d147 d147 * * 2e49 8ea2aec9,8ea2aec9v 550b e5948b 550b 0000550b d147 d147 d147 d147 d147 d147 d147
+7259 d148 d148 d148 * * 2e4a 8ea2aeca,8ea2aecav 5701 e59c81 5701 00005701 d148 d148 d148 d148 d148 d148 d148
+7260 d149 d149 d149 * * 2e4b 8ea2aecb,8ea2aecbv 5702 e59c82 5702 00005702 d149 d149 d149 d149 d149 d149 d149
+7261 d14a d14a d14a * * 2e4c 8ea2aecc,8ea2aeccv 57cc e59f8c 57cc 000057cc d14a d14a d14a d14a d14a d14a d14a
+7262 d14b d14b d14b * * 2e4d 8ea2aecd,8ea2aecdv 5832 e5a0b2 5832 00005832 d14b d14b d14b d14b d14b d14b d14b
+7263 d14c d14c d14c * * 2e4e 8ea2aece,8ea2aecev 57d5 e59f95 57d5 000057d5 d14c d14c d14c d14c d14c d14c d14c
+7264 d14d d14d d14d * * 2e4f 8ea2aecf,8ea2aecfv 57d2 e59f92 57d2 000057d2 d14d d14d d14d d14d d14d d14d d14d
+7265 d14e d14e d14e * * 2e50 8ea2aed0,8ea2aed0v 57ba e59eba 57ba 000057ba d14e d14e d14e d14e d14e d14e d14e
+7266 d14f d14f d14f * * 2e51 8ea2aed1,8ea2aed1v 57c6 e59f86 57c6 000057c6 d14f d14f d14f d14f d14f d14f d14f
+7267 d150 d150 d150 * * 2e52 8ea2aed2,8ea2aed2v 57bd e59ebd 57bd 000057bd d150 d150 d150 d150 d150 d150 d150
+7268 d151 d151 d151 * * 2e53 8ea2aed3,8ea2aed3v 57bc e59ebc 57bc 000057bc d151 d151 d151 d151 d151 d151 d151
+7269 d152 d152 d152 * * 2e54 8ea2aed4,8ea2aed4v 57b8 e59eb8 57b8 000057b8 d152 d152 d152 d152 d152 d152 d152
+7270 d153 d153 d153 * * 2e55 8ea2aed5,8ea2aed5v 57b6 e59eb6 57b6 000057b6 d153 d153 d153 d153 d153 d153 d153
+7271 d154 d154 d154 * * 2e56 8ea2aed6,8ea2aed6v 57bf e59ebf 57bf 000057bf d154 d154 d154 d154 d154 d154 d154
+7272 d155 d155 d155 * * 2e57 8ea2aed7,8ea2aed7v 57c7 e59f87 57c7 000057c7 d155 d155 d155 d155 d155 d155 d155
+7273 d156 d156 d156 * * 2e58 8ea2aed8,8ea2aed8v 57d0 e59f90 57d0 000057d0 d156 d156 d156 d156 d156 d156 d156
+7274 d157 d157 d157 * * 2e59 8ea2aed9,8ea2aed9v 57b9 e59eb9 57b9 000057b9 d157 d157 d157 d157 d157 d157 d157
+7275 d158 d158 d158 * * 2e5a 8ea2aeda,8ea2aedav 57c1 e59f81 57c1 000057c1 d158 d158 d158 d158 d158 d158 d158
+7276 d159 d159 d159 * * 2e5b 8ea2aedb,8ea2aedbv 590e e5a48e 590e 0000590e d159 d159 d159 d159 d159 d159 d159
+7277 d15a d15a d15a * * 2e5c 8ea2aedc,8ea2aedcv 594a e5a58a 594a 0000594a d15a d15a d15a d15a d15a d15a d15a
+7278 d15b d15b d15b * * 2e5d 8ea2aedd,8ea2aeddv 5a19 e5a899 5a19 00005a19 d15b d15b d15b d15b d15b d15b d15b
+7279 d15c d15c d15c * * 2e5e 8ea2aede,8ea2aedev 5a16 e5a896 5a16 00005a16 d15c d15c d15c d15c d15c d15c d15c
+7280 d15d d15d d15d * * 2e5f 8ea2aedf,8ea2aedfv 5a2d e5a8ad 5a2d 00005a2d d15d d15d d15d d15d d15d d15d d15d
+7281 d15e d15e d15e * * 2e60 8ea2aee0,8ea2aee0v 5a2e e5a8ae 5a2e 00005a2e d15e d15e d15e d15e d15e d15e d15e
+7282 d15f d15f d15f * * 2e61 8ea2aee1,8ea2aee1v 5a15 e5a895 5a15 00005a15 d15f d15f d15f d15f d15f d15f d15f
+7283 d160 d160 d160 * * 2e62 8ea2aee2,8ea2aee2v 5a0f e5a88f 5a0f 00005a0f d160 d160 d160 d160 d160 d160 d160
+7284 d161 d161 d161 * * 2e63 8ea2aee3,8ea2aee3v 5a17 e5a897 5a17 00005a17 d161 d161 d161 d161 d161 d161 d161
+7285 d162 d162 d162 * * 2e64 8ea2aee4,8ea2aee4v 5a0a e5a88a 5a0a 00005a0a d162 d162 d162 d162 d162 d162 d162
+7286 d163 d163 d163 * * 2e65 8ea2aee5,8ea2aee5v 5a1e e5a89e 5a1e 00005a1e d163 d163 d163 d163 d163 d163 d163
+7287 d164 d164 d164 * * 2e66 8ea2aee6,8ea2aee6v 5a33 e5a8b3 5a33 00005a33 d164 d164 d164 d164 d164 d164 d164
+7288 d165 d165 d165 * * 2e67 8ea2aee7,8ea2aee7v 5b6c e5adac 5b6c 00005b6c d165 d165 d165 d165 d165 d165 d165
+7289 d166 d166 d166 * * 2e68 8ea2aee8,8ea2aee8v 5ba7 e5aea7 5ba7 00005ba7 d166 d166 d166 d166 d166 d166 d166
+7290 d167 d167 d167 * * 2e69 8ea2aee9,8ea2aee9v 5bad e5aead 5bad 00005bad d167 d167 d167 d167 d167 d167 d167
+7291 d168 d168 d168 * * 2e6a 8ea2aeea,8ea2aeeav 5bac e5aeac 5bac 00005bac d168 d168 d168 d168 d168 d168 d168
+7292 d169 d169 d169 * * 2e6b 8ea2aeeb,8ea2aeebv 5c03 e5b083 5c03 00005c03 d169 d169 d169 d169 d169 d169 d169
+7293 d16a d16a d16a * * 2e6c 8ea2aeec,8ea2aeecv 5c56 e5b196 5c56 00005c56 d16a d16a d16a d16a d16a d16a d16a
+7294 d16b d16b d16b * * 2e6d 8ea2aeed,8ea2aeedv 5c54 e5b194 5c54 00005c54 d16b d16b d16b d16b d16b d16b d16b
+7295 d16c d16c d16c * * 2e6e 8ea2aeee,8ea2aeeev 5cec e5b3ac 5cec 00005cec d16c d16c d16c d16c d16c d16c d16c
+7296 d16d d16d d16d * * 2e6f 8ea2aeef,8ea2aeefv 5cff e5b3bf 5cff 00005cff d16d d16d d16d d16d d16d d16d d16d
+7297 d16e d16e d16e * * 2e70 8ea2aef0,8ea2aef0v 5cee e5b3ae 5cee 00005cee d16e d16e d16e d16e d16e d16e d16e
+7298 d16f d16f d16f * * 2e71 8ea2aef1,8ea2aef1v 5cf1 e5b3b1 5cf1 00005cf1 d16f d16f d16f d16f d16f d16f d16f
+7299 d170 d170 d170 * * 2e72 8ea2aef2,8ea2aef2v 5cf7 e5b3b7 5cf7 00005cf7 d170 d170 d170 d170 d170 d170 d170
+7300 d171 d171 d171 * * 2e73 8ea2aef3,8ea2aef3v 5d00 e5b480 5d00 00005d00 d171 d171 d171 d171 d171 d171 d171
+7301 d172 d172 d172 * * 2e74 8ea2aef4,8ea2aef4v 5cf9 e5b3b9 5cf9 00005cf9 d172 d172 d172 d172 d172 d172 d172
+7302 d173 d173 d173 * * 2e75 8ea2aef5,8ea2aef5v 5e29 e5b8a9 5e29 00005e29 d173 d173 d173 d173 d173 d173 d173
+7303 d174 d174 d174 * * 2e76 8ea2aef6,8ea2aef6v 5e28 e5b8a8 5e28 00005e28 d174 d174 d174 d174 d174 d174 d174
+7304 d175 d175 d175 * * 2e77 8ea2aef7,8ea2aef7v 5ea8 e5baa8 5ea8 00005ea8 d175 d175 d175 d175 d175 d175 d175
+7305 d176 d176 d176 * * 2e78 8ea2aef8,8ea2aef8v 5eae e5baae 5eae 00005eae d176 d176 d176 d176 d176 d176 d176
+7306 d177 d177 d177 * * 2e79 8ea2aef9,8ea2aef9v 5eaa e5baaa 5eaa 00005eaa d177 d177 d177 d177 d177 d177 d177
+7307 d178 d178 d178 * * 2e7a 8ea2aefa,8ea2aefav 5eac e5baac 5eac 00005eac d178 d178 d178 d178 d178 d178 d178
+7308 d179 d179 d179 * * 2e7b 8ea2aefb,8ea2aefbv 5f33 e5bcb3 5f33 00005f33 d179 d179 d179 d179 d179 d179 d179
+7309 d17a d17a d17a * * 2e7c 8ea2aefc,8ea2aefcv 5f30 e5bcb0 5f30 00005f30 d17a d17a d17a d17a d17a d17a d17a
+7310 d17b d17b d17b * * 2e7d 8ea2aefd,8ea2aefdv 5f67 e5bda7 5f67 00005f67 d17b d17b d17b d17b d17b d17b d17b
+7311 d17c d17c d17c * * 2e7e 8ea2aefe,8ea2aefev 605d e6819d 605d 0000605d d17c d17c d17c d17c d17c d17c d17c
+7312 d17d d17d d17d * * 2f21 8ea2afa1,8ea2afa1v 605a e6819a 605a 0000605a d17d d17d d17d d17d d17d d17d d17d
+7313 d17e d17e d17e * * 2f22 8ea2afa2,8ea2afa2v 6067 e681a7 6067 00006067 d17e d17e d17e d17e d17e d17e d17e
+7314 d1a1 d1a1 d1a1 * * 2f23 8ea2afa3,8ea2afa3v 6041 e68181 6041 00006041 d1a1 d1a1 d1a1 d1a1 d1a1 d1a1 d1a1
+7315 d1a2 d1a2 d1a2 * * 2f24 8ea2afa4,8ea2afa4v 60a2 e682a2 60a2 000060a2 d1a2 d1a2 d1a2 d1a2 d1a2 d1a2 d1a2
+7316 d1a3 d1a3 d1a3 * * 2f25 8ea2afa5,8ea2afa5v 6088 e68288 6088 00006088 d1a3 d1a3 d1a3 d1a3 d1a3 d1a3 d1a3
+7317 d1a4 d1a4 d1a4 * * 2f26 8ea2afa6,8ea2afa6v 6080 e68280 6080 00006080 d1a4 d1a4 d1a4 d1a4 d1a4 d1a4 d1a4
+7318 d1a5 d1a5 d1a5 * * 2f27 8ea2afa7,8ea2afa7v 6092 e68292 6092 00006092 d1a5 d1a5 d1a5 d1a5 d1a5 d1a5 d1a5
+7319 d1a6 d1a6 d1a6 * * 2f28 8ea2afa8,8ea2afa8v 6081 e68281 6081 00006081 d1a6 d1a6 d1a6 d1a6 d1a6 d1a6 d1a6
+7320 d1a7 d1a7 d1a7 * * 2f29 8ea2afa9,8ea2afa9v 609d e6829d 609d 0000609d d1a7 d1a7 d1a7 d1a7 d1a7 d1a7 d1a7
+7321 d1a8 d1a8 d1a8 * * 2f2a 8ea2afaa,8ea2afaav 6083 e68283 6083 00006083 d1a8 d1a8 d1a8 d1a8 d1a8 d1a8 d1a8
+7322 d1a9 d1a9 d1a9 * * 2f2b 8ea2afab,8ea2afabv 6095 e68295 6095 00006095 d1a9 d1a9 d1a9 d1a9 d1a9 d1a9 d1a9
+7323 d1aa d1aa d1aa * * 2f2c 8ea2afac,8ea2afacv 609b e6829b 609b 0000609b d1aa d1aa,fc61 91f5,d1aa d1aa d1aa d1aa d1aa
+7324 d1ab d1ab d1ab * * 2f2d 8ea2afad,8ea2afadv 6097 e68297 6097 00006097 d1ab d1ab d1ab d1ab d1ab d1ab d1ab
+7325 d1ac d1ac d1ac * * 2f2e 8ea2afae,8ea2afaev 6087 e68287 6087 00006087 d1ac d1ac d1ac d1ac d1ac d1ac d1ac
+7326 d1ad d1ad d1ad * * 2f2f 8ea2afaf,8ea2afafv 609c e6829c 609c 0000609c d1ad d1ad d1ad d1ad d1ad d1ad d1ad
+7327 d1ae d1ae d1ae * * 2f30 8ea2afb0,8ea2afb0v 608e e6828e 608e 0000608e d1ae d1ae d1ae d1ae d1ae d1ae d1ae
+7328 d1af d1af d1af * * 2f31 8ea2afb1,8ea2afb1v 6219 e68899 6219 00006219 d1af d1af d1af d1af d1af d1af d1af
+7329 d1b0 d1b0 d1b0 * * 2f32 8ea2afb2,8ea2afb2v 6246 e68986 6246 00006246 d1b0 d1b0 d1b0 d1b0 d1b0 d1b0 d1b0
+7330 d1b1 d1b1 d1b1 * * 2f33 8ea2afb3,8ea2afb3v 62f2 e68bb2 62f2 000062f2 d1b1 d1b1 d1b1 d1b1 d1b1 d1b1 d1b1
+7331 d1b2 d1b2 d1b2 * * 2f34 8ea2afb4,8ea2afb4v 6310 e68c90 6310 00006310 d1b2 d1b2 d1b2 d1b2 d1b2 d1b2 d1b2
+7332 d1b3 d1b3 d1b3 * * 2f35 8ea2afb5,8ea2afb5v 6356 e68d96 6356 00006356 d1b3 d1b3 d1b3 d1b3 d1b3 d1b3 d1b3
+7333 d1b4 d1b4 d1b4 * * 2f36 8ea2afb6,8ea2afb6v 632c e68cac 632c 0000632c d1b4 d1b4 d1b4 d1b4 d1b4 d1b4 d1b4
+7334 d1b5 d1b5 d1b5 * * 2f37 8ea2afb7,8ea2afb7v 6344 e68d84 6344 00006344 d1b5 d1b5 d1b5 d1b5 d1b5 d1b5 d1b5
+7335 d1b6 d1b6 d1b6 * * 2f38 8ea2afb8,8ea2afb8v 6345 e68d85 6345 00006345 d1b6 d1b6 d1b6 d1b6 d1b6 d1b6 d1b6
+7336 d1b7 d1b7 d1b7 * * 2f39 8ea2afb9,8ea2afb9v 6336 e68cb6 6336 00006336 d1b7 d1b7 d1b7 d1b7 d1b7 d1b7 d1b7
+7337 d1b8 d1b8 d1b8 * * 2f3a 8ea2afba,8ea2afbav 6343 e68d83 6343 00006343 d1b8 d1b8 d1b8 d1b8 d1b8 d1b8 d1b8
+7338 d1b9 d1b9 d1b9 * * 2f3b 8ea2afbb,8ea2afbbv 63e4 e68fa4 63e4 000063e4 d1b9 d1b9 d1b9 d1b9 d1b9 d1b9 d1b9
+7339 d1ba d1ba d1ba * * 2f3c 8ea2afbc,8ea2afbcv 6339 e68cb9 6339 00006339 d1ba d1ba d1ba d1ba d1ba d1ba d1ba
+7340 d1bb d1bb d1bb * * 2f3d 8ea2afbd,8ea2afbdv 634b e68d8b 634b 0000634b d1bb d1bb d1bb d1bb d1bb d1bb d1bb
+7341 d1bc d1bc d1bc * * 2f3e 8ea2afbe,8ea2afbev 634a e68d8a 634a 0000634a d1bc d1bc d1bc d1bc d1bc d1bc d1bc
+7342 d1bd d1bd d1bd * * 2f3f 8ea2afbf,8ea2afbfv 633c e68cbc 633c 0000633c d1bd d1bd d1bd d1bd d1bd d1bd d1bd
+7343 d1be d1be d1be * * 2f40 8ea2afc0,8ea2afc0v 6329 e68ca9 6329 00006329 d1be d1be d1be d1be d1be d1be d1be
+7344 d1bf d1bf d1bf * * 2f41 8ea2afc1,8ea2afc1v 6341 e68d81 6341 00006341 d1bf d1bf d1bf d1bf d1bf d1bf d1bf
+7345 d1c0 d1c0 d1c0 * * 2f42 8ea2afc2,8ea2afc2v 6334 e68cb4 6334 00006334 d1c0 d1c0 d1c0 d1c0 d1c0 d1c0 d1c0
+7346 d1c1 d1c1 d1c1 * * 2f43 8ea2afc3,8ea2afc3v 6358 e68d98 6358 00006358 d1c1 d1c1 d1c1 d1c1 d1c1 d1c1 d1c1
+7347 d1c2 d1c2 d1c2 * * 2f44 8ea2afc4,8ea2afc4v 6354 e68d94 6354 00006354 d1c2 d1c2 d1c2 d1c2 d1c2 d1c2 d1c2
+7348 d1c3 d1c3 d1c3 * * 2f45 8ea2afc5,8ea2afc5v 6359 e68d99 6359 00006359 d1c3 d1c3 d1c3 d1c3 d1c3 d1c3 d1c3
+7349 d1c4 d1c4 d1c4 * * 2f46 8ea2afc6,8ea2afc6v 632d e68cad 632d 0000632d d1c4 d1c4 d1c4 d1c4 d1c4 d1c4 d1c4
+7350 d1c5 d1c5 d1c5 * * 2f47 8ea2afc7,8ea2afc7v 6347 e68d87 6347 00006347 d1c5 d1c5 d1c5 d1c5 d1c5 d1c5 d1c5
+7351 d1c6 d1c6 d1c6 * * 2f48 8ea2afc8,8ea2afc8v 6333 e68cb3 6333 00006333 d1c6 d1c6 d1c6 d1c6 d1c6 d1c6 d1c6
+7352 d1c7 d1c7 d1c7 * * 2f49 8ea2afc9,8ea2afc9v 635a e68d9a 635a 0000635a d1c7 d1c7 d1c7 d1c7 d1c7 d1c7 d1c7
+7353 d1c8 d1c8 d1c8 * * 2f4a 8ea2afca,8ea2afcav 6351 e68d91 6351 00006351 d1c8 d1c8 d1c8 d1c8 d1c8 d1c8 d1c8
+7354 d1c9 d1c9 d1c9 * * 2f4b 8ea2afcb,8ea2afcbv 6338 e68cb8 6338 00006338 d1c9 d1c9 d1c9 d1c9 d1c9 d1c9 d1c9
+7355 d1ca d1ca d1ca * * 2f4c 8ea2afcc,8ea2afccv 6357 e68d97 6357 00006357 d1ca d1ca d1ca d1ca d1ca d1ca d1ca
+7356 d1cb d1cb d1cb * * 2f4d 8ea2afcd,8ea2afcdv 6340 e68d80 6340 00006340 d1cb d1cb d1cb d1cb d1cb d1cb d1cb
+7357 d1cc d1cc d1cc * * 2f4e 8ea2afce,8ea2afcev 6348 e68d88 6348 00006348 d1cc d1cc d1cc d1cc d1cc d1cc d1cc
+7358 d1cd d1cd d1cd * * 2f4f 8ea2afcf,8ea2afcfv 654a e6958a 654a 0000654a d1cd d1cd d1cd d1cd d1cd d1cd d1cd
+7359 d1ce d1ce d1ce * * 2f50 8ea2afd0,8ea2afd0v 6546 e69586 6546 00006546 d1ce d1ce d1ce d1ce d1ce d1ce d1ce
+7360 d1cf d1cf d1cf * * 2f51 8ea2afd1,8ea2afd1v 65c6 e69786 65c6 000065c6 d1cf d1cf d1cf d1cf d1cf d1cf d1cf
+7361 d1d0 d1d0 d1d0 * * 2f52 8ea2afd2,8ea2afd2v 65c3 e69783 65c3 000065c3 d1d0 d1d0 d1d0 d1d0 d1d0 d1d0 d1d0
+7362 d1d1 d1d1 d1d1 * * 2f53 8ea2afd3,8ea2afd3v 65c4 e69784 65c4 000065c4 d1d1 d1d1 d1d1 d1d1 d1d1 d1d1 d1d1
+7363 d1d2 d1d2 d1d2 * * 2f54 8ea2afd4,8ea2afd4v 65c2 e69782 65c2 000065c2 d1d2 d1d2 d1d2 d1d2 d1d2 d1d2 d1d2
+7364 d1d3 d1d3 d1d3 * * 2f55 8ea2afd5,8ea2afd5v 664a e6998a 664a 0000664a d1d3 d1d3 d1d3 d1d3 d1d3 d1d3 d1d3
+7365 d1d4 d1d4 d1d4 * * 2f56 8ea2afd6,8ea2afd6v 665f e6999f 665f 0000665f d1d4 d1d4 d1d4 d1d4 d1d4 d1d4 d1d4
+7366 d1d5 d1d5 d1d5 * * 2f57 8ea2afd7,8ea2afd7v 6647 e69987 6647 00006647 d1d5 d1d5 d1d5 d1d5 d1d5 d1d5 d1d5
+7367 d1d6 d1d6 d1d6 * * 2f58 8ea2afd8,8ea2afd8v 6651 e69991 6651 00006651 d1d6 d1d6 d1d6 d1d6 d1d6 d1d6 d1d6
+7368 d1d7 d1d7 d1d7 * * 2f59 8ea2afd9,8ea2afd9v 6712 e69c92 6712 00006712 d1d7 d1d7 d1d7 d1d7 d1d7 d1d7 d1d7
+7369 d1d8 d1d8 d1d8 * * 2f5a 8ea2afda,8ea2afdav 6713 e69c93 6713 00006713 d1d8 d1d8 d1d8 d1d8 d1d8 d1d8 d1d8
+7370 d1d9 d1d9 d1d9 * * 2f5b 8ea2afdb,8ea2afdbv 681f e6a09f 681f 0000681f d1d9 d1d9 d1d9 d1d9 d1d9 d1d9 d1d9
+7371 d1da d1da d1da * * 2f5c 8ea2afdc,8ea2afdcv 681a e6a09a 681a 0000681a d1da d1da d1da d1da d1da d1da d1da
+7372 d1db d1db d1db * * 2f5d 8ea2afdd,8ea2afddv 6849 e6a189 6849 00006849 d1db d1db d1db d1db d1db d1db d1db
+7373 d1dc d1dc d1dc * * 2f5e 8ea2afde,8ea2afdev 6832 e6a0b2 6832 00006832 d1dc d1dc d1dc d1dc d1dc d1dc d1dc
+7374 d1dd d1dd d1dd * * 2f5f 8ea2afdf,8ea2afdfv 6833 e6a0b3 6833 00006833 d1dd d1dd d1dd d1dd d1dd d1dd d1dd
+7375 d1de d1de d1de * * 2f60 8ea2afe0,8ea2afe0v 683b e6a0bb 683b 0000683b d1de d1de d1de d1de d1de d1de d1de
+7376 d1df d1df d1df * * 2f61 8ea2afe1,8ea2afe1v 684b e6a18b 684b 0000684b d1df d1df d1df d1df d1df d1df d1df
+7377 d1e0 d1e0 d1e0 * * 2f62 8ea2afe2,8ea2afe2v 684f e6a18f 684f 0000684f d1e0 d1e0 d1e0 d1e0 d1e0 d1e0 d1e0
+7378 d1e1 d1e1 d1e1 * * 2f63 8ea2afe3,8ea2afe3v 6816 e6a096 6816 00006816 d1e1 d1e1 d1e1 d1e1 d1e1 d1e1 d1e1
+7379 d1e2 d1e2 d1e2 * * 2f64 8ea2afe4,8ea2afe4v 6831 e6a0b1 6831 00006831 d1e2 d1e2 d1e2 d1e2 d1e2 d1e2 d1e2
+7380 d1e3 d1e3 d1e3 * * 2f65 8ea2afe5,8ea2afe5v 681c e6a09c 681c 0000681c d1e3 d1e3 d1e3 d1e3 d1e3 d1e3 d1e3
+7381 d1e4 d1e4 d1e4 * * 2f66 8ea2afe6,8ea2afe6v 6835 e6a0b5 6835 00006835 d1e4 d1e4 d1e4 d1e4 d1e4 d1e4 d1e4
+7382 d1e5 d1e5 d1e5 * * 2f67 8ea2afe7,8ea2afe7v 682b e6a0ab 682b 0000682b d1e5 d1e5 d1e5 d1e5 d1e5 d1e5 d1e5
+7383 d1e6 d1e6 d1e6 * * 2f68 8ea2afe8,8ea2afe8v 682d e6a0ad 682d 0000682d d1e6 d1e6 d1e6 d1e6 d1e6 d1e6 d1e6
+7384 d1e7 d1e7 d1e7 * * 2f69 8ea2afe9,8ea2afe9v 682f e6a0af 682f 0000682f d1e7 d1e7 d1e7 d1e7 d1e7 d1e7 d1e7
+7385 d1e8 d1e8 d1e8 * * 2f6a 8ea2afea,8ea2afeav 684e e6a18e 684e 0000684e d1e8 d1e8 d1e8 d1e8 d1e8 d1e8 d1e8
+7386 d1e9 d1e9 d1e9 * * 2f6b 8ea2afeb,8ea2afebv 6844 e6a184 6844 00006844 d1e9 d1e9 d1e9 d1e9 d1e9 d1e9 d1e9
+7387 d1ea d1ea d1ea * * 2f6c 8ea2afec,8ea2afecv 6834 e6a0b4 6834 00006834 d1ea d1ea d1ea d1ea d1ea d1ea d1ea
+7388 d1eb d1eb d1eb * * 2f6d 8ea2afed,8ea2afedv 681d e6a09d 681d 0000681d d1eb d1eb d1eb d1eb d1eb d1eb d1eb
+7389 d1ec d1ec d1ec * * 2f6e 8ea2afee,8ea2afeev 6812 e6a092 6812 00006812 d1ec d1ec d1ec d1ec d1ec d1ec d1ec
+7390 d1ed d1ed d1ed * * 2f6f 8ea2afef,8ea2afefv 6814 e6a094 6814 00006814 d1ed d1ed d1ed d1ed d1ed d1ed d1ed
+7391 d1ee d1ee d1ee * * 2f70 8ea2aff0,8ea2aff0v 6826 e6a0a6 6826 00006826 d1ee d1ee d1ee d1ee d1ee d1ee d1ee
+7392 d1ef d1ef d1ef * * 2f71 8ea2aff1,8ea2aff1v 6828 e6a0a8 6828 00006828 d1ef d1ef d1ef d1ef d1ef d1ef d1ef
+7393 d1f0 d1f0 d1f0 * * 2f72 8ea2aff2,8ea2aff2v 682e e6a0ae 682e 0000682e d1f0 d1f0 d1f0 d1f0 d1f0 d1f0 d1f0
+7394 d1f1 d1f1 d1f1 * * 2f73 8ea2aff3,8ea2aff3v 684d e6a18d 684d 0000684d d1f1 d1f1 d1f1 d1f1 d1f1 d1f1 d1f1
+7395 d1f2 d1f2 d1f2 * * 2f74 8ea2aff4,8ea2aff4v 683a e6a0ba 683a 0000683a d1f2 d1f2 d1f2 d1f2 d1f2 d1f2 d1f2
+7396 d1f3 d1f3 d1f3 * * 2f75 8ea2aff5,8ea2aff5v 6825 e6a0a5 6825 00006825 d1f3 d1f3 d1f3 d1f3 d1f3 d1f3 d1f3
+7397 d1f4 d1f4 d1f4 * * 2f76 8ea2aff6,8ea2aff6v 6820 e6a0a0 6820 00006820 d1f4 d1f4 d1f4 d1f4 d1f4 d1f4 d1f4
+7398 d1f5 d1f5 d1f5 * * 2f77 8ea2aff7,8ea2aff7v 6b2c e6acac 6b2c 00006b2c d1f5 d1f5 d1f5 d1f5 d1f5 d1f5 d1f5
+7399 d1f6 d1f6 d1f6 * * 2f78 8ea2aff8,8ea2aff8v 6b2f e6acaf 6b2f 00006b2f d1f6 d1f6 d1f6 d1f6 d1f6 d1f6 d1f6
+7400 d1f7 d1f7 d1f7 * * 2f79 8ea2aff9,8ea2aff9v 6b2d e6acad 6b2d 00006b2d d1f7 d1f7 d1f7 d1f7 d1f7 d1f7 d1f7
+7401 d1f8 d1f8 d1f8 * * 2f7a 8ea2affa,8ea2affav 6b31 e6acb1 6b31 00006b31 d1f8 d1f8 d1f8 d1f8 d1f8 d1f8 d1f8
+7402 d1f9 d1f9 d1f9 * * 2f7b 8ea2affb,8ea2affbv 6b34 e6acb4 6b34 00006b34 d1f9 d1f9 d1f9 d1f9 d1f9 d1f9 d1f9
+7403 d1fa d1fa d1fa * * 2f7c 8ea2affc,8ea2affcv 6b6d e6adad 6b6d 00006b6d d1fa d1fa d1fa d1fa d1fa d1fa d1fa
+7404 d1fb d1fb d1fb * * 2f7d 8ea2affd,8ea2affdv 8082 e88282 8082 00008082 d1fb d1fb d1fb d1fb d1fb d1fb d1fb
+7405 d1fc d1fc d1fc * * 2f7e 8ea2affe,8ea2affev 6b88 e6ae88 6b88 00006b88 d1fc d1fc d1fc d1fc d1fc d1fc d1fc
+7406 d1fd d1fd d1fd * * 3021 8ea2b0a1,8ea2b0a1v 6be6 e6afa6 6be6 00006be6 d1fd d1fd d1fd d1fd d1fd d1fd d1fd
+7407 d1fe d1fe d1fe * * 3022 8ea2b0a2,8ea2b0a2v 6be4 e6afa4 6be4 00006be4 d1fe d1fe d1fe d1fe d1fe d1fe d1fe
+7408 d240 d240 d240 * * 3023 8ea2b0a3,8ea2b0a3v 6be8 e6afa8 6be8 00006be8 d240 d240 d240 d240 d240 d240 d240
+7409 d241 d241 d241 * * 3024 8ea2b0a4,8ea2b0a4v 6be3 e6afa3 6be3 00006be3 d241 d241 d241 d241 d241 d241 d241
+7410 d242 d242 d242 * * 3025 8ea2b0a5,8ea2b0a5v 6be2 e6afa2 6be2 00006be2 d242 d242 d242 d242 d242 d242 d242
+7411 d243 d243 d243 * * 3026 8ea2b0a6,8ea2b0a6v 6be7 e6afa7 6be7 00006be7 d243 d243 d243 d243 d243 d243 d243
+7412 d244 d244 d244 * * 3027 8ea2b0a7,8ea2b0a7v 6c25 e6b0a5 6c25 00006c25 d244 d244 d244 d244 d244 d244 d244
+7413 d245 d245 d245 * * 3028 8ea2b0a8,8ea2b0a8v 6d7a e6b5ba 6d7a 00006d7a d245 d245 d245 d245 d245 d245 d245
+7414 d246 d246 d246 * * 3029 8ea2b0a9,8ea2b0a9v 6d63 e6b5a3 6d63 00006d63 d246 d246 d246 d246 d246 d246 d246
+7415 d247 d247 d247 * * 302a 8ea2b0aa,8ea2b0aav 6d64 e6b5a4 6d64 00006d64 d247 d247 d247 d247 d247 d247 d247
+7416 d248 d248 d248 * * 302b 8ea2b0ab,8ea2b0abv 6d76 e6b5b6 6d76 00006d76 d248 d248 d248 d248 d248 d248 d248
+7417 d249 d249 d249 * * 302c 8ea2b0ac,8ea2b0acv 6d0d e6b48d 6d0d 00006d0d d249 d249 d249 d249 d249 d249 d249
+7418 d24a d24a d24a * * 302d 8ea2b0ad,8ea2b0adv 6d61 e6b5a1 6d61 00006d61 d24a d24a d24a d24a d24a d24a d24a
+7419 d24b d24b d24b * * 302e 8ea2b0ae,8ea2b0aev 6d92 e6b692 6d92 00006d92 d24b d24b d24b d24b d24b d24b d24b
+7420 d24c d24c d24c * * 302f 8ea2b0af,8ea2b0afv 6d58 e6b598 6d58 00006d58 d24c d24c d24c d24c d24c d24c d24c
+7421 d24d d24d d24d * * 3030 8ea2b0b0,8ea2b0b0v 6d62 e6b5a2 6d62 00006d62 d24d d24d d24d d24d d24d d24d d24d
+7422 d24e d24e d24e * * 3031 8ea2b0b1,8ea2b0b1v 6d6d e6b5ad 6d6d 00006d6d d24e d24e d24e d24e d24e d24e d24e
+7423 d24f d24f d24f * * 3032 8ea2b0b2,8ea2b0b2v 6d6f e6b5af 6d6f 00006d6f d24f d24f d24f d24f d24f d24f d24f
+7424 d250 d250 d250 * * 3033 8ea2b0b3,8ea2b0b3v 6d91 e6b691 6d91 00006d91 d250 d250 d250 d250 d250 d250 d250
+7425 d251 d251 d251 * * 3034 8ea2b0b4,8ea2b0b4v 6d8d e6b68d 6d8d 00006d8d d251 d251 d251 d251 d251 d251 d251
+7426 d252 d252 d252 * * 3035 8ea2b0b5,8ea2b0b5v 6def e6b7af 6def 00006def d252 d252 d252 d252 d252 d252 d252
+7427 d253 d253 d253 * * 3036 8ea2b0b6,8ea2b0b6v 6d7f e6b5bf 6d7f 00006d7f d253 d253 d253 d253 d253 d253 d253
+7428 d254 d254 d254 * * 3037 8ea2b0b7,8ea2b0b7v 6d86 e6b686 6d86 00006d86 d254 d254 d254 d254 d254 d254 d254
+7429 d255 d255 d255 * * 3038 8ea2b0b8,8ea2b0b8v 6d5e e6b59e 6d5e 00006d5e d255 d255 d255 d255 d255 d255 d255
+7430 d256 d256 d256 * * 3039 8ea2b0b9,8ea2b0b9v 6d67 e6b5a7,ee9b86 6d67,e6c6 00006d67,0000e6c6 9447,d256 d256 d256 d256 d256 d256 9447,d256
+7431 d257 d257 d257 * * 303a 8ea2b0ba,8ea2b0bav 6d60 e6b5a0 6d60 00006d60 d257 d257 d257 d257 d257 d257 d257
+7432 d258 d258 d258 * * 303b 8ea2b0bb,8ea2b0bbv 6d97 e6b697 6d97 00006d97 d258 d258 d258 d258 d258 d258 d258
+7433 d259 d259 d259 * * 303c 8ea2b0bc,8ea2b0bcv 6d70 e6b5b0 6d70 00006d70 d259 d259 d259 d259 d259 d259 d259
+7434 d25a d25a d25a * * 303d 8ea2b0bd,8ea2b0bdv 6d7c e6b5bc 6d7c 00006d7c d25a d25a d25a d25a d25a d25a d25a
+7435 d25b d25b d25b * * 303e 8ea2b0be,8ea2b0bev 6d5f e6b59f 6d5f 00006d5f d25b d25b d25b d25b d25b d25b d25b
+7436 d25c d25c d25c * * 303f 8ea2b0bf,8ea2b0bfv 6d82 e6b682 6d82 00006d82 d25c d25c d25c d25c d25c d25c d25c
+7437 d25d d25d d25d * * 3040 8ea2b0c0,8ea2b0c0v 6d98 e6b698 6d98 00006d98 d25d d25d d25d d25d d25d d25d d25d
+7438 d25e d25e d25e * * 3041 8ea2b0c1,8ea2b0c1v 6d2f e6b4af 6d2f 00006d2f d25e d25e d25e d25e d25e d25e d25e
+7439 d25f d25f d25f * * 3042 8ea2b0c2,8ea2b0c2v 6d68 e6b5a8 6d68 00006d68 d25f d25f d25f d25f d25f d25f d25f
+7440 d260 d260 d260 * * 3043 8ea2b0c3,8ea2b0c3v 6d8b e6b68b 6d8b 00006d8b d260 d260 d260 d260 d260 d260 d260
+7441 d261 d261 d261 * * 3044 8ea2b0c4,8ea2b0c4v 6d7e e6b5be 6d7e 00006d7e d261 d261 d261 d261 d261 d261 d261
+7442 d262 d262 d262 * * 3045 8ea2b0c5,8ea2b0c5v 6d80 e6b680 6d80 00006d80 d262 d262 d262 d262 d262 d262 d262
+7443 d263 d263 d263 * * 3046 8ea2b0c6,8ea2b0c6v 6d84 e6b684 6d84 00006d84 d263 d263 d263 d263 d263 d263 d263
+7444 d264 d264 d264 * * 3047 8ea2b0c7,8ea2b0c7v 6d16 e6b496 6d16 00006d16 d264 d264 d264 d264 d264 d264 d264
+7445 d265 d265 d265 * * 3048 8ea2b0c8,8ea2b0c8v 6d83 e6b683 6d83 00006d83 d265 d265 d265 d265 d265 d265 d265
+7446 d266 d266 d266 * * 3049 8ea2b0c9,8ea2b0c9v 6d7b e6b5bb 6d7b 00006d7b d266 d266 d266 d266 d266 d266 d266
+7447 d267 d267 d267 * * 304a 8ea2b0ca,8ea2b0cav 6d7d e6b5bd 6d7d 00006d7d d267 d267 d267 d267 d267 d267 d267
+7448 d268 d268 d268 * * 304b 8ea2b0cb,8ea2b0cbv 6d75 e6b5b5 6d75 00006d75 d268 d268 d268 d268 d268 d268 d268
+7449 d269 d269 d269 * * 304c 8ea2b0cc,8ea2b0ccv 6d90 e6b690 6d90 00006d90 d269 d269 d269 d269 d269 d269 d269
+7450 d26a d26a d26a * * 304d 8ea2b0cd,8ea2b0cdv 70dc e7839c 70dc 000070dc d26a d26a d26a d26a d26a d26a d26a
+7451 d26b d26b d26b * * 304e 8ea2b0ce,8ea2b0cev 70d3 e78393 70d3 000070d3 d26b d26b d26b d26b d26b d26b d26b
+7452 d26c d26c d26c * * 304f 8ea2b0cf,8ea2b0cfv 70d1 e78391 70d1 000070d1 d26c d26c d26c d26c d26c d26c d26c
+7453 d26d d26d d26d * * 3050 8ea2b0d0,8ea2b0d0v 70dd e7839d 70dd 000070dd d26d d26d d26d d26d d26d d26d d26d
+7454 d26e d26e d26e * * 3051 8ea2b0d1,8ea2b0d1v 70cb e7838b 70cb 000070cb d26e d26e d26e d26e d26e d26e d26e
+7455 d26f d26f d26f * * 3052 8ea2b0d2,8ea2b0d2v 7f39 e7bcb9 7f39 00007f39 d26f d26f d26f d26f d26f d26f d26f
+7456 d270 d270 d270 * * 3053 8ea2b0d3,8ea2b0d3v 70e2 e783a2 70e2 000070e2 d270 d270 d270 d270 d270 d270 d270
+7457 d271 d271 d271 * * 3054 8ea2b0d4,8ea2b0d4v 70d7 e78397 70d7 000070d7 d271 d271 d271 d271 d271 d271 d271
+7458 d272 d272 d272 * * 3055 8ea2b0d5,8ea2b0d5v 70d2 e78392 70d2 000070d2 d272 d272 d272 d272 d272 d272 d272
+7459 d273 d273 d273 * * 3056 8ea2b0d6,8ea2b0d6v 70de e7839e 70de 000070de d273 d273 d273 d273 d273 d273 d273
+7460 d274 d274 d274 * * 3057 8ea2b0d7,8ea2b0d7v 70e0 e783a0 70e0 000070e0 d274 d274 d274 d274 d274 d274 d274
+7461 d275 d275 d275 * * 3058 8ea2b0d8,8ea2b0d8v 70d4 e78394 70d4 000070d4 d275 d275 d275 d275 d275 d275 d275
+7462 d276 d276 d276 * * 3059 8ea2b0d9,8ea2b0d9v 70cd e7838d 70cd 000070cd d276 d276 d276 d276 d276 d276 d276
+7463 d277 d277 d277 * * 305a 8ea2b0da,8ea2b0dav 70c5 e78385 70c5 000070c5 d277 d277 d277 d277 d277 d277 d277
+7464 d278 d278 d278 * * 305b 8ea2b0db,8ea2b0dbv 70c6 e78386 70c6 000070c6 d278 d278 d278 d278 d278 d278 d278
+7465 d279 d279 d279 * * 305c 8ea2b0dc,8ea2b0dcv 70c7 e78387 70c7 000070c7 d279 d279 d279 d279 d279 d279 d279
+7466 d27a d27a d27a * * 305d 8ea2b0dd,8ea2b0ddv 70da e7839a 70da 000070da d27a d27a d27a d27a d27a d27a d27a
+7467 d27b d27b d27b * * 305e 8ea2b0de,8ea2b0dev 70ce e7838e 70ce 000070ce d27b d27b d27b d27b d27b d27b d27b
+7468 d27c d27c d27c * * 305f 8ea2b0df,8ea2b0dfv 70e1 e783a1 70e1 000070e1 d27c d27c d27c d27c d27c d27c d27c
+7469 d27d d27d d27d * * 3060 8ea2b0e0,8ea2b0e0v 7242 e78982 7242 00007242 d27d d27d d27d d27d d27d d27d d27d
+7470 d27e d27e d27e * * 3061 8ea2b0e1,8ea2b0e1v 7278 e789b8 7278 00007278 d27e d27e d27e d27e d27e d27e d27e
+7471 d2a1 d2a1 d2a1 * * 3062 8ea2b0e2,8ea2b0e2v 7277 e789b7 7277 00007277 d2a1 d2a1 d2a1 d2a1 d2a1 d2a1 d2a1
+7472 d2a2 d2a2 d2a2 * * 3063 8ea2b0e3,8ea2b0e3v 7276 e789b6 7276 00007276 d2a2 d2a2 d2a2 d2a2 d2a2 d2a2 d2a2
+7473 d2a3 d2a3 d2a3 * * 3064 8ea2b0e4,8ea2b0e4v 7300 e78c80 7300 00007300 d2a3 d2a3 d2a3 d2a3 d2a3 d2a3 d2a3
+7474 d2a4 d2a4 d2a4 * * 3065 8ea2b0e5,8ea2b0e5v 72fa e78bba 72fa 000072fa d2a4 d2a4 d2a4 d2a4 d2a4 d2a4 d2a4
+7475 d2a5 d2a5 d2a5 * * 3066 8ea2b0e6,8ea2b0e6v 72f4 e78bb4 72f4 000072f4 d2a5 d2a5 d2a5 d2a5 d2a5 d2a5 d2a5
+7476 d2a6 d2a6 d2a6 * * 3067 8ea2b0e7,8ea2b0e7v 72fe e78bbe 72fe 000072fe d2a6 d2a6 d2a6 d2a6 d2a6 d2a6 d2a6
+7477 d2a7 d2a7 d2a7 * * 3068 8ea2b0e8,8ea2b0e8v 72f6 e78bb6 72f6 000072f6 d2a7 d2a7 d2a7 d2a7 d2a7 d2a7 d2a7
+7478 d2a8 d2a8 d2a8 * * 3069 8ea2b0e9,8ea2b0e9v 72f3 e78bb3 72f3 000072f3 d2a8 d2a8 d2a8 d2a8 d2a8 d2a8 d2a8
+7479 d2a9 d2a9 d2a9 * * 306a 8ea2b0ea,8ea2b0eav 72fb e78bbb 72fb 000072fb d2a9 d2a9 d2a9 d2a9 d2a9 d2a9 d2a9
+7480 d2aa d2aa d2aa * * 306b 8ea2b0eb,8ea2b0ebv 7301 e78c81 7301 00007301 d2aa d2aa d2aa d2aa d2aa d2aa d2aa
+7481 d2ab d2ab d2ab * * 306c 8ea2b0ec,8ea2b0ecv 73d3 e78f93 73d3 000073d3 d2ab d2ab d2ab d2ab d2ab d2ab d2ab
+7482 d2ac d2ac d2ac * * 306d 8ea2b0ed,8ea2b0edv 73d9 e78f99 73d9 000073d9 d2ac d2ac d2ac d2ac d2ac d2ac d2ac
+7483 d2ad d2ad d2ad * * 306e 8ea2b0ee,8ea2b0eev 73e5 e78fa5 73e5 000073e5 d2ad d2ad d2ad d2ad d2ad d2ad d2ad
+7484 d2ae d2ae d2ae * * 306f 8ea2b0ef,8ea2b0efv 73d6 e78f96 73d6 000073d6 d2ae d2ae d2ae d2ae d2ae d2ae d2ae
+7485 d2af d2af d2af * * 3070 8ea2b0f0,8ea2b0f0v 73bc e78ebc 73bc 000073bc d2af d2af d2af d2af d2af d2af d2af
+7486 d2b0 d2b0 d2b0 * * 3071 8ea2b0f1,8ea2b0f1v 73e7 e78fa7 73e7 000073e7 d2b0 d2b0 d2b0 d2b0 d2b0 d2b0 d2b0
+7487 d2b1 d2b1 d2b1 * * 3072 8ea2b0f2,8ea2b0f2v 73e3 e78fa3 73e3 000073e3 d2b1 d2b1 d2b1 d2b1 d2b1 d2b1 d2b1
+7488 d2b2 d2b2 d2b2 * * 3073 8ea2b0f3,8ea2b0f3v 73e9 e78fa9 73e9 000073e9 d2b2 d2b2 d2b2 d2b2 d2b2 d2b2 d2b2
+7489 d2b3 d2b3 d2b3 * * 3074 8ea2b0f4,8ea2b0f4v 73dc e78f9c 73dc 000073dc d2b3 d2b3 d2b3 d2b3 d2b3 d2b3 d2b3
+7490 d2b4 d2b4 d2b4 * * 3075 8ea2b0f5,8ea2b0f5v 73d2 e78f92 73d2 000073d2 d2b4 d2b4 d2b4 d2b4 d2b4 d2b4 d2b4
+7491 d2b5 d2b5 d2b5 * * 3076 8ea2b0f6,8ea2b0f6v 73db e78f9b 73db 000073db d2b5 d2b5 d2b5 d2b5 d2b5 d2b5 d2b5
+7492 d2b6 d2b6 d2b6 * * 3077 8ea2b0f7,8ea2b0f7v 73d4 e78f94 73d4 000073d4 d2b6 d2b6 d2b6 d2b6 d2b6 d2b6 d2b6
+7493 d2b7 d2b7 d2b7 * * 3078 8ea2b0f8,8ea2b0f8v 73dd e78f9d 73dd 000073dd d2b7 d2b7 d2b7 d2b7 d2b7 d2b7 d2b7
+7494 d2b8 d2b8 d2b8 * * 3079 8ea2b0f9,8ea2b0f9v 73da e78f9a 73da 000073da d2b8 d2b8 d2b8 d2b8 d2b8 d2b8 d2b8
+7495 d2b9 d2b9 d2b9 * * 307a 8ea2b0fa,8ea2b0fav 73d7 e78f97 73d7 000073d7 d2b9 d2b9 d2b9 d2b9 d2b9 d2b9 d2b9
+7496 d2ba d2ba d2ba * * 307b 8ea2b0fb,8ea2b0fbv 73d8 e78f98 73d8 000073d8 d2ba d2ba d2ba d2ba d2ba d2ba d2ba
+7497 d2bb d2bb d2bb * * 307c 8ea2b0fc,8ea2b0fcv 73e8 e78fa8 73e8 000073e8 d2bb d2bb d2bb d2bb d2bb d2bb d2bb
+7498 d2bc d2bc d2bc * * 307d 8ea2b0fd,8ea2b0fdv 74de e7939e 74de 000074de d2bc d2bc d2bc d2bc d2bc d2bc d2bc
+7499 d2bd d2bd d2bd * * 307e 8ea2b0fe,8ea2b0fev 74df e7939f 74df 000074df d2bd d2bd d2bd d2bd d2bd d2bd d2bd
+7500 d2be d2be d2be * * 3121 8ea2b1a1,8ea2b1a1v 74f4 e793b4 74f4 000074f4 d2be d2be d2be d2be d2be d2be d2be
+7501 d2bf d2bf d2bf * * 3122 8ea2b1a2,8ea2b1a2v 74f5 e793b5 74f5 000074f5 d2bf d2bf d2bf d2bf d2bf d2bf d2bf
+7502 d2c0 d2c0 d2c0 * * 3123 8ea2b1a3,8ea2b1a3v 7521 e794a1 7521 00007521 d2c0 d2c0 d2c0 d2c0 d2c0 d2c0 d2c0
+7503 d2c1 d2c1 d2c1 * * 3124 8ea2b1a4,8ea2b1a4v 755b e7959b 755b 0000755b d2c1 d2c1 d2c1 d2c1 d2c1 d2c1 d2c1
+7504 d2c2 d2c2 d2c2 * * 3125 8ea2b1a5,8ea2b1a5v 755f e7959f 755f 0000755f d2c2 d2c2 d2c2 d2c2 d2c2 d2c2 d2c2
+7505 d2c3 d2c3 d2c3 * * 3126 8ea2b1a6,8ea2b1a6v 75b0 e796b0 75b0 000075b0 d2c3 d2c3 d2c3 d2c3 d2c3 d2c3 d2c3
+7506 d2c4 d2c4 d2c4 * * 3127 8ea2b1a7,8ea2b1a7v 75c1 e79781 75c1 000075c1 d2c4 d2c4 d2c4 d2c4 d2c4 d2c4 d2c4
+7507 d2c5 d2c5 d2c5 * * 3128 8ea2b1a8,8ea2b1a8v 75bb e796bb 75bb 000075bb d2c5 d2c5 d2c5 d2c5 d2c5 d2c5 d2c5
+7508 d2c6 d2c6 d2c6 * * 3129 8ea2b1a9,8ea2b1a9v 75c4 e79784 75c4 000075c4 d2c6 d2c6 d2c6 d2c6 d2c6 d2c6 d2c6
+7509 d2c7 d2c7 d2c7 * * 312a 8ea2b1aa,8ea2b1aav 75c0 e79780 75c0 000075c0 d2c7 d2c7 d2c7 d2c7 d2c7 d2c7 d2c7
+7510 d2c8 d2c8 d2c8 * * 312b 8ea2b1ab,8ea2b1abv 75bf e796bf 75bf 000075bf d2c8 d2c8 d2c8 d2c8 d2c8 d2c8 d2c8
+7511 d2c9 d2c9 d2c9 * * 312c 8ea2b1ac,8ea2b1acv 75b6 e796b6 75b6 000075b6 d2c9 d2c9 d2c9 d2c9 d2c9 d2c9 d2c9
+7512 d2ca d2ca d2ca * * 312d 8ea2b1ad,8ea2b1adv 75ba e796ba 75ba 000075ba d2ca d2ca d2ca d2ca d2ca d2ca d2ca
+7513 d2cb d2cb d2cb * * 312e 8ea2b1ae,8ea2b1aev 768a e79a8a 768a 0000768a d2cb d2cb d2cb d2cb d2cb d2cb d2cb
+7514 d2cc d2cc d2cc * * 312f 8ea2b1af,8ea2b1afv 76c9 e79b89 76c9 000076c9 d2cc d2cc d2cc d2cc d2cc d2cc d2cc
+7515 d2cd d2cd d2cd * * 3130 8ea2b1b0,8ea2b1b0v 771d e79c9d 771d 0000771d d2cd d2cd d2cd d2cd d2cd d2cd d2cd
+7516 d2ce d2ce d2ce * * 3131 8ea2b1b1,8ea2b1b1v 771b e79c9b 771b 0000771b d2ce d2ce d2ce d2ce d2ce d2ce d2ce
+7517 d2cf d2cf d2cf * * 3132 8ea2b1b2,8ea2b1b2v 7710 e79c90 7710 00007710 d2cf d2cf d2cf d2cf d2cf d2cf d2cf
+7518 d2d0 d2d0 d2d0 * * 3133 8ea2b1b3,8ea2b1b3v 7713 e79c93 7713 00007713 d2d0 d2d0 d2d0 d2d0 d2d0 d2d0 d2d0
+7519 d2d1 d2d1 d2d1 * * 3134 8ea2b1b4,8ea2b1b4v 7712 e79c92 7712 00007712 d2d1 d2d1 d2d1 d2d1 d2d1 d2d1 d2d1
+7520 d2d2 d2d2 d2d2 * * 3135 8ea2b1b5,8ea2b1b5v 7723 e79ca3 7723 00007723 d2d2 d2d2 d2d2 d2d2 d2d2 d2d2 d2d2
+7521 d2d3 d2d3 d2d3 * * 3136 8ea2b1b6,8ea2b1b6v 7711 e79c91 7711 00007711 d2d3 d2d3 d2d3 d2d3 d2d3 d2d3 d2d3
+7522 d2d4 d2d4 d2d4 * * 3137 8ea2b1b7,8ea2b1b7v 7715 e79c95 7715 00007715 d2d4 d2d4 d2d4 d2d4 d2d4 d2d4 d2d4
+7523 d2d5 d2d5 d2d5 * * 3138 8ea2b1b8,8ea2b1b8v 7719 e79c99 7719 00007719 d2d5 d2d5 d2d5 d2d5 d2d5 d2d5 d2d5
+7524 d2d6 d2d6 d2d6 * * 3139 8ea2b1b9,8ea2b1b9v 771a e79c9a 771a 0000771a d2d6 d2d6 d2d6 d2d6 d2d6 d2d6 d2d6
+7525 d2d7 d2d7 d2d7 * * 313a 8ea2b1ba,8ea2b1bav 7722 e79ca2 7722 00007722 d2d7 d2d7 d2d7 d2d7 d2d7 d2d7 d2d7
+7526 d2d8 d2d8 d2d8 * * 313b 8ea2b1bb,8ea2b1bbv 7727 e79ca7 7727 00007727 d2d8 d2d8 d2d8 d2d8 d2d8 d2d8 d2d8
+7527 d2d9 d2d9 d2d9 * * 313c 8ea2b1bc,8ea2b1bcv 7823 e7a0a3 7823 00007823 d2d9 d2d9 d2d9 d2d9 d2d9 d2d9 d2d9
+7528 d2da d2da d2da * * 313d 8ea2b1bd,8ea2b1bdv 782c e7a0ac 782c 0000782c d2da d2da d2da d2da d2da d2da d2da
+7529 d2db d2db d2db * * 313e 8ea2b1be,8ea2b1bev 7822 e7a0a2 7822 00007822 d2db d2db d2db d2db d2db d2db d2db
+7530 d2dc d2dc d2dc * * 313f 8ea2b1bf,8ea2b1bfv 7835 e7a0b5 7835 00007835 d2dc d2dc d2dc d2dc d2dc d2dc d2dc
+7531 d2dd d2dd d2dd * * 3140 8ea2b1c0,8ea2b1c0v 782f e7a0af 782f 0000782f d2dd d2dd d2dd d2dd d2dd d2dd d2dd
+7532 d2de d2de d2de * * 3141 8ea2b1c1,8ea2b1c1v 7828 e7a0a8 7828 00007828 d2de d2de d2de d2de d2de d2de d2de
+7533 d2df d2df d2df * * 3142 8ea2b1c2,8ea2b1c2v 782e e7a0ae 782e 0000782e d2df d2df d2df d2df d2df d2df d2df
+7534 d2e0 d2e0 d2e0 * * 3143 8ea2b1c3,8ea2b1c3v 782b e7a0ab 782b 0000782b d2e0 d2e0 d2e0 d2e0 d2e0 d2e0 d2e0
+7535 d2e1 d2e1 d2e1 * * 3144 8ea2b1c4,8ea2b1c4v 7821 e7a0a1 7821 00007821 d2e1 d2e1 d2e1 d2e1 d2e1 d2e1 d2e1
+7536 d2e2 d2e2 d2e2 * * 3145 8ea2b1c5,8ea2b1c5v 7829 e7a0a9 7829 00007829 d2e2 d2e2 d2e2 d2e2 d2e2 d2e2 d2e2
+7537 d2e3 d2e3 d2e3 * * 3146 8ea2b1c6,8ea2b1c6v 7833 e7a0b3 7833 00007833 d2e3 d2e3 d2e3 d2e3 d2e3 d2e3 d2e3
+7538 d2e4 d2e4 d2e4 * * 3147 8ea2b1c7,8ea2b1c7v 782a e7a0aa 782a 0000782a d2e4 d2e4 d2e4 d2e4 d2e4 d2e4 d2e4
+7539 d2e5 d2e5 d2e5 * * 3148 8ea2b1c8,8ea2b1c8v 7831 e7a0b1 7831 00007831 d2e5 d2e5 d2e5 d2e5 d2e5 d2e5 d2e5
+7540 d2e6 d2e6 d2e6 * * 3149 8ea2b1c9,8ea2b1c9v 7954 e7a594 7954 00007954 d2e6 d2e6 d2e6 d2e6 d2e6 d2e6 d2e6
+7541 d2e7 d2e7 d2e7 * * 314a 8ea2b1ca,8ea2b1cav 795b e7a59b 795b 0000795b d2e7 d2e7 91f7,d2e7 d2e7 d2e7 d2e7 d2e7
+7542 d2e8 d2e8 d2e8 * * 314b 8ea2b1cb,8ea2b1cbv 794f e7a58f 794f 0000794f d2e8 d2e8 d2e8 d2e8 d2e8 d2e8 d2e8
+7543 d2e9 d2e9 d2e9 * * 314c 8ea2b1cc,8ea2b1ccv 795c e7a59c 795c 0000795c d2e9 d2e9 d2e9 d2e9 d2e9 d2e9 d2e9
+7544 d2ea d2ea d2ea * * 314d 8ea2b1cd,8ea2b1cdv 7953 e7a593 7953 00007953 d2ea d2ea d2ea d2ea d2ea d2ea d2ea
+7545 d2eb d2eb d2eb * * 314e 8ea2b1ce,8ea2b1cev 7952 e7a592 7952 00007952 d2eb d2eb d2eb d2eb d2eb d2eb d2eb
+7546 d2ec d2ec d2ec * * 314f 8ea2b1cf,8ea2b1cfv 7951 e7a591 7951 00007951 d2ec d2ec d2ec d2ec d2ec d2ec d2ec
+7547 d2ed d2ed d2ed * * 3150 8ea2b1d0,8ea2b1d0v 79eb e7a7ab 79eb 000079eb d2ed d2ed d2ed d2ed d2ed d2ed d2ed
+7548 d2ee d2ee d2ee * * 3151 8ea2b1d1,8ea2b1d1v 79ec e7a7ac 79ec 000079ec d2ee d2ee d2ee d2ee d2ee d2ee d2ee
+7549 d2ef d2ef d2ef * * 3152 8ea2b1d2,8ea2b1d2v 79e0 e7a7a0 79e0 000079e0 d2ef d2ef d2ef d2ef d2ef d2ef d2ef
+7550 d2f0 d2f0 d2f0 * * 3153 8ea2b1d3,8ea2b1d3v 79ee e7a7ae 79ee 000079ee d2f0 d2f0 d2f0 d2f0 d2f0 d2f0 d2f0
+7551 d2f1 d2f1 d2f1 * * 3154 8ea2b1d4,8ea2b1d4v 79ed e7a7ad 79ed 000079ed d2f1 d2f1 d2f1 d2f1 d2f1 d2f1 d2f1
+7552 d2f2 d2f2 d2f2 * * 3155 8ea2b1d5,8ea2b1d5v 79ea e7a7aa 79ea 000079ea d2f2 d2f2 d2f2 d2f2 d2f2 d2f2 d2f2
+7553 d2f3 d2f3 d2f3 * * 3156 8ea2b1d6,8ea2b1d6v 79dc e7a79c 79dc 000079dc d2f3 d2f3 d2f3 d2f3 d2f3 d2f3 d2f3
+7554 d2f4 d2f4 d2f4 * * 3157 8ea2b1d7,8ea2b1d7v 79de e7a79e 79de 000079de d2f4 d2f4 d2f4 d2f4 d2f4 d2f4 d2f4
+7555 d2f5 d2f5 d2f5 * * 3158 8ea2b1d8,8ea2b1d8v 79dd e7a79d 79dd 000079dd d2f5 d2f5 d2f5 d2f5 d2f5 d2f5 d2f5
+7556 d2f6 d2f6 d2f6 * * 3159 8ea2b1d9,8ea2b1d9v 7a86 e7aa86 7a86 00007a86 d2f6 d2f6 d2f6 d2f6 d2f6 d2f6 d2f6
+7557 d2f7 d2f7 d2f7 * * 315a 8ea2b1da,8ea2b1dav 7a89 e7aa89 7a89 00007a89 d2f7 d2f7 d2f7 d2f7 d2f7 d2f7 d2f7
+7558 d2f8 d2f8 d2f8 * * 315b 8ea2b1db,8ea2b1dbv 7a85 e7aa85 7a85 00007a85 d2f8 d2f8 d2f8 d2f8 d2f8 d2f8 d2f8
+7559 d2f9 d2f9 d2f9 * * 315c 8ea2b1dc,8ea2b1dcv 7a8b e7aa8b 7a8b 00007a8b d2f9 d2f9 d2f9 d2f9 d2f9 d2f9 d2f9
+7560 d2fa d2fa d2fa * * 315d 8ea2b1dd,8ea2b1ddv 7a8c e7aa8c 7a8c 00007a8c d2fa d2fa d2fa d2fa d2fa d2fa d2fa
+7561 d2fb d2fb d2fb * * 315e 8ea2b1de,8ea2b1dev 7a8a e7aa8a 7a8a 00007a8a d2fb d2fb d2fb d2fb d2fb d2fb d2fb
+7562 d2fc d2fc d2fc * * 315f 8ea2b1df,8ea2b1dfv 7a87 e7aa87 7a87 00007a87 d2fc d2fc d2fc d2fc d2fc d2fc d2fc
+7563 d2fd d2fd d2fd * * 3160 8ea2b1e0,8ea2b1e0v 7ad8 e7ab98 7ad8 00007ad8 d2fd d2fd d2fd d2fd d2fd d2fd d2fd
+7564 d2fe d2fe d2fe * * 3161 8ea2b1e1,8ea2b1e1v 7b10 e7ac90 7b10 00007b10 d2fe d2fe d2fe d2fe d2fe d2fe d2fe
+7565 d340 d340 d340 * * 3162 8ea2b1e2,8ea2b1e2v 7b04 e7ac84 7b04 00007b04 d340 d340 d340 d340 d340 d340 d340
+7566 d341 d341 d341 * * 3163 8ea2b1e3,8ea2b1e3v 7b13 e7ac93 7b13 00007b13 d341 d341 d341 d341 d341 d341 d341
+7567 d342 d342 d342 * * 3164 8ea2b1e4,8ea2b1e4v 7b05 e7ac85 7b05 00007b05 d342 d342 d342 d342 d342 d342 d342
+7568 d343 d343 d343 * * 3165 8ea2b1e5,8ea2b1e5v 7b0f e7ac8f 7b0f 00007b0f d343 d343 d343 d343 d343 d343 d343
+7569 d344 d344 d344 * * 3166 8ea2b1e6,8ea2b1e6v 7b08 e7ac88 7b08 00007b08 d344 d344 d344 d344 d344 d344 d344
+7570 d345 d345 d345 * * 3167 8ea2b1e7,8ea2b1e7v 7b0a e7ac8a 7b0a 00007b0a d345 d345 d345 d345 d345 d345 d345
+7571 d346 d346 d346 * * 3168 8ea2b1e8,8ea2b1e8v 7b0e e7ac8e 7b0e 00007b0e d346 d346 d346 d346 d346 d346 d346
+7572 d347 d347 d347 * * 3169 8ea2b1e9,8ea2b1e9v 7b09 e7ac89 7b09 00007b09 d347 d347 d347 d347 d347 d347 d347
+7573 d348 d348 d348 * * 316a 8ea2b1ea,8ea2b1eav 7b12 e7ac92 7b12 00007b12 d348 d348 d348 d348 d348 d348 d348
+7574 d349 d349 d349 * * 316b 8ea2b1eb,8ea2b1ebv 7c84 e7b284 7c84 00007c84 d349 d349 d349 d349 d349 d349 d349
+7575 d34a d34a d34a * * 316c 8ea2b1ec,8ea2b1ecv 7c91 e7b291 7c91 00007c91 d34a d34a d34a d34a d34a d34a d34a
+7576 d34b d34b d34b * * 316d 8ea2b1ed,8ea2b1edv 7c8a e7b28a 7c8a 00007c8a d34b d34b d34b d34b d34b d34b d34b
+7577 d34c d34c d34c * * 316e 8ea2b1ee,8ea2b1eev 7c8c e7b28c 7c8c 00007c8c d34c d34c d34c d34c d34c d34c d34c
+7578 d34d d34d d34d * * 316f 8ea2b1ef,8ea2b1efv 7c88 e7b288 7c88 00007c88 d34d d34d d34d d34d d34d d34d d34d
+7579 d34e d34e d34e * * 3170 8ea2b1f0,8ea2b1f0v 7c8d e7b28d 7c8d 00007c8d d34e d34e d34e d34e d34e d34e d34e
+7580 d34f d34f d34f * * 3171 8ea2b1f1,8ea2b1f1v 7c85 e7b285 7c85 00007c85 d34f d34f d34f d34f d34f d34f d34f
+7581 d350 d350 d350 * * 3172 8ea2b1f2,8ea2b1f2v 7d1e e7b49e 7d1e 00007d1e d350 d350 d350 d350 d350 d350 d350
+7582 d351 d351 d351 * * 3173 8ea2b1f3,8ea2b1f3v 7d1d e7b49d 7d1d 00007d1d d351 d351 d351 d351 d351 d351 d351
+7583 d352 d352 d352 * * 3174 8ea2b1f4,8ea2b1f4v 7d11 e7b491 7d11 00007d11 d352 d352 d352 d352 d352 d352 d352
+7584 d353 d353 d353 * * 3175 8ea2b1f5,8ea2b1f5v 7d0e e7b48e 7d0e 00007d0e d353 d353 d353 d353 d353 d353 d353
+7585 d354 d354 d354 * * 3176 8ea2b1f6,8ea2b1f6v 7d18 e7b498 7d18 00007d18 d354 d354 d354 d354 d354 d354 d354
+7586 d355 d355 d355 * * 3177 8ea2b1f7,8ea2b1f7v 7d16 e7b496 7d16 00007d16 d355 d355 d355 d355 d355 d355 d355
+7587 d356 d356 d356 * * 3178 8ea2b1f8,8ea2b1f8v 7d13 e7b493 7d13 00007d13 d356 d356 d356 d356 d356 d356 d356
+7588 d357 d357 d357 * * 3179 8ea2b1f9,8ea2b1f9v 7d1f e7b49f 7d1f 00007d1f d357 d357 d357 d357 d357 d357 d357
+7589 d358 d358 d358 * * 317a 8ea2b1fa,8ea2b1fav 7d12 e7b492 7d12 00007d12 d358 d358 d358 d358 d358 d358 d358
+7590 d359 d359 d359 * * 317b 8ea2b1fb,8ea2b1fbv 7d0f e7b48f 7d0f 00007d0f d359 d359 d359 d359 d359 d359 d359
+7591 d35a d35a d35a * * 317c 8ea2b1fc,8ea2b1fcv 7d0c e7b48c 7d0c 00007d0c d35a d35a d35a d35a d35a d35a d35a
+7592 d35b d35b d35b * * 317d 8ea2b1fd,8ea2b1fdv 7f5c e7bd9c 7f5c 00007f5c d35b d35b d35b d35b d35b d35b d35b
+7593 d35c d35c d35c * * 317e 8ea2b1fe,8ea2b1fev 7f61 e7bda1 7f61 00007f61 d35c d35c d35c d35c d35c d35c d35c
+7594 d35d d35d d35d * * 3221 8ea2b2a1,8ea2b2a1v 7f5e e7bd9e 7f5e 00007f5e d35d d35d d35d d35d d35d d35d d35d
+7595 d35e d35e d35e * * 3222 8ea2b2a2,8ea2b2a2v 7f60 e7bda0 7f60 00007f60 d35e d35e d35e d35e d35e d35e d35e
+7596 d35f d35f d35f * * 3223 8ea2b2a3,8ea2b2a3v 7f5d e7bd9d 7f5d 00007f5d d35f d35f d35f d35f d35f d35f d35f
+7597 d360 d360 d360 * * 3224 8ea2b2a4,8ea2b2a4v 7f5b e7bd9b 7f5b 00007f5b d360 d360 d360 d360 d360 d360 d360
+7598 d361 d361 d361 * * 3225 8ea2b2a5,8ea2b2a5v 7f96 e7be96 7f96 00007f96 d361 d361 d361 d361 d361 d361 d361
+7599 d362 d362 d362 * * 3226 8ea2b2a6,8ea2b2a6v 7f92 e7be92 7f92 00007f92 d362 d362 d362 d362 d362 d362 d362
+7600 d363 d363 d363 * * 3227 8ea2b2a7,8ea2b2a7v 7fc3 e7bf83 7fc3 00007fc3 d363 d363 d363 d363 d363 d363 d363
+7601 d364 d364 d364 * * 3228 8ea2b2a8,8ea2b2a8v 7fc2 e7bf82 7fc2 00007fc2 d364 d364 d364 d364 d364 d364 d364
+7602 d365 d365 d365 * * 3229 8ea2b2a9,8ea2b2a9v 7fc0 e7bf80 7fc0 00007fc0 d365 d365 d365 d365 d365 d365 d365
+7603 d366 d366 d366 * * 322a 8ea2b2aa,8ea2b2aav 8016 e88096 8016 00008016 d366 d366 d366 d366 d366 d366 d366
+7604 d367 d367 d367 * * 322b 8ea2b2ab,8ea2b2abv 803e e880be 803e 0000803e d367 d367 d367 d367 d367 d367 d367
+7605 d368 d368 d368 * * 322c 8ea2b2ac,8ea2b2acv 8039 e880b9 8039 00008039 d368 d368 d368 d368 d368 d368 d368
+7606 d369 d369 d369 * * 322d 8ea2b2ad,8ea2b2adv 80fa e883ba 80fa 000080fa d369 d369 d369 d369 d369 d369 d369
+7607 d36a d36a d36a * * 322e 8ea2b2ae,8ea2b2aev 80f2 e883b2 80f2 000080f2 d36a d36a d36a d36a d36a d36a d36a
+7608 d36b d36b d36b * * 322f 8ea2b2af,8ea2b2afv 80f9 e883b9 80f9 000080f9 d36b d36b d36b d36b d36b d36b d36b
+7609 d36c d36c d36c * * 3230 8ea2b2b0,8ea2b2b0v 80f5 e883b5 80f5 000080f5 d36c d36c d36c d36c d36c d36c d36c
+7610 d36d d36d d36d * * 3231 8ea2b2b1,8ea2b2b1v 8101 e88481 8101 00008101 d36d d36d d36d d36d d36d d36d d36d
+7611 d36e d36e d36e * * 3232 8ea2b2b2,8ea2b2b2v 80fb e883bb 80fb 000080fb d36e d36e d36e d36e d36e d36e d36e
+7612 d36f d36f d36f * * 3233 8ea2b2b3,8ea2b2b3v 8100 e88480 8100 00008100 d36f d36f d36f d36f d36f d36f d36f
+7613 d370 d370 d370 * * 3234 8ea2b2b4,8ea2b2b4v 8201 e88881 8201 00008201 d370 d370 d370 d370 d370 d370 d370
+7614 d371 d371 d371 * * 3235 8ea2b2b5,8ea2b2b5v 822f e888af 822f 0000822f d371 d371 d371 d371 d371 d371 d371
+7615 d372 d372 d372 * * 3236 8ea2b2b6,8ea2b2b6v 8225 e888a5 8225 00008225 d372 d372 d372 d372 d372 d372 d372
+7616 d373 d373 d373 * * 3237 8ea2b2b7,8ea2b2b7v 8333 e88cb3 8333 00008333 d373 d373 d373 d373 d373 d373 d373
+7617 d374 d374 d374 * * 3238 8ea2b2b8,8ea2b2b8v 832d e88cad 832d 0000832d d374 d374 d374 d374 d374 d374 d374
+7618 d375 d375 d375 * * 3239 8ea2b2b9,8ea2b2b9v 8344 e88d84 8344 00008344 d375 d375 d375 d375 d375 d375 d375
+7619 d376 d376 d376 * * 323a 8ea2b2ba,8ea2b2bav 8319 e88c99 8319 00008319 d376 d376 d376 d376 d376 d376 d376
+7620 d377 d377 d377 * * 323b 8ea2b2bb,8ea2b2bbv 8351 e88d91 8351 00008351 d377 d377 d377 d377 d377 d377 d377
+7621 d378 d378 d378 * * 323c 8ea2b2bc,8ea2b2bcv 8325 e88ca5 8325 00008325 d378 d378 d378 d378 d378 d378 d378
+7622 d379 d379 d379 * * 323d 8ea2b2bd,8ea2b2bdv 8356 e88d96 8356 00008356 d379 d379 d379 d379 d379 d379 d379
+7623 d37a d37a d37a * * 323e 8ea2b2be,8ea2b2bev 833f e88cbf 833f 0000833f d37a d37a d37a d37a d37a d37a d37a
+7624 d37b d37b d37b * * 323f 8ea2b2bf,8ea2b2bfv 8341 e88d81 8341 00008341 d37b d37b d37b d37b d37b d37b d37b
+7625 d37c d37c d37c * * 3240 8ea2b2c0,8ea2b2c0v 8326 e88ca6 8326 00008326 d37c d37c d37c d37c d37c d37c d37c
+7626 d37d d37d d37d * * 3241 8ea2b2c1,8ea2b2c1v 831c e88c9c 831c 0000831c d37d d37d d37d d37d d37d d37d d37d
+7627 d37e d37e d37e * * 3242 8ea2b2c2,8ea2b2c2v 8322 e88ca2 8322 00008322 d37e d37e d37e d37e d37e d37e d37e
+7628 d3a1 d3a1 d3a1 * * 3243 8ea2b2c3,8ea2b2c3v 8342 e88d82 8342 00008342 d3a1 d3a1 d3a1 d3a1 d3a1 d3a1 d3a1
+7629 d3a2 d3a2 d3a2 * * 3244 8ea2b2c4,8ea2b2c4v 834e e88d8e 834e 0000834e d3a2 d3a2 d3a2 d3a2 d3a2 d3a2 d3a2
+7630 d3a3 d3a3 d3a3 * * 3245 8ea2b2c5,8ea2b2c5v 831b e88c9b 831b 0000831b d3a3 d3a3 d3a3 d3a3 d3a3 d3a3 d3a3
+7631 d3a4 d3a4 d3a4 * * 3246 8ea2b2c6,8ea2b2c6v 832a e88caa 832a 0000832a d3a4 d3a4 d3a4 d3a4 d3a4 d3a4 d3a4
+7632 d3a5 d3a5 d3a5 * * 3247 8ea2b2c7,8ea2b2c7v 8308 e88c88 8308 00008308 d3a5 d3a5 d3a5 d3a5 d3a5 d3a5 d3a5
+7633 d3a6 d3a6 d3a6 * * 3248 8ea2b2c8,8ea2b2c8v 833c e88cbc 833c 0000833c d3a6 d3a6 d3a6 d3a6 d3a6 d3a6 d3a6
+7634 d3a7 d3a7 d3a7 * * 3249 8ea2b2c9,8ea2b2c9v 834d e88d8d 834d 0000834d d3a7 d3a7 d3a7 d3a7 d3a7 d3a7 d3a7
+7635 d3a8 d3a8 d3a8 * * 324a 8ea2b2ca,8ea2b2cav 8316 e88c96 8316 00008316 d3a8 d3a8 d3a8 d3a8 d3a8 d3a8 d3a8
+7636 d3a9 d3a9 d3a9 * * 324b 8ea2b2cb,8ea2b2cbv 8324 e88ca4 8324 00008324 d3a9 d3a9 d3a9 d3a9 d3a9 d3a9 d3a9
+7637 d3aa d3aa d3aa * * 324c 8ea2b2cc,8ea2b2ccv 8320 e88ca0 8320 00008320 d3aa d3aa d3aa d3aa d3aa d3aa d3aa
+7638 d3ab d3ab d3ab * * 324d 8ea2b2cd,8ea2b2cdv 8337 e88cb7 8337 00008337 d3ab d3ab d3ab d3ab d3ab d3ab d3ab
+7639 d3ac d3ac d3ac * * 324e 8ea2b2ce,8ea2b2cev 832f e88caf 832f 0000832f d3ac d3ac d3ac d3ac d3ac d3ac d3ac
+7640 d3ad d3ad d3ad * * 324f 8ea2b2cf,8ea2b2cfv 8329 e88ca9 8329 00008329 d3ad d3ad d3ad d3ad d3ad d3ad d3ad
+7641 d3ae d3ae d3ae * * 3250 8ea2b2d0,8ea2b2d0v 8347 e88d87 8347 00008347 d3ae d3ae d3ae d3ae d3ae d3ae d3ae
+7642 d3af d3af d3af * * 3251 8ea2b2d1,8ea2b2d1v 8345 e88d85 8345 00008345 d3af d3af d3af d3af d3af d3af d3af
+7643 d3b0 d3b0 d3b0 * * 3252 8ea2b2d2,8ea2b2d2v 834c e88d8c 834c 0000834c d3b0 d3b0 d3b0 d3b0 d3b0 d3b0 d3b0
+7644 d3b1 d3b1 d3b1 * * 3253 8ea2b2d3,8ea2b2d3v 8353 e88d93 8353 00008353 d3b1 d3b1 d3b1 d3b1 d3b1 d3b1 d3b1
+7645 d3b2 d3b2 d3b2 * * 3254 8ea2b2d4,8ea2b2d4v 831e e88c9e 831e 0000831e d3b2 d3b2 d3b2 d3b2 d3b2 d3b2 d3b2
+7646 d3b3 d3b3 d3b3 * * 3255 8ea2b2d5,8ea2b2d5v 832c e88cac 832c 0000832c d3b3 d3b3 d3b3 d3b3 d3b3 d3b3 d3b3
+7647 d3b4 d3b4 d3b4 * * 3256 8ea2b2d6,8ea2b2d6v 834b e88d8b 834b 0000834b d3b4 d3b4 d3b4 d3b4 d3b4 d3b4 d3b4
+7648 d3b5 d3b5 d3b5 * * 3257 8ea2b2d7,8ea2b2d7v 8327 e88ca7 8327 00008327 d3b5 d3b5 d3b5 d3b5 d3b5 d3b5 d3b5
+7649 d3b6 d3b6 d3b6 * * 3258 8ea2b2d8,8ea2b2d8v 8348 e88d88 8348 00008348 d3b6 d3b6 d3b6 d3b6 d3b6 d3b6 d3b6
+7650 d3b7 d3b7 d3b7 * * 3259 8ea2b2d9,8ea2b2d9v 8653 e89993 8653 00008653 d3b7 d3b7 d3b7 d3b7 d3b7 d3b7 d3b7
+7651 d3b8 d3b8 d3b8 * * 325a 8ea2b2da,8ea2b2dav 8652 e89992 8652 00008652 d3b8 d3b8 d3b8 d3b8 d3b8 d3b8 d3b8
+7652 d3b9 d3b9 d3b9 * * 325b 8ea2b2db,8ea2b2dbv 86a2 e89aa2 86a2 000086a2 d3b9 d3b9 d3b9 d3b9 d3b9 d3b9 d3b9
+7653 d3ba d3ba d3ba * * 325c 8ea2b2dc,8ea2b2dcv 86a8 e89aa8 86a8 000086a8 d3ba d3ba d3ba d3ba d3ba d3ba d3ba
+7654 d3bb d3bb d3bb * * 325d 8ea2b2dd,8ea2b2ddv 8696 e89a96 8696 00008696 d3bb d3bb d3bb d3bb d3bb d3bb d3bb
+7655 d3bc d3bc d3bc * * 325e 8ea2b2de,8ea2b2dev 868d e89a8d 868d 0000868d d3bc d3bc d3bc d3bc d3bc d3bc d3bc
+7656 d3bd d3bd d3bd * * 325f 8ea2b2df,8ea2b2dfv 8691 e89a91 8691 00008691 d3bd d3bd d3bd d3bd d3bd d3bd d3bd
+7657 d3be d3be d3be * * 3260 8ea2b2e0,8ea2b2e0v 869e e89a9e 869e 0000869e d3be d3be d3be d3be d3be d3be d3be
+7658 d3bf d3bf d3bf * * 3261 8ea2b2e1,8ea2b2e1v 8687 e89a87 8687 00008687 d3bf d3bf d3bf d3bf d3bf d3bf d3bf
+7659 d3c0 d3c0 d3c0 * * 3262 8ea2b2e2,8ea2b2e2v 8697 e89a97 8697 00008697 d3c0 d3c0 d3c0 d3c0 d3c0 d3c0 d3c0
+7660 d3c1 d3c1 d3c1 * * 3263 8ea2b2e3,8ea2b2e3v 8686 e89a86 8686 00008686 d3c1 d3c1 d3c1 d3c1 d3c1 d3c1 d3c1
+7661 d3c2 d3c2 d3c2 * * 3264 8ea2b2e4,8ea2b2e4v 868b e89a8b 868b 0000868b d3c2 d3c2 d3c2 d3c2 d3c2 d3c2 d3c2
+7662 d3c3 d3c3 d3c3 * * 3265 8ea2b2e5,8ea2b2e5v 869a e89a9a 869a 0000869a d3c3 d3c3 d3c3 d3c3 d3c3 d3c3 d3c3
+7663 d3c4 d3c4 d3c4 * * 3266 8ea2b2e6,8ea2b2e6v 8685 e89a85 8685 00008685 d3c4 d3c4 d3c4 d3c4 d3c4 d3c4 d3c4
+7664 d3c5 d3c5 d3c5 * * 3267 8ea2b2e7,8ea2b2e7v 86a5 e89aa5 86a5 000086a5 d3c5 d3c5 d3c5 d3c5 d3c5 d3c5 d3c5
+7665 d3c6 d3c6 d3c6 * * 3268 8ea2b2e8,8ea2b2e8v 8699 e89a99 8699 00008699 d3c6 d3c6 d3c6 d3c6 d3c6 d3c6 d3c6
+7666 d3c7 d3c7 d3c7 * * 3269 8ea2b2e9,8ea2b2e9v 86a1 e89aa1 86a1 000086a1 d3c7 d3c7 d3c7 d3c7 d3c7 d3c7 d3c7
+7667 d3c8 d3c8 d3c8 * * 326a 8ea2b2ea,8ea2b2eav 86a7 e89aa7 86a7 000086a7 d3c8 d3c8 d3c8 d3c8 d3c8 d3c8 d3c8
+7668 d3c9 d3c9 d3c9 * * 326b 8ea2b2eb,8ea2b2ebv 8695 e89a95 8695 00008695 d3c9 d3c9 d3c9 d3c9 d3c9 d3c9 d3c9
+7669 d3ca d3ca d3ca * * 326c 8ea2b2ec,8ea2b2ecv 8698 e89a98 8698 00008698 d3ca d3ca d3ca d3ca d3ca d3ca d3ca
+7670 d3cb d3cb d3cb * * 326d 8ea2b2ed,8ea2b2edv 868e e89a8e 868e 0000868e d3cb d3cb d3cb d3cb d3cb d3cb d3cb
+7671 d3cc d3cc d3cc * * 326e 8ea2b2ee,8ea2b2eev 869d e89a9d 869d 0000869d d3cc d3cc d3cc d3cc d3cc d3cc d3cc
+7672 d3cd d3cd d3cd * * 326f 8ea2b2ef,8ea2b2efv 8690 e89a90 8690 00008690 d3cd d3cd d3cd d3cd d3cd d3cd d3cd
+7673 d3ce d3ce d3ce * * 3270 8ea2b2f0,8ea2b2f0v 8694 e89a94 8694 00008694 d3ce d3ce d3ce d3ce d3ce d3ce d3ce
+7674 d3cf d3cf d3cf * * 3271 8ea2b2f1,8ea2b2f1v 8843 e8a183 8843 00008843 d3cf d3cf d3cf d3cf d3cf d3cf d3cf
+7675 d3d0 d3d0 d3d0 * * 3272 8ea2b2f2,8ea2b2f2v 8844 e8a184 8844 00008844 d3d0 d3d0 d3d0 d3d0 d3d0 d3d0 d3d0
+7676 d3d1 d3d1 d3d1 * * 3273 8ea2b2f3,8ea2b2f3v 886d e8a1ad 886d 0000886d d3d1 d3d1 d3d1 d3d1 d3d1 d3d1 d3d1
+7677 d3d2 d3d2 d3d2 * * 3274 8ea2b2f4,8ea2b2f4v 8875 e8a1b5 8875 00008875 d3d2 d3d2 d3d2 d3d2 d3d2 d3d2 d3d2
+7678 d3d3 d3d3 d3d3 * * 3275 8ea2b2f5,8ea2b2f5v 8876 e8a1b6 8876 00008876 d3d3 d3d3 d3d3 d3d3 d3d3 d3d3 d3d3
+7679 d3d4 d3d4 d3d4 * * 3276 8ea2b2f6,8ea2b2f6v 8872 e8a1b2 8872 00008872 d3d4 d3d4 d3d4 d3d4 d3d4 d3d4 d3d4
+7680 d3d5 d3d5 d3d5 * * 3277 8ea2b2f7,8ea2b2f7v 8880 e8a280 8880 00008880 d3d5 d3d5 d3d5 d3d5 d3d5 d3d5 d3d5
+7681 d3d6 d3d6 d3d6 * * 3278 8ea2b2f8,8ea2b2f8v 8871 e8a1b1 8871 00008871 d3d6 d3d6 d3d6 d3d6 d3d6 d3d6 d3d6
+7682 d3d7 d3d7 d3d7 * * 3279 8ea2b2f9,8ea2b2f9v 887f e8a1bf 887f 0000887f d3d7 d3d7 d3d7 d3d7 d3d7 d3d7 d3d7
+7683 d3d8 d3d8 d3d8 * * 327a 8ea2b2fa,8ea2b2fav 886f e8a1af 886f 0000886f d3d8 d3d8 d3d8 d3d8 d3d8 d3d8 d3d8
+7684 d3d9 d3d9 d3d9 * * 327b 8ea2b2fb,8ea2b2fbv 8883 e8a283 8883 00008883 d3d9 d3d9 d3d9 d3d9 d3d9 d3d9 d3d9
+7685 d3da d3da d3da * * 327c 8ea2b2fc,8ea2b2fcv 887e e8a1be 887e 0000887e d3da d3da d3da d3da d3da d3da d3da
+7686 d3db d3db d3db * * 327d 8ea2b2fd,8ea2b2fdv 8874 e8a1b4 8874 00008874 d3db d3db d3db d3db d3db d3db d3db
+7687 d3dc d3dc d3dc * * 327e 8ea2b2fe,8ea2b2fev 887c e8a1bc 887c 0000887c d3dc d3dc d3dc d3dc d3dc d3dc d3dc
+7688 d3dd d3dd d3dd * * 3321 8ea2b3a1,8ea2b3a1v 8a12 e8a892 8a12 00008a12 d3dd d3dd d3dd d3dd d3dd d3dd d3dd
+7689 d3de d3de d3de * * 3322 8ea2b3a2,8ea2b3a2v 8c47 e8b187 8c47 00008c47 d3de d3de d3de d3de d3de d3de d3de
+7690 d3df d3df d3df * * 3323 8ea2b3a3,8ea2b3a3v 8c57 e8b197 8c57 00008c57 d3df d3df d3df d3df d3df d3df d3df
+7691 d3e0 d3e0 d3e0 * * 3324 8ea2b3a4,8ea2b3a4v 8c7b e8b1bb 8c7b 00008c7b d3e0 d3e0 d3e0 d3e0 d3e0 d3e0 d3e0
+7692 d3e1 d3e1 d3e1 * * 3325 8ea2b3a5,8ea2b3a5v 8ca4 e8b2a4 8ca4 00008ca4 d3e1 d3e1 d3e1 d3e1 d3e1 d3e1 d3e1
+7693 d3e2 d3e2 d3e2 * * 3326 8ea2b3a6,8ea2b3a6v 8ca3 e8b2a3 8ca3 00008ca3 d3e2 d3e2 d3e2 d3e2 d3e2 d3e2 d3e2
+7694 d3e3 d3e3 d3e3 * * 3327 8ea2b3a7,8ea2b3a7v 8d76 e8b5b6 8d76 00008d76 d3e3 d3e3 d3e3 d3e3 d3e3 d3e3 d3e3
+7695 d3e4 d3e4 d3e4 * * 3328 8ea2b3a8,8ea2b3a8v 8d78 e8b5b8 8d78 00008d78 d3e4 d3e4 d3e4 d3e4 d3e4 d3e4 d3e4
+7696 d3e5 d3e5 d3e5 * * 3329 8ea2b3a9,8ea2b3a9v 8db5 e8b6b5 8db5 00008db5 d3e5 d3e5 d3e5 d3e5 d3e5 d3e5 d3e5
+7697 d3e6 d3e6 d3e6 * * 332a 8ea2b3aa,8ea2b3aav 8db7 e8b6b7 8db7 00008db7 d3e6 d3e6 d3e6 d3e6 d3e6 d3e6 d3e6
+7698 d3e7 d3e7 d3e7 * * 332b 8ea2b3ab,8ea2b3abv 8db6 e8b6b6 8db6 00008db6 d3e7 d3e7 d3e7 d3e7 d3e7 d3e7 d3e7
+7699 d3e8 d3e8 d3e8 * * 332c 8ea2b3ac,8ea2b3acv 8ed1 e8bb91 8ed1 00008ed1 d3e8 d3e8 d3e8 d3e8 d3e8 d3e8 d3e8
+7700 d3e9 d3e9 d3e9 * * 332d 8ea2b3ad,8ea2b3adv 8ed3 e8bb93 8ed3 00008ed3 d3e9 d3e9 d3e9 d3e9 d3e9 d3e9 d3e9
+7701 d3ea d3ea d3ea * * 332e 8ea2b3ae,8ea2b3aev 8ffe e8bfbe 8ffe 00008ffe d3ea d3ea d3ea d3ea d3ea d3ea d3ea
+7702 d3eb d3eb d3eb * * 332f 8ea2b3af,8ea2b3afv 8ff5 e8bfb5 8ff5 00008ff5 d3eb d3eb d3eb d3eb d3eb d3eb d3eb
+7703 d3ec d3ec d3ec * * 3330 8ea2b3b0,8ea2b3b0v 9002 e98082 9002 00009002 d3ec d3ec d3ec d3ec d3ec d3ec d3ec
+7704 d3ed d3ed d3ed * * 3331 8ea2b3b1,8ea2b3b1v 8fff e8bfbf 8fff 00008fff d3ed d3ed d3ed d3ed d3ed d3ed d3ed
+7705 d3ee d3ee d3ee * * 3332 8ea2b3b2,8ea2b3b2v 8ffb e8bfbb 8ffb 00008ffb d3ee d3ee d3ee d3ee d3ee d3ee d3ee
+7706 d3ef d3ef d3ef * * 3333 8ea2b3b3,8ea2b3b3v 9004 e98084 9004 00009004 d3ef d3ef d3ef d3ef d3ef d3ef d3ef
+7707 d3f0 d3f0 d3f0 * * 3334 8ea2b3b4,8ea2b3b4v 8ffc e8bfbc 8ffc 00008ffc d3f0 d3f0 d3f0 d3f0 d3f0 d3f0 d3f0
+7708 d3f1 d3f1 d3f1 * * 3335 8ea2b3b5,8ea2b3b5v 8ff6 e8bfb6 8ff6 00008ff6 d3f1 d3f1 d3f1 d3f1 d3f1 d3f1 d3f1
+7709 d3f2 d3f2 d3f2 * * 3336 8ea2b3b6,8ea2b3b6v 90d6 e98396 90d6 000090d6 d3f2 d3f2 d3f2 d3f2 d3f2 d3f2 d3f2
+7710 d3f3 d3f3 d3f3 * * 3337 8ea2b3b7,8ea2b3b7v 90e0 e983a0 90e0 000090e0 d3f3 d3f3 d3f3 d3f3 d3f3 d3f3 d3f3
+7711 d3f4 d3f4 d3f4 * * 3338 8ea2b3b8,8ea2b3b8v 90d9 e98399 90d9 000090d9 d3f4 d3f4 d3f4 d3f4 d3f4 d3f4 d3f4
+7712 d3f5 d3f5 d3f5 * * 3339 8ea2b3b9,8ea2b3b9v 90da e9839a 90da 000090da d3f5 d3f5 d3f5 d3f5 d3f5 d3f5 d3f5
+7713 d3f6 d3f6 d3f6 * * 333a 8ea2b3ba,8ea2b3bav 90e3 e983a3 90e3 000090e3 d3f6 d3f6 d3f6 d3f6 d3f6 d3f6 d3f6
+7714 d3f7 d3f7 d3f7 * * 333b 8ea2b3bb,8ea2b3bbv 90df e9839f 90df 000090df d3f7 d3f7 d3f7 d3f7 d3f7 d3f7 d3f7
+7715 d3f8 d3f8 d3f8 * * 333c 8ea2b3bc,8ea2b3bcv 90e5 e983a5 90e5 000090e5 d3f8 d3f8 d3f8 d3f8 d3f8 d3f8 d3f8
+7716 d3f9 d3f9 d3f9 * * 333d 8ea2b3bd,8ea2b3bdv 90d8 e98398 90d8 000090d8 d3f9 d3f9 d3f9 d3f9 d3f9 d3f9 d3f9
+7717 d3fa d3fa d3fa * * 333e 8ea2b3be,8ea2b3bev 90db e9839b 90db 000090db d3fa d3fa d3fa d3fa d3fa d3fa d3fa
+7718 d3fb d3fb d3fb * * 333f 8ea2b3bf,8ea2b3bfv 90d7 e98397 90d7 000090d7 d3fb d3fb d3fb d3fb d3fb d3fb d3fb
+7719 d3fc d3fc d3fc * * 3340 8ea2b3c0,8ea2b3c0v 90dc e9839c 90dc 000090dc d3fc d3fc d3fc d3fc d3fc d3fc d3fc
+7720 d3fd d3fd d3fd * * 3341 8ea2b3c1,8ea2b3c1v 90e4 e983a4 90e4 000090e4 d3fd d3fd d3fd d3fd d3fd d3fd d3fd
+7721 d3fe d3fe d3fe * * 3342 8ea2b3c2,8ea2b3c2v 9150 e98590 9150 00009150 d3fe d3fe 90cd,d3fe d3fe d3fe d3fe d3fe
+7722 d440 d440 d440 * * 3343 8ea2b3c3,8ea2b3c3v 914e e9858e 914e 0000914e d440 d440 d440 d440 d440 d440 d440
+7723 d441 d441 d441 * * 3344 8ea2b3c4,8ea2b3c4v 914f e9858f 914f 0000914f d441 d441 d441 d441 d441 d441 d441
+7724 d442 d442 d442 * * 3345 8ea2b3c5,8ea2b3c5v 91d5 e98795 91d5 000091d5 d442 d442 d442 d442 d442 d442 d442
+7725 d443 d443 d443 * * 3346 8ea2b3c6,8ea2b3c6v 91e2 e987a2 91e2 000091e2 d443 d443 d443 d443 d443 d443 d443
+7726 d444 d444 d444 * * 3347 8ea2b3c7,8ea2b3c7v 91da e9879a 91da 000091da d444 d444 d444 d444 d444 d444 d444
+7727 d445 d445 d445 * * 3348 8ea2b3c8,8ea2b3c8v 965c e9999c 965c 0000965c d445 d445 d445 d445 d445 d445 d445
+7728 d446 d446 d446 * * 3349 8ea2b3c9,8ea2b3c9v 965f e9999f 965f 0000965f d446 d446 d446 d446 d446 d446 d446
+7729 d447 d447 d447 * * 334a 8ea2b3ca,8ea2b3cav 96bc e99abc 96bc 000096bc d447 d447 d447 d447 d447 d447 d447
+7730 d448 d448 d448 * * 334b 8ea2b3cb,8ea2b3cbv 98e3 e9a3a3 98e3 000098e3 d448 d448 d448 d448 d448 d448 d448
+7731 d449 d449 d449 * 2921 334c 8ea1a9a1,8ea2b3cc,a9a1,8ea1a9a1v,8ea2b3ccv,a9a1v 9adf e2bebd,e9ab9f 2fbd,9adf 00002fbd,00009adf d449 d449 d449 d449 d449 d449 d449
+7732 d44a d44a d44a * 2923 334d 8ea1a9a3,8ea2b3cd,a9a3,8ea1a9a3v,8ea2b3cdv,a9a3v 9b2f e2bebf,e9acaf 2fbf,9b2f 00002fbf,00009b2f d44a d44a d44a d44a d44a d44a d44a
+7733 d44b d44b d44b * * 334e 8ea2b3ce,8ea2b3cev 4e7f e4b9bf 4e7f 00004e7f d44b d44b d44b d44b d44b d44b d44b
+7734 d44c d44c d44c * * 334f 8ea2b3cf,8ea2b3cfv 5070 e581b0 5070 00005070 d44c d44c d44c d44c d44c d44c d44c
+7735 d44d d44d d44d * * 3350 8ea2b3d0,8ea2b3d0v 506a e581aa 506a 0000506a d44d d44d d44d d44d d44d d44d d44d
+7736 d44e d44e d44e * * 3351 8ea2b3d1,8ea2b3d1v 5061 e581a1 5061 00005061 d44e d44e d44e d44e d44e d44e d44e
+7737 d44f d44f d44f * * 3352 8ea2b3d2,8ea2b3d2v 505e e5819e 505e 0000505e d44f d44f d44f d44f d44f d44f d44f
+7738 d450 d450 d450 * * 3353 8ea2b3d3,8ea2b3d3v 5060 e581a0 5060 00005060 d450 d450 d450 d450 d450 d450 d450
+7739 d451 d451 d451 * * 3354 8ea2b3d4,8ea2b3d4v 5053 e58193 5053 00005053 d451 d451 d451 d451 d451 d451 d451
+7740 d452 d452 d452 * * 3355 8ea2b3d5,8ea2b3d5v 504b e5818b 504b 0000504b d452 d452 d452 d452 d452 d452 d452
+7741 d453 d453 d453 * * 3356 8ea2b3d6,8ea2b3d6v 505d e5819d 505d 0000505d d453 d453 d453 d453 d453 d453 d453
+7742 d454 d454 d454 * * 3357 8ea2b3d7,8ea2b3d7v 5072 e581b2 5072 00005072 d454 d454 d454 d454 d454 d454 d454
+7743 d455 d455 d455 * * 3358 8ea2b3d8,8ea2b3d8v 5048 e58188 5048 00005048 d455 d455 d455 d455 d455 d455 d455
+7744 d456 d456 d456 * * 3359 8ea2b3d9,8ea2b3d9v 504d e5818d 504d 0000504d d456 d456 d456 d456 d456 d456 d456
+7745 d457 d457 d457 * * 335a 8ea2b3da,8ea2b3dav 5041 e58181 5041 00005041 d457 d457 d457 d457 d457 d457 d457
+7746 d458 d458 d458 * * 335b 8ea2b3db,8ea2b3dbv 505b e5819b 505b 0000505b d458 d458 d458 d458 d458 d458 d458
+7747 d459 d459 d459 * * 335c 8ea2b3dc,8ea2b3dcv 504a e5818a 504a 0000504a d459 d459 d459 d459 d459 d459 d459
+7748 d45a d45a d45a * * 335d 8ea2b3dd,8ea2b3ddv 5062 e581a2 5062 00005062 d45a d45a d45a d45a d45a d45a d45a
+7749 d45b d45b d45b * * 335e 8ea2b3de,8ea2b3dev 5015 e58095 5015 00005015 d45b d45b d45b d45b d45b d45b d45b
+7750 d45c d45c d45c * * 335f 8ea2b3df,8ea2b3dfv 5045 e58185 5045 00005045 d45c d45c d45c d45c d45c d45c d45c
+7751 d45d d45d d45d * * 3360 8ea2b3e0,8ea2b3e0v 505f e5819f 505f 0000505f d45d d45d d45d d45d d45d d45d d45d
+7752 d45e d45e d45e * * 3361 8ea2b3e1,8ea2b3e1v 5069 e581a9 5069 00005069 d45e d45e d45e d45e d45e d45e d45e
+7753 d45f d45f d45f * * 3362 8ea2b3e2,8ea2b3e2v 506b e581ab 506b 0000506b d45f d45f d45f d45f d45f d45f d45f
+7754 d460 d460 d460 * * 3363 8ea2b3e3,8ea2b3e3v 5063 e581a3 5063 00005063 d460 d460 d460 d460 d460 d460 d460
+7755 d461 d461 d461 * * 3364 8ea2b3e4,8ea2b3e4v 5064 e581a4 5064 00005064 d461 d461 d461 d461 d461 d461 d461
+7756 d462 d462 d462 * * 3365 8ea2b3e5,8ea2b3e5v 5046 e58186 5046 00005046 d462 d462 d462 d462 d462 d462 d462
+7757 d463 d463 d463 * * 3366 8ea2b3e6,8ea2b3e6v 5040 e58180 5040 00005040 d463 d463 d463 d463 d463 d463 d463
+7758 d464 d464 d464 * * 3367 8ea2b3e7,8ea2b3e7v 506e e581ae 506e 0000506e d464 d464 d464 d464 d464 d464 d464
+7759 d465 d465 d465 * * 3368 8ea2b3e8,8ea2b3e8v 5073 e581b3 5073 00005073 d465 d465 d465 d465 d465 d465 d465
+7760 d466 d466 d466 * * 3369 8ea2b3e9,8ea2b3e9v 5057 e58197 5057 00005057 d466 d466 d466 d466 d466 d466 d466
+7761 d467 d467 d467 * * 336a 8ea2b3ea,8ea2b3eav 5051 e58191 5051 00005051 d467 d467 d467 d467 d467 d467 d467
+7762 d468 d468 d468 * * 336b 8ea2b3eb,8ea2b3ebv 51d0 e58790 51d0 000051d0 d468 d468 d468 d468 d468 d468 d468
+7763 d469 d469 d469 * * 336c 8ea2b3ec,8ea2b3ecv 526b e589ab 526b 0000526b d469 d469 d469 d469 d469 d469 d469
+7764 d46a d46a d46a * * 336d 8ea2b3ed,8ea2b3edv 526d e589ad 526d 0000526d d46a d46a d46a d46a d46a d46a d46a
+7765 d46b d46b d46b * * 336e 8ea2b3ee,8ea2b3eev 526c e589ac 526c 0000526c d46b d46b d46b d46b d46b d46b d46b
+7766 d46c d46c d46c * * 336f 8ea2b3ef,8ea2b3efv 526e e589ae 526e 0000526e d46c d46c d46c d46c d46c d46c d46c
+7767 d46d d46d d46d * * 3370 8ea2b3f0,8ea2b3f0v 52d6 e58b96 52d6 000052d6 d46d d46d d46d d46d d46d d46d d46d
+7768 d46e d46e d46e * * 3371 8ea2b3f1,8ea2b3f1v 52d3 e58b93 52d3 000052d3 d46e d46e d46e d46e d46e d46e d46e
+7769 d46f d46f d46f * * 3372 8ea2b3f2,8ea2b3f2v 532d e58cad 532d 0000532d d46f d46f d46f d46f d46f d46f d46f
+7770 d470 d470 d470 * * 3373 8ea2b3f3,8ea2b3f3v 539c e58e9c 539c 0000539c d470 d470 d470 d470 d470 d470 d470
+7771 d471 d471 d471 * * 3374 8ea2b3f4,8ea2b3f4v 5575 e595b5 5575 00005575 d471 d471 d471 d471 d471 d471 d471
+7772 d472 d472 d472 * * 3375 8ea2b3f5,8ea2b3f5v 5576 e595b6 5576 00005576 d472 d472 d472 d472 d472 d472 d472
+7773 d473 d473 d473 * * 3376 8ea2b3f6,8ea2b3f6v 553c e594bc 553c 0000553c d473 d473 d473 d473 d473 d473 d473
+7774 d474 d474 d474 * * 3377 8ea2b3f7,8ea2b3f7v 554d e5958d 554d 0000554d d474 d474 d474 d474 d474 d474 d474
+7775 d475 d475 d475 * * 3378 8ea2b3f8,8ea2b3f8v 5550 e59590 5550 00005550 d475 d475 d475 d475 d475 d475 d475
+7776 d476 d476 d476 * * 3379 8ea2b3f9,8ea2b3f9v 5534 e594b4 5534 00005534 d476 d476 d476 d476 d476 d476 d476
+7777 d477 d477 d477 * * 337a 8ea2b3fa,8ea2b3fav 552a e594aa 552a 0000552a d477 d477 d477 d477 d477 d477 d477
+7778 d478 d478 d478 * * 337b 8ea2b3fb,8ea2b3fbv 5551 e59591 5551 00005551 d478 d478 d478 d478 d478 d478 d478
+7779 d479 d479 d479 * * 337c 8ea2b3fc,8ea2b3fcv 5562 e595a2 5562 00005562 d479 d479 d479 d479 d479 d479 d479
+7780 d47a d47a d47a * * 337d 8ea2b3fd,8ea2b3fdv 5536 e594b6 5536 00005536 d47a d47a d47a d47a d47a d47a d47a
+7781 d47b d47b d47b * * 337e 8ea2b3fe,8ea2b3fev 5535 e594b5 5535 00005535 d47b d47b d47b d47b d47b d47b d47b
+7782 d47c d47c d47c * * 3421 8ea2b4a1,8ea2b4a1v 5530 e594b0 5530 00005530 d47c d47c d47c d47c d47c d47c d47c
+7783 d47d d47d d47d * * 3422 8ea2b4a2,8ea2b4a2v 5552 e59592 5552 00005552 d47d d47d d47d d47d d47d d47d d47d
+7784 d47e d47e d47e * * 3423 8ea2b4a3,8ea2b4a3v 5545 e59585 5545 00005545 d47e d47e d47e d47e d47e d47e d47e
+7785 d4a1 d4a1 d4a1 * * 3424 8ea2b4a4,8ea2b4a4v 550c e5948c 550c 0000550c d4a1 d4a1 d4a1 d4a1 d4a1 d4a1 d4a1
+7786 d4a2 d4a2 d4a2 * * 3425 8ea2b4a5,8ea2b4a5v 5532 e594b2 5532 00005532 d4a2 d4a2 d4a2 d4a2 d4a2 d4a2 d4a2
+7787 d4a3 d4a3 d4a3 * * 3426 8ea2b4a6,8ea2b4a6v 5565 e595a5 5565 00005565 d4a3 d4a3 d4a3 d4a3 d4a3 d4a3 d4a3
+7788 d4a4 d4a4 d4a4 * * 3427 8ea2b4a7,8ea2b4a7v 554e e5958e 554e 0000554e d4a4 d4a4 d4a4 d4a4 d4a4 d4a4 d4a4
+7789 d4a5 d4a5 d4a5 * * 3428 8ea2b4a8,8ea2b4a8v 5539 e594b9 5539 00005539 d4a5 d4a5 d4a5 d4a5 d4a5 d4a5 d4a5
+7790 d4a6 d4a6 d4a6 * * 3429 8ea2b4a9,8ea2b4a9v 5548 e59588 5548 00005548 d4a6 d4a6 d4a6 d4a6 d4a6 d4a6 d4a6
+7791 d4a7 d4a7 d4a7 * * 342a 8ea2b4aa,8ea2b4aav 552d e594ad 552d 0000552d d4a7 d4a7 d4a7 d4a7 d4a7 d4a7 d4a7
+7792 d4a8 d4a8 d4a8 * * 342b 8ea2b4ab,8ea2b4abv 553b e594bb 553b 0000553b d4a8 d4a8 d4a8 d4a8 d4a8 d4a8 d4a8
+7793 d4a9 d4a9 d4a9 * * 342c 8ea2b4ac,8ea2b4acv 5540 e59580 5540 00005540 d4a9 d4a9 d4a9 d4a9 d4a9 d4a9 d4a9
+7794 d4aa d4aa d4aa * * 342d 8ea2b4ad,8ea2b4adv 554b e5958b 554b 0000554b d4aa d4aa d4aa d4aa d4aa d4aa d4aa
+7795 d4ab d4ab d4ab * * 342e 8ea2b4ae,8ea2b4aev 570a e59c8a 570a 0000570a d4ab d4ab d4ab d4ab d4ab d4ab d4ab
+7796 d4ac d4ac d4ac * * 342f 8ea2b4af,8ea2b4afv 5707 e59c87 5707 00005707 d4ac d4ac d4ac d4ac d4ac d4ac d4ac
+7797 d4ad d4ad d4ad * * 3430 8ea2b4b0,8ea2b4b0v 57fb e59fbb 57fb 000057fb d4ad d4ad d4ad d4ad d4ad d4ad d4ad
+7798 d4ae d4ae d4ae * * 3431 8ea2b4b1,8ea2b4b1v 5814 e5a094 5814 00005814 d4ae d4ae d4ae d4ae d4ae d4ae d4ae
+7799 d4af d4af d4af * * 3432 8ea2b4b2,8ea2b4b2v 57e2 e59fa2 57e2 000057e2 d4af d4af d4af d4af d4af d4af d4af
+7800 d4b0 d4b0 d4b0 * * 3433 8ea2b4b3,8ea2b4b3v 57f6 e59fb6 57f6 000057f6 d4b0 d4b0 d4b0 d4b0 d4b0 d4b0 d4b0
+7801 d4b1 d4b1 d4b1 * * 3434 8ea2b4b4,8ea2b4b4v 57dc e59f9c 57dc 000057dc d4b1 d4b1 d4b1 d4b1 d4b1 d4b1 d4b1
+7802 d4b2 d4b2 d4b2 * * 3435 8ea2b4b5,8ea2b4b5v 57f4 e59fb4 57f4 000057f4 d4b2 d4b2 d4b2 d4b2 d4b2 d4b2 d4b2
+7803 d4b3 d4b3 d4b3 * * 3436 8ea2b4b6,8ea2b4b6v 5800 e5a080 5800 00005800 d4b3 d4b3 d4b3 d4b3 d4b3 d4b3 d4b3
+7804 d4b4 d4b4 d4b4 * * 3437 8ea2b4b7,8ea2b4b7v 57ed e59fad 57ed 000057ed d4b4 d4b4 d4b4 d4b4 d4b4 d4b4 d4b4
+7805 d4b5 d4b5 d4b5 * * 3438 8ea2b4b8,8ea2b4b8v 57fd e59fbd 57fd 000057fd d4b5 d4b5 d4b5 d4b5 d4b5 d4b5 d4b5
+7806 d4b6 d4b6 d4b6 * * 3439 8ea2b4b9,8ea2b4b9v 5808 e5a088 5808 00005808 d4b6 d4b6 d4b6 d4b6 d4b6 d4b6 d4b6
+7807 d4b7 d4b7 d4b7 * * 343a 8ea2b4ba,8ea2b4bav 57f8 e59fb8 57f8 000057f8 d4b7 d4b7 d4b7 d4b7 d4b7 d4b7 d4b7
+7808 d4b8 d4b8 d4b8 * * 343b 8ea2b4bb,8ea2b4bbv 580b e5a08b 580b 0000580b d4b8 d4b8 d4b8 d4b8 d4b8 d4b8 d4b8
+7809 d4b9 d4b9 d4b9 * * 343c 8ea2b4bc,8ea2b4bcv 57f3 e59fb3 57f3 000057f3 d4b9 d4b9 d4b9 d4b9 d4b9 d4b9 d4b9
+7810 d4ba d4ba d4ba * * 343d 8ea2b4bd,8ea2b4bdv 57cf e59f8f 57cf 000057cf d4ba d4ba d4ba d4ba d4ba d4ba d4ba
+7811 d4bb d4bb d4bb * * 343e 8ea2b4be,8ea2b4bev 5807 e5a087 5807 00005807 d4bb d4bb d4bb d4bb d4bb d4bb d4bb
+7812 d4bc d4bc d4bc * * 343f 8ea2b4bf,8ea2b4bfv 57ee e59fae 57ee 000057ee d4bc d4bc d4bc d4bc d4bc d4bc d4bc
+7813 d4bd d4bd d4bd * * 3440 8ea2b4c0,8ea2b4c0v 57e3 e59fa3 57e3 000057e3 d4bd d4bd d4bd d4bd d4bd d4bd d4bd
+7814 d4be d4be d4be * * 3441 8ea2b4c1,8ea2b4c1v 57f2 e59fb2 57f2 000057f2 d4be d4be d4be d4be d4be d4be d4be
+7815 d4bf d4bf d4bf * * 3442 8ea2b4c2,8ea2b4c2v 57e5 e59fa5 57e5 000057e5 d4bf d4bf d4bf d4bf d4bf d4bf d4bf
+7816 d4c0 d4c0 d4c0 * * 3443 8ea2b4c3,8ea2b4c3v 57ec e59fac 57ec 000057ec d4c0 d4c0 d4c0 d4c0 d4c0 d4c0 d4c0
+7817 d4c1 d4c1 d4c1 * * 3444 8ea2b4c4,8ea2b4c4v 57e1 e59fa1 57e1 000057e1 d4c1 d4c1 d4c1 d4c1 d4c1 d4c1 d4c1
+7818 d4c2 d4c2 d4c2 * * 3445 8ea2b4c5,8ea2b4c5v 580e e5a08e 580e 0000580e d4c2 d4c2 d4c2 d4c2 d4c2 d4c2 d4c2
+7819 d4c3 d4c3 d4c3 * * 3446 8ea2b4c6,8ea2b4c6v 57fc e59fbc 57fc 000057fc d4c3 d4c3 d4c3 d4c3 d4c3 d4c3 d4c3
+7820 d4c4 d4c4 d4c4 * * 3447 8ea2b4c7,8ea2b4c7v 5810 e5a090 5810 00005810 d4c4 d4c4 d4c4 d4c4 d4c4 d4c4 d4c4
+7821 d4c5 d4c5 d4c5 * * 3448 8ea2b4c8,8ea2b4c8v 57e7 e59fa7 57e7 000057e7 d4c5 d4c5 d4c5 d4c5 d4c5 d4c5 d4c5
+7822 d4c6 d4c6 d4c6 * * 3449 8ea2b4c9,8ea2b4c9v 5801 e5a081 5801 00005801 d4c6 d4c6 d4c6 d4c6 d4c6 d4c6 d4c6
+7823 d4c7 d4c7 d4c7 * * 344a 8ea2b4ca,8ea2b4cav 580c e5a08c 580c 0000580c d4c7 d4c7 d4c7 d4c7 d4c7 d4c7 d4c7
+7824 d4c8 d4c8 d4c8 * * 344b 8ea2b4cb,8ea2b4cbv 57f1 e59fb1 57f1 000057f1 d4c8 d4c8 d4c8 d4c8 d4c8 d4c8 d4c8
+7825 d4c9 d4c9 d4c9 * * 344c 8ea2b4cc,8ea2b4ccv 57e9 e59fa9 57e9 000057e9 d4c9 d4c9 d4c9 d4c9 d4c9 d4c9 d4c9
+7826 d4ca d4ca d4ca * * 344d 8ea2b4cd,8ea2b4cdv 57f0 e59fb0 57f0 000057f0 d4ca d4ca d4ca d4ca d4ca d4ca d4ca
+7827 d4cb d4cb d4cb * * 344e 8ea2b4ce,8ea2b4cev 580d e5a08d 580d 0000580d d4cb d4cb d4cb d4cb d4cb d4cb d4cb
+7828 d4cc d4cc d4cc * * 344f 8ea2b4cf,8ea2b4cfv 5804 e5a084 5804 00005804 d4cc d4cc d4cc d4cc d4cc d4cc d4cc
+7829 d4cd d4cd d4cd * * 3450 8ea2b4d0,8ea2b4d0v 595c e5a59c 595c 0000595c d4cd d4cd d4cd d4cd d4cd d4cd d4cd
+7830 d4ce d4ce d4ce * * 3451 8ea2b4d1,8ea2b4d1v 5a60 e5a9a0 5a60 00005a60 d4ce d4ce d4ce d4ce d4ce d4ce d4ce
+7831 d4cf d4cf d4cf * * 3452 8ea2b4d2,8ea2b4d2v 5a58 e5a998 5a58 00005a58 d4cf d4cf d4cf d4cf d4cf d4cf d4cf
+7832 d4d0 d4d0 d4d0 * * 3453 8ea2b4d3,8ea2b4d3v 5a55 e5a995 5a55 00005a55 d4d0 d4d0 d4d0 d4d0 d4d0 d4d0 d4d0
+7833 d4d1 d4d1 d4d1 * * 3454 8ea2b4d4,8ea2b4d4v 5a67 e5a9a7,eeb095 5a67,ec15 00005a67,0000ec15 9cd0,d4d1 d4d1 d4d1 d4d1 d4d1 d4d1 9cd0,d4d1
+7834 d4d2 d4d2 d4d2 * * 3455 8ea2b4d5,8ea2b4d5v 5a5e e5a99e 5a5e 00005a5e d4d2 d4d2 d4d2 d4d2 d4d2 d4d2 d4d2
+7835 d4d3 d4d3 d4d3 * * 3456 8ea2b4d6,8ea2b4d6v 5a38 e5a8b8 5a38 00005a38 d4d3 d4d3 d4d3 d4d3 d4d3 d4d3 d4d3
+7836 d4d4 d4d4 d4d4 * * 3457 8ea2b4d7,8ea2b4d7v 5a35 e5a8b5 5a35 00005a35 d4d4 d4d4 d4d4 d4d4 d4d4 d4d4 d4d4
+7837 d4d5 d4d5 d4d5 * * 3458 8ea2b4d8,8ea2b4d8v 5a6d e5a9ad 5a6d 00005a6d d4d5 d4d5 d4d5 d4d5 d4d5 d4d5 d4d5
+7838 d4d6 d4d6 d4d6 * * 3459 8ea2b4d9,8ea2b4d9v 5a50 e5a990 5a50 00005a50 d4d6 d4d6 d4d6 d4d6 d4d6 d4d6 d4d6
+7839 d4d7 d4d7 d4d7 * * 345a 8ea2b4da,8ea2b4dav 5a5f e5a99f 5a5f 00005a5f d4d7 d4d7 d4d7 d4d7 d4d7 d4d7 d4d7
+7840 d4d8 d4d8 d4d8 * * 345b 8ea2b4db,8ea2b4dbv 5a65 e5a9a5 5a65 00005a65 d4d8 d4d8 d4d8 d4d8 d4d8 d4d8 d4d8
+7841 d4d9 d4d9 d4d9 * * 345c 8ea2b4dc,8ea2b4dcv 5a6c e5a9ac 5a6c 00005a6c d4d9 d4d9 d4d9 d4d9 d4d9 d4d9 d4d9
+7842 d4da d4da d4da * * 345d 8ea2b4dd,8ea2b4ddv 5a53 e5a993 5a53 00005a53 d4da d4da d4da d4da d4da d4da d4da
+7843 d4db d4db d4db * * 345e 8ea2b4de,8ea2b4dev 5a64 e5a9a4 5a64 00005a64 d4db d4db d4db d4db d4db d4db d4db
+7844 d4dc d4dc d4dc * * 345f 8ea2b4df,8ea2b4dfv 5a57 e5a997 5a57 00005a57 d4dc d4dc d4dc d4dc d4dc d4dc d4dc
+7845 d4dd d4dd d4dd * * 3460 8ea2b4e0,8ea2b4e0v 5a43 e5a983 5a43 00005a43 d4dd d4dd d4dd d4dd d4dd d4dd d4dd
+7846 d4de d4de d4de * * 3461 8ea2b4e1,8ea2b4e1v 5a5d e5a99d 5a5d 00005a5d d4de d4de d4de d4de d4de d4de d4de
+7847 d4df d4df d4df * * 3462 8ea2b4e2,8ea2b4e2v 5a52 e5a992 5a52 00005a52 d4df d4df d4df d4df d4df d4df d4df
+7848 d4e0 d4e0 d4e0 * * 3463 8ea2b4e3,8ea2b4e3v 5a44 e5a984 5a44 00005a44 d4e0 d4e0 d4e0 d4e0 d4e0 d4e0 d4e0
+7849 d4e1 d4e1 d4e1 * * 3464 8ea2b4e4,8ea2b4e4v 5a5b e5a99b 5a5b 00005a5b d4e1 d4e1 d4e1 d4e1 d4e1 d4e1 d4e1
+7850 d4e2 d4e2 d4e2 * * 3465 8ea2b4e5,8ea2b4e5v 5a48 e5a988 5a48 00005a48 d4e2 d4e2 d4e2 d4e2 d4e2 d4e2 d4e2
+7851 d4e3 d4e3 d4e3 * * 3466 8ea2b4e6,8ea2b4e6v 5a8e e5aa8e 5a8e 00005a8e d4e3 d4e3 d4e3 d4e3 d4e3 d4e3 d4e3
+7852 d4e4 d4e4 d4e4 * * 3467 8ea2b4e7,8ea2b4e7v 5a3e e5a8be 5a3e 00005a3e d4e4 d4e4 d4e4 d4e4 d4e4 d4e4 d4e4
+7853 d4e5 d4e5 d4e5 * * 3468 8ea2b4e8,8ea2b4e8v 5a4d e5a98d 5a4d 00005a4d d4e5 d4e5 d4e5 d4e5 d4e5 d4e5 d4e5
+7854 d4e6 d4e6 d4e6 * * 3469 8ea2b4e9,8ea2b4e9v 5a39 e5a8b9 5a39 00005a39 d4e6 d4e6 d4e6 d4e6 d4e6 d4e6 d4e6
+7855 d4e7 d4e7 d4e7 * * 346a 8ea2b4ea,8ea2b4eav 5a4c e5a98c 5a4c 00005a4c d4e7 d4e7 d4e7 d4e7 d4e7 d4e7 d4e7
+7856 d4e8 d4e8 d4e8 * * 346b 8ea2b4eb,8ea2b4ebv 5a70 e5a9b0 5a70 00005a70 d4e8 d4e8 d4e8 d4e8 d4e8 d4e8 d4e8
+7857 d4e9 d4e9 d4e9 * * 346c 8ea2b4ec,8ea2b4ecv 5a69 e5a9a9 5a69 00005a69 d4e9 d4e9 d4e9 d4e9 d4e9 d4e9 d4e9
+7858 d4ea d4ea d4ea * * 346d 8ea2b4ed,8ea2b4edv 5a47 e5a987 5a47 00005a47 d4ea d4ea d4ea d4ea d4ea d4ea d4ea
+7859 d4eb d4eb d4eb * * 346e 8ea2b4ee,8ea2b4eev 5a51 e5a991 5a51 00005a51 d4eb d4eb d4eb d4eb d4eb d4eb d4eb
+7860 d4ec d4ec d4ec * * 346f 8ea2b4ef,8ea2b4efv 5a56 e5a996 5a56 00005a56 d4ec d4ec d4ec d4ec d4ec d4ec d4ec
+7861 d4ed d4ed d4ed * * 3470 8ea2b4f0,8ea2b4f0v 5a42 e5a982 5a42 00005a42 d4ed d4ed d4ed d4ed d4ed d4ed d4ed
+7862 d4ee d4ee d4ee * * 3471 8ea2b4f1,8ea2b4f1v 5a5c e5a99c 5a5c 00005a5c d4ee d4ee d4ee d4ee d4ee d4ee d4ee
+7863 d4ef d4ef d4ef * * 3472 8ea2b4f2,8ea2b4f2v 5b72 e5adb2 5b72 00005b72 d4ef d4ef d4ef d4ef d4ef d4ef d4ef
+7864 d4f0 d4f0 d4f0 * * 3473 8ea2b4f3,8ea2b4f3v 5b6e e5adae 5b6e 00005b6e d4f0 d4f0 d4f0 d4f0 d4f0 d4f0 d4f0
+7865 d4f1 d4f1 d4f1 * * 3474 8ea2b4f4,8ea2b4f4v 5bc1 e5af81 5bc1 00005bc1 d4f1 d4f1 d4f1 d4f1 d4f1 d4f1 d4f1
+7866 d4f2 d4f2 d4f2 * * 3475 8ea2b4f5,8ea2b4f5v 5bc0 e5af80 5bc0 00005bc0 d4f2 d4f2 d4f2 d4f2 d4f2 d4f2 d4f2
+7867 d4f3 d4f3 d4f3 * * 3476 8ea2b4f6,8ea2b4f6v 5c59 e5b199 5c59 00005c59 d4f3 d4f3 d4f3 d4f3 d4f3 d4f3 d4f3
+7868 d4f4 d4f4 d4f4 * * 3477 8ea2b4f7,8ea2b4f7v 5d1e e5b49e 5d1e 00005d1e d4f4 d4f4 d4f4 d4f4 d4f4 d4f4 d4f4
+7869 d4f5 d4f5 d4f5 * * 3478 8ea2b4f8,8ea2b4f8v 5d0b e5b48b 5d0b 00005d0b d4f5 d4f5 d4f5 d4f5 d4f5 d4f5 d4f5
+7870 d4f6 d4f6 d4f6 * * 3479 8ea2b4f9,8ea2b4f9v 5d1d e5b49d 5d1d 00005d1d d4f6 d4f6 d4f6 d4f6 d4f6 d4f6 d4f6
+7871 d4f7 d4f7 d4f7 * * 347a 8ea2b4fa,8ea2b4fav 5d1a e5b49a 5d1a 00005d1a d4f7 d4f7 d4f7 d4f7 d4f7 d4f7 d4f7
+7872 d4f8 d4f8 d4f8 * * 347b 8ea2b4fb,8ea2b4fbv 5d20 e5b4a0 5d20 00005d20 d4f8 d4f8 d4f8 d4f8 d4f8 d4f8 d4f8
+7873 d4f9 d4f9 d4f9 * * 347c 8ea2b4fc,8ea2b4fcv 5d0c e5b48c 5d0c 00005d0c d4f9 d4f9 d4f9 d4f9 d4f9 d4f9 d4f9
+7874 d4fa d4fa d4fa * * 347d 8ea2b4fd,8ea2b4fdv 5d28 e5b4a8 5d28 00005d28 d4fa d4fa d4fa d4fa d4fa d4fa d4fa
+7875 d4fb d4fb d4fb * * 347e 8ea2b4fe,8ea2b4fev 5d0d e5b48d 5d0d 00005d0d d4fb d4fb d4fb d4fb d4fb d4fb d4fb
+7876 d4fc d4fc d4fc * * 3521 8ea2b5a1,8ea2b5a1v 5d26 e5b4a6 5d26 00005d26 d4fc d4fc d4fc d4fc d4fc d4fc d4fc
+7877 d4fd d4fd d4fd * * 3522 8ea2b5a2,8ea2b5a2v 5d25 e5b4a5 5d25 00005d25 d4fd d4fd d4fd d4fd d4fd d4fd d4fd
+7878 d4fe d4fe d4fe * * 3523 8ea2b5a3,8ea2b5a3v 5d0f e5b48f 5d0f 00005d0f d4fe d4fe d4fe d4fe d4fe d4fe d4fe
+7879 d540 d540 d540 * * 3524 8ea2b5a4,8ea2b5a4v 5d30 e5b4b0 5d30 00005d30 d540 d540 d540 d540 d540 d540 d540
+7880 d541 d541 d541 * * 3525 8ea2b5a5,8ea2b5a5v 5d12 e5b492 5d12 00005d12 d541 d541 d541 d541 d541 d541 d541
+7881 d542 d542 d542 * * 3526 8ea2b5a6,8ea2b5a6v 5d23 e5b4a3 5d23 00005d23 d542 d542 d542 d542 d542 d542 d542
+7882 d543 d543 d543 * * 3527 8ea2b5a7,8ea2b5a7v 5d1f e5b49f 5d1f 00005d1f d543 d543 d543 d543 d543 d543 d543
+7883 d544 d544 d544 * * 3528 8ea2b5a8,8ea2b5a8v 5d2e e5b4ae 5d2e 00005d2e d544 d544 d544 d544 d544 d544 d544
+7884 d545 d545 d545 * * 3529 8ea2b5a9,8ea2b5a9v 5e3e e5b8be 5e3e 00005e3e d545 d545 d545 d545 d545 d545 d545
+7885 d546 d546 d546 * * 352a 8ea2b5aa,8ea2b5aav 5e34 e5b8b4 5e34 00005e34 d546 d546 d546 d546 d546 d546 d546
+7886 d547 d547 d547 * * 352b 8ea2b5ab,8ea2b5abv 5eb1 e5bab1 5eb1 00005eb1 d547 d547 d547 d547 d547 d547 d547
+7887 d548 d548 d548 * * 352c 8ea2b5ac,8ea2b5acv 5eb4 e5bab4 5eb4 00005eb4 d548 d548 d548 d548 d548 d548 d548
+7888 d549 d549 d549 * * 352d 8ea2b5ad,8ea2b5adv 5eb9 e5bab9 5eb9 00005eb9 d549 d549 d549 d549 d549 d549 d549
+7889 d54a d54a d54a * * 352e 8ea2b5ae,8ea2b5aev 5eb2 e5bab2 5eb2 00005eb2 d54a d54a d54a d54a d54a d54a d54a
+7890 d54b d54b d54b * * 352f 8ea2b5af,8ea2b5afv 5eb3 e5bab3 5eb3 00005eb3 d54b d54b d54b d54b d54b d54b d54b
+7891 d54c d54c d54c * * 3530 8ea2b5b0,8ea2b5b0v 5f36 e5bcb6 5f36 00005f36 d54c d54c d54c d54c d54c d54c d54c
+7892 d54d d54d d54d * * 3531 8ea2b5b1,8ea2b5b1v 5f38 e5bcb8 5f38 00005f38 d54d d54d d54d d54d d54d d54d d54d
+7893 d54e d54e d54e * * 3532 8ea2b5b2,8ea2b5b2v 5f9b e5be9b 5f9b 00005f9b d54e d54e d54e d54e d54e d54e d54e
+7894 d54f d54f d54f * * 3533 8ea2b5b3,8ea2b5b3v 5f96 e5be96 5f96 00005f96 d54f d54f d54f d54f d54f d54f d54f
+7895 d550 d550 d550 * * 3534 8ea2b5b4,8ea2b5b4v 5f9f e5be9f 5f9f 00005f9f d550 d550 d550 d550 d550 d550 d550
+7896 d551 d551 d551 * * 3535 8ea2b5b5,8ea2b5b5v 608a e6828a 608a 0000608a d551 d551 d551 d551 d551 d551 d551
+7897 d552 d552 d552 * * 3536 8ea2b5b6,8ea2b5b6v 6090 e68290 6090 00006090 d552 d552 d552 d552 d552 d552 d552
+7898 d553 d553 d553 * * 3537 8ea2b5b7,8ea2b5b7v 6086 e68286 6086 00006086 d553 d553 d553 d553 d553 d553 d553
+7899 d554 d554 d554 * * 3538 8ea2b5b8,8ea2b5b8v 60be e682be 60be 000060be d554 d554 d554 d554 d554 d554 d554
+7900 d555 d555 d555 * * 3539 8ea2b5b9,8ea2b5b9v 60b0 e682b0 60b0 000060b0 d555 d555 d555 d555 d555 d555 d555
+7901 d556 d556 d556 * * 353a 8ea2b5ba,8ea2b5bav 60ba e682ba 60ba 000060ba d556 d556 d556 d556 d556 d556 d556
+7902 d557 d557 d557 * * 353b 8ea2b5bb,8ea2b5bbv 60d3 e68393 60d3 000060d3 d557 d557 d557 d557 d557 d557 d557
+7903 d558 d558 d558 * * 353c 8ea2b5bc,8ea2b5bcv 60d4 e68394 60d4 000060d4 d558 d558 d558 d558 d558 d558 d558
+7904 d559 d559 d559 * * 353d 8ea2b5bd,8ea2b5bdv 60cf e6838f 60cf 000060cf d559 d559 d559 d559 d559 d559 d559
+7905 d55a d55a d55a * * 353e 8ea2b5be,8ea2b5bev 60e4 e683a4 60e4 000060e4 d55a d55a d55a d55a d55a d55a d55a
+7906 d55b d55b d55b * * 353f 8ea2b5bf,8ea2b5bfv 60d9 e68399 60d9 000060d9 d55b d55b d55b d55b d55b d55b d55b
+7907 d55c d55c d55c * * 3540 8ea2b5c0,8ea2b5c0v 60dd e6839d 60dd 000060dd d55c d55c d55c d55c d55c d55c d55c
+7908 d55d d55d d55d * * 3541 8ea2b5c1,8ea2b5c1v 60c8 e68388 60c8 000060c8 d55d d55d d55d d55d d55d d55d d55d
+7909 d55e d55e d55e * * 3542 8ea2b5c2,8ea2b5c2v 60b1 e682b1 60b1 000060b1 d55e d55e d55e d55e d55e d55e d55e
+7910 d55f d55f d55f * * 3543 8ea2b5c3,8ea2b5c3v 60db e6839b 60db 000060db d55f d55f d55f d55f d55f d55f d55f
+7911 d560 d560 d560 * * 3544 8ea2b5c4,8ea2b5c4v 60b7 e682b7 60b7 000060b7 d560 d560 d560 d560 d560 d560 d560
+7912 d561 d561 d561 * * 3545 8ea2b5c5,8ea2b5c5v 60ca e6838a 60ca 000060ca d561 d561 d561 d561 d561 d561 d561
+7913 d562 d562 d562 * * 3546 8ea2b5c6,8ea2b5c6v 60bf e682bf 60bf 000060bf d562 d562 d562 d562 d562 d562 d562
+7914 d563 d563 d563 * * 3547 8ea2b5c7,8ea2b5c7v 60c3 e68383 60c3 000060c3 d563 d563 d563 d563 d563 d563 d563
+7915 d564 d564 d564 * * 3548 8ea2b5c8,8ea2b5c8v 60cd e6838d 60cd 000060cd d564 d564 d564 d564 d564 d564 d564
+7916 d565 d565 d565 * * 3549 8ea2b5c9,8ea2b5c9v 60c0 e68380 60c0 000060c0 d565 d565 d565 d565 d565 d565 d565
+7917 d566 d566 d566 * * 354a 8ea2b5ca,8ea2b5cav 6332 e68cb2 6332 00006332 d566 d566 d566 d566 d566 d566 d566
+7918 d567 d567 d567 * * 354b 8ea2b5cb,8ea2b5cbv 6365 e68da5 6365 00006365 d567 d567 d567 d567 d567 d567 d567
+7919 d568 d568 d568 * * 354c 8ea2b5cc,8ea2b5ccv 638a e68e8a 638a 0000638a d568 d568 d568 d568 d568 d568 d568
+7920 d569 d569 d569 * * 354d 8ea2b5cd,8ea2b5cdv 6382 e68e82 6382 00006382 d569 d569 d569 d569 d569 d569 d569
+7921 d56a d56a d56a * * 354e 8ea2b5ce,8ea2b5cev 637d e68dbd 637d 0000637d d56a d56a d56a d56a d56a d56a d56a
+7922 d56b d56b d56b * * 354f 8ea2b5cf,8ea2b5cfv 63bd e68ebd 63bd 000063bd d56b d56b d56b d56b d56b d56b d56b
+7923 d56c d56c d56c * * 3550 8ea2b5d0,8ea2b5d0v 639e e68e9e 639e 0000639e d56c d56c d56c d56c d56c d56c d56c
+7924 d56d d56d d56d * * 3551 8ea2b5d1,8ea2b5d1v 63ad e68ead 63ad 000063ad d56d d56d d56d d56d d56d d56d d56d
+7925 d56e d56e d56e * * 3552 8ea2b5d2,8ea2b5d2v 639d e68e9d 639d 0000639d d56e d56e d56e d56e d56e d56e d56e
+7926 d56f d56f d56f * * 3553 8ea2b5d3,8ea2b5d3v 6397 e68e97 6397 00006397 d56f d56f d56f d56f d56f d56f d56f
+7927 d570 d570 d570 * * 3554 8ea2b5d4,8ea2b5d4v 63ab e68eab 63ab 000063ab d570 d570 d570 d570 d570 d570 d570
+7928 d571 d571 d571 * * 3555 8ea2b5d5,8ea2b5d5v 638e e68e8e 638e 0000638e d571 d571 d571 d571 d571 d571 d571
+7929 d572 d572 d572 * * 3556 8ea2b5d6,8ea2b5d6v 636f e68daf 636f 0000636f d572 d572 d572 d572 d572 d572 d572
+7930 d573 d573 d573 * * 3557 8ea2b5d7,8ea2b5d7v 6387 e68e87 6387 00006387 d573 d573 d573 d573 d573 d573 d573
+7931 d574 d574 d574 * * 3558 8ea2b5d8,8ea2b5d8v 6390 e68e90 6390 00006390 d574 d574 d574 d574 d574 d574 d574
+7932 d575 d575 d575 * * 3559 8ea2b5d9,8ea2b5d9v 636e e68dae 636e 0000636e d575 d575 d575 d575 d575 d575 d575
+7933 d576 d576 d576 * * 355a 8ea2b5da,8ea2b5dav 63af e68eaf 63af 000063af d576 d576 d576 d576 d576 d576 d576
+7934 d577 d577 d577 * * 355b 8ea2b5db,8ea2b5dbv 6375 e68db5 6375 00006375 d577 d577 d577 d577 d577 d577 d577
+7935 d578 d578 d578 * * 355c 8ea2b5dc,8ea2b5dcv 639c e68e9c 639c 0000639c d578 d578 d578 d578 d578 d578 d578
+7936 d579 d579 d579 * * 355d 8ea2b5dd,8ea2b5ddv 636d e68dad 636d 0000636d d579 d579 d579 d579 d579 d579 d579
+7937 d57a d57a d57a * * 355e 8ea2b5de,8ea2b5dev 63ae e68eae 63ae 000063ae d57a d57a d57a d57a d57a d57a d57a
+7938 d57b d57b d57b * * 355f 8ea2b5df,8ea2b5dfv 637c e68dbc 637c 0000637c d57b d57b d57b d57b d57b d57b d57b
+7939 d57c d57c d57c * * 3560 8ea2b5e0,8ea2b5e0v 63a4 e68ea4 63a4 000063a4 d57c d57c d57c d57c d57c d57c d57c
+7940 d57d d57d d57d * * 3561 8ea2b5e1,8ea2b5e1v 633b e68cbb 633b 0000633b d57d d57d d57d d57d d57d d57d d57d
+7941 d57e d57e d57e * * 3562 8ea2b5e2,8ea2b5e2v 639f e68e9f 639f 0000639f d57e d57e d57e d57e d57e d57e d57e
+7942 d5a1 d5a1 d5a1 * * 3563 8ea2b5e3,8ea2b5e3v 6378 e68db8 6378 00006378 d5a1 d5a1 d5a1 d5a1 d5a1 d5a1 d5a1
+7943 d5a2 d5a2 d5a2 * * 3564 8ea2b5e4,8ea2b5e4v 6385 e68e85 6385 00006385 d5a2 d5a2 d5a2 d5a2 d5a2 d5a2 d5a2
+7944 d5a3 d5a3 d5a3 * * 3565 8ea2b5e5,8ea2b5e5v 6381 e68e81 6381 00006381 d5a3 d5a3 d5a3 d5a3 d5a3 d5a3 d5a3
+7945 d5a4 d5a4 d5a4 * * 3566 8ea2b5e6,8ea2b5e6v 6391 e68e91 6391 00006391 d5a4 d5a4 d5a4 d5a4 d5a4 d5a4 d5a4
+7946 d5a5 d5a5 d5a5 * * 3567 8ea2b5e7,8ea2b5e7v 638d e68e8d 638d 0000638d d5a5 d5a5 d5a5 d5a5 d5a5 d5a5 d5a5
+7947 d5a6 d5a6 d5a6 * * 3568 8ea2b5e8,8ea2b5e8v 6370 e68db0 6370 00006370 d5a6 d5a6 d5a6 d5a6 d5a6 d5a6 d5a6
+7948 d5a7 d5a7 d5a7 * * 3569 8ea2b5e9,8ea2b5e9v 6553 e69593 6553 00006553 d5a7 d5a7 d5a7 d5a7 d5a7 d5a7 d5a7
+7949 d5a8 d5a8 d5a8 * * 356a 8ea2b5ea,8ea2b5eav 65cd e6978d 65cd 000065cd d5a8 d5a8 d5a8 d5a8 d5a8 d5a8 d5a8
+7950 d5a9 d5a9 d5a9 * * 356b 8ea2b5eb,8ea2b5ebv 6665 e699a5 6665 00006665 d5a9 d5a9 d5a9 d5a9 d5a9 d5a9 d5a9
+7951 d5aa d5aa d5aa * * 356c 8ea2b5ec,8ea2b5ecv 6661 e699a1 6661 00006661 d5aa d5aa d5aa d5aa d5aa d5aa d5aa
+7952 d5ab d5ab d5ab * * 356d 8ea2b5ed,8ea2b5edv 665b e6999b 665b 0000665b d5ab d5ab d5ab d5ab d5ab d5ab d5ab
+7953 d5ac d5ac d5ac * * 356e 8ea2b5ee,8ea2b5eev 6659 e69999 6659 00006659 d5ac d5ac d5ac d5ac d5ac d5ac d5ac
+7954 d5ad d5ad d5ad * * 356f 8ea2b5ef,8ea2b5efv 665c e6999c 665c 0000665c d5ad d5ad d5ad d5ad d5ad d5ad d5ad
+7955 d5ae d5ae d5ae * * 3570 8ea2b5f0,8ea2b5f0v 6662 e699a2 6662 00006662 d5ae d5ae d5ae d5ae d5ae d5ae d5ae
+7956 d5af d5af d5af * * 3571 8ea2b5f1,8ea2b5f1v 6718 e69c98 6718 00006718 d5af d5af d5af d5af d5af d5af d5af
+7957 d5b0 d5b0 d5b0 * * 3572 8ea2b5f2,8ea2b5f2v 6879 e6a1b9 6879 00006879 d5b0 d5b0 d5b0 d5b0 d5b0 d5b0 d5b0
+7958 d5b1 d5b1 d5b1 * * 3573 8ea2b5f3,8ea2b5f3v 6887 e6a287 6887 00006887 d5b1 d5b1 d5b1 d5b1 d5b1 d5b1 d5b1
+7959 d5b2 d5b2 d5b2 * * 3574 8ea2b5f4,8ea2b5f4v 6890 e6a290 6890 00006890 d5b2 d5b2 d5b2 d5b2 d5b2 d5b2 d5b2
+7960 d5b3 d5b3 d5b3 * * 3575 8ea2b5f5,8ea2b5f5v 689c e6a29c 689c 0000689c d5b3 d5b3 d5b3 d5b3 d5b3 d5b3 d5b3
+7961 d5b4 d5b4 d5b4 * * 3576 8ea2b5f6,8ea2b5f6v 686d e6a1ad 686d 0000686d d5b4 d5b4 d5b4 d5b4 d5b4 d5b4 d5b4
+7962 d5b5 d5b5 d5b5 * * 3577 8ea2b5f7,8ea2b5f7v 686e e6a1ae 686e 0000686e d5b5 d5b5 d5b5 d5b5 d5b5 d5b5 d5b5
+7963 d5b6 d5b6 d5b6 * * 3578 8ea2b5f8,8ea2b5f8v 68ae e6a2ae 68ae 000068ae d5b6 d5b6 d5b6 d5b6 d5b6 d5b6 d5b6
+7964 d5b7 d5b7 d5b7 * * 3579 8ea2b5f9,8ea2b5f9v 68ab e6a2ab 68ab 000068ab d5b7 d5b7 d5b7 d5b7 d5b7 d5b7 d5b7
+7965 d5b8 d5b8 d5b8 * * 357a 8ea2b5fa,8ea2b5fav 6956 e6a596 6956 00006956 d5b8 d5b8 d5b8 d5b8 d5b8 d5b8 d5b8
+7966 d5b9 d5b9 d5b9 * * 357b 8ea2b5fb,8ea2b5fbv 686f e6a1af 686f 0000686f d5b9 d5b9 d5b9 d5b9 d5b9 d5b9 d5b9
+7967 d5ba d5ba d5ba * * 357c 8ea2b5fc,8ea2b5fcv 68a3 e6a2a3 68a3 000068a3 d5ba d5ba d5ba d5ba d5ba d5ba d5ba
+7968 d5bb d5bb d5bb * * 357d 8ea2b5fd,8ea2b5fdv 68ac e6a2ac 68ac 000068ac d5bb d5bb d5bb d5bb d5bb d5bb d5bb
+7969 d5bc d5bc d5bc * * 357e 8ea2b5fe,8ea2b5fev 68a9 e6a2a9 68a9 000068a9 d5bc d5bc d5bc d5bc d5bc d5bc d5bc
+7970 d5bd d5bd d5bd * * 3621 8ea2b6a1,8ea2b6a1v 6875 e6a1b5 6875 00006875 d5bd d5bd d5bd d5bd d5bd d5bd d5bd
+7971 d5be d5be d5be * * 3622 8ea2b6a2,8ea2b6a2v 6874 e6a1b4 6874 00006874 d5be d5be d5be d5be d5be d5be d5be
+7972 d5bf d5bf d5bf * * 3623 8ea2b6a3,8ea2b6a3v 68b2 e6a2b2 68b2 000068b2 d5bf d5bf d5bf d5bf d5bf d5bf d5bf
+7973 d5c0 d5c0 d5c0 * * 3624 8ea2b6a4,8ea2b6a4v 688f e6a28f 688f 0000688f d5c0 d5c0 d5c0 d5c0 d5c0 d5c0 d5c0
+7974 d5c1 d5c1 d5c1 * * 3625 8ea2b6a5,8ea2b6a5v 6877 e6a1b7 6877 00006877 d5c1 d5c1 d5c1 d5c1 d5c1 d5c1 d5c1
+7975 d5c2 d5c2 d5c2 * * 3626 8ea2b6a6,8ea2b6a6v 6892 e6a292 6892 00006892 d5c2 d5c2 d5c2 d5c2 d5c2 d5c2 d5c2
+7976 d5c3 d5c3 d5c3 * * 3627 8ea2b6a7,8ea2b6a7v 687c e6a1bc 687c 0000687c d5c3 d5c3 d5c3 d5c3 d5c3 d5c3 d5c3
+7977 d5c4 d5c4 d5c4 * * 3628 8ea2b6a8,8ea2b6a8v 686b e6a1ab 686b 0000686b d5c4 d5c4 d5c4 d5c4 d5c4 d5c4 d5c4
+7978 d5c5 d5c5 d5c5 * * 3629 8ea2b6a9,8ea2b6a9v 6872 e6a1b2 6872 00006872 d5c5 d5c5 d5c5 d5c5 d5c5 d5c5 d5c5
+7979 d5c6 d5c6 d5c6 * * 362a 8ea2b6aa,8ea2b6aav 68aa e6a2aa 68aa 000068aa d5c6 d5c6 d5c6 d5c6 d5c6 d5c6 d5c6
+7980 d5c7 d5c7 d5c7 * * 362b 8ea2b6ab,8ea2b6abv 6880 e6a280 6880 00006880 d5c7 d5c7 d5c7 d5c7 d5c7 d5c7 d5c7
+7981 d5c8 d5c8 d5c8 * * 362c 8ea2b6ac,8ea2b6acv 6871 e6a1b1 6871 00006871 d5c8 d5c8 d5c8 d5c8 d5c8 d5c8 d5c8
+7982 d5c9 d5c9 d5c9 * * 362d 8ea2b6ad,8ea2b6adv 687e e6a1be 687e 0000687e d5c9 d5c9 d5c9 d5c9 d5c9 d5c9 d5c9
+7983 d5ca d5ca d5ca * * 362e 8ea2b6ae,8ea2b6aev 689b e6a29b 689b 0000689b d5ca d5ca d5ca d5ca d5ca d5ca d5ca
+7984 d5cb d5cb d5cb * * 362f 8ea2b6af,8ea2b6afv 6896 e6a296 6896 00006896 d5cb d5cb d5cb d5cb d5cb d5cb d5cb
+7985 d5cc d5cc d5cc * * 3630 8ea2b6b0,8ea2b6b0v 688b e6a28b 688b 0000688b d5cc d5cc d5cc d5cc d5cc d5cc d5cc
+7986 d5cd d5cd d5cd * * 3631 8ea2b6b1,8ea2b6b1v 68a0 e6a2a0 68a0 000068a0 d5cd d5cd d5cd d5cd d5cd d5cd d5cd
+7987 d5ce d5ce d5ce * * 3632 8ea2b6b2,8ea2b6b2v 6889 e6a289 6889 00006889 d5ce d5ce d5ce d5ce d5ce d5ce d5ce
+7988 d5cf d5cf d5cf * * 3633 8ea2b6b3,8ea2b6b3v 68a4 e6a2a4 68a4 000068a4 d5cf d5cf d5cf d5cf d5cf d5cf d5cf
+7989 d5d0 d5d0 d5d0 * * 3634 8ea2b6b4,8ea2b6b4v 6878 e6a1b8 6878 00006878 d5d0 d5d0 d5d0 d5d0 d5d0 d5d0 d5d0
+7990 d5d1 d5d1 d5d1 * * 3635 8ea2b6b5,8ea2b6b5v 687b e6a1bb 687b 0000687b d5d1 d5d1 d5d1 d5d1 d5d1 d5d1 d5d1
+7991 d5d2 d5d2 d5d2 * * 3636 8ea2b6b6,8ea2b6b6v 6891 e6a291 6891 00006891 d5d2 d5d2 d5d2 d5d2 d5d2 d5d2 d5d2
+7992 d5d3 d5d3 d5d3 * * 3637 8ea2b6b7,8ea2b6b7v 688c e6a28c 688c 0000688c d5d3 d5d3 d5d3 d5d3 d5d3 d5d3 d5d3
+7993 d5d4 d5d4 d5d4 * * 3638 8ea2b6b8,8ea2b6b8v 688a e6a28a 688a 0000688a d5d4 d5d4 d5d4 d5d4 d5d4 d5d4 d5d4
+7994 d5d5 d5d5 d5d5 * * 3639 8ea2b6b9,8ea2b6b9v 687d e6a1bd 687d 0000687d d5d5 d5d5 d5d5 d5d5 d5d5 d5d5 d5d5
+7995 d5d6 d5d6 d5d6 * * 363a 8ea2b6ba,8ea2b6bav 6b36 e6acb6 6b36 00006b36 d5d6 d5d6 d5d6 d5d6 d5d6 d5d6 d5d6
+7996 d5d7 d5d7 d5d7 * * 363b 8ea2b6bb,8ea2b6bbv 6b33 e6acb3 6b33 00006b33 d5d7 d5d7 d5d7 d5d7 d5d7 d5d7 d5d7
+7997 d5d8 d5d8 d5d8 * * 363c 8ea2b6bc,8ea2b6bcv 6b37 e6acb7 6b37 00006b37 d5d8 d5d8 d5d8 d5d8 d5d8 d5d8 d5d8
+7998 d5d9 d5d9 d5d9 * * 363d 8ea2b6bd,8ea2b6bdv 6b38 e6acb8 6b38 00006b38 d5d9 d5d9 d5d9 d5d9 d5d9 d5d9 d5d9
+7999 d5da d5da d5da * * 363e 8ea2b6be,8ea2b6bev 6b91 e6ae91 6b91 00006b91 d5da d5da d5da d5da d5da d5da d5da
+8000 d5db d5db d5db * * 363f 8ea2b6bf,8ea2b6bfv 6b8f e6ae8f 6b8f 00006b8f d5db d5db d5db d5db d5db d5db d5db
+8001 d5dc d5dc d5dc * * 3640 8ea2b6c0,8ea2b6c0v 6b8d e6ae8d 6b8d 00006b8d d5dc d5dc d5dc d5dc d5dc d5dc d5dc
+8002 d5dd d5dd d5dd * * 3641 8ea2b6c1,8ea2b6c1v 6b8e e6ae8e 6b8e 00006b8e d5dd d5dd d5dd d5dd d5dd d5dd d5dd
+8003 d5de d5de d5de * * 3642 8ea2b6c2,8ea2b6c2v 6b8c e6ae8c 6b8c 00006b8c d5de d5de d5de d5de d5de d5de d5de
+8004 d5df d5df d5df * * 3643 8ea2b6c3,8ea2b6c3v 6c2a e6b0aa 6c2a 00006c2a d5df d5df d5df d5df d5df d5df d5df
+8005 d5e0 d5e0 d5e0 * * 3644 8ea2b6c4,8ea2b6c4v 6dc0 e6b780 6dc0 00006dc0 d5e0 d5e0 d5e0 d5e0 d5e0 d5e0 d5e0
+8006 d5e1 d5e1 d5e1 * * 3645 8ea2b6c5,8ea2b6c5v 6dab e6b6ab 6dab 00006dab d5e1 d5e1 d5e1 d5e1 d5e1 d5e1 d5e1
+8007 d5e2 d5e2 d5e2 * * 3646 8ea2b6c6,8ea2b6c6v 6db4 e6b6b4 6db4 00006db4 d5e2 d5e2 d5e2 d5e2 d5e2 d5e2 d5e2
+8008 d5e3 d5e3 d5e3 * * 3647 8ea2b6c7,8ea2b6c7v 6db3 e6b6b3 6db3 00006db3 d5e3 d5e3 d5e3 d5e3 d5e3 d5e3 d5e3
+8009 d5e4 d5e4 d5e4 * * 3648 8ea2b6c8,8ea2b6c8v 6e74 e6b9b4 6e74 00006e74 d5e4 d5e4 d5e4 d5e4 d5e4 d5e4 d5e4
+8010 d5e5 d5e5 d5e5 * * 3649 8ea2b6c9,8ea2b6c9v 6dac e6b6ac 6dac 00006dac d5e5 d5e5 d5e5 d5e5 d5e5 d5e5 d5e5
+8011 d5e6 d5e6 d5e6 * * 364a 8ea2b6ca,8ea2b6cav 6de9 e6b7a9 6de9 00006de9 d5e6 d5e6 d5e6 d5e6 d5e6 d5e6 d5e6
+8012 d5e7 d5e7 d5e7 * * 364b 8ea2b6cb,8ea2b6cbv 6de2 e6b7a2 6de2 00006de2 d5e7 d5e7 d5e7 d5e7 d5e7 d5e7 d5e7
+8013 d5e8 d5e8 d5e8 * * 364c 8ea2b6cc,8ea2b6ccv 6db7 e6b6b7 6db7 00006db7 d5e8 d5e8 d5e8 d5e8 d5e8 d5e8 d5e8
+8014 d5e9 d5e9 d5e9 * * 364d 8ea2b6cd,8ea2b6cdv 6df6 e6b7b6 6df6 00006df6 d5e9 d5e9 d5e9 d5e9 d5e9 d5e9 d5e9
+8015 d5ea d5ea d5ea * * 364e 8ea2b6ce,8ea2b6cev 6dd4 e6b794 6dd4 00006dd4 d5ea d5ea d5ea d5ea d5ea d5ea d5ea
+8016 d5eb d5eb d5eb * * 364f 8ea2b6cf,8ea2b6cfv 6e00 e6b880 6e00 00006e00 d5eb d5eb d5eb d5eb d5eb d5eb d5eb
+8017 d5ec d5ec d5ec * * 3650 8ea2b6d0,8ea2b6d0v 6dc8 e6b788 6dc8 00006dc8 d5ec d5ec d5ec d5ec d5ec d5ec d5ec
+8018 d5ed d5ed d5ed * * 3651 8ea2b6d1,8ea2b6d1v 6de0 e6b7a0 6de0 00006de0 d5ed d5ed d5ed d5ed d5ed d5ed d5ed
+8019 d5ee d5ee d5ee * * 3652 8ea2b6d2,8ea2b6d2v 6ddf e6b79f 6ddf 00006ddf d5ee d5ee d5ee d5ee d5ee d5ee d5ee
+8020 d5ef d5ef d5ef * * 3653 8ea2b6d3,8ea2b6d3v 6dd6 e6b796 6dd6 00006dd6 d5ef d5ef d5ef d5ef d5ef d5ef d5ef
+8021 d5f0 d5f0 d5f0 * * 3654 8ea2b6d4,8ea2b6d4v 6dbe e6b6be 6dbe 00006dbe d5f0 d5f0 d5f0 d5f0 d5f0 d5f0 d5f0
+8022 d5f1 d5f1 d5f1 * * 3655 8ea2b6d5,8ea2b6d5v 6de5 e6b7a5 6de5 00006de5 d5f1 d5f1 d5f1 d5f1 d5f1 d5f1 d5f1
+8023 d5f2 d5f2 d5f2 * * 3656 8ea2b6d6,8ea2b6d6v 6ddc e6b79c 6ddc 00006ddc d5f2 d5f2 d5f2 d5f2 d5f2 d5f2 d5f2
+8024 d5f3 d5f3 d5f3 * * 3657 8ea2b6d7,8ea2b6d7v 6ddd e6b79d 6ddd 00006ddd d5f3 d5f3 d5f3 d5f3 d5f3 d5f3 d5f3
+8025 d5f4 d5f4 d5f4 * * 3658 8ea2b6d8,8ea2b6d8v 6ddb e6b79b 6ddb 00006ddb d5f4 d5f4 d5f4 d5f4 d5f4 d5f4 d5f4
+8026 d5f5 d5f5 d5f5 * * 3659 8ea2b6d9,8ea2b6d9v 6df4 e6b7b4 6df4 00006df4 d5f5 d5f5 d5f5 d5f5 d5f5 d5f5 d5f5
+8027 d5f6 d5f6 d5f6 * * 365a 8ea2b6da,8ea2b6dav 6dca e6b78a 6dca 00006dca d5f6 d5f6 d5f6 d5f6 d5f6 d5f6 d5f6
+8028 d5f7 d5f7 d5f7 * * 365b 8ea2b6db,8ea2b6dbv 6dbd e6b6bd 6dbd 00006dbd d5f7 d5f7 d5f7 d5f7 d5f7 d5f7 d5f7
+8029 d5f8 d5f8 d5f8 * * 365c 8ea2b6dc,8ea2b6dcv 6ded e6b7ad 6ded 00006ded d5f8 d5f8 d5f8 d5f8 d5f8 d5f8 d5f8
+8030 d5f9 d5f9 d5f9 * * 365d 8ea2b6dd,8ea2b6ddv 6df0 e6b7b0 6df0 00006df0 d5f9 d5f9 d5f9 d5f9 d5f9 d5f9 d5f9
+8031 d5fa d5fa d5fa * * 365e 8ea2b6de,8ea2b6dev 6dba e6b6ba 6dba 00006dba d5fa d5fa d5fa d5fa d5fa d5fa d5fa
+8032 d5fb d5fb d5fb * * 365f 8ea2b6df,8ea2b6dfv 6dd5 e6b795 6dd5 00006dd5 d5fb d5fb d5fb d5fb d5fb d5fb d5fb
+8033 d5fc d5fc d5fc * * 3660 8ea2b6e0,8ea2b6e0v 6dc2 e6b782 6dc2 00006dc2 d5fc d5fc d5fc d5fc d5fc d5fc d5fc
+8034 d5fd d5fd d5fd * * 3661 8ea2b6e1,8ea2b6e1v 6dcf e6b78f 6dcf 00006dcf d5fd d5fd d5fd d5fd d5fd d5fd d5fd
+8035 d5fe d5fe d5fe * * 3662 8ea2b6e2,8ea2b6e2v 6dc9 e6b789 6dc9 00006dc9 d5fe d5fe d5fe d5fe d5fe d5fe d5fe
+8036 d640 d640 d640 * * 3663 8ea2b6e3,8ea2b6e3v 6dd0 e6b790 6dd0 00006dd0 d640 d640 d640 d640 d640 d640 d640
+8037 d641 d641 d641 * * 3664 8ea2b6e4,8ea2b6e4v 6df2 e6b7b2 6df2 00006df2 d641 d641 d641 d641 d641 d641 d641
+8038 d642 d642 d642 * * 3665 8ea2b6e5,8ea2b6e5v 6dd3 e6b793 6dd3 00006dd3 d642 d642 d642 d642 d642 d642 d642
+8039 d643 d643 d643 * * 3666 8ea2b6e6,8ea2b6e6v 6dfd e6b7bd 6dfd 00006dfd d643 d643 d643 d643 d643 d643 d643
+8040 d644 d644 d644 * * 3667 8ea2b6e7,8ea2b6e7v 6dd7 e6b797 6dd7 00006dd7 d644 d644 d644 d644 d644 d644 d644
+8041 d645 d645 d645 * * 3668 8ea2b6e8,8ea2b6e8v 6dcd e6b78d 6dcd 00006dcd d645 d645 d645 d645 d645 d645 d645
+8042 d646 d646 d646 * * 3669 8ea2b6e9,8ea2b6e9v 6de3 e6b7a3 6de3 00006de3 d646 d646 d646 d646 d646 d646 d646
+8043 d647 d647 d647 * * 366a 8ea2b6ea,8ea2b6eav 6dbb e6b6bb 6dbb 00006dbb d647 d647 d647 d647 d647 d647 d647
+8044 d648 d648 d648 * * 366b 8ea2b6eb,8ea2b6ebv 70fa e783ba 70fa 000070fa d648 d648 d648 d648 d648 d648 d648
+8045 d649 d649 d649 * * 366c 8ea2b6ec,8ea2b6ecv 710d e7848d 710d 0000710d d649 d649 d649 d649 d649 d649 d649
+8046 d64a d64a d64a * * 366d 8ea2b6ed,8ea2b6edv 70f7 e783b7 70f7 000070f7 d64a d64a d64a d64a d64a d64a d64a
+8047 d64b d64b d64b * * 366e 8ea2b6ee,8ea2b6eev 7117 e78497 7117 00007117 d64b d64b d64b d64b d64b d64b d64b
+8048 d64c d64c d64c * * 366f 8ea2b6ef,8ea2b6efv 70f4 e783b4 70f4 000070f4 d64c d64c d64c d64c d64c d64c d64c
+8049 d64d d64d d64d * * 3670 8ea2b6f0,8ea2b6f0v 710c e7848c 710c 0000710c d64d d64d d64d d64d d64d d64d d64d
+8050 d64e d64e d64e * * 3671 8ea2b6f1,8ea2b6f1v 70f0 e783b0 70f0 000070f0 d64e d64e d64e d64e d64e d64e d64e
+8051 d64f d64f d64f * * 3672 8ea2b6f2,8ea2b6f2v 7104 e78484 7104 00007104 d64f d64f d64f d64f d64f d64f d64f
+8052 d650 d650 d650 * * 3673 8ea2b6f3,8ea2b6f3v 70f3 e783b3 70f3 000070f3 d650 d650 d650 d650 d650 d650 d650
+8053 d651 d651 d651 * * 3674 8ea2b6f4,8ea2b6f4v 7110 e78490 7110 00007110 d651 d651 d651 d651 d651 d651 d651
+8054 d652 d652 d652 * * 3675 8ea2b6f5,8ea2b6f5v 70fc e783bc 70fc 000070fc d652 d652 d652 d652 d652 d652 d652
+8055 d653 d653 d653 * * 3676 8ea2b6f6,8ea2b6f6v 70ff e783bf 70ff 000070ff d653 d653 d653 d653 d653 d653 d653
+8056 d654 d654 d654 * * 3677 8ea2b6f7,8ea2b6f7v 7106 e78486 7106 00007106 d654 d654 d654 d654 d654 d654 d654
+8057 d655 d655 d655 * * 3678 8ea2b6f8,8ea2b6f8v 7113 e78493 7113 00007113 d655 d655 d655 d655 d655 d655 d655
+8058 d656 d656 d656 * * 3679 8ea2b6f9,8ea2b6f9v 7100 e78480 7100 00007100 d656 d656 d656 d656 d656 d656 d656
+8059 d657 d657 d657 * * 367a 8ea2b6fa,8ea2b6fav 70f8 e783b8 70f8 000070f8 d657 d657 d657 d657 d657 d657 d657
+8060 d658 d658 d658 * * 367b 8ea2b6fb,8ea2b6fbv 70f6 e783b6 70f6 000070f6 d658 d658 d658 d658 d658 d658 d658
+8061 d659 d659 d659 * * 367c 8ea2b6fc,8ea2b6fcv 710b e7848b 710b 0000710b d659 d659 d659 d659 d659 d659 d659
+8062 d65a d65a d65a * * 367d 8ea2b6fd,8ea2b6fdv 7102 e78482 7102 00007102 d65a d65a d65a d65a d65a d65a d65a
+8063 d65b d65b d65b * * 367e 8ea2b6fe,8ea2b6fev 710e e7848e 710e 0000710e d65b d65b d65b d65b d65b d65b d65b
+8064 d65c d65c d65c * * 3721 8ea2b7a1,8ea2b7a1v 727e e789be 727e 0000727e d65c d65c d65c d65c d65c d65c d65c
+8065 d65d d65d d65d * * 3722 8ea2b7a2,8ea2b7a2v 727b e789bb 727b 0000727b d65d d65d d65d d65d d65d d65d d65d
+8066 d65e d65e d65e * * 3723 8ea2b7a3,8ea2b7a3v 727c e789bc 727c 0000727c d65e d65e d65e d65e d65e d65e d65e
+8067 d65f d65f d65f * * 3724 8ea2b7a4,8ea2b7a4v 727f e789bf 727f 0000727f d65f d65f d65f d65f d65f d65f d65f
+8068 d660 d660 d660 * * 3725 8ea2b7a5,8ea2b7a5v 731d e78c9d 731d 0000731d d660 d660 d660 d660 d660 d660 d660
+8069 d661 d661 d661 * * 3726 8ea2b7a6,8ea2b7a6v 7317 e78c97 7317 00007317 d661 d661 d661 d661 d661 d661 d661
+8070 d662 d662 d662 * * 3727 8ea2b7a7,8ea2b7a7v 7307 e78c87 7307 00007307 d662 d662 d662 d662 d662 d662 d662
+8071 d663 d663 d663 * * 3728 8ea2b7a8,8ea2b7a8v 7311 e78c91 7311 00007311 d663 d663 d663 d663 d663 d663 d663
+8072 d664 d664 d664 * * 3729 8ea2b7a9,8ea2b7a9v 7318 e78c98 7318 00007318 d664 d664 d664 d664 d664 d664 d664
+8073 d665 d665 d665 * * 372a 8ea2b7aa,8ea2b7aav 730a e78c8a 730a 0000730a d665 d665 d665 d665 d665 d665 d665
+8074 d666 d666 d666 * * 372b 8ea2b7ab,8ea2b7abv 7308 e78c88 7308 00007308 d666 d666 d666 d666 d666 d666 d666
+8075 d667 d667 d667 * * 372c 8ea2b7ac,8ea2b7acv 72ff e78bbf 72ff 000072ff d667 d667 d667 d667 d667 d667 d667
+8076 d668 d668 d668 * * 372d 8ea2b7ad,8ea2b7adv 730f e78c8f 730f 0000730f d668 d668 d668 d668 d668 d668 d668
+8077 d669 d669 d669 * * 372e 8ea2b7ae,8ea2b7aev 731e e78c9e 731e 0000731e d669 d669 d669 d669 d669 d669 d669
+8078 d66a d66a d66a * * 372f 8ea2b7af,8ea2b7afv 7388 e78e88 7388 00007388 d66a d66a d66a d66a d66a d66a d66a
+8079 d66b d66b d66b * * 3730 8ea2b7b0,8ea2b7b0v 73f6 e78fb6 73f6 000073f6 d66b d66b d66b d66b d66b d66b d66b
+8080 d66c d66c d66c * * 3731 8ea2b7b1,8ea2b7b1v 73f8 e78fb8 73f8 000073f8 d66c d66c d66c d66c d66c d66c d66c
+8081 d66d d66d d66d * * 3732 8ea2b7b2,8ea2b7b2v 73f5 e78fb5 73f5 000073f5 d66d d66d d66d d66d d66d d66d d66d
+8082 d66e d66e d66e * * 3733 8ea2b7b3,8ea2b7b3v 7404 e79084 7404 00007404 d66e d66e d66e d66e d66e d66e d66e
+8083 d66f d66f d66f * * 3734 8ea2b7b4,8ea2b7b4v 7401 e79081 7401 00007401 d66f d66f d66f d66f d66f d66f d66f
+8084 d670 d670 d670 * * 3735 8ea2b7b5,8ea2b7b5v 73fd e78fbd 73fd 000073fd d670 d670,fcfa 91db,d670 d670 d670 d670 d670
+8085 d671 d671 d671 * * 3736 8ea2b7b6,8ea2b7b6v 7407 e79087 7407 00007407 d671 d671 d671 d671 d671 d671 d671
+8086 d672 d672 d672 * * 3737 8ea2b7b7,8ea2b7b7v 7400 e79080 7400 00007400 d672 d672 d672 d672 d672 d672 d672
+8087 d673 d673 d673 * * 3738 8ea2b7b8,8ea2b7b8v 73fa e78fba 73fa 000073fa d673 d673 d673 d673 d673 d673 d673
+8088 d674 d674 d674 * * 3739 8ea2b7b9,8ea2b7b9v 73fc e78fbc 73fc 000073fc d674 d674 d674 d674 d674 d674 d674
+8089 d675 d675 d675 * * 373a 8ea2b7ba,8ea2b7bav 73ff e78fbf 73ff 000073ff d675 d675 d675 d675 d675 d675 d675
+8090 d676 d676 d676 * * 373b 8ea2b7bb,8ea2b7bbv 740c e7908c 740c 0000740c d676 d676 d676 d676 d676 d676 d676
+8091 d677 d677 d677 * * 373c 8ea2b7bc,8ea2b7bcv 740b e7908b 740b 0000740b d677 d677 d677 d677 d677 d677 d677
+8092 d678 d678 d678 * * 373d 8ea2b7bd,8ea2b7bdv 73f4 e78fb4 73f4 000073f4 d678 d678 d678 d678 d678 d678 d678
+8093 d679 d679 d679 * * 373e 8ea2b7be,8ea2b7bev 7408 e79088 7408 00007408 d679 d679 d679 d679 d679 d679 d679
+8094 d67a d67a d67a * * 373f 8ea2b7bf,8ea2b7bfv 7564 e795a4 7564 00007564 d67a d67a d67a d67a d67a d67a d67a
+8095 d67b d67b d67b * * 3740 8ea2b7c0,8ea2b7c0v 7563 e795a3 7563 00007563 d67b d67b d67b d67b d67b d67b d67b
+8096 d67c d67c d67c * * 3741 8ea2b7c1,8ea2b7c1v 75ce e7978e 75ce 000075ce d67c d67c d67c d67c d67c d67c d67c
+8097 d67d d67d d67d * * 3742 8ea2b7c2,8ea2b7c2v 75d2 e79792 75d2 000075d2 d67d d67d d67d d67d d67d d67d d67d
+8098 d67e d67e d67e * * 3743 8ea2b7c3,8ea2b7c3v 75cf e7978f 75cf 000075cf d67e d67e d67e d67e d67e d67e d67e
+8099 d6a1 d6a1 d6a1 * * 3744 8ea2b7c4,8ea2b7c4v 75cb e7978b 75cb 000075cb d6a1 d6a1 d6a1 d6a1 d6a1 d6a1 d6a1
+8100 d6a2 d6a2 d6a2 * * 3745 8ea2b7c5,8ea2b7c5v 75cc e7978c 75cc 000075cc d6a2 d6a2 d6a2 d6a2 d6a2 d6a2 d6a2
+8101 d6a3 d6a3 d6a3 * * 3746 8ea2b7c6,8ea2b7c6v 75d1 e79791 75d1 000075d1 d6a3 d6a3 d6a3 d6a3 d6a3 d6a3 d6a3
+8102 d6a4 d6a4 d6a4 * * 3747 8ea2b7c7,8ea2b7c7v 75d0 e79790 75d0 000075d0 d6a4 d6a4 d6a4 d6a4 d6a4 d6a4 d6a4
+8103 d6a5 d6a5 d6a5 * * 3748 8ea2b7c8,8ea2b7c8v 768f e79a8f 768f 0000768f d6a5 d6a5 d6a5 d6a5 d6a5 d6a5 d6a5
+8104 d6a6 d6a6 d6a6 * * 3749 8ea2b7c9,8ea2b7c9v 7689 e79a89 7689 00007689 d6a6 d6a6 d6a6 d6a6 d6a6 d6a6 d6a6
+8105 d6a7 d6a7 d6a7 * * 374a 8ea2b7ca,8ea2b7cav 76d3 e79b93 76d3 000076d3 d6a7 d6a7 d6a7 d6a7 d6a7 d6a7 d6a7
+8106 d6a8 d6a8 d6a8 * * 374b 8ea2b7cb,8ea2b7cbv 7739 e79cb9 7739 00007739 d6a8 d6a8 d6a8 d6a8 d6a8 d6a8 d6a8
+8107 d6a9 d6a9 d6a9 * * 374c 8ea2b7cc,8ea2b7ccv 772f e79caf 772f 0000772f d6a9 d6a9 d6a9 d6a9 d6a9 d6a9 d6a9
+8108 d6aa d6aa d6aa * * 374d 8ea2b7cd,8ea2b7cdv 772d e79cad 772d 0000772d d6aa d6aa d6aa d6aa d6aa d6aa d6aa
+8109 d6ab d6ab d6ab * * 374e 8ea2b7ce,8ea2b7cev 7731 e79cb1 7731 00007731 d6ab d6ab d6ab d6ab d6ab d6ab d6ab
+8110 d6ac d6ac d6ac * * 374f 8ea2b7cf,8ea2b7cfv 7732 e79cb2 7732 00007732 d6ac d6ac d6ac d6ac d6ac d6ac d6ac
+8111 d6ad d6ad d6ad * * 3750 8ea2b7d0,8ea2b7d0v 7734 e79cb4 7734 00007734 d6ad d6ad d6ad d6ad d6ad d6ad d6ad
+8112 d6ae d6ae d6ae * * 3751 8ea2b7d1,8ea2b7d1v 7733 e79cb3 7733 00007733 d6ae d6ae d6ae d6ae d6ae d6ae d6ae
+8113 d6af d6af d6af * * 3752 8ea2b7d2,8ea2b7d2v 773d e79cbd 773d 0000773d d6af d6af d6af d6af d6af d6af d6af
+8114 d6b0 d6b0 d6b0 * * 3753 8ea2b7d3,8ea2b7d3v 7725 e79ca5 7725 00007725 d6b0 d6b0 d6b0 d6b0 d6b0 d6b0 d6b0
+8115 d6b1 d6b1 d6b1 * * 3754 8ea2b7d4,8ea2b7d4v 773b e79cbb 773b 0000773b d6b1 d6b1 d6b1 d6b1 d6b1 d6b1 d6b1
+8116 d6b2 d6b2 d6b2 * * 3755 8ea2b7d5,8ea2b7d5v 7735 e79cb5 7735 00007735 d6b2 d6b2 d6b2 d6b2 d6b2 d6b2 d6b2
+8117 d6b3 d6b3 d6b3 * * 3756 8ea2b7d6,8ea2b7d6v 7848 e7a188 7848 00007848 d6b3 d6b3 d6b3 d6b3 d6b3 d6b3 d6b3
+8118 d6b4 d6b4 d6b4 * * 3757 8ea2b7d7,8ea2b7d7v 7852 e7a192 7852 00007852 d6b4 d6b4 d6b4 d6b4 d6b4 d6b4 d6b4
+8119 d6b5 d6b5 d6b5 * * 3758 8ea2b7d8,8ea2b7d8v 7849 e7a189 7849 00007849 d6b5 d6b5 d6b5 d6b5 d6b5 d6b5 d6b5
+8120 d6b6 d6b6 d6b6 * * 3759 8ea2b7d9,8ea2b7d9v 784d e7a18d 784d 0000784d d6b6 d6b6 d6b6 d6b6 d6b6 d6b6 d6b6
+8121 d6b7 d6b7 d6b7 * * 375a 8ea2b7da,8ea2b7dav 784a e7a18a 784a 0000784a d6b7 d6b7 d6b7 d6b7 d6b7 d6b7 d6b7
+8122 d6b8 d6b8 d6b8 * * 375b 8ea2b7db,8ea2b7dbv 784c e7a18c 784c 0000784c d6b8 d6b8 d6b8 d6b8 d6b8 d6b8 d6b8
+8123 d6b9 d6b9 d6b9 * * 375c 8ea2b7dc,8ea2b7dcv 7826 e7a0a6 7826 00007826 d6b9 d6b9 d6b9 d6b9 d6b9 d6b9 d6b9
+8124 d6ba d6ba d6ba * * 375d 8ea2b7dd,8ea2b7ddv 7845 e7a185 7845 00007845 d6ba d6ba d6ba d6ba d6ba d6ba d6ba
+8125 d6bb d6bb d6bb * * 375e 8ea2b7de,8ea2b7dev 7850 e7a190 7850 00007850 d6bb d6bb d6bb d6bb d6bb d6bb d6bb
+8126 d6bc d6bc d6bc * * 375f 8ea2b7df,8ea2b7dfv 7964 e7a5a4 7964 00007964 d6bc d6bc d6bc d6bc d6bc d6bc d6bc
+8127 d6bd d6bd d6bd * * 3760 8ea2b7e0,8ea2b7e0v 7967 e7a5a7 7967 00007967 d6bd d6bd d6bd d6bd d6bd d6bd d6bd
+8128 d6be d6be d6be * * 3761 8ea2b7e1,8ea2b7e1v 7969 e7a5a9 7969 00007969 d6be d6be d6be d6be d6be d6be d6be
+8129 d6bf d6bf d6bf * * 3762 8ea2b7e2,8ea2b7e2v 796a e7a5aa 796a 0000796a d6bf d6bf d6bf d6bf d6bf d6bf d6bf
+8130 d6c0 d6c0 d6c0 * * 3763 8ea2b7e3,8ea2b7e3v 7963 e7a5a3 7963 00007963 d6c0 d6c0 d6c0 d6c0 d6c0 d6c0 d6c0
+8131 d6c1 d6c1 d6c1 * * 3764 8ea2b7e4,8ea2b7e4v 796b e7a5ab 796b 0000796b d6c1 d6c1 d6c1 d6c1 d6c1 d6c1 d6c1
+8132 d6c2 d6c2 d6c2 * * 3765 8ea2b7e5,8ea2b7e5v 7961 e7a5a1 7961 00007961 d6c2 d6c2 d6c2 d6c2 d6c2 d6c2 d6c2
+8133 d6c3 d6c3 d6c3 * * 3766 8ea2b7e6,8ea2b7e6v 79bb e7a6bb 79bb 000079bb d6c3 d6c3 d6c3 d6c3 d6c3 d6c3 d6c3
+8134 d6c4 d6c4 d6c4 * * 3767 8ea2b7e7,8ea2b7e7v 79fa e7a7ba 79fa 000079fa d6c4 d6c4 d6c4 d6c4 d6c4 d6c4 d6c4
+8135 d6c5 d6c5 d6c5 * * 3768 8ea2b7e8,8ea2b7e8v 79f8 e7a7b8 79f8 000079f8 d6c5 d6c5 d6c5 d6c5 d6c5 d6c5 d6c5
+8136 d6c6 d6c6 d6c6 * * 3769 8ea2b7e9,8ea2b7e9v 79f6 e7a7b6 79f6 000079f6 d6c6 d6c6 d6c6 d6c6 d6c6 d6c6 d6c6
+8137 d6c7 d6c7 d6c7 * * 376a 8ea2b7ea,8ea2b7eav 79f7 e7a7b7 79f7 000079f7 d6c7 d6c7 d6c7 d6c7 d6c7 d6c7 d6c7
+8138 d6c8 d6c8 d6c8 * * 376b 8ea2b7eb,8ea2b7ebv 7a8f e7aa8f 7a8f 00007a8f d6c8 d6c8 d6c8 d6c8 d6c8 d6c8 d6c8
+8139 d6c9 d6c9 d6c9 * * 376c 8ea2b7ec,8ea2b7ecv 7a94 e7aa94 7a94 00007a94 d6c9 d6c9 d6c9 d6c9 d6c9 d6c9 d6c9
+8140 d6ca d6ca d6ca * * 376d 8ea2b7ed,8ea2b7edv 7a90 e7aa90 7a90 00007a90 d6ca d6ca d6ca d6ca d6ca d6ca d6ca
+8141 d6cb d6cb d6cb * * 376e 8ea2b7ee,8ea2b7eev 7b35 e7acb5 7b35 00007b35 d6cb d6cb d6cb d6cb d6cb d6cb d6cb
+8142 dadf dadf dadf * * 376f 8ea2b7ef,8ea2b7efv 7b3b e7acbb 7b3b 00007b3b dadf dadf dadf dadf dadf dadf dadf
+8143 d6cd d6cd d6cd * * 3770 8ea2b7f0,8ea2b7f0v 7b34 e7acb4 7b34 00007b34 d6cd d6cd d6cd d6cd d6cd d6cd d6cd
+8144 d6ce d6ce d6ce * * 3771 8ea2b7f1,8ea2b7f1v 7b25 e7aca5 7b25 00007b25 d6ce d6ce d6ce d6ce d6ce d6ce d6ce
+8145 d6cf d6cf d6cf * * 3772 8ea2b7f2,8ea2b7f2v 7b30 e7acb0 7b30 00007b30 d6cf d6cf d6cf d6cf d6cf d6cf d6cf
+8146 d6d0 d6d0 d6d0 * * 3773 8ea2b7f3,8ea2b7f3v 7b22 e7aca2 7b22 00007b22 d6d0 d6d0 d6d0 d6d0 d6d0 d6d0 d6d0
+8147 d6d1 d6d1 d6d1 * * 3774 8ea2b7f4,8ea2b7f4v 7b24 e7aca4 7b24 00007b24 d6d1 d6d1 d6d1 d6d1 d6d1 d6d1 d6d1
+8148 d6d2 d6d2 d6d2 * * 3775 8ea2b7f5,8ea2b7f5v 7b33 e7acb3 7b33 00007b33 d6d2 d6d2 d6d2 d6d2 d6d2 d6d2 d6d2
+8149 d6d3 d6d3 d6d3 * * 3776 8ea2b7f6,8ea2b7f6v 7b18 e7ac98 7b18 00007b18 d6d3 d6d3 d6d3 d6d3 d6d3 d6d3 d6d3
+8150 d6d4 d6d4 d6d4 * * 3777 8ea2b7f7,8ea2b7f7v 7b2a e7acaa 7b2a 00007b2a d6d4 d6d4 d6d4 d6d4 d6d4 d6d4 d6d4
+8151 d6d5 d6d5 d6d5 * * 3778 8ea2b7f8,8ea2b7f8v 7b1d e7ac9d 7b1d 00007b1d d6d5 d6d5 d6d5 d6d5 d6d5 d6d5 d6d5
+8152 d6d6 d6d6 d6d6 * * 3779 8ea2b7f9,8ea2b7f9v 7b31 e7acb1 7b31 00007b31 d6d6 d6d6 d6d6 d6d6 d6d6 d6d6 d6d6
+8153 d6d7 d6d7 d6d7 * * 377a 8ea2b7fa,8ea2b7fav 7b2b e7acab 7b2b 00007b2b d6d7 d6d7 d6d7 d6d7 d6d7 d6d7 d6d7
+8154 d6d8 d6d8 d6d8 * * 377b 8ea2b7fb,8ea2b7fbv 7b2d e7acad 7b2d 00007b2d d6d8 d6d8 d6d8 d6d8 d6d8 d6d8 d6d8
+8155 d6d9 d6d9 d6d9 * * 377c 8ea2b7fc,8ea2b7fcv 7b2f e7acaf 7b2f 00007b2f d6d9 d6d9 d6d9 d6d9 d6d9 d6d9 d6d9
+8156 d6da d6da d6da * * 377d 8ea2b7fd,8ea2b7fdv 7b32 e7acb2 7b32 00007b32 d6da d6da d6da d6da d6da d6da d6da
+8157 d6db d6db d6db * * 377e 8ea2b7fe,8ea2b7fev 7b38 e7acb8 7b38 00007b38 d6db d6db d6db d6db d6db d6db d6db
+8158 d6dc d6dc d6dc * * 3821 8ea2b8a1,8ea2b8a1v 7b1a e7ac9a 7b1a 00007b1a d6dc d6dc d6dc d6dc d6dc d6dc d6dc
+8159 d6dd d6dd d6dd * * 3822 8ea2b8a2,8ea2b8a2v 7b23 e7aca3 7b23 00007b23 d6dd d6dd d6dd d6dd d6dd d6dd d6dd
+8160 d6de d6de d6de * * 3823 8ea2b8a3,8ea2b8a3v 7c94 e7b294 7c94 00007c94 d6de d6de d6de d6de d6de d6de d6de
+8161 d6df d6df d6df * * 3824 8ea2b8a4,8ea2b8a4v 7c98 e7b298 7c98 00007c98 d6df d6df d6df d6df d6df d6df d6df
+8162 d6e0 d6e0 d6e0 * * 3825 8ea2b8a5,8ea2b8a5v 7c96 e7b296 7c96 00007c96 d6e0 d6e0 d6e0 d6e0 d6e0 d6e0 d6e0
+8163 d6e1 d6e1 d6e1 * * 3826 8ea2b8a6,8ea2b8a6v 7ca3 e7b2a3 7ca3 00007ca3 d6e1 d6e1 d6e1 d6e1 d6e1 d6e1 d6e1
+8164 d6e2 d6e2 d6e2 * * 3827 8ea2b8a7,8ea2b8a7v 7d35 e7b4b5 7d35 00007d35 d6e2 d6e2 d6e2 d6e2 d6e2 d6e2 d6e2
+8165 d6e3 d6e3 d6e3 * * 3828 8ea2b8a8,8ea2b8a8v 7d3d e7b4bd 7d3d 00007d3d d6e3 d6e3 d6e3 d6e3 d6e3 d6e3 d6e3
+8166 d6e4 d6e4 d6e4 * * 3829 8ea2b8a9,8ea2b8a9v 7d38 e7b4b8 7d38 00007d38 d6e4 d6e4 d6e4 d6e4 d6e4 d6e4 d6e4
+8167 d6e5 d6e5 d6e5 * * 382a 8ea2b8aa,8ea2b8aav 7d36 e7b4b6 7d36 00007d36 d6e5 d6e5 d6e5 d6e5 d6e5 d6e5 d6e5
+8168 d6e6 d6e6 d6e6 * * 382b 8ea2b8ab,8ea2b8abv 7d3a e7b4ba 7d3a 00007d3a d6e6 d6e6 d6e6 d6e6 d6e6 d6e6 d6e6
+8169 d6e7 d6e7 d6e7 * * 382c 8ea2b8ac,8ea2b8acv 7d45 e7b585 7d45 00007d45 d6e7 d6e7 d6e7 d6e7 d6e7 d6e7 d6e7
+8170 d6e8 d6e8 d6e8 * * 382d 8ea2b8ad,8ea2b8adv 7d2c e7b4ac 7d2c 00007d2c d6e8 d6e8 d6e8 d6e8 d6e8 d6e8 d6e8
+8171 d6e9 d6e9 d6e9 * * 382e 8ea2b8ae,8ea2b8aev 7d29 e7b4a9 7d29 00007d29 d6e9 d6e9 d6e9 d6e9 d6e9 d6e9 d6e9
+8172 d6ea d6ea d6ea * * 382f 8ea2b8af,8ea2b8afv 7d41 e7b581 7d41 00007d41 d6ea d6ea d6ea d6ea d6ea d6ea d6ea
+8173 d6eb d6eb d6eb * * 3830 8ea2b8b0,8ea2b8b0v 7d47 e7b587 7d47 00007d47 d6eb d6eb d6eb d6eb d6eb d6eb d6eb
+8174 d6ec d6ec d6ec * * 3831 8ea2b8b1,8ea2b8b1v 7d3e e7b4be 7d3e 00007d3e d6ec d6ec d6ec d6ec d6ec d6ec d6ec
+8175 d6ed d6ed d6ed * * 3832 8ea2b8b2,8ea2b8b2v 7d3f e7b4bf 7d3f 00007d3f d6ed d6ed d6ed d6ed d6ed d6ed d6ed
+8176 d6ee d6ee d6ee * * 3833 8ea2b8b3,8ea2b8b3v 7d4a e7b58a 7d4a 00007d4a d6ee d6ee d6ee d6ee d6ee d6ee d6ee
+8177 d6ef d6ef d6ef * * 3834 8ea2b8b4,8ea2b8b4v 7d3b e7b4bb 7d3b 00007d3b d6ef d6ef d6ef d6ef d6ef d6ef d6ef
+8178 d6f0 d6f0 d6f0 * * 3835 8ea2b8b5,8ea2b8b5v 7d28 e7b4a8 7d28 00007d28 d6f0 d6f0 d6f0 d6f0 d6f0 d6f0 d6f0
+8179 d6f1 d6f1 d6f1 * * 3836 8ea2b8b6,8ea2b8b6v 7f63 e7bda3 7f63 00007f63 d6f1 d6f1 d6f1 d6f1 d6f1 d6f1 d6f1
+8180 d6f2 d6f2 d6f2 * * 3837 8ea2b8b7,8ea2b8b7v 7f95 e7be95 7f95 00007f95 d6f2 d6f2 d6f2 d6f2 d6f2 d6f2 d6f2
+8181 d6f3 d6f3 d6f3 * * 3838 8ea2b8b8,8ea2b8b8v 7f9c e7be9c 7f9c 00007f9c d6f3 d6f3 d6f3 d6f3 d6f3 d6f3 d6f3
+8182 d6f4 d6f4 d6f4 * * 3839 8ea2b8b9,8ea2b8b9v 7f9d e7be9d 7f9d 00007f9d d6f4 d6f4 d6f4 d6f4 d6f4 d6f4 d6f4
+8183 d6f5 d6f5 d6f5 * * 383a 8ea2b8ba,8ea2b8bav 7f9b e7be9b 7f9b 00007f9b d6f5 d6f5 d6f5 d6f5 d6f5 d6f5 d6f5
+8184 d6f6 d6f6 d6f6 * * 383b 8ea2b8bb,8ea2b8bbv 7fca e7bf8a 7fca 00007fca d6f6 d6f6 d6f6 d6f6 d6f6 d6f6 d6f6
+8185 d6f7 d6f7 d6f7 * * 383c 8ea2b8bc,8ea2b8bcv 7fcb e7bf8b 7fcb 00007fcb d6f7 d6f7 d6f7 d6f7 d6f7 d6f7 d6f7
+8186 d6f8 d6f8 d6f8 * * 383d 8ea2b8bd,8ea2b8bdv 7fcd e7bf8d 7fcd 00007fcd d6f8 d6f8 d6f8 d6f8 d6f8 d6f8 d6f8
+8187 d6f9 d6f9 d6f9 * * 383e 8ea2b8be,8ea2b8bev 7fd0 e7bf90 7fd0 00007fd0 d6f9 d6f9 d6f9 d6f9 d6f9 d6f9 d6f9
+8188 d6fa d6fa d6fa * * 383f 8ea2b8bf,8ea2b8bfv 7fd1 e7bf91 7fd1 00007fd1 d6fa d6fa d6fa d6fa d6fa d6fa d6fa
+8189 d6fb d6fb d6fb * * 3840 8ea2b8c0,8ea2b8c0v 7fc7 e7bf87 7fc7 00007fc7 d6fb d6fb d6fb d6fb d6fb d6fb d6fb
+8190 d6fc d6fc d6fc * * 3841 8ea2b8c1,8ea2b8c1v 7fcf e7bf8f 7fcf 00007fcf d6fc d6fc d6fc d6fc d6fc d6fc d6fc
+8191 d6fd d6fd d6fd * * 3842 8ea2b8c2,8ea2b8c2v 7fc9 e7bf89 7fc9 00007fc9 d6fd d6fd d6fd d6fd d6fd d6fd d6fd
+8192 d6fe d6fe d6fe * * 3843 8ea2b8c3,8ea2b8c3v 801f e8809f 801f 0000801f d6fe d6fe d6fe d6fe d6fe d6fe d6fe
+8193 d740 d740 d740 * * 3844 8ea2b8c4,8ea2b8c4v 801e e8809e 801e 0000801e d740 d740 d740 d740 d740 d740 d740
+8194 d741 d741 d741 * * 3845 8ea2b8c5,8ea2b8c5v 801b e8809b 801b 0000801b d741 d741 d741 d741 d741 d741 d741
+8195 d742 d742 d742 * * 3846 8ea2b8c6,8ea2b8c6v 8047 e88187 8047 00008047 d742 d742 d742 d742 d742 d742 d742
+8196 d743 d743 d743 * * 3847 8ea2b8c7,8ea2b8c7v 8043 e88183 8043 00008043 d743 d743 d743 d743 d743 d743 d743
+8197 d744 d744 d744 * * 3848 8ea2b8c8,8ea2b8c8v 8048 e88188 8048 00008048 d744 d744 d744 d744 d744 d744 d744
+8198 d745 d745 d745 * * 3849 8ea2b8c9,8ea2b8c9v 8118 e88498 8118 00008118 d745 d745 d745 d745 d745 d745 d745
+8199 d746 d746 d746 * * 384a 8ea2b8ca,8ea2b8cav 8125 e884a5 8125 00008125 d746 d746 d746 d746 d746 d746 d746
+8200 d747 d747 d747 * * 384b 8ea2b8cb,8ea2b8cbv 8119 e88499 8119 00008119 d747 d747 d747 d747 d747 d747 d747
+8201 d748 d748 d748 * * 384c 8ea2b8cc,8ea2b8ccv 811b e8849b 811b 0000811b d748 d748 d748 d748 d748 d748 d748
+8202 d749 d749 d749 * * 384d 8ea2b8cd,8ea2b8cdv 812d e884ad 812d 0000812d d749 d749 d749 d749 d749 d749 d749
+8203 d74a d74a d74a * * 384e 8ea2b8ce,8ea2b8cev 811f e8849f 811f 0000811f d74a d74a d74a d74a d74a d74a d74a
+8204 d74b d74b d74b * * 384f 8ea2b8cf,8ea2b8cfv 812c e884ac 812c 0000812c d74b d74b d74b d74b d74b d74b d74b
+8205 d74c d74c d74c * * 3850 8ea2b8d0,8ea2b8d0v 811e e8849e 811e 0000811e d74c d74c d74c d74c d74c d74c d74c
+8206 d74d d74d d74d * * 3851 8ea2b8d1,8ea2b8d1v 8121 e884a1 8121 00008121 d74d d74d d74d d74d d74d d74d d74d
+8207 d74e d74e d74e * * 3852 8ea2b8d2,8ea2b8d2v 8115 e88495 8115 00008115 d74e d74e d74e d74e d74e d74e d74e
+8208 d74f d74f d74f * * 3853 8ea2b8d3,8ea2b8d3v 8127 e884a7 8127 00008127 d74f d74f d74f d74f d74f d74f d74f
+8209 d750 d750 d750 * * 3854 8ea2b8d4,8ea2b8d4v 811d e8849d 811d 0000811d d750 d750 d750 d750 d750 d750 d750
+8210 d751 d751 d751 * * 3855 8ea2b8d5,8ea2b8d5v 8122 e884a2 8122 00008122 d751 d751 d751 d751 d751 d751 d751
+8211 d752 d752 d752 * * 3856 8ea2b8d6,8ea2b8d6v 8211 e88891 8211 00008211 d752 d752 d752 d752 d752 d752 d752
+8212 d753 d753 d753 * * 3857 8ea2b8d7,8ea2b8d7v 8238 e888b8 8238 00008238 d753 d753 d753 d753 d753 d753 d753
+8213 d754 d754 d754 * * 3858 8ea2b8d8,8ea2b8d8v 8233 e888b3 8233 00008233 d754 d754 d754 d754 d754 d754 d754
+8214 d755 d755 d755 * * 3859 8ea2b8d9,8ea2b8d9v 823a e888ba 823a 0000823a d755 d755 d755 d755 d755 d755 d755
+8215 d756 d756 d756 * * 385a 8ea2b8da,8ea2b8dav 8234 e888b4 8234 00008234 d756 d756 d756 d756 d756 d756 d756
+8216 d757 d757 d757 * * 385b 8ea2b8db,8ea2b8dbv 8232 e888b2 8232 00008232 d757 d757 d757 d757 d757 d757 d757
+8217 d758 d758 d758 * * 385c 8ea2b8dc,8ea2b8dcv 8274 e889b4 8274 00008274 d758 d758 d758 d758 d758 d758 d758
+8218 d759 d759 d759 * * 385d 8ea2b8dd,8ea2b8ddv 8390 e88e90 8390 00008390 d759 d759 d759 d759 d759 d759 d759
+8219 d75a d75a d75a * * 385e 8ea2b8de,8ea2b8dev 83a3 e88ea3 83a3 000083a3 d75a d75a d75a d75a d75a d75a d75a
+8220 d75b d75b d75b * * 385f 8ea2b8df,8ea2b8dfv 83a8 e88ea8 83a8 000083a8 d75b d75b d75b d75b d75b d75b d75b
+8221 d75c d75c d75c * * 3860 8ea2b8e0,8ea2b8e0v 838d e88e8d 838d 0000838d d75c d75c d75c d75c d75c d75c d75c
+8222 d75d d75d d75d * * 3861 8ea2b8e1,8ea2b8e1v 837a e88dba 837a 0000837a d75d d75d d75d d75d d75d d75d d75d
+8223 d75e d75e d75e * * 3862 8ea2b8e2,8ea2b8e2v 8373 e88db3 8373 00008373 d75e d75e d75e d75e d75e d75e d75e
+8224 d75f d75f d75f * * 3863 8ea2b8e3,8ea2b8e3v 83a4 e88ea4 83a4 000083a4 d75f d75f d75f d75f d75f d75f d75f
+8225 d760 d760 d760 * * 3864 8ea2b8e4,8ea2b8e4v 8374 e88db4 8374 00008374 d760 d760 d760 d760 d760 d760 d760
+8226 d761 d761 d761 * * 3865 8ea2b8e5,8ea2b8e5v 838f e88e8f 838f 0000838f d761 d761 d761 d761 d761 d761 d761
+8227 d762 d762 d762 * * 3866 8ea2b8e6,8ea2b8e6v 8381 e88e81 8381 00008381 d762 d762 d762 d762 d762 d762 d762
+8228 d763 d763 d763 * * 3867 8ea2b8e7,8ea2b8e7v 8395 e88e95 8395 00008395 d763 d763 d763 d763 d763 d763 d763
+8229 d764 d764 d764 * * 3868 8ea2b8e8,8ea2b8e8v 8399 e88e99 8399 00008399 d764 d764 d764 d764 d764 d764 d764
+8230 d765 d765 d765 * * 3869 8ea2b8e9,8ea2b8e9v 8375 e88db5 8375 00008375 d765 d765 d765 d765 d765 d765 d765
+8231 d766 d766 d766 * * 386a 8ea2b8ea,8ea2b8eav 8394 e88e94 8394 00008394 d766 d766 d766 d766 d766 d766 d766
+8232 d767 d767 d767 * * 386b 8ea2b8eb,8ea2b8ebv 83a9 e88ea9 83a9 000083a9 d767 d767 d767 d767 d767 d767 d767
+8233 d768 d768 d768 * * 386c 8ea2b8ec,8ea2b8ecv 837d e88dbd 837d 0000837d d768 d768 d768 d768 d768 d768 d768
+8234 d769 d769 d769 * * 386d 8ea2b8ed,8ea2b8edv 8383 e88e83 8383 00008383 d769 d769 d769 d769 d769 d769 d769
+8235 d76a d76a d76a * * 386e 8ea2b8ee,8ea2b8eev 838c e88e8c 838c 0000838c d76a d76a d76a d76a d76a d76a d76a
+8236 d76b d76b d76b * * 386f 8ea2b8ef,8ea2b8efv 839d e88e9d 839d 0000839d d76b d76b d76b d76b d76b d76b d76b
+8237 d76c d76c d76c * * 3870 8ea2b8f0,8ea2b8f0v 839b e88e9b 839b 0000839b d76c d76c d76c d76c d76c d76c d76c
+8238 d76d d76d d76d * * 3871 8ea2b8f1,8ea2b8f1v 83aa e88eaa 83aa 000083aa d76d d76d d76d d76d d76d d76d d76d
+8239 d76e d76e d76e * * 3872 8ea2b8f2,8ea2b8f2v 838b e88e8b 838b 0000838b d76e d76e d76e d76e d76e d76e d76e
+8240 d76f d76f d76f * * 3873 8ea2b8f3,8ea2b8f3v 837e e88dbe 837e 0000837e d76f d76f d76f d76f d76f d76f d76f
+8241 d770 d770 d770 * * 3874 8ea2b8f4,8ea2b8f4v 83a5 e88ea5 83a5 000083a5 d770 d770 d770 d770 d770 d770 d770
+8242 d771 d771 d771 * * 3875 8ea2b8f5,8ea2b8f5v 83af e88eaf 83af 000083af d771 d771 d771 d771 d771 d771 d771
+8243 d772 d772 d772 * * 3876 8ea2b8f6,8ea2b8f6v 8388 e88e88 8388 00008388 d772 d772 d772 d772 d772 d772 d772
+8244 d773 d773 d773 * * 3877 8ea2b8f7,8ea2b8f7v 8397 e88e97 8397 00008397 d773 d773 d773 d773 d773 d773 d773
+8245 d774 d774 d774 * * 3878 8ea2b8f8,8ea2b8f8v 83b0 e88eb0 83b0 000083b0 d774 d774 d774 d774 d774 d774 d774
+8246 d775 d775 d775 * * 3879 8ea2b8f9,8ea2b8f9v 837f e88dbf 837f 0000837f d775 d775 d775 d775 d775 d775 d775
+8247 d776 d776 d776 * * 387a 8ea2b8fa,8ea2b8fav 83a6 e88ea6 83a6 000083a6 d776 d776 d776 d776 d776 d776 d776
+8248 d777 d777 d777 * * 387b 8ea2b8fb,8ea2b8fbv 8387 e88e87 8387 00008387 d777 d777 d777 d777 d777 d777 d777
+8249 d778 d778 d778 * * 387c 8ea2b8fc,8ea2b8fcv 83ae e88eae 83ae 000083ae d778 d778 d778 d778 d778 d778 d778
+8250 d779 d779 d779 * * 387d 8ea2b8fd,8ea2b8fdv 8376 e88db6 8376 00008376 d779 d779 d779 d779 d779 d779 d779
+8251 d77b d77b d77b * * 387e 8ea2b8fe,8ea2b8fev 8659 e89999 8659 00008659 d77b d77b d77b d77b d77b d77b d77b
+8252 d77c d77c d77c * * 3921 8ea2b9a1,8ea2b9a1v 8656 e89996 8656 00008656 d77c d77c d77c d77c d77c d77c d77c
+8253 d77d d77d d77d * * 3922 8ea2b9a2,8ea2b9a2v 86bf e89abf 86bf 000086bf d77d d77d d77d d77d d77d d77d d77d
+8254 d77e d77e d77e * * 3923 8ea2b9a3,8ea2b9a3v 86b7 e89ab7 86b7 000086b7 d77e d77e d77e d77e d77e d77e d77e
+8255 d7a1 d7a1 d7a1 * * 3924 8ea2b9a4,8ea2b9a4v 86c2 e89b82 86c2 000086c2 d7a1 d7a1 d7a1 d7a1 d7a1 d7a1 d7a1
+8256 d7a2 d7a2 d7a2 * * 3925 8ea2b9a5,8ea2b9a5v 86c1 e89b81 86c1 000086c1 d7a2 d7a2 d7a2 d7a2 d7a2 d7a2 d7a2
+8257 d7a3 d7a3 d7a3 * * 3926 8ea2b9a6,8ea2b9a6v 86c5 e89b85 86c5 000086c5 d7a3 d7a3 d7a3 d7a3 d7a3 d7a3 d7a3
+8258 d7a4 d7a4 d7a4 * * 3927 8ea2b9a7,8ea2b9a7v 86ba e89aba 86ba 000086ba d7a4 d7a4 d7a4 d7a4 d7a4 d7a4 d7a4
+8259 d7a5 d7a5 d7a5 * * 3928 8ea2b9a8,8ea2b9a8v 86b0 e89ab0 86b0 000086b0 d7a5 d7a5 d7a5 d7a5 d7a5 d7a5 d7a5
+8260 d7a6 d7a6 d7a6 * * 3929 8ea2b9a9,8ea2b9a9v 86c8 e89b88 86c8 000086c8 d7a6 d7a6 d7a6 d7a6 d7a6 d7a6 d7a6
+8261 d7a7 d7a7 d7a7 * * 392a 8ea2b9aa,8ea2b9aav 86b9 e89ab9 86b9 000086b9 d7a7 d7a7 d7a7 d7a7 d7a7 d7a7 d7a7
+8262 d7a8 d7a8 d7a8 * * 392b 8ea2b9ab,8ea2b9abv 86b3 e89ab3 86b3 000086b3 d7a8 d7a8 d7a8 d7a8 d7a8 d7a8 d7a8
+8263 d7a9 d7a9 d7a9 * * 392c 8ea2b9ac,8ea2b9acv 86b8 e89ab8 86b8 000086b8 d7a9 d7a9 d7a9 d7a9 d7a9 d7a9 d7a9
+8264 d7aa d7aa d7aa * * 392d 8ea2b9ad,8ea2b9adv 86cc e89b8c 86cc 000086cc d7aa d7aa d7aa d7aa d7aa d7aa d7aa
+8265 d7ab d7ab d7ab * * 392e 8ea2b9ae,8ea2b9aev 86b4 e89ab4 86b4 000086b4 d7ab d7ab d7ab d7ab d7ab d7ab d7ab
+8266 d7ac d7ac d7ac * * 392f 8ea2b9af,8ea2b9afv 86bb e89abb 86bb 000086bb d7ac d7ac d7ac d7ac d7ac d7ac d7ac
+8267 d7ad d7ad d7ad * * 3930 8ea2b9b0,8ea2b9b0v 86bc e89abc 86bc 000086bc d7ad d7ad d7ad d7ad d7ad d7ad d7ad
+8268 d7ae d7ae d7ae * * 3931 8ea2b9b1,8ea2b9b1v 86c3 e89b83 86c3 000086c3 d7ae d7ae d7ae d7ae d7ae d7ae d7ae
+8269 d7af d7af d7af * * 3932 8ea2b9b2,8ea2b9b2v 86bd e89abd 86bd 000086bd d7af d7af d7af d7af d7af d7af d7af
+8270 d7b0 d7b0 d7b0 * * 3933 8ea2b9b3,8ea2b9b3v 86be e89abe 86be 000086be d7b0 d7b0 d7b0 d7b0 d7b0 d7b0 d7b0
+8271 d7b1 d7b1 d7b1 * * 3934 8ea2b9b4,8ea2b9b4v 8852 e8a192 8852 00008852 d7b1 d7b1 d7b1 d7b1 d7b1 d7b1 d7b1
+8272 d7b2 d7b2 d7b2 * * 3935 8ea2b9b5,8ea2b9b5v 8889 e8a289 8889 00008889 d7b2 d7b2 d7b2 d7b2 d7b2 d7b2 d7b2
+8273 d7b3 d7b3 d7b3 * * 3936 8ea2b9b6,8ea2b9b6v 8895 e8a295 8895 00008895 d7b3 d7b3 d7b3 d7b3 d7b3 d7b3 d7b3
+8274 d7b4 d7b4 d7b4 * * 3937 8ea2b9b7,8ea2b9b7v 88a8 e8a2a8 88a8 000088a8 d7b4 d7b4 d7b4 d7b4 d7b4 d7b4 d7b4
+8275 d7b5 d7b5 d7b5 * * 3938 8ea2b9b8,8ea2b9b8v 88a2 e8a2a2 88a2 000088a2 d7b5 d7b5 d7b5 d7b5 d7b5 d7b5 d7b5
+8276 d7b6 d7b6 d7b6 * * 3939 8ea2b9b9,8ea2b9b9v 88aa e8a2aa 88aa 000088aa d7b6 d7b6,fddf d7b6 d7b6 d7b6 d7b6 d7b6
+8277 d7b7 d7b7 d7b7 * * 393a 8ea2b9ba,8ea2b9bav 889a e8a29a 889a 0000889a d7b7 d7b7 d7b7 d7b7 d7b7 d7b7 d7b7
+8278 d7b8 d7b8 d7b8 * * 393b 8ea2b9bb,8ea2b9bbv 8891 e8a291 8891 00008891 d7b8 d7b8 d7b8 d7b8 d7b8 d7b8 d7b8
+8279 d7b9 d7b9 d7b9 * * 393c 8ea2b9bc,8ea2b9bcv 88a1 e8a2a1 88a1 000088a1 d7b9 d7b9 d7b9 d7b9 d7b9 d7b9 d7b9
+8280 d7ba d7ba d7ba * * 393d 8ea2b9bd,8ea2b9bdv 889f e8a29f 889f 0000889f d7ba d7ba d7ba d7ba d7ba d7ba d7ba
+8281 d7bb d7bb d7bb * * 393e 8ea2b9be,8ea2b9bev 8898 e8a298 8898 00008898 d7bb d7bb d7bb d7bb d7bb d7bb d7bb
+8282 d7bc d7bc d7bc * * 393f 8ea2b9bf,8ea2b9bfv 88a7 e8a2a7 88a7 000088a7 d7bc d7bc d7bc d7bc d7bc d7bc d7bc
+8283 d7bd d7bd d7bd * * 3940 8ea2b9c0,8ea2b9c0v 8899 e8a299 8899 00008899 d7bd d7bd d7bd d7bd d7bd d7bd d7bd
+8284 d7be d7be d7be * * 3941 8ea2b9c1,8ea2b9c1v 889b e8a29b 889b 0000889b d7be d7be d7be d7be d7be d7be d7be
+8285 d7bf d7bf d7bf * * 3942 8ea2b9c2,8ea2b9c2v 8897 e8a297 8897 00008897 d7bf d7bf d7bf d7bf d7bf d7bf d7bf
+8286 d7c0 d7c0 d7c0 * * 3943 8ea2b9c3,8ea2b9c3v 88a4 e8a2a4 88a4 000088a4 d7c0 d7c0 d7c0 d7c0 d7c0 d7c0 d7c0
+8287 d7c1 d7c1 d7c1 * * 3944 8ea2b9c4,8ea2b9c4v 88ac e8a2ac 88ac 000088ac d7c1 d7c1 d7c1 d7c1 d7c1 d7c1 d7c1
+8288 d7c2 d7c2 d7c2 * * 3945 8ea2b9c5,8ea2b9c5v 888c e8a28c 888c 0000888c d7c2 d7c2 d7c2 d7c2 d7c2 d7c2 d7c2
+8289 d7c3 d7c3 d7c3 * * 3946 8ea2b9c6,8ea2b9c6v 8893 e8a293 8893 00008893 d7c3 d7c3 d7c3 d7c3 d7c3 d7c3 d7c3
+8290 d7c4 d7c4 d7c4 * * 3947 8ea2b9c7,8ea2b9c7v 888e e8a28e 888e 0000888e d7c4 d7c4 d7c4 d7c4 d7c4 d7c4 d7c4
+8291 d7c5 d7c5 d7c5 * * 3948 8ea2b9c8,8ea2b9c8v 8982 e8a682 8982 00008982 d7c5 d7c5 d7c5 d7c5 d7c5 d7c5 d7c5
+8292 d7c6 d7c6 d7c6 * * 3949 8ea2b9c9,8ea2b9c9v 89d6 e8a796 89d6 000089d6 d7c6 d7c6 d7c6 d7c6 d7c6 d7c6 d7c6
+8293 d7c7 d7c7 d7c7 * * 394a 8ea2b9ca,8ea2b9cav 89d9 e8a799 89d9 000089d9 d7c7 d7c7 d7c7 d7c7 d7c7 d7c7 d7c7
+8294 d7c8 d7c8 d7c8 * * 394b 8ea2b9cb,8ea2b9cbv 89d5 e8a795 89d5 000089d5 d7c8 d7c8 d7c8 d7c8 d7c8 d7c8 d7c8
+8295 d7c9 d7c9 d7c9 * * 394c 8ea2b9cc,8ea2b9ccv 8a30 e8a8b0 8a30 00008a30 d7c9 d7c9 d7c9 d7c9 d7c9 d7c9 d7c9
+8296 d7ca d7ca d7ca * * 394d 8ea2b9cd,8ea2b9cdv 8a27 e8a8a7 8a27 00008a27 d7ca d7ca d7ca d7ca d7ca d7ca d7ca
+8297 d7cb d7cb d7cb * * 394e 8ea2b9ce,8ea2b9cev 8a2c e8a8ac 8a2c 00008a2c d7cb d7cb d7cb d7cb d7cb d7cb d7cb
+8298 d7cc d7cc d7cc * * 394f 8ea2b9cf,8ea2b9cfv 8a1e e8a89e 8a1e 00008a1e d7cc d7cc d7cc d7cc d7cc d7cc d7cc
+8299 d7cd d7cd d7cd * * 3950 8ea2b9d0,8ea2b9d0v 8c39 e8b0b9 8c39 00008c39 d7cd d7cd d7cd d7cd d7cd d7cd d7cd
+8300 d7ce d7ce d7ce * * 3951 8ea2b9d1,8ea2b9d1v 8c3b e8b0bb 8c3b 00008c3b d7ce d7ce d7ce d7ce d7ce d7ce d7ce
+8301 d7cf d7cf d7cf * * 3952 8ea2b9d2,8ea2b9d2v 8c5c e8b19c 8c5c 00008c5c d7cf d7cf d7cf d7cf d7cf d7cf d7cf
+8302 d7d0 d7d0 d7d0 * * 3953 8ea2b9d3,8ea2b9d3v 8c5d e8b19d 8c5d 00008c5d d7d0 d7d0 d7d0 d7d0 d7d0 d7d0 d7d0
+8303 d7d1 d7d1 d7d1 * * 3954 8ea2b9d4,8ea2b9d4v 8c7d e8b1bd 8c7d 00008c7d d7d1 d7d1 d7d1 d7d1 d7d1 d7d1 d7d1
+8304 d7d2 d7d2 d7d2 * * 3955 8ea2b9d5,8ea2b9d5v 8ca5 e8b2a5 8ca5 00008ca5 d7d2 d7d2 d7d2 d7d2 d7d2 d7d2 d7d2
+8305 d7d3 d7d3 d7d3 * * 3956 8ea2b9d6,8ea2b9d6v 8d7d e8b5bd 8d7d 00008d7d d7d3 d7d3 d7d3 d7d3 d7d3 d7d3 d7d3
+8306 d7d4 d7d4 d7d4 * * 3957 8ea2b9d7,8ea2b9d7v 8d7b e8b5bb 8d7b 00008d7b d7d4 d7d4 d7d4 d7d4 d7d4 d7d4 d7d4
+8307 d7d5 d7d5 d7d5 * * 3958 8ea2b9d8,8ea2b9d8v 8d79 e8b5b9 8d79 00008d79 d7d5 d7d5 d7d5 d7d5 d7d5 d7d5 d7d5
+8308 d7d6 d7d6 d7d6 * * 3959 8ea2b9d9,8ea2b9d9v 8dbc e8b6bc 8dbc 00008dbc d7d6 d7d6 d7d6 d7d6 d7d6 d7d6 d7d6
+8309 d7d7 d7d7 d7d7 * * 395a 8ea2b9da,8ea2b9dav 8dc2 e8b782 8dc2 00008dc2 d7d7 d7d7 d7d7 d7d7 d7d7 d7d7 d7d7
+8310 d7d8 d7d8 d7d8 * * 395b 8ea2b9db,8ea2b9dbv 8db9 e8b6b9 8db9 00008db9 d7d8 d7d8 d7d8 d7d8 d7d8 d7d8 d7d8
+8311 d7d9 d7d9 d7d9 * * 395c 8ea2b9dc,8ea2b9dcv 8dbf e8b6bf 8dbf 00008dbf d7d9 d7d9 d7d9 d7d9 d7d9 d7d9 d7d9
+8312 d7da d7da d7da * * 395d 8ea2b9dd,8ea2b9ddv 8dc1 e8b781 8dc1 00008dc1 d7da d7da d7da d7da d7da d7da d7da
+8313 d7db d7db d7db * * 395e 8ea2b9de,8ea2b9dev 8ed8 e8bb98 8ed8 00008ed8 d7db d7db d7db d7db d7db d7db d7db
+8314 d7dc d7dc d7dc * * 395f 8ea2b9df,8ea2b9dfv 8ede e8bb9e 8ede 00008ede d7dc d7dc d7dc d7dc d7dc d7dc d7dc
+8315 d7dd d7dd d7dd * * 3960 8ea2b9e0,8ea2b9e0v 8edd e8bb9d 8edd 00008edd d7dd d7dd d7dd d7dd d7dd d7dd d7dd
+8316 d7de d7de d7de * * 3961 8ea2b9e1,8ea2b9e1v 8edc e8bb9c 8edc 00008edc d7de d7de d7de d7de d7de d7de d7de
+8317 d7df d7df d7df * * 3962 8ea2b9e2,8ea2b9e2v 8ed7 e8bb97 8ed7 00008ed7 d7df d7df d7df d7df d7df d7df d7df
+8318 d7e0 d7e0 d7e0 * * 3963 8ea2b9e3,8ea2b9e3v 8ee0 e8bba0 8ee0 00008ee0 d7e0 d7e0 d7e0 d7e0 d7e0 d7e0 d7e0
+8319 d7e1 d7e1 d7e1 * * 3964 8ea2b9e4,8ea2b9e4v 8ee1 e8bba1 8ee1 00008ee1 d7e1 d7e1 d7e1 d7e1 d7e1 d7e1 d7e1
+8320 d7e2 d7e2 d7e2 * * 3965 8ea2b9e5,8ea2b9e5v 9024 e980a4 9024 00009024 d7e2 d7e2 d7e2 d7e2 d7e2 d7e2 d7e2
+8321 d7e3 d7e3 d7e3 * * 3966 8ea2b9e6,8ea2b9e6v 900b e9808b 900b 0000900b d7e3 d7e3 d7e3 d7e3 d7e3 d7e3 d7e3
+8322 d7e4 d7e4 d7e4 * * 3967 8ea2b9e7,8ea2b9e7v 9011 e98091 9011 00009011 d7e4 d7e4 d7e4 d7e4 d7e4 d7e4 d7e4
+8323 d7e5 d7e5 d7e5 * * 3968 8ea2b9e8,8ea2b9e8v 901c e9809c 901c 0000901c d7e5 d7e5 d7e5 d7e5 d7e5 d7e5 d7e5
+8324 d7e6 d7e6 d7e6 * * 3969 8ea2b9e9,8ea2b9e9v 900c e9808c 900c 0000900c d7e6 d7e6 d7e6 d7e6 d7e6 d7e6 d7e6
+8325 d7e7 d7e7 d7e7 * * 396a 8ea2b9ea,8ea2b9eav 9021 e980a1 9021 00009021 d7e7 d7e7 d7e7 d7e7 d7e7 d7e7 d7e7
+8326 d7e8 d7e8 d7e8 * * 396b 8ea2b9eb,8ea2b9ebv 90ef e983af 90ef 000090ef d7e8 d7e8 d7e8 d7e8 d7e8 d7e8 d7e8
+8327 d7e9 d7e9 d7e9 * * 396c 8ea2b9ec,8ea2b9ecv 90ea e983aa 90ea 000090ea d7e9 d7e9 d7e9 d7e9 d7e9 d7e9 d7e9
+8328 d7ea d7ea d7ea * * 396d 8ea2b9ed,8ea2b9edv 90f0 e983b0 90f0 000090f0 d7ea d7ea d7ea d7ea d7ea d7ea d7ea
+8329 d7eb d7eb d7eb * * 396e 8ea2b9ee,8ea2b9eev 90f4 e983b4 90f4 000090f4 d7eb d7eb d7eb d7eb d7eb d7eb d7eb
+8330 d7ec d7ec d7ec * * 396f 8ea2b9ef,8ea2b9efv 90f2 e983b2 90f2 000090f2 d7ec d7ec d7ec d7ec d7ec d7ec d7ec
+8331 d7ed d7ed d7ed * * 3970 8ea2b9f0,8ea2b9f0v 90f3 e983b3 90f3 000090f3 d7ed d7ed d7ed d7ed d7ed d7ed d7ed
+8332 d7ee d7ee d7ee * * 3971 8ea2b9f1,8ea2b9f1v 90d4 e98394 90d4 000090d4 d7ee d7ee d7ee d7ee d7ee d7ee d7ee
+8333 d7ef d7ef d7ef * * 3972 8ea2b9f2,8ea2b9f2v 90eb e983ab 90eb 000090eb d7ef d7ef d7ef d7ef d7ef d7ef d7ef
+8334 d7f0 d7f0 d7f0 * * 3973 8ea2b9f3,8ea2b9f3v 90ec e983ac 90ec 000090ec d7f0 d7f0 d7f0 d7f0 d7f0 d7f0 d7f0
+8335 d7f1 d7f1 d7f1 * * 3974 8ea2b9f4,8ea2b9f4v 90e9 e983a9 90e9 000090e9 d7f1 d7f1 d7f1 d7f1 d7f1 d7f1 d7f1
+8336 d7f2 d7f2 d7f2 * * 3975 8ea2b9f5,8ea2b9f5v 9156 e98596 9156 00009156 d7f2 d7f2 d7f2 d7f2 d7f2 d7f2 d7f2
+8337 d7f3 d7f3 d7f3 * * 3976 8ea2b9f6,8ea2b9f6v 9158 e98598 9158 00009158 d7f3 d7f3 d7f3 d7f3 d7f3 d7f3 d7f3
+8338 d7f4 d7f4 d7f4 * * 3977 8ea2b9f7,8ea2b9f7v 915a e9859a 915a 0000915a d7f4 d7f4 d7f4 d7f4 d7f4 d7f4 d7f4
+8339 d7f5 d7f5 d7f5 * * 3978 8ea2b9f8,8ea2b9f8v 9153 e98593 9153 00009153 d7f5 d7f5 d7f5 d7f5 d7f5 d7f5 d7f5
+8340 d7f6 d7f6 d7f6 * * 3979 8ea2b9f9,8ea2b9f9v 9155 e98595 9155 00009155 d7f6 d7f6 d7f6 d7f6 d7f6 d7f6 d7f6
+8341 d7f7 d7f7 d7f7 * * 397a 8ea2b9fa,8ea2b9fav 91ec e987ac 91ec 000091ec d7f7 d7f7 d7f7 d7f7 d7f7 d7f7 d7f7
+8342 d7f8 d7f8 d7f8 * * 397b 8ea2b9fb,8ea2b9fbv 91f4 e987b4 91f4 000091f4 d7f8 d7f8 d7f8 d7f8 d7f8 d7f8 d7f8
+8343 d7f9 d7f9 d7f9 * * 397c 8ea2b9fc,8ea2b9fcv 91f1 e987b1 91f1 000091f1 d7f9 d7f9 d7f9 d7f9 d7f9 d7f9 d7f9
+8344 d7fa d7fa d7fa * * 397d 8ea2b9fd,8ea2b9fdv 91f3 e987b3 91f3 000091f3 d7fa d7fa d7fa d7fa d7fa d7fa d7fa
+8345 d7fb d7fb d7fb * * 397e 8ea2b9fe,8ea2b9fev 91f8 e987b8 91f8 000091f8 d7fb d7fb d7fb d7fb d7fb d7fb d7fb
+8346 d7fc d7fc d7fc * * 3a21 8ea2baa1,8ea2baa1v 91e4 e987a4 91e4 000091e4 d7fc d7fc d7fc d7fc d7fc d7fc d7fc
+8347 d7fd d7fd d7fd * * 3a22 8ea2baa2,8ea2baa2v 91f9 e987b9 91f9 000091f9 d7fd d7fd d7fd d7fd d7fd d7fd d7fd
+8348 d7fe d7fe d7fe * * 3a23 8ea2baa3,8ea2baa3v 91ea e987aa 91ea 000091ea d7fe d7fe d7fe d7fe d7fe d7fe d7fe
+8349 d840 d840 d840 * * 3a24 8ea2baa4,8ea2baa4v 91eb e987ab 91eb 000091eb d840 d840 d840 d840 d840 d840 d840
+8350 d841 d841 d841 * * 3a25 8ea2baa5,8ea2baa5v 91f7 e987b7 91f7 000091f7 d841 d841 d841 d841 d841 d841 d841
+8351 d842 d842 d842 * * 3a26 8ea2baa6,8ea2baa6v 91e8 e987a8 91e8 000091e8 d842 d842 d842 d842 d842 d842 d842
+8352 d843 d843 d843 * * 3a27 8ea2baa7,8ea2baa7v 91ee e987ae 91ee 000091ee d843 d843 d843 d843 d843 d843 d843
+8353 d844 d844 d844 * * 3a28 8ea2baa8,8ea2baa8v 957a e995ba 957a 0000957a d844 d844 d844 d844 d844 d844 d844
+8354 d845 d845 d845 * * 3a29 8ea2baa9,8ea2baa9v 9586 e99686 9586 00009586 d845 d845 d845 d845 d845 d845 d845
+8355 d846 d846 d846 * * 3a2a 8ea2baaa,8ea2baaav 9588 e99688 9588 00009588 d846 d846 d846 d846 d846 d846 d846
+8356 d847 d847 d847 * * 3a2b 8ea2baab,8ea2baabv 967c e999bc 967c 0000967c d847 d847 d847 d847 d847 d847 d847
+8357 d848 d848 d848 * * 3a2c 8ea2baac,8ea2baacv 966d e999ad 966d 0000966d d848 d848 d848 d848 d848 d848 d848
+8358 d849 d849 d849 * * 3a2d 8ea2baad,8ea2baadv 966b e999ab 966b 0000966b d849 d849 d849 d849 d849 d849 d849
+8359 d84a d84a d84a * * 3a2e 8ea2baae,8ea2baaev 9671 e999b1 9671 00009671 d84a d84a d84a d84a d84a d84a d84a
+8360 d84b d84b d84b * * 3a2f 8ea2baaf,8ea2baafv 966f e999af 966f 0000966f d84b d84b d84b d84b d84b d84b d84b
+8361 d84c d84c d84c * * 3a30 8ea2bab0,8ea2bab0v 96bf e99abf 96bf 000096bf d84c d84c d84c d84c d84c d84c d84c
+8362 d84d d84d d84d * * 3a31 8ea2bab1,8ea2bab1v 976a e99daa 976a 0000976a d84d d84d d84d d84d d84d d84d d84d
+8363 d84e d84e d84e * * 3a32 8ea2bab2,8ea2bab2v 9804 e9a084 9804 00009804 d84e d84e d84e d84e d84e d84e d84e
+8364 d84f d84f d84f * * 3a33 8ea2bab3,8ea2bab3v 98e5 e9a3a5 98e5 000098e5 d84f d84f d84f d84f d84f d84f d84f
+8365 d850 d850 d850 * * 3a34 8ea2bab4,8ea2bab4v 9997 e9a697 9997 00009997 d850 d850 d850 d850 d850 d850 d850
+8366 d851 d851 d851 * * 3a35 8ea2bab5,8ea2bab5v 509b e5829b 509b 0000509b d851 d851 d851 d851 d851 d851 d851
+8367 d852 d852 d852 * * 3a36 8ea2bab6,8ea2bab6v 5095 e58295 5095 00005095 d852 d852 d852 d852 d852 d852 d852
+8368 d853 d853 d853 * * 3a37 8ea2bab7,8ea2bab7v 5094 e58294 5094 00005094 d853 d853 d853 d853 d853 d853 d853
+8369 d854 d854 d854 * * 3a38 8ea2bab8,8ea2bab8v 509e e5829e 509e 0000509e d854 d854 d854 d854 d854 d854 d854
+8370 d855 d855 d855 * * 3a39 8ea2bab9,8ea2bab9v 508b e5828b 508b 0000508b d855 d855 d855 d855 d855 d855 d855
+8371 d856 d856 d856 * * 3a3a 8ea2baba,8ea2babav 50a3 e582a3 50a3 000050a3 d856 d856 d856 d856 d856 d856 d856
+8372 d857 d857 d857 * * 3a3b 8ea2babb,8ea2babbv 5083 e58283 5083 00005083 d857 d857 d857 d857 d857 d857 d857
+8373 d858 d858 d858 * * 3a3c 8ea2babc,8ea2babcv 508c e5828c 508c 0000508c d858 d858 d858 d858 d858 d858 d858
+8374 d859 d859 d859 * * 3a3d 8ea2babd,8ea2babdv 508e e5828e 508e 0000508e d859 d859 d859 d859 d859 d859 d859
+8375 d85a d85a d85a * * 3a3e 8ea2babe,8ea2babev 509d e5829d 509d 0000509d d85a d85a d85a d85a d85a d85a d85a
+8376 d85b d85b d85b * * 3a3f 8ea2babf,8ea2babfv 5068 e581a8 5068 00005068 d85b d85b d85b d85b d85b d85b d85b
+8377 d85c d85c d85c * * 3a40 8ea2bac0,8ea2bac0v 509c e5829c 509c 0000509c d85c d85c d85c d85c d85c d85c d85c
+8378 d85d d85d d85d * * 3a41 8ea2bac1,8ea2bac1v 5092 e58292 5092 00005092 d85d d85d d85d d85d d85d d85d d85d
+8379 d85e d85e d85e * * 3a42 8ea2bac2,8ea2bac2v 5082 e58282 5082 00005082 d85e d85e d85e d85e d85e d85e d85e
+8380 d85f d85f d85f * * 3a43 8ea2bac3,8ea2bac3v 5087 e58287 5087 00005087 d85f d85f d85f d85f d85f d85f d85f
+8381 d860 d860 d860 * * 3a44 8ea2bac4,8ea2bac4v 515f e5859f 515f 0000515f d860 d860 d860 d860 d860 d860 d860
+8382 d861 d861 d861 * * 3a45 8ea2bac5,8ea2bac5v 51d4 e58794 51d4 000051d4 d861 d861 d861 d861 d861 d861 d861
+8383 d862 d862 d862 * * 3a46 8ea2bac6,8ea2bac6v 5312 e58c92 5312 00005312 d862 d862 d862 d862 d862 d862 d862
+8384 d863 d863 d863 * * 3a47 8ea2bac7,8ea2bac7v 5311 e58c91 5311 00005311 d863 d863 d863 d863 d863 d863 d863
+8385 d864 d864 d864 * * 3a48 8ea2bac8,8ea2bac8v 53a4 e58ea4 53a4 000053a4 d864 d864 d864 d864 d864 d864 d864
+8386 d865 d865 d865 * * 3a49 8ea2bac9,8ea2bac9v 53a7 e58ea7 53a7 000053a7 d865 d865 d865 d865 d865 d865 d865
+8387 d866 d866 d866 * * 3a4a 8ea2baca,8ea2bacav 5591 e59691 5591 00005591 d866 d866 d866 d866 d866 d866 d866
+8388 d867 d867 d867 * * 3a4b 8ea2bacb,8ea2bacbv 55a8 e596a8 55a8 000055a8 d867 d867 d867 d867 d867 d867 d867
+8389 d868 d868 d868 * * 3a4c 8ea2bacc,8ea2baccv 55a5 e596a5 55a5 000055a5 d868 d868 d868 d868 d868 d868 d868
+8390 d869 d869 d869 * * 3a4d 8ea2bacd,8ea2bacdv 55ad e596ad 55ad 000055ad d869 d869 d869 d869 d869 d869 d869
+8391 d86a d86a d86a * * 3a4e 8ea2bace,8ea2bacev 5577 e595b7 5577 00005577 d86a d86a d86a d86a d86a d86a d86a
+8392 d86b d86b d86b * * 3a4f 8ea2bacf,8ea2bacfv 5645 e59985 5645 00005645 d86b d86b d86b d86b d86b d86b d86b
+8393 d86c d86c d86c * * 3a50 8ea2bad0,8ea2bad0v 55a2 e596a2 55a2 000055a2 d86c d86c d86c d86c d86c d86c d86c
+8394 d86d d86d d86d * * 3a51 8ea2bad1,8ea2bad1v 5593 e59693 5593 00005593 d86d d86d d86d d86d d86d d86d d86d
+8395 d86e d86e d86e * * 3a52 8ea2bad2,8ea2bad2v 5588 e59688 5588 00005588 d86e d86e d86e d86e d86e d86e d86e
+8396 d86f d86f d86f * * 3a53 8ea2bad3,8ea2bad3v 558f e5968f 558f 0000558f d86f d86f d86f d86f d86f d86f d86f
+8397 d870 d870 d870 * * 3a54 8ea2bad4,8ea2bad4v 55b5 e596b5 55b5 000055b5 d870 d870 d870 d870 d870 d870 d870
+8398 d871 d871 d871 * * 3a55 8ea2bad5,8ea2bad5v 5581 e59681 5581 00005581 d871 d871 d871 d871 d871 d871 d871
+8399 d872 d872 d872 * * 3a56 8ea2bad6,8ea2bad6v 55a3 e596a3 55a3 000055a3 d872 d872 d872 d872 d872 d872 d872
+8400 d873 d873 d873 * * 3a57 8ea2bad7,8ea2bad7v 5592 e59692 5592 00005592 d873 d873 d873 d873 d873 d873 d873
+8401 d874 d874 d874 * * 3a58 8ea2bad8,8ea2bad8v 55a4 e596a4 55a4 000055a4 d874 d874 d874 d874 d874 d874 d874
+8402 d875 d875 d875 * * 3a59 8ea2bad9,8ea2bad9v 557d e595bd 557d 0000557d d875 d875 d875 d875 d875 d875 d875
+8403 d876 d876 d876 * * 3a5a 8ea2bada,8ea2badav 558c e5968c 558c 0000558c d876 d876 d876 d876 d876 d876 d876
+8404 d877 d877 d877 * * 3a5b 8ea2badb,8ea2badbv 55a6 e596a6 55a6 000055a6 d877 d877 d877 d877 d877 d877 d877
+8405 d878 d878 d878 * * 3a5c 8ea2badc,8ea2badcv 557f e595bf 557f 0000557f d878 d878 d878 d878 d878 d878 d878
+8406 d879 d879 d879 * * 3a5d 8ea2badd,8ea2baddv 5595 e59695 5595 00005595 d879 d879 d879 d879 d879 d879 d879
+8407 d87a d87a d87a * * 3a5e 8ea2bade,8ea2badev 55a1 e596a1 55a1 000055a1 d87a d87a d87a d87a d87a d87a d87a
+8408 d87b d87b d87b * * 3a5f 8ea2badf,8ea2badfv 558e e5968e 558e 0000558e d87b d87b d87b d87b d87b d87b d87b
+8409 d87c d87c d87c * * 3a60 8ea2bae0,8ea2bae0v 570c e59c8c 570c 0000570c d87c d87c d87c d87c d87c d87c d87c
+8410 d87d d87d d87d * * 3a61 8ea2bae1,8ea2bae1v 5829 e5a0a9 5829 00005829 d87d d87d d87d d87d d87d d87d d87d
+8411 d87e d87e d87e * * 3a62 8ea2bae2,8ea2bae2v 5837 e5a0b7 5837 00005837 d87e d87e d87e d87e d87e d87e d87e
+8412 d8a1 d8a1 d8a1 * * 3a63 8ea2bae3,8ea2bae3v 5819 e5a099 5819 00005819 d8a1 d8a1 d8a1 d8a1 d8a1 d8a1 d8a1
+8413 d8a2 d8a2 d8a2 * * 3a64 8ea2bae4,8ea2bae4v 581e e5a09e 581e 0000581e d8a2 d8a2 d8a2 d8a2 d8a2 d8a2 d8a2
+8414 d8a3 d8a3 d8a3 * * 3a65 8ea2bae5,8ea2bae5v 5827 e5a0a7 5827 00005827 d8a3 d8a3 d8a3 d8a3 d8a3 d8a3 d8a3
+8415 d8a4 d8a4 d8a4 * * 3a66 8ea2bae6,8ea2bae6v 5823 e5a0a3 5823 00005823 d8a4 d8a4 d8a4 d8a4 d8a4 d8a4 d8a4
+8416 d8a5 d8a5 d8a5 * * 3a67 8ea2bae7,8ea2bae7v 5828 e5a0a8 5828 00005828 d8a5 d8a5 d8a5 d8a5 d8a5 d8a5 d8a5
+8417 d8a6 d8a6 d8a6 * * 3a68 8ea2bae8,8ea2bae8v 57f5 e59fb5 57f5 000057f5 d8a6 d8a6 d8a6 d8a6 d8a6 d8a6 d8a6
+8418 d8a7 d8a7 d8a7 * * 3a69 8ea2bae9,8ea2bae9v 5848 e5a188 5848 00005848 d8a7 d8a7 d8a7 d8a7 d8a7 d8a7 d8a7
+8419 d8a8 d8a8 d8a8 * * 3a6a 8ea2baea,8ea2baeav 5825 e5a0a5 5825 00005825 d8a8 d8a8 d8a8 d8a8 d8a8 d8a8 d8a8
+8420 d8a9 d8a9 d8a9 * * 3a6b 8ea2baeb,8ea2baebv 581c e5a09c 581c 0000581c d8a9 d8a9 d8a9 d8a9 d8a9 d8a9 d8a9
+8421 d8aa d8aa d8aa * * 3a6c 8ea2baec,8ea2baecv 581b e5a09b 581b 0000581b d8aa d8aa d8aa d8aa d8aa d8aa d8aa
+8422 d8ab d8ab d8ab * * 3a6d 8ea2baed,8ea2baedv 5833 e5a0b3 5833 00005833 d8ab d8ab d8ab d8ab d8ab d8ab d8ab
+8423 d8ac d8ac d8ac * * 3a6e 8ea2baee,8ea2baeev 583f e5a0bf 583f 0000583f d8ac d8ac d8ac d8ac d8ac d8ac d8ac
+8424 d8ad d8ad d8ad * * 3a6f 8ea2baef,8ea2baefv 5836 e5a0b6 5836 00005836 d8ad d8ad d8ad d8ad d8ad d8ad d8ad
+8425 d8ae d8ae d8ae * * 3a70 8ea2baf0,8ea2baf0v 582e e5a0ae 582e 0000582e d8ae d8ae d8ae d8ae d8ae d8ae d8ae
+8426 d8af d8af d8af * * 3a71 8ea2baf1,8ea2baf1v 5839 e5a0b9 5839 00005839 d8af d8af d8af d8af d8af d8af d8af
+8427 d8b0 d8b0 d8b0 * * 3a72 8ea2baf2,8ea2baf2v 5838 e5a0b8 5838 00005838 d8b0 d8b0 d8b0 d8b0 d8b0 d8b0 d8b0
+8428 d8b1 d8b1 d8b1 * * 3a73 8ea2baf3,8ea2baf3v 582d e5a0ad 582d 0000582d d8b1 d8b1 d8b1 d8b1 d8b1 d8b1 d8b1
+8429 d8b2 d8b2 d8b2 * * 3a74 8ea2baf4,8ea2baf4v 582c e5a0ac 582c 0000582c d8b2 d8b2 d8b2 d8b2 d8b2 d8b2 d8b2
+8430 d8b3 d8b3 d8b3 * * 3a75 8ea2baf5,8ea2baf5v 583b e5a0bb 583b 0000583b d8b3 d8b3 d8b3 d8b3 d8b3 d8b3 d8b3
+8431 d8b4 d8b4 d8b4 * * 3a76 8ea2baf6,8ea2baf6v 5961 e5a5a1 5961 00005961 d8b4 d8b4 d8b4 d8b4 d8b4 d8b4 d8b4
+8432 d8b5 d8b5 d8b5 * * 3a77 8ea2baf7,8ea2baf7v 5aaf e5aaaf 5aaf 00005aaf d8b5 d8b5 d8b5 d8b5 d8b5 d8b5 d8b5
+8433 d8b6 d8b6 d8b6 * * 3a78 8ea2baf8,8ea2baf8v 5a94 e5aa94 5a94 00005a94 d8b6 d8b6 d8b6 d8b6 d8b6 d8b6 d8b6
+8434 d8b7 d8b7 d8b7 * * 3a79 8ea2baf9,8ea2baf9v 5a9f e5aa9f 5a9f 00005a9f d8b7 d8b7 d8b7 d8b7 d8b7 d8b7 d8b7
+8435 d8b8 d8b8 d8b8 * * 3a7a 8ea2bafa,8ea2bafav 5a7a e5a9ba 5a7a 00005a7a d8b8 d8b8 d8b8 d8b8 d8b8 d8b8 d8b8
+8436 d8b9 d8b9 d8b9 * * 3a7b 8ea2bafb,8ea2bafbv 5aa2 e5aaa2 5aa2 00005aa2 d8b9 d8b9 d8b9 d8b9 d8b9 d8b9 d8b9
+8437 d8ba d8ba d8ba * * 3a7c 8ea2bafc,8ea2bafcv 5a9e e5aa9e 5a9e 00005a9e d8ba d8ba d8ba d8ba d8ba d8ba d8ba
+8438 d8bb d8bb d8bb * * 3a7d 8ea2bafd,8ea2bafdv 5a78 e5a9b8 5a78 00005a78 d8bb d8bb d8bb d8bb d8bb d8bb d8bb
+8439 d8bc d8bc d8bc * * 3a7e 8ea2bafe,8ea2bafev 5aa6 e5aaa6 5aa6 00005aa6 d8bc d8bc d8bc d8bc d8bc d8bc d8bc
+8440 d8bd d8bd d8bd * * 3b21 8ea2bba1,8ea2bba1v 5a7c e5a9bc 5a7c 00005a7c d8bd d8bd d8bd d8bd d8bd d8bd d8bd
+8441 d8be d8be d8be * * 3b22 8ea2bba2,8ea2bba2v 5aa5 e5aaa5 5aa5 00005aa5 d8be d8be d8be d8be d8be d8be d8be
+8442 d8bf d8bf d8bf * * 3b23 8ea2bba3,8ea2bba3v 5aac e5aaac 5aac 00005aac d8bf d8bf d8bf d8bf d8bf d8bf d8bf
+8443 d8c0 d8c0 d8c0 * * 3b24 8ea2bba4,8ea2bba4v 5a95 e5aa95 5a95 00005a95 d8c0 d8c0 d8c0 d8c0 d8c0 d8c0 d8c0
+8444 d8c1 d8c1 d8c1 * * 3b25 8ea2bba5,8ea2bba5v 5aae e5aaae 5aae 00005aae d8c1 d8c1 d8c1 d8c1 d8c1 d8c1 d8c1
+8445 d8c2 d8c2 d8c2 * * 3b26 8ea2bba6,8ea2bba6v 5a37 e5a8b7 5a37 00005a37 d8c2 d8c2 d8c2 d8c2 d8c2 d8c2 d8c2
+8446 d8c3 d8c3 d8c3 * * 3b27 8ea2bba7,8ea2bba7v 5a84 e5aa84 5a84 00005a84 d8c3 d8c3 d8c3 d8c3 d8c3 d8c3 d8c3
+8447 d8c4 d8c4 d8c4 * * 3b28 8ea2bba8,8ea2bba8v 5a8a e5aa8a 5a8a 00005a8a d8c4 d8c4 d8c4 d8c4 d8c4 d8c4 d8c4
+8448 d8c5 d8c5 d8c5 * * 3b29 8ea2bba9,8ea2bba9v 5a97 e5aa97 5a97 00005a97 d8c5 d8c5 d8c5 d8c5 d8c5 d8c5 d8c5
+8449 d8c6 d8c6 d8c6 * * 3b2a 8ea2bbaa,8ea2bbaav 5a83 e5aa83 5a83 00005a83 d8c6 d8c6 d8c6 d8c6 d8c6 d8c6 d8c6
+8450 d8c7 d8c7 d8c7 * * 3b2b 8ea2bbab,8ea2bbabv 5a8b e5aa8b 5a8b 00005a8b d8c7 d8c7 d8c7 d8c7 d8c7 d8c7 d8c7
+8451 d8c8 d8c8 d8c8 * * 3b2c 8ea2bbac,8ea2bbacv 5aa9 e5aaa9 5aa9 00005aa9 d8c8 d8c8 d8c8 d8c8 d8c8 d8c8 d8c8
+8452 d8c9 d8c9 d8c9 * * 3b2d 8ea2bbad,8ea2bbadv 5a7b e5a9bb 5a7b 00005a7b d8c9 d8c9 d8c9 d8c9 d8c9 d8c9 d8c9
+8453 d8ca d8ca d8ca * * 3b2e 8ea2bbae,8ea2bbaev 5a7d e5a9bd 5a7d 00005a7d d8ca d8ca d8ca d8ca d8ca d8ca d8ca
+8454 d8cb d8cb d8cb * * 3b2f 8ea2bbaf,8ea2bbafv 5a8c e5aa8c 5a8c 00005a8c d8cb d8cb d8cb d8cb d8cb d8cb d8cb
+8455 d8cc d8cc d8cc * * 3b30 8ea2bbb0,8ea2bbb0v 5a9c e5aa9c 5a9c 00005a9c d8cc d8cc d8cc d8cc d8cc d8cc d8cc
+8456 d8cd d8cd d8cd * * 3b31 8ea2bbb1,8ea2bbb1v 5a8f e5aa8f 5a8f 00005a8f d8cd d8cd d8cd d8cd d8cd d8cd d8cd
+8457 d8ce d8ce d8ce * * 3b32 8ea2bbb2,8ea2bbb2v 5a93 e5aa93 5a93 00005a93 d8ce d8ce d8ce d8ce d8ce d8ce d8ce
+8458 d8cf d8cf d8cf * * 3b33 8ea2bbb3,8ea2bbb3v 5a9d e5aa9d 5a9d 00005a9d d8cf d8cf d8cf d8cf d8cf d8cf d8cf
+8459 d8d0 d8d0 d8d0 * * 3b34 8ea2bbb4,8ea2bbb4v 5bea e5afaa 5bea 00005bea d8d0 d8d0 d8d0 d8d0 d8d0 d8d0 d8d0
+8460 d8d1 d8d1 d8d1 * * 3b35 8ea2bbb5,8ea2bbb5v 5bcd e5af8d 5bcd 00005bcd d8d1 d8d1 d8d1 d8d1 d8d1 d8d1 d8d1
+8461 d8d2 d8d2 d8d2 * * 3b36 8ea2bbb6,8ea2bbb6v 5bcb e5af8b 5bcb 00005bcb d8d2 d8d2 d8d2 d8d2 d8d2 d8d2 d8d2
+8462 d8d3 d8d3 d8d3 * * 3b37 8ea2bbb7,8ea2bbb7v 5bd4 e5af94 5bd4 00005bd4 d8d3 d8d3 d8d3 d8d3 d8d3 d8d3 d8d3
+8463 d8d4 d8d4 d8d4 * * 3b38 8ea2bbb8,8ea2bbb8v 5bd1 e5af91 5bd1 00005bd1 d8d4 d8d4 d8d4 d8d4 d8d4 d8d4 d8d4
+8464 d8d5 d8d5 d8d5 * * 3b39 8ea2bbb9,8ea2bbb9v 5bca e5af8a 5bca 00005bca d8d5 d8d5 d8d5 d8d5 d8d5 d8d5 d8d5
+8465 d8d6 d8d6 d8d6 * * 3b3a 8ea2bbba,8ea2bbbav 5bce e5af8e 5bce 00005bce d8d6 d8d6 d8d6 d8d6 d8d6 d8d6 d8d6
+8466 d8d7 d8d7 d8d7 * * 3b3b 8ea2bbbb,8ea2bbbbv 5c0c e5b08c 5c0c 00005c0c d8d7 d8d7 d8d7 d8d7 d8d7 d8d7 d8d7
+8467 d8d8 d8d8 d8d8 * * 3b3c 8ea2bbbc,8ea2bbbcv 5c30 e5b0b0 5c30 00005c30 d8d8 d8d8 d8d8 d8d8 d8d8 d8d8 d8d8
+8468 d8d9 d8d9 d8d9 * * 3b3d 8ea2bbbd,8ea2bbbdv 5d37 e5b4b7 5d37 00005d37 d8d9 d8d9 d8d9 d8d9 d8d9 d8d9 d8d9
+8469 d8da d8da d8da * * 3b3e 8ea2bbbe,8ea2bbbev 5d43 e5b583 5d43 00005d43 d8da d8da d8da d8da d8da d8da d8da
+8470 d8db d8db d8db * * 3b3f 8ea2bbbf,8ea2bbbfv 5d6b e5b5ab 5d6b 00005d6b d8db d8db d8db d8db d8db d8db d8db
+8471 d8dc d8dc d8dc * * 3b40 8ea2bbc0,8ea2bbc0v 5d41 e5b581 5d41 00005d41 d8dc d8dc d8dc d8dc d8dc d8dc d8dc
+8472 d8dd d8dd d8dd * * 3b41 8ea2bbc1,8ea2bbc1v 5d4b e5b58b 5d4b 00005d4b d8dd d8dd d8dd d8dd d8dd d8dd d8dd
+8473 d8de d8de d8de * * 3b42 8ea2bbc2,8ea2bbc2v 5d3f e5b4bf 5d3f 00005d3f d8de d8de d8de d8de d8de d8de d8de
+8474 d8df d8df d8df * * 3b43 8ea2bbc3,8ea2bbc3v 5d35 e5b4b5 5d35 00005d35 d8df d8df d8df d8df d8df d8df d8df
+8475 d8e0 d8e0 d8e0 * * 3b44 8ea2bbc4,8ea2bbc4v 5d51 e5b591 5d51 00005d51 d8e0 d8e0 d8e0 d8e0 d8e0 d8e0 d8e0
+8476 d8e1 d8e1 d8e1 * * 3b45 8ea2bbc5,8ea2bbc5v 5d4e e5b58e 5d4e 00005d4e d8e1 d8e1 d8e1 d8e1 d8e1 d8e1 d8e1
+8477 d8e2 d8e2 d8e2 * * 3b46 8ea2bbc6,8ea2bbc6v 5d55 e5b595 5d55 00005d55 d8e2 d8e2 d8e2 d8e2 d8e2 d8e2 d8e2
+8478 d8e3 d8e3 d8e3 * * 3b47 8ea2bbc7,8ea2bbc7v 5d33 e5b4b3 5d33 00005d33 d8e3 d8e3 d8e3 d8e3 d8e3 d8e3 d8e3
+8479 d8e4 d8e4 d8e4 * * 3b48 8ea2bbc8,8ea2bbc8v 5d3a e5b4ba 5d3a 00005d3a d8e4 d8e4 d8e4 d8e4 d8e4 d8e4 d8e4
+8480 d8e5 d8e5 d8e5 * * 3b49 8ea2bbc9,8ea2bbc9v 5d52 e5b592 5d52 00005d52 d8e5 d8e5 d8e5 d8e5 d8e5 d8e5 d8e5
+8481 d8e6 d8e6 d8e6 * * 3b4a 8ea2bbca,8ea2bbcav 5d3d e5b4bd 5d3d 00005d3d d8e6 d8e6 d8e6 d8e6 d8e6 d8e6 d8e6
+8482 d8e7 d8e7 d8e7 * * 3b4b 8ea2bbcb,8ea2bbcbv 5d31 e5b4b1 5d31 00005d31 d8e7 d8e7 d8e7 d8e7 d8e7 d8e7 d8e7
+8483 d8e8 d8e8 d8e8 * * 3b4c 8ea2bbcc,8ea2bbccv 5d59 e5b599 5d59 00005d59 d8e8 d8e8 d8e8 d8e8 d8e8 d8e8 d8e8
+8484 d8e9 d8e9 d8e9 * * 3b4d 8ea2bbcd,8ea2bbcdv 5d42 e5b582 5d42 00005d42 d8e9 d8e9 d8e9 d8e9 d8e9 d8e9 d8e9
+8485 d8ea d8ea d8ea * * 3b4e 8ea2bbce,8ea2bbcev 5d39 e5b4b9 5d39 00005d39 d8ea d8ea d8ea d8ea d8ea d8ea d8ea
+8486 d8eb d8eb d8eb * * 3b4f 8ea2bbcf,8ea2bbcfv 5d49 e5b589 5d49 00005d49 d8eb d8eb d8eb d8eb d8eb d8eb d8eb
+8487 d8ec d8ec d8ec * * 3b50 8ea2bbd0,8ea2bbd0v 5d38 e5b4b8 5d38 00005d38 d8ec d8ec d8ec d8ec d8ec d8ec d8ec
+8488 d8ed d8ed d8ed * * 3b51 8ea2bbd1,8ea2bbd1v 5d3c e5b4bc 5d3c 00005d3c d8ed d8ed d8ed d8ed d8ed d8ed d8ed
+8489 d8ee d8ee d8ee * * 3b52 8ea2bbd2,8ea2bbd2v 5d32 e5b4b2 5d32 00005d32 d8ee d8ee d8ee d8ee d8ee d8ee d8ee
+8490 d8ef d8ef d8ef * * 3b53 8ea2bbd3,8ea2bbd3v 5d36 e5b4b6 5d36 00005d36 d8ef d8ef d8ef d8ef d8ef d8ef d8ef
+8491 d8f0 d8f0 d8f0 * * 3b54 8ea2bbd4,8ea2bbd4v 5d40 e5b580 5d40 00005d40 d8f0 d8f0 d8f0 d8f0 d8f0 d8f0 d8f0
+8492 d8f1 d8f1 d8f1 * * 3b55 8ea2bbd5,8ea2bbd5v 5d45 e5b585 5d45 00005d45 d8f1 d8f1 d8f1 d8f1 d8f1 d8f1 d8f1
+8493 d8f2 d8f2 d8f2 * * 3b56 8ea2bbd6,8ea2bbd6v 5e44 e5b984 5e44 00005e44 d8f2 d8f2 d8f2 d8f2 d8f2 d8f2 d8f2
+8494 d8f3 d8f3 d8f3 * * 3b57 8ea2bbd7,8ea2bbd7v 5e41 e5b981 5e41 00005e41 d8f3 d8f3 d8f3 d8f3 d8f3 d8f3 d8f3
+8495 d8f4 d8f4 d8f4 * * 3b58 8ea2bbd8,8ea2bbd8v 5f58 e5bd98,ee8589 5f58,e149 00005f58,0000e149 fc4f,d8f4 d8f4 d8f4 d8f4,fc4f d8f4 d8f4 fc4f,d8f4
+8496 d8f5 d8f5 d8f5 * * 3b59 8ea2bbd9,8ea2bbd9v 5fa6 e5bea6 5fa6 00005fa6 d8f5 d8f5 d8f5 d8f5 d8f5 d8f5 d8f5
+8497 d8f6 d8f6 d8f6 * * 3b5a 8ea2bbda,8ea2bbdav 5fa5 e5bea5 5fa5 00005fa5 d8f6 d8f6 d8f6 d8f6 d8f6 d8f6 d8f6
+8498 d8f7 d8f7 d8f7 * * 3b5b 8ea2bbdb,8ea2bbdbv 5fab e5beab 5fab 00005fab d8f7 d8f7 d8f7 d8f7 d8f7 d8f7 d8f7
+8499 d8f8 d8f8 d8f8 * * 3b5c 8ea2bbdc,8ea2bbdcv 60c9 e68389 60c9 000060c9 d8f8 d8f8 d8f8 d8f8 d8f8 d8f8 d8f8
+8500 d8f9 d8f9 d8f9 * * 3b5d 8ea2bbdd,8ea2bbddv 60b9 e682b9 60b9 000060b9 d8f9 d8f9 d8f9 d8f9 d8f9 d8f9 d8f9
+8501 d8fa d8fa d8fa * * 3b5e 8ea2bbde,8ea2bbdev 60cc e6838c 60cc 000060cc d8fa d8fa d8fa d8fa d8fa d8fa d8fa
+8502 d8fb d8fb d8fb * * 3b5f 8ea2bbdf,8ea2bbdfv 60e2 e683a2 60e2 000060e2 d8fb d8fb d8fb d8fb d8fb d8fb d8fb
+8503 d8fc d8fc d8fc * * 3b60 8ea2bbe0,8ea2bbe0v 60ce e6838e 60ce 000060ce d8fc d8fc d8fc d8fc d8fc d8fc d8fc
+8504 d8fd d8fd d8fd * * 3b61 8ea2bbe1,8ea2bbe1v 60c4 e68384 60c4 000060c4 d8fd d8fd d8fd d8fd d8fd d8fd d8fd
+8505 d8fe d8fe d8fe * * 3b62 8ea2bbe2,8ea2bbe2v 6114 e68494 6114 00006114 d8fe d8fe d8fe d8fe d8fe d8fe d8fe
+8506 d940 d940 d940 * * 3b63 8ea2bbe3,8ea2bbe3v 60f2 e683b2 60f2 000060f2 d940 d940 d940 d940 d940 d940 d940
+8507 d941 d941 d941 * * 3b64 8ea2bbe4,8ea2bbe4v 610a e6848a 610a 0000610a d941 d941 d941 d941 d941 d941 d941
+8508 d942 d942 d942 * * 3b65 8ea2bbe5,8ea2bbe5v 6116 e68496 6116 00006116 d942 d942 d942 d942 d942 d942 d942
+8509 d943 d943 d943 * * 3b66 8ea2bbe6,8ea2bbe6v 6105 e68485 6105 00006105 d943 d943 d943 d943 d943 d943 d943
+8510 d944 d944 d944 * * 3b67 8ea2bbe7,8ea2bbe7v 60f5 e683b5 60f5 000060f5 d944 d944 d944 d944 d944 d944 d944
+8511 d945 d945 d945 * * 3b68 8ea2bbe8,8ea2bbe8v 6113 e68493 6113 00006113 d945 d945 d945 d945 d945 d945 d945
+8512 d946 d946 d946 * * 3b69 8ea2bbe9,8ea2bbe9v 60f8 e683b8 60f8 000060f8 d946 d946 d946 d946 d946 d946 d946
+8513 d947 d947 d947 * * 3b6a 8ea2bbea,8ea2bbeav 60fc e683bc 60fc 000060fc d947 d947 d947 d947 d947 d947 d947
+8514 d948 d948 d948 * * 3b6b 8ea2bbeb,8ea2bbebv 60fe e683be 60fe 000060fe d948 d948 d948 d948 d948 d948 d948
+8515 d949 d949 d949 * * 3b6c 8ea2bbec,8ea2bbecv 60c1 e68381 60c1 000060c1 d949 d949 d949 d949 d949 d949 d949
+8516 d94a d94a d94a * * 3b6d 8ea2bbed,8ea2bbedv 6103 e68483 6103 00006103 d94a d94a d94a d94a d94a d94a d94a
+8517 d94b d94b d94b * * 3b6e 8ea2bbee,8ea2bbeev 6118 e68498 6118 00006118 d94b d94b d94b d94b d94b d94b d94b
+8518 d94c d94c d94c * * 3b6f 8ea2bbef,8ea2bbefv 611d e6849d 611d 0000611d d94c d94c d94c d94c d94c d94c d94c
+8519 d94d d94d d94d * * 3b70 8ea2bbf0,8ea2bbf0v 6110 e68490 6110 00006110 d94d d94d d94d d94d d94d d94d d94d
+8520 d94e d94e d94e * * 3b71 8ea2bbf1,8ea2bbf1v 60ff e683bf 60ff 000060ff d94e d94e d94e d94e d94e d94e d94e
+8521 d94f d94f d94f * * 3b72 8ea2bbf2,8ea2bbf2v 6104 e68484 6104 00006104 d94f d94f d94f d94f d94f d94f d94f
+8522 d950 d950 d950 * * 3b73 8ea2bbf3,8ea2bbf3v 610b e6848b 610b 0000610b d950 d950 d950 d950 d950 d950 d950
+8523 d951 d951 d951 * * 3b74 8ea2bbf4,8ea2bbf4v 624a e6898a 624a 0000624a d951 d951 d951 d951 d951 d951 d951
+8524 d952 d952 d952 * * 3b75 8ea2bbf5,8ea2bbf5v 6394 e68e94 6394 00006394 d952 d952 d952 d952 d952 d952 d952
+8525 d953 d953 d953 * * 3b76 8ea2bbf6,8ea2bbf6v 63b1 e68eb1 63b1 000063b1 d953 d953 d953 d953 d953 d953 d953
+8526 d954 d954 d954 * * 3b77 8ea2bbf7,8ea2bbf7v 63b0 e68eb0 63b0 000063b0 d954 d954 d954 d954 d954 d954 d954
+8527 d955 d955 d955 * * 3b78 8ea2bbf8,8ea2bbf8v 63ce e68f8e 63ce 000063ce d955 d955 d955 d955 d955 d955 d955
+8528 d956 d956 d956 * * 3b79 8ea2bbf9,8ea2bbf9v 63e5 e68fa5 63e5 000063e5 d956 d956 d956 d956 d956 d956 d956
+8529 d957 d957 d957 * * 3b7a 8ea2bbfa,8ea2bbfav 63e8 e68fa8 63e8 000063e8 d957 d957 d957 d957 d957 d957 d957
+8530 d958 d958 d958 * * 3b7b 8ea2bbfb,8ea2bbfbv 63ef e68faf 63ef 000063ef d958 d958 d958 d958 d958 d958 d958
+8531 d959 d959 d959 * * 3b7c 8ea2bbfc,8ea2bbfcv 63c3 e68f83 63c3 000063c3 d959 d959 d959 d959 d959 d959 d959
+8532 d95a d95a d95a * * 3b7d 8ea2bbfd,8ea2bbfdv 649d e6929d 649d 0000649d d95a d95a d95a d95a d95a d95a d95a
+8533 d95b d95b d95b * * 3b7e 8ea2bbfe,8ea2bbfev 63f3 e68fb3 63f3 000063f3 d95b d95b d95b d95b d95b d95b d95b
+8534 d95c d95c d95c * * 3c21 8ea2bca1,8ea2bca1v 63ca e68f8a 63ca 000063ca d95c d95c d95c d95c d95c d95c d95c
+8535 d95d d95d d95d * * 3c22 8ea2bca2,8ea2bca2v 63e0 e68fa0 63e0 000063e0 d95d d95d d95d d95d d95d d95d d95d
+8536 d95e d95e d95e * * 3c23 8ea2bca3,8ea2bca3v 63f6 e68fb6 63f6 000063f6 d95e d95e d95e d95e d95e d95e d95e
+8537 d95f d95f d95f * * 3c24 8ea2bca4,8ea2bca4v 63d5 e68f95 63d5 000063d5 d95f d95f d95f d95f d95f d95f d95f
+8538 d960 d960 d960 * * 3c25 8ea2bca5,8ea2bca5v 63f2 e68fb2 63f2 000063f2 d960 d960 d960 d960 d960 d960 d960
+8539 d961 d961 d961 * * 3c26 8ea2bca6,8ea2bca6v 63f5 e68fb5 63f5 000063f5 d961 d961 d961 d961 d961 d961 d961
+8540 d962 d962 d962 * * 3c27 8ea2bca7,8ea2bca7v 6461 e691a1 6461 00006461 d962 d962 d962 d962 d962 d962 d962
+8541 d963 d963 d963 * * 3c28 8ea2bca8,8ea2bca8v 63df e68f9f 63df 000063df d963 d963 d963 d963 d963 d963 d963
+8542 d964 d964 d964 * * 3c29 8ea2bca9,8ea2bca9v 63be e68ebe 63be 000063be d964 d964 d964 d964 d964 d964 d964
+8543 d965 d965 d965 * * 3c2a 8ea2bcaa,8ea2bcaav 63dd e68f9d 63dd 000063dd d965 d965 d965 d965 d965 d965 d965
+8544 d966 d966 d966 * * 3c2b 8ea2bcab,8ea2bcabv 63dc e68f9c 63dc 000063dc d966 d966 d966 d966 d966 d966 d966
+8545 d967 d967 d967 * * 3c2c 8ea2bcac,8ea2bcacv 63c4 e68f84 63c4 000063c4 d967 d967 d967 d967 d967 d967 d967
+8546 d968 d968 d968 * * 3c2d 8ea2bcad,8ea2bcadv 63d8 e68f98 63d8 000063d8 d968 d968 d968 d968 d968 d968 d968
+8547 d969 d969 d969 * * 3c2e 8ea2bcae,8ea2bcaev 63d3 e68f93 63d3 000063d3 d969 d969 d969 d969 d969 d969 d969
+8548 d96a d96a d96a * * 3c2f 8ea2bcaf,8ea2bcafv 63c2 e68f82 63c2 000063c2 d96a d96a d96a d96a d96a d96a d96a
+8549 d96b d96b d96b * * 3c30 8ea2bcb0,8ea2bcb0v 63c7 e68f87 63c7 000063c7 d96b d96b d96b d96b d96b d96b d96b
+8550 d96c d96c d96c * * 3c31 8ea2bcb1,8ea2bcb1v 63cc e68f8c 63cc 000063cc d96c d96c d96c d96c d96c d96c d96c
+8551 d96d d96d d96d * * 3c32 8ea2bcb2,8ea2bcb2v 63cb e68f8b 63cb 000063cb d96d d96d d96d d96d d96d d96d d96d
+8552 d96e d96e d96e * * 3c33 8ea2bcb3,8ea2bcb3v 63c8 e68f88 63c8 000063c8 d96e d96e d96e d96e d96e d96e d96e
+8553 d96f d96f d96f * * 3c34 8ea2bcb4,8ea2bcb4v 63f0 e68fb0 63f0 000063f0 d96f d96f d96f d96f d96f d96f d96f
+8554 d970 d970 d970 * * 3c35 8ea2bcb5,8ea2bcb5v 63d7 e68f97 63d7 000063d7 d970 d970 d970 d970 d970 d970 d970
+8555 d971 d971 d971 * * 3c36 8ea2bcb6,8ea2bcb6v 63d9 e68f99 63d9 000063d9 d971 d971 d971 d971 d971 d971 d971
+8556 d972 d972 d972 * * 3c37 8ea2bcb7,8ea2bcb7v 6532 e694b2 6532 00006532 d972 d972 d972 d972 d972 d972 d972
+8557 d973 d973 d973 * * 3c38 8ea2bcb8,8ea2bcb8v 6567 e695a7 6567 00006567 d973 d973 d973 d973 d973 d973 d973
+8558 d974 d974 d974 * * 3c39 8ea2bcb9,8ea2bcb9v 656a e695aa 656a 0000656a d974 d974 d974 d974 d974 d974 d974
+8559 d975 d975 d975 * * 3c3a 8ea2bcba,8ea2bcbav 6564 e695a4 6564 00006564 d975 d975 d975 d975 d975 d975 d975
+8560 d976 d976 d976 * * 3c3b 8ea2bcbb,8ea2bcbbv 655c e6959c 655c 0000655c d976 d976 d976 d976 d976 d976 d976
+8561 d977 d977 d977 * * 3c3c 8ea2bcbc,8ea2bcbcv 6568 e695a8 6568 00006568 d977 d977 d977 d977 d977 d977 d977
+8562 d978 d978 d978 * * 3c3d 8ea2bcbd,8ea2bcbdv 6565 e695a5 6565 00006565 d978 d978 d978 d978 d978 d978 d978
+8563 d979 d979 d979 * * 3c3e 8ea2bcbe,8ea2bcbev 658c e6968c 658c 0000658c d979 d979 d979 d979 d979 d979 d979
+8564 d97a d97a d97a * * 3c3f 8ea2bcbf,8ea2bcbfv 659d e6969d 659d 0000659d d97a d97a d97a d97a d97a d97a d97a
+8565 d97b d97b d97b * * 3c40 8ea2bcc0,8ea2bcc0v 659e e6969e 659e 0000659e d97b d97b d97b d97b d97b d97b d97b
+8566 d97c d97c d97c * * 3c41 8ea2bcc1,8ea2bcc1v 65ae e696ae 65ae 000065ae d97c d97c d97c d97c d97c d97c d97c
+8567 d97d d97d d97d * * 3c42 8ea2bcc2,8ea2bcc2v 65d0 e69790 65d0 000065d0 d97d d97d d97d d97d d97d d97d d97d
+8568 d97e d97e d97e * * 3c43 8ea2bcc3,8ea2bcc3v 65d2 e69792 65d2 000065d2 d97e d97e d97e d97e d97e d97e d97e
+8569 d9a1 d9a1 d9a1 * * 3c44 8ea2bcc4,8ea2bcc4v 667c e699bc 667c 0000667c d9a1 d9a1 d9a1 d9a1 d9a1 d9a1 d9a1
+8570 d9a2 d9a2 d9a2 * * 3c45 8ea2bcc5,8ea2bcc5v 666c e699ac 666c 0000666c d9a2 d9a2 d9a2 d9a2 d9a2 d9a2 d9a2
+8571 d9a3 d9a3 d9a3 * * 3c46 8ea2bcc6,8ea2bcc6v 667b e699bb 667b 0000667b d9a3 d9a3 d9a3 d9a3 d9a3 d9a3 d9a3
+8572 d9a4 d9a4 d9a4 * * 3c47 8ea2bcc7,8ea2bcc7v 6680 e69a80 6680 00006680 d9a4 d9a4 d9a4 d9a4 d9a4 d9a4 d9a4
+8573 d9a5 d9a5 d9a5 * * 3c48 8ea2bcc8,8ea2bcc8v 6671 e699b1 6671 00006671 d9a5 d9a5 d9a5 d9a5 d9a5 d9a5 d9a5
+8574 d9a6 d9a6 d9a6 * * 3c49 8ea2bcc9,8ea2bcc9v 6679 e699b9 6679 00006679 d9a6 d9a6 d9a6 d9a6 d9a6 d9a6 d9a6
+8575 d9a7 d9a7 d9a7 * * 3c4a 8ea2bcca,8ea2bccav 666a e699aa 666a 0000666a d9a7 d9a7 d9a7 d9a7 d9a7 d9a7 d9a7
+8576 d9a8 d9a8 d9a8 * * 3c4b 8ea2bccb,8ea2bccbv 6672 e699b2 6672 00006672 d9a8 d9a8 d9a8 d9a8 d9a8 d9a8 d9a8
+8577 d9a9 d9a9 d9a9 * * 3c4c 8ea2bccc,8ea2bcccv 6701 e69c81 6701 00006701 d9a9 d9a9 d9a9 d9a9 d9a9 d9a9 d9a9
+8578 d9aa d9aa d9aa * * 3c4d 8ea2bccd,8ea2bccdv 690c e6a48c 690c 0000690c d9aa d9aa d9aa d9aa d9aa d9aa d9aa
+8579 d9ab d9ab d9ab * * 3c4e 8ea2bcce,8ea2bccev 68d3 e6a393 68d3 000068d3 d9ab d9ab d9ab d9ab d9ab d9ab d9ab
+8580 d9ac d9ac d9ac * * 3c4f 8ea2bccf,8ea2bccfv 6904 e6a484 6904 00006904 d9ac d9ac d9ac d9ac d9ac d9ac d9ac
+8581 d9ad d9ad d9ad * * 3c50 8ea2bcd0,8ea2bcd0v 68dc e6a39c 68dc 000068dc d9ad d9ad d9ad d9ad d9ad d9ad d9ad
+8582 d9ae d9ae d9ae * * 3c51 8ea2bcd1,8ea2bcd1v 692a e6a4aa 692a 0000692a d9ae d9ae d9ae d9ae d9ae d9ae d9ae
+8583 d9af d9af d9af * * 3c52 8ea2bcd2,8ea2bcd2v 68ec e6a3ac 68ec 000068ec d9af d9af d9af d9af d9af d9af d9af
+8584 d9b0 d9b0 d9b0 * * 3c53 8ea2bcd3,8ea2bcd3v 68ea e6a3aa 68ea 000068ea d9b0 d9b0 d9b0 d9b0 d9b0 d9b0 d9b0
+8585 d9b1 d9b1 d9b1 * * 3c54 8ea2bcd4,8ea2bcd4v 68f1 e6a3b1 68f1 000068f1 d9b1 d9b1 d9b1 d9b1 d9b1 d9b1 d9b1
+8586 d9b2 d9b2 d9b2 * * 3c55 8ea2bcd5,8ea2bcd5v 690f e6a48f 690f 0000690f d9b2 d9b2 d9b2 d9b2 d9b2 d9b2 d9b2
+8587 d9b3 d9b3 d9b3 * * 3c56 8ea2bcd6,8ea2bcd6v 68d6 e6a396 68d6 000068d6 d9b3 d9b3 d9b3 d9b3 d9b3 d9b3 d9b3
+8588 d9b4 d9b4 d9b4 * * 3c57 8ea2bcd7,8ea2bcd7v 68f7 e6a3b7 68f7 000068f7 d9b4 d9b4 d9b4 d9b4 d9b4 d9b4 d9b4
+8589 d9b5 d9b5 d9b5 * * 3c58 8ea2bcd8,8ea2bcd8v 68eb e6a3ab 68eb 000068eb d9b5 d9b5 d9b5 d9b5 d9b5 d9b5 d9b5
+8590 d9b6 d9b6 d9b6 * * 3c59 8ea2bcd9,8ea2bcd9v 68e4 e6a3a4 68e4 000068e4 d9b6 d9b6 d9b6 d9b6 d9b6 d9b6 d9b6
+8591 d9b7 d9b7 d9b7 * * 3c5a 8ea2bcda,8ea2bcdav 68f6 e6a3b6 68f6 000068f6 d9b7 d9b7 d9b7 d9b7 d9b7 d9b7 d9b7
+8592 d9b8 d9b8 d9b8 * * 3c5b 8ea2bcdb,8ea2bcdbv 6913 e6a493 6913 00006913 d9b8 d9b8 d9b8 d9b8 d9b8 d9b8 d9b8
+8593 d9b9 d9b9 d9b9 * * 3c5c 8ea2bcdc,8ea2bcdcv 6910 e6a490 6910 00006910 d9b9 d9b9 d9b9 d9b9 d9b9 d9b9 d9b9
+8594 d9ba d9ba d9ba * * 3c5d 8ea2bcdd,8ea2bcddv 68f3 e6a3b3 68f3 000068f3 d9ba d9ba d9ba d9ba d9ba d9ba d9ba
+8595 d9bb d9bb d9bb * * 3c5e 8ea2bcde,8ea2bcdev 68e1 e6a3a1 68e1 000068e1 d9bb d9bb d9bb d9bb d9bb d9bb d9bb
+8596 d9bc d9bc d9bc * * 3c5f 8ea2bcdf,8ea2bcdfv 6907 e6a487 6907 00006907 d9bc d9bc d9bc d9bc d9bc d9bc d9bc
+8597 d9bd d9bd d9bd * * 3c60 8ea2bce0,8ea2bce0v 68cc e6a38c 68cc 000068cc d9bd d9bd d9bd d9bd d9bd d9bd d9bd
+8598 d9be d9be d9be * * 3c61 8ea2bce1,8ea2bce1v 6908 e6a488 6908 00006908 d9be d9be d9be d9be d9be d9be d9be
+8599 d9bf d9bf d9bf * * 3c62 8ea2bce2,8ea2bce2v 6970 e6a5b0 6970 00006970 d9bf d9bf d9bf d9bf d9bf d9bf d9bf
+8600 d9c0 d9c0 d9c0 * * 3c63 8ea2bce3,8ea2bce3v 68b4 e6a2b4 68b4 000068b4 d9c0 d9c0 d9c0 d9c0 d9c0 d9c0 d9c0
+8601 d9c1 d9c1 d9c1 * * 3c64 8ea2bce4,8ea2bce4v 6911 e6a491 6911 00006911 d9c1 d9c1 d9c1 d9c1 d9c1 d9c1 d9c1
+8602 d9c2 d9c2 d9c2 * * 3c65 8ea2bce5,8ea2bce5v 68ef e6a3af 68ef 000068ef d9c2 d9c2 d9c2 d9c2 d9c2 d9c2 d9c2
+8603 d9c3 d9c3 d9c3 * * 3c66 8ea2bce6,8ea2bce6v 68c6 e6a386 68c6 000068c6 d9c3 d9c3 d9c3 d9c3 d9c3 d9c3 d9c3
+8604 d9c4 d9c4 d9c4 * * 3c67 8ea2bce7,8ea2bce7v 6914 e6a494 6914 00006914 d9c4 d9c4 d9c4 d9c4 d9c4 d9c4 d9c4
+8605 d9c5 d9c5 d9c5 * * 3c68 8ea2bce8,8ea2bce8v 68f8 e6a3b8 68f8 000068f8 d9c5 d9c5 d9c5 d9c5 d9c5 d9c5 d9c5
+8606 d9c6 d9c6 d9c6 * * 3c69 8ea2bce9,8ea2bce9v 68d0 e6a390 68d0 000068d0 d9c6 d9c6 d9c6 d9c6 d9c6 d9c6 d9c6
+8607 d9c7 d9c7 d9c7 * * 3c6a 8ea2bcea,8ea2bceav 68fd e6a3bd 68fd 000068fd d9c7 d9c7 d9c7 d9c7 d9c7 d9c7 d9c7
+8608 d9c8 d9c8 d9c8 * * 3c6b 8ea2bceb,8ea2bcebv 68fc e6a3bc 68fc 000068fc d9c8 d9c8 d9c8 d9c8 d9c8 d9c8 d9c8
+8609 d9c9 d9c9 d9c9 * * 3c6c 8ea2bcec,8ea2bcecv 68e8 e6a3a8 68e8 000068e8 d9c9 d9c9 d9c9 d9c9 d9c9 d9c9 d9c9
+8610 d9ca d9ca d9ca * * 3c6d 8ea2bced,8ea2bcedv 690b e6a48b 690b 0000690b d9ca d9ca d9ca d9ca d9ca d9ca d9ca
+8611 d9cb d9cb d9cb * * 3c6e 8ea2bcee,8ea2bceev 690a e6a48a 690a 0000690a d9cb d9cb d9cb d9cb d9cb d9cb d9cb
+8612 d9cc d9cc d9cc * * 3c6f 8ea2bcef,8ea2bcefv 6917 e6a497 6917 00006917 d9cc d9cc d9cc d9cc d9cc d9cc d9cc
+8613 d9cd d9cd d9cd * * 3c70 8ea2bcf0,8ea2bcf0v 68ce e6a38e 68ce 000068ce d9cd d9cd d9cd d9cd d9cd d9cd d9cd
+8614 d9ce d9ce d9ce * * 3c71 8ea2bcf1,8ea2bcf1v 68c8 e6a388 68c8 000068c8 d9ce d9ce d9ce d9ce d9ce d9ce d9ce
+8615 d9cf d9cf d9cf * * 3c72 8ea2bcf2,8ea2bcf2v 68dd e6a39d 68dd 000068dd d9cf d9cf d9cf d9cf d9cf d9cf d9cf
+8616 d9d0 d9d0 d9d0 * * 3c73 8ea2bcf3,8ea2bcf3v 68de e6a39e 68de 000068de d9d0 d9d0 d9d0 d9d0 d9d0 d9d0 d9d0
+8617 d9d1 d9d1 d9d1 * * 3c74 8ea2bcf4,8ea2bcf4v 68e6 e6a3a6 68e6 000068e6 d9d1 d9d1 d9d1 d9d1 d9d1 d9d1 d9d1
+8618 d9d2 d9d2 d9d2 * * 3c75 8ea2bcf5,8ea2bcf5v 68f4 e6a3b4 68f4 000068f4 d9d2 d9d2 d9d2 d9d2 d9d2 d9d2 d9d2
+8619 d9d3 d9d3 d9d3 * * 3c76 8ea2bcf6,8ea2bcf6v 68d1 e6a391 68d1 000068d1 d9d3 d9d3 d9d3 d9d3 d9d3 d9d3 d9d3
+8620 d9d4 d9d4 d9d4 * * 3c77 8ea2bcf7,8ea2bcf7v 6906 e6a486 6906 00006906 d9d4 d9d4 d9d4 d9d4 d9d4 d9d4 d9d4
+8621 d9d5 d9d5 d9d5 * * 3c78 8ea2bcf8,8ea2bcf8v 68d4 e6a394 68d4 000068d4 d9d5 d9d5 d9d5 d9d5 d9d5 d9d5 d9d5
+8622 d9d6 d9d6 d9d6 * * 3c79 8ea2bcf9,8ea2bcf9v 68e9 e6a3a9 68e9 000068e9 d9d6 d9d6 d9d6 d9d6 d9d6 d9d6 d9d6
+8623 d9d7 d9d7 d9d7 * * 3c7a 8ea2bcfa,8ea2bcfav 6915 e6a495 6915 00006915 d9d7 d9d7 d9d7 d9d7 d9d7 d9d7 d9d7
+8624 d9d8 d9d8 d9d8 * * 3c7b 8ea2bcfb,8ea2bcfbv 6925 e6a4a5 6925 00006925 d9d8 d9d8 d9d8 d9d8 d9d8 d9d8 d9d8
+8625 d9d9 d9d9 d9d9 * * 3c7c 8ea2bcfc,8ea2bcfcv 68c7 e6a387 68c7 000068c7 d9d9 d9d9 d9d9 d9d9 d9d9 d9d9 d9d9
+8626 d9da d9da d9da * * 3c7d 8ea2bcfd,8ea2bcfdv 6b39 e6acb9 6b39 00006b39 d9da d9da d9da d9da d9da d9da d9da
+8627 d9db d9db d9db * * 3c7e 8ea2bcfe,8ea2bcfev 6b3b e6acbb 6b3b 00006b3b d9db d9db d9db d9db d9db d9db d9db
+8628 d9dc d9dc d9dc * * 3d21 8ea2bda1,8ea2bda1v 6b3f e6acbf 6b3f 00006b3f d9dc d9dc d9dc d9dc d9dc d9dc d9dc
+8629 d9dd d9dd d9dd * * 3d22 8ea2bda2,8ea2bda2v 6b3c e6acbc 6b3c 00006b3c d9dd d9dd d9dd d9dd d9dd d9dd d9dd
+8630 d9de d9de d9de * * 3d23 8ea2bda3,8ea2bda3v 6b94 e6ae94 6b94 00006b94 d9de d9de d9de d9de d9de d9de d9de
+8631 d9df d9df d9df * * 3d24 8ea2bda4,8ea2bda4v 6b97 e6ae97 6b97 00006b97 d9df d9df d9df d9df d9df d9df d9df
+8632 d9e0 d9e0 d9e0 * * 3d25 8ea2bda5,8ea2bda5v 6b99 e6ae99 6b99 00006b99 d9e0 d9e0 d9e0 d9e0 d9e0 d9e0 d9e0
+8633 d9e1 d9e1 d9e1 * * 3d26 8ea2bda6,8ea2bda6v 6b95 e6ae95 6b95 00006b95 d9e1 d9e1 d9e1 d9e1 d9e1 d9e1 d9e1
+8634 d9e2 d9e2 d9e2 * * 3d27 8ea2bda7,8ea2bda7v 6bbd e6aebd 6bbd 00006bbd d9e2 d9e2 d9e2 d9e2 d9e2 d9e2 d9e2
+8635 d9e3 d9e3 d9e3 * * 3d28 8ea2bda8,8ea2bda8v 6bf0 e6afb0 6bf0 00006bf0 d9e3 d9e3 d9e3 d9e3 d9e3 d9e3 d9e3
+8636 d9e4 d9e4 d9e4 * * 3d29 8ea2bda9,8ea2bda9v 6bf2 e6afb2 6bf2 00006bf2 d9e4 d9e4 d9e4 d9e4 d9e4 d9e4 d9e4
+8637 d9e5 d9e5 d9e5 * * 3d2a 8ea2bdaa,8ea2bdaav 6bf3 e6afb3 6bf3 00006bf3 d9e5 d9e5 d9e5 d9e5 d9e5 d9e5 d9e5
+8638 d9e6 d9e6 d9e6 * * 3d2b 8ea2bdab,8ea2bdabv 6c30 e6b0b0 6c30 00006c30 d9e6 d9e6 d9e6 d9e6 d9e6 d9e6 d9e6
+8639 d9e7 d9e7 d9e7 * * 3d2c 8ea2bdac,8ea2bdacv 6dfc e6b7bc 6dfc 00006dfc d9e7 d9e7 d9e7 d9e7 d9e7 d9e7 d9e7
+8640 d9e8 d9e8 d9e8 * * 3d2d 8ea2bdad,8ea2bdadv 6e46 e6b986 6e46 00006e46 d9e8 d9e8 d9e8 d9e8 d9e8 d9e8 d9e8
+8641 d9e9 d9e9 d9e9 * * 3d2e 8ea2bdae,8ea2bdaev 6e47 e6b987 6e47 00006e47 d9e9 d9e9 d9e9 d9e9 d9e9 d9e9 d9e9
+8642 d9ea d9ea d9ea * * 3d2f 8ea2bdaf,8ea2bdafv 6e1f e6b89f 6e1f 00006e1f d9ea d9ea d9ea d9ea d9ea d9ea d9ea
+8643 d9eb d9eb d9eb * * 3d30 8ea2bdb0,8ea2bdb0v 6e49 e6b989 6e49 00006e49 d9eb d9eb d9eb d9eb d9eb d9eb d9eb
+8644 d9ec d9ec d9ec * * 3d31 8ea2bdb1,8ea2bdb1v 6e88 e6ba88 6e88 00006e88 d9ec d9ec d9ec d9ec d9ec d9ec d9ec
+8645 d9ed d9ed d9ed * * 3d32 8ea2bdb2,8ea2bdb2v 6e3c e6b8bc 6e3c 00006e3c d9ed d9ed d9ed d9ed d9ed d9ed d9ed
+8646 d9ee d9ee d9ee * * 3d33 8ea2bdb3,8ea2bdb3v 6e3d e6b8bd 6e3d 00006e3d d9ee d9ee d9ee d9ee d9ee d9ee d9ee
+8647 d9ef d9ef d9ef * * 3d34 8ea2bdb4,8ea2bdb4v 6e45 e6b985 6e45 00006e45 d9ef d9ef d9ef d9ef d9ef d9ef d9ef
+8648 d9f0 d9f0 d9f0 * * 3d35 8ea2bdb5,8ea2bdb5v 6e62 e6b9a2 6e62 00006e62 d9f0 d9f0 d9f0 d9f0 d9f0 d9f0 d9f0
+8649 d9f1 d9f1 d9f1 * * 3d36 8ea2bdb6,8ea2bdb6v 6e2b e6b8ab 6e2b 00006e2b d9f1 d9f1 d9f1 d9f1 d9f1 d9f1 d9f1
+8650 d9f2 d9f2 d9f2 * * 3d37 8ea2bdb7,8ea2bdb7v 6e3f e6b8bf 6e3f 00006e3f d9f2 d9f2 d9f2 d9f2 d9f2 d9f2 d9f2
+8651 d9f3 d9f3 d9f3 * * 3d38 8ea2bdb8,8ea2bdb8v 6e41 e6b981 6e41 00006e41 d9f3 d9f3 d9f3 d9f3 d9f3 d9f3 d9f3
+8652 d9f4 d9f4 d9f4 * * 3d39 8ea2bdb9,8ea2bdb9v 6e5d e6b99d 6e5d 00006e5d d9f4 d9f4 d9f4 d9f4 d9f4 d9f4 d9f4
+8653 d9f5 d9f5 d9f5 * * 3d3a 8ea2bdba,8ea2bdbav 6e73 e6b9b3 6e73 00006e73 d9f5 d9f5 d9f5 d9f5 d9f5 d9f5 d9f5
+8654 d9f6 d9f6 d9f6 * * 3d3b 8ea2bdbb,8ea2bdbbv 6e1c e6b89c 6e1c 00006e1c d9f6 d9f6 d9f6 d9f6 d9f6 d9f6 d9f6
+8655 d9f7 d9f7 d9f7 * * 3d3c 8ea2bdbc,8ea2bdbcv 6e33 e6b8b3 6e33 00006e33 d9f7 d9f7 d9f7 d9f7 d9f7 d9f7 d9f7
+8656 d9f8 d9f8 d9f8 * * 3d3d 8ea2bdbd,8ea2bdbdv 6e4b e6b98b 6e4b 00006e4b d9f8 d9f8 d9f8 d9f8 d9f8 d9f8 d9f8
+8657 d9f9 d9f9 d9f9 * * 3d3e 8ea2bdbe,8ea2bdbev 6e40 e6b980 6e40 00006e40 d9f9 d9f9 d9f9 d9f9 d9f9 d9f9 d9f9
+8658 d9fa d9fa d9fa * * 3d3f 8ea2bdbf,8ea2bdbfv 6e51 e6b991 6e51 00006e51 d9fa d9fa d9fa d9fa d9fa d9fa d9fa
+8659 d9fb d9fb d9fb * * 3d40 8ea2bdc0,8ea2bdc0v 6e3b e6b8bb 6e3b 00006e3b d9fb d9fb d9fb d9fb d9fb d9fb d9fb
+8660 d9fc d9fc d9fc * * 3d41 8ea2bdc1,8ea2bdc1v 6e03 e6b883 6e03 00006e03 d9fc d9fc d9fc d9fc d9fc d9fc d9fc
+8661 d9fd d9fd d9fd * * 3d42 8ea2bdc2,8ea2bdc2v 6e2e e6b8ae 6e2e 00006e2e d9fd d9fd d9fd d9fd d9fd d9fd d9fd
+8662 d9fe d9fe d9fe * * 3d43 8ea2bdc3,8ea2bdc3v 6e5e e6b99e 6e5e 00006e5e d9fe d9fe d9fe d9fe d9fe d9fe d9fe
+8663 da40 da40 da40 * * 3d44 8ea2bdc4,8ea2bdc4v 6e68 e6b9a8 6e68 00006e68 da40 da40 da40 da40 da40 da40 da40
+8664 da41 da41 da41 * * 3d45 8ea2bdc5,8ea2bdc5v 6e5c e6b99c 6e5c 00006e5c da41 da41 da41 da41 da41 da41 da41
+8665 da42 da42 da42 * * 3d46 8ea2bdc6,8ea2bdc6v 6e61 e6b9a1 6e61 00006e61 da42 da42 da42 da42 da42 da42 da42
+8666 da43 da43 da43 * * 3d47 8ea2bdc7,8ea2bdc7v 6e31 e6b8b1 6e31 00006e31 da43 da43 da43 da43 da43 da43 da43
+8667 da44 da44 da44 * * 3d48 8ea2bdc8,8ea2bdc8v 6e28 e6b8a8 6e28 00006e28 da44 da44 da44 da44 da44 da44 da44
+8668 da45 da45 da45 * * 3d49 8ea2bdc9,8ea2bdc9v 6e60 e6b9a0 6e60 00006e60 da45 da45 da45 da45 da45 da45 da45
+8669 da46 da46 da46 * * 3d4a 8ea2bdca,8ea2bdcav 6e71 e6b9b1 6e71 00006e71 da46 da46 da46 da46 da46 da46 da46
+8670 da47 da47 da47 * * 3d4b 8ea2bdcb,8ea2bdcbv 6e6b e6b9ab 6e6b 00006e6b da47 da47 da47 da47 da47 da47 da47
+8671 da48 da48 da48 * * 3d4c 8ea2bdcc,8ea2bdccv 6e39 e6b8b9 6e39 00006e39 da48 da48 da48 da48 da48 da48 da48
+8672 da49 da49 da49 * * 3d4d 8ea2bdcd,8ea2bdcdv 6e22 e6b8a2 6e22 00006e22 da49 da49 da49 da49 da49 da49 da49
+8673 da4a da4a da4a * * 3d4e 8ea2bdce,8ea2bdcev 6e30 e6b8b0 6e30 00006e30 da4a da4a da4a da4a da4a da4a da4a
+8674 da4b da4b da4b * * 3d4f 8ea2bdcf,8ea2bdcfv 6e53 e6b993 6e53 00006e53 da4b da4b da4b da4b da4b da4b da4b
+8675 da4c da4c da4c * * 3d50 8ea2bdd0,8ea2bdd0v 6e65 e6b9a5 6e65 00006e65 da4c da4c da4c da4c da4c da4c da4c
+8676 da4d da4d da4d * * 3d51 8ea2bdd1,8ea2bdd1v 6e27 e6b8a7 6e27 00006e27 da4d da4d da4d da4d da4d da4d da4d
+8677 da4e da4e da4e * * 3d52 8ea2bdd2,8ea2bdd2v 6e78 e6b9b8 6e78 00006e78 da4e da4e da4e da4e da4e da4e da4e
+8678 da4f da4f da4f * * 3d53 8ea2bdd3,8ea2bdd3v 6e64 e6b9a4 6e64 00006e64 da4f da4f da4f da4f da4f da4f da4f
+8679 da50 da50 da50 * * 3d54 8ea2bdd4,8ea2bdd4v 6e77 e6b9b7 6e77 00006e77 da50 da50 da50 da50 da50 da50 da50
+8680 da51 da51 da51 * * 3d55 8ea2bdd5,8ea2bdd5v 6e55 e6b995 6e55 00006e55 da51 da51 da51 da51 da51 da51 da51
+8681 da52 da52 da52 * * 3d56 8ea2bdd6,8ea2bdd6v 6e79 e6b9b9 6e79 00006e79 da52 da52 da52 da52 da52 da52 da52
+8682 da53 da53 da53 * * 3d57 8ea2bdd7,8ea2bdd7v 6e52 e6b992 6e52 00006e52 da53 da53 da53 da53 da53 da53 da53
+8683 da54 da54 da54 * * 3d58 8ea2bdd8,8ea2bdd8v 6e66 e6b9a6 6e66 00006e66 da54 da54 da54 da54 da54 da54 da54
+8684 da55 da55 da55 * * 3d59 8ea2bdd9,8ea2bdd9v 6e35 e6b8b5 6e35 00006e35 da55 da55 da55 da55 da55 da55 da55
+8685 da56 da56 da56 * * 3d5a 8ea2bdda,8ea2bddav 6e36 e6b8b6 6e36 00006e36 da56 da56 da56 da56 da56 da56 da56
+8686 da57 da57 da57 * * 3d5b 8ea2bddb,8ea2bddbv 6e5a e6b99a 6e5a 00006e5a da57 da57 da57 da57 da57 da57 da57
+8687 da58 da58 da58 * * 3d5c 8ea2bddc,8ea2bddcv 7120 e784a0 7120 00007120 da58 da58 da58 da58 da58 da58 da58
+8688 da59 da59 da59 * * 3d5d 8ea2bddd,8ea2bdddv 711e e7849e 711e 0000711e da59 da59 da59 da59 da59 da59 da59
+8689 da5a da5a da5a * * 3d5e 8ea2bdde,8ea2bddev 712f e784af 712f 0000712f da5a da5a da5a da5a da5a da5a da5a
+8690 da5b da5b da5b * * 3d5f 8ea2bddf,8ea2bddfv 70fb e783bb 70fb 000070fb da5b da5b da5b da5b da5b da5b da5b
+8691 da5c da5c da5c * * 3d60 8ea2bde0,8ea2bde0v 712e e784ae 712e 0000712e da5c da5c da5c da5c da5c da5c da5c
+8692 da5d da5d da5d * * 3d61 8ea2bde1,8ea2bde1v 7131 e784b1 7131 00007131 da5d da5d da5d da5d da5d da5d da5d
+8693 da5e da5e da5e * * 3d62 8ea2bde2,8ea2bde2v 7123 e784a3 7123 00007123 da5e da5e da5e da5e da5e da5e da5e
+8694 da5f da5f da5f * * 3d63 8ea2bde3,8ea2bde3v 7125 e784a5 7125 00007125 da5f da5f da5f da5f da5f da5f da5f
+8695 da60 da60 da60 * * 3d64 8ea2bde4,8ea2bde4v 7122 e784a2 7122 00007122 da60 da60 da60 da60 da60 da60 da60
+8696 da61 da61 da61 * * 3d65 8ea2bde5,8ea2bde5v 7132 e784b2 7132 00007132 da61 da61 da61 da61 da61 da61 da61
+8697 da62 da62 da62 * * 3d66 8ea2bde6,8ea2bde6v 711f e7849f 711f 0000711f da62 da62 da62 da62 da62 da62 da62
+8698 da63 da63 da63 * * 3d67 8ea2bde7,8ea2bde7v 7128 e784a8 7128 00007128 da63 da63 da63 da63 da63 da63 da63
+8699 da64 da64 da64 * * 3d68 8ea2bde8,8ea2bde8v 713a e784ba 713a 0000713a da64 da64 da64 da64 da64 da64 da64
+8700 da65 da65 da65 * * 3d69 8ea2bde9,8ea2bde9v 711b e7849b 711b 0000711b da65 da65 da65 da65 da65 da65 da65
+8701 da66 da66 da66 * * 3d6a 8ea2bdea,8ea2bdeav 724b e7898b 724b 0000724b da66 da66 da66 da66 da66 da66 da66
+8702 da67 da67 da67 * * 3d6b 8ea2bdeb,8ea2bdebv 725a e7899a 725a 0000725a da67 da67 da67 da67 da67 da67 da67
+8703 da68 da68 da68 * * 3d6c 8ea2bdec,8ea2bdecv 7288 e78a88 7288 00007288 da68 da68 da68 da68 da68 da68 da68
+8704 da69 da69 da69 * * 3d6d 8ea2bded,8ea2bdedv 7289 e78a89 7289 00007289 da69 da69 da69 da69 da69 da69 da69
+8705 da6a da6a da6a * * 3d6e 8ea2bdee,8ea2bdeev 7286 e78a86 7286 00007286 da6a da6a da6a da6a da6a da6a da6a
+8706 da6b da6b da6b * * 3d6f 8ea2bdef,8ea2bdefv 7285 e78a85 7285 00007285 da6b da6b da6b da6b da6b da6b da6b
+8707 da6c da6c da6c * * 3d70 8ea2bdf0,8ea2bdf0v 728b e78a8b 728b 0000728b da6c da6c da6c da6c da6c da6c da6c
+8708 da6d da6d da6d * * 3d71 8ea2bdf1,8ea2bdf1v 7312 e78c92 7312 00007312 da6d da6d da6d da6d da6d da6d da6d
+8709 da6e da6e da6e * * 3d72 8ea2bdf2,8ea2bdf2v 730b e78c8b 730b 0000730b da6e da6e da6e da6e da6e da6e da6e
+8710 da6f da6f da6f * * 3d73 8ea2bdf3,8ea2bdf3v 7330 e78cb0 7330 00007330 da6f da6f da6f da6f da6f da6f da6f
+8711 da70 da70 da70 * * 3d74 8ea2bdf4,8ea2bdf4v 7322 e78ca2 7322 00007322 da70 da70 da70 da70 da70 da70 da70
+8712 da71 da71 da71 * * 3d75 8ea2bdf5,8ea2bdf5v 7331 e78cb1 7331 00007331 da71 da71 da71 da71 da71 da71 da71
+8713 da72 da72 da72 * * 3d76 8ea2bdf6,8ea2bdf6v 7333 e78cb3 7333 00007333 da72 da72 da72 da72 da72 da72 da72
+8714 da73 da73 da73 * * 3d77 8ea2bdf7,8ea2bdf7v 7327 e78ca7 7327 00007327 da73 da73 da73 da73 da73 da73 da73
+8715 da74 da74 da74 * * 3d78 8ea2bdf8,8ea2bdf8v 7332 e78cb2 7332 00007332 da74 da74 da74 da74 da74 da74 da74
+8716 da75 da75 da75 * * 3d79 8ea2bdf9,8ea2bdf9v 732d e78cad 732d 0000732d da75 da75 da75 da75 da75 da75 da75
+8717 da76 da76 da76 * * 3d7a 8ea2bdfa,8ea2bdfav 7326 e78ca6 7326 00007326 da76 da76 da76 da76 da76 da76 da76
+8718 da77 da77 da77 * * 3d7b 8ea2bdfb,8ea2bdfbv 7323 e78ca3 7323 00007323 da77 da77 da77 da77 da77 da77 da77
+8719 da78 da78 da78 * * 3d7c 8ea2bdfc,8ea2bdfcv 7335 e78cb5 7335 00007335 da78 da78 da78 da78 da78 da78 da78
+8720 da79 da79 da79 * * 3d7d 8ea2bdfd,8ea2bdfdv 730c e78c8c 730c 0000730c da79 da79 da79 da79 da79 da79 da79
+8721 da7a da7a da7a * * 3d7e 8ea2bdfe,8ea2bdfev 742e e790ae 742e 0000742e da7a da7a da7a da7a da7a da7a da7a
+8722 da7b da7b da7b * * 3e21 8ea2bea1,8ea2bea1v 742c e790ac 742c 0000742c da7b da7b da7b da7b da7b da7b da7b
+8723 da7c da7c da7c * * 3e22 8ea2bea2,8ea2bea2v 7430 e790b0 7430 00007430 da7c da7c da7c da7c da7c da7c da7c
+8724 da7d da7d da7d * * 3e23 8ea2bea3,8ea2bea3v 742b e790ab 742b 0000742b da7d da7d da7d da7d da7d da7d da7d
+8725 da7e da7e da7e * * 3e24 8ea2bea4,8ea2bea4v 7416 e79096 7416 00007416 da7e da7e da7e da7e da7e da7e da7e
+8726 daa1 daa1 daa1 * * 3e25 8ea2bea5,8ea2bea5v 741a e7909a 741a 0000741a daa1 daa1 daa1 daa1 daa1 daa1 daa1
+8727 daa2 daa2 daa2 * * 3e26 8ea2bea6,8ea2bea6v 7421 e790a1 7421 00007421 daa2 daa2 daa2 daa2 daa2 daa2 daa2
+8728 daa3 daa3 daa3 * * 3e27 8ea2bea7,8ea2bea7v 742d e790ad 742d 0000742d daa3 daa3 daa3 daa3 daa3 daa3 daa3
+8729 daa4 daa4 daa4 * * 3e28 8ea2bea8,8ea2bea8v 7431 e790b1 7431 00007431 daa4 daa4 daa4 daa4 daa4 daa4 daa4
+8730 daa5 daa5 daa5 * * 3e29 8ea2bea9,8ea2bea9v 7424 e790a4 7424 00007424 daa5 daa5 daa5 daa5 daa5 daa5 daa5
+8731 daa6 daa6 daa6 * * 3e2a 8ea2beaa,8ea2beaav 7423 e790a3 7423 00007423 daa6 daa6 daa6 daa6 daa6 daa6 daa6
+8732 daa7 daa7 daa7 * * 3e2b 8ea2beab,8ea2beabv 741d e7909d 741d 0000741d daa7 daa7 daa7 daa7 daa7 daa7 daa7
+8733 daa8 daa8 daa8 * * 3e2c 8ea2beac,8ea2beacv 7429 e790a9 7429 00007429 daa8 daa8 daa8 daa8 daa8 daa8 daa8
+8734 daa9 daa9 daa9 * * 3e2d 8ea2bead,8ea2beadv 7420 e790a0 7420 00007420 daa9 daa9 daa9 daa9 daa9 daa9 daa9
+8735 daaa daaa daaa * * 3e2e 8ea2beae,8ea2beaev 7432 e790b2 7432 00007432 daaa daaa daaa daaa daaa daaa daaa
+8736 daab daab daab * * 3e2f 8ea2beaf,8ea2beafv 74fb e793bb 74fb 000074fb daab daab daab daab daab daab daab
+8737 daac daac daac * * 3e30 8ea2beb0,8ea2beb0v 752f e794af 752f 0000752f daac daac daac daac daac daac daac
+8738 daad daad daad * * 3e31 8ea2beb1,8ea2beb1v 756f e795af 756f 0000756f daad daad daad daad daad daad daad
+8739 daae daae daae * * 3e32 8ea2beb2,8ea2beb2v 756c e795ac 756c 0000756c daae daae daae daae daae daae daae
+8740 daaf daaf daaf * * 3e33 8ea2beb3,8ea2beb3v 75e7 e797a7 75e7 000075e7 daaf daaf daaf daaf daaf daaf daaf
+8741 dab0 dab0 dab0 * * 3e34 8ea2beb4,8ea2beb4v 75da e7979a 75da 000075da dab0 dab0 dab0 dab0 dab0 dab0 dab0
+8742 dab1 dab1 dab1 * * 3e35 8ea2beb5,8ea2beb5v 75e1 e797a1 75e1 000075e1 dab1 dab1 dab1 dab1 dab1 dab1 dab1
+8743 dab2 dab2 dab2 * * 3e36 8ea2beb6,8ea2beb6v 75e6 e797a6 75e6 000075e6 dab2 dab2 dab2 dab2 dab2 dab2 dab2
+8744 dab3 dab3 dab3 * * 3e37 8ea2beb7,8ea2beb7v 75dd e7979d 75dd 000075dd dab3 dab3 dab3 dab3 dab3 dab3 dab3
+8745 dab4 dab4 dab4 * * 3e38 8ea2beb8,8ea2beb8v 75df e7979f 75df 000075df dab4 dab4 dab4 dab4 dab4 dab4 dab4
+8746 dab5 dab5 dab5 * * 3e39 8ea2beb9,8ea2beb9v 75e4 e797a4 75e4 000075e4 dab5 dab5 dab5 dab5 dab5 dab5 dab5
+8747 dab6 dab6 dab6 * * 3e3a 8ea2beba,8ea2bebav 75d7 e79797 75d7 000075d7 dab6 dab6 dab6 dab6 dab6 dab6 dab6
+8748 dab7 dab7 dab7 * * 3e3b 8ea2bebb,8ea2bebbv 7695 e79a95 7695 00007695 dab7 dab7 dab7 dab7 dab7 dab7 dab7
+8749 dab8 dab8 dab8 * * 3e3c 8ea2bebc,8ea2bebcv 7692 e79a92 7692 00007692 dab8 dab8 dab8 dab8 dab8 dab8 dab8
+8750 dab9 dab9 dab9 * * 3e3d 8ea2bebd,8ea2bebdv 76da e79b9a 76da 000076da dab9 dab9 dab9 dab9 dab9 dab9 dab9
+8751 daba daba daba * * 3e3e 8ea2bebe,8ea2bebev 7746 e79d86 7746 00007746 daba daba daba daba daba daba daba
+8752 dabb dabb dabb * * 3e3f 8ea2bebf,8ea2bebfv 7747 e79d87 7747 00007747 dabb dabb dabb dabb dabb dabb dabb
+8753 dabc dabc dabc * * 3e40 8ea2bec0,8ea2bec0v 7744 e79d84 7744 00007744 dabc dabc dabc dabc dabc dabc dabc
+8754 dabd dabd dabd * * 3e41 8ea2bec1,8ea2bec1v 774d e79d8d 774d 0000774d dabd dabd dabd dabd dabd dabd dabd
+8755 dabe dabe dabe * * 3e42 8ea2bec2,8ea2bec2v 7745 e79d85 7745 00007745 dabe dabe dabe dabe dabe dabe dabe
+8756 dabf dabf dabf * * 3e43 8ea2bec3,8ea2bec3v 774a e79d8a 774a 0000774a dabf dabf dabf dabf dabf dabf dabf
+8757 dac0 dac0 dac0 * * 3e44 8ea2bec4,8ea2bec4v 774e e79d8e 774e 0000774e dac0 dac0 dac0 dac0 dac0 dac0 dac0
+8758 dac1 dac1 dac1 * * 3e45 8ea2bec5,8ea2bec5v 774b e79d8b 774b 0000774b dac1 dac1 dac1 dac1 dac1 dac1 dac1
+8759 dac2 dac2 dac2 * * 3e46 8ea2bec6,8ea2bec6v 774c e79d8c 774c 0000774c dac2 dac2 dac2 dac2 dac2 dac2 dac2
+8760 dac3 dac3 dac3 * * 3e47 8ea2bec7,8ea2bec7v 77de e79f9e 77de 000077de dac3 dac3 dac3 dac3 dac3 dac3 dac3
+8761 dac4 dac4 dac4 * * 3e48 8ea2bec8,8ea2bec8v 77ec e79fac 77ec 000077ec dac4 dac4 dac4 dac4 dac4 dac4 dac4
+8762 dac5 dac5 dac5 * * 3e49 8ea2bec9,8ea2bec9v 7860 e7a1a0 7860 00007860 dac5 dac5 dac5 dac5 dac5 dac5 dac5
+8763 dac6 dac6 dac6 * * 3e4a 8ea2beca,8ea2becav 7864 e7a1a4 7864 00007864 dac6 dac6 dac6 dac6 dac6 dac6 dac6
+8764 dac7 dac7 dac7 * * 3e4b 8ea2becb,8ea2becbv 7865 e7a1a5 7865 00007865 dac7 dac7 dac7 dac7 dac7 dac7 dac7
+8765 dac8 dac8 dac8 * * 3e4c 8ea2becc,8ea2beccv 785c e7a19c 785c 0000785c dac8 dac8 dac8 dac8 dac8 dac8 dac8
+8766 dac9 dac9 dac9 * * 3e4d 8ea2becd,8ea2becdv 786d e7a1ad 786d 0000786d dac9 dac9 dac9 dac9 dac9 dac9 dac9
+8767 daca daca daca * * 3e4e 8ea2bece,8ea2becev 7871 e7a1b1 7871 00007871 daca daca daca daca daca daca daca
+8768 dacb dacb dacb * * 3e4f 8ea2becf,8ea2becfv 786a e7a1aa 786a 0000786a dacb dacb dacb dacb dacb dacb dacb
+8769 dacc dacc dacc * * 3e50 8ea2bed0,8ea2bed0v 786e e7a1ae 786e 0000786e dacc dacc dacc dacc dacc dacc dacc
+8770 dacd dacd dacd * * 3e51 8ea2bed1,8ea2bed1v 7870 e7a1b0 7870 00007870 dacd dacd dacd dacd dacd dacd dacd
+8771 dace dace dace * * 3e52 8ea2bed2,8ea2bed2v 7869 e7a1a9 7869 00007869 dace dace dace dace dace dace dace
+8772 dacf dacf dacf * * 3e53 8ea2bed3,8ea2bed3v 7868 e7a1a8 7868 00007868 dacf dacf dacf dacf dacf dacf dacf
+8773 dad0 dad0 dad0 * * 3e54 8ea2bed4,8ea2bed4v 785e e7a19e 785e 0000785e dad0 dad0 dad0 dad0 dad0 dad0 dad0
+8774 dad1 dad1 dad1 * * 3e55 8ea2bed5,8ea2bed5v 7862 e7a1a2 7862 00007862 dad1 dad1 dad1 dad1 dad1 dad1 dad1
+8775 dad2 dad2 dad2 * * 3e56 8ea2bed6,8ea2bed6v 7974 e7a5b4 7974 00007974 dad2 dad2 dad2 dad2 dad2 dad2 dad2
+8776 dad3 dad3 dad3 * * 3e57 8ea2bed7,8ea2bed7v 7973 e7a5b3 7973 00007973 dad3 dad3 dad3 dad3 dad3 dad3 dad3
+8777 dad4 dad4 dad4 * * 3e58 8ea2bed8,8ea2bed8v 7972 e7a5b2 7972 00007972 dad4 dad4 dad4 dad4 dad4 dad4 dad4
+8778 dad5 dad5 dad5 * * 3e59 8ea2bed9,8ea2bed9v 7970 e7a5b0 7970 00007970 dad5 dad5 dad5 dad5 dad5 dad5 dad5
+8779 dad6 dad6 dad6 * * 3e5a 8ea2beda,8ea2bedav 7a02 e7a882 7a02 00007a02 dad6 dad6 dad6 dad6 dad6 dad6 dad6
+8780 dad7 dad7 dad7 * * 3e5b 8ea2bedb,8ea2bedbv 7a0a e7a88a 7a0a 00007a0a dad7 dad7 dad7 dad7 dad7 dad7 dad7
+8781 dad8 dad8 dad8 * * 3e5c 8ea2bedc,8ea2bedcv 7a03 e7a883 7a03 00007a03 dad8 dad8 dad8 dad8 dad8 dad8 dad8
+8782 dad9 dad9 dad9 * * 3e5d 8ea2bedd,8ea2beddv 7a0c e7a88c 7a0c 00007a0c dad9 dad9 dad9 dad9 dad9 dad9 dad9
+8783 dada dada dada * * 3e5e 8ea2bede,8ea2bedev 7a04 e7a884 7a04 00007a04 dada dada dada dada dada dada dada
+8784 dadb dadb dadb * * 3e5f 8ea2bedf,8ea2bedfv 7a99 e7aa99 7a99 00007a99 dadb dadb dadb dadb dadb dadb dadb
+8785 dadc dadc dadc * * 3e60 8ea2bee0,8ea2bee0v 7ae6 e7aba6 7ae6 00007ae6 dadc dadc dadc dadc dadc dadc dadc
+8786 dadd dadd dadd * * 3e61 8ea2bee1,8ea2bee1v 7ae4 e7aba4 7ae4 00007ae4 dadd dadd dadd dadd dadd dadd dadd
+8787 dade dade dade * * 3e62 8ea2bee2,8ea2bee2v 7b4a e7ad8a 7b4a 00007b4a dade dade dade dade dade dade dade
+8788 d6cc d6cc d6cc * * 3e63 8ea2bee3,8ea2bee3v 7b47 e7ad87 7b47 00007b47 d6cc d6cc d6cc d6cc d6cc d6cc d6cc
+8789 dae0 dae0 dae0 * * 3e64 8ea2bee4,8ea2bee4v 7b44 e7ad84 7b44 00007b44 dae0 dae0 dae0 dae0 dae0 dae0 dae0
+8790 dae1 dae1 dae1 * * 3e65 8ea2bee5,8ea2bee5v 7b48 e7ad88 7b48 00007b48 dae1 dae1 dae1 dae1 dae1 dae1 dae1
+8791 dae2 dae2 dae2 * * 3e66 8ea2bee6,8ea2bee6v 7b4c e7ad8c 7b4c 00007b4c dae2 dae2 dae2 dae2 dae2 dae2 dae2
+8792 dae3 dae3 dae3 * * 3e67 8ea2bee7,8ea2bee7v 7b4e e7ad8e 7b4e 00007b4e dae3 dae3 dae3 dae3 dae3 dae3 dae3
+8793 dae4 dae4 dae4 * * 3e68 8ea2bee8,8ea2bee8v 7b40 e7ad80 7b40 00007b40 dae4 dae4 dae4 dae4 dae4 dae4 dae4
+8794 dae5 dae5 dae5 * * 3e69 8ea2bee9,8ea2bee9v 7b58 e7ad98 7b58 00007b58 dae5 dae5 dae5 dae5 dae5 dae5 dae5
+8795 dae6 dae6 dae6 * * 3e6a 8ea2beea,8ea2beeav 7b45 e7ad85 7b45 00007b45 dae6 dae6 dae6 dae6 dae6 dae6 dae6
+8796 dae7 dae7 dae7 * * 3e6b 8ea2beeb,8ea2beebv 7ca2 e7b2a2 7ca2 00007ca2 dae7 dae7 dae7 dae7 dae7 dae7 dae7
+8797 dae8 dae8 dae8 * * 3e6c 8ea2beec,8ea2beecv 7c9e e7b29e 7c9e 00007c9e dae8 dae8 dae8 dae8 dae8 dae8 dae8
+8798 dae9 dae9 dae9 * * 3e6d 8ea2beed,8ea2beedv 7ca8 e7b2a8 7ca8 00007ca8 dae9 dae9 dae9 dae9 dae9 dae9 dae9
+8799 daea daea daea * * 3e6e 8ea2beee,8ea2beeev 7ca1 e7b2a1 7ca1 00007ca1 daea daea daea daea daea daea daea
+8800 daeb daeb daeb * * 3e6f 8ea2beef,8ea2beefv 7d58 e7b598 7d58 00007d58 daeb daeb daeb daeb daeb daeb daeb
+8801 daec daec daec * * 3e70 8ea2bef0,8ea2bef0v 7d6f e7b5af 7d6f 00007d6f daec daec daec daec daec daec daec
+8802 daed daed daed * * 3e71 8ea2bef1,8ea2bef1v 7d63 e7b5a3 7d63 00007d63 daed daed daed daed daed daed daed
+8803 daee daee daee * * 3e72 8ea2bef2,8ea2bef2v 7d53 e7b593 7d53 00007d53 daee daee daee daee daee daee daee
+8804 daef daef daef * * 3e73 8ea2bef3,8ea2bef3v 7d56 e7b596 7d56 00007d56 daef daef daef daef daef daef daef
+8805 daf0 daf0 daf0 * * 3e74 8ea2bef4,8ea2bef4v 7d67 e7b5a7 7d67 00007d67 daf0 daf0 daf0 daf0 daf0 daf0 daf0
+8806 daf1 daf1 daf1 * * 3e75 8ea2bef5,8ea2bef5v 7d6a e7b5aa 7d6a 00007d6a daf1 daf1 daf1 daf1 daf1 daf1 daf1
+8807 daf2 daf2 daf2 * * 3e76 8ea2bef6,8ea2bef6v 7d4f e7b58f 7d4f 00007d4f daf2 daf2 daf2 daf2 daf2 daf2 daf2
+8808 daf3 daf3 daf3 * * 3e77 8ea2bef7,8ea2bef7v 7d6d e7b5ad 7d6d 00007d6d daf3 daf3 daf3 daf3 daf3 daf3 daf3
+8809 daf4 daf4 daf4 * * 3e78 8ea2bef8,8ea2bef8v 7d5c e7b59c 7d5c 00007d5c daf4 daf4 daf4 daf4 daf4 daf4 daf4
+8810 daf5 daf5 daf5 * * 3e79 8ea2bef9,8ea2bef9v 7d6b e7b5ab 7d6b 00007d6b daf5 daf5 daf5 daf5 daf5 daf5 daf5
+8811 daf6 daf6 daf6 * * 3e7a 8ea2befa,8ea2befav 7d52 e7b592 7d52 00007d52 daf6 daf6 daf6 daf6 daf6 daf6 daf6
+8812 daf7 daf7 daf7 * * 3e7b 8ea2befb,8ea2befbv 7d54 e7b594 7d54 00007d54 daf7 daf7 daf7 daf7 daf7 daf7 daf7
+8813 daf8 daf8 daf8 * * 3e7c 8ea2befc,8ea2befcv 7d69 e7b5a9 7d69 00007d69 daf8 daf8 daf8 daf8 daf8 daf8 daf8
+8814 daf9 daf9 daf9 * * 3e7d 8ea2befd,8ea2befdv 7d51 e7b591 7d51 00007d51 daf9 daf9 daf9 daf9 daf9 daf9 daf9
+8815 dafa dafa dafa * * 3e7e 8ea2befe,8ea2befev 7d5f e7b59f 7d5f 00007d5f dafa dafa dafa dafa dafa dafa dafa
+8816 dafb dafb dafb * * 3f21 8ea2bfa1,8ea2bfa1v 7d4e e7b58e 7d4e 00007d4e dafb dafb dafb dafb dafb dafb dafb
+8817 dafc dafc dafc * * 3f22 8ea2bfa2,8ea2bfa2v 7f3e e7bcbe 7f3e 00007f3e dafc dafc dafc dafc dafc dafc dafc
+8818 dafd dafd dafd * * 3f23 8ea2bfa3,8ea2bfa3v 7f3f e7bcbf 7f3f 00007f3f dafd dafd dafd dafd dafd dafd dafd
+8819 dafe dafe dafe * * 3f24 8ea2bfa4,8ea2bfa4v 7f65 e7bda5 7f65 00007f65 dafe dafe dafe dafe dafe dafe dafe
+8820 db40 db40 db40 * * 3f25 8ea2bfa5,8ea2bfa5v 7f66 e7bda6 7f66 00007f66 db40 db40 db40 db40 db40 db40 db40
+8821 db41 db41 db41 * * 3f26 8ea2bfa6,8ea2bfa6v 7fa2 e7bea2 7fa2 00007fa2 db41 db41 db41 db41 db41 db41 db41
+8822 db42 db42 db42 * * 3f27 8ea2bfa7,8ea2bfa7v 7fa0 e7bea0 7fa0 00007fa0 db42 db42 db42 db42 db42 db42 db42
+8823 db43 db43 db43 * * 3f28 8ea2bfa8,8ea2bfa8v 7fa1 e7bea1 7fa1 00007fa1 db43 db43 db43 db43 db43 db43 db43
+8824 db44 db44 db44 * * 3f29 8ea2bfa9,8ea2bfa9v 7fd7 e7bf97 7fd7 00007fd7 db44 db44 db44 db44 db44 db44 db44
+8825 db45 db45 db45 * * 3f2a 8ea2bfaa,8ea2bfaav 8051 e88191 8051 00008051 db45 db45 db45 db45 db45 db45 db45
+8826 db46 db46 db46 * * 3f2b 8ea2bfab,8ea2bfabv 804f e8818f 804f 0000804f db46 db46 db46 db46 db46 db46 db46
+8827 db47 db47 db47 * * 3f2c 8ea2bfac,8ea2bfacv 8050 e88190 8050 00008050 db47 db47 db47 db47 db47 db47 db47
+8828 db48 db48 db48 * * 3f2d 8ea2bfad,8ea2bfadv 80fe e883be 80fe 000080fe db48 db48 db48 db48 db48 db48 db48
+8829 db49 db49 db49 * * 3f2e 8ea2bfae,8ea2bfaev 80d4 e88394 80d4 000080d4 db49 db49 db49 db49 db49 db49 db49
+8830 db4a db4a db4a * * 3f2f 8ea2bfaf,8ea2bfafv 8143 e88583 8143 00008143 db4a db4a db4a db4a db4a db4a db4a
+8831 db4b db4b db4b * * 3f30 8ea2bfb0,8ea2bfb0v 814a e8858a 814a 0000814a db4b db4b db4b db4b db4b db4b db4b
+8832 db4c db4c db4c * * 3f31 8ea2bfb1,8ea2bfb1v 8152 e88592 8152 00008152 db4c db4c db4c db4c db4c db4c db4c
+8833 db4d db4d db4d * * 3f32 8ea2bfb2,8ea2bfb2v 814f e8858f 814f 0000814f db4d db4d db4d db4d db4d db4d db4d
+8834 db4e db4e db4e * * 3f33 8ea2bfb3,8ea2bfb3v 8147 e88587 8147 00008147 db4e db4e db4e db4e db4e db4e db4e
+8835 db4f db4f db4f * * 3f34 8ea2bfb4,8ea2bfb4v 813d e884bd 813d 0000813d db4f db4f db4f db4f db4f db4f db4f
+8836 db50 db50 db50 * * 3f35 8ea2bfb5,8ea2bfb5v 814d e8858d 814d 0000814d db50 db50 db50 db50 db50 db50 db50
+8837 db51 db51 db51 * * 3f36 8ea2bfb6,8ea2bfb6v 813a e884ba 813a 0000813a db51 db51 db51 db51 db51 db51 db51
+8838 db52 db52 db52 * * 3f37 8ea2bfb7,8ea2bfb7v 81e6 e887a6 81e6 000081e6 db52 db52 db52 db52 db52 db52 db52
+8839 db53 db53 db53 * * 3f38 8ea2bfb8,8ea2bfb8v 81ee e887ae 81ee 000081ee db53 db53 db53 db53 db53 db53 db53
+8840 db54 db54 db54 * * 3f39 8ea2bfb9,8ea2bfb9v 81f7 e887b7 81f7 000081f7 db54 db54 db54 db54 db54 db54 db54
+8841 db55 db55 db55 * * 3f3a 8ea2bfba,8ea2bfbav 81f8 e887b8 81f8 000081f8 db55 db55 db55 db55 db55 db55 db55
+8842 db56 db56 db56 * * 3f3b 8ea2bfbb,8ea2bfbbv 81f9 e887b9 81f9 000081f9 db56 db56 db56 db56 db56 db56 db56
+8843 db57 db57 db57 * * 3f3c 8ea2bfbc,8ea2bfbcv 8204 e88884 8204 00008204 db57 db57 db57 db57 db57 db57 db57
+8844 db58 db58 db58 * * 3f3d 8ea2bfbd,8ea2bfbdv 823c e888bc 823c 0000823c db58 db58 db58 db58 db58 db58 db58
+8845 db59 db59 db59 * * 3f3e 8ea2bfbe,8ea2bfbev 823d e888bd 823d 0000823d db59 db59 db59 db59 db59 db59 db59
+8846 db5a db5a db5a * * 3f3f 8ea2bfbf,8ea2bfbfv 823f e888bf 823f 0000823f db5a db5a db5a db5a db5a db5a db5a
+8847 db5b db5b db5b * * 3f40 8ea2bfc0,8ea2bfc0v 8275 e889b5 8275 00008275 db5b db5b db5b db5b db5b db5b db5b
+8848 db5c db5c db5c * * 3f41 8ea2bfc1,8ea2bfc1v 833b e88cbb 833b 0000833b db5c db5c db5c db5c db5c db5c db5c
+8849 db5d db5d db5d * * 3f42 8ea2bfc2,8ea2bfc2v 83cf e88f8f,eeaf9e 83cf,ebde 000083cf,0000ebde 9c77,db5d db5d db5d db5d db5d db5d 9c77,db5d
+8850 db5e db5e db5e * * 3f43 8ea2bfc3,8ea2bfc3v 83f9 e88fb9 83f9 000083f9 db5e db5e db5e db5e db5e db5e db5e
+8851 db5f db5f db5f * * 3f44 8ea2bfc4,8ea2bfc4v 8423 e890a3 8423 00008423 db5f db5f db5f db5f db5f db5f db5f
+8852 db60 db60 db60 * * 3f45 8ea2bfc5,8ea2bfc5v 83c0 e88f80 83c0 000083c0 db60 db60 db60 db60 db60 db60 db60
+8853 db61 db61 db61 * * 3f46 8ea2bfc6,8ea2bfc6v 83e8 e88fa8 83e8 000083e8 db61 db61 db61 db61 db61 db61 db61
+8854 db62 db62 db62 * * 3f47 8ea2bfc7,8ea2bfc7v 8412 e89092 8412 00008412 db62 db62 db62 db62 db62 db62 db62
+8855 db63 db63 db63 * * 3f48 8ea2bfc8,8ea2bfc8v 83e7 e88fa7 83e7 000083e7 db63 db63 db63 db63 db63 db63 db63
+8856 db64 db64 db64 * * 3f49 8ea2bfc9,8ea2bfc9v 83e4 e88fa4 83e4 000083e4 db64 db64 db64 db64 db64 db64 db64
+8857 db65 db65 db65 * * 3f4a 8ea2bfca,8ea2bfcav 83fc e88fbc 83fc 000083fc db65 db65 db65 db65 db65 db65 db65
+8858 db66 db66 db66 * * 3f4b 8ea2bfcb,8ea2bfcbv 83f6 e88fb6 83f6 000083f6 db66 db66 db66 db66 db66 db66 db66
+8859 db67 db67 db67 * * 3f4c 8ea2bfcc,8ea2bfccv 8410 e89090 8410 00008410 db67 db67 db67 db67 db67 db67 db67
+8860 db68 db68 db68 * * 3f4d 8ea2bfcd,8ea2bfcdv 83c6 e88f86 83c6 000083c6 db68 db68 db68 db68 db68 db68 db68
+8861 db69 db69 db69 * * 3f4e 8ea2bfce,8ea2bfcev 83c8 e88f88 83c8 000083c8 db69 db69 db69 db69 db69 db69 db69
+8862 db6a db6a db6a * * 3f4f 8ea2bfcf,8ea2bfcfv 83eb e88fab 83eb 000083eb db6a db6a db6a db6a db6a db6a db6a
+8863 db6b db6b db6b * * 3f50 8ea2bfd0,8ea2bfd0v 83e3 e88fa3 83e3 000083e3 db6b db6b db6b db6b db6b db6b db6b
+8864 db6c db6c db6c * * 3f51 8ea2bfd1,8ea2bfd1v 83bf e88ebf 83bf 000083bf db6c db6c db6c db6c db6c db6c db6c
+8865 db6d db6d db6d * * 3f52 8ea2bfd2,8ea2bfd2v 8401 e89081 8401 00008401 db6d db6d db6d db6d db6d db6d db6d
+8866 db6e db6e db6e * * 3f53 8ea2bfd3,8ea2bfd3v 83dd e88f9d 83dd 000083dd db6e db6e db6e db6e db6e db6e db6e
+8867 db6f db6f db6f * * 3f54 8ea2bfd4,8ea2bfd4v 83e5 e88fa5 83e5 000083e5 db6f db6f db6f db6f db6f db6f db6f
+8868 db70 db70 db70 * * 3f55 8ea2bfd5,8ea2bfd5v 83d8 e88f98 83d8 000083d8 db70 db70 db70 db70 db70 db70 db70
+8869 db71 db71 db71 * * 3f56 8ea2bfd6,8ea2bfd6v 83ff e88fbf 83ff 000083ff db71 db71 db71 db71 db71 db71 db71
+8870 db72 db72 db72 * * 3f57 8ea2bfd7,8ea2bfd7v 83e1 e88fa1 83e1 000083e1 db72 db72 db72 db72 db72 db72 db72
+8871 db73 db73 db73 * * 3f58 8ea2bfd8,8ea2bfd8v 83cb e88f8b 83cb 000083cb db73 db73 db73 db73 db73 db73 db73
+8872 db74 db74 db74 * * 3f59 8ea2bfd9,8ea2bfd9v 83ce e88f8e 83ce 000083ce db74 db74 db74 db74 db74 db74 db74
+8873 db75 db75 db75 * * 3f5a 8ea2bfda,8ea2bfdav 83d6 e88f96 83d6 000083d6 db75 db75 db75 db75 db75 db75 db75
+8874 db76 db76 db76 * * 3f5b 8ea2bfdb,8ea2bfdbv 83f5 e88fb5 83f5 000083f5 db76 db76 db76 db76 db76 db76 db76
+8875 db77 db77 db77 * * 3f5c 8ea2bfdc,8ea2bfdcv 83c9 e88f89 83c9 000083c9 db77 db77 db77 db77 db77 db77 db77
+8876 db78 db78 db78 * * 3f5d 8ea2bfdd,8ea2bfddv 8409 e89089 8409 00008409 db78 db78 db78 db78 db78 db78 db78
+8877 db79 db79 db79 * * 3f5e 8ea2bfde,8ea2bfdev 840f e8908f,ee8f9c 840f,e3dc 0000840f,0000e3dc 8f6e,db79 db79 db79 db79 db79 db79 8f6e,db79
+8878 db7a db7a db7a * * 3f5f 8ea2bfdf,8ea2bfdfv 83de e88f9e 83de 000083de db7a db7a db7a db7a db7a db7a db7a
+8879 db7b db7b db7b * * 3f60 8ea2bfe0,8ea2bfe0v 8411 e89091 8411 00008411 db7b db7b db7b db7b db7b db7b db7b
+8880 db7c db7c db7c * * 3f61 8ea2bfe1,8ea2bfe1v 8406 e89086 8406 00008406 db7c db7c db7c db7c db7c db7c db7c
+8881 db7d db7d db7d * * 3f62 8ea2bfe2,8ea2bfe2v 83c2 e88f82 83c2 000083c2 db7d db7d db7d db7d db7d db7d db7d
+8882 db7e db7e db7e * * 3f63 8ea2bfe3,8ea2bfe3v 83f3 e88fb3 83f3 000083f3 db7e db7e db7e db7e db7e db7e db7e
+8883 dba1 dba1 dba1 * * 3f64 8ea2bfe4,8ea2bfe4v 83d5 e88f95 83d5 000083d5 dba1 dba1 dba1 dba1 dba1 dba1 dba1
+8884 dba2 dba2 dba2 * * 3f65 8ea2bfe5,8ea2bfe5v 83fa e88fba 83fa 000083fa dba2 dba2 dba2 dba2 dba2 dba2 dba2
+8885 dba3 dba3 dba3 * * 3f66 8ea2bfe6,8ea2bfe6v 83c7 e88f87 83c7 000083c7 dba3 dba3 dba3 dba3 dba3 dba3 dba3
+8886 dba4 dba4 dba4 * * 3f67 8ea2bfe7,8ea2bfe7v 83d1 e88f91 83d1 000083d1 dba4 dba4 dba4 dba4 dba4 dba4 dba4
+8887 dba5 dba5 dba5 * * 3f68 8ea2bfe8,8ea2bfe8v 83ea e88faa 83ea 000083ea dba5 dba5 dba5 dba5 dba5 dba5 dba5
+8888 dba6 dba6 dba6 * * 3f69 8ea2bfe9,8ea2bfe9v 8413 e89093 8413 00008413 dba6 dba6 dba6 dba6 dba6 dba6 dba6
+8889 d77a d77a d77a * * 3f6a 8ea2bfea,8ea2bfeav 839a e88e9a 839a 0000839a d77a d77a d77a d77a d77a d77a d77a
+8890 dba7 dba7 dba7 * * 3f6b 8ea2bfeb,8ea2bfebv 83c3 e88f83 83c3 000083c3 dba7 dba7 dba7 dba7 dba7 dba7 dba7
+8891 dba8 dba8 dba8 * * 3f6c 8ea2bfec,8ea2bfecv 83ec e88fac 83ec 000083ec dba8 dba8 dba8 dba8 dba8 dba8 dba8
+8892 dba9 dba9 dba9 * * 3f6d 8ea2bfed,8ea2bfedv 83ee e88fae 83ee 000083ee dba9 dba9 dba9 dba9 dba9 dba9 dba9
+8893 dbaa dbaa dbaa * * 3f6e 8ea2bfee,8ea2bfeev 83c4 e88f84 83c4 000083c4 dbaa dbaa dbaa dbaa dbaa dbaa dbaa
+8894 dbab dbab dbab * * 3f6f 8ea2bfef,8ea2bfefv 83fb e88fbb 83fb 000083fb dbab dbab dbab dbab dbab dbab dbab
+8895 dbac dbac dbac * * 3f70 8ea2bff0,8ea2bff0v 83d7 e88f97 83d7 000083d7 dbac dbac dbac dbac dbac dbac dbac
+8896 dbad dbad dbad * * 3f71 8ea2bff1,8ea2bff1v 83e2 e88fa2 83e2 000083e2 dbad dbad dbad dbad dbad dbad dbad
+8897 dbae dbae dbae * * 3f72 8ea2bff2,8ea2bff2v 841b e8909b 841b 0000841b dbae dbae dbae dbae dbae dbae dbae
+8898 dbaf dbaf dbaf * * 3f73 8ea2bff3,8ea2bff3v 83db e88f9b 83db 000083db dbaf dbaf dbaf dbaf dbaf dbaf dbaf
+8899 dbb0 dbb0 dbb0 * * 3f74 8ea2bff4,8ea2bff4v 83fe e88fbe 83fe 000083fe dbb0 dbb0 dbb0 dbb0 dbb0 dbb0 dbb0
+8900 dbb1 dbb1 dbb1 * * 3f75 8ea2bff5,8ea2bff5v 86d8 e89b98 86d8 000086d8 dbb1 dbb1 dbb1 dbb1 dbb1 dbb1 dbb1
+8901 dbb2 dbb2 dbb2 * * 3f76 8ea2bff6,8ea2bff6v 86e2 e89ba2 86e2 000086e2 dbb2 dbb2 dbb2 dbb2 dbb2 dbb2 dbb2
+8902 dbb3 dbb3 dbb3 * * 3f77 8ea2bff7,8ea2bff7v 86e6 e89ba6 86e6 000086e6 dbb3 dbb3 dbb3 dbb3 dbb3 dbb3 dbb3
+8903 dbb4 dbb4 dbb4 * * 3f78 8ea2bff8,8ea2bff8v 86d3 e89b93 86d3 000086d3 dbb4 dbb4 dbb4 dbb4 dbb4 dbb4 dbb4
+8904 dbb5 dbb5 dbb5 * * 3f79 8ea2bff9,8ea2bff9v 86e3 e89ba3 86e3 000086e3 dbb5 dbb5 dbb5 dbb5 dbb5 dbb5 dbb5
+8905 dbb6 dbb6 dbb6 * * 3f7a 8ea2bffa,8ea2bffav 86da e89b9a 86da 000086da dbb6 dbb6 dbb6 dbb6 dbb6 dbb6 dbb6
+8906 dbb7 dbb7 dbb7 * * 3f7b 8ea2bffb,8ea2bffbv 86ea e89baa 86ea 000086ea dbb7 dbb7 dbb7 dbb7 dbb7 dbb7 dbb7
+8907 dbb8 dbb8 dbb8 * * 3f7c 8ea2bffc,8ea2bffcv 86dd e89b9d 86dd 000086dd dbb8 dbb8 dbb8 dbb8 dbb8 dbb8 dbb8
+8908 dbb9 dbb9 dbb9 * * 3f7d 8ea2bffd,8ea2bffdv 86eb e89bab 86eb 000086eb dbb9 dbb9 dbb9 dbb9 dbb9 dbb9 dbb9
+8909 dbba dbba dbba * * 3f7e 8ea2bffe,8ea2bffev 86dc e89b9c 86dc 000086dc dbba dbba dbba dbba dbba dbba dbba
+8910 dbbb dbbb dbbb * * 4021 8ea2c0a1,8ea2c0a1v 86ec e89bac 86ec 000086ec dbbb dbbb dbbb dbbb dbbb dbbb dbbb
+8911 dbbc dbbc dbbc * * 4022 8ea2c0a2,8ea2c0a2v 86e9 e89ba9 86e9 000086e9 dbbc dbbc dbbc dbbc dbbc dbbc dbbc
+8912 dbbd dbbd dbbd * * 4023 8ea2c0a3,8ea2c0a3v 86d7 e89b97 86d7 000086d7 dbbd dbbd dbbd dbbd dbbd dbbd dbbd
+8913 dbbe dbbe dbbe * * 4024 8ea2c0a4,8ea2c0a4v 86e8 e89ba8 86e8 000086e8 dbbe dbbe dbbe dbbe dbbe dbbe dbbe
+8914 dbbf dbbf dbbf * * 4025 8ea2c0a5,8ea2c0a5v 86d1 e89b91 86d1 000086d1 dbbf dbbf dbbf dbbf dbbf dbbf dbbf
+8915 dbc0 dbc0 dbc0 * * 4026 8ea2c0a6,8ea2c0a6v 8848 e8a188 8848 00008848 dbc0 dbc0 dbc0 dbc0 dbc0 dbc0 dbc0
+8916 dbc1 dbc1 dbc1 * * 4027 8ea2c0a7,8ea2c0a7v 8856 e8a196 8856 00008856 dbc1 dbc1 dbc1 dbc1 dbc1 dbc1 dbc1
+8917 dbc2 dbc2 dbc2 * * 4028 8ea2c0a8,8ea2c0a8v 8855 e8a195 8855 00008855 dbc2 dbc2 dbc2 dbc2 dbc2 dbc2 dbc2
+8918 dbc3 dbc3 dbc3 * * 4029 8ea2c0a9,8ea2c0a9v 88ba e8a2ba 88ba 000088ba dbc3 dbc3 dbc3 dbc3 dbc3 dbc3 dbc3
+8919 dbc4 dbc4 dbc4 * * 402a 8ea2c0aa,8ea2c0aav 88d7 e8a397 88d7 000088d7 dbc4 dbc4 dbc4 dbc4 dbc4 dbc4 dbc4
+8920 dbc5 dbc5 dbc5 * * 402b 8ea2c0ab,8ea2c0abv 88b9 e8a2b9 88b9 000088b9 dbc5 dbc5 dbc5 dbc5 dbc5 dbc5 dbc5
+8921 dbc6 dbc6 dbc6 * * 402c 8ea2c0ac,8ea2c0acv 88b8 e8a2b8 88b8 000088b8 dbc6 dbc6 dbc6 dbc6 dbc6 dbc6 dbc6
+8922 dbc7 dbc7 dbc7 * * 402d 8ea2c0ad,8ea2c0adv 88c0 e8a380 88c0 000088c0 dbc7 dbc7 dbc7 dbc7 dbc7 dbc7 dbc7
+8923 dbc8 dbc8 dbc8 * * 402e 8ea2c0ae,8ea2c0aev 88be e8a2be 88be 000088be dbc8 dbc8 dbc8 dbc8 dbc8 dbc8 dbc8
+8924 dbc9 dbc9 dbc9 * * 402f 8ea2c0af,8ea2c0afv 88b6 e8a2b6 88b6 000088b6 dbc9 dbc9 dbc9 dbc9 dbc9 dbc9 dbc9
+8925 dbca dbca dbca * * 4030 8ea2c0b0,8ea2c0b0v 88bc e8a2bc 88bc 000088bc dbca dbca dbca dbca dbca dbca dbca
+8926 dbcb dbcb dbcb * * 4031 8ea2c0b1,8ea2c0b1v 88b7 e8a2b7 88b7 000088b7 dbcb dbcb dbcb dbcb dbcb dbcb dbcb
+8927 dbcc dbcc dbcc * * 4032 8ea2c0b2,8ea2c0b2v 88bd e8a2bd 88bd 000088bd dbcc dbcc dbcc dbcc dbcc dbcc dbcc
+8928 dbcd dbcd dbcd * * 4033 8ea2c0b3,8ea2c0b3v 88b2 e8a2b2 88b2 000088b2 dbcd dbcd dbcd dbcd dbcd dbcd dbcd
+8929 dbce dbce dbce * * 4034 8ea2c0b4,8ea2c0b4v 8901 e8a481 8901 00008901 dbce dbce dbce dbce dbce dbce dbce
+8930 dbcf dbcf dbcf * * 4035 8ea2c0b5,8ea2c0b5v 88c9 e8a389 88c9 000088c9 dbcf dbcf dbcf dbcf dbcf dbcf dbcf
+8931 dbd0 dbd0 dbd0 * * 4036 8ea2c0b6,8ea2c0b6v 8995 e8a695 8995 00008995 dbd0 dbd0 dbd0 dbd0 dbd0 dbd0 dbd0
+8932 dbd1 dbd1 dbd1 * * 4037 8ea2c0b7,8ea2c0b7v 8998 e8a698 8998 00008998 dbd1 dbd1 dbd1 dbd1 dbd1 dbd1 dbd1
+8933 dbd2 dbd2 dbd2 * * 4038 8ea2c0b8,8ea2c0b8v 8997 e8a697 8997 00008997 dbd2 dbd2 dbd2 dbd2 dbd2 dbd2 dbd2
+8934 dbd3 dbd3 dbd3 * * 4039 8ea2c0b9,8ea2c0b9v 89dd e8a79d 89dd 000089dd dbd3 dbd3 dbd3 dbd3 dbd3 dbd3 dbd3
+8935 dbd4 dbd4 dbd4 * * 403a 8ea2c0ba,8ea2c0bav 89da e8a79a 89da 000089da dbd4 dbd4 dbd4 dbd4 dbd4 dbd4 dbd4
+8936 dbd5 dbd5 dbd5 * * 403b 8ea2c0bb,8ea2c0bbv 89db e8a79b 89db 000089db dbd5 dbd5 dbd5 dbd5 dbd5 dbd5 dbd5
+8937 dbd6 dbd6 dbd6 * * 403c 8ea2c0bc,8ea2c0bcv 8a4e e8a98e 8a4e 00008a4e dbd6 dbd6 dbd6 dbd6 dbd6 dbd6 dbd6
+8938 dbd7 dbd7 dbd7 * * 403d 8ea2c0bd,8ea2c0bdv 8a4d e8a98d 8a4d 00008a4d dbd7 dbd7 dbd7 dbd7 dbd7 dbd7 dbd7
+8939 dbd8 dbd8 dbd8 * * 403e 8ea2c0be,8ea2c0bev 8a39 e8a8b9 8a39 00008a39 dbd8 dbd8 dbd8 dbd8 dbd8 dbd8 dbd8
+8940 dbd9 dbd9 dbd9 * * 403f 8ea2c0bf,8ea2c0bfv 8a59 e8a999 8a59 00008a59 dbd9 dbd9 dbd9 dbd9 dbd9 dbd9 dbd9
+8941 dbda dbda dbda * * 4040 8ea2c0c0,8ea2c0c0v 8a40 e8a980 8a40 00008a40 dbda dbda dbda dbda dbda dbda dbda
+8942 dbdb dbdb dbdb * * 4041 8ea2c0c1,8ea2c0c1v 8a57 e8a997 8a57 00008a57 dbdb dbdb dbdb dbdb dbdb dbdb dbdb
+8943 dbdc dbdc dbdc * * 4042 8ea2c0c2,8ea2c0c2v 8a58 e8a998 8a58 00008a58 dbdc dbdc dbdc dbdc dbdc dbdc dbdc
+8944 dbdd dbdd dbdd * * 4043 8ea2c0c3,8ea2c0c3v 8a44 e8a984 8a44 00008a44 dbdd dbdd dbdd dbdd dbdd dbdd dbdd
+8945 dbde dbde dbde * * 4044 8ea2c0c4,8ea2c0c4v 8a45 e8a985 8a45 00008a45 dbde dbde dbde dbde dbde dbde dbde
+8946 dbdf dbdf dbdf * * 4045 8ea2c0c5,8ea2c0c5v 8a52 e8a992 8a52 00008a52 dbdf dbdf dbdf dbdf dbdf dbdf dbdf
+8947 dbe0 dbe0 dbe0 * * 4046 8ea2c0c6,8ea2c0c6v 8a48 e8a988 8a48 00008a48 dbe0 dbe0 dbe0 dbe0 dbe0 dbe0 dbe0
+8948 dbe1 dbe1 dbe1 * * 4047 8ea2c0c7,8ea2c0c7v 8a51 e8a991 8a51 00008a51 dbe1 dbe1 dbe1 dbe1 dbe1 dbe1 dbe1
+8949 dbe2 dbe2 dbe2 * * 4048 8ea2c0c8,8ea2c0c8v 8a4a e8a98a 8a4a 00008a4a dbe2 dbe2 dbe2 dbe2 dbe2 dbe2 dbe2
+8950 dbe3 dbe3 dbe3 * * 4049 8ea2c0c9,8ea2c0c9v 8a4c e8a98c 8a4c 00008a4c dbe3 dbe3 dbe3 dbe3 dbe3 dbe3 dbe3
+8951 dbe4 dbe4 dbe4 * * 404a 8ea2c0ca,8ea2c0cav 8a4f e8a98f 8a4f 00008a4f dbe4 dbe4 dbe4 dbe4 dbe4 dbe4 dbe4
+8952 dbe5 dbe5 dbe5 * * 404b 8ea2c0cb,8ea2c0cbv 8c5f e8b19f 8c5f 00008c5f dbe5 dbe5 dbe5 dbe5 dbe5 dbe5 dbe5
+8953 dbe6 dbe6 dbe6 * * 404c 8ea2c0cc,8ea2c0ccv 8c81 e8b281 8c81 00008c81 dbe6 dbe6 dbe6 dbe6 dbe6 dbe6 dbe6
+8954 dbe7 dbe7 dbe7 * * 404d 8ea2c0cd,8ea2c0cdv 8c80 e8b280 8c80 00008c80 dbe7 dbe7 dbe7 dbe7 dbe7 dbe7 dbe7
+8955 dbe8 dbe8 dbe8 * * 404e 8ea2c0ce,8ea2c0cev 8cba e8b2ba 8cba 00008cba dbe8 dbe8 dbe8 dbe8 dbe8 dbe8 dbe8
+8956 dbe9 dbe9 dbe9 * * 404f 8ea2c0cf,8ea2c0cfv 8cbe e8b2be 8cbe 00008cbe dbe9 dbe9 dbe9 dbe9 dbe9 dbe9 dbe9
+8957 dbea dbea dbea * * 4050 8ea2c0d0,8ea2c0d0v 8cb0 e8b2b0 8cb0 00008cb0 dbea dbea dbea dbea dbea dbea dbea
+8958 dbeb dbeb dbeb * * 4051 8ea2c0d1,8ea2c0d1v 8cb9 e8b2b9 8cb9 00008cb9 dbeb dbeb dbeb dbeb dbeb dbeb dbeb
+8959 dbec dbec dbec * * 4052 8ea2c0d2,8ea2c0d2v 8cb5 e8b2b5 8cb5 00008cb5 dbec dbec dbec dbec dbec dbec dbec
+8960 dbed dbed dbed * * 4053 8ea2c0d3,8ea2c0d3v 8d84 e8b684 8d84 00008d84 dbed dbed dbed dbed dbed dbed dbed
+8961 dbee dbee dbee * * 4054 8ea2c0d4,8ea2c0d4v 8d80 e8b680 8d80 00008d80 dbee dbee dbee dbee dbee dbee dbee
+8962 dbef dbef dbef * * 4055 8ea2c0d5,8ea2c0d5v 8d89 e8b689 8d89 00008d89 dbef dbef dbef dbef dbef dbef dbef
+8963 dbf0 dbf0 dbf0 * * 4056 8ea2c0d6,8ea2c0d6v 8dd8 e8b798 8dd8 00008dd8 dbf0 dbf0 dbf0 dbf0 dbf0 dbf0 dbf0
+8964 dbf1 dbf1 dbf1 * * 4057 8ea2c0d7,8ea2c0d7v 8dd3 e8b793 8dd3 00008dd3 dbf1 dbf1 dbf1 dbf1 dbf1 dbf1 dbf1
+8965 dbf2 dbf2 dbf2 * * 4058 8ea2c0d8,8ea2c0d8v 8dcd e8b78d 8dcd 00008dcd dbf2 dbf2 dbf2 dbf2 dbf2 dbf2 dbf2
+8966 dbf3 dbf3 dbf3 * * 4059 8ea2c0d9,8ea2c0d9v 8dc7 e8b787 8dc7 00008dc7 dbf3 dbf3 dbf3 dbf3 dbf3 dbf3 dbf3
+8967 dbf4 dbf4 dbf4 * * 405a 8ea2c0da,8ea2c0dav 8dd6 e8b796 8dd6 00008dd6 dbf4 dbf4 dbf4 dbf4 dbf4 dbf4 dbf4
+8968 dbf5 dbf5 dbf5 * * 405b 8ea2c0db,8ea2c0dbv 8ddc e8b79c 8ddc 00008ddc dbf5 dbf5 dbf5 dbf5 dbf5 dbf5 dbf5
+8969 dbf6 dbf6 dbf6 * * 405c 8ea2c0dc,8ea2c0dcv 8dcf e8b78f 8dcf 00008dcf dbf6 dbf6 dbf6 dbf6 dbf6 dbf6 dbf6
+8970 dbf7 dbf7 dbf7 * * 405d 8ea2c0dd,8ea2c0ddv 8dd5 e8b795 8dd5 00008dd5 dbf7 dbf7 dbf7 dbf7 dbf7 dbf7 dbf7
+8971 dbf8 dbf8 dbf8 * * 405e 8ea2c0de,8ea2c0dev 8dd9 e8b799 8dd9 00008dd9 dbf8 dbf8 dbf8 dbf8 dbf8 dbf8 dbf8
+8972 dbf9 dbf9 dbf9 * * 405f 8ea2c0df,8ea2c0dfv 8dc8 e8b788 8dc8 00008dc8 dbf9 dbf9 dbf9 dbf9 dbf9 dbf9 dbf9
+8973 dbfa dbfa dbfa * * 4060 8ea2c0e0,8ea2c0e0v 8dd7 e8b797 8dd7 00008dd7 dbfa dbfa dbfa dbfa dbfa dbfa dbfa
+8974 dbfb dbfb dbfb * * 4061 8ea2c0e1,8ea2c0e1v 8dc5 e8b785 8dc5 00008dc5 dbfb dbfb dbfb dbfb dbfb dbfb dbfb
+8975 dbfc dbfc dbfc * * 4062 8ea2c0e2,8ea2c0e2v 8eef e8bbaf 8eef 00008eef dbfc dbfc dbfc dbfc dbfc dbfc dbfc
+8976 dbfd dbfd dbfd * * 4063 8ea2c0e3,8ea2c0e3v 8ef7 e8bbb7 8ef7 00008ef7 dbfd dbfd dbfd dbfd dbfd dbfd dbfd
+8977 dbfe dbfe dbfe * * 4064 8ea2c0e4,8ea2c0e4v 8efa e8bbba 8efa 00008efa dbfe dbfe dbfe dbfe dbfe dbfe dbfe
+8978 dc40 dc40 dc40 * * 4065 8ea2c0e5,8ea2c0e5v 8ef9 e8bbb9 8ef9 00008ef9 dc40 dc40 dc40 dc40 dc40 dc40 dc40
+8979 dc41 dc41 dc41 * * 4066 8ea2c0e6,8ea2c0e6v 8ee6 e8bba6 8ee6 00008ee6 dc41 dc41 dc41 dc41 dc41 dc41 dc41
+8980 dc42 dc42 dc42 * * 4067 8ea2c0e7,8ea2c0e7v 8eee e8bbae 8eee 00008eee dc42 dc42 dc42 dc42 dc42 dc42 dc42
+8981 dc43 dc43 dc43 * * 4068 8ea2c0e8,8ea2c0e8v 8ee5 e8bba5 8ee5 00008ee5 dc43 dc43 dc43 dc43 dc43 dc43 dc43
+8982 dc44 dc44 dc44 * * 4069 8ea2c0e9,8ea2c0e9v 8ef5 e8bbb5 8ef5 00008ef5 dc44 dc44 dc44 dc44 dc44 dc44 dc44
+8983 dc45 dc45 dc45 * * 406a 8ea2c0ea,8ea2c0eav 8ee7 e8bba7 8ee7 00008ee7 dc45 dc45 dc45 dc45 dc45 dc45 dc45
+8984 dc46 dc46 dc46 * * 406b 8ea2c0eb,8ea2c0ebv 8ee8 e8bba8 8ee8 00008ee8 dc46 dc46 dc46 dc46 dc46 dc46 dc46
+8985 dc47 dc47 dc47 * * 406c 8ea2c0ec,8ea2c0ecv 8ef6 e8bbb6 8ef6 00008ef6 dc47 dc47 dc47 dc47 dc47 dc47 dc47
+8986 dc48 dc48 dc48 * * 406d 8ea2c0ed,8ea2c0edv 8eeb e8bbab 8eeb 00008eeb dc48 dc48 dc48 dc48 dc48 dc48 dc48
+8987 dc49 dc49 dc49 * * 406e 8ea2c0ee,8ea2c0eev 8ef1 e8bbb1 8ef1 00008ef1 dc49 dc49 dc49 dc49 dc49 dc49 dc49
+8988 dc4a dc4a dc4a * * 406f 8ea2c0ef,8ea2c0efv 8eec e8bbac 8eec 00008eec dc4a dc4a dc4a dc4a dc4a dc4a dc4a
+8989 dc4b dc4b dc4b * * 4070 8ea2c0f0,8ea2c0f0v 8ef4 e8bbb4 8ef4 00008ef4 dc4b dc4b dc4b dc4b dc4b dc4b dc4b
+8990 dc4c dc4c dc4c * * 4071 8ea2c0f1,8ea2c0f1v 8ee9 e8bba9 8ee9 00008ee9 dc4c dc4c dc4c dc4c dc4c dc4c dc4c
+8991 dc4d dc4d dc4d * * 4072 8ea2c0f2,8ea2c0f2v 902d e980ad 902d 0000902d dc4d dc4d dc4d dc4d dc4d dc4d dc4d
+8992 dc4e dc4e dc4e * * 4073 8ea2c0f3,8ea2c0f3v 9034 e980b4 9034 00009034 dc4e dc4e dc4e dc4e dc4e dc4e dc4e
+8993 dc4f dc4f dc4f * * 4074 8ea2c0f4,8ea2c0f4v 902f e980af 902f 0000902f dc4f dc4f dc4f dc4f dc4f dc4f dc4f
+8994 dc50 dc50 dc50 * * 4075 8ea2c0f5,8ea2c0f5v 9106 e98486 9106 00009106 dc50 dc50 dc50 dc50 dc50 dc50 dc50
+8995 dc51 dc51 dc51 * * 4076 8ea2c0f6,8ea2c0f6v 912c e984ac 912c 0000912c dc51 dc51 dc51 dc51 dc51 dc51 dc51
+8996 dc52 dc52 dc52 * * 4077 8ea2c0f7,8ea2c0f7v 9104 e98484,eeaf8f 9104,ebcf 00009104,0000ebcf 9c68,dc52 dc52 dc52 dc52 dc52 dc52 9c68,dc52
+8997 dc53 dc53 dc53 * * 4078 8ea2c0f8,8ea2c0f8v 90ff e983bf 90ff 000090ff dc53 dc53 dc53 dc53 dc53 dc53 dc53
+8998 dc54 dc54 dc54 * * 4079 8ea2c0f9,8ea2c0f9v 90fc e983bc 90fc 000090fc dc54 dc54 dc54 dc54 dc54 dc54 dc54
+8999 dc55 dc55 dc55 * * 407a 8ea2c0fa,8ea2c0fav 9108 e98488 9108 00009108 dc55 dc55 dc55 dc55 dc55 dc55 dc55
+9000 dc56 dc56 dc56 * * 407b 8ea2c0fb,8ea2c0fbv 90f9 e983b9 90f9 000090f9 dc56 dc56 dc56 dc56 dc56 dc56 dc56
+9001 dc57 dc57 dc57 * * 407c 8ea2c0fc,8ea2c0fcv 90fb e983bb 90fb 000090fb dc57 dc57 dc57 dc57 dc57 dc57 dc57
+9002 dc58 dc58 dc58 * * 407d 8ea2c0fd,8ea2c0fdv 9101 e98481 9101 00009101 dc58 dc58 dc58 dc58 dc58 dc58 dc58
+9003 dc59 dc59 dc59 * * 407e 8ea2c0fe,8ea2c0fev 9100 e98480 9100 00009100 dc59 dc59 dc59 dc59 dc59 dc59 dc59
+9004 dc5a dc5a dc5a * * 4121 8ea2c1a1,8ea2c1a1v 9107 e98487 9107 00009107 dc5a dc5a dc5a dc5a dc5a dc5a dc5a
+9005 dc5b dc5b dc5b * * 4122 8ea2c1a2,8ea2c1a2v 9105 e98485 9105 00009105 dc5b dc5b dc5b dc5b dc5b dc5b dc5b
+9006 dc5c dc5c dc5c * * 4123 8ea2c1a3,8ea2c1a3v 9103 e98483 9103 00009103 dc5c dc5c dc5c dc5c dc5c dc5c dc5c
+9007 dc5d dc5d dc5d * * 4124 8ea2c1a4,8ea2c1a4v 9161 e985a1 9161 00009161 dc5d dc5d dc5d dc5d dc5d dc5d dc5d
+9008 dc5e dc5e dc5e * * 4125 8ea2c1a5,8ea2c1a5v 9164 e985a4 9164 00009164 dc5e dc5e dc5e dc5e dc5e dc5e dc5e
+9009 dc5f dc5f dc5f * * 4126 8ea2c1a6,8ea2c1a6v 915f e9859f 915f 0000915f dc5f dc5f dc5f dc5f dc5f dc5f dc5f
+9010 dc60 dc60 dc60 * * 4127 8ea2c1a7,8ea2c1a7v 9162 e985a2 9162 00009162 dc60 dc60 dc60 dc60 dc60 dc60 dc60
+9011 dc61 dc61 dc61 * * 4128 8ea2c1a8,8ea2c1a8v 9160 e985a0 9160 00009160 dc61 dc61 dc61 dc61 dc61 dc61 dc61
+9012 dc62 dc62 dc62 * * 4129 8ea2c1a9,8ea2c1a9v 9201 e98881 9201 00009201 dc62 dc62 dc62 dc62 dc62 dc62 dc62
+9013 dc63 dc63 dc63 * * 412a 8ea2c1aa,8ea2c1aav 920a e9888a 920a 0000920a dc63 dc63 dc63 dc63 dc63 dc63 dc63
+9014 dc64 dc64 dc64 * * 412b 8ea2c1ab,8ea2c1abv 9225 e988a5 9225 00009225 dc64 dc64 dc64 dc64 dc64 dc64 dc64
+9015 dc65 dc65 dc65 * * 412c 8ea2c1ac,8ea2c1acv 9203 e98883 9203 00009203 dc65 dc65 dc65 dc65 dc65 dc65 dc65
+9016 dc66 dc66 dc66 * * 412d 8ea2c1ad,8ea2c1adv 921a e9889a 921a 0000921a dc66 dc66 dc66 dc66 dc66 dc66 dc66
+9017 dc67 dc67 dc67 * * 412e 8ea2c1ae,8ea2c1aev 9226 e988a6 9226 00009226 dc67 dc67 dc67 dc67 dc67 dc67 dc67
+9018 dc68 dc68 dc68 * * 412f 8ea2c1af,8ea2c1afv 920f e9888f 920f 0000920f dc68 dc68 dc68 dc68 dc68 dc68 dc68
+9019 dc69 dc69 dc69 * * 4130 8ea2c1b0,8ea2c1b0v 920c e9888c 920c 0000920c dc69 dc69 dc69 dc69 dc69 dc69 dc69
+9020 dc6a dc6a dc6a * * 4131 8ea2c1b1,8ea2c1b1v 9200 e98880 9200 00009200 dc6a dc6a dc6a dc6a dc6a dc6a dc6a
+9021 dc6b dc6b dc6b * * 4132 8ea2c1b2,8ea2c1b2v 9212 e98892 9212 00009212 dc6b dc6b dc6b dc6b dc6b dc6b dc6b
+9022 dc6c dc6c dc6c * * 4133 8ea2c1b3,8ea2c1b3v 91ff e987bf 91ff 000091ff dc6c dc6c dc6c dc6c dc6c dc6c dc6c
+9023 dc6d dc6d dc6d * * 4134 8ea2c1b4,8ea2c1b4v 91fd e987bd 91fd 000091fd dc6d dc6d dc6d dc6d dc6d dc6d dc6d
+9024 dc6e dc6e dc6e * * 4135 8ea2c1b5,8ea2c1b5v 9206 e98886 9206 00009206 dc6e dc6e dc6e dc6e dc6e dc6e dc6e
+9025 dc6f dc6f dc6f * * 4136 8ea2c1b6,8ea2c1b6v 9204 e98884 9204 00009204 dc6f dc6f dc6f dc6f dc6f dc6f dc6f
+9026 dc70 dc70 dc70 * * 4137 8ea2c1b7,8ea2c1b7v 9227 e988a7 9227 00009227 dc70 dc70 dc70 dc70 dc70 dc70 dc70
+9027 dc71 dc71 dc71 * * 4138 8ea2c1b8,8ea2c1b8v 9202 e98882 9202 00009202 dc71 dc71 dc71 dc71 dc71 dc71 dc71
+9028 dc72 dc72 dc72 * * 4139 8ea2c1b9,8ea2c1b9v 921c e9889c 921c 0000921c dc72 dc72 dc72 dc72 dc72 dc72 dc72
+9029 dc73 dc73 dc73 * * 413a 8ea2c1ba,8ea2c1bav 9224 e988a4 9224 00009224 dc73 dc73 dc73 dc73 dc73 dc73 dc73
+9030 dc74 dc74 dc74 * * 413b 8ea2c1bb,8ea2c1bbv 9219 e98899 9219 00009219 dc74 dc74 dc74 dc74 dc74 dc74 dc74
+9031 dc75 dc75 dc75 * * 413c 8ea2c1bc,8ea2c1bcv 9217 e98897 9217 00009217 dc75 dc75 dc75 dc75 dc75 dc75 dc75
+9032 dc76 dc76 dc76 * * 413d 8ea2c1bd,8ea2c1bdv 9205 e98885 9205 00009205 dc76 dc76 dc76 dc76 dc76 dc76 dc76
+9033 dc77 dc77 dc77 * * 413e 8ea2c1be,8ea2c1bev 9216 e98896 9216 00009216 dc77 dc77 dc77 dc77 dc77 dc77 dc77
+9034 dc78 dc78 dc78 * * 413f 8ea2c1bf,8ea2c1bfv 957b e995bb 957b 0000957b dc78 dc78 dc78 dc78 dc78 dc78 dc78
+9035 dc79 dc79 dc79 * * 4140 8ea2c1c0,8ea2c1c0v 958d e9968d 958d 0000958d dc79 dc79 dc79 dc79 dc79 dc79 dc79
+9036 dc7a dc7a dc7a * * 4141 8ea2c1c1,8ea2c1c1v 958c e9968c 958c 0000958c dc7a dc7a dc7a dc7a dc7a dc7a dc7a
+9037 dc7b dc7b dc7b * * 4142 8ea2c1c2,8ea2c1c2v 9590 e99690 9590 00009590 dc7b dc7b dc7b dc7b dc7b dc7b dc7b
+9038 dc7c dc7c dc7c * * 4143 8ea2c1c3,8ea2c1c3v 9687 e99a87 9687 00009687 dc7c dc7c dc7c dc7c dc7c dc7c dc7c
+9039 dc7d dc7d dc7d * * 4144 8ea2c1c4,8ea2c1c4v 967e e999be 967e 0000967e dc7d dc7d dc7d dc7d dc7d dc7d dc7d
+9040 dc7e dc7e dc7e * * 4145 8ea2c1c5,8ea2c1c5v 9688 e99a88 9688 00009688 dc7e dc7e dc7e dc7e dc7e dc7e dc7e
+9041 dca1 dca1 dca1 * * 4146 8ea2c1c6,8ea2c1c6v 9689 e99a89 9689 00009689 dca1 dca1 dca1 dca1 dca1 dca1 dca1
+9042 dca2 dca2 dca2 * * 4147 8ea2c1c7,8ea2c1c7v 9683 e99a83 9683 00009683 dca2 dca2,fea1 90dc,dca2 dca2 dca2 dca2 dca2
+9043 dca3 dca3 dca3 * * 4148 8ea2c1c8,8ea2c1c8v 9680 e99a80 9680 00009680 dca3 dca3 dca3 dca3 dca3 dca3 dca3
+9044 dca4 dca4 dca4 * * 4149 8ea2c1c9,8ea2c1c9v 96c2 e99b82 96c2 000096c2 dca4 dca4 dca4 dca4 dca4 dca4 dca4
+9045 dca5 dca5 dca5 * * 414a 8ea2c1ca,8ea2c1cav 96c8 e99b88 96c8 000096c8 dca5 dca5 dca5 dca5 dca5 dca5 dca5
+9046 dca6 dca6 dca6 * * 414b 8ea2c1cb,8ea2c1cbv 96c3 e99b83 96c3 000096c3 dca6 dca6 dca6 dca6 dca6 dca6 dca6
+9047 dca7 dca7 dca7 * * 414c 8ea2c1cc,8ea2c1ccv 96f1 e99bb1 96f1 000096f1 dca7 dca7 dca7 dca7 dca7 dca7 dca7
+9048 dca8 dca8 dca8 * * 414d 8ea2c1cd,8ea2c1cdv 96f0 e99bb0 96f0 000096f0 dca8 dca8 dca8 dca8 dca8 dca8 dca8
+9049 dca9 dca9 dca9 * * 414e 8ea2c1ce,8ea2c1cev 976c e99dac 976c 0000976c dca9 dca9 dca9 dca9 dca9 dca9 dca9
+9050 dcaa dcaa dcaa * * 414f 8ea2c1cf,8ea2c1cfv 9770 e99db0 9770 00009770 dcaa dcaa dcaa dcaa dcaa dcaa dcaa
+9051 dcab dcab dcab * * 4150 8ea2c1d0,8ea2c1d0v 976e e99dae 976e 0000976e dcab dcab dcab dcab dcab dcab dcab
+9052 dcac dcac dcac * * 4151 8ea2c1d1,8ea2c1d1v 9807 e9a087 9807 00009807 dcac dcac dcac dcac dcac dcac dcac
+9053 dcad dcad dcad * * 4152 8ea2c1d2,8ea2c1d2v 98a9 e9a2a9 98a9 000098a9 dcad dcad dcad dcad dcad dcad dcad
+9054 dcae dcae dcae * * 4153 8ea2c1d3,8ea2c1d3v 98eb e9a3ab 98eb 000098eb dcae dcae dcae dcae dcae dcae dcae
+9055 dcaf dcaf dcaf * * 4154 8ea2c1d4,8ea2c1d4v 9ce6 e9b3a6 9ce6 00009ce6 dcaf dcaf dcaf dcaf dcaf dcaf dcaf
+9056 dcb0 dcb0 dcb0 * 292f 4155 8ea1a9af,8ea2c1d5,a9af,8ea1a9afv,8ea2c1d5v,a9afv 9ef9 e2bf8b,e9bbb9 2fcb,9ef9 00002fcb,00009ef9 dcb0 dcb0 dcb0 dcb0 dcb0 dcb0 dcb0
+9057 dcb1 dcb1 dcb1 * * 4156 8ea2c1d6,8ea2c1d6v 4e83 e4ba83 4e83 00004e83 dcb1 dcb1 dcb1 dcb1 dcb1 dcb1 dcb1
+9058 dcb2 dcb2 dcb2 * * 4157 8ea2c1d7,8ea2c1d7v 4e84 e4ba84 4e84 00004e84 dcb2 dcb2 dcb2 dcb2 dcb2 dcb2 dcb2
+9059 dcb3 dcb3 dcb3 * * 4158 8ea2c1d8,8ea2c1d8v 4eb6 e4bab6 4eb6 00004eb6 dcb3 dcb3 dcb3 dcb3 dcb3 dcb3 dcb3
+9060 dcb4 dcb4 dcb4 * * 4159 8ea2c1d9,8ea2c1d9v 50bd e582bd 50bd 000050bd dcb4 dcb4 dcb4 dcb4 dcb4 dcb4 dcb4
+9061 dcb5 dcb5 dcb5 * * 415a 8ea2c1da,8ea2c1dav 50bf e582bf 50bf 000050bf dcb5 dcb5 dcb5 dcb5 dcb5 dcb5 dcb5
+9062 dcb6 dcb6 dcb6 * * 415b 8ea2c1db,8ea2c1dbv 50c6 e58386 50c6 000050c6 dcb6 dcb6 dcb6 dcb6 dcb6 dcb6 dcb6
+9063 dcb7 dcb7 dcb7 * * 415c 8ea2c1dc,8ea2c1dcv 50ae e582ae 50ae 000050ae dcb7 dcb7 dcb7 dcb7 dcb7 dcb7 dcb7
+9064 dcb8 dcb8 dcb8 * * 415d 8ea2c1dd,8ea2c1ddv 50c4 e58384 50c4 000050c4 dcb8 dcb8 dcb8 dcb8 dcb8 dcb8 dcb8
+9065 dcb9 dcb9 dcb9 * * 415e 8ea2c1de,8ea2c1dev 50ca e5838a 50ca 000050ca dcb9 dcb9 dcb9 dcb9 dcb9 dcb9 dcb9
+9066 dcba dcba dcba * * 415f 8ea2c1df,8ea2c1dfv 50b4 e582b4 50b4 000050b4 dcba dcba dcba dcba dcba dcba dcba
+9067 dcbb dcbb dcbb * * 4160 8ea2c1e0,8ea2c1e0v 50c8 e58388 50c8 000050c8 dcbb dcbb dcbb dcbb dcbb dcbb dcbb
+9068 dcbc dcbc dcbc * * 4161 8ea2c1e1,8ea2c1e1v 50c2 e58382 50c2 000050c2 dcbc dcbc dcbc dcbc dcbc dcbc dcbc
+9069 dcbd dcbd dcbd * * 4162 8ea2c1e2,8ea2c1e2v 50b0 e582b0 50b0 000050b0 dcbd dcbd dcbd dcbd dcbd dcbd dcbd
+9070 dcbe dcbe dcbe * * 4163 8ea2c1e3,8ea2c1e3v 50c1 e58381 50c1 000050c1 dcbe dcbe dcbe dcbe dcbe dcbe dcbe
+9071 dcbf dcbf dcbf * * 4164 8ea2c1e4,8ea2c1e4v 50ba e582ba 50ba 000050ba dcbf dcbf dcbf dcbf dcbf dcbf dcbf
+9072 dcc0 dcc0 dcc0 * * 4165 8ea2c1e5,8ea2c1e5v 50b1 e582b1 50b1 000050b1 dcc0 dcc0 dcc0 dcc0 dcc0 dcc0 dcc0
+9073 dcc1 dcc1 dcc1 * * 4166 8ea2c1e6,8ea2c1e6v 50cb e5838b 50cb 000050cb dcc1 dcc1 dcc1 dcc1 dcc1 dcc1 dcc1
+9074 dcc2 dcc2 dcc2 * * 4167 8ea2c1e7,8ea2c1e7v 50c9 e58389 50c9 000050c9 dcc2 dcc2 dcc2 dcc2 dcc2 dcc2 dcc2
+9075 dcc3 dcc3 dcc3 * * 4168 8ea2c1e8,8ea2c1e8v 50b6 e582b6 50b6 000050b6 dcc3 dcc3 dcc3 dcc3 dcc3 dcc3 dcc3
+9076 dcc4 dcc4 dcc4 * * 4169 8ea2c1e9,8ea2c1e9v 50b8 e582b8 50b8 000050b8 dcc4 dcc4 dcc4 dcc4 dcc4 dcc4 dcc4
+9077 dcc5 dcc5 dcc5 * * 416a 8ea2c1ea,8ea2c1eav 51d7 e58797 51d7 000051d7 dcc5 dcc5 dcc5 dcc5 dcc5 dcc5 dcc5
+9078 dcc6 dcc6 dcc6 * * 416b 8ea2c1eb,8ea2c1ebv 527a e589ba 527a 0000527a dcc6 dcc6 dcc6 dcc6 dcc6 dcc6 dcc6
+9079 dcc7 dcc7 dcc7 * * 416c 8ea2c1ec,8ea2c1ecv 5278 e589b8 5278 00005278 dcc7 dcc7 dcc7 dcc7 dcc7 dcc7 dcc7
+9080 dcc8 dcc8 dcc8 * * 416d 8ea2c1ed,8ea2c1edv 527b e589bb 527b 0000527b dcc8 dcc8 dcc8 dcc8 dcc8 dcc8 dcc8
+9081 dcc9 dcc9 dcc9 * * 416e 8ea2c1ee,8ea2c1eev 527c e589bc 527c 0000527c dcc9 dcc9 dcc9 dcc9 dcc9 dcc9 dcc9
+9082 dcca dcca dcca * * 416f 8ea2c1ef,8ea2c1efv 55c3 e59783 55c3 000055c3 dcca dcca dcca dcca dcca dcca dcca
+9083 dccb dccb dccb * * 4170 8ea2c1f0,8ea2c1f0v 55db e5979b 55db 000055db dccb dccb dccb dccb dccb dccb dccb
+9084 dccc dccc dccc * * 4171 8ea2c1f1,8ea2c1f1v 55cc e5978c 55cc 000055cc dccc dccc dccc dccc dccc dccc dccc
+9085 dccd dccd dccd * * 4172 8ea2c1f2,8ea2c1f2v 55d0 e59790 55d0 000055d0 dccd dccd dccd dccd dccd dccd dccd
+9086 dcce dcce dcce * * 4173 8ea2c1f3,8ea2c1f3v 55cb e5978b 55cb 000055cb dcce dcce dcce dcce dcce dcce dcce
+9087 dccf dccf dccf * * 4174 8ea2c1f4,8ea2c1f4v 55ca e5978a 55ca 000055ca dccf dccf dccf dccf dccf dccf dccf
+9088 dcd0 dcd0 dcd0 * * 4175 8ea2c1f5,8ea2c1f5v 55dd e5979d 55dd 000055dd dcd0 dcd0 dcd0 dcd0 dcd0 dcd0 dcd0
+9089 dcd1,ddfc dcd1,ddfc dcd1,ddfc * * 4176 8ea2c1f6,8ea2c1f6v 55c0,fa0d e59780,efa88d 55c0,fa0d 000055c0,0000fa0d ddfc,dcd1 dcd1,ddfc dcd1,ddfc dcd1,ddfc dcd1,ddfc dcd1,ddfc ddfc,dcd1
+9090 dcd2 dcd2 dcd2 * * 4177 8ea2c1f7,8ea2c1f7v 55d4 e59794 55d4 000055d4 dcd2 dcd2 dcd2 dcd2 dcd2 dcd2 dcd2
+9091 dcd3 dcd3 dcd3 * * 4178 8ea2c1f8,8ea2c1f8v 55c4 e59784 55c4 000055c4 dcd3 dcd3 dcd3 dcd3 dcd3 dcd3 dcd3
+9092 dcd4 dcd4 dcd4 * * 4179 8ea2c1f9,8ea2c1f9v 55e9 e597a9 55e9 000055e9 dcd4 dcd4 dcd4 dcd4 dcd4 dcd4 dcd4
+9093 dcd5 dcd5 dcd5 * * 417a 8ea2c1fa,8ea2c1fav 55bf e596bf 55bf 000055bf dcd5 dcd5 dcd5 dcd5 dcd5 dcd5 dcd5
+9094 dcd6 dcd6 dcd6 * * 417b 8ea2c1fb,8ea2c1fbv 55d2 e59792 55d2 000055d2 dcd6 dcd6 dcd6 dcd6 dcd6 dcd6 dcd6
+9095 dcd7 dcd7 dcd7 * * 417c 8ea2c1fc,8ea2c1fcv 558d e5968d 558d 0000558d dcd7 dcd7 dcd7 dcd7 dcd7 dcd7 dcd7
+9096 dcd8 dcd8 dcd8 * * 417d 8ea2c1fd,8ea2c1fdv 55cf e5978f 55cf 000055cf dcd8 dcd8 dcd8 dcd8 dcd8 dcd8 dcd8
+9097 dcd9 dcd9 dcd9 * * 417e 8ea2c1fe,8ea2c1fev 55d5 e59795 55d5 000055d5 dcd9 dcd9 dcd9 dcd9 dcd9 dcd9 dcd9
+9098 dcda dcda dcda * * 4221 8ea2c2a1,8ea2c2a1v 55e2 e597a2 55e2 000055e2 dcda dcda dcda dcda dcda dcda dcda
+9099 dcdb dcdb dcdb * * 4222 8ea2c2a2,8ea2c2a2v 55d6 e59796 55d6 000055d6 dcdb dcdb dcdb dcdb dcdb dcdb dcdb
+9100 dcdc dcdc dcdc * * 4223 8ea2c2a3,8ea2c2a3v 55c8 e59788 55c8 000055c8 dcdc dcdc dcdc dcdc dcdc dcdc dcdc
+9101 dcdd dcdd dcdd * * 4224 8ea2c2a4,8ea2c2a4v 55f2 e597b2 55f2 000055f2 dcdd dcdd dcdd dcdd dcdd dcdd dcdd
+9102 dcde dcde dcde * * 4225 8ea2c2a5,8ea2c2a5v 55cd e5978d 55cd 000055cd dcde dcde dcde dcde dcde dcde dcde
+9103 dcdf dcdf dcdf * * 4226 8ea2c2a6,8ea2c2a6v 55d9 e59799 55d9 000055d9 dcdf dcdf dcdf dcdf dcdf dcdf dcdf
+9104 dce0 dce0 dce0 * * 4227 8ea2c2a7,8ea2c2a7v 55c2 e59782 55c2 000055c2 dce0 dce0 dce0 dce0 dce0 dce0 dce0
+9105 dce1 dce1 dce1 * * 4228 8ea2c2a8,8ea2c2a8v 5714 e59c94 5714 00005714 dce1 dce1 dce1 dce1 dce1 dce1 dce1
+9106 dce2 dce2 dce2 * * 4229 8ea2c2a9,8ea2c2a9v 5853 e5a193 5853 00005853 dce2 dce2 dce2 dce2 dce2 dce2 dce2
+9107 dce3 dce3 dce3 * * 422a 8ea2c2aa,8ea2c2aav 5868 e5a1a8 5868 00005868 dce3 dce3 dce3 dce3 dce3 dce3 dce3
+9108 dce4 dce4 dce4 * * 422b 8ea2c2ab,8ea2c2abv 5864 e5a1a4 5864 00005864 dce4 dce4 dce4 dce4 dce4 dce4 dce4
+9109 dce5 dce5 dce5 * * 422c 8ea2c2ac,8ea2c2acv 584f e5a18f 584f 0000584f dce5 dce5 dce5 dce5 dce5 dce5 dce5
+9110 dce6 dce6 dce6 * * 422d 8ea2c2ad,8ea2c2adv 584d e5a18d 584d 0000584d dce6 dce6 dce6 dce6 dce6 dce6 dce6
+9111 dce7 dce7 dce7 * * 422e 8ea2c2ae,8ea2c2aev 5849 e5a189 5849 00005849 dce7 dce7 dce7 dce7 dce7 dce7 dce7
+9112 dce8 dce8 dce8 * * 422f 8ea2c2af,8ea2c2afv 586f e5a1af 586f 0000586f dce8 dce8 dce8 dce8 dce8 dce8 dce8
+9113 dce9 dce9 dce9 * * 4230 8ea2c2b0,8ea2c2b0v 5855 e5a195 5855 00005855 dce9 dce9 dce9 dce9 dce9 dce9 dce9
+9114 dcea dcea dcea * * 4231 8ea2c2b1,8ea2c2b1v 584e e5a18e 584e 0000584e dcea dcea dcea dcea dcea dcea dcea
+9115 dceb dceb dceb * * 4232 8ea2c2b2,8ea2c2b2v 585d e5a19d 585d 0000585d dceb dceb dceb dceb dceb dceb dceb
+9116 dcec dcec dcec * * 4233 8ea2c2b3,8ea2c2b3v 5859 e5a199 5859 00005859 dcec dcec dcec dcec dcec dcec dcec
+9117 dced dced dced * * 4234 8ea2c2b4,8ea2c2b4v 5865 e5a1a5 5865 00005865 dced dced dced dced dced dced dced
+9118 dcee dcee dcee * * 4235 8ea2c2b5,8ea2c2b5v 585b e5a19b 585b 0000585b dcee dcee dcee dcee dcee dcee dcee
+9119 dcef dcef dcef * * 4236 8ea2c2b6,8ea2c2b6v 583d e5a0bd 583d 0000583d dcef dcef dcef dcef dcef dcef dcef
+9120 dcf0 dcf0 dcf0 * * 4237 8ea2c2b7,8ea2c2b7v 5863 e5a1a3 5863 00005863 dcf0 dcf0 dcf0 dcf0 dcf0 dcf0 dcf0
+9121 dcf1 dcf1 dcf1 * * 4238 8ea2c2b8,8ea2c2b8v 5871 e5a1b1 5871 00005871 dcf1 dcf1 dcf1 dcf1 dcf1 dcf1 dcf1
+9122 dcf2 dcf2 dcf2 * * 4239 8ea2c2b9,8ea2c2b9v 58fc e5a3bc 58fc 000058fc dcf2 dcf2 dcf2 dcf2 dcf2 dcf2 dcf2
+9123 dcf3 dcf3 dcf3 * * 423a 8ea2c2ba,8ea2c2bav 5ac7 e5ab87 5ac7 00005ac7 dcf3 dcf3 dcf3 dcf3 dcf3 dcf3 dcf3
+9124 dcf4 dcf4 dcf4 * * 423b 8ea2c2bb,8ea2c2bbv 5ac4 e5ab84 5ac4 00005ac4 dcf4 dcf4 dcf4 dcf4 dcf4 dcf4 dcf4
+9125 dcf5 dcf5 dcf5 * * 423c 8ea2c2bc,8ea2c2bcv 5acb e5ab8b 5acb 00005acb dcf5 dcf5 dcf5 dcf5 dcf5 dcf5 dcf5
+9126 dcf6 dcf6 dcf6 * * 423d 8ea2c2bd,8ea2c2bdv 5aba e5aaba 5aba 00005aba dcf6 dcf6 dcf6 dcf6 dcf6 dcf6 dcf6
+9127 dcf7 dcf7 dcf7 * * 423e 8ea2c2be,8ea2c2bev 5ab8 e5aab8 5ab8 00005ab8 dcf7 dcf7 dcf7 dcf7 dcf7 dcf7 dcf7
+9128 dcf8 dcf8 dcf8 * * 423f 8ea2c2bf,8ea2c2bfv 5ab1 e5aab1 5ab1 00005ab1 dcf8 dcf8 dcf8 dcf8 dcf8 dcf8 dcf8
+9129 dcf9 dcf9 dcf9 * * 4240 8ea2c2c0,8ea2c2c0v 5ab5 e5aab5 5ab5 00005ab5 dcf9 dcf9 dcf9 dcf9 dcf9 dcf9 dcf9
+9130 dcfa dcfa dcfa * * 4241 8ea2c2c1,8ea2c2c1v 5ab0 e5aab0 5ab0 00005ab0 dcfa dcfa dcfa dcfa dcfa dcfa dcfa
+9131 dcfb dcfb dcfb * * 4242 8ea2c2c2,8ea2c2c2v 5abf e5aabf 5abf 00005abf dcfb dcfb dcfb dcfb dcfb dcfb dcfb
+9132 dcfc dcfc dcfc * * 4243 8ea2c2c3,8ea2c2c3v 5ac8 e5ab88 5ac8 00005ac8 dcfc dcfc dcfc dcfc dcfc dcfc dcfc
+9133 dcfd dcfd dcfd * * 4244 8ea2c2c4,8ea2c2c4v 5abb e5aabb 5abb 00005abb dcfd dcfd dcfd dcfd dcfd dcfd dcfd
+9134 dcfe dcfe dcfe * * 4245 8ea2c2c5,8ea2c2c5v 5ac6 e5ab86 5ac6 00005ac6 dcfe dcfe dcfe dcfe dcfe dcfe dcfe
+9135 dd40 dd40 dd40 * * 4246 8ea2c2c6,8ea2c2c6v 5ab7 e5aab7 5ab7 00005ab7 dd40 dd40 dd40 dd40 dd40 dd40 dd40
+9136 dd41 dd41 dd41 * * 4247 8ea2c2c7,8ea2c2c7v 5ac0 e5ab80 5ac0 00005ac0 dd41 dd41 dd41 dd41 dd41 dd41 dd41
+9137 dd42 dd42 dd42 * * 4248 8ea2c2c8,8ea2c2c8v 5aca e5ab8a 5aca 00005aca dd42 dd42 dd42 dd42 dd42 dd42 dd42
+9138 dd43 dd43 dd43 * * 4249 8ea2c2c9,8ea2c2c9v 5ab4 e5aab4 5ab4 00005ab4 dd43 dd43 dd43 dd43 dd43 dd43 dd43
+9139 dd44 dd44 dd44 * * 424a 8ea2c2ca,8ea2c2cav 5ab6 e5aab6 5ab6 00005ab6 dd44 dd44 dd44 dd44 dd44 dd44 dd44
+9140 dd45 dd45 dd45 * * 424b 8ea2c2cb,8ea2c2cbv 5acd e5ab8d 5acd 00005acd dd45 dd45 dd45 dd45 dd45 dd45 dd45
+9141 dd46 dd46 dd46 * * 424c 8ea2c2cc,8ea2c2ccv 5ab9 e5aab9 5ab9 00005ab9 dd46 dd46 dd46 dd46 dd46 dd46 dd46
+9142 dd47 dd47 dd47 * * 424d 8ea2c2cd,8ea2c2cdv 5a90 e5aa90 5a90 00005a90 dd47 dd47 dd47 dd47 dd47 dd47 dd47
+9143 dd48 dd48 dd48 * * 424e 8ea2c2ce,8ea2c2cev 5bd6 e5af96 5bd6 00005bd6 dd48 dd48 dd48 dd48 dd48 dd48 dd48
+9144 dd49 dd49 dd49 * * 424f 8ea2c2cf,8ea2c2cfv 5bd8 e5af98 5bd8 00005bd8 dd49 dd49 dd49 dd49 dd49 dd49 dd49
+9145 dd4a dd4a dd4a * * 4250 8ea2c2d0,8ea2c2d0v 5bd9 e5af99 5bd9 00005bd9 dd4a dd4a dd4a dd4a dd4a dd4a dd4a
+9146 dd4b dd4b dd4b * * 4251 8ea2c2d1,8ea2c2d1v 5c1f e5b09f 5c1f 00005c1f dd4b dd4b dd4b dd4b dd4b dd4b dd4b
+9147 dd4c dd4c dd4c * * 4252 8ea2c2d2,8ea2c2d2v 5c33 e5b0b3 5c33 00005c33 dd4c dd4c dd4c dd4c dd4c dd4c dd4c
+9148 dd4d dd4d dd4d * * 4253 8ea2c2d3,8ea2c2d3v 5d71 e5b5b1 5d71 00005d71 dd4d dd4d dd4d dd4d dd4d dd4d dd4d
+9149 dd4e dd4e dd4e * * 4254 8ea2c2d4,8ea2c2d4v 5d63 e5b5a3 5d63 00005d63 dd4e dd4e dd4e dd4e dd4e dd4e dd4e
+9150 dd4f dd4f dd4f * * 4255 8ea2c2d5,8ea2c2d5v 5d4a e5b58a 5d4a 00005d4a dd4f dd4f dd4f dd4f dd4f dd4f dd4f
+9151 dd50 dd50 dd50 * * 4256 8ea2c2d6,8ea2c2d6v 5d65 e5b5a5 5d65 00005d65 dd50 dd50 dd50 dd50 dd50 dd50 dd50
+9152 dd51 dd51 dd51 * * 4257 8ea2c2d7,8ea2c2d7v 5d72 e5b5b2 5d72 00005d72 dd51 dd51 dd51 dd51 dd51 dd51 dd51
+9153 dd52 dd52 dd52 * * 4258 8ea2c2d8,8ea2c2d8v 5d6c e5b5ac 5d6c 00005d6c dd52 dd52 dd52 dd52 dd52 dd52 dd52
+9154 dd53 dd53 dd53 * * 4259 8ea2c2d9,8ea2c2d9v 5d5e e5b59e 5d5e 00005d5e dd53 dd53 dd53 dd53 dd53 dd53 dd53
+9155 dd54 dd54 dd54 * * 425a 8ea2c2da,8ea2c2dav 5d68 e5b5a8 5d68 00005d68 dd54 dd54 dd54 dd54 dd54 dd54 dd54
+9156 dd55 dd55 dd55 * * 425b 8ea2c2db,8ea2c2dbv 5d67 e5b5a7 5d67 00005d67 dd55 dd55 dd55 dd55 dd55 dd55 dd55
+9157 dd56 dd56 dd56 * * 425c 8ea2c2dc,8ea2c2dcv 5d62 e5b5a2 5d62 00005d62 dd56 dd56 dd56 dd56 dd56 dd56 dd56
+9158 dd57 dd57 dd57 * * 425d 8ea2c2dd,8ea2c2ddv 5df0 e5b7b0 5df0 00005df0 dd57 dd57 dd57 dd57 dd57 dd57 dd57
+9159 dd58 dd58 dd58 * * 425e 8ea2c2de,8ea2c2dev 5e4f e5b98f 5e4f 00005e4f dd58 dd58 dd58 dd58 dd58 dd58 dd58
+9160 dd59 dd59 dd59 * * 425f 8ea2c2df,8ea2c2dfv 5e4e e5b98e 5e4e 00005e4e dd59 dd59 dd59 dd59 dd59 dd59 dd59
+9161 dd5a dd5a dd5a * * 4260 8ea2c2e0,8ea2c2e0v 5e4a e5b98a 5e4a 00005e4a dd5a dd5a dd5a dd5a dd5a dd5a dd5a
+9162 dd5b dd5b dd5b * * 4261 8ea2c2e1,8ea2c2e1v 5e4d e5b98d 5e4d 00005e4d dd5b dd5b dd5b dd5b dd5b dd5b dd5b
+9163 dd5c dd5c dd5c * * 4262 8ea2c2e2,8ea2c2e2v 5e4b e5b98b 5e4b 00005e4b dd5c dd5c dd5c dd5c dd5c dd5c dd5c
+9164 dd5d dd5d dd5d * * 4263 8ea2c2e3,8ea2c2e3v 5ec5 e5bb85 5ec5 00005ec5 dd5d dd5d dd5d dd5d dd5d dd5d dd5d
+9165 dd5e dd5e dd5e * * 4264 8ea2c2e4,8ea2c2e4v 5ecc e5bb8c 5ecc 00005ecc dd5e dd5e dd5e dd5e dd5e dd5e dd5e
+9166 dd5f dd5f dd5f * * 4265 8ea2c2e5,8ea2c2e5v 5ec6 e5bb86 5ec6 00005ec6 dd5f dd5f dd5f dd5f dd5f dd5f dd5f
+9167 dd60 dd60 dd60 * * 4266 8ea2c2e6,8ea2c2e6v 5ecb e5bb8b 5ecb 00005ecb dd60 dd60 dd60 dd60 dd60 dd60 dd60
+9168 dd61 dd61 dd61 * * 4267 8ea2c2e7,8ea2c2e7v 5ec7 e5bb87 5ec7 00005ec7 dd61 dd61 dd61 dd61 dd61 dd61 dd61
+9169 dd62 dd62 dd62 * * 4268 8ea2c2e8,8ea2c2e8v 5f40 e5bd80 5f40 00005f40 dd62 dd62 dd62 dd62 dd62 dd62 dd62
+9170 dd63 dd63 dd63 * * 4269 8ea2c2e9,8ea2c2e9v 5faf e5beaf 5faf 00005faf dd63 dd63 dd63 dd63 dd63 dd63 dd63
+9171 dd64 dd64 dd64 * * 426a 8ea2c2ea,8ea2c2eav 5fad e5bead 5fad 00005fad dd64 dd64 dd64 dd64 dd64 dd64 dd64
+9172 dd65 dd65 dd65 * * 426b 8ea2c2eb,8ea2c2ebv 60f7 e683b7 60f7 000060f7 dd65 dd65 dd65 dd65 dd65 dd65 dd65
+9173 dd66 dd66 dd66 * * 426c 8ea2c2ec,8ea2c2ecv 6149 e68589 6149 00006149 dd66 dd66 dd66 dd66 dd66 dd66 dd66
+9174 dd67 dd67 dd67 * * 426d 8ea2c2ed,8ea2c2edv 614a e6858a 614a 0000614a dd67 dd67 dd67 dd67 dd67 dd67 dd67
+9175 dd68 dd68 dd68 * * 426e 8ea2c2ee,8ea2c2eev 612b e684ab 612b 0000612b dd68 dd68 dd68 dd68 dd68 dd68 dd68
+9176 dd69 dd69 dd69 * * 426f 8ea2c2ef,8ea2c2efv 6145 e68585 6145 00006145 dd69 dd69 dd69 dd69 dd69 dd69 dd69
+9177 dd6a dd6a dd6a * * 4270 8ea2c2f0,8ea2c2f0v 6136 e684b6 6136 00006136 dd6a dd6a dd6a dd6a dd6a dd6a dd6a
+9178 dd6b dd6b dd6b * * 4271 8ea2c2f1,8ea2c2f1v 6132 e684b2 6132 00006132 dd6b dd6b dd6b dd6b dd6b dd6b dd6b
+9179 dd6c dd6c dd6c * * 4272 8ea2c2f2,8ea2c2f2v 612e e684ae 612e 0000612e dd6c dd6c dd6c dd6c dd6c dd6c dd6c
+9180 dd6d dd6d dd6d * * 4273 8ea2c2f3,8ea2c2f3v 6146 e68586 6146 00006146 dd6d dd6d dd6d dd6d dd6d dd6d dd6d
+9181 dd6e dd6e dd6e * * 4274 8ea2c2f4,8ea2c2f4v 612f e684af 612f 0000612f dd6e dd6e dd6e dd6e dd6e dd6e dd6e
+9182 dd6f dd6f dd6f * * 4275 8ea2c2f5,8ea2c2f5v 614f e6858f 614f 0000614f dd6f dd6f dd6f dd6f dd6f dd6f dd6f
+9183 dd70 dd70 dd70 * * 4276 8ea2c2f6,8ea2c2f6v 6129 e684a9 6129 00006129 dd70 dd70 dd70 dd70 dd70 dd70 dd70
+9184 dd71 dd71 dd71 * * 4277 8ea2c2f7,8ea2c2f7v 6140 e68580 6140 00006140 dd71 dd71 dd71 dd71 dd71 dd71 dd71
+9185 dd72 dd72 dd72 * * 4278 8ea2c2f8,8ea2c2f8v 6220 e688a0 6220 00006220 dd72 dd72 dd72 dd72 dd72 dd72 dd72
+9186 dd73 dd73 dd73 * * 4279 8ea2c2f9,8ea2c2f9v 9168 e985a8 9168 00009168 dd73 dd73 dd73 dd73 dd73 dd73 dd73
+9187 dd74 dd74 dd74 * * 427a 8ea2c2fa,8ea2c2fav 6223 e688a3 6223 00006223 dd74 dd74 dd74 dd74 dd74 dd74 dd74
+9188 dd75 dd75 dd75 * * 427b 8ea2c2fb,8ea2c2fbv 6225 e688a5 6225 00006225 dd75 dd75 dd75 dd75 dd75 dd75 dd75
+9189 dd76 dd76 dd76 * * 427c 8ea2c2fc,8ea2c2fcv 6224 e688a4 6224 00006224 dd76 dd76 dd76 dd76 dd76 dd76 dd76
+9190 dd77 dd77 dd77 * * 427d 8ea2c2fd,8ea2c2fdv 63c5 e68f85 63c5 000063c5 dd77 dd77 dd77 dd77 dd77 dd77 dd77
+9191 dd78 dd78 dd78 * * 427e 8ea2c2fe,8ea2c2fev 63f1 e68fb1 63f1 000063f1 dd78 dd78 dd78 dd78 dd78 dd78 dd78
+9192 dd79 dd79 dd79 * * 4321 8ea2c3a1,8ea2c3a1v 63eb e68fab 63eb 000063eb dd79 dd79 dd79 dd79 dd79 dd79 dd79
+9193 dd7a dd7a dd7a * * 4322 8ea2c3a2,8ea2c3a2v 6410 e69090 6410 00006410 dd7a dd7a dd7a dd7a dd7a dd7a dd7a
+9194 dd7b dd7b dd7b * * 4323 8ea2c3a3,8ea2c3a3v 6412 e69092 6412 00006412 dd7b dd7b dd7b dd7b dd7b dd7b dd7b
+9195 dd7c dd7c dd7c * * 4324 8ea2c3a4,8ea2c3a4v 6409 e69089 6409 00006409 dd7c dd7c dd7c dd7c dd7c dd7c dd7c
+9196 dd7d dd7d dd7d * * 4325 8ea2c3a5,8ea2c3a5v 6420 e690a0 6420 00006420 dd7d dd7d dd7d dd7d dd7d dd7d dd7d
+9197 dd7e dd7e dd7e * * 4326 8ea2c3a6,8ea2c3a6v 6424 e690a4 6424 00006424 dd7e dd7e dd7e dd7e dd7e dd7e dd7e
+9198 dda1 dda1 dda1 * * 4327 8ea2c3a7,8ea2c3a7v 6433 e690b3 6433 00006433 dda1 dda1 dda1 dda1 dda1 dda1 dda1
+9199 dda2 dda2 dda2 * * 4328 8ea2c3a8,8ea2c3a8v 6443 e69183 6443 00006443 dda2 dda2 dda2 dda2 dda2 dda2 dda2
+9200 dda3 dda3 dda3 * * 4329 8ea2c3a9,8ea2c3a9v 641f e6909f 641f 0000641f dda3 dda3 dda3 dda3 dda3 dda3 dda3
+9201 dda4 dda4 dda4 * * 432a 8ea2c3aa,8ea2c3aav 6415 e69095 6415 00006415 dda4 dda4 dda4 dda4 dda4 dda4 dda4
+9202 dda5 dda5 dda5 * * 432b 8ea2c3ab,8ea2c3abv 6418 e69098 6418 00006418 dda5 dda5 dda5 dda5 dda5 dda5 dda5
+9203 dda6 dda6 dda6 * * 432c 8ea2c3ac,8ea2c3acv 6439 e690b9 6439 00006439 dda6 dda6 dda6 dda6 dda6 dda6 dda6
+9204 dda7 dda7 dda7 * * 432d 8ea2c3ad,8ea2c3adv 6437 e690b7 6437 00006437 dda7 dda7 dda7 dda7 dda7 dda7 dda7
+9205 dda8 dda8 dda8 * * 432e 8ea2c3ae,8ea2c3aev 6422 e690a2 6422 00006422 dda8 dda8 dda8 dda8 dda8 dda8 dda8
+9206 dda9 dda9 dda9 * * 432f 8ea2c3af,8ea2c3afv 6423 e690a3 6423 00006423 dda9 dda9 dda9 dda9 dda9 dda9 dda9
+9207 ddaa ddaa ddaa * * 4330 8ea2c3b0,8ea2c3b0v 640c e6908c 640c 0000640c ddaa ddaa ddaa ddaa ddaa ddaa ddaa
+9208 ddab ddab ddab * * 4331 8ea2c3b1,8ea2c3b1v 6426 e690a6 6426 00006426 ddab ddab ddab ddab ddab ddab ddab
+9209 ddac ddac ddac * * 4332 8ea2c3b2,8ea2c3b2v 6430 e690b0 6430 00006430 ddac ddac ddac ddac ddac ddac ddac
+9210 ddad ddad ddad * * 4333 8ea2c3b3,8ea2c3b3v 6428 e690a8 6428 00006428 ddad ddad ddad ddad ddad ddad ddad
+9211 ddae ddae ddae * * 4334 8ea2c3b4,8ea2c3b4v 6441 e69181 6441 00006441 ddae ddae ddae ddae ddae ddae ddae
+9212 ddaf ddaf ddaf * * 4335 8ea2c3b5,8ea2c3b5v 6435 e690b5 6435 00006435 ddaf ddaf ddaf ddaf ddaf ddaf ddaf
+9213 ddb0 ddb0 ddb0 * * 4336 8ea2c3b6,8ea2c3b6v 642f e690af 642f 0000642f ddb0 ddb0 ddb0 ddb0 ddb0 ddb0 ddb0
+9214 ddb1 ddb1 ddb1 * * 4337 8ea2c3b7,8ea2c3b7v 640a e6908a 640a 0000640a ddb1 ddb1 ddb1 ddb1 ddb1 ddb1 ddb1
+9215 ddb2 ddb2 ddb2 * * 4338 8ea2c3b8,8ea2c3b8v 641a e6909a 641a 0000641a ddb2 ddb2 ddb2 ddb2 ddb2 ddb2 ddb2
+9216 ddb3 ddb3 ddb3 * * 4339 8ea2c3b9,8ea2c3b9v 6440 e69180 6440 00006440 ddb3 ddb3 ddb3 ddb3 ddb3 ddb3 ddb3
+9217 ddb4 ddb4 ddb4 * * 433a 8ea2c3ba,8ea2c3bav 6425 e690a5 6425 00006425 ddb4 ddb4 ddb4 ddb4 ddb4 ddb4 ddb4
+9218 ddb5 ddb5 ddb5 * * 433b 8ea2c3bb,8ea2c3bbv 6427 e690a7 6427 00006427 ddb5 ddb5 ddb5 ddb5 ddb5 ddb5 ddb5
+9219 ddb6 ddb6 ddb6 * * 433c 8ea2c3bc,8ea2c3bcv 640b e6908b 640b 0000640b ddb6 ddb6 ddb6 ddb6 ddb6 ddb6 ddb6
+9220 ddb7 ddb7 ddb7 * * 433d 8ea2c3bd,8ea2c3bdv 63e7 e68fa7 63e7 000063e7 ddb7 ddb7 ddb7 ddb7 ddb7 ddb7 ddb7
+9221 ddb8 ddb8 ddb8 * * 433e 8ea2c3be,8ea2c3bev 641b e6909b 641b 0000641b ddb8 ddb8 ddb8 ddb8 ddb8 ddb8 ddb8
+9222 ddb9 ddb9 ddb9 * * 433f 8ea2c3bf,8ea2c3bfv 642e e690ae 642e 0000642e ddb9 ddb9 ddb9 ddb9 ddb9 ddb9 ddb9
+9223 ddba ddba ddba * * 4340 8ea2c3c0,8ea2c3c0v 6421 e690a1 6421 00006421 ddba ddba ddba ddba ddba ddba ddba
+9224 ddbb ddbb ddbb * * 4341 8ea2c3c1,8ea2c3c1v 640e e6908e 640e 0000640e ddbb ddbb ddbb ddbb ddbb ddbb ddbb
+9225 ddbc ddbc ddbc * * 4342 8ea2c3c2,8ea2c3c2v 656f e695af 656f 0000656f ddbc ddbc ddbc ddbc ddbc ddbc ddbc
+9226 ddbd ddbd ddbd * * 4343 8ea2c3c3,8ea2c3c3v 6592 e69692 6592 00006592 ddbd ddbd ddbd ddbd ddbd ddbd ddbd
+9227 ddbe ddbe ddbe * * 4344 8ea2c3c4,8ea2c3c4v 65d3 e69793 65d3 000065d3 ddbe ddbe ddbe ddbe ddbe ddbe ddbe
+9228 ddbf ddbf ddbf * * 4345 8ea2c3c5,8ea2c3c5v 6686 e69a86 6686 00006686 ddbf ddbf ddbf ddbf ddbf ddbf ddbf
+9229 ddc0 ddc0 ddc0 * * 4346 8ea2c3c6,8ea2c3c6v 668c e69a8c 668c 0000668c ddc0 ddc0 ddc0 ddc0 ddc0 ddc0 ddc0
+9230 ddc1 ddc1 ddc1 * * 4347 8ea2c3c7,8ea2c3c7v 6695 e69a95 6695 00006695 ddc1 ddc1 ddc1 ddc1 ddc1 ddc1 ddc1
+9231 ddc2 ddc2 ddc2 * * 4348 8ea2c3c8,8ea2c3c8v 6690 e69a90 6690 00006690 ddc2 ddc2 ddc2 ddc2 ddc2 ddc2 ddc2
+9232 ddc3 ddc3 ddc3 * * 4349 8ea2c3c9,8ea2c3c9v 668b e69a8b 668b 0000668b ddc3 ddc3 ddc3 ddc3 ddc3 ddc3 ddc3
+9233 ddc4 ddc4 ddc4 * * 434a 8ea2c3ca,8ea2c3cav 668a e69a8a 668a 0000668a ddc4 ddc4 ddc4 ddc4 ddc4 ddc4 ddc4
+9234 ddc5 ddc5 ddc5 * * 434b 8ea2c3cb,8ea2c3cbv 6699 e69a99 6699 00006699 ddc5 ddc5 ddc5 ddc5 ddc5 ddc5 ddc5
+9235 ddc6 ddc6 ddc6 * * 434c 8ea2c3cc,8ea2c3ccv 6694 e69a94 6694 00006694 ddc6 ddc6 ddc6 ddc6 ddc6 ddc6 ddc6
+9236 ddc7 ddc7 ddc7 * * 434d 8ea2c3cd,8ea2c3cdv 6678 e699b8 6678 00006678 ddc7 ddc7 ddc7 ddc7 ddc7 ddc7 ddc7
+9237 ddc8 ddc8 ddc8 * * 434e 8ea2c3ce,8ea2c3cev 6720 e69ca0 6720 00006720 ddc8 ddc8 ddc8 ddc8 ddc8 ddc8 ddc8
+9238 ddc9 ddc9 ddc9 * * 434f 8ea2c3cf,8ea2c3cfv 6966 e6a5a6 6966 00006966 ddc9 ddc9 ddc9 ddc9 ddc9 ddc9 ddc9
+9239 ddca ddca ddca * * 4350 8ea2c3d0,8ea2c3d0v 695f e6a59f 695f 0000695f ddca ddca ddca ddca ddca ddca ddca
+9240 ddcb ddcb ddcb * * 4351 8ea2c3d1,8ea2c3d1v 6938 e6a4b8 6938 00006938 ddcb ddcb ddcb ddcb ddcb ddcb ddcb
+9241 ddcc ddcc ddcc * * 4352 8ea2c3d2,8ea2c3d2v 694e e6a58e 694e 0000694e ddcc ddcc ddcc ddcc ddcc ddcc ddcc
+9242 ddcd ddcd ddcd * * 4353 8ea2c3d3,8ea2c3d3v 6962 e6a5a2 6962 00006962 ddcd ddcd ddcd ddcd ddcd ddcd ddcd
+9243 ddce ddce ddce * * 4354 8ea2c3d4,8ea2c3d4v 6971 e6a5b1 6971 00006971 ddce ddce ddce ddce ddce ddce ddce
+9244 ddcf ddcf ddcf * * 4355 8ea2c3d5,8ea2c3d5v 693f e6a4bf 693f 0000693f ddcf ddcf ddcf ddcf ddcf ddcf ddcf
+9245 ddd0 ddd0 ddd0 * * 4356 8ea2c3d6,8ea2c3d6v 6945 e6a585 6945 00006945 ddd0 ddd0 ddd0 ddd0 ddd0 ddd0 ddd0
+9246 ddd1 ddd1 ddd1 * * 4357 8ea2c3d7,8ea2c3d7v 696a e6a5aa 696a 0000696a ddd1 ddd1 ddd1 ddd1 ddd1 ddd1 ddd1
+9247 ddd2 ddd2 ddd2 * * 4358 8ea2c3d8,8ea2c3d8v 6939 e6a4b9 6939 00006939 ddd2 ddd2 ddd2 ddd2 ddd2 ddd2 ddd2
+9248 ddd3 ddd3 ddd3 * * 4359 8ea2c3d9,8ea2c3d9v 6942 e6a582 6942 00006942 ddd3 ddd3 ddd3 ddd3 ddd3 ddd3 ddd3
+9249 ddd4 ddd4 ddd4 * * 435a 8ea2c3da,8ea2c3dav 6957 e6a597 6957 00006957 ddd4 ddd4 ddd4 ddd4 ddd4 ddd4 ddd4
+9250 ddd5 ddd5 ddd5 * * 435b 8ea2c3db,8ea2c3dbv 6959 e6a599 6959 00006959 ddd5 ddd5 ddd5 ddd5 ddd5 ddd5 ddd5
+9251 ddd6 ddd6 ddd6 * * 435c 8ea2c3dc,8ea2c3dcv 697a e6a5ba 697a 0000697a ddd6 ddd6 ddd6 ddd6 ddd6 ddd6 ddd6
+9252 ddd7 ddd7 ddd7 * * 435d 8ea2c3dd,8ea2c3ddv 6948 e6a588 6948 00006948 ddd7 ddd7 ddd7 ddd7 ddd7 ddd7 ddd7
+9253 ddd8 ddd8 ddd8 * * 435e 8ea2c3de,8ea2c3dev 6949 e6a589 6949 00006949 ddd8 ddd8 ddd8 ddd8 ddd8 ddd8 ddd8
+9254 ddd9 ddd9 ddd9 * * 435f 8ea2c3df,8ea2c3dfv 6935 e6a4b5 6935 00006935 ddd9 ddd9 ddd9 ddd9 ddd9 ddd9 ddd9
+9255 ddda ddda ddda * * 4360 8ea2c3e0,8ea2c3e0v 696c e6a5ac 696c 0000696c ddda ddda ddda ddda ddda ddda ddda
+9256 dddb dddb dddb * * 4361 8ea2c3e1,8ea2c3e1v 6933 e6a4b3 6933 00006933 dddb dddb dddb dddb dddb dddb dddb
+9257 dddc dddc dddc * * 4362 8ea2c3e2,8ea2c3e2v 693d e6a4bd 693d 0000693d dddc dddc dddc dddc dddc dddc dddc
+9258 dddd dddd dddd * * 4363 8ea2c3e3,8ea2c3e3v 6965 e6a5a5 6965 00006965 dddd dddd dddd dddd dddd dddd dddd
+9259 ddde ddde ddde * * 4364 8ea2c3e4,8ea2c3e4v 68f0 e6a3b0 68f0 000068f0 ddde ddde ddde ddde ddde ddde ddde
+9260 dddf dddf dddf * * 4365 8ea2c3e5,8ea2c3e5v 6978 e6a5b8 6978 00006978 dddf dddf dddf dddf dddf dddf dddf
+9261 dde0 dde0 dde0 * * 4366 8ea2c3e6,8ea2c3e6v 6934 e6a4b4 6934 00006934 dde0 dde0 dde0 dde0 dde0 dde0 dde0
+9262 dde1 dde1 dde1 * * 4367 8ea2c3e7,8ea2c3e7v 6969 e6a5a9 6969 00006969 dde1 dde1 dde1 dde1 dde1 dde1 dde1
+9263 dde2 dde2 dde2 * * 4368 8ea2c3e8,8ea2c3e8v 6940 e6a580 6940 00006940 dde2 dde2 dde2 dde2 dde2 dde2 dde2
+9264 dde3 dde3 dde3 * * 4369 8ea2c3e9,8ea2c3e9v 696f e6a5af 696f 0000696f dde3 dde3 dde3 dde3 dde3 dde3 dde3
+9265 dde4 dde4 dde4 * * 436a 8ea2c3ea,8ea2c3eav 6944 e6a584 6944 00006944 dde4 dde4 dde4 dde4 dde4 dde4 dde4
+9266 dde5 dde5 dde5 * * 436b 8ea2c3eb,8ea2c3ebv 6976 e6a5b6 6976 00006976 dde5 dde5 dde5 dde5 dde5 dde5 dde5
+9267 dde6 dde6 dde6 * * 436c 8ea2c3ec,8ea2c3ecv 6958 e6a598 6958 00006958 dde6 dde6 dde6 dde6 dde6 dde6 dde6
+9268 dde7 dde7 dde7 * * 436d 8ea2c3ed,8ea2c3edv 6941 e6a581 6941 00006941 dde7 dde7 dde7 dde7 dde7 dde7 dde7
+9269 dde8 dde8 dde8 * * 436e 8ea2c3ee,8ea2c3eev 6974 e6a5b4 6974 00006974 dde8 dde8 dde8 dde8 dde8 dde8 dde8
+9270 dde9 dde9 dde9 * * 436f 8ea2c3ef,8ea2c3efv 694c e6a58c 694c 0000694c dde9 dde9 dde9 dde9 dde9 dde9 dde9
+9271 ddea ddea ddea * * 4370 8ea2c3f0,8ea2c3f0v 693b e6a4bb 693b 0000693b ddea ddea ddea ddea ddea ddea ddea
+9272 ddeb ddeb ddeb * * 4371 8ea2c3f1,8ea2c3f1v 694b e6a58b 694b 0000694b ddeb ddeb ddeb ddeb ddeb ddeb ddeb
+9273 ddec ddec ddec * * 4372 8ea2c3f2,8ea2c3f2v 6937 e6a4b7 6937 00006937 ddec ddec ddec ddec ddec ddec ddec
+9274 dded dded dded * * 4373 8ea2c3f3,8ea2c3f3v 695c e6a59c 695c 0000695c dded dded dded dded dded dded dded
+9275 ddee ddee ddee * * 4374 8ea2c3f4,8ea2c3f4v 694f e6a58f 694f 0000694f ddee ddee ddee ddee ddee ddee ddee
+9276 ddef ddef ddef * * 4375 8ea2c3f5,8ea2c3f5v 6951 e6a591 6951 00006951 ddef ddef ddef ddef ddef ddef ddef
+9277 ddf0 ddf0 ddf0 * * 4376 8ea2c3f6,8ea2c3f6v 6932 e6a4b2 6932 00006932 ddf0 ddf0 ddf0 ddf0 ddf0 ddf0 ddf0
+9278 ddf1 ddf1 ddf1 * * 4377 8ea2c3f7,8ea2c3f7v 6952 e6a592 6952 00006952 ddf1 ddf1 ddf1 ddf1 ddf1 ddf1 ddf1
+9279 ddf2 ddf2 ddf2 * * 4378 8ea2c3f8,8ea2c3f8v 692f e6a4af 692f 0000692f ddf2 ddf2 ddf2 ddf2 ddf2 ddf2 ddf2
+9280 ddf3 ddf3 ddf3 * * 4379 8ea2c3f9,8ea2c3f9v 697b e6a5bb 697b 0000697b ddf3 ddf3 ddf3 ddf3 ddf3 ddf3 ddf3
+9281 ddf4 ddf4 ddf4 * * 437a 8ea2c3fa,8ea2c3fav 693c e6a4bc 693c 0000693c ddf4 ddf4 ddf4 ddf4 ddf4 ddf4 ddf4
+9282 ddf5 ddf5 ddf5 * * 437b 8ea2c3fb,8ea2c3fbv 6b46 e6ad86 6b46 00006b46 ddf5 ddf5 ddf5 ddf5 ddf5 ddf5 ddf5
+9283 ddf6 ddf6 ddf6 * * 437c 8ea2c3fc,8ea2c3fcv 6b45 e6ad85 6b45 00006b45 ddf6 ddf6 ddf6 ddf6 ddf6 ddf6 ddf6
+9284 ddf7 ddf7 ddf7 * * 437d 8ea2c3fd,8ea2c3fdv 6b43 e6ad83 6b43 00006b43 ddf7 ddf7 ddf7 ddf7 ddf7 ddf7 ddf7
+9285 ddf8 ddf8 ddf8 * * 437e 8ea2c3fe,8ea2c3fev 6b42 e6ad82 6b42 00006b42 ddf8 ddf8 ddf8 ddf8 ddf8 ddf8 ddf8
+9286 ddf9 ddf9 ddf9 * * 4421 8ea2c4a1,8ea2c4a1v 6b48 e6ad88 6b48 00006b48 ddf9 ddf9 ddf9 ddf9 ddf9 ddf9 ddf9
+9287 ddfa ddfa ddfa * * 4422 8ea2c4a2,8ea2c4a2v 6b41 e6ad81 6b41 00006b41 ddfa ddfa ddfa ddfa ddfa ddfa ddfa
+9288 ddfb ddfb ddfb * * 4423 8ea2c4a3,8ea2c4a3v 6b9b e6ae9b 6b9b 00006b9b ddfb ddfb ddfb ddfb ddfb ddfb ddfb
+9289 ddfd ddfd ddfd * * 4424 8ea2c4a4,8ea2c4a4v 6bfb e6afbb 6bfb 00006bfb ddfd ddfd ddfd ddfd ddfd ddfd ddfd
+9290 ddfe ddfe ddfe * * 4425 8ea2c4a5,8ea2c4a5v 6bfc e6afbc 6bfc 00006bfc ddfe ddfe ddfe ddfe ddfe ddfe ddfe
+9291 de40 de40 de40 * * 4426 8ea2c4a6,8ea2c4a6v 6bf9 e6afb9 6bf9 00006bf9 de40 de40 de40 de40 de40 de40 de40
+9292 de41 de41 de41 * * 4427 8ea2c4a7,8ea2c4a7v 6bf7 e6afb7 6bf7 00006bf7 de41 de41 de41 de41 de41 de41 de41
+9293 de42 de42 de42 * * 4428 8ea2c4a8,8ea2c4a8v 6bf8 e6afb8 6bf8 00006bf8 de42 de42 de42 de42 de42 de42 de42
+9294 de43 de43 de43 * * 4429 8ea2c4a9,8ea2c4a9v 6e9b e6ba9b 6e9b 00006e9b de43 de43 de43 de43 de43 de43 de43
+9295 de44 de44 de44 * * 442a 8ea2c4aa,8ea2c4aav 6ed6 e6bb96 6ed6 00006ed6 de44 de44 de44 de44 de44 de44 de44
+9296 de45 de45 de45 * * 442b 8ea2c4ab,8ea2c4abv 6ec8 e6bb88 6ec8 00006ec8 de45 de45 de45 de45 de45 de45 de45
+9297 de46 de46 de46 * * 442c 8ea2c4ac,8ea2c4acv 6e8f e6ba8f 6e8f 00006e8f de46 de46 de46 de46 de46 de46 de46
+9298 de47 de47 de47 * * 442d 8ea2c4ad,8ea2c4adv 6ec0 e6bb80 6ec0 00006ec0 de47 de47 de47 de47 de47 de47 de47
+9299 de48 de48 de48 * * 442e 8ea2c4ae,8ea2c4aev 6e9f e6ba9f 6e9f 00006e9f de48 de48 de48 de48 de48 de48 de48
+9300 de49 de49 de49 * * 442f 8ea2c4af,8ea2c4afv 6e93 e6ba93 6e93 00006e93 de49 de49 de49 de49 de49 de49 de49
+9301 de4a de4a de4a * * 4430 8ea2c4b0,8ea2c4b0v 6e94 e6ba94 6e94 00006e94 de4a de4a de4a de4a de4a de4a de4a
+9302 de4b de4b de4b * * 4431 8ea2c4b1,8ea2c4b1v 6ea0 e6baa0 6ea0 00006ea0 de4b de4b de4b de4b de4b de4b de4b
+9303 de4c de4c de4c * * 4432 8ea2c4b2,8ea2c4b2v 6eb1 e6bab1 6eb1 00006eb1 de4c de4c de4c de4c de4c de4c de4c
+9304 de4d de4d de4d * * 4433 8ea2c4b3,8ea2c4b3v 6eb9 e6bab9 6eb9 00006eb9 de4d de4d de4d de4d de4d de4d de4d
+9305 de4e de4e de4e * * 4434 8ea2c4b4,8ea2c4b4v 6ec6 e6bb86 6ec6 00006ec6 de4e de4e de4e de4e de4e de4e de4e
+9306 de4f de4f de4f * * 4435 8ea2c4b5,8ea2c4b5v 6ed2 e6bb92 6ed2 00006ed2 de4f de4f de4f de4f de4f de4f de4f
+9307 de50 de50 de50 * * 4436 8ea2c4b6,8ea2c4b6v 6ebd e6babd 6ebd 00006ebd de50 de50 de50 de50 de50 de50 de50
+9308 de51 de51 de51 * * 4437 8ea2c4b7,8ea2c4b7v 6ec1 e6bb81 6ec1 00006ec1 de51 de51 de51 de51 de51 de51 de51
+9309 de52 de52 de52 * * 4438 8ea2c4b8,8ea2c4b8v 6e9e e6ba9e 6e9e 00006e9e de52 de52 de52 de52 de52 de52 de52
+9310 de53 de53 de53 * * 4439 8ea2c4b9,8ea2c4b9v 6ec9 e6bb89 6ec9 00006ec9 de53 de53 de53 de53 de53 de53 de53
+9311 de54 de54 de54 * * 443a 8ea2c4ba,8ea2c4bav 6eb7 e6bab7 6eb7 00006eb7 de54 de54 de54 de54 de54 de54 de54
+9312 de55 de55 de55 * * 443b 8ea2c4bb,8ea2c4bbv 6eb0 e6bab0 6eb0 00006eb0 de55 de55 de55 de55 de55 de55 de55
+9313 de56 de56 de56 * * 443c 8ea2c4bc,8ea2c4bcv 6ecd e6bb8d 6ecd 00006ecd de56 de56 de56 de56 de56 de56 de56
+9314 de57 de57 de57 * * 443d 8ea2c4bd,8ea2c4bdv 6ea6 e6baa6 6ea6 00006ea6 de57 de57 de57 de57 de57 de57 de57
+9315 de58 de58 de58 * * 443e 8ea2c4be,8ea2c4bev 6ecf e6bb8f 6ecf 00006ecf de58 de58 de58 de58 de58 de58 de58
+9316 de59 de59 de59 * * 443f 8ea2c4bf,8ea2c4bfv 6eb2 e6bab2 6eb2 00006eb2 de59 de59 de59 de59 de59 de59 de59
+9317 de5a de5a de5a * * 4440 8ea2c4c0,8ea2c4c0v 6ebe e6babe 6ebe 00006ebe de5a de5a de5a de5a de5a de5a de5a
+9318 de5b de5b de5b * * 4441 8ea2c4c1,8ea2c4c1v 6ec3 e6bb83 6ec3 00006ec3 de5b de5b de5b de5b de5b de5b de5b
+9319 de5c de5c de5c * * 4442 8ea2c4c2,8ea2c4c2v 6edc e6bb9c 6edc 00006edc de5c de5c de5c de5c de5c de5c de5c
+9320 de5d de5d de5d * * 4443 8ea2c4c3,8ea2c4c3v 6ed8 e6bb98 6ed8 00006ed8 de5d de5d de5d de5d de5d de5d de5d
+9321 de5e de5e de5e * * 4444 8ea2c4c4,8ea2c4c4v 6e99 e6ba99 6e99 00006e99 de5e de5e de5e de5e de5e de5e de5e
+9322 de5f de5f de5f * * 4445 8ea2c4c5,8ea2c4c5v 6e92 e6ba92 6e92 00006e92 de5f de5f de5f de5f de5f de5f de5f
+9323 de60 de60 de60 * * 4446 8ea2c4c6,8ea2c4c6v 6e8e e6ba8e 6e8e 00006e8e de60 de60 de60 de60 de60 de60 de60
+9324 de61 de61 de61 * * 4447 8ea2c4c7,8ea2c4c7v 6e8d e6ba8d 6e8d 00006e8d de61 de61 de61 de61 de61 de61 de61
+9325 de62 de62 de62 * * 4448 8ea2c4c8,8ea2c4c8v 6ea4 e6baa4 6ea4 00006ea4 de62 de62 de62 de62 de62 de62 de62
+9326 de63 de63 de63 * * 4449 8ea2c4c9,8ea2c4c9v 6ea1 e6baa1 6ea1 00006ea1 de63 de63 de63 de63 de63 de63 de63
+9327 de64 de64 de64 * * 444a 8ea2c4ca,8ea2c4cav 6ebf e6babf 6ebf 00006ebf de64 de64 de64 de64 de64 de64 de64
+9328 de65 de65 de65 * * 444b 8ea2c4cb,8ea2c4cbv 6eb3 e6bab3 6eb3 00006eb3 de65 de65 de65 de65 de65 de65 de65
+9329 de66 de66 de66 * * 444c 8ea2c4cc,8ea2c4ccv 6ed0 e6bb90 6ed0 00006ed0 de66 de66 de66 de66 de66 de66 de66
+9330 de67 de67 de67 * * 444d 8ea2c4cd,8ea2c4cdv 6eca e6bb8a 6eca 00006eca de67 de67 de67 de67 de67 de67 de67
+9331 de68 de68 de68 * * 444e 8ea2c4ce,8ea2c4cev 6e97 e6ba97 6e97 00006e97 de68 de68 de68 de68 de68 de68 de68
+9332 de69 de69 de69 * * 444f 8ea2c4cf,8ea2c4cfv 6eae e6baae 6eae 00006eae de69 de69 de69 de69 de69 de69 de69
+9333 de6a de6a de6a * * 4450 8ea2c4d0,8ea2c4d0v 6ea3 e6baa3 6ea3 00006ea3 de6a de6a de6a de6a de6a de6a de6a
+9334 de6b de6b de6b * * 4451 8ea2c4d1,8ea2c4d1v 7147 e78587 7147 00007147 de6b de6b de6b de6b de6b de6b de6b
+9335 de6c de6c de6c * * 4452 8ea2c4d2,8ea2c4d2v 7154 e78594 7154 00007154 de6c de6c de6c de6c de6c de6c de6c
+9336 de6d de6d de6d * * 4453 8ea2c4d3,8ea2c4d3v 7152 e78592 7152 00007152 de6d de6d de6d de6d de6d de6d de6d
+9337 de6e de6e de6e * * 4454 8ea2c4d4,8ea2c4d4v 7163 e785a3 7163 00007163 de6e de6e de6e de6e de6e de6e de6e
+9338 de6f de6f de6f * * 4455 8ea2c4d5,8ea2c4d5v 7160 e785a0 7160 00007160 de6f de6f de6f de6f de6f de6f de6f
+9339 de70 de70 de70 * * 4456 8ea2c4d6,8ea2c4d6v 7141 e78581 7141 00007141 de70 de70 de70 de70 de70 de70 de70
+9340 de71 de71 de71 * * 4457 8ea2c4d7,8ea2c4d7v 715d e7859d 715d 0000715d de71 de71 de71 de71 de71 de71 de71
+9341 de72 de72 de72 * * 4458 8ea2c4d8,8ea2c4d8v 7162 e785a2,eeba98 7162,ee98 00007162,0000ee98 a0df,de72 de72 de72 de72 de72 de72 a0df,de72
+9342 de73 de73 de73 * * 4459 8ea2c4d9,8ea2c4d9v 7172 e785b2 7172 00007172 de73 de73 de73 de73 de73 de73 de73
+9343 de74 de74 de74 * * 445a 8ea2c4da,8ea2c4dav 7178 e785b8 7178 00007178 de74 de74 de74 de74 de74 de74 de74
+9344 de75 de75 de75 * * 445b 8ea2c4db,8ea2c4dbv 716a e785aa 716a 0000716a de75 de75 de75 de75 de75 de75 de75
+9345 de76 de76 de76 * * 445c 8ea2c4dc,8ea2c4dcv 7161 e785a1 7161 00007161 de76 de76 de76 de76 de76 de76 de76
+9346 de77 de77 de77 * * 445d 8ea2c4dd,8ea2c4ddv 7142 e78582 7142 00007142 de77 de77 de77 de77 de77 de77 de77
+9347 de78 de78 de78 * * 445e 8ea2c4de,8ea2c4dev 7158 e78598 7158 00007158 de78 de78 de78 de78 de78 de78 de78
+9348 de79 de79 de79 * * 445f 8ea2c4df,8ea2c4dfv 7143 e78583 7143 00007143 de79 de79 de79 de79 de79 de79 de79
+9349 de7a de7a de7a * * 4460 8ea2c4e0,8ea2c4e0v 714b e7858b 714b 0000714b de7a de7a de7a de7a de7a de7a de7a
+9350 de7b de7b de7b * * 4461 8ea2c4e1,8ea2c4e1v 7170 e785b0 7170 00007170 de7b de7b de7b de7b de7b de7b de7b
+9351 de7c de7c de7c * * 4462 8ea2c4e2,8ea2c4e2v 715f e7859f 715f 0000715f de7c de7c de7c de7c de7c de7c de7c
+9352 de7d de7d de7d * * 4463 8ea2c4e3,8ea2c4e3v 7150 e78590 7150 00007150 de7d de7d de7d de7d de7d de7d de7d
+9353 de7e de7e de7e * * 4464 8ea2c4e4,8ea2c4e4v 7153 e78593 7153 00007153 de7e de7e de7e de7e de7e de7e de7e
+9354 dea1 dea1 dea1 * * 4465 8ea2c4e5,8ea2c4e5v 7144 e78584 7144 00007144 dea1 dea1 dea1 dea1 dea1 dea1 dea1
+9355 dea2 dea2 dea2 * * 4466 8ea2c4e6,8ea2c4e6v 714d e7858d 714d 0000714d dea2 dea2 dea2 dea2 dea2 dea2 dea2
+9356 dea3 dea3 dea3 * * 4467 8ea2c4e7,8ea2c4e7v 715a e7859a 715a 0000715a dea3 dea3 dea3 dea3 dea3 dea3 dea3
+9357 dea4 dea4 dea4 * * 4468 8ea2c4e8,8ea2c4e8v 724f e7898f 724f 0000724f dea4 dea4 dea4 dea4 dea4 dea4 dea4
+9358 dea5 dea5 dea5 * * 4469 8ea2c4e9,8ea2c4e9v 728d e78a8d 728d 0000728d dea5 dea5 dea5 dea5 dea5 dea5 dea5
+9359 dea6 dea6 dea6 * * 446a 8ea2c4ea,8ea2c4eav 728c e78a8c 728c 0000728c dea6 dea6 dea6 dea6 dea6 dea6 dea6
+9360 dea7 dea7 dea7 * * 446b 8ea2c4eb,8ea2c4ebv 7291 e78a91 7291 00007291 dea7 dea7 dea7 dea7 dea7 dea7 dea7
+9361 dea8 dea8 dea8 * * 446c 8ea2c4ec,8ea2c4ecv 7290 e78a90 7290 00007290 dea8 dea8 dea8 dea8 dea8 dea8 dea8
+9362 dea9 dea9 dea9 * * 446d 8ea2c4ed,8ea2c4edv 728e e78a8e 728e 0000728e dea9 dea9 dea9 dea9 dea9 dea9 dea9
+9363 deaa deaa deaa * * 446e 8ea2c4ee,8ea2c4eev 733c e78cbc 733c 0000733c deaa deaa deaa deaa deaa deaa deaa
+9364 deab deab deab * * 446f 8ea2c4ef,8ea2c4efv 7342 e78d82 7342 00007342 deab deab deab deab deab deab deab
+9365 deac deac deac * * 4470 8ea2c4f0,8ea2c4f0v 733b e78cbb 733b 0000733b deac deac deac deac deac deac deac
+9366 dead dead dead * * 4471 8ea2c4f1,8ea2c4f1v 733a e78cba 733a 0000733a dead dead dead dead dead dead dead
+9367 deae deae deae * * 4472 8ea2c4f2,8ea2c4f2v 7340 e78d80 7340 00007340 deae deae deae deae deae deae deae
+9368 deaf deaf deaf * * 4473 8ea2c4f3,8ea2c4f3v 734a e78d8a 734a 0000734a deaf deaf deaf deaf deaf deaf deaf
+9369 deb0 deb0 deb0 * * 4474 8ea2c4f4,8ea2c4f4v 7349 e78d89 7349 00007349 deb0 deb0 deb0 deb0 deb0 deb0 deb0
+9370 deb1 deb1 deb1 * * 4475 8ea2c4f5,8ea2c4f5v 7444 e79184 7444 00007444 deb1 deb1 deb1 deb1 deb1 deb1 deb1
+9371 deb2 deb2 deb2 * * 4476 8ea2c4f6,8ea2c4f6v 744a e7918a 744a 0000744a deb2 deb2 deb2 deb2 deb2 deb2 deb2
+9372 deb3 deb3 deb3 * * 4477 8ea2c4f7,8ea2c4f7v 744b e7918b 744b 0000744b deb3 deb3 deb3 deb3 deb3 deb3 deb3
+9373 deb4 deb4 deb4 * * 4478 8ea2c4f8,8ea2c4f8v 7452 e79192 7452 00007452 deb4 deb4 deb4 deb4 deb4 deb4 deb4
+9374 deb5 deb5 deb5 * * 4479 8ea2c4f9,8ea2c4f9v 7451 e79191 7451 00007451 deb5 deb5 deb5 deb5 deb5 deb5 deb5
+9375 deb6 deb6 deb6 * * 447a 8ea2c4fa,8ea2c4fav 7457 e79197 7457 00007457 deb6 deb6 deb6 deb6 deb6 deb6 deb6
+9376 deb7 deb7 deb7 * * 447b 8ea2c4fb,8ea2c4fbv 7440 e79180 7440 00007440 deb7 deb7 deb7 deb7 deb7 deb7 deb7
+9377 deb8 deb8 deb8 * * 447c 8ea2c4fc,8ea2c4fcv 744f e7918f 744f 0000744f deb8 deb8 deb8 deb8 deb8 deb8 deb8
+9378 deb9 deb9 deb9 * * 447d 8ea2c4fd,8ea2c4fdv 7450 e79190 7450 00007450 deb9 deb9 deb9 deb9 deb9 deb9 deb9
+9379 deba deba deba * * 447e 8ea2c4fe,8ea2c4fev 744e e7918e 744e 0000744e deba deba deba deba deba deba deba
+9380 debb debb debb * * 4521 8ea2c5a1,8ea2c5a1v 7442 e79182 7442 00007442 debb debb debb debb debb debb debb
+9381 debc debc debc * * 4522 8ea2c5a2,8ea2c5a2v 7446 e79186 7446 00007446 debc debc debc debc debc debc debc
+9382 debd debd debd * * 4523 8ea2c5a3,8ea2c5a3v 744d e7918d 744d 0000744d debd debd debd debd debd debd debd
+9383 debe debe debe * * 4524 8ea2c5a4,8ea2c5a4v 7454 e79194 7454 00007454 debe debe debe debe debe debe debe
+9384 debf debf debf * * 4525 8ea2c5a5,8ea2c5a5v 74e1 e793a1 74e1 000074e1 debf debf debf debf debf debf debf
+9385 dec0 dec0 dec0 * * 4526 8ea2c5a6,8ea2c5a6v 74ff e793bf 74ff 000074ff dec0 dec0 dec0 dec0 dec0 dec0 dec0
+9386 dec1 dec1 dec1 * * 4527 8ea2c5a7,8ea2c5a7v 74fe e793be 74fe 000074fe dec1 dec1 dec1 dec1 dec1 dec1 dec1
+9387 dec2 dec2 dec2 * * 4528 8ea2c5a8,8ea2c5a8v 74fd e793bd 74fd 000074fd dec2 dec2 dec2 dec2 dec2 dec2 dec2
+9388 dec3 dec3 dec3 * * 4529 8ea2c5a9,8ea2c5a9v 751d e7949d 751d 0000751d dec3 dec3 dec3 dec3 dec3 dec3 dec3
+9389 dec4 dec4 dec4 * * 452a 8ea2c5aa,8ea2c5aav 7579 e795b9 7579 00007579 dec4 dec4 dec4 dec4 dec4 dec4 dec4
+9390 dec5 dec5 dec5 * * 452b 8ea2c5ab,8ea2c5abv 7577 e795b7 7577 00007577 dec5 dec5 dec5 dec5 dec5 dec5 dec5
+9391 dec6 dec6 dec6 * * 452c 8ea2c5ac,8ea2c5acv 6983 e6a683 6983 00006983 dec6 dec6 dec6 dec6 dec6 dec6 dec6
+9392 dec7 dec7 dec7 * * 452d 8ea2c5ad,8ea2c5adv 75ef e797af 75ef 000075ef dec7 dec7 dec7 dec7 dec7 dec7 dec7
+9393 dec8 dec8 dec8 * * 452e 8ea2c5ae,8ea2c5aev 760f e7988f 760f 0000760f dec8 dec8 dec8 dec8 dec8 dec8 dec8
+9394 dec9 dec9 dec9 * * 452f 8ea2c5af,8ea2c5afv 7603 e79883 7603 00007603 dec9 dec9 dec9 dec9 dec9 dec9 dec9
+9395 deca deca deca * * 4530 8ea2c5b0,8ea2c5b0v 75f7 e797b7 75f7 000075f7 deca deca deca deca deca deca deca
+9396 decb decb decb * * 4531 8ea2c5b1,8ea2c5b1v 75fe e797be 75fe 000075fe decb decb decb decb decb decb decb
+9397 decc decc decc * * 4532 8ea2c5b2,8ea2c5b2v 75fc e797bc 75fc 000075fc decc decc decc decc decc decc decc
+9398 decd decd decd * * 4533 8ea2c5b3,8ea2c5b3v 75f9 e797b9,eeb5ae 75f9,ed6e 000075f9,0000ed6e 9eef,decd decd decd decd decd decd 9eef,decd
+9399 dece dece dece * * 4534 8ea2c5b4,8ea2c5b4v 75f8 e797b8 75f8 000075f8 dece dece dece dece dece dece dece
+9400 decf decf decf * * 4535 8ea2c5b5,8ea2c5b5v 7610 e79890 7610 00007610 decf decf decf decf decf decf decf
+9401 ded0 ded0 ded0 * * 4536 8ea2c5b6,8ea2c5b6v 75fb e797bb 75fb 000075fb ded0 ded0 ded0 ded0 ded0 ded0 ded0
+9402 ded1 ded1 ded1 * * 4537 8ea2c5b7,8ea2c5b7v 75f6 e797b6 75f6 000075f6 ded1 ded1 ded1 ded1 ded1 ded1 ded1
+9403 ded2 ded2 ded2 * * 4538 8ea2c5b8,8ea2c5b8v 75ed e797ad 75ed 000075ed ded2 ded2 ded2 ded2 ded2 ded2 ded2
+9404 ded3 ded3 ded3 * * 4539 8ea2c5b9,8ea2c5b9v 75f5 e797b5 75f5 000075f5 ded3 ded3 ded3 ded3 ded3 ded3 ded3
+9405 ded4 ded4 ded4 * * 453a 8ea2c5ba,8ea2c5bav 75fd e797bd 75fd 000075fd ded4 ded4 ded4 ded4 ded4 ded4 ded4
+9406 ded5 ded5 ded5 * * 453b 8ea2c5bb,8ea2c5bbv 7699 e79a99 7699 00007699 ded5 ded5 ded5 ded5 ded5 ded5 ded5
+9407 ded6 ded6 ded6 * * 453c 8ea2c5bc,8ea2c5bcv 76b5 e79ab5 76b5 000076b5 ded6 ded6 ded6 ded6 ded6 ded6 ded6
+9408 ded7 ded7 ded7 * * 453d 8ea2c5bd,8ea2c5bdv 76dd e79b9d 76dd 000076dd ded7 ded7 ded7 ded7 ded7 ded7 ded7
+9409 ded8 ded8 ded8 * * 453e 8ea2c5be,8ea2c5bev 7755 e79d95 7755 00007755 ded8 ded8 ded8 ded8 ded8 ded8 ded8
+9410 ded9 ded9 ded9 * * 453f 8ea2c5bf,8ea2c5bfv 775f e79d9f 775f 0000775f ded9 ded9 ded9 ded9 ded9 ded9 ded9
+9411 deda deda deda * * 4540 8ea2c5c0,8ea2c5c0v 7760 e79da0 7760 00007760 deda deda deda deda deda deda deda
+9412 dedb dedb dedb * * 4541 8ea2c5c1,8ea2c5c1v 7752 e79d92 7752 00007752 dedb dedb dedb dedb dedb dedb dedb
+9413 dedc dedc dedc * * 4542 8ea2c5c2,8ea2c5c2v 7756 e79d96 7756 00007756 dedc dedc dedc dedc dedc dedc dedc
+9414 dedd dedd dedd * * 4543 8ea2c5c3,8ea2c5c3v 775a e79d9a 775a 0000775a dedd dedd dedd dedd dedd dedd dedd
+9415 dede dede dede * * 4544 8ea2c5c4,8ea2c5c4v 7769 e79da9 7769 00007769 dede dede dede dede dede dede dede
+9416 dedf dedf dedf * * 4545 8ea2c5c5,8ea2c5c5v 7767 e79da7 7767 00007767 dedf dedf dedf dedf dedf dedf dedf
+9417 dee0 dee0 dee0 * * 4546 8ea2c5c6,8ea2c5c6v 7754 e79d94 7754 00007754 dee0 dee0 dee0 dee0 dee0 dee0 dee0
+9418 dee1 dee1 dee1 * * 4547 8ea2c5c7,8ea2c5c7v 7759 e79d99 7759 00007759 dee1 dee1 dee1 dee1 dee1 dee1 dee1
+9419 dee2 dee2 dee2 * * 4548 8ea2c5c8,8ea2c5c8v 776d e79dad 776d 0000776d dee2 dee2 dee2 dee2 dee2 dee2 dee2
+9420 dee3 dee3 dee3 * * 4549 8ea2c5c9,8ea2c5c9v 77e0 e79fa0 77e0 000077e0 dee3 dee3 dee3 dee3 dee3 dee3 dee3
+9421 dee4 dee4 dee4 * * 454a 8ea2c5ca,8ea2c5cav 7887 e7a287 7887 00007887 dee4 dee4 dee4 dee4 dee4 dee4 dee4
+9422 dee5 dee5 dee5 * * 454b 8ea2c5cb,8ea2c5cbv 789a e7a29a 789a 0000789a dee5 dee5 dee5 dee5 dee5 dee5 dee5
+9423 dee6 dee6 dee6 * * 454c 8ea2c5cc,8ea2c5ccv 7894 e7a294 7894 00007894 dee6 dee6 dee6 dee6 dee6 dee6 dee6
+9424 dee7 dee7 dee7 * * 454d 8ea2c5cd,8ea2c5cdv 788f e7a28f 788f 0000788f dee7 dee7 dee7 dee7 dee7 dee7 dee7
+9425 dee8 dee8 dee8 * * 454e 8ea2c5ce,8ea2c5cev 7884 e7a284 7884 00007884 dee8 dee8 dee8 dee8 dee8 dee8 dee8
+9426 dee9 dee9 dee9 * * 454f 8ea2c5cf,8ea2c5cfv 7895 e7a295 7895 00007895 dee9 dee9 dee9 dee9 dee9 dee9 dee9
+9427 deea deea deea * * 4550 8ea2c5d0,8ea2c5d0v 7885 e7a285 7885 00007885 deea deea deea deea deea deea deea
+9428 deeb deeb deeb * * 4551 8ea2c5d1,8ea2c5d1v 7886 e7a286 7886 00007886 deeb deeb deeb deeb deeb deeb deeb
+9429 deec deec deec * * 4552 8ea2c5d2,8ea2c5d2v 78a1 e7a2a1 78a1 000078a1 deec deec deec deec deec deec deec
+9430 deed deed deed * * 4553 8ea2c5d3,8ea2c5d3v 7883 e7a283 7883 00007883 deed deed deed deed deed deed deed
+9431 deee deee deee * * 4554 8ea2c5d4,8ea2c5d4v 7879 e7a1b9 7879 00007879 deee deee deee deee deee deee deee
+9432 deef deef deef * * 4555 8ea2c5d5,8ea2c5d5v 7899 e7a299 7899 00007899 deef deef deef deef deef deef deef
+9433 def0 def0 def0 * * 4556 8ea2c5d6,8ea2c5d6v 7880 e7a280 7880 00007880 def0 def0 def0 def0 def0 def0 def0
+9434 def1 def1 def1 * * 4557 8ea2c5d7,8ea2c5d7v 7896 e7a296 7896 00007896 def1 def1 def1 def1 def1 def1 def1
+9435 def2 def2 def2 * * 4558 8ea2c5d8,8ea2c5d8v 787b e7a1bb 787b 0000787b def2 def2 def2 def2 def2 def2 def2
+9436 def3 def3 def3 * * 4559 8ea2c5d9,8ea2c5d9v 797c e7a5bc 797c 0000797c def3 def3 def3 def3 def3 def3 def3
+9437 def4 def4 def4 * * 455a 8ea2c5da,8ea2c5dav 7982 e7a682 7982 00007982 def4 def4 def4 def4 def4 def4 def4
+9438 def5 def5 def5 * * 455b 8ea2c5db,8ea2c5dbv 797d e7a5bd 797d 0000797d def5 def5 def5 def5 def5 def5 def5
+9439 def6 def6 def6 * * 455c 8ea2c5dc,8ea2c5dcv 7979 e7a5b9 7979 00007979 def6 def6 def6 def6 def6 def6 def6
+9440 def7 def7 def7 * * 455d 8ea2c5dd,8ea2c5ddv 7a11 e7a891 7a11 00007a11 def7 def7 def7 def7 def7 def7 def7
+9441 def8 def8 def8 * * 455e 8ea2c5de,8ea2c5dev 7a18 e7a898 7a18 00007a18 def8 def8 def8 def8 def8 def8 def8
+9442 def9 def9 def9 * * 455f 8ea2c5df,8ea2c5dfv 7a19 e7a899 7a19 00007a19 def9 def9 def9 def9 def9 def9 def9
+9443 defa defa defa * * 4560 8ea2c5e0,8ea2c5e0v 7a12 e7a892 7a12 00007a12 defa defa defa defa defa defa defa
+9444 defb defb defb * * 4561 8ea2c5e1,8ea2c5e1v 7a17 e7a897 7a17 00007a17 defb defb defb defb defb defb defb
+9445 defc defc defc * * 4562 8ea2c5e2,8ea2c5e2v 7a15 e7a895 7a15 00007a15 defc defc defc defc defc defc defc
+9446 defd defd defd * * 4563 8ea2c5e3,8ea2c5e3v 7a22 e7a8a2 7a22 00007a22 defd defd defd defd defd defd defd
+9447 defe defe defe * * 4564 8ea2c5e4,8ea2c5e4v 7a13 e7a893 7a13 00007a13 defe defe defe defe defe defe defe
+9448 df40 df40 df40 * * 4565 8ea2c5e5,8ea2c5e5v 7a1b e7a89b 7a1b 00007a1b df40 df40 df40 df40 df40 df40 df40
+9449 df41 df41 df41 * * 4566 8ea2c5e6,8ea2c5e6v 7a10 e7a890 7a10 00007a10 df41 df41 df41 df41 df41 df41 df41
+9450 df42 df42 df42 * * 4567 8ea2c5e7,8ea2c5e7v 7aa3 e7aaa3 7aa3 00007aa3 df42 df42 df42 df42 df42 df42 df42
+9451 df43 df43 df43 * * 4568 8ea2c5e8,8ea2c5e8v 7aa2 e7aaa2 7aa2 00007aa2 df43 df43 df43 df43 df43 df43 df43
+9452 df44 df44 df44 * * 4569 8ea2c5e9,8ea2c5e9v 7a9e e7aa9e 7a9e 00007a9e df44 df44 df44 df44 df44 df44 df44
+9453 df45 df45 df45 * * 456a 8ea2c5ea,8ea2c5eav 7aeb e7abab 7aeb 00007aeb df45 df45 df45 df45 df45 df45 df45
+9454 df46 df46 df46 * * 456b 8ea2c5eb,8ea2c5ebv 7b66 e7ada6 7b66 00007b66 df46 df46 df46 df46 df46 df46 df46
+9455 df47 df47 df47 * * 456c 8ea2c5ec,8ea2c5ecv 7b64 e7ada4 7b64 00007b64 df47 df47 df47 df47 df47 df47 df47
+9456 df48 df48 df48 * * 456d 8ea2c5ed,8ea2c5edv 7b6d e7adad 7b6d 00007b6d df48 df48 df48 df48 df48 df48 df48
+9457 df49 df49 df49 * * 456e 8ea2c5ee,8ea2c5eev 7b74 e7adb4 7b74 00007b74 df49 df49 df49 df49 df49 df49 df49
+9458 df4a df4a df4a * * 456f 8ea2c5ef,8ea2c5efv 7b69 e7ada9 7b69 00007b69 df4a df4a df4a df4a df4a df4a df4a
+9459 df4b df4b df4b * * 4570 8ea2c5f0,8ea2c5f0v 7b72 e7adb2 7b72 00007b72 df4b df4b df4b df4b df4b df4b df4b
+9460 df4c df4c df4c * * 4571 8ea2c5f1,8ea2c5f1v 7b65 e7ada5 7b65 00007b65 df4c df4c df4c df4c df4c df4c df4c
+9461 df4d df4d df4d * * 4572 8ea2c5f2,8ea2c5f2v 7b73 e7adb3 7b73 00007b73 df4d df4d df4d df4d df4d df4d df4d
+9462 df4e df4e df4e * * 4573 8ea2c5f3,8ea2c5f3v 7b71 e7adb1 7b71 00007b71 df4e df4e df4e df4e df4e df4e df4e
+9463 df4f df4f df4f * * 4574 8ea2c5f4,8ea2c5f4v 7b70 e7adb0 7b70 00007b70 df4f df4f df4f df4f df4f df4f df4f
+9464 df50 df50 df50 * * 4575 8ea2c5f5,8ea2c5f5v 7b61 e7ada1 7b61 00007b61 df50 df50 df50 df50 df50 df50 df50
+9465 df51 df51 df51 * * 4576 8ea2c5f6,8ea2c5f6v 7b78 e7adb8 7b78 00007b78 df51 df51 df51 df51 df51 df51 df51
+9466 df52 df52 df52 * * 4577 8ea2c5f7,8ea2c5f7v 7b76 e7adb6 7b76 00007b76 df52 df52 df52 df52 df52 df52 df52
+9467 df53 df53 df53 * * 4578 8ea2c5f8,8ea2c5f8v 7b63 e7ada3 7b63 00007b63 df53 df53 df53 df53 df53 df53 df53
+9468 df54 df54 df54 * * 4579 8ea2c5f9,8ea2c5f9v 7cb2 e7b2b2 7cb2 00007cb2 df54 df54 df54 df54 df54 df54 df54
+9469 df55 df55 df55 * * 457a 8ea2c5fa,8ea2c5fav 7cb4 e7b2b4 7cb4 00007cb4 df55 df55 df55 df55 df55 df55 df55
+9470 df56 df56 df56 * * 457b 8ea2c5fb,8ea2c5fbv 7caf e7b2af 7caf 00007caf df56 df56 df56 df56 df56 df56 df56
+9471 df57 df57 df57 * * 457c 8ea2c5fc,8ea2c5fcv 7d88 e7b688 7d88 00007d88 df57 df57 df57 df57 df57 df57 df57
+9472 df58 df58 df58 * * 457d 8ea2c5fd,8ea2c5fdv 7d86 e7b686 7d86 00007d86 df58 df58 df58 df58 df58 df58 df58
+9473 df59 df59 df59 * * 457e 8ea2c5fe,8ea2c5fev 7d80 e7b680 7d80 00007d80 df59 df59 df59 df59 df59 df59 df59
+9474 df5a df5a df5a * * 4621 8ea2c6a1,8ea2c6a1v 7d8d e7b68d 7d8d 00007d8d df5a df5a df5a df5a df5a df5a df5a
+9475 df5b df5b df5b * * 4622 8ea2c6a2,8ea2c6a2v 7d7f e7b5bf 7d7f 00007d7f df5b df5b df5b df5b df5b df5b df5b
+9476 df5c df5c df5c * * 4623 8ea2c6a3,8ea2c6a3v 7d85 e7b685 7d85 00007d85 df5c df5c df5c df5c df5c df5c df5c
+9477 df5d df5d df5d * * 4624 8ea2c6a4,8ea2c6a4v 7d7a e7b5ba 7d7a 00007d7a df5d df5d df5d df5d df5d df5d df5d
+9478 df5e df5e df5e * * 4625 8ea2c6a5,8ea2c6a5v 7d8e e7b68e 7d8e 00007d8e df5e df5e df5e df5e df5e df5e df5e
+9479 df5f df5f df5f * * 4626 8ea2c6a6,8ea2c6a6v 7d7b e7b5bb 7d7b 00007d7b df5f df5f df5f df5f df5f df5f df5f
+9480 df60 df60 df60 * * 4627 8ea2c6a7,8ea2c6a7v 7d83 e7b683 7d83 00007d83 df60 df60 df60 df60 df60 df60 df60
+9481 df61 df61 df61 * * 4628 8ea2c6a8,8ea2c6a8v 7d7c e7b5bc 7d7c 00007d7c df61 df61 df61 df61 df61 df61 df61
+9482 df62 df62 df62 * * 4629 8ea2c6a9,8ea2c6a9v 7d8c e7b68c 7d8c 00007d8c df62 df62 df62 df62 df62 df62 df62
+9483 df63 df63 df63 * * 462a 8ea2c6aa,8ea2c6aav 7d94 e7b694 7d94 00007d94 df63 df63 df63 df63 df63 df63 df63
+9484 df64 df64 df64 * * 462b 8ea2c6ab,8ea2c6abv 7d84 e7b684 7d84 00007d84 df64 df64 df64 df64 df64 df64 df64
+9485 df65 df65 df65 * * 462c 8ea2c6ac,8ea2c6acv 7d7d e7b5bd 7d7d 00007d7d df65 df65 df65 df65 df65 df65 df65
+9486 df66 df66 df66 * * 462d 8ea2c6ad,8ea2c6adv 7d92 e7b692 7d92 00007d92 df66 df66 df66 df66 df66 df66 df66
+9487 df67 df67 df67 * * 462e 8ea2c6ae,8ea2c6aev 7f6d e7bdad 7f6d 00007f6d df67 df67 df67 df67 df67 df67 df67
+9488 df68 df68 df68 * * 462f 8ea2c6af,8ea2c6afv 7f6b e7bdab 7f6b 00007f6b df68 df68 df68 df68 df68 df68 df68
+9489 df69 df69 df69 * * 4630 8ea2c6b0,8ea2c6b0v 7f67 e7bda7 7f67 00007f67 df69 df69 df69 df69 df69 df69 df69
+9490 df6a df6a df6a * * 4631 8ea2c6b1,8ea2c6b1v 7f68 e7bda8 7f68 00007f68 df6a df6a df6a df6a df6a df6a df6a
+9491 df6b df6b df6b * * 4632 8ea2c6b2,8ea2c6b2v 7f6c e7bdac 7f6c 00007f6c df6b df6b df6b df6b df6b df6b df6b
+9492 df6c df6c df6c * * 4633 8ea2c6b3,8ea2c6b3v 7fa6 e7bea6 7fa6 00007fa6 df6c df6c df6c df6c df6c df6c df6c
+9493 df6d df6d df6d * * 4634 8ea2c6b4,8ea2c6b4v 7fa5 e7bea5 7fa5 00007fa5 df6d df6d df6d df6d df6d df6d df6d
+9494 df6e df6e df6e * * 4635 8ea2c6b5,8ea2c6b5v 7fa7 e7bea7 7fa7 00007fa7 df6e df6e df6e df6e df6e df6e df6e
+9495 df6f df6f df6f * * 4636 8ea2c6b6,8ea2c6b6v 7fdb e7bf9b 7fdb 00007fdb df6f df6f df6f df6f df6f df6f df6f
+9496 df70 df70 df70 * * 4637 8ea2c6b7,8ea2c6b7v 7fdc e7bf9c 7fdc 00007fdc df70 df70 df70 df70 df70 df70 df70
+9497 df71 df71 df71 * * 4638 8ea2c6b8,8ea2c6b8v 8021 e880a1 8021 00008021 df71 df71 df71 df71 df71 df71 df71
+9498 df72 df72 df72 * * 4639 8ea2c6b9,8ea2c6b9v 8164 e885a4 8164 00008164 df72 df72 df72 df72 df72 df72 df72
+9499 df73 df73 df73 * * 463a 8ea2c6ba,8ea2c6bav 8160 e885a0 8160 00008160 df73 df73 df73 df73 df73 df73 df73
+9500 df74 df74 df74 * * 463b 8ea2c6bb,8ea2c6bbv 8177 e885b7 8177 00008177 df74 df74 df74 df74 df74 df74 df74
+9501 df75 df75 df75 * * 463c 8ea2c6bc,8ea2c6bcv 815c e8859c 815c 0000815c df75 df75 df75 df75 df75 df75 df75
+9502 df76 df76 df76 * * 463d 8ea2c6bd,8ea2c6bdv 8169 e885a9 8169 00008169 df76 df76 df76 df76 df76 df76 df76
+9503 df77 df77 df77 * * 463e 8ea2c6be,8ea2c6bev 815b e8859b 815b 0000815b df77 df77 df77 df77 df77 df77 df77
+9504 df78 df78 df78 * * 463f 8ea2c6bf,8ea2c6bfv 8162 e885a2 8162 00008162 df78 df78 df78 df78 df78 df78 df78
+9505 df79 df79 df79 * * 4640 8ea2c6c0,8ea2c6c0v 8172 e885b2 8172 00008172 df79 df79 df79 df79 df79 df79 df79
+9506 df7a df7a df7a * * 4641 8ea2c6c1,8ea2c6c1v 6721 e69ca1 6721 00006721 df7a df7a df7a df7a df7a df7a df7a
+9507 df7b df7b df7b * * 4642 8ea2c6c2,8ea2c6c2v 815e e8859e 815e 0000815e df7b df7b df7b df7b df7b df7b df7b
+9508 df7c df7c df7c * * 4643 8ea2c6c3,8ea2c6c3v 8176 e885b6 8176 00008176 df7c df7c df7c df7c df7c df7c df7c
+9509 df7d df7d df7d * * 4644 8ea2c6c4,8ea2c6c4v 8167 e885a7 8167 00008167 df7d df7d df7d df7d df7d df7d df7d
+9510 df7e df7e df7e * * 4645 8ea2c6c5,8ea2c6c5v 816f e885af 816f 0000816f df7e df7e df7e df7e df7e df7e df7e
+9511 dfa1 dfa1 dfa1 * * 4646 8ea2c6c6,8ea2c6c6v 8144 e88584 8144 00008144 dfa1 dfa1 dfa1 dfa1 dfa1 dfa1 dfa1
+9512 dfa2 dfa2 dfa2 * * 4647 8ea2c6c7,8ea2c6c7v 8161 e885a1 8161 00008161 dfa2 dfa2 dfa2 dfa2 dfa2 dfa2 dfa2
+9513 dfa3 dfa3 dfa3 * * 4648 8ea2c6c8,8ea2c6c8v 821d e8889d 821d 0000821d dfa3 dfa3 dfa3 dfa3 dfa3 dfa3 dfa3
+9514 dfa4 dfa4 dfa4 * * 4649 8ea2c6c9,8ea2c6c9v 8249 e88989 8249 00008249 dfa4 dfa4 dfa4 dfa4 dfa4 dfa4 dfa4
+9515 dfa5 dfa5 dfa5 * * 464a 8ea2c6ca,8ea2c6cav 8244 e88984 8244 00008244 dfa5 dfa5 dfa5 dfa5 dfa5 dfa5 dfa5
+9516 dfa6 dfa6 dfa6 * * 464b 8ea2c6cb,8ea2c6cbv 8240 e88980 8240 00008240 dfa6 dfa6 dfa6 dfa6 dfa6 dfa6 dfa6
+9517 dfa7 dfa7 dfa7 * * 464c 8ea2c6cc,8ea2c6ccv 8242 e88982 8242 00008242 dfa7 dfa7 dfa7 dfa7 dfa7 dfa7 dfa7
+9518 dfa8 dfa8 dfa8 * * 464d 8ea2c6cd,8ea2c6cdv 8245 e88985 8245 00008245 dfa8 dfa8 dfa8 dfa8 dfa8 dfa8 dfa8
+9519 dfa9 dfa9 dfa9 * * 464e 8ea2c6ce,8ea2c6cev 84f1 e893b1 84f1 000084f1 dfa9 dfa9 dfa9 dfa9 dfa9 dfa9 dfa9
+9520 dfaa dfaa dfaa * * 464f 8ea2c6cf,8ea2c6cfv 843f e890bf 843f 0000843f dfaa dfaa dfaa dfaa dfaa dfaa dfaa
+9521 dfab dfab dfab * * 4650 8ea2c6d0,8ea2c6d0v 8456 e89196 8456 00008456 dfab dfab dfab dfab dfab dfab dfab
+9522 dfac dfac dfac * * 4651 8ea2c6d1,8ea2c6d1v 8476 e891b6 8476 00008476 dfac dfac dfac dfac dfac dfac dfac
+9523 dfad dfad dfad * * 4652 8ea2c6d2,8ea2c6d2v 8479 e891b9 8479 00008479 dfad dfad dfad dfad dfad dfad dfad
+9524 dfae dfae dfae * * 4653 8ea2c6d3,8ea2c6d3v 848f e8928f 848f 0000848f dfae dfae dfae dfae dfae dfae dfae
+9525 dfaf dfaf dfaf * * 4654 8ea2c6d4,8ea2c6d4v 848d e8928d 848d 0000848d dfaf dfaf dfaf dfaf dfaf dfaf dfaf
+9526 dfb0 dfb0 dfb0 * * 4655 8ea2c6d5,8ea2c6d5v 8465 e891a5 8465 00008465 dfb0 dfb0 dfb0 dfb0 dfb0 dfb0 dfb0
+9527 dfb1 dfb1 dfb1 * * 4656 8ea2c6d6,8ea2c6d6v 8451 e89191 8451 00008451 dfb1 dfb1 dfb1 dfb1 dfb1 dfb1 dfb1
+9528 dfb2 dfb2 dfb2 * * 4657 8ea2c6d7,8ea2c6d7v 8440 e89180 8440 00008440 dfb2 dfb2 dfb2 dfb2 dfb2 dfb2 dfb2
+9529 dfb3 dfb3 dfb3 * * 4658 8ea2c6d8,8ea2c6d8v 8486 e89286 8486 00008486 dfb3 dfb3 dfb3 dfb3 dfb3 dfb3 dfb3
+9530 dfb4 dfb4 dfb4 * * 4659 8ea2c6d9,8ea2c6d9v 8467 e891a7 8467 00008467 dfb4 dfb4 dfb4 dfb4 dfb4 dfb4 dfb4
+9531 dfb5 dfb5 dfb5 * * 465a 8ea2c6da,8ea2c6dav 8430 e890b0 8430 00008430 dfb5 dfb5 dfb5 dfb5 dfb5 dfb5 dfb5
+9532 dfb6 dfb6 dfb6 * * 465b 8ea2c6db,8ea2c6dbv 844d e8918d 844d 0000844d dfb6 dfb6 dfb6 dfb6 dfb6 dfb6 dfb6
+9533 dfb7 dfb7 dfb7 * * 465c 8ea2c6dc,8ea2c6dcv 847d e891bd 847d 0000847d dfb7 dfb7 dfb7 dfb7 dfb7 dfb7 dfb7
+9534 dfb8 dfb8 dfb8 * * 465d 8ea2c6dd,8ea2c6ddv 845a e8919a 845a 0000845a dfb8 dfb8 dfb8 dfb8 dfb8 dfb8 dfb8
+9535 dfb9 dfb9 dfb9 * * 465e 8ea2c6de,8ea2c6dev 8459 e89199 8459 00008459 dfb9 dfb9 dfb9 dfb9 dfb9 dfb9 dfb9
+9536 dfba dfba dfba * * 465f 8ea2c6df,8ea2c6dfv 8474 e891b4 8474 00008474 dfba dfba dfba dfba dfba dfba dfba
+9537 dfbb dfbb dfbb * * 4660 8ea2c6e0,8ea2c6e0v 8473 e891b3 8473 00008473 dfbb dfbb dfbb dfbb dfbb dfbb dfbb
+9538 dfbc dfbc dfbc * * 4661 8ea2c6e1,8ea2c6e1v 845d e8919d 845d 0000845d dfbc dfbc dfbc dfbc dfbc dfbc dfbc
+9539 dfbd dfbd dfbd * * 4662 8ea2c6e2,8ea2c6e2v 8507 e89487 8507 00008507 dfbd dfbd dfbd dfbd dfbd dfbd dfbd
+9540 dfbe dfbe dfbe * * 4663 8ea2c6e3,8ea2c6e3v 845e e8919e 845e 0000845e dfbe dfbe dfbe dfbe dfbe dfbe dfbe
+9541 dfbf dfbf dfbf * * 4664 8ea2c6e4,8ea2c6e4v 8437 e890b7 8437 00008437 dfbf dfbf dfbf dfbf dfbf dfbf dfbf
+9542 dfc0 dfc0 dfc0 * * 4665 8ea2c6e5,8ea2c6e5v 843a e890ba 843a 0000843a dfc0 dfc0 dfc0 dfc0 dfc0 dfc0 dfc0
+9543 dfc1 dfc1 dfc1 * * 4666 8ea2c6e6,8ea2c6e6v 8434 e890b4 8434 00008434 dfc1 dfc1 dfc1 dfc1 dfc1 dfc1 dfc1
+9544 dfc2 dfc2 dfc2 * * 4667 8ea2c6e7,8ea2c6e7v 847a e891ba 847a 0000847a dfc2 dfc2 dfc2 dfc2 dfc2 dfc2 dfc2
+9545 dfc3 dfc3 dfc3 * * 4668 8ea2c6e8,8ea2c6e8v 8443 e89183 8443 00008443 dfc3 dfc3 dfc3 dfc3 dfc3 dfc3 dfc3
+9546 dfc4 dfc4 dfc4 * * 4669 8ea2c6e9,8ea2c6e9v 8478 e891b8 8478 00008478 dfc4 dfc4 dfc4 dfc4 dfc4 dfc4 dfc4
+9547 dfc5 dfc5 dfc5 * * 466a 8ea2c6ea,8ea2c6eav 8432 e890b2 8432 00008432 dfc5 dfc5 dfc5 dfc5 dfc5 dfc5 dfc5
+9548 dfc6 dfc6 dfc6 * * 466b 8ea2c6eb,8ea2c6ebv 8445 e89185 8445 00008445 dfc6 dfc6 dfc6 dfc6 dfc6 dfc6 dfc6
+9549 dfc7 dfc7 dfc7 * * 466c 8ea2c6ec,8ea2c6ecv 8429 e890a9 8429 00008429 dfc7 dfc7 dfc7 dfc7 dfc7 dfc7 dfc7
+9550 dfc8 dfc8 dfc8 * * 466d 8ea2c6ed,8ea2c6edv 83d9 e88f99 83d9 000083d9 dfc8 dfc8 dfc8 dfc8 dfc8 dfc8 dfc8
+9551 dfc9 dfc9 dfc9 * * 466e 8ea2c6ee,8ea2c6eev 844b e8918b 844b 0000844b dfc9 dfc9 dfc9 dfc9 dfc9 dfc9 dfc9
+9552 dfca dfca dfca * * 466f 8ea2c6ef,8ea2c6efv 842f e890af 842f 0000842f dfca dfca dfca dfca dfca dfca dfca
+9553 dfcb dfcb dfcb * * 4670 8ea2c6f0,8ea2c6f0v 8442 e89182 8442 00008442 dfcb dfcb dfcb dfcb dfcb dfcb dfcb
+9554 dfcc dfcc dfcc * * 4671 8ea2c6f1,8ea2c6f1v 842d e890ad 842d 0000842d dfcc dfcc dfcc dfcc dfcc dfcc dfcc
+9555 dfcd dfcd dfcd * * 4672 8ea2c6f2,8ea2c6f2v 845f e8919f 845f 0000845f dfcd dfcd dfcd dfcd dfcd dfcd dfcd
+9556 dfce dfce dfce * * 4673 8ea2c6f3,8ea2c6f3v 8470 e891b0 8470 00008470 dfce dfce dfce dfce dfce dfce dfce
+9557 dfcf dfcf dfcf * * 4674 8ea2c6f4,8ea2c6f4v 8439 e890b9 8439 00008439 dfcf dfcf dfcf dfcf dfcf dfcf dfcf
+9558 dfd0 dfd0 dfd0 * * 4675 8ea2c6f5,8ea2c6f5v 844e e8918e 844e 0000844e dfd0 dfd0 dfd0 dfd0 dfd0 dfd0 dfd0
+9559 dfd1 dfd1 dfd1 * * 4676 8ea2c6f6,8ea2c6f6v 844c e8918c 844c 0000844c dfd1 dfd1 dfd1 dfd1 dfd1 dfd1 dfd1
+9560 dfd2 dfd2 dfd2 * * 4677 8ea2c6f7,8ea2c6f7v 8452 e89192 8452 00008452 dfd2 dfd2 dfd2 dfd2 dfd2 dfd2 dfd2
+9561 dfd3 dfd3 dfd3 * * 4678 8ea2c6f8,8ea2c6f8v 846f e891af 846f 0000846f dfd3 dfd3 dfd3 dfd3 dfd3 dfd3 dfd3
+9562 dfd4 dfd4 dfd4 * * 4679 8ea2c6f9,8ea2c6f9v 84c5 e89385 84c5 000084c5 dfd4 dfd4 dfd4 dfd4 dfd4 dfd4 dfd4
+9563 dfd5 dfd5 dfd5 * * 467a 8ea2c6fa,8ea2c6fav 848e e8928e 848e 0000848e dfd5 dfd5 dfd5 dfd5 dfd5 dfd5 dfd5
+9564 dfd6 dfd6 dfd6 * * 467b 8ea2c6fb,8ea2c6fbv 843b e890bb 843b 0000843b dfd6 dfd6 dfd6 dfd6 dfd6 dfd6 dfd6
+9565 dfd7 dfd7 dfd7 * * 467c 8ea2c6fc,8ea2c6fcv 8447 e89187 8447 00008447 dfd7 dfd7 dfd7 dfd7 dfd7 dfd7 dfd7
+9566 dfd8 dfd8 dfd8 * * 467d 8ea2c6fd,8ea2c6fdv 8436 e890b6 8436 00008436 dfd8 dfd8 dfd8 dfd8 dfd8 dfd8 dfd8
+9567 dfd9 dfd9 dfd9 * * 467e 8ea2c6fe,8ea2c6fev 8433 e890b3 8433 00008433 dfd9 dfd9 dfd9 dfd9 dfd9 dfd9 dfd9
+9568 dfda dfda dfda * * 4721 8ea2c7a1,8ea2c7a1v 8468 e891a8 8468 00008468 dfda dfda dfda dfda dfda dfda dfda
+9569 dfdb dfdb dfdb * * 4722 8ea2c7a2,8ea2c7a2v 847e e891be 847e 0000847e dfdb dfdb dfdb dfdb dfdb dfdb dfdb
+9570 dfdc dfdc dfdc * * 4723 8ea2c7a3,8ea2c7a3v 8444 e89184 8444 00008444 dfdc dfdc dfdc dfdc dfdc dfdc dfdc
+9571 dfdd dfdd dfdd * * 4724 8ea2c7a4,8ea2c7a4v 842b e890ab 842b 0000842b dfdd dfdd dfdd dfdd dfdd dfdd dfdd
+9572 dfde dfde dfde * * 4725 8ea2c7a5,8ea2c7a5v 8460 e891a0 8460 00008460 dfde dfde dfde dfde dfde dfde dfde
+9573 dfdf dfdf dfdf * * 4726 8ea2c7a6,8ea2c7a6v 8454 e89194 8454 00008454 dfdf dfdf dfdf dfdf dfdf dfdf dfdf
+9574 dfe0 dfe0 dfe0 * * 4727 8ea2c7a7,8ea2c7a7v 846e e891ae 846e 0000846e dfe0 dfe0 dfe0 dfe0 dfe0 dfe0 dfe0
+9575 dfe1 dfe1 dfe1 * * 4728 8ea2c7a8,8ea2c7a8v 8450 e89190 8450 00008450 dfe1 dfe1 dfe1 dfe1 dfe1 dfe1 dfe1
+9576 dfe2 dfe2 dfe2 * * 4729 8ea2c7a9,8ea2c7a9v 870b e89c8b 870b 0000870b dfe2 dfe2 dfe2 dfe2 dfe2 dfe2 dfe2
+9577 dfe3 dfe3 dfe3 * * 472a 8ea2c7aa,8ea2c7aav 8704 e89c84 8704 00008704 dfe3 dfe3 dfe3 dfe3 dfe3 dfe3 dfe3
+9578 dfe4 dfe4 dfe4 * * 472b 8ea2c7ab,8ea2c7abv 86f7 e89bb7 86f7 000086f7 dfe4 dfe4 dfe4 dfe4 dfe4 dfe4 dfe4
+9579 dfe5 dfe5 dfe5 * * 472c 8ea2c7ac,8ea2c7acv 870c e89c8c 870c 0000870c dfe5 dfe5 dfe5 dfe5 dfe5 dfe5 dfe5
+9580 dfe6 dfe6 dfe6 * * 472d 8ea2c7ad,8ea2c7adv 86fa e89bba 86fa 000086fa dfe6 dfe6 dfe6 dfe6 dfe6 dfe6 dfe6
+9581 dfe7 dfe7 dfe7 * * 472e 8ea2c7ae,8ea2c7aev 86d6 e89b96 86d6 000086d6 dfe7 dfe7 dfe7 dfe7 dfe7 dfe7 dfe7
+9582 dfe8 dfe8 dfe8 * * 472f 8ea2c7af,8ea2c7afv 86f5 e89bb5 86f5 000086f5 dfe8 dfe8 dfe8 dfe8 dfe8 dfe8 dfe8
+9583 dfe9 dfe9 dfe9 * * 4730 8ea2c7b0,8ea2c7b0v 874d e89d8d 874d 0000874d dfe9 dfe9 dfe9 dfe9 dfe9 dfe9 dfe9
+9584 dfea dfea dfea * * 4731 8ea2c7b1,8ea2c7b1v 86f8 e89bb8 86f8 000086f8 dfea dfea dfea dfea dfea dfea dfea
+9585 dfeb dfeb dfeb * * 4732 8ea2c7b2,8ea2c7b2v 870e e89c8e 870e 0000870e dfeb dfeb dfeb dfeb dfeb dfeb dfeb
+9586 dfec dfec dfec * * 4733 8ea2c7b3,8ea2c7b3v 8709 e89c89 8709 00008709 dfec dfec dfec dfec dfec dfec dfec
+9587 dfed dfed dfed * * 4734 8ea2c7b4,8ea2c7b4v 8701 e89c81 8701 00008701 dfed dfed dfed dfed dfed dfed dfed
+9588 dfee dfee dfee * * 4735 8ea2c7b5,8ea2c7b5v 86f6 e89bb6 86f6 000086f6 dfee dfee dfee dfee dfee dfee dfee
+9589 dfef dfef dfef * * 4736 8ea2c7b6,8ea2c7b6v 870d e89c8d 870d 0000870d dfef dfef dfef dfef dfef dfef dfef
+9590 dff0 dff0 dff0 * * 4737 8ea2c7b7,8ea2c7b7v 8705 e89c85 8705 00008705 dff0 dff0 dff0 dff0 dff0 dff0 dff0
+9591 dff1 dff1 dff1 * * 4738 8ea2c7b8,8ea2c7b8v 88d6 e8a396 88d6 000088d6 dff1 dff1 dff1 dff1 dff1 dff1 dff1
+9592 dff2 dff2 dff2 * * 4739 8ea2c7b9,8ea2c7b9v 88cb e8a38b 88cb 000088cb dff2 dff2 dff2 dff2 dff2 dff2 dff2
+9593 dff3 dff3 dff3 * * 473a 8ea2c7ba,8ea2c7bav 88cd e8a38d 88cd 000088cd dff3 dff3 dff3 dff3 dff3 dff3 dff3
+9594 dff4 dff4 dff4 * * 473b 8ea2c7bb,8ea2c7bbv 88ce e8a38e 88ce 000088ce dff4 dff4 dff4 dff4 dff4 dff4 dff4
+9595 dff5 dff5 dff5 * * 473c 8ea2c7bc,8ea2c7bcv 88de e8a39e 88de 000088de dff5 dff5 dff5 dff5 dff5 dff5 dff5
+9596 dff6 dff6 dff6 * * 473d 8ea2c7bd,8ea2c7bdv 88db e8a39b 88db 000088db dff6 dff6 dff6 dff6 dff6 dff6 dff6
+9597 dff7 dff7 dff7 * * 473e 8ea2c7be,8ea2c7bev 88da e8a39a 88da 000088da dff7 dff7 dff7 dff7 dff7 dff7 dff7
+9598 dff8 dff8 dff8 * * 473f 8ea2c7bf,8ea2c7bfv 88cc e8a38c 88cc 000088cc dff8 dff8 dff8 dff8 dff8 dff8 dff8
+9599 dff9 dff9 dff9 * * 4740 8ea2c7c0,8ea2c7c0v 88d0 e8a390 88d0 000088d0 dff9 dff9 dff9 dff9 dff9 dff9 dff9
+9600 dffa dffa dffa * * 4741 8ea2c7c1,8ea2c7c1v 8985 e8a685 8985 00008985 dffa dffa dffa dffa dffa dffa dffa
+9601 dffb dffb dffb * * 4742 8ea2c7c2,8ea2c7c2v 899b e8a69b 899b 0000899b dffb dffb dffb dffb dffb dffb dffb
+9602 dffc dffc dffc * * 4743 8ea2c7c3,8ea2c7c3v 89df e8a79f 89df 000089df dffc dffc dffc dffc dffc dffc dffc
+9603 dffd dffd dffd * * 4744 8ea2c7c4,8ea2c7c4v 89e5 e8a7a5 89e5 000089e5 dffd dffd dffd dffd dffd dffd dffd
+9604 dffe dffe dffe * * 4745 8ea2c7c5,8ea2c7c5v 89e4 e8a7a4 89e4 000089e4 dffe dffe dffe dffe dffe dffe dffe
+9605 e040 e040 e040 * * 4746 8ea2c7c6,8ea2c7c6v 89e1 e8a7a1 89e1 000089e1 e040 e040 e040 e040 e040 e040 e040
+9606 e041 e041 e041 * * 4747 8ea2c7c7,8ea2c7c7v 89e0 e8a7a0 89e0 000089e0 e041 e041 e041 e041 e041 e041 e041
+9607 e042 e042 e042 * * 4748 8ea2c7c8,8ea2c7c8v 89e2 e8a7a2 89e2 000089e2 e042 e042 e042 e042 e042 e042 e042
+9608 e043 e043 e043 * * 4749 8ea2c7c9,8ea2c7c9v 89dc e8a79c 89dc 000089dc e043 e043 e043 e043 e043 e043 e043
+9609 e044 e044 e044 * * 474a 8ea2c7ca,8ea2c7cav 89e6 e8a7a6 89e6 000089e6 e044 e044 e044 e044 e044 e044 e044
+9610 e045 e045 e045 * * 474b 8ea2c7cb,8ea2c7cbv 8a76 e8a9b6 8a76 00008a76 e045 e045 e045 e045 e045 e045 e045
+9611 e046 e046 e046 * * 474c 8ea2c7cc,8ea2c7ccv 8a86 e8aa86 8a86 00008a86 e046 e046 e046 e046 e046 e046 e046
+9612 e047 e047 e047 * * 474d 8ea2c7cd,8ea2c7cdv 8a7f e8a9bf 8a7f 00008a7f e047 e047 e047 e047 e047 e047 e047
+9613 e048 e048 e048 * * 474e 8ea2c7ce,8ea2c7cev 8a61 e8a9a1 8a61 00008a61 e048 e048 e048 e048 e048 e048 e048
+9614 e049 e049 e049 * * 474f 8ea2c7cf,8ea2c7cfv 8a3f e8a8bf 8a3f 00008a3f e049 e049 e049 e049 e049 e049 e049
+9615 e04a e04a e04a * * 4750 8ea2c7d0,8ea2c7d0v 8a77 e8a9b7 8a77 00008a77 e04a e04a e04a e04a e04a e04a e04a
+9616 e04b e04b e04b * * 4751 8ea2c7d1,8ea2c7d1v 8a82 e8aa82 8a82 00008a82 e04b e04b e04b e04b e04b e04b e04b
+9617 e04c e04c e04c * * 4752 8ea2c7d2,8ea2c7d2v 8a84 e8aa84 8a84 00008a84 e04c e04c e04c e04c e04c e04c e04c
+9618 e04d e04d e04d * * 4753 8ea2c7d3,8ea2c7d3v 8a75 e8a9b5 8a75 00008a75 e04d e04d e04d e04d e04d e04d e04d
+9619 e04e e04e e04e * * 4754 8ea2c7d4,8ea2c7d4v 8a83 e8aa83 8a83 00008a83 e04e e04e e04e e04e e04e e04e e04e
+9620 e04f e04f e04f * * 4755 8ea2c7d5,8ea2c7d5v 8a81 e8aa81 8a81 00008a81 e04f e04f e04f e04f e04f e04f e04f
+9621 e050 e050 e050 * * 4756 8ea2c7d6,8ea2c7d6v 8a74 e8a9b4 8a74 00008a74 e050 e050 e050 e050 e050 e050 e050
+9622 e051 e051 e051 * * 4757 8ea2c7d7,8ea2c7d7v 8a7a e8a9ba 8a7a 00008a7a e051 e051 e051 e051 e051 e051 e051
+9623 e052 e052 e052 * * 4758 8ea2c7d8,8ea2c7d8v 8c3c e8b0bc 8c3c 00008c3c e052 e052 e052 e052 e052 e052 e052
+9624 e053 e053 e053 * * 4759 8ea2c7d9,8ea2c7d9v 8c4b e8b18b 8c4b 00008c4b e053 e053 e053 e053 e053 e053 e053
+9625 e054 e054 e054 * * 475a 8ea2c7da,8ea2c7dav 8c4a e8b18a 8c4a 00008c4a e054 e054 e054 e054 e054 e054 e054
+9626 e055 e055 e055 * * 475b 8ea2c7db,8ea2c7dbv 8c65 e8b1a5 8c65 00008c65 e055 e055 e055 e055 e055 e055 e055
+9627 e056 e056 e056 * * 475c 8ea2c7dc,8ea2c7dcv 8c64 e8b1a4 8c64 00008c64 e056 e056 e056 e056 e056 e056 e056
+9628 e057 e057 e057 * * 475d 8ea2c7dd,8ea2c7ddv 8c66 e8b1a6 8c66 00008c66 e057 e057 e057 e057 e057 e057 e057
+9629 e058 e058 e058 * * 475e 8ea2c7de,8ea2c7dev 8c86 e8b286 8c86 00008c86 e058 e058 e058 e058 e058 e058 e058
+9630 e059 e059 e059 * * 475f 8ea2c7df,8ea2c7dfv 8c84 e8b284 8c84 00008c84 e059 e059 e059 e059 e059 e059 e059
+9631 e05a e05a e05a * * 4760 8ea2c7e0,8ea2c7e0v 8c85 e8b285 8c85 00008c85 e05a e05a e05a e05a e05a e05a e05a
+9632 e05b e05b e05b * * 4761 8ea2c7e1,8ea2c7e1v 8ccc e8b38c 8ccc 00008ccc e05b e05b e05b e05b e05b e05b e05b
+9633 e05c e05c e05c * * 4762 8ea2c7e2,8ea2c7e2v 8d68 e8b5a8 8d68 00008d68 e05c e05c e05c e05c e05c e05c e05c
+9634 e05d e05d e05d * * 4763 8ea2c7e3,8ea2c7e3v 8d69 e8b5a9 8d69 00008d69 e05d e05d e05d e05d e05d e05d e05d
+9635 e05e e05e e05e * * 4764 8ea2c7e4,8ea2c7e4v 8d91 e8b691 8d91 00008d91 e05e e05e e05e e05e e05e e05e e05e
+9636 e05f e05f e05f * * 4765 8ea2c7e5,8ea2c7e5v 8d8c e8b68c 8d8c 00008d8c e05f e05f e05f e05f e05f e05f e05f
+9637 e060 e060 e060 * * 4766 8ea2c7e6,8ea2c7e6v 8d8e e8b68e 8d8e 00008d8e e060 e060 e060 e060 e060 e060 e060
+9638 e061 e061 e061 * * 4767 8ea2c7e7,8ea2c7e7v 8d8f e8b68f 8d8f 00008d8f e061 e061 e061 e061 e061 e061 e061
+9639 e062 e062 e062 * * 4768 8ea2c7e8,8ea2c7e8v 8d8d e8b68d 8d8d 00008d8d e062 e062 e062 e062 e062 e062 e062
+9640 e063 e063 e063 * * 4769 8ea2c7e9,8ea2c7e9v 8d93 e8b693 8d93 00008d93 e063 e063 e063 e063 e063 e063 e063
+9641 e064 e064 e064 * * 476a 8ea2c7ea,8ea2c7eav 8d94 e8b694 8d94 00008d94 e064 e064 e064 e064 e064 e064 e064
+9642 e065 e065 e065 * * 476b 8ea2c7eb,8ea2c7ebv 8d90 e8b690 8d90 00008d90 e065 e065 e065 e065 e065 e065 e065
+9643 e066 e066 e066 * * 476c 8ea2c7ec,8ea2c7ecv 8d92 e8b692 8d92 00008d92 e066 e066 e066 e066 e066 e066 e066
+9644 e067 e067 e067 * * 476d 8ea2c7ed,8ea2c7edv 8df0 e8b7b0 8df0 00008df0 e067 e067 e067 e067 e067 e067 e067
+9645 e068 e068 e068 * * 476e 8ea2c7ee,8ea2c7eev 8de0 e8b7a0 8de0 00008de0 e068 e068 e068 e068 e068 e068 e068
+9646 e069 e069 e069 * * 476f 8ea2c7ef,8ea2c7efv 8dec e8b7ac 8dec 00008dec e069 e069 e069 e069 e069 e069 e069
+9647 e06a e06a e06a * * 4770 8ea2c7f0,8ea2c7f0v 8df1 e8b7b1 8df1 00008df1 e06a e06a e06a e06a e06a e06a e06a
+9648 e06b e06b e06b * * 4771 8ea2c7f1,8ea2c7f1v 8dee e8b7ae 8dee 00008dee e06b e06b e06b e06b e06b e06b e06b
+9649 e06c e06c e06c * * 4772 8ea2c7f2,8ea2c7f2v 8dd0 e8b790 8dd0 00008dd0 e06c e06c e06c e06c e06c e06c e06c
+9650 e06d e06d e06d * * 4773 8ea2c7f3,8ea2c7f3v 8de9 e8b7a9 8de9 00008de9 e06d e06d e06d e06d e06d e06d e06d
+9651 e06e e06e e06e * * 4774 8ea2c7f4,8ea2c7f4v 8de3 e8b7a3 8de3 00008de3 e06e e06e e06e e06e e06e e06e e06e
+9652 e06f e06f e06f * * 4775 8ea2c7f5,8ea2c7f5v 8de2 e8b7a2 8de2 00008de2 e06f e06f e06f e06f e06f e06f e06f
+9653 e070 e070 e070 * * 4776 8ea2c7f6,8ea2c7f6v 8de7 e8b7a7 8de7 00008de7 e070 e070 e070 e070 e070 e070 e070
+9654 e071 e071 e071 * * 4777 8ea2c7f7,8ea2c7f7v 8df2 e8b7b2 8df2 00008df2 e071 e071 e071 e071 e071 e071 e071
+9655 e072 e072 e072 * * 4778 8ea2c7f8,8ea2c7f8v 8deb e8b7ab 8deb 00008deb e072 e072 e072 e072 e072 e072 e072
+9656 e073 e073 e073 * * 4779 8ea2c7f9,8ea2c7f9v 8df4 e8b7b4 8df4 00008df4 e073 e073 e073 e073 e073 e073 e073
+9657 e074 e074 e074 * * 477a 8ea2c7fa,8ea2c7fav 8f06 e8bc86 8f06 00008f06 e074 e074 e074 e074 e074 e074 e074
+9658 e075 e075 e075 * * 477b 8ea2c7fb,8ea2c7fbv 8eff e8bbbf 8eff 00008eff e075 e075 e075 e075 e075 e075 e075
+9659 e076 e076 e076 * * 477c 8ea2c7fc,8ea2c7fcv 8f01 e8bc81 8f01 00008f01 e076 e076 e076 e076 e076 e076 e076
+9660 e077 e077 e077 * * 477d 8ea2c7fd,8ea2c7fdv 8f00 e8bc80 8f00 00008f00 e077 e077 e077 e077 e077 e077 e077
+9661 e078 e078 e078 * * 477e 8ea2c7fe,8ea2c7fev 8f05 e8bc85 8f05 00008f05 e078 e078 e078 e078 e078 e078 e078
+9662 e079 e079 e079 * * 4821 8ea2c8a1,8ea2c8a1v 8f07 e8bc87 8f07 00008f07 e079 e079 e079 e079 e079 e079 e079
+9663 e07a e07a e07a * * 4822 8ea2c8a2,8ea2c8a2v 8f08 e8bc88 8f08 00008f08 e07a e07a e07a e07a e07a e07a e07a
+9664 e07b e07b e07b * * 4823 8ea2c8a3,8ea2c8a3v 8f02 e8bc82 8f02 00008f02 e07b e07b e07b e07b e07b e07b e07b
+9665 e07c e07c e07c * * 4824 8ea2c8a4,8ea2c8a4v 8f0b e8bc8b,eeb19b 8f0b,ec5b 00008f0b,0000ec5b 9d57,e07c e07c e07c 9d57,e07c e07c e07c 9d57,e07c
+9666 e07d e07d e07d * * 4825 8ea2c8a5,8ea2c8a5v 9052 e98192 9052 00009052 e07d e07d e07d e07d e07d e07d e07d
+9667 e07e e07e e07e * * 4826 8ea2c8a6,8ea2c8a6v 903f e980bf 903f 0000903f e07e e07e e07e e07e e07e e07e e07e
+9668 e0a1 e0a1 e0a1 * * 4827 8ea2c8a7,8ea2c8a7v 9044 e98184 9044 00009044 e0a1 e0a1 e0a1 e0a1 e0a1 e0a1 e0a1
+9669 e0a2 e0a2 e0a2 * * 4828 8ea2c8a8,8ea2c8a8v 9049 e98189 9049 00009049 e0a2 e0a2 e0a2 e0a2 e0a2 e0a2 e0a2
+9670 e0a3 e0a3 e0a3 * * 4829 8ea2c8a9,8ea2c8a9v 903d e980bd 903d 0000903d e0a3 e0a3 e0a3 e0a3 e0a3 e0a3 e0a3
+9671 e0a4 e0a4 e0a4 * * 482a 8ea2c8aa,8ea2c8aav 9110 e98490 9110 00009110 e0a4 e0a4 e0a4 e0a4 e0a4 e0a4 e0a4
+9672 e0a5 e0a5 e0a5 * * 482b 8ea2c8ab,8ea2c8abv 910d e9848d 910d 0000910d e0a5 e0a5 e0a5 e0a5 e0a5 e0a5 e0a5
+9673 e0a6 e0a6 e0a6 * * 482c 8ea2c8ac,8ea2c8acv 910f e9848f 910f 0000910f e0a6 e0a6 e0a6 e0a6 e0a6 e0a6 e0a6
+9674 e0a7 e0a7 e0a7 * * 482d 8ea2c8ad,8ea2c8adv 9111 e98491 9111 00009111 e0a7 e0a7 e0a7 e0a7 e0a7 e0a7 e0a7
+9675 e0a8 e0a8 e0a8 * * 482e 8ea2c8ae,8ea2c8aev 9116 e98496 9116 00009116 e0a8 e0a8 e0a8 e0a8 e0a8 e0a8 e0a8
+9676 e0a9 e0a9 e0a9 * * 482f 8ea2c8af,8ea2c8afv 9114 e98494 9114 00009114 e0a9 e0a9 e0a9 e0a9 e0a9 e0a9 e0a9
+9677 e0aa e0aa e0aa * * 4830 8ea2c8b0,8ea2c8b0v 910b e9848b 910b 0000910b e0aa e0aa e0aa e0aa e0aa e0aa e0aa
+9678 e0ab e0ab e0ab * * 4831 8ea2c8b1,8ea2c8b1v 910e e9848e 910e 0000910e e0ab e0ab e0ab e0ab e0ab e0ab e0ab
+9679 e0ac e0ac e0ac * * 4832 8ea2c8b2,8ea2c8b2v 916e e985ae 916e 0000916e e0ac e0ac e0ac e0ac e0ac e0ac e0ac
+9680 e0ad e0ad e0ad * * 4833 8ea2c8b3,8ea2c8b3v 916f e985af 916f 0000916f e0ad e0ad e0ad e0ad e0ad e0ad e0ad
+9681 e0ae e0ae e0ae * * 4834 8ea2c8b4,8ea2c8b4v 9248 e98988 9248 00009248 e0ae e0ae e0ae e0ae e0ae e0ae e0ae
+9682 e0af e0af e0af * * 4835 8ea2c8b5,8ea2c8b5v 9252 e98992 9252 00009252 e0af e0af e0af e0af e0af e0af e0af
+9683 e0b0 e0b0 e0b0 * * 4836 8ea2c8b6,8ea2c8b6v 9230 e988b0 9230 00009230 e0b0 e0b0 e0b0 e0b0 e0b0 e0b0 e0b0
+9684 e0b1 e0b1 e0b1 * * 4837 8ea2c8b7,8ea2c8b7v 923a e988ba 923a 0000923a e0b1 e0b1 e0b1 e0b1 e0b1 e0b1 e0b1
+9685 e0b2 e0b2 e0b2 * * 4838 8ea2c8b8,8ea2c8b8v 9266 e989a6 9266 00009266 e0b2 e0b2 e0b2 e0b2 e0b2 e0b2 e0b2
+9686 e0b3 e0b3 e0b3 * * 4839 8ea2c8b9,8ea2c8b9v 9233 e988b3 9233 00009233 e0b3 e0b3 e0b3 e0b3 e0b3 e0b3 e0b3
+9687 e0b4 e0b4 e0b4 * * 483a 8ea2c8ba,8ea2c8bav 9265 e989a5 9265 00009265 e0b4 e0b4 e0b4 e0b4 e0b4 e0b4 e0b4
+9688 e0b5 e0b5 e0b5 * * 483b 8ea2c8bb,8ea2c8bbv 925e e9899e 925e 0000925e e0b5 e0b5 e0b5 e0b5 e0b5 e0b5 e0b5
+9689 e0b6 e0b6 e0b6 * * 483c 8ea2c8bc,8ea2c8bcv 9283 e98a83 9283 00009283 e0b6 e0b6 e0b6 e0b6 e0b6 e0b6 e0b6
+9690 e0b7 e0b7 e0b7 * * 483d 8ea2c8bd,8ea2c8bdv 922e e988ae 922e 0000922e e0b7 e0b7 e0b7 e0b7 e0b7 e0b7 e0b7
+9691 e0b8 e0b8 e0b8 * * 483e 8ea2c8be,8ea2c8bev 924a e9898a 924a 0000924a e0b8 e0b8 e0b8 e0b8 e0b8 e0b8 e0b8
+9692 e0b9 e0b9 e0b9 * * 483f 8ea2c8bf,8ea2c8bfv 9246 e98986 9246 00009246 e0b9 e0b9 e0b9 e0b9 e0b9 e0b9 e0b9
+9693 e0ba e0ba e0ba * * 4840 8ea2c8c0,8ea2c8c0v 926d e989ad 926d 0000926d e0ba e0ba e0ba e0ba e0ba e0ba e0ba
+9694 e0bb e0bb e0bb * * 4841 8ea2c8c1,8ea2c8c1v 926c e989ac 926c 0000926c e0bb e0bb e0bb e0bb e0bb e0bb e0bb
+9695 e0bc e0bc e0bc * * 4842 8ea2c8c2,8ea2c8c2v 924f e9898f 924f 0000924f e0bc e0bc e0bc e0bc e0bc e0bc e0bc
+9696 e0bd e0bd e0bd * * 4843 8ea2c8c3,8ea2c8c3v 9260 e989a0 9260 00009260 e0bd e0bd e0bd e0bd e0bd e0bd e0bd
+9697 e0be e0be e0be * * 4844 8ea2c8c4,8ea2c8c4v 9267 e989a7 9267 00009267 e0be e0be e0be e0be e0be e0be e0be
+9698 e0bf e0bf e0bf * * 4845 8ea2c8c5,8ea2c8c5v 926f e989af 926f 0000926f e0bf e0bf e0bf e0bf e0bf e0bf e0bf
+9699 e0c0 e0c0 e0c0 * * 4846 8ea2c8c6,8ea2c8c6v 9236 e988b6 9236 00009236 e0c0 e0c0 e0c0 e0c0 e0c0 e0c0 e0c0
+9700 e0c1 e0c1 e0c1 * * 4847 8ea2c8c7,8ea2c8c7v 9261 e989a1 9261 00009261 e0c1 e0c1 e0c1 e0c1 e0c1 e0c1 e0c1
+9701 e0c2 e0c2 e0c2 * * 4848 8ea2c8c8,8ea2c8c8v 9270 e989b0 9270 00009270 e0c2 e0c2 e0c2 e0c2 e0c2 e0c2 e0c2
+9702 e0c3 e0c3 e0c3 * * 4849 8ea2c8c9,8ea2c8c9v 9231 e988b1 9231 00009231 e0c3 e0c3 e0c3 e0c3 e0c3 e0c3 e0c3
+9703 e0c4 e0c4 e0c4 * * 484a 8ea2c8ca,8ea2c8cav 9254 e98994 9254 00009254 e0c4 e0c4 e0c4 e0c4 e0c4 e0c4 e0c4
+9704 e0c5 e0c5 e0c5 * * 484b 8ea2c8cb,8ea2c8cbv 9263 e989a3 9263 00009263 e0c5 e0c5 e0c5 e0c5 e0c5 e0c5 e0c5
+9705 e0c6 e0c6 e0c6 * * 484c 8ea2c8cc,8ea2c8ccv 9250 e98990 9250 00009250 e0c6 e0c6 e0c6 e0c6 e0c6 e0c6 e0c6
+9706 e0c7 e0c7 e0c7 * * 484d 8ea2c8cd,8ea2c8cdv 9272 e989b2 9272 00009272 e0c7 e0c7 e0c7 e0c7 e0c7 e0c7 e0c7
+9707 e0c8 e0c8 e0c8 * * 484e 8ea2c8ce,8ea2c8cev 924e e9898e 924e 0000924e e0c8 e0c8 e0c8 e0c8 e0c8 e0c8 e0c8
+9708 e0c9 e0c9 e0c9 * * 484f 8ea2c8cf,8ea2c8cfv 9253 e98993 9253 00009253 e0c9 e0c9 e0c9 e0c9 e0c9 e0c9 e0c9
+9709 e0ca e0ca e0ca * * 4850 8ea2c8d0,8ea2c8d0v 924c e9898c 924c 0000924c e0ca e0ca e0ca e0ca e0ca e0ca e0ca
+9710 e0cb e0cb e0cb * * 4851 8ea2c8d1,8ea2c8d1v 9256 e98996 9256 00009256 e0cb e0cb e0cb e0cb e0cb e0cb e0cb
+9711 e0cc e0cc e0cc * * 4852 8ea2c8d2,8ea2c8d2v 9232 e988b2 9232 00009232 e0cc e0cc e0cc e0cc e0cc e0cc e0cc
+9712 e0cd e0cd e0cd * * 4853 8ea2c8d3,8ea2c8d3v 959f e9969f 959f 0000959f e0cd e0cd e0cd e0cd e0cd e0cd e0cd
+9713 e0ce e0ce e0ce * * 4854 8ea2c8d4,8ea2c8d4v 959c e9969c 959c 0000959c e0ce e0ce e0ce e0ce e0ce e0ce e0ce
+9714 e0cf e0cf e0cf * * 4855 8ea2c8d5,8ea2c8d5v 959e e9969e 959e 0000959e e0cf e0cf e0cf e0cf e0cf e0cf e0cf
+9715 e0d0 e0d0 e0d0 * * 4856 8ea2c8d6,8ea2c8d6v 959b e9969b 959b 0000959b e0d0 e0d0 e0d0 e0d0 e0d0 e0d0 e0d0
+9716 e0d1 e0d1 e0d1 * * 4857 8ea2c8d7,8ea2c8d7v 9692 e99a92 9692 00009692 e0d1 e0d1 e0d1 e0d1 e0d1 e0d1 e0d1
+9717 e0d2 e0d2 e0d2 * * 4858 8ea2c8d8,8ea2c8d8v 9693 e99a93 9693 00009693 e0d2 e0d2 e0d2 e0d2 e0d2 e0d2 e0d2
+9718 e0d3 e0d3 e0d3 * * 4859 8ea2c8d9,8ea2c8d9v 9691 e99a91 9691 00009691 e0d3 e0d3 e0d3 e0d3 e0d3 e0d3 e0d3
+9719 e0d4 e0d4 e0d4 * * 485a 8ea2c8da,8ea2c8dav 9697 e99a97 9697 00009697 e0d4 e0d4 e0d4 e0d4 e0d4 e0d4 e0d4
+9720 e0d5 e0d5 e0d5 * * 485b 8ea2c8db,8ea2c8dbv 96ce e99b8e 96ce 000096ce e0d5 e0d5 e0d5 e0d5 e0d5 e0d5 e0d5
+9721 e0d6 e0d6 e0d6 * * 485c 8ea2c8dc,8ea2c8dcv 96fa e99bba 96fa 000096fa e0d6 e0d6 e0d6 e0d6 e0d6 e0d6 e0d6
+9722 e0d7 e0d7 e0d7 * * 485d 8ea2c8dd,8ea2c8ddv 96fd e99bbd 96fd 000096fd e0d7 e0d7 e0d7 e0d7 e0d7 e0d7 e0d7
+9723 e0d8 e0d8 e0d8 * * 485e 8ea2c8de,8ea2c8dev 96f8 e99bb8 96f8 000096f8 e0d8 e0d8 e0d8 e0d8 e0d8 e0d8 e0d8
+9724 e0d9 e0d9 e0d9 * * 485f 8ea2c8df,8ea2c8dfv 96f5 e99bb5 96f5 000096f5 e0d9 e0d9 e0d9 e0d9 e0d9 e0d9 e0d9
+9725 e0da e0da e0da * * 4860 8ea2c8e0,8ea2c8e0v 9773 e99db3 9773 00009773 e0da e0da e0da e0da e0da e0da e0da
+9726 e0db e0db e0db * * 4861 8ea2c8e1,8ea2c8e1v 9777 e99db7 9777 00009777 e0db e0db e0db e0db e0db e0db e0db
+9727 e0dc e0dc e0dc * * 4862 8ea2c8e2,8ea2c8e2v 9778 e99db8 9778 00009778 e0dc e0dc e0dc e0dc e0dc e0dc e0dc
+9728 e0dd e0dd e0dd * * 4863 8ea2c8e3,8ea2c8e3v 9772 e99db2 9772 00009772 e0dd e0dd e0dd e0dd e0dd e0dd e0dd
+9729 e0de e0de e0de * * 4864 8ea2c8e4,8ea2c8e4v 980f e9a08f 980f 0000980f e0de e0de e0de e0de e0de e0de e0de
+9730 e0df e0df e0df * * 4865 8ea2c8e5,8ea2c8e5v 980d e9a08d 980d 0000980d e0df e0df e0df e0df e0df e0df e0df
+9731 e0e0 e0e0 e0e0 * * 4866 8ea2c8e6,8ea2c8e6v 980e e9a08e 980e 0000980e e0e0 e0e0 e0e0 e0e0 e0e0 e0e0 e0e0
+9732 e0e1 e0e1 e0e1 * * 4867 8ea2c8e7,8ea2c8e7v 98ac e9a2ac 98ac 000098ac e0e1 e0e1 e0e1 e0e1 e0e1 e0e1 e0e1
+9733 e0e2 e0e2 e0e2 * * 4868 8ea2c8e8,8ea2c8e8v 98f6 e9a3b6 98f6 000098f6 e0e2 e0e2 e0e2 e0e2 e0e2 e0e2 e0e2
+9734 e0e3 e0e3 e0e3 * * 4869 8ea2c8e9,8ea2c8e9v 98f9 e9a3b9 98f9 000098f9 e0e3 e0e3 e0e3 e0e3 e0e3 e0e3 e0e3
+9735 e0e4 e0e4 e0e4 * * 486a 8ea2c8ea,8ea2c8eav 99af e9a6af 99af 000099af e0e4 e0e4 e0e4 e0e4 e0e4 e0e4 e0e4
+9736 e0e5 e0e5 e0e5 * * 486b 8ea2c8eb,8ea2c8ebv 99b2 e9a6b2 99b2 000099b2 e0e5 e0e5 e0e5 e0e5 e0e5 e0e5 e0e5
+9737 e0e6 e0e6 e0e6 * * 486c 8ea2c8ec,8ea2c8ecv 99b0 e9a6b0 99b0 000099b0 e0e6 e0e6 e0e6 e0e6 e0e6 e0e6 e0e6
+9738 e0e7 e0e7 e0e7 * * 486d 8ea2c8ed,8ea2c8edv 99b5 e9a6b5 99b5 000099b5 e0e7 e0e7 e0e7 e0e7 e0e7 e0e7 e0e7
+9739 e0e8 e0e8 e0e8 * * 486e 8ea2c8ee,8ea2c8eev 9aad e9aaad 9aad 00009aad e0e8 e0e8 e0e8 e0e8 e0e8 e0e8 e0e8
+9740 e0e9 e0e9 e0e9 * * 486f 8ea2c8ef,8ea2c8efv 9aab e9aaab 9aab 00009aab e0e9 e0e9 e0e9 e0e9 e0e9 e0e9 e0e9
+9741 e0ea e0ea e0ea * * 4870 8ea2c8f0,8ea2c8f0v 9b5b e9ad9b 9b5b 00009b5b e0ea e0ea e0ea e0ea e0ea e0ea e0ea
+9742 e0eb e0eb e0eb * * 4871 8ea2c8f1,8ea2c8f1v 9cea e9b3aa 9cea 00009cea e0eb e0eb e0eb e0eb e0eb e0eb e0eb
+9743 e0ec e0ec e0ec * * 4872 8ea2c8f2,8ea2c8f2v 9ced e9b3ad 9ced 00009ced e0ec e0ec e0ec e0ec e0ec e0ec e0ec
+9744 e0ed e0ed e0ed * * 4873 8ea2c8f3,8ea2c8f3v 9ce7 e9b3a7 9ce7 00009ce7 e0ed e0ed e0ed e0ed e0ed e0ed e0ed
+9745 e0ee e0ee e0ee * * 4874 8ea2c8f4,8ea2c8f4v 9e80 e9ba80 9e80 00009e80 e0ee e0ee e0ee e0ee e0ee e0ee e0ee
+9746 e0ef e0ef e0ef * 2930 4875 8ea1a9b0,8ea2c8f5,a9b0,8ea1a9b0v,8ea2c8f5v,a9b0v 9efd e2bf8c,e9bbbd 2fcc,9efd 00002fcc,00009efd e0ef e0ef e0ef e0ef e0ef e0ef e0ef
+9747 e0f0 e0f0 e0f0 * * 4876 8ea2c8f6,8ea2c8f6v 50e6 e583a6 50e6 000050e6 e0f0 e0f0 e0f0 e0f0 e0f0 e0f0 e0f0
+9748 e0f1 e0f1 e0f1 * * 4877 8ea2c8f7,8ea2c8f7v 50d4 e58394 50d4 000050d4 e0f1 e0f1 e0f1 e0f1 e0f1 e0f1 e0f1
+9749 e0f2 e0f2 e0f2 * * 4878 8ea2c8f8,8ea2c8f8v 50d7 e58397 50d7 000050d7 e0f2 e0f2 e0f2 e0f2 e0f2 e0f2 e0f2
+9750 e0f3 e0f3 e0f3 * * 4879 8ea2c8f9,8ea2c8f9v 50e8 e583a8 50e8 000050e8 e0f3 e0f3 e0f3 e0f3 e0f3 e0f3 e0f3
+9751 e0f4 e0f4 e0f4 * * 487a 8ea2c8fa,8ea2c8fav 50f3 e583b3 50f3 000050f3 e0f4 e0f4 e0f4 e0f4 e0f4 e0f4 e0f4
+9752 e0f5 e0f5 e0f5 * * 487b 8ea2c8fb,8ea2c8fbv 50db e5839b 50db 000050db e0f5 e0f5 e0f5 e0f5 e0f5 e0f5 e0f5
+9753 e0f6 e0f6 e0f6 * * 487c 8ea2c8fc,8ea2c8fcv 50ea e583aa 50ea 000050ea e0f6 e0f6 e0f6 e0f6 e0f6 e0f6 e0f6
+9754 e0f7 e0f7 e0f7 * * 487d 8ea2c8fd,8ea2c8fdv 50dd e5839d 50dd 000050dd e0f7 e0f7 e0f7 e0f7 e0f7 e0f7 e0f7
+9755 e0f8 e0f8 e0f8 * * 487e 8ea2c8fe,8ea2c8fev 50e4 e583a4 50e4 000050e4 e0f8 e0f8 e0f8 e0f8 e0f8 e0f8 e0f8
+9756 e0f9 e0f9 e0f9 * * 4921 8ea2c9a1,8ea2c9a1v 50d3 e58393 50d3 000050d3 e0f9 e0f9 e0f9 e0f9 e0f9 e0f9 e0f9
+9757 e0fa e0fa e0fa * * 4922 8ea2c9a2,8ea2c9a2v 50ec e583ac 50ec 000050ec e0fa e0fa e0fa e0fa e0fa e0fa e0fa
+9758 e0fb e0fb e0fb * * 4923 8ea2c9a3,8ea2c9a3v 50f0 e583b0 50f0 000050f0 e0fb e0fb e0fb e0fb e0fb e0fb e0fb
+9759 e0fc e0fc e0fc * * 4924 8ea2c9a4,8ea2c9a4v 50ef e583af 50ef 000050ef e0fc e0fc e0fc e0fc e0fc e0fc e0fc
+9760 e0fd e0fd e0fd * * 4925 8ea2c9a5,8ea2c9a5v 50e3 e583a3 50e3 000050e3 e0fd e0fd e0fd e0fd e0fd e0fd e0fd
+9761 e0fe e0fe e0fe * * 4926 8ea2c9a6,8ea2c9a6v 50e0 e583a0 50e0 000050e0 e0fe e0fe e0fe e0fe e0fe e0fe e0fe
+9762 e140 e140 e140 * * 4927 8ea2c9a7,8ea2c9a7v 51d8 e58798 51d8 000051d8 e140 e140 e140 e140 e140 e140 e140
+9763 e141 e141 e141 * * 4928 8ea2c9a8,8ea2c9a8v 5280 e58a80 5280 00005280 e141 e141 e141 e141 e141 e141 e141
+9764 e142 e142 e142 * * 4929 8ea2c9a9,8ea2c9a9v 5281 e58a81 5281 00005281 e142 e142 e142 e142 e142 e142 e142
+9765 e143 e143 e143 * * 492a 8ea2c9aa,8ea2c9aav 52e9 e58ba9 52e9 000052e9 e143 e143 e143 e143 e143 e143 e143
+9766 e144 e144 e144 * * 492b 8ea2c9ab,8ea2c9abv 52eb e58bab 52eb 000052eb e144 e144 e144 e144 e144 e144 e144
+9767 e145 e145 e145 * * 492c 8ea2c9ac,8ea2c9acv 5330 e58cb0 5330 00005330 e145 e145 e145 e145 e145 e145 e145
+9768 e146 e146 e146 * * 492d 8ea2c9ad,8ea2c9adv 53ac e58eac 53ac 000053ac e146 e146 e146 e146 e146 e146 e146
+9769 e147 e147 e147 * * 492e 8ea2c9ae,8ea2c9aev 5627 e598a7 5627 00005627 e147 e147 e147 e147 e147 e147 e147
+9770 e148 e148 e148 * * 492f 8ea2c9af,8ea2c9afv 5615 e59895 5615 00005615 e148 e148 e148 e148 e148 e148 e148
+9771 e149 e149 e149 * * 4930 8ea2c9b0,8ea2c9b0v 560c e5988c 560c 0000560c e149 e149 e149 e149 e149 e149 e149
+9772 e14a e14a e14a * * 4931 8ea2c9b1,8ea2c9b1v 5612 e59892 5612 00005612 e14a e14a e14a e14a e14a e14a e14a
+9773 e14b e14b e14b * * 4932 8ea2c9b2,8ea2c9b2v 55fc e597bc 55fc 000055fc e14b e14b e14b e14b e14b e14b e14b
+9774 e14c e14c e14c * * 4933 8ea2c9b3,8ea2c9b3v 560f e5988f 560f 0000560f e14c e14c e14c e14c e14c e14c e14c
+9775 e14d e14d e14d * * 4934 8ea2c9b4,8ea2c9b4v 561c e5989c 561c 0000561c e14d e14d e14d e14d e14d e14d e14d
+9776 e14e e14e e14e * * 4935 8ea2c9b5,8ea2c9b5v 5601 e59881 5601 00005601 e14e e14e e14e e14e e14e e14e e14e
+9777 e14f e14f e14f * * 4936 8ea2c9b6,8ea2c9b6v 5613 e59893 5613 00005613 e14f e14f e14f e14f e14f e14f e14f
+9778 e150 e150 e150 * * 4937 8ea2c9b7,8ea2c9b7v 5602 e59882 5602 00005602 e150 e150 e150 e150 e150 e150 e150
+9779 e151 e151 e151 * * 4938 8ea2c9b8,8ea2c9b8v 55fa e597ba 55fa 000055fa e151 e151 e151 e151 e151 e151 e151
+9780 e152 e152 e152 * * 4939 8ea2c9b9,8ea2c9b9v 561d e5989d 561d 0000561d e152 e152 e152 e152 e152 e152 e152
+9781 e153 e153 e153 * * 493a 8ea2c9ba,8ea2c9bav 5604 e59884 5604 00005604 e153 e153 e153 e153 e153 e153 e153
+9782 e154 e154 e154 * * 493b 8ea2c9bb,8ea2c9bbv 55ff e597bf 55ff 000055ff e154 e154 e154 e154 e154 e154 e154
+9783 e155 e155 e155 * * 493c 8ea2c9bc,8ea2c9bcv 55f9 e597b9 55f9 000055f9 e155 e155 e155 e155 e155 e155 e155
+9784 e156 e156 e156 * * 493d 8ea2c9bd,8ea2c9bdv 5889 e5a289 5889 00005889 e156 e156 e156 e156 e156 e156 e156
+9785 e157 e157 e157 * * 493e 8ea2c9be,8ea2c9bev 587c e5a1bc 587c 0000587c e157 e157 e157 e157 e157 e157 e157
+9786 e158 e158 e158 * * 493f 8ea2c9bf,8ea2c9bfv 5890 e5a290 5890 00005890 e158 e158 e158 e158 e158 e158 e158
+9787 e159 e159 e159 * * 4940 8ea2c9c0,8ea2c9c0v 5898 e5a298 5898 00005898 e159 e159 e159 e159 e159 e159 e159
+9788 e15a e15a e15a * * 4941 8ea2c9c1,8ea2c9c1v 5886 e5a286 5886 00005886 e15a e15a e15a e15a e15a e15a e15a
+9789 e15b e15b e15b * * 4942 8ea2c9c2,8ea2c9c2v 5881 e5a281 5881 00005881 e15b e15b e15b e15b e15b e15b e15b
+9790 e15c e15c e15c * * 4943 8ea2c9c3,8ea2c9c3v 587f e5a1bf 587f 0000587f e15c e15c e15c e15c e15c e15c e15c
+9791 e15d e15d e15d * * 4944 8ea2c9c4,8ea2c9c4v 5874 e5a1b4 5874 00005874 e15d e15d e15d e15d e15d e15d e15d
+9792 e15e e15e e15e * * 4945 8ea2c9c5,8ea2c9c5v 588b e5a28b 588b 0000588b e15e e15e e15e e15e e15e e15e e15e
+9793 e15f e15f e15f * * 4946 8ea2c9c6,8ea2c9c6v 587a e5a1ba 587a 0000587a e15f e15f e15f e15f e15f e15f e15f
+9794 e160 e160 e160 * * 4947 8ea2c9c7,8ea2c9c7v 5887 e5a287 5887 00005887 e160 e160 e160 e160 e160 e160 e160
+9795 e161 e161 e161 * * 4948 8ea2c9c8,8ea2c9c8v 5891 e5a291 5891 00005891 e161 e161 e161 e161 e161 e161 e161
+9796 e162 e162 e162 * * 4949 8ea2c9c9,8ea2c9c9v 588e e5a28e 588e 0000588e e162 e162 e162 e162 e162 e162 e162
+9797 e163 e163 e163 * * 494a 8ea2c9ca,8ea2c9cav 5876 e5a1b6 5876 00005876 e163 e163 e163 e163 e163 e163 e163
+9798 e164 e164 e164 * * 494b 8ea2c9cb,8ea2c9cbv 5882 e5a282 5882 00005882 e164 e164 e164 e164 e164 e164 e164
+9799 e165 e165 e165 * * 494c 8ea2c9cc,8ea2c9ccv 5888 e5a288 5888 00005888 e165 e165 e165 e165 e165 e165 e165
+9800 e166 e166 e166 * * 494d 8ea2c9cd,8ea2c9cdv 587b e5a1bb 587b 0000587b e166 e166 e166 e166 e166 e166 e166
+9801 e167 e167 e167 * * 494e 8ea2c9ce,8ea2c9cev 5894 e5a294 5894 00005894 e167 e167 e167 e167 e167 e167 e167
+9802 e168 e168 e168 * * 494f 8ea2c9cf,8ea2c9cfv 588f e5a28f 588f 0000588f e168 e168 e168 e168 e168 e168 e168
+9803 e169 e169 e169 * * 4950 8ea2c9d0,8ea2c9d0v 58fe e5a3be 58fe 000058fe e169 e169 e169 e169 e169 e169 e169
+9804 e16a e16a e16a * * 4951 8ea2c9d1,8ea2c9d1v 596b e5a5ab 596b 0000596b e16a e16a e16a e16a e16a e16a e16a
+9805 e16b e16b e16b * * 4952 8ea2c9d2,8ea2c9d2v 5adc e5ab9c 5adc 00005adc e16b e16b e16b e16b e16b e16b e16b
+9806 e16c e16c e16c * * 4953 8ea2c9d3,8ea2c9d3v 5aee e5abae 5aee 00005aee e16c e16c e16c e16c e16c e16c e16c
+9807 e16d e16d e16d * * 4954 8ea2c9d4,8ea2c9d4v 5ae5 e5aba5 5ae5 00005ae5 e16d e16d e16d e16d e16d e16d e16d
+9808 e16e e16e e16e * * 4955 8ea2c9d5,8ea2c9d5v 5ad5 e5ab95 5ad5 00005ad5 e16e e16e e16e e16e e16e e16e e16e
+9809 e16f e16f e16f * * 4956 8ea2c9d6,8ea2c9d6v 5aea e5abaa 5aea 00005aea e16f e16f e16f e16f e16f e16f e16f
+9810 e170 e170 e170 * * 4957 8ea2c9d7,8ea2c9d7v 5ada e5ab9a 5ada 00005ada e170 e170 e170 e170 e170 e170 e170
+9811 e171 e171 e171 * * 4958 8ea2c9d8,8ea2c9d8v 5aed e5abad 5aed 00005aed e171 e171 e171 e171 e171 e171 e171
+9812 e172 e172 e172 * * 4959 8ea2c9d9,8ea2c9d9v 5aeb e5abab 5aeb 00005aeb e172 e172 e172 e172 e172 e172 e172
+9813 e173 e173 e173 * * 495a 8ea2c9da,8ea2c9dav 5af3 e5abb3 5af3 00005af3 e173 e173 e173 e173 e173 e173 e173
+9814 e174 e174 e174 * * 495b 8ea2c9db,8ea2c9dbv 5ae2 e5aba2 5ae2 00005ae2 e174 e174 e174 e174 e174 e174 e174
+9815 e175 e175 e175 * * 495c 8ea2c9dc,8ea2c9dcv 5ae0 e5aba0 5ae0 00005ae0 e175 e175 e175 e175 e175 e175 e175
+9816 e176 e176 e176 * * 495d 8ea2c9dd,8ea2c9ddv 5adb e5ab9b 5adb 00005adb e176 e176 e176 e176 e176 e176 e176
+9817 e177 e177 e177 * * 495e 8ea2c9de,8ea2c9dev 5aec e5abac 5aec 00005aec e177 e177 e177 e177 e177 e177 e177
+9818 e178 e178 e178 * * 495f 8ea2c9df,8ea2c9dfv 5ade e5ab9e 5ade 00005ade e178 e178 e178 e178 e178 e178 e178
+9819 e179 e179 e179 * * 4960 8ea2c9e0,8ea2c9e0v 5add e5ab9d 5add 00005add e179 e179 e179 e179 e179 e179 e179
+9820 e17a e17a e17a * * 4961 8ea2c9e1,8ea2c9e1v 5ad9 e5ab99 5ad9 00005ad9 e17a e17a e17a e17a e17a e17a e17a
+9821 e17b e17b e17b * * 4962 8ea2c9e2,8ea2c9e2v 5ae8 e5aba8 5ae8 00005ae8 e17b e17b e17b e17b e17b e17b e17b
+9822 e17c e17c e17c * * 4963 8ea2c9e3,8ea2c9e3v 5adf e5ab9f 5adf 00005adf e17c e17c e17c e17c e17c e17c e17c
+9823 e17d e17d e17d * * 4964 8ea2c9e4,8ea2c9e4v 5b77 e5adb7 5b77 00005b77 e17d e17d e17d e17d e17d e17d e17d
+9824 e17e e17e e17e * * 4965 8ea2c9e5,8ea2c9e5v 5be0 e5afa0 5be0 00005be0 e17e e17e e17e e17e e17e e17e e17e
+9825 e1a1 e1a1 e1a1 * * 4966 8ea2c9e6,8ea2c9e6v 5be3 e5afa3 5be3 00005be3 e1a1 e1a1 e1a1 e1a1 e1a1 e1a1 e1a1
+9826 e1a2 e1a2 e1a2 * * 4967 8ea2c9e7,8ea2c9e7v 5c63 e5b1a3 5c63 00005c63 e1a2 e1a2 e1a2 e1a2 e1a2 e1a2 e1a2
+9827 e1a3 e1a3 e1a3 * * 4968 8ea2c9e8,8ea2c9e8v 5d82 e5b682 5d82 00005d82 e1a3 e1a3 e1a3 e1a3 e1a3 e1a3 e1a3
+9828 e1a4 e1a4 e1a4 * * 4969 8ea2c9e9,8ea2c9e9v 5d80 e5b680 5d80 00005d80 e1a4 e1a4 e1a4 e1a4 e1a4 e1a4 e1a4
+9829 e1a5 e1a5 e1a5 * * 496a 8ea2c9ea,8ea2c9eav 5d7d e5b5bd 5d7d 00005d7d e1a5 e1a5 e1a5 e1a5 e1a5 e1a5 e1a5
+9830 e1a6 e1a6 e1a6 * * 496b 8ea2c9eb,8ea2c9ebv 5d86 e5b686 5d86 00005d86 e1a6 e1a6 e1a6 e1a6 e1a6 e1a6 e1a6
+9831 e1a7 e1a7 e1a7 * * 496c 8ea2c9ec,8ea2c9ecv 5d7a e5b5ba 5d7a 00005d7a e1a7 e1a7 e1a7 e1a7 e1a7 e1a7 e1a7
+9832 e1a8 e1a8 e1a8 * * 496d 8ea2c9ed,8ea2c9edv 5d81 e5b681 5d81 00005d81 e1a8 e1a8 e1a8 e1a8 e1a8 e1a8 e1a8
+9833 e1a9 e1a9 e1a9 * * 496e 8ea2c9ee,8ea2c9eev 5d77 e5b5b7 5d77 00005d77 e1a9 e1a9 e1a9 e1a9 e1a9 e1a9 e1a9
+9834 e1aa e1aa e1aa * * 496f 8ea2c9ef,8ea2c9efv 5d8a e5b68a 5d8a 00005d8a e1aa e1aa e1aa e1aa e1aa e1aa e1aa
+9835 e1ab e1ab e1ab * * 4970 8ea2c9f0,8ea2c9f0v 5d89 e5b689 5d89 00005d89 e1ab e1ab e1ab e1ab e1ab e1ab e1ab
+9836 e1ac e1ac e1ac * * 4971 8ea2c9f1,8ea2c9f1v 5d88 e5b688 5d88 00005d88 e1ac e1ac e1ac e1ac e1ac e1ac e1ac
+9837 e1ad e1ad e1ad * * 4972 8ea2c9f2,8ea2c9f2v 5d7e e5b5be 5d7e 00005d7e e1ad e1ad e1ad e1ad e1ad e1ad e1ad
+9838 e1ae e1ae e1ae * * 4973 8ea2c9f3,8ea2c9f3v 5d7c e5b5bc 5d7c 00005d7c e1ae e1ae e1ae e1ae e1ae e1ae e1ae
+9839 e1af e1af e1af * * 4974 8ea2c9f4,8ea2c9f4v 5d8d e5b68d 5d8d 00005d8d e1af e1af e1af e1af e1af e1af e1af
+9840 e1b0 e1b0 e1b0 * * 4975 8ea2c9f5,8ea2c9f5v 5d79 e5b5b9 5d79 00005d79 e1b0 e1b0 e1b0 e1b0 e1b0 e1b0 e1b0
+9841 e1b1 e1b1 e1b1 * * 4976 8ea2c9f6,8ea2c9f6v 5d7f e5b5bf 5d7f 00005d7f e1b1 e1b1 e1b1 e1b1 e1b1 e1b1 e1b1
+9842 e1b2 e1b2 e1b2 * * 4977 8ea2c9f7,8ea2c9f7v 5e58 e5b998 5e58 00005e58 e1b2 e1b2 e1b2 e1b2 e1b2 e1b2 e1b2
+9843 e1b3 e1b3 e1b3 * * 4978 8ea2c9f8,8ea2c9f8v 5e59 e5b999 5e59 00005e59 e1b3 e1b3 e1b3 e1b3 e1b3 e1b3 e1b3
+9844 e1b4 e1b4 e1b4 * * 4979 8ea2c9f9,8ea2c9f9v 5e53 e5b993 5e53 00005e53 e1b4 e1b4 e1b4 e1b4 e1b4 e1b4 e1b4
+9845 e1b5 e1b5 e1b5 * * 497a 8ea2c9fa,8ea2c9fav 5ed8 e5bb98 5ed8 00005ed8 e1b5 e1b5 e1b5 e1b5 e1b5 e1b5 e1b5
+9846 e1b6 e1b6 e1b6 * * 497b 8ea2c9fb,8ea2c9fbv 5ed1 e5bb91 5ed1 00005ed1 e1b6 e1b6 e1b6 e1b6 e1b6 e1b6 e1b6
+9847 e1b7 e1b7 e1b7 * * 497c 8ea2c9fc,8ea2c9fcv 5ed7 e5bb97 5ed7 00005ed7 e1b7 e1b7 e1b7 e1b7 e1b7 e1b7 e1b7
+9848 e1b8 e1b8 e1b8 * * 497d 8ea2c9fd,8ea2c9fdv 5ece e5bb8e 5ece 00005ece e1b8 e1b8 e1b8 e1b8 e1b8 e1b8 e1b8
+9849 e1b9 e1b9 e1b9 * * 497e 8ea2c9fe,8ea2c9fev 5edc e5bb9c 5edc 00005edc e1b9 e1b9 e1b9 e1b9 e1b9 e1b9 e1b9
+9850 e1ba e1ba e1ba * * 4a21 8ea2caa1,8ea2caa1v 5ed5 e5bb95 5ed5 00005ed5 e1ba e1ba e1ba e1ba e1ba e1ba e1ba
+9851 e1bb e1bb e1bb * * 4a22 8ea2caa2,8ea2caa2v 5ed9 e5bb99 5ed9 00005ed9 e1bb e1bb e1bb e1bb e1bb e1bb e1bb
+9852 e1bc e1bc e1bc * * 4a23 8ea2caa3,8ea2caa3v 5ed2 e5bb92 5ed2 00005ed2 e1bc e1bc e1bc e1bc e1bc e1bc e1bc
+9853 e1bd e1bd e1bd * * 4a24 8ea2caa4,8ea2caa4v 5ed4 e5bb94 5ed4 00005ed4 e1bd e1bd e1bd e1bd e1bd e1bd e1bd
+9854 e1be e1be e1be * * 4a25 8ea2caa5,8ea2caa5v 5f44 e5bd84 5f44 00005f44 e1be e1be e1be e1be e1be e1be e1be
+9855 e1bf e1bf e1bf * * 4a26 8ea2caa6,8ea2caa6v 5f43 e5bd83 5f43 00005f43 e1bf e1bf e1bf e1bf e1bf e1bf e1bf
+9856 e1c0 e1c0 e1c0 * * 4a27 8ea2caa7,8ea2caa7v 5f6f e5bdaf 5f6f 00005f6f e1c0 e1c0 e1c0 e1c0 e1c0 e1c0 e1c0
+9857 e1c1 e1c1 e1c1 * * 4a28 8ea2caa8,8ea2caa8v 5fb6 e5beb6 5fb6 00005fb6 e1c1 e1c1 e1c1 e1c1 e1c1 e1c1 e1c1
+9858 e1c2 e1c2 e1c2 * * 4a29 8ea2caa9,8ea2caa9v 612c e684ac 612c 0000612c e1c2 e1c2 e1c2 e1c2 e1c2 e1c2 e1c2
+9859 e1c3 e1c3 e1c3 * * 4a2a 8ea2caaa,8ea2caaav 6128 e684a8 6128 00006128 e1c3 e1c3 e1c3 e1c3 e1c3 e1c3 e1c3
+9860 e1c4 e1c4 e1c4 * * 4a2b 8ea2caab,8ea2caabv 6141 e68581 6141 00006141 e1c4 e1c4 e1c4 e1c4 e1c4 e1c4 e1c4
+9861 e1c5 e1c5 e1c5 * * 4a2c 8ea2caac,8ea2caacv 615e e6859e 615e 0000615e e1c5 e1c5 e1c5 e1c5 e1c5 e1c5 e1c5
+9862 e1c6 e1c6 e1c6 * * 4a2d 8ea2caad,8ea2caadv 6171 e685b1 6171 00006171 e1c6 e1c6 e1c6 e1c6 e1c6 e1c6 e1c6
+9863 e1c7 e1c7 e1c7 * * 4a2e 8ea2caae,8ea2caaev 6173 e685b3 6173 00006173 e1c7 e1c7 e1c7 e1c7 e1c7 e1c7 e1c7
+9864 e1c8 e1c8 e1c8 * * 4a2f 8ea2caaf,8ea2caafv 6152 e68592 6152 00006152 e1c8 e1c8 e1c8 e1c8 e1c8 e1c8 e1c8
+9865 e1c9 e1c9 e1c9 * * 4a30 8ea2cab0,8ea2cab0v 6153 e68593 6153 00006153 e1c9 e1c9 e1c9 e1c9 e1c9 e1c9 e1c9
+9866 e1ca e1ca e1ca * * 4a31 8ea2cab1,8ea2cab1v 6172 e685b2 6172 00006172 e1ca e1ca e1ca e1ca e1ca e1ca e1ca
+9867 e1cb e1cb e1cb * * 4a32 8ea2cab2,8ea2cab2v 616c e685ac 616c 0000616c e1cb e1cb e1cb e1cb e1cb e1cb e1cb
+9868 e1cc e1cc e1cc * * 4a33 8ea2cab3,8ea2cab3v 6180 e68680 6180 00006180 e1cc e1cc e1cc e1cc e1cc e1cc e1cc
+9869 e1cd e1cd e1cd * * 4a34 8ea2cab4,8ea2cab4v 6174 e685b4 6174 00006174 e1cd e1cd e1cd e1cd e1cd e1cd e1cd
+9870 e1ce e1ce e1ce * * 4a35 8ea2cab5,8ea2cab5v 6154 e68594 6154 00006154 e1ce e1ce e1ce e1ce e1ce e1ce e1ce
+9871 e1cf e1cf e1cf * * 4a36 8ea2cab6,8ea2cab6v 617a e685ba 617a 0000617a e1cf e1cf e1cf e1cf e1cf e1cf e1cf
+9872 e1d0 e1d0 e1d0 * * 4a37 8ea2cab7,8ea2cab7v 615b e6859b 615b 0000615b e1d0 e1d0 e1d0 e1d0 e1d0 e1d0 e1d0
+9873 e1d1 e1d1 e1d1 * * 4a38 8ea2cab8,8ea2cab8v 6165 e685a5 6165 00006165 e1d1 e1d1 e1d1 e1d1 e1d1 e1d1 e1d1
+9874 e1d2 e1d2 e1d2 * * 4a39 8ea2cab9,8ea2cab9v 613b e684bb 613b 0000613b e1d2 e1d2 e1d2 e1d2 e1d2 e1d2 e1d2
+9875 e1d3 e1d3 e1d3 * * 4a3a 8ea2caba,8ea2cabav 616a e685aa 616a 0000616a e1d3 e1d3 e1d3 e1d3 e1d3 e1d3 e1d3
+9876 e1d4 e1d4 e1d4 * * 4a3b 8ea2cabb,8ea2cabbv 6161 e685a1 6161 00006161 e1d4 e1d4 e1d4 e1d4 e1d4 e1d4 e1d4
+9877 e1d5 e1d5 e1d5 * * 4a3c 8ea2cabc,8ea2cabcv 6156 e68596 6156 00006156 e1d5 e1d5 e1d5 e1d5 e1d5 e1d5 e1d5
+9878 e1d6 e1d6 e1d6 * * 4a3d 8ea2cabd,8ea2cabdv 6229 e688a9 6229 00006229 e1d6 e1d6 e1d6 e1d6 e1d6 e1d6 e1d6
+9879 e1d7 e1d7 e1d7 * * 4a3e 8ea2cabe,8ea2cabev 6227 e688a7 6227 00006227 e1d7 e1d7 e1d7 e1d7 e1d7 e1d7 e1d7
+9880 e1d8 e1d8 e1d8 * * 4a3f 8ea2cabf,8ea2cabfv 622b e688ab 622b 0000622b e1d8 e1d8 e1d8 e1d8 e1d8 e1d8 e1d8
+9881 e1d9 e1d9 e1d9 * * 4a40 8ea2cac0,8ea2cac0v 642b e690ab 642b 0000642b e1d9 e1d9 e1d9 e1d9 e1d9 e1d9 e1d9
+9882 e1da e1da e1da * * 4a41 8ea2cac1,8ea2cac1v 644d e6918d 644d 0000644d e1da e1da e1da e1da e1da e1da e1da
+9883 e1db e1db e1db * * 4a42 8ea2cac2,8ea2cac2v 645b e6919b 645b 0000645b e1db e1db e1db e1db e1db e1db e1db
+9884 e1dc e1dc e1dc * * 4a43 8ea2cac3,8ea2cac3v 645d e6919d 645d 0000645d e1dc e1dc e1dc e1dc e1dc e1dc e1dc
+9885 e1dd e1dd e1dd * * 4a44 8ea2cac4,8ea2cac4v 6474 e691b4 6474 00006474 e1dd e1dd e1dd e1dd e1dd e1dd e1dd
+9886 e1de e1de e1de * * 4a45 8ea2cac5,8ea2cac5v 6476 e691b6 6476 00006476 e1de e1de e1de e1de e1de e1de e1de
+9887 e1df e1df e1df * * 4a46 8ea2cac6,8ea2cac6v 6472 e691b2 6472 00006472 e1df e1df e1df e1df e1df e1df e1df
+9888 e1e0 e1e0 e1e0 * * 4a47 8ea2cac7,8ea2cac7v 6473 e691b3 6473 00006473 e1e0 e1e0 e1e0 e1e0 e1e0 e1e0 e1e0
+9889 e1e1 e1e1 e1e1 * * 4a48 8ea2cac8,8ea2cac8v 647d e691bd 647d 0000647d e1e1 e1e1 e1e1 e1e1 e1e1 e1e1 e1e1
+9890 e1e2 e1e2 e1e2 * * 4a49 8ea2cac9,8ea2cac9v 6475 e691b5 6475 00006475 e1e2 e1e2 e1e2 e1e2 e1e2 e1e2 e1e2
+9891 e1e3 e1e3 e1e3 * * 4a4a 8ea2caca,8ea2cacav 6466 e691a6 6466 00006466 e1e3 e1e3 e1e3 e1e3 e1e3 e1e3 e1e3
+9892 e1e4 e1e4 e1e4 * * 4a4b 8ea2cacb,8ea2cacbv 64a6 e692a6 64a6 000064a6 e1e4 e1e4 e1e4 e1e4 e1e4 e1e4 e1e4
+9893 e1e5 e1e5 e1e5 * * 4a4c 8ea2cacc,8ea2caccv 644e e6918e 644e 0000644e e1e5 e1e5 e1e5 e1e5 e1e5 e1e5 e1e5
+9894 e1e6 e1e6 e1e6 * * 4a4d 8ea2cacd,8ea2cacdv 6482 e69282 6482 00006482 e1e6 e1e6 e1e6 e1e6 e1e6 e1e6 e1e6
+9895 e1e7 e1e7 e1e7 * * 4a4e 8ea2cace,8ea2cacev 645e e6919e 645e 0000645e e1e7 e1e7 e1e7 e1e7 e1e7 e1e7 e1e7
+9896 e1e8 e1e8 e1e8 * * 4a4f 8ea2cacf,8ea2cacfv 645c e6919c 645c 0000645c e1e8 e1e8 e1e8 e1e8 e1e8 e1e8 e1e8
+9897 e1e9 e1e9 e1e9 * * 4a50 8ea2cad0,8ea2cad0v 644b e6918b 644b 0000644b e1e9 e1e9 e1e9 e1e9 e1e9 e1e9 e1e9
+9898 e1ea e1ea e1ea * * 4a51 8ea2cad1,8ea2cad1v 6453 e69193 6453 00006453 e1ea e1ea e1ea e1ea e1ea e1ea e1ea
+9899 e1eb e1eb e1eb * * 4a52 8ea2cad2,8ea2cad2v 6460 e691a0 6460 00006460 e1eb e1eb e1eb e1eb e1eb e1eb e1eb
+9900 e1ec e1ec e1ec * * 4a53 8ea2cad3,8ea2cad3v 6450 e69190 6450 00006450 e1ec e1ec e1ec e1ec e1ec e1ec e1ec
+9901 e1ed e1ed e1ed * * 4a54 8ea2cad4,8ea2cad4v 647f e691bf 647f 0000647f e1ed e1ed e1ed e1ed e1ed e1ed e1ed
+9902 e1ee e1ee e1ee * * 4a55 8ea2cad5,8ea2cad5v 643f e690bf 643f 0000643f e1ee e1ee e1ee e1ee e1ee e1ee e1ee
+9903 e1ef e1ef e1ef * * 4a56 8ea2cad6,8ea2cad6v 646c e691ac 646c 0000646c e1ef e1ef e1ef e1ef e1ef e1ef e1ef
+9904 e1f0 e1f0 e1f0 * * 4a57 8ea2cad7,8ea2cad7v 646b e691ab 646b 0000646b e1f0 e1f0 e1f0 e1f0 e1f0 e1f0 e1f0
+9905 e1f1 e1f1 e1f1 * * 4a58 8ea2cad8,8ea2cad8v 6459 e69199 6459 00006459 e1f1 e1f1 e1f1 e1f1 e1f1 e1f1 e1f1
+9906 e1f2 e1f2 e1f2 * * 4a59 8ea2cad9,8ea2cad9v 6465 e691a5 6465 00006465 e1f2 e1f2 e1f2 e1f2 e1f2 e1f2 e1f2
+9907 e1f3 e1f3 e1f3 * * 4a5a 8ea2cada,8ea2cadav 6477 e691b7 6477 00006477 e1f3 e1f3 e1f3 e1f3 e1f3 e1f3 e1f3
+9908 e1f4 e1f4 e1f4 * * 4a5b 8ea2cadb,8ea2cadbv 6573 e695b3 6573 00006573 e1f4 e1f4 e1f4 e1f4 e1f4 e1f4 e1f4
+9909 e1f5 e1f5 e1f5 * * 4a5c 8ea2cadc,8ea2cadcv 65a0 e696a0 65a0 000065a0 e1f5 e1f5 e1f5 e1f5 e1f5 e1f5 e1f5
+9910 e1f6 e1f6 e1f6 * * 4a5d 8ea2cadd,8ea2caddv 66a1 e69aa1 66a1 000066a1 e1f6 e1f6 e1f6 e1f6 e1f6 e1f6 e1f6
+9911 e1f7 e1f7 e1f7 * * 4a5e 8ea2cade,8ea2cadev 66a0 e69aa0 66a0 000066a0 e1f7 e1f7 e1f7 e1f7 e1f7 e1f7 e1f7
+9912 e1f8 e1f8 e1f8 * * 4a5f 8ea2cadf,8ea2cadfv 669f e69a9f 669f 0000669f e1f8 e1f8 e1f8 e1f8 e1f8 e1f8 e1f8
+9913 e1f9 e1f9 e1f9 * * 4a60 8ea2cae0,8ea2cae0v 6705 e69c85 6705 00006705 e1f9 e1f9 e1f9 e1f9 e1f9 e1f9 e1f9
+9914 e1fa e1fa e1fa * * 4a61 8ea2cae1,8ea2cae1v 6704 e69c84 6704 00006704 e1fa e1fa e1fa e1fa e1fa e1fa e1fa
+9915 e1fb e1fb e1fb * * 4a62 8ea2cae2,8ea2cae2v 6722 e69ca2 6722 00006722 e1fb e1fb e1fb e1fb e1fb e1fb e1fb
+9916 e1fc e1fc e1fc * * 4a63 8ea2cae3,8ea2cae3v 69b1 e6a6b1 69b1 000069b1 e1fc e1fc e1fc e1fc e1fc e1fc e1fc
+9917 e1fd e1fd e1fd * * 4a64 8ea2cae4,8ea2cae4v 69b6 e6a6b6 69b6 000069b6 e1fd e1fd e1fd e1fd e1fd e1fd e1fd
+9918 e1fe e1fe e1fe * * 4a65 8ea2cae5,8ea2cae5v 69c9 e6a789 69c9 000069c9 e1fe e1fe e1fe e1fe e1fe e1fe e1fe
+9919 e240 e240 e240 * * 4a66 8ea2cae6,8ea2cae6v 69a0 e6a6a0 69a0 000069a0 e240 e240 e240 e240 e240 e240 e240
+9920 e241 e241 e241 * * 4a67 8ea2cae7,8ea2cae7v 69ce e6a78e 69ce 000069ce e241 e241 e241 e241 e241 e241 e241
+9921 e242 e242 e242 * * 4a68 8ea2cae8,8ea2cae8v 6996 e6a696 6996 00006996 e242 e242 e242 e242 e242 e242 e242
+9922 e243 e243 e243 * * 4a69 8ea2cae9,8ea2cae9v 69b0 e6a6b0 69b0 000069b0 e243 e243 e243 e243 e243 e243 e243
+9923 e244 e244 e244 * * 4a6a 8ea2caea,8ea2caeav 69ac e6a6ac 69ac 000069ac e244 e244 e244 e244 e244 e244 e244
+9924 e245 e245 e245 * * 4a6b 8ea2caeb,8ea2caebv 69bc e6a6bc 69bc 000069bc e245 e245 e245 e245 e245 e245 e245
+9925 e246 e246 e246 * * 4a6c 8ea2caec,8ea2caecv 6991 e6a691 6991 00006991 e246 e246 e246 e246 e246 e246 e246
+9926 e247 e247 e247 * * 4a6d 8ea2caed,8ea2caedv 6999 e6a699 6999 00006999 e247 e247 e247 e247 e247 e247 e247
+9927 e248 e248 e248 * * 4a6e 8ea2caee,8ea2caeev 698e e6a68e 698e 0000698e e248 e248 e248 e248 e248 e248 e248
+9928 e249 e249 e249 * * 4a6f 8ea2caef,8ea2caefv 69a7 e6a6a7 69a7 000069a7 e249 e249 e249 e249 e249 e249 e249
+9929 e24a e24a e24a * * 4a70 8ea2caf0,8ea2caf0v 698d e6a68d 698d 0000698d e24a e24a e24a e24a e24a e24a e24a
+9930 e24b e24b e24b * * 4a71 8ea2caf1,8ea2caf1v 69a9 e6a6a9 69a9 000069a9 e24b e24b e24b e24b e24b e24b e24b
+9931 e24c e24c e24c * * 4a72 8ea2caf2,8ea2caf2v 69be e6a6be 69be 000069be e24c e24c e24c e24c e24c e24c e24c
+9932 e24d e24d e24d * * 4a73 8ea2caf3,8ea2caf3v 69af e6a6af 69af 000069af e24d e24d e24d e24d e24d e24d e24d
+9933 e24e e24e e24e * * 4a74 8ea2caf4,8ea2caf4v 69bf e6a6bf 69bf 000069bf e24e e24e e24e e24e e24e e24e e24e
+9934 e24f e24f e24f * * 4a75 8ea2caf5,8ea2caf5v 69c4 e6a784 69c4 000069c4 e24f e24f e24f e24f e24f e24f e24f
+9935 e250 e250 e250 * * 4a76 8ea2caf6,8ea2caf6v 69bd e6a6bd 69bd 000069bd e250 e250 e250 e250 e250 e250 e250
+9936 e251 e251 e251 * * 4a77 8ea2caf7,8ea2caf7v 69a4 e6a6a4 69a4 000069a4 e251 e251 e251 e251 e251 e251 e251
+9937 e252 e252 e252 * * 4a78 8ea2caf8,8ea2caf8v 69d4 e6a794 69d4 000069d4 e252 e252 e252 e252 e252 e252 e252
+9938 e253 e253 e253 * * 4a79 8ea2caf9,8ea2caf9v 69b9 e6a6b9 69b9 000069b9 e253 e253 e253 e253 e253 e253 e253
+9939 e254 e254 e254 * * 4a7a 8ea2cafa,8ea2cafav 69ca e6a78a 69ca 000069ca e254 e254 e254 e254 e254 e254 e254
+9940 e255 e255 e255 * * 4a7b 8ea2cafb,8ea2cafbv 699a e6a69a 699a 0000699a e255 e255 e255 e255 e255 e255 e255
+9941 e256 e256 e256 * * 4a7c 8ea2cafc,8ea2cafcv 69cf e6a78f 69cf 000069cf e256 e256 e256 e256 e256 e256 e256
+9942 e257 e257 e257 * * 4a7d 8ea2cafd,8ea2cafdv 69b3 e6a6b3 69b3 000069b3 e257 e257 e257 e257 e257 e257 e257
+9943 e258 e258 e258 * * 4a7e 8ea2cafe,8ea2cafev 6993 e6a693 6993 00006993 e258 e258 e258 e258 e258 e258 e258
+9944 e259 e259 e259 * * 4b21 8ea2cba1,8ea2cba1v 69aa e6a6aa 69aa 000069aa e259 e259 e259 e259 e259 e259 e259
+9945 e25a e25a e25a * * 4b22 8ea2cba2,8ea2cba2v 69a1 e6a6a1 69a1 000069a1 e25a e25a e25a e25a e25a e25a e25a
+9946 e25b e25b e25b * * 4b23 8ea2cba3,8ea2cba3v 699e e6a69e 699e 0000699e e25b e25b e25b e25b e25b e25b e25b
+9947 e25c e25c e25c * * 4b24 8ea2cba4,8ea2cba4v 69d9 e6a799 69d9 000069d9 e25c e25c e25c e25c e25c e25c e25c
+9948 e25d e25d e25d * * 4b25 8ea2cba5,8ea2cba5v 6997 e6a697 6997 00006997 e25d e25d e25d e25d e25d e25d e25d
+9949 e25e e25e e25e * * 4b26 8ea2cba6,8ea2cba6v 6990 e6a690 6990 00006990 e25e e25e e25e e25e e25e e25e e25e
+9950 e25f e25f e25f * * 4b27 8ea2cba7,8ea2cba7v 69c2 e6a782 69c2 000069c2 e25f e25f e25f e25f e25f e25f e25f
+9951 e260 e260 e260 * * 4b28 8ea2cba8,8ea2cba8v 69b5 e6a6b5 69b5 000069b5 e260 e260 e260 e260 e260 e260 e260
+9952 e261 e261 e261 * * 4b29 8ea2cba9,8ea2cba9v 69a5 e6a6a5 69a5 000069a5 e261 e261 e261 e261 e261 e261 e261
+9953 e262 e262 e262 * * 4b2a 8ea2cbaa,8ea2cbaav 69c6 e6a786 69c6 000069c6 e262 e262 e262 e262 e262 e262 e262
+9954 e263 e263 e263 * * 4b2b 8ea2cbab,8ea2cbabv 6b4a e6ad8a 6b4a 00006b4a e263 e263 e263 e263 e263 e263 e263
+9955 e264 e264 e264 * * 4b2c 8ea2cbac,8ea2cbacv 6b4d e6ad8d 6b4d 00006b4d e264 e264 e264 e264 e264 e264 e264
+9956 e265 e265 e265 * * 4b2d 8ea2cbad,8ea2cbadv 6b4b e6ad8b 6b4b 00006b4b e265 e265 e265 e265 e265 e265 e265
+9957 e266 e266 e266 * * 4b2e 8ea2cbae,8ea2cbaev 6b9e e6ae9e 6b9e 00006b9e e266 e266 e266 e266 e266 e266 e266
+9958 e267 e267 e267 * * 4b2f 8ea2cbaf,8ea2cbafv 6b9f e6ae9f 6b9f 00006b9f e267 e267 e267 e267 e267 e267 e267
+9959 e268 e268 e268 * * 4b30 8ea2cbb0,8ea2cbb0v 6ba0 e6aea0 6ba0 00006ba0 e268 e268 e268 e268 e268 e268 e268
+9960 e269 e269 e269 * * 4b31 8ea2cbb1,8ea2cbb1v 6bc3 e6af83 6bc3 00006bc3 e269 e269 e269 e269 e269 e269 e269
+9961 e26a e26a e26a * * 4b32 8ea2cbb2,8ea2cbb2v 6bc4 e6af84 6bc4 00006bc4 e26a e26a e26a e26a e26a e26a e26a
+9962 e26b e26b e26b * * 4b33 8ea2cbb3,8ea2cbb3v 6bfe e6afbe 6bfe 00006bfe e26b e26b e26b e26b e26b e26b e26b
+9963 e26c e26c e26c * * 4b34 8ea2cbb4,8ea2cbb4v 6ece e6bb8e 6ece 00006ece e26c e26c e26c e26c e26c e26c e26c
+9964 e26d e26d e26d * * 4b35 8ea2cbb5,8ea2cbb5v 6ef5 e6bbb5 6ef5 00006ef5 e26d e26d e26d e26d e26d e26d e26d
+9965 e26e e26e e26e * * 4b36 8ea2cbb6,8ea2cbb6v 6ef1 e6bbb1 6ef1 00006ef1 e26e e26e e26e e26e e26e e26e e26e
+9966 e26f e26f e26f * * 4b37 8ea2cbb7,8ea2cbb7v 6f03 e6bc83 6f03 00006f03 e26f e26f e26f e26f e26f e26f e26f
+9967 e270 e270 e270 * * 4b38 8ea2cbb8,8ea2cbb8v 6f25 e6bca5 6f25 00006f25 e270 e270 e270 e270 e270 e270 e270
+9968 e271 e271 e271 * * 4b39 8ea2cbb9,8ea2cbb9v 6ef8 e6bbb8 6ef8 00006ef8 e271 e271 e271 e271 e271 e271 e271
+9969 e272 e272 e272 * * 4b3a 8ea2cbba,8ea2cbbav 6f37 e6bcb7 6f37 00006f37 e272 e272 e272 e272 e272 e272 e272
+9970 e273 e273 e273 * * 4b3b 8ea2cbbb,8ea2cbbbv 6efb e6bbbb 6efb 00006efb e273 e273 e273 e273 e273 e273 e273
+9971 e274 e274 e274 * * 4b3c 8ea2cbbc,8ea2cbbcv 6f2e e6bcae 6f2e 00006f2e e274 e274 e274 e274 e274 e274 e274
+9972 e275 e275 e275 * * 4b3d 8ea2cbbd,8ea2cbbdv 6f09 e6bc89 6f09 00006f09 e275 e275 e275 e275 e275 e275 e275
+9973 e276 e276 e276 * * 4b3e 8ea2cbbe,8ea2cbbev 6f4e e6bd8e 6f4e 00006f4e e276 e276 e276 e276 e276 e276 e276
+9974 e277 e277 e277 * * 4b3f 8ea2cbbf,8ea2cbbfv 6f19 e6bc99 6f19 00006f19 e277 e277 e277 e277 e277 e277 e277
+9975 e278 e278 e278 * * 4b40 8ea2cbc0,8ea2cbc0v 6f1a e6bc9a 6f1a 00006f1a e278 e278 e278 e278 e278 e278 e278
+9976 e279 e279 e279 * * 4b41 8ea2cbc1,8ea2cbc1v 6f27 e6bca7 6f27 00006f27 e279 e279 e279 e279 e279 e279 e279
+9977 e27a e27a e27a * * 4b42 8ea2cbc2,8ea2cbc2v 6f18 e6bc98 6f18 00006f18 e27a e27a e27a e27a e27a e27a e27a
+9978 e27b e27b e27b * * 4b43 8ea2cbc3,8ea2cbc3v 6f3b e6bcbb 6f3b 00006f3b e27b e27b e27b e27b e27b e27b e27b
+9979 e27c e27c e27c * * 4b44 8ea2cbc4,8ea2cbc4v 6f12 e6bc92 6f12 00006f12 e27c e27c e27c e27c e27c e27c e27c
+9980 e27d e27d e27d * * 4b45 8ea2cbc5,8ea2cbc5v 6eed e6bbad 6eed 00006eed e27d e27d e27d e27d e27d e27d e27d
+9981 e27e e27e e27e * * 4b46 8ea2cbc6,8ea2cbc6v 6f0a e6bc8a 6f0a 00006f0a e27e e27e e27e e27e e27e e27e e27e
+9982 e2a1 e2a1 e2a1 * * 4b47 8ea2cbc7,8ea2cbc7v 6f36 e6bcb6 6f36 00006f36 e2a1 e2a1 e2a1 e2a1 e2a1 e2a1 e2a1
+9983 e2a2 e2a2 e2a2 * * 4b48 8ea2cbc8,8ea2cbc8v 6f73 e6bdb3 6f73 00006f73 e2a2 e2a2 e2a2 e2a2 e2a2 e2a2 e2a2
+9984 e2a3 e2a3 e2a3 * * 4b49 8ea2cbc9,8ea2cbc9v 6ef9 e6bbb9 6ef9 00006ef9 e2a3 e2a3 e2a3 e2a3 e2a3 e2a3 e2a3
+9985 e2a4 e2a4 e2a4 * * 4b4a 8ea2cbca,8ea2cbcav 6eee e6bbae 6eee 00006eee e2a4 e2a4 e2a4 e2a4 e2a4 e2a4 e2a4
+9986 e2a5 e2a5 e2a5 * * 4b4b 8ea2cbcb,8ea2cbcbv 6f2d e6bcad 6f2d 00006f2d e2a5 e2a5 e2a5 e2a5 e2a5 e2a5 e2a5
+9987 e2a6 e2a6 e2a6 * * 4b4c 8ea2cbcc,8ea2cbccv 6f40 e6bd80 6f40 00006f40 e2a6 e2a6 e2a6 e2a6 e2a6 e2a6 e2a6
+9988 e2a7 e2a7 e2a7 * * 4b4d 8ea2cbcd,8ea2cbcdv 6f30 e6bcb0 6f30 00006f30 e2a7 e2a7 e2a7 e2a7 e2a7 e2a7 e2a7
+9989 e2a8 e2a8 e2a8 * * 4b4e 8ea2cbce,8ea2cbcev 6f3c e6bcbc 6f3c 00006f3c e2a8 e2a8 e2a8 e2a8 e2a8 e2a8 e2a8
+9990 e2a9 e2a9 e2a9 * * 4b4f 8ea2cbcf,8ea2cbcfv 6f35 e6bcb5 6f35 00006f35 e2a9 e2a9 e2a9 e2a9 e2a9 e2a9 e2a9
+9991 e2aa e2aa e2aa * * 4b50 8ea2cbd0,8ea2cbd0v 6eeb e6bbab 6eeb 00006eeb e2aa e2aa e2aa e2aa e2aa e2aa e2aa
+9992 e2ab e2ab e2ab * * 4b51 8ea2cbd1,8ea2cbd1v 6f07 e6bc87 6f07 00006f07 e2ab e2ab e2ab e2ab e2ab e2ab e2ab
+9993 e2ac e2ac e2ac * * 4b52 8ea2cbd2,8ea2cbd2v 6f0e e6bc8e 6f0e 00006f0e e2ac e2ac e2ac e2ac e2ac e2ac e2ac
+9994 e2ad e2ad e2ad * * 4b53 8ea2cbd3,8ea2cbd3v 6f43 e6bd83 6f43 00006f43 e2ad e2ad e2ad e2ad e2ad e2ad e2ad
+9995 e2ae e2ae e2ae * * 4b54 8ea2cbd4,8ea2cbd4v 6f05 e6bc85 6f05 00006f05 e2ae e2ae e2ae e2ae e2ae e2ae e2ae
+9996 e2af e2af e2af * * 4b55 8ea2cbd5,8ea2cbd5v 6efd e6bbbd 6efd 00006efd e2af e2af e2af e2af e2af e2af e2af
+9997 e2b0 e2b0 e2b0 * * 4b56 8ea2cbd6,8ea2cbd6v 6ef6 e6bbb6 6ef6 00006ef6 e2b0 e2b0 e2b0 e2b0 e2b0 e2b0 e2b0
+9998 e2b1 e2b1 e2b1 * * 4b57 8ea2cbd7,8ea2cbd7v 6f39 e6bcb9 6f39 00006f39 e2b1 e2b1 e2b1 e2b1 e2b1 e2b1 e2b1
+9999 e2b2 e2b2 e2b2 * * 4b58 8ea2cbd8,8ea2cbd8v 6f1c e6bc9c 6f1c 00006f1c e2b2 e2b2 e2b2 e2b2 e2b2 e2b2 e2b2
+10000 e2b3 e2b3 e2b3 * * 4b59 8ea2cbd9,8ea2cbd9v 6efc e6bbbc 6efc 00006efc e2b3 e2b3 e2b3 e2b3 e2b3 e2b3 e2b3
+10001 e2b4 e2b4 e2b4 * * 4b5a 8ea2cbda,8ea2cbdav 6f3a e6bcba 6f3a 00006f3a e2b4 e2b4 e2b4 e2b4 e2b4 e2b4 e2b4
+10002 e2b5 e2b5 e2b5 * * 4b5b 8ea2cbdb,8ea2cbdbv 6f1f e6bc9f 6f1f 00006f1f e2b5 e2b5 e2b5 e2b5 e2b5 e2b5 e2b5
+10003 e2b6 e2b6 e2b6 * * 4b5c 8ea2cbdc,8ea2cbdcv 6f0d e6bc8d 6f0d 00006f0d e2b6 e2b6 e2b6 e2b6 e2b6 e2b6 e2b6
+10004 e2b7 e2b7 e2b7 * * 4b5d 8ea2cbdd,8ea2cbddv 6f1e e6bc9e 6f1e 00006f1e e2b7 e2b7 e2b7 e2b7 e2b7 e2b7 e2b7
+10005 e2b8 e2b8 e2b8 * * 4b5e 8ea2cbde,8ea2cbdev 6f08 e6bc88 6f08 00006f08 e2b8 e2b8 e2b8 e2b8 e2b8 e2b8 e2b8
+10006 e2b9 e2b9 e2b9 * * 4b5f 8ea2cbdf,8ea2cbdfv 6f21 e6bca1 6f21 00006f21 e2b9 e2b9 e2b9 e2b9 e2b9 e2b9 e2b9
+10007 e2ba e2ba e2ba * * 4b60 8ea2cbe0,8ea2cbe0v 7187 e78687 7187 00007187 e2ba e2ba e2ba e2ba e2ba e2ba e2ba
+10008 e2bb e2bb e2bb * * 4b61 8ea2cbe1,8ea2cbe1v 7190 e78690 7190 00007190 e2bb e2bb e2bb e2bb e2bb e2bb e2bb
+10009 e2bc e2bc e2bc * * 4b62 8ea2cbe2,8ea2cbe2v 7189 e78689 7189 00007189 e2bc e2bc e2bc e2bc e2bc e2bc e2bc
+10010 e2bd e2bd e2bd * * 4b63 8ea2cbe3,8ea2cbe3v 7180 e78680 7180 00007180 e2bd e2bd e2bd e2bd e2bd e2bd e2bd
+10011 e2be e2be e2be * * 4b64 8ea2cbe4,8ea2cbe4v 7185 e78685 7185 00007185 e2be e2be e2be e2be e2be e2be e2be
+10012 e2bf e2bf e2bf * * 4b65 8ea2cbe5,8ea2cbe5v 7182 e78682 7182 00007182 e2bf e2bf e2bf e2bf e2bf e2bf e2bf
+10013 e2c0 e2c0 e2c0 * * 4b66 8ea2cbe6,8ea2cbe6v 718f e7868f 718f 0000718f e2c0 e2c0 e2c0 e2c0 e2c0 e2c0 e2c0
+10014 e2c1 e2c1 e2c1 * * 4b67 8ea2cbe7,8ea2cbe7v 717b e785bb 717b 0000717b e2c1 e2c1 e2c1 e2c1 e2c1 e2c1 e2c1
+10015 e2c2 e2c2 e2c2 * * 4b68 8ea2cbe8,8ea2cbe8v 7186 e78686 7186 00007186 e2c2 e2c2 e2c2 e2c2 e2c2 e2c2 e2c2
+10016 e2c3 e2c3 e2c3 * * 4b69 8ea2cbe9,8ea2cbe9v 7181 e78681 7181 00007181 e2c3 e2c3 e2c3 e2c3 e2c3 e2c3 e2c3
+10017 e2c4 e2c4 e2c4 * * 4b6a 8ea2cbea,8ea2cbeav 7197 e78697 7197 00007197 e2c4 e2c4 e2c4 e2c4 e2c4 e2c4 e2c4
+10018 e2c5 e2c5 e2c5 * * 4b6b 8ea2cbeb,8ea2cbebv 7244 e78984 7244 00007244 e2c5 e2c5 e2c5 e2c5 e2c5 e2c5 e2c5
+10019 e2c6 e2c6 e2c6 * * 4b6c 8ea2cbec,8ea2cbecv 7253 e78993 7253 00007253 e2c6 e2c6 e2c6 e2c6 e2c6 e2c6 e2c6
+10020 e2c7 e2c7 e2c7 * * 4b6d 8ea2cbed,8ea2cbedv 7297 e78a97 7297 00007297 e2c7 e2c7 e2c7 e2c7 e2c7 e2c7 e2c7
+10021 e2c8 e2c8 e2c8 * * 4b6e 8ea2cbee,8ea2cbeev 7295 e78a95 7295 00007295 e2c8 e2c8 e2c8 e2c8 e2c8 e2c8 e2c8
+10022 e2c9 e2c9 e2c9 * * 4b6f 8ea2cbef,8ea2cbefv 7293 e78a93 7293 00007293 e2c9 e2c9 e2c9 e2c9 e2c9 e2c9 e2c9
+10023 e2ca e2ca e2ca * * 4b70 8ea2cbf0,8ea2cbf0v 7343 e78d83 7343 00007343 e2ca e2ca e2ca e2ca e2ca e2ca e2ca
+10024 e2cb e2cb e2cb * * 4b71 8ea2cbf1,8ea2cbf1v 734d e78d8d 734d 0000734d e2cb e2cb e2cb e2cb e2cb e2cb e2cb
+10025 e2cc e2cc e2cc * * 4b72 8ea2cbf2,8ea2cbf2v 7351 e78d91 7351 00007351 e2cc e2cc e2cc e2cc e2cc e2cc e2cc
+10026 e2cd e2cd e2cd * * 4b73 8ea2cbf3,8ea2cbf3v 734c e78d8c 734c 0000734c e2cd e2cd e2cd e2cd e2cd e2cd e2cd
+10027 e2ce e2ce e2ce * * 4b74 8ea2cbf4,8ea2cbf4v 7462 e791a2 7462 00007462 e2ce e2ce e2ce e2ce e2ce e2ce e2ce
+10028 e2cf e2cf e2cf * * 4b75 8ea2cbf5,8ea2cbf5v 7473 e791b3 7473 00007473 e2cf e2cf e2cf e2cf e2cf e2cf e2cf
+10029 e2d0 e2d0 e2d0 * * 4b76 8ea2cbf6,8ea2cbf6v 7471 e791b1 7471 00007471 e2d0 e2d0 e2d0 e2d0 e2d0 e2d0 e2d0
+10030 e2d1 e2d1 e2d1 * * 4b77 8ea2cbf7,8ea2cbf7v 7475 e791b5 7475 00007475 e2d1 e2d1 e2d1 e2d1 e2d1 e2d1 e2d1
+10031 e2d2 e2d2 e2d2 * * 4b78 8ea2cbf8,8ea2cbf8v 7472 e791b2 7472 00007472 e2d2 e2d2 e2d2 e2d2 e2d2 e2d2 e2d2
+10032 e2d3 e2d3 e2d3 * * 4b79 8ea2cbf9,8ea2cbf9v 7467 e791a7 7467 00007467 e2d3 e2d3 e2d3 e2d3 e2d3 e2d3 e2d3
+10033 e2d4 e2d4 e2d4 * * 4b7a 8ea2cbfa,8ea2cbfav 746e e791ae 746e 0000746e e2d4 e2d4 e2d4 e2d4 e2d4 e2d4 e2d4
+10034 e2d5 e2d5 e2d5 * * 4b7b 8ea2cbfb,8ea2cbfbv 7500 e79480 7500 00007500 e2d5 e2d5 e2d5 e2d5 e2d5 e2d5 e2d5
+10035 e2d6 e2d6 e2d6 * * 4b7c 8ea2cbfc,8ea2cbfcv 7502 e79482 7502 00007502 e2d6 e2d6 e2d6 e2d6 e2d6 e2d6 e2d6
+10036 e2d7 e2d7 e2d7 * * 4b7d 8ea2cbfd,8ea2cbfdv 7503 e79483 7503 00007503 e2d7 e2d7 e2d7 e2d7 e2d7 e2d7 e2d7
+10037 e2d8 e2d8 e2d8 * * 4b7e 8ea2cbfe,8ea2cbfev 757d e795bd 757d 0000757d e2d8 e2d8 e2d8 e2d8 e2d8 e2d8 e2d8
+10038 e2d9 e2d9 e2d9 * * 4c21 8ea2cca1,8ea2cca1v 7590 e79690 7590 00007590 e2d9 e2d9 e2d9 e2d9 e2d9 e2d9 e2d9
+10039 e2da e2da e2da * * 4c22 8ea2cca2,8ea2cca2v 7616 e79896 7616 00007616 e2da e2da e2da e2da e2da e2da e2da
+10040 e2db e2db e2db * * 4c23 8ea2cca3,8ea2cca3v 7608 e79888 7608 00007608 e2db e2db e2db e2db e2db e2db e2db
+10041 e2dc e2dc e2dc * * 4c24 8ea2cca4,8ea2cca4v 760c e7988c 760c 0000760c e2dc e2dc e2dc e2dc e2dc e2dc e2dc
+10042 e2dd e2dd e2dd * * 4c25 8ea2cca5,8ea2cca5v 7615 e79895 7615 00007615 e2dd e2dd e2dd e2dd e2dd e2dd e2dd
+10043 e2de e2de e2de * * 4c26 8ea2cca6,8ea2cca6v 7611 e79891 7611 00007611 e2de e2de e2de e2de e2de e2de e2de
+10044 e2df e2df e2df * * 4c27 8ea2cca7,8ea2cca7v 760a e7988a 760a 0000760a e2df e2df e2df e2df e2df e2df e2df
+10045 e2e0 e2e0 e2e0 * * 4c28 8ea2cca8,8ea2cca8v 7614 e79894 7614 00007614 e2e0 e2e0 e2e0 e2e0 e2e0 e2e0 e2e0
+10046 e2e1 e2e1 e2e1 * * 4c29 8ea2cca9,8ea2cca9v 76b8 e79ab8 76b8 000076b8 e2e1 e2e1 e2e1 e2e1 e2e1 e2e1 e2e1
+10047 e2e2 e2e2 e2e2 * * 4c2a 8ea2ccaa,8ea2ccaav 7781 e79e81 7781 00007781 e2e2 e2e2 e2e2 e2e2 e2e2 e2e2 e2e2
+10048 e2e3 e2e3 e2e3 * * 4c2b 8ea2ccab,8ea2ccabv 777c e79dbc 777c 0000777c e2e3 e2e3 e2e3 e2e3 e2e3 e2e3 e2e3
+10049 e2e4 e2e4 e2e4 * * 4c2c 8ea2ccac,8ea2ccacv 7785 e79e85 7785 00007785 e2e4 e2e4 e2e4 e2e4 e2e4 e2e4 e2e4
+10050 e2e5 e2e5 e2e5 * * 4c2d 8ea2ccad,8ea2ccadv 7782 e79e82 7782 00007782 e2e5 e2e5 e2e5 e2e5 e2e5 e2e5 e2e5
+10051 e2e6 e2e6 e2e6 * * 4c2e 8ea2ccae,8ea2ccaev 776e e79dae 776e 0000776e e2e6 e2e6 e2e6 e2e6 e2e6 e2e6 e2e6
+10052 e2e7 e2e7 e2e7 * * 4c2f 8ea2ccaf,8ea2ccafv 7780 e79e80 7780 00007780 e2e7 e2e7 e2e7 e2e7 e2e7 e2e7 e2e7
+10053 e2e8 e2e8 e2e8 * * 4c30 8ea2ccb0,8ea2ccb0v 776f e79daf 776f 0000776f e2e8 e2e8 e2e8 e2e8 e2e8 e2e8 e2e8
+10054 e2e9 e2e9 e2e9 * * 4c31 8ea2ccb1,8ea2ccb1v 777e e79dbe 777e 0000777e e2e9 e2e9 e2e9 e2e9 e2e9 e2e9 e2e9
+10055 e2ea e2ea e2ea * * 4c32 8ea2ccb2,8ea2ccb2v 7783 e79e83 7783 00007783 e2ea e2ea e2ea e2ea e2ea e2ea e2ea
+10056 e2eb e2eb e2eb * * 4c33 8ea2ccb3,8ea2ccb3v 78b2 e7a2b2 78b2 000078b2 e2eb e2eb e2eb e2eb e2eb e2eb e2eb
+10057 e2ec e2ec e2ec * * 4c34 8ea2ccb4,8ea2ccb4v 78aa e7a2aa 78aa 000078aa e2ec e2ec e2ec e2ec e2ec e2ec e2ec
+10058 e2ed e2ed e2ed * * 4c35 8ea2ccb5,8ea2ccb5v 78b4 e7a2b4 78b4 000078b4 e2ed e2ed e2ed e2ed e2ed e2ed e2ed
+10059 e2ee e2ee e2ee * * 4c36 8ea2ccb6,8ea2ccb6v 78ad e7a2ad 78ad 000078ad e2ee e2ee e2ee e2ee e2ee e2ee e2ee
+10060 e2ef e2ef e2ef * * 4c37 8ea2ccb7,8ea2ccb7v 78a8 e7a2a8 78a8 000078a8 e2ef e2ef e2ef e2ef e2ef e2ef e2ef
+10061 e2f0 e2f0 e2f0 * * 4c38 8ea2ccb8,8ea2ccb8v 787e e7a1be 787e 0000787e e2f0 e2f0 e2f0 e2f0 e2f0 e2f0 e2f0
+10062 e2f1 e2f1 e2f1 * * 4c39 8ea2ccb9,8ea2ccb9v 78ab e7a2ab 78ab 000078ab e2f1 e2f1 e2f1 e2f1 e2f1 e2f1 e2f1
+10063 e2f2 e2f2 e2f2 * * 4c3a 8ea2ccba,8ea2ccbav 789e e7a29e 789e 0000789e e2f2 e2f2 e2f2 e2f2 e2f2 e2f2 e2f2
+10064 e2f3 e2f3 e2f3 * * 4c3b 8ea2ccbb,8ea2ccbbv 78a5 e7a2a5 78a5 000078a5 e2f3 e2f3 e2f3 e2f3 e2f3 e2f3 e2f3
+10065 e2f4 e2f4 e2f4 * * 4c3c 8ea2ccbc,8ea2ccbcv 78a0 e7a2a0 78a0 000078a0 e2f4 e2f4 e2f4 e2f4 e2f4 e2f4 e2f4
+10066 e2f5 e2f5 e2f5 * * 4c3d 8ea2ccbd,8ea2ccbdv 78ac e7a2ac 78ac 000078ac e2f5 e2f5 e2f5 e2f5 e2f5 e2f5 e2f5
+10067 e2f6 e2f6 e2f6 * * 4c3e 8ea2ccbe,8ea2ccbev 78a2 e7a2a2 78a2 000078a2 e2f6 e2f6 e2f6 e2f6 e2f6 e2f6 e2f6
+10068 e2f7 e2f7 e2f7 * * 4c3f 8ea2ccbf,8ea2ccbfv 78a4 e7a2a4 78a4 000078a4 e2f7 e2f7 e2f7 e2f7 e2f7 e2f7 e2f7
+10069 e2f8 e2f8 e2f8 * * 4c40 8ea2ccc0,8ea2ccc0v 7998 e7a698 7998 00007998 e2f8 e2f8 e2f8 e2f8 e2f8 e2f8 e2f8
+10070 e2f9 e2f9 e2f9 * * 4c41 8ea2ccc1,8ea2ccc1v 798a e7a68a 798a 0000798a e2f9 e2f9 e2f9 e2f9 e2f9 e2f9 e2f9
+10071 e2fa e2fa e2fa * * 4c42 8ea2ccc2,8ea2ccc2v 798b e7a68b 798b 0000798b e2fa e2fa e2fa e2fa e2fa e2fa e2fa
+10072 e2fb e2fb e2fb * * 4c43 8ea2ccc3,8ea2ccc3v 7996 e7a696 7996 00007996 e2fb e2fb e2fb e2fb e2fb e2fb e2fb
+10073 e2fc e2fc e2fc * * 4c44 8ea2ccc4,8ea2ccc4v 7995 e7a695 7995 00007995 e2fc e2fc e2fc e2fc e2fc e2fc e2fc
+10074 e2fd e2fd e2fd * * 4c45 8ea2ccc5,8ea2ccc5v 7994 e7a694 7994 00007994 e2fd e2fd e2fd e2fd e2fd e2fd e2fd
+10075 e2fe e2fe e2fe * * 4c46 8ea2ccc6,8ea2ccc6v 7993 e7a693 7993 00007993 e2fe e2fe e2fe e2fe e2fe e2fe e2fe
+10076 e340 e340 e340 * * 4c47 8ea2ccc7,8ea2ccc7v 7997 e7a697 7997 00007997 e340 e340 e340 e340 e340 e340 e340
+10077 e341 e341 e341 * * 4c48 8ea2ccc8,8ea2ccc8v 7988 e7a688 7988 00007988 e341 e341 e341 e341 e341 e341 e341
+10078 e342 e342 e342 * * 4c49 8ea2ccc9,8ea2ccc9v 7992 e7a692 7992 00007992 e342 e342 e342 e342 e342 e342 e342
+10079 e343 e343 e343 * * 4c4a 8ea2ccca,8ea2cccav 7990 e7a690 7990 00007990 e343 e343 e343 e343 e343 e343 e343
+10080 e344 e344 e344 * * 4c4b 8ea2cccb,8ea2cccbv 7a2b e7a8ab 7a2b 00007a2b e344 e344 e344 e344 e344 e344 e344
+10081 e345 e345 e345 * * 4c4c 8ea2cccc,8ea2ccccv 7a4a e7a98a 7a4a 00007a4a e345 e345 e345 e345 e345 e345 e345
+10082 e346 e346 e346 * * 4c4d 8ea2cccd,8ea2cccdv 7a30 e7a8b0 7a30 00007a30 e346 e346 e346 e346 e346 e346 e346
+10083 e347 e347 e347 * * 4c4e 8ea2ccce,8ea2cccev 7a2f e7a8af 7a2f 00007a2f e347 e347 e347 e347 e347 e347 e347
+10084 e348 e348 e348 * * 4c4f 8ea2cccf,8ea2cccfv 7a28 e7a8a8 7a28 00007a28 e348 e348 e348 e348 e348 e348 e348
+10085 e349 e349 e349 * * 4c50 8ea2ccd0,8ea2ccd0v 7a26 e7a8a6 7a26 00007a26 e349 e349 e349 e349 e349 e349 e349
+10086 e34a e34a e34a * * 4c51 8ea2ccd1,8ea2ccd1v 7aa8 e7aaa8 7aa8 00007aa8 e34a e34a e34a e34a e34a e34a e34a
+10087 e34b e34b e34b * * 4c52 8ea2ccd2,8ea2ccd2v 7aab e7aaab 7aab 00007aab e34b e34b e34b e34b e34b e34b e34b
+10088 e34c e34c e34c * * 4c53 8ea2ccd3,8ea2ccd3v 7aac e7aaac 7aac 00007aac e34c e34c e34c e34c e34c e34c e34c
+10089 e34d e34d e34d * * 4c54 8ea2ccd4,8ea2ccd4v 7aee e7abae 7aee 00007aee e34d e34d e34d e34d e34d e34d e34d
+10090 e34e e34e e34e * * 4c55 8ea2ccd5,8ea2ccd5v 7b88 e7ae88 7b88 00007b88 e34e e34e e34e e34e e34e e34e e34e
+10091 e34f e34f e34f * * 4c56 8ea2ccd6,8ea2ccd6v 7b9c e7ae9c 7b9c 00007b9c e34f e34f e34f e34f e34f e34f e34f
+10092 e350 e350 e350 * * 4c57 8ea2ccd7,8ea2ccd7v 7b8a e7ae8a 7b8a 00007b8a e350 e350 e350 e350 e350 e350 e350
+10093 e351 e351 e351 * * 4c58 8ea2ccd8,8ea2ccd8v 7b91 e7ae91 7b91 00007b91 e351 e351 e351 e351 e351 e351 e351
+10094 e352 e352 e352 * * 4c59 8ea2ccd9,8ea2ccd9v 7b90 e7ae90 7b90 00007b90 e352 e352 e352 e352 e352 e352 e352
+10095 e353 e353 e353 * * 4c5a 8ea2ccda,8ea2ccdav 7b96 e7ae96 7b96 00007b96 e353 e353 e353 e353 e353 e353 e353
+10096 e354 e354 e354 * * 4c5b 8ea2ccdb,8ea2ccdbv 7b8d e7ae8d 7b8d 00007b8d e354 e354 e354 e354 e354 e354 e354
+10097 e355 e355 e355 * * 4c5c 8ea2ccdc,8ea2ccdcv 7b8c e7ae8c 7b8c 00007b8c e355 e355 e355 e355 e355 e355 e355
+10098 e356 e356 e356 * * 4c5d 8ea2ccdd,8ea2ccddv 7b9b e7ae9b 7b9b 00007b9b e356 e356 e356 e356 e356 e356 e356
+10099 e357 e357 e357 * * 4c5e 8ea2ccde,8ea2ccdev 7b8e e7ae8e 7b8e 00007b8e e357 e357 e357 e357 e357 e357 e357
+10100 e358 e358 e358 * * 4c5f 8ea2ccdf,8ea2ccdfv 7b85 e7ae85 7b85 00007b85 e358 e358 e358 e358 e358 e358 e358
+10101 e359 e359 e359 * * 4c60 8ea2cce0,8ea2cce0v 7b98 e7ae98 7b98 00007b98 e359 e359 e359 e359 e359 e359 e359
+10102 e35a e35a e35a * * 4c61 8ea2cce1,8ea2cce1v 5284 e58a84 5284 00005284 e35a e35a e35a e35a e35a e35a e35a
+10103 e35b e35b e35b * * 4c62 8ea2cce2,8ea2cce2v 7b99 e7ae99 7b99 00007b99 e35b e35b e35b e35b e35b e35b e35b
+10104 e35c e35c e35c * * 4c63 8ea2cce3,8ea2cce3v 7ba4 e7aea4 7ba4 00007ba4 e35c e35c e35c e35c e35c e35c e35c
+10105 e35d e35d e35d * * 4c64 8ea2cce4,8ea2cce4v 7b82 e7ae82 7b82 00007b82 e35d e35d e35d e35d e35d e35d e35d
+10106 e35e e35e e35e * * 4c65 8ea2cce5,8ea2cce5v 7cbb e7b2bb 7cbb 00007cbb e35e e35e e35e e35e e35e e35e e35e
+10107 e35f e35f e35f * * 4c66 8ea2cce6,8ea2cce6v 7cbf e7b2bf 7cbf 00007cbf e35f e35f e35f e35f e35f e35f e35f
+10108 e360 e360 e360 * * 4c67 8ea2cce7,8ea2cce7v 7cbc e7b2bc 7cbc 00007cbc e360 e360 e360 e360 e360 e360 e360
+10109 e361 e361 e361 * * 4c68 8ea2cce8,8ea2cce8v 7cba e7b2ba 7cba 00007cba e361 e361 e361 e361 e361 e361 e361
+10110 e362 e362 e362 * * 4c69 8ea2cce9,8ea2cce9v 7da7 e7b6a7 7da7 00007da7 e362 e362 e362 e362 e362 e362 e362
+10111 e363 e363 e363 * * 4c6a 8ea2ccea,8ea2cceav 7db7 e7b6b7 7db7 00007db7 e363 e363 e363 e363 e363 e363 e363
+10112 e364 e364 e364 * * 4c6b 8ea2cceb,8ea2ccebv 7dc2 e7b782 7dc2 00007dc2 e364 e364 e364 e364 e364 e364 e364
+10113 e365 e365 e365 * * 4c6c 8ea2ccec,8ea2ccecv 7da3 e7b6a3 7da3 00007da3 e365 e365 e365 e365 e365 e365 e365
+10114 e366 e366 e366 * * 4c6d 8ea2cced,8ea2ccedv 7daa e7b6aa 7daa 00007daa e366 e366 e366 e366 e366 e366 e366
+10115 e367 e367 e367 * * 4c6e 8ea2ccee,8ea2cceev 7dc1 e7b781 7dc1 00007dc1 e367 e367 e367 e367 e367 e367 e367
+10116 e368 e368 e368 * * 4c6f 8ea2ccef,8ea2ccefv 7dc0 e7b780 7dc0 00007dc0 e368 e368 e368 e368 e368 e368 e368
+10117 e369 e369 e369 * * 4c70 8ea2ccf0,8ea2ccf0v 7dc5 e7b785 7dc5 00007dc5 e369 e369 e369 e369 e369 e369 e369
+10118 e36a e36a e36a * * 4c71 8ea2ccf1,8ea2ccf1v 7d9d e7b69d 7d9d 00007d9d e36a e36a e36a e36a e36a e36a e36a
+10119 e36b e36b e36b * * 4c72 8ea2ccf2,8ea2ccf2v 7dce e7b78e 7dce 00007dce e36b e36b e36b e36b e36b e36b e36b
+10120 e36c e36c e36c * * 4c73 8ea2ccf3,8ea2ccf3v 7dc4 e7b784 7dc4 00007dc4 e36c e36c e36c e36c e36c e36c e36c
+10121 e36d e36d e36d * * 4c74 8ea2ccf4,8ea2ccf4v 7dc6 e7b786 7dc6 00007dc6 e36d e36d e36d e36d e36d e36d e36d
+10122 e36e e36e e36e * * 4c75 8ea2ccf5,8ea2ccf5v 7dcb e7b78b 7dcb 00007dcb e36e e36e e36e e36e e36e e36e e36e
+10123 e36f e36f e36f * * 4c76 8ea2ccf6,8ea2ccf6v 7dcc e7b78c 7dcc 00007dcc e36f e36f e36f e36f e36f e36f e36f
+10124 e370 e370 e370 * * 4c77 8ea2ccf7,8ea2ccf7v 7daf e7b6af 7daf 00007daf e370 e370 e370 e370 e370 e370 e370
+10125 e371 e371 e371 * * 4c78 8ea2ccf8,8ea2ccf8v 7db9 e7b6b9 7db9 00007db9 e371 e371 e371 e371 e371 e371 e371
+10126 e372 e372 e372 * * 4c79 8ea2ccf9,8ea2ccf9v 7d96 e7b696 7d96 00007d96 e372 e372 e372 e372 e372 e372 e372
+10127 e373 e373 e373 * * 4c7a 8ea2ccfa,8ea2ccfav 7dbc e7b6bc 7dbc 00007dbc e373 e373 e373 e373 e373 e373 e373
+10128 e374 e374 e374 * * 4c7b 8ea2ccfb,8ea2ccfbv 7d9f e7b69f 7d9f 00007d9f e374 e374 e374 e374 e374 e374 e374
+10129 e375 e375 e375 * * 4c7c 8ea2ccfc,8ea2ccfcv 7da6 e7b6a6 7da6 00007da6 e375 e375 e375 e375 e375 e375 e375
+10130 e376 e376 e376 * * 4c7d 8ea2ccfd,8ea2ccfdv 7dae e7b6ae 7dae 00007dae e376 e376 e376 e376 e376 e376 e376
+10131 e377 e377 e377 * * 4c7e 8ea2ccfe,8ea2ccfev 7da9 e7b6a9 7da9 00007da9 e377 e377 e377 e377 e377 e377 e377
+10132 e378 e378 e378 * * 4d21 8ea2cda1,8ea2cda1v 7da1 e7b6a1 7da1 00007da1 e378 e378 e378 e378 e378 e378 e378
+10133 e379 e379 e379 * * 4d22 8ea2cda2,8ea2cda2v 7dc9 e7b789 7dc9 00007dc9 e379 e379 e379 e379 e379 e379 e379
+10134 e37a e37a e37a * * 4d23 8ea2cda3,8ea2cda3v 7f73 e7bdb3 7f73 00007f73 e37a e37a e37a e37a e37a e37a e37a
+10135 e37b e37b e37b * * 4d24 8ea2cda4,8ea2cda4v 7fe2 e7bfa2 7fe2 00007fe2 e37b e37b e37b e37b e37b e37b e37b
+10136 e37c e37c e37c * * 4d25 8ea2cda5,8ea2cda5v 7fe3 e7bfa3 7fe3 00007fe3 e37c e37c e37c e37c e37c e37c e37c
+10137 e37d e37d e37d * * 4d26 8ea2cda6,8ea2cda6v 7fe5 e7bfa5 7fe5 00007fe5 e37d e37d e37d e37d e37d e37d e37d
+10138 e37e e37e e37e * * 4d27 8ea2cda7,8ea2cda7v 7fde e7bf9e 7fde 00007fde e37e e37e e37e e37e e37e e37e e37e
+10139 e3a1 e3a1 e3a1 * * 4d28 8ea2cda8,8ea2cda8v 8024 e880a4 8024 00008024 e3a1 e3a1 e3a1 e3a1 e3a1 e3a1 e3a1
+10140 e3a2 e3a2 e3a2 * * 4d29 8ea2cda9,8ea2cda9v 805d e8819d 805d 0000805d e3a2 e3a2 e3a2 e3a2 e3a2 e3a2 e3a2
+10141 e3a3 e3a3 e3a3 * * 4d2a 8ea2cdaa,8ea2cdaav 805c e8819c 805c 0000805c e3a3 e3a3 e3a3 e3a3 e3a3 e3a3 e3a3
+10142 e3a4 e3a4 e3a4 * * 4d2b 8ea2cdab,8ea2cdabv 8189 e88689 8189 00008189 e3a4 e3a4 e3a4 e3a4 e3a4 e3a4 e3a4
+10143 e3a5 e3a5 e3a5 * * 4d2c 8ea2cdac,8ea2cdacv 8186 e88686 8186 00008186 e3a5 e3a5 e3a5 e3a5 e3a5 e3a5 e3a5
+10144 e3a6 e3a6 e3a6 * * 4d2d 8ea2cdad,8ea2cdadv 8183 e88683 8183 00008183 e3a6 e3a6 e3a6 e3a6 e3a6 e3a6 e3a6
+10145 e3a7 e3a7 e3a7 * * 4d2e 8ea2cdae,8ea2cdaev 8187 e88687 8187 00008187 e3a7 e3a7 e3a7 e3a7 e3a7 e3a7 e3a7
+10146 e3a8 e3a8 e3a8 * * 4d2f 8ea2cdaf,8ea2cdafv 818d e8868d 818d 0000818d e3a8 e3a8 e3a8 e3a8 e3a8 e3a8 e3a8
+10147 e3a9 e3a9 e3a9 * * 4d30 8ea2cdb0,8ea2cdb0v 818c e8868c 818c 0000818c e3a9 e3a9 e3a9 e3a9 e3a9 e3a9 e3a9
+10148 e3aa e3aa e3aa * * 4d31 8ea2cdb1,8ea2cdb1v 818b e8868b 818b 0000818b e3aa e3aa e3aa e3aa e3aa e3aa e3aa
+10149 e3ab e3ab e3ab * * 4d32 8ea2cdb2,8ea2cdb2v 8215 e88895 8215 00008215 e3ab e3ab e3ab e3ab e3ab e3ab e3ab
+10150 e3ac e3ac e3ac * * 4d33 8ea2cdb3,8ea2cdb3v 8497 e89297 8497 00008497 e3ac e3ac e3ac e3ac e3ac e3ac e3ac
+10151 e3ad e3ad e3ad * * 4d34 8ea2cdb4,8ea2cdb4v 84a4 e892a4 84a4 000084a4 e3ad e3ad e3ad e3ad e3ad e3ad e3ad
+10152 e3ae e3ae e3ae * * 4d35 8ea2cdb5,8ea2cdb5v 84a1 e892a1 84a1 000084a1 e3ae e3ae e3ae e3ae e3ae e3ae e3ae
+10153 e3af e3af e3af * * 4d36 8ea2cdb6,8ea2cdb6v 849f e8929f 849f 0000849f e3af e3af e3af e3af e3af e3af e3af
+10154 e3b0 e3b0 e3b0 * * 4d37 8ea2cdb7,8ea2cdb7v 84ba e892ba 84ba 000084ba e3b0 e3b0 e3b0 e3b0 e3b0 e3b0 e3b0
+10155 e3b1 e3b1 e3b1 * * 4d38 8ea2cdb8,8ea2cdb8v 84ce e8938e 84ce 000084ce e3b1 e3b1 e3b1 e3b1 e3b1 e3b1 e3b1
+10156 e3b2 e3b2 e3b2 * * 4d39 8ea2cdb9,8ea2cdb9v 84c2 e89382 84c2 000084c2 e3b2 e3b2 e3b2 e3b2 e3b2 e3b2 e3b2
+10157 e3b3 e3b3 e3b3 * * 4d3a 8ea2cdba,8ea2cdbav 84ac e892ac 84ac 000084ac e3b3 e3b3 e3b3 e3b3 e3b3 e3b3 e3b3
+10158 e3b4 e3b4 e3b4 * * 4d3b 8ea2cdbb,8ea2cdbbv 84ae e892ae 84ae 000084ae e3b4 e3b4 e3b4 e3b4 e3b4 e3b4 e3b4
+10159 e3b5 e3b5 e3b5 * * 4d3c 8ea2cdbc,8ea2cdbcv 84ab e892ab 84ab 000084ab e3b5 e3b5 e3b5 e3b5 e3b5 e3b5 e3b5
+10160 e3b6 e3b6 e3b6 * * 4d3d 8ea2cdbd,8ea2cdbdv 84b9 e892b9 84b9 000084b9 e3b6 e3b6 e3b6 e3b6 e3b6 e3b6 e3b6
+10161 e3b7 e3b7 e3b7 * * 4d3e 8ea2cdbe,8ea2cdbev 84b4 e892b4 84b4 000084b4 e3b7 e3b7 e3b7 e3b7 e3b7 e3b7 e3b7
+10162 e3b8 e3b8 e3b8 * * 4d3f 8ea2cdbf,8ea2cdbfv 84c1 e89381 84c1 000084c1 e3b8 e3b8 e3b8 e3b8 e3b8 e3b8 e3b8
+10163 e3b9 e3b9 e3b9 * * 4d40 8ea2cdc0,8ea2cdc0v 84cd e8938d 84cd 000084cd e3b9 e3b9 e3b9 e3b9 e3b9 e3b9 e3b9
+10164 e3ba e3ba e3ba * * 4d41 8ea2cdc1,8ea2cdc1v 84aa e892aa 84aa 000084aa e3ba e3ba e3ba e3ba e3ba e3ba e3ba
+10165 e3bb e3bb e3bb * * 4d42 8ea2cdc2,8ea2cdc2v 849a e8929a 849a 0000849a e3bb e3bb e3bb e3bb e3bb e3bb e3bb
+10166 e3bc e3bc e3bc * * 4d43 8ea2cdc3,8ea2cdc3v 84b1 e892b1 84b1 000084b1 e3bc e3bc e3bc e3bc e3bc e3bc e3bc
+10167 e3bd e3bd e3bd * * 4d44 8ea2cdc4,8ea2cdc4v 84d0 e89390 84d0 000084d0 e3bd e3bd e3bd e3bd e3bd e3bd e3bd
+10168 e3be e3be e3be * * 4d45 8ea2cdc5,8ea2cdc5v 849d e8929d 849d 0000849d e3be e3be e3be e3be e3be e3be e3be
+10169 e3bf e3bf e3bf * * 4d46 8ea2cdc6,8ea2cdc6v 84a7 e892a7 84a7 000084a7 e3bf e3bf e3bf e3bf e3bf e3bf e3bf
+10170 e3c0 e3c0 e3c0 * * 4d47 8ea2cdc7,8ea2cdc7v 84bb e892bb 84bb 000084bb e3c0 e3c0 e3c0 e3c0 e3c0 e3c0 e3c0
+10171 e3c1 e3c1 e3c1 * * 4d48 8ea2cdc8,8ea2cdc8v 84a2 e892a2 84a2 000084a2 e3c1 e3c1 e3c1 e3c1 e3c1 e3c1 e3c1
+10172 e3c2 e3c2 e3c2 * * 4d49 8ea2cdc9,8ea2cdc9v 8494 e89294 8494 00008494 e3c2 e3c2 e3c2 e3c2 e3c2 e3c2 e3c2
+10173 e3c3 e3c3 e3c3 * * 4d4a 8ea2cdca,8ea2cdcav 84c7 e89387 84c7 000084c7 e3c3 e3c3 e3c3 e3c3 e3c3 e3c3 e3c3
+10174 e3c4 e3c4 e3c4 * * 4d4b 8ea2cdcb,8ea2cdcbv 84cc e8938c 84cc 000084cc e3c4 e3c4 e3c4 e3c4 e3c4 e3c4 e3c4
+10175 e3c5 e3c5 e3c5 * * 4d4c 8ea2cdcc,8ea2cdccv 849b e8929b 849b 0000849b e3c5 e3c5 e3c5 e3c5 e3c5 e3c5 e3c5
+10176 e3c6 e3c6 e3c6 * * 4d4d 8ea2cdcd,8ea2cdcdv 84a9 e892a9 84a9 000084a9 e3c6 e3c6 e3c6 e3c6 e3c6 e3c6 e3c6
+10177 e3c7 e3c7 e3c7 * * 4d4e 8ea2cdce,8ea2cdcev 84af e892af 84af 000084af e3c7 e3c7 e3c7 e3c7 e3c7 e3c7 e3c7
+10178 e3c8 e3c8 e3c8 * * 4d4f 8ea2cdcf,8ea2cdcfv 84a8 e892a8,ee8f97 84a8,e3d7 000084a8,0000e3d7 8f69,e3c8 e3c8 e3c8 e3c8 e3c8 e3c8 8f69,e3c8
+10179 e3c9 e3c9 e3c9 * * 4d50 8ea2cdd0,8ea2cdd0v 84d6 e89396 84d6 000084d6 e3c9 e3c9 e3c9 e3c9 e3c9 e3c9 e3c9
+10180 e3ca e3ca e3ca * * 4d51 8ea2cdd1,8ea2cdd1v 8498 e89298 8498 00008498 e3ca e3ca e3ca e3ca e3ca e3ca e3ca
+10181 e3cb e3cb e3cb * * 4d52 8ea2cdd2,8ea2cdd2v 84b6 e892b6 84b6 000084b6 e3cb e3cb e3cb e3cb e3cb e3cb e3cb
+10182 e3cc e3cc e3cc * * 4d53 8ea2cdd3,8ea2cdd3v 84cf e8938f 84cf 000084cf e3cc e3cc e3cc e3cc e3cc e3cc e3cc
+10183 e3cd e3cd e3cd * * 4d54 8ea2cdd4,8ea2cdd4v 84a0 e892a0 84a0 000084a0 e3cd e3cd e3cd e3cd e3cd e3cd e3cd
+10184 e3ce e3ce e3ce * * 4d55 8ea2cdd5,8ea2cdd5v 84d7 e89397 84d7 000084d7 e3ce e3ce e3ce e3ce e3ce e3ce e3ce
+10185 e3cf e3cf e3cf * * 4d56 8ea2cdd6,8ea2cdd6v 84d4 e89394 84d4 000084d4 e3cf e3cf e3cf e3cf e3cf e3cf e3cf
+10186 e3d0 e3d0 e3d0 * * 4d57 8ea2cdd7,8ea2cdd7v 84d2 e89392 84d2 000084d2 e3d0 e3d0 e3d0 e3d0 e3d0 e3d0 e3d0
+10187 e3d1 e3d1 e3d1 * * 4d58 8ea2cdd8,8ea2cdd8v 84db e8939b 84db 000084db e3d1 e3d1 e3d1 e3d1 e3d1 e3d1 e3d1
+10188 e3d2 e3d2 e3d2 * * 4d59 8ea2cdd9,8ea2cdd9v 84b0 e892b0 84b0 000084b0 e3d2 e3d2 e3d2 e3d2 e3d2 e3d2 e3d2
+10189 e3d3 e3d3 e3d3 * * 4d5a 8ea2cdda,8ea2cddav 8491 e89291 8491 00008491 e3d3 e3d3 e3d3 e3d3 e3d3 e3d3 e3d3
+10190 e3d4 e3d4 e3d4 * * 4d5b 8ea2cddb,8ea2cddbv 8661 e899a1 8661 00008661 e3d4 e3d4 e3d4 e3d4 e3d4 e3d4 e3d4
+10191 e3d5 e3d5 e3d5 * * 4d5c 8ea2cddc,8ea2cddcv 8733 e89cb3 8733 00008733 e3d5 e3d5 e3d5 e3d5 e3d5 e3d5 e3d5
+10192 e3d6 e3d6 e3d6 * * 4d5d 8ea2cddd,8ea2cdddv 8723 e89ca3 8723 00008723 e3d6 e3d6 e3d6 e3d6 e3d6 e3d6 e3d6
+10193 e3d7 e3d7 e3d7 * * 4d5e 8ea2cdde,8ea2cddev 8728 e89ca8 8728 00008728 e3d7 e3d7 e3d7 e3d7 e3d7 e3d7 e3d7
+10194 e3d8 e3d8 e3d8 * * 4d5f 8ea2cddf,8ea2cddfv 876b e89dab 876b 0000876b e3d8 e3d8 e3d8 e3d8 e3d8 e3d8 e3d8
+10195 e3d9 e3d9 e3d9 * * 4d60 8ea2cde0,8ea2cde0v 8740 e89d80 8740 00008740 e3d9 e3d9 e3d9 e3d9 e3d9 e3d9 e3d9
+10196 e3da e3da e3da * * 4d61 8ea2cde1,8ea2cde1v 872e e89cae 872e 0000872e e3da e3da e3da e3da e3da e3da e3da
+10197 e3db e3db e3db * * 4d62 8ea2cde2,8ea2cde2v 871e e89c9e 871e 0000871e e3db e3db e3db e3db e3db e3db e3db
+10198 e3dc e3dc e3dc * * 4d63 8ea2cde3,8ea2cde3v 8721 e89ca1 8721 00008721 e3dc e3dc e3dc e3dc e3dc e3dc e3dc
+10199 e3dd e3dd e3dd * * 4d64 8ea2cde4,8ea2cde4v 8719 e89c99 8719 00008719 e3dd e3dd e3dd e3dd e3dd e3dd e3dd
+10200 e3de e3de e3de * * 4d65 8ea2cde5,8ea2cde5v 871b e89c9b 871b 0000871b e3de e3de e3de e3de e3de e3de e3de
+10201 e3df e3df e3df * * 4d66 8ea2cde6,8ea2cde6v 8743 e89d83 8743 00008743 e3df e3df e3df e3df e3df e3df e3df
+10202 e3e0 e3e0 e3e0 * * 4d67 8ea2cde7,8ea2cde7v 872c e89cac 872c 0000872c e3e0 e3e0 e3e0 e3e0 e3e0 e3e0 e3e0
+10203 e3e1 e3e1 e3e1 * * 4d68 8ea2cde8,8ea2cde8v 8741 e89d81 8741 00008741 e3e1 e3e1 e3e1 e3e1 e3e1 e3e1 e3e1
+10204 e3e2 e3e2 e3e2 * * 4d69 8ea2cde9,8ea2cde9v 873e e89cbe 873e 0000873e e3e2 e3e2 e3e2 e3e2 e3e2 e3e2 e3e2
+10205 e3e3 e3e3 e3e3 * * 4d6a 8ea2cdea,8ea2cdeav 8746 e89d86 8746 00008746 e3e3 e3e3 e3e3 e3e3 e3e3 e3e3 e3e3
+10206 e3e4 e3e4 e3e4 * * 4d6b 8ea2cdeb,8ea2cdebv 8720 e89ca0 8720 00008720 e3e4 e3e4 e3e4 e3e4 e3e4 e3e4 e3e4
+10207 e3e5 e3e5 e3e5 * * 4d6c 8ea2cdec,8ea2cdecv 8732 e89cb2 8732 00008732 e3e5 e3e5 e3e5 e3e5 e3e5 e3e5 e3e5
+10208 e3e6 e3e6 e3e6 * * 4d6d 8ea2cded,8ea2cdedv 872a e89caa 872a 0000872a e3e6 e3e6 e3e6 e3e6 e3e6 e3e6 e3e6
+10209 e3e7 e3e7 e3e7 * * 4d6e 8ea2cdee,8ea2cdeev 872d e89cad 872d 0000872d e3e7 e3e7 e3e7 e3e7 e3e7 e3e7 e3e7
+10210 e3e8 e3e8 e3e8 * * 4d6f 8ea2cdef,8ea2cdefv 873c e89cbc 873c 0000873c e3e8 e3e8 e3e8 e3e8 e3e8 e3e8 e3e8
+10211 e3e9 e3e9 e3e9 * * 4d70 8ea2cdf0,8ea2cdf0v 8712 e89c92 8712 00008712 e3e9 e3e9 e3e9 e3e9 e3e9 e3e9 e3e9
+10212 e3ea e3ea e3ea * * 4d71 8ea2cdf1,8ea2cdf1v 873a e89cba 873a 0000873a e3ea e3ea e3ea e3ea e3ea e3ea e3ea
+10213 e3eb e3eb e3eb * * 4d72 8ea2cdf2,8ea2cdf2v 8731 e89cb1 8731 00008731 e3eb e3eb e3eb e3eb e3eb e3eb e3eb
+10214 e3ec e3ec e3ec * * 4d73 8ea2cdf3,8ea2cdf3v 8735 e89cb5 8735 00008735 e3ec e3ec e3ec e3ec e3ec e3ec e3ec
+10215 e3ed e3ed e3ed * * 4d74 8ea2cdf4,8ea2cdf4v 8742 e89d82 8742 00008742 e3ed e3ed e3ed e3ed e3ed e3ed e3ed
+10216 e3ee e3ee e3ee * * 4d75 8ea2cdf5,8ea2cdf5v 8726 e89ca6 8726 00008726 e3ee e3ee e3ee e3ee e3ee e3ee e3ee
+10217 e3ef e3ef e3ef * * 4d76 8ea2cdf6,8ea2cdf6v 8727 e89ca7 8727 00008727 e3ef e3ef e3ef e3ef e3ef e3ef e3ef
+10218 e3f0 e3f0 e3f0 * * 4d77 8ea2cdf7,8ea2cdf7v 8738 e89cb8 8738 00008738 e3f0 e3f0 e3f0 e3f0 e3f0 e3f0 e3f0
+10219 e3f1 e3f1 e3f1 * * 4d78 8ea2cdf8,8ea2cdf8v 8724 e89ca4 8724 00008724 e3f1 e3f1 e3f1 e3f1 e3f1 e3f1 e3f1
+10220 e3f2 e3f2 e3f2 * * 4d79 8ea2cdf9,8ea2cdf9v 871a e89c9a 871a 0000871a e3f2 e3f2 e3f2 e3f2 e3f2 e3f2 e3f2
+10221 e3f3 e3f3 e3f3 * * 4d7a 8ea2cdfa,8ea2cdfav 8730 e89cb0 8730 00008730 e3f3 e3f3 e3f3 e3f3 e3f3 e3f3 e3f3
+10222 e3f4 e3f4 e3f4 * * 4d7b 8ea2cdfb,8ea2cdfbv 8711 e89c91 8711 00008711 e3f4 e3f4 e3f4 e3f4 e3f4 e3f4 e3f4
+10223 e3f5 e3f5 e3f5 * * 4d7c 8ea2cdfc,8ea2cdfcv 88f7 e8a3b7 88f7 000088f7 e3f5 e3f5 e3f5 e3f5 e3f5 e3f5 e3f5
+10224 e3f6 e3f6 e3f6 * * 4d7d 8ea2cdfd,8ea2cdfdv 88e7 e8a3a7 88e7 000088e7 e3f6 e3f6 e3f6 e3f6 e3f6 e3f6 e3f6
+10225 e3f7 e3f7 e3f7 * * 4d7e 8ea2cdfe,8ea2cdfev 88f1 e8a3b1 88f1 000088f1 e3f7 e3f7 e3f7 e3f7 e3f7 e3f7 e3f7
+10226 e3f8 e3f8 e3f8 * * 4e21 8ea2cea1,8ea2cea1v 88f2 e8a3b2 88f2 000088f2 e3f8 e3f8 e3f8 e3f8 e3f8 e3f8 e3f8
+10227 e3f9 e3f9 e3f9 * * 4e22 8ea2cea2,8ea2cea2v 88fa e8a3ba 88fa 000088fa e3f9 e3f9 e3f9 e3f9 e3f9 e3f9 e3f9
+10228 e3fa e3fa e3fa * * 4e23 8ea2cea3,8ea2cea3v 88fe e8a3be 88fe 000088fe e3fa e3fa e3fa e3fa e3fa e3fa e3fa
+10229 e3fb e3fb e3fb * * 4e24 8ea2cea4,8ea2cea4v 88ee e8a3ae 88ee 000088ee e3fb e3fb e3fb e3fb e3fb e3fb e3fb
+10230 e3fc e3fc e3fc * * 4e25 8ea2cea5,8ea2cea5v 88fc e8a3bc 88fc 000088fc e3fc e3fc e3fc e3fc e3fc e3fc e3fc
+10231 e3fd e3fd e3fd * * 4e26 8ea2cea6,8ea2cea6v 88f6 e8a3b6 88f6 000088f6 e3fd e3fd e3fd e3fd e3fd e3fd e3fd
+10232 e3fe e3fe e3fe * * 4e27 8ea2cea7,8ea2cea7v 88fb e8a3bb 88fb 000088fb e3fe e3fe e3fe e3fe e3fe e3fe e3fe
+10233 e440 e440 e440 * * 4e28 8ea2cea8,8ea2cea8v 88f0 e8a3b0 88f0 000088f0 e440 e440 e440 e440 e440 e440 e440
+10234 e441 e441 e441 * * 4e29 8ea2cea9,8ea2cea9v 88ec e8a3ac 88ec 000088ec e441 e441 e441 e441 e441 e441 e441
+10235 e442 e442 e442 * * 4e2a 8ea2ceaa,8ea2ceaav 88eb e8a3ab 88eb 000088eb e442 e442 e442 e442 e442 e442 e442
+10236 e443 e443 e443 * * 4e2b 8ea2ceab,8ea2ceabv 899d e8a69d 899d 0000899d e443 e443 e443 e443 e443 e443 e443
+10237 e444 e444 e444 * * 4e2c 8ea2ceac,8ea2ceacv 89a1 e8a6a1 89a1 000089a1 e444 e444 e444 e444 e444 e444 e444
+10238 e445 e445 e445 * * 4e2d 8ea2cead,8ea2ceadv 899f e8a69f 899f 0000899f e445 e445 e445 e445 e445 e445 e445
+10239 e446 e446 e446 * * 4e2e 8ea2ceae,8ea2ceaev 899e e8a69e 899e 0000899e e446 e446 e446 e446 e446 e446 e446
+10240 e447 e447 e447 * * 4e2f 8ea2ceaf,8ea2ceafv 89e9 e8a7a9 89e9 000089e9 e447 e447 e447 e447 e447 e447 e447
+10241 e448 e448 e448 * * 4e30 8ea2ceb0,8ea2ceb0v 89eb e8a7ab 89eb 000089eb e448 e448 e448 e448 e448 e448 e448
+10242 e449 e449 e449 * * 4e31 8ea2ceb1,8ea2ceb1v 89e8 e8a7a8 89e8 000089e8 e449 e449 e449 e449 e449 e449 e449
+10243 e44a e44a e44a * * 4e32 8ea2ceb2,8ea2ceb2v 8aab e8aaab 8aab 00008aab e44a e44a e44a e44a e44a e44a e44a
+10244 e44b e44b e44b * * 4e33 8ea2ceb3,8ea2ceb3v 8a99 e8aa99 8a99 00008a99 e44b e44b e44b e44b e44b e44b e44b
+10245 e44c e44c e44c * * 4e34 8ea2ceb4,8ea2ceb4v 8a8b e8aa8b 8a8b 00008a8b e44c e44c e44c e44c e44c e44c e44c
+10246 e44d e44d e44d * * 4e35 8ea2ceb5,8ea2ceb5v 8a92 e8aa92 8a92 00008a92 e44d e44d e44d e44d e44d e44d e44d
+10247 e44e e44e e44e * * 4e36 8ea2ceb6,8ea2ceb6v 8a8f e8aa8f 8a8f 00008a8f e44e e44e e44e e44e e44e e44e e44e
+10248 e44f e44f e44f * * 4e37 8ea2ceb7,8ea2ceb7v 8a96 e8aa96 8a96 00008a96 e44f e44f e44f e44f e44f e44f e44f
+10249 e450 e450 e450 * * 4e38 8ea2ceb8,8ea2ceb8v 8c3d e8b0bd 8c3d 00008c3d e450 e450 e450 e450 e450 e450 e450
+10250 e451 e451 e451 * * 4e39 8ea2ceb9,8ea2ceb9v 8c68 e8b1a8 8c68 00008c68 e451 e451 e451 e451 e451 e451 e451
+10251 e452 e452 e452 * * 4e3a 8ea2ceba,8ea2cebav 8c69 e8b1a9 8c69 00008c69 e452 e452 e452 e452 e452 e452 e452
+10252 e453 e453 e453 * * 4e3b 8ea2cebb,8ea2cebbv 8cd5 e8b395 8cd5 00008cd5 e453 e453 e453 e453 e453 e453 e453
+10253 e454 e454 e454 * * 4e3c 8ea2cebc,8ea2cebcv 8ccf e8b38f 8ccf 00008ccf e454 e454 e454 e454 e454 e454 e454
+10254 e455 e455 e455 * * 4e3d 8ea2cebd,8ea2cebdv 8cd7 e8b397 8cd7 00008cd7 e455 e455 e455 e455 e455 e455 e455
+10255 e456 e456 e456 * * 4e3e 8ea2cebe,8ea2cebev 8d96 e8b696 8d96 00008d96 e456 e456 e456 e456 e456 e456 e456
+10256 e457 e457 e457 * * 4e3f 8ea2cebf,8ea2cebfv 8e09 e8b889 8e09 00008e09 e457 e457 e457 e457 e457 e457 e457
+10257 e458 e458 e458 * * 4e40 8ea2cec0,8ea2cec0v 8e02 e8b882 8e02 00008e02 e458 e458 e458 e458 e458 e458 e458
+10258 e459 e459 e459 * * 4e41 8ea2cec1,8ea2cec1v 8dff e8b7bf 8dff 00008dff e459 e459 e459 e459 e459 e459 e459
+10259 e45a e45a e45a * * 4e42 8ea2cec2,8ea2cec2v 8e0d e8b88d 8e0d 00008e0d e45a e45a e45a e45a e45a e45a e45a
+10260 e45b e45b e45b * * 4e43 8ea2cec3,8ea2cec3v 8dfd e8b7bd 8dfd 00008dfd e45b e45b e45b e45b e45b e45b e45b
+10261 e45c e45c e45c * * 4e44 8ea2cec4,8ea2cec4v 8e0a e8b88a 8e0a 00008e0a e45c e45c e45c e45c e45c e45c e45c
+10262 e45d e45d e45d * * 4e45 8ea2cec5,8ea2cec5v 8e03 e8b883 8e03 00008e03 e45d e45d e45d e45d e45d e45d e45d
+10263 e45e e45e e45e * * 4e46 8ea2cec6,8ea2cec6v 8e07 e8b887 8e07 00008e07 e45e e45e e45e e45e e45e e45e e45e
+10264 e45f e45f e45f * * 4e47 8ea2cec7,8ea2cec7v 8e06 e8b886 8e06 00008e06 e45f e45f e45f e45f e45f e45f e45f
+10265 e460 e460 e460 * * 4e48 8ea2cec8,8ea2cec8v 8e05 e8b885 8e05 00008e05 e460 e460 e460 e460 e460 e460 e460
+10266 e461 e461 e461 * * 4e49 8ea2cec9,8ea2cec9v 8dfe e8b7be 8dfe 00008dfe e461 e461 e461 e461 e461 e461 e461
+10267 e462 e462 e462 * * 4e4a 8ea2ceca,8ea2cecav 8e00 e8b880 8e00 00008e00 e462 e462 e462 e462 e462 e462 e462
+10268 e463 e463 e463 * * 4e4b 8ea2cecb,8ea2cecbv 8e04 e8b884 8e04 00008e04 e463 e463 e463 e463 e463 e463 e463
+10269 e464 e464 e464 * * 4e4c 8ea2cecc,8ea2ceccv 8f10 e8bc90 8f10 00008f10 e464 e464 e464 e464 e464 e464 e464
+10270 e465 e465 e465 * * 4e4d 8ea2cecd,8ea2cecdv 8f11 e8bc91 8f11 00008f11 e465 e465 e465 e465 e465 e465 e465
+10271 e466 e466 e466 * * 4e4e 8ea2cece,8ea2cecev 8f0e e8bc8e 8f0e 00008f0e e466 e466 e466 e466 e466 e466 e466
+10272 e467 e467 e467 * * 4e4f 8ea2cecf,8ea2cecfv 8f0d e8bc8d 8f0d 00008f0d e467 e467 e467 e467 e467 e467 e467
+10273 e468 e468 e468 * * 4e50 8ea2ced0,8ea2ced0v 9123 e984a3 9123 00009123 e468 e468 e468 e468 e468 e468 e468
+10274 e469 e469 e469 * * 4e51 8ea2ced1,8ea2ced1v 911c e9849c 911c 0000911c e469 e469 e469 e469 e469 e469 e469
+10275 e46a e46a e46a * * 4e52 8ea2ced2,8ea2ced2v 9120 e984a0 9120 00009120 e46a e46a e46a e46a e46a e46a e46a
+10276 e46b e46b e46b * * 4e53 8ea2ced3,8ea2ced3v 9122 e984a2 9122 00009122 e46b e46b e46b e46b e46b e46b e46b
+10277 e46c e46c e46c * * 4e54 8ea2ced4,8ea2ced4v 911f e9849f 911f 0000911f e46c e46c e46c e46c e46c e46c e46c
+10278 e46d e46d e46d * * 4e55 8ea2ced5,8ea2ced5v 911d e9849d 911d 0000911d e46d e46d e46d e46d e46d e46d e46d
+10279 e46e e46e e46e * * 4e56 8ea2ced6,8ea2ced6v 911a e9849a 911a 0000911a e46e e46e e46e e46e e46e e46e e46e
+10280 e46f e46f e46f * * 4e57 8ea2ced7,8ea2ced7v 9124 e984a4 9124 00009124 e46f e46f e46f e46f e46f e46f e46f
+10281 e470 e470 e470 * * 4e58 8ea2ced8,8ea2ced8v 9121 e984a1 9121 00009121 e470 e470 e470 e470 e470 e470 e470
+10282 e471 e471 e471 * * 4e59 8ea2ced9,8ea2ced9v 911b e9849b 911b 0000911b e471 e471 e471 e471 e471 e471 e471
+10283 e472 e472 e472 * * 4e5a 8ea2ceda,8ea2cedav 917a e985ba 917a 0000917a e472 e472 e472 e472 e472 e472 e472
+10284 e473 e473 e473 * * 4e5b 8ea2cedb,8ea2cedbv 9172 e985b2 9172 00009172 e473 e473 e473 e473 e473 e473 e473
+10285 e474 e474 e474 * * 4e5c 8ea2cedc,8ea2cedcv 9179 e985b9 9179 00009179 e474 e474 e474 e474 e474 e474 e474
+10286 e475 e475 e475 * * 4e5d 8ea2cedd,8ea2ceddv 9173 e985b3 9173 00009173 e475 e475 e475 e475 e475 e475 e475
+10287 e476 e476 e476 * * 4e5e 8ea2cede,8ea2cedev 92a5 e98aa5 92a5 000092a5 e476 e476 e476 e476 e476 e476 e476
+10288 e477 e477 e477 * * 4e5f 8ea2cedf,8ea2cedfv 92a4 e98aa4 92a4 000092a4 e477 e477 e477 e477 e477 e477 e477
+10289 e478 e478 e478 * * 4e60 8ea2cee0,8ea2cee0v 9276 e989b6 9276 00009276 e478 e478 e478 e478 e478 e478 e478
+10290 e479 e479 e479 * * 4e61 8ea2cee1,8ea2cee1v 929b e98a9b 929b 0000929b e479 e479 e479 e479 e479 e479 e479
+10291 e47a e47a e47a * * 4e62 8ea2cee2,8ea2cee2v 927a e989ba 927a 0000927a e47a e47a e47a e47a e47a e47a e47a
+10292 e47b e47b e47b * * 4e63 8ea2cee3,8ea2cee3v 92a0 e98aa0 92a0 000092a0 e47b e47b e47b e47b e47b e47b e47b
+10293 e47c e47c e47c * * 4e64 8ea2cee4,8ea2cee4v 9294 e98a94 9294 00009294 e47c e47c e47c e47c e47c e47c e47c
+10294 e47d e47d e47d * * 4e65 8ea2cee5,8ea2cee5v 92aa e98aaa 92aa 000092aa e47d e47d e47d e47d e47d e47d e47d
+10295 e47e e47e e47e * * 4e66 8ea2cee6,8ea2cee6v 928d e98a8d 928d 0000928d e47e e47e e47e e47e e47e e47e e47e
+10296 e4a1 e4a1 e4a1 * * 4e67 8ea2cee7,8ea2cee7v 92a6 e98aa6 92a6 000092a6 e4a1 e4a1 e4a1 e4a1 e4a1 e4a1 e4a1
+10297 e4a2 e4a2 e4a2 * * 4e68 8ea2cee8,8ea2cee8v 929a e98a9a 929a 0000929a e4a2 e4a2 e4a2 e4a2 e4a2 e4a2 e4a2
+10298 e4a3 e4a3 e4a3 * * 4e69 8ea2cee9,8ea2cee9v 92ab e98aab 92ab 000092ab e4a3 e4a3 e4a3 e4a3 e4a3 e4a3 e4a3
+10299 e4a4 e4a4 e4a4 * * 4e6a 8ea2ceea,8ea2ceeav 9279 e989b9 9279 00009279 e4a4 e4a4 e4a4 e4a4 e4a4 e4a4 e4a4
+10300 e4a5 e4a5 e4a5 * * 4e6b 8ea2ceeb,8ea2ceebv 9297 e98a97 9297 00009297 e4a5 e4a5 e4a5 e4a5 e4a5 e4a5 e4a5
+10301 e4a6 e4a6 e4a6 * * 4e6c 8ea2ceec,8ea2ceecv 927f e989bf 927f 0000927f e4a6 e4a6 e4a6 e4a6 e4a6 e4a6 e4a6
+10302 e4a7 e4a7 e4a7 * * 4e6d 8ea2ceed,8ea2ceedv 92a3 e98aa3 92a3 000092a3 e4a7 e4a7 e4a7 e4a7 e4a7 e4a7 e4a7
+10303 e4a8 e4a8 e4a8 * * 4e6e 8ea2ceee,8ea2ceeev 92ee e98bae 92ee 000092ee e4a8 e4a8 e4a8 e4a8 e4a8 e4a8 e4a8
+10304 e4a9 e4a9 e4a9 * * 4e6f 8ea2ceef,8ea2ceefv 928e e98a8e 928e 0000928e e4a9 e4a9 e4a9 e4a9 e4a9 e4a9 e4a9
+10305 e4aa e4aa e4aa * * 4e70 8ea2cef0,8ea2cef0v 9282 e98a82 9282 00009282 e4aa e4aa e4aa e4aa e4aa e4aa e4aa
+10306 e4ab e4ab e4ab * * 4e71 8ea2cef1,8ea2cef1v 9295 e98a95 9295 00009295 e4ab e4ab e4ab e4ab e4ab e4ab e4ab
+10307 e4ac e4ac e4ac * * 4e72 8ea2cef2,8ea2cef2v 92a2 e98aa2 92a2 000092a2 e4ac e4ac e4ac e4ac e4ac e4ac e4ac
+10308 e4ad e4ad e4ad * * 4e73 8ea2cef3,8ea2cef3v 927d e989bd 927d 0000927d e4ad e4ad e4ad e4ad e4ad e4ad e4ad
+10309 e4ae e4ae e4ae * * 4e74 8ea2cef4,8ea2cef4v 9288 e98a88 9288 00009288 e4ae e4ae e4ae e4ae e4ae e4ae e4ae
+10310 e4af e4af e4af * * 4e75 8ea2cef5,8ea2cef5v 92a1 e98aa1 92a1 000092a1 e4af e4af e4af e4af e4af e4af e4af
+10311 e4b0 e4b0 e4b0 * * 4e76 8ea2cef6,8ea2cef6v 928a e98a8a 928a 0000928a e4b0 e4b0 e4b0 e4b0 e4b0 e4b0 e4b0
+10312 e4b1 e4b1 e4b1 * * 4e77 8ea2cef7,8ea2cef7v 9286 e98a86 9286 00009286 e4b1 e4b1 e4b1 e4b1 e4b1 e4b1 e4b1
+10313 e4b2 e4b2 e4b2 * * 4e78 8ea2cef8,8ea2cef8v 928c e98a8c 928c 0000928c e4b2 e4b2 e4b2 e4b2 e4b2 e4b2 e4b2
+10314 e4b3 e4b3 e4b3 * * 4e79 8ea2cef9,8ea2cef9v 9299 e98a99 9299 00009299 e4b3 e4b3 e4b3 e4b3 e4b3 e4b3 e4b3
+10315 e4b4 e4b4 e4b4 * * 4e7a 8ea2cefa,8ea2cefav 92a7 e98aa7 92a7 000092a7 e4b4 e4b4 e4b4 e4b4 e4b4 e4b4 e4b4
+10316 e4b5 e4b5 e4b5 * * 4e7b 8ea2cefb,8ea2cefbv 927e e989be 927e 0000927e e4b5 e4b5 e4b5 e4b5 e4b5 e4b5 e4b5
+10317 e4b6 e4b6 e4b6 * * 4e7c 8ea2cefc,8ea2cefcv 9287 e98a87 9287 00009287 e4b6 e4b6 e4b6 e4b6 e4b6 e4b6 e4b6
+10318 e4b7 e4b7 e4b7 * * 4e7d 8ea2cefd,8ea2cefdv 92a9 e98aa9 92a9 000092a9 e4b7 e4b7 e4b7 e4b7 e4b7 e4b7 e4b7
+10319 e4b8 e4b8 e4b8 * * 4e7e 8ea2cefe,8ea2cefev 929d e98a9d 929d 0000929d e4b8 e4b8 e4b8 e4b8 e4b8 e4b8 e4b8
+10320 e4b9 e4b9 e4b9 * * 4f21 8ea2cfa1,8ea2cfa1v 928b e98a8b 928b 0000928b e4b9 e4b9 e4b9 e4b9 e4b9 e4b9 e4b9
+10321 e4ba e4ba e4ba * * 4f22 8ea2cfa2,8ea2cfa2v 922d e988ad 922d 0000922d e4ba e4ba e4ba e4ba e4ba e4ba e4ba
+10322 e4bb e4bb e4bb * * 4f23 8ea2cfa3,8ea2cfa3v 969e e99a9e 969e 0000969e e4bb e4bb e4bb e4bb e4bb e4bb e4bb
+10323 e4bc e4bc e4bc * * 4f24 8ea2cfa4,8ea2cfa4v 96a1 e99aa1 96a1 000096a1 e4bc e4bc e4bc e4bc e4bc e4bc e4bc
+10324 e4bd e4bd e4bd * * 4f25 8ea2cfa5,8ea2cfa5v 96ff e99bbf 96ff 000096ff e4bd e4bd e4bd e4bd e4bd e4bd e4bd
+10325 e4be e4be e4be * * 4f26 8ea2cfa6,8ea2cfa6v 9758 e99d98 9758 00009758 e4be e4be e4be e4be e4be e4be e4be
+10326 e4bf e4bf e4bf * * 4f27 8ea2cfa7,8ea2cfa7v 977d e99dbd 977d 0000977d e4bf e4bf e4bf e4bf e4bf e4bf e4bf
+10327 e4c0 e4c0 e4c0 * * 4f28 8ea2cfa8,8ea2cfa8v 977a e99dba 977a 0000977a e4c0 e4c0 e4c0 e4c0 e4c0 e4c0 e4c0
+10328 e4c1 e4c1 e4c1 * * 4f29 8ea2cfa9,8ea2cfa9v 977e e99dbe 977e 0000977e e4c1 e4c1 e4c1 e4c1 e4c1 e4c1 e4c1
+10329 e4c2 e4c2 e4c2 * * 4f2a 8ea2cfaa,8ea2cfaav 9783 e99e83 9783 00009783 e4c2 e4c2 e4c2 e4c2 e4c2 e4c2 e4c2
+10330 e4c3 e4c3 e4c3 * * 4f2b 8ea2cfab,8ea2cfabv 9780 e99e80 9780 00009780 e4c3 e4c3 e4c3 e4c3 e4c3 e4c3 e4c3
+10331 e4c4 e4c4 e4c4 * * 4f2c 8ea2cfac,8ea2cfacv 9782 e99e82 9782 00009782 e4c4 e4c4 e4c4 e4c4 e4c4 e4c4 e4c4
+10332 e4c5 e4c5 e4c5 * * 4f2d 8ea2cfad,8ea2cfadv 977b e99dbb 977b 0000977b e4c5 e4c5 e4c5 e4c5 e4c5 e4c5 e4c5
+10333 e4c6 e4c6 e4c6 * * 4f2e 8ea2cfae,8ea2cfaev 9784 e99e84 9784 00009784 e4c6 e4c6 e4c6 e4c6 e4c6 e4c6 e4c6
+10334 e4c7 e4c7 e4c7 * * 4f2f 8ea2cfaf,8ea2cfafv 9781 e99e81 9781 00009781 e4c7 e4c7 e4c7 e4c7 e4c7 e4c7 e4c7
+10335 e4c8 e4c8 e4c8 * * 4f30 8ea2cfb0,8ea2cfb0v 977f e99dbf 977f 0000977f e4c8 e4c8 e4c8 e4c8 e4c8 e4c8 e4c8
+10336 e4c9 e4c9 e4c9 * * 4f31 8ea2cfb1,8ea2cfb1v 97ce e99f8e 97ce 000097ce e4c9 e4c9 e4c9 e4c9 e4c9 e4c9 e4c9
+10337 e4ca e4ca e4ca * * 4f32 8ea2cfb2,8ea2cfb2v 97cd e99f8d 97cd 000097cd e4ca e4ca e4ca e4ca e4ca e4ca e4ca
+10338 e4cb e4cb e4cb * * 4f33 8ea2cfb3,8ea2cfb3v 9816 e9a096 9816 00009816 e4cb e4cb e4cb e4cb e4cb e4cb e4cb
+10339 e4cc e4cc e4cc * * 4f34 8ea2cfb4,8ea2cfb4v 98ad e9a2ad 98ad 000098ad e4cc e4cc e4cc e4cc e4cc e4cc e4cc
+10340 e4cd e4cd e4cd * * 4f35 8ea2cfb5,8ea2cfb5v 98ae e9a2ae 98ae 000098ae e4cd e4cd e4cd e4cd e4cd e4cd e4cd
+10341 e4ce e4ce e4ce * * 4f36 8ea2cfb6,8ea2cfb6v 9902 e9a482 9902 00009902 e4ce e4ce e4ce e4ce e4ce e4ce e4ce
+10342 e4cf e4cf e4cf * * 4f37 8ea2cfb7,8ea2cfb7v 9900 e9a480 9900 00009900 e4cf e4cf e4cf e4cf e4cf e4cf e4cf
+10343 e4d0 e4d0 e4d0 * * 4f38 8ea2cfb8,8ea2cfb8v 9907 e9a487 9907 00009907 e4d0 e4d0 e4d0 e4d0 e4d0 e4d0 e4d0
+10344 e4d1 e4d1 e4d1 * * 4f39 8ea2cfb9,8ea2cfb9v 999d e9a69d 999d 0000999d e4d1 e4d1 e4d1 e4d1 e4d1 e4d1 e4d1
+10345 e4d2 e4d2 e4d2 * * 4f3a 8ea2cfba,8ea2cfbav 999c e9a69c 999c 0000999c e4d2 e4d2 e4d2 e4d2 e4d2 e4d2 e4d2
+10346 e4d3 e4d3 e4d3 * * 4f3b 8ea2cfbb,8ea2cfbbv 99c3 e9a783 99c3 000099c3 e4d3 e4d3 e4d3 e4d3 e4d3 e4d3 e4d3
+10347 e4d4 e4d4 e4d4 * * 4f3c 8ea2cfbc,8ea2cfbcv 99b9 e9a6b9 99b9 000099b9 e4d4 e4d4 e4d4 e4d4 e4d4 e4d4 e4d4
+10348 e4d5 e4d5 e4d5 * * 4f3d 8ea2cfbd,8ea2cfbdv 99bb e9a6bb 99bb 000099bb e4d5 e4d5 e4d5 e4d5 e4d5 e4d5 e4d5
+10349 e4d6 e4d6 e4d6 * * 4f3e 8ea2cfbe,8ea2cfbev 99ba e9a6ba 99ba 000099ba e4d6 e4d6 e4d6 e4d6 e4d6 e4d6 e4d6
+10350 e4d7 e4d7 e4d7 * * 4f3f 8ea2cfbf,8ea2cfbfv 99c2 e9a782 99c2 000099c2 e4d7 e4d7 e4d7 e4d7 e4d7 e4d7 e4d7
+10351 e4d8 e4d8 e4d8 * * 4f40 8ea2cfc0,8ea2cfc0v 99bd e9a6bd 99bd 000099bd e4d8 e4d8 e4d8 e4d8 e4d8 e4d8 e4d8
+10352 e4d9 e4d9 e4d9 * * 4f41 8ea2cfc1,8ea2cfc1v 99c7 e9a787 99c7 000099c7 e4d9 e4d9 e4d9 e4d9 e4d9 e4d9 e4d9
+10353 e4da e4da e4da * * 4f42 8ea2cfc2,8ea2cfc2v 9ab1 e9aab1 9ab1 00009ab1 e4da e4da e4da e4da e4da e4da e4da
+10354 e4db e4db e4db * * 4f43 8ea2cfc3,8ea2cfc3v 9ae3 e9aba3 9ae3 00009ae3 e4db e4db e4db e4db e4db e4db e4db
+10355 e4dc e4dc e4dc * * 4f44 8ea2cfc4,8ea2cfc4v 9ae7 e9aba7 9ae7 00009ae7 e4dc e4dc e4dc e4dc e4dc e4dc e4dc
+10356 e4dd e4dd e4dd * * 4f45 8ea2cfc5,8ea2cfc5v 9b3e e9acbe 9b3e 00009b3e e4dd e4dd e4dd e4dd e4dd e4dd e4dd
+10357 e4de e4de e4de * * 4f46 8ea2cfc6,8ea2cfc6v 9b3f e9acbf 9b3f 00009b3f e4de e4de e4de e4de e4de e4de e4de
+10358 e4df e4df e4df * * 4f47 8ea2cfc7,8ea2cfc7v 9b60 e9ada0 9b60 00009b60 e4df e4df e4df e4df e4df e4df e4df
+10359 e4e0 e4e0 e4e0 * * 4f48 8ea2cfc8,8ea2cfc8v 9b61 e9ada1 9b61 00009b61 e4e0 e4e0 e4e0 e4e0 e4e0 e4e0 e4e0
+10360 e4e1 e4e1 e4e1 * * 4f49 8ea2cfc9,8ea2cfc9v 9b5f e9ad9f 9b5f 00009b5f e4e1 e4e1 e4e1 e4e1 e4e1 e4e1 e4e1
+10361 e4e2 e4e2 e4e2 * * 4f4a 8ea2cfca,8ea2cfcav 9cf1 e9b3b1 9cf1 00009cf1 e4e2 e4e2 e4e2 e4e2 e4e2 e4e2 e4e2
+10362 e4e3 e4e3 e4e3 * * 4f4b 8ea2cfcb,8ea2cfcbv 9cf2 e9b3b2 9cf2 00009cf2 e4e3 e4e3 e4e3 e4e3 e4e3 e4e3 e4e3
+10363 e4e4 e4e4 e4e4 * * 4f4c 8ea2cfcc,8ea2cfccv 9cf5 e9b3b5 9cf5 00009cf5 e4e4 e4e4 e4e4 e4e4 e4e4 e4e4 e4e4
+10364 e4e5 e4e5 e4e5 * * 4f4d 8ea2cfcd,8ea2cfcdv 9ea7 e9baa7 9ea7 00009ea7 e4e5 e4e5 e4e5 e4e5 e4e5 e4e5 e4e5
+10365 e4e6 e4e6 e4e6 * * 4f4e 8ea2cfce,8ea2cfcev 50ff e583bf 50ff 000050ff e4e6 e4e6 e4e6 e4e6 e4e6 e4e6 e4e6
+10366 e4e7 e4e7 e4e7 * * 4f4f 8ea2cfcf,8ea2cfcfv 5103 e58483 5103 00005103 e4e7 e4e7 e4e7 e4e7 e4e7 e4e7 e4e7
+10367 e4e8 e4e8 e4e8 * * 4f50 8ea2cfd0,8ea2cfd0v 5130 e584b0 5130 00005130 e4e8 e4e8 e4e8 e4e8 e4e8 e4e8 e4e8
+10368 e4e9 e4e9 e4e9 * * 4f51 8ea2cfd1,8ea2cfd1v 50f8 e583b8 50f8 000050f8 e4e9 e4e9 e4e9 e4e9 e4e9 e4e9 e4e9
+10369 e4ea e4ea e4ea * * 4f52 8ea2cfd2,8ea2cfd2v 5106 e58486 5106 00005106 e4ea e4ea e4ea e4ea e4ea e4ea e4ea
+10370 e4eb e4eb e4eb * * 4f53 8ea2cfd3,8ea2cfd3v 5107 e58487 5107 00005107 e4eb e4eb e4eb e4eb e4eb e4eb e4eb
+10371 e4ec e4ec e4ec * * 4f54 8ea2cfd4,8ea2cfd4v 50f6 e583b6 50f6 000050f6 e4ec e4ec e4ec e4ec e4ec e4ec e4ec
+10372 e4ed e4ed e4ed * * 4f55 8ea2cfd5,8ea2cfd5v 50fe e583be 50fe 000050fe e4ed e4ed e4ed e4ed e4ed e4ed e4ed
+10373 e4ee e4ee e4ee * * 4f56 8ea2cfd6,8ea2cfd6v 510b e5848b 510b 0000510b e4ee e4ee e4ee e4ee e4ee e4ee e4ee
+10374 e4ef e4ef e4ef * * 4f57 8ea2cfd7,8ea2cfd7v 510c e5848c 510c 0000510c e4ef e4ef e4ef e4ef e4ef e4ef e4ef
+10375 e4f0 e4f0 e4f0 * * 4f58 8ea2cfd8,8ea2cfd8v 50fd e583bd 50fd 000050fd e4f0 e4f0 e4f0 e4f0 e4f0 e4f0 e4f0
+10376 e4f1 e4f1 e4f1 * * 4f59 8ea2cfd9,8ea2cfd9v 510a e5848a 510a 0000510a e4f1 e4f1 e4f1 e4f1 e4f1 e4f1 e4f1
+10377 e4f2 e4f2 e4f2 * * 4f5a 8ea2cfda,8ea2cfdav 528b e58a8b 528b 0000528b e4f2 e4f2 e4f2 e4f2 e4f2 e4f2 e4f2
+10378 e4f3 e4f3 e4f3 * * 4f5b 8ea2cfdb,8ea2cfdbv 528c e58a8c 528c 0000528c e4f3 e4f3 e4f3 e4f3 e4f3 e4f3 e4f3
+10379 e4f4 e4f4 e4f4 * * 4f5c 8ea2cfdc,8ea2cfdcv 52f1 e58bb1 52f1 000052f1 e4f4 e4f4 e4f4 e4f4 e4f4 e4f4 e4f4
+10380 e4f5 e4f5 e4f5 * * 4f5d 8ea2cfdd,8ea2cfddv 52ef e58baf 52ef 000052ef e4f5 e4f5 e4f5 e4f5 e4f5 e4f5 e4f5
+10381 e4f6 e4f6 e4f6 * * 4f5e 8ea2cfde,8ea2cfdev 5648 e59988 5648 00005648 e4f6 e4f6 e4f6 e4f6 e4f6 e4f6 e4f6
+10382 e4f7 e4f7 e4f7 * * 4f5f 8ea2cfdf,8ea2cfdfv 5642 e59982 5642 00005642 e4f7 e4f7 e4f7 e4f7 e4f7 e4f7 e4f7
+10383 e4f8 e4f8 e4f8 * * 4f60 8ea2cfe0,8ea2cfe0v 564c e5998c 564c 0000564c e4f8 e4f8 e4f8 e4f8 e4f8 e4f8 e4f8
+10384 e4f9 e4f9 e4f9 * * 4f61 8ea2cfe1,8ea2cfe1v 5635 e598b5 5635 00005635 e4f9 e4f9 e4f9 e4f9 e4f9 e4f9 e4f9
+10385 e4fa e4fa e4fa * * 4f62 8ea2cfe2,8ea2cfe2v 5641 e59981 5641 00005641 e4fa e4fa e4fa e4fa e4fa e4fa e4fa
+10386 e4fb e4fb e4fb * * 4f63 8ea2cfe3,8ea2cfe3v 564a e5998a 564a 0000564a e4fb e4fb e4fb e4fb e4fb e4fb e4fb
+10387 e4fc e4fc e4fc * * 4f64 8ea2cfe4,8ea2cfe4v 5649 e59989 5649 00005649 e4fc e4fc e4fc e4fc e4fc e4fc e4fc
+10388 e4fd e4fd e4fd * * 4f65 8ea2cfe5,8ea2cfe5v 5646 e59986 5646 00005646 e4fd e4fd e4fd e4fd e4fd e4fd e4fd
+10389 e4fe e4fe e4fe * * 4f66 8ea2cfe6,8ea2cfe6v 5658 e59998 5658 00005658 e4fe e4fe e4fe e4fe e4fe e4fe e4fe
+10390 e540 e540 e540 * * 4f67 8ea2cfe7,8ea2cfe7v 565a e5999a 565a 0000565a e540 e540 e540 e540 e540 e540 e540
+10391 e541 e541 e541 * * 4f68 8ea2cfe8,8ea2cfe8v 5640 e59980 5640 00005640 e541 e541 e541 e541 e541 e541 e541
+10392 e542 e542 e542 * * 4f69 8ea2cfe9,8ea2cfe9v 5633 e598b3 5633 00005633 e542 e542 e542 e542 e542 e542 e542
+10393 e543 e543 e543 * * 4f6a 8ea2cfea,8ea2cfeav 563d e598bd 563d 0000563d e543 e543 e543 e543 e543 e543 e543
+10394 e544 e544 e544 * * 4f6b 8ea2cfeb,8ea2cfebv 562c e598ac 562c 0000562c e544 e544 e544 e544 e544 e544 e544
+10395 e545 e545 e545 * * 4f6c 8ea2cfec,8ea2cfecv 563e e598be 563e 0000563e e545 e545 e545 e545 e545 e545 e545
+10396 e546 e546 e546 * * 4f6d 8ea2cfed,8ea2cfedv 5638 e598b8 5638 00005638 e546 e546 e546 e546 e546 e546 e546
+10397 e547 e547 e547 * * 4f6e 8ea2cfee,8ea2cfeev 562a e598aa 562a 0000562a e547 e547 e547 e547 e547 e547 e547
+10398 e548 e548 e548 * * 4f6f 8ea2cfef,8ea2cfefv 563a e598ba 563a 0000563a e548 e548 e548 e548 e548 e548 e548
+10399 e549 e549 e549 * * 4f70 8ea2cff0,8ea2cff0v 571a e59c9a 571a 0000571a e549 e549 e549 e549 e549 e549 e549
+10400 e54a e54a e54a * * 4f71 8ea2cff1,8ea2cff1v 58ab e5a2ab 58ab 000058ab e54a e54a e54a e54a e54a e54a e54a
+10401 e54b e54b e54b * * 4f72 8ea2cff2,8ea2cff2v 589d e5a29d 589d 0000589d e54b e54b e54b e54b e54b e54b e54b
+10402 e54c e54c e54c * * 4f73 8ea2cff3,8ea2cff3v 58b1 e5a2b1 58b1 000058b1 e54c e54c e54c e54c e54c e54c e54c
+10403 e54d e54d e54d * * 4f74 8ea2cff4,8ea2cff4v 58a0 e5a2a0 58a0 000058a0 e54d e54d e54d e54d e54d e54d e54d
+10404 e54e e54e e54e * * 4f75 8ea2cff5,8ea2cff5v 58a3 e5a2a3 58a3 000058a3 e54e e54e e54e e54e e54e e54e e54e
+10405 e54f e54f e54f * * 4f76 8ea2cff6,8ea2cff6v 58af e5a2af 58af 000058af e54f e54f e54f e54f e54f e54f e54f
+10406 e550 e550 e550 * * 4f77 8ea2cff7,8ea2cff7v 58ac e5a2ac 58ac 000058ac e550 e550 e550 e550 e550 e550 e550
+10407 e551 e551 e551 * * 4f78 8ea2cff8,8ea2cff8v 58a5 e5a2a5 58a5 000058a5 e551 e551 e551 e551 e551 e551 e551
+10408 e552 e552 e552 * * 4f79 8ea2cff9,8ea2cff9v 58a1 e5a2a1 58a1 000058a1 e552 e552 e552 e552 e552 e552 e552
+10409 e553 e553 e553 * * 4f7a 8ea2cffa,8ea2cffav 58ff e5a3bf 58ff 000058ff e553 e553 e553 e553 e553 e553 e553
+10410 e554 e554 e554 * * 4f7b 8ea2cffb,8ea2cffbv 5aff e5abbf 5aff 00005aff e554 e554 e554 e554 e554 e554 e554
+10411 e555 e555 e555 * * 4f7c 8ea2cffc,8ea2cffcv 5af4 e5abb4 5af4 00005af4 e555 e555 e555 e555 e555 e555 e555
+10412 e556 e556 e556 * * 4f7d 8ea2cffd,8ea2cffdv 5afd e5abbd 5afd 00005afd e556 e556 e556 e556 e556 e556 e556
+10413 e557 e557 e557 * * 4f7e 8ea2cffe,8ea2cffev 5af7 e5abb7 5af7 00005af7 e557 e557 e557 e557 e557 e557 e557
+10414 e558 e558 e558 * * 5021 8ea2d0a1,8ea2d0a1v 5af6 e5abb6 5af6 00005af6 e558 e558 e558 e558 e558 e558 e558
+10415 e559 e559 e559 * * 5022 8ea2d0a2,8ea2d0a2v 5b03 e5ac83 5b03 00005b03 e559 e559 e559 e559 e559 e559 e559
+10416 e55a e55a e55a * * 5023 8ea2d0a3,8ea2d0a3v 5af8 e5abb8 5af8 00005af8 e55a e55a e55a e55a e55a e55a e55a
+10417 e55b e55b e55b * * 5024 8ea2d0a4,8ea2d0a4v 5b02 e5ac82 5b02 00005b02 e55b e55b e55b e55b e55b e55b e55b
+10418 e55c e55c e55c * * 5025 8ea2d0a5,8ea2d0a5v 5af9 e5abb9 5af9 00005af9 e55c e55c e55c e55c e55c e55c e55c
+10419 e55d e55d e55d * * 5026 8ea2d0a6,8ea2d0a6v 5b01 e5ac81 5b01 00005b01 e55d e55d e55d e55d e55d e55d e55d
+10420 e55e e55e e55e * * 5027 8ea2d0a7,8ea2d0a7v 5b07 e5ac87 5b07 00005b07 e55e e55e e55e e55e e55e e55e e55e
+10421 e55f e55f e55f * * 5028 8ea2d0a8,8ea2d0a8v 5b05 e5ac85 5b05 00005b05 e55f e55f e55f e55f e55f e55f e55f
+10422 e560 e560 e560 * * 5029 8ea2d0a9,8ea2d0a9v 5b0f e5ac8f 5b0f 00005b0f e560 e560 e560 e560 e560 e560 e560
+10423 e561 e561 e561 * * 502a 8ea2d0aa,8ea2d0aav 5c67 e5b1a7 5c67 00005c67 e561 e561 e561 e561 e561 e561 e561
+10424 e562 e562 e562 * * 502b 8ea2d0ab,8ea2d0abv 5d99 e5b699 5d99 00005d99 e562 e562 e562 e562 e562 e562 e562
+10425 e563 e563 e563 * * 502c 8ea2d0ac,8ea2d0acv 5d97 e5b697 5d97 00005d97 e563 e563 e563 e563 e563 e563 e563
+10426 e564 e564 e564 * * 502d 8ea2d0ad,8ea2d0adv 5d9f e5b69f 5d9f 00005d9f e564 e564 e564 e564 e564 e564 e564
+10427 e565 e565 e565 * * 502e 8ea2d0ae,8ea2d0aev 5d92 e5b692 5d92 00005d92 e565 e565 e565 e565 e565 e565 e565
+10428 e566 e566 e566 * * 502f 8ea2d0af,8ea2d0afv 5da2 e5b6a2 5da2 00005da2 e566 e566 e566 e566 e566 e566 e566
+10429 e567 e567 e567 * * 5030 8ea2d0b0,8ea2d0b0v 5d93 e5b693 5d93 00005d93 e567 e567 e567 e567 e567 e567 e567
+10430 e568 e568 e568 * * 5031 8ea2d0b1,8ea2d0b1v 5d95 e5b695 5d95 00005d95 e568 e568 e568 e568 e568 e568 e568
+10431 e569 e569 e569 * * 5032 8ea2d0b2,8ea2d0b2v 5da0 e5b6a0 5da0 00005da0 e569 e569 e569 e569 e569 e569 e569
+10432 e56a e56a e56a * * 5033 8ea2d0b3,8ea2d0b3v 5d9c e5b69c 5d9c 00005d9c e56a e56a e56a e56a e56a e56a e56a
+10433 e56b e56b e56b * * 5034 8ea2d0b4,8ea2d0b4v 5da1 e5b6a1 5da1 00005da1 e56b e56b e56b e56b e56b e56b e56b
+10434 e56c e56c e56c * * 5035 8ea2d0b5,8ea2d0b5v 5d9a e5b69a 5d9a 00005d9a e56c e56c e56c e56c e56c e56c e56c
+10435 e56d e56d e56d * * 5036 8ea2d0b6,8ea2d0b6v 5d9e e5b69e 5d9e 00005d9e e56d e56d e56d e56d e56d e56d e56d
+10436 e56e e56e e56e * * 5037 8ea2d0b7,8ea2d0b7v 5e69 e5b9a9 5e69 00005e69 e56e e56e e56e e56e e56e e56e e56e
+10437 e56f e56f e56f * * 5038 8ea2d0b8,8ea2d0b8v 5e5d e5b99d 5e5d 00005e5d e56f e56f e56f e56f e56f e56f e56f
+10438 e570 e570 e570 * * 5039 8ea2d0b9,8ea2d0b9v 5e60 e5b9a0 5e60 00005e60 e570 e570 e570 e570 e570 e570 e570
+10439 e571 e571 e571 * * 503a 8ea2d0ba,8ea2d0bav 5e5c e5b99c 5e5c 00005e5c e571 e571 e571 e571 e571 e571 e571
+10440 e572 e572 e572 * * 503b 8ea2d0bb,8ea2d0bbv 7df3 e7b7b3 7df3 00007df3 e572 e572 e572 e572 e572 e572 e572
+10441 e573 e573 e573 * * 503c 8ea2d0bc,8ea2d0bcv 5edb e5bb9b 5edb 00005edb e573 e573 e573 e573 e573 e573 e573
+10442 e574 e574 e574 * * 503d 8ea2d0bd,8ea2d0bdv 5ede e5bb9e 5ede 00005ede e574 e574 e574 e574 e574 e574 e574
+10443 e575 e575 e575 * * 503e 8ea2d0be,8ea2d0bev 5ee1 e5bba1 5ee1 00005ee1 e575 e575 e575 e575 e575 e575 e575
+10444 e576 e576 e576 * * 503f 8ea2d0bf,8ea2d0bfv 5f49 e5bd89 5f49 00005f49 e576 e576 e576 e576 e576 e576 e576
+10445 e577 e577 e577 * * 5040 8ea2d0c0,8ea2d0c0v 5fb2 e5beb2 5fb2 00005fb2 e577 e577 e577 e577 e577 e577 e577
+10446 e578 e578 e578 * * 5041 8ea2d0c1,8ea2d0c1v 618b e6868b 618b 0000618b e578 e578 e578 e578 e578 e578 e578
+10447 e579 e579 e579 * * 5042 8ea2d0c2,8ea2d0c2v 6183 e68683 6183 00006183 e579 e579 e579 e579 e579 e579 e579
+10448 e57a e57a e57a * * 5043 8ea2d0c3,8ea2d0c3v 6179 e685b9 6179 00006179 e57a e57a e57a e57a e57a e57a e57a
+10449 e57b e57b e57b * * 5044 8ea2d0c4,8ea2d0c4v 61b1 e686b1 61b1 000061b1 e57b e57b e57b e57b e57b e57b e57b
+10450 e57c e57c e57c * * 5045 8ea2d0c5,8ea2d0c5v 61b0 e686b0 61b0 000061b0 e57c e57c e57c e57c e57c e57c e57c
+10451 e57d e57d e57d * * 5046 8ea2d0c6,8ea2d0c6v 61a2 e686a2 61a2 000061a2 e57d e57d e57d e57d e57d e57d e57d
+10452 e57e e57e e57e * * 5047 8ea2d0c7,8ea2d0c7v 6189 e68689 6189 00006189 e57e e57e e57e e57e e57e e57e e57e
+10453 e5a1 e5a1 e5a1 * * 5048 8ea2d0c8,8ea2d0c8v 619b e6869b 619b 0000619b e5a1 e5a1 e5a1 e5a1 e5a1 e5a1 e5a1
+10454 e5a2 e5a2 e5a2 * * 5049 8ea2d0c9,8ea2d0c9v 6193 e68693 6193 00006193 e5a2 e5a2 e5a2 e5a2 e5a2 e5a2 e5a2
+10455 e5a3 e5a3 e5a3 * * 504a 8ea2d0ca,8ea2d0cav 61af e686af 61af 000061af e5a3 e5a3 e5a3 e5a3 e5a3 e5a3 e5a3
+10456 e5a4 e5a4 e5a4 * * 504b 8ea2d0cb,8ea2d0cbv 61ad e686ad 61ad 000061ad e5a4 e5a4 e5a4 e5a4 e5a4 e5a4 e5a4
+10457 e5a5 e5a5 e5a5 * * 504c 8ea2d0cc,8ea2d0ccv 619f e6869f 619f 0000619f e5a5 e5a5 e5a5 e5a5 e5a5 e5a5 e5a5
+10458 e5a6 e5a6 e5a6 * * 504d 8ea2d0cd,8ea2d0cdv 6192 e68692 6192 00006192 e5a6 e5a6 e5a6 e5a6 e5a6 e5a6 e5a6
+10459 e5a7 e5a7 e5a7 * * 504e 8ea2d0ce,8ea2d0cev 61aa e686aa 61aa 000061aa e5a7 e5a7 e5a7 e5a7 e5a7 e5a7 e5a7
+10460 e5a8 e5a8 e5a8 * * 504f 8ea2d0cf,8ea2d0cfv 61a1 e686a1 61a1 000061a1 e5a8 e5a8 e5a8 e5a8 e5a8 e5a8 e5a8
+10461 e5a9 e5a9 e5a9 * * 5050 8ea2d0d0,8ea2d0d0v 618d e6868d 618d 0000618d e5a9 e5a9 e5a9 e5a9 e5a9 e5a9 e5a9
+10462 e5aa e5aa e5aa * * 5051 8ea2d0d1,8ea2d0d1v 6166 e685a6 6166 00006166 e5aa e5aa e5aa e5aa e5aa e5aa e5aa
+10463 e5ab e5ab e5ab * * 5052 8ea2d0d2,8ea2d0d2v 61b3 e686b3 61b3 000061b3 e5ab e5ab e5ab e5ab e5ab e5ab e5ab
+10464 e5ac e5ac e5ac * * 5053 8ea2d0d3,8ea2d0d3v 622d e688ad 622d 0000622d e5ac e5ac e5ac e5ac e5ac e5ac e5ac
+10465 e5ad e5ad e5ad * * 5054 8ea2d0d4,8ea2d0d4v 646e e691ae 646e 0000646e e5ad e5ad e5ad e5ad e5ad e5ad e5ad
+10466 e5ae e5ae e5ae * * 5055 8ea2d0d5,8ea2d0d5v 6470 e691b0 6470 00006470 e5ae e5ae e5ae e5ae e5ae e5ae e5ae
+10467 e5af e5af e5af * * 5056 8ea2d0d6,8ea2d0d6v 6496 e69296 6496 00006496 e5af e5af e5af e5af e5af e5af e5af
+10468 e5b0 e5b0 e5b0 * * 5057 8ea2d0d7,8ea2d0d7v 64a0 e692a0 64a0 000064a0 e5b0 e5b0 e5b0 e5b0 e5b0 e5b0 e5b0
+10469 e5b1 e5b1 e5b1 * * 5058 8ea2d0d8,8ea2d0d8v 6485 e69285 6485 00006485 e5b1 e5b1 e5b1 e5b1 e5b1 e5b1 e5b1
+10470 e5b2 e5b2 e5b2 * * 5059 8ea2d0d9,8ea2d0d9v 6497 e69297 6497 00006497 e5b2 e5b2 e5b2 e5b2 e5b2 e5b2 e5b2
+10471 e5b3 e5b3 e5b3 * * 505a 8ea2d0da,8ea2d0dav 649c e6929c 649c 0000649c e5b3 e5b3 e5b3 e5b3 e5b3 e5b3 e5b3
+10472 e5b4 e5b4 e5b4 * * 505b 8ea2d0db,8ea2d0dbv 648f e6928f 648f 0000648f e5b4 e5b4 e5b4 e5b4 e5b4 e5b4 e5b4
+10473 e5b5 e5b5 e5b5 * * 505c 8ea2d0dc,8ea2d0dcv 648b e6928b 648b 0000648b e5b5 e5b5 e5b5 e5b5 e5b5 e5b5 e5b5
+10474 e5b6 e5b6 e5b6 * * 505d 8ea2d0dd,8ea2d0ddv 648a e6928a 648a 0000648a e5b6 e5b6 e5b6 e5b6 e5b6 e5b6 e5b6
+10475 e5b7 e5b7 e5b7 * * 505e 8ea2d0de,8ea2d0dev 648c e6928c 648c 0000648c e5b7 e5b7 e5b7 e5b7 e5b7 e5b7 e5b7
+10476 e5b8 e5b8 e5b8 * * 505f 8ea2d0df,8ea2d0dfv 64a3 e692a3 64a3 000064a3 e5b8 e5b8 e5b8 e5b8 e5b8 e5b8 e5b8
+10477 e5b9 e5b9 e5b9 * * 5060 8ea2d0e0,8ea2d0e0v 649f e6929f 649f 0000649f e5b9 e5b9 e5b9 e5b9 e5b9 e5b9 e5b9
+10478 e5ba e5ba e5ba * * 5061 8ea2d0e1,8ea2d0e1v 6468 e691a8 6468 00006468 e5ba e5ba e5ba e5ba e5ba e5ba e5ba
+10479 e5bb e5bb e5bb * * 5062 8ea2d0e2,8ea2d0e2v 64b1 e692b1 64b1 000064b1 e5bb e5bb e5bb e5bb e5bb e5bb e5bb
+10480 e5bc e5bc e5bc * * 5063 8ea2d0e3,8ea2d0e3v 6498 e69298 6498 00006498 e5bc e5bc e5bc e5bc e5bc e5bc e5bc
+10481 e5bd e5bd e5bd * * 5064 8ea2d0e4,8ea2d0e4v 6576 e695b6 6576 00006576 e5bd e5bd e5bd e5bd e5bd e5bd e5bd
+10482 e5be e5be e5be * * 5065 8ea2d0e5,8ea2d0e5v 657a e695ba 657a 0000657a e5be e5be e5be e5be e5be e5be e5be
+10483 e5bf e5bf e5bf * * 5066 8ea2d0e6,8ea2d0e6v 6579 e695b9 6579 00006579 e5bf e5bf e5bf e5bf e5bf e5bf e5bf
+10484 e5c0 e5c0 e5c0 * * 5067 8ea2d0e7,8ea2d0e7v 657b e695bb 657b 0000657b e5c0 e5c0 e5c0 e5c0 e5c0 e5c0 e5c0
+10485 e5c1 e5c1 e5c1 * * 5068 8ea2d0e8,8ea2d0e8v 65b2 e696b2 65b2 000065b2 e5c1 e5c1 e5c1 e5c1 e5c1 e5c1 e5c1
+10486 e5c2 e5c2 e5c2 * * 5069 8ea2d0e9,8ea2d0e9v 65b3 e696b3 65b3 000065b3 e5c2 e5c2 e5c2 e5c2 e5c2 e5c2 e5c2
+10487 e5c3 e5c3 e5c3 * * 506a 8ea2d0ea,8ea2d0eav 66b5 e69ab5 66b5 000066b5 e5c3 e5c3 e5c3 e5c3 e5c3 e5c3 e5c3
+10488 e5c4 e5c4 e5c4 * * 506b 8ea2d0eb,8ea2d0ebv 66b0 e69ab0 66b0 000066b0 e5c4 e5c4 e5c4 e5c4 e5c4 e5c4 e5c4
+10489 e5c5 e5c5 e5c5 * * 506c 8ea2d0ec,8ea2d0ecv 66a9 e69aa9 66a9 000066a9 e5c5 e5c5 e5c5 e5c5 e5c5 e5c5 e5c5
+10490 e5c6 e5c6 e5c6 * * 506d 8ea2d0ed,8ea2d0edv 66b2 e69ab2 66b2 000066b2 e5c6 e5c6 e5c6 e5c6 e5c6 e5c6 e5c6
+10491 e5c7 e5c7 e5c7 * * 506e 8ea2d0ee,8ea2d0eev 66b7 e69ab7 66b7 000066b7 e5c7 e5c7 e5c7 e5c7 e5c7 e5c7 e5c7
+10492 e5c8 e5c8 e5c8 * * 506f 8ea2d0ef,8ea2d0efv 66aa e69aaa 66aa 000066aa e5c8 e5c8 e5c8 e5c8 e5c8 e5c8 e5c8
+10493 e5c9 e5c9 e5c9 * * 5070 8ea2d0f0,8ea2d0f0v 66af e69aaf 66af 000066af e5c9 e5c9 e5c9 e5c9 e5c9 e5c9 e5c9
+10494 e5ca e5ca e5ca * * 5071 8ea2d0f1,8ea2d0f1v 6a00 e6a880 6a00 00006a00 e5ca e5ca e5ca e5ca e5ca e5ca e5ca
+10495 e5cb e5cb e5cb * * 5072 8ea2d0f2,8ea2d0f2v 6a06 e6a886 6a06 00006a06 e5cb e5cb e5cb e5cb e5cb e5cb e5cb
+10496 e5cc e5cc e5cc * * 5073 8ea2d0f3,8ea2d0f3v 6a17 e6a897 6a17 00006a17 e5cc e5cc e5cc e5cc e5cc e5cc e5cc
+10497 e5cd e5cd e5cd * * 5074 8ea2d0f4,8ea2d0f4v 69e5 e6a7a5 69e5 000069e5 e5cd e5cd e5cd e5cd e5cd e5cd e5cd
+10498 e5ce e5ce e5ce * * 5075 8ea2d0f5,8ea2d0f5v 69f8 e6a7b8 69f8 000069f8 e5ce e5ce e5ce e5ce e5ce e5ce e5ce
+10499 e5cf e5cf e5cf * * 5076 8ea2d0f6,8ea2d0f6v 6a15 e6a895 6a15 00006a15 e5cf e5cf e5cf e5cf e5cf e5cf e5cf
+10500 e5d0 e5d0 e5d0 * * 5077 8ea2d0f7,8ea2d0f7v 69f1 e6a7b1 69f1 000069f1 e5d0 e5d0 e5d0 e5d0 e5d0 e5d0 e5d0
+10501 e5d1 e5d1 e5d1 * * 5078 8ea2d0f8,8ea2d0f8v 69e4 e6a7a4 69e4 000069e4 e5d1 e5d1 e5d1 e5d1 e5d1 e5d1 e5d1
+10502 e5d2 e5d2 e5d2 * * 5079 8ea2d0f9,8ea2d0f9v 6a20 e6a8a0 6a20 00006a20 e5d2 e5d2 e5d2 e5d2 e5d2 e5d2 e5d2
+10503 e5d3 e5d3 e5d3 * * 507a 8ea2d0fa,8ea2d0fav 69ff e6a7bf 69ff 000069ff e5d3 e5d3 e5d3 e5d3 e5d3 e5d3 e5d3
+10504 e5d4 e5d4 e5d4 * * 507b 8ea2d0fb,8ea2d0fbv 69ec e6a7ac 69ec 000069ec e5d4 e5d4 e5d4 e5d4 e5d4 e5d4 e5d4
+10505 e5d5 e5d5 e5d5 * * 507c 8ea2d0fc,8ea2d0fcv 69e2 e6a7a2 69e2 000069e2 e5d5 e5d5 e5d5 e5d5 e5d5 e5d5 e5d5
+10506 e5d6 e5d6 e5d6 * * 507d 8ea2d0fd,8ea2d0fdv 6a1b e6a89b 6a1b 00006a1b e5d6 e5d6 e5d6 e5d6 e5d6 e5d6 e5d6
+10507 e5d7 e5d7 e5d7 * * 507e 8ea2d0fe,8ea2d0fev 6a1d e6a89d 6a1d 00006a1d e5d7 e5d7 e5d7 e5d7 e5d7 e5d7 e5d7
+10508 e5d8 e5d8 e5d8 * * 5121 8ea2d1a1,8ea2d1a1v 69fe e6a7be 69fe 000069fe e5d8 e5d8 e5d8 e5d8 e5d8 e5d8 e5d8
+10509 e5d9 e5d9 e5d9 * * 5122 8ea2d1a2,8ea2d1a2v 6a27 e6a8a7 6a27 00006a27 e5d9 e5d9 e5d9 e5d9 e5d9 e5d9 e5d9
+10510 e5da e5da e5da * * 5123 8ea2d1a3,8ea2d1a3v 69f2 e6a7b2 69f2 000069f2 e5da e5da e5da e5da e5da e5da e5da
+10511 e5db e5db e5db * * 5124 8ea2d1a4,8ea2d1a4v 69ee e6a7ae 69ee 000069ee e5db e5db e5db e5db e5db e5db e5db
+10512 e5dc e5dc e5dc * * 5125 8ea2d1a5,8ea2d1a5v 6a14 e6a894 6a14 00006a14 e5dc e5dc e5dc e5dc e5dc e5dc e5dc
+10513 e5dd e5dd e5dd * * 5126 8ea2d1a6,8ea2d1a6v 69f7 e6a7b7 69f7 000069f7 e5dd e5dd e5dd e5dd e5dd e5dd e5dd
+10514 e5de e5de e5de * * 5127 8ea2d1a7,8ea2d1a7v 69e7 e6a7a7 69e7 000069e7 e5de e5de e5de e5de e5de e5de e5de
+10515 e5df e5df e5df * * 5128 8ea2d1a8,8ea2d1a8v 6a40 e6a980 6a40 00006a40 e5df e5df e5df e5df e5df e5df e5df
+10516 e5e0 e5e0 e5e0 * * 5129 8ea2d1a9,8ea2d1a9v 6a08 e6a888 6a08 00006a08 e5e0 e5e0 e5e0 e5e0 e5e0 e5e0 e5e0
+10517 e5e1 e5e1 e5e1 * * 512a 8ea2d1aa,8ea2d1aav 69e6 e6a7a6 69e6 000069e6 e5e1 e5e1 e5e1 e5e1 e5e1 e5e1 e5e1
+10518 e5e2 e5e2 e5e2 * * 512b 8ea2d1ab,8ea2d1abv 69fb e6a7bb 69fb 000069fb e5e2 e5e2 e5e2 e5e2 e5e2 e5e2 e5e2
+10519 e5e3 e5e3 e5e3 * * 512c 8ea2d1ac,8ea2d1acv 6a0d e6a88d 6a0d 00006a0d e5e3 e5e3 e5e3 e5e3 e5e3 e5e3 e5e3
+10520 e5e4 e5e4 e5e4 * * 512d 8ea2d1ad,8ea2d1adv 69fc e6a7bc 69fc 000069fc e5e4 e5e4 e5e4 e5e4 e5e4 e5e4 e5e4
+10521 e5e5 e5e5 e5e5 * * 512e 8ea2d1ae,8ea2d1aev 69eb e6a7ab 69eb 000069eb e5e5 e5e5 e5e5 e5e5 e5e5 e5e5 e5e5
+10522 e5e6 e5e6 e5e6 * * 512f 8ea2d1af,8ea2d1afv 6a09 e6a889 6a09 00006a09 e5e6 e5e6 e5e6 e5e6 e5e6 e5e6 e5e6
+10523 e5e7 e5e7 e5e7 * * 5130 8ea2d1b0,8ea2d1b0v 6a04 e6a884 6a04 00006a04 e5e7 e5e7 e5e7 e5e7 e5e7 e5e7 e5e7
+10524 e5e8 e5e8 e5e8 * * 5131 8ea2d1b1,8ea2d1b1v 6a18 e6a898 6a18 00006a18 e5e8 e5e8 e5e8 e5e8 e5e8 e5e8 e5e8
+10525 e5e9 e5e9 e5e9 * * 5132 8ea2d1b2,8ea2d1b2v 6a25 e6a8a5 6a25 00006a25 e5e9 e5e9 e5e9 e5e9 e5e9 e5e9 e5e9
+10526 e5ea e5ea e5ea * * 5133 8ea2d1b3,8ea2d1b3v 6a0f e6a88f 6a0f 00006a0f e5ea e5ea e5ea e5ea e5ea e5ea e5ea
+10527 e5eb e5eb e5eb * * 5134 8ea2d1b4,8ea2d1b4v 69f6 e6a7b6 69f6 000069f6 e5eb e5eb e5eb e5eb e5eb e5eb e5eb
+10528 e5ec e5ec e5ec * * 5135 8ea2d1b5,8ea2d1b5v 6a26 e6a8a6 6a26 00006a26 e5ec e5ec e5ec e5ec e5ec e5ec e5ec
+10529 e5ed e5ed e5ed * * 5136 8ea2d1b6,8ea2d1b6v 6a07 e6a887 6a07 00006a07 e5ed e5ed e5ed e5ed e5ed e5ed e5ed
+10530 e5ee e5ee e5ee * * 5137 8ea2d1b7,8ea2d1b7v 69f4 e6a7b4 69f4 000069f4 e5ee e5ee e5ee e5ee e5ee e5ee e5ee
+10531 e5ef e5ef e5ef * * 5138 8ea2d1b8,8ea2d1b8v 6a16 e6a896 6a16 00006a16 e5ef e5ef e5ef e5ef e5ef e5ef e5ef
+10532 e5f0 e5f0 e5f0 * * 5139 8ea2d1b9,8ea2d1b9v 6b51 e6ad91 6b51 00006b51 e5f0 e5f0 e5f0 e5f0 e5f0 e5f0 e5f0
+10533 e5f1 e5f1 e5f1 * * 513a 8ea2d1ba,8ea2d1bav 6ba5 e6aea5 6ba5 00006ba5 e5f1 e5f1 e5f1 e5f1 e5f1 e5f1 e5f1
+10534 e5f2 e5f2 e5f2 * * 513b 8ea2d1bb,8ea2d1bbv 6ba3 e6aea3 6ba3 00006ba3 e5f2 e5f2 e5f2 e5f2 e5f2 e5f2 e5f2
+10535 e5f3 e5f3 e5f3 * * 513c 8ea2d1bc,8ea2d1bcv 6ba2 e6aea2 6ba2 00006ba2 e5f3 e5f3 e5f3 e5f3 e5f3 e5f3 e5f3
+10536 e5f4 e5f4 e5f4 * * 513d 8ea2d1bd,8ea2d1bdv 6ba6 e6aea6 6ba6 00006ba6 e5f4 e5f4 e5f4 e5f4 e5f4 e5f4 e5f4
+10537 e5f5 e5f5 e5f5 * * 513e 8ea2d1be,8ea2d1bev 6c01 e6b081 6c01 00006c01 e5f5 e5f5 e5f5 e5f5 e5f5 e5f5 e5f5
+10538 e5f6 e5f6 e5f6 * * 513f 8ea2d1bf,8ea2d1bfv 6c00 e6b080 6c00 00006c00 e5f6 e5f6 e5f6 e5f6 e5f6 e5f6 e5f6
+10539 e5f7 e5f7 e5f7 * * 5140 8ea2d1c0,8ea2d1c0v 6bff e6afbf 6bff 00006bff e5f7 e5f7 e5f7 e5f7 e5f7 e5f7 e5f7
+10540 e5f8 e5f8 e5f8 * * 5141 8ea2d1c1,8ea2d1c1v 6c02 e6b082 6c02 00006c02 e5f8 e5f8 e5f8 e5f8 e5f8 e5f8 e5f8
+10541 e5f9 e5f9 e5f9 * * 5142 8ea2d1c2,8ea2d1c2v 6f41 e6bd81 6f41 00006f41 e5f9 e5f9 e5f9 e5f9 e5f9 e5f9 e5f9
+10542 e5fa e5fa e5fa * * 5143 8ea2d1c3,8ea2d1c3v 6f26 e6bca6 6f26 00006f26 e5fa e5fa e5fa e5fa e5fa e5fa e5fa
+10543 e5fb e5fb e5fb * * 5144 8ea2d1c4,8ea2d1c4v 6f7e e6bdbe 6f7e 00006f7e e5fb e5fb e5fb e5fb e5fb e5fb e5fb
+10544 e5fc e5fc e5fc * * 5145 8ea2d1c5,8ea2d1c5v 6f87 e6be87 6f87 00006f87 e5fc e5fc e5fc e5fc e5fc e5fc e5fc
+10545 e5fd e5fd e5fd * * 5146 8ea2d1c6,8ea2d1c6v 6fc6 e6bf86 6fc6 00006fc6 e5fd e5fd e5fd e5fd e5fd e5fd e5fd
+10546 e5fe e5fe e5fe * * 5147 8ea2d1c7,8ea2d1c7v 6f92 e6be92 6f92 00006f92 e5fe e5fe e5fe e5fe e5fe e5fe e5fe
+10547 e640 e640 e640 * * 5148 8ea2d1c8,8ea2d1c8v 6f8d e6be8d 6f8d 00006f8d e640 e640 e640 e640 e640 e640 e640
+10548 e641 e641 e641 * * 5149 8ea2d1c9,8ea2d1c9v 6f89 e6be89 6f89 00006f89 e641 e641 e641 e641 e641 e641 e641
+10549 e642 e642 e642 * * 514a 8ea2d1ca,8ea2d1cav 6f8c e6be8c 6f8c 00006f8c e642 e642 e642 e642 e642 e642 e642
+10550 e643 e643 e643 * * 514b 8ea2d1cb,8ea2d1cbv 6f62 e6bda2 6f62 00006f62 e643 e643 e643 e643 e643 e643 e643
+10551 e644 e644 e644 * * 514c 8ea2d1cc,8ea2d1ccv 6f4f e6bd8f 6f4f 00006f4f e644 e644 e644 e644 e644 e644 e644
+10552 e645 e645 e645 * * 514d 8ea2d1cd,8ea2d1cdv 6f85 e6be85 6f85 00006f85 e645 e645 e645 e645 e645 e645 e645
+10553 e646 e646 e646 * * 514e 8ea2d1ce,8ea2d1cev 6f5a e6bd9a 6f5a 00006f5a e646 e646 e646 e646 e646 e646 e646
+10554 e647 e647 e647 * * 514f 8ea2d1cf,8ea2d1cfv 6f96 e6be96 6f96 00006f96 e647 e647 e647 e647 e647 e647 e647
+10555 e648 e648 e648 * * 5150 8ea2d1d0,8ea2d1d0v 6f76 e6bdb6 6f76 00006f76 e648 e648 e648 e648 e648 e648 e648
+10556 e649 e649 e649 * * 5151 8ea2d1d1,8ea2d1d1v 6f6c e6bdac 6f6c 00006f6c e649 e649 e649 e649 e649 e649 e649
+10557 e64a e64a e64a * * 5152 8ea2d1d2,8ea2d1d2v 6f82 e6be82 6f82 00006f82 e64a e64a e64a e64a e64a e64a e64a
+10558 e64b e64b e64b * * 5153 8ea2d1d3,8ea2d1d3v 6f55 e6bd95 6f55 00006f55 e64b e64b e64b e64b e64b e64b e64b
+10559 e64c e64c e64c * * 5154 8ea2d1d4,8ea2d1d4v 6f72 e6bdb2 6f72 00006f72 e64c e64c e64c e64c e64c e64c e64c
+10560 e64d e64d e64d * * 5155 8ea2d1d5,8ea2d1d5v 6f52 e6bd92 6f52 00006f52 e64d e64d e64d e64d e64d e64d e64d
+10561 e64e e64e e64e * * 5156 8ea2d1d6,8ea2d1d6v 6f50 e6bd90 6f50 00006f50 e64e e64e e64e e64e e64e e64e e64e
+10562 e64f e64f e64f * * 5157 8ea2d1d7,8ea2d1d7v 6f57 e6bd97 6f57 00006f57 e64f e64f e64f e64f e64f e64f e64f
+10563 e650 e650 e650 * * 5158 8ea2d1d8,8ea2d1d8v 6f94 e6be94 6f94 00006f94 e650 e650 e650 e650 e650 e650 e650
+10564 e651 e651 e651 * * 5159 8ea2d1d9,8ea2d1d9v 6f93 e6be93 6f93 00006f93 e651 e651 e651 e651 e651 e651 e651
+10565 e652 e652 e652 * * 515a 8ea2d1da,8ea2d1dav 6f5d e6bd9d 6f5d 00006f5d e652 e652 e652 e652 e652 e652 e652
+10566 e653 e653 e653 * * 515b 8ea2d1db,8ea2d1dbv 6f00 e6bc80 6f00 00006f00 e653 e653 e653 e653 e653 e653 e653
+10567 e654 e654 e654 * * 515c 8ea2d1dc,8ea2d1dcv 6f61 e6bda1 6f61 00006f61 e654 e654 e654 e654 e654 e654 e654
+10568 e655 e655 e655 * * 515d 8ea2d1dd,8ea2d1ddv 6f6b e6bdab 6f6b 00006f6b e655 e655 e655 e655 e655 e655 e655
+10569 e656 e656 e656 * * 515e 8ea2d1de,8ea2d1dev 6f7d e6bdbd 6f7d 00006f7d e656 e656 e656 e656 e656 e656 e656
+10570 e657 e657 e657 * * 515f 8ea2d1df,8ea2d1dfv 6f67 e6bda7 6f67 00006f67 e657 e657 e657 e657 e657 e657 e657
+10571 e658 e658 e658 * * 5160 8ea2d1e0,8ea2d1e0v 6f90 e6be90 6f90 00006f90 e658 e658 e658 e658 e658 e658 e658
+10572 e659 e659 e659 * * 5161 8ea2d1e1,8ea2d1e1v 6f53 e6bd93 6f53 00006f53 e659 e659 e659 e659 e659 e659 e659
+10573 e65a e65a e65a * * 5162 8ea2d1e2,8ea2d1e2v 6f8b e6be8b 6f8b 00006f8b e65a e65a e65a e65a e65a e65a e65a
+10574 e65b e65b e65b * * 5163 8ea2d1e3,8ea2d1e3v 6f69 e6bda9 6f69 00006f69 e65b e65b e65b e65b e65b e65b e65b
+10575 e65c e65c e65c * * 5164 8ea2d1e4,8ea2d1e4v 6f7f e6bdbf 6f7f 00006f7f e65c e65c e65c e65c e65c e65c e65c
+10576 e65d e65d e65d * * 5165 8ea2d1e5,8ea2d1e5v 6f95 e6be95 6f95 00006f95 e65d e65d e65d e65d e65d e65d e65d
+10577 e65e e65e e65e * * 5166 8ea2d1e6,8ea2d1e6v 6f63 e6bda3 6f63 00006f63 e65e e65e e65e e65e e65e e65e e65e
+10578 e65f e65f e65f * * 5167 8ea2d1e7,8ea2d1e7v 6f77 e6bdb7 6f77 00006f77 e65f e65f e65f e65f e65f e65f e65f
+10579 e660 e660 e660 * * 5168 8ea2d1e8,8ea2d1e8v 6f6a e6bdaa 6f6a 00006f6a e660 e660 e660 e660 e660 e660 e660
+10580 e661 e661 e661 * * 5169 8ea2d1e9,8ea2d1e9v 6f7b e6bdbb 6f7b 00006f7b e661 e661 e661 e661 e661 e661 e661
+10581 e662 e662 e662 * * 516a 8ea2d1ea,8ea2d1eav 71b2 e786b2 71b2 000071b2 e662 e662 e662 e662 e662 e662 e662
+10582 e663 e663 e663 * * 516b 8ea2d1eb,8ea2d1ebv 71af e786af 71af 000071af e663 e663 e663 e663 e663 e663 e663
+10583 e664 e664 e664 * * 516c 8ea2d1ec,8ea2d1ecv 719b e7869b 719b 0000719b e664 e664 e664 e664 e664 e664 e664
+10584 e665 e665 e665 * * 516d 8ea2d1ed,8ea2d1edv 71b0 e786b0 71b0 000071b0 e665 e665 e665 e665 e665 e665 e665
+10585 e666 e666 e666 * * 516e 8ea2d1ee,8ea2d1eev 71a0 e786a0 71a0 000071a0 e666 e666 e666 e666 e666 e666 e666
+10586 e667 e667 e667 * * 516f 8ea2d1ef,8ea2d1efv 719a e7869a 719a 0000719a e667 e667,fce8 91d5,e667 e667 e667 e667 e667
+10587 e668 e668 e668 * * 5170 8ea2d1f0,8ea2d1f0v 71a9 e786a9 71a9 000071a9 e668 e668 e668 e668 e668 e668 e668
+10588 e669 e669 e669 * * 5171 8ea2d1f1,8ea2d1f1v 71b5 e786b5 71b5 000071b5 e669 e669 e669 e669 e669 e669 e669
+10589 e66a e66a e66a * * 5172 8ea2d1f2,8ea2d1f2v 719d e7869d 719d 0000719d e66a e66a e66a e66a e66a e66a e66a
+10590 e66b e66b e66b * * 5173 8ea2d1f3,8ea2d1f3v 71a5 e786a5 71a5 000071a5 e66b e66b e66b e66b e66b e66b e66b
+10591 e66c e66c e66c * * 5174 8ea2d1f4,8ea2d1f4v 719e e7869e 719e 0000719e e66c e66c e66c e66c e66c e66c e66c
+10592 e66d e66d e66d * * 5175 8ea2d1f5,8ea2d1f5v 71a4 e786a4 71a4 000071a4 e66d e66d e66d e66d e66d e66d e66d
+10593 e66e e66e e66e * * 5176 8ea2d1f6,8ea2d1f6v 71a1 e786a1 71a1 000071a1 e66e e66e e66e e66e e66e e66e e66e
+10594 e66f e66f e66f * * 5177 8ea2d1f7,8ea2d1f7v 71aa e786aa 71aa 000071aa e66f e66f e66f e66f e66f e66f e66f
+10595 e670 e670 e670 * * 5178 8ea2d1f8,8ea2d1f8v 719c e7869c 719c 0000719c e670 e670 e670 e670 e670 e670 e670
+10596 e671 e671 e671 * * 5179 8ea2d1f9,8ea2d1f9v 71a7 e786a7 71a7 000071a7 e671 e671 e671 e671 e671 e671 e671
+10597 e672 e672 e672 * * 517a 8ea2d1fa,8ea2d1fav 71b3 e786b3 71b3 000071b3 e672 e672 e672 e672 e672 e672 e672
+10598 e673 e673 e673 * * 517b 8ea2d1fb,8ea2d1fbv 7298 e78a98 7298 00007298 e673 e673 e673 e673 e673 e673 e673
+10599 e674 e674 e674 * * 517c 8ea2d1fc,8ea2d1fcv 729a e78a9a 729a 0000729a e674 e674 e674 e674 e674 e674 e674
+10600 e675 e675 e675 * * 517d 8ea2d1fd,8ea2d1fdv 7358 e78d98 7358 00007358 e675 e675 e675 e675 e675 e675 e675
+10601 e676 e676 e676 * * 517e 8ea2d1fe,8ea2d1fev 7352 e78d92 7352 00007352 e676 e676 e676 e676 e676 e676 e676
+10602 e677 e677 e677 * * 5221 8ea2d2a1,8ea2d2a1v 735e e78d9e 735e 0000735e e677 e677 e677 e677 e677 e677 e677
+10603 e678 e678 e678 * * 5222 8ea2d2a2,8ea2d2a2v 735f e78d9f 735f 0000735f e678 e678 e678 e678 e678 e678 e678
+10604 e679 e679 e679 * * 5223 8ea2d2a3,8ea2d2a3v 7360 e78da0 7360 00007360 e679 e679 e679 e679 e679 e679 e679
+10605 e67a e67a e67a * * 5224 8ea2d2a4,8ea2d2a4v 735d e78d9d 735d 0000735d e67a e67a e67a e67a e67a e67a e67a
+10606 e67b e67b e67b * * 5225 8ea2d2a5,8ea2d2a5v 735b e78d9b 735b 0000735b e67b e67b e67b e67b e67b e67b e67b
+10607 e67c e67c e67c * * 5226 8ea2d2a6,8ea2d2a6v 7361 e78da1 7361 00007361 e67c e67c e67c e67c e67c e67c e67c
+10608 e67d e67d e67d * * 5227 8ea2d2a7,8ea2d2a7v 735a e78d9a 735a 0000735a e67d e67d e67d e67d e67d e67d e67d
+10609 e67e e67e e67e * * 5228 8ea2d2a8,8ea2d2a8v 7359 e78d99 7359 00007359 e67e e67e e67e e67e e67e e67e e67e
+10610 e6a1 e6a1 e6a1 * * 5229 8ea2d2a9,8ea2d2a9v 7362 e78da2 7362 00007362 e6a1 e6a1 e6a1 e6a1 e6a1 e6a1 e6a1
+10611 e6a2 e6a2 e6a2 * * 522a 8ea2d2aa,8ea2d2aav 7487 e79287 7487 00007487 e6a2 e6a2 e6a2 e6a2 e6a2 e6a2 e6a2
+10612 e6a3 e6a3 e6a3 * * 522b 8ea2d2ab,8ea2d2abv 7489 e79289 7489 00007489 e6a3 e6a3 e6a3 e6a3 e6a3 e6a3 e6a3
+10613 e6a4 e6a4 e6a4 * * 522c 8ea2d2ac,8ea2d2acv 748a e7928a 748a 0000748a e6a4 e6a4 e6a4 e6a4 e6a4 e6a4 e6a4
+10614 e6a5 e6a5 e6a5 * * 522d 8ea2d2ad,8ea2d2adv 7486 e79286 7486 00007486 e6a5 e6a5 e6a5 e6a5 e6a5 e6a5 e6a5
+10615 e6a6 e6a6 e6a6 * * 522e 8ea2d2ae,8ea2d2aev 7481 e79281 7481 00007481 e6a6 e6a6 e6a6 e6a6 e6a6 e6a6 e6a6
+10616 e6a7 e6a7 e6a7 * * 522f 8ea2d2af,8ea2d2afv 747d e791bd 747d 0000747d e6a7 e6a7 e6a7 e6a7 e6a7 e6a7 e6a7
+10617 e6a8 e6a8 e6a8 * * 5230 8ea2d2b0,8ea2d2b0v 7485 e79285 7485 00007485 e6a8 e6a8 e6a8 e6a8 e6a8 e6a8 e6a8
+10618 e6a9 e6a9 e6a9 * * 5231 8ea2d2b1,8ea2d2b1v 7488 e79288 7488 00007488 e6a9 e6a9 e6a9 e6a9 e6a9 e6a9 e6a9
+10619 e6aa e6aa e6aa * * 5232 8ea2d2b2,8ea2d2b2v 747c e791bc 747c 0000747c e6aa e6aa e6aa e6aa e6aa e6aa e6aa
+10620 e6ab e6ab e6ab * * 5233 8ea2d2b3,8ea2d2b3v 7479 e791b9,ee97b4 7479,e5f4 00007479,0000e5f4 92d1,e6ab e6ab e6ab e6ab e6ab e6ab 92d1,e6ab
+10621 e6ac e6ac e6ac * * 5234 8ea2d2b4,8ea2d2b4v 7508 e79488 7508 00007508 e6ac e6ac e6ac e6ac e6ac e6ac e6ac
+10622 e6ad e6ad e6ad * * 5235 8ea2d2b5,8ea2d2b5v 7507 e79487 7507 00007507 e6ad e6ad e6ad e6ad e6ad e6ad e6ad
+10623 e6ae e6ae e6ae * * 5236 8ea2d2b6,8ea2d2b6v 757e e795be 757e 0000757e e6ae e6ae e6ae e6ae e6ae e6ae e6ae
+10624 e6af e6af e6af * * 5237 8ea2d2b7,8ea2d2b7v 7625 e798a5 7625 00007625 e6af e6af e6af e6af e6af e6af e6af
+10625 e6b0 e6b0 e6b0 * * 5238 8ea2d2b8,8ea2d2b8v 761e e7989e 761e 0000761e e6b0 e6b0 e6b0 e6b0 e6b0 e6b0 e6b0
+10626 e6b1 e6b1 e6b1 * * 5239 8ea2d2b9,8ea2d2b9v 7619 e79899 7619 00007619 e6b1 e6b1 e6b1 e6b1 e6b1 e6b1 e6b1
+10627 e6b2 e6b2 e6b2 * * 523a 8ea2d2ba,8ea2d2bav 761d e7989d 761d 0000761d e6b2 e6b2 e6b2 e6b2 e6b2 e6b2 e6b2
+10628 e6b3 e6b3 e6b3 * * 523b 8ea2d2bb,8ea2d2bbv 761c e7989c 761c 0000761c e6b3 e6b3 e6b3 e6b3 e6b3 e6b3 e6b3
+10629 e6b4 e6b4 e6b4 * * 523c 8ea2d2bc,8ea2d2bcv 7623 e798a3 7623 00007623 e6b4 e6b4 e6b4 e6b4 e6b4 e6b4 e6b4
+10630 e6b5 e6b5 e6b5 * * 523d 8ea2d2bd,8ea2d2bdv 761a e7989a 761a 0000761a e6b5 e6b5 e6b5 e6b5 e6b5 e6b5 e6b5
+10631 e6b6 e6b6 e6b6 * * 523e 8ea2d2be,8ea2d2bev 7628 e798a8 7628 00007628 e6b6 e6b6 e6b6 e6b6 e6b6 e6b6 e6b6
+10632 e6b7 e6b7 e6b7 * * 523f 8ea2d2bf,8ea2d2bfv 761b e7989b 761b 0000761b e6b7 e6b7 e6b7 e6b7 e6b7 e6b7 e6b7
+10633 e6b8 e6b8 e6b8 * * 5240 8ea2d2c0,8ea2d2c0v 769c e79a9c 769c 0000769c e6b8 e6b8 e6b8 e6b8 e6b8 e6b8 e6b8
+10634 e6b9 e6b9 e6b9 * * 5241 8ea2d2c1,8ea2d2c1v 769d e79a9d 769d 0000769d e6b9 e6b9 e6b9 e6b9 e6b9 e6b9 e6b9
+10635 e6ba e6ba e6ba * * 5242 8ea2d2c2,8ea2d2c2v 769e e79a9e 769e 0000769e e6ba e6ba e6ba e6ba e6ba e6ba e6ba
+10636 e6bb e6bb e6bb * * 5243 8ea2d2c3,8ea2d2c3v 769b e79a9b 769b 0000769b e6bb e6bb e6bb e6bb e6bb e6bb e6bb
+10637 e6bc e6bc e6bc * * 5244 8ea2d2c4,8ea2d2c4v 778d e79e8d 778d 0000778d e6bc e6bc e6bc e6bc e6bc e6bc e6bc
+10638 e6bd e6bd e6bd * * 5245 8ea2d2c5,8ea2d2c5v 778f e79e8f 778f 0000778f e6bd e6bd e6bd e6bd e6bd e6bd e6bd
+10639 e6be e6be e6be * * 5246 8ea2d2c6,8ea2d2c6v 7789 e79e89 7789 00007789 e6be e6be e6be e6be e6be e6be e6be
+10640 e6bf e6bf e6bf * * 5247 8ea2d2c7,8ea2d2c7v 7788 e79e88 7788 00007788 e6bf e6bf e6bf e6bf e6bf e6bf e6bf
+10641 e6c0 e6c0 e6c0 * * 5248 8ea2d2c8,8ea2d2c8v 78cd e7a38d 78cd 000078cd e6c0 e6c0 e6c0 e6c0 e6c0 e6c0 e6c0
+10642 e6c1 e6c1 e6c1 * * 5249 8ea2d2c9,8ea2d2c9v 78bb e7a2bb 78bb 000078bb e6c1 e6c1 e6c1 e6c1 e6c1 e6c1 e6c1
+10643 e6c2 e6c2 e6c2 * * 524a 8ea2d2ca,8ea2d2cav 78cf e7a38f 78cf 000078cf e6c2 e6c2 e6c2 e6c2 e6c2 e6c2 e6c2
+10644 e6c3 e6c3 e6c3 * * 524b 8ea2d2cb,8ea2d2cbv 78cc e7a38c 78cc 000078cc e6c3 e6c3 e6c3 e6c3 e6c3 e6c3 e6c3
+10645 e6c4 e6c4 e6c4 * * 524c 8ea2d2cc,8ea2d2ccv 78d1 e7a391 78d1 000078d1 e6c4 e6c4 e6c4 e6c4 e6c4 e6c4 e6c4
+10646 e6c5 e6c5 e6c5 * * 524d 8ea2d2cd,8ea2d2cdv 78ce e7a38e 78ce 000078ce e6c5 e6c5 e6c5 e6c5 e6c5 e6c5 e6c5
+10647 e6c6 e6c6 e6c6 * * 524e 8ea2d2ce,8ea2d2cev 78d4 e7a394 78d4 000078d4 e6c6 e6c6 e6c6 e6c6 e6c6 e6c6 e6c6
+10648 e6c7 e6c7 e6c7 * * 524f 8ea2d2cf,8ea2d2cfv 78c8 e7a388 78c8 000078c8 e6c7 e6c7 e6c7 e6c7 e6c7 e6c7 e6c7
+10649 e6c8 e6c8 e6c8 * * 5250 8ea2d2d0,8ea2d2d0v 78c3 e7a383 78c3 000078c3 e6c8 e6c8 e6c8 e6c8 e6c8 e6c8 e6c8
+10650 e6c9 e6c9 e6c9 * * 5251 8ea2d2d1,8ea2d2d1v 78c4 e7a384 78c4 000078c4 e6c9 e6c9 e6c9 e6c9 e6c9 e6c9 e6c9
+10651 e6ca e6ca e6ca * * 5252 8ea2d2d2,8ea2d2d2v 78c9 e7a389 78c9 000078c9 e6ca e6ca e6ca e6ca e6ca e6ca e6ca
+10652 e6cb e6cb e6cb * * 5253 8ea2d2d3,8ea2d2d3v 799a e7a69a 799a 0000799a e6cb e6cb e6cb e6cb e6cb e6cb e6cb
+10653 e6cc e6cc e6cc * * 5254 8ea2d2d4,8ea2d2d4v 79a1 e7a6a1 79a1 000079a1 e6cc e6cc e6cc e6cc e6cc e6cc e6cc
+10654 e6cd e6cd e6cd * * 5255 8ea2d2d5,8ea2d2d5v 79a0 e7a6a0 79a0 000079a0 e6cd e6cd e6cd e6cd e6cd e6cd e6cd
+10655 e6ce e6ce e6ce * * 5256 8ea2d2d6,8ea2d2d6v 799c e7a69c 799c 0000799c e6ce e6ce e6ce e6ce e6ce e6ce e6ce
+10656 e6cf e6cf e6cf * * 5257 8ea2d2d7,8ea2d2d7v 79a2 e7a6a2 79a2 000079a2 e6cf e6cf e6cf e6cf e6cf e6cf e6cf
+10657 e6d0 e6d0 e6d0 * * 5258 8ea2d2d8,8ea2d2d8v 799b e7a69b,ee9ca7 799b,e727 0000799b,0000e727 94ca,e6d0 e6d0 e6d0 e6d0 e6d0 e6d0 94ca,e6d0
+10658 e6d1 e6d1 e6d1 * * 5259 8ea2d2d9,8ea2d2d9v 6b76 e6adb6 6b76 00006b76 e6d1 e6d1 e6d1 e6d1 e6d1 e6d1 e6d1
+10659 e6d2 e6d2 e6d2 * * 525a 8ea2d2da,8ea2d2dav 7a39 e7a8b9 7a39 00007a39 e6d2 e6d2 e6d2 e6d2 e6d2 e6d2 e6d2
+10660 e6d3 e6d3 e6d3 * * 525b 8ea2d2db,8ea2d2dbv 7ab2 e7aab2 7ab2 00007ab2 e6d3 e6d3 e6d3 e6d3 e6d3 e6d3 e6d3
+10661 e6d4 e6d4 e6d4 * * 525c 8ea2d2dc,8ea2d2dcv 7ab4 e7aab4 7ab4 00007ab4 e6d4 e6d4 e6d4 e6d4 e6d4 e6d4 e6d4
+10662 e6d5 e6d5 e6d5 * * 525d 8ea2d2dd,8ea2d2ddv 7ab3 e7aab3 7ab3 00007ab3 e6d5 e6d5 e6d5 e6d5 e6d5 e6d5 e6d5
+10663 e6d6 e6d6 e6d6 * * 525e 8ea2d2de,8ea2d2dev 7bb7 e7aeb7 7bb7 00007bb7 e6d6 e6d6 e6d6 e6d6 e6d6 e6d6 e6d6
+10664 e6d7 e6d7 e6d7 * * 525f 8ea2d2df,8ea2d2dfv 7bcb e7af8b 7bcb 00007bcb e6d7 e6d7 e6d7 e6d7 e6d7 e6d7 e6d7
+10665 e6d8 e6d8 e6d8 * * 5260 8ea2d2e0,8ea2d2e0v 7bbe e7aebe 7bbe 00007bbe e6d8 e6d8 e6d8 e6d8 e6d8 e6d8 e6d8
+10666 e6d9 e6d9 e6d9 * * 5261 8ea2d2e1,8ea2d2e1v 7bac e7aeac 7bac 00007bac e6d9 e6d9 e6d9 e6d9 e6d9 e6d9 e6d9
+10667 e6da e6da e6da * * 5262 8ea2d2e2,8ea2d2e2v 7bce e7af8e 7bce 00007bce e6da e6da e6da e6da e6da e6da e6da
+10668 e6db e6db e6db * * 5263 8ea2d2e3,8ea2d2e3v 7baf e7aeaf 7baf 00007baf e6db e6db e6db e6db e6db e6db e6db
+10669 e6dc e6dc e6dc * * 5264 8ea2d2e4,8ea2d2e4v 7bb9 e7aeb9 7bb9 00007bb9 e6dc e6dc e6dc e6dc e6dc e6dc e6dc
+10670 e6dd e6dd e6dd * * 5265 8ea2d2e5,8ea2d2e5v 7bca e7af8a 7bca 00007bca e6dd e6dd e6dd e6dd e6dd e6dd e6dd
+10671 e6de e6de e6de * * 5266 8ea2d2e6,8ea2d2e6v 7bb5 e7aeb5 7bb5 00007bb5 e6de e6de e6de e6de e6de e6de e6de
+10672 e6df e6df e6df * * 5267 8ea2d2e7,8ea2d2e7v 7cc5 e7b385 7cc5 00007cc5 e6df e6df e6df e6df e6df e6df e6df
+10673 e6e0 e6e0 e6e0 * * 5268 8ea2d2e8,8ea2d2e8v 7cc8 e7b388 7cc8 00007cc8 e6e0 e6e0 e6e0 e6e0 e6e0 e6e0 e6e0
+10674 e6e1 e6e1 e6e1 * * 5269 8ea2d2e9,8ea2d2e9v 7ccc e7b38c 7ccc 00007ccc e6e1 e6e1 e6e1 e6e1 e6e1 e6e1 e6e1
+10675 e6e2 e6e2 e6e2 * * 526a 8ea2d2ea,8ea2d2eav 7ccb e7b38b 7ccb 00007ccb e6e2 e6e2 e6e2 e6e2 e6e2 e6e2 e6e2
+10676 e6e3 e6e3 e6e3 * * 526b 8ea2d2eb,8ea2d2ebv 7df7 e7b7b7 7df7 00007df7 e6e3 e6e3 e6e3 e6e3 e6e3 e6e3 e6e3
+10677 e6e4 e6e4 e6e4 * * 526c 8ea2d2ec,8ea2d2ecv 7ddb e7b79b 7ddb 00007ddb e6e4 e6e4 e6e4 e6e4 e6e4 e6e4 e6e4
+10678 e6e5 e6e5 e6e5 * * 526d 8ea2d2ed,8ea2d2edv 7dea e7b7aa 7dea 00007dea e6e5 e6e5 e6e5 e6e5 e6e5 e6e5 e6e5
+10679 e6e6 e6e6 e6e6 * * 526e 8ea2d2ee,8ea2d2eev 7de7 e7b7a7 7de7 00007de7 e6e6 e6e6 e6e6 e6e6 e6e6 e6e6 e6e6
+10680 e6e7 e6e7 e6e7 * * 526f 8ea2d2ef,8ea2d2efv 7dd7 e7b797 7dd7 00007dd7 e6e7 e6e7 e6e7 e6e7 e6e7 e6e7 e6e7
+10681 e6e8 e6e8 e6e8 * * 5270 8ea2d2f0,8ea2d2f0v 7de1 e7b7a1 7de1 00007de1 e6e8 e6e8 e6e8 e6e8 e6e8 e6e8 e6e8
+10682 e6e9 e6e9 e6e9 * * 5271 8ea2d2f1,8ea2d2f1v 7e03 e7b883 7e03 00007e03 e6e9 e6e9 e6e9 e6e9 e6e9 e6e9 e6e9
+10683 e6ea e6ea e6ea * * 5272 8ea2d2f2,8ea2d2f2v 7dfa e7b7ba 7dfa 00007dfa e6ea e6ea e6ea e6ea e6ea e6ea e6ea
+10684 e6eb e6eb e6eb * * 5273 8ea2d2f3,8ea2d2f3v 7de6 e7b7a6 7de6 00007de6 e6eb e6eb e6eb e6eb e6eb e6eb e6eb
+10685 e6ec e6ec e6ec * * 5274 8ea2d2f4,8ea2d2f4v 7df6 e7b7b6 7df6 00007df6 e6ec e6ec e6ec e6ec e6ec e6ec e6ec
+10686 e6ed e6ed e6ed * * 5275 8ea2d2f5,8ea2d2f5v 7df1 e7b7b1 7df1 00007df1 e6ed e6ed e6ed e6ed e6ed e6ed e6ed
+10687 e6ee e6ee e6ee * * 5276 8ea2d2f6,8ea2d2f6v 7df0 e7b7b0 7df0 00007df0 e6ee e6ee e6ee e6ee e6ee e6ee e6ee
+10688 e6ef e6ef e6ef * * 5277 8ea2d2f7,8ea2d2f7v 7dee e7b7ae 7dee 00007dee e6ef e6ef e6ef e6ef e6ef e6ef e6ef
+10689 e6f0 e6f0 e6f0 * * 5278 8ea2d2f8,8ea2d2f8v 7ddf e7b79f 7ddf 00007ddf e6f0 e6f0 e6f0 e6f0 e6f0 e6f0 e6f0
+10690 e6f1 e6f1 e6f1 * * 5279 8ea2d2f9,8ea2d2f9v 7f76 e7bdb6 7f76 00007f76 e6f1 e6f1 e6f1 e6f1 e6f1 e6f1 e6f1
+10691 e6f2 e6f2 e6f2 * * 527a 8ea2d2fa,8ea2d2fav 7fac e7beac 7fac 00007fac e6f2 e6f2 e6f2 e6f2 e6f2 e6f2 e6f2
+10692 e6f3 e6f3 e6f3 * * 527b 8ea2d2fb,8ea2d2fbv 7fb0 e7beb0 7fb0 00007fb0 e6f3 e6f3 e6f3 e6f3 e6f3 e6f3 e6f3
+10693 e6f4 e6f4 e6f4 * * 527c 8ea2d2fc,8ea2d2fcv 7fad e7bead 7fad 00007fad e6f4 e6f4 e6f4 e6f4 e6f4 e6f4 e6f4
+10694 e6f5 e6f5 e6f5 * * 527d 8ea2d2fd,8ea2d2fdv 7fed e7bfad 7fed 00007fed e6f5 e6f5 e6f5 e6f5 e6f5 e6f5 e6f5
+10695 e6f6 e6f6 e6f6 * * 527e 8ea2d2fe,8ea2d2fev 7feb e7bfab 7feb 00007feb e6f6 e6f6 e6f6 e6f6 e6f6 e6f6 e6f6
+10696 e6f7 e6f7 e6f7 * * 5321 8ea2d3a1,8ea2d3a1v 7fea e7bfaa 7fea 00007fea e6f7 e6f7 e6f7 e6f7 e6f7 e6f7 e6f7
+10697 e6f8 e6f8 e6f8 * * 5322 8ea2d3a2,8ea2d3a2v 7fec e7bfac 7fec 00007fec e6f8 e6f8 e6f8 e6f8 e6f8 e6f8 e6f8
+10698 e6f9 e6f9 e6f9 * * 5323 8ea2d3a3,8ea2d3a3v 7fe6 e7bfa6 7fe6 00007fe6 e6f9 e6f9 e6f9 e6f9 e6f9 e6f9 e6f9
+10699 e6fa e6fa e6fa * * 5324 8ea2d3a4,8ea2d3a4v 7fe8 e7bfa8 7fe8 00007fe8 e6fa e6fa e6fa e6fa e6fa e6fa e6fa
+10700 e6fb e6fb e6fb * * 5325 8ea2d3a5,8ea2d3a5v 8064 e881a4 8064 00008064 e6fb e6fb e6fb e6fb e6fb e6fb e6fb
+10701 e6fc e6fc e6fc * * 5326 8ea2d3a6,8ea2d3a6v 8067 e881a7 8067 00008067 e6fc e6fc e6fc e6fc e6fc e6fc e6fc
+10702 e6fd e6fd e6fd * * 5327 8ea2d3a7,8ea2d3a7v 81a3 e886a3 81a3 000081a3 e6fd e6fd e6fd e6fd e6fd e6fd e6fd
+10703 e6fe e6fe e6fe * * 5328 8ea2d3a8,8ea2d3a8v 819f e8869f 819f 0000819f e6fe e6fe e6fe e6fe e6fe e6fe e6fe
+10704 e740 e740 e740 * * 5329 8ea2d3a9,8ea2d3a9v 819e e8869e 819e 0000819e e740 e740 e740 e740 e740 e740 e740
+10705 e741 e741 e741 * * 532a 8ea2d3aa,8ea2d3aav 8195 e88695 8195 00008195 e741 e741 e741 e741 e741 e741 e741
+10706 e742 e742 e742 * * 532b 8ea2d3ab,8ea2d3abv 81a2 e886a2 81a2 000081a2 e742 e742 e742 e742 e742 e742 e742
+10707 e743 e743 e743 * * 532c 8ea2d3ac,8ea2d3acv 8199 e88699 8199 00008199 e743 e743 e743 e743 e743 e743 e743
+10708 e744 e744 e744 * * 532d 8ea2d3ad,8ea2d3adv 8197 e88697 8197 00008197 e744 e744 e744 e744 e744 e744 e744
+10709 e745 e745 e745 * * 532e 8ea2d3ae,8ea2d3aev 8216 e88896 8216 00008216 e745 e745 e745 e745 e745 e745 e745
+10710 e746 e746 e746 * * 532f 8ea2d3af,8ea2d3afv 824f e8898f 824f 0000824f e746 e746 e746 e746 e746 e746 e746
+10711 e747 e747 e747 * * 5330 8ea2d3b0,8ea2d3b0v 8253 e88993 8253 00008253 e747 e747 e747 e747 e747 e747 e747
+10712 e748 e748 e748 * * 5331 8ea2d3b1,8ea2d3b1v 8252 e88992 8252 00008252 e748 e748 e748 e748 e748 e748 e748
+10713 e749 e749 e749 * * 5332 8ea2d3b2,8ea2d3b2v 8250 e88990 8250 00008250 e749 e749 e749 e749 e749 e749 e749
+10714 e74a e74a e74a * * 5333 8ea2d3b3,8ea2d3b3v 824e e8898e 824e 0000824e e74a e74a e74a e74a e74a e74a e74a
+10715 e74b e74b e74b * * 5334 8ea2d3b4,8ea2d3b4v 8251 e88991 8251 00008251 e74b e74b e74b e74b e74b e74b e74b
+10716 e74c e74c e74c * * 5335 8ea2d3b5,8ea2d3b5v 8524 e894a4 8524 00008524 e74c e74c e74c e74c e74c e74c e74c
+10717 e74d e74d e74d * * 5336 8ea2d3b6,8ea2d3b6v 853b e894bb 853b 0000853b e74d e74d e74d e74d e74d e74d e74d
+10718 e74e e74e e74e * * 5337 8ea2d3b7,8ea2d3b7v 850f e8948f 850f 0000850f e74e e74e e74e e74e e74e e74e e74e
+10719 e74f e74f e74f * * 5338 8ea2d3b8,8ea2d3b8v 8500 e89480 8500 00008500 e74f e74f e74f e74f e74f e74f e74f
+10720 e750 e750 e750 * * 5339 8ea2d3b9,8ea2d3b9v 8529 e894a9 8529 00008529 e750 e750 e750 e750 e750 e750 e750
+10721 e751 e751 e751 * * 533a 8ea2d3ba,8ea2d3bav 850e e8948e 850e 0000850e e751 e751 e751 e751 e751 e751 e751
+10722 e752 e752 e752 * * 533b 8ea2d3bb,8ea2d3bbv 8509 e89489 8509 00008509 e752 e752 e752 e752 e752 e752 e752
+10723 e753 e753 e753 * * 533c 8ea2d3bc,8ea2d3bcv 850d e8948d 850d 0000850d e753 e753 e753 e753 e753 e753 e753
+10724 e754 e754 e754 * * 533d 8ea2d3bd,8ea2d3bdv 851f e8949f 851f 0000851f e754 e754 e754 e754 e754 e754 e754
+10725 e755 e755 e755 * * 533e 8ea2d3be,8ea2d3bev 850a e8948a 850a 0000850a e755 e755 e755 e755 e755 e755 e755
+10726 e756 e756 e756 * * 533f 8ea2d3bf,8ea2d3bfv 8527 e894a7 8527 00008527 e756 e756 e756 e756 e756 e756 e756
+10727 e757 e757 e757 * * 5340 8ea2d3c0,8ea2d3c0v 851c e8949c 851c 0000851c e757 e757 e757 e757 e757 e757 e757
+10728 e758 e758 e758 * * 5341 8ea2d3c1,8ea2d3c1v 84fb e893bb 84fb 000084fb e758 e758 e758 e758 e758 e758 e758
+10729 e759 e759 e759 * * 5342 8ea2d3c2,8ea2d3c2v 852b e894ab 852b 0000852b e759 e759 e759 e759 e759 e759 e759
+10730 e75a e75a e75a * * 5343 8ea2d3c3,8ea2d3c3v 84fa e893ba 84fa 000084fa e75a e75a e75a e75a e75a e75a e75a
+10731 e75b e75b e75b * * 5344 8ea2d3c4,8ea2d3c4v 8508 e89488 8508 00008508 e75b e75b e75b e75b e75b e75b e75b
+10732 e75c e75c e75c * * 5345 8ea2d3c5,8ea2d3c5v 850c e8948c 850c 0000850c e75c e75c e75c e75c e75c e75c e75c
+10733 e75d e75d e75d * * 5346 8ea2d3c6,8ea2d3c6v 84f4 e893b4 84f4 000084f4 e75d e75d e75d e75d e75d e75d e75d
+10734 e75e e75e e75e * * 5347 8ea2d3c7,8ea2d3c7v 852a e894aa 852a 0000852a e75e e75e e75e e75e e75e e75e e75e
+10735 e75f e75f e75f * * 5348 8ea2d3c8,8ea2d3c8v 84f2 e893b2 84f2 000084f2 e75f e75f e75f e75f e75f e75f e75f
+10736 e760 e760 e760 * * 5349 8ea2d3c9,8ea2d3c9v 8515 e89495 8515 00008515 e760 e760 e760 e760 e760 e760 e760
+10737 e761 e761 e761 * * 534a 8ea2d3ca,8ea2d3cav 84f7 e893b7 84f7 000084f7 e761 e761 e761 e761 e761 e761 e761
+10738 e762 e762 e762 * * 534b 8ea2d3cb,8ea2d3cbv 84eb e893ab 84eb 000084eb e762 e762 e762 e762 e762 e762 e762
+10739 e763 e763 e763 * * 534c 8ea2d3cc,8ea2d3ccv 84f3 e893b3 84f3 000084f3 e763 e763 e763 e763 e763 e763 e763
+10740 e764 e764 e764 * * 534d 8ea2d3cd,8ea2d3cdv 84fc e893bc 84fc 000084fc e764 e764 e764 e764 e764 e764 e764
+10741 e765 e765 e765 * * 534e 8ea2d3ce,8ea2d3cev 8512 e89492 8512 00008512 e765 e765 e765 e765 e765 e765 e765
+10742 e766 e766 e766 * * 534f 8ea2d3cf,8ea2d3cfv 84ea e893aa 84ea 000084ea e766 e766 e766 e766 e766 e766 e766
+10743 e767 e767 e767 * * 5350 8ea2d3d0,8ea2d3d0v 84e9 e893a9 84e9 000084e9 e767 e767 e767 e767 e767 e767 e767
+10744 e768 e768 e768 * * 5351 8ea2d3d1,8ea2d3d1v 8516 e89496 8516 00008516 e768 e768 e768 e768 e768 e768 e768
+10745 e769 e769 e769 * * 5352 8ea2d3d2,8ea2d3d2v 84fe e893be 84fe 000084fe e769 e769 e769 e769 e769 e769 e769
+10746 e76a e76a e76a * * 5353 8ea2d3d3,8ea2d3d3v 8528 e894a8 8528 00008528 e76a e76a e76a e76a e76a e76a e76a
+10747 e76b e76b e76b * * 5354 8ea2d3d4,8ea2d3d4v 851d e8949d 851d 0000851d e76b e76b e76b e76b e76b e76b e76b
+10748 e76c e76c e76c * * 5355 8ea2d3d5,8ea2d3d5v 852e e894ae 852e 0000852e e76c e76c e76c e76c e76c e76c e76c
+10749 e76d e76d e76d * * 5356 8ea2d3d6,8ea2d3d6v 8502 e89482 8502 00008502 e76d e76d e76d e76d e76d e76d e76d
+10750 e76e e76e e76e * * 5357 8ea2d3d7,8ea2d3d7v 84fd e893bd 84fd 000084fd e76e e76e e76e e76e e76e e76e e76e
+10751 e76f e76f e76f * * 5358 8ea2d3d8,8ea2d3d8v 851e e8949e 851e 0000851e e76f e76f e76f e76f e76f e76f e76f
+10752 e770 e770 e770 * * 5359 8ea2d3d9,8ea2d3d9v 84f6 e893b6 84f6 000084f6 e770 e770 e770 e770 e770 e770 e770
+10753 e771 e771 e771 * * 535a 8ea2d3da,8ea2d3dav 8531 e894b1 8531 00008531 e771 e771 e771 e771 e771 e771 e771
+10754 e772 e772 e772 * * 535b 8ea2d3db,8ea2d3dbv 8526 e894a6 8526 00008526 e772 e772 e772 e772 e772 e772 e772
+10755 e773 e773 e773 * * 535c 8ea2d3dc,8ea2d3dcv 84e7 e893a7 84e7 000084e7 e773 e773 e773 e773 e773 e773 e773
+10756 e774 e774 e774 * * 535d 8ea2d3dd,8ea2d3ddv 84e8 e893a8 84e8 000084e8 e774 e774 e774 e774 e774 e774 e774
+10757 e775 e775 e775 * * 535e 8ea2d3de,8ea2d3dev 84f0 e893b0 84f0 000084f0 e775 e775 e775 e775 e775 e775 e775
+10758 e776 e776 e776 * * 535f 8ea2d3df,8ea2d3dfv 84ef e893af 84ef 000084ef e776 e776 e776 e776 e776 e776 e776
+10759 e777 e777 e777 * * 5360 8ea2d3e0,8ea2d3e0v 84f9 e893b9 84f9 000084f9 e777 e777 e777 e777 e777 e777 e777
+10760 e778 e778 e778 * * 5361 8ea2d3e1,8ea2d3e1v 8518 e89498 8518 00008518 e778 e778 e778 e778 e778 e778 e778
+10761 e779 e779 e779 * * 5362 8ea2d3e2,8ea2d3e2v 8520 e894a0 8520 00008520 e779 e779 e779 e779 e779 e779 e779
+10762 e77a e77a e77a * * 5363 8ea2d3e3,8ea2d3e3v 8530 e894b0 8530 00008530 e77a e77a e77a e77a e77a e77a e77a
+10763 e77b e77b e77b * * 5364 8ea2d3e4,8ea2d3e4v 850b e8948b 850b 0000850b e77b e77b e77b e77b e77b e77b e77b
+10764 e77c e77c e77c * * 5365 8ea2d3e5,8ea2d3e5v 8519 e89499 8519 00008519 e77c e77c e77c e77c e77c e77c e77c
+10765 e77d e77d e77d * * 5366 8ea2d3e6,8ea2d3e6v 852f e894af 852f 0000852f e77d e77d e77d e77d e77d e77d e77d
+10766 e77e e77e e77e * * 5367 8ea2d3e7,8ea2d3e7v 8662 e899a2 8662 00008662 e77e e77e e77e e77e e77e e77e e77e
+10767 e7a1 e7a1 e7a1 * * 5368 8ea2d3e8,8ea2d3e8v 8756 e89d96 8756 00008756 e7a1 e7a1 e7a1 e7a1 e7a1 e7a1 e7a1
+10768 e7a2 e7a2 e7a2 * * 5369 8ea2d3e9,8ea2d3e9v 8763 e89da3 8763 00008763 e7a2 e7a2 e7a2 e7a2 e7a2 e7a2 e7a2
+10769 e7a3 e7a3 e7a3 * * 536a 8ea2d3ea,8ea2d3eav 8764 e89da4 8764 00008764 e7a3 e7a3 e7a3 e7a3 e7a3 e7a3 e7a3
+10770 e7a4 e7a4 e7a4 * * 536b 8ea2d3eb,8ea2d3ebv 8777 e89db7 8777 00008777 e7a4 e7a4 e7a4 e7a4 e7a4 e7a4 e7a4
+10771 e7a5 e7a5 e7a5 * * 536c 8ea2d3ec,8ea2d3ecv 87e1 e89fa1 87e1 000087e1 e7a5 e7a5 e7a5 e7a5 e7a5 e7a5 e7a5
+10772 e7a6 e7a6 e7a6 * * 536d 8ea2d3ed,8ea2d3edv 8773 e89db3 8773 00008773 e7a6 e7a6 e7a6 e7a6 e7a6 e7a6 e7a6
+10773 e7a7 e7a7 e7a7 * * 536e 8ea2d3ee,8ea2d3eev 8758 e89d98 8758 00008758 e7a7 e7a7 e7a7 e7a7 e7a7 e7a7 e7a7
+10774 e7a8 e7a8 e7a8 * * 536f 8ea2d3ef,8ea2d3efv 8754 e89d94 8754 00008754 e7a8 e7a8 e7a8 e7a8 e7a8 e7a8 e7a8
+10775 e7a9 e7a9 e7a9 * * 5370 8ea2d3f0,8ea2d3f0v 875b e89d9b 875b 0000875b e7a9 e7a9 e7a9 e7a9 e7a9 e7a9 e7a9
+10776 e7aa e7aa e7aa * * 5371 8ea2d3f1,8ea2d3f1v 8752 e89d92 8752 00008752 e7aa e7aa e7aa e7aa e7aa e7aa e7aa
+10777 e7ab e7ab e7ab * * 5372 8ea2d3f2,8ea2d3f2v 8761 e89da1 8761 00008761 e7ab e7ab e7ab e7ab e7ab e7ab e7ab
+10778 e7ac e7ac e7ac * * 5373 8ea2d3f3,8ea2d3f3v 875a e89d9a 875a 0000875a e7ac e7ac e7ac e7ac e7ac e7ac e7ac
+10779 e7ad e7ad e7ad * * 5374 8ea2d3f4,8ea2d3f4v 8751 e89d91 8751 00008751 e7ad e7ad e7ad e7ad e7ad e7ad e7ad
+10780 e7ae e7ae e7ae * * 5375 8ea2d3f5,8ea2d3f5v 875e e89d9e 875e 0000875e e7ae e7ae e7ae e7ae e7ae e7ae e7ae
+10781 e7af e7af e7af * * 5376 8ea2d3f6,8ea2d3f6v 876d e89dad 876d 0000876d e7af e7af e7af e7af e7af e7af e7af
+10782 e7b0 e7b0 e7b0 * * 5377 8ea2d3f7,8ea2d3f7v 876a e89daa 876a 0000876a e7b0 e7b0 e7b0 e7b0 e7b0 e7b0 e7b0
+10783 e7b1 e7b1 e7b1 * * 5378 8ea2d3f8,8ea2d3f8v 8750 e89d90 8750 00008750 e7b1 e7b1 e7b1 e7b1 e7b1 e7b1 e7b1
+10784 e7b2 e7b2 e7b2 * * 5379 8ea2d3f9,8ea2d3f9v 874e e89d8e 874e 0000874e e7b2 e7b2 e7b2 e7b2 e7b2 e7b2 e7b2
+10785 e7b3 e7b3 e7b3 * * 537a 8ea2d3fa,8ea2d3fav 875f e89d9f 875f 0000875f e7b3 e7b3 e7b3 e7b3 e7b3 e7b3 e7b3
+10786 e7b4 e7b4 e7b4 * * 537b 8ea2d3fb,8ea2d3fbv 875d e89d9d 875d 0000875d e7b4 e7b4 e7b4 e7b4 e7b4 e7b4 e7b4
+10787 e7b5 e7b5 e7b5 * * 537c 8ea2d3fc,8ea2d3fcv 876f e89daf 876f 0000876f e7b5 e7b5 e7b5 e7b5 e7b5 e7b5 e7b5
+10788 e7b6 e7b6 e7b6 * * 537d 8ea2d3fd,8ea2d3fdv 876c e89dac 876c 0000876c e7b6 e7b6 e7b6 e7b6 e7b6 e7b6 e7b6
+10789 e7b7 e7b7 e7b7 * * 537e 8ea2d3fe,8ea2d3fev 877a e89dba 877a 0000877a e7b7 e7b7 e7b7 e7b7 e7b7 e7b7 e7b7
+10790 e7b8 e7b8 e7b8 * * 5421 8ea2d4a1,8ea2d4a1v 876e e89dae 876e 0000876e e7b8 e7b8 e7b8 e7b8 e7b8 e7b8 e7b8
+10791 e7b9 e7b9 e7b9 * * 5422 8ea2d4a2,8ea2d4a2v 875c e89d9c 875c 0000875c e7b9 e7b9 e7b9 e7b9 e7b9 e7b9 e7b9
+10792 e7ba e7ba e7ba * * 5423 8ea2d4a3,8ea2d4a3v 8765 e89da5 8765 00008765 e7ba e7ba e7ba e7ba e7ba e7ba e7ba
+10793 e7bb e7bb e7bb * * 5424 8ea2d4a4,8ea2d4a4v 874f e89d8f 874f 0000874f e7bb e7bb e7bb e7bb e7bb e7bb e7bb
+10794 e7bc e7bc e7bc * * 5425 8ea2d4a5,8ea2d4a5v 877b e89dbb 877b 0000877b e7bc e7bc e7bc e7bc e7bc e7bc e7bc
+10795 e7bd e7bd e7bd * * 5426 8ea2d4a6,8ea2d4a6v 8775 e89db5 8775 00008775 e7bd e7bd e7bd e7bd e7bd e7bd e7bd
+10796 e7be e7be e7be * * 5427 8ea2d4a7,8ea2d4a7v 8762 e89da2 8762 00008762 e7be e7be e7be e7be e7be e7be e7be
+10797 e7bf e7bf e7bf * * 5428 8ea2d4a8,8ea2d4a8v 8767 e89da7 8767 00008767 e7bf e7bf e7bf e7bf e7bf e7bf e7bf
+10798 e7c0 e7c0 e7c0 * * 5429 8ea2d4a9,8ea2d4a9v 8769 e89da9 8769 00008769 e7c0 e7c0 e7c0 e7c0 e7c0 e7c0 e7c0
+10799 e7c1 e7c1 e7c1 * * 542a 8ea2d4aa,8ea2d4aav 885a e8a19a 885a 0000885a e7c1 e7c1 e7c1 e7c1 e7c1 e7c1 e7c1
+10800 e7c2 e7c2 e7c2 * * 542b 8ea2d4ab,8ea2d4abv 8905 e8a485 8905 00008905 e7c2 e7c2 e7c2 e7c2 e7c2 e7c2 e7c2
+10801 e7c3 e7c3 e7c3 * * 542c 8ea2d4ac,8ea2d4acv 890c e8a48c 890c 0000890c e7c3 e7c3 e7c3 e7c3 e7c3 e7c3 e7c3
+10802 e7c4 e7c4 e7c4 * * 542d 8ea2d4ad,8ea2d4adv 8914 e8a494 8914 00008914 e7c4 e7c4 e7c4 e7c4 e7c4 e7c4 e7c4
+10803 e7c5 e7c5 e7c5 * * 542e 8ea2d4ae,8ea2d4aev 890b e8a48b 890b 0000890b e7c5 e7c5 e7c5 e7c5 e7c5 e7c5 e7c5
+10804 e7c6 e7c6 e7c6 * * 542f 8ea2d4af,8ea2d4afv 8917 e8a497 8917 00008917 e7c6 e7c6 e7c6 e7c6 e7c6 e7c6 e7c6
+10805 e7c7 e7c7 e7c7 * * 5430 8ea2d4b0,8ea2d4b0v 8918 e8a498 8918 00008918 e7c7 e7c7 e7c7 e7c7 e7c7 e7c7 e7c7
+10806 e7c8 e7c8 e7c8 * * 5431 8ea2d4b1,8ea2d4b1v 8919 e8a499 8919 00008919 e7c8 e7c8 e7c8 e7c8 e7c8 e7c8 e7c8
+10807 e7c9 e7c9 e7c9 * * 5432 8ea2d4b2,8ea2d4b2v 8906 e8a486 8906 00008906 e7c9 e7c9 e7c9 e7c9 e7c9 e7c9 e7c9
+10808 e7ca e7ca e7ca * * 5433 8ea2d4b3,8ea2d4b3v 8916 e8a496 8916 00008916 e7ca e7ca e7ca e7ca e7ca e7ca e7ca
+10809 e7cb e7cb e7cb * * 5434 8ea2d4b4,8ea2d4b4v 8911 e8a491 8911 00008911 e7cb e7cb e7cb e7cb e7cb e7cb e7cb
+10810 e7cc e7cc e7cc * * 5435 8ea2d4b5,8ea2d4b5v 890e e8a48e 890e 0000890e e7cc e7cc e7cc e7cc e7cc e7cc e7cc
+10811 e7cd e7cd e7cd * * 5436 8ea2d4b6,8ea2d4b6v 8909 e8a489 8909 00008909 e7cd e7cd e7cd e7cd e7cd e7cd e7cd
+10812 e7ce e7ce e7ce * * 5437 8ea2d4b7,8ea2d4b7v 89a2 e8a6a2 89a2 000089a2 e7ce e7ce e7ce e7ce e7ce e7ce e7ce
+10813 e7cf e7cf e7cf * * 5438 8ea2d4b8,8ea2d4b8v 89a4 e8a6a4 89a4 000089a4 e7cf e7cf e7cf e7cf e7cf e7cf e7cf
+10814 e7d0 e7d0 e7d0 * * 5439 8ea2d4b9,8ea2d4b9v 89a3 e8a6a3 89a3 000089a3 e7d0 e7d0 e7d0 e7d0 e7d0 e7d0 e7d0
+10815 e7d1 e7d1 e7d1 * * 543a 8ea2d4ba,8ea2d4bav 89ed e8a7ad 89ed 000089ed e7d1 e7d1 e7d1 e7d1 e7d1 e7d1 e7d1
+10816 e7d2 e7d2 e7d2 * * 543b 8ea2d4bb,8ea2d4bbv 89f0 e8a7b0 89f0 000089f0 e7d2 e7d2 e7d2 e7d2 e7d2 e7d2 e7d2
+10817 e7d3 e7d3 e7d3 * * 543c 8ea2d4bc,8ea2d4bcv 89ec e8a7ac 89ec 000089ec e7d3 e7d3 e7d3 e7d3 e7d3 e7d3 e7d3
+10818 e7d4 e7d4 e7d4 * * 543d 8ea2d4bd,8ea2d4bdv 8acf e8ab8f 8acf 00008acf e7d4 e7d4 e7d4 e7d4 e7d4 e7d4 e7d4
+10819 e7d5 e7d5 e7d5 * * 543e 8ea2d4be,8ea2d4bev 8ac6 e8ab86 8ac6 00008ac6 e7d5 e7d5 e7d5 e7d5 e7d5 e7d5 e7d5
+10820 e7d6 e7d6 e7d6 * * 543f 8ea2d4bf,8ea2d4bfv 8ab8 e8aab8 8ab8 00008ab8 e7d6 e7d6 e7d6 e7d6 e7d6 e7d6 e7d6
+10821 e7d7 e7d7 e7d7 * * 5440 8ea2d4c0,8ea2d4c0v 8ad3 e8ab93 8ad3 00008ad3 e7d7 e7d7 e7d7 e7d7 e7d7 e7d7 e7d7
+10822 e7d8 e7d8 e7d8 * * 5441 8ea2d4c1,8ea2d4c1v 8ad1 e8ab91 8ad1 00008ad1 e7d8 e7d8 e7d8 e7d8 e7d8 e7d8 e7d8
+10823 e7d9 e7d9 e7d9 * * 5442 8ea2d4c2,8ea2d4c2v 8ad4 e8ab94 8ad4 00008ad4 e7d9 e7d9 e7d9 e7d9 e7d9 e7d9 e7d9
+10824 e7da e7da e7da * * 5443 8ea2d4c3,8ea2d4c3v 8ad5 e8ab95 8ad5 00008ad5 e7da e7da e7da e7da e7da e7da e7da
+10825 e7db e7db e7db * * 5444 8ea2d4c4,8ea2d4c4v 8abb e8aabb 8abb 00008abb e7db e7db e7db e7db e7db e7db e7db
+10826 e7dc e7dc e7dc * * 5445 8ea2d4c5,8ea2d4c5v 8ad7 e8ab97 8ad7 00008ad7 e7dc e7dc e7dc e7dc e7dc e7dc e7dc
+10827 e7dd e7dd e7dd * * 5446 8ea2d4c6,8ea2d4c6v 8abe e8aabe 8abe 00008abe e7dd e7dd e7dd e7dd e7dd e7dd e7dd
+10828 e7de e7de e7de * * 5447 8ea2d4c7,8ea2d4c7v 8ac0 e8ab80 8ac0 00008ac0 e7de e7de e7de e7de e7de e7de e7de
+10829 e7df e7df e7df * * 5448 8ea2d4c8,8ea2d4c8v 8ac5 e8ab85 8ac5 00008ac5 e7df e7df e7df e7df e7df e7df e7df
+10830 e7e0 e7e0 e7e0 * * 5449 8ea2d4c9,8ea2d4c9v 8ad8 e8ab98 8ad8 00008ad8 e7e0 e7e0 e7e0 e7e0 e7e0 e7e0 e7e0
+10831 e7e1 e7e1 e7e1 * * 544a 8ea2d4ca,8ea2d4cav 8ac3 e8ab83 8ac3 00008ac3 e7e1 e7e1 e7e1 e7e1 e7e1 e7e1 e7e1
+10832 e7e2 e7e2 e7e2 * * 544b 8ea2d4cb,8ea2d4cbv 8aba e8aaba 8aba 00008aba e7e2 e7e2 e7e2 e7e2 e7e2 e7e2 e7e2
+10833 e7e3 e7e3 e7e3 * * 544c 8ea2d4cc,8ea2d4ccv 8abd e8aabd 8abd 00008abd e7e3 e7e3 e7e3 e7e3 e7e3 e7e3 e7e3
+10834 e7e4 e7e4 e7e4 * * 544d 8ea2d4cd,8ea2d4cdv 8ad9 e8ab99 8ad9 00008ad9 e7e4 e7e4 e7e4 e7e4 e7e4 e7e4 e7e4
+10835 e7e5 e7e5 e7e5 * * 544e 8ea2d4ce,8ea2d4cev 8c3e e8b0be 8c3e 00008c3e e7e5 e7e5 e7e5 e7e5 e7e5 e7e5 e7e5
+10836 e7e6 e7e6 e7e6 * * 544f 8ea2d4cf,8ea2d4cfv 8c4d e8b18d 8c4d 00008c4d e7e6 e7e6 e7e6 e7e6 e7e6 e7e6 e7e6
+10837 e7e7 e7e7 e7e7 * * 5450 8ea2d4d0,8ea2d4d0v 8c8f e8b28f 8c8f 00008c8f e7e7 e7e7 e7e7 e7e7 e7e7 e7e7 e7e7
+10838 e7e8 e7e8 e7e8 * * 5451 8ea2d4d1,8ea2d4d1v 8ce5 e8b3a5 8ce5 00008ce5 e7e8 e7e8 e7e8 e7e8 e7e8 e7e8 e7e8
+10839 e7e9 e7e9 e7e9 * * 5452 8ea2d4d2,8ea2d4d2v 8cdf e8b39f 8cdf 00008cdf e7e9 e7e9 e7e9 e7e9 e7e9 e7e9 e7e9
+10840 e7ea e7ea e7ea * * 5453 8ea2d4d3,8ea2d4d3v 8cd9 e8b399 8cd9 00008cd9 e7ea e7ea e7ea e7ea e7ea e7ea e7ea
+10841 e7eb e7eb e7eb * * 5454 8ea2d4d4,8ea2d4d4v 8ce8 e8b3a8 8ce8 00008ce8 e7eb e7eb e7eb e7eb e7eb e7eb e7eb
+10842 e7ec e7ec e7ec * * 5455 8ea2d4d5,8ea2d4d5v 8cda e8b39a 8cda 00008cda e7ec e7ec e7ec e7ec e7ec e7ec e7ec
+10843 e7ed e7ed e7ed * * 5456 8ea2d4d6,8ea2d4d6v 8cdd e8b39d 8cdd 00008cdd e7ed e7ed e7ed e7ed e7ed e7ed e7ed
+10844 e7ee e7ee e7ee * * 5457 8ea2d4d7,8ea2d4d7v 8ce7 e8b3a7 8ce7 00008ce7 e7ee e7ee e7ee e7ee e7ee e7ee e7ee
+10845 e7ef e7ef e7ef * * 5458 8ea2d4d8,8ea2d4d8v 8da0 e8b6a0 8da0 00008da0 e7ef e7ef e7ef e7ef e7ef e7ef e7ef
+10846 e7f0 e7f0 e7f0 * * 5459 8ea2d4d9,8ea2d4d9v 8d9c e8b69c 8d9c 00008d9c e7f0 e7f0 e7f0 e7f0 e7f0 e7f0 e7f0
+10847 e7f1 e7f1 e7f1 * * 545a 8ea2d4da,8ea2d4dav 8da1 e8b6a1 8da1 00008da1 e7f1 e7f1 e7f1 e7f1 e7f1 e7f1 e7f1
+10848 e7f2 e7f2 e7f2 * * 545b 8ea2d4db,8ea2d4dbv 8d9b e8b69b 8d9b 00008d9b e7f2 e7f2 e7f2 e7f2 e7f2 e7f2 e7f2
+10849 e7f3 e7f3 e7f3 * * 545c 8ea2d4dc,8ea2d4dcv 8e20 e8b8a0 8e20 00008e20 e7f3 e7f3 e7f3 e7f3 e7f3 e7f3 e7f3
+10850 e7f4 e7f4 e7f4 * * 545d 8ea2d4dd,8ea2d4ddv 8e23 e8b8a3 8e23 00008e23 e7f4 e7f4 e7f4 e7f4 e7f4 e7f4 e7f4
+10851 e7f5 e7f5 e7f5 * * 545e 8ea2d4de,8ea2d4dev 8e25 e8b8a5 8e25 00008e25 e7f5 e7f5 e7f5 e7f5 e7f5 e7f5 e7f5
+10852 e7f6 e7f6 e7f6 * * 545f 8ea2d4df,8ea2d4dfv 8e24 e8b8a4 8e24 00008e24 e7f6 e7f6 e7f6 e7f6 e7f6 e7f6 e7f6
+10853 e7f7 e7f7 e7f7 * * 5460 8ea2d4e0,8ea2d4e0v 8e2e e8b8ae 8e2e 00008e2e e7f7 e7f7 e7f7 e7f7 e7f7 e7f7 e7f7
+10854 e7f8 e7f8 e7f8 * * 5461 8ea2d4e1,8ea2d4e1v 8e15 e8b895 8e15 00008e15 e7f8 e7f8 e7f8 e7f8 e7f8 e7f8 e7f8
+10855 e7f9 e7f9 e7f9 * * 5462 8ea2d4e2,8ea2d4e2v 8e1b e8b89b 8e1b 00008e1b e7f9 e7f9 e7f9 e7f9 e7f9 e7f9 e7f9
+10856 e7fa e7fa e7fa * * 5463 8ea2d4e3,8ea2d4e3v 8e16 e8b896 8e16 00008e16 e7fa e7fa e7fa e7fa e7fa e7fa e7fa
+10857 e7fb e7fb e7fb * * 5464 8ea2d4e4,8ea2d4e4v 8e11 e8b891 8e11 00008e11 e7fb e7fb e7fb e7fb e7fb e7fb e7fb
+10858 e7fc e7fc e7fc * * 5465 8ea2d4e5,8ea2d4e5v 8e19 e8b899 8e19 00008e19 e7fc e7fc e7fc e7fc e7fc e7fc e7fc
+10859 e7fd e7fd e7fd * * 5466 8ea2d4e6,8ea2d4e6v 8e26 e8b8a6 8e26 00008e26 e7fd e7fd e7fd e7fd e7fd e7fd e7fd
+10860 e7fe e7fe e7fe * * 5467 8ea2d4e7,8ea2d4e7v 8e27 e8b8a7 8e27 00008e27 e7fe e7fe e7fe e7fe e7fe e7fe e7fe
+10861 e840 e840 e840 * * 5468 8ea2d4e8,8ea2d4e8v 8e14 e8b894 8e14 00008e14 e840 e840 e840 e840 e840 e840 e840
+10862 e841 e841 e841 * * 5469 8ea2d4e9,8ea2d4e9v 8e12 e8b892 8e12 00008e12 e841 e841 e841 e841 e841 e841 e841
+10863 e842 e842 e842 * * 546a 8ea2d4ea,8ea2d4eav 8e18 e8b898 8e18 00008e18 e842 e842 e842 e842 e842 e842 e842
+10864 e843 e843 e843 * * 546b 8ea2d4eb,8ea2d4ebv 8e13 e8b893 8e13 00008e13 e843 e843 e843 e843 e843 e843 e843
+10865 e844 e844 e844 * * 546c 8ea2d4ec,8ea2d4ecv 8e1c e8b89c 8e1c 00008e1c e844 e844 e844 e844 e844 e844 e844
+10866 e845 e845 e845 * * 546d 8ea2d4ed,8ea2d4edv 8e17 e8b897 8e17 00008e17 e845 e845 e845 e845 e845 e845 e845
+10867 e846 e846 e846 * * 546e 8ea2d4ee,8ea2d4eev 8e1a e8b89a 8e1a 00008e1a e846 e846 e846 e846 e846 e846 e846
+10868 e847 e847 e847 * * 546f 8ea2d4ef,8ea2d4efv 8f2c e8bcac 8f2c 00008f2c e847 e847 e847 e847 e847 e847 e847
+10869 e848 e848 e848 * * 5470 8ea2d4f0,8ea2d4f0v 8f24 e8bca4 8f24 00008f24 e848 e848 e848 e848 e848 e848 e848
+10870 e849 e849 e849 * * 5471 8ea2d4f1,8ea2d4f1v 8f18 e8bc98 8f18 00008f18 e849 e849 e849 e849 e849 e849 e849
+10871 e84a e84a e84a * * 5472 8ea2d4f2,8ea2d4f2v 8f1a e8bc9a 8f1a 00008f1a e84a e84a e84a e84a e84a e84a e84a
+10872 e84b e84b e84b * * 5473 8ea2d4f3,8ea2d4f3v 8f20 e8bca0 8f20 00008f20 e84b e84b e84b e84b e84b e84b e84b
+10873 e84c e84c e84c * * 5474 8ea2d4f4,8ea2d4f4v 8f23 e8bca3 8f23 00008f23 e84c e84c e84c e84c e84c e84c e84c
+10874 e84d e84d e84d * * 5475 8ea2d4f5,8ea2d4f5v 8f16 e8bc96 8f16 00008f16 e84d e84d e84d e84d e84d e84d e84d
+10875 e84e e84e e84e * * 5476 8ea2d4f6,8ea2d4f6v 8f17 e8bc97 8f17 00008f17 e84e e84e e84e e84e e84e e84e e84e
+10876 e84f e84f e84f * * 5477 8ea2d4f7,8ea2d4f7v 9073 e981b3 9073 00009073 e84f e84f e84f e84f e84f e84f e84f
+10877 e850 e850 e850 * * 5478 8ea2d4f8,8ea2d4f8v 9070 e981b0 9070 00009070 e850 e850 e850 e850 e850 e850 e850
+10878 e851 e851 e851 * * 5479 8ea2d4f9,8ea2d4f9v 906f e981af 906f 0000906f e851 e851 e851 e851 e851 e851 e851
+10879 e852 e852 e852 * * 547a 8ea2d4fa,8ea2d4fav 9067 e981a7 9067 00009067 e852 e852 e852 e852 e852 e852 e852
+10880 e853 e853 e853 * * 547b 8ea2d4fb,8ea2d4fbv 906b e981ab 906b 0000906b e853 e853 e853 e853 e853 e853 e853
+10881 e854 e854 e854 * * 547c 8ea2d4fc,8ea2d4fcv 912f e984af 912f 0000912f e854 e854 e854 e854 e854 e854 e854
+10882 e855 e855 e855 * * 547d 8ea2d4fd,8ea2d4fdv 912b e984ab 912b 0000912b e855 e855 e855 e855 e855 e855 e855
+10883 e856 e856 e856 * * 547e 8ea2d4fe,8ea2d4fev 9129 e984a9 9129 00009129 e856 e856 e856 e856 e856 e856 e856
+10884 e857 e857 e857 * * 5521 8ea2d5a1,8ea2d5a1v 912a e984aa 912a 0000912a e857 e857 e857 e857 e857 e857 e857
+10885 e858 e858 e858 * * 5522 8ea2d5a2,8ea2d5a2v 9132 e984b2 9132 00009132 e858 e858 e858 e858 e858 e858 e858
+10886 e859 e859 e859 * * 5523 8ea2d5a3,8ea2d5a3v 9126 e984a6 9126 00009126 e859 e859 e859 e859 e859 e859 e859
+10887 e85a e85a e85a * * 5524 8ea2d5a4,8ea2d5a4v 912e e984ae 912e 0000912e e85a e85a e85a e85a e85a e85a e85a
+10888 e85b e85b e85b * * 5525 8ea2d5a5,8ea2d5a5v 9185 e98685 9185 00009185 e85b e85b e85b e85b e85b e85b e85b
+10889 e85c e85c e85c * * 5526 8ea2d5a6,8ea2d5a6v 9186 e98686 9186 00009186 e85c e85c e85c e85c e85c e85c e85c
+10890 e85d e85d e85d * * 5527 8ea2d5a7,8ea2d5a7v 918a e9868a 918a 0000918a e85d e85d e85d e85d e85d e85d e85d
+10891 e85e e85e e85e * * 5528 8ea2d5a8,8ea2d5a8v 9181 e98681 9181 00009181 e85e e85e e85e e85e e85e e85e e85e
+10892 e85f e85f e85f * * 5529 8ea2d5a9,8ea2d5a9v 9182 e98682 9182 00009182 e85f e85f e85f e85f e85f e85f e85f
+10893 e860 e860 e860 * * 552a 8ea2d5aa,8ea2d5aav 9184 e98684 9184 00009184 e860 e860 e860 e860 e860 e860 e860
+10894 e861 e861 e861 * * 552b 8ea2d5ab,8ea2d5abv 9180 e98680 9180 00009180 e861 e861 e861 e861 e861 e861 e861
+10895 e862 e862 e862 * * 552c 8ea2d5ac,8ea2d5acv 92d0 e98b90 92d0 000092d0 e862 e862 e862 e862 e862 e862 e862
+10896 e863 e863 e863 * * 552d 8ea2d5ad,8ea2d5adv 92c3 e98b83 92c3 000092c3 e863 e863 e863 e863 e863 e863 e863
+10897 e864 e864 e864 * * 552e 8ea2d5ae,8ea2d5aev 92c4 e98b84 92c4 000092c4 e864 e864 e864 e864 e864 e864 e864
+10898 e865 e865 e865 * * 552f 8ea2d5af,8ea2d5afv 92c0 e98b80 92c0 000092c0 e865 e865 e865 e865 e865 e865 e865
+10899 e866 e866 e866 * * 5530 8ea2d5b0,8ea2d5b0v 92d9 e98b99 92d9 000092d9 e866 e866 e866 e866 e866 e866 e866
+10900 e867 e867 e867 * * 5531 8ea2d5b1,8ea2d5b1v 92b6 e98ab6 92b6 000092b6 e867 e867 e867 e867 e867 e867 e867
+10901 e868 e868 e868 * * 5532 8ea2d5b2,8ea2d5b2v 92cf e98b8f 92cf 000092cf e868 e868 e868 e868 e868 e868 e868
+10902 e869 e869 e869 * * 5533 8ea2d5b3,8ea2d5b3v 92f1 e98bb1 92f1 000092f1 e869 e869 e869 e869 e869 e869 e869
+10903 e86a e86a e86a * * 5534 8ea2d5b4,8ea2d5b4v 92df e98b9f 92df 000092df e86a e86a e86a e86a e86a e86a e86a
+10904 e86b e86b e86b * * 5535 8ea2d5b5,8ea2d5b5v 92d8 e98b98 92d8 000092d8 e86b e86b e86b e86b e86b e86b e86b
+10905 e86c e86c e86c * * 5536 8ea2d5b6,8ea2d5b6v 92e9 e98ba9 92e9 000092e9 e86c e86c e86c e86c e86c e86c e86c
+10906 e86d e86d e86d * * 5537 8ea2d5b7,8ea2d5b7v 92d7 e98b97 92d7 000092d7 e86d e86d e86d e86d e86d e86d e86d
+10907 e86e e86e e86e * * 5538 8ea2d5b8,8ea2d5b8v 92dd e98b9d 92dd 000092dd e86e e86e e86e e86e e86e e86e e86e
+10908 e86f e86f e86f * * 5539 8ea2d5b9,8ea2d5b9v 92cc e98b8c 92cc 000092cc e86f e86f e86f e86f e86f e86f e86f
+10909 e870 e870 e870 * * 553a 8ea2d5ba,8ea2d5bav 92ef e98baf 92ef 000092ef e870 e870 e870 e870 e870 e870 e870
+10910 e871 e871 e871 * * 553b 8ea2d5bb,8ea2d5bbv 92c2 e98b82 92c2 000092c2 e871 e871 e871 e871 e871 e871 e871
+10911 e872 e872 e872 * * 553c 8ea2d5bc,8ea2d5bcv 92e8 e98ba8 92e8 000092e8 e872 e872,fe72 90d1,e872 e872 e872 e872 e872
+10912 e873 e873 e873 * * 553d 8ea2d5bd,8ea2d5bdv 92ca e98b8a 92ca 000092ca e873 e873 e873 e873 e873 e873 e873
+10913 e874 e874 e874 * * 553e 8ea2d5be,8ea2d5bev 92c8 e98b88 92c8 000092c8 e874 e874 e874 e874 e874 e874 e874
+10914 e875 e875 e875 * * 553f 8ea2d5bf,8ea2d5bfv 92ce e98b8e 92ce 000092ce e875 e875 e875 e875 e875 e875 e875
+10915 e876 e876 e876 * * 5540 8ea2d5c0,8ea2d5c0v 92e6 e98ba6 92e6 000092e6 e876 e876 e876 e876 e876 e876 e876
+10916 e877 e877 e877 * * 5541 8ea2d5c1,8ea2d5c1v 92cd e98b8d 92cd 000092cd e877 e877 e877 e877 e877 e877 e877
+10917 e878 e878 e878 * * 5542 8ea2d5c2,8ea2d5c2v 92d5 e98b95 92d5 000092d5 e878 e878 e878 e878 e878 e878 e878
+10918 e879 e879 e879 * * 5543 8ea2d5c3,8ea2d5c3v 92c9 e98b89 92c9 000092c9 e879 e879 e879 e879 e879 e879 e879
+10919 e87a e87a e87a * * 5544 8ea2d5c4,8ea2d5c4v 92e0 e98ba0 92e0 000092e0 e87a e87a e87a e87a e87a e87a e87a
+10920 e87b e87b e87b * * 5545 8ea2d5c5,8ea2d5c5v 92de e98b9e 92de 000092de e87b e87b e87b e87b e87b e87b e87b
+10921 e87c e87c e87c * * 5546 8ea2d5c6,8ea2d5c6v 92e7 e98ba7 92e7 000092e7 e87c e87c e87c e87c e87c e87c e87c
+10922 e87d e87d e87d * * 5547 8ea2d5c7,8ea2d5c7v 92d1 e98b91 92d1 000092d1 e87d e87d e87d e87d e87d e87d e87d
+10923 e87e e87e e87e * * 5548 8ea2d5c8,8ea2d5c8v 92d3 e98b93 92d3 000092d3 e87e e87e e87e e87e e87e e87e e87e
+10924 e8a1 e8a1 e8a1 * * 5549 8ea2d5c9,8ea2d5c9v 92b5 e98ab5 92b5 000092b5 e8a1 e8a1 e8a1 e8a1 e8a1 e8a1 e8a1
+10925 e8a2 e8a2 e8a2 * * 554a 8ea2d5ca,8ea2d5cav 92e1 e98ba1 92e1 000092e1 e8a2 e8a2 e8a2 e8a2 e8a2 e8a2 e8a2
+10926 ebf1 ebf1 ebf1 * * 554b 8ea2d5cb,8ea2d5cbv 9325 e98ca5 9325 00009325 ebf1 ebf1 ebf1 ebf1 ebf1 ebf1 ebf1
+10927 e8a3 e8a3 e8a3 * * 554c 8ea2d5cc,8ea2d5ccv 92c6 e98b86 92c6 000092c6 e8a3 e8a3 e8a3 e8a3 e8a3 e8a3 e8a3
+10928 e8a4 e8a4 e8a4 * * 554d 8ea2d5cd,8ea2d5cdv 92b4 e98ab4 92b4 000092b4 e8a4 e8a4 e8a4 e8a4 e8a4 e8a4 e8a4
+10929 e8a5 e8a5 e8a5 * * 554e 8ea2d5ce,8ea2d5cev 957c e995bc 957c 0000957c e8a5 e8a5 e8a5 e8a5 e8a5 e8a5 e8a5
+10930 e8a6 e8a6 e8a6 * * 554f 8ea2d5cf,8ea2d5cfv 95ac e996ac 95ac 000095ac e8a6 e8a6 e8a6 e8a6 e8a6 e8a6 e8a6
+10931 e8a7 e8a7 e8a7 * * 5550 8ea2d5d0,8ea2d5d0v 95ab e996ab 95ab 000095ab e8a7 e8a7 e8a7 e8a7 e8a7 e8a7 e8a7
+10932 e8a8 e8a8 e8a8 * * 5551 8ea2d5d1,8ea2d5d1v 95ae e996ae 95ae 000095ae e8a8 e8a8 e8a8 e8a8 e8a8 e8a8 e8a8
+10933 e8a9 e8a9 e8a9 * * 5552 8ea2d5d2,8ea2d5d2v 95b0 e996b0 95b0 000095b0 e8a9 e8a9 e8a9 e8a9 e8a9 e8a9 e8a9
+10934 e8aa e8aa e8aa * * 5553 8ea2d5d3,8ea2d5d3v 96a4 e99aa4 96a4 000096a4 e8aa e8aa e8aa e8aa e8aa e8aa e8aa
+10935 e8ab e8ab e8ab * * 5554 8ea2d5d4,8ea2d5d4v 96a2 e99aa2 96a2 000096a2 e8ab e8ab e8ab e8ab e8ab e8ab e8ab
+10936 e8ac e8ac e8ac * * 5555 8ea2d5d5,8ea2d5d5v 96d3 e99b93 96d3 000096d3 e8ac e8ac e8ac e8ac e8ac e8ac e8ac
+10937 e8ad e8ad e8ad * * 5556 8ea2d5d6,8ea2d5d6v 9705 e99c85 9705 00009705 e8ad e8ad e8ad e8ad e8ad e8ad e8ad
+10938 e8ae e8ae e8ae * * 5557 8ea2d5d7,8ea2d5d7v 9708 e99c88 9708 00009708 e8ae e8ae e8ae e8ae e8ae e8ae e8ae
+10939 e8af e8af e8af * * 5558 8ea2d5d8,8ea2d5d8v 9702 e99c82 9702 00009702 e8af e8af e8af e8af e8af e8af e8af
+10940 e8b0 e8b0 e8b0 * * 5559 8ea2d5d9,8ea2d5d9v 975a e99d9a 975a 0000975a e8b0 e8b0,fac8 e8b0 e8b0 e8b0 e8b0 e8b0
+10941 e8b1 e8b1 e8b1 * * 555a 8ea2d5da,8ea2d5dav 978a e99e8a 978a 0000978a e8b1 e8b1 e8b1 e8b1 e8b1 e8b1 e8b1
+10942 e8b2 e8b2 e8b2 * * 555b 8ea2d5db,8ea2d5dbv 978e e99e8e 978e 0000978e e8b2 e8b2 e8b2 e8b2 e8b2 e8b2 e8b2
+10943 e8b3 e8b3 e8b3 * * 555c 8ea2d5dc,8ea2d5dcv 9788 e99e88 9788 00009788 e8b3 e8b3 e8b3 e8b3 e8b3 e8b3 e8b3
+10944 e8b4 e8b4 e8b4 * * 555d 8ea2d5dd,8ea2d5ddv 97d0 e99f90 97d0 000097d0 e8b4 e8b4 e8b4 e8b4 e8b4 e8b4 e8b4
+10945 e8b5 e8b5 e8b5 * * 555e 8ea2d5de,8ea2d5dev 97cf e99f8f 97cf 000097cf e8b5 e8b5 e8b5 e8b5 e8b5 e8b5 e8b5
+10946 e8b6 e8b6 e8b6 * * 555f 8ea2d5df,8ea2d5dfv 981e e9a09e 981e 0000981e e8b6 e8b6 e8b6 e8b6 e8b6 e8b6 e8b6
+10947 e8b7 e8b7 e8b7 * * 5560 8ea2d5e0,8ea2d5e0v 981d e9a09d 981d 0000981d e8b7 e8b7 e8b7 e8b7 e8b7 e8b7 e8b7
+10948 e8b8 e8b8 e8b8 * * 5561 8ea2d5e1,8ea2d5e1v 9826 e9a0a6 9826 00009826 e8b8 e8b8 e8b8 e8b8 e8b8 e8b8 e8b8
+10949 e8b9 e8b9 e8b9 * * 5562 8ea2d5e2,8ea2d5e2v 9829 e9a0a9 9829 00009829 e8b9 e8b9 e8b9 e8b9 e8b9 e8b9 e8b9
+10950 e8ba e8ba e8ba * * 5563 8ea2d5e3,8ea2d5e3v 9828 e9a0a8 9828 00009828 e8ba e8ba e8ba e8ba e8ba e8ba e8ba
+10951 e8bb e8bb e8bb * * 5564 8ea2d5e4,8ea2d5e4v 9820 e9a0a0 9820 00009820 e8bb e8bb e8bb e8bb e8bb e8bb e8bb
+10952 e8bc e8bc e8bc * * 5565 8ea2d5e5,8ea2d5e5v 981b e9a09b 981b 0000981b e8bc e8bc e8bc e8bc e8bc e8bc e8bc
+10953 e8bd e8bd e8bd * * 5566 8ea2d5e6,8ea2d5e6v 9827 e9a0a7 9827 00009827 e8bd e8bd e8bd e8bd e8bd e8bd e8bd
+10954 e8be e8be e8be * * 5567 8ea2d5e7,8ea2d5e7v 98b2 e9a2b2 98b2 000098b2 e8be e8be e8be e8be e8be e8be e8be
+10955 e8bf e8bf e8bf * * 5568 8ea2d5e8,8ea2d5e8v 9908 e9a488 9908 00009908 e8bf e8bf e8bf e8bf e8bf e8bf e8bf
+10956 e8c0 e8c0 e8c0 * * 5569 8ea2d5e9,8ea2d5e9v 98fa e9a3ba 98fa 000098fa e8c0 e8c0 e8c0 e8c0 e8c0 e8c0 e8c0
+10957 e8c1 e8c1 e8c1 * * 556a 8ea2d5ea,8ea2d5eav 9911 e9a491 9911 00009911 e8c1 e8c1 e8c1 e8c1 e8c1 e8c1 e8c1
+10958 e8c2 e8c2 e8c2 * * 556b 8ea2d5eb,8ea2d5ebv 9914 e9a494 9914 00009914 e8c2 e8c2 e8c2 e8c2 e8c2 e8c2 e8c2
+10959 e8c3 e8c3 e8c3 * * 556c 8ea2d5ec,8ea2d5ecv 9916 e9a496 9916 00009916 e8c3 e8c3 e8c3 e8c3 e8c3 e8c3 e8c3
+10960 e8c4 e8c4 e8c4 * * 556d 8ea2d5ed,8ea2d5edv 9917 e9a497 9917 00009917 e8c4 e8c4 e8c4 e8c4 e8c4 e8c4 e8c4
+10961 e8c5 e8c5 e8c5 * * 556e 8ea2d5ee,8ea2d5eev 9915 e9a495 9915 00009915 e8c5 e8c5 e8c5 e8c5 e8c5 e8c5 e8c5
+10962 e8c6 e8c6 e8c6 * * 556f 8ea2d5ef,8ea2d5efv 99dc e9a79c 99dc 000099dc e8c6 e8c6 e8c6 e8c6 e8c6 e8c6 e8c6
+10963 e8c7 e8c7 e8c7 * * 5570 8ea2d5f0,8ea2d5f0v 99cd e9a78d 99cd 000099cd e8c7 e8c7 e8c7 e8c7 e8c7 e8c7 e8c7
+10964 e8c8 e8c8 e8c8 * * 5571 8ea2d5f1,8ea2d5f1v 99cf e9a78f 99cf 000099cf e8c8 e8c8 e8c8 e8c8 e8c8 e8c8 e8c8
+10965 e8c9 e8c9 e8c9 * * 5572 8ea2d5f2,8ea2d5f2v 99d3 e9a793 99d3 000099d3 e8c9 e8c9 e8c9 e8c9 e8c9 e8c9 e8c9
+10966 e8ca e8ca e8ca * * 5573 8ea2d5f3,8ea2d5f3v 99d4 e9a794 99d4 000099d4 e8ca e8ca e8ca e8ca e8ca e8ca e8ca
+10967 e8cb e8cb e8cb * * 5574 8ea2d5f4,8ea2d5f4v 99ce e9a78e 99ce 000099ce e8cb e8cb e8cb e8cb e8cb e8cb e8cb
+10968 e8cc e8cc e8cc * * 5575 8ea2d5f5,8ea2d5f5v 99c9 e9a789 99c9 000099c9 e8cc e8cc e8cc e8cc e8cc e8cc e8cc
+10969 e8cd e8cd e8cd * * 5576 8ea2d5f6,8ea2d5f6v 99d6 e9a796,eeadae 99d6,eb6e 000099d6,0000eb6e 9bc6,e8cd e8cd e8cd e8cd e8cd e8cd 9bc6,e8cd
+10970 e8ce e8ce e8ce * * 5577 8ea2d5f7,8ea2d5f7v 99d8 e9a798 99d8 000099d8 e8ce e8ce e8ce e8ce e8ce e8ce e8ce
+10971 e8cf e8cf e8cf * * 5578 8ea2d5f8,8ea2d5f8v 99cb e9a78b 99cb 000099cb e8cf e8cf e8cf e8cf e8cf e8cf e8cf
+10972 e8d0 e8d0 e8d0 * * 5579 8ea2d5f9,8ea2d5f9v 99d7 e9a797 99d7 000099d7 e8d0 e8d0 e8d0 e8d0 e8d0 e8d0 e8d0
+10973 e8d1 e8d1 e8d1 * * 557a 8ea2d5fa,8ea2d5fav 99cc e9a78c 99cc 000099cc e8d1 e8d1 e8d1 e8d1 e8d1 e8d1 e8d1
+10974 e8d2 e8d2 e8d2 * * 557b 8ea2d5fb,8ea2d5fbv 9ab3 e9aab3 9ab3 00009ab3 e8d2 e8d2 e8d2 e8d2 e8d2 e8d2 e8d2
+10975 e8d3 e8d3 e8d3 * * 557c 8ea2d5fc,8ea2d5fcv 9aec e9abac 9aec 00009aec e8d3 e8d3 e8d3 e8d3 e8d3 e8d3 e8d3
+10976 e8d4 e8d4 e8d4 * * 557d 8ea2d5fd,8ea2d5fdv 9aeb e9abab 9aeb 00009aeb e8d4 e8d4 e8d4 e8d4 e8d4 e8d4 e8d4
+10977 e8d5 e8d5 e8d5 * * 557e 8ea2d5fe,8ea2d5fev 9af3 e9abb3 9af3 00009af3 e8d5 e8d5 e8d5 e8d5 e8d5 e8d5 e8d5
+10978 e8d6 e8d6 e8d6 * * 5621 8ea2d6a1,8ea2d6a1v 9af2 e9abb2 9af2 00009af2 e8d6 e8d6 e8d6 e8d6 e8d6 e8d6 e8d6
+10979 e8d7 e8d7 e8d7 * * 5622 8ea2d6a2,8ea2d6a2v 9af1 e9abb1 9af1 00009af1 e8d7 e8d7 e8d7 e8d7 e8d7 e8d7 e8d7
+10980 e8d8 e8d8 e8d8 * * 5623 8ea2d6a3,8ea2d6a3v 9b46 e9ad86 9b46 00009b46 e8d8 e8d8 e8d8 e8d8 e8d8 e8d8 e8d8
+10981 e8d9 e8d9 e8d9 * * 5624 8ea2d6a4,8ea2d6a4v 9b43 e9ad83 9b43 00009b43 e8d9 e8d9 e8d9 e8d9 e8d9 e8d9 e8d9
+10982 e8da e8da e8da * * 5625 8ea2d6a5,8ea2d6a5v 9b67 e9ada7 9b67 00009b67 e8da e8da e8da e8da e8da e8da e8da
+10983 e8db e8db e8db * * 5626 8ea2d6a6,8ea2d6a6v 9b74 e9adb4 9b74 00009b74 e8db e8db e8db e8db e8db e8db e8db
+10984 e8dc e8dc e8dc * * 5627 8ea2d6a7,8ea2d6a7v 9b71 e9adb1 9b71 00009b71 e8dc e8dc e8dc e8dc e8dc e8dc e8dc
+10985 e8dd e8dd e8dd * * 5628 8ea2d6a8,8ea2d6a8v 9b66 e9ada6 9b66 00009b66 e8dd e8dd e8dd e8dd e8dd e8dd e8dd
+10986 e8de e8de e8de * * 5629 8ea2d6a9,8ea2d6a9v 9b76 e9adb6 9b76 00009b76 e8de e8de e8de e8de e8de e8de e8de
+10987 e8df e8df e8df * * 562a 8ea2d6aa,8ea2d6aav 9b75 e9adb5 9b75 00009b75 e8df e8df e8df e8df e8df e8df e8df
+10988 e8e0 e8e0 e8e0 * * 562b 8ea2d6ab,8ea2d6abv 9b70 e9adb0 9b70 00009b70 e8e0 e8e0 e8e0 e8e0 e8e0 e8e0 e8e0
+10989 e8e1 e8e1 e8e1 * * 562c 8ea2d6ac,8ea2d6acv 9b68 e9ada8 9b68 00009b68 e8e1 e8e1 e8e1 e8e1 e8e1 e8e1 e8e1
+10990 e8e2 e8e2 e8e2 * * 562d 8ea2d6ad,8ea2d6adv 9b64 e9ada4 9b64 00009b64 e8e2 e8e2 e8e2 e8e2 e8e2 e8e2 e8e2
+10991 e8e3 e8e3 e8e3 * * 562e 8ea2d6ae,8ea2d6aev 9b6c e9adac 9b6c 00009b6c e8e3 e8e3 e8e3 e8e3 e8e3 e8e3 e8e3
+10992 e8e4 e8e4 e8e4 * * 562f 8ea2d6af,8ea2d6afv 9cfc e9b3bc 9cfc 00009cfc e8e4 e8e4 e8e4 e8e4 e8e4 e8e4 e8e4
+10993 e8e5 e8e5 e8e5 * * 5630 8ea2d6b0,8ea2d6b0v 9cfa e9b3ba 9cfa 00009cfa e8e5 e8e5 e8e5 e8e5 e8e5 e8e5 e8e5
+10994 e8e6 e8e6 e8e6 * * 5631 8ea2d6b1,8ea2d6b1v 9cfd e9b3bd 9cfd 00009cfd e8e6 e8e6 e8e6 e8e6 e8e6 e8e6 e8e6
+10995 e8e7 e8e7 e8e7 * * 5632 8ea2d6b2,8ea2d6b2v 9cff e9b3bf 9cff 00009cff e8e7 e8e7 e8e7 e8e7 e8e7 e8e7 e8e7
+10996 e8e8 e8e8 e8e8 * * 5633 8ea2d6b3,8ea2d6b3v 9cf7 e9b3b7 9cf7 00009cf7 e8e8 e8e8 e8e8 e8e8 e8e8 e8e8 e8e8
+10997 e8e9 e8e9 e8e9 * * 5634 8ea2d6b4,8ea2d6b4v 9d07 e9b487 9d07 00009d07 e8e9 e8e9 e8e9 e8e9 e8e9 e8e9 e8e9
+10998 e8ea e8ea e8ea * * 5635 8ea2d6b5,8ea2d6b5v 9d00 e9b480 9d00 00009d00 e8ea e8ea e8ea e8ea e8ea e8ea e8ea
+10999 e8eb e8eb e8eb * * 5636 8ea2d6b6,8ea2d6b6v 9cf9 e9b3b9 9cf9 00009cf9 e8eb e8eb e8eb e8eb e8eb e8eb e8eb
+11000 e8ec e8ec e8ec * * 5637 8ea2d6b7,8ea2d6b7v 9cfb e9b3bb 9cfb 00009cfb e8ec e8ec e8ec e8ec e8ec e8ec e8ec
+11001 e8ed e8ed e8ed * * 5638 8ea2d6b8,8ea2d6b8v 9d08 e9b488 9d08 00009d08 e8ed e8ed e8ed e8ed e8ed e8ed e8ed
+11002 e8ee e8ee e8ee * * 5639 8ea2d6b9,8ea2d6b9v 9d05 e9b485 9d05 00009d05 e8ee e8ee e8ee e8ee e8ee e8ee e8ee
+11003 e8ef e8ef e8ef * * 563a 8ea2d6ba,8ea2d6bav 9d04 e9b484 9d04 00009d04 e8ef e8ef e8ef e8ef e8ef e8ef e8ef
+11004 e8f0 e8f0 e8f0 * * 563b 8ea2d6bb,8ea2d6bbv 9e83 e9ba83 9e83 00009e83 e8f0 e8f0 e8f0 e8f0 e8f0 e8f0 e8f0
+11005 e8f1 e8f1 e8f1 * * 563c 8ea2d6bc,8ea2d6bcv 9ed3 e9bb93 9ed3 00009ed3 e8f1 e8f1 e8f1 e8f1 e8f1 e8f1 e8f1
+11006 e8f2 e8f2 e8f2 * * 563d 8ea2d6bd,8ea2d6bdv 9f0f e9bc8f 9f0f 00009f0f e8f2 e8f2 e8f2 e8f2 e8f2 e8f2 e8f2
+11007 e8f3 e8f3 e8f3 * * 563e 8ea2d6be,8ea2d6bev 9f10 e9bc90 9f10 00009f10 e8f3 e8f3 e8f3 e8f3 e8f3 e8f3 e8f3
+11008 e8f4 e8f4 e8f4 * * 563f 8ea2d6bf,8ea2d6bfv 511c e5849c 511c 0000511c e8f4 e8f4 e8f4 e8f4 e8f4 e8f4 e8f4
+11009 e8f5 e8f5 e8f5 * * 5640 8ea2d6c0,8ea2d6c0v 5113 e58493 5113 00005113 e8f5 e8f5 e8f5 e8f5 e8f5 e8f5 e8f5
+11010 e8f6 e8f6 e8f6 * * 5641 8ea2d6c1,8ea2d6c1v 5117 e58497 5117 00005117 e8f6 e8f6 e8f6 e8f6 e8f6 e8f6 e8f6
+11011 e8f7 e8f7 e8f7 * * 5642 8ea2d6c2,8ea2d6c2v 511a e5849a 511a 0000511a e8f7 e8f7 e8f7 e8f7 e8f7 e8f7 e8f7
+11012 e8f8 e8f8 e8f8 * * 5643 8ea2d6c3,8ea2d6c3v 5111 e58491 5111 00005111 e8f8 e8f8 e8f8 e8f8 e8f8 e8f8 e8f8
+11013 e8f9 e8f9 e8f9 * * 5644 8ea2d6c4,8ea2d6c4v 51de e5879e 51de 000051de e8f9 e8f9 e8f9 e8f9 e8f9 e8f9 e8f9
+11014 e8fa e8fa e8fa * * 5645 8ea2d6c5,8ea2d6c5v 5334 e58cb4 5334 00005334 e8fa e8fa e8fa e8fa e8fa e8fa e8fa
+11015 e8fb e8fb e8fb * * 5646 8ea2d6c6,8ea2d6c6v 53e1 e58fa1 53e1 000053e1 e8fb e8fb e8fb e8fb e8fb e8fb e8fb
+11016 e8fc e8fc e8fc * * 5647 8ea2d6c7,8ea2d6c7v 5670 e599b0 5670 00005670 e8fc e8fc e8fc e8fc e8fc e8fc e8fc
+11017 e8fd e8fd e8fd * * 5648 8ea2d6c8,8ea2d6c8v 5660 e599a0 5660 00005660 e8fd e8fd e8fd e8fd e8fd e8fd e8fd
+11018 e8fe e8fe e8fe * * 5649 8ea2d6c9,8ea2d6c9v 566e e599ae 566e 0000566e e8fe e8fe e8fe e8fe e8fe e8fe e8fe
+11019 e940 e940 e940 * * 564a 8ea2d6ca,8ea2d6cav 5673 e599b3 5673 00005673 e940 e940 e940 e940 e940 e940 e940
+11020 e941 e941 e941 * * 564b 8ea2d6cb,8ea2d6cbv 5666 e599a6 5666 00005666 e941 e941 e941 e941 e941 e941 e941
+11021 e942 e942 e942 * * 564c 8ea2d6cc,8ea2d6ccv 5663 e599a3 5663 00005663 e942 e942 e942 e942 e942 e942 e942
+11022 e943 e943 e943 * * 564d 8ea2d6cd,8ea2d6cdv 566d e599ad 566d 0000566d e943 e943 e943 e943 e943 e943 e943
+11023 e944 e944 e944 * * 564e 8ea2d6ce,8ea2d6cev 5672 e599b2 5672 00005672 e944 e944 e944 e944 e944 e944 e944
+11024 e945 e945 e945 * * 564f 8ea2d6cf,8ea2d6cfv 565e e5999e 565e 0000565e e945 e945 e945 e945 e945 e945 e945
+11025 e946 e946 e946 * * 5650 8ea2d6d0,8ea2d6d0v 5677 e599b7 5677 00005677 e946 e946 e946 e946 e946 e946 e946
+11026 e947 e947 e947 * * 5651 8ea2d6d1,8ea2d6d1v 571c e59c9c 571c 0000571c e947 e947 e947 e947 e947 e947 e947
+11027 e948 e948 e948 * * 5652 8ea2d6d2,8ea2d6d2v 571b e59c9b 571b 0000571b e948 e948 e948 e948 e948 e948 e948
+11028 e949 e949 e949 * * 5653 8ea2d6d3,8ea2d6d3v 58c8 e5a388 58c8 000058c8 e949 e949 e949 e949 e949 e949 e949
+11029 e94a e94a e94a * * 5654 8ea2d6d4,8ea2d6d4v 58bd e5a2bd 58bd 000058bd e94a e94a e94a e94a e94a e94a e94a
+11030 e94b e94b e94b * * 5655 8ea2d6d5,8ea2d6d5v 58c9 e5a389 58c9 000058c9 e94b e94b e94b e94b e94b e94b e94b
+11031 e94c e94c e94c * * 5656 8ea2d6d6,8ea2d6d6v 58bf e5a2bf 58bf 000058bf e94c e94c e94c e94c e94c e94c e94c
+11032 e94d e94d e94d * * 5657 8ea2d6d7,8ea2d6d7v 58ba e5a2ba 58ba 000058ba e94d e94d e94d e94d e94d e94d e94d
+11033 e94e e94e e94e * * 5658 8ea2d6d8,8ea2d6d8v 58c2 e5a382 58c2 000058c2 e94e e94e e94e e94e e94e e94e e94e
+11034 e94f e94f e94f * * 5659 8ea2d6d9,8ea2d6d9v 58bc e5a2bc 58bc 000058bc e94f e94f e94f e94f e94f e94f e94f
+11035 e950 e950 e950 * * 565a 8ea2d6da,8ea2d6dav 58c6 e5a386 58c6 000058c6 e950 e950 e950 e950 e950 e950 e950
+11036 e951 e951 e951 * * 565b 8ea2d6db,8ea2d6dbv 5b17 e5ac97 5b17 00005b17 e951 e951 e951 e951 e951 e951 e951
+11037 e952 e952 e952 * * 565c 8ea2d6dc,8ea2d6dcv 5b19 e5ac99 5b19 00005b19 e952 e952 e952 e952 e952 e952 e952
+11038 e953 e953 e953 * * 565d 8ea2d6dd,8ea2d6ddv 5b1b e5ac9b 5b1b 00005b1b e953 e953 e953 e953 e953 e953 e953
+11039 e954 e954 e954 * * 565e 8ea2d6de,8ea2d6dev 5b21 e5aca1 5b21 00005b21 e954 e954 e954 e954 e954 e954 e954
+11040 e955 e955 e955 * * 565f 8ea2d6df,8ea2d6dfv 5b14 e5ac94 5b14 00005b14 e955 e955 e955 e955 e955 e955 e955
+11041 e956 e956 e956 * * 5660 8ea2d6e0,8ea2d6e0v 5b13 e5ac93 5b13 00005b13 e956 e956 e956 e956 e956 e956 e956
+11042 e957 e957 e957 * * 5661 8ea2d6e1,8ea2d6e1v 5b10 e5ac90 5b10 00005b10 e957 e957 e957 e957 e957 e957 e957
+11043 e958 e958 e958 * * 5662 8ea2d6e2,8ea2d6e2v 5b16 e5ac96 5b16 00005b16 e958 e958 e958 e958 e958 e958 e958
+11044 e959 e959 e959 * * 5663 8ea2d6e3,8ea2d6e3v 5b28 e5aca8,eea293 5b28,e893 00005b28,0000e893 96fc,e959 e959 e959 e959 e959 e959 96fc,e959
+11045 e95a e95a e95a * * 5664 8ea2d6e4,8ea2d6e4v 5b1a e5ac9a 5b1a 00005b1a e95a e95a e95a e95a e95a e95a e95a
+11046 e95b e95b e95b * * 5665 8ea2d6e5,8ea2d6e5v 5b20 e5aca0 5b20 00005b20 e95b e95b e95b e95b e95b e95b e95b
+11047 e95c e95c e95c * * 5666 8ea2d6e6,8ea2d6e6v 5b1e e5ac9e 5b1e 00005b1e e95c e95c e95c e95c e95c e95c e95c
+11048 e95d e95d e95d * * 5667 8ea2d6e7,8ea2d6e7v 5bef e5afaf 5bef 00005bef e95d e95d e95d e95d e95d e95d e95d
+11049 e95e e95e e95e * * 5668 8ea2d6e8,8ea2d6e8v 5dac e5b6ac 5dac 00005dac e95e e95e e95e e95e e95e e95e e95e
+11050 e95f e95f e95f * * 5669 8ea2d6e9,8ea2d6e9v 5db1 e5b6b1 5db1 00005db1 e95f e95f e95f e95f e95f e95f e95f
+11051 e960 e960 e960 * * 566a 8ea2d6ea,8ea2d6eav 5da9 e5b6a9 5da9 00005da9 e960 e960 e960 e960 e960 e960 e960
+11052 e961 e961 e961 * * 566b 8ea2d6eb,8ea2d6ebv 5da7 e5b6a7 5da7 00005da7 e961 e961 e961 e961 e961 e961 e961
+11053 e962 e962 e962 * * 566c 8ea2d6ec,8ea2d6ecv 5db5 e5b6b5 5db5 00005db5 e962 e962 e962 e962 e962 e962 e962
+11054 e963 e963 e963 * * 566d 8ea2d6ed,8ea2d6edv 5db0 e5b6b0 5db0 00005db0 e963 e963 e963 e963 e963 e963 e963
+11055 e964 e964 e964 * * 566e 8ea2d6ee,8ea2d6eev 5dae e5b6ae 5dae 00005dae e964 e964 e964 e964 e964 e964 e964
+11056 e965 e965 e965 * * 566f 8ea2d6ef,8ea2d6efv 5daa e5b6aa 5daa 00005daa e965 e965 e965 e965 e965 e965 e965
+11057 e966 e966 e966 * * 5670 8ea2d6f0,8ea2d6f0v 5da8 e5b6a8 5da8 00005da8 e966 e966 e966 e966 e966 e966 e966
+11058 e967 e967 e967 * * 5671 8ea2d6f1,8ea2d6f1v 5db2 e5b6b2 5db2 00005db2 e967 e967 e967 e967 e967 e967 e967
+11059 e968 e968 e968 * * 5672 8ea2d6f2,8ea2d6f2v 5dad e5b6ad 5dad 00005dad e968 e968 e968 e968 e968 e968 e968
+11060 e969 e969 e969 * * 5673 8ea2d6f3,8ea2d6f3v 5daf e5b6af 5daf 00005daf e969 e969 e969 e969 e969 e969 e969
+11061 e96a e96a e96a * * 5674 8ea2d6f4,8ea2d6f4v 5db4 e5b6b4 5db4 00005db4 e96a e96a e96a e96a e96a e96a e96a
+11062 e96b e96b e96b * * 5675 8ea2d6f5,8ea2d6f5v 5e67 e5b9a7 5e67 00005e67 e96b e96b e96b e96b e96b e96b e96b
+11063 e96c e96c e96c * * 5676 8ea2d6f6,8ea2d6f6v 5e68 e5b9a8 5e68 00005e68 e96c e96c e96c e96c e96c e96c e96c
+11064 e96d e96d e96d * * 5677 8ea2d6f7,8ea2d6f7v 5e66 e5b9a6 5e66 00005e66 e96d e96d e96d e96d e96d e96d e96d
+11065 e96e e96e e96e * * 5678 8ea2d6f8,8ea2d6f8v 5e6f e5b9af 5e6f 00005e6f e96e e96e e96e e96e e96e e96e e96e
+11066 e96f e96f e96f * * 5679 8ea2d6f9,8ea2d6f9v 5ee9 e5bba9 5ee9 00005ee9 e96f e96f e96f e96f e96f e96f e96f
+11067 e970 e970 e970 * * 567a 8ea2d6fa,8ea2d6fav 5ee7 e5bba7 5ee7 00005ee7 e970 e970 e970 e970 e970 e970 e970
+11068 e971 e971 e971 * * 567b 8ea2d6fb,8ea2d6fbv 5ee6 e5bba6 5ee6 00005ee6 e971 e971 e971 e971 e971 e971 e971
+11069 e972 e972 e972 * * 567c 8ea2d6fc,8ea2d6fcv 5ee8 e5bba8 5ee8 00005ee8 e972 e972 e972 e972 e972 e972 e972
+11070 e973 e973 e973 * * 567d 8ea2d6fd,8ea2d6fdv 5ee5 e5bba5 5ee5 00005ee5 e973 e973 e973 e973 e973 e973 e973
+11071 e974 e974 e974 * * 567e 8ea2d6fe,8ea2d6fev 5f4b e5bd8b 5f4b 00005f4b e974 e974 e974 e974 e974 e974 e974
+11072 e975 e975 e975 * * 5721 8ea2d7a1,8ea2d7a1v 5fbc e5bebc 5fbc 00005fbc e975 e975,fc5d 91fa,e975 e975 e975 e975 e975
+11073 ecde ecde ecde * * 5722 8ea2d7a2,8ea2d7a2v 5fbb e5bebb 5fbb 00005fbb ecde ecde ecde ecde ecde ecde ecde
+11074 e976 e976 e976 * * 5723 8ea2d7a3,8ea2d7a3v 619d e6869d 619d 0000619d e976 e976 e976 e976 e976 e976 e976
+11075 e977 e977 e977 * * 5724 8ea2d7a4,8ea2d7a4v 61a8 e686a8 61a8 000061a8 e977 e977 e977 e977 e977 e977 e977
+11076 e978 e978 e978 * * 5725 8ea2d7a5,8ea2d7a5v 6196 e68696 6196 00006196 e978 e978 e978 e978 e978 e978 e978
+11077 e979 e979 e979 * * 5726 8ea2d7a6,8ea2d7a6v 61c5 e68785 61c5 000061c5 e979 e979 e979 e979 e979 e979 e979
+11078 e97a e97a e97a * * 5727 8ea2d7a7,8ea2d7a7v 61b4 e686b4 61b4 000061b4 e97a e97a e97a e97a e97a e97a e97a
+11079 e97b e97b e97b * * 5728 8ea2d7a8,8ea2d7a8v 61c6 e68786 61c6 000061c6 e97b e97b e97b e97b e97b e97b e97b
+11080 e97c e97c e97c * * 5729 8ea2d7a9,8ea2d7a9v 61c1 e68781 61c1 000061c1 e97c e97c e97c e97c e97c e97c e97c
+11081 e97d e97d e97d * * 572a 8ea2d7aa,8ea2d7aav 61cc e6878c 61cc 000061cc e97d e97d e97d e97d e97d e97d e97d
+11082 e97e e97e e97e * * 572b 8ea2d7ab,8ea2d7abv 61ba e686ba 61ba 000061ba e97e e97e e97e e97e e97e e97e e97e
+11083 e9a1 e9a1 e9a1 * * 572c 8ea2d7ac,8ea2d7acv 61bf e686bf 61bf 000061bf e9a1 e9a1 e9a1 e9a1 e9a1 e9a1 e9a1
+11084 e9a2 e9a2 e9a2 * * 572d 8ea2d7ad,8ea2d7adv 61b8 e686b8 61b8 000061b8 e9a2 e9a2 e9a2 e9a2 e9a2 e9a2 e9a2
+11085 e9a3 e9a3 e9a3 * * 572e 8ea2d7ae,8ea2d7aev 618c e6868c 618c 0000618c e9a3 e9a3 e9a3 e9a3 e9a3 e9a3 e9a3
+11086 e9a4 e9a4 e9a4 * * 572f 8ea2d7af,8ea2d7afv 64d7 e69397 64d7 000064d7 e9a4 e9a4 e9a4 e9a4 e9a4 e9a4 e9a4
+11087 e9a5 e9a5 e9a5 * * 5730 8ea2d7b0,8ea2d7b0v 64d6 e69396 64d6 000064d6 e9a5 e9a5 e9a5 e9a5 e9a5 e9a5 e9a5
+11088 e9a6 e9a6 e9a6 * * 5731 8ea2d7b1,8ea2d7b1v 64d0 e69390 64d0 000064d0 e9a6 e9a6 e9a6 e9a6 e9a6 e9a6 e9a6
+11089 e9a7 e9a7 e9a7 * * 5732 8ea2d7b2,8ea2d7b2v 64cf e6938f 64cf 000064cf e9a7 e9a7 e9a7 e9a7 e9a7 e9a7 e9a7
+11090 e9a8 e9a8 e9a8 * * 5733 8ea2d7b3,8ea2d7b3v 64c9 e69389 64c9 000064c9 e9a8 e9a8 e9a8 e9a8 e9a8 e9a8 e9a8
+11091 e9a9 e9a9 e9a9 * * 5734 8ea2d7b4,8ea2d7b4v 64bd e692bd 64bd 000064bd e9a9 e9a9 e9a9 e9a9 e9a9 e9a9 e9a9
+11092 e9aa e9aa e9aa * * 5735 8ea2d7b5,8ea2d7b5v 6489 e69289 6489 00006489 e9aa e9aa e9aa e9aa e9aa e9aa e9aa
+11093 e9ab e9ab e9ab * * 5736 8ea2d7b6,8ea2d7b6v 64c3 e69383 64c3 000064c3 e9ab e9ab e9ab e9ab e9ab e9ab e9ab
+11094 e9ac e9ac e9ac * * 5737 8ea2d7b7,8ea2d7b7v 64db e6939b 64db 000064db e9ac e9ac e9ac e9ac e9ac e9ac e9ac
+11095 e9ad e9ad e9ad * * 5738 8ea2d7b8,8ea2d7b8v 64f3 e693b3 64f3 000064f3 e9ad e9ad e9ad e9ad e9ad e9ad e9ad
+11096 e9ae e9ae e9ae * * 5739 8ea2d7b9,8ea2d7b9v 64d9 e69399 64d9 000064d9 e9ae e9ae e9ae e9ae e9ae e9ae e9ae
+11097 e9af e9af e9af * * 573a 8ea2d7ba,8ea2d7bav 6533 e694b3 6533 00006533 e9af e9af e9af e9af e9af e9af e9af
+11098 e9b0 e9b0 e9b0 * * 573b 8ea2d7bb,8ea2d7bbv 657f e695bf 657f 0000657f e9b0 e9b0 e9b0 e9b0 e9b0 e9b0 e9b0
+11099 e9b1 e9b1 e9b1 * * 573c 8ea2d7bc,8ea2d7bcv 657c e695bc 657c 0000657c e9b1 e9b1 e9b1 e9b1 e9b1 e9b1 e9b1
+11100 e9b2 e9b2 e9b2 * * 573d 8ea2d7bd,8ea2d7bdv 65a2 e696a2 65a2 000065a2 e9b2 e9b2 e9b2 e9b2 e9b2 e9b2 e9b2
+11101 e9b3 e9b3 e9b3 * * 573e 8ea2d7be,8ea2d7bev 66c8 e69b88 66c8 000066c8 e9b3 e9b3 e9b3 e9b3 e9b3 e9b3 e9b3
+11102 e9b4 e9b4 e9b4 * * 573f 8ea2d7bf,8ea2d7bfv 66be e69abe 66be 000066be e9b4 e9b4 e9b4 e9b4 e9b4 e9b4 e9b4
+11103 e9b5 e9b5 e9b5 * * 5740 8ea2d7c0,8ea2d7c0v 66c0 e69b80 66c0 000066c0 e9b5 e9b5 e9b5 e9b5 e9b5 e9b5 e9b5
+11104 e9b6 e9b6 e9b6 * * 5741 8ea2d7c1,8ea2d7c1v 66ca e69b8a 66ca 000066ca e9b6 e9b6 e9b6 e9b6 e9b6 e9b6 e9b6
+11105 e9b7 e9b7 e9b7 * * 5742 8ea2d7c2,8ea2d7c2v 66cb e69b8b 66cb 000066cb e9b7 e9b7 e9b7 e9b7 e9b7 e9b7 e9b7
+11106 e9b8 e9b8 e9b8 * * 5743 8ea2d7c3,8ea2d7c3v 66cf e69b8f 66cf 000066cf e9b8 e9b8 e9b8 e9b8 e9b8 e9b8 e9b8
+11107 e9b9 e9b9 e9b9 * * 5744 8ea2d7c4,8ea2d7c4v 66bd e69abd 66bd 000066bd e9b9 e9b9 e9b9 e9b9 e9b9 e9b9 e9b9
+11108 e9ba e9ba e9ba * * 5745 8ea2d7c5,8ea2d7c5v 66bb e69abb 66bb 000066bb e9ba e9ba e9ba e9ba e9ba e9ba e9ba
+11109 e9bb e9bb e9bb * * 5746 8ea2d7c6,8ea2d7c6v 66ba e69aba 66ba 000066ba e9bb e9bb e9bb e9bb e9bb e9bb e9bb
+11110 e9bc e9bc e9bc * * 5747 8ea2d7c7,8ea2d7c7v 66cc e69b8c 66cc 000066cc e9bc e9bc e9bc e9bc e9bc e9bc e9bc
+11111 e9bd e9bd e9bd * * 5748 8ea2d7c8,8ea2d7c8v 6723 e69ca3 6723 00006723 e9bd e9bd e9bd e9bd e9bd e9bd e9bd
+11112 e9be e9be e9be * * 5749 8ea2d7c9,8ea2d7c9v 6a34 e6a8b4 6a34 00006a34 e9be e9be e9be e9be e9be e9be e9be
+11113 e9bf e9bf e9bf * * 574a 8ea2d7ca,8ea2d7cav 6a66 e6a9a6 6a66 00006a66 e9bf e9bf e9bf e9bf e9bf e9bf e9bf
+11114 e9c0 e9c0 e9c0 * * 574b 8ea2d7cb,8ea2d7cbv 6a49 e6a989 6a49 00006a49 e9c0 e9c0 e9c0 e9c0 e9c0 e9c0 e9c0
+11115 e9c1 e9c1 e9c1 * * 574c 8ea2d7cc,8ea2d7ccv 6a67 e6a9a7 6a67 00006a67 e9c1 e9c1 e9c1 e9c1 e9c1 e9c1 e9c1
+11116 e9c2 e9c2 e9c2 * * 574d 8ea2d7cd,8ea2d7cdv 6a32 e6a8b2 6a32 00006a32 e9c2 e9c2 e9c2 e9c2 e9c2 e9c2 e9c2
+11117 e9c3 e9c3 e9c3 * * 574e 8ea2d7ce,8ea2d7cev 6a68 e6a9a8 6a68 00006a68 e9c3 e9c3 e9c3 e9c3 e9c3 e9c3 e9c3
+11118 e9c4 e9c4 e9c4 * * 574f 8ea2d7cf,8ea2d7cfv 6a3e e6a8be 6a3e 00006a3e e9c4 e9c4 e9c4 e9c4 e9c4 e9c4 e9c4
+11119 e9c5 e9c5 e9c5 * * 5750 8ea2d7d0,8ea2d7d0v 6a5d e6a99d 6a5d 00006a5d e9c5 e9c5 e9c5 e9c5 e9c5 e9c5 e9c5
+11120 e9c6 e9c6 e9c6 * * 5751 8ea2d7d1,8ea2d7d1v 6a6d e6a9ad 6a6d 00006a6d e9c6 e9c6 e9c6 e9c6 e9c6 e9c6 e9c6
+11121 e9c7 e9c7 e9c7 * * 5752 8ea2d7d2,8ea2d7d2v 6a76 e6a9b6 6a76 00006a76 e9c7 e9c7 e9c7 e9c7 e9c7 e9c7 e9c7
+11122 e9c8 e9c8 e9c8 * * 5753 8ea2d7d3,8ea2d7d3v 6a5b e6a99b 6a5b 00006a5b e9c8 e9c8 e9c8 e9c8 e9c8 e9c8 e9c8
+11123 e9c9 e9c9 e9c9 * * 5754 8ea2d7d4,8ea2d7d4v 6a51 e6a991 6a51 00006a51 e9c9 e9c9 e9c9 e9c9 e9c9 e9c9 e9c9
+11124 e9ca e9ca e9ca * * 5755 8ea2d7d5,8ea2d7d5v 6a28 e6a8a8 6a28 00006a28 e9ca e9ca e9ca e9ca e9ca e9ca e9ca
+11125 e9cb e9cb e9cb * * 5756 8ea2d7d6,8ea2d7d6v 6a5a e6a99a 6a5a 00006a5a e9cb e9cb e9cb e9cb e9cb e9cb e9cb
+11126 e9cc e9cc e9cc * * 5757 8ea2d7d7,8ea2d7d7v 6a3b e6a8bb 6a3b 00006a3b e9cc e9cc e9cc e9cc e9cc e9cc e9cc
+11127 e9cd e9cd e9cd * * 5758 8ea2d7d8,8ea2d7d8v 6a3f e6a8bf 6a3f 00006a3f e9cd e9cd e9cd e9cd e9cd e9cd e9cd
+11128 e9ce e9ce e9ce * * 5759 8ea2d7d9,8ea2d7d9v 6a41 e6a981 6a41 00006a41 e9ce e9ce e9ce e9ce e9ce e9ce e9ce
+11129 e9cf e9cf e9cf * * 575a 8ea2d7da,8ea2d7dav 6a6a e6a9aa 6a6a 00006a6a e9cf e9cf e9cf e9cf e9cf e9cf e9cf
+11130 e9d0 e9d0 e9d0 * * 575b 8ea2d7db,8ea2d7dbv 6a64 e6a9a4 6a64 00006a64 e9d0 e9d0 e9d0 e9d0 e9d0 e9d0 e9d0
+11131 e9d1 e9d1 e9d1 * * 575c 8ea2d7dc,8ea2d7dcv 6a50 e6a990 6a50 00006a50 e9d1 e9d1 e9d1 e9d1 e9d1 e9d1 e9d1
+11132 e9d2 e9d2 e9d2 * * 575d 8ea2d7dd,8ea2d7ddv 6a4f e6a98f 6a4f 00006a4f e9d2 e9d2 e9d2 e9d2 e9d2 e9d2 e9d2
+11133 e9d3 e9d3 e9d3 * * 575e 8ea2d7de,8ea2d7dev 6a54 e6a994 6a54 00006a54 e9d3 e9d3 e9d3 e9d3 e9d3 e9d3 e9d3
+11134 e9d4 e9d4 e9d4 * * 575f 8ea2d7df,8ea2d7dfv 6a6f e6a9af 6a6f 00006a6f e9d4 e9d4 e9d4 e9d4 e9d4 e9d4 e9d4
+11135 e9d5 e9d5 e9d5 * * 5760 8ea2d7e0,8ea2d7e0v 6a69 e6a9a9 6a69 00006a69 e9d5 e9d5 e9d5 e9d5 e9d5 e9d5 e9d5
+11136 e9d6 e9d6 e9d6 * * 5761 8ea2d7e1,8ea2d7e1v 6a60 e6a9a0 6a60 00006a60 e9d6 e9d6 e9d6 e9d6 e9d6 e9d6 e9d6
+11137 e9d7 e9d7 e9d7 * * 5762 8ea2d7e2,8ea2d7e2v 6a3c e6a8bc 6a3c 00006a3c e9d7 e9d7 e9d7 e9d7 e9d7 e9d7 e9d7
+11138 e9d8 e9d8 e9d8 * * 5763 8ea2d7e3,8ea2d7e3v 6a5e e6a99e 6a5e 00006a5e e9d8 e9d8 e9d8 e9d8 e9d8 e9d8 e9d8
+11139 e9d9 e9d9 e9d9 * * 5764 8ea2d7e4,8ea2d7e4v 6a56 e6a996 6a56 00006a56 e9d9 e9d9 e9d9 e9d9 e9d9 e9d9 e9d9
+11140 e9da e9da e9da * * 5765 8ea2d7e5,8ea2d7e5v 6a55 e6a995 6a55 00006a55 e9da e9da e9da e9da e9da e9da e9da
+11141 e9db e9db e9db * * 5766 8ea2d7e6,8ea2d7e6v 6a4d e6a98d 6a4d 00006a4d e9db e9db e9db e9db e9db e9db e9db
+11142 e9dc e9dc e9dc * * 5767 8ea2d7e7,8ea2d7e7v 6a4e e6a98e 6a4e 00006a4e e9dc e9dc e9dc e9dc e9dc e9dc e9dc
+11143 e9dd e9dd e9dd * * 5768 8ea2d7e8,8ea2d7e8v 6a46 e6a986 6a46 00006a46 e9dd e9dd e9dd e9dd e9dd e9dd e9dd
+11144 e9de e9de e9de * * 5769 8ea2d7e9,8ea2d7e9v 6b55 e6ad95 6b55 00006b55 e9de e9de e9de e9de e9de e9de e9de
+11145 e9df e9df e9df * * 576a 8ea2d7ea,8ea2d7eav 6b54 e6ad94 6b54 00006b54 e9df e9df e9df e9df e9df e9df e9df
+11146 e9e0 e9e0 e9e0 * * 576b 8ea2d7eb,8ea2d7ebv 6b56 e6ad96 6b56 00006b56 e9e0 e9e0 e9e0 e9e0 e9e0 e9e0 e9e0
+11147 e9e1 e9e1 e9e1 * * 576c 8ea2d7ec,8ea2d7ecv 6ba7 e6aea7 6ba7 00006ba7 e9e1 e9e1 e9e1 e9e1 e9e1 e9e1 e9e1
+11148 e9e2 e9e2 e9e2 * * 576d 8ea2d7ed,8ea2d7edv 6baa e6aeaa 6baa 00006baa e9e2 e9e2 e9e2 e9e2 e9e2 e9e2 e9e2
+11149 e9e3 e9e3 e9e3 * * 576e 8ea2d7ee,8ea2d7eev 6bab e6aeab 6bab 00006bab e9e3 e9e3 e9e3 e9e3 e9e3 e9e3 e9e3
+11150 e9e4 e9e4 e9e4 * * 576f 8ea2d7ef,8ea2d7efv 6bc8 e6af88 6bc8 00006bc8 e9e4 e9e4 e9e4 e9e4 e9e4 e9e4 e9e4
+11151 e9e5 e9e5 e9e5 * * 5770 8ea2d7f0,8ea2d7f0v 6bc7 e6af87 6bc7 00006bc7 e9e5 e9e5 e9e5 e9e5 e9e5 e9e5 e9e5
+11152 e9e6 e9e6 e9e6 * * 5771 8ea2d7f1,8ea2d7f1v 6c04 e6b084 6c04 00006c04 e9e6 e9e6 e9e6 e9e6 e9e6 e9e6 e9e6
+11153 e9e7 e9e7 e9e7 * * 5772 8ea2d7f2,8ea2d7f2v 6c03 e6b083 6c03 00006c03 e9e7 e9e7 e9e7 e9e7 e9e7 e9e7 e9e7
+11154 e9e8 e9e8 e9e8 * * 5773 8ea2d7f3,8ea2d7f3v 6c06 e6b086 6c06 00006c06 e9e8 e9e8 e9e8 e9e8 e9e8 e9e8 e9e8
+11155 e9e9 e9e9 e9e9 * * 5774 8ea2d7f4,8ea2d7f4v 6fad e6bead 6fad 00006fad e9e9 e9e9 e9e9 e9e9 e9e9 e9e9 e9e9
+11156 e9ea e9ea e9ea * * 5775 8ea2d7f5,8ea2d7f5v 6fcb e6bf8b 6fcb 00006fcb e9ea e9ea e9ea e9ea e9ea e9ea e9ea
+11157 e9eb e9eb e9eb * * 5776 8ea2d7f6,8ea2d7f6v 6fa3 e6bea3 6fa3 00006fa3 e9eb e9eb e9eb e9eb e9eb e9eb e9eb
+11158 e9ec e9ec e9ec * * 5777 8ea2d7f7,8ea2d7f7v 6fc7 e6bf87 6fc7 00006fc7 e9ec e9ec e9ec e9ec e9ec e9ec e9ec
+11159 e9ed e9ed e9ed * * 5778 8ea2d7f8,8ea2d7f8v 6fbc e6bebc 6fbc 00006fbc e9ed e9ed e9ed e9ed e9ed e9ed e9ed
+11160 e9ee e9ee e9ee * * 5779 8ea2d7f9,8ea2d7f9v 6fce e6bf8e 6fce 00006fce e9ee e9ee e9ee e9ee e9ee e9ee e9ee
+11161 e9ef e9ef e9ef * * 577a 8ea2d7fa,8ea2d7fav 6fc8 e6bf88 6fc8 00006fc8 e9ef e9ef e9ef e9ef e9ef e9ef e9ef
+11162 e9f0 e9f0 e9f0 * * 577b 8ea2d7fb,8ea2d7fbv 6f5e e6bd9e 6f5e 00006f5e e9f0 e9f0 e9f0 e9f0 e9f0 e9f0 e9f0
+11163 e9f1 e9f1 e9f1 * * 577c 8ea2d7fc,8ea2d7fcv 6fc4 e6bf84 6fc4 00006fc4 e9f1 e9f1 e9f1 e9f1 e9f1 e9f1 e9f1
+11164 e9f2 e9f2 e9f2 * * 577d 8ea2d7fd,8ea2d7fdv 6fbd e6bebd 6fbd 00006fbd e9f2 e9f2 e9f2 e9f2 e9f2 e9f2 e9f2
+11165 e9f3 e9f3 e9f3 * * 577e 8ea2d7fe,8ea2d7fev 6f9e e6be9e 6f9e 00006f9e e9f3 e9f3 e9f3 e9f3 e9f3 e9f3 e9f3
+11166 e9f4 e9f4 e9f4 * * 5821 8ea2d8a1,8ea2d8a1v 6fca e6bf8a 6fca 00006fca e9f4 e9f4 e9f4 e9f4 e9f4 e9f4 e9f4
+11167 e9f5 e9f5 e9f5 * * 5822 8ea2d8a2,8ea2d8a2v 6fa8 e6bea8 6fa8 00006fa8 e9f5 e9f5 e9f5 e9f5 e9f5 e9f5 e9f5
+11168 e9f6 e9f6 e9f6 * * 5823 8ea2d8a3,8ea2d8a3v 7004 e78084 7004 00007004 e9f6 e9f6 e9f6 e9f6 e9f6 e9f6 e9f6
+11169 e9f7 e9f7 e9f7 * * 5824 8ea2d8a4,8ea2d8a4v 6fa5 e6bea5 6fa5 00006fa5 e9f7 e9f7 e9f7 e9f7 e9f7 e9f7 e9f7
+11170 e9f8 e9f8 e9f8 * * 5825 8ea2d8a5,8ea2d8a5v 6fae e6beae 6fae 00006fae e9f8 e9f8 e9f8 e9f8 e9f8 e9f8 e9f8
+11171 e9f9 e9f9 e9f9 * * 5826 8ea2d8a6,8ea2d8a6v 6fba e6beba 6fba 00006fba e9f9 e9f9 e9f9 e9f9 e9f9 e9f9 e9f9
+11172 e9fa e9fa e9fa * * 5827 8ea2d8a7,8ea2d8a7v 6fac e6beac 6fac 00006fac e9fa e9fa e9fa e9fa e9fa e9fa e9fa
+11173 e9fb e9fb e9fb * * 5828 8ea2d8a8,8ea2d8a8v 6faa e6beaa 6faa 00006faa e9fb e9fb e9fb e9fb e9fb e9fb e9fb
+11174 e9fc e9fc e9fc * * 5829 8ea2d8a9,8ea2d8a9v 6fcf e6bf8f 6fcf 00006fcf e9fc e9fc e9fc e9fc e9fc e9fc e9fc
+11175 e9fd e9fd e9fd * * 582a 8ea2d8aa,8ea2d8aav 6fbf e6bebf 6fbf 00006fbf e9fd e9fd e9fd e9fd e9fd e9fd e9fd
+11176 e9fe e9fe e9fe * * 582b 8ea2d8ab,8ea2d8abv 6fb8 e6beb8 6fb8 00006fb8 e9fe e9fe e9fe e9fe e9fe e9fe e9fe
+11177 ea40 ea40 ea40 * * 582c 8ea2d8ac,8ea2d8acv 6fa2 e6bea2 6fa2 00006fa2 ea40 ea40 ea40 ea40 ea40 ea40 ea40
+11178 ea41 ea41 ea41 * * 582d 8ea2d8ad,8ea2d8adv 6fc9 e6bf89 6fc9 00006fc9 ea41 ea41 ea41 ea41 ea41 ea41 ea41
+11179 ea42 ea42 ea42 * * 582e 8ea2d8ae,8ea2d8aev 6fab e6beab 6fab 00006fab ea42 ea42 ea42 ea42 ea42 ea42 ea42
+11180 ea43 ea43 ea43 * * 582f 8ea2d8af,8ea2d8afv 6fcd e6bf8d 6fcd 00006fcd ea43 ea43 ea43 ea43 ea43 ea43 ea43
+11181 ea44 ea44 ea44 * * 5830 8ea2d8b0,8ea2d8b0v 6faf e6beaf 6faf 00006faf ea44 ea44 ea44 ea44 ea44 ea44 ea44
+11182 ea45 ea45 ea45 * * 5831 8ea2d8b1,8ea2d8b1v 6fb2 e6beb2 6fb2 00006fb2 ea45 ea45 ea45 ea45 ea45 ea45 ea45
+11183 ea46 ea46 ea46 * * 5832 8ea2d8b2,8ea2d8b2v 6fb0 e6beb0 6fb0 00006fb0 ea46 ea46 ea46 ea46 ea46 ea46 ea46
+11184 ea47 ea47 ea47 * * 5833 8ea2d8b3,8ea2d8b3v 71c5 e78785 71c5 000071c5 ea47 ea47 ea47 ea47 ea47 ea47 ea47
+11185 ea48 ea48 ea48 * * 5834 8ea2d8b4,8ea2d8b4v 71c2 e78782 71c2 000071c2 ea48 ea48 ea48 ea48 ea48 ea48 ea48
+11186 ea49 ea49 ea49 * * 5835 8ea2d8b5,8ea2d8b5v 71bf e786bf 71bf 000071bf ea49 ea49 ea49 ea49 ea49 ea49 ea49
+11187 ea4a ea4a ea4a * * 5836 8ea2d8b6,8ea2d8b6v 71b8 e786b8 71b8 000071b8 ea4a ea4a ea4a ea4a ea4a ea4a ea4a
+11188 ea4b ea4b ea4b * * 5837 8ea2d8b7,8ea2d8b7v 71d6 e78796 71d6 000071d6 ea4b ea4b ea4b ea4b ea4b ea4b ea4b
+11189 ea4c ea4c ea4c * * 5838 8ea2d8b8,8ea2d8b8v 71c0 e78780 71c0 000071c0 ea4c ea4c ea4c ea4c ea4c ea4c ea4c
+11190 ea4d ea4d ea4d * * 5839 8ea2d8b9,8ea2d8b9v 71c1 e78781 71c1 000071c1 ea4d ea4d ea4d ea4d ea4d ea4d ea4d
+11191 ea4e ea4e ea4e * * 583a 8ea2d8ba,8ea2d8bav 71cb e7878b 71cb 000071cb ea4e ea4e ea4e ea4e ea4e ea4e ea4e
+11192 ea4f ea4f ea4f * * 583b 8ea2d8bb,8ea2d8bbv 71d4 e78794 71d4 000071d4 ea4f ea4f ea4f ea4f ea4f ea4f ea4f
+11193 ea50 ea50 ea50 * * 583c 8ea2d8bc,8ea2d8bcv 71ca e7878a 71ca 000071ca ea50 ea50 ea50 ea50 ea50 ea50 ea50
+11194 ea51 ea51 ea51 * * 583d 8ea2d8bd,8ea2d8bdv 71c7 e78787 71c7 000071c7 ea51 ea51 ea51 ea51 ea51 ea51 ea51
+11195 ea52 ea52 ea52 * * 583e 8ea2d8be,8ea2d8bev 71cf e7878f 71cf 000071cf ea52 ea52 ea52 ea52 ea52 ea52 ea52
+11196 ea53 ea53 ea53 * * 583f 8ea2d8bf,8ea2d8bfv 71bd e786bd 71bd 000071bd ea53 ea53 ea53 ea53 ea53 ea53 ea53
+11197 ea54 ea54 ea54 * * 5840 8ea2d8c0,8ea2d8c0v 71d8 e78798 71d8 000071d8 ea54 ea54 ea54 ea54 ea54 ea54 ea54
+11198 ea55 ea55 ea55 * * 5841 8ea2d8c1,8ea2d8c1v 71bc e786bc 71bc 000071bc ea55 ea55 ea55 ea55 ea55 ea55 ea55
+11199 ea56 ea56 ea56 * * 5842 8ea2d8c2,8ea2d8c2v 71c6 e78786 71c6 000071c6 ea56 ea56 ea56 ea56 ea56 ea56 ea56
+11200 ea57 ea57 ea57 * * 5843 8ea2d8c3,8ea2d8c3v 71da e7879a 71da 000071da ea57 ea57 ea57 ea57 ea57 ea57 ea57
+11201 ea58 ea58 ea58 * * 5844 8ea2d8c4,8ea2d8c4v 71db e7879b 71db 000071db ea58 ea58 ea58 ea58 ea58 ea58 ea58
+11202 ea59 ea59 ea59 * * 5845 8ea2d8c5,8ea2d8c5v 729d e78a9d 729d 0000729d ea59 ea59 ea59 ea59 ea59 ea59 ea59
+11203 ea5a ea5a ea5a * * 5846 8ea2d8c6,8ea2d8c6v 729e e78a9e 729e 0000729e ea5a ea5a ea5a ea5a ea5a ea5a ea5a
+11204 ea5b ea5b ea5b * * 5847 8ea2d8c7,8ea2d8c7v 7369 e78da9 7369 00007369 ea5b ea5b ea5b ea5b ea5b ea5b ea5b
+11205 ea5c ea5c ea5c * * 5848 8ea2d8c8,8ea2d8c8v 7366 e78da6 7366 00007366 ea5c ea5c ea5c ea5c ea5c ea5c ea5c
+11206 ea5d ea5d ea5d * * 5849 8ea2d8c9,8ea2d8c9v 7367 e78da7 7367 00007367 ea5d ea5d ea5d ea5d ea5d ea5d ea5d
+11207 ea5e ea5e ea5e * * 584a 8ea2d8ca,8ea2d8cav 736c e78dac 736c 0000736c ea5e ea5e ea5e ea5e ea5e ea5e ea5e
+11208 ea5f ea5f ea5f * * 584b 8ea2d8cb,8ea2d8cbv 7365 e78da5 7365 00007365 ea5f ea5f ea5f ea5f ea5f ea5f ea5f
+11209 ea60 ea60 ea60 * * 584c 8ea2d8cc,8ea2d8ccv 736b e78dab 736b 0000736b ea60 ea60 ea60 ea60 ea60 ea60 ea60
+11210 ea61 ea61 ea61 * * 584d 8ea2d8cd,8ea2d8cdv 736a e78daa 736a 0000736a ea61 ea61 ea61 ea61 ea61 ea61 ea61
+11211 ea62 ea62 ea62 * * 584e 8ea2d8ce,8ea2d8cev 747f e791bf 747f 0000747f ea62 ea62 ea62 ea62 ea62 ea62 ea62
+11212 ea63 ea63 ea63 * * 584f 8ea2d8cf,8ea2d8cfv 749a e7929a 749a 0000749a ea63 ea63 ea63 ea63 ea63 ea63 ea63
+11213 ea64 ea64 ea64 * * 5850 8ea2d8d0,8ea2d8d0v 74a0 e792a0 74a0 000074a0 ea64 ea64 ea64 ea64 ea64 ea64 ea64
+11214 ea65 ea65 ea65 * * 5851 8ea2d8d1,8ea2d8d1v 7494 e79294 7494 00007494 ea65 ea65 ea65 ea65 ea65 ea65 ea65
+11215 ea66 ea66 ea66 * * 5852 8ea2d8d2,8ea2d8d2v 7492 e79292 7492 00007492 ea66 ea66 ea66 ea66 ea66 ea66 ea66
+11216 ea67 ea67 ea67 * * 5853 8ea2d8d3,8ea2d8d3v 7495 e79295 7495 00007495 ea67 ea67 ea67 ea67 ea67 ea67 ea67
+11217 ea68 ea68 ea68 * * 5854 8ea2d8d4,8ea2d8d4v 74a1 e792a1 74a1 000074a1 ea68 ea68 ea68 ea68 ea68 ea68 ea68
+11218 ea69 ea69 ea69 * * 5855 8ea2d8d5,8ea2d8d5v 750b e7948b 750b 0000750b ea69 ea69 ea69 ea69 ea69 ea69 ea69
+11219 ea6a ea6a ea6a * * 5856 8ea2d8d6,8ea2d8d6v 7580 e79680 7580 00007580 ea6a ea6a ea6a ea6a ea6a ea6a ea6a
+11220 ea6b ea6b ea6b * * 5857 8ea2d8d7,8ea2d8d7v 762f e798af 762f 0000762f ea6b ea6b ea6b ea6b ea6b ea6b ea6b
+11221 ea6c ea6c ea6c * * 5858 8ea2d8d8,8ea2d8d8v 762d e798ad 762d 0000762d ea6c ea6c ea6c ea6c ea6c ea6c ea6c
+11222 ea6d ea6d ea6d * * 5859 8ea2d8d9,8ea2d8d9v 7631 e798b1 7631 00007631 ea6d ea6d ea6d ea6d ea6d ea6d ea6d
+11223 ea6e ea6e ea6e * * 585a 8ea2d8da,8ea2d8dav 763d e798bd 763d 0000763d ea6e ea6e ea6e ea6e ea6e ea6e ea6e
+11224 ea6f ea6f ea6f * * 585b 8ea2d8db,8ea2d8dbv 7633 e798b3 7633 00007633 ea6f ea6f ea6f ea6f ea6f ea6f ea6f
+11225 ea70 ea70 ea70 * * 585c 8ea2d8dc,8ea2d8dcv 763c e798bc 763c 0000763c ea70 ea70 ea70 ea70 ea70 ea70 ea70
+11226 ea71 ea71 ea71 * * 585d 8ea2d8dd,8ea2d8ddv 7635 e798b5 7635 00007635 ea71 ea71 ea71 ea71 ea71 ea71 ea71
+11227 ea72 ea72 ea72 * * 585e 8ea2d8de,8ea2d8dev 7632 e798b2 7632 00007632 ea72 ea72 ea72 ea72 ea72 ea72 ea72
+11228 ea73 ea73 ea73 * * 585f 8ea2d8df,8ea2d8dfv 7630 e798b0 7630 00007630 ea73 ea73 ea73 ea73 ea73 ea73 ea73
+11229 ea74 ea74 ea74 * * 5860 8ea2d8e0,8ea2d8e0v 76bb e79abb 76bb 000076bb ea74 ea74 ea74 ea74 ea74 ea74 ea74
+11230 ea75 ea75 ea75 * * 5861 8ea2d8e1,8ea2d8e1v 76e6 e79ba6 76e6 000076e6 ea75 ea75 ea75 ea75 ea75 ea75 ea75
+11231 ea76 ea76 ea76 * * 5862 8ea2d8e2,8ea2d8e2v 779a e79e9a 779a 0000779a ea76 ea76 ea76 ea76 ea76 ea76 ea76
+11232 ea77 ea77 ea77 * * 5863 8ea2d8e3,8ea2d8e3v 779d e79e9d 779d 0000779d ea77 ea77 ea77 ea77 ea77 ea77 ea77
+11233 ea78 ea78 ea78 * * 5864 8ea2d8e4,8ea2d8e4v 77a1 e79ea1 77a1 000077a1 ea78 ea78 ea78 ea78 ea78 ea78 ea78
+11234 ea79 ea79 ea79 * * 5865 8ea2d8e5,8ea2d8e5v 779c e79e9c 779c 0000779c ea79 ea79 ea79 ea79 ea79 ea79 ea79
+11235 ea7a ea7a ea7a * * 5866 8ea2d8e6,8ea2d8e6v 779b e79e9b 779b 0000779b ea7a ea7a ea7a ea7a ea7a ea7a ea7a
+11236 ea7b ea7b ea7b * * 5867 8ea2d8e7,8ea2d8e7v 77a2 e79ea2 77a2 000077a2 ea7b ea7b ea7b ea7b ea7b ea7b ea7b
+11237 ea7c ea7c ea7c * * 5868 8ea2d8e8,8ea2d8e8v 77a3 e79ea3 77a3 000077a3 ea7c ea7c ea7c ea7c ea7c ea7c ea7c
+11238 ea7d ea7d ea7d * * 5869 8ea2d8e9,8ea2d8e9v 7795 e79e95 7795 00007795 ea7d ea7d ea7d ea7d ea7d ea7d ea7d
+11239 ea7e ea7e ea7e * * 586a 8ea2d8ea,8ea2d8eav 7799 e79e99 7799 00007799 ea7e ea7e ea7e ea7e ea7e ea7e ea7e
+11240 eaa1 eaa1 eaa1 * * 586b 8ea2d8eb,8ea2d8ebv 7797 e79e97 7797 00007797 eaa1 eaa1 eaa1 eaa1 eaa1 eaa1 eaa1
+11241 eaa2 eaa2 eaa2 * * 586c 8ea2d8ec,8ea2d8ecv 78dd e7a39d 78dd 000078dd eaa2 eaa2 eaa2 eaa2 eaa2 eaa2 eaa2
+11242 eaa3 eaa3 eaa3 * * 586d 8ea2d8ed,8ea2d8edv 78e9 e7a3a9 78e9 000078e9 eaa3 eaa3 eaa3 eaa3 eaa3 eaa3 eaa3
+11243 eaa4 eaa4 eaa4 * * 586e 8ea2d8ee,8ea2d8eev 78e5 e7a3a5 78e5 000078e5 eaa4 eaa4 eaa4 eaa4 eaa4 eaa4 eaa4
+11244 eaa5 eaa5 eaa5 * * 586f 8ea2d8ef,8ea2d8efv 78ea e7a3aa 78ea 000078ea eaa5 eaa5 eaa5 eaa5 eaa5 eaa5 eaa5
+11245 eaa6 eaa6 eaa6 * * 5870 8ea2d8f0,8ea2d8f0v 78de e7a39e 78de 000078de eaa6 eaa6 eaa6 eaa6 eaa6 eaa6 eaa6
+11246 eaa7 eaa7 eaa7 * * 5871 8ea2d8f1,8ea2d8f1v 78e3 e7a3a3 78e3 000078e3 eaa7 eaa7 eaa7 eaa7 eaa7 eaa7 eaa7
+11247 eaa8 eaa8 eaa8 * * 5872 8ea2d8f2,8ea2d8f2v 78db e7a39b 78db 000078db eaa8 eaa8 eaa8 eaa8 eaa8 eaa8 eaa8
+11248 eaa9 eaa9 eaa9 * * 5873 8ea2d8f3,8ea2d8f3v 78e1 e7a3a1 78e1 000078e1 eaa9 eaa9 eaa9 eaa9 eaa9 eaa9 eaa9
+11249 eaaa eaaa eaaa * * 5874 8ea2d8f4,8ea2d8f4v 78e2 e7a3a2 78e2 000078e2 eaaa eaaa eaaa eaaa eaaa eaaa eaaa
+11250 eaab eaab eaab * * 5875 8ea2d8f5,8ea2d8f5v 78ed e7a3ad 78ed 000078ed eaab eaab eaab eaab eaab eaab eaab
+11251 eaac eaac eaac * * 5876 8ea2d8f6,8ea2d8f6v 78df e7a39f 78df 000078df eaac eaac eaac eaac eaac eaac eaac
+11252 eaad eaad eaad * * 5877 8ea2d8f7,8ea2d8f7v 78e0 e7a3a0 78e0 000078e0 eaad eaad eaad eaad eaad eaad eaad
+11253 eaae eaae eaae * * 5878 8ea2d8f8,8ea2d8f8v 79a4 e7a6a4 79a4 000079a4 eaae eaae eaae eaae eaae eaae eaae
+11254 eaaf eaaf eaaf * * 5879 8ea2d8f9,8ea2d8f9v 7a44 e7a984 7a44 00007a44 eaaf eaaf eaaf eaaf eaaf eaaf eaaf
+11255 eab0 eab0 eab0 * * 587a 8ea2d8fa,8ea2d8fav 7a48 e7a988 7a48 00007a48 eab0 eab0 eab0 eab0 eab0 eab0 eab0
+11256 eab1 eab1 eab1 * * 587b 8ea2d8fb,8ea2d8fbv 7a47 e7a987 7a47 00007a47 eab1 eab1 eab1 eab1 eab1 eab1 eab1
+11257 eab2 eab2 eab2 * * 587c 8ea2d8fc,8ea2d8fcv 7ab6 e7aab6 7ab6 00007ab6 eab2 eab2 eab2 eab2 eab2 eab2 eab2
+11258 eab3 eab3 eab3 * * 587d 8ea2d8fd,8ea2d8fdv 7ab8 e7aab8 7ab8 00007ab8 eab3 eab3 eab3 eab3 eab3 eab3 eab3
+11259 eab4 eab4 eab4 * * 587e 8ea2d8fe,8ea2d8fev 7ab5 e7aab5 7ab5 00007ab5 eab4 eab4 eab4 eab4 eab4 eab4 eab4
+11260 eab5 eab5 eab5 * * 5921 8ea2d9a1,8ea2d9a1v 7ab1 e7aab1 7ab1 00007ab1 eab5 eab5 eab5 eab5 eab5 eab5 eab5
+11261 eab6 eab6 eab6 * * 5922 8ea2d9a2,8ea2d9a2v 7ab7 e7aab7 7ab7 00007ab7 eab6 eab6 eab6 eab6 eab6 eab6 eab6
+11262 eab7 eab7 eab7 * * 5923 8ea2d9a3,8ea2d9a3v 7bde e7af9e 7bde 00007bde eab7 eab7 eab7 eab7 eab7 eab7 eab7
+11263 eab8 eab8 eab8 * * 5924 8ea2d9a4,8ea2d9a4v 7be3 e7afa3 7be3 00007be3 eab8 eab8 eab8 eab8 eab8 eab8 eab8
+11264 eab9 eab9 eab9 * * 5925 8ea2d9a5,8ea2d9a5v 7be7 e7afa7 7be7 00007be7 eab9 eab9 eab9 eab9 eab9 eab9 eab9
+11265 eaba eaba eaba * * 5926 8ea2d9a6,8ea2d9a6v 7bdd e7af9d 7bdd 00007bdd eaba eaba eaba eaba eaba eaba eaba
+11266 eabb eabb eabb * * 5927 8ea2d9a7,8ea2d9a7v 7bd5 e7af95 7bd5 00007bd5 eabb eabb eabb eabb eabb eabb eabb
+11267 eabc eabc eabc * * 5928 8ea2d9a8,8ea2d9a8v 7be5 e7afa5 7be5 00007be5 eabc eabc eabc eabc eabc eabc eabc
+11268 eabd eabd eabd * * 5929 8ea2d9a9,8ea2d9a9v 7bda e7af9a 7bda 00007bda eabd eabd eabd eabd eabd eabd eabd
+11269 eabe eabe eabe * * 592a 8ea2d9aa,8ea2d9aav 7be8 e7afa8 7be8 00007be8 eabe eabe eabe eabe eabe eabe eabe
+11270 eabf eabf eabf * * 592b 8ea2d9ab,8ea2d9abv 7bf9 e7afb9 7bf9 00007bf9 eabf eabf eabf eabf eabf eabf eabf
+11271 eac0 eac0 eac0 * * 592c 8ea2d9ac,8ea2d9acv 7bd4 e7af94 7bd4 00007bd4 eac0 eac0 eac0 eac0 eac0 eac0 eac0
+11272 eac1 eac1 eac1 * * 592d 8ea2d9ad,8ea2d9adv 7bea e7afaa 7bea 00007bea eac1 eac1 eac1 eac1 eac1 eac1 eac1
+11273 eac2 eac2 eac2 * * 592e 8ea2d9ae,8ea2d9aev 7be2 e7afa2 7be2 00007be2 eac2 eac2 eac2 eac2 eac2 eac2 eac2
+11274 eac3 eac3 eac3 * * 592f 8ea2d9af,8ea2d9afv 7bdc e7af9c 7bdc 00007bdc eac3 eac3 eac3 eac3 eac3 eac3 eac3
+11275 eac4 eac4 eac4 * * 5930 8ea2d9b0,8ea2d9b0v 7beb e7afab 7beb 00007beb eac4 eac4 eac4 eac4 eac4 eac4 eac4
+11276 eac5 eac5 eac5 * * 5931 8ea2d9b1,8ea2d9b1v 7bd8 e7af98 7bd8 00007bd8 eac5 eac5 eac5 eac5 eac5 eac5 eac5
+11277 eac6 eac6 eac6 * * 5932 8ea2d9b2,8ea2d9b2v 7bdf e7af9f 7bdf 00007bdf eac6 eac6 eac6 eac6 eac6 eac6 eac6
+11278 eac7 eac7 eac7 * * 5933 8ea2d9b3,8ea2d9b3v 7cd2 e7b392 7cd2 00007cd2 eac7 eac7 eac7 eac7 eac7 eac7 eac7
+11279 eac8 eac8 eac8 * * 5934 8ea2d9b4,8ea2d9b4v 7cd4 e7b394 7cd4 00007cd4 eac8 eac8 eac8 eac8 eac8 eac8 eac8
+11280 eac9 eac9 eac9 * * 5935 8ea2d9b5,8ea2d9b5v 7cd7 e7b397 7cd7 00007cd7 eac9 eac9 eac9 eac9 eac9 eac9 eac9
+11281 eaca eaca eaca * * 5936 8ea2d9b6,8ea2d9b6v 7cd0 e7b390 7cd0 00007cd0 eaca eaca eaca eaca eaca eaca eaca
+11282 eacb eacb eacb * * 5937 8ea2d9b7,8ea2d9b7v 7cd1 e7b391 7cd1 00007cd1 eacb eacb eacb eacb eacb eacb eacb
+11283 eacc eacc eacc * * 5938 8ea2d9b8,8ea2d9b8v 7e12 e7b892 7e12 00007e12 eacc eacc eacc eacc eacc eacc eacc
+11284 eacd eacd eacd * * 5939 8ea2d9b9,8ea2d9b9v 7e21 e7b8a1 7e21 00007e21 eacd eacd eacd eacd eacd eacd eacd
+11285 eace eace eace * * 593a 8ea2d9ba,8ea2d9bav 7e17 e7b897 7e17 00007e17 eace eace eace eace eace eace eace
+11286 eacf eacf eacf * * 593b 8ea2d9bb,8ea2d9bbv 7e0c e7b88c 7e0c 00007e0c eacf eacf eacf eacf eacf eacf eacf
+11287 ead0 ead0 ead0 * * 593c 8ea2d9bc,8ea2d9bcv 7e1f e7b89f 7e1f 00007e1f ead0 ead0 ead0 ead0 ead0 ead0 ead0
+11288 ead1 ead1 ead1 * * 593d 8ea2d9bd,8ea2d9bdv 7e20 e7b8a0 7e20 00007e20 ead1 ead1 ead1 ead1 ead1 ead1 ead1
+11289 ead2 ead2 ead2 * * 593e 8ea2d9be,8ea2d9bev 7e13 e7b893 7e13 00007e13 ead2 ead2 ead2 ead2 ead2 ead2 ead2
+11290 ead3 ead3 ead3 * * 593f 8ea2d9bf,8ea2d9bfv 7e0e e7b88e 7e0e 00007e0e ead3 ead3 ead3 ead3 ead3 ead3 ead3
+11291 ead4 ead4 ead4 * * 5940 8ea2d9c0,8ea2d9c0v 7e1c e7b89c 7e1c 00007e1c ead4 ead4 ead4 ead4 ead4 ead4 ead4
+11292 ead5 ead5 ead5 * * 5941 8ea2d9c1,8ea2d9c1v 7e15 e7b895 7e15 00007e15 ead5 ead5 ead5 ead5 ead5 ead5 ead5
+11293 ead6 ead6 ead6 * * 5942 8ea2d9c2,8ea2d9c2v 7e1a e7b89a 7e1a 00007e1a ead6 ead6 ead6 ead6 ead6 ead6 ead6
+11294 ead7 ead7 ead7 * * 5943 8ea2d9c3,8ea2d9c3v 7e22 e7b8a2 7e22 00007e22 ead7 ead7 ead7 ead7 ead7 ead7 ead7
+11295 ead8 ead8 ead8 * * 5944 8ea2d9c4,8ea2d9c4v 7e0b e7b88b 7e0b 00007e0b ead8 ead8 ead8 ead8 ead8 ead8 ead8
+11296 ead9 ead9 ead9 * * 5945 8ea2d9c5,8ea2d9c5v 7e0f e7b88f 7e0f 00007e0f ead9 ead9 ead9 ead9 ead9 ead9 ead9
+11297 eada eada eada * * 5946 8ea2d9c6,8ea2d9c6v 7e16 e7b896 7e16 00007e16 eada eada eada eada eada eada eada
+11298 eadb eadb eadb * * 5947 8ea2d9c7,8ea2d9c7v 7e0d e7b88d 7e0d 00007e0d eadb eadb eadb eadb eadb eadb eadb
+11299 eadc eadc eadc * * 5948 8ea2d9c8,8ea2d9c8v 7e14 e7b894 7e14 00007e14 eadc eadc eadc eadc eadc eadc eadc
+11300 eadd eadd eadd * * 5949 8ea2d9c9,8ea2d9c9v 7e25 e7b8a5 7e25 00007e25 eadd eadd eadd eadd eadd eadd eadd
+11301 eade eade eade * * 594a 8ea2d9ca,8ea2d9cav 7e24 e7b8a4 7e24 00007e24 eade eade eade eade eade eade eade
+11302 eadf eadf eadf * * 594b 8ea2d9cb,8ea2d9cbv 7f43 e7bd83 7f43 00007f43 eadf eadf eadf eadf eadf eadf eadf
+11303 eae0 eae0 eae0 * * 594c 8ea2d9cc,8ea2d9ccv 7f7b e7bdbb 7f7b 00007f7b eae0 eae0 eae0 eae0 eae0 eae0 eae0
+11304 eae1 eae1 eae1 * * 594d 8ea2d9cd,8ea2d9cdv 7f7c e7bdbc 7f7c 00007f7c eae1 eae1 eae1 eae1 eae1 eae1 eae1
+11305 eae2 eae2 eae2 * * 594e 8ea2d9ce,8ea2d9cev 7f7a e7bdba 7f7a 00007f7a eae2 eae2 eae2 eae2 eae2 eae2 eae2
+11306 eae3 eae3 eae3 * * 594f 8ea2d9cf,8ea2d9cfv 7fb1 e7beb1 7fb1 00007fb1 eae3 eae3 eae3 eae3 eae3 eae3 eae3
+11307 eae4 eae4 eae4 * * 5950 8ea2d9d0,8ea2d9d0v 7fef e7bfaf 7fef 00007fef eae4 eae4 eae4 eae4 eae4 eae4 eae4
+11308 eae5 eae5 eae5 * * 5951 8ea2d9d1,8ea2d9d1v 802a e880aa 802a 0000802a eae5 eae5 eae5 eae5 eae5 eae5 eae5
+11309 eae6 eae6 eae6 * * 5952 8ea2d9d2,8ea2d9d2v 8029 e880a9 8029 00008029 eae6 eae6 eae6 eae6 eae6 eae6 eae6
+11310 eae7 eae7 eae7 * * 5953 8ea2d9d3,8ea2d9d3v 806c e881ac 806c 0000806c eae7 eae7 eae7 eae7 eae7 eae7 eae7
+11311 eae8 eae8 eae8 * * 5954 8ea2d9d4,8ea2d9d4v 81b1 e886b1 81b1 000081b1 eae8 eae8 eae8 eae8 eae8 eae8 eae8
+11312 eae9 eae9 eae9 * * 5955 8ea2d9d5,8ea2d9d5v 81a6 e886a6 81a6 000081a6 eae9 eae9 eae9 eae9 eae9 eae9 eae9
+11313 eaea eaea eaea * * 5956 8ea2d9d6,8ea2d9d6v 81ae e886ae 81ae 000081ae eaea eaea eaea eaea eaea eaea eaea
+11314 eaeb eaeb eaeb * * 5957 8ea2d9d7,8ea2d9d7v 81b9 e886b9 81b9 000081b9 eaeb eaeb eaeb eaeb eaeb eaeb eaeb
+11315 eaec eaec eaec * * 5958 8ea2d9d8,8ea2d9d8v 81b5 e886b5 81b5 000081b5 eaec eaec eaec eaec eaec eaec eaec
+11316 eaed eaed eaed * * 5959 8ea2d9d9,8ea2d9d9v 81ab e886ab 81ab 000081ab eaed eaed eaed eaed eaed eaed eaed
+11317 eaee eaee eaee * * 595a 8ea2d9da,8ea2d9dav 81b0 e886b0 81b0 000081b0 eaee eaee eaee eaee eaee eaee eaee
+11318 eaef eaef eaef * * 595b 8ea2d9db,8ea2d9dbv 81ac e886ac 81ac 000081ac eaef eaef eaef eaef eaef eaef eaef
+11319 eaf0 eaf0 eaf0 * * 595c 8ea2d9dc,8ea2d9dcv 81b4 e886b4 81b4 000081b4 eaf0 eaf0 eaf0 eaf0 eaf0 eaf0 eaf0
+11320 eaf1 eaf1 eaf1 * * 595d 8ea2d9dd,8ea2d9ddv 81b2 e886b2 81b2 000081b2 eaf1 eaf1 eaf1 eaf1 eaf1 eaf1 eaf1
+11321 eaf2 eaf2 eaf2 * * 595e 8ea2d9de,8ea2d9dev 81b7 e886b7 81b7 000081b7 eaf2 eaf2 eaf2 eaf2 eaf2 eaf2 eaf2
+11322 eaf3 eaf3 eaf3 * * 595f 8ea2d9df,8ea2d9dfv 81a7 e886a7 81a7 000081a7 eaf3 eaf3 eaf3 eaf3 eaf3 eaf3 eaf3
+11323 eaf4 eaf4 eaf4 * * 5960 8ea2d9e0,8ea2d9e0v 81f2 e887b2 81f2 000081f2 eaf4 eaf4 eaf4 eaf4 eaf4 eaf4 eaf4
+11324 eaf5 eaf5 eaf5 * * 5961 8ea2d9e1,8ea2d9e1v 8255 e88995 8255 00008255 eaf5 eaf5 eaf5 eaf5 eaf5 eaf5 eaf5
+11325 eaf6 eaf6 eaf6 * * 5962 8ea2d9e2,8ea2d9e2v 8256 e88996 8256 00008256 eaf6 eaf6 eaf6 eaf6 eaf6 eaf6 eaf6
+11326 eaf7 eaf7 eaf7 * * 5963 8ea2d9e3,8ea2d9e3v 8257 e88997 8257 00008257 eaf7 eaf7 eaf7 eaf7 eaf7 eaf7 eaf7
+11327 eaf8 eaf8 eaf8 * * 5964 8ea2d9e4,8ea2d9e4v 8556 e89596 8556 00008556 eaf8 eaf8 eaf8 eaf8 eaf8 eaf8 eaf8
+11328 eaf9 eaf9 eaf9 * * 5965 8ea2d9e5,8ea2d9e5v 8545 e89585 8545 00008545 eaf9 eaf9 eaf9 eaf9 eaf9 eaf9 eaf9
+11329 eafa eafa eafa * * 5966 8ea2d9e6,8ea2d9e6v 856b e895ab 856b 0000856b eafa eafa eafa eafa eafa eafa eafa
+11330 eafb eafb eafb * * 5967 8ea2d9e7,8ea2d9e7v 854d e8958d 854d 0000854d eafb eafb eafb eafb eafb eafb eafb
+11331 eafc eafc eafc * * 5968 8ea2d9e8,8ea2d9e8v 8553 e89593 8553 00008553 eafc eafc eafc eafc eafc eafc eafc
+11332 eafd eafd eafd * * 5969 8ea2d9e9,8ea2d9e9v 8561 e895a1 8561 00008561 eafd eafd eafd eafd eafd eafd eafd
+11333 eafe eafe eafe * * 596a 8ea2d9ea,8ea2d9eav 8558 e89598 8558 00008558 eafe eafe eafe eafe eafe eafe eafe
+11334 eb40 eb40 eb40 * * 596b 8ea2d9eb,8ea2d9ebv 8540 e89580 8540 00008540 eb40 eb40 eb40 eb40 eb40 eb40 eb40
+11335 eb41 eb41 eb41 * * 596c 8ea2d9ec,8ea2d9ecv 8546 e89586 8546 00008546 eb41 eb41 eb41 eb41 eb41 eb41 eb41
+11336 eb42 eb42 eb42 * * 596d 8ea2d9ed,8ea2d9edv 8564 e895a4 8564 00008564 eb42 eb42 eb42 eb42 eb42 eb42 eb42
+11337 eb43 eb43 eb43 * * 596e 8ea2d9ee,8ea2d9eev 8541 e89581 8541 00008541 eb43 eb43 eb43 eb43 eb43 eb43 eb43
+11338 eb44 eb44 eb44 * * 596f 8ea2d9ef,8ea2d9efv 8562 e895a2 8562 00008562 eb44 eb44 eb44 eb44 eb44 eb44 eb44
+11339 eb45 eb45 eb45 * * 5970 8ea2d9f0,8ea2d9f0v 8544 e89584 8544 00008544 eb45 eb45 eb45 eb45 eb45 eb45 eb45
+11340 eb46 eb46 eb46 * * 5971 8ea2d9f1,8ea2d9f1v 8551 e89591 8551 00008551 eb46 eb46 eb46 eb46 eb46 eb46 eb46
+11341 eb47 eb47 eb47 * * 5972 8ea2d9f2,8ea2d9f2v 8547 e89587 8547 00008547 eb47 eb47 eb47 eb47 eb47 eb47 eb47
+11342 eb48 eb48 eb48 * * 5973 8ea2d9f3,8ea2d9f3v 8563 e895a3 8563 00008563 eb48 eb48 eb48 eb48 eb48 eb48 eb48
+11343 eb49 eb49 eb49 * * 5974 8ea2d9f4,8ea2d9f4v 853e e894be 853e 0000853e eb49 eb49 eb49 eb49 eb49 eb49 eb49
+11344 eb4a eb4a eb4a * * 5975 8ea2d9f5,8ea2d9f5v 855b e8959b 855b 0000855b eb4a eb4a eb4a eb4a eb4a eb4a eb4a
+11345 eb4b eb4b eb4b * * 5976 8ea2d9f6,8ea2d9f6v 8571 e895b1 8571 00008571 eb4b eb4b eb4b eb4b eb4b eb4b eb4b
+11346 eb4c eb4c eb4c * * 5977 8ea2d9f7,8ea2d9f7v 854e e8958e 854e 0000854e eb4c eb4c eb4c eb4c eb4c eb4c eb4c
+11347 eb4d eb4d eb4d * * 5978 8ea2d9f8,8ea2d9f8v 856e e895ae 856e 0000856e eb4d eb4d eb4d eb4d eb4d eb4d eb4d
+11348 eb4e eb4e eb4e * * 5979 8ea2d9f9,8ea2d9f9v 8575 e895b5 8575 00008575 eb4e eb4e eb4e eb4e eb4e eb4e eb4e
+11349 eb4f eb4f eb4f * * 597a 8ea2d9fa,8ea2d9fav 8555 e89595 8555 00008555 eb4f eb4f eb4f eb4f eb4f eb4f eb4f
+11350 eb50 eb50 eb50 * * 597b 8ea2d9fb,8ea2d9fbv 8567 e895a7 8567 00008567 eb50 eb50 eb50 eb50 eb50 eb50 eb50
+11351 eb51 eb51 eb51 * * 597c 8ea2d9fc,8ea2d9fcv 8560 e895a0 8560 00008560 eb51 eb51 eb51 eb51 eb51 eb51 eb51
+11352 eb52 eb52 eb52 * * 597d 8ea2d9fd,8ea2d9fdv 858c e8968c 858c 0000858c eb52 eb52 eb52 eb52 eb52 eb52 eb52
+11353 eb53 eb53 eb53 * * 597e 8ea2d9fe,8ea2d9fev 8566 e895a6 8566 00008566 eb53 eb53 eb53 eb53 eb53 eb53 eb53
+11354 eb54 eb54 eb54 * * 5a21 8ea2daa1,8ea2daa1v 855d e8959d 855d 0000855d eb54 eb54 eb54 eb54 eb54 eb54 eb54
+11355 eb55 eb55 eb55 * * 5a22 8ea2daa2,8ea2daa2v 8554 e89594 8554 00008554 eb55 eb55 eb55 eb55 eb55 eb55 eb55
+11356 eb56 eb56 eb56 * * 5a23 8ea2daa3,8ea2daa3v 8565 e895a5 8565 00008565 eb56 eb56 eb56 eb56 eb56 eb56 eb56
+11357 eb57 eb57 eb57 * * 5a24 8ea2daa4,8ea2daa4v 856c e895ac 856c 0000856c eb57 eb57 eb57 eb57 eb57 eb57 eb57
+11358 eb58 eb58 eb58 * * 5a25 8ea2daa5,8ea2daa5v 8663 e899a3 8663 00008663 eb58 eb58 eb58 eb58 eb58 eb58 eb58
+11359 eb59 eb59 eb59 * * 5a26 8ea2daa6,8ea2daa6v 8665 e899a5 8665 00008665 eb59 eb59 eb59 eb59 eb59 eb59 eb59
+11360 eb5a eb5a eb5a * * 5a27 8ea2daa7,8ea2daa7v 8664 e899a4 8664 00008664 eb5a eb5a eb5a eb5a eb5a eb5a eb5a
+11361 f0cb f0cb f0cb * * 5a28 8ea2daa8,8ea2daa8v 87a4 e89ea4 87a4 000087a4 f0cb f0cb f0cb f0cb f0cb f0cb f0cb
+11362 eb5b eb5b eb5b * * 5a29 8ea2daa9,8ea2daa9v 879b e89e9b 879b 0000879b eb5b eb5b eb5b eb5b eb5b eb5b eb5b
+11363 eb5c eb5c eb5c * * 5a2a 8ea2daaa,8ea2daaav 878f e89e8f 878f 0000878f eb5c eb5c eb5c eb5c eb5c eb5c eb5c
+11364 eb5d eb5d eb5d * * 5a2b 8ea2daab,8ea2daabv 8797 e89e97 8797 00008797 eb5d eb5d eb5d eb5d eb5d eb5d eb5d
+11365 eb5e eb5e eb5e * * 5a2c 8ea2daac,8ea2daacv 8793 e89e93 8793 00008793 eb5e eb5e eb5e eb5e eb5e eb5e eb5e
+11366 eb5f eb5f eb5f * * 5a2d 8ea2daad,8ea2daadv 8792 e89e92 8792 00008792 eb5f eb5f eb5f eb5f eb5f eb5f eb5f
+11367 eb60 eb60 eb60 * * 5a2e 8ea2daae,8ea2daaev 8788 e89e88 8788 00008788 eb60 eb60 eb60 eb60 eb60 eb60 eb60
+11368 eb61 eb61 eb61 * * 5a2f 8ea2daaf,8ea2daafv 8781 e89e81 8781 00008781 eb61 eb61 eb61 eb61 eb61 eb61 eb61
+11369 eb62 eb62 eb62 * * 5a30 8ea2dab0,8ea2dab0v 8796 e89e96 8796 00008796 eb62 eb62 eb62 eb62 eb62 eb62 eb62
+11370 eb63 eb63 eb63 * * 5a31 8ea2dab1,8ea2dab1v 8798 e89e98 8798 00008798 eb63 eb63 eb63 eb63 eb63 eb63 eb63
+11371 eb64 eb64 eb64 * * 5a32 8ea2dab2,8ea2dab2v 8779 e89db9 8779 00008779 eb64 eb64 eb64 eb64 eb64 eb64 eb64
+11372 eb65 eb65 eb65 * * 5a33 8ea2dab3,8ea2dab3v 8787 e89e87 8787 00008787 eb65 eb65 eb65 eb65 eb65 eb65 eb65
+11373 eb66 eb66 eb66 * * 5a34 8ea2dab4,8ea2dab4v 87a3 e89ea3 87a3 000087a3 eb66 eb66 eb66 eb66 eb66 eb66 eb66
+11374 eb67 eb67 eb67 * * 5a35 8ea2dab5,8ea2dab5v 8785 e89e85 8785 00008785 eb67 eb67 eb67 eb67 eb67 eb67 eb67
+11375 eb68 eb68 eb68 * * 5a36 8ea2dab6,8ea2dab6v 8790 e89e90 8790 00008790 eb68 eb68 eb68 eb68 eb68 eb68 eb68
+11376 eb69 eb69 eb69 * * 5a37 8ea2dab7,8ea2dab7v 8791 e89e91 8791 00008791 eb69 eb69 eb69 eb69 eb69 eb69 eb69
+11377 eb6a eb6a eb6a * * 5a38 8ea2dab8,8ea2dab8v 879d e89e9d 879d 0000879d eb6a eb6a eb6a eb6a eb6a eb6a eb6a
+11378 eb6b eb6b eb6b * * 5a39 8ea2dab9,8ea2dab9v 8784 e89e84 8784 00008784 eb6b eb6b eb6b eb6b eb6b eb6b eb6b
+11379 eb6c eb6c eb6c * * 5a3a 8ea2daba,8ea2dabav 8794 e89e94 8794 00008794 eb6c eb6c eb6c eb6c eb6c eb6c eb6c
+11380 eb6d eb6d eb6d * * 5a3b 8ea2dabb,8ea2dabbv 879c e89e9c 879c 0000879c eb6d eb6d eb6d eb6d eb6d eb6d eb6d
+11381 eb6e eb6e eb6e * * 5a3c 8ea2dabc,8ea2dabcv 879a e89e9a 879a 0000879a eb6e eb6e eb6e eb6e eb6e eb6e eb6e
+11382 eb6f eb6f eb6f * * 5a3d 8ea2dabd,8ea2dabdv 8789 e89e89 8789 00008789 eb6f eb6f eb6f eb6f eb6f eb6f eb6f
+11383 eb70 eb70 eb70 * * 5a3e 8ea2dabe,8ea2dabev 891e e8a49e 891e 0000891e eb70 eb70 eb70 eb70 eb70 eb70 eb70
+11384 eb71 eb71 eb71 * * 5a3f 8ea2dabf,8ea2dabfv 8926 e8a4a6 8926 00008926 eb71 eb71 eb71 eb71 eb71 eb71 eb71
+11385 eb72 eb72 eb72 * * 5a40 8ea2dac0,8ea2dac0v 8930 e8a4b0 8930 00008930 eb72 eb72 eb72 eb72 eb72 eb72 eb72
+11386 eb73 eb73 eb73 * * 5a41 8ea2dac1,8ea2dac1v 892d e8a4ad 892d 0000892d eb73 eb73 eb73 eb73 eb73 eb73 eb73
+11387 eb74 eb74 eb74 * * 5a42 8ea2dac2,8ea2dac2v 892e e8a4ae 892e 0000892e eb74 eb74 eb74 eb74 eb74 eb74 eb74
+11388 eb75 eb75 eb75 * * 5a43 8ea2dac3,8ea2dac3v 8927 e8a4a7 8927 00008927 eb75 eb75 eb75 eb75 eb75 eb75 eb75
+11389 eb76 eb76 eb76 * * 5a44 8ea2dac4,8ea2dac4v 8931 e8a4b1 8931 00008931 eb76 eb76 eb76 eb76 eb76 eb76 eb76
+11390 eb77 eb77 eb77 * * 5a45 8ea2dac5,8ea2dac5v 8922 e8a4a2 8922 00008922 eb77 eb77 eb77 eb77 eb77 eb77 eb77
+11391 eb78 eb78 eb78 * * 5a46 8ea2dac6,8ea2dac6v 8929 e8a4a9 8929 00008929 eb78 eb78 eb78 eb78 eb78 eb78 eb78
+11392 eb79 eb79 eb79 * * 5a47 8ea2dac7,8ea2dac7v 8923 e8a4a3 8923 00008923 eb79 eb79 eb79 eb79 eb79 eb79 eb79
+11393 eb7a eb7a eb7a * * 5a48 8ea2dac8,8ea2dac8v 892f e8a4af 892f 0000892f eb7a eb7a eb7a eb7a eb7a eb7a eb7a
+11394 eb7b eb7b eb7b * * 5a49 8ea2dac9,8ea2dac9v 892c e8a4ac 892c 0000892c eb7b eb7b eb7b eb7b eb7b eb7b eb7b
+11395 eb7c eb7c eb7c * * 5a4a 8ea2daca,8ea2dacav 891f e8a49f 891f 0000891f eb7c eb7c eb7c eb7c eb7c eb7c eb7c
+11396 eb7d eb7d eb7d * * 5a4b 8ea2dacb,8ea2dacbv 89f1 e8a7b1 89f1 000089f1 eb7d eb7d eb7d eb7d eb7d eb7d eb7d
+11397 eb7e eb7e eb7e * * 5a4c 8ea2dacc,8ea2daccv 8ae0 e8aba0 8ae0 00008ae0 eb7e eb7e eb7e eb7e eb7e eb7e eb7e
+11398 eba1 eba1 eba1 * * 5a4d 8ea2dacd,8ea2dacdv 8ae2 e8aba2 8ae2 00008ae2 eba1 eba1 eba1 eba1 eba1 eba1 eba1
+11399 eba2 eba2 eba2 * * 5a4e 8ea2dace,8ea2dacev 8af2 e8abb2 8af2 00008af2 eba2 eba2 eba2 eba2 eba2 eba2 eba2
+11400 eba3 eba3 eba3 * * 5a4f 8ea2dacf,8ea2dacfv 8af4 e8abb4 8af4 00008af4 eba3 eba3 eba3 eba3 eba3 eba3 eba3
+11401 eba4 eba4 eba4 * * 5a50 8ea2dad0,8ea2dad0v 8af5 e8abb5 8af5 00008af5 eba4 eba4 eba4 eba4 eba4 eba4 eba4
+11402 eba5 eba5 eba5 * * 5a51 8ea2dad1,8ea2dad1v 8add e8ab9d 8add 00008add eba5 eba5 eba5 eba5 eba5 eba5 eba5
+11403 eba6 eba6 eba6 * * 5a52 8ea2dad2,8ea2dad2v 8b14 e8ac94 8b14 00008b14 eba6 eba6 eba6 eba6 eba6 eba6 eba6
+11404 eba7 eba7 eba7 * * 5a53 8ea2dad3,8ea2dad3v 8ae4 e8aba4 8ae4 00008ae4 eba7 eba7 eba7 eba7 eba7 eba7 eba7
+11405 eba8 eba8 eba8 * * 5a54 8ea2dad4,8ea2dad4v 8adf e8ab9f 8adf 00008adf eba8 eba8 eba8 eba8 eba8 eba8 eba8
+11406 eba9 eba9 eba9 * * 5a55 8ea2dad5,8ea2dad5v 8af0 e8abb0 8af0 00008af0 eba9 eba9 eba9 eba9 eba9 eba9 eba9
+11407 ebaa ebaa ebaa * * 5a56 8ea2dad6,8ea2dad6v 8ac8 e8ab88 8ac8 00008ac8 ebaa ebaa ebaa ebaa ebaa ebaa ebaa
+11408 ebab ebab ebab * * 5a57 8ea2dad7,8ea2dad7v 8ade e8ab9e 8ade 00008ade ebab ebab ebab ebab ebab ebab ebab
+11409 ebac ebac ebac * * 5a58 8ea2dad8,8ea2dad8v 8ae1 e8aba1 8ae1 00008ae1 ebac ebac ebac ebac ebac ebac ebac
+11410 ebad ebad ebad * * 5a59 8ea2dad9,8ea2dad9v 8ae8 e8aba8 8ae8 00008ae8 ebad ebad ebad ebad ebad ebad ebad
+11411 ebae ebae ebae * * 5a5a 8ea2dada,8ea2dadav 8aff e8abbf 8aff 00008aff ebae ebae ebae ebae ebae ebae ebae
+11412 ebaf ebaf ebaf * * 5a5b 8ea2dadb,8ea2dadbv 8aef e8abaf 8aef 00008aef ebaf ebaf ebaf ebaf ebaf ebaf ebaf
+11413 ebb0 ebb0 ebb0 * * 5a5c 8ea2dadc,8ea2dadcv 8afb e8abbb 8afb 00008afb ebb0 ebb0 ebb0 ebb0 ebb0 ebb0 ebb0
+11414 ebb1 ebb1 ebb1 * * 5a5d 8ea2dadd,8ea2daddv 8c91 e8b291 8c91 00008c91 ebb1 ebb1 ebb1 ebb1 ebb1 ebb1 ebb1
+11415 ebb2 ebb2 ebb2 * * 5a5e 8ea2dade,8ea2dadev 8c92 e8b292 8c92 00008c92 ebb2 ebb2 ebb2 ebb2 ebb2 ebb2 ebb2
+11416 ebb3 ebb3 ebb3 * * 5a5f 8ea2dadf,8ea2dadfv 8c90 e8b290 8c90 00008c90 ebb3 ebb3 ebb3 ebb3 ebb3 ebb3 ebb3
+11417 ebb4 ebb4 ebb4 * * 5a60 8ea2dae0,8ea2dae0v 8cf5 e8b3b5 8cf5 00008cf5 ebb4 ebb4 ebb4 ebb4 ebb4 ebb4 ebb4
+11418 ebb5 ebb5 ebb5 * * 5a61 8ea2dae1,8ea2dae1v 8cee e8b3ae 8cee 00008cee ebb5 ebb5 ebb5 ebb5 ebb5 ebb5 ebb5
+11419 ebb6 ebb6 ebb6 * * 5a62 8ea2dae2,8ea2dae2v 8cf1 e8b3b1 8cf1 00008cf1 ebb6 ebb6 ebb6 ebb6 ebb6 ebb6 ebb6
+11420 ebb7 ebb7 ebb7 * * 5a63 8ea2dae3,8ea2dae3v 8cf0 e8b3b0 8cf0 00008cf0 ebb7 ebb7 ebb7 ebb7 ebb7 ebb7 ebb7
+11421 ebb8 ebb8 ebb8 * * 5a64 8ea2dae4,8ea2dae4v 8cf3 e8b3b3 8cf3 00008cf3 ebb8 ebb8 ebb8 ebb8 ebb8 ebb8 ebb8
+11422 ebb9 ebb9 ebb9 * * 5a65 8ea2dae5,8ea2dae5v 8d6c e8b5ac 8d6c 00008d6c ebb9 ebb9 ebb9 ebb9 ebb9 ebb9 ebb9
+11423 ebba ebba ebba * * 5a66 8ea2dae6,8ea2dae6v 8d6e e8b5ae 8d6e 00008d6e ebba ebba ebba ebba ebba ebba ebba
+11424 ebbb ebbb ebbb * * 5a67 8ea2dae7,8ea2dae7v 8da5 e8b6a5 8da5 00008da5 ebbb ebbb ebbb ebbb ebbb ebbb ebbb
+11425 ebbc ebbc ebbc * * 5a68 8ea2dae8,8ea2dae8v 8da7 e8b6a7 8da7 00008da7 ebbc ebbc ebbc ebbc ebbc ebbc ebbc
+11426 ebbd ebbd ebbd * * 5a69 8ea2dae9,8ea2dae9v 8e33 e8b8b3 8e33 00008e33 ebbd ebbd ebbd ebbd ebbd ebbd ebbd
+11427 ebbe ebbe ebbe * * 5a6a 8ea2daea,8ea2daeav 8e3e e8b8be 8e3e 00008e3e ebbe ebbe ebbe ebbe ebbe ebbe ebbe
+11428 ebbf ebbf ebbf * * 5a6b 8ea2daeb,8ea2daebv 8e38 e8b8b8 8e38 00008e38 ebbf ebbf ebbf ebbf ebbf ebbf ebbf
+11429 ebc0 ebc0 ebc0 * * 5a6c 8ea2daec,8ea2daecv 8e40 e8b980 8e40 00008e40 ebc0 ebc0 ebc0 ebc0 ebc0 ebc0 ebc0
+11430 ebc1 ebc1 ebc1 * * 5a6d 8ea2daed,8ea2daedv 8e45 e8b985 8e45 00008e45 ebc1 ebc1 ebc1 ebc1 ebc1 ebc1 ebc1
+11431 ebc2 ebc2 ebc2 * * 5a6e 8ea2daee,8ea2daeev 8e36 e8b8b6 8e36 00008e36 ebc2 ebc2 ebc2 ebc2 ebc2 ebc2 ebc2
+11432 ebc3 ebc3 ebc3 * * 5a6f 8ea2daef,8ea2daefv 8e3c e8b8bc 8e3c 00008e3c ebc3 ebc3 ebc3 ebc3 ebc3 ebc3 ebc3
+11433 ebc4 ebc4 ebc4 * * 5a70 8ea2daf0,8ea2daf0v 8e3d e8b8bd 8e3d 00008e3d ebc4 ebc4 ebc4 ebc4 ebc4 ebc4 ebc4
+11434 ebc5 ebc5 ebc5 * * 5a71 8ea2daf1,8ea2daf1v 8e41 e8b981 8e41 00008e41 ebc5 ebc5 ebc5 ebc5 ebc5 ebc5 ebc5
+11435 ebc6 ebc6 ebc6 * * 5a72 8ea2daf2,8ea2daf2v 8e30 e8b8b0 8e30 00008e30 ebc6 ebc6 ebc6 ebc6 ebc6 ebc6 ebc6
+11436 ebc7 ebc7 ebc7 * * 5a73 8ea2daf3,8ea2daf3v 8e3f e8b8bf 8e3f 00008e3f ebc7 ebc7 ebc7 ebc7 ebc7 ebc7 ebc7
+11437 ebc8 ebc8 ebc8 * * 5a74 8ea2daf4,8ea2daf4v 8ebd e8babd 8ebd 00008ebd ebc8 ebc8 ebc8 ebc8 ebc8 ebc8 ebc8
+11438 ebc9 ebc9 ebc9 * * 5a75 8ea2daf5,8ea2daf5v 8f36 e8bcb6,eeaea9 8f36,eba9 00008f36,0000eba9 9c42,ebc9 ebc9 ebc9 ebc9 ebc9 ebc9 9c42,ebc9
+11439 ebca ebca ebca * * 5a76 8ea2daf6,8ea2daf6v 8f2e e8bcae 8f2e 00008f2e ebca ebca ebca ebca ebca ebca ebca
+11440 ebcb ebcb ebcb * * 5a77 8ea2daf7,8ea2daf7v 8f35 e8bcb5 8f35 00008f35 ebcb ebcb ebcb ebcb ebcb ebcb ebcb
+11441 ebcc ebcc ebcc * * 5a78 8ea2daf8,8ea2daf8v 8f32 e8bcb2 8f32 00008f32 ebcc ebcc ebcc ebcc ebcc ebcc ebcc
+11442 ebcd ebcd ebcd * * 5a79 8ea2daf9,8ea2daf9v 8f39 e8bcb9 8f39 00008f39 ebcd ebcd ebcd ebcd ebcd ebcd ebcd
+11443 ebce ebce ebce * * 5a7a 8ea2dafa,8ea2dafav 8f37 e8bcb7 8f37 00008f37 ebce ebce ebce ebce ebce ebce ebce
+11444 ebcf ebcf ebcf * * 5a7b 8ea2dafb,8ea2dafbv 8f34 e8bcb4 8f34 00008f34 ebcf ebcf ebcf ebcf ebcf ebcf ebcf
+11445 ebd0 ebd0 ebd0 * * 5a7c 8ea2dafc,8ea2dafcv 9076 e981b6 9076 00009076 ebd0 ebd0 ebd0 ebd0 ebd0 ebd0 ebd0
+11446 ebd1 ebd1 ebd1 * * 5a7d 8ea2dafd,8ea2dafdv 9079 e981b9 9079 00009079 ebd1 ebd1 ebd1 ebd1 ebd1 ebd1 ebd1
+11447 ebd2 ebd2 ebd2 * * 5a7e 8ea2dafe,8ea2dafev 907b e981bb 907b 0000907b ebd2 ebd2 ebd2 ebd2 ebd2 ebd2 ebd2
+11448 ebd3 ebd3 ebd3 * * 5b21 8ea2dba1,8ea2dba1v 9086 e98286 9086 00009086 ebd3 ebd3 ebd3 ebd3 ebd3 ebd3 ebd3
+11449 ebd4 ebd4 ebd4 * * 5b22 8ea2dba2,8ea2dba2v 90fa e983ba 90fa 000090fa ebd4 ebd4 ebd4 ebd4 ebd4 ebd4 ebd4
+11450 ebd5 ebd5 ebd5 * * 5b23 8ea2dba3,8ea2dba3v 9133 e984b3 9133 00009133 ebd5 ebd5 ebd5 ebd5 ebd5 ebd5 ebd5
+11451 ebd6 ebd6 ebd6 * * 5b24 8ea2dba4,8ea2dba4v 9135 e984b5 9135 00009135 ebd6 ebd6 ebd6 ebd6 ebd6 ebd6 ebd6
+11452 ebd7 ebd7 ebd7 * * 5b25 8ea2dba5,8ea2dba5v 9136 e984b6 9136 00009136 ebd7 ebd7 ebd7 ebd7 ebd7 ebd7 ebd7
+11453 ebd8 ebd8 ebd8 * * 5b26 8ea2dba6,8ea2dba6v 9193 e98693 9193 00009193 ebd8 ebd8 ebd8 ebd8 ebd8 ebd8 ebd8
+11454 ebd9 ebd9 ebd9 * * 5b27 8ea2dba7,8ea2dba7v 9190 e98690 9190 00009190 ebd9 ebd9 ebd9 ebd9 ebd9 ebd9 ebd9
+11455 ebda ebda ebda * * 5b28 8ea2dba8,8ea2dba8v 9191 e98691 9191 00009191 ebda ebda ebda ebda ebda ebda ebda
+11456 ebdb ebdb ebdb * * 5b29 8ea2dba9,8ea2dba9v 918d e9868d 918d 0000918d ebdb ebdb ebdb ebdb ebdb ebdb ebdb
+11457 ebdc ebdc ebdc * * 5b2a 8ea2dbaa,8ea2dbaav 918f e9868f 918f 0000918f ebdc ebdc ebdc ebdc ebdc ebdc ebdc
+11458 ebdd ebdd ebdd * * 5b2b 8ea2dbab,8ea2dbabv 9327 e98ca7 9327 00009327 ebdd ebdd ebdd ebdd ebdd ebdd ebdd
+11459 ebde ebde ebde * * 5b2c 8ea2dbac,8ea2dbacv 931e e98c9e 931e 0000931e ebde ebde ebde ebde ebde ebde ebde
+11460 ebdf ebdf ebdf * * 5b2d 8ea2dbad,8ea2dbadv 9308 e98c88 9308 00009308 ebdf ebdf ebdf ebdf ebdf ebdf ebdf
+11461 ebe0 ebe0 ebe0 * * 5b2e 8ea2dbae,8ea2dbaev 931f e98c9f 931f 0000931f ebe0 ebe0 ebe0 ebe0 ebe0 ebe0 ebe0
+11462 ebe1 ebe1 ebe1 * * 5b2f 8ea2dbaf,8ea2dbafv 9306 e98c86 9306 00009306 ebe1 ebe1 ebe1 ebe1 ebe1 ebe1 ebe1
+11463 ebe2 ebe2 ebe2 * * 5b30 8ea2dbb0,8ea2dbb0v 930f e98c8f 930f 0000930f ebe2 ebe2 ebe2 ebe2 ebe2 ebe2 ebe2
+11464 ebe3 ebe3 ebe3 * * 5b31 8ea2dbb1,8ea2dbb1v 937a e98dba 937a 0000937a ebe3 ebe3 ebe3 ebe3 ebe3 ebe3 ebe3
+11465 ebe4 ebe4 ebe4 * * 5b32 8ea2dbb2,8ea2dbb2v 9338 e98cb8 9338 00009338 ebe4 ebe4 ebe4 ebe4 ebe4 ebe4 ebe4
+11466 ebe5 ebe5 ebe5 * * 5b33 8ea2dbb3,8ea2dbb3v 933c e98cbc 933c 0000933c ebe5 ebe5 ebe5 ebe5 ebe5 ebe5 ebe5
+11467 ebe6 ebe6 ebe6 * * 5b34 8ea2dbb4,8ea2dbb4v 931b e98c9b 931b 0000931b ebe6 ebe6 ebe6 ebe6 ebe6 ebe6 ebe6
+11468 ebe7 ebe7 ebe7 * * 5b35 8ea2dbb5,8ea2dbb5v 9323 e98ca3 9323 00009323 ebe7 ebe7 ebe7 ebe7 ebe7 ebe7 ebe7
+11469 ebe8 ebe8 ebe8 * * 5b36 8ea2dbb6,8ea2dbb6v 9312 e98c92 9312 00009312 ebe8 ebe8 ebe8 ebe8 ebe8 ebe8 ebe8
+11470 ebe9 ebe9 ebe9 * * 5b37 8ea2dbb7,8ea2dbb7v 9301 e98c81 9301 00009301 ebe9 ebe9 ebe9 ebe9 ebe9 ebe9 ebe9
+11471 ebea ebea ebea * * 5b38 8ea2dbb8,8ea2dbb8v 9346 e98d86 9346 00009346 ebea ebea ebea ebea ebea ebea ebea
+11472 ebeb ebeb ebeb * * 5b39 8ea2dbb9,8ea2dbb9v 932d e98cad 932d 0000932d ebeb ebeb ebeb ebeb ebeb ebeb ebeb
+11473 ebec ebec ebec * * 5b3a 8ea2dbba,8ea2dbbav 930e e98c8e 930e 0000930e ebec ebec ebec ebec ebec ebec ebec
+11474 ebed ebed ebed * * 5b3b 8ea2dbbb,8ea2dbbbv 930d e98c8d 930d 0000930d ebed ebed ebed ebed ebed ebed ebed
+11475 ebee ebee ebee * * 5b3c 8ea2dbbc,8ea2dbbcv 92cb e98b8b 92cb 000092cb ebee ebee ebee ebee ebee ebee ebee
+11476 ebef ebef ebef * * 5b3d 8ea2dbbd,8ea2dbbdv 931d e98c9d 931d 0000931d ebef ebef ebef ebef ebef ebef ebef
+11477 ebf0 ebf0 ebf0 * * 5b3e 8ea2dbbe,8ea2dbbev 92fa e98bba 92fa 000092fa ebf0 ebf0 ebf0 ebf0 ebf0 ebf0 ebf0
+11478 ebf2 ebf2 ebf2 * * 5b3f 8ea2dbbf,8ea2dbbfv 9313 e98c93 9313 00009313 ebf2 ebf2 ebf2 ebf2 ebf2 ebf2 ebf2
+11479 ebf3 ebf3 ebf3 * * 5b40 8ea2dbc0,8ea2dbc0v 92f9 e98bb9 92f9 000092f9 ebf3 ebf3 ebf3 ebf3 ebf3 ebf3 ebf3
+11480 ebf4 ebf4 ebf4 * * 5b41 8ea2dbc1,8ea2dbc1v 92f7 e98bb7 92f7 000092f7 ebf4 ebf4 ebf4 ebf4 ebf4 ebf4 ebf4
+11481 ebf5 ebf5 ebf5 * * 5b42 8ea2dbc2,8ea2dbc2v 9334 e98cb4 9334 00009334 ebf5 ebf5 ebf5 ebf5 ebf5 ebf5 ebf5
+11482 ebf6 ebf6 ebf6 * * 5b43 8ea2dbc3,8ea2dbc3v 9302 e98c82 9302 00009302 ebf6 ebf6 ebf6 ebf6 ebf6 ebf6 ebf6
+11483 ebf7 ebf7 ebf7 * * 5b44 8ea2dbc4,8ea2dbc4v 9324 e98ca4 9324 00009324 ebf7 ebf7 ebf7 ebf7 ebf7 ebf7 ebf7
+11484 ebf8 ebf8 ebf8 * * 5b45 8ea2dbc5,8ea2dbc5v 92ff e98bbf 92ff 000092ff ebf8 ebf8 ebf8 ebf8 ebf8 ebf8 ebf8
+11485 ebf9 ebf9 ebf9 * * 5b46 8ea2dbc6,8ea2dbc6v 9329 e98ca9 9329 00009329 ebf9 ebf9 ebf9 ebf9 ebf9 ebf9 ebf9
+11486 ebfa ebfa ebfa * * 5b47 8ea2dbc7,8ea2dbc7v 9339 e98cb9 9339 00009339 ebfa ebfa ebfa ebfa ebfa ebfa ebfa
+11487 ebfb ebfb ebfb * * 5b48 8ea2dbc8,8ea2dbc8v 9335 e98cb5 9335 00009335 ebfb ebfb ebfb ebfb ebfb ebfb ebfb
+11488 ebfc ebfc ebfc * * 5b49 8ea2dbc9,8ea2dbc9v 932a e98caa 932a 0000932a ebfc ebfc ebfc ebfc ebfc ebfc ebfc
+11489 ebfd ebfd ebfd * * 5b4a 8ea2dbca,8ea2dbcav 9314 e98c94 9314 00009314 ebfd ebfd ebfd ebfd ebfd ebfd ebfd
+11490 ebfe ebfe ebfe * * 5b4b 8ea2dbcb,8ea2dbcbv 930c e98c8c 930c 0000930c ebfe ebfe ebfe ebfe ebfe ebfe ebfe
+11491 ec40 ec40 ec40 * * 5b4c 8ea2dbcc,8ea2dbccv 930b e98c8b 930b 0000930b ec40 ec40 ec40 ec40 ec40 ec40 ec40
+11492 ec41 ec41 ec41 * * 5b4d 8ea2dbcd,8ea2dbcdv 92fe e98bbe 92fe 000092fe ec41 ec41 ec41 ec41 ec41 ec41 ec41
+11493 ec42 ec42 ec42 * * 5b4e 8ea2dbce,8ea2dbcev 9309 e98c89 9309 00009309 ec42 ec42 ec42 ec42 ec42 ec42 ec42
+11494 ec43 ec43 ec43 * * 5b4f 8ea2dbcf,8ea2dbcfv 9300 e98c80 9300 00009300 ec43 ec43 ec43 ec43 ec43 ec43 ec43
+11495 ec44 ec44 ec44 * * 5b50 8ea2dbd0,8ea2dbd0v 92fb e98bbb 92fb 000092fb ec44 ec44 ec44 ec44 ec44 ec44 ec44
+11496 ec45 ec45 ec45 * * 5b51 8ea2dbd1,8ea2dbd1v 9316 e98c96 9316 00009316 ec45 ec45 ec45 ec45 ec45 ec45 ec45
+11497 ec46 ec46 ec46 * * 5b52 8ea2dbd2,8ea2dbd2v 95bc e996bc 95bc 000095bc ec46 ec46 ec46 ec46 ec46 ec46 ec46
+11498 ec47 ec47 ec47 * * 5b53 8ea2dbd3,8ea2dbd3v 95cd e9978d 95cd 000095cd ec47 ec47 ec47 ec47 ec47 ec47 ec47
+11499 ec48 ec48 ec48 * * 5b54 8ea2dbd4,8ea2dbd4v 95be e996be 95be 000095be ec48 ec48 ec48 ec48 ec48 ec48 ec48
+11500 ec49 ec49 ec49 * * 5b55 8ea2dbd5,8ea2dbd5v 95b9 e996b9 95b9 000095b9 ec49 ec49 ec49 ec49 ec49 ec49 ec49
+11501 ec4a ec4a ec4a * * 5b56 8ea2dbd6,8ea2dbd6v 95ba e996ba 95ba 000095ba ec4a ec4a ec4a ec4a ec4a ec4a ec4a
+11502 ec4b ec4b ec4b * * 5b57 8ea2dbd7,8ea2dbd7v 95b6 e996b6 95b6 000095b6 ec4b ec4b ec4b ec4b ec4b ec4b ec4b
+11503 ec4c ec4c ec4c * * 5b58 8ea2dbd8,8ea2dbd8v 95bf e996bf 95bf 000095bf ec4c ec4c ec4c ec4c ec4c ec4c ec4c
+11504 ec4d ec4d ec4d * * 5b59 8ea2dbd9,8ea2dbd9v 95b5 e996b5 95b5 000095b5 ec4d ec4d ec4d ec4d ec4d ec4d ec4d
+11505 ec4e ec4e ec4e * * 5b5a 8ea2dbda,8ea2dbdav 95bd e996bd 95bd 000095bd ec4e ec4e ec4e ec4e ec4e ec4e ec4e
+11506 ec4f ec4f ec4f * * 5b5b 8ea2dbdb,8ea2dbdbv 96a9 e99aa9 96a9 000096a9 ec4f ec4f ec4f ec4f ec4f ec4f ec4f
+11507 ec50 ec50 ec50 * * 5b5c 8ea2dbdc,8ea2dbdcv 96d4 e99b94 96d4 000096d4 ec50 ec50 ec50 ec50 ec50 ec50 ec50
+11508 ec51 ec51 ec51 * * 5b5d 8ea2dbdd,8ea2dbddv 970b e99c8b 970b 0000970b ec51 ec51 ec51 ec51 ec51 ec51 ec51
+11509 ec52 ec52 ec52 * * 5b5e 8ea2dbde,8ea2dbdev 9712 e99c92 9712 00009712 ec52 ec52 ec52 ec52 ec52 ec52 ec52
+11510 ec53 ec53 ec53 * * 5b5f 8ea2dbdf,8ea2dbdfv 9710 e99c90 9710 00009710 ec53 ec53 ec53 ec53 ec53 ec53 ec53
+11511 ec54 ec54 ec54 * * 5b60 8ea2dbe0,8ea2dbe0v 9799 e99e99 9799 00009799 ec54 ec54 ec54 ec54 ec54 ec54 ec54
+11512 ec55 ec55 ec55 * * 5b61 8ea2dbe1,8ea2dbe1v 9797 e99e97 9797 00009797 ec55 ec55 ec55 ec55 ec55 ec55 ec55
+11513 ec56 ec56 ec56 * * 5b62 8ea2dbe2,8ea2dbe2v 9794 e99e94 9794 00009794 ec56 ec56 ec56 ec56 ec56 ec56 ec56
+11514 ec57 ec57 ec57 * * 5b63 8ea2dbe3,8ea2dbe3v 97f0 e99fb0 97f0 000097f0 ec57 ec57 ec57 ec57 ec57 ec57 ec57
+11515 ec58 ec58 ec58 * * 5b64 8ea2dbe4,8ea2dbe4v 97f8 e99fb8 97f8 000097f8 ec58 ec58 ec58 ec58 ec58 ec58 ec58
+11516 ec59 ec59 ec59 * * 5b65 8ea2dbe5,8ea2dbe5v 9835 e9a0b5 9835 00009835 ec59 ec59 ec59 ec59 ec59 ec59 ec59
+11517 ec5a ec5a ec5a * * 5b66 8ea2dbe6,8ea2dbe6v 982f e9a0af 982f 0000982f ec5a ec5a ec5a ec5a ec5a ec5a ec5a
+11518 ec5b ec5b ec5b * * 5b67 8ea2dbe7,8ea2dbe7v 9832 e9a0b2 9832 00009832 ec5b ec5b ec5b ec5b ec5b ec5b ec5b
+11519 ec5c ec5c ec5c * * 5b68 8ea2dbe8,8ea2dbe8v 9924 e9a4a4 9924 00009924 ec5c ec5c ec5c ec5c ec5c ec5c ec5c
+11520 ec5d ec5d ec5d * * 5b69 8ea2dbe9,8ea2dbe9v 991f e9a49f 991f 0000991f ec5d ec5d ec5d ec5d ec5d ec5d ec5d
+11521 ec5e ec5e ec5e * * 5b6a 8ea2dbea,8ea2dbeav 9927 e9a4a7 9927 00009927 ec5e ec5e ec5e ec5e ec5e ec5e ec5e
+11522 ec5f ec5f ec5f * * 5b6b 8ea2dbeb,8ea2dbebv 9929 e9a4a9 9929 00009929 ec5f ec5f ec5f ec5f ec5f ec5f ec5f
+11523 ec60 ec60 ec60 * * 5b6c 8ea2dbec,8ea2dbecv 999e e9a69e 999e 0000999e ec60 ec60 ec60 ec60 ec60 ec60 ec60
+11524 ec61 ec61 ec61 * * 5b6d 8ea2dbed,8ea2dbedv 99ee e9a7ae 99ee 000099ee ec61 ec61 ec61 ec61 ec61 ec61 ec61
+11525 ec62 ec62 ec62 * * 5b6e 8ea2dbee,8ea2dbeev 99ec e9a7ac 99ec 000099ec ec62 ec62 ec62 ec62 ec62 ec62 ec62
+11526 ec63 ec63 ec63 * * 5b6f 8ea2dbef,8ea2dbefv 99e5 e9a7a5 99e5 000099e5 ec63 ec63 ec63 ec63 ec63 ec63 ec63
+11527 ec64 ec64 ec64 * * 5b70 8ea2dbf0,8ea2dbf0v 99e4 e9a7a4 99e4 000099e4 ec64 ec64 ec64 ec64 ec64 ec64 ec64
+11528 ec65 ec65 ec65 * * 5b71 8ea2dbf1,8ea2dbf1v 99f0 e9a7b0 99f0 000099f0 ec65 ec65 ec65 ec65 ec65 ec65 ec65
+11529 ec66 ec66 ec66 * * 5b72 8ea2dbf2,8ea2dbf2v 99e3 e9a7a3 99e3 000099e3 ec66 ec66 ec66 ec66 ec66 ec66 ec66
+11530 ec67 ec67 ec67 * * 5b73 8ea2dbf3,8ea2dbf3v 99ea e9a7aa 99ea 000099ea ec67 ec67 ec67 ec67 ec67 ec67 ec67
+11531 ec68 ec68 ec68 * * 5b74 8ea2dbf4,8ea2dbf4v 99e9 e9a7a9 99e9 000099e9 ec68 ec68 ec68 ec68 ec68 ec68 ec68
+11532 ec69 ec69 ec69 * * 5b75 8ea2dbf5,8ea2dbf5v 99e7 e9a7a7 99e7 000099e7 ec69 ec69 ec69 ec69 ec69 ec69 ec69
+11533 ec6a ec6a ec6a * * 5b76 8ea2dbf6,8ea2dbf6v 9ab9 e9aab9 9ab9 00009ab9 ec6a ec6a ec6a ec6a ec6a ec6a ec6a
+11534 ec6b ec6b ec6b * * 5b77 8ea2dbf7,8ea2dbf7v 9abf e9aabf 9abf 00009abf ec6b ec6b ec6b ec6b ec6b ec6b ec6b
+11535 ec6c ec6c ec6c * * 5b78 8ea2dbf8,8ea2dbf8v 9ab4 e9aab4 9ab4 00009ab4 ec6c ec6c ec6c ec6c ec6c ec6c ec6c
+11536 ec6d ec6d ec6d * * 5b79 8ea2dbf9,8ea2dbf9v 9abb e9aabb 9abb 00009abb ec6d ec6d ec6d ec6d ec6d ec6d ec6d
+11537 ec6e ec6e ec6e * * 5b7a 8ea2dbfa,8ea2dbfav 9af6 e9abb6 9af6 00009af6 ec6e ec6e ec6e ec6e ec6e ec6e ec6e
+11538 ec6f ec6f ec6f * * 5b7b 8ea2dbfb,8ea2dbfbv 9afa e9abba 9afa 00009afa ec6f ec6f ec6f ec6f ec6f ec6f ec6f
+11539 ec70 ec70 ec70 * * 5b7c 8ea2dbfc,8ea2dbfcv 9af9 e9abb9 9af9 00009af9 ec70 ec70 ec70 ec70 ec70 ec70 ec70
+11540 ec71 ec71 ec71 * * 5b7d 8ea2dbfd,8ea2dbfdv 9af7 e9abb7 9af7 00009af7 ec71 ec71 ec71 ec71 ec71 ec71 ec71
+11541 ec72 ec72 ec72 * * 5b7e 8ea2dbfe,8ea2dbfev 9b33 e9acb3 9b33 00009b33 ec72 ec72 ec72 ec72 ec72 ec72 ec72
+11542 ec73 ec73 ec73 * * 5c21 8ea2dca1,8ea2dca1v 9b80 e9ae80 9b80 00009b80 ec73 ec73 ec73 ec73 ec73 ec73 ec73
+11543 ec74 ec74 ec74 * * 5c22 8ea2dca2,8ea2dca2v 9b85 e9ae85 9b85 00009b85 ec74 ec74 ec74 ec74 ec74 ec74 ec74
+11544 ec75 ec75 ec75 * * 5c23 8ea2dca3,8ea2dca3v 9b87 e9ae87 9b87 00009b87 ec75 ec75 ec75 ec75 ec75 ec75 ec75
+11545 ec76 ec76 ec76 * * 5c24 8ea2dca4,8ea2dca4v 9b7c e9adbc 9b7c 00009b7c ec76 ec76 ec76 ec76 ec76 ec76 ec76
+11546 ec77 ec77 ec77 * * 5c25 8ea2dca5,8ea2dca5v 9b7e e9adbe 9b7e 00009b7e ec77 ec77 ec77 ec77 ec77 ec77 ec77
+11547 ec78 ec78 ec78 * * 5c26 8ea2dca6,8ea2dca6v 9b7b e9adbb 9b7b 00009b7b ec78 ec78 ec78 ec78 ec78 ec78 ec78
+11548 ec79 ec79 ec79 * * 5c27 8ea2dca7,8ea2dca7v 9b82 e9ae82 9b82 00009b82 ec79 ec79 ec79 ec79 ec79 ec79 ec79
+11549 ec7a ec7a ec7a * * 5c28 8ea2dca8,8ea2dca8v 9b93 e9ae93 9b93 00009b93 ec7a ec7a ec7a ec7a ec7a ec7a ec7a
+11550 ec7b ec7b ec7b * * 5c29 8ea2dca9,8ea2dca9v 9b92 e9ae92 9b92 00009b92 ec7b ec7b ec7b ec7b ec7b ec7b ec7b
+11551 ec7c ec7c ec7c * * 5c2a 8ea2dcaa,8ea2dcaav 9b90 e9ae90 9b90 00009b90 ec7c ec7c ec7c ec7c ec7c ec7c ec7c
+11552 ec7d ec7d ec7d * * 5c2b 8ea2dcab,8ea2dcabv 9b7a e9adba 9b7a 00009b7a ec7d ec7d ec7d ec7d ec7d ec7d ec7d
+11553 ec7e ec7e ec7e * * 5c2c 8ea2dcac,8ea2dcacv 9b95 e9ae95 9b95 00009b95 ec7e ec7e ec7e ec7e ec7e ec7e ec7e
+11554 eca1 eca1 eca1 * * 5c2d 8ea2dcad,8ea2dcadv 9b7d e9adbd 9b7d 00009b7d eca1 eca1 eca1 eca1 eca1 eca1 eca1
+11555 eca2 eca2 eca2 * * 5c2e 8ea2dcae,8ea2dcaev 9b88 e9ae88 9b88 00009b88 eca2 eca2 eca2 eca2 eca2 eca2 eca2
+11556 eca3 eca3 eca3 * * 5c2f 8ea2dcaf,8ea2dcafv 9d25 e9b4a5 9d25 00009d25 eca3 eca3 eca3 eca3 eca3 eca3 eca3
+11557 eca4 eca4 eca4 * * 5c30 8ea2dcb0,8ea2dcb0v 9d17 e9b497 9d17 00009d17 eca4 eca4 eca4 eca4 eca4 eca4 eca4
+11558 eca5 eca5 eca5 * * 5c31 8ea2dcb1,8ea2dcb1v 9d20 e9b4a0 9d20 00009d20 eca5 eca5 eca5 eca5 eca5 eca5 eca5
+11559 eca6 eca6 eca6 * * 5c32 8ea2dcb2,8ea2dcb2v 9d1e e9b49e 9d1e 00009d1e eca6 eca6 eca6 eca6 eca6 eca6 eca6
+11560 eca7 eca7 eca7 * * 5c33 8ea2dcb3,8ea2dcb3v 9d14 e9b494 9d14 00009d14 eca7 eca7 eca7 eca7 eca7 eca7 eca7
+11561 eca8 eca8 eca8 * * 5c34 8ea2dcb4,8ea2dcb4v 9d29 e9b4a9 9d29 00009d29 eca8 eca8 eca8 eca8 eca8 eca8 eca8
+11562 eca9 eca9 eca9 * * 5c35 8ea2dcb5,8ea2dcb5v 9d1d e9b49d 9d1d 00009d1d eca9 eca9 eca9 eca9 eca9 eca9 eca9
+11563 ecaa ecaa ecaa * * 5c36 8ea2dcb6,8ea2dcb6v 9d18 e9b498 9d18 00009d18 ecaa ecaa ecaa ecaa ecaa ecaa ecaa
+11564 ecab ecab ecab * * 5c37 8ea2dcb7,8ea2dcb7v 9d22 e9b4a2 9d22 00009d22 ecab ecab ecab ecab ecab ecab ecab
+11565 ecac ecac ecac * * 5c38 8ea2dcb8,8ea2dcb8v 9d10 e9b490 9d10 00009d10 ecac ecac ecac ecac ecac ecac ecac
+11566 ecad ecad ecad * * 5c39 8ea2dcb9,8ea2dcb9v 9d19 e9b499 9d19 00009d19 ecad ecad ecad ecad ecad ecad ecad
+11567 ecae ecae ecae * * 5c3a 8ea2dcba,8ea2dcbav 9d1f e9b49f 9d1f 00009d1f ecae ecae ecae ecae ecae ecae ecae
+11568 ecaf ecaf ecaf * * 5c3b 8ea2dcbb,8ea2dcbbv 9e88 e9ba88 9e88 00009e88 ecaf ecaf ecaf ecaf ecaf ecaf ecaf
+11569 ecb0 ecb0 ecb0 * * 5c3c 8ea2dcbc,8ea2dcbcv 9e86 e9ba86 9e86 00009e86 ecb0 ecb0 ecb0 ecb0 ecb0 ecb0 ecb0
+11570 ecb1 ecb1 ecb1 * * 5c3d 8ea2dcbd,8ea2dcbdv 9e87 e9ba87 9e87 00009e87 ecb1 ecb1 ecb1 ecb1 ecb1 ecb1 ecb1
+11571 ecb2 ecb2 ecb2 * * 5c3e 8ea2dcbe,8ea2dcbev 9eae e9baae 9eae 00009eae ecb2 ecb2 ecb2 ecb2 ecb2 ecb2 ecb2
+11572 ecb3 ecb3 ecb3 * * 5c3f 8ea2dcbf,8ea2dcbfv 9ead e9baad 9ead 00009ead ecb3 ecb3 ecb3 ecb3 ecb3 ecb3 ecb3
+11573 ecb4 ecb4 ecb4 * * 5c40 8ea2dcc0,8ea2dcc0v 9ed5 e9bb95 9ed5 00009ed5 ecb4 ecb4 ecb4 ecb4 ecb4 ecb4 ecb4
+11574 ecb5 ecb5 ecb5 * * 5c41 8ea2dcc1,8ea2dcc1v 9ed6 e9bb96 9ed6 00009ed6 ecb5 ecb5 ecb5 ecb5 ecb5 ecb5 ecb5
+11575 ecb6 ecb6 ecb6 * * 5c42 8ea2dcc2,8ea2dcc2v 9efa e9bbba 9efa 00009efa ecb6 ecb6 ecb6 ecb6 ecb6 ecb6 ecb6
+11576 ecb7 ecb7 ecb7 * * 5c43 8ea2dcc3,8ea2dcc3v 9f12 e9bc92 9f12 00009f12 ecb7 ecb7 ecb7 ecb7 ecb7 ecb7 ecb7
+11577 ecb8 ecb8 ecb8 * * 5c44 8ea2dcc4,8ea2dcc4v 9f3d e9bcbd 9f3d 00009f3d ecb8 ecb8 ecb8 ecb8 ecb8 ecb8 ecb8
+11578 ecb9 ecb9 ecb9 * * 5c45 8ea2dcc5,8ea2dcc5v 5126 e584a6 5126 00005126 ecb9 ecb9 ecb9 ecb9 ecb9 ecb9 ecb9
+11579 ecba ecba ecba * * 5c46 8ea2dcc6,8ea2dcc6v 5125 e584a5 5125 00005125 ecba ecba ecba ecba ecba ecba ecba
+11580 ecbb ecbb ecbb * * 5c47 8ea2dcc7,8ea2dcc7v 5122 e584a2 5122 00005122 ecbb ecbb ecbb ecbb ecbb ecbb ecbb
+11581 ecbc ecbc ecbc * * 5c48 8ea2dcc8,8ea2dcc8v 5124 e584a4 5124 00005124 ecbc ecbc ecbc ecbc ecbc ecbc ecbc
+11582 ecbd ecbd ecbd * * 5c49 8ea2dcc9,8ea2dcc9v 5120 e584a0 5120 00005120 ecbd ecbd ecbd ecbd ecbd ecbd ecbd
+11583 ecbe ecbe ecbe * * 5c4a 8ea2dcca,8ea2dccav 5129 e584a9 5129 00005129 ecbe ecbe ecbe ecbe ecbe ecbe ecbe
+11584 ecbf ecbf ecbf * * 5c4b 8ea2dccb,8ea2dccbv 52f4 e58bb4 52f4 000052f4 ecbf ecbf ecbf ecbf ecbf ecbf ecbf
+11585 ecc0 ecc0 ecc0 * * 5c4c 8ea2dccc,8ea2dcccv 5693 e59a93 5693 00005693 ecc0 ecc0 ecc0 ecc0 ecc0 ecc0 ecc0
+11586 ecc1 ecc1 ecc1 * * 5c4d 8ea2dccd,8ea2dccdv 568c e59a8c 568c 0000568c ecc1 ecc1 ecc1 ecc1 ecc1 ecc1 ecc1
+11587 ecc2 ecc2 ecc2 * * 5c4e 8ea2dcce,8ea2dccev 568d e59a8d 568d 0000568d ecc2 ecc2 ecc2 ecc2 ecc2 ecc2 ecc2
+11588 ecc3 ecc3 ecc3 * * 5c4f 8ea2dccf,8ea2dccfv 5686 e59a86 5686 00005686 ecc3 ecc3 ecc3 ecc3 ecc3 ecc3 ecc3
+11589 ecc4 ecc4 ecc4 * * 5c50 8ea2dcd0,8ea2dcd0v 5684 e59a84 5684 00005684 ecc4 ecc4 ecc4 ecc4 ecc4 ecc4 ecc4
+11590 ecc5 ecc5 ecc5 * * 5c51 8ea2dcd1,8ea2dcd1v 5683 e59a83 5683 00005683 ecc5 ecc5 ecc5 ecc5 ecc5 ecc5 ecc5
+11591 ecc6 ecc6 ecc6 * * 5c52 8ea2dcd2,8ea2dcd2v 567e e599be 567e 0000567e ecc6 ecc6 ecc6 ecc6 ecc6 ecc6 ecc6
+11592 ecc7 ecc7 ecc7 * * 5c53 8ea2dcd3,8ea2dcd3v 5682 e59a82 5682 00005682 ecc7 ecc7 ecc7 ecc7 ecc7 ecc7 ecc7
+11593 ecc8 ecc8 ecc8 * * 5c54 8ea2dcd4,8ea2dcd4v 567f e599bf 567f 0000567f ecc8 ecc8 ecc8 ecc8 ecc8 ecc8 ecc8
+11594 ecc9 ecc9 ecc9 * * 5c55 8ea2dcd5,8ea2dcd5v 5681 e59a81 5681 00005681 ecc9 ecc9 ecc9 ecc9 ecc9 ecc9 ecc9
+11595 ecca ecca ecca * * 5c56 8ea2dcd6,8ea2dcd6v 58d6 e5a396 58d6 000058d6 ecca ecca ecca ecca ecca ecca ecca
+11596 eccb eccb eccb * * 5c57 8ea2dcd7,8ea2dcd7v 58d4 e5a394 58d4 000058d4 eccb eccb eccb eccb eccb eccb eccb
+11597 eccc eccc eccc * * 5c58 8ea2dcd8,8ea2dcd8v 58cf e5a38f 58cf 000058cf eccc eccc eccc eccc eccc eccc eccc
+11598 eccd eccd eccd * * 5c59 8ea2dcd9,8ea2dcd9v 58d2 e5a392 58d2 000058d2 eccd eccd eccd eccd eccd eccd eccd
+11599 ecce ecce ecce * * 5c5a 8ea2dcda,8ea2dcdav 5b2d e5acad 5b2d 00005b2d ecce ecce ecce ecce ecce ecce ecce
+11600 eccf eccf eccf * * 5c5b 8ea2dcdb,8ea2dcdbv 5b25 e5aca5 5b25 00005b25 eccf eccf eccf eccf eccf eccf eccf
+11601 ecd0 ecd0 ecd0 * * 5c5c 8ea2dcdc,8ea2dcdcv 5b32 e5acb2 5b32 00005b32 ecd0 ecd0 ecd0 ecd0 ecd0 ecd0 ecd0
+11602 ecd1 ecd1 ecd1 * * 5c5d 8ea2dcdd,8ea2dcddv 5b23 e5aca3 5b23 00005b23 ecd1 ecd1 ecd1 ecd1 ecd1 ecd1 ecd1
+11603 ecd2 ecd2 ecd2 * * 5c5e 8ea2dcde,8ea2dcdev 5b2c e5acac 5b2c 00005b2c ecd2 ecd2 ecd2 ecd2 ecd2 ecd2 ecd2
+11604 ecd3 ecd3 ecd3 * * 5c5f 8ea2dcdf,8ea2dcdfv 5b27 e5aca7 5b27 00005b27 ecd3 ecd3 ecd3 ecd3 ecd3 ecd3 ecd3
+11605 ecd4 ecd4 ecd4 * * 5c60 8ea2dce0,8ea2dce0v 5b26 e5aca6 5b26 00005b26 ecd4 ecd4 ecd4 ecd4 ecd4 ecd4 ecd4
+11606 ecd5 ecd5 ecd5 * * 5c61 8ea2dce1,8ea2dce1v 5b2f e5acaf 5b2f 00005b2f ecd5 ecd5 ecd5 ecd5 ecd5 ecd5 ecd5
+11607 ecd6 ecd6 ecd6 * * 5c62 8ea2dce2,8ea2dce2v 5b2e e5acae 5b2e 00005b2e ecd6 ecd6 ecd6 ecd6 ecd6 ecd6 ecd6
+11608 ecd7 ecd7 ecd7 * * 5c63 8ea2dce3,8ea2dce3v 5b7b e5adbb 5b7b 00005b7b ecd7 ecd7 ecd7 ecd7 ecd7 ecd7 ecd7
+11609 ecd8 ecd8 ecd8 * * 5c64 8ea2dce4,8ea2dce4v 5bf1 e5afb1 5bf1 00005bf1 ecd8 ecd8 ecd8 ecd8 ecd8 ecd8 ecd8
+11610 ecd9 ecd9 ecd9 * * 5c65 8ea2dce5,8ea2dce5v 5bf2 e5afb2 5bf2 00005bf2 ecd9 ecd9 ecd9 ecd9 ecd9 ecd9 ecd9
+11611 ecda ecda ecda * * 5c66 8ea2dce6,8ea2dce6v 5db7 e5b6b7 5db7 00005db7 ecda ecda ecda ecda ecda ecda ecda
+11612 ecdb ecdb ecdb * * 5c67 8ea2dce7,8ea2dce7v 5e6c e5b9ac 5e6c 00005e6c ecdb ecdb ecdb ecdb ecdb ecdb ecdb
+11613 ecdc ecdc ecdc * * 5c68 8ea2dce8,8ea2dce8v 5e6a e5b9aa 5e6a 00005e6a ecdc ecdc ecdc ecdc ecdc ecdc ecdc
+11614 ecdd ecdd ecdd * * 5c69 8ea2dce9,8ea2dce9v 5fbe e5bebe 5fbe 00005fbe ecdd ecdd ecdd ecdd ecdd ecdd ecdd
+11615 ecdf ecdf ecdf * * 5c6a 8ea2dcea,8ea2dceav 61c3 e68783 61c3 000061c3 ecdf ecdf ecdf ecdf ecdf ecdf ecdf
+11616 ece0 ece0 ece0 * * 5c6b 8ea2dceb,8ea2dcebv 61b5 e686b5 61b5 000061b5 ece0 ece0 ece0 ece0 ece0 ece0 ece0
+11617 ece1 ece1 ece1 * * 5c6c 8ea2dcec,8ea2dcecv 61bc e686bc 61bc 000061bc ece1 ece1 ece1 ece1 ece1 ece1 ece1
+11618 ece2 ece2 ece2 * * 5c6d 8ea2dced,8ea2dcedv 61e7 e687a7 61e7 000061e7 ece2 ece2 ece2 ece2 ece2 ece2 ece2
+11619 ece3 ece3 ece3 * * 5c6e 8ea2dcee,8ea2dceev 61e0 e687a0 61e0 000061e0 ece3 ece3 ece3 ece3 ece3 ece3 ece3
+11620 ece4 ece4 ece4 * * 5c6f 8ea2dcef,8ea2dcefv 61e5 e687a5 61e5 000061e5 ece4 ece4 ece4 ece4 ece4 ece4 ece4
+11621 ece5 ece5 ece5 * * 5c70 8ea2dcf0,8ea2dcf0v 61e4 e687a4 61e4 000061e4 ece5 ece5 ece5 ece5 ece5 ece5 ece5
+11622 ece6 ece6 ece6 * * 5c71 8ea2dcf1,8ea2dcf1v 61e8 e687a8 61e8 000061e8 ece6 ece6 ece6 ece6 ece6 ece6 ece6
+11623 ece7 ece7 ece7 * * 5c72 8ea2dcf2,8ea2dcf2v 61de e6879e 61de 000061de ece7 ece7 ece7 ece7 ece7 ece7 ece7
+11624 ece8 ece8 ece8 * * 5c73 8ea2dcf3,8ea2dcf3v 64ef e693af 64ef 000064ef ece8 ece8 ece8 ece8 ece8 ece8 ece8
+11625 ece9 ece9 ece9 * * 5c74 8ea2dcf4,8ea2dcf4v 64e9 e693a9 64e9 000064e9 ece9 ece9 ece9 ece9 ece9 ece9 ece9
+11626 ecea ecea ecea * * 5c75 8ea2dcf5,8ea2dcf5v 64e3 e693a3 64e3 000064e3 ecea ecea ecea ecea ecea ecea ecea
+11627 eceb eceb eceb * * 5c76 8ea2dcf6,8ea2dcf6v 64eb e693ab 64eb 000064eb eceb eceb eceb eceb eceb eceb eceb
+11628 ecec ecec ecec * * 5c77 8ea2dcf7,8ea2dcf7v 64e4 e693a4 64e4 000064e4 ecec ecec ecec ecec ecec ecec ecec
+11629 eced eced eced * * 5c78 8ea2dcf8,8ea2dcf8v 64e8 e693a8 64e8 000064e8 eced eced eced eced eced eced eced
+11630 ecee ecee ecee * * 5c79 8ea2dcf9,8ea2dcf9v 6581 e69681 6581 00006581 ecee ecee ecee ecee ecee ecee ecee
+11631 ecef ecef ecef * * 5c7a 8ea2dcfa,8ea2dcfav 6580 e69680 6580 00006580 ecef ecef ecef ecef ecef ecef ecef
+11632 ecf0 ecf0 ecf0 * * 5c7b 8ea2dcfb,8ea2dcfbv 65b6 e696b6 65b6 000065b6 ecf0 ecf0 ecf0 ecf0 ecf0 ecf0 ecf0
+11633 ecf1 ecf1 ecf1 * * 5c7c 8ea2dcfc,8ea2dcfcv 65da e6979a 65da 000065da ecf1 ecf1 ecf1 ecf1 ecf1 ecf1 ecf1
+11634 ecf2 ecf2 ecf2 * * 5c7d 8ea2dcfd,8ea2dcfdv 66d2 e69b92 66d2 000066d2 ecf2 ecf2 ecf2 ecf2 ecf2 ecf2 ecf2
+11635 ecf3 ecf3 ecf3 * * 5c7e 8ea2dcfe,8ea2dcfev 6a8d e6aa8d 6a8d 00006a8d ecf3 ecf3 ecf3 ecf3 ecf3 ecf3 ecf3
+11636 ecf4 ecf4 ecf4 * * 5d21 8ea2dda1,8ea2dda1v 6a96 e6aa96 6a96 00006a96 ecf4 ecf4 ecf4 ecf4 ecf4 ecf4 ecf4
+11637 ecf5 ecf5 ecf5 * * 5d22 8ea2dda2,8ea2dda2v 6a81 e6aa81 6a81 00006a81 ecf5 ecf5 ecf5 ecf5 ecf5 ecf5 ecf5
+11638 ecf6 ecf6 ecf6 * * 5d23 8ea2dda3,8ea2dda3v 6aa5 e6aaa5 6aa5 00006aa5 ecf6 ecf6 ecf6 ecf6 ecf6 ecf6 ecf6
+11639 ecf7 ecf7 ecf7 * * 5d24 8ea2dda4,8ea2dda4v 6a89 e6aa89 6a89 00006a89 ecf7 ecf7 ecf7 ecf7 ecf7 ecf7 ecf7
+11640 ecf8 ecf8 ecf8 * * 5d25 8ea2dda5,8ea2dda5v 6a9f e6aa9f 6a9f 00006a9f ecf8 ecf8 ecf8 ecf8 ecf8 ecf8 ecf8
+11641 ecf9 ecf9 ecf9 * * 5d26 8ea2dda6,8ea2dda6v 6a9b e6aa9b 6a9b 00006a9b ecf9 ecf9 ecf9 ecf9 ecf9 ecf9 ecf9
+11642 ecfa ecfa ecfa * * 5d27 8ea2dda7,8ea2dda7v 6aa1 e6aaa1 6aa1 00006aa1 ecfa ecfa ecfa ecfa ecfa ecfa ecfa
+11643 ecfb ecfb ecfb * * 5d28 8ea2dda8,8ea2dda8v 6a9e e6aa9e 6a9e 00006a9e ecfb ecfb ecfb ecfb ecfb ecfb ecfb
+11644 ecfc ecfc ecfc * * 5d29 8ea2dda9,8ea2dda9v 6a87 e6aa87 6a87 00006a87 ecfc ecfc ecfc ecfc ecfc ecfc ecfc
+11645 ecfd ecfd ecfd * * 5d2a 8ea2ddaa,8ea2ddaav 6a93 e6aa93 6a93 00006a93 ecfd ecfd ecfd ecfd ecfd ecfd ecfd
+11646 ecfe ecfe ecfe * * 5d2b 8ea2ddab,8ea2ddabv 6a8e e6aa8e 6a8e 00006a8e ecfe ecfe ecfe ecfe ecfe ecfe ecfe
+11647 ed40 ed40 ed40 * * 5d2c 8ea2ddac,8ea2ddacv 6a95 e6aa95 6a95 00006a95 ed40 ed40 ed40 ed40 ed40 ed40 ed40
+11648 ed41 ed41 ed41 * * 5d2d 8ea2ddad,8ea2ddadv 6a83 e6aa83 6a83 00006a83 ed41 ed41 ed41 ed41 ed41 ed41 ed41
+11649 ed42 ed42 ed42 * * 5d2e 8ea2ddae,8ea2ddaev 6aa8 e6aaa8 6aa8 00006aa8 ed42 ed42 ed42 ed42 ed42 ed42 ed42
+11650 ed43 ed43 ed43 * * 5d2f 8ea2ddaf,8ea2ddafv 6aa4 e6aaa4 6aa4 00006aa4 ed43 ed43 ed43 ed43 ed43 ed43 ed43
+11651 ed44 ed44 ed44 * * 5d30 8ea2ddb0,8ea2ddb0v 6a91 e6aa91 6a91 00006a91 ed44 ed44 ed44 ed44 ed44 ed44 ed44
+11652 ed45 ed45 ed45 * * 5d31 8ea2ddb1,8ea2ddb1v 6a7f e6a9bf 6a7f 00006a7f ed45 ed45 ed45 ed45 ed45 ed45 ed45
+11653 ed46 ed46 ed46 * * 5d32 8ea2ddb2,8ea2ddb2v 6aa6 e6aaa6 6aa6 00006aa6 ed46 ed46 ed46 ed46 ed46 ed46 ed46
+11654 ed47 ed47 ed47 * * 5d33 8ea2ddb3,8ea2ddb3v 6a9a e6aa9a 6a9a 00006a9a ed47 ed47 ed47 ed47 ed47 ed47 ed47
+11655 ed48 ed48 ed48 * * 5d34 8ea2ddb4,8ea2ddb4v 6a85 e6aa85 6a85 00006a85 ed48 ed48 ed48 ed48 ed48 ed48 ed48
+11656 ed49 ed49 ed49 * * 5d35 8ea2ddb5,8ea2ddb5v 6a8c e6aa8c 6a8c 00006a8c ed49 ed49 ed49 ed49 ed49 ed49 ed49
+11657 ed4a ed4a ed4a * * 5d36 8ea2ddb6,8ea2ddb6v 6a92 e6aa92 6a92 00006a92 ed4a ed4a ed4a ed4a ed4a ed4a ed4a
+11658 ed4b ed4b ed4b * * 5d37 8ea2ddb7,8ea2ddb7v 6b5b e6ad9b 6b5b 00006b5b ed4b ed4b ed4b ed4b ed4b ed4b ed4b
+11659 ed4c ed4c ed4c * * 5d38 8ea2ddb8,8ea2ddb8v 6bad e6aead 6bad 00006bad ed4c ed4c ed4c ed4c ed4c ed4c ed4c
+11660 ed4d ed4d ed4d * * 5d39 8ea2ddb9,8ea2ddb9v 6c09 e6b089 6c09 00006c09 ed4d ed4d ed4d ed4d ed4d ed4d ed4d
+11661 ed4e ed4e ed4e * * 5d3a 8ea2ddba,8ea2ddbav 6fcc e6bf8c 6fcc 00006fcc ed4e ed4e ed4e ed4e ed4e ed4e ed4e
+11662 ed4f ed4f ed4f * * 5d3b 8ea2ddbb,8ea2ddbbv 6fa9 e6bea9 6fa9 00006fa9 ed4f ed4f ed4f ed4f ed4f ed4f ed4f
+11663 ed50 ed50 ed50 * * 5d3c 8ea2ddbc,8ea2ddbcv 6ff4 e6bfb4 6ff4 00006ff4 ed50 ed50 ed50 ed50 ed50 ed50 ed50
+11664 ed51 ed51 ed51 * * 5d3d 8ea2ddbd,8ea2ddbdv 6fd4 e6bf94 6fd4 00006fd4 ed51 ed51 ed51 ed51 ed51 ed51 ed51
+11665 ed52 ed52 ed52 * * 5d3e 8ea2ddbe,8ea2ddbev 6fe3 e6bfa3 6fe3 00006fe3 ed52 ed52 ed52 ed52 ed52 ed52 ed52
+11666 ed53 ed53 ed53 * * 5d3f 8ea2ddbf,8ea2ddbfv 6fdc e6bf9c 6fdc 00006fdc ed53 ed53 ed53 ed53 ed53 ed53 ed53
+11667 ed54 ed54 ed54 * * 5d40 8ea2ddc0,8ea2ddc0v 6fed e6bfad 6fed 00006fed ed54 ed54 ed54 ed54 ed54 ed54 ed54
+11668 ed55 ed55 ed55 * * 5d41 8ea2ddc1,8ea2ddc1v 6fe7 e6bfa7 6fe7 00006fe7 ed55 ed55 ed55 ed55 ed55 ed55 ed55
+11669 ed56 ed56 ed56 * * 5d42 8ea2ddc2,8ea2ddc2v 6fe6 e6bfa6 6fe6 00006fe6 ed56 ed56 ed56 ed56 ed56 ed56 ed56
+11670 ed57 ed57 ed57 * * 5d43 8ea2ddc3,8ea2ddc3v 6fde e6bf9e 6fde 00006fde ed57 ed57 ed57 ed57 ed57 ed57 ed57
+11671 ed58 ed58 ed58 * * 5d44 8ea2ddc4,8ea2ddc4v 6ff2 e6bfb2 6ff2 00006ff2 ed58 ed58 ed58 ed58 ed58 ed58 ed58
+11672 ed59 ed59 ed59 * * 5d45 8ea2ddc5,8ea2ddc5v 6fdd e6bf9d 6fdd 00006fdd ed59 ed59 ed59 ed59 ed59 ed59 ed59
+11673 ed5a ed5a ed5a * * 5d46 8ea2ddc6,8ea2ddc6v 6fe2 e6bfa2 6fe2 00006fe2 ed5a ed5a ed5a ed5a ed5a ed5a ed5a
+11674 ed5b ed5b ed5b * * 5d47 8ea2ddc7,8ea2ddc7v 6fe8 e6bfa8 6fe8 00006fe8 ed5b ed5b ed5b ed5b ed5b ed5b ed5b
+11675 ed5c ed5c ed5c * * 5d48 8ea2ddc8,8ea2ddc8v 71e1 e787a1 71e1 000071e1 ed5c ed5c ed5c ed5c ed5c ed5c ed5c
+11676 ed5d ed5d ed5d * * 5d49 8ea2ddc9,8ea2ddc9v 71f1 e787b1 71f1 000071f1 ed5d ed5d ed5d ed5d ed5d ed5d ed5d
+11677 ed5e ed5e ed5e * * 5d4a 8ea2ddca,8ea2ddcav 71e8 e787a8 71e8 000071e8 ed5e ed5e ed5e ed5e ed5e ed5e ed5e
+11678 ed5f ed5f ed5f * * 5d4b 8ea2ddcb,8ea2ddcbv 71f2 e787b2 71f2 000071f2 ed5f ed5f ed5f ed5f ed5f ed5f ed5f
+11679 ed60 ed60 ed60 * * 5d4c 8ea2ddcc,8ea2ddccv 71e4 e787a4 71e4 000071e4 ed60 ed60 ed60 ed60 ed60 ed60 ed60
+11680 ed61 ed61 ed61 * * 5d4d 8ea2ddcd,8ea2ddcdv 71f0 e787b0 71f0 000071f0 ed61 ed61 ed61 ed61 ed61 ed61 ed61
+11681 ed62 ed62 ed62 * * 5d4e 8ea2ddce,8ea2ddcev 71e2 e787a2 71e2 000071e2 ed62 ed62 ed62 ed62 ed62 ed62 ed62
+11682 ed63 ed63 ed63 * * 5d4f 8ea2ddcf,8ea2ddcfv 7373 e78db3 7373 00007373 ed63 ed63 ed63 ed63 ed63 ed63 ed63
+11683 ed64 ed64 ed64 * * 5d50 8ea2ddd0,8ea2ddd0v 736e e78dae 736e 0000736e ed64 ed64 ed64 ed64 ed64 ed64 ed64
+11684 ed65 ed65 ed65 * * 5d51 8ea2ddd1,8ea2ddd1v 736f e78daf 736f 0000736f ed65 ed65 ed65 ed65 ed65 ed65 ed65
+11685 ed66 ed66 ed66 * * 5d52 8ea2ddd2,8ea2ddd2v 7497 e79297 7497 00007497 ed66 ed66 ed66 ed66 ed66 ed66 ed66
+11686 ed67 ed67 ed67 * * 5d53 8ea2ddd3,8ea2ddd3v 74b2 e792b2 74b2 000074b2 ed67 ed67 ed67 ed67 ed67 ed67 ed67
+11687 ed68 ed68 ed68 * * 5d54 8ea2ddd4,8ea2ddd4v 74ab e792ab 74ab 000074ab ed68 ed68 ed68 ed68 ed68 ed68 ed68
+11688 ed69 ed69 ed69 * * 5d55 8ea2ddd5,8ea2ddd5v 7490 e79290 7490 00007490 ed69 ed69 ed69 ed69 ed69 ed69 ed69
+11689 ed6a ed6a ed6a * * 5d56 8ea2ddd6,8ea2ddd6v 74aa e792aa 74aa 000074aa ed6a ed6a ed6a ed6a ed6a ed6a ed6a
+11690 ed6b ed6b ed6b * * 5d57 8ea2ddd7,8ea2ddd7v 74ad e792ad 74ad 000074ad ed6b ed6b ed6b ed6b ed6b ed6b ed6b
+11691 ed6c ed6c ed6c * * 5d58 8ea2ddd8,8ea2ddd8v 74b1 e792b1 74b1 000074b1 ed6c ed6c ed6c ed6c ed6c ed6c ed6c
+11692 ed6d ed6d ed6d * * 5d59 8ea2ddd9,8ea2ddd9v 74a5 e792a5 74a5 000074a5 ed6d ed6d ed6d ed6d ed6d ed6d ed6d
+11693 ed6e ed6e ed6e * * 5d5a 8ea2ddda,8ea2dddav 74af e792af 74af 000074af ed6e ed6e ed6e ed6e ed6e ed6e ed6e
+11694 ed6f ed6f ed6f * * 5d5b 8ea2dddb,8ea2dddbv 7510 e79490 7510 00007510 ed6f ed6f ed6f ed6f ed6f ed6f ed6f
+11695 ed70 ed70 ed70 * * 5d5c 8ea2dddc,8ea2dddcv 7511 e79491 7511 00007511 ed70 ed70 ed70 ed70 ed70 ed70 ed70
+11696 ed71 ed71 ed71 * * 5d5d 8ea2dddd,8ea2ddddv 7512 e79492 7512 00007512 ed71 ed71 ed71 ed71 ed71 ed71 ed71
+11697 ed72 ed72 ed72 * * 5d5e 8ea2ddde,8ea2dddev 750f e7948f 750f 0000750f ed72 ed72 ed72 ed72 ed72 ed72 ed72
+11698 ed73 ed73 ed73 * * 5d5f 8ea2dddf,8ea2dddfv 7584 e79684 7584 00007584 ed73 ed73 ed73 ed73 ed73 ed73 ed73
+11699 ed74 ed74 ed74 * * 5d60 8ea2dde0,8ea2dde0v 7643 e79983 7643 00007643 ed74 ed74 ed74 ed74 ed74 ed74 ed74
+11700 ed75 ed75 ed75 * * 5d61 8ea2dde1,8ea2dde1v 7648 e79988 7648 00007648 ed75 ed75 ed75 ed75 ed75 ed75 ed75
+11701 ed76 ed76 ed76 * * 5d62 8ea2dde2,8ea2dde2v 7649 e79989 7649 00007649 ed76 ed76 ed76 ed76 ed76 ed76 ed76
+11702 ed77 ed77 ed77 * * 5d63 8ea2dde3,8ea2dde3v 7647 e79987 7647 00007647 ed77 ed77 ed77 ed77 ed77 ed77 ed77
+11703 ed78 ed78 ed78 * * 5d64 8ea2dde4,8ea2dde4v 76a4 e79aa4 76a4 000076a4 ed78 ed78 ed78 ed78 ed78 ed78 ed78
+11704 ed79 ed79 ed79 * * 5d65 8ea2dde5,8ea2dde5v 76e9 e79ba9 76e9 000076e9 ed79 ed79 ed79 ed79 ed79 ed79 ed79
+11705 ed7a ed7a ed7a * * 5d66 8ea2dde6,8ea2dde6v 77b5 e79eb5 77b5 000077b5 ed7a ed7a ed7a ed7a ed7a ed7a ed7a
+11706 ed7b ed7b ed7b * * 5d67 8ea2dde7,8ea2dde7v 77ab e79eab 77ab 000077ab ed7b ed7b ed7b ed7b ed7b ed7b ed7b
+11707 ed7c ed7c ed7c * * 5d68 8ea2dde8,8ea2dde8v 77b2 e79eb2 77b2 000077b2 ed7c ed7c ed7c ed7c ed7c ed7c ed7c
+11708 ed7d ed7d ed7d * * 5d69 8ea2dde9,8ea2dde9v 77b7 e79eb7 77b7 000077b7 ed7d ed7d ed7d ed7d ed7d ed7d ed7d
+11709 ed7e ed7e ed7e * * 5d6a 8ea2ddea,8ea2ddeav 77b6 e79eb6 77b6 000077b6 ed7e ed7e ed7e ed7e ed7e ed7e ed7e
+11710 eda1 eda1 eda1 * * 5d6b 8ea2ddeb,8ea2ddebv 77b4 e79eb4 77b4 000077b4 eda1 eda1 eda1 eda1 eda1 eda1 eda1
+11711 eda2 eda2 eda2 * * 5d6c 8ea2ddec,8ea2ddecv 77b1 e79eb1 77b1 000077b1 eda2 eda2 eda2 eda2 eda2 eda2 eda2
+11712 eda3 eda3 eda3 * * 5d6d 8ea2dded,8ea2ddedv 77a8 e79ea8 77a8 000077a8 eda3 eda3 eda3 eda3 eda3 eda3 eda3
+11713 eda4 eda4 eda4 * * 5d6e 8ea2ddee,8ea2ddeev 77f0 e79fb0 77f0 000077f0 eda4 eda4 eda4 eda4 eda4 eda4 eda4
+11714 eda5 eda5 eda5 * * 5d6f 8ea2ddef,8ea2ddefv 78f3 e7a3b3 78f3 000078f3 eda5 eda5 eda5 eda5 eda5 eda5 eda5
+11715 eda6 eda6 eda6 * * 5d70 8ea2ddf0,8ea2ddf0v 78fd e7a3bd 78fd 000078fd eda6 eda6 eda6 eda6 eda6 eda6 eda6
+11716 eda7 eda7 eda7 * * 5d71 8ea2ddf1,8ea2ddf1v 7902 e7a482 7902 00007902 eda7 eda7 eda7 eda7 eda7 eda7 eda7
+11717 eda8 eda8 eda8 * * 5d72 8ea2ddf2,8ea2ddf2v 78fb e7a3bb 78fb 000078fb eda8 eda8 eda8 eda8 eda8 eda8 eda8
+11718 eda9 eda9 eda9 * * 5d73 8ea2ddf3,8ea2ddf3v 78fc e7a3bc 78fc 000078fc eda9 eda9 eda9 eda9 eda9 eda9 eda9
+11719 f056 f056 f056 * * 5d74 8ea2ddf4,8ea2ddf4v 78ff e7a3bf 78ff 000078ff f056 f056 f056 f056 f056 f056 f056
+11720 edaa edaa edaa * * 5d75 8ea2ddf5,8ea2ddf5v 78f2 e7a3b2 78f2 000078f2 edaa edaa edaa edaa edaa edaa edaa
+11721 edab edab edab * * 5d76 8ea2ddf6,8ea2ddf6v 7905 e7a485 7905 00007905 edab edab edab edab edab edab edab
+11722 edac edac edac * * 5d77 8ea2ddf7,8ea2ddf7v 78f9 e7a3b9 78f9 000078f9 edac edac edac edac edac edac edac
+11723 edad edad edad * * 5d78 8ea2ddf8,8ea2ddf8v 78fe e7a3be 78fe 000078fe edad edad edad edad edad edad edad
+11724 edae edae edae * * 5d79 8ea2ddf9,8ea2ddf9v 7904 e7a484 7904 00007904 edae edae edae edae edae edae edae
+11725 edaf edaf edaf * * 5d7a 8ea2ddfa,8ea2ddfav 79ab e7a6ab 79ab 000079ab edaf edaf edaf edaf edaf edaf edaf
+11726 edb0 edb0 edb0 * * 5d7b 8ea2ddfb,8ea2ddfbv 79a8 e7a6a8 79a8 000079a8 edb0 edb0 edb0 edb0 edb0 edb0 edb0
+11727 edb1 edb1 edb1 * * 5d7c 8ea2ddfc,8ea2ddfcv 7a5c e7a99c 7a5c 00007a5c edb1 edb1 edb1 edb1 edb1 edb1 edb1
+11728 edb2 edb2 edb2 * * 5d7d 8ea2ddfd,8ea2ddfdv 7a5b e7a99b 7a5b 00007a5b edb2 edb2 edb2 edb2 edb2 edb2 edb2
+11729 edb3 edb3 edb3 * * 5d7e 8ea2ddfe,8ea2ddfev 7a56 e7a996 7a56 00007a56 edb3 edb3 edb3 edb3 edb3 edb3 edb3
+11730 edb4 edb4 edb4 * * 5e21 8ea2dea1,8ea2dea1v 7a58 e7a998 7a58 00007a58 edb4 edb4 edb4 edb4 edb4 edb4 edb4
+11731 edb5 edb5 edb5 * * 5e22 8ea2dea2,8ea2dea2v 7a54 e7a994 7a54 00007a54 edb5 edb5 edb5 edb5 edb5 edb5 edb5
+11732 edb6 edb6 edb6 * * 5e23 8ea2dea3,8ea2dea3v 7a5a e7a99a 7a5a 00007a5a edb6 edb6 edb6 edb6 edb6 edb6 edb6
+11733 edb7 edb7 edb7 * * 5e24 8ea2dea4,8ea2dea4v 7abe e7aabe 7abe 00007abe edb7 edb7 edb7 edb7 edb7 edb7 edb7
+11734 edb8 edb8 edb8 * * 5e25 8ea2dea5,8ea2dea5v 7ac0 e7ab80 7ac0 00007ac0 edb8 edb8 edb8 edb8 edb8 edb8 edb8
+11735 edb9 edb9 edb9 * * 5e26 8ea2dea6,8ea2dea6v 7ac1 e7ab81 7ac1 00007ac1 edb9 edb9 edb9 edb9 edb9 edb9 edb9
+11736 edba edba edba * * 5e27 8ea2dea7,8ea2dea7v 7c05 e7b085 7c05 00007c05 edba edba edba edba edba edba edba
+11737 edbb edbb edbb * * 5e28 8ea2dea8,8ea2dea8v 7c0f e7b08f 7c0f 00007c0f edbb edbb edbb edbb edbb edbb edbb
+11738 edbc edbc edbc * * 5e29 8ea2dea9,8ea2dea9v 7bf2 e7afb2 7bf2 00007bf2 edbc edbc edbc edbc edbc edbc edbc
+11739 edbd edbd edbd * * 5e2a 8ea2deaa,8ea2deaav 7c00 e7b080 7c00 00007c00 edbd edbd edbd edbd edbd edbd edbd
+11740 edbe edbe edbe * * 5e2b 8ea2deab,8ea2deabv 7bff e7afbf 7bff 00007bff edbe edbe edbe edbe edbe edbe edbe
+11741 edbf edbf edbf * * 5e2c 8ea2deac,8ea2deacv 7bfb e7afbb 7bfb 00007bfb edbf edbf edbf edbf edbf edbf edbf
+11742 edc0 edc0 edc0 * * 5e2d 8ea2dead,8ea2deadv 7c0e e7b08e 7c0e 00007c0e edc0 edc0 edc0 edc0 edc0 edc0 edc0
+11743 edc1 edc1 edc1 * * 5e2e 8ea2deae,8ea2deaev 7bf4 e7afb4 7bf4 00007bf4 edc1 edc1 edc1 edc1 edc1 edc1 edc1
+11744 edc2 edc2 edc2 * * 5e2f 8ea2deaf,8ea2deafv 7c0b e7b08b 7c0b 00007c0b edc2 edc2 edc2 edc2 edc2 edc2 edc2
+11745 edc3 edc3 edc3 * * 5e30 8ea2deb0,8ea2deb0v 7bf3 e7afb3 7bf3 00007bf3 edc3 edc3 edc3 edc3 edc3 edc3 edc3
+11746 edc4 edc4 edc4 * * 5e31 8ea2deb1,8ea2deb1v 7c02 e7b082 7c02 00007c02 edc4 edc4 edc4 edc4 edc4 edc4 edc4
+11747 edc5 edc5 edc5 * * 5e32 8ea2deb2,8ea2deb2v 7c09 e7b089 7c09 00007c09 edc5 edc5 edc5 edc5 edc5 edc5 edc5
+11748 edc6 edc6 edc6 * * 5e33 8ea2deb3,8ea2deb3v 7c03 e7b083 7c03 00007c03 edc6 edc6 edc6 edc6 edc6 edc6 edc6
+11749 edc7 edc7 edc7 * * 5e34 8ea2deb4,8ea2deb4v 7c01 e7b081 7c01 00007c01 edc7 edc7 edc7 edc7 edc7 edc7 edc7
+11750 edc8 edc8 edc8 * * 5e35 8ea2deb5,8ea2deb5v 7bf8 e7afb8 7bf8 00007bf8 edc8 edc8 edc8 edc8 edc8 edc8 edc8
+11751 edc9 edc9 edc9 * * 5e36 8ea2deb6,8ea2deb6v 7bfd e7afbd 7bfd 00007bfd edc9 edc9 edc9 edc9 edc9 edc9 edc9
+11752 edca edca edca * * 5e37 8ea2deb7,8ea2deb7v 7c06 e7b086,ee8d80 7c06,e340 00007c06,0000e340 8e6f,edca edca edca edca edca edca 8e6f,edca
+11753 edcb edcb edcb * * 5e38 8ea2deb8,8ea2deb8v 7bf0 e7afb0 7bf0 00007bf0 edcb edcb edcb edcb edcb edcb edcb
+11754 edcc edcc edcc * * 5e39 8ea2deb9,8ea2deb9v 7bf1 e7afb1 7bf1 00007bf1 edcc edcc edcc edcc edcc edcc edcc
+11755 edcd edcd edcd * * 5e3a 8ea2deba,8ea2debav 7c10 e7b090 7c10 00007c10 edcd edcd edcd edcd edcd edcd edcd
+11756 edce edce edce * * 5e3b 8ea2debb,8ea2debbv 7c0a e7b08a 7c0a 00007c0a edce edce edce edce edce edce edce
+11757 edcf edcf edcf * * 5e3c 8ea2debc,8ea2debcv 7ce8 e7b3a8 7ce8 00007ce8 edcf edcf edcf edcf edcf edcf edcf
+11758 edd0 edd0 edd0 * * 5e3d 8ea2debd,8ea2debdv 7e2d e7b8ad 7e2d 00007e2d edd0 edd0 edd0 edd0 edd0 edd0 edd0
+11759 edd1 edd1 edd1 * * 5e3e 8ea2debe,8ea2debev 7e3c e7b8bc 7e3c 00007e3c edd1 edd1 edd1 edd1 edd1 edd1 edd1
+11760 edd2 edd2 edd2 * * 5e3f 8ea2debf,8ea2debfv 7e42 e7b982 7e42 00007e42 edd2 edd2 edd2 edd2 edd2 edd2 edd2
+11761 edd3 edd3 edd3 * * 5e40 8ea2dec0,8ea2dec0v 7e33 e7b8b3 7e33 00007e33 edd3 edd3 edd3 edd3 edd3 edd3 edd3
+11762 edd4 edd4 edd4 * * 5e41 8ea2dec1,8ea2dec1v 9848 e9a188 9848 00009848 edd4 edd4 edd4 edd4 edd4 edd4 edd4
+11763 edd5 edd5 edd5 * * 5e42 8ea2dec2,8ea2dec2v 7e38 e7b8b8 7e38 00007e38 edd5 edd5 edd5 edd5 edd5 edd5 edd5
+11764 edd6 edd6 edd6 * * 5e43 8ea2dec3,8ea2dec3v 7e2a e7b8aa 7e2a 00007e2a edd6 edd6 edd6 edd6 edd6 edd6 edd6
+11765 edd7 edd7 edd7 * * 5e44 8ea2dec4,8ea2dec4v 7e49 e7b989 7e49 00007e49 edd7 edd7 edd7 edd7 edd7 edd7 edd7
+11766 edd8 edd8 edd8 * * 5e45 8ea2dec5,8ea2dec5v 7e40 e7b980 7e40 00007e40 edd8 edd8 edd8 edd8 edd8 edd8 edd8
+11767 edd9 edd9 edd9 * * 5e46 8ea2dec6,8ea2dec6v 7e47 e7b987 7e47 00007e47 edd9 edd9 edd9 edd9 edd9 edd9 edd9
+11768 edda edda edda * * 5e47 8ea2dec7,8ea2dec7v 7e29 e7b8a9 7e29 00007e29 edda edda edda edda edda edda edda
+11769 eddb eddb eddb * * 5e48 8ea2dec8,8ea2dec8v 7e4c e7b98c 7e4c 00007e4c eddb eddb eddb eddb eddb eddb eddb
+11770 eddc eddc eddc * * 5e49 8ea2dec9,8ea2dec9v 7e30 e7b8b0 7e30 00007e30 eddc eddc eddc eddc eddc eddc eddc
+11771 eddd eddd eddd * * 5e4a 8ea2deca,8ea2decav 7e3b e7b8bb 7e3b 00007e3b eddd eddd eddd eddd eddd eddd eddd
+11772 edde edde edde * * 5e4b 8ea2decb,8ea2decbv 7e36 e7b8b6 7e36 00007e36 edde edde edde edde edde edde edde
+11773 eddf eddf eddf * * 5e4c 8ea2decc,8ea2deccv 7e44 e7b984 7e44 00007e44 eddf eddf eddf eddf eddf eddf eddf
+11774 ede0 ede0 ede0 * * 5e4d 8ea2decd,8ea2decdv 7e3a e7b8ba 7e3a 00007e3a ede0 ede0 ede0 ede0 ede0 ede0 ede0
+11775 ede1 ede1 ede1 * * 5e4e 8ea2dece,8ea2decev 7f45 e7bd85 7f45 00007f45 ede1 ede1 ede1 ede1 ede1 ede1 ede1
+11776 ede2 ede2 ede2 * * 5e4f 8ea2decf,8ea2decfv 7f7f e7bdbf 7f7f 00007f7f ede2 ede2 ede2 ede2 ede2 ede2 ede2
+11777 ede3 ede3 ede3 * * 5e50 8ea2ded0,8ea2ded0v 7f7e e7bdbe 7f7e 00007f7e ede3 ede3 ede3 ede3 ede3 ede3 ede3
+11778 ede4 ede4 ede4 * * 5e51 8ea2ded1,8ea2ded1v 7f7d e7bdbd 7f7d 00007f7d ede4 ede4 ede4 ede4 ede4 ede4 ede4
+11779 ede5 ede5 ede5 * * 5e52 8ea2ded2,8ea2ded2v 7ff4 e7bfb4 7ff4 00007ff4 ede5 ede5 ede5 ede5 ede5 ede5 ede5
+11780 ede6 ede6 ede6 * * 5e53 8ea2ded3,8ea2ded3v 7ff2 e7bfb2 7ff2 00007ff2 ede6 ede6 ede6 ede6 ede6 ede6 ede6
+11781 ede7 ede7 ede7 * * 5e54 8ea2ded4,8ea2ded4v 802c e880ac 802c 0000802c ede7 ede7 ede7 ede7 ede7 ede7 ede7
+11782 ede8 ede8 ede8 * * 5e55 8ea2ded5,8ea2ded5v 81bb e886bb 81bb 000081bb ede8 ede8 ede8 ede8 ede8 ede8 ede8
+11783 ede9 ede9 ede9 * * 5e56 8ea2ded6,8ea2ded6v 81c4 e88784 81c4 000081c4 ede9 ede9 ede9 ede9 ede9 ede9 ede9
+11784 edea edea edea * * 5e57 8ea2ded7,8ea2ded7v 81cc e8878c 81cc 000081cc edea edea edea edea edea edea edea
+11785 edeb edeb edeb * * 5e58 8ea2ded8,8ea2ded8v 81ca e8878a 81ca 000081ca edeb edeb edeb edeb edeb edeb edeb
+11786 edec edec edec * * 5e59 8ea2ded9,8ea2ded9v 81c5 e88785 81c5 000081c5 edec edec edec edec edec edec edec
+11787 eded eded eded * * 5e5a 8ea2deda,8ea2dedav 81c7 e88787 81c7 000081c7 eded eded eded eded eded eded eded
+11788 edee edee edee * * 5e5b 8ea2dedb,8ea2dedbv 81bc e886bc 81bc 000081bc edee edee edee edee edee edee edee
+11789 edef edef edef * * 5e5c 8ea2dedc,8ea2dedcv 81e9 e887a9 81e9 000081e9 edef edef edef edef edef edef edef
+11790 edf0 edf0 edf0 * * 5e5d 8ea2dedd,8ea2deddv 825b e8899b 825b 0000825b edf0 edf0 edf0 edf0 edf0 edf0 edf0
+11791 edf1 edf1 edf1 * * 5e5e 8ea2dede,8ea2dedev 825a e8899a 825a 0000825a edf1 edf1 edf1 edf1 edf1 edf1 edf1
+11792 edf2 edf2 edf2 * * 5e5f 8ea2dedf,8ea2dedfv 825c e8899c 825c 0000825c edf2 edf2 edf2 edf2 edf2 edf2 edf2
+11793 edf3 edf3 edf3 * * 5e60 8ea2dee0,8ea2dee0v 8583 e89683 8583 00008583 edf3 edf3 edf3 edf3 edf3 edf3 edf3
+11794 edf4 edf4 edf4 * * 5e61 8ea2dee1,8ea2dee1v 8580 e89680 8580 00008580 edf4 edf4 edf4 edf4 edf4 edf4 edf4
+11795 edf5 edf5 edf5 * * 5e62 8ea2dee2,8ea2dee2v 858f e8968f 858f 0000858f edf5 edf5 edf5 edf5 edf5 edf5 edf5
+11796 edf6 edf6 edf6 * * 5e63 8ea2dee3,8ea2dee3v 85a7 e896a7 85a7 000085a7 edf6 edf6 edf6 edf6 edf6 edf6 edf6
+11797 edf7 edf7 edf7 * * 5e64 8ea2dee4,8ea2dee4v 8595 e89695 8595 00008595 edf7 edf7 edf7 edf7 edf7 edf7 edf7
+11798 edf8 edf8 edf8 * * 5e65 8ea2dee5,8ea2dee5v 85a0 e896a0 85a0 000085a0 edf8 edf8 edf8 edf8 edf8 edf8 edf8
+11799 edf9 edf9 edf9 * * 5e66 8ea2dee6,8ea2dee6v 858b e8968b 858b 0000858b edf9 edf9 edf9 edf9 edf9 edf9 edf9
+11800 edfa edfa edfa * * 5e67 8ea2dee7,8ea2dee7v 85a3 e896a3 85a3 000085a3 edfa edfa edfa edfa edfa edfa edfa
+11801 edfb edfb edfb * * 5e68 8ea2dee8,8ea2dee8v 857b e895bb 857b 0000857b edfb edfb edfb edfb edfb edfb edfb
+11802 edfc edfc edfc * * 5e69 8ea2dee9,8ea2dee9v 85a4 e896a4 85a4 000085a4 edfc edfc edfc edfc edfc edfc edfc
+11803 edfd edfd edfd * * 5e6a 8ea2deea,8ea2deeav 859a e8969a 859a 0000859a edfd edfd edfd edfd edfd edfd edfd
+11804 edfe edfe edfe * * 5e6b 8ea2deeb,8ea2deebv 859e e8969e 859e 0000859e edfe edfe edfe edfe edfe edfe edfe
+11805 ee40 ee40 ee40 * * 5e6c 8ea2deec,8ea2deecv 8577 e895b7 8577 00008577 ee40 ee40 ee40 ee40 ee40 ee40 ee40
+11806 ee41 ee41 ee41 * * 5e6d 8ea2deed,8ea2deedv 857c e895bc 857c 0000857c ee41 ee41 ee41 ee41 ee41 ee41 ee41
+11807 ee42 ee42 ee42 * * 5e6e 8ea2deee,8ea2deeev 8589 e89689 8589 00008589 ee42 ee42 ee42 ee42 ee42 ee42 ee42
+11808 ee43 ee43 ee43 * * 5e6f 8ea2deef,8ea2deefv 85a1 e896a1 85a1 000085a1 ee43 ee43 ee43 ee43 ee43 ee43 ee43
+11809 ee44 ee44 ee44 * * 5e70 8ea2def0,8ea2def0v 857a e895ba 857a 0000857a ee44 ee44 ee44 ee44 ee44 ee44 ee44
+11810 ee45 ee45 ee45 * * 5e71 8ea2def1,8ea2def1v 8578 e895b8 8578 00008578 ee45 ee45 ee45 ee45 ee45 ee45 ee45
+11811 ee46 ee46 ee46 * * 5e72 8ea2def2,8ea2def2v 8557 e89597 8557 00008557 ee46 ee46 ee46 ee46 ee46 ee46 ee46
+11812 ee47 ee47 ee47 * * 5e73 8ea2def3,8ea2def3v 858e e8968e 858e 0000858e ee47 ee47 ee47 ee47 ee47 ee47 ee47
+11813 ee48 ee48 ee48 * * 5e74 8ea2def4,8ea2def4v 8596 e89696 8596 00008596 ee48 ee48 ee48 ee48 ee48 ee48 ee48
+11814 ee49 ee49 ee49 * * 5e75 8ea2def5,8ea2def5v 8586 e89686 8586 00008586 ee49 ee49 ee49 ee49 ee49 ee49 ee49
+11815 ee4a ee4a ee4a * * 5e76 8ea2def6,8ea2def6v 858d e8968d 858d 0000858d ee4a ee4a ee4a ee4a ee4a ee4a ee4a
+11816 ee4b ee4b ee4b * * 5e77 8ea2def7,8ea2def7v 8599 e89699 8599 00008599 ee4b ee4b ee4b ee4b ee4b ee4b ee4b
+11817 ee4c ee4c ee4c * * 5e78 8ea2def8,8ea2def8v 859d e8969d 859d 0000859d ee4c ee4c ee4c ee4c ee4c ee4c ee4c
+11818 ee4d ee4d ee4d * * 5e79 8ea2def9,8ea2def9v 8581 e89681 8581 00008581 ee4d ee4d ee4d ee4d ee4d ee4d ee4d
+11819 ee4e ee4e ee4e * * 5e7a 8ea2defa,8ea2defav 85a2 e896a2 85a2 000085a2 ee4e ee4e ee4e ee4e ee4e ee4e ee4e
+11820 ee4f ee4f ee4f * * 5e7b 8ea2defb,8ea2defbv 8582 e89682 8582 00008582 ee4f ee4f ee4f ee4f ee4f ee4f ee4f
+11821 ee50 ee50 ee50 * * 5e7c 8ea2defc,8ea2defcv 8588 e89688 8588 00008588 ee50 ee50 ee50 ee50 ee50 ee50 ee50
+11822 ee51 ee51 ee51 * * 5e7d 8ea2defd,8ea2defdv 8585 e89685 8585 00008585 ee51 ee51 ee51 ee51 ee51 ee51 ee51
+11823 ee52 ee52 ee52 * * 5e7e 8ea2defe,8ea2defev 8579 e895b9 8579 00008579 ee52 ee52 ee52 ee52 ee52 ee52 ee52
+11824 ee53 ee53 ee53 * * 5f21 8ea2dfa1,8ea2dfa1v 8576 e895b6 8576 00008576 ee53 ee53 ee53 ee53 ee53 ee53 ee53
+11825 ee54 ee54 ee54 * * 5f22 8ea2dfa2,8ea2dfa2v 8598 e89698 8598 00008598 ee54 ee54 ee54 ee54 ee54 ee54 ee54
+11826 ee55 ee55 ee55 * * 5f23 8ea2dfa3,8ea2dfa3v 8590 e89690 8590 00008590 ee55 ee55 ee55 ee55 ee55 ee55 ee55
+11827 ee56 ee56 ee56 * * 5f24 8ea2dfa4,8ea2dfa4v 859f e8969f 859f 0000859f ee56 ee56 ee56 ee56 ee56 ee56 ee56
+11828 ee57 ee57 ee57 * * 5f25 8ea2dfa5,8ea2dfa5v 8668 e899a8 8668 00008668 ee57 ee57 ee57 ee57 ee57 ee57 ee57
+11829 ee58 ee58 ee58 * * 5f26 8ea2dfa6,8ea2dfa6v 87be e89ebe 87be 000087be ee58 ee58 ee58 ee58 ee58 ee58 ee58
+11830 ee59 ee59 ee59 * * 5f27 8ea2dfa7,8ea2dfa7v 87aa e89eaa 87aa 000087aa ee59 ee59 ee59 ee59 ee59 ee59 ee59
+11831 ee5a ee5a ee5a * * 5f28 8ea2dfa8,8ea2dfa8v 87ad e89ead 87ad 000087ad ee5a ee5a ee5a ee5a ee5a ee5a ee5a
+11832 ee5b ee5b ee5b * * 5f29 8ea2dfa9,8ea2dfa9v 87c5 e89f85 87c5 000087c5 ee5b ee5b ee5b ee5b ee5b ee5b ee5b
+11833 ee5c ee5c ee5c * * 5f2a 8ea2dfaa,8ea2dfaav 87b0 e89eb0 87b0 000087b0 ee5c ee5c ee5c ee5c ee5c ee5c ee5c
+11834 ee5d ee5d ee5d * * 5f2b 8ea2dfab,8ea2dfabv 87ac e89eac 87ac 000087ac ee5d ee5d ee5d ee5d ee5d ee5d ee5d
+11835 ee5e ee5e ee5e * * 5f2c 8ea2dfac,8ea2dfacv 87b9 e89eb9 87b9 000087b9 ee5e ee5e ee5e ee5e ee5e ee5e ee5e
+11836 ee5f ee5f ee5f * * 5f2d 8ea2dfad,8ea2dfadv 87b5 e89eb5 87b5 000087b5 ee5f ee5f ee5f ee5f ee5f ee5f ee5f
+11837 ee60 ee60 ee60 * * 5f2e 8ea2dfae,8ea2dfaev 87bc e89ebc 87bc 000087bc ee60 ee60 ee60 ee60 ee60 ee60 ee60
+11838 ee61 ee61 ee61 * * 5f2f 8ea2dfaf,8ea2dfafv 87ae e89eae 87ae 000087ae ee61 ee61 ee61 ee61 ee61 ee61 ee61
+11839 ee62 ee62 ee62 * * 5f30 8ea2dfb0,8ea2dfb0v 87c9 e89f89 87c9 000087c9 ee62 ee62 ee62 ee62 ee62 ee62 ee62
+11840 ee63 ee63 ee63 * * 5f31 8ea2dfb1,8ea2dfb1v 87c3 e89f83 87c3 000087c3 ee63 ee63 ee63 ee63 ee63 ee63 ee63
+11841 ee64 ee64 ee64 * * 5f32 8ea2dfb2,8ea2dfb2v 87c2 e89f82 87c2 000087c2 ee64 ee64 ee64 ee64 ee64 ee64 ee64
+11842 ee65 ee65 ee65 * * 5f33 8ea2dfb3,8ea2dfb3v 87cc e89f8c 87cc 000087cc ee65 ee65 ee65 ee65 ee65 ee65 ee65
+11843 ee66 ee66 ee66 * * 5f34 8ea2dfb4,8ea2dfb4v 87b7 e89eb7 87b7 000087b7 ee66 ee66 ee66 ee66 ee66 ee66 ee66
+11844 ee67 ee67 ee67 * * 5f35 8ea2dfb5,8ea2dfb5v 87af e89eaf 87af 000087af ee67 ee67 ee67 ee67 ee67 ee67 ee67
+11845 ee68 ee68 ee68 * * 5f36 8ea2dfb6,8ea2dfb6v 87c4 e89f84 87c4 000087c4 ee68 ee68,fb5c,fdd0 9153,ee68 ee68 ee68 ee68 ee68
+11846 ee69 ee69 ee69 * * 5f37 8ea2dfb7,8ea2dfb7v 87ca e89f8a 87ca 000087ca ee69 ee69 ee69 ee69 ee69 ee69 ee69
+11847 ee6a ee6a ee6a * * 5f38 8ea2dfb8,8ea2dfb8v 87b4 e89eb4 87b4 000087b4 ee6a ee6a ee6a ee6a ee6a ee6a ee6a
+11848 ee6b ee6b ee6b * * 5f39 8ea2dfb9,8ea2dfb9v 87b6 e89eb6 87b6 000087b6 ee6b ee6b ee6b ee6b ee6b ee6b ee6b
+11849 ee6c ee6c ee6c * * 5f3a 8ea2dfba,8ea2dfbav 87bf e89ebf 87bf 000087bf ee6c ee6c ee6c ee6c ee6c ee6c ee6c
+11850 ee6d ee6d ee6d * * 5f3b 8ea2dfbb,8ea2dfbbv 87b8 e89eb8 87b8 000087b8 ee6d ee6d ee6d ee6d ee6d ee6d ee6d
+11851 ee6e ee6e ee6e * * 5f3c 8ea2dfbc,8ea2dfbcv 87bd e89ebd 87bd 000087bd ee6e ee6e ee6e ee6e ee6e ee6e ee6e
+11852 ee6f ee6f ee6f * * 5f3d 8ea2dfbd,8ea2dfbdv 87de e89f9e 87de 000087de ee6f ee6f ee6f ee6f ee6f ee6f ee6f
+11853 ee70 ee70 ee70 * * 5f3e 8ea2dfbe,8ea2dfbev 87b2 e89eb2 87b2 000087b2 ee70 ee70 ee70 ee70 ee70 ee70 ee70
+11854 ee71 ee71 ee71 * * 5f3f 8ea2dfbf,8ea2dfbfv 8935 e8a4b5 8935 00008935 ee71 ee71 ee71 ee71 ee71 ee71 ee71
+11855 ee72 ee72 ee72 * * 5f40 8ea2dfc0,8ea2dfc0v 8933 e8a4b3 8933 00008933 ee72 ee72 ee72 ee72 ee72 ee72 ee72
+11856 ee73 ee73 ee73 * * 5f41 8ea2dfc1,8ea2dfc1v 893c e8a4bc 893c 0000893c ee73 ee73 ee73 ee73 ee73 ee73 ee73
+11857 ee74 ee74 ee74 * * 5f42 8ea2dfc2,8ea2dfc2v 893e e8a4be 893e 0000893e ee74 ee74 ee74 ee74 ee74 ee74 ee74
+11858 ee75 ee75 ee75 * * 5f43 8ea2dfc3,8ea2dfc3v 8941 e8a581 8941 00008941 ee75 ee75 ee75 ee75 ee75 ee75 ee75
+11859 ee76 ee76 ee76 * * 5f44 8ea2dfc4,8ea2dfc4v 8952 e8a592 8952 00008952 ee76 ee76 ee76 ee76 ee76 ee76 ee76
+11860 ee77 ee77 ee77 * * 5f45 8ea2dfc5,8ea2dfc5v 8937 e8a4b7 8937 00008937 ee77 ee77 ee77 ee77 ee77 ee77 ee77
+11861 ee78 ee78 ee78 * * 5f46 8ea2dfc6,8ea2dfc6v 8942 e8a582 8942 00008942 ee78 ee78 ee78 ee78 ee78 ee78 ee78
+11862 ee79 ee79 ee79 * * 5f47 8ea2dfc7,8ea2dfc7v 89ad e8a6ad 89ad 000089ad ee79 ee79 ee79 ee79 ee79 ee79 ee79
+11863 ee7a ee7a ee7a * * 5f48 8ea2dfc8,8ea2dfc8v 89af e8a6af 89af 000089af ee7a ee7a ee7a ee7a ee7a ee7a ee7a
+11864 ee7b ee7b ee7b * * 5f49 8ea2dfc9,8ea2dfc9v 89ae e8a6ae 89ae 000089ae ee7b ee7b ee7b ee7b ee7b ee7b ee7b
+11865 ee7c ee7c ee7c * * 5f4a 8ea2dfca,8ea2dfcav 89f2 e8a7b2 89f2 000089f2 ee7c ee7c ee7c ee7c ee7c ee7c ee7c
+11866 ee7d ee7d ee7d * * 5f4b 8ea2dfcb,8ea2dfcbv 89f3 e8a7b3 89f3 000089f3 ee7d ee7d ee7d ee7d ee7d ee7d ee7d
+11867 ee7e ee7e ee7e * * 5f4c 8ea2dfcc,8ea2dfccv 8b1e e8ac9e 8b1e 00008b1e ee7e ee7e ee7e ee7e ee7e ee7e ee7e
+11868 eea1 eea1 eea1 * * 5f4d 8ea2dfcd,8ea2dfcdv 8b18 e8ac98 8b18 00008b18 eea1 eea1 eea1 eea1 eea1 eea1 eea1
+11869 eea2 eea2 eea2 * * 5f4e 8ea2dfce,8ea2dfcev 8b16 e8ac96 8b16 00008b16 eea2 eea2 eea2 eea2 eea2 eea2 eea2
+11870 eea3 eea3 eea3 * * 5f4f 8ea2dfcf,8ea2dfcfv 8b11 e8ac91 8b11 00008b11 eea3 eea3 eea3 eea3 eea3 eea3 eea3
+11871 eea4 eea4 eea4 * * 5f50 8ea2dfd0,8ea2dfd0v 8b05 e8ac85 8b05 00008b05 eea4 eea4 eea4 eea4 eea4 eea4 eea4
+11872 eea5 eea5 eea5 * * 5f51 8ea2dfd1,8ea2dfd1v 8b0b e8ac8b 8b0b 00008b0b eea5 eea5 eea5 eea5 eea5 eea5 eea5
+11873 eea6 eea6 eea6 * * 5f52 8ea2dfd2,8ea2dfd2v 8b22 e8aca2 8b22 00008b22 eea6 eea6 eea6 eea6 eea6 eea6 eea6
+11874 eea7 eea7 eea7 * * 5f53 8ea2dfd3,8ea2dfd3v 8b0f e8ac8f 8b0f 00008b0f eea7 eea7 eea7 eea7 eea7 eea7 eea7
+11875 eea8 eea8 eea8 * * 5f54 8ea2dfd4,8ea2dfd4v 8b12 e8ac92 8b12 00008b12 eea8 eea8 eea8 eea8 eea8 eea8 eea8
+11876 eea9 eea9 eea9 * * 5f55 8ea2dfd5,8ea2dfd5v 8b15 e8ac95 8b15 00008b15 eea9 eea9 eea9 eea9 eea9 eea9 eea9
+11877 eeaa eeaa eeaa * * 5f56 8ea2dfd6,8ea2dfd6v 8b07 e8ac87 8b07 00008b07 eeaa eeaa eeaa eeaa eeaa eeaa eeaa
+11878 eeab eeab eeab * * 5f57 8ea2dfd7,8ea2dfd7v 8b0d e8ac8d 8b0d 00008b0d eeab eeab eeab eeab eeab eeab eeab
+11879 eeac eeac eeac * * 5f58 8ea2dfd8,8ea2dfd8v 8b08 e8ac88 8b08 00008b08 eeac eeac eeac eeac eeac eeac eeac
+11880 eead eead eead * * 5f59 8ea2dfd9,8ea2dfd9v 8b06 e8ac86 8b06 00008b06 eead eead eead eead eead eead eead
+11881 eeae eeae eeae * * 5f5a 8ea2dfda,8ea2dfdav 8b1c e8ac9c 8b1c 00008b1c eeae eeae eeae eeae eeae eeae eeae
+11882 eeaf eeaf eeaf * * 5f5b 8ea2dfdb,8ea2dfdbv 8b13 e8ac93 8b13 00008b13 eeaf eeaf eeaf eeaf eeaf eeaf eeaf
+11883 eeb0 eeb0 eeb0 * * 5f5c 8ea2dfdc,8ea2dfdcv 8b1a e8ac9a 8b1a 00008b1a eeb0 eeb0 eeb0 eeb0 eeb0 eeb0 eeb0
+11884 eeb1 eeb1 eeb1 * * 5f5d 8ea2dfdd,8ea2dfddv 8c4f e8b18f 8c4f 00008c4f eeb1 eeb1 eeb1 eeb1 eeb1 eeb1 eeb1
+11885 eeb2 eeb2 eeb2 * * 5f5e 8ea2dfde,8ea2dfdev 8c70 e8b1b0 8c70 00008c70 eeb2 eeb2 eeb2 eeb2 eeb2 eeb2 eeb2
+11886 eeb3 eeb3 eeb3 * * 5f5f 8ea2dfdf,8ea2dfdfv 8c72 e8b1b2 8c72 00008c72 eeb3 eeb3 eeb3 eeb3 eeb3 eeb3 eeb3
+11887 eeb4 eeb4 eeb4 * * 5f60 8ea2dfe0,8ea2dfe0v 8c71 e8b1b1 8c71 00008c71 eeb4 eeb4 eeb4 eeb4 eeb4 eeb4 eeb4
+11888 eeb5 eeb5 eeb5 * * 5f61 8ea2dfe1,8ea2dfe1v 8c6f e8b1af 8c6f 00008c6f eeb5 eeb5 eeb5 eeb5 eeb5 eeb5 eeb5
+11889 eeb6 eeb6 eeb6 * * 5f62 8ea2dfe2,8ea2dfe2v 8c95 e8b295 8c95 00008c95 eeb6 eeb6 eeb6 eeb6 eeb6 eeb6 eeb6
+11890 eeb7 eeb7 eeb7 * * 5f63 8ea2dfe3,8ea2dfe3v 8c94 e8b294 8c94 00008c94 eeb7 eeb7 eeb7 eeb7 eeb7 eeb7 eeb7
+11891 eeb8 eeb8 eeb8 * * 5f64 8ea2dfe4,8ea2dfe4v 8cf9 e8b3b9 8cf9 00008cf9 eeb8 eeb8 eeb8 eeb8 eeb8 eeb8 eeb8
+11892 eeb9 eeb9 eeb9 * * 5f65 8ea2dfe5,8ea2dfe5v 8d6f e8b5af 8d6f 00008d6f eeb9 eeb9 eeb9 eeb9 eeb9 eeb9 eeb9
+11893 eeba eeba eeba * * 5f66 8ea2dfe6,8ea2dfe6v 8e4e e8b98e 8e4e 00008e4e eeba eeba eeba eeba eeba eeba eeba
+11894 eebb eebb eebb * * 5f67 8ea2dfe7,8ea2dfe7v 8e4d e8b98d 8e4d 00008e4d eebb eebb eebb eebb eebb eebb eebb
+11895 eebc eebc eebc * * 5f68 8ea2dfe8,8ea2dfe8v 8e53 e8b993 8e53 00008e53 eebc eebc eebc eebc eebc eebc eebc
+11896 eebd eebd eebd * * 5f69 8ea2dfe9,8ea2dfe9v 8e50 e8b990 8e50 00008e50 eebd eebd eebd eebd eebd eebd eebd
+11897 eebe eebe eebe * * 5f6a 8ea2dfea,8ea2dfeav 8e4c e8b98c 8e4c 00008e4c eebe eebe eebe eebe eebe eebe eebe
+11898 eebf eebf eebf * * 5f6b 8ea2dfeb,8ea2dfebv 8e47 e8b987 8e47 00008e47 eebf eebf eebf eebf eebf eebf eebf
+11899 eec0 eec0 eec0 * * 5f6c 8ea2dfec,8ea2dfecv 8f43 e8bd83 8f43 00008f43 eec0 eec0 eec0 eec0 eec0 eec0 eec0
+11900 eec1 eec1 eec1 * * 5f6d 8ea2dfed,8ea2dfedv 8f40 e8bd80 8f40 00008f40 eec1 eec1 eec1 eec1 eec1 eec1 eec1
+11901 eec2 eec2 eec2 * * 5f6e 8ea2dfee,8ea2dfeev 9085 e98285 9085 00009085 eec2 eec2 eec2 eec2 eec2 eec2 eec2
+11902 eec3 eec3 eec3 * * 5f6f 8ea2dfef,8ea2dfefv 907e e981be 907e 0000907e eec3 eec3 eec3 eec3 eec3 eec3 eec3
+11903 eec4 eec4 eec4 * * 5f70 8ea2dff0,8ea2dff0v 9138 e984b8 9138 00009138 eec4 eec4 eec4 eec4 eec4 eec4 eec4
+11904 eec5 eec5 eec5 * * 5f71 8ea2dff1,8ea2dff1v 919a e9869a 919a 0000919a eec5 eec5 eec5 eec5 eec5 eec5 eec5
+11905 eec6 eec6 eec6 * * 5f72 8ea2dff2,8ea2dff2v 91a2 e986a2 91a2 000091a2 eec6 eec6 eec6 eec6 eec6 eec6 eec6
+11906 eec7 eec7 eec7 * * 5f73 8ea2dff3,8ea2dff3v 919b e9869b 919b 0000919b eec7 eec7 eec7 eec7 eec7 eec7 eec7
+11907 eec8 eec8 eec8 * * 5f74 8ea2dff4,8ea2dff4v 9199 e98699 9199 00009199 eec8 eec8 eec8 eec8 eec8 eec8 eec8
+11908 eec9 eec9 eec9 * * 5f75 8ea2dff5,8ea2dff5v 919f e9869f 919f 0000919f eec9 eec9 eec9 eec9 eec9 eec9 eec9
+11909 eeca eeca eeca * * 5f76 8ea2dff6,8ea2dff6v 91a1 e986a1 91a1 000091a1 eeca eeca eeca eeca eeca eeca eeca
+11910 eecb eecb eecb * * 5f77 8ea2dff7,8ea2dff7v 919d e9869d 919d 0000919d eecb eecb eecb eecb eecb eecb eecb
+11911 eecc eecc eecc * * 5f78 8ea2dff8,8ea2dff8v 91a0 e986a0 91a0 000091a0 eecc eecc eecc eecc eecc eecc eecc
+11912 eecd eecd eecd * * 5f79 8ea2dff9,8ea2dff9v 93a1 e98ea1 93a1 000093a1 eecd eecd eecd eecd eecd eecd eecd
+11913 eece eece eece * * 5f7a 8ea2dffa,8ea2dffav 9383 e98e83 9383 00009383 eece eece eece eece eece eece eece
+11914 eecf eecf eecf * * 5f7b 8ea2dffb,8ea2dffbv 93af e98eaf 93af 000093af eecf eecf eecf eecf eecf eecf eecf
+11915 eed0 eed0 eed0 * * 5f7c 8ea2dffc,8ea2dffcv 9364 e98da4 9364 00009364 eed0 eed0 eed0 eed0 eed0 eed0 eed0
+11916 eed1 eed1 eed1 * * 5f7d 8ea2dffd,8ea2dffdv 9356 e98d96 9356 00009356 eed1 eed1 eed1 eed1 eed1 eed1 eed1
+11917 eed2 eed2 eed2 * * 5f7e 8ea2dffe,8ea2dffev 9347 e98d87 9347 00009347 eed2 eed2 eed2 eed2 eed2 eed2 eed2
+11918 eed3 eed3 eed3 * * 6021 8ea2e0a1,8ea2e0a1v 937c e98dbc 937c 0000937c eed3 eed3 eed3 eed3 eed3 eed3 eed3
+11919 eed4 eed4 eed4 * * 6022 8ea2e0a2,8ea2e0a2v 9358 e98d98 9358 00009358 eed4 eed4 eed4 eed4 eed4 eed4 eed4
+11920 eed5 eed5 eed5 * * 6023 8ea2e0a3,8ea2e0a3v 935c e98d9c 935c 0000935c eed5 eed5 eed5 eed5 eed5 eed5 eed5
+11921 eed6 eed6 eed6 * * 6024 8ea2e0a4,8ea2e0a4v 9376 e98db6 9376 00009376 eed6 eed6 eed6 eed6 eed6 eed6 eed6
+11922 eed7 eed7 eed7 * * 6025 8ea2e0a5,8ea2e0a5v 9349 e98d89 9349 00009349 eed7 eed7 eed7 eed7 eed7 eed7 eed7
+11923 eed8 eed8 eed8 * * 6026 8ea2e0a6,8ea2e0a6v 9350 e98d90 9350 00009350 eed8 eed8 eed8 eed8 eed8 eed8 eed8
+11924 eed9 eed9 eed9 * * 6027 8ea2e0a7,8ea2e0a7v 9351 e98d91 9351 00009351 eed9 eed9 eed9 eed9 eed9 eed9 eed9
+11925 eeda eeda eeda * * 6028 8ea2e0a8,8ea2e0a8v 9360 e98da0 9360 00009360 eeda eeda eeda eeda eeda eeda eeda
+11926 eedb eedb eedb * * 6029 8ea2e0a9,8ea2e0a9v 936d e98dad 936d 0000936d eedb eedb eedb eedb eedb eedb eedb
+11927 eedc eedc eedc * * 602a 8ea2e0aa,8ea2e0aav 938f e98e8f 938f 0000938f eedc eedc eedc eedc eedc eedc eedc
+11928 eedd eedd eedd * * 602b 8ea2e0ab,8ea2e0abv 934c e98d8c 934c 0000934c eedd eedd eedd eedd eedd eedd eedd
+11929 eede eede eede * * 602c 8ea2e0ac,8ea2e0acv 936a e98daa 936a 0000936a eede eede eede eede eede eede eede
+11930 eedf eedf eedf * * 602d 8ea2e0ad,8ea2e0adv 9379 e98db9 9379 00009379 eedf eedf eedf eedf eedf eedf eedf
+11931 eee0 eee0 eee0 * * 602e 8ea2e0ae,8ea2e0aev 9357 e98d97 9357 00009357 eee0 eee0 eee0 eee0 eee0 eee0 eee0
+11932 eee1 eee1 eee1 * * 602f 8ea2e0af,8ea2e0afv 9355 e98d95 9355 00009355 eee1 eee1 eee1 eee1 eee1 eee1 eee1
+11933 eee2 eee2 eee2 * * 6030 8ea2e0b0,8ea2e0b0v 9352 e98d92 9352 00009352 eee2 eee2 eee2 eee2 eee2 eee2 eee2
+11934 eee3 eee3 eee3 * * 6031 8ea2e0b1,8ea2e0b1v 934f e98d8f 934f 0000934f eee3 eee3 eee3 eee3 eee3 eee3 eee3
+11935 eee4 eee4 eee4 * * 6032 8ea2e0b2,8ea2e0b2v 9371 e98db1 9371 00009371 eee4 eee4 eee4 eee4 eee4 eee4 eee4
+11936 eee5 eee5 eee5 * * 6033 8ea2e0b3,8ea2e0b3v 9377 e98db7 9377 00009377 eee5 eee5 eee5 eee5 eee5 eee5 eee5
+11937 eee6 eee6 eee6 * * 6034 8ea2e0b4,8ea2e0b4v 937b e98dbb 937b 0000937b eee6 eee6 eee6 eee6 eee6 eee6 eee6
+11938 eee7 eee7 eee7 * * 6035 8ea2e0b5,8ea2e0b5v 9361 e98da1 9361 00009361 eee7 eee7 eee7 eee7 eee7 eee7 eee7
+11939 eee8 eee8 eee8 * * 6036 8ea2e0b6,8ea2e0b6v 935e e98d9e 935e 0000935e eee8 eee8 eee8 eee8 eee8 eee8 eee8
+11940 eee9 eee9 eee9 * * 6037 8ea2e0b7,8ea2e0b7v 9363 e98da3 9363 00009363 eee9 eee9 eee9 eee9 eee9 eee9 eee9
+11941 eeea eeea eeea * * 6038 8ea2e0b8,8ea2e0b8v 9367 e98da7 9367 00009367 eeea eeea eeea eeea eeea eeea eeea
+11942 eeec eeec eeec * * 6039 8ea2e0b9,8ea2e0b9v 934e e98d8e 934e 0000934e eeec eeec eeec eeec eeec eeec eeec
+11943 eeed eeed eeed * * 603a 8ea2e0ba,8ea2e0bav 9359 e98d99 9359 00009359 eeed eeed eeed eeed eeed eeed eeed
+11944 eeee eeee eeee * * 603b 8ea2e0bb,8ea2e0bbv 95c7 e99787 95c7 000095c7 eeee eeee eeee eeee eeee eeee eeee
+11945 eeef eeef eeef * * 603c 8ea2e0bc,8ea2e0bcv 95c0 e99780 95c0 000095c0 eeef eeef eeef eeef eeef eeef eeef
+11946 eef0 eef0 eef0 * * 603d 8ea2e0bd,8ea2e0bdv 95c9 e99789 95c9 000095c9 eef0 eef0 eef0 eef0 eef0 eef0 eef0
+11947 eef1 eef1 eef1 * * 603e 8ea2e0be,8ea2e0bev 95c3 e99783 95c3 000095c3 eef1 eef1 eef1 eef1 eef1 eef1 eef1
+11948 eef2 eef2 eef2 * * 603f 8ea2e0bf,8ea2e0bfv 95c5 e99785 95c5 000095c5 eef2 eef2 eef2 eef2 eef2 eef2 eef2
+11949 eef3 eef3 eef3 * * 6040 8ea2e0c0,8ea2e0c0v 95b7 e996b7 95b7 000095b7 eef3 eef3 eef3 eef3 eef3 eef3 eef3
+11950 eef4 eef4 eef4 * * 6041 8ea2e0c1,8ea2e0c1v 96ae e99aae 96ae 000096ae eef4 eef4 eef4 eef4 eef4 eef4 eef4
+11951 eef5 eef5 eef5 * * 6042 8ea2e0c2,8ea2e0c2v 96b0 e99ab0 96b0 000096b0 eef5 eef5 eef5 eef5 eef5 eef5 eef5
+11952 eef6 eef6 eef6 * * 6043 8ea2e0c3,8ea2e0c3v 96ac e99aac 96ac 000096ac eef6 eef6 eef6 eef6 eef6 eef6 eef6
+11953 eef7 eef7 eef7 * * 6044 8ea2e0c4,8ea2e0c4v 9720 e99ca0 9720 00009720 eef7 eef7 eef7 eef7 eef7 eef7 eef7
+11954 eef8 eef8 eef8 * * 6045 8ea2e0c5,8ea2e0c5v 971f e99c9f 971f 0000971f eef8 eef8 eef8 eef8 eef8 eef8 eef8
+11955 eef9 eef9 eef9 * * 6046 8ea2e0c6,8ea2e0c6v 9718 e99c98 9718 00009718 eef9 eef9 eef9 eef9 eef9 eef9 eef9
+11956 eefa eefa eefa * * 6047 8ea2e0c7,8ea2e0c7v 971d e99c9d 971d 0000971d eefa eefa eefa eefa eefa eefa eefa
+11957 eefb eefb eefb * * 6048 8ea2e0c8,8ea2e0c8v 9719 e99c99 9719 00009719 eefb eefb eefb eefb eefb eefb eefb
+11958 eefc eefc eefc * * 6049 8ea2e0c9,8ea2e0c9v 979a e99e9a 979a 0000979a eefc eefc eefc eefc eefc eefc eefc
+11959 eefd eefd eefd * * 604a 8ea2e0ca,8ea2e0cav 97a1 e99ea1 97a1 000097a1 eefd eefd eefd eefd eefd eefd eefd
+11960 eefe eefe eefe * * 604b 8ea2e0cb,8ea2e0cbv 979c e99e9c 979c 0000979c eefe eefe eefe eefe eefe eefe eefe
+11961 ef40 ef40 ef40 * * 604c 8ea2e0cc,8ea2e0ccv 979e e99e9e 979e 0000979e ef40 ef40 ef40 ef40 ef40 ef40 ef40
+11962 ef41 ef41 ef41 * * 604d 8ea2e0cd,8ea2e0cdv 979d e99e9d 979d 0000979d ef41 ef41 ef41 ef41 ef41 ef41 ef41
+11963 ef42 ef42 ef42 * * 604e 8ea2e0ce,8ea2e0cev 97d5 e99f95 97d5 000097d5 ef42 ef42 ef42 ef42 ef42 ef42 ef42
+11964 ef43 ef43 ef43 * * 604f 8ea2e0cf,8ea2e0cfv 97d4 e99f94 97d4 000097d4 ef43 ef43 ef43 ef43 ef43 ef43 ef43
+11965 ef44 ef44 ef44 * * 6050 8ea2e0d0,8ea2e0d0v 97f1 e99fb1 97f1 000097f1 ef44 ef44 ef44 ef44 ef44 ef44 ef44
+11966 ef45 ef45 ef45 * * 6051 8ea2e0d1,8ea2e0d1v 9841 e9a181 9841 00009841 ef45 ef45 ef45 ef45 ef45 ef45 ef45
+11967 ef46 ef46 ef46 * * 6052 8ea2e0d2,8ea2e0d2v 9844 e9a184 9844 00009844 ef46 ef46 ef46 ef46 ef46 ef46 ef46
+11968 ef47 ef47 ef47 * * 6053 8ea2e0d3,8ea2e0d3v 984a e9a18a 984a 0000984a ef47 ef47 ef47 ef47 ef47 ef47 ef47
+11969 ef48 ef48 ef48 * * 6054 8ea2e0d4,8ea2e0d4v 9849 e9a189 9849 00009849 ef48 ef48 ef48 ef48 ef48 ef48 ef48
+11970 ef49 ef49 ef49 * * 6055 8ea2e0d5,8ea2e0d5v 9845 e9a185 9845 00009845 ef49 ef49 ef49 ef49 ef49 ef49 ef49
+11971 ef4a ef4a ef4a * * 6056 8ea2e0d6,8ea2e0d6v 9843 e9a183 9843 00009843 ef4a ef4a ef4a ef4a ef4a ef4a ef4a
+11972 ef4b ef4b ef4b * * 6057 8ea2e0d7,8ea2e0d7v 9925 e9a4a5 9925 00009925 ef4b ef4b ef4b ef4b ef4b ef4b ef4b
+11973 ef4c ef4c ef4c * * 6058 8ea2e0d8,8ea2e0d8v 992b e9a4ab 992b 0000992b ef4c ef4c ef4c ef4c ef4c ef4c ef4c
+11974 ef4d ef4d ef4d * * 6059 8ea2e0d9,8ea2e0d9v 992c e9a4ac 992c 0000992c ef4d ef4d ef4d ef4d ef4d ef4d ef4d
+11975 ef4e ef4e ef4e * * 605a 8ea2e0da,8ea2e0dav 992a e9a4aa 992a 0000992a ef4e ef4e ef4e ef4e ef4e ef4e ef4e
+11976 ef4f ef4f ef4f * * 605b 8ea2e0db,8ea2e0dbv 9933 e9a4b3 9933 00009933 ef4f ef4f ef4f ef4f ef4f ef4f ef4f
+11977 ef50 ef50 ef50 * * 605c 8ea2e0dc,8ea2e0dcv 9932 e9a4b2 9932 00009932 ef50 ef50 ef50 ef50 ef50 ef50 ef50
+11978 ef51 ef51 ef51 * * 605d 8ea2e0dd,8ea2e0ddv 992f e9a4af 992f 0000992f ef51 ef51 ef51 ef51 ef51 ef51 ef51
+11979 ef52 ef52 ef52 * * 605e 8ea2e0de,8ea2e0dev 992d e9a4ad 992d 0000992d ef52 ef52 ef52 ef52 ef52 ef52 ef52
+11980 ef53 ef53 ef53 * * 605f 8ea2e0df,8ea2e0dfv 9931 e9a4b1 9931 00009931 ef53 ef53 ef53 ef53 ef53 ef53 ef53
+11981 ef54 ef54 ef54 * * 6060 8ea2e0e0,8ea2e0e0v 9930 e9a4b0 9930 00009930 ef54 ef54 ef54 ef54 ef54 ef54 ef54
+11982 ef55 ef55 ef55 * * 6061 8ea2e0e1,8ea2e0e1v 9998 e9a698 9998 00009998 ef55 ef55 ef55 ef55 ef55 ef55 ef55
+11983 ef56 ef56 ef56 * * 6062 8ea2e0e2,8ea2e0e2v 99a3 e9a6a3 99a3 000099a3 ef56 ef56 ef56 ef56 ef56 ef56 ef56
+11984 ef57 ef57 ef57 * * 6063 8ea2e0e3,8ea2e0e3v 99a1 e9a6a1 99a1 000099a1 ef57 ef57 ef57 ef57 ef57 ef57 ef57
+11985 ef58 ef58 ef58 * * 6064 8ea2e0e4,8ea2e0e4v 9a02 e9a882 9a02 00009a02 ef58 ef58 ef58 ef58 ef58 ef58 ef58
+11986 ef59 ef59 ef59 * * 6065 8ea2e0e5,8ea2e0e5v 99fa e9a7ba 99fa 000099fa ef59 ef59 ef59 ef59 ef59 ef59 ef59
+11987 ef5a ef5a ef5a * * 6066 8ea2e0e6,8ea2e0e6v 99f4 e9a7b4 99f4 000099f4 ef5a ef5a ef5a ef5a ef5a ef5a ef5a
+11988 ef5b ef5b ef5b * * 6067 8ea2e0e7,8ea2e0e7v 99f7 e9a7b7 99f7 000099f7 ef5b ef5b ef5b ef5b ef5b ef5b ef5b
+11989 ef5c ef5c ef5c * * 6068 8ea2e0e8,8ea2e0e8v 99f9 e9a7b9 99f9 000099f9 ef5c ef5c ef5c ef5c ef5c ef5c ef5c
+11990 ef5d ef5d ef5d * * 6069 8ea2e0e9,8ea2e0e9v 99f8 e9a7b8 99f8 000099f8 ef5d ef5d ef5d ef5d ef5d ef5d ef5d
+11991 ef5e ef5e ef5e * * 606a 8ea2e0ea,8ea2e0eav 99f6 e9a7b6 99f6 000099f6 ef5e ef5e ef5e ef5e ef5e ef5e ef5e
+11992 ef5f ef5f ef5f * * 606b 8ea2e0eb,8ea2e0ebv 99fb e9a7bb 99fb 000099fb ef5f ef5f ef5f ef5f ef5f ef5f ef5f
+11993 ef60 ef60 ef60 * * 606c 8ea2e0ec,8ea2e0ecv 99fd e9a7bd 99fd 000099fd ef60 ef60 ef60 ef60 ef60 ef60 ef60
+11994 ef61 ef61 ef61 * * 606d 8ea2e0ed,8ea2e0edv 99fe e9a7be 99fe 000099fe ef61 ef61 ef61 ef61 ef61 ef61 ef61
+11995 ef62 ef62 ef62 * * 606e 8ea2e0ee,8ea2e0eev 99fc e9a7bc 99fc 000099fc ef62 ef62 ef62 ef62 ef62 ef62 ef62
+11996 ef63 ef63 ef63 * * 606f 8ea2e0ef,8ea2e0efv 9a03 e9a883 9a03 00009a03 ef63 ef63 ef63 ef63 ef63 ef63 ef63
+11997 ef64 ef64 ef64 * * 6070 8ea2e0f0,8ea2e0f0v 9abe e9aabe 9abe 00009abe ef64 ef64 ef64 ef64 ef64 ef64 ef64
+11998 ef65 ef65 ef65 * * 6071 8ea2e0f1,8ea2e0f1v 9afe e9abbe 9afe 00009afe ef65 ef65 ef65 ef65 ef65 ef65 ef65
+11999 ef66 ef66 ef66 * * 6072 8ea2e0f2,8ea2e0f2v 9afd e9abbd 9afd 00009afd ef66 ef66 ef66 ef66 ef66 ef66 ef66
+12000 ef67 ef67 ef67 * * 6073 8ea2e0f3,8ea2e0f3v 9b01 e9ac81 9b01 00009b01 ef67 ef67 ef67 ef67 ef67 ef67 ef67
+12001 ef68 ef68 ef68 * * 6074 8ea2e0f4,8ea2e0f4v 9afc e9abbc 9afc 00009afc ef68 ef68 ef68 ef68 ef68 ef68 ef68
+12002 ef69 ef69 ef69 * * 6075 8ea2e0f5,8ea2e0f5v 9b48 e9ad88 9b48 00009b48 ef69 ef69 ef69 ef69 ef69 ef69 ef69
+12003 ef6a ef6a ef6a * * 6076 8ea2e0f6,8ea2e0f6v 9b9a e9ae9a 9b9a 00009b9a ef6a ef6a ef6a ef6a ef6a ef6a ef6a
+12004 ef6b ef6b ef6b * * 6077 8ea2e0f7,8ea2e0f7v 9ba8 e9aea8 9ba8 00009ba8 ef6b ef6b ef6b ef6b ef6b ef6b ef6b
+12005 ef6c ef6c ef6c * * 6078 8ea2e0f8,8ea2e0f8v 9b9e e9ae9e 9b9e 00009b9e ef6c ef6c ef6c ef6c ef6c ef6c ef6c
+12006 ef6d ef6d ef6d * * 6079 8ea2e0f9,8ea2e0f9v 9b9b e9ae9b 9b9b 00009b9b ef6d ef6d ef6d ef6d ef6d ef6d ef6d
+12007 ef6e ef6e ef6e * * 607a 8ea2e0fa,8ea2e0fav 9ba6 e9aea6 9ba6 00009ba6 ef6e ef6e ef6e ef6e ef6e ef6e ef6e
+12008 ef6f ef6f ef6f * * 607b 8ea2e0fb,8ea2e0fbv 9ba1 e9aea1 9ba1 00009ba1 ef6f ef6f ef6f ef6f ef6f ef6f ef6f
+12009 ef70 ef70 ef70 * * 607c 8ea2e0fc,8ea2e0fcv 9ba5 e9aea5 9ba5 00009ba5 ef70 ef70 ef70 ef70 ef70 ef70 ef70
+12010 ef71 ef71 ef71 * * 607d 8ea2e0fd,8ea2e0fdv 9ba4 e9aea4 9ba4 00009ba4 ef71 ef71 ef71 ef71 ef71 ef71 ef71
+12011 ef72 ef72 ef72 * * 607e 8ea2e0fe,8ea2e0fev 9b86 e9ae86 9b86 00009b86 ef72 ef72 ef72 ef72 ef72 ef72 ef72
+12012 ef73 ef73 ef73 * * 6121 8ea2e1a1,8ea2e1a1v 9ba2 e9aea2 9ba2 00009ba2 ef73 ef73 ef73 ef73 ef73 ef73 ef73
+12013 ef74 ef74 ef74 * * 6122 8ea2e1a2,8ea2e1a2v 9ba0 e9aea0 9ba0 00009ba0 ef74 ef74 ef74 ef74 ef74 ef74 ef74
+12014 ef75 ef75 ef75 * * 6123 8ea2e1a3,8ea2e1a3v 9baf e9aeaf 9baf 00009baf ef75 ef75 ef75 ef75 ef75 ef75 ef75
+12015 ef76 ef76 ef76 * * 6124 8ea2e1a4,8ea2e1a4v 9d33 e9b4b3 9d33 00009d33 ef76 ef76 ef76 ef76 ef76 ef76 ef76
+12016 ef77 ef77 ef77 * * 6125 8ea2e1a5,8ea2e1a5v 9d41 e9b581 9d41 00009d41 ef77 ef77 ef77 ef77 ef77 ef77 ef77
+12017 ef78 ef78 ef78 * * 6126 8ea2e1a6,8ea2e1a6v 9d67 e9b5a7 9d67 00009d67 ef78 ef78 ef78 ef78 ef78 ef78 ef78
+12018 ef79 ef79 ef79 * * 6127 8ea2e1a7,8ea2e1a7v 9d36 e9b4b6 9d36 00009d36 ef79 ef79 ef79 ef79 ef79 ef79 ef79
+12019 ef7a ef7a ef7a * * 6128 8ea2e1a8,8ea2e1a8v 9d2e e9b4ae 9d2e 00009d2e ef7a ef7a ef7a ef7a ef7a ef7a ef7a
+12020 ef7b ef7b ef7b * * 6129 8ea2e1a9,8ea2e1a9v 9d2f e9b4af 9d2f 00009d2f ef7b ef7b ef7b ef7b ef7b ef7b ef7b
+12021 ef7c ef7c ef7c * * 612a 8ea2e1aa,8ea2e1aav 9d31 e9b4b1 9d31 00009d31 ef7c ef7c ef7c ef7c ef7c ef7c ef7c
+12022 ef7d ef7d ef7d * * 612b 8ea2e1ab,8ea2e1abv 9d38 e9b4b8 9d38 00009d38 ef7d ef7d ef7d ef7d ef7d ef7d ef7d
+12023 ef7e ef7e ef7e * * 612c 8ea2e1ac,8ea2e1acv 9d30 e9b4b0 9d30 00009d30 ef7e ef7e ef7e ef7e ef7e ef7e ef7e
+12024 efa1 efa1 efa1 * * 612d 8ea2e1ad,8ea2e1adv 9d45 e9b585 9d45 00009d45 efa1 efa1 efa1 efa1 efa1 efa1 efa1
+12025 efa2 efa2 efa2 * * 612e 8ea2e1ae,8ea2e1aev 9d42 e9b582 9d42 00009d42 efa2 efa2 efa2 efa2 efa2 efa2 efa2
+12026 efa3 efa3 efa3 * * 612f 8ea2e1af,8ea2e1afv 9d43 e9b583 9d43 00009d43 efa3 efa3 efa3 efa3 efa3 efa3 efa3
+12027 efa4 efa4 efa4 * * 6130 8ea2e1b0,8ea2e1b0v 9d3e e9b4be 9d3e 00009d3e efa4 efa4 efa4 efa4 efa4 efa4 efa4
+12028 efa5 efa5 efa5 * * 6131 8ea2e1b1,8ea2e1b1v 9d37 e9b4b7 9d37 00009d37 efa5 efa5 efa5 efa5 efa5 efa5 efa5
+12029 efa6 efa6 efa6 * * 6132 8ea2e1b2,8ea2e1b2v 9d40 e9b580 9d40 00009d40 efa6 efa6 efa6 efa6 efa6 efa6 efa6
+12030 efa7 efa7 efa7 * * 6133 8ea2e1b3,8ea2e1b3v 9d3d e9b4bd 9d3d 00009d3d efa7 efa7 efa7 efa7 efa7 efa7 efa7
+12031 efa8 efa8 efa8 * * 6134 8ea2e1b4,8ea2e1b4v 7ff5 e7bfb5 7ff5 00007ff5 efa8 efa8 efa8 efa8 efa8 efa8 efa8
+12032 efa9 efa9 efa9 * * 6135 8ea2e1b5,8ea2e1b5v 9d2d e9b4ad 9d2d 00009d2d efa9 efa9 efa9 efa9 efa9 efa9 efa9
+12033 efaa efaa efaa * * 6136 8ea2e1b6,8ea2e1b6v 9e8a e9ba8a 9e8a 00009e8a efaa efaa efaa efaa efaa efaa efaa
+12034 efab efab efab * * 6137 8ea2e1b7,8ea2e1b7v 9e89 e9ba89 9e89 00009e89 efab efab efab efab efab efab efab
+12035 efac efac efac * * 6138 8ea2e1b8,8ea2e1b8v 9e8d e9ba8d 9e8d 00009e8d efac efac efac efac efac efac efac
+12036 efad efad efad * * 6139 8ea2e1b9,8ea2e1b9v 9eb0 e9bab0 9eb0 00009eb0 efad efad efad efad efad efad efad
+12037 efae efae efae * * 613a 8ea2e1ba,8ea2e1bav 9ec8 e9bb88 9ec8 00009ec8 efae efae efae efae efae efae efae
+12038 efaf efaf efaf * * 613b 8ea2e1bb,8ea2e1bbv 9eda e9bb9a 9eda 00009eda efaf efaf efaf efaf efaf efaf efaf
+12039 efb0 efb0 efb0 * * 613c 8ea2e1bc,8ea2e1bcv 9efb e9bbbb 9efb 00009efb efb0 efb0 efb0 efb0 efb0 efb0 efb0
+12040 efb1 efb1 efb1 * * 613d 8ea2e1bd,8ea2e1bdv 9eff e9bbbf 9eff 00009eff efb1 efb1 efb1 efb1 efb1 efb1 efb1
+12041 efb2 efb2 efb2 * * 613e 8ea2e1be,8ea2e1bev 9f24 e9bca4 9f24 00009f24 efb2 efb2 efb2 efb2 efb2 efb2 efb2
+12042 efb3 efb3 efb3 * * 613f 8ea2e1bf,8ea2e1bfv 9f23 e9bca3 9f23 00009f23 efb3 efb3 efb3 efb3 efb3 efb3 efb3
+12043 efb4 efb4 efb4 * * 6140 8ea2e1c0,8ea2e1c0v 9f22 e9bca2 9f22 00009f22 efb4 efb4 efb4 efb4 efb4 efb4 efb4
+12044 efb5 efb5 efb5 * * 6141 8ea2e1c1,8ea2e1c1v 9f54 e9bd94 9f54 00009f54 efb5 efb5 efb5 efb5 efb5 efb5 efb5
+12045 efb6 efb6 efb6 * 2939 6142 8ea1a9b9,8ea2e1c2,a9b9,8ea1a9b9v,8ea2e1c2v,a9b9v 9fa0 e2bf95,e9bea0 2fd5,9fa0 00002fd5,00009fa0 efb6 efb6 efb6 efb6 efb6 efb6 efb6
+12046 efb7 efb7 efb7 * * 6143 8ea2e1c3,8ea2e1c3v 5131 e584b1 5131 00005131 efb7 efb7 efb7 efb7 efb7 efb7 efb7
+12047 efb8 efb8 efb8 * * 6144 8ea2e1c4,8ea2e1c4v 512d e584ad 512d 0000512d efb8 efb8 efb8 efb8 efb8 efb8 efb8
+12048 efb9 efb9 efb9 * * 6145 8ea2e1c5,8ea2e1c5v 512e e584ae 512e 0000512e efb9 efb9 efb9 efb9 efb9 efb9 efb9
+12049 efba efba efba * * 6146 8ea2e1c6,8ea2e1c6v 5698 e59a98 5698 00005698 efba efba efba efba efba efba efba
+12050 efbb efbb efbb * * 6147 8ea2e1c7,8ea2e1c7v 569c e59a9c 569c 0000569c efbb efbb efbb efbb efbb efbb efbb
+12051 efbc efbc efbc * * 6148 8ea2e1c8,8ea2e1c8v 5697 e59a97 5697 00005697 efbc efbc efbc efbc efbc efbc efbc
+12052 efbd efbd efbd * * 6149 8ea2e1c9,8ea2e1c9v 569a e59a9a 569a 0000569a efbd efbd efbd efbd efbd efbd efbd
+12053 efbe efbe efbe * * 614a 8ea2e1ca,8ea2e1cav 569d e59a9d 569d 0000569d efbe efbe efbe efbe efbe efbe efbe
+12054 efbf efbf efbf * * 614b 8ea2e1cb,8ea2e1cbv 5699 e59a99 5699 00005699 efbf efbf efbf efbf efbf efbf efbf
+12055 efc0 efc0 efc0 * * 614c 8ea2e1cc,8ea2e1ccv 5970 e5a5b0 5970 00005970 efc0 efc0 efc0 efc0 efc0 efc0 efc0
+12056 efc1 efc1 efc1 * * 614d 8ea2e1cd,8ea2e1cdv 5b3c e5acbc 5b3c 00005b3c efc1 efc1 efc1 efc1 efc1 efc1 efc1
+12057 efc2 efc2 efc2 * * 614e 8ea2e1ce,8ea2e1cev 5c69 e5b1a9 5c69 00005c69 efc2 efc2 efc2 efc2 efc2 efc2 efc2
+12058 efc3 efc3 efc3 * * 614f 8ea2e1cf,8ea2e1cfv 5c6a e5b1aa 5c6a 00005c6a efc3 efc3 efc3 efc3 efc3 efc3 efc3
+12059 efc4 efc4 efc4 * * 6150 8ea2e1d0,8ea2e1d0v 5dc0 e5b780 5dc0 00005dc0 efc4 efc4 efc4 efc4 efc4 efc4 efc4
+12060 efc5 efc5 efc5 * * 6151 8ea2e1d1,8ea2e1d1v 5e6d e5b9ad 5e6d 00005e6d efc5 efc5 efc5 efc5 efc5 efc5 efc5
+12061 efc6 efc6 efc6 * * 6152 8ea2e1d2,8ea2e1d2v 5e6e e5b9ae 5e6e 00005e6e efc6 efc6 efc6 efc6 efc6 efc6 efc6
+12062 efc7 efc7 efc7 * * 6153 8ea2e1d3,8ea2e1d3v 61d8 e68798 61d8 000061d8 efc7 efc7 efc7 efc7 efc7 efc7 efc7
+12063 efc8 efc8 efc8 * * 6154 8ea2e1d4,8ea2e1d4v 61df e6879f 61df 000061df efc8 efc8 efc8 efc8 efc8 efc8 efc8
+12064 efc9 efc9 efc9 * * 6155 8ea2e1d5,8ea2e1d5v 61ed e687ad 61ed 000061ed efc9 efc9 efc9 efc9 efc9 efc9 efc9
+12065 efca efca efca * * 6156 8ea2e1d6,8ea2e1d6v 61ee e687ae 61ee 000061ee efca efca efca efca efca efca efca
+12066 efcb efcb efcb * * 6157 8ea2e1d7,8ea2e1d7v 61f1 e687b1 61f1 000061f1 efcb efcb efcb efcb efcb efcb efcb
+12067 efcc efcc efcc * * 6158 8ea2e1d8,8ea2e1d8v 61ea e687aa 61ea 000061ea efcc efcc efcc efcc efcc efcc efcc
+12068 efcd efcd efcd * * 6159 8ea2e1d9,8ea2e1d9v 61f0 e687b0 61f0 000061f0 efcd efcd efcd efcd efcd efcd efcd
+12069 efce efce efce * * 615a 8ea2e1da,8ea2e1dav 61eb e687ab 61eb 000061eb efce efce efce efce efce efce efce
+12070 efcf efcf efcf * * 615b 8ea2e1db,8ea2e1dbv 61d6 e68796 61d6 000061d6 efcf efcf efcf efcf efcf efcf efcf
+12071 efd0 efd0 efd0 * * 615c 8ea2e1dc,8ea2e1dcv 61e9 e687a9 61e9 000061e9 efd0 efd0 efd0 efd0 efd0 efd0 efd0
+12072 efd1 efd1 efd1 * * 615d 8ea2e1dd,8ea2e1ddv 64ff e693bf 64ff 000064ff efd1 efd1 efd1 efd1 efd1 efd1 efd1
+12073 efd2 efd2 efd2 * * 615e 8ea2e1de,8ea2e1dev 6504 e69484 6504 00006504 efd2 efd2 efd2 efd2 efd2 efd2 efd2
+12074 efd3 efd3 efd3 * * 615f 8ea2e1df,8ea2e1dfv 64fd e693bd 64fd 000064fd efd3 efd3 efd3 efd3 efd3 efd3 efd3
+12075 efd4 efd4 efd4 * * 6160 8ea2e1e0,8ea2e1e0v 64f8 e693b8 64f8 000064f8 efd4 efd4 efd4 efd4 efd4 efd4 efd4
+12076 efd5 efd5 efd5 * * 6161 8ea2e1e1,8ea2e1e1v 6501 e69481 6501 00006501 efd5 efd5 efd5 efd5 efd5 efd5 efd5
+12077 efd6 efd6 efd6 * * 6162 8ea2e1e2,8ea2e1e2v 6503 e69483 6503 00006503 efd6 efd6 efd6 efd6 efd6 efd6 efd6
+12078 efd7 efd7 efd7 * * 6163 8ea2e1e3,8ea2e1e3v 64fc e693bc 64fc 000064fc efd7 efd7 efd7 efd7 efd7 efd7 efd7
+12079 efd8 efd8 efd8 * * 6164 8ea2e1e4,8ea2e1e4v 6594 e69694 6594 00006594 efd8 efd8 efd8 efd8 efd8 efd8 efd8
+12080 efd9 efd9 efd9 * * 6165 8ea2e1e5,8ea2e1e5v 65db e6979b 65db 000065db efd9 efd9 efd9 efd9 efd9 efd9 efd9
+12081 efda efda efda * * 6166 8ea2e1e6,8ea2e1e6v 66da e69b9a 66da 000066da efda efda efda efda efda efda efda
+12082 efdb efdb efdb * * 6167 8ea2e1e7,8ea2e1e7v 66db e69b9b 66db 000066db efdb efdb efdb efdb efdb efdb efdb
+12083 efdc efdc efdc * * 6168 8ea2e1e8,8ea2e1e8v 66d8 e69b98 66d8 000066d8 efdc efdc efdc efdc efdc efdc efdc
+12084 efdd efdd efdd * * 6169 8ea2e1e9,8ea2e1e9v 6ac5 e6ab85 6ac5 00006ac5 efdd efdd efdd efdd efdd efdd efdd
+12085 efde efde efde * * 616a 8ea2e1ea,8ea2e1eav 6ab9 e6aab9 6ab9 00006ab9 efde efde efde efde efde efde efde
+12086 efdf efdf efdf * * 616b 8ea2e1eb,8ea2e1ebv 6abd e6aabd 6abd 00006abd efdf efdf efdf efdf efdf efdf efdf
+12087 efe0 efe0 efe0 * * 616c 8ea2e1ec,8ea2e1ecv 6ae1 e6aba1 6ae1 00006ae1 efe0 efe0 efe0 efe0 efe0 efe0 efe0
+12088 efe1 efe1 efe1 * * 616d 8ea2e1ed,8ea2e1edv 6ac6 e6ab86 6ac6 00006ac6 efe1 efe1 efe1 efe1 efe1 efe1 efe1
+12089 efe2 efe2 efe2 * * 616e 8ea2e1ee,8ea2e1eev 6aba e6aaba 6aba 00006aba efe2 efe2 efe2 efe2 efe2 efe2 efe2
+12090 efe3 efe3 efe3 * * 616f 8ea2e1ef,8ea2e1efv 6ab6 e6aab6 6ab6 00006ab6 efe3 efe3 efe3 efe3 efe3 efe3 efe3
+12091 efe4 efe4 efe4 * * 6170 8ea2e1f0,8ea2e1f0v 6ab7 e6aab7 6ab7 00006ab7 efe4 efe4 efe4 efe4 efe4 efe4 efe4
+12092 efe5 efe5 efe5 * * 6171 8ea2e1f1,8ea2e1f1v 6ac7 e6ab87 6ac7 00006ac7 efe5 efe5 efe5 efe5 efe5 efe5 efe5
+12093 efe6 efe6 efe6 * * 6172 8ea2e1f2,8ea2e1f2v 6ab4 e6aab4 6ab4 00006ab4 efe6 efe6 efe6 efe6 efe6 efe6 efe6
+12094 efe7 efe7 efe7 * * 6173 8ea2e1f3,8ea2e1f3v 6aad e6aaad 6aad 00006aad efe7 efe7 efe7 efe7 efe7 efe7 efe7
+12095 efe8 efe8 efe8 * * 6174 8ea2e1f4,8ea2e1f4v 6b5e e6ad9e 6b5e 00006b5e efe8 efe8 efe8 efe8 efe8 efe8 efe8
+12096 efe9 efe9 efe9 * * 6175 8ea2e1f5,8ea2e1f5v 6bc9 e6af89 6bc9 00006bc9 efe9 efe9 efe9 efe9 efe9 efe9 efe9
+12097 efea efea efea * * 6176 8ea2e1f6,8ea2e1f6v 6c0b e6b08b 6c0b 00006c0b efea efea efea efea efea efea efea
+12098 efeb efeb efeb * * 6177 8ea2e1f7,8ea2e1f7v 7007 e78087 7007 00007007 efeb efeb efeb efeb efeb efeb efeb
+12099 efec efec efec * * 6178 8ea2e1f8,8ea2e1f8v 700c e7808c 700c 0000700c efec efec efec efec efec efec efec
+12100 efed efed efed * * 6179 8ea2e1f9,8ea2e1f9v 700d e7808d 700d 0000700d efed efed efed efed efed efed efed
+12101 efee efee efee * * 617a 8ea2e1fa,8ea2e1fav 7001 e78081 7001 00007001 efee efee efee efee efee efee efee
+12102 efef efef efef * * 617b 8ea2e1fb,8ea2e1fbv 7005 e78085 7005 00007005 efef efef efef efef efef efef efef
+12103 eff0 eff0 eff0 * * 617c 8ea2e1fc,8ea2e1fcv 7014 e78094 7014 00007014 eff0 eff0 eff0 eff0 eff0 eff0 eff0
+12104 eff1 eff1 eff1 * * 617d 8ea2e1fd,8ea2e1fdv 700e e7808e 700e 0000700e eff1 eff1 eff1 eff1 eff1 eff1 eff1
+12105 eff2 eff2 eff2 * * 617e 8ea2e1fe,8ea2e1fev 6fff e6bfbf 6fff 00006fff eff2 eff2 eff2 eff2 eff2 eff2 eff2
+12106 eff3 eff3 eff3 * * 6221 8ea2e2a1,8ea2e2a1v 7000 e78080 7000 00007000 eff3 eff3 eff3 eff3 eff3 eff3 eff3
+12107 eff4 eff4 eff4 * * 6222 8ea2e2a2,8ea2e2a2v 6ffb e6bfbb 6ffb 00006ffb eff4 eff4 eff4 eff4 eff4 eff4 eff4
+12108 eff5 eff5 eff5 * * 6223 8ea2e2a3,8ea2e2a3v 7026 e780a6 7026 00007026 eff5 eff5 eff5 eff5 eff5 eff5 eff5
+12109 eff6 eff6 eff6 * * 6224 8ea2e2a4,8ea2e2a4v 6ffc e6bfbc 6ffc 00006ffc eff6 eff6 eff6 eff6 eff6 eff6 eff6
+12110 eff7 eff7 eff7 * * 6225 8ea2e2a5,8ea2e2a5v 6ff7 e6bfb7 6ff7 00006ff7 eff7 eff7 eff7 eff7 eff7 eff7 eff7
+12111 eff8 eff8 eff8 * * 6226 8ea2e2a6,8ea2e2a6v 700a e7808a 700a 0000700a eff8 eff8 eff8 eff8 eff8 eff8 eff8
+12112 eff9 eff9 eff9 * * 6227 8ea2e2a7,8ea2e2a7v 7201 e78881,eead80 7201,eb40 00007201,0000eb40 9b76,eff9 eff9 eff9 eff9 eff9 eff9 9b76,eff9
+12113 effa effa effa * * 6228 8ea2e2a8,8ea2e2a8v 71ff e787bf 71ff 000071ff effa effa effa effa effa effa effa
+12114 effb effb effb * * 6229 8ea2e2a9,8ea2e2a9v 71f9 e787b9 71f9 000071f9 effb effb effb effb effb effb effb
+12115 effc effc effc * * 622a 8ea2e2aa,8ea2e2aav 7203 e78883 7203 00007203 effc effc effc effc effc effc effc
+12116 effd effd effd * * 622b 8ea2e2ab,8ea2e2abv 71fd e787bd 71fd 000071fd effd effd effd effd effd effd effd
+12117 effe effe effe * * 622c 8ea2e2ac,8ea2e2acv 7376 e78db6 7376 00007376 effe effe effe effe effe effe effe
+12118 f040 f040 f040 * * 622d 8ea2e2ad,8ea2e2adv 74b8 e792b8 74b8 000074b8 f040 f040 f040 f040 f040 f040 f040
+12119 f041 f041 f041 * * 622e 8ea2e2ae,8ea2e2aev 74c0 e79380 74c0 000074c0 f041 f041 f041 f041 f041 f041 f041
+12120 f042 f042 f042 * * 622f 8ea2e2af,8ea2e2afv 74b5 e792b5 74b5 000074b5 f042 f042 f042 f042 f042 f042 f042
+12121 f043 f043 f043 * * 6230 8ea2e2b0,8ea2e2b0v 74c1 e79381 74c1 000074c1 f043 f043 f043 f043 f043 f043 f043
+12122 f044 f044 f044 * * 6231 8ea2e2b1,8ea2e2b1v 74be e792be 74be 000074be f044 f044 f044 f044 f044 f044 f044
+12123 f045 f045 f045 * * 6232 8ea2e2b2,8ea2e2b2v 74b6 e792b6 74b6 000074b6 f045 f045 f045 f045 f045 f045 f045
+12124 f046 f046 f046 * * 6233 8ea2e2b3,8ea2e2b3v 74bb e792bb 74bb 000074bb f046 f046 f046 f046 f046 f046 f046
+12125 f047 f047 f047 * * 6234 8ea2e2b4,8ea2e2b4v 74c2 e79382 74c2 000074c2 f047 f047 f047 f047 f047 f047 f047
+12126 f048 f048 f048 * * 6235 8ea2e2b5,8ea2e2b5v 7514 e79494 7514 00007514 f048 f048 f048 f048 f048 f048 f048
+12127 f049 f049 f049 * * 6236 8ea2e2b6,8ea2e2b6v 7513 e79493 7513 00007513 f049 f049 f049 f049 f049 f049 f049
+12128 f04a f04a f04a * * 6237 8ea2e2b7,8ea2e2b7v 765c e7999c 765c 0000765c f04a f04a f04a f04a f04a f04a f04a
+12129 f04b f04b f04b * * 6238 8ea2e2b8,8ea2e2b8v 7664 e799a4 7664 00007664 f04b f04b f04b f04b f04b f04b f04b
+12130 f04c f04c f04c * * 6239 8ea2e2b9,8ea2e2b9v 7659 e79999 7659 00007659 f04c f04c f04c f04c f04c f04c f04c
+12131 f04d f04d f04d * * 623a 8ea2e2ba,8ea2e2bav 7650 e79990 7650 00007650 f04d f04d f04d f04d f04d f04d f04d
+12132 f04e f04e f04e * * 623b 8ea2e2bb,8ea2e2bbv 7653 e79993 7653 00007653 f04e f04e f04e f04e f04e f04e f04e
+12133 f04f f04f f04f * * 623c 8ea2e2bc,8ea2e2bcv 7657 e79997 7657 00007657 f04f f04f f04f f04f f04f f04f f04f
+12134 f050 f050 f050 * * 623d 8ea2e2bd,8ea2e2bdv 765a e7999a 765a 0000765a f050 f050 f050 f050 f050 f050 f050
+12135 f051 f051 f051 * * 623e 8ea2e2be,8ea2e2bev 76a6 e79aa6 76a6 000076a6 f051 f051 f051 f051 f051 f051 f051
+12136 f052 f052 f052 * * 623f 8ea2e2bf,8ea2e2bfv 76bd e79abd 76bd 000076bd f052 f052 f052 f052 f052 f052 f052
+12137 f053 f053 f053 * * 6240 8ea2e2c0,8ea2e2c0v 76ec e79bac 76ec 000076ec f053 f053 f053 f053 f053 f053 f053
+12138 f054 f054 f054 * * 6241 8ea2e2c1,8ea2e2c1v 77c2 e79f82 77c2 000077c2 f054 f054 f054 f054 f054 f054 f054
+12139 f055 f055 f055 * * 6242 8ea2e2c2,8ea2e2c2v 77ba e79eba 77ba 000077ba f055 f055 f055 f055 f055 f055 f055
+12140 f057 f057 f057 * * 6243 8ea2e2c3,8ea2e2c3v 790c e7a48c 790c 0000790c f057 f057 f057 f057 f057 f057 f057
+12141 f058 f058 f058 * * 6244 8ea2e2c4,8ea2e2c4v 7913 e7a493 7913 00007913 f058 f058 f058 f058 f058 f058 f058
+12142 f059 f059 f059 * * 6245 8ea2e2c5,8ea2e2c5v 7914 e7a494 7914 00007914 f059 f059 f059 f059 f059 f059 f059
+12143 f05a f05a f05a * * 6246 8ea2e2c6,8ea2e2c6v 7909 e7a489 7909 00007909 f05a f05a f05a f05a f05a f05a f05a
+12144 f05b f05b f05b * * 6247 8ea2e2c7,8ea2e2c7v 7910 e7a490 7910 00007910 f05b f05b f05b f05b f05b f05b f05b
+12145 f05c f05c f05c * * 6248 8ea2e2c8,8ea2e2c8v 7912 e7a492 7912 00007912 f05c f05c f05c f05c f05c f05c f05c
+12146 f05d f05d f05d * * 6249 8ea2e2c9,8ea2e2c9v 7911 e7a491 7911 00007911 f05d f05d f05d f05d f05d f05d f05d
+12147 f05e f05e f05e * * 624a 8ea2e2ca,8ea2e2cav 79ad e7a6ad 79ad 000079ad f05e f05e f05e f05e f05e f05e f05e
+12148 f05f f05f f05f * * 624b 8ea2e2cb,8ea2e2cbv 79ac e7a6ac 79ac 000079ac f05f f05f f05f f05f f05f f05f f05f
+12149 f060 f060 f060 * * 624c 8ea2e2cc,8ea2e2ccv 7a5f e7a99f 7a5f 00007a5f f060 f060 f060 f060 f060 f060 f060
+12150 f061 f061 f061 * * 624d 8ea2e2cd,8ea2e2cdv 7c1c e7b09c 7c1c 00007c1c f061 f061 f061 f061 f061 f061 f061
+12151 f062 f062 f062 * * 624e 8ea2e2ce,8ea2e2cev 7c29 e7b0a9 7c29 00007c29 f062 f062 f062 f062 f062 f062 f062
+12152 f063 f063 f063 * * 624f 8ea2e2cf,8ea2e2cfv 7c19 e7b099 7c19 00007c19 f063 f063 f063 f063 f063 f063 f063
+12153 f064 f064 f064 * * 6250 8ea2e2d0,8ea2e2d0v 7c20 e7b0a0 7c20 00007c20 f064 f064 f064 f064 f064 f064 f064
+12154 f065 f065 f065 * * 6251 8ea2e2d1,8ea2e2d1v 7c1f e7b09f 7c1f 00007c1f f065 f065 f065 f065 f065 f065 f065
+12155 f066 f066 f066 * * 6252 8ea2e2d2,8ea2e2d2v 7c2d e7b0ad 7c2d 00007c2d f066 f066 f066 f066 f066 f066 f066
+12156 f067 f067 f067 * * 6253 8ea2e2d3,8ea2e2d3v 7c1d e7b09d 7c1d 00007c1d f067 f067 f067 f067 f067 f067 f067
+12157 f068 f068 f068 * * 6254 8ea2e2d4,8ea2e2d4v 7c26 e7b0a6 7c26 00007c26 f068 f068 f068 f068 f068 f068 f068
+12158 f069 f069 f069 * * 6255 8ea2e2d5,8ea2e2d5v 7c28 e7b0a8 7c28 00007c28 f069 f069 f069 f069 f069 f069 f069
+12159 f06a f06a f06a * * 6256 8ea2e2d6,8ea2e2d6v 7c22 e7b0a2 7c22 00007c22 f06a f06a f06a f06a f06a f06a f06a
+12160 f06b f06b f06b * * 6257 8ea2e2d7,8ea2e2d7v 7c25 e7b0a5 7c25 00007c25 f06b f06b f06b f06b f06b f06b f06b
+12161 f06c f06c f06c * * 6258 8ea2e2d8,8ea2e2d8v 7c30 e7b0b0 7c30 00007c30 f06c f06c f06c f06c f06c f06c f06c
+12162 f06d f06d f06d * * 6259 8ea2e2d9,8ea2e2d9v 7e5c e7b99c 7e5c 00007e5c f06d f06d f06d f06d f06d f06d f06d
+12163 f06e f06e f06e * * 625a 8ea2e2da,8ea2e2dav 7e50 e7b990 7e50 00007e50 f06e f06e f06e f06e f06e f06e f06e
+12164 f06f f06f f06f * * 625b 8ea2e2db,8ea2e2dbv 7e56 e7b996 7e56 00007e56 f06f f06f f06f f06f f06f f06f f06f
+12165 f070 f070 f070 * * 625c 8ea2e2dc,8ea2e2dcv 7e63 e7b9a3 7e63 00007e63 f070 f070 f070 f070 f070 f070 f070
+12166 f071 f071 f071 * * 625d 8ea2e2dd,8ea2e2ddv 7e58 e7b998 7e58 00007e58 f071 f071 f071 f071 f071 f071 f071
+12167 f072 f072 f072 * * 625e 8ea2e2de,8ea2e2dev 7e62 e7b9a2 7e62 00007e62 f072 f072 f072 f072 f072 f072 f072
+12168 f073 f073 f073 * * 625f 8ea2e2df,8ea2e2dfv 7e5f e7b99f 7e5f 00007e5f f073 f073 f073 f073 f073 f073 f073
+12169 f074 f074 f074 * * 6260 8ea2e2e0,8ea2e2e0v 7e51 e7b991 7e51 00007e51 f074 f074 f074 f074 f074 f074 f074
+12170 f075 f075 f075 * * 6261 8ea2e2e1,8ea2e2e1v 7e60 e7b9a0 7e60 00007e60 f075 f075 f075 f075 f075 f075 f075
+12171 f076 f076 f076 * * 6262 8ea2e2e2,8ea2e2e2v 7e57 e7b997 7e57 00007e57 f076 f076 f076 f076 f076 f076 f076
+12172 f077 f077 f077 * * 6263 8ea2e2e3,8ea2e2e3v 7e53 e7b993 7e53 00007e53 f077 f077 f077 f077 f077 f077 f077
+12173 f078 f078 f078 * * 6264 8ea2e2e4,8ea2e2e4v 7fb5 e7beb5 7fb5 00007fb5 f078 f078 f078 f078 f078 f078 f078
+12174 f079 f079 f079 * * 6265 8ea2e2e5,8ea2e2e5v 7fb3 e7beb3 7fb3 00007fb3 f079 f079 f079 f079 f079 f079 f079
+12175 f07a f07a f07a * * 6266 8ea2e2e6,8ea2e2e6v 7ff7 e7bfb7 7ff7 00007ff7 f07a f07a f07a f07a f07a f07a f07a
+12176 f07b f07b f07b * * 6267 8ea2e2e7,8ea2e2e7v 7ff8 e7bfb8 7ff8 00007ff8 f07b f07b f07b f07b f07b f07b f07b
+12177 f07c f07c f07c * * 6268 8ea2e2e8,8ea2e2e8v 8075 e881b5 8075 00008075 f07c f07c f07c f07c f07c f07c f07c
+12178 f07d f07d f07d * * 6269 8ea2e2e9,8ea2e2e9v 81d1 e88791 81d1 000081d1 f07d f07d f07d f07d f07d f07d f07d
+12179 f07e f07e f07e * * 626a 8ea2e2ea,8ea2e2eav 81d2 e88792 81d2 000081d2 f07e f07e f07e f07e f07e f07e f07e
+12180 f0a1 f0a1 f0a1 * * 626b 8ea2e2eb,8ea2e2ebv 81d0 e88790 81d0 000081d0 f0a1 f0a1 f0a1 f0a1 f0a1 f0a1 f0a1
+12181 f0a2 f0a2 f0a2 * * 626c 8ea2e2ec,8ea2e2ecv 825f e8899f 825f 0000825f f0a2 f0a2 f0a2 f0a2 f0a2 f0a2 f0a2
+12182 f0a3 f0a3 f0a3 * * 626d 8ea2e2ed,8ea2e2edv 825e e8899e 825e 0000825e f0a3 f0a3 f0a3 f0a3 f0a3 f0a3 f0a3
+12183 f0a4 f0a4 f0a4 * * 626e 8ea2e2ee,8ea2e2eev 85b4 e896b4 85b4 000085b4 f0a4 f0a4 f0a4 f0a4 f0a4 f0a4 f0a4
+12184 f0a5 f0a5 f0a5 * * 626f 8ea2e2ef,8ea2e2efv 85c6 e89786 85c6 000085c6 f0a5 f0a5 f0a5 f0a5 f0a5 f0a5 f0a5
+12185 f0a6 f0a6 f0a6 * * 6270 8ea2e2f0,8ea2e2f0v 85c0 e89780 85c0 000085c0 f0a6 f0a6 f0a6 f0a6 f0a6 f0a6 f0a6
+12186 f0a7 f0a7 f0a7 * * 6271 8ea2e2f1,8ea2e2f1v 85c3 e89783 85c3 000085c3 f0a7 f0a7 f0a7 f0a7 f0a7 f0a7 f0a7
+12187 f0a8 f0a8 f0a8 * * 6272 8ea2e2f2,8ea2e2f2v 85c2 e89782 85c2 000085c2 f0a8 f0a8 f0a8 f0a8 f0a8 f0a8 f0a8
+12188 f0a9 f0a9 f0a9 * * 6273 8ea2e2f3,8ea2e2f3v 85b3 e896b3 85b3 000085b3 f0a9 f0a9 f0a9 f0a9 f0a9 f0a9 f0a9
+12189 f0aa f0aa f0aa * * 6274 8ea2e2f4,8ea2e2f4v 85b5 e896b5 85b5 000085b5 f0aa f0aa f0aa f0aa f0aa f0aa f0aa
+12190 f0ab f0ab f0ab * * 6275 8ea2e2f5,8ea2e2f5v 85bd e896bd 85bd 000085bd f0ab f0ab f0ab f0ab f0ab f0ab f0ab
+12191 f0ac f0ac f0ac * * 6276 8ea2e2f6,8ea2e2f6v 85c7 e89787 85c7 000085c7 f0ac f0ac f0ac f0ac f0ac f0ac f0ac
+12192 f0ad f0ad f0ad * * 6277 8ea2e2f7,8ea2e2f7v 85c4 e89784 85c4 000085c4 f0ad f0ad f0ad f0ad f0ad f0ad f0ad
+12193 f0ae f0ae f0ae * * 6278 8ea2e2f8,8ea2e2f8v 85bf e896bf 85bf 000085bf f0ae f0ae f0ae f0ae f0ae f0ae f0ae
+12194 f0af f0af f0af * * 6279 8ea2e2f9,8ea2e2f9v 85cb e8978b 85cb 000085cb f0af f0af f0af f0af f0af f0af f0af
+12195 f0b0 f0b0 f0b0 * * 627a 8ea2e2fa,8ea2e2fav 85ce e8978e 85ce 000085ce f0b0 f0b0 f0b0 f0b0 f0b0 f0b0 f0b0
+12196 f0b1 f0b1 f0b1 * * 627b 8ea2e2fb,8ea2e2fbv 85c8 e89788 85c8 000085c8 f0b1 f0b1 f0b1 f0b1 f0b1 f0b1 f0b1
+12197 f0b2 f0b2 f0b2 * * 627c 8ea2e2fc,8ea2e2fcv 85c5 e89785 85c5 000085c5 f0b2 f0b2 f0b2 f0b2 f0b2 f0b2 f0b2
+12198 f0b3 f0b3 f0b3 * * 627d 8ea2e2fd,8ea2e2fdv 85b1 e896b1 85b1 000085b1 f0b3 f0b3 f0b3 f0b3 f0b3 f0b3 f0b3
+12199 f0b4 f0b4 f0b4 * * 627e 8ea2e2fe,8ea2e2fev 85b6 e896b6 85b6 000085b6 f0b4 f0b4 f0b4 f0b4 f0b4 f0b4 f0b4
+12200 f0b5 f0b5 f0b5 * * 6321 8ea2e3a1,8ea2e3a1v 85d2 e89792 85d2 000085d2 f0b5 f0b5 f0b5 f0b5 f0b5 f0b5 f0b5
+12201 f0b6 f0b6 f0b6 * * 6322 8ea2e3a2,8ea2e3a2v 8624 e898a4 8624 00008624 f0b6 f0b6 f0b6 f0b6 f0b6 f0b6 f0b6
+12202 f0b7 f0b7 f0b7 * * 6323 8ea2e3a3,8ea2e3a3v 85b8 e896b8 85b8 000085b8 f0b7 f0b7 f0b7 f0b7 f0b7 f0b7 f0b7
+12203 f0b8 f0b8 f0b8 * * 6324 8ea2e3a4,8ea2e3a4v 85b7 e896b7 85b7 000085b7 f0b8 f0b8 f0b8 f0b8 f0b8 f0b8 f0b8
+12204 f0b9 f0b9 f0b9 * * 6325 8ea2e3a5,8ea2e3a5v 85be e896be 85be 000085be f0b9 f0b9 f0b9 f0b9 f0b9 f0b9 f0b9
+12205 f0ba f0ba f0ba * * 6326 8ea2e3a6,8ea2e3a6v 8669 e899a9 8669 00008669 f0ba f0ba f0ba f0ba f0ba f0ba f0ba
+12206 f0bb f0bb f0bb * * 6327 8ea2e3a7,8ea2e3a7v 87e7 e89fa7 87e7 000087e7 f0bb f0bb f0bb f0bb f0bb f0bb f0bb
+12207 f0bc f0bc f0bc * * 6328 8ea2e3a8,8ea2e3a8v 87e6 e89fa6 87e6 000087e6 f0bc f0bc f0bc f0bc f0bc f0bc f0bc
+12208 f0bd f0bd f0bd * * 6329 8ea2e3a9,8ea2e3a9v 87e2 e89fa2 87e2 000087e2 f0bd f0bd f0bd f0bd f0bd f0bd f0bd
+12209 f0be f0be f0be * * 632a 8ea2e3aa,8ea2e3aav 87db e89f9b 87db 000087db f0be f0be f0be f0be f0be f0be f0be
+12210 f0bf f0bf f0bf * * 632b 8ea2e3ab,8ea2e3abv 87eb e89fab 87eb 000087eb f0bf f0bf f0bf f0bf f0bf f0bf f0bf
+12211 f0c0 f0c0 f0c0 * * 632c 8ea2e3ac,8ea2e3acv 87ea e89faa 87ea 000087ea f0c0 f0c0 f0c0 f0c0 f0c0 f0c0 f0c0
+12212 f0c1 f0c1 f0c1 * * 632d 8ea2e3ad,8ea2e3adv 87e5 e89fa5 87e5 000087e5 f0c1 f0c1 f0c1 f0c1 f0c1 f0c1 f0c1
+12213 f0c2 f0c2 f0c2 * * 632e 8ea2e3ae,8ea2e3aev 87df e89f9f 87df 000087df f0c2 f0c2 f0c2 f0c2 f0c2 f0c2 f0c2
+12214 f0c3 f0c3 f0c3 * * 632f 8ea2e3af,8ea2e3afv 87f3 e89fb3 87f3 000087f3 f0c3 f0c3 f0c3 f0c3 f0c3 f0c3 f0c3
+12215 f0c4 f0c4 f0c4 * * 6330 8ea2e3b0,8ea2e3b0v 87e4 e89fa4 87e4 000087e4 f0c4 f0c4 f0c4 f0c4 f0c4 f0c4 f0c4
+12216 f0c5 f0c5 f0c5 * * 6331 8ea2e3b1,8ea2e3b1v 87d4 e89f94 87d4 000087d4 f0c5 f0c5 f0c5 f0c5 f0c5 f0c5 f0c5
+12217 f0c6 f0c6 f0c6 * * 6332 8ea2e3b2,8ea2e3b2v 87dc e89f9c 87dc 000087dc f0c6 f0c6 f0c6 f0c6 f0c6 f0c6 f0c6
+12218 f0c7 f0c7 f0c7 * * 6333 8ea2e3b3,8ea2e3b3v 87d3 e89f93 87d3 000087d3 f0c7 f0c7 f0c7 f0c7 f0c7 f0c7 f0c7
+12219 f0c8 f0c8 f0c8 * * 6334 8ea2e3b4,8ea2e3b4v 87ed e89fad 87ed 000087ed f0c8 f0c8 f0c8 f0c8 f0c8 f0c8 f0c8
+12220 f0c9 f0c9 f0c9 * * 6335 8ea2e3b5,8ea2e3b5v 87d8 e89f98 87d8 000087d8 f0c9 f0c9 f0c9 f0c9 f0c9 f0c9 f0c9
+12221 f0ca f0ca f0ca * * 6336 8ea2e3b6,8ea2e3b6v 87e3 e89fa3 87e3 000087e3 f0ca f0ca f0ca f0ca f0ca f0ca f0ca
+12222 f0cc f0cc f0cc * * 6337 8ea2e3b7,8ea2e3b7v 87d7 e89f97 87d7 000087d7 f0cc f0cc f0cc f0cc f0cc f0cc f0cc
+12223 f0cd f0cd f0cd * * 6338 8ea2e3b8,8ea2e3b8v 87d9 e89f99 87d9 000087d9 f0cd f0cd f0cd f0cd f0cd f0cd f0cd
+12224 f0ce f0ce f0ce * * 6339 8ea2e3b9,8ea2e3b9v 8801 e8a081 8801 00008801 f0ce f0ce f0ce f0ce f0ce f0ce f0ce
+12225 f0cf f0cf f0cf * * 633a 8ea2e3ba,8ea2e3bav 87f4 e89fb4 87f4 000087f4 f0cf f0cf f0cf f0cf f0cf f0cf f0cf
+12226 f0d0 f0d0 f0d0 * * 633b 8ea2e3bb,8ea2e3bbv 87e8 e89fa8 87e8 000087e8 f0d0 f0d0 f0d0 f0d0 f0d0 f0d0 f0d0
+12227 f0d1 f0d1 f0d1 * * 633c 8ea2e3bc,8ea2e3bcv 87dd e89f9d 87dd 000087dd f0d1 f0d1 f0d1 f0d1 f0d1 f0d1 f0d1
+12228 f0d2 f0d2 f0d2 * * 633d 8ea2e3bd,8ea2e3bdv 8953 e8a593 8953 00008953 f0d2 f0d2 f0d2 f0d2 f0d2 f0d2 f0d2
+12229 f0d3 f0d3 f0d3 * * 633e 8ea2e3be,8ea2e3bev 894b e8a58b 894b 0000894b f0d3 f0d3 f0d3 f0d3 f0d3 f0d3 f0d3
+12230 f0d4 f0d4 f0d4 * * 633f 8ea2e3bf,8ea2e3bfv 894f e8a58f 894f 0000894f f0d4 f0d4 f0d4 f0d4 f0d4 f0d4 f0d4
+12231 f0d5 f0d5 f0d5 * * 6340 8ea2e3c0,8ea2e3c0v 894c e8a58c 894c 0000894c f0d5 f0d5 f0d5 f0d5 f0d5 f0d5 f0d5
+12232 f0d6 f0d6 f0d6 * * 6341 8ea2e3c1,8ea2e3c1v 8946 e8a586 8946 00008946 f0d6 f0d6 f0d6 f0d6 f0d6 f0d6 f0d6
+12233 f0d7 f0d7 f0d7 * * 6342 8ea2e3c2,8ea2e3c2v 8950 e8a590 8950 00008950 f0d7 f0d7 f0d7 f0d7 f0d7 f0d7 f0d7
+12234 f0d8 f0d8 f0d8 * * 6343 8ea2e3c3,8ea2e3c3v 8951 e8a591 8951 00008951 f0d8 f0d8 f0d8 f0d8 f0d8 f0d8 f0d8
+12235 f0d9 f0d9 f0d9 * * 6344 8ea2e3c4,8ea2e3c4v 8949 e8a589 8949 00008949 f0d9 f0d9 f0d9 f0d9 f0d9 f0d9 f0d9
+12236 f0da f0da f0da * * 6345 8ea2e3c5,8ea2e3c5v 8b2a e8acaa 8b2a 00008b2a f0da f0da f0da f0da f0da f0da f0da
+12237 f0db f0db f0db * * 6346 8ea2e3c6,8ea2e3c6v 8b27 e8aca7 8b27 00008b27 f0db f0db f0db f0db f0db f0db f0db
+12238 f0dc f0dc f0dc * * 6347 8ea2e3c7,8ea2e3c7v 8b23 e8aca3 8b23 00008b23 f0dc f0dc f0dc f0dc f0dc f0dc f0dc
+12239 f0dd f0dd f0dd * * 6348 8ea2e3c8,8ea2e3c8v 8b33 e8acb3 8b33 00008b33 f0dd f0dd f0dd f0dd f0dd f0dd f0dd
+12240 f0de f0de f0de * * 6349 8ea2e3c9,8ea2e3c9v 8b30 e8acb0 8b30 00008b30 f0de f0de f0de f0de f0de f0de f0de
+12241 f0df f0df f0df * * 634a 8ea2e3ca,8ea2e3cav 8b35 e8acb5 8b35 00008b35 f0df f0df f0df f0df f0df f0df f0df
+12242 f0e0 f0e0 f0e0 * * 634b 8ea2e3cb,8ea2e3cbv 8b47 e8ad87 8b47 00008b47 f0e0 f0e0 f0e0 f0e0 f0e0 f0e0 f0e0
+12243 f0e1 f0e1 f0e1 * * 634c 8ea2e3cc,8ea2e3ccv 8b2f e8acaf 8b2f 00008b2f f0e1 f0e1 f0e1 f0e1 f0e1 f0e1 f0e1
+12244 f0e2 f0e2 f0e2 * * 634d 8ea2e3cd,8ea2e3cdv 8b3c e8acbc 8b3c 00008b3c f0e2 f0e2 f0e2 f0e2 f0e2 f0e2 f0e2
+12245 f0e3 f0e3 f0e3 * * 634e 8ea2e3ce,8ea2e3cev 8b3e e8acbe 8b3e 00008b3e f0e3 f0e3 f0e3 f0e3 f0e3 f0e3 f0e3
+12246 f0e4 f0e4 f0e4 * * 634f 8ea2e3cf,8ea2e3cfv 8b31 e8acb1 8b31 00008b31 f0e4 f0e4 f0e4 f0e4 f0e4 f0e4 f0e4
+12247 f0e5 f0e5 f0e5 * * 6350 8ea2e3d0,8ea2e3d0v 8b25 e8aca5 8b25 00008b25 f0e5 f0e5 f0e5 f0e5 f0e5 f0e5 f0e5
+12248 f0e6 f0e6 f0e6 * * 6351 8ea2e3d1,8ea2e3d1v 8b37 e8acb7 8b37 00008b37 f0e6 f0e6 f0e6 f0e6 f0e6 f0e6 f0e6
+12249 f0e7 f0e7 f0e7 * * 6352 8ea2e3d2,8ea2e3d2v 8b26 e8aca6 8b26 00008b26 f0e7 f0e7 f0e7 f0e7 f0e7 f0e7 f0e7
+12250 f0e8 f0e8 f0e8 * * 6353 8ea2e3d3,8ea2e3d3v 8b36 e8acb6 8b36 00008b36 f0e8 f0e8 f0e8 f0e8 f0e8 f0e8 f0e8
+12251 f0e9 f0e9 f0e9 * * 6354 8ea2e3d4,8ea2e3d4v 8b2e e8acae 8b2e 00008b2e f0e9 f0e9 f0e9 f0e9 f0e9 f0e9 f0e9
+12252 f0ea f0ea f0ea * * 6355 8ea2e3d5,8ea2e3d5v 8b24 e8aca4 8b24 00008b24 f0ea f0ea f0ea f0ea f0ea f0ea f0ea
+12253 f0eb f0eb f0eb * * 6356 8ea2e3d6,8ea2e3d6v 8b3b e8acbb 8b3b 00008b3b f0eb f0eb f0eb f0eb f0eb f0eb f0eb
+12254 f0ec f0ec f0ec * * 6357 8ea2e3d7,8ea2e3d7v 8b3d e8acbd 8b3d 00008b3d f0ec f0ec f0ec f0ec f0ec f0ec f0ec
+12255 f0ed f0ed f0ed * * 6358 8ea2e3d8,8ea2e3d8v 8b3a e8acba 8b3a 00008b3a f0ed f0ed f0ed f0ed f0ed f0ed f0ed
+12256 f0ee f0ee f0ee * * 6359 8ea2e3d9,8ea2e3d9v 8c42 e8b182 8c42 00008c42 f0ee f0ee f0ee f0ee f0ee f0ee f0ee
+12257 f0ef f0ef f0ef * * 635a 8ea2e3da,8ea2e3dav 8c75 e8b1b5 8c75 00008c75 f0ef f0ef f0ef f0ef f0ef f0ef f0ef
+12258 f0f0 f0f0 f0f0 * * 635b 8ea2e3db,8ea2e3dbv 8c99 e8b299 8c99 00008c99 f0f0 f0f0 f0f0 f0f0 f0f0 f0f0 f0f0
+12259 f0f1 f0f1 f0f1 * * 635c 8ea2e3dc,8ea2e3dcv 8c98 e8b298 8c98 00008c98 f0f1 f0f1 f0f1 f0f1 f0f1 f0f1 f0f1
+12260 f0f2 f0f2 f0f2 * * 635d 8ea2e3dd,8ea2e3ddv 8c97 e8b297 8c97 00008c97 f0f2 f0f2 f0f2 f0f2 f0f2 f0f2 f0f2
+12261 f0f3 f0f3 f0f3 * * 635e 8ea2e3de,8ea2e3dev 8cfe e8b3be 8cfe 00008cfe f0f3 f0f3 f0f3 f0f3 f0f3 f0f3 f0f3
+12262 f0f4 f0f4 f0f4 * * 635f 8ea2e3df,8ea2e3dfv 8d04 e8b484 8d04 00008d04 f0f4 f0f4 f0f4 f0f4 f0f4 f0f4 f0f4
+12263 f0f5 f0f5 f0f5 * * 6360 8ea2e3e0,8ea2e3e0v 8d02 e8b482 8d02 00008d02 f0f5 f0f5 f0f5 f0f5 f0f5 f0f5 f0f5
+12264 f0f6 f0f6 f0f6 * * 6361 8ea2e3e1,8ea2e3e1v 8d00 e8b480 8d00 00008d00 f0f6 f0f6 f0f6 f0f6 f0f6 f0f6 f0f6
+12265 f0f7 f0f7 f0f7 * * 6362 8ea2e3e2,8ea2e3e2v 8e5c e8b99c 8e5c 00008e5c f0f7 f0f7 f0f7 f0f7 f0f7 f0f7 f0f7
+12266 f0f8 f0f8 f0f8 * * 6363 8ea2e3e3,8ea2e3e3v 8e62 e8b9a2 8e62 00008e62 f0f8 f0f8 f0f8 f0f8 f0f8 f0f8 f0f8
+12267 f0f9 f0f9 f0f9 * * 6364 8ea2e3e4,8ea2e3e4v 8e60 e8b9a0 8e60 00008e60 f0f9 f0f9 f0f9 f0f9 f0f9 f0f9 f0f9
+12268 f0fa f0fa f0fa * * 6365 8ea2e3e5,8ea2e3e5v 8e57 e8b997 8e57 00008e57 f0fa f0fa f0fa f0fa f0fa f0fa f0fa
+12269 f0fb f0fb f0fb * * 6366 8ea2e3e6,8ea2e3e6v 8e56 e8b996 8e56 00008e56 f0fb f0fb f0fb f0fb f0fb f0fb f0fb
+12270 f0fc f0fc f0fc * * 6367 8ea2e3e7,8ea2e3e7v 8e5e e8b99e 8e5e 00008e5e f0fc f0fc f0fc f0fc f0fc f0fc f0fc
+12271 f0fd f0fd f0fd * * 6368 8ea2e3e8,8ea2e3e8v 8e65 e8b9a5 8e65 00008e65 f0fd f0fd f0fd f0fd f0fd f0fd f0fd
+12272 f0fe f0fe f0fe * * 6369 8ea2e3e9,8ea2e3e9v 8e67 e8b9a7 8e67 00008e67 f0fe f0fe f0fe f0fe f0fe f0fe f0fe
+12273 f140 f140 f140 * * 636a 8ea2e3ea,8ea2e3eav 8e5b e8b99b 8e5b 00008e5b f140 f140 f140 f140 f140 f140 f140
+12274 f141 f141 f141 * * 636b 8ea2e3eb,8ea2e3ebv 8e5a e8b99a 8e5a 00008e5a f141 f141 f141 f141 f141 f141 f141
+12275 f142 f142 f142 * * 636c 8ea2e3ec,8ea2e3ecv 8e61 e8b9a1 8e61 00008e61 f142 f142 f142 f142 f142 f142 f142
+12276 f143 f143 f143 * * 636d 8ea2e3ed,8ea2e3edv 8e5d e8b99d 8e5d 00008e5d f143 f143 f143 f143 f143 f143 f143
+12277 f144 f144 f144 * * 636e 8ea2e3ee,8ea2e3eev 8e69 e8b9a9 8e69 00008e69 f144 f144 f144 f144 f144 f144 f144
+12278 f145 f145 f145 * * 636f 8ea2e3ef,8ea2e3efv 8e54 e8b994 8e54 00008e54 f145 f145 f145 f145 f145 f145 f145
+12279 f146 f146 f146 * * 6370 8ea2e3f0,8ea2e3f0v 8f46 e8bd86 8f46 00008f46 f146 f146 f146 f146 f146 f146 f146
+12280 f147 f147 f147 * * 6371 8ea2e3f1,8ea2e3f1v 8f47 e8bd87 8f47 00008f47 f147 f147 f147 f147 f147 f147 f147
+12281 f148 f148 f148 * * 6372 8ea2e3f2,8ea2e3f2v 8f48 e8bd88 8f48 00008f48 f148 f148 f148 f148 f148 f148 f148
+12282 f149 f149 f149 * * 6373 8ea2e3f3,8ea2e3f3v 8f4b e8bd8b 8f4b 00008f4b f149 f149 f149 f149 f149 f149 f149
+12283 f14a f14a f14a * * 6374 8ea2e3f4,8ea2e3f4v 9128 e984a8 9128 00009128 f14a f14a f14a f14a f14a f14a f14a
+12284 f14b f14b f14b * * 6375 8ea2e3f5,8ea2e3f5v 913a e984ba 913a 0000913a f14b f14b f14b f14b f14b f14b f14b
+12285 f14c f14c f14c * * 6376 8ea2e3f6,8ea2e3f6v 913b e984bb 913b 0000913b f14c f14c f14c f14c f14c f14c f14c
+12286 f14d f14d f14d * * 6377 8ea2e3f7,8ea2e3f7v 913e e984be 913e 0000913e f14d f14d f14d f14d f14d f14d f14d
+12287 f14e f14e f14e * * 6378 8ea2e3f8,8ea2e3f8v 91a8 e986a8 91a8 000091a8 f14e f14e f14e f14e f14e f14e f14e
+12288 f14f f14f f14f * * 6379 8ea2e3f9,8ea2e3f9v 91a5 e986a5 91a5 000091a5 f14f f14f f14f f14f f14f f14f f14f
+12289 f150 f150 f150 * * 637a 8ea2e3fa,8ea2e3fav 91a7 e986a7 91a7 000091a7 f150 f150 f150 f150 f150 f150 f150
+12290 f151 f151 f151 * * 637b 8ea2e3fb,8ea2e3fbv 91af e986af 91af 000091af f151 f151 f151 f151 f151 f151 f151
+12291 f152 f152 f152 * * 637c 8ea2e3fc,8ea2e3fcv 91aa e986aa 91aa 000091aa f152 f152 f152 f152 f152 f152 f152
+12292 f153 f153 f153 * * 637d 8ea2e3fd,8ea2e3fdv 93b5 e98eb5 93b5 000093b5 f153 f153 f153 f153 f153 f153 f153
+12293 f154 f154 f154 * * 637e 8ea2e3fe,8ea2e3fev 938c e98e8c 938c 0000938c f154 f154 f154 f154 f154 f154 f154
+12294 f155 f155 f155 * * 6421 8ea2e4a1,8ea2e4a1v 9392 e98e92 9392 00009392 f155 f155 f155 f155 f155 f155 f155
+12295 f156 f156 f156 * * 6422 8ea2e4a2,8ea2e4a2v 93b7 e98eb7 93b7 000093b7 f156 f156 f156 f156 f156 f156 f156
+12296 f157 f157 f157 * * 6423 8ea2e4a3,8ea2e4a3v 939b e98e9b 939b 0000939b f157 f157 f157 f157 f157 f157 f157
+12297 f158 f158 f158 * * 6424 8ea2e4a4,8ea2e4a4v 939d e98e9d 939d 0000939d f158 f158 f158 f158 f158 f158 f158
+12298 f159 f159 f159 * * 6425 8ea2e4a5,8ea2e4a5v 9389 e98e89 9389 00009389 f159 f159 f159 f159 f159 f159 f159
+12299 f15a f15a f15a * * 6426 8ea2e4a6,8ea2e4a6v 93a7 e98ea7 93a7 000093a7 f15a f15a f15a f15a f15a f15a f15a
+12300 f15b f15b f15b * * 6427 8ea2e4a7,8ea2e4a7v 938e e98e8e 938e 0000938e f15b f15b f15b f15b f15b f15b f15b
+12301 f15c f15c f15c * * 6428 8ea2e4a8,8ea2e4a8v 93aa e98eaa 93aa 000093aa f15c f15c f15c f15c f15c f15c f15c
+12302 f15d f15d f15d * * 6429 8ea2e4a9,8ea2e4a9v 939e e98e9e 939e 0000939e f15d f15d f15d f15d f15d f15d f15d
+12303 f15e f15e f15e * * 642a 8ea2e4aa,8ea2e4aav 93a6 e98ea6 93a6 000093a6 f15e f15e f15e f15e f15e f15e f15e
+12304 f15f f15f f15f * * 642b 8ea2e4ab,8ea2e4abv 9395 e98e95 9395 00009395 f15f f15f f15f f15f f15f f15f f15f
+12305 f160 f160 f160 * * 642c 8ea2e4ac,8ea2e4acv 9388 e98e88 9388 00009388 f160 f160 f160 f160 f160 f160 f160
+12306 f161 f161 f161 * * 642d 8ea2e4ad,8ea2e4adv 9399 e98e99 9399 00009399 f161 f161 f161 f161 f161 f161 f161
+12307 f162 f162 f162 * * 642e 8ea2e4ae,8ea2e4aev 939f e98e9f 939f 0000939f f162 f162 f162 f162 f162 f162 f162
+12308 eeeb eeeb eeeb * * 642f 8ea2e4af,8ea2e4afv 9380 e98e80 9380 00009380 eeeb eeeb eeeb eeeb eeeb eeeb eeeb
+12309 f163 f163 f163 * * 6430 8ea2e4b0,8ea2e4b0v 938d e98e8d 938d 0000938d f163 f163 f163 f163 f163 f163 f163
+12310 f164 f164 f164 * * 6431 8ea2e4b1,8ea2e4b1v 93b1 e98eb1 93b1 000093b1 f164 f164 f164 f164 f164 f164 f164
+12311 f165 f165 f165 * * 6432 8ea2e4b2,8ea2e4b2v 9391 e98e91 9391 00009391 f165 f165 f165 f165 f165 f165 f165
+12312 f166 f166 f166 * * 6433 8ea2e4b3,8ea2e4b3v 93b2 e98eb2 93b2 000093b2 f166 f166 f166 f166 f166 f166 f166
+12313 f167 f167 f167 * * 6434 8ea2e4b4,8ea2e4b4v 93a4 e98ea4 93a4 000093a4 f167 f167 f167 f167 f167 f167 f167
+12314 f168 f168 f168 * * 6435 8ea2e4b5,8ea2e4b5v 93a8 e98ea8 93a8 000093a8 f168 f168 f168 f168 f168 f168 f168
+12315 f169 f169 f169 * * 6436 8ea2e4b6,8ea2e4b6v 93b4 e98eb4 93b4 000093b4 f169 f169 f169 f169 f169 f169 f169
+12316 f16a f16a f16a * * 6437 8ea2e4b7,8ea2e4b7v 93a3 e98ea3 93a3 000093a3 f16a f16a f16a f16a f16a f16a f16a
+12317 f16c f16c f16c * * 6438 8ea2e4b8,8ea2e4b8v 95d2 e99792 95d2 000095d2 f16c f16c f16c f16c f16c f16c f16c
+12318 f16d f16d f16d * * 6439 8ea2e4b9,8ea2e4b9v 95d3 e99793 95d3 000095d3 f16d f16d f16d f16d f16d f16d f16d
+12319 f16e f16e f16e * * 643a 8ea2e4ba,8ea2e4bav 95d1 e99791 95d1 000095d1 f16e f16e f16e f16e f16e f16e f16e
+12320 f16f f16f f16f * * 643b 8ea2e4bb,8ea2e4bbv 96b3 e99ab3 96b3 000096b3 f16f f16f f16f f16f f16f f16f f16f
+12321 f170 f170 f170 * * 643c 8ea2e4bc,8ea2e4bcv 96d7 e99b97 96d7 000096d7 f170 f170 f170 f170 f170 f170 f170
+12322 f171 f171 f171 * * 643d 8ea2e4bd,8ea2e4bdv 96da e99b9a 96da 000096da f171 f171 f171 f171 f171 f171 f171
+12323 f172 f172 f172 * * 643e 8ea2e4be,8ea2e4bev 5dc2 e5b782 5dc2 00005dc2 f172 f172 f172 f172 f172 f172 f172
+12324 f173 f173 f173 * * 643f 8ea2e4bf,8ea2e4bfv 96df e99b9f 96df 000096df f173 f173 f173 f173 f173 f173 f173
+12325 f174 f174 f174 * * 6440 8ea2e4c0,8ea2e4c0v 96d8 e99b98 96d8 000096d8 f174 f174 f174 f174 f174 f174 f174
+12326 f175 f175 f175 * * 6441 8ea2e4c1,8ea2e4c1v 96dd e99b9d 96dd 000096dd f175 f175 f175 f175 f175 f175 f175
+12327 f176 f176 f176 * * 6442 8ea2e4c2,8ea2e4c2v 9723 e99ca3 9723 00009723 f176 f176 f176 f176 f176 f176 f176
+12328 f177 f177 f177 * * 6443 8ea2e4c3,8ea2e4c3v 9722 e99ca2 9722 00009722 f177 f177 f177 f177 f177 f177 f177
+12329 f178 f178 f178 * * 6444 8ea2e4c4,8ea2e4c4v 9725 e99ca5 9725 00009725 f178 f178 f178 f178 f178 f178 f178
+12330 f179 f179 f179 * * 6445 8ea2e4c5,8ea2e4c5v 97ac e99eac 97ac 000097ac f179 f179 f179 f179 f179 f179 f179
+12331 f17a f17a f17a * * 6446 8ea2e4c6,8ea2e4c6v 97ae e99eae 97ae 000097ae f17a f17a f17a f17a f17a f17a f17a
+12332 f17b f17b f17b * * 6447 8ea2e4c7,8ea2e4c7v 97a8 e99ea8 97a8 000097a8 f17b f17b f17b f17b f17b f17b f17b
+12333 f17c f17c f17c * * 6448 8ea2e4c8,8ea2e4c8v 97ab e99eab 97ab 000097ab f17c f17c f17c f17c f17c f17c f17c
+12334 f17d f17d f17d * * 6449 8ea2e4c9,8ea2e4c9v 97a4 e99ea4 97a4 000097a4 f17d f17d f17d f17d f17d f17d f17d
+12335 f17e f17e f17e * * 644a 8ea2e4ca,8ea2e4cav 97aa e99eaa 97aa 000097aa f17e f17e f17e f17e f17e f17e f17e
+12336 f1a1 f1a1 f1a1 * * 644b 8ea2e4cb,8ea2e4cbv 97a2 e99ea2 97a2 000097a2 f1a1 f1a1 f1a1 f1a1 f1a1 f1a1 f1a1
+12337 f1a2 f1a2 f1a2 * * 644c 8ea2e4cc,8ea2e4ccv 97a5 e99ea5 97a5 000097a5 f1a2 f1a2 f1a2 f1a2 f1a2 f1a2 f1a2
+12338 f1a3 f1a3 f1a3 * * 644d 8ea2e4cd,8ea2e4cdv 97d7 e99f97 97d7 000097d7 f1a3 f1a3 f1a3 f1a3 f1a3 f1a3 f1a3
+12339 f1a4 f1a4 f1a4 * * 644e 8ea2e4ce,8ea2e4cev 97d9 e99f99 97d9 000097d9 f1a4 f1a4 f1a4 f1a4 f1a4 f1a4 f1a4
+12340 f1a5 f1a5 f1a5 * * 644f 8ea2e4cf,8ea2e4cfv 97d6 e99f96 97d6 000097d6 f1a5 f1a5 f1a5 f1a5 f1a5 f1a5 f1a5
+12341 f1a6 f1a6 f1a6 * * 6450 8ea2e4d0,8ea2e4d0v 97d8 e99f98 97d8 000097d8 f1a6 f1a6 f1a6 f1a6 f1a6 f1a6 f1a6
+12342 f1a7 f1a7 f1a7 * * 6451 8ea2e4d1,8ea2e4d1v 97fa e99fba 97fa 000097fa f1a7 f1a7 f1a7 f1a7 f1a7 f1a7 f1a7
+12343 f1a8 f1a8 f1a8 * * 6452 8ea2e4d2,8ea2e4d2v 9850 e9a190 9850 00009850 f1a8 f1a8 f1a8 f1a8 f1a8 f1a8 f1a8
+12344 f1a9 f1a9 f1a9 * * 6453 8ea2e4d3,8ea2e4d3v 9851 e9a191 9851 00009851 f1a9 f1a9 f1a9 f1a9 f1a9 f1a9 f1a9
+12345 f1aa f1aa f1aa * * 6454 8ea2e4d4,8ea2e4d4v 9852 e9a192 9852 00009852 f1aa f1aa f1aa f1aa f1aa f1aa f1aa
+12346 f1ab f1ab f1ab * * 6455 8ea2e4d5,8ea2e4d5v 98b8 e9a2b8 98b8 000098b8 f1ab f1ab f1ab f1ab f1ab f1ab f1ab
+12347 f1ac f1ac f1ac * * 6456 8ea2e4d6,8ea2e4d6v 9941 e9a581 9941 00009941 f1ac f1ac f1ac f1ac f1ac f1ac f1ac
+12348 f1ad f1ad f1ad * * 6457 8ea2e4d7,8ea2e4d7v 993c e9a4bc 993c 0000993c f1ad f1ad f1ad f1ad f1ad f1ad f1ad
+12349 f1ae f1ae f1ae * * 6458 8ea2e4d8,8ea2e4d8v 993a e9a4ba 993a 0000993a f1ae f1ae f1ae f1ae f1ae f1ae f1ae
+12350 f1af f1af f1af * * 6459 8ea2e4d9,8ea2e4d9v 9a0f e9a88f 9a0f 00009a0f f1af f1af f1af f1af f1af f1af f1af
+12351 f1b0 f1b0 f1b0 * * 645a 8ea2e4da,8ea2e4dav 9a0b e9a88b 9a0b 00009a0b f1b0 f1b0 f1b0 f1b0 f1b0 f1b0 f1b0
+12352 f1b1 f1b1 f1b1 * * 645b 8ea2e4db,8ea2e4dbv 9a09 e9a889 9a09 00009a09 f1b1 f1b1 f1b1 f1b1 f1b1 f1b1 f1b1
+12353 f1b2 f1b2 f1b2 * * 645c 8ea2e4dc,8ea2e4dcv 9a0d e9a88d 9a0d 00009a0d f1b2 f1b2 f1b2 f1b2 f1b2 f1b2 f1b2
+12354 f1b3 f1b3 f1b3 * * 645d 8ea2e4dd,8ea2e4ddv 9a04 e9a884 9a04 00009a04 f1b3 f1b3 f1b3 f1b3 f1b3 f1b3 f1b3
+12355 f1b4 f1b4 f1b4 * * 645e 8ea2e4de,8ea2e4dev 9a11 e9a891 9a11 00009a11 f1b4 f1b4 f1b4 f1b4 f1b4 f1b4 f1b4
+12356 f1b5 f1b5 f1b5 * * 645f 8ea2e4df,8ea2e4dfv 9a0a e9a88a 9a0a 00009a0a f1b5 f1b5 f1b5 f1b5 f1b5 f1b5 f1b5
+12357 f1b6 f1b6 f1b6 * * 6460 8ea2e4e0,8ea2e4e0v 9a05 e9a885 9a05 00009a05 f1b6 f1b6 f1b6 f1b6 f1b6 f1b6 f1b6
+12358 f1b7 f1b7 f1b7 * * 6461 8ea2e4e1,8ea2e4e1v 9a07 e9a887 9a07 00009a07 f1b7 f1b7 f1b7 f1b7 f1b7 f1b7 f1b7
+12359 f1b8 f1b8 f1b8 * * 6462 8ea2e4e2,8ea2e4e2v 9a06 e9a886 9a06 00009a06 f1b8 f1b8 f1b8 f1b8 f1b8 f1b8 f1b8
+12360 f1b9 f1b9 f1b9 * * 6463 8ea2e4e3,8ea2e4e3v 9ac0 e9ab80 9ac0 00009ac0 f1b9 f1b9 f1b9 f1b9 f1b9 f1b9 f1b9
+12361 f1ba f1ba f1ba * * 6464 8ea2e4e4,8ea2e4e4v 9adc e9ab9c 9adc 00009adc f1ba f1ba f1ba f1ba f1ba f1ba f1ba
+12362 f1bb f1bb f1bb * * 6465 8ea2e4e5,8ea2e4e5v 9b08 e9ac88 9b08 00009b08 f1bb f1bb f1bb f1bb f1bb f1bb f1bb
+12363 f1bc f1bc f1bc * * 6466 8ea2e4e6,8ea2e4e6v 9b04 e9ac84 9b04 00009b04 f1bc f1bc f1bc f1bc f1bc f1bc f1bc
+12364 f1bd f1bd f1bd * * 6467 8ea2e4e7,8ea2e4e7v 9b05 e9ac85 9b05 00009b05 f1bd f1bd f1bd f1bd f1bd f1bd f1bd
+12365 f1be f1be f1be * * 6468 8ea2e4e8,8ea2e4e8v 9b29 e9aca9 9b29 00009b29 f1be f1be f1be f1be f1be f1be f1be
+12366 f1bf f1bf f1bf * * 6469 8ea2e4e9,8ea2e4e9v 9b35 e9acb5 9b35 00009b35 f1bf f1bf f1bf f1bf f1bf f1bf f1bf
+12367 f1c0 f1c0 f1c0 * * 646a 8ea2e4ea,8ea2e4eav 9b4a e9ad8a 9b4a 00009b4a f1c0 f1c0 f1c0 f1c0 f1c0 f1c0 f1c0
+12368 f1c1 f1c1 f1c1 * * 646b 8ea2e4eb,8ea2e4ebv 9b4c e9ad8c 9b4c 00009b4c f1c1 f1c1 f1c1 f1c1 f1c1 f1c1 f1c1
+12369 f1c2 f1c2 f1c2 * * 646c 8ea2e4ec,8ea2e4ecv 9b4b e9ad8b 9b4b 00009b4b f1c2 f1c2 f1c2 f1c2 f1c2 f1c2 f1c2
+12370 f1c3 f1c3 f1c3 * * 646d 8ea2e4ed,8ea2e4edv 9bc7 e9af87 9bc7 00009bc7 f1c3 f1c3 f1c3 f1c3 f1c3 f1c3 f1c3
+12371 f1c4 f1c4 f1c4 * * 646e 8ea2e4ee,8ea2e4eev 9bc6 e9af86 9bc6 00009bc6 f1c4 f1c4 f1c4 f1c4 f1c4 f1c4 f1c4
+12372 f1c5 f1c5 f1c5 * * 646f 8ea2e4ef,8ea2e4efv 9bc3 e9af83 9bc3 00009bc3 f1c5 f1c5 f1c5 f1c5 f1c5 f1c5 f1c5
+12373 f1c6 f1c6 f1c6 * * 6470 8ea2e4f0,8ea2e4f0v 9bbf e9aebf 9bbf 00009bbf f1c6 f1c6 f1c6 f1c6 f1c6 f1c6 f1c6
+12374 f1c7 f1c7 f1c7 * * 6471 8ea2e4f1,8ea2e4f1v 9bc1 e9af81 9bc1 00009bc1 f1c7 f1c7 f1c7 f1c7 f1c7 f1c7 f1c7
+12375 f1c8 f1c8 f1c8 * * 6472 8ea2e4f2,8ea2e4f2v 9bb5 e9aeb5 9bb5 00009bb5 f1c8 f1c8 f1c8 f1c8 f1c8 f1c8 f1c8
+12376 f1c9 f1c9 f1c9 * * 6473 8ea2e4f3,8ea2e4f3v 9bb8 e9aeb8 9bb8 00009bb8 f1c9 f1c9 f1c9 f1c9 f1c9 f1c9 f1c9
+12377 f1ca f1ca f1ca * * 6474 8ea2e4f4,8ea2e4f4v 9bd3 e9af93 9bd3 00009bd3 f1ca f1ca f1ca f1ca f1ca f1ca f1ca
+12378 f1cb f1cb f1cb * * 6475 8ea2e4f5,8ea2e4f5v 9bb6 e9aeb6 9bb6 00009bb6 f1cb f1cb f1cb f1cb f1cb f1cb f1cb
+12379 f1cc f1cc f1cc * * 6476 8ea2e4f6,8ea2e4f6v 9bc4 e9af84 9bc4 00009bc4 f1cc f1cc f1cc f1cc f1cc f1cc f1cc
+12380 f1cd f1cd f1cd * * 6477 8ea2e4f7,8ea2e4f7v 9bb9 e9aeb9 9bb9 00009bb9 f1cd f1cd f1cd f1cd f1cd f1cd f1cd
+12381 f1ce f1ce f1ce * * 6478 8ea2e4f8,8ea2e4f8v 9bbd e9aebd 9bbd 00009bbd f1ce f1ce f1ce f1ce f1ce f1ce f1ce
+12382 f1cf f1cf f1cf * * 6479 8ea2e4f9,8ea2e4f9v 9d5c e9b59c 9d5c 00009d5c f1cf f1cf f1cf f1cf f1cf f1cf f1cf
+12383 f1d0 f1d0 f1d0 * * 647a 8ea2e4fa,8ea2e4fav 9d53 e9b593 9d53 00009d53 f1d0 f1d0 f1d0 f1d0 f1d0 f1d0 f1d0
+12384 f1d1 f1d1 f1d1 * * 647b 8ea2e4fb,8ea2e4fbv 9d4f e9b58f 9d4f 00009d4f f1d1 f1d1 f1d1 f1d1 f1d1 f1d1 f1d1
+12385 f1d2 f1d2 f1d2 * * 647c 8ea2e4fc,8ea2e4fcv 9d4a e9b58a 9d4a 00009d4a f1d2 f1d2 f1d2 f1d2 f1d2 f1d2 f1d2
+12386 f1d3 f1d3 f1d3 * * 647d 8ea2e4fd,8ea2e4fdv 9d5b e9b59b 9d5b 00009d5b f1d3 f1d3 f1d3 f1d3 f1d3 f1d3 f1d3
+12387 f1d4 f1d4 f1d4 * * 647e 8ea2e4fe,8ea2e4fev 9d4b e9b58b 9d4b 00009d4b f1d4 f1d4 f1d4 f1d4 f1d4 f1d4 f1d4
+12388 f1d5 f1d5 f1d5 * * 6521 8ea2e5a1,8ea2e5a1v 9d59 e9b599 9d59 00009d59 f1d5 f1d5 f1d5 f1d5 f1d5 f1d5 f1d5
+12389 f1d6 f1d6 f1d6 * * 6522 8ea2e5a2,8ea2e5a2v 9d56 e9b596 9d56 00009d56 f1d6 f1d6 f1d6 f1d6 f1d6 f1d6 f1d6
+12390 f1d7 f1d7 f1d7 * * 6523 8ea2e5a3,8ea2e5a3v 9d4c e9b58c 9d4c 00009d4c f1d7 f1d7 f1d7 f1d7 f1d7 f1d7 f1d7
+12391 f1d8 f1d8 f1d8 * * 6524 8ea2e5a4,8ea2e5a4v 9d57 e9b597 9d57 00009d57 f1d8 f1d8 f1d8 f1d8 f1d8 f1d8 f1d8
+12392 f1d9 f1d9 f1d9 * * 6525 8ea2e5a5,8ea2e5a5v 9d52 e9b592 9d52 00009d52 f1d9 f1d9 f1d9 f1d9 f1d9 f1d9 f1d9
+12393 f1da f1da f1da * * 6526 8ea2e5a6,8ea2e5a6v 9d54 e9b594 9d54 00009d54 f1da f1da f1da f1da f1da f1da f1da
+12394 f1db f1db f1db * * 6527 8ea2e5a7,8ea2e5a7v 9d5f e9b59f 9d5f 00009d5f f1db f1db f1db f1db f1db f1db f1db
+12395 f1dc f1dc f1dc * * 6528 8ea2e5a8,8ea2e5a8v 9d58 e9b598 9d58 00009d58 f1dc f1dc f1dc f1dc f1dc f1dc f1dc
+12396 f1dd f1dd f1dd * * 6529 8ea2e5a9,8ea2e5a9v 9d5a e9b59a 9d5a 00009d5a f1dd f1dd f1dd f1dd f1dd f1dd f1dd
+12397 f1de f1de f1de * * 652a 8ea2e5aa,8ea2e5aav 9e8e e9ba8e 9e8e 00009e8e f1de f1de f1de f1de f1de f1de f1de
+12398 f1df f1df f1df * * 652b 8ea2e5ab,8ea2e5abv 9e8c e9ba8c 9e8c 00009e8c f1df f1df f1df f1df f1df f1df f1df
+12399 f1e0 f1e0 f1e0 * * 652c 8ea2e5ac,8ea2e5acv 9edf e9bb9f 9edf 00009edf f1e0 f1e0 f1e0 f1e0 f1e0 f1e0 f1e0
+12400 f1e1 f1e1 f1e1 * * 652d 8ea2e5ad,8ea2e5adv 9f01 e9bc81 9f01 00009f01 f1e1 f1e1 f1e1 f1e1 f1e1 f1e1 f1e1
+12401 f1e2 f1e2 f1e2 * * 652e 8ea2e5ae,8ea2e5aev 9f00 e9bc80 9f00 00009f00 f1e2 f1e2 f1e2 f1e2 f1e2 f1e2 f1e2
+12402 f1e3 f1e3 f1e3 * * 652f 8ea2e5af,8ea2e5afv 9f16 e9bc96,ee9585 9f16,e545 00009f16,0000e545 91bf,f1e3 f1e3 f1e3 f1e3 f1e3 f1e3 91bf,f1e3
+12403 f1e4 f1e4 f1e4 * * 6530 8ea2e5b0,8ea2e5b0v 9f25 e9bca5 9f25 00009f25 f1e4 f1e4 f1e4 f1e4 f1e4 f1e4 f1e4
+12404 f1e5 f1e5 f1e5 * * 6531 8ea2e5b1,8ea2e5b1v 9f2b e9bcab 9f2b 00009f2b f1e5 f1e5 f1e5 f1e5 f1e5 f1e5 f1e5
+12405 f1e6 f1e6 f1e6 * * 6532 8ea2e5b2,8ea2e5b2v 9f2a e9bcaa 9f2a 00009f2a f1e6 f1e6 f1e6 f1e6 f1e6 f1e6 f1e6
+12406 f1e7 f1e7 f1e7 * * 6533 8ea2e5b3,8ea2e5b3v 9f29 e9bca9 9f29 00009f29 f1e7 f1e7 f1e7 f1e7 f1e7 f1e7 f1e7
+12407 f1e8 f1e8 f1e8 * * 6534 8ea2e5b4,8ea2e5b4v 9f28 e9bca8 9f28 00009f28 f1e8 f1e8 f1e8 f1e8 f1e8 f1e8 f1e8
+12408 f1e9 f1e9 f1e9 * * 6535 8ea2e5b5,8ea2e5b5v 9f4c e9bd8c 9f4c 00009f4c f1e9 f1e9 f1e9 f1e9 f1e9 f1e9 f1e9
+12409 f1ea f1ea f1ea * * 6536 8ea2e5b6,8ea2e5b6v 9f55 e9bd95 9f55 00009f55 f1ea f1ea f1ea f1ea f1ea f1ea f1ea
+12410 f1eb f1eb f1eb * * 6537 8ea2e5b7,8ea2e5b7v 5134 e584b4 5134 00005134 f1eb f1eb f1eb f1eb f1eb f1eb f1eb
+12411 f1ec f1ec f1ec * * 6538 8ea2e5b8,8ea2e5b8v 5135 e584b5 5135 00005135 f1ec f1ec f1ec f1ec f1ec f1ec f1ec
+12412 f1ed f1ed f1ed * * 6539 8ea2e5b9,8ea2e5b9v 5296 e58a96 5296 00005296 f1ed f1ed f1ed f1ed f1ed f1ed f1ed
+12413 f1ee f1ee f1ee * * 653a 8ea2e5ba,8ea2e5bav 52f7 e58bb7 52f7 000052f7 f1ee f1ee f1ee f1ee f1ee f1ee f1ee
+12414 f1ef f1ef f1ef * * 653b 8ea2e5bb,8ea2e5bbv 53b4 e58eb4 53b4 000053b4 f1ef f1ef f1ef f1ef f1ef f1ef f1ef
+12415 f1f0 f1f0 f1f0 * * 653c 8ea2e5bc,8ea2e5bcv 56ab e59aab 56ab 000056ab f1f0 f1f0 f1f0 f1f0 f1f0 f1f0 f1f0
+12416 f1f1 f1f1 f1f1 * * 653d 8ea2e5bd,8ea2e5bdv 56ad e59aad 56ad 000056ad f1f1 f1f1 f1f1 f1f1 f1f1 f1f1 f1f1
+12417 f1f2 f1f2 f1f2 * * 653e 8ea2e5be,8ea2e5bev 56a6 e59aa6 56a6 000056a6 f1f2 f1f2 f1f2 f1f2 f1f2 f1f2 f1f2
+12418 f1f3 f1f3 f1f3 * * 653f 8ea2e5bf,8ea2e5bfv 56a7 e59aa7 56a7 000056a7 f1f3 f1f3 f1f3 f1f3 f1f3 f1f3 f1f3
+12419 f1f4 f1f4 f1f4 * * 6540 8ea2e5c0,8ea2e5c0v 56aa e59aaa 56aa 000056aa f1f4 f1f4 f1f4 f1f4 f1f4 f1f4 f1f4
+12420 f1f5 f1f5 f1f5 * * 6541 8ea2e5c1,8ea2e5c1v 56ac e59aac 56ac 000056ac f1f5 f1f5 f1f5 f1f5 f1f5 f1f5 f1f5
+12421 f1f6 f1f6 f1f6 * * 6542 8ea2e5c2,8ea2e5c2v 58da e5a39a 58da 000058da f1f6 f1f6 f1f6 f1f6 f1f6 f1f6 f1f6
+12422 f1f7 f1f7 f1f7 * * 6543 8ea2e5c3,8ea2e5c3v 58dd e5a39d 58dd 000058dd f1f7 f1f7 f1f7 f1f7 f1f7 f1f7 f1f7
+12423 f1f8 f1f8 f1f8 * * 6544 8ea2e5c4,8ea2e5c4v 58db e5a39b 58db 000058db f1f8 f1f8 f1f8 f1f8 f1f8 f1f8 f1f8
+12424 f1f9 f1f9 f1f9 * * 6545 8ea2e5c5,8ea2e5c5v 5912 e5a492 5912 00005912 f1f9 f1f9 f1f9 f1f9 f1f9 f1f9 f1f9
+12425 f1fa f1fa f1fa * * 6546 8ea2e5c6,8ea2e5c6v 5b3d e5acbd 5b3d 00005b3d f1fa f1fa f1fa f1fa f1fa f1fa f1fa
+12426 f1fb f1fb f1fb * * 6547 8ea2e5c7,8ea2e5c7v 5b3e e5acbe 5b3e 00005b3e f1fb f1fb f1fb f1fb f1fb f1fb f1fb
+12427 f1fc f1fc f1fc * * 6548 8ea2e5c8,8ea2e5c8v 5b3f e5acbf 5b3f 00005b3f f1fc f1fc f1fc f1fc f1fc f1fc f1fc
+12428 f1fd f1fd f1fd * * 6549 8ea2e5c9,8ea2e5c9v 5dc3 e5b783 5dc3 00005dc3 f1fd f1fd f1fd f1fd f1fd f1fd f1fd
+12429 f1fe f1fe f1fe * * 654a 8ea2e5ca,8ea2e5cav 5e70 e5b9b0 5e70 00005e70 f1fe f1fe f1fe f1fe f1fe f1fe f1fe
+12430 f240 f240 f240 * * 654b 8ea2e5cb,8ea2e5cbv 5fbf e5bebf 5fbf 00005fbf f240 f240 f240 f240 f240 f240 f240
+12431 f241 f241 f241 * * 654c 8ea2e5cc,8ea2e5ccv 61fb e687bb 61fb 000061fb f241 f241 f241 f241 f241 f241 f241
+12432 f242 f242 f242 * * 654d 8ea2e5cd,8ea2e5cdv 6507 e69487 6507 00006507 f242 f242 f242 f242 f242 f242 f242
+12433 f243 f243 f243 * * 654e 8ea2e5ce,8ea2e5cev 6510 e69490 6510 00006510 f243 f243 f243 f243 f243 f243 f243
+12434 f244 f244 f244 * * 654f 8ea2e5cf,8ea2e5cfv 650d e6948d 650d 0000650d f244 f244 f244 f244 f244 f244 f244
+12435 f245 f245 f245 * * 6550 8ea2e5d0,8ea2e5d0v 6509 e69489 6509 00006509 f245 f245 f245 f245 f245 f245 f245
+12436 f246 f246 f246 * * 6551 8ea2e5d1,8ea2e5d1v 650c e6948c 650c 0000650c f246 f246 f246 f246 f246 f246 f246
+12437 f247 f247 f247 * * 6552 8ea2e5d2,8ea2e5d2v 650e e6948e 650e 0000650e f247 f247 f247 f247 f247 f247 f247
+12438 f248 f248 f248 * * 6553 8ea2e5d3,8ea2e5d3v 6584 e69684 6584 00006584 f248 f248 f248 f248 f248 f248 f248
+12439 f249 f249 f249 * * 6554 8ea2e5d4,8ea2e5d4v 65de e6979e 65de 000065de f249 f249 f249 f249 f249 f249 f249
+12440 f24a f24a f24a * * 6555 8ea2e5d5,8ea2e5d5v 65dd e6979d 65dd 000065dd f24a f24a f24a f24a f24a f24a f24a
+12441 f24b f24b f24b * * 6556 8ea2e5d6,8ea2e5d6v 66de e69b9e 66de 000066de f24b f24b f24b f24b f24b f24b f24b
+12442 f24c f24c f24c * * 6557 8ea2e5d7,8ea2e5d7v 6ae7 e6aba7 6ae7 00006ae7 f24c f24c f24c f24c f24c f24c f24c
+12443 f24d f24d f24d * * 6558 8ea2e5d8,8ea2e5d8v 6ae0 e6aba0 6ae0 00006ae0 f24d f24d f24d f24d f24d f24d f24d
+12444 f24e f24e f24e * * 6559 8ea2e5d9,8ea2e5d9v 6acc e6ab8c 6acc 00006acc f24e f24e f24e f24e f24e f24e f24e
+12445 f24f f24f f24f * * 655a 8ea2e5da,8ea2e5dav 6ad1 e6ab91 6ad1 00006ad1 f24f f24f f24f f24f f24f f24f f24f
+12446 f250 f250 f250 * * 655b 8ea2e5db,8ea2e5dbv 6ad9 e6ab99 6ad9 00006ad9 f250 f250 f250 f250 f250 f250 f250
+12447 f251 f251 f251 * * 655c 8ea2e5dc,8ea2e5dcv 6acb e6ab8b 6acb 00006acb f251 f251 f251 f251 f251 f251 f251
+12448 f252 f252 f252 * * 655d 8ea2e5dd,8ea2e5ddv 6adf e6ab9f 6adf 00006adf f252 f252 f252 f252 f252 f252 f252
+12449 f253 f253 f253 * * 655e 8ea2e5de,8ea2e5dev 6adc e6ab9c 6adc 00006adc f253 f253 f253 f253 f253 f253 f253
+12450 f254 f254 f254 * * 655f 8ea2e5df,8ea2e5dfv 6ad0 e6ab90 6ad0 00006ad0 f254 f254 f254 f254 f254 f254 f254
+12451 f255 f255 f255 * * 6560 8ea2e5e0,8ea2e5e0v 6aeb e6abab 6aeb 00006aeb f255 f255 f255 f255 f255 f255 f255
+12452 f256 f256 f256 * * 6561 8ea2e5e1,8ea2e5e1v 6acf e6ab8f 6acf 00006acf f256 f256 f256 f256 f256 f256 f256
+12453 f257 f257 f257 * * 6562 8ea2e5e2,8ea2e5e2v 6acd e6ab8d 6acd 00006acd f257 f257 f257 f257 f257 f257 f257
+12454 f258 f258 f258 * * 6563 8ea2e5e3,8ea2e5e3v 6ade e6ab9e 6ade 00006ade f258 f258 f258 f258 f258 f258 f258
+12455 f259 f259 f259 * * 6564 8ea2e5e4,8ea2e5e4v 6b60 e6ada0 6b60 00006b60 f259 f259 f259 f259 f259 f259 f259
+12456 f25a f25a f25a * * 6565 8ea2e5e5,8ea2e5e5v 6bb0 e6aeb0 6bb0 00006bb0 f25a f25a f25a f25a f25a f25a f25a
+12457 f25b f25b f25b * * 6566 8ea2e5e6,8ea2e5e6v 6c0c e6b08c 6c0c 00006c0c f25b f25b f25b f25b f25b f25b f25b
+12458 f25c f25c f25c * * 6567 8ea2e5e7,8ea2e5e7v 7019 e78099 7019 00007019 f25c f25c f25c f25c f25c f25c f25c
+12459 f25d f25d f25d * * 6568 8ea2e5e8,8ea2e5e8v 7027 e780a7 7027 00007027 f25d f25d f25d f25d f25d f25d f25d
+12460 f25e f25e f25e * * 6569 8ea2e5e9,8ea2e5e9v 7020 e780a0 7020 00007020 f25e f25e f25e f25e f25e f25e f25e
+12461 f25f f25f f25f * * 656a 8ea2e5ea,8ea2e5eav 7016 e78096 7016 00007016 f25f f25f f25f f25f f25f f25f f25f
+12462 f260 f260 f260 * * 656b 8ea2e5eb,8ea2e5ebv 702b e780ab 702b 0000702b f260 f260 f260 f260 f260 f260 f260
+12463 f261 f261 f261 * * 656c 8ea2e5ec,8ea2e5ecv 7021 e780a1 7021 00007021 f261 f261 f261 f261 f261 f261 f261
+12464 f262 f262 f262 * * 656d 8ea2e5ed,8ea2e5edv 7022 e780a2 7022 00007022 f262 f262 f262 f262 f262 f262 f262
+12465 f263 f263 f263 * * 656e 8ea2e5ee,8ea2e5eev 7023 e780a3 7023 00007023 f263 f263 f263 f263 f263 f263 f263
+12466 f264 f264 f264 * * 656f 8ea2e5ef,8ea2e5efv 7029 e780a9 7029 00007029 f264 f264 f264 f264 f264 f264 f264
+12467 f265 f265 f265 * * 6570 8ea2e5f0,8ea2e5f0v 7017 e78097 7017 00007017 f265 f265 f265 f265 f265 f265 f265
+12468 f266 f266 f266 * * 6571 8ea2e5f1,8ea2e5f1v 7024 e780a4 7024 00007024 f266 f266 f266 f266 f266 f266 f266
+12469 f267 f267 f267 * * 6572 8ea2e5f2,8ea2e5f2v 701c e7809c 701c 0000701c f267 f267 f267 f267 f267 f267 f267
+12470 f269 f269 f269 * * 6573 8ea2e5f3,8ea2e5f3v 720c e7888c 720c 0000720c f269 f269 f269 f269 f269 f269 f269
+12471 f26a f26a f26a * * 6574 8ea2e5f4,8ea2e5f4v 720a e7888a 720a 0000720a f26a f26a f26a f26a f26a f26a f26a
+12472 f26b f26b f26b * * 6575 8ea2e5f5,8ea2e5f5v 7207 e78887 7207 00007207 f26b f26b f26b f26b f26b f26b f26b
+12473 f26c f26c f26c * * 6576 8ea2e5f6,8ea2e5f6v 7202 e78882 7202 00007202 f26c f26c f26c f26c f26c f26c f26c
+12474 f26d f26d f26d * * 6577 8ea2e5f7,8ea2e5f7v 7205 e78885 7205 00007205 f26d f26d f26d f26d f26d f26d f26d
+12475 f26e f26e f26e * * 6578 8ea2e5f8,8ea2e5f8v 72a5 e78aa5 72a5 000072a5 f26e f26e f26e f26e f26e f26e f26e
+12476 f26f f26f f26f * * 6579 8ea2e5f9,8ea2e5f9v 72a6 e78aa6 72a6 000072a6 f26f f26f f26f f26f f26f f26f f26f
+12477 f270 f270 f270 * * 657a 8ea2e5fa,8ea2e5fav 72a4 e78aa4 72a4 000072a4 f270 f270 f270 f270 f270 f270 f270
+12478 f271 f271 f271 * * 657b 8ea2e5fb,8ea2e5fbv 72a3 e78aa3 72a3 000072a3 f271 f271 f271 f271 f271 f271 f271
+12479 f272 f272 f272 * * 657c 8ea2e5fc,8ea2e5fcv 72a1 e78aa1 72a1 000072a1 f272 f272 f272 f272 f272 f272 f272
+12480 f273 f273 f273 * * 657d 8ea2e5fd,8ea2e5fdv 74cb e7938b 74cb 000074cb f273 f273 f273 f273 f273 f273 f273
+12481 f274 f274 f274 * * 657e 8ea2e5fe,8ea2e5fev 74c5 e79385 74c5 000074c5 f274 f274 f274 f274 f274 f274 f274
+12482 f275 f275 f275 * * 6621 8ea2e6a1,8ea2e6a1v 74b7 e792b7 74b7 000074b7 f275 f275 f275 f275 f275 f275 f275
+12483 f276 f276 f276 * * 6622 8ea2e6a2,8ea2e6a2v 74c3 e79383 74c3 000074c3 f276 f276 f276 f276 f276 f276 f276
+12484 f277 f277 f277 * * 6623 8ea2e6a3,8ea2e6a3v 7516 e79496 7516 00007516 f277 f277 f277 f277 f277 f277 f277
+12485 f278 f278 f278 * * 6624 8ea2e6a4,8ea2e6a4v 7660 e799a0 7660 00007660 f278 f278 f278 f278 f278 f278 f278
+12486 f279 f279 f279 * * 6625 8ea2e6a5,8ea2e6a5v 77c9 e79f89 77c9 000077c9 f279 f279 f279 f279 f279 f279 f279
+12487 f27a f27a f27a * * 6626 8ea2e6a6,8ea2e6a6v 77ca e79f8a 77ca 000077ca f27a f27a f27a f27a f27a f27a f27a
+12488 f27b f27b f27b * * 6627 8ea2e6a7,8ea2e6a7v 77c4 e79f84 77c4 000077c4 f27b f27b f27b f27b f27b f27b f27b
+12489 f27c f27c f27c * * 6628 8ea2e6a8,8ea2e6a8v 77f1 e79fb1 77f1 000077f1 f27c f27c f27c f27c f27c f27c f27c
+12490 f27d f27d f27d * * 6629 8ea2e6a9,8ea2e6a9v 791d e7a49d 791d 0000791d f27d f27d f27d f27d f27d f27d f27d
+12491 f27e f27e f27e * * 662a 8ea2e6aa,8ea2e6aav 791b e7a49b 791b 0000791b f27e f27e f27e f27e f27e f27e f27e
+12492 f2a1 f2a1 f2a1 * * 662b 8ea2e6ab,8ea2e6abv 7921 e7a4a1 7921 00007921 f2a1 f2a1 f2a1 f2a1 f2a1 f2a1 f2a1
+12493 f2a2 f2a2 f2a2 * * 662c 8ea2e6ac,8ea2e6acv 791c e7a49c 791c 0000791c f2a2 f2a2 f2a2 f2a2 f2a2 f2a2 f2a2
+12494 f2a3 f2a3 f2a3 * * 662d 8ea2e6ad,8ea2e6adv 7917 e7a497 7917 00007917 f2a3 f2a3 f2a3 f2a3 f2a3 f2a3 f2a3
+12495 f2a4 f2a4 f2a4 * * 662e 8ea2e6ae,8ea2e6aev 791e e7a49e 791e 0000791e f2a4 f2a4 f2a4 f2a4 f2a4 f2a4 f2a4
+12496 f2a5 f2a5 f2a5 * * 662f 8ea2e6af,8ea2e6afv 79b0 e7a6b0 79b0 000079b0 f2a5 f2a5 f2a5 f2a5 f2a5 f2a5 f2a5
+12497 f2a6 f2a6 f2a6 * * 6630 8ea2e6b0,8ea2e6b0v 7a67 e7a9a7 7a67 00007a67 f2a6 f2a6 f2a6 f2a6 f2a6 f2a6 f2a6
+12498 f2a7 f2a7 f2a7 * * 6631 8ea2e6b1,8ea2e6b1v 7a68 e7a9a8 7a68 00007a68 f2a7 f2a7 f2a7 f2a7 f2a7 f2a7 f2a7
+12499 f2a8 f2a8 f2a8 * * 6632 8ea2e6b2,8ea2e6b2v 7c33 e7b0b3 7c33 00007c33 f2a8 f2a8 f2a8 f2a8 f2a8 f2a8 f2a8
+12500 f2a9 f2a9 f2a9 * * 6633 8ea2e6b3,8ea2e6b3v 7c3c e7b0bc 7c3c 00007c3c f2a9 f2a9 f2a9 f2a9 f2a9 f2a9 f2a9
+12501 f2aa f2aa f2aa * * 6634 8ea2e6b4,8ea2e6b4v 7c39 e7b0b9 7c39 00007c39 f2aa f2aa f2aa f2aa f2aa f2aa f2aa
+12502 f2ab f2ab f2ab * * 6635 8ea2e6b5,8ea2e6b5v 7c2c e7b0ac 7c2c 00007c2c f2ab f2ab f2ab f2ab f2ab f2ab f2ab
+12503 f2ac f2ac f2ac * * 6636 8ea2e6b6,8ea2e6b6v 7c3b e7b0bb 7c3b 00007c3b f2ac f2ac f2ac f2ac f2ac f2ac f2ac
+12504 f2ad f2ad f2ad * * 6637 8ea2e6b7,8ea2e6b7v 7cec e7b3ac 7cec 00007cec f2ad f2ad f2ad f2ad f2ad f2ad f2ad
+12505 f2ae f2ae f2ae * * 6638 8ea2e6b8,8ea2e6b8v 7cea e7b3aa 7cea 00007cea f2ae f2ae f2ae f2ae f2ae f2ae f2ae
+12506 f2af f2af f2af * * 6639 8ea2e6b9,8ea2e6b9v 7e76 e7b9b6 7e76 00007e76 f2af f2af f2af f2af f2af f2af f2af
+12507 f2b0 f2b0 f2b0 * * 663a 8ea2e6ba,8ea2e6bav 7e75 e7b9b5 7e75 00007e75 f2b0 f2b0 f2b0 f2b0 f2b0 f2b0 f2b0
+12508 f2b1 f2b1 f2b1 * * 663b 8ea2e6bb,8ea2e6bbv 7e78 e7b9b8 7e78 00007e78 f2b1 f2b1 f2b1 f2b1 f2b1 f2b1 f2b1
+12509 f2b2 f2b2 f2b2 * * 663c 8ea2e6bc,8ea2e6bcv 7e70 e7b9b0 7e70 00007e70 f2b2 f2b2 f2b2 f2b2 f2b2 f2b2 f2b2
+12510 f2b3 f2b3 f2b3 * * 663d 8ea2e6bd,8ea2e6bdv 7e77 e7b9b7 7e77 00007e77 f2b3 f2b3 f2b3 f2b3 f2b3 f2b3 f2b3
+12511 f2b4 f2b4 f2b4 * * 663e 8ea2e6be,8ea2e6bev 7e6f e7b9af 7e6f 00007e6f f2b4 f2b4 f2b4 f2b4 f2b4 f2b4 f2b4
+12512 f2b5 f2b5 f2b5 * * 663f 8ea2e6bf,8ea2e6bfv 7e7a e7b9ba 7e7a 00007e7a f2b5 f2b5 f2b5 f2b5 f2b5 f2b5 f2b5
+12513 f2b6 f2b6 f2b6 * * 6640 8ea2e6c0,8ea2e6c0v 7e72 e7b9b2 7e72 00007e72 f2b6 f2b6 f2b6 f2b6 f2b6 f2b6 f2b6
+12514 f2b7 f2b7 f2b7 * * 6641 8ea2e6c1,8ea2e6c1v 7e74 e7b9b4 7e74 00007e74 f2b7 f2b7 f2b7 f2b7 f2b7 f2b7 f2b7
+12515 f2b8 f2b8 f2b8 * * 6642 8ea2e6c2,8ea2e6c2v 7e68 e7b9a8 7e68 00007e68 f2b8 f2b8 f2b8 f2b8 f2b8 f2b8 f2b8
+12516 f2b9 f2b9 f2b9 * * 6643 8ea2e6c3,8ea2e6c3v 7f4b e7bd8b 7f4b 00007f4b f2b9 f2b9 f2b9 f2b9 f2b9 f2b9 f2b9
+12517 f2ba f2ba f2ba * * 6644 8ea2e6c4,8ea2e6c4v 7f4a e7bd8a 7f4a 00007f4a f2ba f2ba f2ba f2ba f2ba f2ba f2ba
+12518 f2bb f2bb f2bb * * 6645 8ea2e6c5,8ea2e6c5v 7f83 e7be83 7f83 00007f83 f2bb f2bb f2bb f2bb f2bb f2bb f2bb
+12519 f2bc f2bc f2bc * * 6646 8ea2e6c6,8ea2e6c6v 7f86 e7be86 7f86 00007f86 f2bc f2bc f2bc f2bc f2bc f2bc f2bc
+12520 f2bd f2bd f2bd * * 6647 8ea2e6c7,8ea2e6c7v 7fb7 e7beb7 7fb7 00007fb7 f2bd f2bd f2bd f2bd f2bd f2bd f2bd
+12521 f2be f2be f2be * * 6648 8ea2e6c8,8ea2e6c8v 7ffd e7bfbd 7ffd 00007ffd f2be f2be f2be f2be f2be f2be f2be
+12522 f2bf f2bf f2bf * * 6649 8ea2e6c9,8ea2e6c9v 7ffe e7bfbe 7ffe 00007ffe f2bf f2bf f2bf f2bf f2bf f2bf f2bf
+12523 f2c0 f2c0 f2c0 * * 664a 8ea2e6ca,8ea2e6cav 8078 e881b8 8078 00008078 f2c0 f2c0 f2c0 f2c0 f2c0 f2c0 f2c0
+12524 f2c1 f2c1 f2c1 * * 664b 8ea2e6cb,8ea2e6cbv 81d7 e88797 81d7 000081d7 f2c1 f2c1 f2c1 f2c1 f2c1 f2c1 f2c1
+12525 f2c2 f2c2 f2c2 * * 664c 8ea2e6cc,8ea2e6ccv 81d5 e88795 81d5 000081d5 f2c2 f2c2 f2c2 f2c2 f2c2 f2c2 f2c2
+12526 f4b5 f4b5 f4b5 * * 664d 8ea2e6cd,8ea2e6cdv 820b e8888b 820b 0000820b f4b5 f4b5 f4b5 f4b5 f4b5 f4b5 f4b5
+12527 f2c3 f2c3 f2c3 * * 664e 8ea2e6ce,8ea2e6cev 8264 e889a4 8264 00008264 f2c3 f2c3 f2c3 f2c3 f2c3 f2c3 f2c3
+12528 f2c4 f2c4 f2c4 * * 664f 8ea2e6cf,8ea2e6cfv 8261 e889a1 8261 00008261 f2c4 f2c4 f2c4 f2c4 f2c4 f2c4 f2c4
+12529 f2c5 f2c5 f2c5 * * 6650 8ea2e6d0,8ea2e6d0v 8263 e889a3 8263 00008263 f2c5 f2c5 f2c5 f2c5 f2c5 f2c5 f2c5
+12530 f2c6 f2c6 f2c6 * * 6651 8ea2e6d1,8ea2e6d1v 85eb e897ab 85eb 000085eb f2c6 f2c6 f2c6 f2c6 f2c6 f2c6 f2c6
+12531 f2c7 f2c7 f2c7 * * 6652 8ea2e6d2,8ea2e6d2v 85f1 e897b1 85f1 000085f1 f2c7 f2c7 f2c7 f2c7 f2c7 f2c7 f2c7
+12532 f2c8 f2c8 f2c8 * * 6653 8ea2e6d3,8ea2e6d3v 85ed e897ad 85ed 000085ed f2c8 f2c8 f2c8 f2c8 f2c8 f2c8 f2c8
+12533 f2c9 f2c9 f2c9 * * 6654 8ea2e6d4,8ea2e6d4v 85d9 e89799 85d9 000085d9 f2c9 f2c9 f2c9 f2c9 f2c9 f2c9 f2c9
+12534 f2ca f2ca f2ca * * 6655 8ea2e6d5,8ea2e6d5v 85e1 e897a1 85e1 000085e1 f2ca f2ca f2ca f2ca f2ca f2ca f2ca
+12535 f2cb f2cb f2cb * * 6656 8ea2e6d6,8ea2e6d6v 85e8 e897a8 85e8 000085e8 f2cb f2cb f2cb f2cb f2cb f2cb f2cb
+12536 f2cc f2cc f2cc * * 6657 8ea2e6d7,8ea2e6d7v 85da e8979a 85da 000085da f2cc f2cc f2cc f2cc f2cc f2cc f2cc
+12537 f2cd f2cd f2cd * * 6658 8ea2e6d8,8ea2e6d8v 85d7 e89797 85d7 000085d7 f2cd f2cd f2cd f2cd f2cd f2cd f2cd
+12538 f2ce f2ce f2ce * * 6659 8ea2e6d9,8ea2e6d9v 85ec e897ac 85ec 000085ec f2ce f2ce f2ce f2ce f2ce f2ce f2ce
+12539 f2cf f2cf f2cf * * 665a 8ea2e6da,8ea2e6dav 85f2 e897b2 85f2 000085f2 f2cf f2cf f2cf f2cf f2cf f2cf f2cf
+12540 f2d0 f2d0 f2d0 * * 665b 8ea2e6db,8ea2e6dbv 85f8 e897b8 85f8 000085f8 f2d0 f2d0 f2d0 f2d0 f2d0 f2d0 f2d0
+12541 f2d1 f2d1 f2d1 * * 665c 8ea2e6dc,8ea2e6dcv 85d8 e89798 85d8 000085d8 f2d1 f2d1 f2d1 f2d1 f2d1 f2d1 f2d1
+12542 f2d2 f2d2 f2d2 * * 665d 8ea2e6dd,8ea2e6ddv 85df e8979f 85df 000085df f2d2 f2d2 f2d2 f2d2 f2d2 f2d2 f2d2
+12543 f2d3 f2d3 f2d3 * * 665e 8ea2e6de,8ea2e6dev 85e3 e897a3 85e3 000085e3 f2d3 f2d3 f2d3 f2d3 f2d3 f2d3 f2d3
+12544 f2d4 f2d4 f2d4 * * 665f 8ea2e6df,8ea2e6dfv 85dc e8979c 85dc 000085dc f2d4 f2d4 f2d4 f2d4 f2d4 f2d4 f2d4
+12545 f2d5 f2d5 f2d5 * * 6660 8ea2e6e0,8ea2e6e0v 85d1 e89791 85d1 000085d1 f2d5 f2d5 f2d5 f2d5 f2d5 f2d5 f2d5
+12546 f2d6 f2d6 f2d6 * * 6661 8ea2e6e1,8ea2e6e1v 85f0 e897b0 85f0 000085f0 f2d6 f2d6 f2d6 f2d6 f2d6 f2d6 f2d6
+12547 f2d7 f2d7 f2d7 * * 6662 8ea2e6e2,8ea2e6e2v 85e6 e897a6 85e6 000085e6 f2d7 f2d7 f2d7 f2d7 f2d7 f2d7 f2d7
+12548 f2d8 f2d8 f2d8 * * 6663 8ea2e6e3,8ea2e6e3v 85ef e897af 85ef 000085ef f2d8 f2d8 f2d8 f2d8 f2d8 f2d8 f2d8
+12549 f2d9 f2d9 f2d9 * * 6664 8ea2e6e4,8ea2e6e4v 85de e8979e 85de 000085de f2d9 f2d9 f2d9 f2d9 f2d9 f2d9 f2d9
+12550 f2da f2da f2da * * 6665 8ea2e6e5,8ea2e6e5v 85e2 e897a2 85e2 000085e2 f2da f2da f2da f2da f2da f2da f2da
+12551 f2db f2db f2db * * 6666 8ea2e6e6,8ea2e6e6v 8800 e8a080 8800 00008800 f2db f2db f2db f2db f2db f2db f2db
+12552 f2dc f2dc f2dc * * 6667 8ea2e6e7,8ea2e6e7v 87fa e89fba 87fa 000087fa f2dc f2dc f2dc f2dc f2dc f2dc f2dc
+12553 f2dd f2dd f2dd * * 6668 8ea2e6e8,8ea2e6e8v 8803 e8a083 8803 00008803 f2dd f2dd f2dd f2dd f2dd f2dd f2dd
+12554 f2de f2de f2de * * 6669 8ea2e6e9,8ea2e6e9v 87f6 e89fb6 87f6 000087f6 f2de f2de f2de f2de f2de f2de f2de
+12555 f2df f2df f2df * * 666a 8ea2e6ea,8ea2e6eav 87f7 e89fb7 87f7 000087f7 f2df f2df f2df f2df f2df f2df f2df
+12556 f2e0 f2e0 f2e0 * * 666b 8ea2e6eb,8ea2e6ebv 8809 e8a089 8809 00008809 f2e0 f2e0 f2e0 f2e0 f2e0 f2e0 f2e0
+12557 f2e1 f2e1 f2e1 * * 666c 8ea2e6ec,8ea2e6ecv 880c e8a08c 880c 0000880c f2e1 f2e1 f2e1 f2e1 f2e1 f2e1 f2e1
+12558 f2e2 f2e2 f2e2 * * 666d 8ea2e6ed,8ea2e6edv 880b e8a08b 880b 0000880b f2e2 f2e2 f2e2 f2e2 f2e2 f2e2 f2e2
+12559 f2e3 f2e3 f2e3 * * 666e 8ea2e6ee,8ea2e6eev 8806 e8a086 8806 00008806 f2e3 f2e3 f2e3 f2e3 f2e3 f2e3 f2e3
+12560 f2e4 f2e4 f2e4 * * 666f 8ea2e6ef,8ea2e6efv 87fc e89fbc 87fc 000087fc f2e4 f2e4 f2e4 f2e4 f2e4 f2e4 f2e4
+12561 f2e5 f2e5 f2e5 * * 6670 8ea2e6f0,8ea2e6f0v 8808 e8a088 8808 00008808 f2e5 f2e5 f2e5 f2e5 f2e5 f2e5 f2e5
+12562 f2e6 f2e6 f2e6 * * 6671 8ea2e6f1,8ea2e6f1v 87ff e89fbf 87ff 000087ff f2e6 f2e6 f2e6 f2e6 f2e6 f2e6 f2e6
+12563 f2e7 f2e7 f2e7 * * 6672 8ea2e6f2,8ea2e6f2v 880a e8a08a 880a 0000880a f2e7 f2e7 f2e7 f2e7 f2e7 f2e7 f2e7
+12564 f2e8 f2e8 f2e8 * * 6673 8ea2e6f3,8ea2e6f3v 8802 e8a082 8802 00008802 f2e8 f2e8 f2e8 f2e8 f2e8 f2e8 f2e8
+12565 f2e9 f2e9 f2e9 * * 6674 8ea2e6f4,8ea2e6f4v 8962 e8a5a2 8962 00008962 f2e9 f2e9 f2e9 f2e9 f2e9 f2e9 f2e9
+12566 f2ea f2ea f2ea * * 6675 8ea2e6f5,8ea2e6f5v 895a e8a59a 895a 0000895a f2ea f2ea f2ea f2ea f2ea f2ea f2ea
+12567 f2eb f2eb f2eb * * 6676 8ea2e6f6,8ea2e6f6v 895b e8a59b 895b 0000895b f2eb f2eb f2eb f2eb f2eb f2eb f2eb
+12568 f2ec f2ec f2ec * * 6677 8ea2e6f7,8ea2e6f7v 8957 e8a597 8957 00008957 f2ec f2ec f2ec f2ec f2ec f2ec f2ec
+12569 f2ed f2ed f2ed * * 6678 8ea2e6f8,8ea2e6f8v 8961 e8a5a1 8961 00008961 f2ed f2ed f2ed f2ed f2ed f2ed f2ed
+12570 f2ee f2ee f2ee * * 6679 8ea2e6f9,8ea2e6f9v 895c e8a59c 895c 0000895c f2ee f2ee f2ee f2ee f2ee f2ee f2ee
+12571 f2ef f2ef f2ef * * 667a 8ea2e6fa,8ea2e6fav 8958 e8a598 8958 00008958 f2ef f2ef f2ef f2ef f2ef f2ef f2ef
+12572 f2f0 f2f0 f2f0 * * 667b 8ea2e6fb,8ea2e6fbv 895d e8a59d 895d 0000895d f2f0 f2f0 f2f0 f2f0 f2f0 f2f0 f2f0
+12573 f2f1 f2f1 f2f1 * * 667c 8ea2e6fc,8ea2e6fcv 8959 e8a599 8959 00008959 f2f1 f2f1 f2f1 f2f1 f2f1 f2f1 f2f1
+12574 f2f2 f2f2 f2f2 * * 667d 8ea2e6fd,8ea2e6fdv 8988 e8a688 8988 00008988 f2f2 f2f2 f2f2 f2f2 f2f2 f2f2 f2f2
+12575 f2f3 f2f3 f2f3 * * 667e 8ea2e6fe,8ea2e6fev 89b7 e8a6b7 89b7 000089b7 f2f3 f2f3 f2f3 f2f3 f2f3 f2f3 f2f3
+12576 f2f4 f2f4 f2f4 * * 6721 8ea2e7a1,8ea2e7a1v 89b6 e8a6b6 89b6 000089b6 f2f4 f2f4 f2f4 f2f4 f2f4 f2f4 f2f4
+12577 f2f5 f2f5 f2f5 * * 6722 8ea2e7a2,8ea2e7a2v 89f6 e8a7b6 89f6 000089f6 f2f5 f2f5 f2f5 f2f5 f2f5 f2f5 f2f5
+12578 f2f6 f2f6 f2f6 * * 6723 8ea2e7a3,8ea2e7a3v 8b50 e8ad90 8b50 00008b50 f2f6 f2f6 f2f6 f2f6 f2f6 f2f6 f2f6
+12579 f2f7 f2f7 f2f7 * * 6724 8ea2e7a4,8ea2e7a4v 8b48 e8ad88 8b48 00008b48 f2f7 f2f7 f2f7 f2f7 f2f7 f2f7 f2f7
+12580 f2f8 f2f8 f2f8 * * 6725 8ea2e7a5,8ea2e7a5v 8b4a e8ad8a 8b4a 00008b4a f2f8 f2f8 f2f8 f2f8 f2f8 f2f8 f2f8
+12581 f2f9 f2f9 f2f9 * * 6726 8ea2e7a6,8ea2e7a6v 8b40 e8ad80 8b40 00008b40 f2f9 f2f9 f2f9 f2f9 f2f9 f2f9 f2f9
+12582 f2fa f2fa f2fa * * 6727 8ea2e7a7,8ea2e7a7v 8b53 e8ad93 8b53 00008b53 f2fa f2fa f2fa f2fa f2fa f2fa f2fa
+12583 f2fb f2fb f2fb * * 6728 8ea2e7a8,8ea2e7a8v 8b56 e8ad96 8b56 00008b56 f2fb f2fb f2fb f2fb f2fb f2fb f2fb
+12584 f2fc f2fc f2fc * * 6729 8ea2e7a9,8ea2e7a9v 8b54 e8ad94 8b54 00008b54 f2fc f2fc f2fc f2fc f2fc f2fc f2fc
+12585 f2fd f2fd f2fd * * 672a 8ea2e7aa,8ea2e7aav 8b4b e8ad8b 8b4b 00008b4b f2fd f2fd f2fd f2fd f2fd f2fd f2fd
+12586 f2fe f2fe f2fe * * 672b 8ea2e7ab,8ea2e7abv 8b55 e8ad95 8b55 00008b55 f2fe f2fe f2fe f2fe f2fe f2fe f2fe
+12587 f340 f340 f340 * * 672c 8ea2e7ac,8ea2e7acv 8b51 e8ad91 8b51 00008b51 f340 f340 f340 f340 f340 f340 f340
+12588 f341 f341 f341 * * 672d 8ea2e7ad,8ea2e7adv 8b42 e8ad82 8b42 00008b42 f341 f341 f341 f341 f341 f341 f341
+12589 f342 f342 f342 * * 672e 8ea2e7ae,8ea2e7aev 8b52 e8ad92 8b52 00008b52 f342 f342 f342 f342 f342 f342 f342
+12590 f343 f343 f343 * * 672f 8ea2e7af,8ea2e7afv 8b57 e8ad97 8b57 00008b57 f343 f343 f343 f343 f343 f343 f343
+12591 f344 f344 f344 * * 6730 8ea2e7b0,8ea2e7b0v 8c43 e8b183 8c43 00008c43 f344 f344 f344 f344 f344 f344 f344
+12592 f345 f345 f345 * * 6731 8ea2e7b1,8ea2e7b1v 8c77 e8b1b7 8c77 00008c77 f345 f345 f345 f345 f345 f345 f345
+12593 f346 f346 f346 * * 6732 8ea2e7b2,8ea2e7b2v 8c76 e8b1b6 8c76 00008c76 f346 f346 f346 f346 f346 f346 f346
+12594 f347 f347 f347 * * 6733 8ea2e7b3,8ea2e7b3v 8c9a e8b29a 8c9a 00008c9a f347 f347 f347 f347 f347 f347 f347
+12595 f348 f348 f348 * * 6734 8ea2e7b4,8ea2e7b4v 8d06 e8b486 8d06 00008d06 f348 f348 f348 f348 f348 f348 f348
+12596 f349 f349 f349 * * 6735 8ea2e7b5,8ea2e7b5v 8d07 e8b487 8d07 00008d07 f349 f349 f349 f349 f349 f349 f349
+12597 f34a f34a f34a * * 6736 8ea2e7b6,8ea2e7b6v 8d09 e8b489 8d09 00008d09 f34a f34a f34a f34a f34a f34a f34a
+12598 f34b f34b f34b * * 6737 8ea2e7b7,8ea2e7b7v 8dac e8b6ac 8dac 00008dac f34b f34b f34b f34b f34b f34b f34b
+12599 f34c f34c f34c * * 6738 8ea2e7b8,8ea2e7b8v 8daa e8b6aa 8daa 00008daa f34c f34c f34c f34c f34c f34c f34c
+12600 f34d f34d f34d * * 6739 8ea2e7b9,8ea2e7b9v 8dad e8b6ad 8dad 00008dad f34d f34d f34d f34d f34d f34d f34d
+12601 f34e f34e f34e * * 673a 8ea2e7ba,8ea2e7bav 8dab e8b6ab 8dab 00008dab f34e f34e f34e f34e f34e f34e f34e
+12602 f34f f34f f34f * * 673b 8ea2e7bb,8ea2e7bbv 8e6d e8b9ad 8e6d 00008e6d f34f f34f f34f f34f f34f f34f f34f
+12603 f350 f350 f350 * * 673c 8ea2e7bc,8ea2e7bcv 8e78 e8b9b8 8e78 00008e78 f350 f350 f350 f350 f350 f350 f350
+12604 f351 f351 f351 * * 673d 8ea2e7bd,8ea2e7bdv 8e73 e8b9b3 8e73 00008e73 f351 f351 f351 f351 f351 f351 f351
+12605 f352 f352 f352 * * 673e 8ea2e7be,8ea2e7bev 8e6a e8b9aa 8e6a 00008e6a f352 f352 f352 f352 f352 f352 f352
+12606 f353 f353 f353 * * 673f 8ea2e7bf,8ea2e7bfv 8e6f e8b9af 8e6f 00008e6f f353 f353 f353 f353 f353 f353 f353
+12607 f354 f354 f354 * * 6740 8ea2e7c0,8ea2e7c0v 8e7b e8b9bb 8e7b 00008e7b f354 f354 f354 f354 f354 f354 f354
+12608 f355 f355 f355 * * 6741 8ea2e7c1,8ea2e7c1v 8ec2 e8bb82 8ec2 00008ec2 f355 f355 f355 f355 f355 f355 f355
+12609 f356 f356 f356 * * 6742 8ea2e7c2,8ea2e7c2v 8f52 e8bd92 8f52 00008f52 f356 f356 f356 f356 f356 f356 f356
+12610 f357 f357 f357 * * 6743 8ea2e7c3,8ea2e7c3v 8f51 e8bd91 8f51 00008f51 f357 f357 f357 f357 f357 f357 f357
+12611 f358 f358 f358 * * 6744 8ea2e7c4,8ea2e7c4v 8f4f e8bd8f 8f4f 00008f4f f358 f358 f358 f358 f358 f358 f358
+12612 f359 f359 f359 * * 6745 8ea2e7c5,8ea2e7c5v 8f50 e8bd90 8f50 00008f50 f359 f359 f359 f359 f359 f359 f359
+12613 f35a f35a f35a * * 6746 8ea2e7c6,8ea2e7c6v 8f53 e8bd93 8f53 00008f53 f35a f35a f35a f35a f35a f35a f35a
+12614 f35b f35b f35b * * 6747 8ea2e7c7,8ea2e7c7v 8fb4 e8beb4 8fb4 00008fb4 f35b f35b f35b f35b f35b f35b f35b
+12615 f35c f35c f35c * * 6748 8ea2e7c8,8ea2e7c8v 9140 e98580 9140 00009140 f35c f35c f35c f35c f35c f35c f35c
+12616 f35d f35d f35d * * 6749 8ea2e7c9,8ea2e7c9v 913f e984bf 913f 0000913f f35d f35d f35d f35d f35d f35d f35d
+12617 f35e f35e f35e * * 674a 8ea2e7ca,8ea2e7cav 91b0 e986b0 91b0 000091b0 f35e f35e f35e f35e f35e f35e f35e
+12618 f35f f35f f35f * * 674b 8ea2e7cb,8ea2e7cbv 91ad e986ad 91ad 000091ad f35f f35f f35f f35f f35f f35f f35f
+12619 f360 f360 f360 * * 674c 8ea2e7cc,8ea2e7ccv 93de e98f9e 93de 000093de f360 f360 f360 f360 f360 f360 f360
+12620 f361 f361 f361 * * 674d 8ea2e7cd,8ea2e7cdv 93c7 e98f87 93c7 000093c7 f361 f361 f361 f361 f361 f361 f361
+12621 f362 f362 f362 * * 674e 8ea2e7ce,8ea2e7cev 93cf e98f8f 93cf 000093cf f362 f362 f362 f362 f362 f362 f362
+12622 f363 f363 f363 * * 674f 8ea2e7cf,8ea2e7cfv 93c2 e98f82 93c2 000093c2 f363 f363 f363 f363 f363 f363 f363
+12623 f364 f364 f364 * * 6750 8ea2e7d0,8ea2e7d0v 93da e98f9a 93da 000093da f364 f364 f364 f364 f364 f364 f364
+12624 f365 f365 f365 * * 6751 8ea2e7d1,8ea2e7d1v 93d0 e98f90 93d0 000093d0 f365 f365 f365 f365 f365 f365 f365
+12625 f366 f366 f366 * * 6752 8ea2e7d2,8ea2e7d2v 93f9 e98fb9 93f9 000093f9 f366 f366 f366 f366 f366 f366 f366
+12626 f367 f367 f367 * * 6753 8ea2e7d3,8ea2e7d3v 93ec e98fac 93ec 000093ec f367 f367 f367 f367 f367 f367 f367
+12627 f368 f368 f368 * * 6754 8ea2e7d4,8ea2e7d4v 93cc e98f8c 93cc 000093cc f368 f368 f368 f368 f368 f368 f368
+12628 f369 f369 f369 * * 6755 8ea2e7d5,8ea2e7d5v 93d9 e98f99 93d9 000093d9 f369 f369 f369 f369 f369 f369 f369
+12629 f36a f36a f36a * * 6756 8ea2e7d6,8ea2e7d6v 93a9 e98ea9 93a9 000093a9 f36a f36a f36a f36a f36a f36a f36a
+12630 f36b f36b f36b * * 6757 8ea2e7d7,8ea2e7d7v 93e6 e98fa6 93e6 000093e6 f36b f36b f36b f36b f36b f36b f36b
+12631 f36c f36c f36c * * 6758 8ea2e7d8,8ea2e7d8v 93ca e98f8a 93ca 000093ca f36c f36c f36c f36c f36c f36c f36c
+12632 f36d f36d f36d * * 6759 8ea2e7d9,8ea2e7d9v 93d4 e98f94 93d4 000093d4 f36d f36d f36d f36d f36d f36d f36d
+12633 f36e f36e f36e * * 675a 8ea2e7da,8ea2e7dav 93ee e98fae 93ee 000093ee f36e f36e f36e f36e f36e f36e f36e
+12634 f36f f36f f36f * * 675b 8ea2e7db,8ea2e7dbv 93e3 e98fa3 93e3 000093e3 f36f f36f f36f f36f f36f f36f f36f
+12635 f370 f370 f370 * * 675c 8ea2e7dc,8ea2e7dcv 93d5 e98f95 93d5 000093d5 f370 f370 f370 f370 f370 f370 f370
+12636 f371 f371 f371 * * 675d 8ea2e7dd,8ea2e7ddv 93c4 e98f84 93c4 000093c4 f371 f371 f371 f371 f371 f371 f371
+12637 f372 f372 f372 * * 675e 8ea2e7de,8ea2e7dev 93ce e98f8e 93ce 000093ce f372 f372 f372 f372 f372 f372 f372
+12638 f373 f373 f373 * * 675f 8ea2e7df,8ea2e7dfv 93c0 e98f80 93c0 000093c0 f373 f373 f373 f373 f373 f373 f373
+12639 f374 f374 f374 * * 6760 8ea2e7e0,8ea2e7e0v 93d2 e98f92 93d2 000093d2 f374 f374 f374 f374 f374 f374 f374
+12640 f16b f16b f16b * * 6761 8ea2e7e1,8ea2e7e1v 93a5 e98ea5 93a5 000093a5 f16b f16b f16b f16b f16b f16b f16b
+12641 f375 f375 f375 * * 6762 8ea2e7e2,8ea2e7e2v 93e7 e98fa7 93e7 000093e7 f375 f375 f375 f375 f375 f375 f375
+12642 f376 f376 f376 * * 6763 8ea2e7e3,8ea2e7e3v 957d e995bd 957d 0000957d f376 f376 f376 f376 f376 f376 f376
+12643 f377 f377 f377 * * 6764 8ea2e7e4,8ea2e7e4v 95da e9979a 95da 000095da f377 f377 f377 f377 f377 f377 f377
+12644 f378 f378 f378 * * 6765 8ea2e7e5,8ea2e7e5v 95db e9979b 95db 000095db f378 f378 f378 f378 f378 f378 f378
+12645 f379 f379 f379 * * 6766 8ea2e7e6,8ea2e7e6v 96e1 e99ba1 96e1 000096e1 f379 f379 f379 f379 f379 f379 f379
+12646 f37a f37a f37a * * 6767 8ea2e7e7,8ea2e7e7v 9729 e99ca9 9729 00009729 f37a f37a f37a f37a f37a f37a f37a
+12647 f37b f37b f37b * * 6768 8ea2e7e8,8ea2e7e8v 972b e99cab 972b 0000972b f37b f37b f37b f37b f37b f37b f37b
+12648 f37c f37c f37c * * 6769 8ea2e7e9,8ea2e7e9v 972c e99cac 972c 0000972c f37c f37c f37c f37c f37c f37c f37c
+12649 f37d f37d f37d * * 676a 8ea2e7ea,8ea2e7eav 9728 e99ca8 9728 00009728 f37d f37d f37d f37d f37d f37d f37d
+12650 f37e f37e f37e * * 676b 8ea2e7eb,8ea2e7ebv 9726 e99ca6 9726 00009726 f37e f37e f37e f37e f37e f37e f37e
+12651 f3a1 f3a1 f3a1 * * 676c 8ea2e7ec,8ea2e7ecv 97b3 e99eb3 97b3 000097b3 f3a1 f3a1 f3a1 f3a1 f3a1 f3a1 f3a1
+12652 f3a2 f3a2 f3a2 * * 676d 8ea2e7ed,8ea2e7edv 97b7 e99eb7 97b7 000097b7 f3a2 f3a2 f3a2 f3a2 f3a2 f3a2 f3a2
+12653 f3a3 f3a3 f3a3 * * 676e 8ea2e7ee,8ea2e7eev 97b6 e99eb6 97b6 000097b6 f3a3 f3a3 f3a3 f3a3 f3a3 f3a3 f3a3
+12654 f3a4 f3a4 f3a4 * * 676f 8ea2e7ef,8ea2e7efv 97dd e99f9d 97dd 000097dd f3a4 f3a4 f3a4 f3a4 f3a4 f3a4 f3a4
+12655 f3a5 f3a5 f3a5 * * 6770 8ea2e7f0,8ea2e7f0v 97de e99f9e 97de 000097de f3a5 f3a5 f3a5 f3a5 f3a5 f3a5 f3a5
+12656 f3a6 f3a6 f3a6 * * 6771 8ea2e7f1,8ea2e7f1v 97df e99f9f 97df 000097df f3a6 f3a6 f3a6 f3a6 f3a6 f3a6 f3a6
+12657 f3a7 f3a7 f3a7 * * 6772 8ea2e7f2,8ea2e7f2v 985c e9a19c 985c 0000985c f3a7 f3a7 f3a7 f3a7 f3a7 f3a7 f3a7
+12658 f3a8 f3a8 f3a8 * * 6773 8ea2e7f3,8ea2e7f3v 9859 e9a199 9859 00009859 f3a8 f3a8 f3a8 f3a8 f3a8 f3a8 f3a8
+12659 f3a9 f3a9 f3a9 * * 6774 8ea2e7f4,8ea2e7f4v 985d e9a19d 985d 0000985d f3a9 f3a9 f3a9 f3a9 f3a9 f3a9 f3a9
+12660 f3aa f3aa f3aa * * 6775 8ea2e7f5,8ea2e7f5v 9857 e9a197 9857 00009857 f3aa f3aa f3aa f3aa f3aa f3aa f3aa
+12661 f3ab f3ab f3ab * * 6776 8ea2e7f6,8ea2e7f6v 98bf e9a2bf 98bf 000098bf f3ab f3ab f3ab f3ab f3ab f3ab f3ab
+12662 f3ac f3ac f3ac * * 6777 8ea2e7f7,8ea2e7f7v 98bd e9a2bd 98bd 000098bd f3ac f3ac f3ac f3ac f3ac f3ac f3ac
+12663 f3ad f3ad f3ad * * 6778 8ea2e7f8,8ea2e7f8v 98bb e9a2bb 98bb 000098bb f3ad f3ad f3ad f3ad f3ad f3ad f3ad
+12664 f3ae f3ae f3ae * * 6779 8ea2e7f9,8ea2e7f9v 98be e9a2be 98be 000098be f3ae f3ae f3ae f3ae f3ae f3ae f3ae
+12665 f3af f3af f3af * * 677a 8ea2e7fa,8ea2e7fav 9948 e9a588 9948 00009948 f3af f3af f3af f3af f3af f3af f3af
+12666 f3b0 f3b0 f3b0 * * 677b 8ea2e7fb,8ea2e7fbv 9947 e9a587 9947 00009947 f3b0 f3b0 f3b0 f3b0 f3b0 f3b0 f3b0
+12667 f3b1 f3b1 f3b1 * * 677c 8ea2e7fc,8ea2e7fcv 9943 e9a583 9943 00009943 f3b1 f3b1 f3b1 f3b1 f3b1 f3b1 f3b1
+12668 f3b2 f3b2 f3b2 * * 677d 8ea2e7fd,8ea2e7fdv 99a6 e9a6a6 99a6 000099a6 f3b2 f3b2 f3b2 f3b2 f3b2 f3b2 f3b2
+12669 f3b3 f3b3 f3b3 * * 677e 8ea2e7fe,8ea2e7fev 99a7 e9a6a7 99a7 000099a7 f3b3 f3b3 f3b3 f3b3 f3b3 f3b3 f3b3
+12670 f3b4 f3b4 f3b4 * * 6821 8ea2e8a1,8ea2e8a1v 9a1a e9a89a 9a1a 00009a1a f3b4 f3b4 f3b4 f3b4 f3b4 f3b4 f3b4
+12671 f3b5 f3b5 f3b5 * * 6822 8ea2e8a2,8ea2e8a2v 9a15 e9a895 9a15 00009a15 f3b5 f3b5 f3b5 f3b5 f3b5 f3b5 f3b5
+12672 f3b6 f3b6 f3b6 * * 6823 8ea2e8a3,8ea2e8a3v 9a25 e9a8a5 9a25 00009a25 f3b6 f3b6 f3b6 f3b6 f3b6 f3b6 f3b6
+12673 f3b7 f3b7 f3b7 * * 6824 8ea2e8a4,8ea2e8a4v 9a1d e9a89d 9a1d 00009a1d f3b7 f3b7 f3b7 f3b7 f3b7 f3b7 f3b7
+12674 f3b8 f3b8 f3b8 * * 6825 8ea2e8a5,8ea2e8a5v 9a24 e9a8a4 9a24 00009a24 f3b8 f3b8 f3b8 f3b8 f3b8 f3b8 f3b8
+12675 f3b9 f3b9 f3b9 * * 6826 8ea2e8a6,8ea2e8a6v 9a1b e9a89b 9a1b 00009a1b f3b9 f3b9 f3b9 f3b9 f3b9 f3b9 f3b9
+12676 f3ba f3ba f3ba * * 6827 8ea2e8a7,8ea2e8a7v 9a22 e9a8a2 9a22 00009a22 f3ba f3ba f3ba f3ba f3ba f3ba f3ba
+12677 f3bb f3bb f3bb * * 6828 8ea2e8a8,8ea2e8a8v 9a20 e9a8a0 9a20 00009a20 f3bb f3bb f3bb f3bb f3bb f3bb f3bb
+12678 f3bc f3bc f3bc * * 6829 8ea2e8a9,8ea2e8a9v 9a27 e9a8a7 9a27 00009a27 f3bc f3bc f3bc f3bc f3bc f3bc f3bc
+12679 f3bd f3bd f3bd * * 682a 8ea2e8aa,8ea2e8aav 9a23 e9a8a3 9a23 00009a23 f3bd f3bd f3bd f3bd f3bd f3bd f3bd
+12680 f3be f3be f3be * * 682b 8ea2e8ab,8ea2e8abv 9a1e e9a89e 9a1e 00009a1e f3be f3be f3be f3be f3be f3be f3be
+12681 f3bf f3bf f3bf * * 682c 8ea2e8ac,8ea2e8acv 9a1c e9a89c 9a1c 00009a1c f3bf f3bf f3bf f3bf f3bf f3bf f3bf
+12682 f3c0 f3c0 f3c0 * * 682d 8ea2e8ad,8ea2e8adv 9a14 e9a894 9a14 00009a14 f3c0 f3c0 f3c0 f3c0 f3c0 f3c0 f3c0
+12683 f3c1 f3c1 f3c1 * * 682e 8ea2e8ae,8ea2e8aev 9ac2 e9ab82 9ac2 00009ac2 f3c1 f3c1 f3c1 f3c1 f3c1 f3c1 f3c1
+12684 f3c2 f3c2 f3c2 * * 682f 8ea2e8af,8ea2e8afv 9b0b e9ac8b 9b0b 00009b0b f3c2 f3c2 f3c2 f3c2 f3c2 f3c2 f3c2
+12685 f3c3 f3c3 f3c3 * * 6830 8ea2e8b0,8ea2e8b0v 9b0a e9ac8a 9b0a 00009b0a f3c3 f3c3 f3c3 f3c3 f3c3 f3c3 f3c3
+12686 f3c4 f3c4 f3c4 * * 6831 8ea2e8b1,8ea2e8b1v 9b0e e9ac8e 9b0e 00009b0e f3c4 f3c4 f3c4 f3c4 f3c4 f3c4 f3c4
+12687 f3c5 f3c5 f3c5 * * 6832 8ea2e8b2,8ea2e8b2v 9b0c e9ac8c 9b0c 00009b0c f3c5 f3c5 f3c5 f3c5 f3c5 f3c5 f3c5
+12688 f3c6 f3c6 f3c6 * * 6833 8ea2e8b3,8ea2e8b3v 9b37 e9acb7 9b37 00009b37 f3c6 f3c6 f3c6 f3c6 f3c6 f3c6 f3c6
+12689 f3c7 f3c7 f3c7 * * 6834 8ea2e8b4,8ea2e8b4v 9bea e9afaa 9bea 00009bea f3c7 f3c7 f3c7 f3c7 f3c7 f3c7 f3c7
+12690 f3c8 f3c8 f3c8 * * 6835 8ea2e8b5,8ea2e8b5v 9beb e9afab 9beb 00009beb f3c8 f3c8 f3c8 f3c8 f3c8 f3c8 f3c8
+12691 f3c9 f3c9 f3c9 * * 6836 8ea2e8b6,8ea2e8b6v 9be0 e9afa0 9be0 00009be0 f3c9 f3c9 f3c9 f3c9 f3c9 f3c9 f3c9
+12692 f3ca f3ca f3ca * * 6837 8ea2e8b7,8ea2e8b7v 9bde e9af9e 9bde 00009bde f3ca f3ca f3ca f3ca f3ca f3ca f3ca
+12693 f3cb f3cb f3cb * * 6838 8ea2e8b8,8ea2e8b8v 9be4 e9afa4 9be4 00009be4 f3cb f3cb f3cb f3cb f3cb f3cb f3cb
+12694 f3cc f3cc f3cc * * 6839 8ea2e8b9,8ea2e8b9v 9be6 e9afa6 9be6 00009be6 f3cc f3cc f3cc f3cc f3cc f3cc f3cc
+12695 f3cd f3cd f3cd * * 683a 8ea2e8ba,8ea2e8bav 9be2 e9afa2 9be2 00009be2 f3cd f3cd f3cd f3cd f3cd f3cd f3cd
+12696 f3ce f3ce f3ce * * 683b 8ea2e8bb,8ea2e8bbv 9bf0 e9afb0 9bf0 00009bf0 f3ce f3ce f3ce f3ce f3ce f3ce f3ce
+12697 f3cf f3cf f3cf * * 683c 8ea2e8bc,8ea2e8bcv 9bd4 e9af94 9bd4 00009bd4 f3cf f3cf f3cf f3cf f3cf f3cf f3cf
+12698 f3d0 f3d0 f3d0 * * 683d 8ea2e8bd,8ea2e8bdv 9bd7 e9af97 9bd7 00009bd7 f3d0 f3d0 f3d0 f3d0 f3d0 f3d0 f3d0
+12699 f3d1 f3d1 f3d1 * * 683e 8ea2e8be,8ea2e8bev 9bec e9afac 9bec 00009bec f3d1 f3d1 f3d1 f3d1 f3d1 f3d1 f3d1
+12700 f3d2 f3d2 f3d2 * * 683f 8ea2e8bf,8ea2e8bfv 9bdc e9af9c 9bdc 00009bdc f3d2 f3d2 f3d2 f3d2 f3d2 f3d2 f3d2
+12701 f3d3 f3d3 f3d3 * * 6840 8ea2e8c0,8ea2e8c0v 9bd9 e9af99 9bd9 00009bd9 f3d3 f3d3 f3d3 f3d3 f3d3 f3d3 f3d3
+12702 f3d4 f3d4 f3d4 * * 6841 8ea2e8c1,8ea2e8c1v 9be5 e9afa5 9be5 00009be5 f3d4 f3d4 f3d4 f3d4 f3d4 f3d4 f3d4
+12703 f3d5 f3d5 f3d5 * * 6842 8ea2e8c2,8ea2e8c2v 9bd5 e9af95 9bd5 00009bd5 f3d5 f3d5 f3d5 f3d5 f3d5 f3d5 f3d5
+12704 f3d6 f3d6 f3d6 * * 6843 8ea2e8c3,8ea2e8c3v 9be1 e9afa1 9be1 00009be1 f3d6 f3d6 f3d6 f3d6 f3d6 f3d6 f3d6
+12705 f3d7 f3d7 f3d7 * * 6844 8ea2e8c4,8ea2e8c4v 9bda e9af9a 9bda 00009bda f3d7 f3d7 f3d7 f3d7 f3d7 f3d7 f3d7
+12706 f3d8 f3d8 f3d8 * * 6845 8ea2e8c5,8ea2e8c5v 9d77 e9b5b7 9d77 00009d77 f3d8 f3d8 f3d8 f3d8 f3d8 f3d8 f3d8
+12707 f3d9 f3d9 f3d9 * * 6846 8ea2e8c6,8ea2e8c6v 9d81 e9b681 9d81 00009d81 f3d9 f3d9 f3d9 f3d9 f3d9 f3d9 f3d9
+12708 f3da f3da f3da * * 6847 8ea2e8c7,8ea2e8c7v 9d8a e9b68a 9d8a 00009d8a f3da f3da f3da f3da f3da f3da f3da
+12709 f3db f3db f3db * * 6848 8ea2e8c8,8ea2e8c8v 9d84 e9b684 9d84 00009d84 f3db f3db f3db f3db f3db f3db f3db
+12710 f3dc f3dc f3dc * * 6849 8ea2e8c9,8ea2e8c9v 9d88 e9b688 9d88 00009d88 f3dc f3dc f3dc f3dc f3dc f3dc f3dc
+12711 f3dd f3dd f3dd * * 684a 8ea2e8ca,8ea2e8cav 9d71 e9b5b1 9d71 00009d71 f3dd f3dd f3dd f3dd f3dd f3dd f3dd
+12712 f3de f3de f3de * * 684b 8ea2e8cb,8ea2e8cbv 9d80 e9b680 9d80 00009d80 f3de f3de f3de f3de f3de f3de f3de
+12713 f3df f3df f3df * * 684c 8ea2e8cc,8ea2e8ccv 9d78 e9b5b8 9d78 00009d78 f3df f3df f3df f3df f3df f3df f3df
+12714 f3e0 f3e0 f3e0 * * 684d 8ea2e8cd,8ea2e8cdv 9d86 e9b686 9d86 00009d86 f3e0 f3e0 f3e0 f3e0 f3e0 f3e0 f3e0
+12715 f3e1 f3e1 f3e1 * * 684e 8ea2e8ce,8ea2e8cev 9d8b e9b68b 9d8b 00009d8b f3e1 f3e1 f3e1 f3e1 f3e1 f3e1 f3e1
+12716 f3e2 f3e2 f3e2 * * 684f 8ea2e8cf,8ea2e8cfv 9d8c e9b68c 9d8c 00009d8c f3e2 f3e2 f3e2 f3e2 f3e2 f3e2 f3e2
+12717 f3e3 f3e3 f3e3 * * 6850 8ea2e8d0,8ea2e8d0v 9d7d e9b5bd 9d7d 00009d7d f3e3 f3e3 f3e3 f3e3 f3e3 f3e3 f3e3
+12718 f3e4 f3e4 f3e4 * * 6851 8ea2e8d1,8ea2e8d1v 9d6b e9b5ab 9d6b 00009d6b f3e4 f3e4 f3e4 f3e4 f3e4 f3e4 f3e4
+12719 f3e5 f3e5 f3e5 * * 6852 8ea2e8d2,8ea2e8d2v 9d74 e9b5b4 9d74 00009d74 f3e5 f3e5 f3e5 f3e5 f3e5 f3e5 f3e5
+12720 f3e6 f3e6 f3e6 * * 6853 8ea2e8d3,8ea2e8d3v 9d75 e9b5b5 9d75 00009d75 f3e6 f3e6 f3e6 f3e6 f3e6 f3e6 f3e6
+12721 f3e7 f3e7 f3e7 * * 6854 8ea2e8d4,8ea2e8d4v 9d70 e9b5b0 9d70 00009d70 f3e7 f3e7 f3e7 f3e7 f3e7 f3e7 f3e7
+12722 f3e8 f3e8 f3e8 * * 6855 8ea2e8d5,8ea2e8d5v 9d69 e9b5a9 9d69 00009d69 f3e8 f3e8 f3e8 f3e8 f3e8 f3e8 f3e8
+12723 f3e9 f3e9 f3e9 * * 6856 8ea2e8d6,8ea2e8d6v 9d85 e9b685 9d85 00009d85 f3e9 f3e9 f3e9 f3e9 f3e9 f3e9 f3e9
+12724 f3ea f3ea f3ea * * 6857 8ea2e8d7,8ea2e8d7v 9d73 e9b5b3 9d73 00009d73 f3ea f3ea f3ea f3ea f3ea f3ea f3ea
+12725 f3eb f3eb f3eb * * 6858 8ea2e8d8,8ea2e8d8v 9d7b e9b5bb 9d7b 00009d7b f3eb f3eb f3eb f3eb f3eb f3eb f3eb
+12726 f3ec f3ec f3ec * * 6859 8ea2e8d9,8ea2e8d9v 9d82 e9b682 9d82 00009d82 f3ec f3ec f3ec f3ec f3ec f3ec f3ec
+12727 f3ed f3ed f3ed * * 685a 8ea2e8da,8ea2e8dav 9d6f e9b5af 9d6f 00009d6f f3ed f3ed f3ed f3ed f3ed f3ed f3ed
+12728 f3ee f3ee f3ee * * 685b 8ea2e8db,8ea2e8dbv 9d79 e9b5b9 9d79 00009d79 f3ee f3ee f3ee f3ee f3ee f3ee f3ee
+12729 f3ef f3ef f3ef * * 685c 8ea2e8dc,8ea2e8dcv 9d7f e9b5bf 9d7f 00009d7f f3ef f3ef f3ef f3ef f3ef f3ef f3ef
+12730 f3f0 f3f0 f3f0 * * 685d 8ea2e8dd,8ea2e8ddv 9d87 e9b687 9d87 00009d87 f3f0 f3f0 f3f0 f3f0 f3f0 f3f0 f3f0
+12731 f3f1 f3f1 f3f1 * * 685e 8ea2e8de,8ea2e8dev 9d68 e9b5a8 9d68 00009d68 f3f1 f3f1 f3f1 f3f1 f3f1 f3f1 f3f1
+12732 f3f2 f3f2 f3f2 * * 685f 8ea2e8df,8ea2e8dfv 9e94 e9ba94 9e94 00009e94 f3f2 f3f2 f3f2 f3f2 f3f2 f3f2 f3f2
+12733 f3f3 f3f3 f3f3 * * 6860 8ea2e8e0,8ea2e8e0v 9e91 e9ba91 9e91 00009e91 f3f3 f3f3 f3f3 f3f3 f3f3 f3f3 f3f3
+12734 f3f4 f3f4 f3f4 * * 6861 8ea2e8e1,8ea2e8e1v 9ec0 e9bb80 9ec0 00009ec0 f3f4 f3f4 f3f4 f3f4 f3f4 f3f4 f3f4
+12735 f3f5 f3f5 f3f5 * * 6862 8ea2e8e2,8ea2e8e2v 9efc e9bbbc 9efc 00009efc f3f5 f3f5 f3f5 f3f5 f3f5 f3f5 f3f5
+12736 f3f6 f3f6 f3f6 * * 6863 8ea2e8e3,8ea2e8e3v 9f2d e9bcad 9f2d 00009f2d f3f6 f3f6 f3f6 f3f6 f3f6 f3f6 f3f6
+12737 f3f7 f3f7 f3f7 * * 6864 8ea2e8e4,8ea2e8e4v 9f40 e9bd80 9f40 00009f40 f3f7 f3f7 f3f7 f3f7 f3f7 f3f7 f3f7
+12738 f3f8 f3f8 f3f8 * * 6865 8ea2e8e5,8ea2e8e5v 9f41 e9bd81 9f41 00009f41 f3f8 f3f8 f3f8 f3f8 f3f8 f3f8 f3f8
+12739 f3f9 f3f9 f3f9 * * 6866 8ea2e8e6,8ea2e8e6v 9f4d e9bd8d 9f4d 00009f4d f3f9 f3f9 f3f9 f3f9 f3f9 f3f9 f3f9
+12740 f3fa f3fa f3fa * * 6867 8ea2e8e7,8ea2e8e7v 9f56 e9bd96 9f56 00009f56 f3fa f3fa f3fa f3fa f3fa f3fa f3fa
+12741 f3fb f3fb f3fb * * 6868 8ea2e8e8,8ea2e8e8v 9f57 e9bd97 9f57 00009f57 f3fb f3fb f3fb f3fb f3fb f3fb f3fb
+12742 f3fc f3fc f3fc * * 6869 8ea2e8e9,8ea2e8e9v 9f58 e9bd98 9f58 00009f58 f3fc f3fc f3fc f3fc f3fc f3fc f3fc
+12743 f3fd f3fd f3fd * * 686a 8ea2e8ea,8ea2e8eav 5337 e58cb7 5337 00005337 f3fd f3fd f3fd f3fd f3fd f3fd f3fd
+12744 f3fe f3fe f3fe * * 686b 8ea2e8eb,8ea2e8ebv 56b2 e59ab2 56b2 000056b2 f3fe f3fe f3fe f3fe f3fe f3fe f3fe
+12745 f440 f440 f440 * * 686c 8ea2e8ec,8ea2e8ecv 56b5 e59ab5 56b5 000056b5 f440 f440 f440 f440 f440 f440 f440
+12746 f441 f441 f441 * * 686d 8ea2e8ed,8ea2e8edv 56b3 e59ab3 56b3 000056b3 f441 f441 f441 f441 f441 f441 f441
+12747 f442 f442 f442 * * 686e 8ea2e8ee,8ea2e8eev 58e3 e5a3a3 58e3 000058e3 f442 f442 f442 f442 f442 f442 f442
+12748 f443 f443 f443 * * 686f 8ea2e8ef,8ea2e8efv 5b45 e5ad85 5b45 00005b45 f443 f443 f443 f443 f443 f443 f443
+12749 f444 f444 f444 * * 6870 8ea2e8f0,8ea2e8f0v 5dc6 e5b786 5dc6 00005dc6 f444 f444 f444 f444 f444 f444 f444
+12750 f445 f445 f445 * * 6871 8ea2e8f1,8ea2e8f1v 5dc7 e5b787 5dc7 00005dc7 f445 f445 f445 f445 f445 f445 f445
+12751 f446 f446 f446 * * 6872 8ea2e8f2,8ea2e8f2v 5eee e5bbae 5eee 00005eee f446 f446 f446 f446 f446 f446 f446
+12752 f447 f447 f447 * * 6873 8ea2e8f3,8ea2e8f3v 5eef e5bbaf 5eef 00005eef f447 f447 f447 f447 f447 f447 f447
+12753 f448 f448 f448 * * 6874 8ea2e8f4,8ea2e8f4v 5fc0 e5bf80 5fc0 00005fc0 f448 f448 f448 f448 f448 f448 f448
+12754 f449 f449 f449 * * 6875 8ea2e8f5,8ea2e8f5v 5fc1 e5bf81 5fc1 00005fc1 f449 f449 f449 f449 f449 f449 f449
+12755 f44a f44a f44a * * 6876 8ea2e8f6,8ea2e8f6v 61f9 e687b9 61f9 000061f9 f44a f44a f44a f44a f44a f44a f44a
+12756 f44b f44b f44b * * 6877 8ea2e8f7,8ea2e8f7v 6517 e69497 6517 00006517 f44b f44b f44b f44b f44b f44b f44b
+12757 f44c f44c f44c * * 6878 8ea2e8f8,8ea2e8f8v 6516 e69496 6516 00006516 f44c f44c f44c f44c f44c f44c f44c
+12758 f44d f44d f44d * * 6879 8ea2e8f9,8ea2e8f9v 6515 e69495 6515 00006515 f44d f44d f44d f44d f44d f44d f44d
+12759 f44e f44e f44e * * 687a 8ea2e8fa,8ea2e8fav 6513 e69493 6513 00006513 f44e f44e f44e f44e f44e f44e f44e
+12760 f44f f44f f44f * * 687b 8ea2e8fb,8ea2e8fbv 65df e6979f 65df 000065df f44f f44f f44f f44f f44f f44f f44f
+12761 f450 f450 f450 * * 687c 8ea2e8fc,8ea2e8fcv 66e8 e69ba8 66e8 000066e8 f450 f450 f450 f450 f450 f450 f450
+12762 f451 f451 f451 * * 687d 8ea2e8fd,8ea2e8fdv 66e3 e69ba3 66e3 000066e3 f451 f451 f451 f451 f451 f451 f451
+12763 f452 f452 f452 * * 687e 8ea2e8fe,8ea2e8fev 66e4 e69ba4 66e4 000066e4 f452 f452 f452 f452 f452 f452 f452
+12764 f453 f453 f453 * * 6921 8ea2e9a1,8ea2e9a1v 6af3 e6abb3 6af3 00006af3 f453 f453 f453 f453 f453 f453 f453
+12765 f454 f454 f454 * * 6922 8ea2e9a2,8ea2e9a2v 6af0 e6abb0 6af0 00006af0 f454 f454 f454 f454 f454 f454 f454
+12766 f455 f455 f455 * * 6923 8ea2e9a3,8ea2e9a3v 6aea e6abaa 6aea 00006aea f455 f455 f455 f455 f455 f455 f455
+12767 f456 f456 f456 * * 6924 8ea2e9a4,8ea2e9a4v 6ae8 e6aba8 6ae8 00006ae8 f456 f456 f456 f456 f456 f456 f456
+12768 f457 f457 f457 * * 6925 8ea2e9a5,8ea2e9a5v 6af9 e6abb9 6af9 00006af9 f457 f457 f457 f457 f457 f457 f457
+12769 f458 f458 f458 * * 6926 8ea2e9a6,8ea2e9a6v 6af1 e6abb1 6af1 00006af1 f458 f458 f458 f458 f458 f458 f458
+12770 f459 f459 f459 * * 6927 8ea2e9a7,8ea2e9a7v 6aee e6abae 6aee 00006aee f459 f459 f459 f459 f459 f459 f459
+12771 f45a f45a f45a * * 6928 8ea2e9a8,8ea2e9a8v 6aef e6abaf 6aef 00006aef f45a f45a f45a f45a f45a f45a f45a
+12772 f45b f45b f45b * * 6929 8ea2e9a9,8ea2e9a9v 703c e780bc 703c 0000703c f45b f45b f45b f45b f45b f45b f45b
+12773 f45c f45c f45c * * 692a 8ea2e9aa,8ea2e9aav 7035 e780b5 7035 00007035 f45c f45c f45c f45c f45c f45c f45c
+12774 f45d f45d f45d * * 692b 8ea2e9ab,8ea2e9abv 702f e780af 702f 0000702f f45d f45d f45d f45d f45d f45d f45d
+12775 f45e f45e f45e * * 692c 8ea2e9ac,8ea2e9acv 7037 e780b7 7037 00007037 f45e f45e f45e f45e f45e f45e f45e
+12776 f45f f45f f45f * * 692d 8ea2e9ad,8ea2e9adv 7034 e780b4 7034 00007034 f45f f45f f45f f45f f45f f45f f45f
+12777 f460 f460 f460 * * 692e 8ea2e9ae,8ea2e9aev 7031 e780b1 7031 00007031 f460 f460 f460 f460 f460 f460 f460
+12778 f461 f461 f461 * * 692f 8ea2e9af,8ea2e9afv 7042 e78182 7042 00007042 f461 f461 f461 f461 f461 f461 f461
+12779 f462 f462 f462 * * 6930 8ea2e9b0,8ea2e9b0v 7038 e780b8 7038 00007038 f462 f462 f462 f462 f462 f462 f462
+12780 f463 f463 f463 * * 6931 8ea2e9b1,8ea2e9b1v 703f e780bf 703f 0000703f f463 f463 f463 f463 f463 f463 f463
+12781 f464 f464 f464 * * 6932 8ea2e9b2,8ea2e9b2v 703a e780ba 703a 0000703a f464 f464 f464 f464 f464 f464 f464
+12782 f465 f465 f465 * * 6933 8ea2e9b3,8ea2e9b3v 7039 e780b9 7039 00007039 f465 f465 f465 f465 f465 f465 f465
+12783 f268 f268 f268 * * 6934 8ea2e9b4,8ea2e9b4v 702a e780aa 702a 0000702a f268 f268 f268 f268 f268 f268 f268
+12784 f466 f466 f466 * * 6935 8ea2e9b5,8ea2e9b5v 7040 e78180 7040 00007040 f466 f466 f466 f466 f466 f466 f466
+12785 f467 f467 f467 * * 6936 8ea2e9b6,8ea2e9b6v 703b e780bb 703b 0000703b f467 f467 f467 f467 f467 f467 f467
+12786 f468 f468 f468 * * 6937 8ea2e9b7,8ea2e9b7v 7033 e780b3 7033 00007033 f468 f468 f468 f468 f468 f468 f468
+12787 f469 f469 f469 * * 6938 8ea2e9b8,8ea2e9b8v 7041 e78181 7041 00007041 f469 f469 f469 f469 f469 f469 f469
+12788 f46a f46a f46a * * 6939 8ea2e9b9,8ea2e9b9v 7213 e78893 7213 00007213 f46a f46a f46a f46a f46a f46a f46a
+12789 f46b f46b f46b * * 693a 8ea2e9ba,8ea2e9bav 7214 e78894 7214 00007214 f46b f46b f46b f46b f46b f46b f46b
+12790 f46c f46c f46c * * 693b 8ea2e9bb,8ea2e9bbv 72a8 e78aa8 72a8 000072a8 f46c f46c f46c f46c f46c f46c f46c
+12791 f46d f46d f46d * * 693c 8ea2e9bc,8ea2e9bcv 737d e78dbd 737d 0000737d f46d f46d f46d f46d f46d f46d f46d
+12792 f46e f46e f46e * * 693d 8ea2e9bd,8ea2e9bdv 737c e78dbc 737c 0000737c f46e f46e f46e f46e f46e f46e f46e
+12793 f46f f46f f46f * * 693e 8ea2e9be,8ea2e9bev 74ba e792ba 74ba 000074ba f46f f46f f46f f46f f46f f46f f46f
+12794 f470 f470 f470 * * 693f 8ea2e9bf,8ea2e9bfv 76ab e79aab 76ab 000076ab f470 f470 f470 f470 f470 f470 f470
+12795 f471 f471 f471 * * 6940 8ea2e9c0,8ea2e9c0v 76aa e79aaa 76aa 000076aa f471 f471 f471 f471 f471 f471 f471
+12796 f472 f472 f472 * * 6941 8ea2e9c1,8ea2e9c1v 76be e79abe 76be 000076be f472 f472 f472 f472 f472 f472 f472
+12797 f473 f473 f473 * * 6942 8ea2e9c2,8ea2e9c2v 76ed e79bad 76ed 000076ed f473 f473 f473 f473 f473 f473 f473
+12798 f474 f474 f474 * * 6943 8ea2e9c3,8ea2e9c3v 77cc e79f8c 77cc 000077cc f474 f474 f474 f474 f474 f474 f474
+12799 f475 f475 f475 * * 6944 8ea2e9c4,8ea2e9c4v 77ce e79f8e 77ce 000077ce f475 f475 f475 f475 f475 f475 f475
+12800 f476 f476 f476 * * 6945 8ea2e9c5,8ea2e9c5v 77cf e79f8f 77cf 000077cf f476 f476 f476 f476 f476 f476 f476
+12801 f477 f477 f477 * * 6946 8ea2e9c6,8ea2e9c6v 77cd e79f8d 77cd 000077cd f477 f477 f477 f477 f477 f477 f477
+12802 f478 f478 f478 * * 6947 8ea2e9c7,8ea2e9c7v 77f2 e79fb2 77f2 000077f2 f478 f478 f478 f478 f478 f478 f478
+12803 f479 f479 f479 * * 6948 8ea2e9c8,8ea2e9c8v 7925 e7a4a5 7925 00007925 f479 f479 f479 f479 f479 f479 f479
+12804 f47a f47a f47a * * 6949 8ea2e9c9,8ea2e9c9v 7923 e7a4a3 7923 00007923 f47a f47a f47a f47a f47a f47a f47a
+12805 f47b f47b f47b * * 694a 8ea2e9ca,8ea2e9cav 7927 e7a4a7 7927 00007927 f47b f47b f47b f47b f47b f47b f47b
+12806 f47c f47c f47c * * 694b 8ea2e9cb,8ea2e9cbv 7928 e7a4a8 7928 00007928 f47c f47c f47c f47c f47c f47c f47c
+12807 f47d f47d f47d * * 694c 8ea2e9cc,8ea2e9ccv 7924 e7a4a4 7924 00007924 f47d f47d f47d f47d f47d f47d f47d
+12808 f47e f47e f47e * * 694d 8ea2e9cd,8ea2e9cdv 7929 e7a4a9 7929 00007929 f47e f47e f47e f47e f47e f47e f47e
+12809 f4a1 f4a1 f4a1 * * 694e 8ea2e9ce,8ea2e9cev 79b2 e7a6b2 79b2 000079b2 f4a1 f4a1 f4a1 f4a1 f4a1 f4a1 f4a1
+12810 f4a2 f4a2 f4a2 * * 694f 8ea2e9cf,8ea2e9cfv 7a6e e7a9ae 7a6e 00007a6e f4a2 f4a2 f4a2 f4a2 f4a2 f4a2 f4a2
+12811 f4a3 f4a3 f4a3 * * 6950 8ea2e9d0,8ea2e9d0v 7a6c e7a9ac 7a6c 00007a6c f4a3 f4a3 f4a3 f4a3 f4a3 f4a3 f4a3
+12812 f4a4 f4a4 f4a4 * * 6951 8ea2e9d1,8ea2e9d1v 7a6d e7a9ad 7a6d 00007a6d f4a4 f4a4 f4a4 f4a4 f4a4 f4a4 f4a4
+12813 f4a5 f4a5 f4a5 * * 6952 8ea2e9d2,8ea2e9d2v 7af7 e7abb7 7af7 00007af7 f4a5 f4a5 f4a5 f4a5 f4a5 f4a5 f4a5
+12814 f4a6 f4a6 f4a6 * * 6953 8ea2e9d3,8ea2e9d3v 7c49 e7b189 7c49 00007c49 f4a6 f4a6 f4a6 f4a6 f4a6 f4a6 f4a6
+12815 f4a7 f4a7 f4a7 * * 6954 8ea2e9d4,8ea2e9d4v 7c48 e7b188 7c48 00007c48 f4a7 f4a7 f4a7 f4a7 f4a7 f4a7 f4a7
+12816 f4a8 f4a8 f4a8 * * 6955 8ea2e9d5,8ea2e9d5v 7c4a e7b18a 7c4a 00007c4a f4a8 f4a8 f4a8 f4a8 f4a8 f4a8 f4a8
+12817 f4a9 f4a9 f4a9 * * 6956 8ea2e9d6,8ea2e9d6v 7c47 e7b187 7c47 00007c47 f4a9 f4a9 f4a9 f4a9 f4a9 f4a9 f4a9
+12818 f4aa f4aa f4aa * * 6957 8ea2e9d7,8ea2e9d7v 7c45 e7b185 7c45 00007c45 f4aa f4aa f4aa f4aa f4aa f4aa f4aa
+12819 f4ab f4ab f4ab * * 6958 8ea2e9d8,8ea2e9d8v 7cee e7b3ae 7cee 00007cee f4ab f4ab f4ab f4ab f4ab f4ab f4ab
+12820 f4ac f4ac f4ac * * 6959 8ea2e9d9,8ea2e9d9v 7e7b e7b9bb 7e7b 00007e7b f4ac f4ac f4ac f4ac f4ac f4ac f4ac
+12821 f4ad f4ad f4ad * * 695a 8ea2e9da,8ea2e9dav 7e7e e7b9be 7e7e 00007e7e f4ad f4ad f4ad f4ad f4ad f4ad f4ad
+12822 f4ae f4ae f4ae * * 695b 8ea2e9db,8ea2e9dbv 7e81 e7ba81 7e81 00007e81 f4ae f4ae f4ae f4ae f4ae f4ae f4ae
+12823 f4af f4af f4af * * 695c 8ea2e9dc,8ea2e9dcv 7e80 e7ba80 7e80 00007e80 f4af f4af f4af f4af f4af f4af f4af
+12824 f4b0 f4b0 f4b0 * * 695d 8ea2e9dd,8ea2e9ddv 7fba e7beba 7fba 00007fba f4b0 f4b0 f4b0 f4b0 f4b0 f4b0 f4b0
+12825 f4b1 f4b1 f4b1 * * 695e 8ea2e9de,8ea2e9dev 7fff e7bfbf 7fff 00007fff f4b1 f4b1 f4b1 f4b1 f4b1 f4b1 f4b1
+12826 f4b2 f4b2 f4b2 * * 695f 8ea2e9df,8ea2e9dfv 8079 e881b9 8079 00008079 f4b2 f4b2 f4b2 f4b2 f4b2 f4b2 f4b2
+12827 f4b3 f4b3 f4b3 * * 6960 8ea2e9e0,8ea2e9e0v 81db e8879b 81db 000081db f4b3 f4b3 f4b3 f4b3 f4b3 f4b3 f4b3
+12828 f4b4 f4b4 f4b4 * * 6961 8ea2e9e1,8ea2e9e1v 81d9 e88799 81d9 000081d9 f4b4 f4b4 f4b4 f4b4 f4b4 f4b4 f4b4
+12829 f4b6 f4b6 f4b6 * * 6962 8ea2e9e2,8ea2e9e2v 8268 e889a8 8268 00008268 f4b6 f4b6 f4b6 f4b6 f4b6 f4b6 f4b6
+12830 f4b7 f4b7 f4b7 * * 6963 8ea2e9e3,8ea2e9e3v 8269 e889a9 8269 00008269 f4b7 f4b7 f4b7 f4b7 f4b7 f4b7 f4b7
+12831 f4b8 f4b8 f4b8 * * 6964 8ea2e9e4,8ea2e9e4v 8622 e898a2 8622 00008622 f4b8 f4b8 f4b8 f4b8 f4b8 f4b8 f4b8
+12832 f4b9 f4b9 f4b9 * * 6965 8ea2e9e5,8ea2e9e5v 85ff e897bf 85ff 000085ff f4b9 f4b9 f4b9 f4b9 f4b9 f4b9 f4b9
+12833 f4ba f4ba f4ba * * 6966 8ea2e9e6,8ea2e9e6v 8601 e89881 8601 00008601 f4ba f4ba f4ba f4ba f4ba f4ba f4ba
+12834 f4bb f4bb f4bb * * 6967 8ea2e9e7,8ea2e9e7v 85fe e897be 85fe 000085fe f4bb f4bb f4bb f4bb f4bb f4bb f4bb
+12835 f4bc f4bc f4bc * * 6968 8ea2e9e8,8ea2e9e8v 861b e8989b 861b 0000861b f4bc f4bc f4bc f4bc f4bc f4bc f4bc
+12836 f4bd f4bd f4bd * * 6969 8ea2e9e9,8ea2e9e9v 8600 e89880 8600 00008600 f4bd f4bd f4bd f4bd f4bd f4bd f4bd
+12837 f4be f4be f4be * * 696a 8ea2e9ea,8ea2e9eav 85f6 e897b6 85f6 000085f6 f4be f4be f4be f4be f4be f4be f4be
+12838 f4bf f4bf f4bf * * 696b 8ea2e9eb,8ea2e9ebv 8604 e89884 8604 00008604 f4bf f4bf f4bf f4bf f4bf f4bf f4bf
+12839 f4c0 f4c0 f4c0 * * 696c 8ea2e9ec,8ea2e9ecv 8609 e89889 8609 00008609 f4c0 f4c0 f4c0 f4c0 f4c0 f4c0 f4c0
+12840 f4c1 f4c1 f4c1 * * 696d 8ea2e9ed,8ea2e9edv 8605 e89885 8605 00008605 f4c1 f4c1 f4c1 f4c1 f4c1 f4c1 f4c1
+12841 f4c2 f4c2 f4c2 * * 696e 8ea2e9ee,8ea2e9eev 860c e8988c 860c 0000860c f4c2 f4c2 f4c2 f4c2 f4c2 f4c2 f4c2
+12842 f4c3 f4c3 f4c3 * * 696f 8ea2e9ef,8ea2e9efv 85fd e897bd 85fd 000085fd f4c3 f4c3 f4c3 f4c3 f4c3 f4c3 f4c3
+12843 f4c4 f4c4 f4c4 * * 6970 8ea2e9f0,8ea2e9f0v 8819 e8a099 8819 00008819 f4c4 f4c4 f4c4 f4c4 f4c4 f4c4 f4c4
+12844 f4c5 f4c5 f4c5 * * 6971 8ea2e9f1,8ea2e9f1v 8810 e8a090 8810 00008810 f4c5 f4c5 f4c5 f4c5 f4c5 f4c5 f4c5
+12845 f4c6 f4c6 f4c6 * * 6972 8ea2e9f2,8ea2e9f2v 8811 e8a091 8811 00008811 f4c6 f4c6 f4c6 f4c6 f4c6 f4c6 f4c6
+12846 f4c7 f4c7 f4c7 * * 6973 8ea2e9f3,8ea2e9f3v 8817 e8a097 8817 00008817 f4c7 f4c7 f4c7 f4c7 f4c7 f4c7 f4c7
+12847 f4c8 f4c8 f4c8 * * 6974 8ea2e9f4,8ea2e9f4v 8813 e8a093 8813 00008813 f4c8 f4c8 f4c8 f4c8 f4c8 f4c8 f4c8
+12848 f4c9 f4c9 f4c9 * * 6975 8ea2e9f5,8ea2e9f5v 8816 e8a096 8816 00008816 f4c9 f4c9 f4c9 f4c9 f4c9 f4c9 f4c9
+12849 f4ca f4ca f4ca * * 6976 8ea2e9f6,8ea2e9f6v 8963 e8a5a3 8963 00008963 f4ca f4ca f4ca f4ca f4ca f4ca f4ca
+12850 f4cb f4cb f4cb * * 6977 8ea2e9f7,8ea2e9f7v 8966 e8a5a6 8966 00008966 f4cb f4cb f4cb f4cb f4cb f4cb f4cb
+12851 f4cc f4cc f4cc * * 6978 8ea2e9f8,8ea2e9f8v 89b9 e8a6b9 89b9 000089b9 f4cc f4cc f4cc f4cc f4cc f4cc f4cc
+12852 f4cd f4cd f4cd * * 6979 8ea2e9f9,8ea2e9f9v 89f7 e8a7b7 89f7 000089f7 f4cd f4cd f4cd f4cd f4cd f4cd f4cd
+12853 f4ce f4ce f4ce * * 697a 8ea2e9fa,8ea2e9fav 8b60 e8ada0 8b60 00008b60 f4ce f4ce f4ce f4ce f4ce f4ce f4ce
+12854 f4cf f4cf f4cf * * 697b 8ea2e9fb,8ea2e9fbv 8b6a e8adaa 8b6a 00008b6a f4cf f4cf f4cf f4cf f4cf f4cf f4cf
+12855 f4d0 f4d0 f4d0 * * 697c 8ea2e9fc,8ea2e9fcv 8b5d e8ad9d 8b5d 00008b5d f4d0 f4d0 f4d0 f4d0 f4d0 f4d0 f4d0
+12856 f4d1 f4d1 f4d1 * * 697d 8ea2e9fd,8ea2e9fdv 8b68 e8ada8 8b68 00008b68 f4d1 f4d1 f4d1 f4d1 f4d1 f4d1 f4d1
+12857 f4d2 f4d2 f4d2 * * 697e 8ea2e9fe,8ea2e9fev 8b63 e8ada3 8b63 00008b63 f4d2 f4d2 f4d2 f4d2 f4d2 f4d2 f4d2
+12858 f4d3 f4d3 f4d3 * * 6a21 8ea2eaa1,8ea2eaa1v 8b65 e8ada5 8b65 00008b65 f4d3 f4d3 f4d3 f4d3 f4d3 f4d3 f4d3
+12859 f4d4 f4d4 f4d4 * * 6a22 8ea2eaa2,8ea2eaa2v 8b67 e8ada7 8b67 00008b67 f4d4 f4d4 f4d4 f4d4 f4d4 f4d4 f4d4
+12860 f4d5 f4d5 f4d5 * * 6a23 8ea2eaa3,8ea2eaa3v 8b6d e8adad 8b6d 00008b6d f4d5 f4d5 f4d5 f4d5 f4d5 f4d5 f4d5
+12861 f4d6 f4d6 f4d6 * * 6a24 8ea2eaa4,8ea2eaa4v 8dae e8b6ae 8dae 00008dae f4d6 f4d6 f4d6 f4d6 f4d6 f4d6 f4d6
+12862 f4d7 f4d7 f4d7 * * 6a25 8ea2eaa5,8ea2eaa5v 8e86 e8ba86 8e86 00008e86 f4d7 f4d7 f4d7 f4d7 f4d7 f4d7 f4d7
+12863 f4d8 f4d8 f4d8 * * 6a26 8ea2eaa6,8ea2eaa6v 8e88 e8ba88 8e88 00008e88 f4d8 f4d8 f4d8 f4d8 f4d8 f4d8 f4d8
+12864 f4d9 f4d9 f4d9 * * 6a27 8ea2eaa7,8ea2eaa7v 8e84 e8ba84 8e84 00008e84 f4d9 f4d9 f4d9 f4d9 f4d9 f4d9 f4d9
+12865 f4da f4da f4da * * 6a28 8ea2eaa8,8ea2eaa8v 8f59 e8bd99 8f59 00008f59 f4da f4da f4da f4da f4da f4da f4da
+12866 f4db f4db f4db * * 6a29 8ea2eaa9,8ea2eaa9v 8f56 e8bd96 8f56 00008f56 f4db f4db f4db f4db f4db f4db f4db
+12867 f4dc f4dc f4dc * * 6a2a 8ea2eaaa,8ea2eaaav 8f57 e8bd97 8f57 00008f57 f4dc f4dc f4dc f4dc f4dc f4dc f4dc
+12868 f4dd f4dd f4dd * * 6a2b 8ea2eaab,8ea2eaabv 8f55 e8bd95 8f55 00008f55 f4dd f4dd f4dd f4dd f4dd f4dd f4dd
+12869 f4de f4de f4de * * 6a2c 8ea2eaac,8ea2eaacv 8f58 e8bd98 8f58 00008f58 f4de f4de f4de f4de f4de f4de f4de
+12870 f4df f4df f4df * * 6a2d 8ea2eaad,8ea2eaadv 8f5a e8bd9a 8f5a 00008f5a f4df f4df f4df f4df f4df f4df f4df
+12871 f4e0 f4e0 f4e0 * * 6a2e 8ea2eaae,8ea2eaaev 908d e9828d 908d 0000908d f4e0 f4e0 f4e0 f4e0 f4e0 f4e0 f4e0
+12872 f4e1 f4e1 f4e1 * * 6a2f 8ea2eaaf,8ea2eaafv 9143 e98583 9143 00009143 f4e1 f4e1 f4e1 f4e1 f4e1 f4e1 f4e1
+12873 f4e2 f4e2 f4e2 * * 6a30 8ea2eab0,8ea2eab0v 9141 e98581 9141 00009141 f4e2 f4e2 f4e2 f4e2 f4e2 f4e2 f4e2
+12874 f4e3 f4e3 f4e3 * * 6a31 8ea2eab1,8ea2eab1v 91b7 e986b7 91b7 000091b7 f4e3 f4e3 f4e3 f4e3 f4e3 f4e3 f4e3
+12875 f4e4 f4e4 f4e4 * * 6a32 8ea2eab2,8ea2eab2v 91b5 e986b5 91b5 000091b5 f4e4 f4e4 f4e4 f4e4 f4e4 f4e4 f4e4
+12876 f4e5 f4e5 f4e5 * * 6a33 8ea2eab3,8ea2eab3v 91b2 e986b2 91b2 000091b2 f4e5 f4e5 f4e5 f4e5 f4e5 f4e5 f4e5
+12877 f4e6 f4e6 f4e6 * * 6a34 8ea2eab4,8ea2eab4v 91b3 e986b3 91b3 000091b3 f4e6 f4e6 f4e6 f4e6 f4e6 f4e6 f4e6
+12878 f4e7 f4e7 f4e7 * * 6a35 8ea2eab5,8ea2eab5v 940b e9908b 940b 0000940b f4e7 f4e7 f4e7 f4e7 f4e7 f4e7 f4e7
+12879 f4e8 f4e8 f4e8 * * 6a36 8ea2eab6,8ea2eab6v 9413 e99093 9413 00009413 f4e8 f4e8 f4e8 f4e8 f4e8 f4e8 f4e8
+12880 f4e9 f4e9 f4e9 * * 6a37 8ea2eab7,8ea2eab7v 93fb e98fbb 93fb 000093fb f4e9 f4e9 f4e9 f4e9 f4e9 f4e9 f4e9
+12881 f4ea f4ea f4ea * * 6a38 8ea2eab8,8ea2eab8v 9420 e990a0 9420 00009420 f4ea f4ea f4ea f4ea f4ea f4ea f4ea
+12882 f4eb f4eb f4eb * * 6a39 8ea2eab9,8ea2eab9v 940f e9908f 940f 0000940f f4eb f4eb f4eb f4eb f4eb f4eb f4eb
+12883 f4ec f4ec f4ec * * 6a3a 8ea2eaba,8ea2eabav 9414 e99094 9414 00009414 f4ec f4ec f4ec f4ec f4ec f4ec f4ec
+12884 f4ed f4ed f4ed * * 6a3b 8ea2eabb,8ea2eabbv 93fe e98fbe 93fe 000093fe f4ed f4ed f4ed f4ed f4ed f4ed f4ed
+12885 f4ee f4ee f4ee * * 6a3c 8ea2eabc,8ea2eabcv 9415 e99095 9415 00009415 f4ee f4ee f4ee f4ee f4ee f4ee f4ee
+12886 f4ef f4ef f4ef * * 6a3d 8ea2eabd,8ea2eabdv 9410 e99090 9410 00009410 f4ef f4ef f4ef f4ef f4ef f4ef f4ef
+12887 f4f0 f4f0 f4f0 * * 6a3e 8ea2eabe,8ea2eabev 9428 e990a8 9428 00009428 f4f0 f4f0 f4f0 f4f0 f4f0 f4f0 f4f0
+12888 f4f1 f4f1 f4f1 * * 6a3f 8ea2eabf,8ea2eabfv 9419 e99099 9419 00009419 f4f1 f4f1 f4f1 f4f1 f4f1 f4f1 f4f1
+12889 f4f2 f4f2 f4f2 * * 6a40 8ea2eac0,8ea2eac0v 940d e9908d 940d 0000940d f4f2 f4f2 f4f2 f4f2 f4f2 f4f2 f4f2
+12890 f4f3 f4f3 f4f3 * * 6a41 8ea2eac1,8ea2eac1v 93f5 e98fb5 93f5 000093f5 f4f3 f4f3 f4f3 f4f3 f4f3 f4f3 f4f3
+12891 f4f4 f4f4 f4f4 * * 6a42 8ea2eac2,8ea2eac2v 9400 e99080 9400 00009400 f4f4 f4f4 f4f4 f4f4 f4f4 f4f4 f4f4
+12892 f4f5 f4f5 f4f5 * * 6a43 8ea2eac3,8ea2eac3v 93f7 e98fb7 93f7 000093f7 f4f5 f4f5 f4f5 f4f5 f4f5 f4f5 f4f5
+12893 f4f6 f4f6 f4f6 * * 6a44 8ea2eac4,8ea2eac4v 9407 e99087 9407 00009407 f4f6 f4f6 f4f6 f4f6 f4f6 f4f6 f4f6
+12894 f4f7 f4f7 f4f7 * * 6a45 8ea2eac5,8ea2eac5v 940e e9908e 940e 0000940e f4f7 f4f7 f4f7 f4f7 f4f7 f4f7 f4f7
+12895 f4f8 f4f8 f4f8 * * 6a46 8ea2eac6,8ea2eac6v 9416 e99096 9416 00009416 f4f8 f4f8 f4f8 f4f8 f4f8 f4f8 f4f8
+12896 f4f9 f4f9 f4f9 * * 6a47 8ea2eac7,8ea2eac7v 9412 e99092 9412 00009412 f4f9 f4f9 f4f9 f4f9 f4f9 f4f9 f4f9
+12897 f4fa f4fa f4fa * * 6a48 8ea2eac8,8ea2eac8v 93fa e98fba 93fa 000093fa f4fa f4fa f4fa f4fa f4fa f4fa f4fa
+12898 f4fb f4fb f4fb * * 6a49 8ea2eac9,8ea2eac9v 9409 e99089 9409 00009409 f4fb f4fb f4fb f4fb f4fb f4fb f4fb
+12899 f4fc f4fc f4fc * * 6a4a 8ea2eaca,8ea2eacav 93f8 e98fb8 93f8 000093f8 f4fc f4fc f4fc f4fc f4fc f4fc f4fc
+12900 f663 f663 f663 * * 6a4b 8ea2eacb,8ea2eacbv 943c e990bc 943c 0000943c f663 f663 f663 f663 f663 f663 f663
+12901 f4fd f4fd f4fd * * 6a4c 8ea2eacc,8ea2eaccv 940a e9908a 940a 0000940a f4fd f4fd f4fd f4fd f4fd f4fd f4fd
+12902 f4fe f4fe f4fe * * 6a4d 8ea2eacd,8ea2eacdv 93ff e98fbf 93ff 000093ff f4fe f4fe f4fe f4fe f4fe f4fe f4fe
+12903 f540 f540 f540 * * 6a4e 8ea2eace,8ea2eacev 93fc e98fbc 93fc 000093fc f540 f540 f540 f540 f540 f540 f540
+12904 f541 f541 f541 * * 6a4f 8ea2eacf,8ea2eacfv 940c e9908c 940c 0000940c f541 f541 f541 f541 f541 f541 f541
+12905 f542 f542 f542 * * 6a50 8ea2ead0,8ea2ead0v 93f6 e98fb6 93f6 000093f6 f542 f542 f542 f542 f542 f542 f542
+12906 f543 f543 f543 * * 6a51 8ea2ead1,8ea2ead1v 9411 e99091 9411 00009411 f543 f543 f543 f543 f543 f543 f543
+12907 f544 f544 f544 * * 6a52 8ea2ead2,8ea2ead2v 9406 e99086 9406 00009406 f544 f544 f544 f544 f544 f544 f544
+12908 f545 f545 f545 * * 6a53 8ea2ead3,8ea2ead3v 95de e9979e 95de 000095de f545 f545 f545 f545 f545 f545 f545
+12909 f546 f546 f546 * * 6a54 8ea2ead4,8ea2ead4v 95e0 e997a0 95e0 000095e0 f546 f546 f546 f546 f546 f546 f546
+12910 f547 f547 f547 * * 6a55 8ea2ead5,8ea2ead5v 95df e9979f 95df 000095df f547 f547 f547 f547 f547 f547 f547
+12911 f548 f548 f548 * * 6a56 8ea2ead6,8ea2ead6v 972e e99cae 972e 0000972e f548 f548 f548 f548 f548 f548 f548
+12912 f549 f549 f549 * * 6a57 8ea2ead7,8ea2ead7v 972f e99caf 972f 0000972f f549 f549 f549 f549 f549 f549 f549
+12913 f54a f54a f54a * * 6a58 8ea2ead8,8ea2ead8v 97b9 e99eb9 97b9 000097b9 f54a f54a f54a f54a f54a f54a f54a
+12914 f54b f54b f54b * * 6a59 8ea2ead9,8ea2ead9v 97bb e99ebb 97bb 000097bb f54b f54b f54b f54b f54b f54b f54b
+12915 f54c f54c f54c * * 6a5a 8ea2eada,8ea2eadav 97fd e99fbd 97fd 000097fd f54c f54c f54c f54c f54c f54c f54c
+12916 f54d f54d f54d * * 6a5b 8ea2eadb,8ea2eadbv 97fe e99fbe 97fe 000097fe f54d f54d f54d f54d f54d f54d f54d
+12917 f54e f54e f54e * * 6a5c 8ea2eadc,8ea2eadcv 9860 e9a1a0 9860 00009860 f54e f54e f54e f54e f54e f54e f54e
+12918 f54f f54f f54f * * 6a5d 8ea2eadd,8ea2eaddv 9862 e9a1a2 9862 00009862 f54f f54f f54f f54f f54f f54f f54f
+12919 f550 f550 f550 * * 6a5e 8ea2eade,8ea2eadev 9863 e9a1a3 9863 00009863 f550 f550 f550 f550 f550 f550 f550
+12920 f551 f551 f551 * * 6a5f 8ea2eadf,8ea2eadfv 985f e9a19f 985f 0000985f f551 f551 f551 f551 f551 f551 f551
+12921 f552 f552 f552 * * 6a60 8ea2eae0,8ea2eae0v 98c1 e9a381 98c1 000098c1 f552 f552 f552 f552 f552 f552 f552
+12922 f553 f553 f553 * * 6a61 8ea2eae1,8ea2eae1v 98c2 e9a382 98c2 000098c2 f553 f553 f553 f553 f553 f553 f553
+12923 f554 f554 f554 * * 6a62 8ea2eae2,8ea2eae2v 9950 e9a590 9950 00009950 f554 f554 f554 f554 f554 f554 f554
+12924 f555 f555 f555 * * 6a63 8ea2eae3,8ea2eae3v 994e e9a58e 994e 0000994e f555 f555 f555 f555 f555 f555 f555
+12925 f556 f556 f556 * * 6a64 8ea2eae4,8ea2eae4v 9959 e9a599 9959 00009959 f556 f556 f556 f556 f556 f556 f556
+12926 f557 f557 f557 * * 6a65 8ea2eae5,8ea2eae5v 994c e9a58c 994c 0000994c f557 f557 f557 f557 f557 f557 f557
+12927 f558 f558 f558 * * 6a66 8ea2eae6,8ea2eae6v 994b e9a58b 994b 0000994b f558 f558 f558 f558 f558 f558 f558
+12928 f559 f559 f559 * * 6a67 8ea2eae7,8ea2eae7v 9953 e9a593 9953 00009953 f559 f559 f559 f559 f559 f559 f559
+12929 f55a f55a f55a * * 6a68 8ea2eae8,8ea2eae8v 9a32 e9a8b2 9a32 00009a32 f55a f55a f55a f55a f55a f55a f55a
+12930 f55b f55b f55b * * 6a69 8ea2eae9,8ea2eae9v 9a34 e9a8b4 9a34 00009a34 f55b f55b f55b f55b f55b f55b f55b
+12931 f55c f55c f55c * * 6a6a 8ea2eaea,8ea2eaeav 9a31 e9a8b1 9a31 00009a31 f55c f55c f55c f55c f55c f55c f55c
+12932 f55d f55d f55d * * 6a6b 8ea2eaeb,8ea2eaebv 9a2c e9a8ac 9a2c 00009a2c f55d f55d f55d f55d f55d f55d f55d
+12933 f55e f55e f55e * * 6a6c 8ea2eaec,8ea2eaecv 9a2a e9a8aa 9a2a 00009a2a f55e f55e f55e f55e f55e f55e f55e
+12934 f55f f55f f55f * * 6a6d 8ea2eaed,8ea2eaedv 9a36 e9a8b6 9a36 00009a36 f55f f55f f55f f55f f55f f55f f55f
+12935 f560 f560 f560 * * 6a6e 8ea2eaee,8ea2eaeev 9a29 e9a8a9 9a29 00009a29 f560 f560 f560 f560 f560 f560 f560
+12936 f561 f561 f561 * * 6a6f 8ea2eaef,8ea2eaefv 9a2e e9a8ae 9a2e 00009a2e f561 f561 f561 f561 f561 f561 f561
+12937 f562 f562 f562 * * 6a70 8ea2eaf0,8ea2eaf0v 9a38 e9a8b8 9a38 00009a38 f562 f562 f562 f562 f562 f562 f562
+12938 f563 f563 f563 * * 6a71 8ea2eaf1,8ea2eaf1v 9a2d e9a8ad 9a2d 00009a2d f563 f563 f563 f563 f563 f563 f563
+12939 f564 f564 f564 * * 6a72 8ea2eaf2,8ea2eaf2v 9ac7 e9ab87 9ac7 00009ac7 f564 f564 f564 f564 f564 f564 f564
+12940 f565 f565 f565 * * 6a73 8ea2eaf3,8ea2eaf3v 9aca e9ab8a 9aca 00009aca f565 f565 f565 f565 f565 f565 f565
+12941 f566 f566 f566 * * 6a74 8ea2eaf4,8ea2eaf4v 9ac6 e9ab86 9ac6 00009ac6 f566 f566 f566 f566 f566 f566 f566
+12942 f567 f567 f567 * * 6a75 8ea2eaf5,8ea2eaf5v 9b10 e9ac90 9b10 00009b10 f567 f567 f567 f567 f567 f567 f567
+12943 f568 f568 f568 * * 6a76 8ea2eaf6,8ea2eaf6v 9b12 e9ac92 9b12 00009b12 f568 f568 f568 f568 f568 f568 f568
+12944 f569 f569 f569 * * 6a77 8ea2eaf7,8ea2eaf7v 9b11 e9ac91 9b11 00009b11 f569 f569 f569 f569 f569 f569 f569
+12945 f56a f56a f56a * * 6a78 8ea2eaf8,8ea2eaf8v 9c0b e9b08b 9c0b 00009c0b f56a f56a f56a f56a f56a f56a f56a
+12946 f56b f56b f56b * * 6a79 8ea2eaf9,8ea2eaf9v 9c08 e9b088 9c08 00009c08 f56b f56b f56b f56b f56b f56b f56b
+12947 f56c f56c f56c * * 6a7a 8ea2eafa,8ea2eafav 9bf7 e9afb7 9bf7 00009bf7 f56c f56c f56c f56c f56c f56c f56c
+12948 f56d f56d f56d * * 6a7b 8ea2eafb,8ea2eafbv 9c05 e9b085 9c05 00009c05 f56d f56d f56d f56d f56d f56d f56d
+12949 f56e f56e f56e * * 6a7c 8ea2eafc,8ea2eafcv 9c12 e9b092 9c12 00009c12 f56e f56e f56e f56e f56e f56e f56e
+12950 f56f f56f f56f * * 6a7d 8ea2eafd,8ea2eafdv 9bf8 e9afb8 9bf8 00009bf8 f56f f56f f56f f56f f56f f56f f56f
+12951 f570 f570 f570 * * 6a7e 8ea2eafe,8ea2eafev 9c40 e9b180 9c40 00009c40 f570 f570 f570 f570 f570 f570 f570
+12952 f571 f571 f571 * * 6b21 8ea2eba1,8ea2eba1v 9c07 e9b087 9c07 00009c07 f571 f571 f571 f571 f571 f571 f571
+12953 f572 f572 f572 * * 6b22 8ea2eba2,8ea2eba2v 9c0e e9b08e 9c0e 00009c0e f572 f572 f572 f572 f572 f572 f572
+12954 f573 f573 f573 * * 6b23 8ea2eba3,8ea2eba3v 9c06 e9b086 9c06 00009c06 f573 f573 f573 f573 f573 f573 f573
+12955 f574 f574 f574 * * 6b24 8ea2eba4,8ea2eba4v 9c17 e9b097 9c17 00009c17 f574 f574 f574 f574 f574 f574 f574
+12956 f575 f575 f575 * * 6b25 8ea2eba5,8ea2eba5v 9c14 e9b094 9c14 00009c14 f575 f575 f575 f575 f575 f575 f575
+12957 f576 f576 f576 * * 6b26 8ea2eba6,8ea2eba6v 9c09 e9b089 9c09 00009c09 f576 f576 f576 f576 f576 f576 f576
+12958 f577 f577 f577 * * 6b27 8ea2eba7,8ea2eba7v 9d9f e9b69f 9d9f 00009d9f f577 f577 f577 f577 f577 f577 f577
+12959 f578 f578 f578 * * 6b28 8ea2eba8,8ea2eba8v 9d99 e9b699 9d99 00009d99 f578 f578 f578 f578 f578 f578 f578
+12960 f579 f579 f579 * * 6b29 8ea2eba9,8ea2eba9v 9da4 e9b6a4 9da4 00009da4 f579 f579 f579 f579 f579 f579 f579
+12961 f57a f57a f57a * * 6b2a 8ea2ebaa,8ea2ebaav 9d9d e9b69d 9d9d 00009d9d f57a f57a f57a f57a f57a f57a f57a
+12962 f57b f57b f57b * * 6b2b 8ea2ebab,8ea2ebabv 9d92 e9b692 9d92 00009d92 f57b f57b f57b f57b f57b f57b f57b
+12963 f57c f57c f57c * * 6b2c 8ea2ebac,8ea2ebacv 9d98 e9b698 9d98 00009d98 f57c f57c f57c f57c f57c f57c f57c
+12964 f57d f57d f57d * * 6b2d 8ea2ebad,8ea2ebadv 9d90 e9b690 9d90 00009d90 f57d f57d f57d f57d f57d f57d f57d
+12965 f57e f57e f57e * * 6b2e 8ea2ebae,8ea2ebaev 9d9b e9b69b 9d9b 00009d9b f57e f57e f57e f57e f57e f57e f57e
+12966 f5a1 f5a1 f5a1 * * 6b2f 8ea2ebaf,8ea2ebafv 9da0 e9b6a0 9da0 00009da0 f5a1 f5a1 f5a1 f5a1 f5a1 f5a1 f5a1
+12967 f5a2 f5a2 f5a2 * * 6b30 8ea2ebb0,8ea2ebb0v 9d94 e9b694 9d94 00009d94 f5a2 f5a2 f5a2 f5a2 f5a2 f5a2 f5a2
+12968 f5a3 f5a3 f5a3 * * 6b31 8ea2ebb1,8ea2ebb1v 9d9c e9b69c 9d9c 00009d9c f5a3 f5a3 f5a3 f5a3 f5a3 f5a3 f5a3
+12969 f5a4 f5a4 f5a4 * * 6b32 8ea2ebb2,8ea2ebb2v 9daa e9b6aa 9daa 00009daa f5a4 f5a4 f5a4 f5a4 f5a4 f5a4 f5a4
+12970 f5a5 f5a5 f5a5 * * 6b33 8ea2ebb3,8ea2ebb3v 9d97 e9b697 9d97 00009d97 f5a5 f5a5 f5a5 f5a5 f5a5 f5a5 f5a5
+12971 f5a6 f5a6 f5a6 * * 6b34 8ea2ebb4,8ea2ebb4v 9da1 e9b6a1 9da1 00009da1 f5a6 f5a6 f5a6 f5a6 f5a6 f5a6 f5a6
+12972 f5a7 f5a7 f5a7 * * 6b35 8ea2ebb5,8ea2ebb5v 9d9a e9b69a 9d9a 00009d9a f5a7 f5a7 f5a7 f5a7 f5a7 f5a7 f5a7
+12973 f5a8 f5a8 f5a8 * * 6b36 8ea2ebb6,8ea2ebb6v 9da2 e9b6a2 9da2 00009da2 f5a8 f5a8 f5a8 f5a8 f5a8 f5a8 f5a8
+12974 f5a9 f5a9 f5a9 * * 6b37 8ea2ebb7,8ea2ebb7v 9da8 e9b6a8 9da8 00009da8 f5a9 f5a9 f5a9 f5a9 f5a9 f5a9 f5a9
+12975 f5aa f5aa f5aa * * 6b38 8ea2ebb8,8ea2ebb8v 9d9e e9b69e 9d9e 00009d9e f5aa f5aa f5aa f5aa f5aa f5aa f5aa
+12976 f5ab f5ab f5ab * * 6b39 8ea2ebb9,8ea2ebb9v 9da3 e9b6a3 9da3 00009da3 f5ab f5ab f5ab f5ab f5ab f5ab f5ab
+12977 f5ac f5ac f5ac * * 6b3a 8ea2ebba,8ea2ebbav 9dbf e9b6bf 9dbf 00009dbf f5ac f5ac f5ac f5ac f5ac f5ac f5ac
+12978 f5ad f5ad f5ad * * 6b3b 8ea2ebbb,8ea2ebbbv 9da9 e9b6a9 9da9 00009da9 f5ad f5ad f5ad f5ad f5ad f5ad f5ad
+12979 f5ae f5ae f5ae * * 6b3c 8ea2ebbc,8ea2ebbcv 9d96 e9b696 9d96 00009d96 f5ae f5ae f5ae f5ae f5ae f5ae f5ae
+12980 f5af f5af f5af * * 6b3d 8ea2ebbd,8ea2ebbdv 9da6 e9b6a6 9da6 00009da6 f5af f5af f5af f5af f5af f5af f5af
+12981 f5b0 f5b0 f5b0 * * 6b3e 8ea2ebbe,8ea2ebbev 9da7 e9b6a7 9da7 00009da7 f5b0 f5b0 f5b0 f5b0 f5b0 f5b0 f5b0
+12982 f5b1 f5b1 f5b1 * * 6b3f 8ea2ebbf,8ea2ebbfv 9e99 e9ba99 9e99 00009e99 f5b1 f5b1 f5b1 f5b1 f5b1 f5b1 f5b1
+12983 f5b2 f5b2 f5b2 * * 6b40 8ea2ebc0,8ea2ebc0v 9e9b e9ba9b 9e9b 00009e9b f5b2 f5b2 f5b2 f5b2 f5b2 f5b2 f5b2
+12984 f5b3 f5b3 f5b3 * * 6b41 8ea2ebc1,8ea2ebc1v 9e9a e9ba9a 9e9a 00009e9a f5b3 f5b3 f5b3 f5b3 f5b3 f5b3 f5b3
+12985 f5b4 f5b4 f5b4 * * 6b42 8ea2ebc2,8ea2ebc2v 9ee5 e9bba5 9ee5 00009ee5 f5b4 f5b4 f5b4 f5b4 f5b4 f5b4 f5b4
+12986 f5b5 f5b5 f5b5 * * 6b43 8ea2ebc3,8ea2ebc3v 9ee4 e9bba4 9ee4 00009ee4 f5b5 f5b5 f5b5 f5b5 f5b5 f5b5 f5b5
+12987 f5b6 f5b6 f5b6 * * 6b44 8ea2ebc4,8ea2ebc4v 9ee7 e9bba7 9ee7 00009ee7 f5b6 f5b6 f5b6 f5b6 f5b6 f5b6 f5b6
+12988 f5b7 f5b7 f5b7 * * 6b45 8ea2ebc5,8ea2ebc5v 9ee6 e9bba6 9ee6 00009ee6 f5b7 f5b7 f5b7 f5b7 f5b7 f5b7 f5b7
+12989 f5b8 f5b8 f5b8 * * 6b46 8ea2ebc6,8ea2ebc6v 9f30 e9bcb0 9f30 00009f30 f5b8 f5b8 f5b8 f5b8 f5b8 f5b8 f5b8
+12990 f5b9 f5b9 f5b9 * * 6b47 8ea2ebc7,8ea2ebc7v 9f2e e9bcae 9f2e 00009f2e f5b9 f5b9 f5b9 f5b9 f5b9 f5b9 f5b9
+12991 f5ba f5ba f5ba * * 6b48 8ea2ebc8,8ea2ebc8v 9f5b e9bd9b 9f5b 00009f5b f5ba f5ba f5ba f5ba f5ba f5ba f5ba
+12992 f5bb f5bb f5bb * * 6b49 8ea2ebc9,8ea2ebc9v 9f60 e9bda0 9f60 00009f60 f5bb f5bb f5bb f5bb f5bb f5bb f5bb
+12993 f5bc f5bc f5bc * * 6b4a 8ea2ebca,8ea2ebcav 9f5e e9bd9e 9f5e 00009f5e f5bc f5bc f5bc f5bc f5bc f5bc f5bc
+12994 f5bd f5bd f5bd * * 6b4b 8ea2ebcb,8ea2ebcbv 9f5d e9bd9d 9f5d 00009f5d f5bd f5bd f5bd f5bd f5bd f5bd f5bd
+12995 f5be f5be f5be * * 6b4c 8ea2ebcc,8ea2ebccv 9f59 e9bd99 9f59 00009f59 f5be f5be f5be f5be f5be f5be f5be
+12996 f5bf f5bf f5bf * * 6b4d 8ea2ebcd,8ea2ebcdv 9f91 e9be91 9f91 00009f91 f5bf f5bf f5bf f5bf f5bf f5bf f5bf
+12997 f5c0 f5c0 f5c0 * * 6b4e 8ea2ebce,8ea2ebcev 513a e584ba 513a 0000513a f5c0 f5c0 f5c0 f5c0 f5c0 f5c0 f5c0
+12998 f5c1 f5c1 f5c1 * * 6b4f 8ea2ebcf,8ea2ebcfv 5139 e584b9 5139 00005139 f5c1 f5c1 f5c1 f5c1 f5c1 f5c1 f5c1
+12999 f5c2 f5c2 f5c2 * * 6b50 8ea2ebd0,8ea2ebd0v 5298 e58a98 5298 00005298 f5c2 f5c2 f5c2 f5c2 f5c2 f5c2 f5c2
+13000 f5c3 f5c3 f5c3 * * 6b51 8ea2ebd1,8ea2ebd1v 5297 e58a97 5297 00005297 f5c3 f5c3 f5c3 f5c3 f5c3 f5c3 f5c3
+13001 f5c4 f5c4 f5c4 * * 6b52 8ea2ebd2,8ea2ebd2v 56c3 e59b83 56c3 000056c3 f5c4 f5c4 f5c4 f5c4 f5c4 f5c4 f5c4
+13002 f5c5 f5c5 f5c5 * * 6b53 8ea2ebd3,8ea2ebd3v 56bd e59abd 56bd 000056bd f5c5 f5c5 f5c5 f5c5 f5c5 f5c5 f5c5
+13003 f5c6 f5c6 f5c6 * * 6b54 8ea2ebd4,8ea2ebd4v 56be e59abe 56be 000056be f5c6 f5c6 f5c6 f5c6 f5c6 f5c6 f5c6
+13004 f5c7 f5c7 f5c7 * * 6b55 8ea2ebd5,8ea2ebd5v 5b48 e5ad88 5b48 00005b48 f5c7 f5c7 f5c7 f5c7 f5c7 f5c7 f5c7
+13005 f5c8 f5c8 f5c8 * * 6b56 8ea2ebd6,8ea2ebd6v 5b47 e5ad87 5b47 00005b47 f5c8 f5c8 f5c8 f5c8 f5c8 f5c8 f5c8
+13006 f5c9 f5c9 f5c9 * * 6b57 8ea2ebd7,8ea2ebd7v 5dcb e5b78b 5dcb 00005dcb f5c9 f5c9 f5c9 f5c9 f5c9 f5c9 f5c9
+13007 f5ca f5ca f5ca * * 6b58 8ea2ebd8,8ea2ebd8v 5dcf e5b78f 5dcf 00005dcf f5ca f5ca f5ca f5ca f5ca f5ca f5ca
+13008 f5cb f5cb f5cb * * 6b59 8ea2ebd9,8ea2ebd9v 5ef1 e5bbb1 5ef1 00005ef1 f5cb f5cb f5cb f5cb f5cb f5cb f5cb
+13009 f5cc f5cc f5cc * * 6b5a 8ea2ebda,8ea2ebdav 61fd e687bd 61fd 000061fd f5cc f5cc f5cc f5cc f5cc f5cc f5cc
+13010 f5cd f5cd f5cd * * 6b5b 8ea2ebdb,8ea2ebdbv 651b e6949b 651b 0000651b f5cd f5cd f5cd f5cd f5cd f5cd f5cd
+13011 f5ce f5ce f5ce * * 6b5c 8ea2ebdc,8ea2ebdcv 6b02 e6ac82 6b02 00006b02 f5ce f5ce f5ce f5ce f5ce f5ce f5ce
+13012 f5cf f5cf f5cf * * 6b5d 8ea2ebdd,8ea2ebddv 6afc e6abbc 6afc 00006afc f5cf f5cf f5cf f5cf f5cf f5cf f5cf
+13013 f5d0 f5d0 f5d0 * * 6b5e 8ea2ebde,8ea2ebdev 6b03 e6ac83 6b03 00006b03 f5d0 f5d0 f5d0 f5d0 f5d0 f5d0 f5d0
+13014 f5d1 f5d1 f5d1 * * 6b5f 8ea2ebdf,8ea2ebdfv 6af8 e6abb8 6af8 00006af8 f5d1 f5d1 f5d1 f5d1 f5d1 f5d1 f5d1
+13015 f5d2 f5d2 f5d2 * * 6b60 8ea2ebe0,8ea2ebe0v 6b00 e6ac80 6b00 00006b00 f5d2 f5d2 f5d2 f5d2 f5d2 f5d2 f5d2
+13016 f5d3 f5d3 f5d3 * * 6b61 8ea2ebe1,8ea2ebe1v 7043 e78183 7043 00007043 f5d3 f5d3 f5d3 f5d3 f5d3 f5d3 f5d3
+13017 f5d4 f5d4 f5d4 * * 6b62 8ea2ebe2,8ea2ebe2v 7044 e78184 7044 00007044 f5d4 f5d4 f5d4 f5d4 f5d4 f5d4 f5d4
+13018 f5d5 f5d5 f5d5 * * 6b63 8ea2ebe3,8ea2ebe3v 704a e7818a 704a 0000704a f5d5 f5d5 f5d5 f5d5 f5d5 f5d5 f5d5
+13019 f5d6 f5d6 f5d6 * * 6b64 8ea2ebe4,8ea2ebe4v 7048 e78188 7048 00007048 f5d6 f5d6 f5d6 f5d6 f5d6 f5d6 f5d6
+13020 f5d7 f5d7 f5d7 * * 6b65 8ea2ebe5,8ea2ebe5v 7049 e78189 7049 00007049 f5d7 f5d7 f5d7 f5d7 f5d7 f5d7 f5d7
+13021 f5d8 f5d8 f5d8 * * 6b66 8ea2ebe6,8ea2ebe6v 7045 e78185 7045 00007045 f5d8 f5d8 f5d8 f5d8 f5d8 f5d8 f5d8
+13022 f5d9 f5d9 f5d9 * * 6b67 8ea2ebe7,8ea2ebe7v 7046 e78186 7046 00007046 f5d9 f5d9 f5d9 f5d9 f5d9 f5d9 f5d9
+13023 f5da f5da f5da * * 6b68 8ea2ebe8,8ea2ebe8v 721d e7889d 721d 0000721d f5da f5da f5da f5da f5da f5da f5da
+13024 f5db f5db f5db * * 6b69 8ea2ebe9,8ea2ebe9v 721a e7889a 721a 0000721a f5db f5db f5db f5db f5db f5db f5db
+13025 f5dc f5dc f5dc * * 6b6a 8ea2ebea,8ea2ebeav 7219 e78899 7219 00007219 f5dc f5dc f5dc f5dc f5dc f5dc f5dc
+13026 f5dd f5dd f5dd * * 6b6b 8ea2ebeb,8ea2ebebv 737e e78dbe 737e 0000737e f5dd f5dd f5dd f5dd f5dd f5dd f5dd
+13027 f5de f5de f5de * * 6b6c 8ea2ebec,8ea2ebecv 7517 e79497 7517 00007517 f5de f5de f5de f5de f5de f5de f5de
+13028 f5df f5df f5df * * 6b6d 8ea2ebed,8ea2ebedv 766a e799aa 766a 0000766a f5df f5df f5df f5df f5df f5df f5df
+13029 f5e0 f5e0 f5e0 * * 6b6e 8ea2ebee,8ea2ebeev 77d0 e79f90 77d0 000077d0 f5e0 f5e0 f5e0 f5e0 f5e0 f5e0 f5e0
+13030 f5e1 f5e1 f5e1 * * 6b6f 8ea2ebef,8ea2ebefv 792d e7a4ad 792d 0000792d f5e1 f5e1 f5e1 f5e1 f5e1 f5e1 f5e1
+13031 f5e2 f5e2 f5e2 * * 6b70 8ea2ebf0,8ea2ebf0v 7931 e7a4b1 7931 00007931 f5e2 f5e2 f5e2 f5e2 f5e2 f5e2 f5e2
+13032 f5e3 f5e3 f5e3 * * 6b71 8ea2ebf1,8ea2ebf1v 792f e7a4af 792f 0000792f f5e3 f5e3 f5e3 f5e3 f5e3 f5e3 f5e3
+13033 f5e4 f5e4 f5e4 * * 6b72 8ea2ebf2,8ea2ebf2v 7c54 e7b194 7c54 00007c54 f5e4 f5e4 f5e4 f5e4 f5e4 f5e4 f5e4
+13034 f5e5 f5e5 f5e5 * * 6b73 8ea2ebf3,8ea2ebf3v 7c53 e7b193 7c53 00007c53 f5e5 f5e5 f5e5 f5e5 f5e5 f5e5 f5e5
+13035 f5e6 f5e6 f5e6 * * 6b74 8ea2ebf4,8ea2ebf4v 7cf2 e7b3b2 7cf2 00007cf2 f5e6 f5e6 f5e6 f5e6 f5e6 f5e6 f5e6
+13036 f5e7 f5e7 f5e7 * * 6b75 8ea2ebf5,8ea2ebf5v 7e8a e7ba8a 7e8a 00007e8a f5e7 f5e7 f5e7 f5e7 f5e7 f5e7 f5e7
+13037 f5e8 f5e8 f5e8 * * 6b76 8ea2ebf6,8ea2ebf6v 7e87 eead85,e7ba87 eb45,7e87 0000eb45,00007e87 9b7b,f5e8 f5e8 f5e8 f5e8 f5e8 f5e8 9b7b,f5e8
+13038 f5e9 f5e9 f5e9 * * 6b77 8ea2ebf7,8ea2ebf7v 7e88 e7ba88 7e88 00007e88 f5e9 f5e9 f5e9 f5e9 f5e9 f5e9 f5e9
+13039 f5ea f5ea f5ea * * 6b78 8ea2ebf8,8ea2ebf8v 7e8b e7ba8b 7e8b 00007e8b f5ea f5ea f5ea f5ea f5ea f5ea f5ea
+13040 f5eb f5eb f5eb * * 6b79 8ea2ebf9,8ea2ebf9v 7e86 e7ba86 7e86 00007e86 f5eb f5eb f5eb f5eb f5eb f5eb f5eb
+13041 f5ec f5ec f5ec * * 6b7a 8ea2ebfa,8ea2ebfav 7e8d e7ba8d 7e8d 00007e8d f5ec f5ec f5ec f5ec f5ec f5ec f5ec
+13042 f5ed f5ed f5ed * * 6b7b 8ea2ebfb,8ea2ebfbv 7f4d e7bd8d 7f4d 00007f4d f5ed f5ed f5ed f5ed f5ed f5ed f5ed
+13043 f5ee f5ee f5ee * * 6b7c 8ea2ebfc,8ea2ebfcv 7fbb e7bebb 7fbb 00007fbb f5ee f5ee f5ee f5ee f5ee f5ee f5ee
+13044 f5ef f5ef f5ef * * 6b7d 8ea2ebfd,8ea2ebfdv 8030 e880b0 8030 00008030 f5ef f5ef f5ef f5ef f5ef f5ef f5ef
+13045 f5f0 f5f0 f5f0 * * 6b7e 8ea2ebfe,8ea2ebfev 81dd e8879d 81dd 000081dd f5f0 f5f0 f5f0 f5f0 f5f0 f5f0 f5f0
+13046 f5f1 f5f1 f5f1 * * 6c21 8ea2eca1,8ea2eca1v 8618 e89898 8618 00008618 f5f1 f5f1 f5f1 f5f1 f5f1 f5f1 f5f1
+13047 f5f2 f5f2 f5f2 * * 6c22 8ea2eca2,8ea2eca2v 862a e898aa 862a 0000862a f5f2 f5f2 f5f2 f5f2 f5f2 f5f2 f5f2
+13048 f5f3 f5f3 f5f3 * * 6c23 8ea2eca3,8ea2eca3v 8626 e898a6 8626 00008626 f5f3 f5f3 f5f3 f5f3 f5f3 f5f3 f5f3
+13049 f5f4 f5f4 f5f4 * * 6c24 8ea2eca4,8ea2eca4v 861f e8989f 861f 0000861f f5f4 f5f4 f5f4 f5f4 f5f4 f5f4 f5f4
+13050 f5f5 f5f5 f5f5 * * 6c25 8ea2eca5,8ea2eca5v 8623 e898a3 8623 00008623 f5f5 f5f5 f5f5 f5f5 f5f5 f5f5 f5f5
+13051 f5f6 f5f6 f5f6 * * 6c26 8ea2eca6,8ea2eca6v 861c e8989c 861c 0000861c f5f6 f5f6 f5f6 f5f6 f5f6 f5f6 f5f6
+13052 f5f7 f5f7 f5f7 * * 6c27 8ea2eca7,8ea2eca7v 8619 e89899 8619 00008619 f5f7 f5f7 f5f7 f5f7 f5f7 f5f7 f5f7
+13053 f5f8 f5f8 f5f8 * * 6c28 8ea2eca8,8ea2eca8v 8627 e898a7 8627 00008627 f5f8 f5f8 f5f8 f5f8 f5f8 f5f8 f5f8
+13054 f5f9 f5f9 f5f9 * * 6c29 8ea2eca9,8ea2eca9v 862e e898ae 862e 0000862e f5f9 f5f9 f5f9 f5f9 f5f9 f5f9 f5f9
+13055 f5fa f5fa f5fa * * 6c2a 8ea2ecaa,8ea2ecaav 8621 e898a1 8621 00008621 f5fa f5fa f5fa f5fa f5fa f5fa f5fa
+13056 f5fb f5fb f5fb * * 6c2b 8ea2ecab,8ea2ecabv 8620 e898a0 8620 00008620 f5fb f5fb f5fb f5fb f5fb f5fb f5fb
+13057 f5fc f5fc f5fc * * 6c2c 8ea2ecac,8ea2ecacv 8629 e898a9 8629 00008629 f5fc f5fc f5fc f5fc f5fc f5fc f5fc
+13058 f5fd f5fd f5fd * * 6c2d 8ea2ecad,8ea2ecadv 861e e8989e 861e 0000861e f5fd f5fd f5fd f5fd f5fd f5fd f5fd
+13059 f5fe f5fe f5fe * * 6c2e 8ea2ecae,8ea2ecaev 8625 e898a5 8625 00008625 f5fe f5fe f5fe f5fe f5fe f5fe f5fe
+13060 f640 f640 f640 * * 6c2f 8ea2ecaf,8ea2ecafv 8829 e8a0a9 8829 00008829 f640 f640 f640 f640 f640 f640 f640
+13061 f641 f641 f641 * * 6c30 8ea2ecb0,8ea2ecb0v 881d e8a09d 881d 0000881d f641 f641 f641 f641 f641 f641 f641
+13062 f642 f642 f642 * * 6c31 8ea2ecb1,8ea2ecb1v 881b e8a09b 881b 0000881b f642 f642 f642 f642 f642 f642 f642
+13063 f643 f643 f643 * * 6c32 8ea2ecb2,8ea2ecb2v 8820 e8a0a0 8820 00008820 f643 f643 f643 f643 f643 f643 f643
+13064 f644 f644 f644 * * 6c33 8ea2ecb3,8ea2ecb3v 8824 e8a0a4 8824 00008824 f644 f644 f644 f644 f644 f644 f644
+13065 f645 f645 f645 * * 6c34 8ea2ecb4,8ea2ecb4v 881c e8a09c 881c 0000881c f645 f645 f645 f645 f645 f645 f645
+13066 f646 f646 f646 * * 6c35 8ea2ecb5,8ea2ecb5v 882b e8a0ab 882b 0000882b f646 f646 f646 f646 f646 f646 f646
+13067 f647 f647 f647 * * 6c36 8ea2ecb6,8ea2ecb6v 884a e8a18a 884a 0000884a f647 f647 f647 f647 f647 f647 f647
+13068 f648 f648 f648 * * 6c37 8ea2ecb7,8ea2ecb7v 896d e8a5ad 896d 0000896d f648 f648 f648 f648 f648 f648 f648
+13069 f649 f649 f649 * * 6c38 8ea2ecb8,8ea2ecb8v 8969 e8a5a9 8969 00008969 f649 f649 f649 f649 f649 f649 f649
+13070 f64a f64a f64a * * 6c39 8ea2ecb9,8ea2ecb9v 896e e8a5ae 896e 0000896e f64a f64a f64a f64a f64a f64a f64a
+13071 f64b f64b f64b * * 6c3a 8ea2ecba,8ea2ecbav 896b e8a5ab 896b 0000896b f64b f64b f64b f64b f64b f64b f64b
+13072 f64c f64c f64c * * 6c3b 8ea2ecbb,8ea2ecbbv 89fa e8a7ba 89fa 000089fa f64c f64c f64c f64c f64c f64c f64c
+13073 f64d f64d f64d * * 6c3c 8ea2ecbc,8ea2ecbcv 8b79 e8adb9 8b79 00008b79 f64d f64d f64d f64d f64d f64d f64d
+13074 f64e f64e f64e * * 6c3d 8ea2ecbd,8ea2ecbdv 8b78 e8adb8 8b78 00008b78 f64e f64e f64e f64e f64e f64e f64e
+13075 f64f f64f f64f * * 6c3e 8ea2ecbe,8ea2ecbev 8b45 e8ad85 8b45 00008b45 f64f f64f f64f f64f f64f f64f f64f
+13076 f650 f650 f650 * * 6c3f 8ea2ecbf,8ea2ecbfv 8b7a e8adba 8b7a 00008b7a f650 f650 f650 f650 f650 f650 f650
+13077 f651 f651 f651 * * 6c40 8ea2ecc0,8ea2ecc0v 8b7b e8adbb 8b7b 00008b7b f651 f651 f651 f651 f651 f651 f651
+13078 f652 f652 f652 * * 6c41 8ea2ecc1,8ea2ecc1v 8d10 e8b490 8d10 00008d10 f652 f652 f652 f652 f652 f652 f652
+13079 f653 f653 f653 * * 6c42 8ea2ecc2,8ea2ecc2v 8d14 e8b494 8d14 00008d14 f653 f653 f653 f653 f653 f653 f653
+13080 f654 f654 f654 * * 6c43 8ea2ecc3,8ea2ecc3v 8daf e8b6af 8daf 00008daf f654 f654 f654 f654 f654 f654 f654
+13081 f655 f655 f655 * * 6c44 8ea2ecc4,8ea2ecc4v 8e8e e8ba8e 8e8e 00008e8e f655 f655 f655 f655 f655 f655 f655
+13082 f656 f656 f656 * * 6c45 8ea2ecc5,8ea2ecc5v 8e8c e8ba8c 8e8c 00008e8c f656 f656 f656 f656 f656 f656 f656
+13083 f657 f657 f657 * * 6c46 8ea2ecc6,8ea2ecc6v 8f5e e8bd9e 8f5e 00008f5e f657 f657 f657 f657 f657 f657 f657
+13084 f658 f658 f658 * * 6c47 8ea2ecc7,8ea2ecc7v 8f5b e8bd9b 8f5b 00008f5b f658 f658 f658 f658 f658 f658 f658
+13085 f659 f659 f659 * * 6c48 8ea2ecc8,8ea2ecc8v 8f5d e8bd9d 8f5d 00008f5d f659 f659 f659 f659 f659 f659 f659
+13086 f65a f65a f65a * * 6c49 8ea2ecc9,8ea2ecc9v 9146 e98586 9146 00009146 f65a f65a f65a f65a f65a f65a f65a
+13087 f65b f65b f65b * * 6c4a 8ea2ecca,8ea2eccav 9144 e98584 9144 00009144 f65b f65b f65b f65b f65b f65b f65b
+13088 f65c f65c f65c * * 6c4b 8ea2eccb,8ea2eccbv 9145 e98585 9145 00009145 f65c f65c f65c f65c f65c f65c f65c
+13089 f65d f65d f65d * * 6c4c 8ea2eccc,8ea2ecccv 91b9 e986b9 91b9 000091b9 f65d f65d f65d f65d f65d f65d f65d
+13090 f65e f65e f65e * * 6c4d 8ea2eccd,8ea2eccdv 943f e990bf 943f 0000943f f65e f65e f65e f65e f65e f65e f65e
+13091 f65f f65f f65f * * 6c4e 8ea2ecce,8ea2eccev 943b e990bb 943b 0000943b f65f f65f f65f f65f f65f f65f f65f
+13092 f660 f660 f660 * * 6c4f 8ea2eccf,8ea2eccfv 9436 e990b6 9436 00009436 f660 f660 f660 f660 f660 f660 f660
+13093 f661 f661 f661 * * 6c50 8ea2ecd0,8ea2ecd0v 9429 e990a9 9429 00009429 f661 f661 f661 f661 f661 f661 f661
+13094 f662 f662 f662 * * 6c51 8ea2ecd1,8ea2ecd1v 943d e990bd 943d 0000943d f662 f662 f662 f662 f662 f662 f662
+13095 f664 f664 f664 * * 6c52 8ea2ecd2,8ea2ecd2v 9430 e990b0 9430 00009430 f664 f664 f664 f664 f664 f664 f664
+13096 f665 f665 f665 * * 6c53 8ea2ecd3,8ea2ecd3v 9439 e990b9 9439 00009439 f665 f665 f665 f665 f665 f665 f665
+13097 f666 f666 f666 * * 6c54 8ea2ecd4,8ea2ecd4v 942a e990aa 942a 0000942a f666 f666 f666 f666 f666 f666 f666
+13098 f667 f667 f667 * * 6c55 8ea2ecd5,8ea2ecd5v 9437 e990b7 9437 00009437 f667 f667 f667 f667 f667 f667 f667
+13099 f668 f668 f668 * * 6c56 8ea2ecd6,8ea2ecd6v 942c e990ac 942c 0000942c f668 f668 f668 f668 f668 f668 f668
+13100 f669 f669 f669 * * 6c57 8ea2ecd7,8ea2ecd7v 9440 e99180 9440 00009440 f669 f669 f669 f669 f669 f669 f669
+13101 f66a f66a f66a * * 6c58 8ea2ecd8,8ea2ecd8v 9431 e990b1 9431 00009431 f66a f66a f66a f66a f66a f66a f66a
+13102 f66b f66b f66b * * 6c59 8ea2ecd9,8ea2ecd9v 95e5 e997a5 95e5 000095e5 f66b f66b f66b f66b f66b f66b f66b
+13103 f66c f66c f66c * * 6c5a 8ea2ecda,8ea2ecdav 95e4 e997a4 95e4 000095e4 f66c f66c f66c f66c f66c f66c f66c
+13104 f66d f66d f66d * * 6c5b 8ea2ecdb,8ea2ecdbv 95e3 e997a3 95e3 000095e3 f66d f66d f66d f66d f66d f66d f66d
+13105 f66e f66e f66e * * 6c5c 8ea2ecdc,8ea2ecdcv 9735 e99cb5 9735 00009735 f66e f66e f66e f66e f66e f66e f66e
+13106 f66f f66f f66f * * 6c5d 8ea2ecdd,8ea2ecddv 973a e99cba 973a 0000973a f66f f66f f66f f66f f66f f66f f66f
+13107 f670 f670 f670 * * 6c5e 8ea2ecde,8ea2ecdev 97bf e99ebf 97bf 000097bf f670 f670 f670 f670 f670 f670 f670
+13108 f671 f671 f671 * * 6c5f 8ea2ecdf,8ea2ecdfv 97e1 e99fa1 97e1 000097e1 f671 f671 f671 f671 f671 f671 f671
+13109 f672 f672 f672 * * 6c60 8ea2ece0,8ea2ece0v 9864 e9a1a4 9864 00009864 f672 f672 f672 f672 f672 f672 f672
+13110 f673 f673 f673 * * 6c61 8ea2ece1,8ea2ece1v 98c9 e9a389 98c9 000098c9 f673 f673 f673 f673 f673 f673 f673
+13111 f674 f674 f674 * * 6c62 8ea2ece2,8ea2ece2v 98c6 e9a386 98c6 000098c6 f674 f674 f674 f674 f674 f674 f674
+13112 f675 f675 f675 * * 6c63 8ea2ece3,8ea2ece3v 98c0 e9a380 98c0 000098c0 f675 f675 f675 f675 f675 f675 f675
+13113 f676 f676 f676 * * 6c64 8ea2ece4,8ea2ece4v 9958 e9a598 9958 00009958 f676 f676 f676 f676 f676 f676 f676
+13114 f677 f677 f677 * * 6c65 8ea2ece5,8ea2ece5v 9956 e9a596 9956 00009956 f677 f677 f677 f677 f677 f677 f677
+13115 f678 f678 f678 * * 6c66 8ea2ece6,8ea2ece6v 9a39 e9a8b9 9a39 00009a39 f678 f678 f678 f678 f678 f678 f678
+13116 f679 f679 f679 * * 6c67 8ea2ece7,8ea2ece7v 9a3d e9a8bd 9a3d 00009a3d f679 f679 f679 f679 f679 f679 f679
+13117 f67a f67a f67a * * 6c68 8ea2ece8,8ea2ece8v 9a46 e9a986 9a46 00009a46 f67a f67a f67a f67a f67a f67a f67a
+13118 f67b f67b f67b * * 6c69 8ea2ece9,8ea2ece9v 9a44 e9a984 9a44 00009a44 f67b f67b f67b f67b f67b f67b f67b
+13119 f67c f67c f67c * * 6c6a 8ea2ecea,8ea2eceav 9a42 e9a982 9a42 00009a42 f67c f67c f67c f67c f67c f67c f67c
+13120 f67d f67d f67d * * 6c6b 8ea2eceb,8ea2ecebv 9a41 e9a981 9a41 00009a41 f67d f67d f67d f67d f67d f67d f67d
+13121 f67e f67e f67e * * 6c6c 8ea2ecec,8ea2ececv 9a3a e9a8ba 9a3a 00009a3a f67e f67e f67e f67e f67e f67e f67e
+13122 f6a1 f6a1 f6a1 * * 6c6d 8ea2eced,8ea2ecedv 9a3f e9a8bf 9a3f 00009a3f f6a1 f6a1 f6a1 f6a1 f6a1 f6a1 f6a1
+13123 f6a2 f6a2 f6a2 * * 6c6e 8ea2ecee,8ea2eceev 9acd e9ab8d 9acd 00009acd f6a2 f6a2 f6a2 f6a2 f6a2 f6a2 f6a2
+13124 f6a3 f6a3 f6a3 * * 6c6f 8ea2ecef,8ea2ecefv 9b15 e9ac95 9b15 00009b15 f6a3 f6a3 f6a3 f6a3 f6a3 f6a3 f6a3
+13125 f6a4 f6a4 f6a4 * * 6c70 8ea2ecf0,8ea2ecf0v 9b17 e9ac97 9b17 00009b17 f6a4 f6a4 f6a4 f6a4 f6a4 f6a4 f6a4
+13126 f6a5 f6a5 f6a5 * * 6c71 8ea2ecf1,8ea2ecf1v 9b18 e9ac98 9b18 00009b18 f6a5 f6a5 f6a5 f6a5 f6a5 f6a5 f6a5
+13127 f6a6 f6a6 f6a6 * * 6c72 8ea2ecf2,8ea2ecf2v 9b16 e9ac96 9b16 00009b16 f6a6 f6a6 f6a6 f6a6 f6a6 f6a6 f6a6
+13128 f6a7 f6a7 f6a7 * * 6c73 8ea2ecf3,8ea2ecf3v 9b3a e9acba 9b3a 00009b3a f6a7 f6a7 f6a7 f6a7 f6a7 f6a7 f6a7
+13129 f6a8 f6a8 f6a8 * * 6c74 8ea2ecf4,8ea2ecf4v 9b52 e9ad92 9b52 00009b52 f6a8 f6a8 f6a8 f6a8 f6a8 f6a8 f6a8
+13130 f6a9 f6a9 f6a9 * * 6c75 8ea2ecf5,8ea2ecf5v 9c2b e9b0ab 9c2b 00009c2b f6a9 f6a9 f6a9 f6a9 f6a9 f6a9 f6a9
+13131 f6aa f6aa f6aa * * 6c76 8ea2ecf6,8ea2ecf6v 9c1d e9b09d 9c1d 00009c1d f6aa f6aa f6aa f6aa f6aa f6aa f6aa
+13132 f6ab f6ab f6ab * * 6c77 8ea2ecf7,8ea2ecf7v 9c1c e9b09c 9c1c 00009c1c f6ab f6ab f6ab f6ab f6ab f6ab f6ab
+13133 f6ac f6ac f6ac * * 6c78 8ea2ecf8,8ea2ecf8v 9c2c e9b0ac 9c2c 00009c2c f6ac f6ac f6ac f6ac f6ac f6ac f6ac
+13134 f6ad f6ad f6ad * * 6c79 8ea2ecf9,8ea2ecf9v 9c23 e9b0a3 9c23 00009c23 f6ad f6ad f6ad f6ad f6ad f6ad f6ad
+13135 f6ae f6ae f6ae * * 6c7a 8ea2ecfa,8ea2ecfav 9c28 e9b0a8 9c28 00009c28 f6ae f6ae f6ae f6ae f6ae f6ae f6ae
+13136 f6af f6af f6af * * 6c7b 8ea2ecfb,8ea2ecfbv 9c29 e9b0a9 9c29 00009c29 f6af f6af f6af f6af f6af f6af f6af
+13137 f6b0 f6b0 f6b0 * * 6c7c 8ea2ecfc,8ea2ecfcv 9c24 e9b0a4 9c24 00009c24 f6b0 f6b0 f6b0 f6b0 f6b0 f6b0 f6b0
+13138 f6b1 f6b1 f6b1 * * 6c7d 8ea2ecfd,8ea2ecfdv 9c21 e9b0a1 9c21 00009c21 f6b1 f6b1 f6b1 f6b1 f6b1 f6b1 f6b1
+13139 f6b2 f6b2 f6b2 * * 6c7e 8ea2ecfe,8ea2ecfev 9db7 e9b6b7 9db7 00009db7 f6b2 f6b2 f6b2 f6b2 f6b2 f6b2 f6b2
+13140 f6b3 f6b3 f6b3 * * 6d21 8ea2eda1,8ea2eda1v 9db6 e9b6b6 9db6 00009db6 f6b3 f6b3 f6b3 f6b3 f6b3 f6b3 f6b3
+13141 f6b4 f6b4 f6b4 * * 6d22 8ea2eda2,8ea2eda2v 9dbc e9b6bc 9dbc 00009dbc f6b4 f6b4 f6b4 f6b4 f6b4 f6b4 f6b4
+13142 f6b5 f6b5 f6b5 * * 6d23 8ea2eda3,8ea2eda3v 9dc1 e9b781 9dc1 00009dc1 f6b5 f6b5 f6b5 f6b5 f6b5 f6b5 f6b5
+13143 f6b6 f6b6 f6b6 * * 6d24 8ea2eda4,8ea2eda4v 9dc7 e9b787 9dc7 00009dc7 f6b6 f6b6 f6b6 f6b6 f6b6 f6b6 f6b6
+13144 f6b7 f6b7 f6b7 * * 6d25 8ea2eda5,8ea2eda5v 9dca e9b78a 9dca 00009dca f6b7 f6b7 f6b7 f6b7 f6b7 f6b7 f6b7
+13145 f6b8 f6b8 f6b8 * * 6d26 8ea2eda6,8ea2eda6v 9dcf e9b78f 9dcf 00009dcf f6b8 f6b8 f6b8 f6b8 f6b8 f6b8 f6b8
+13146 f6b9 f6b9 f6b9 * * 6d27 8ea2eda7,8ea2eda7v 9dbe e9b6be 9dbe 00009dbe f6b9 f6b9 f6b9 f6b9 f6b9 f6b9 f6b9
+13147 f6ba f6ba f6ba * * 6d28 8ea2eda8,8ea2eda8v 9dc5 e9b785 9dc5 00009dc5 f6ba f6ba f6ba f6ba f6ba f6ba f6ba
+13148 f6bb f6bb f6bb * * 6d29 8ea2eda9,8ea2eda9v 9dc3 e9b783 9dc3 00009dc3 f6bb f6bb f6bb f6bb f6bb f6bb f6bb
+13149 f6bc f6bc f6bc * * 6d2a 8ea2edaa,8ea2edaav 9dbb e9b6bb 9dbb 00009dbb f6bc f6bc f6bc f6bc f6bc f6bc f6bc
+13150 f6bd f6bd f6bd * * 6d2b 8ea2edab,8ea2edabv 9db5 e9b6b5 9db5 00009db5 f6bd f6bd f6bd f6bd f6bd f6bd f6bd
+13151 f6be f6be f6be * * 6d2c 8ea2edac,8ea2edacv 9dce e9b78e 9dce 00009dce f6be f6be f6be f6be f6be f6be f6be
+13152 f6bf f6bf f6bf * * 6d2d 8ea2edad,8ea2edadv 9db9 e9b6b9 9db9 00009db9 f6bf f6bf f6bf f6bf f6bf f6bf f6bf
+13153 f6c0 f6c0 f6c0 * * 6d2e 8ea2edae,8ea2edaev 9dba e9b6ba 9dba 00009dba f6c0 f6c0 f6c0 f6c0 f6c0 f6c0 f6c0
+13154 f6c1 f6c1 f6c1 * * 6d2f 8ea2edaf,8ea2edafv 9dac e9b6ac 9dac 00009dac f6c1 f6c1 f6c1 f6c1 f6c1 f6c1 f6c1
+13155 f6c2 f6c2 f6c2 * * 6d30 8ea2edb0,8ea2edb0v 9dc8 e9b788 9dc8 00009dc8 f6c2 f6c2 f6c2 f6c2 f6c2 f6c2 f6c2
+13156 f6c3 f6c3 f6c3 * * 6d31 8ea2edb1,8ea2edb1v 9db1 e9b6b1 9db1 00009db1 f6c3 f6c3 f6c3 f6c3 f6c3 f6c3 f6c3
+13157 f6c4 f6c4 f6c4 * * 6d32 8ea2edb2,8ea2edb2v 9dad e9b6ad 9dad 00009dad f6c4 f6c4 f6c4 f6c4 f6c4 f6c4 f6c4
+13158 f6c5 f6c5 f6c5 * * 6d33 8ea2edb3,8ea2edb3v 9dcc e9b78c 9dcc 00009dcc f6c5 f6c5 f6c5 f6c5 f6c5 f6c5 f6c5
+13159 f6c6 f6c6 f6c6 * * 6d34 8ea2edb4,8ea2edb4v 9db3 e9b6b3 9db3 00009db3 f6c6 f6c6 f6c6 f6c6 f6c6 f6c6 f6c6
+13160 f6c7 f6c7 f6c7 * * 6d35 8ea2edb5,8ea2edb5v 9dcd e9b78d 9dcd 00009dcd f6c7 f6c7 f6c7 f6c7 f6c7 f6c7 f6c7
+13161 f6c8 f6c8 f6c8 * * 6d36 8ea2edb6,8ea2edb6v 9db2 e9b6b2 9db2 00009db2 f6c8 f6c8 f6c8 f6c8 f6c8 f6c8 f6c8
+13162 f6c9 f6c9 f6c9 * * 6d37 8ea2edb7,8ea2edb7v 9e7a e9b9ba 9e7a 00009e7a f6c9 f6c9 f6c9 f6c9 f6c9 f6c9 f6c9
+13163 f6ca f6ca f6ca * * 6d38 8ea2edb8,8ea2edb8v 9e9c e9ba9c 9e9c 00009e9c f6ca f6ca f6ca f6ca f6ca f6ca f6ca
+13164 f6cb f6cb f6cb * * 6d39 8ea2edb9,8ea2edb9v 9eeb e9bbab 9eeb 00009eeb f6cb f6cb f6cb f6cb f6cb f6cb f6cb
+13165 f6cc f6cc f6cc * * 6d3a 8ea2edba,8ea2edbav 9eee e9bbae 9eee 00009eee f6cc f6cc f6cc f6cc f6cc f6cc f6cc
+13166 f6cd f6cd f6cd * * 6d3b 8ea2edbb,8ea2edbbv 9eed e9bbad 9eed 00009eed f6cd f6cd f6cd f6cd f6cd f6cd f6cd
+13167 f6ce f6ce f6ce * * 6d3c 8ea2edbc,8ea2edbcv 9f1b e9bc9b 9f1b 00009f1b f6ce f6ce f6ce f6ce f6ce f6ce f6ce
+13168 f6cf f6cf f6cf * * 6d3d 8ea2edbd,8ea2edbdv 9f18 e9bc98 9f18 00009f18 f6cf f6cf f6cf f6cf f6cf f6cf f6cf
+13169 f6d0 f6d0 f6d0 * * 6d3e 8ea2edbe,8ea2edbev 9f1a e9bc9a 9f1a 00009f1a f6d0 f6d0 f6d0 f6d0 f6d0 f6d0 f6d0
+13170 f6d1 f6d1 f6d1 * * 6d3f 8ea2edbf,8ea2edbfv 9f31 e9bcb1 9f31 00009f31 f6d1 f6d1 f6d1 f6d1 f6d1 f6d1 f6d1
+13171 f6d2 f6d2 f6d2 * * 6d40 8ea2edc0,8ea2edc0v 9f4e e9bd8e 9f4e 00009f4e f6d2 f6d2 f6d2 f6d2 f6d2 f6d2 f6d2
+13172 f6d3 f6d3 f6d3 * * 6d41 8ea2edc1,8ea2edc1v 9f65 e9bda5 9f65 00009f65 f6d3 f6d3 f6d3 f6d3 f6d3 f6d3 f6d3
+13173 f6d4 f6d4 f6d4 * * 6d42 8ea2edc2,8ea2edc2v 9f64 e9bda4 9f64 00009f64 f6d4 f6d4 f6d4 f6d4 f6d4 f6d4 f6d4
+13174 f6d5 f6d5 f6d5 * * 6d43 8ea2edc3,8ea2edc3v 9f92 e9be92 9f92 00009f92 f6d5 f6d5 f6d5 f6d5 f6d5 f6d5 f6d5
+13175 f6d6 f6d6 f6d6 * * 6d44 8ea2edc4,8ea2edc4v 4eb9 e4bab9 4eb9 00004eb9 f6d6 f6d6 f6d6 f6d6 f6d6 f6d6 f6d6
+13176 f6d7 f6d7 f6d7 * * 6d45 8ea2edc5,8ea2edc5v 56c6 e59b86 56c6 000056c6 f6d7 f6d7 f6d7 f6d7 f6d7 f6d7 f6d7
+13177 f6d8 f6d8 f6d8 * * 6d46 8ea2edc6,8ea2edc6v 56c5 e59b85 56c5 000056c5 f6d8 f6d8 f6d8 f6d8 f6d8 f6d8 f6d8
+13178 f6d9 f6d9 f6d9 * * 6d47 8ea2edc7,8ea2edc7v 56cb e59b8b 56cb 000056cb f6d9 f6d9 f6d9 f6d9 f6d9 f6d9 f6d9
+13179 f6da f6da f6da * * 6d48 8ea2edc8,8ea2edc8v 5971 e5a5b1 5971 00005971 f6da f6da f6da f6da f6da f6da f6da
+13180 f6db f6db f6db * * 6d49 8ea2edc9,8ea2edc9v 5b4b e5ad8b 5b4b 00005b4b f6db f6db f6db f6db f6db f6db f6db
+13181 f6dc f6dc f6dc * * 6d4a 8ea2edca,8ea2edcav 5b4c e5ad8c 5b4c 00005b4c f6dc f6dc f6dc f6dc f6dc f6dc f6dc
+13182 f6dd f6dd f6dd * * 6d4b 8ea2edcb,8ea2edcbv 5dd5 e5b795 5dd5 00005dd5 f6dd f6dd f6dd f6dd f6dd f6dd f6dd
+13183 f6de f6de f6de * * 6d4c 8ea2edcc,8ea2edccv 5dd1 e5b791 5dd1 00005dd1 f6de f6de f6de f6de f6de f6de f6de
+13184 f6df f6df f6df * * 6d4d 8ea2edcd,8ea2edcdv 5ef2 e5bbb2 5ef2 00005ef2 f6df f6df f6df f6df f6df f6df f6df
+13185 f6e0 f6e0 f6e0 * * 6d4e 8ea2edce,8ea2edcev 6521 e694a1 6521 00006521 f6e0 f6e0 f6e0 f6e0 f6e0 f6e0 f6e0
+13186 f6e1 f6e1 f6e1 * * 6d4f 8ea2edcf,8ea2edcfv 6520 e694a0 6520 00006520 f6e1 f6e1 f6e1 f6e1 f6e1 f6e1 f6e1
+13187 f6e2 f6e2 f6e2 * * 6d50 8ea2edd0,8ea2edd0v 6526 e694a6 6526 00006526 f6e2 f6e2 f6e2 f6e2 f6e2 f6e2 f6e2
+13188 f6e3 f6e3 f6e3 * * 6d51 8ea2edd1,8ea2edd1v 6522 e694a2 6522 00006522 f6e3 f6e3,fca5 91bb,f6e3 f6e3 f6e3 f6e3 f6e3
+13189 f6e4 f6e4 f6e4 * * 6d52 8ea2edd2,8ea2edd2v 6b0b e6ac8b 6b0b 00006b0b f6e4 f6e4 f6e4 f6e4 f6e4 f6e4 f6e4
+13190 f6e5 f6e5 f6e5 * * 6d53 8ea2edd3,8ea2edd3v 6b08 e6ac88 6b08 00006b08 f6e5 f6e5 f6e5 f6e5 f6e5 f6e5 f6e5
+13191 f6e6 f6e6 f6e6 * * 6d54 8ea2edd4,8ea2edd4v 6b09 e6ac89 6b09 00006b09 f6e6 f6e6 f6e6 f6e6 f6e6 f6e6 f6e6
+13192 f6e7 f6e7 f6e7 * * 6d55 8ea2edd5,8ea2edd5v 6c0d e6b08d 6c0d 00006c0d f6e7 f6e7 f6e7 f6e7 f6e7 f6e7 f6e7
+13193 f6e8 f6e8 f6e8 * * 6d56 8ea2edd6,8ea2edd6v 7055 e78195 7055 00007055 f6e8 f6e8 f6e8 f6e8 f6e8 f6e8 f6e8
+13194 f6e9 f6e9 f6e9 * * 6d57 8ea2edd7,8ea2edd7v 7056 e78196 7056 00007056 f6e9 f6e9 f6e9 f6e9 f6e9 f6e9 f6e9
+13195 f6ea f6ea f6ea * * 6d58 8ea2edd8,8ea2edd8v 7057 e78197 7057 00007057 f6ea f6ea f6ea f6ea f6ea f6ea f6ea
+13196 f6eb f6eb f6eb * * 6d59 8ea2edd9,8ea2edd9v 7052 e78192 7052 00007052 f6eb f6eb f6eb f6eb f6eb f6eb f6eb
+13197 f6ec f6ec f6ec * * 6d5a 8ea2edda,8ea2eddav 721e e7889e 721e 0000721e f6ec f6ec f6ec f6ec f6ec f6ec f6ec
+13198 f6ed f6ed f6ed * * 6d5b 8ea2eddb,8ea2eddbv 721f e7889f 721f 0000721f f6ed f6ed f6ed f6ed f6ed f6ed f6ed
+13199 f6ee f6ee f6ee * * 6d5c 8ea2eddc,8ea2eddcv 72a9 e78aa9 72a9 000072a9 f6ee f6ee f6ee f6ee f6ee f6ee f6ee
+13200 f6ef f6ef f6ef * * 6d5d 8ea2eddd,8ea2edddv 737f e78dbf 737f 0000737f f6ef f6ef f6ef f6ef f6ef f6ef f6ef
+13201 f6f0 f6f0 f6f0 * * 6d5e 8ea2edde,8ea2eddev 74d8 e79398 74d8 000074d8 f6f0 f6f0 f6f0 f6f0 f6f0 f6f0 f6f0
+13202 f6f1 f6f1 f6f1 * * 6d5f 8ea2eddf,8ea2eddfv 74d5 e79395 74d5 000074d5 f6f1 f6f1 f6f1 f6f1 f6f1 f6f1 f6f1
+13203 f6f2 f6f2 f6f2 * * 6d60 8ea2ede0,8ea2ede0v 74d9 e79399 74d9 000074d9 f6f2 f6f2 f6f2 f6f2 f6f2 f6f2 f6f2
+13204 f6f3 f6f3 f6f3 * * 6d61 8ea2ede1,8ea2ede1v 74d7 e79397 74d7 000074d7 f6f3 f6f3 f6f3 f6f3 f6f3 f6f3 f6f3
+13205 f6f4 f6f4 f6f4 * * 6d62 8ea2ede2,8ea2ede2v 766d e799ad 766d 0000766d f6f4 f6f4 f6f4 f6f4 f6f4 f6f4 f6f4
+13206 f6f5 f6f5 f6f5 * * 6d63 8ea2ede3,8ea2ede3v 76ad e79aad 76ad 000076ad f6f5 f6f5 f6f5 f6f5 f6f5 f6f5 f6f5
+13207 f6f6 f6f6 f6f6 * * 6d64 8ea2ede4,8ea2ede4v 7935 e7a4b5 7935 00007935 f6f6 f6f6 f6f6 f6f6 f6f6 f6f6 f6f6
+13208 f6f7 f6f7 f6f7 * * 6d65 8ea2ede5,8ea2ede5v 79b4 e7a6b4 79b4 000079b4 f6f7 f6f7 f6f7 f6f7 f6f7 f6f7 f6f7
+13209 f6f8 f6f8 f6f8 * * 6d66 8ea2ede6,8ea2ede6v 7a70 e7a9b0 7a70 00007a70 f6f8 f6f8 f6f8 f6f8 f6f8 f6f8 f6f8
+13210 f6f9 f6f9 f6f9 * * 6d67 8ea2ede7,8ea2ede7v 7a71 e7a9b1 7a71 00007a71 f6f9 f6f9 f6f9 f6f9 f6f9 f6f9 f6f9
+13211 f6fa f6fa f6fa * * 6d68 8ea2ede8,8ea2ede8v 7c57 e7b197 7c57 00007c57 f6fa f6fa f6fa f6fa f6fa f6fa f6fa
+13212 f6fb f6fb f6fb * * 6d69 8ea2ede9,8ea2ede9v 7c5c e7b19c 7c5c 00007c5c f6fb f6fb f6fb f6fb f6fb f6fb f6fb
+13213 f6fc f6fc f6fc * * 6d6a 8ea2edea,8ea2edeav 7c59 e7b199 7c59 00007c59 f6fc f6fc,fda2 9066,f6fc f6fc f6fc f6fc f6fc
+13214 f6fd f6fd f6fd * * 6d6b 8ea2edeb,8ea2edebv 7c5b e7b19b 7c5b 00007c5b f6fd f6fd f6fd f6fd f6fd f6fd f6fd
+13215 f6fe f6fe f6fe * * 6d6c 8ea2edec,8ea2edecv 7c5a e7b19a 7c5a 00007c5a f6fe f6fe f6fe f6fe f6fe f6fe f6fe
+13216 f740 f740 f740 * * 6d6d 8ea2eded,8ea2ededv 7cf4 e7b3b4 7cf4 00007cf4 f740 f740 f740 f740 f740 f740 f740
+13217 f741 f741 f741 * * 6d6e 8ea2edee,8ea2edeev 7cf1 e7b3b1 7cf1 00007cf1 f741 f741 f741 f741 f741 f741 f741
+13218 f742 f742 f742 * * 6d6f 8ea2edef,8ea2edefv 7e91 e7ba91 7e91 00007e91 f742 f742 f742 f742 f742 f742 f742
+13219 f743 f743 f743 * * 6d70 8ea2edf0,8ea2edf0v 7f4f e7bd8f 7f4f 00007f4f f743 f743 f743 f743 f743 f743 f743
+13220 f744 f744 f744 * * 6d71 8ea2edf1,8ea2edf1v 7f87 e7be87 7f87 00007f87 f744 f744 f744 f744 f744 f744 f744
+13221 f745 f745 f745 * * 6d72 8ea2edf2,8ea2edf2v 81de e8879e 81de 000081de f745 f745 f745 f745 f745 f745 f745
+13222 f746 f746 f746 * * 6d73 8ea2edf3,8ea2edf3v 826b e889ab 826b 0000826b f746 f746 f746 f746 f746 f746 f746
+13223 f747 f747 f747 * * 6d74 8ea2edf4,8ea2edf4v 8634 e898b4 8634 00008634 f747 f747 f747 f747 f747 f747 f747
+13224 f748 f748 f748 * * 6d75 8ea2edf5,8ea2edf5v 8635 e898b5 8635 00008635 f748 f748 f748 f748 f748 f748 f748
+13225 f749 f749 f749 * * 6d76 8ea2edf6,8ea2edf6v 8633 e898b3 8633 00008633 f749 f749 f749 f749 f749 f749 f749
+13226 f74a f74a f74a * * 6d77 8ea2edf7,8ea2edf7v 862c e898ac 862c 0000862c f74a f74a f74a f74a f74a f74a f74a
+13227 f74b f74b f74b * * 6d78 8ea2edf8,8ea2edf8v 8632 e898b2 8632 00008632 f74b f74b f74b f74b f74b f74b f74b
+13228 f74c f74c f74c * * 6d79 8ea2edf9,8ea2edf9v 8636 e898b6 8636 00008636 f74c f74c f74c f74c f74c f74c f74c
+13229 f74d f74d f74d * * 6d7a 8ea2edfa,8ea2edfav 882c e8a0ac 882c 0000882c f74d f74d f74d f74d f74d f74d f74d
+13230 f74e f74e f74e * * 6d7b 8ea2edfb,8ea2edfbv 8828 e8a0a8 8828 00008828 f74e f74e f74e f74e f74e f74e f74e
+13231 f74f f74f f74f * * 6d7c 8ea2edfc,8ea2edfcv 8826 e8a0a6 8826 00008826 f74f f74f f74f f74f f74f f74f f74f
+13232 f750 f750 f750 * * 6d7d 8ea2edfd,8ea2edfdv 882a e8a0aa 882a 0000882a f750 f750 f750 f750 f750 f750 f750
+13233 f751 f751 f751 * * 6d7e 8ea2edfe,8ea2edfev 8825 e8a0a5 8825 00008825 f751 f751 f751 f751 f751 f751 f751
+13234 f752 f752 f752 * * 6e21 8ea2eea1,8ea2eea1v 8971 e8a5b1 8971 00008971 f752 f752 f752 f752 f752 f752 f752
+13235 f753 f753 f753 * * 6e22 8ea2eea2,8ea2eea2v 89bf e8a6bf 89bf 000089bf f753 f753 f753 f753 f753 f753 f753
+13236 f754 f754 f754 * * 6e23 8ea2eea3,8ea2eea3v 89be e8a6be 89be 000089be f754 f754 f754 f754 f754 f754 f754
+13237 f755 f755 f755 * * 6e24 8ea2eea4,8ea2eea4v 89fb e8a7bb 89fb 000089fb f755 f755 f755 f755 f755 f755 f755
+13238 f756 f756 f756 * * 6e25 8ea2eea5,8ea2eea5v 8b7e e8adbe 8b7e 00008b7e f756 f756 f756 f756 f756 f756 f756
+13239 f757 f757 f757 * * 6e26 8ea2eea6,8ea2eea6v 8b84 e8ae84 8b84 00008b84 f757 f757 f757 f757 f757 f757 f757
+13240 f758 f758 f758 * * 6e27 8ea2eea7,8ea2eea7v 8b82 e8ae82 8b82 00008b82 f758 f758 f758 f758 f758 f758 f758
+13241 f759 f759 f759 * * 6e28 8ea2eea8,8ea2eea8v 8b86 e8ae86 8b86 00008b86 f759 f759 f759 f759 f759 f759 f759
+13242 f75a f75a f75a * * 6e29 8ea2eea9,8ea2eea9v 8b85 e8ae85 8b85 00008b85 f75a f75a f75a f75a f75a f75a f75a
+13243 f75b f75b f75b * * 6e2a 8ea2eeaa,8ea2eeaav 8b7f e8adbf 8b7f 00008b7f f75b f75b f75b f75b f75b f75b f75b
+13244 f75c f75c f75c * * 6e2b 8ea2eeab,8ea2eeabv 8d15 e8b495 8d15 00008d15 f75c f75c f75c f75c f75c f75c f75c
+13245 f75d f75d f75d * * 6e2c 8ea2eeac,8ea2eeacv 8e95 e8ba95 8e95 00008e95 f75d f75d f75d f75d f75d f75d f75d
+13246 f75e f75e f75e * * 6e2d 8ea2eead,8ea2eeadv 8e94 e8ba94 8e94 00008e94 f75e f75e f75e f75e f75e f75e f75e
+13247 f75f f75f f75f * * 6e2e 8ea2eeae,8ea2eeaev 8e9a e8ba9a 8e9a 00008e9a f75f f75f f75f f75f f75f f75f f75f
+13248 f760 f760 f760 * * 6e2f 8ea2eeaf,8ea2eeafv 8e92 e8ba92 8e92 00008e92 f760 f760 f760 f760 f760 f760 f760
+13249 f761 f761 f761 * * 6e30 8ea2eeb0,8ea2eeb0v 8e90 e8ba90 8e90 00008e90 f761 f761 f761 f761 f761 f761 f761
+13250 f762 f762 f762 * * 6e31 8ea2eeb1,8ea2eeb1v 8e96 e8ba96 8e96 00008e96 f762 f762 f762 f762 f762 f762 f762
+13251 f763 f763 f763 * * 6e32 8ea2eeb2,8ea2eeb2v 8e97 e8ba97 8e97 00008e97 f763 f763 f763 f763 f763 f763 f763
+13252 f764 f764 f764 * * 6e33 8ea2eeb3,8ea2eeb3v 8f60 e8bda0 8f60 00008f60 f764 f764 f764 f764 f764 f764 f764
+13253 f765 f765 f765 * * 6e34 8ea2eeb4,8ea2eeb4v 8f62 e8bda2 8f62 00008f62 f765 f765 f765 f765 f765 f765 f765
+13254 f766 f766 f766 * * 6e35 8ea2eeb5,8ea2eeb5v 9147 e98587 9147 00009147 f766 f766 f766 f766 f766 f766 f766
+13255 f767 f767 f767 * * 6e36 8ea2eeb6,8ea2eeb6v 944c e9918c 944c 0000944c f767 f767 f767 f767 f767 f767 f767
+13256 f768 f768 f768 * * 6e37 8ea2eeb7,8ea2eeb7v 9450 e99190 9450 00009450 f768 f768 f768 f768 f768 f768 f768
+13257 f769 f769 f769 * * 6e38 8ea2eeb8,8ea2eeb8v 944a e9918a 944a 0000944a f769 f769 f769 f769 f769 f769 f769
+13258 f76a f76a f76a * * 6e39 8ea2eeb9,8ea2eeb9v 944b e9918b 944b 0000944b f76a f76a f76a f76a f76a f76a f76a
+13259 f76b f76b f76b * * 6e3a 8ea2eeba,8ea2eebav 944f e9918f 944f 0000944f f76b f76b f76b f76b f76b f76b f76b
+13260 f76c f76c f76c * * 6e3b 8ea2eebb,8ea2eebbv 9447 e99187 9447 00009447 f76c f76c f76c f76c f76c f76c f76c
+13261 f76d f76d f76d * * 6e3c 8ea2eebc,8ea2eebcv 9445 e99185 9445 00009445 f76d f76d f76d f76d f76d f76d f76d
+13262 f76e f76e f76e * * 6e3d 8ea2eebd,8ea2eebdv 9448 e99188 9448 00009448 f76e f76e f76e f76e f76e f76e f76e
+13263 f76f f76f f76f * * 6e3e 8ea2eebe,8ea2eebev 9449 e99189 9449 00009449 f76f f76f f76f f76f f76f f76f f76f
+13264 f770 f770 f770 * * 6e3f 8ea2eebf,8ea2eebfv 9446 e99186 9446 00009446 f770 f770 f770 f770 f770 f770 f770
+13265 f771 f771 f771 * * 6e40 8ea2eec0,8ea2eec0v 973f e99cbf 973f 0000973f f771 f771 f771 f771 f771 f771 f771
+13266 f772 f772 f772 * * 6e41 8ea2eec1,8ea2eec1v 97e3 e99fa3 97e3 000097e3 f772 f772 f772 f772 f772 f772 f772
+13267 f773 f773 f773 * * 6e42 8ea2eec2,8ea2eec2v 986a e9a1aa 986a 0000986a f773 f773 f773 f773 f773 f773 f773
+13268 f774 f774 f774 * * 6e43 8ea2eec3,8ea2eec3v 9869 e9a1a9 9869 00009869 f774 f774 f774 f774 f774 f774 f774
+13269 f775 f775 f775 * * 6e44 8ea2eec4,8ea2eec4v 98cb e9a38b 98cb 000098cb f775 f775 f775 f775 f775 f775 f775
+13270 f776 f776 f776 * * 6e45 8ea2eec5,8ea2eec5v 9954 e9a594 9954 00009954 f776 f776 f776 f776 f776 f776 f776
+13271 f777 f777 f777 * * 6e46 8ea2eec6,8ea2eec6v 995b e9a59b 995b 0000995b f777 f777 f777 f777 f777 f777 f777
+13272 f778 f778 f778 * * 6e47 8ea2eec7,8ea2eec7v 9a4e e9a98e 9a4e 00009a4e f778 f778 f778 f778 f778 f778 f778
+13273 f779 f779 f779 * * 6e48 8ea2eec8,8ea2eec8v 9a53 e9a993 9a53 00009a53 f779 f779 f779 f779 f779 f779 f779
+13274 f77a f77a f77a * * 6e49 8ea2eec9,8ea2eec9v 9a54 e9a994 9a54 00009a54 f77a f77a f77a f77a f77a f77a f77a
+13275 f77b f77b f77b * * 6e4a 8ea2eeca,8ea2eecav 9a4c e9a98c 9a4c 00009a4c f77b f77b f77b f77b f77b f77b f77b
+13276 f77c f77c f77c * * 6e4b 8ea2eecb,8ea2eecbv 9a4f e9a98f 9a4f 00009a4f f77c f77c f77c f77c f77c f77c f77c
+13277 f77d f77d f77d * * 6e4c 8ea2eecc,8ea2eeccv 9a48 e9a988 9a48 00009a48 f77d f77d f77d f77d f77d f77d f77d
+13278 f77e f77e f77e * * 6e4d 8ea2eecd,8ea2eecdv 9a4a e9a98a 9a4a 00009a4a f77e f77e f77e f77e f77e f77e f77e
+13279 f7a1 f7a1 f7a1 * * 6e4e 8ea2eece,8ea2eecev 9a49 e9a989 9a49 00009a49 f7a1 f7a1 f7a1 f7a1 f7a1 f7a1 f7a1
+13280 f7a2 f7a2 f7a2 * * 6e4f 8ea2eecf,8ea2eecfv 9a52 e9a992 9a52 00009a52 f7a2 f7a2 f7a2 f7a2 f7a2 f7a2 f7a2
+13281 f7a3 f7a3 f7a3 * * 6e50 8ea2eed0,8ea2eed0v 9a50 e9a990 9a50 00009a50 f7a3 f7a3 f7a3 f7a3 f7a3 f7a3 f7a3
+13282 f7a4 f7a4 f7a4 * * 6e51 8ea2eed1,8ea2eed1v 9ad0 e9ab90 9ad0 00009ad0 f7a4 f7a4 f7a4 f7a4 f7a4 f7a4 f7a4
+13283 f7a5 f7a5 f7a5 * * 6e52 8ea2eed2,8ea2eed2v 9b19 e9ac99 9b19 00009b19 f7a5 f7a5 f7a5 f7a5 f7a5 f7a5 f7a5
+13284 f7a6 f7a6 f7a6 * * 6e53 8ea2eed3,8ea2eed3v 9b2b e9acab 9b2b 00009b2b f7a6 f7a6 f7a6 f7a6 f7a6 f7a6 f7a6
+13285 f7a7 f7a7 f7a7 * * 6e54 8ea2eed4,8ea2eed4v 9b3b e9acbb 9b3b 00009b3b f7a7 f7a7 f7a7 f7a7 f7a7 f7a7 f7a7
+13286 f7a8 f7a8 f7a8 * * 6e55 8ea2eed5,8ea2eed5v 9b56 e9ad96 9b56 00009b56 f7a8 f7a8 f7a8 f7a8 f7a8 f7a8 f7a8
+13287 f7a9 f7a9 f7a9 * * 6e56 8ea2eed6,8ea2eed6v 9b55 e9ad95 9b55 00009b55 f7a9 f7a9 f7a9 f7a9 f7a9 f7a9 f7a9
+13288 f7aa f7aa f7aa * * 6e57 8ea2eed7,8ea2eed7v 9c46 e9b186 9c46 00009c46 f7aa f7aa f7aa f7aa f7aa f7aa f7aa
+13289 f7ab f7ab f7ab * * 6e58 8ea2eed8,8ea2eed8v 9c48 e9b188 9c48 00009c48 f7ab f7ab f7ab f7ab f7ab f7ab f7ab
+13290 f7ac f7ac f7ac * * 6e59 8ea2eed9,8ea2eed9v 9c3f e9b0bf 9c3f 00009c3f f7ac f7ac f7ac f7ac f7ac f7ac f7ac
+13291 f7ad f7ad f7ad * * 6e5a 8ea2eeda,8ea2eedav 9c44 e9b184 9c44 00009c44 f7ad f7ad f7ad f7ad f7ad f7ad f7ad
+13292 f7ae f7ae f7ae * * 6e5b 8ea2eedb,8ea2eedbv 9c39 e9b0b9 9c39 00009c39 f7ae f7ae f7ae f7ae f7ae f7ae f7ae
+13293 f7af f7af f7af * * 6e5c 8ea2eedc,8ea2eedcv 9c33 e9b0b3 9c33 00009c33 f7af f7af f7af f7af f7af f7af f7af
+13294 f7b0 f7b0 f7b0 * * 6e5d 8ea2eedd,8ea2eeddv 9c41 e9b181 9c41 00009c41 f7b0 f7b0 f7b0 f7b0 f7b0 f7b0 f7b0
+13295 f7b1 f7b1 f7b1 * * 6e5e 8ea2eede,8ea2eedev 9c3c e9b0bc 9c3c 00009c3c f7b1 f7b1 f7b1 f7b1 f7b1 f7b1 f7b1
+13296 f7b2 f7b2 f7b2 * * 6e5f 8ea2eedf,8ea2eedfv 9c37 e9b0b7 9c37 00009c37 f7b2 f7b2 f7b2 f7b2 f7b2 f7b2 f7b2
+13297 f7b3 f7b3 f7b3 * * 6e60 8ea2eee0,8ea2eee0v 9c34 e9b0b4 9c34 00009c34 f7b3 f7b3 f7b3 f7b3 f7b3 f7b3 f7b3
+13298 f7b4 f7b4 f7b4 * * 6e61 8ea2eee1,8ea2eee1v 9c32 e9b0b2 9c32 00009c32 f7b4 f7b4 f7b4 f7b4 f7b4 f7b4 f7b4
+13299 f7b5 f7b5 f7b5 * * 6e62 8ea2eee2,8ea2eee2v 9c3d e9b0bd 9c3d 00009c3d f7b5 f7b5 f7b5 f7b5 f7b5 f7b5 f7b5
+13300 f7b6 f7b6 f7b6 * * 6e63 8ea2eee3,8ea2eee3v 9c36 e9b0b6 9c36 00009c36 f7b6 f7b6 f7b6 f7b6 f7b6 f7b6 f7b6
+13301 f7b7 f7b7 f7b7 * * 6e64 8ea2eee4,8ea2eee4v 9ddb e9b79b 9ddb 00009ddb f7b7 f7b7 f7b7 f7b7 f7b7 f7b7 f7b7
+13302 f7b8 f7b8 f7b8 * * 6e65 8ea2eee5,8ea2eee5v 9dd2 e9b792 9dd2 00009dd2 f7b8 f7b8 f7b8 f7b8 f7b8 f7b8 f7b8
+13303 f7b9 f7b9 f7b9 * * 6e66 8ea2eee6,8ea2eee6v 9dde e9b79e 9dde 00009dde f7b9 f7b9 f7b9 f7b9 f7b9 f7b9 f7b9
+13304 f7ba f7ba f7ba * * 6e67 8ea2eee7,8ea2eee7v 9dda e9b79a 9dda 00009dda f7ba f7ba f7ba f7ba f7ba f7ba f7ba
+13305 f7bb f7bb f7bb * * 6e68 8ea2eee8,8ea2eee8v 9dcb e9b78b 9dcb 00009dcb f7bb f7bb f7bb f7bb f7bb f7bb f7bb
+13306 f7bc f7bc f7bc * * 6e69 8ea2eee9,8ea2eee9v 9dd0 e9b790 9dd0 00009dd0 f7bc f7bc f7bc f7bc f7bc f7bc f7bc
+13307 f7bd f7bd f7bd * * 6e6a 8ea2eeea,8ea2eeeav 9ddc e9b79c 9ddc 00009ddc f7bd f7bd f7bd f7bd f7bd f7bd f7bd
+13308 f7be f7be f7be * * 6e6b 8ea2eeeb,8ea2eeebv 9dd1 e9b791 9dd1 00009dd1 f7be f7be f7be f7be f7be f7be f7be
+13309 f7bf f7bf f7bf * * 6e6c 8ea2eeec,8ea2eeecv 9ddf e9b79f 9ddf 00009ddf f7bf f7bf f7bf f7bf f7bf f7bf f7bf
+13310 f7c0 f7c0 f7c0 * * 6e6d 8ea2eeed,8ea2eeedv 9de9 e9b7a9 9de9 00009de9 f7c0 f7c0 f7c0 f7c0 f7c0 f7c0 f7c0
+13311 f7c1 f7c1 f7c1 * * 6e6e 8ea2eeee,8ea2eeeev 9dd9 e9b799 9dd9 00009dd9 f7c1 f7c1 f7c1 f7c1 f7c1 f7c1 f7c1
+13312 f7c2 f7c2 f7c2 * * 6e6f 8ea2eeef,8ea2eeefv 9dd8 e9b798 9dd8 00009dd8 f7c2 f7c2 f7c2 f7c2 f7c2 f7c2 f7c2
+13313 f7c3 f7c3 f7c3 * * 6e70 8ea2eef0,8ea2eef0v 9dd6 e9b796 9dd6 00009dd6 f7c3 f7c3 f7c3 f7c3 f7c3 f7c3 f7c3
+13314 f7c4 f7c4 f7c4 * * 6e71 8ea2eef1,8ea2eef1v 9df5 e9b7b5 9df5 00009df5 f7c4 f7c4 f7c4 f7c4 f7c4 f7c4 f7c4
+13315 f7c5 f7c5 f7c5 * * 6e72 8ea2eef2,8ea2eef2v 9dd5 e9b795 9dd5 00009dd5 f7c5 f7c5 f7c5 f7c5 f7c5 f7c5 f7c5
+13316 f7c6 f7c6 f7c6 * * 6e73 8ea2eef3,8ea2eef3v 9ddd e9b79d 9ddd 00009ddd f7c6 f7c6 f7c6 f7c6 f7c6 f7c6 f7c6
+13317 f7c7 f7c7 f7c7 * * 6e74 8ea2eef4,8ea2eef4v 9eb6 e9bab6 9eb6 00009eb6 f7c7 f7c7 f7c7 f7c7 f7c7 f7c7 f7c7
+13318 f7c8 f7c8 f7c8 * * 6e75 8ea2eef5,8ea2eef5v 9ef0 e9bbb0 9ef0 00009ef0 f7c8 f7c8 f7c8 f7c8 f7c8 f7c8 f7c8
+13319 f7c9 f7c9 f7c9 * * 6e76 8ea2eef6,8ea2eef6v 9f35 e9bcb5 9f35 00009f35 f7c9 f7c9 f7c9 f7c9 f7c9 f7c9 f7c9
+13320 f7ca f7ca f7ca * * 6e77 8ea2eef7,8ea2eef7v 9f33 e9bcb3 9f33 00009f33 f7ca f7ca f7ca f7ca f7ca f7ca f7ca
+13321 f7cb f7cb f7cb * * 6e78 8ea2eef8,8ea2eef8v 9f32 e9bcb2 9f32 00009f32 f7cb f7cb f7cb f7cb f7cb f7cb f7cb
+13322 f7cc f7cc f7cc * * 6e79 8ea2eef9,8ea2eef9v 9f42 e9bd82 9f42 00009f42 f7cc f7cc f7cc f7cc f7cc f7cc f7cc
+13323 f7cd f7cd f7cd * * 6e7a 8ea2eefa,8ea2eefav 9f6b e9bdab 9f6b 00009f6b f7cd f7cd f7cd f7cd f7cd f7cd f7cd
+13324 f7ce f7ce f7ce * * 6e7b 8ea2eefb,8ea2eefbv 9f95 e9be95 9f95 00009f95 f7ce f7ce f7ce f7ce f7ce f7ce f7ce
+13325 f7cf f7cf f7cf * * 6e7c 8ea2eefc,8ea2eefcv 9fa2 e9bea2 9fa2 00009fa2 f7cf f7cf f7cf f7cf f7cf f7cf f7cf
+13326 f7d0 f7d0 f7d0 * * 6e7d 8ea2eefd,8ea2eefdv 513d e584bd 513d 0000513d f7d0 f7d0 f7d0 f7d0 f7d0 f7d0 f7d0
+13327 f7d1 f7d1 f7d1 * * 6e7e 8ea2eefe,8ea2eefev 5299 e58a99 5299 00005299 f7d1 f7d1 f7d1 f7d1 f7d1 f7d1 f7d1
+13328 f7d2 f7d2 f7d2 * * 6f21 8ea2efa1,8ea2efa1v 58e8 e5a3a8 58e8 000058e8 f7d2 f7d2 f7d2 f7d2 f7d2 f7d2 f7d2
+13329 f7d3 f7d3 f7d3 * * 6f22 8ea2efa2,8ea2efa2v 58e7 e5a3a7 58e7 000058e7 f7d3 f7d3 f7d3 f7d3 f7d3 f7d3 f7d3
+13330 f7d4 f7d4 f7d4 * * 6f23 8ea2efa3,8ea2efa3v 5972 e5a5b2 5972 00005972 f7d4 f7d4 f7d4 f7d4 f7d4 f7d4 f7d4
+13331 f7d5 f7d5 f7d5 * * 6f24 8ea2efa4,8ea2efa4v 5b4d e5ad8d 5b4d 00005b4d f7d5 f7d5 f7d5 f7d5 f7d5 f7d5 f7d5
+13332 f7d6 f7d6 f7d6 * * 6f25 8ea2efa5,8ea2efa5v 5dd8 e5b798 5dd8 00005dd8 f7d6 f7d6 f7d6 f7d6 f7d6 f7d6 f7d6
+13333 f7d7 f7d7 f7d7 * * 6f26 8ea2efa6,8ea2efa6v 882f e8a0af 882f 0000882f f7d7 f7d7 f7d7 f7d7 f7d7 f7d7 f7d7
+13334 f7d8 f7d8 f7d8 * * 6f27 8ea2efa7,8ea2efa7v 5f4f e5bd8f 5f4f 00005f4f f7d8 f7d8 f7d8 f7d8 f7d8 f7d8 f7d8
+13335 f7d9 f7d9 f7d9 * * 6f28 8ea2efa8,8ea2efa8v 6201 e68881 6201 00006201 f7d9 f7d9 f7d9 f7d9 f7d9 f7d9 f7d9
+13336 f7da f7da f7da * * 6f29 8ea2efa9,8ea2efa9v 6203 e68883 6203 00006203 f7da f7da f7da f7da f7da f7da f7da
+13337 f7db f7db f7db * * 6f2a 8ea2efaa,8ea2efaav 6204 e68884 6204 00006204 f7db f7db f7db f7db f7db f7db f7db
+13338 f7dc f7dc f7dc * * 6f2b 8ea2efab,8ea2efabv 6529 e694a9 6529 00006529 f7dc f7dc f7dc f7dc f7dc f7dc f7dc
+13339 f7dd f7dd f7dd * * 6f2c 8ea2efac,8ea2efacv 6525 e694a5 6525 00006525 f7dd f7dd f7dd f7dd f7dd f7dd f7dd
+13340 f7de f7de f7de * * 6f2d 8ea2efad,8ea2efadv 6596 e69696 6596 00006596 f7de f7de f7de f7de f7de f7de f7de
+13341 f7df f7df f7df * * 6f2e 8ea2efae,8ea2efaev 66eb e69bab 66eb 000066eb f7df f7df f7df f7df f7df f7df f7df
+13342 f7e0 f7e0 f7e0 * * 6f2f 8ea2efaf,8ea2efafv 6b11 e6ac91 6b11 00006b11 f7e0 f7e0 f7e0 f7e0 f7e0 f7e0 f7e0
+13343 f7e1 f7e1 f7e1 * * 6f30 8ea2efb0,8ea2efb0v 6b12 e6ac92 6b12 00006b12 f7e1 f7e1 f7e1 f7e1 f7e1 f7e1 f7e1
+13344 f7e2 f7e2 f7e2 * * 6f31 8ea2efb1,8ea2efb1v 6b0f e6ac8f 6b0f 00006b0f f7e2 f7e2 f7e2 f7e2 f7e2 f7e2 f7e2
+13345 f7e3 f7e3 f7e3 * * 6f32 8ea2efb2,8ea2efb2v 6bca e6af8a 6bca 00006bca f7e3 f7e3 f7e3 f7e3 f7e3 f7e3 f7e3
+13346 f7e4 f7e4 f7e4 * * 6f33 8ea2efb3,8ea2efb3v 705b e7819b 705b 0000705b f7e4 f7e4 f7e4 f7e4 f7e4 f7e4 f7e4
+13347 f7e5 f7e5 f7e5 * * 6f34 8ea2efb4,8ea2efb4v 705a e7819a 705a 0000705a f7e5 f7e5 f7e5 f7e5 f7e5 f7e5 f7e5
+13348 f7e6 f7e6 f7e6 * * 6f35 8ea2efb5,8ea2efb5v 7222 e788a2 7222 00007222 f7e6 f7e6 f7e6 f7e6 f7e6 f7e6 f7e6
+13349 f7e7 f7e7 f7e7 * * 6f36 8ea2efb6,8ea2efb6v 7382 e78e82 7382 00007382 f7e7 f7e7 f7e7 f7e7 f7e7 f7e7 f7e7
+13350 f7e8 f7e8 f7e8 * * 6f37 8ea2efb7,8ea2efb7v 7381 e78e81 7381 00007381 f7e8 f7e8 f7e8 f7e8 f7e8 f7e8 f7e8
+13351 f7e9 f7e9 f7e9 * * 6f38 8ea2efb8,8ea2efb8v 7383 e78e83 7383 00007383 f7e9 f7e9 f7e9 f7e9 f7e9 f7e9 f7e9
+13352 f7ea f7ea f7ea * * 6f39 8ea2efb9,8ea2efb9v 7670 e799b0 7670 00007670 f7ea f7ea f7ea f7ea f7ea f7ea f7ea
+13353 f7eb f7eb f7eb * * 6f3a 8ea2efba,8ea2efbav 77d4 e79f94 77d4 000077d4 f7eb f7eb f7eb f7eb f7eb f7eb f7eb
+13354 f7ec f7ec f7ec * * 6f3b 8ea2efbb,8ea2efbbv 7c67 e7b1a7 7c67 00007c67 f7ec f7ec f7ec f7ec f7ec f7ec f7ec
+13355 f7ed f7ed f7ed * * 6f3c 8ea2efbc,8ea2efbcv 7c66 e7b1a6 7c66 00007c66 f7ed f7ed f7ed f7ed f7ed f7ed f7ed
+13356 f7ee f7ee f7ee * * 6f3d 8ea2efbd,8ea2efbdv 7e95 e7ba95 7e95 00007e95 f7ee f7ee f7ee f7ee f7ee f7ee f7ee
+13357 f7ef f7ef f7ef * * 6f3e 8ea2efbe,8ea2efbev 826c e889ac 826c 0000826c f7ef f7ef f7ef f7ef f7ef f7ef f7ef
+13358 f7f0 f7f0 f7f0 * * 6f3f 8ea2efbf,8ea2efbfv 863a e898ba 863a 0000863a f7f0 f7f0 f7f0 f7f0 f7f0 f7f0 f7f0
+13359 f7f1 f7f1 f7f1 * * 6f40 8ea2efc0,8ea2efc0v 8640 e89980 8640 00008640 f7f1 f7f1 f7f1 f7f1 f7f1 f7f1 f7f1
+13360 f7f2 f7f2 f7f2 * * 6f41 8ea2efc1,8ea2efc1v 8639 e898b9 8639 00008639 f7f2 f7f2 f7f2 f7f2 f7f2 f7f2 f7f2
+13361 f7f3 f7f3 f7f3 * * 6f42 8ea2efc2,8ea2efc2v 863c e898bc 863c 0000863c f7f3 f7f3 f7f3 f7f3 f7f3 f7f3 f7f3
+13362 f7f4 f7f4 f7f4 * * 6f43 8ea2efc3,8ea2efc3v 8631 e898b1 8631 00008631 f7f4 f7f4 f7f4 f7f4 f7f4 f7f4 f7f4
+13363 f7f5 f7f5 f7f5 * * 6f44 8ea2efc4,8ea2efc4v 863b e898bb 863b 0000863b f7f5 f7f5 f7f5 f7f5 f7f5 f7f5 f7f5
+13364 f7f6 f7f6 f7f6 * * 6f45 8ea2efc5,8ea2efc5v 863e e898be 863e 0000863e f7f6 f7f6 f7f6 f7f6 f7f6 f7f6 f7f6
+13365 f7f7 f7f7 f7f7 * * 6f46 8ea2efc6,8ea2efc6v 8830 e8a0b0 8830 00008830 f7f7 f7f7 f7f7 f7f7 f7f7 f7f7 f7f7
+13366 f7f8 f7f8 f7f8 * * 6f47 8ea2efc7,8ea2efc7v 8832 e8a0b2 8832 00008832 f7f8 f7f8 f7f8 f7f8 f7f8 f7f8 f7f8
+13367 f7f9 f7f9 f7f9 * * 6f48 8ea2efc8,8ea2efc8v 882e e8a0ae 882e 0000882e f7f9 f7f9 f7f9 f7f9 f7f9 f7f9 f7f9
+13368 f7fa f7fa f7fa * * 6f49 8ea2efc9,8ea2efc9v 8833 e8a0b3 8833 00008833 f7fa f7fa f7fa f7fa f7fa f7fa f7fa
+13369 f7fb f7fb f7fb * * 6f4a 8ea2efca,8ea2efcav 8976 e8a5b6 8976 00008976 f7fb f7fb f7fb f7fb f7fb f7fb f7fb
+13370 f7fc f7fc f7fc * * 6f4b 8ea2efcb,8ea2efcbv 8974 e8a5b4 8974 00008974 f7fc f7fc f7fc f7fc f7fc f7fc f7fc
+13371 f7fd f7fd f7fd * * 6f4c 8ea2efcc,8ea2efccv 8973 e8a5b3 8973 00008973 f7fd f7fd f7fd f7fd f7fd f7fd f7fd
+13372 f7fe f7fe f7fe * * 6f4d 8ea2efcd,8ea2efcdv 89fe e8a7be 89fe 000089fe f7fe f7fe f7fe f7fe f7fe f7fe f7fe
+13373 f840 f840 f840 * * 6f4e 8ea2efce,8ea2efcev 8b8c e8ae8c 8b8c 00008b8c f840 f840 f840 f840 f840 f840 f840
+13374 f841 f841 f841 * * 6f4f 8ea2efcf,8ea2efcfv 8b8e e8ae8e 8b8e 00008b8e f841 f841 f841 f841 f841 f841 f841
+13375 f842 f842 f842 * * 6f50 8ea2efd0,8ea2efd0v 8b8b e8ae8b 8b8b 00008b8b f842 f842 f842 f842 f842 f842 f842
+13376 f843 f843 f843 * * 6f51 8ea2efd1,8ea2efd1v 8b88 e8ae88 8b88 00008b88 f843 f843 f843 f843 f843 f843 f843
+13377 f844 f844 f844 * * 6f52 8ea2efd2,8ea2efd2v 8c45 e8b185 8c45 00008c45 f844 f844 f844 f844 f844 f844 f844
+13378 f845 f845 f845 * * 6f53 8ea2efd3,8ea2efd3v 8d19 e8b499 8d19 00008d19 f845 f845 f845 f845 f845 f845 f845
+13379 f846 f846 f846 * * 6f54 8ea2efd4,8ea2efd4v 8e98 e8ba98 8e98 00008e98 f846 f846 f846 f846 f846 f846 f846
+13380 f847 f847 f847 * * 6f55 8ea2efd5,8ea2efd5v 8f64 e8bda4 8f64 00008f64 f847 f847 f847 f847 f847 f847 f847
+13381 f848 f848 f848 * * 6f56 8ea2efd6,8ea2efd6v 8f63 e8bda3 8f63 00008f63 f848 f848 f848 f848 f848 f848 f848
+13382 f849 f849 f849 * * 6f57 8ea2efd7,8ea2efd7v 91bc e986bc 91bc 000091bc f849 f849 f849 f849 f849 f849 f849
+13383 f84a f84a f84a * * 6f58 8ea2efd8,8ea2efd8v 9462 e991a2 9462 00009462 f84a f84a f84a f84a f84a f84a f84a
+13384 f84b f84b f84b * * 6f59 8ea2efd9,8ea2efd9v 9455 e99195 9455 00009455 f84b f84b f84b f84b f84b f84b f84b
+13385 f84c f84c f84c * * 6f5a 8ea2efda,8ea2efdav 945d e9919d 945d 0000945d f84c f84c f84c f84c f84c f84c f84c
+13386 f84d f84d f84d * * 6f5b 8ea2efdb,8ea2efdbv 9457 e99197 9457 00009457 f84d f84d f84d f84d f84d f84d f84d
+13387 f84e f84e f84e * * 6f5c 8ea2efdc,8ea2efdcv 945e e9919e 945e 0000945e f84e f84e f84e f84e f84e f84e f84e
+13388 f84f f84f f84f * * 6f5d 8ea2efdd,8ea2efddv 97c4 e99f84 97c4 000097c4 f84f f84f f84f f84f f84f f84f f84f
+13389 f850 f850 f850 * * 6f5e 8ea2efde,8ea2efdev 97c5 e99f85 97c5 000097c5 f850 f850 f850 f850 f850 f850 f850
+13390 f851 f851 f851 * * 6f5f 8ea2efdf,8ea2efdfv 9800 e9a080 9800 00009800 f851 f851 f851 f851 f851 f851 f851
+13391 f852 f852 f852 * * 6f60 8ea2efe0,8ea2efe0v 9a56 e9a996 9a56 00009a56 f852 f852 f852 f852 f852 f852 f852
+13392 f853 f853 f853 * * 6f61 8ea2efe1,8ea2efe1v 9a59 e9a999 9a59 00009a59 f853 f853 f853 f853 f853 f853 f853
+13393 f854 f854 f854 * * 6f62 8ea2efe2,8ea2efe2v 9b1e e9ac9e 9b1e 00009b1e f854 f854 f854 f854 f854 f854 f854
+13394 f855 f855 f855 * * 6f63 8ea2efe3,8ea2efe3v 9b1f e9ac9f 9b1f 00009b1f f855 f855 f855 f855 f855 f855 f855
+13395 f856 f856 f856 * * 6f64 8ea2efe4,8ea2efe4v 9b20 e9aca0 9b20 00009b20 f856 f856 f856 f856 f856 f856 f856
+13396 f857 f857 f857 * * 6f65 8ea2efe5,8ea2efe5v 9c52 e9b192 9c52 00009c52 f857 f857 f857 f857 f857 f857 f857
+13397 f858 f858 f858 * * 6f66 8ea2efe6,8ea2efe6v 9c58 e9b198 9c58 00009c58 f858 f858 f858 f858 f858 f858 f858
+13398 f859 f859 f859 * * 6f67 8ea2efe7,8ea2efe7v 9c50 e9b190 9c50 00009c50 f859 f859 f859 f859 f859 f859 f859
+13399 f85a f85a f85a * * 6f68 8ea2efe8,8ea2efe8v 9c4a e9b18a 9c4a 00009c4a f85a f85a f85a f85a f85a f85a f85a
+13400 f85b f85b f85b * * 6f69 8ea2efe9,8ea2efe9v 9c4d e9b18d 9c4d 00009c4d f85b f85b f85b f85b f85b f85b f85b
+13401 f85c f85c f85c * * 6f6a 8ea2efea,8ea2efeav 9c4b e9b18b 9c4b 00009c4b f85c f85c f85c f85c f85c f85c f85c
+13402 f85d f85d f85d * * 6f6b 8ea2efeb,8ea2efebv 9c55 e9b195 9c55 00009c55 f85d f85d f85d f85d f85d f85d f85d
+13403 f85e f85e f85e * * 6f6c 8ea2efec,8ea2efecv 9c59 e9b199 9c59 00009c59 f85e f85e f85e f85e f85e f85e f85e
+13404 f85f f85f f85f * * 6f6d 8ea2efed,8ea2efedv 9c4c e9b18c 9c4c 00009c4c f85f f85f f85f f85f f85f f85f f85f
+13405 f860 f860 f860 * * 6f6e 8ea2efee,8ea2efeev 9c4e e9b18e 9c4e 00009c4e f860 f860 f860 f860 f860 f860 f860
+13406 f861 f861 f861 * * 6f6f 8ea2efef,8ea2efefv 9dfb e9b7bb 9dfb 00009dfb f861 f861 f861 f861 f861 f861 f861
+13407 f862 f862 f862 * * 6f70 8ea2eff0,8ea2eff0v 9df7 e9b7b7 9df7 00009df7 f862 f862 f862 f862 f862 f862 f862
+13408 f863 f863 f863 * * 6f71 8ea2eff1,8ea2eff1v 9def e9b7af 9def 00009def f863 f863 f863 f863 f863 f863 f863
+13409 f864 f864 f864 * * 6f72 8ea2eff2,8ea2eff2v 9de3 e9b7a3 9de3 00009de3 f864 f864 f864 f864 f864 f864 f864
+13410 f865 f865 f865 * * 6f73 8ea2eff3,8ea2eff3v 9deb e9b7ab 9deb 00009deb f865 f865 f865 f865 f865 f865 f865
+13411 f866 f866 f866 * * 6f74 8ea2eff4,8ea2eff4v 9df8 e9b7b8 9df8 00009df8 f866 f866 f866 f866 f866 f866 f866
+13412 f867 f867 f867 * * 6f75 8ea2eff5,8ea2eff5v 9de4 e9b7a4 9de4 00009de4 f867 f867 f867 f867 f867 f867 f867
+13413 f868 f868 f868 * * 6f76 8ea2eff6,8ea2eff6v 9df6 e9b7b6 9df6 00009df6 f868 f868 f868 f868 f868 f868 f868
+13414 f869 f869 f869 * * 6f77 8ea2eff7,8ea2eff7v 9de1 e9b7a1 9de1 00009de1 f869 f869 f869 f869 f869 f869 f869
+13415 f86a f86a f86a * * 6f78 8ea2eff8,8ea2eff8v 9dee e9b7ae 9dee 00009dee f86a f86a f86a f86a f86a f86a f86a
+13416 f86b f86b f86b * * 6f79 8ea2eff9,8ea2eff9v 9de6 e9b7a6 9de6 00009de6 f86b f86b f86b f86b f86b f86b f86b
+13417 f86c f86c f86c * * 6f7a 8ea2effa,8ea2effav 9df2 e9b7b2 9df2 00009df2 f86c f86c f86c f86c f86c f86c f86c
+13418 f86d f86d f86d * * 6f7b 8ea2effb,8ea2effbv 9df0 e9b7b0,eeaf92 9df0,ebd2 00009df0,0000ebd2 9c6b,f86d f86d f86d 9c6b,f86d f86d f86d 9c6b,f86d
+13419 f86e f86e f86e * * 6f7c 8ea2effc,8ea2effcv 9de2 e9b7a2 9de2 00009de2 f86e f86e f86e f86e f86e f86e f86e
+13420 f86f f86f f86f * * 6f7d 8ea2effd,8ea2effdv 9dec e9b7ac 9dec 00009dec f86f f86f f86f f86f f86f f86f f86f
+13421 f870 f870 f870 * * 6f7e 8ea2effe,8ea2effev 9df4 e9b7b4 9df4 00009df4 f870 f870 f870 f870 f870 f870 f870
+13422 f871 f871 f871 * * 7021 8ea2f0a1,8ea2f0a1v 9df3 e9b7b3 9df3 00009df3 f871 f871 f871 f871 f871 f871 f871
+13423 f872 f872 f872 * * 7022 8ea2f0a2,8ea2f0a2v 9de8 e9b7a8 9de8 00009de8 f872 f872 f872 f872 f872 f872 f872
+13424 f873 f873 f873 * * 7023 8ea2f0a3,8ea2f0a3v 9ded e9b7ad 9ded 00009ded f873 f873 f873 f873 f873 f873 f873
+13425 f874 f874 f874 * * 7024 8ea2f0a4,8ea2f0a4v 9ec2 e9bb82 9ec2 00009ec2 f874 f874 f874 f874 f874 f874 f874
+13426 f875 f875 f875 * * 7025 8ea2f0a5,8ea2f0a5v 9ed0 e9bb90 9ed0 00009ed0 f875 f875 f875 f875 f875 f875 f875
+13427 f876 f876 f876 * * 7026 8ea2f0a6,8ea2f0a6v 9ef2 e9bbb2 9ef2 00009ef2 f876 f876 f876 f876 f876 f876 f876
+13428 f877 f877 f877 * * 7027 8ea2f0a7,8ea2f0a7v 9ef3 e9bbb3 9ef3 00009ef3 f877 f877 f877 f877 f877 f877 f877
+13429 f878 f878 f878 * * 7028 8ea2f0a8,8ea2f0a8v 9f06 e9bc86 9f06 00009f06 f878 f878 f878 f878 f878 f878 f878
+13430 f879 f879 f879 * * 7029 8ea2f0a9,8ea2f0a9v 9f1c e9bc9c 9f1c 00009f1c f879 f879 f879 f879 f879 f879 f879
+13431 f87a f87a f87a * * 702a 8ea2f0aa,8ea2f0aav 9f38 e9bcb8 9f38 00009f38 f87a f87a f87a f87a f87a f87a f87a
+13432 f87b f87b f87b * * 702b 8ea2f0ab,8ea2f0abv 9f37 e9bcb7 9f37 00009f37 f87b f87b f87b f87b f87b f87b f87b
+13433 f87c f87c f87c * * 702c 8ea2f0ac,8ea2f0acv 9f36 e9bcb6 9f36 00009f36 f87c f87c f87c f87c f87c f87c f87c
+13434 f87d f87d f87d * * 702d 8ea2f0ad,8ea2f0adv 9f43 e9bd83 9f43 00009f43 f87d f87d f87d f87d f87d f87d f87d
+13435 f87e f87e f87e * * 702e 8ea2f0ae,8ea2f0aev 9f4f e9bd8f 9f4f 00009f4f f87e f87e f87e f87e f87e f87e f87e
+13436 f8a1 f8a1 f8a1 * * 702f 8ea2f0af,8ea2f0afv 9f71 e9bdb1 9f71 00009f71 f8a1 f8a1 f8a1 f8a1 f8a1 f8a1 f8a1
+13437 f8a2 f8a2 f8a2 * * 7030 8ea2f0b0,8ea2f0b0v 9f70 e9bdb0 9f70 00009f70 f8a2 f8a2 f8a2 f8a2 f8a2 f8a2 f8a2
+13438 f8a3 f8a3 f8a3 * * 7031 8ea2f0b1,8ea2f0b1v 9f6e e9bdae 9f6e 00009f6e f8a3 f8a3 f8a3 f8a3 f8a3 f8a3 f8a3
+13439 f8a4 f8a4 f8a4 * * 7032 8ea2f0b2,8ea2f0b2v 9f6f e9bdaf 9f6f 00009f6f f8a4 f8a4 f8a4 f8a4 f8a4 f8a4 f8a4
+13440 f8a5 f8a5 f8a5 * * 7033 8ea2f0b3,8ea2f0b3v 56d3 e59b93 56d3 000056d3 f8a5 f8a5 f8a5 f8a5 f8a5 f8a5 f8a5
+13441 f8a6 f8a6 f8a6 * * 7034 8ea2f0b4,8ea2f0b4v 56cd e59b8d 56cd 000056cd f8a6 f8a6 f8a6 f8a6 f8a6 f8a6 f8a6
+13442 f8a7 f8a7 f8a7 * * 7035 8ea2f0b5,8ea2f0b5v 5b4e e5ad8e 5b4e 00005b4e f8a7 f8a7 f8a7 f8a7 f8a7 f8a7 f8a7
+13443 f8a8 f8a8 f8a8 * * 7036 8ea2f0b6,8ea2f0b6v 5c6d e5b1ad 5c6d 00005c6d f8a8 f8a8 f8a8 f8a8 f8a8 f8a8 f8a8
+13444 f8a9 f8a9 f8a9 * * 7037 8ea2f0b7,8ea2f0b7v 652d e694ad 652d 0000652d f8a9 f8a9 f8a9 f8a9 f8a9 f8a9 f8a9
+13445 f8aa f8aa f8aa * * 7038 8ea2f0b8,8ea2f0b8v 66ed e69bad 66ed 000066ed f8aa f8aa f8aa f8aa f8aa f8aa f8aa
+13446 f8ab f8ab f8ab * * 7039 8ea2f0b9,8ea2f0b9v 66ee e69bae 66ee 000066ee f8ab f8ab f8ab f8ab f8ab f8ab f8ab
+13447 f8ac f8ac f8ac * * 703a 8ea2f0ba,8ea2f0bav 6b13 e6ac93 6b13 00006b13 f8ac f8ac f8ac f8ac f8ac f8ac f8ac
+13448 f8ad f8ad f8ad * * 703b 8ea2f0bb,8ea2f0bbv 705f e7819f 705f 0000705f f8ad f8ad f8ad f8ad f8ad f8ad f8ad
+13449 f8ae f8ae f8ae * * 703c 8ea2f0bc,8ea2f0bcv 7061 e781a1 7061 00007061 f8ae f8ae f8ae f8ae f8ae f8ae f8ae
+13450 f8af f8af f8af * * 703d 8ea2f0bd,8ea2f0bdv 705d e7819d 705d 0000705d f8af f8af f8af f8af f8af f8af f8af
+13451 f8b0 f8b0 f8b0 * * 703e 8ea2f0be,8ea2f0bev 7060 e781a0 7060 00007060 f8b0 f8b0 f8b0 f8b0 f8b0 f8b0 f8b0
+13452 f8b1 f8b1 f8b1 * * 703f 8ea2f0bf,8ea2f0bfv 7223 e788a3 7223 00007223 f8b1 f8b1 f8b1 f8b1 f8b1 f8b1 f8b1
+13453 f8b2 f8b2 f8b2 * * 7040 8ea2f0c0,8ea2f0c0v 74db e7939b 74db 000074db f8b2 f8b2 f8b2 f8b2 f8b2 f8b2 f8b2
+13454 f8b3 f8b3 f8b3 * * 7041 8ea2f0c1,8ea2f0c1v 74e5 e793a5 74e5 000074e5 f8b3 f8b3 f8b3 f8b3 f8b3 f8b3 f8b3
+13455 f8b4 f8b4 f8b4 * * 7042 8ea2f0c2,8ea2f0c2v 77d5 e79f95 77d5 000077d5 f8b4 f8b4 f8b4 f8b4 f8b4 f8b4 f8b4
+13456 f8b5 f8b5 f8b5 * * 7043 8ea2f0c3,8ea2f0c3v 7938 e7a4b8 7938 00007938 f8b5 f8b5 f8b5 f8b5 f8b5 f8b5 f8b5
+13457 f8b6 f8b6 f8b6 * * 7044 8ea2f0c4,8ea2f0c4v 79b7 e7a6b7 79b7 000079b7 f8b6 f8b6 f8b6 f8b6 f8b6 f8b6 f8b6
+13458 f8b7 f8b7 f8b7 * * 7045 8ea2f0c5,8ea2f0c5v 79b6 e7a6b6 79b6 000079b6 f8b7 f8b7 f8b7 f8b7 f8b7 f8b7 f8b7
+13459 f8b8 f8b8 f8b8 * * 7046 8ea2f0c6,8ea2f0c6v 7c6a e7b1aa 7c6a 00007c6a f8b8 f8b8 f8b8 f8b8 f8b8 f8b8 f8b8
+13460 f8b9 f8b9 f8b9 * * 7047 8ea2f0c7,8ea2f0c7v 7e97 e7ba97 7e97 00007e97 f8b9 f8b9 f8b9 f8b9 f8b9 f8b9 f8b9
+13461 f8ba f8ba f8ba * * 7048 8ea2f0c8,8ea2f0c8v 7f89 e7be89 7f89 00007f89 f8ba f8ba f8ba f8ba f8ba f8ba f8ba
+13462 f8bb f8bb f8bb * * 7049 8ea2f0c9,8ea2f0c9v 826d e889ad 826d 0000826d f8bb f8bb f8bb f8bb f8bb f8bb f8bb
+13463 f8bc f8bc f8bc * * 704a 8ea2f0ca,8ea2f0cav 8643 e89983 8643 00008643 f8bc f8bc f8bc f8bc f8bc f8bc f8bc
+13464 f8bd f8bd f8bd * * 704b 8ea2f0cb,8ea2f0cbv 8838 e8a0b8 8838 00008838 f8bd f8bd f8bd f8bd f8bd f8bd f8bd
+13465 f8be f8be f8be * * 704c 8ea2f0cc,8ea2f0ccv 8837 e8a0b7 8837 00008837 f8be f8be f8be f8be f8be f8be f8be
+13466 f8bf f8bf f8bf * * 704d 8ea2f0cd,8ea2f0cdv 8835 e8a0b5 8835 00008835 f8bf f8bf f8bf f8bf f8bf f8bf f8bf
+13467 f8c0 f8c0 f8c0 * * 704e 8ea2f0ce,8ea2f0cev 884b e8a18b 884b 0000884b f8c0 f8c0 f8c0 f8c0 f8c0 f8c0 f8c0
+13468 f8c1 f8c1 f8c1 * * 704f 8ea2f0cf,8ea2f0cfv 8b94 e8ae94 8b94 00008b94 f8c1 f8c1 f8c1 f8c1 f8c1 f8c1 f8c1
+13469 f8c2 f8c2 f8c2 * * 7050 8ea2f0d0,8ea2f0d0v 8b95 e8ae95 8b95 00008b95 f8c2 f8c2 f8c2 f8c2 f8c2 f8c2 f8c2
+13470 f8c3 f8c3 f8c3 * * 7051 8ea2f0d1,8ea2f0d1v 8e9e e8ba9e 8e9e 00008e9e f8c3 f8c3 f8c3 f8c3 f8c3 f8c3 f8c3
+13471 f8c4 f8c4 f8c4 * * 7052 8ea2f0d2,8ea2f0d2v 8e9f e8ba9f 8e9f 00008e9f f8c4 f8c4 f8c4 f8c4 f8c4 f8c4 f8c4
+13472 f8c5 f8c5 f8c5 * * 7053 8ea2f0d3,8ea2f0d3v 8ea0 e8baa0 8ea0 00008ea0 f8c5 f8c5 f8c5 f8c5 f8c5 f8c5 f8c5
+13473 f8c6 f8c6 f8c6 * * 7054 8ea2f0d4,8ea2f0d4v 8e9d e8ba9d 8e9d 00008e9d f8c6 f8c6 f8c6 f8c6 f8c6 f8c6 f8c6
+13474 f8c7 f8c7 f8c7 * * 7055 8ea2f0d5,8ea2f0d5v 91be e986be 91be 000091be f8c7 f8c7 f8c7 f8c7 f8c7 f8c7 f8c7
+13475 f8c8 f8c8 f8c8 * * 7056 8ea2f0d6,8ea2f0d6v 91bd e986bd 91bd 000091bd f8c8 f8c8 f8c8 f8c8 f8c8 f8c8 f8c8
+13476 f8c9 f8c9 f8c9 * * 7057 8ea2f0d7,8ea2f0d7v 91c2 e98782 91c2 000091c2 f8c9 f8c9 f8c9 f8c9 f8c9 f8c9 f8c9
+13477 f8ca f8ca f8ca * * 7058 8ea2f0d8,8ea2f0d8v 946b e991ab 946b 0000946b f8ca f8ca f8ca f8ca f8ca f8ca f8ca
+13478 f8cb f8cb f8cb * * 7059 8ea2f0d9,8ea2f0d9v 9468 e991a8 9468 00009468 f8cb f8cb f8cb f8cb f8cb f8cb f8cb
+13479 f8cc f8cc f8cc * * 705a 8ea2f0da,8ea2f0dav 9469 e991a9 9469 00009469 f8cc f8cc f8cc f8cc f8cc f8cc f8cc
+13480 f8cd f8cd f8cd * * 705b 8ea2f0db,8ea2f0dbv 96e5 e99ba5 96e5 000096e5 f8cd f8cd f8cd f8cd f8cd f8cd f8cd
+13481 f8ce f8ce f8ce * * 705c 8ea2f0dc,8ea2f0dcv 9746 e99d86 9746 00009746 f8ce f8ce f8ce f8ce f8ce f8ce f8ce
+13482 f8cf f8cf f8cf * * 705d 8ea2f0dd,8ea2f0ddv 9743 e99d83 9743 00009743 f8cf f8cf f8cf f8cf f8cf f8cf f8cf
+13483 f8d0 f8d0 f8d0 * * 705e 8ea2f0de,8ea2f0dev 9747 e99d87 9747 00009747 f8d0 f8d0 f8d0 f8d0 f8d0 f8d0 f8d0
+13484 f8d1 f8d1 f8d1 * * 705f 8ea2f0df,8ea2f0dfv 97c7 e99f87 97c7 000097c7 f8d1 f8d1 f8d1 f8d1 f8d1 f8d1 f8d1
+13485 f8d2 f8d2 f8d2 * * 7060 8ea2f0e0,8ea2f0e0v 97e5 e99fa5 97e5 000097e5 f8d2 f8d2 f8d2 f8d2 f8d2 f8d2 f8d2
+13486 f8d3 f8d3 f8d3 * * 7061 8ea2f0e1,8ea2f0e1v 9a5e e9a99e 9a5e 00009a5e f8d3 f8d3 f8d3 f8d3 f8d3 f8d3 f8d3
+13487 f8d4 f8d4 f8d4 * * 7062 8ea2f0e2,8ea2f0e2v 9ad5 e9ab95 9ad5 00009ad5 f8d4 f8d4 f8d4 f8d4 f8d4 f8d4 f8d4
+13488 f8d5 f8d5 f8d5 * * 7063 8ea2f0e3,8ea2f0e3v 9b59 e9ad99 9b59 00009b59 f8d5 f8d5 f8d5 f8d5 f8d5 f8d5 f8d5
+13489 f8d6 f8d6 f8d6 * * 7064 8ea2f0e4,8ea2f0e4v 9c63 e9b1a3 9c63 00009c63 f8d6 f8d6 f8d6 f8d6 f8d6 f8d6 f8d6
+13490 f8d7 f8d7 f8d7 * * 7065 8ea2f0e5,8ea2f0e5v 9c67 e9b1a7 9c67 00009c67 f8d7 f8d7 f8d7 f8d7 f8d7 f8d7 f8d7
+13491 f8d8 f8d8 f8d8 * * 7066 8ea2f0e6,8ea2f0e6v 9c66 e9b1a6 9c66 00009c66 f8d8 f8d8 f8d8 f8d8 f8d8 f8d8 f8d8
+13492 f8d9 f8d9 f8d9 * * 7067 8ea2f0e7,8ea2f0e7v 9c62 e9b1a2 9c62 00009c62 f8d9 f8d9 f8d9 f8d9 f8d9 f8d9 f8d9
+13493 f8da f8da f8da * * 7068 8ea2f0e8,8ea2f0e8v 9c5e e9b19e 9c5e 00009c5e f8da f8da f8da f8da f8da f8da f8da
+13494 f8db f8db f8db * * 7069 8ea2f0e9,8ea2f0e9v 9c60 e9b1a0 9c60 00009c60 f8db f8db f8db f8db f8db f8db f8db
+13495 f8dc f8dc f8dc * * 706a 8ea2f0ea,8ea2f0eav 9e02 e9b882 9e02 00009e02 f8dc f8dc f8dc f8dc f8dc f8dc f8dc
+13496 f8dd f8dd f8dd * * 706b 8ea2f0eb,8ea2f0ebv 9dfe e9b7be 9dfe 00009dfe f8dd f8dd f8dd f8dd f8dd f8dd f8dd
+13497 f8de f8de f8de * * 706c 8ea2f0ec,8ea2f0ecv 9e07 e9b887 9e07 00009e07 f8de f8de f8de f8de f8de f8de f8de
+13498 f8df f8df f8df * * 706d 8ea2f0ed,8ea2f0edv 9e03 e9b883 9e03 00009e03 f8df f8df f8df f8df f8df f8df f8df
+13499 f8e0 f8e0 f8e0 * * 706e 8ea2f0ee,8ea2f0eev 9e06 e9b886 9e06 00009e06 f8e0 f8e0 f8e0 f8e0 f8e0 f8e0 f8e0
+13500 f8e1 f8e1 f8e1 * * 706f 8ea2f0ef,8ea2f0efv 9e05 e9b885 9e05 00009e05 f8e1 f8e1 f8e1 f8e1 f8e1 f8e1 f8e1
+13501 f8e2 f8e2 f8e2 * * 7070 8ea2f0f0,8ea2f0f0v 9e00 e9b880 9e00 00009e00 f8e2 f8e2 f8e2 f8e2 f8e2 f8e2 f8e2
+13502 f8e3 f8e3 f8e3 * * 7071 8ea2f0f1,8ea2f0f1v 9e01 e9b881 9e01 00009e01 f8e3 f8e3 f8e3 f8e3 f8e3 f8e3 f8e3
+13503 f8e4 f8e4 f8e4 * * 7072 8ea2f0f2,8ea2f0f2v 9e09 e9b889 9e09 00009e09 f8e4 f8e4 f8e4 f8e4 f8e4 f8e4 f8e4
+13504 f8e5 f8e5 f8e5 * * 7073 8ea2f0f3,8ea2f0f3v 9dff e9b7bf 9dff 00009dff f8e5 f8e5 f8e5 f8e5 f8e5 f8e5 f8e5
+13505 f8e6 f8e6 f8e6 * * 7074 8ea2f0f4,8ea2f0f4v 9dfd e9b7bd 9dfd 00009dfd f8e6 f8e6 f8e6 f8e6 f8e6 f8e6 f8e6
+13506 f8e7 f8e7 f8e7 * * 7075 8ea2f0f5,8ea2f0f5v 9e04 e9b884 9e04 00009e04 f8e7 f8e7 f8e7 f8e7 f8e7 f8e7 f8e7
+13507 f8e8 f8e8 f8e8 * * 7076 8ea2f0f6,8ea2f0f6v 9ea0 e9baa0 9ea0 00009ea0 f8e8 f8e8 f8e8 f8e8 f8e8 f8e8 f8e8
+13508 f8e9 f8e9 f8e9 * * 7077 8ea2f0f7,8ea2f0f7v 9f1e e9bc9e 9f1e 00009f1e f8e9 f8e9 f8e9 f8e9 f8e9 f8e9 f8e9
+13509 f8ea f8ea f8ea * * 7078 8ea2f0f8,8ea2f0f8v 9f46 e9bd86 9f46 00009f46 f8ea f8ea f8ea f8ea f8ea f8ea f8ea
+13510 f8eb f8eb f8eb * * 7079 8ea2f0f9,8ea2f0f9v 9f74 e9bdb4 9f74 00009f74 f8eb f8eb f8eb f8eb f8eb f8eb f8eb
+13511 f8ec f8ec f8ec * * 707a 8ea2f0fa,8ea2f0fav 9f75 e9bdb5 9f75 00009f75 f8ec f8ec f8ec f8ec f8ec f8ec f8ec
+13512 f8ed f8ed f8ed * * 707b 8ea2f0fb,8ea2f0fbv 9f76 e9bdb6 9f76 00009f76 f8ed f8ed f8ed f8ed f8ed f8ed f8ed
+13513 f8ee f8ee f8ee * * 707c 8ea2f0fc,8ea2f0fcv 56d4 e59b94 56d4 000056d4 f8ee f8ee f8ee f8ee f8ee f8ee f8ee
+13514 f8ef f8ef f8ef * * 707d 8ea2f0fd,8ea2f0fdv 652e e694ae 652e 0000652e f8ef f8ef f8ef f8ef f8ef f8ef f8ef
+13515 f8f0 f8f0 f8f0 * * 707e 8ea2f0fe,8ea2f0fev 65b8 e696b8 65b8 000065b8 f8f0 f8f0 f8f0 f8f0 f8f0 f8f0 f8f0
+13516 f8f1 f8f1 f8f1 * * 7121 8ea2f1a1,8ea2f1a1v 6b18 e6ac98 6b18 00006b18 f8f1 f8f1 f8f1 f8f1 f8f1 f8f1 f8f1
+13517 f8f2 f8f2 f8f2 * * 7122 8ea2f1a2,8ea2f1a2v 6b19 e6ac99 6b19 00006b19 f8f2 f8f2 f8f2 f8f2 f8f2 f8f2 f8f2
+13518 f8f3 f8f3 f8f3 * * 7123 8ea2f1a3,8ea2f1a3v 6b17 e6ac97 6b17 00006b17 f8f3 f8f3 f8f3 f8f3 f8f3 f8f3 f8f3
+13519 f8f4 f8f4 f8f4 * * 7124 8ea2f1a4,8ea2f1a4v 6b1a e6ac9a 6b1a 00006b1a f8f4 f8f4 f8f4 f8f4 f8f4 f8f4 f8f4
+13520 f8f5 f8f5 f8f5 * * 7125 8ea2f1a5,8ea2f1a5v 7062 e781a2 7062 00007062 f8f5 f8f5 f8f5 f8f5 f8f5 f8f5 f8f5
+13521 f8f6 f8f6 f8f6 * * 7126 8ea2f1a6,8ea2f1a6v 7226 e788a6 7226 00007226 f8f6 f8f6 f8f6 f8f6 f8f6 f8f6 f8f6
+13522 f8f7 f8f7 f8f7 * * 7127 8ea2f1a7,8ea2f1a7v 72aa e78aaa 72aa 000072aa f8f7 f8f7 f8f7 f8f7 f8f7 f8f7 f8f7
+13523 f8f8 f8f8 f8f8 * * 7128 8ea2f1a8,8ea2f1a8v 77d8 e79f98 77d8 000077d8 f8f8 f8f8 f8f8 f8f8 f8f8 f8f8 f8f8
+13524 f8f9 f8f9 f8f9 * * 7129 8ea2f1a9,8ea2f1a9v 77d9 e79f99 77d9 000077d9 f8f9 f8f9 f8f9 f8f9 f8f9 f8f9 f8f9
+13525 f8fa f8fa f8fa * * 712a 8ea2f1aa,8ea2f1aav 7939 e7a4b9 7939 00007939 f8fa f8fa f8fa f8fa f8fa f8fa f8fa
+13526 f8fb f8fb f8fb * * 712b 8ea2f1ab,8ea2f1abv 7c69 e7b1a9 7c69 00007c69 f8fb f8fb f8fb f8fb f8fb f8fb f8fb
+13527 f8fc f8fc f8fc * * 712c 8ea2f1ac,8ea2f1acv 7c6b e7b1ab 7c6b 00007c6b f8fc f8fc f8fc f8fc f8fc f8fc f8fc
+13528 f8fd f8fd f8fd * * 712d 8ea2f1ad,8ea2f1adv 7cf6 e7b3b6 7cf6 00007cf6 f8fd f8fd f8fd f8fd f8fd f8fd f8fd
+13529 f8fe f8fe f8fe * * 712e 8ea2f1ae,8ea2f1aev 7e9a e7ba9a 7e9a 00007e9a f8fe f8fe f8fe f8fe f8fe f8fe f8fe
+13530 f940 f940 f940 * * 712f 8ea2f1af,8ea2f1afv 7e98 e7ba98 7e98 00007e98 f940 f940 f940 f940 f940 f940 f940
+13531 f941 f941 f941 * * 7130 8ea2f1b0,8ea2f1b0v 7e9b e7ba9b 7e9b 00007e9b f941 f941 f941 f941 f941 f941 f941
+13532 f942 f942 f942 * * 7131 8ea2f1b1,8ea2f1b1v 7e99 e7ba99 7e99 00007e99 f942 f942 f942 f942 f942 f942 f942
+13533 f943 f943 f943 * * 7132 8ea2f1b2,8ea2f1b2v 81e0 e887a0 81e0 000081e0 f943 f943 f943 f943 f943 f943 f943
+13534 f944 f944 f944 * * 7133 8ea2f1b3,8ea2f1b3v 81e1 e887a1 81e1 000081e1 f944 f944 f944 f944 f944 f944 f944
+13535 f945 f945 f945 * * 7134 8ea2f1b4,8ea2f1b4v 8646 e89986 8646 00008646 f945 f945 f945 f945 f945 f945 f945
+13536 f946 f946 f946 * * 7135 8ea2f1b5,8ea2f1b5v 8647 e89987 8647 00008647 f946 f946 f946 f946 f946 f946 f946
+13537 f947 f947 f947 * * 7136 8ea2f1b6,8ea2f1b6v 8648 e89988 8648 00008648 f947 f947 f947 f947 f947 f947 f947
+13538 f948 f948 f948 * * 7137 8ea2f1b7,8ea2f1b7v 8979 e8a5b9 8979 00008979 f948 f948 f948 f948 f948 f948 f948
+13539 f949 f949 f949 * * 7138 8ea2f1b8,8ea2f1b8v 897a e8a5ba 897a 0000897a f949 f949 f949 f949 f949 f949 f949
+13540 f94a f94a f94a * * 7139 8ea2f1b9,8ea2f1b9v 897c e8a5bc 897c 0000897c f94a f94a f94a f94a f94a f94a f94a
+13541 f94b f94b f94b * * 713a 8ea2f1ba,8ea2f1bav 897b e8a5bb 897b 0000897b f94b f94b f94b f94b f94b f94b f94b
+13542 f94c f94c f94c * * 713b 8ea2f1bb,8ea2f1bbv 89ff e8a7bf 89ff 000089ff f94c f94c f94c f94c f94c f94c f94c
+13543 f94d f94d f94d * * 713c 8ea2f1bc,8ea2f1bcv 8b98 e8ae98 8b98 00008b98 f94d f94d f94d f94d f94d f94d f94d
+13544 f94e f94e f94e * * 713d 8ea2f1bd,8ea2f1bdv 8b99 e8ae99 8b99 00008b99 f94e f94e f94e f94e f94e f94e f94e
+13545 f94f f94f f94f * * 713e 8ea2f1be,8ea2f1bev 8ea5 e8baa5 8ea5 00008ea5 f94f f94f f94f f94f f94f f94f f94f
+13546 f950 f950 f950 * * 713f 8ea2f1bf,8ea2f1bfv 8ea4 e8baa4 8ea4 00008ea4 f950 f950 f950 f950 f950 f950 f950
+13547 f951 f951 f951 * * 7140 8ea2f1c0,8ea2f1c0v 8ea3 e8baa3 8ea3 00008ea3 f951 f951 f951 f951 f951 f951 f951
+13548 f952 f952 f952 * * 7141 8ea2f1c1,8ea2f1c1v 946e e991ae 946e 0000946e f952 f952 f952 f952 f952 f952 f952
+13549 f953 f953 f953 * * 7142 8ea2f1c2,8ea2f1c2v 946d e991ad 946d 0000946d f953 f953 f953 f953 f953 f953 f953
+13550 f954 f954 f954 * * 7143 8ea2f1c3,8ea2f1c3v 946f e991af 946f 0000946f f954 f954 f954 f954 f954 f954 f954
+13551 f955 f955 f955 * * 7144 8ea2f1c4,8ea2f1c4v 9471 e991b1 9471 00009471 f955 f955 f955 f955 f955 f955 f955
+13552 f956 f956 f956 * * 7145 8ea2f1c5,8ea2f1c5v 9473 e991b3 9473 00009473 f956 f956 f956 f956 f956 f956 f956
+13553 f957 f957 f957 * * 7146 8ea2f1c6,8ea2f1c6v 9749 e99d89 9749 00009749 f957 f957 f957 f957 f957 f957 f957
+13554 f958 f958 f958 * * 7147 8ea2f1c7,8ea2f1c7v 9872 e9a1b2 9872 00009872 f958 f958 f958 f958 f958 f958 f958
+13555 f959 f959 f959 * * 7148 8ea2f1c8,8ea2f1c8v 995f e9a59f 995f 0000995f f959 f959 f959 f959 f959 f959 f959
+13556 f95a f95a f95a * * 7149 8ea2f1c9,8ea2f1c9v 9c68 e9b1a8 9c68 00009c68 f95a f95a f95a f95a f95a f95a f95a
+13557 f95b f95b f95b * * 714a 8ea2f1ca,8ea2f1cav 9c6e e9b1ae 9c6e 00009c6e f95b f95b f95b f95b f95b f95b f95b
+13558 f95c f95c f95c * * 714b 8ea2f1cb,8ea2f1cbv 9c6d e9b1ad 9c6d 00009c6d f95c f95c f95c f95c f95c f95c f95c
+13559 f95d f95d f95d * * 714c 8ea2f1cc,8ea2f1ccv 9e0b e9b88b 9e0b 00009e0b f95d f95d f95d f95d f95d f95d f95d
+13560 f95e f95e f95e * * 714d 8ea2f1cd,8ea2f1cdv 9e0d e9b88d 9e0d 00009e0d f95e f95e f95e f95e f95e f95e f95e
+13561 f95f f95f f95f * * 714e 8ea2f1ce,8ea2f1cev 9e10 e9b890 9e10 00009e10 f95f f95f f95f f95f f95f f95f f95f
+13562 f960 f960 f960 * * 714f 8ea2f1cf,8ea2f1cfv 9e0f e9b88f 9e0f 00009e0f f960 f960 f960 f960 f960 f960 f960
+13563 f961 f961 f961 * * 7150 8ea2f1d0,8ea2f1d0v 9e12 e9b892 9e12 00009e12 f961 f961 f961 f961 f961 f961 f961
+13564 f962 f962 f962 * * 7151 8ea2f1d1,8ea2f1d1v 9e11 e9b891 9e11 00009e11 f962 f962 f962 f962 f962 f962 f962
+13565 f963 f963 f963 * * 7152 8ea2f1d2,8ea2f1d2v 9ea1 e9baa1 9ea1 00009ea1 f963 f963 f963 f963 f963 f963 f963
+13566 f964 f964 f964 * * 7153 8ea2f1d3,8ea2f1d3v 9ef5 e9bbb5 9ef5 00009ef5 f964 f964 f964 f964 f964 f964 f964
+13567 f965 f965 f965 * * 7154 8ea2f1d4,8ea2f1d4v 9f09 e9bc89 9f09 00009f09 f965 f965 f965 f965 f965 f965 f965
+13568 f966 f966 f966 * * 7155 8ea2f1d5,8ea2f1d5v 9f47 e9bd87 9f47 00009f47 f966 f966 f966 f966 f966 f966 f966
+13569 f967 f967 f967 * * 7156 8ea2f1d6,8ea2f1d6v 9f78 e9bdb8 9f78 00009f78 f967 f967 f967 f967 f967 f967 f967
+13570 f968 f968 f968 * * 7157 8ea2f1d7,8ea2f1d7v 9f7b e9bdbb 9f7b 00009f7b f968 f968 f968 f968 f968 f968 f968
+13571 f969 f969 f969 * * 7158 8ea2f1d8,8ea2f1d8v 9f7a e9bdba 9f7a 00009f7a f969 f969 f969 f969 f969 f969 f969
+13572 f96a f96a f96a * * 7159 8ea2f1d9,8ea2f1d9v 9f79 e9bdb9 9f79 00009f79 f96a f96a f96a f96a f96a f96a f96a
+13573 f96b f96b f96b * * 715a 8ea2f1da,8ea2f1dav 571e e59c9e 571e 0000571e f96b f96b f96b f96b f96b f96b f96b
+13574 f96c f96c f96c * * 715b 8ea2f1db,8ea2f1dbv 7066 e781a6 7066 00007066 f96c f96c f96c f96c f96c f96c f96c
+13575 f96d f96d f96d * * 715c 8ea2f1dc,8ea2f1dcv 7c6f e7b1af 7c6f 00007c6f f96d f96d f96d f96d f96d f96d f96d
+13576 f96e f96e f96e * * 715d 8ea2f1dd,8ea2f1ddv 883c e8a0bc 883c 0000883c f96e f96e f96e f96e f96e f96e f96e
+13577 f96f f96f f96f * * 715e 8ea2f1de,8ea2f1dev 8db2 e8b6b2 8db2 00008db2 f96f f96f f96f f96f f96f f96f f96f
+13578 f970 f970 f970 * * 715f 8ea2f1df,8ea2f1dfv 8ea6 e8baa6 8ea6 00008ea6 f970 f970 f970 f970 f970 f970 f970
+13579 f971 f971 f971 * * 7160 8ea2f1e0,8ea2f1e0v 91c3 e98783 91c3 000091c3 f971 f971 f971 f971 f971 f971 f971
+13580 f972 f972 f972 * * 7161 8ea2f1e1,8ea2f1e1v 9474 e991b4 9474 00009474 f972 f972 f972 f972 f972 f972 f972
+13581 f973 f973 f973 * * 7162 8ea2f1e2,8ea2f1e2v 9478 e991b8 9478 00009478 f973 f973 f973 f973 f973 f973 f973
+13582 f974 f974 f974 * * 7163 8ea2f1e3,8ea2f1e3v 9476 e991b6 9476 00009476 f974 f974 f974 f974 f974 f974 f974
+13583 f975 f975 f975 * * 7164 8ea2f1e4,8ea2f1e4v 9475 e991b5 9475 00009475 f975 f975 f975 f975 f975 f975 f975
+13584 f976 f976 f976 * * 7165 8ea2f1e5,8ea2f1e5v 9a60 e9a9a0 9a60 00009a60 f976 f976 f976 f976 f976 f976 f976
+13585 f9c4 f9c4 f9c4 * * 7166 8ea2f1e6,8ea2f1e6v 9b2e e9acae,eeb69e 9b2e,ed9e 00009b2e,0000ed9e 9f60,f9c4 f9c4 f9c4 f9c4 f9c4 f9c4 9f60,f9c4
+13586 f977 f977 f977 * * 7167 8ea2f1e7,8ea2f1e7v 9c74 e9b1b4 9c74 00009c74 f977 f977 f977 f977 f977 f977 f977
+13587 f978 f978 f978 * * 7168 8ea2f1e8,8ea2f1e8v 9c73 e9b1b3 9c73 00009c73 f978 f978 f978 f978 f978 f978 f978
+13588 f979 f979 f979 * * 7169 8ea2f1e9,8ea2f1e9v 9c71 e9b1b1 9c71 00009c71 f979 f979 f979 f979 f979 f979 f979
+13589 f97a f97a f97a * * 716a 8ea2f1ea,8ea2f1eav 9c75 e9b1b5 9c75 00009c75 f97a f97a f97a f97a f97a f97a f97a
+13590 f97b f97b f97b * * 716b 8ea2f1eb,8ea2f1ebv 9e14 e9b894 9e14 00009e14 f97b f97b f97b f97b f97b f97b f97b
+13591 f97c f97c f97c * * 716c 8ea2f1ec,8ea2f1ecv 9e13 e9b893 9e13 00009e13 f97c f97c f97c f97c f97c f97c f97c
+13592 f97d f97d f97d * * 716d 8ea2f1ed,8ea2f1edv 9ef6 e9bbb6 9ef6 00009ef6 f97d f97d f97d f97d f97d f97d f97d
+13593 f97e f97e f97e * * 716e 8ea2f1ee,8ea2f1eev 9f0a e9bc8a 9f0a 00009f0a f97e f97e f97e f97e f97e f97e f97e
+13594 f9a1 f9a1 f9a1 * * 716f 8ea2f1ef,8ea2f1efv 9fa4 e9bea4 9fa4 00009fa4 f9a1 f9a1 f9a1 f9a1 f9a1 f9a1 f9a1
+13595 f9a2 f9a2 f9a2 * * 7170 8ea2f1f0,8ea2f1f0v 7068 e781a8 7068 00007068 f9a2 f9a2 f9a2 f9a2 f9a2 f9a2 f9a2
+13596 f9a3 f9a3 f9a3 * * 7171 8ea2f1f1,8ea2f1f1v 7065 e781a5 7065 00007065 f9a3 f9a3 f9a3 f9a3 f9a3 f9a3 f9a3
+13597 f9a4 f9a4 f9a4 * * 7172 8ea2f1f2,8ea2f1f2v 7cf7 e7b3b7 7cf7 00007cf7 f9a4 f9a4 f9a4 f9a4 f9a4 f9a4 f9a4
+13598 f9a5 f9a5 f9a5 * * 7173 8ea2f1f3,8ea2f1f3v 866a e899aa 866a 0000866a f9a5 f9a5 f9a5 f9a5 f9a5 f9a5 f9a5
+13599 f9a6 f9a6 f9a6 * * 7174 8ea2f1f4,8ea2f1f4v 883e e8a0be 883e 0000883e f9a6 f9a6 f9a6 f9a6 f9a6 f9a6 f9a6
+13600 f9a7 f9a7 f9a7 * * 7175 8ea2f1f5,8ea2f1f5v 883d e8a0bd 883d 0000883d f9a7 f9a7 f9a7 f9a7 f9a7 f9a7 f9a7
+13601 f9a8 f9a8 f9a8 * * 7176 8ea2f1f6,8ea2f1f6v 883f e8a0bf 883f 0000883f f9a8 f9a8 f9a8 f9a8 f9a8 f9a8 f9a8
+13602 f9a9 f9a9 f9a9 * * 7177 8ea2f1f7,8ea2f1f7v 8b9e e8ae9e 8b9e 00008b9e f9a9 f9a9,fe4a 9156,f9a9 f9a9 f9a9 f9a9 f9a9
+13603 f9aa f9aa f9aa * * 7178 8ea2f1f8,8ea2f1f8v 8c9c e8b29c 8c9c 00008c9c f9aa f9aa f9aa f9aa f9aa f9aa f9aa
+13604 f9ab f9ab f9ab * * 7179 8ea2f1f9,8ea2f1f9v 8ea9 e8baa9 8ea9 00008ea9 f9ab f9ab f9ab f9ab f9ab f9ab f9ab
+13605 f9ac f9ac f9ac * * 717a 8ea2f1fa,8ea2f1fav 8ec9 e8bb89 8ec9 00008ec9 f9ac f9ac f9ac f9ac f9ac f9ac f9ac
+13606 f9ad f9ad f9ad * * 717b 8ea2f1fb,8ea2f1fbv 974b e99d8b 974b 0000974b f9ad f9ad f9ad f9ad f9ad f9ad f9ad
+13607 f9ae f9ae f9ae * * 717c 8ea2f1fc,8ea2f1fcv 9873 e9a1b3 9873 00009873 f9ae f9ae f9ae f9ae f9ae f9ae f9ae
+13608 f9af f9af f9af * * 717d 8ea2f1fd,8ea2f1fdv 9874 e9a1b4 9874 00009874 f9af f9af f9af f9af f9af f9af f9af
+13609 f9b0 f9b0 f9b0 * * 717e 8ea2f1fe,8ea2f1fev 98cc e9a38c 98cc 000098cc f9b0 f9b0 f9b0 f9b0 f9b0 f9b0 f9b0
+13610 f9b1 f9b1 f9b1 * * 7221 8ea2f2a1,8ea2f2a1v 9961 e9a5a1 9961 00009961 f9b1 f9b1 f9b1 f9b1 f9b1 f9b1 f9b1
+13611 f9b2 f9b2 f9b2 * * 7222 8ea2f2a2,8ea2f2a2v 99ab e9a6ab 99ab 000099ab f9b2 f9b2 f9b2 f9b2 f9b2 f9b2 f9b2
+13612 f9b3 f9b3 f9b3 * * 7223 8ea2f2a3,8ea2f2a3v 9a64 e9a9a4 9a64 00009a64 f9b3 f9b3 f9b3 f9b3 f9b3 f9b3 f9b3
+13613 f9b4 f9b4 f9b4 * * 7224 8ea2f2a4,8ea2f2a4v 9a66 e9a9a6 9a66 00009a66 f9b4 f9b4 f9b4 f9b4 f9b4 f9b4 f9b4
+13614 f9b5 f9b5 f9b5 * * 7225 8ea2f2a5,8ea2f2a5v 9a67 e9a9a7 9a67 00009a67 f9b5 f9b5 f9b5 f9b5 f9b5 f9b5 f9b5
+13615 f9b6 f9b6 f9b6 * * 7226 8ea2f2a6,8ea2f2a6v 9b24 e9aca4 9b24 00009b24 f9b6 f9b6 f9b6 f9b6 f9b6 f9b6 f9b6
+13616 f9b7 f9b7 f9b7 * * 7227 8ea2f2a7,8ea2f2a7v 9e15 e9b895 9e15 00009e15 f9b7 f9b7 f9b7 f9b7 f9b7 f9b7 f9b7
+13617 f9b8 f9b8 f9b8 * * 7228 8ea2f2a8,8ea2f2a8v 9e17 e9b897 9e17 00009e17 f9b8 f9b8 f9b8 f9b8 f9b8 f9b8 f9b8
+13618 f9b9 f9b9 f9b9 * * 7229 8ea2f2a9,8ea2f2a9v 9f48 e9bd88 9f48 00009f48 f9b9 f9b9 f9b9 f9b9 f9b9 f9b9 f9b9
+13619 f9ba f9ba f9ba * * 722a 8ea2f2aa,8ea2f2aav 6207 e68887 6207 00006207 f9ba f9ba f9ba f9ba f9ba f9ba f9ba
+13620 f9bb f9bb f9bb * * 722b 8ea2f2ab,8ea2f2abv 6b1e e6ac9e 6b1e 00006b1e f9bb f9bb f9bb f9bb f9bb f9bb f9bb
+13621 f9bc f9bc f9bc * * 722c 8ea2f2ac,8ea2f2acv 7227 e788a7 7227 00007227 f9bc f9bc f9bc f9bc f9bc f9bc f9bc
+13622 f9bd f9bd f9bd * * 722d 8ea2f2ad,8ea2f2adv 864c e8998c 864c 0000864c f9bd f9bd f9bd f9bd f9bd f9bd f9bd
+13623 f9be f9be f9be * * 722e 8ea2f2ae,8ea2f2aev 8ea8 e8baa8 8ea8 00008ea8 f9be f9be f9be f9be f9be f9be f9be
+13624 f9bf f9bf f9bf * * 722f 8ea2f2af,8ea2f2afv 9482 e99282 9482 00009482 f9bf f9bf f9bf f9bf f9bf f9bf f9bf
+13625 f9c0 f9c0 f9c0 * * 7230 8ea2f2b0,8ea2f2b0v 9480 e99280 9480 00009480 f9c0 f9c0 f9c0 f9c0 f9c0 f9c0 f9c0
+13626 f9c1 f9c1 f9c1 * * 7231 8ea2f2b1,8ea2f2b1v 9481 e99281 9481 00009481 f9c1 f9c1 f9c1 f9c1 f9c1 f9c1 f9c1
+13627 f9c2 f9c2 f9c2 * * 7232 8ea2f2b2,8ea2f2b2v 9a69 e9a9a9 9a69 00009a69 f9c2 f9c2 f9c2 f9c2 f9c2 f9c2 f9c2
+13628 f9c3 f9c3 f9c3 * * 7233 8ea2f2b3,8ea2f2b3v 9a68 e9a9a8 9a68 00009a68 f9c3 f9c3 f9c3 f9c3 f9c3 f9c3 f9c3
+13629 f9c5 f9c5 f9c5 * * 7234 8ea2f2b4,8ea2f2b4v 9e19 e9b899 9e19 00009e19 f9c5 f9c5 f9c5 f9c5 f9c5 f9c5 f9c5
+13630 f9c7 f9c7 f9c7 * * 7235 8ea2f2b5,8ea2f2b5v 864b e8998b 864b 0000864b f9c7 f9c7 f9c7 f9c7 f9c7 f9c7 f9c7
+13631 f9c8 f9c8 f9c8 * * 7236 8ea2f2b6,8ea2f2b6v 8b9f e8ae9f 8b9f 00008b9f f9c8 f9c8 f9c8 f9c8 f9c8 f9c8 f9c8
+13632 f9c9 f9c9 f9c9 * * 7237 8ea2f2b7,8ea2f2b7v 9483 e99283 9483 00009483 f9c9 f9c9 f9c9 f9c9 f9c9 f9c9 f9c9
+13633 f9ca f9ca f9ca * * 7238 8ea2f2b8,8ea2f2b8v 9c79 e9b1b9 9c79 00009c79 f9ca f9ca f9ca f9ca f9ca f9ca f9ca
+13634 f9cb f9cb f9cb * * 7239 8ea2f2b9,8ea2f2b9v 9eb7 e9bab7 9eb7 00009eb7 f9cb f9cb f9cb f9cb f9cb f9cb f9cb
+13635 f9cc f9cc f9cc * * 723a 8ea2f2ba,8ea2f2bav 7675 e799b5 7675 00007675 f9cc f9cc f9cc f9cc f9cc f9cc f9cc
+13636 f9cd f9cd f9cd * * 723b 8ea2f2bb,8ea2f2bbv 9a6b e9a9ab 9a6b 00009a6b f9cd f9cd f9cd f9cd f9cd f9cd f9cd
+13637 f9ce f9ce f9ce * * 723c 8ea2f2bc,8ea2f2bcv 9c7a e9b1ba 9c7a 00009c7a f9ce f9ce f9ce f9ce f9ce f9ce f9ce
+13638 f9cf f9cf f9cf * * 723d 8ea2f2bd,8ea2f2bdv 9e1d e9b89d 9e1d 00009e1d f9cf f9cf f9cf f9cf f9cf f9cf f9cf
+13639 f9d0 f9d0 f9d0 * * 723e 8ea2f2be,8ea2f2bev 7069 e781a9 7069 00007069 f9d0 f9d0 f9d0 f9d0 f9d0 f9d0 f9d0
+13640 f9d1 f9d1 f9d1 * * 723f 8ea2f2bf,8ea2f2bfv 706a e781aa 706a 0000706a f9d1 f9d1 f9d1 f9d1 f9d1 f9d1 f9d1
+13641 f9c6 f9c6 f9c6 * * 7240 8ea2f2c0,8ea2f2c0v 7229 e788a9 7229 00007229 f9c6 f9c6 f9c6 f9c6 f9c6 f9c6 f9c6
+13642 f9d2 f9d2 f9d2 * * 7241 8ea2f2c1,8ea2f2c1v 9ea4 e9baa4 9ea4 00009ea4 f9d2 f9d2 f9d2 f9d2 f9d2 f9d2 f9d2
+13643 f9d3 f9d3 f9d3 * * 7242 8ea2f2c2,8ea2f2c2v 9f7e e9bdbe 9f7e 00009f7e f9d3 f9d3 f9d3 f9d3 f9d3 f9d3 f9d3
+13644 f9d4 f9d4 f9d4 * * 7243 8ea2f2c3,8ea2f2c3v 9f49 e9bd89 9f49 00009f49 f9d4 f9d4 f9d4 f9d4 f9d4 f9d4 f9d4
+13645 f9d5 f9d5 f9d5 * * 7244 8ea2f2c4,8ea2f2c4v 9f98 e9be98 9f98 00009f98 f9d5 f9d5 f9d5 f9d5 f9d5 f9d5 f9d5
+13646 a14bv a14bv a14bv a14bv 212cv * 8ea1a1acv,a1acv * efb899 fe19 0000fe19 a14bv a14bv a14bv a14bv a14bv a14bv a14bv
+13647 a1e3v a1e3v a1e3v * 2244v * 8ea1a2c4v,a2c4v * * * * a1e3v a1e3v a1e3v a1e3v a1e3v a1e3v a1e3v
+13648 20 * 20 * * * 20,20v * e28082 2002 00002002 * * * * * * *
+13649 21 * 21 * * * 21,21v * * * * * * * * * * *
+13650 22 * 22 * * * 22,22v * * * * * * * * * * *
+13651 23 * 23 * * * 23,23v * * * * * * * * * * *
+13652 24 * 24 * * * 24,24v * * * * * * * * * * *
+13653 25 * 25 * * * 25,25v * * * * * * * * * * *
+13654 26 * 26 * * * 26,26v * * * * * * * * * * *
+13655 27 * 27 * * * 27,27v * * * * * * * * * * *
+13656 28 * 28 * * * 28,28v * * * * * * * * * * *
+13657 29 * 29 * * * 29,29v * * * * * * * * * * *
+13658 2a * 2a * * * 2a,2av * * * * * * * * * * *
+13659 2b * 2b * * * 2b,2bv * * * * * * * * * * *
+13660 2c * 2c * * * 2c,2cv * * * * * * * * * * *
+13661 2d * 2d * * * 2d,2dv * * * * * * * * * * *
+13662 2e * 2e * * * 2e,2ev * * * * * * * * * * *
+13663 2f * 2f * * * 2f,2fv * * * * * * * * * * *
+13664 30 * 30 * * * 30,30v * * * * * * * * * * *
+13665 31 * 31 * * * 31,31v * * * * * * * * * * *
+13666 32 * 32 * * * 32,32v * * * * * * * * * * *
+13667 33 * 33 * * * 33,33v * * * * * * * * * * *
+13668 34 * 34 * * * 34,34v * * * * * * * * * * *
+13669 35 * 35 * * * 35,35v * * * * * * * * * * *
+13670 36 * 36 * * * 36,36v * * * * * * * * * * *
+13671 37 * 37 * * * 37,37v * * * * * * * * * * *
+13672 38 * 38 * * * 38,38v * * * * * * * * * * *
+13673 39 * 39 * * * 39,39v * * * * * * * * * * *
+13674 3a * 3a * * * 3a,3av * * * * * * * * * * *
+13675 3b * 3b * * * 3b,3bv * * * * * * * * * * *
+13676 3c * 3c * * * 3c,3cv * * * * * * * * * * *
+13677 3d * 3d * * * 3d,3dv * * * * * * * * * * *
+13678 3e * 3e * * * 3e,3ev * * * * * * * * * * *
+13679 3f * 3f * * * 3f,3fv * * * * * * * * * * *
+13680 40 * 40 * * * 40,40v * * * * * * * * * * *
+13681 41 * 41 * * * 41,41v * * * * * * * * * * *
+13682 42 * 42 * * * 42,42v * * * * * * * * * * *
+13683 43 * 43 * * * 43,43v * * * * * * * * * * *
+13684 44 * 44 * * * 44,44v * * * * * * * * * * *
+13685 45 * 45 * * * 45,45v * * * * * * * * * * *
+13686 46 * 46 * * * 46,46v * * * * * * * * * * *
+13687 47 * 47 * * * 47,47v * * * * * * * * * * *
+13688 48 * 48 * * * 48,48v * * * * * * * * * * *
+13689 49 * 49 * * * 49,49v * * * * * * * * * * *
+13690 4a * 4a * * * 4a,4av * * * * * * * * * * *
+13691 4b * 4b * * * 4b,4bv * * * * * * * * * * *
+13692 4c * 4c * * * 4c,4cv * * * * * * * * * * *
+13693 4d * 4d * * * 4d,4dv * * * * * * * * * * *
+13694 4e * 4e * * * 4e,4ev * * * * * * * * * * *
+13695 4f * 4f * * * 4f,4fv * * * * * * * * * * *
+13696 50 * 50 * * * 50,50v * * * * * * * * * * *
+13697 51 * 51 * * * 51,51v * * * * * * * * * * *
+13698 52 * 52 * * * 52,52v * * * * * * * * * * *
+13699 53 * 53 * * * 53,53v * * * * * * * * * * *
+13700 54 * 54 * * * 54,54v * * * * * * * * * * *
+13701 55 * 55 * * * 55,55v * * * * * * * * * * *
+13702 56 * 56 * * * 56,56v * * * * * * * * * * *
+13703 57 * 57 * * * 57,57v * * * * * * * * * * *
+13704 58 * 58 * * * 58,58v * * * * * * * * * * *
+13705 59 * 59 * * * 59,59v * * * * * * * * * * *
+13706 5a * 5a * * * 5a,5av * * * * * * * * * * *
+13707 5b * 5b * * * 5b,5bv * * * * * * * * * * *
+13708 5c * 5c * * * 5c,5cv * * * * * * * * * * *
+13709 5d * 5d * * * 5d,5dv * * * * * * * * * * *
+13710 5e * 5e * * * 5e,5ev * * * * * * * * * * *
+13711 5f * 5f * * * 5f,5fv * * * * * * * * * * *
+13712 60 * 60 * * * 60,60v * * * * * * * * * * *
+13713 61 * 61 * * * 61,61v * * * * * * * * * * *
+13714 62 * 62 * * * 62,62v * * * * * * * * * * *
+13715 63 * 63 * * * 63,63v * * * * * * * * * * *
+13716 64 * 64 * * * 64,64v * * * * * * * * * * *
+13717 65 * 65 * * * 65,65v * * * * * * * * * * *
+13718 66 * 66 * * * 66,66v * * * * * * * * * * *
+13719 67 * 67 * * * 67,67v * * * * * * * * * * *
+13720 68 * 68 * * * 68,68v * * * * * * * * * * *
+13721 69 * 69 * * * 69,69v * * * * * * * * * * *
+13722 6a * 6a * * * 6a,6av * * * * * * * * * * *
+13723 6b * 6b * * * 6b,6bv * * * * * * * * * * *
+13724 6c * 6c * * * 6c,6cv * * * * * * * * * * *
+13725 6d * 6d * * * 6d,6dv * * * * * * * * * * *
+13726 6e * 6e * * * 6e,6ev * * * * * * * * * * *
+13727 6f * 6f * * * 6f,6fv * * * * * * * * * * *
+13728 70 * 70 * * * 70,70v * * * * * * * * * * *
+13729 71 * 71 * * * 71,71v * * * * * * * * * * *
+13730 72 * 72 * * * 72,72v * * * * * * * * * * *
+13731 73 * 73 * * * 73,73v * * * * * * * * * * *
+13732 74 * 74 * * * 74,74v * * * * * * * * * * *
+13733 75 * 75 * * * 75,75v * * * * * * * * * * *
+13734 76 * 76 * * * 76,76v * * * * * * * * * * *
+13735 77 * 77 * * * 77,77v * * * * * * * * * * *
+13736 78 * 78 * * * 78,78v * * * * * * * * * * *
+13737 79 * 79 * * * 79,79v * * * * * * * * * * *
+13738 7a * 7a * * * 7a,7av * * * * * * * * * * *
+13739 7b * 7b * * * 7b,7bv * * * * * * * * * * *
+13740 7c * 7c * * * 7c,7cv * * * * * * * * * * *
+13741 7d * 7d * * * 7d,7dv * * * * * * * * * * *
+13742 7e * 7e * * * 7e,7ev * * * * * * * * * * *
+13743 a159,a15av a159,a15av a159,a15av a15av * * * fe33 efb8b3 fe33 0000fe33 a159,a15av a159,a15av a159,a15av a159,a15av a159,a15av a159,a15av a159,a15av
+13744 a15a a15a a15a * * * * * e295b4 2574 00002574 a15a a15a a15a a15a a15a a15a a15a
+13745 a15b,a15cv a15b,a15cv a15b,a15cv a15cv * * * fe34,fe4fv efb8b4,efb98fv fe34,fe4fv 0000fe34,0000fe4fv a15b,a15cv a15b,a15cv a15b,a15cv a15b,a15cv a15b,a15cv a15b,a15cv a15b,a15cv
+13746 a15c a15c a15c * * * * fe4f efb98f fe4f 0000fe4f a15c a15c a15c a15c a15c a15c a15c
+13747 * * c6d8 * * * * 00a8,0308 c2a8,cc88,ef9ba8 00a8,0308,f6e8 000000a8,00000308,0000f6e8 c6d8 * * * * * c6d8
+13748 * * c6d9 * * * * 02c6,ff3e cb86,efbcbe,ef9ba9 02c6,ff3e,f6e9 000002c6,0000ff3e,0000f6e9 c6d9 * * * * * c6d9
+13749 * * c6da * * * * 30fd e383bd,ef9baa 30fd,f6ea 000030fd,0000f6ea c6da * * * * * c6da
+13750 * * c6db * * * * 30fe e383be,ef9bab 30fe,f6eb 000030fe,0000f6eb c6db * * * * * c6db
+13751 * * c6dc * * * * 309d e3829d,ef9bac 309d,f6ec 0000309d,0000f6ec c6dc * * * * * c6dc
+13752 * * c6dd * * * * 309e e3829e,ef9bad 309e,f6ed 0000309e,0000f6ed c6dd * * * * * c6dd
+13753 * * c6de * * * * * * * * c6de * * * * * *
+13754 * * c6e0 * * * * 3005 e38085,ef9bb0 3005,f6f0 00003005,0000f6f0 c6e0 * * * * * c6e0
+13755 * * c6e1 * * * * 3006 e38086,ef9bb1 3006,f6f1 00003006,0000f6f1 c6e1 * * * * * c6e1
+13756 * * c6e2 * * * * 3007 e38087,ef9bb2 3007,f6f2 00003007,0000f6f2 c6e2 * * * * * c6e2
+13757 * * c6e3 * * * * 30fc e383bc,ef9bb3 30fc,f6f3 000030fc,0000f6f3 c6e3 * * * * * c6e3
+13758 * * c6e4 * * * * ff3b efbcbb,ef9bb4 ff3b,f6f4 0000ff3b,0000f6f4 c6e4 * * * * * c6e4
+13759 * * c6e5 * * * * ff3d efbcbd,ef9bb5 ff3d,f6f5 0000ff3d,0000f6f5 c6e5 * * * * * c6e5
+13760 * * c6e6 * * * * 273d e29cbd,ef9bb6 273d,f6f6 0000273d,0000f6f6 c6e6 * * * * * c6e6
+13761 * * c6e7 * * * * 3041 e38181,ef9bb7 3041,f6f7 00003041,0000f6f7 c6e7 * * * * * c6e7
+13762 * * c6e8 * * * * 3042 e38182,ef9bb8 3042,f6f8 00003042,0000f6f8 c6e8 * * * * * c6e8
+13763 * * c6e9 * * * * 3043 e38183,ef9bb9 3043,f6f9 00003043,0000f6f9 c6e9 * * * * * c6e9
+13764 * * c6ea * * * * 3044 e38184,ef9bba 3044,f6fa 00003044,0000f6fa c6ea * * * * * c6ea
+13765 * * c6eb * * * * 3045 e38185,ef9bbb 3045,f6fb 00003045,0000f6fb c6eb * * * * * c6eb
+13766 * * c6ec * * * * 3046 e38186,ef9bbc 3046,f6fc 00003046,0000f6fc c6ec * * * * * c6ec
+13767 * * c6ed * * * * 3047 e38187,ef9bbd 3047,f6fd 00003047,0000f6fd c6ed * * * * * c6ed
+13768 * * c6ee * * * * 3048 e38188,ef9bbe 3048,f6fe 00003048,0000f6fe c6ee * * * * * c6ee
+13769 * * c6ef * * * * 3049 e38189,ef9bbf 3049,f6ff 00003049,0000f6ff c6ef * * * * * c6ef
+13770 * * c6f0 * * * * 304a e3818a,ef9c80 304a,f700 0000304a,0000f700 c6f0 * * * * * c6f0
+13771 * * c6f1 * * * * 304b e3818b,ef9c81 304b,f701 0000304b,0000f701 c6f1 * * * * * c6f1
+13772 * * c6f2 * * * * 304c e3818c,ef9c82 304c,f702 0000304c,0000f702 c6f2 * * * * * c6f2
+13773 * * c6f3 * * * * 304d e3818d,ef9c83 304d,f703 0000304d,0000f703 c6f3 * * * * * c6f3
+13774 * * c6f4 * * * * 304e e3818e,ef9c84 304e,f704 0000304e,0000f704 c6f4 * * * * * c6f4
+13775 * * c6f5 * * * * 304f e3818f,ef9c85 304f,f705 0000304f,0000f705 c6f5 * * * * * c6f5
+13776 * * c6f6 * * * * 3050 e38190,ef9c86 3050,f706 00003050,0000f706 c6f6 * * * * * c6f6
+13777 * * c6f7 * * * * 3051 e38191,ef9c87 3051,f707 00003051,0000f707 c6f7 * * * * * c6f7
+13778 * * c6f8 * * * * 3052 e38192,ef9c88 3052,f708 00003052,0000f708 c6f8 * * * * * c6f8
+13779 * * c6f9 * * * * 3053 e38193,ef9c89 3053,f709 00003053,0000f709 c6f9 * * * * * c6f9
+13780 * * c6fa * * * * 3054 e38194,ef9c8a 3054,f70a 00003054,0000f70a c6fa * * * * * c6fa
+13781 * * c6fb * * * * 3055 e38195,ef9c8b 3055,f70b 00003055,0000f70b c6fb * * * * * c6fb
+13782 * * c6fc * * * * 3056 e38196,ef9c8c 3056,f70c 00003056,0000f70c c6fc * * * * * c6fc
+13783 * * c6fd * * * * 3057 e38197,ef9c8d 3057,f70d 00003057,0000f70d c6fd * * * * * c6fd
+13784 * * c6fe * * * * 3058 e38198,ef9c8e 3058,f70e 00003058,0000f70e c6fe * * * * * c6fe
+13785 * * c740 * * * * 3059 e38199,ef9c8f 3059,f70f 00003059,0000f70f c740 * * * * * c740
+13786 * * c741 * * * * 305a e3819a,ef9c90 305a,f710 0000305a,0000f710 c741 * * * * * c741
+13787 * * c742 * * * * 305b e3819b,ef9c91 305b,f711 0000305b,0000f711 c742 * * * * * c742
+13788 * * c743 * * * * 305c e3819c,ef9c92 305c,f712 0000305c,0000f712 c743 * * * * * c743
+13789 * * c744 * * * * 305d e3819d,ef9c93 305d,f713 0000305d,0000f713 c744 * * * * * c744
+13790 * * c745 * * * * 305e e3819e,ef9c94 305e,f714 0000305e,0000f714 c745 * * * * * c745
+13791 * * c746 * * * * 305f e3819f,ef9c95 305f,f715 0000305f,0000f715 c746 * * * * * c746
+13792 * * c747 * * * * 3060 e381a0,ef9c96 3060,f716 00003060,0000f716 c747 * * * * * c747
+13793 * * c748 * * * * 3061 e381a1,ef9c97 3061,f717 00003061,0000f717 c748 * * * * * c748
+13794 * * c749 * * * * 3062 e381a2,ef9c98 3062,f718 00003062,0000f718 c749 * * * * * c749
+13795 * * c74a * * * * 3063 e381a3,ef9c99 3063,f719 00003063,0000f719 c74a * * * * * c74a
+13796 * * c74b * * * * 3064 e381a4,ef9c9a 3064,f71a 00003064,0000f71a c74b * * * * * c74b
+13797 * * c74c * * * * 3065 e381a5,ef9c9b 3065,f71b 00003065,0000f71b c74c * * * * * c74c
+13798 * * c74d * * * * 3066 e381a6,ef9c9c 3066,f71c 00003066,0000f71c c74d * * * * * c74d
+13799 * * c74e * * * * 3067 e381a7,ef9c9d 3067,f71d 00003067,0000f71d c74e * * * * * c74e
+13800 * * c74f * * * * 3068 e381a8,ef9c9e 3068,f71e 00003068,0000f71e c74f * * * * * c74f
+13801 * * c750 * * * * 3069 e381a9,ef9c9f 3069,f71f 00003069,0000f71f c750 * * * * * c750
+13802 * * c751 * * * * 306a e381aa,ef9ca0 306a,f720 0000306a,0000f720 c751 * * * * * c751
+13803 * * c752 * * * * 306b e381ab,ef9ca1 306b,f721 0000306b,0000f721 c752 * * * * * c752
+13804 * * c753 * * * * 306c e381ac,ef9ca2 306c,f722 0000306c,0000f722 c753 * * * * * c753
+13805 * * c754 * * * * 306d e381ad,ef9ca3 306d,f723 0000306d,0000f723 c754 * * * * * c754
+13806 * * c755 * * * * 306e e381ae,ef9ca4 306e,f724 0000306e,0000f724 c755 * * * * * c755
+13807 * * c756 * * * * 306f e381af,ef9ca5 306f,f725 0000306f,0000f725 c756 * * * * * c756
+13808 * * c757 * * * * 3070 e381b0,ef9ca6 3070,f726 00003070,0000f726 c757 * * * * * c757
+13809 * * c758 * * * * 3071 e381b1,ef9ca7 3071,f727 00003071,0000f727 c758 * * * * * c758
+13810 * * c759 * * * * 3072 e381b2,ef9ca8 3072,f728 00003072,0000f728 c759 * * * * * c759
+13811 * * c75a * * * * 3073 e381b3,ef9ca9 3073,f729 00003073,0000f729 c75a * * * * * c75a
+13812 * * c75b * * * * 3074 e381b4,ef9caa 3074,f72a 00003074,0000f72a c75b * * * * * c75b
+13813 * * c75c * * * * 3075 e381b5,ef9cab 3075,f72b 00003075,0000f72b c75c * * * * * c75c
+13814 * * c75d * * * * 3076 e381b6,ef9cac 3076,f72c 00003076,0000f72c c75d * * * * * c75d
+13815 * * c75e * * * * 3077 e381b7,ef9cad 3077,f72d 00003077,0000f72d c75e * * * * * c75e
+13816 * * c75f * * * * 3078 e381b8,ef9cae 3078,f72e 00003078,0000f72e c75f * * * * * c75f
+13817 * * c760 * * * * 3079 e381b9,ef9caf 3079,f72f 00003079,0000f72f c760 * * * * * c760
+13818 * * c761 * * * * 307a e381ba,ef9cb0 307a,f730 0000307a,0000f730 c761 * * * * * c761
+13819 * * c762 * * * * 307b e381bb,ef9cb1 307b,f731 0000307b,0000f731 c762 * * * * * c762
+13820 * * c763 * * * * 307c e381bc,ef9cb2 307c,f732 0000307c,0000f732 c763 * * * * * c763
+13821 * * c764 * * * * 307d e381bd,ef9cb3 307d,f733 0000307d,0000f733 c764 * * * * * c764
+13822 * * c765 * * * * 307e e381be,ef9cb4 307e,f734 0000307e,0000f734 c765 * * * * * c765
+13823 * * c766 * * * * 307f e381bf,ef9cb5 307f,f735 0000307f,0000f735 c766 * * * * * c766
+13824 * * c767 * * * * 3080 e38280,ef9cb6 3080,f736 00003080,0000f736 c767 * * * * * c767
+13825 * * c768 * * * * 3081 e38281,ef9cb7 3081,f737 00003081,0000f737 c768 * * * * * c768
+13826 * * c769 * * * * 3082 e38282,ef9cb8 3082,f738 00003082,0000f738 c769 * * * * * c769
+13827 * * c76a * * * * 3083 e38283,ef9cb9 3083,f739 00003083,0000f739 c76a * * * * * c76a
+13828 * * c76b * * * * 3084 e38284,ef9cba 3084,f73a 00003084,0000f73a c76b * * * * * c76b
+13829 * * c76c * * * * 3085 e38285,ef9cbb 3085,f73b 00003085,0000f73b c76c * * * * * c76c
+13830 * * c76d * * * * 3086 e38286,ef9cbc 3086,f73c 00003086,0000f73c c76d * * * * * c76d
+13831 * * c76e * * * * 3087 e38287,ef9cbd 3087,f73d 00003087,0000f73d c76e * * * * * c76e
+13832 * * c76f * * * * 3088 e38288,ef9cbe 3088,f73e 00003088,0000f73e c76f * * * * * c76f
+13833 * * c770 * * * * 3089 e38289,ef9cbf 3089,f73f 00003089,0000f73f c770 * * * * * c770
+13834 * * c771 * * * * 308a e3828a,ef9d80 308a,f740 0000308a,0000f740 c771 * * * * * c771
+13835 * * c772 * * * * 308b e3828b,ef9d81 308b,f741 0000308b,0000f741 c772 * * * * * c772
+13836 * * c773 * * * * 308c e3828c,ef9d82 308c,f742 0000308c,0000f742 c773 * * * * * c773
+13837 * * c774 * * * * 308d e3828d,ef9d83 308d,f743 0000308d,0000f743 c774 * * * * * c774
+13838 * * c775 * * * * 308e e3828e,ef9d84 308e,f744 0000308e,0000f744 c775 * * * * * c775
+13839 * * c776 * * * * 308f e3828f,ef9d85 308f,f745 0000308f,0000f745 c776 * * * * * c776
+13840 * * c777 * * * * 3090 e38290,ef9d86 3090,f746 00003090,0000f746 c777 * * * * * c777
+13841 * * c778 * * * * 3091 e38291,ef9d87 3091,f747 00003091,0000f747 c778 * * * * * c778
+13842 * * c779 * * * * 3092 e38292,ef9d88 3092,f748 00003092,0000f748 c779 * * * * * c779
+13843 * * c77a * * * * 3093 e38293,ef9d89 3093,f749 00003093,0000f749 c77a * * * * * c77a
+13844 * * c77b * * * * 30a1 e382a1,ef9d8a 30a1,f74a 000030a1,0000f74a c77b * * * * * c77b
+13845 * * c77c * * * * 30a2 e382a2,ef9d8b 30a2,f74b 000030a2,0000f74b c77c * * * * * c77c
+13846 * * c77d * * * * 30a3 e382a3,ef9d8c 30a3,f74c 000030a3,0000f74c c77d * * * * * c77d
+13847 * * c77e * * * * 30a4 e382a4,ef9d8d 30a4,f74d 000030a4,0000f74d c77e * * * * * c77e
+13848 * * c7a1 * * * * 30a5 e382a5,ef9d8e 30a5,f74e 000030a5,0000f74e c7a1 * * * * * c7a1
+13849 * * c7a2 * * * * 30a6 e382a6,ef9d8f 30a6,f74f 000030a6,0000f74f c7a2 * * * * * c7a2
+13850 * * c7a3 * * * * 30a7 e382a7,ef9d90 30a7,f750 000030a7,0000f750 c7a3 * * * * * c7a3
+13851 * * c7a4 * * * * 30a8 e382a8,ef9d91 30a8,f751 000030a8,0000f751 c7a4 * * * * * c7a4
+13852 * * c7a5 * * * * 30a9 e382a9,ef9d92 30a9,f752 000030a9,0000f752 c7a5 * * * * * c7a5
+13853 * * c7a6 * * * * 30aa e382aa,ef9d93 30aa,f753 000030aa,0000f753 c7a6 * * * * * c7a6
+13854 * * c7a7 * * * * 30ab e382ab,ef9d94 30ab,f754 000030ab,0000f754 c7a7 * * * * * c7a7
+13855 * * c7a8 * * * * 30ac e382ac,ef9d95 30ac,f755 000030ac,0000f755 c7a8 * * * * * c7a8
+13856 * * c7a9 * * * * 30ad e382ad,ef9d96 30ad,f756 000030ad,0000f756 c7a9 * * * * * c7a9
+13857 * * c7aa * * * * 30ae e382ae,ef9d97 30ae,f757 000030ae,0000f757 c7aa * * * * * c7aa
+13858 * * c7ab * * * * 30af e382af,ef9d98 30af,f758 000030af,0000f758 c7ab * * * * * c7ab
+13859 * * c7ac * * * * 30b0 e382b0,ef9d99 30b0,f759 000030b0,0000f759 c7ac * * * * * c7ac
+13860 * * c7ad * * * * 30b1 e382b1,ef9d9a 30b1,f75a 000030b1,0000f75a c7ad * * * * * c7ad
+13861 * * c7ae * * * * 30b2 e382b2,ef9d9b 30b2,f75b 000030b2,0000f75b c7ae * * * * * c7ae
+13862 * * c7af * * * * 30b3 e382b3,ef9d9c 30b3,f75c 000030b3,0000f75c c7af * * * * * c7af
+13863 * * c7b0 * * * * 30b4 e382b4,ef9d9d 30b4,f75d 000030b4,0000f75d c7b0 * * * * * c7b0
+13864 * * c7b1 * * * * 30b5 e382b5,ef9d9e 30b5,f75e 000030b5,0000f75e c7b1 * * * * * c7b1
+13865 * * c7b2 * * * * 30b6 e382b6,ef9d9f 30b6,f75f 000030b6,0000f75f c7b2 * * * * * c7b2
+13866 * * c7b3 * * * * 30b7 e382b7,ef9da0 30b7,f760 000030b7,0000f760 c7b3 * * * * * c7b3
+13867 * * c7b4 * * * * 30b8 e382b8,ef9da1 30b8,f761 000030b8,0000f761 c7b4 * * * * * c7b4
+13868 * * c7b5 * * * * 30b9 e382b9,ef9da2 30b9,f762 000030b9,0000f762 c7b5 * * * * * c7b5
+13869 * * c7b6 * * * * 30ba e382ba,ef9da3 30ba,f763 000030ba,0000f763 c7b6 * * * * * c7b6
+13870 * * c7b7 * * * * 30bb e382bb,ef9da4 30bb,f764 000030bb,0000f764 c7b7 * * * * * c7b7
+13871 * * c7b8 * * * * 30bc e382bc,ef9da5 30bc,f765 000030bc,0000f765 c7b8 * * * * * c7b8
+13872 * * c7b9 * * * * 30bd e382bd,ef9da6 30bd,f766 000030bd,0000f766 c7b9 * * * * * c7b9
+13873 * * c7ba * * * * 30be e382be,ef9da7 30be,f767 000030be,0000f767 c7ba * * * * * c7ba
+13874 * * c7bb * * * * 30bf e382bf,ef9da8 30bf,f768 000030bf,0000f768 c7bb * * * * * c7bb
+13875 * * c7bc * * * * 30c0 e38380,ef9da9 30c0,f769 000030c0,0000f769 c7bc * * * * * c7bc
+13876 * * c7bd * * * * 30c1 e38381,ef9daa 30c1,f76a 000030c1,0000f76a c7bd * * * * * c7bd
+13877 * * c7be * * * * 30c2 e38382,ef9dab 30c2,f76b 000030c2,0000f76b c7be * * * * * c7be
+13878 * * c7bf * * * * 30c3 e38383,ef9dac 30c3,f76c 000030c3,0000f76c c7bf * * * * * c7bf
+13879 * * c7c0 * * * * 30c4 e38384,ef9dad 30c4,f76d 000030c4,0000f76d c7c0 * * * * * c7c0
+13880 * * c7c1 * * * * 30c5 e38385,ef9dae 30c5,f76e 000030c5,0000f76e c7c1 * * * * * c7c1
+13881 * * c7c2 * * * * 30c6 e38386,ef9daf 30c6,f76f 000030c6,0000f76f c7c2 * * * * * c7c2
+13882 * * c7c3 * * * * 30c7 e38387,ef9db0 30c7,f770 000030c7,0000f770 c7c3 * * * * * c7c3
+13883 * * c7c4 * * * * 30c8 e38388,ef9db1 30c8,f771 000030c8,0000f771 c7c4 * * * * * c7c4
+13884 * * c7c5 * * * * 30c9 e38389,ef9db2 30c9,f772 000030c9,0000f772 c7c5 * * * * * c7c5
+13885 * * c7c6 * * * * 30ca e3838a,ef9db3 30ca,f773 000030ca,0000f773 c7c6 * * * * * c7c6
+13886 * * c7c7 * * * * 30cb e3838b,ef9db4 30cb,f774 000030cb,0000f774 c7c7 * * * * * c7c7
+13887 * * c7c8 * * * * 30cc e3838c,ef9db5 30cc,f775 000030cc,0000f775 c7c8 * * * * * c7c8
+13888 * * c7c9 * * * * 30cd e3838d,ef9db6 30cd,f776 000030cd,0000f776 c7c9 * * * * * c7c9
+13889 * * c7ca * * * * 30ce e3838e,ef9db7 30ce,f777 000030ce,0000f777 c7ca * * * * * c7ca
+13890 * * c7cb * * * * 30cf e3838f,ef9db8 30cf,f778 000030cf,0000f778 c7cb * * * * * c7cb
+13891 * * c7cc * * * * 30d0 e38390,ef9db9 30d0,f779 000030d0,0000f779 c7cc * * * * * c7cc
+13892 * * c7cd * * * * 30d1 e38391,ef9dba 30d1,f77a 000030d1,0000f77a c7cd * * * * * c7cd
+13893 * * c7ce * * * * 30d2 e38392,ef9dbb 30d2,f77b 000030d2,0000f77b c7ce * * * * * c7ce
+13894 * * c7cf * * * * 30d3 e38393,ef9dbc 30d3,f77c 000030d3,0000f77c c7cf * * * * * c7cf
+13895 * * c7d0 * * * * 30d4 e38394,ef9dbd 30d4,f77d 000030d4,0000f77d c7d0 * * * * * c7d0
+13896 * * c7d1 * * * * 30d5 e38395,ef9dbe 30d5,f77e 000030d5,0000f77e c7d1 * * * * * c7d1
+13897 * * c7d2 * * * * 30d6 e38396,ef9dbf 30d6,f77f 000030d6,0000f77f c7d2 * * * * * c7d2
+13898 * * c7d3 * * * * 30d7 e38397,ef9e80 30d7,f780 000030d7,0000f780 c7d3 * * * * * c7d3
+13899 * * c7d4 * * * * 30d8 e38398,ef9e81 30d8,f781 000030d8,0000f781 c7d4 * * * * * c7d4
+13900 * * c7d5 * * * * 30d9 e38399,ef9e82 30d9,f782 000030d9,0000f782 c7d5 * * * * * c7d5
+13901 * * c7d6 * * * * 30da e3839a,ef9e83 30da,f783 000030da,0000f783 c7d6 * * * * * c7d6
+13902 * * c7d7 * * * * 30db e3839b,ef9e84 30db,f784 000030db,0000f784 c7d7 * * * * * c7d7
+13903 * * c7d8 * * * * 30dc e3839c,ef9e85 30dc,f785 000030dc,0000f785 c7d8 * * * * * c7d8
+13904 * * c7d9 * * * * 30dd e3839d,ef9e86 30dd,f786 000030dd,0000f786 c7d9 * * * * * c7d9
+13905 * * c7da * * * * 30de e3839e,ef9e87 30de,f787 000030de,0000f787 c7da * * * * * c7da
+13906 * * c7db * * * * 30df e3839f,ef9e88 30df,f788 000030df,0000f788 c7db * * * * * c7db
+13907 * * c7dc * * * * 30e0 e383a0,ef9e89 30e0,f789 000030e0,0000f789 c7dc * * * * * c7dc
+13908 * * c7dd * * * * 30e1 e383a1,ef9e8a 30e1,f78a 000030e1,0000f78a c7dd * * * * * c7dd
+13909 * * c7de * * * * 30e2 e383a2,ef9e8b 30e2,f78b 000030e2,0000f78b c7de * * * * * c7de
+13910 * * c7df * * * * 30e3 e383a3,ef9e8c 30e3,f78c 000030e3,0000f78c c7df * * * * * c7df
+13911 * * c7e0 * * * * 30e4 e383a4,ef9e8d 30e4,f78d 000030e4,0000f78d c7e0 * * * * * c7e0
+13912 * * c7e1 * * * * 30e5 e383a5,ef9e8e 30e5,f78e 000030e5,0000f78e c7e1 * * * * * c7e1
+13913 * * c7e2 * * * * 30e6 e383a6,ef9e8f 30e6,f78f 000030e6,0000f78f c7e2 * * * * * c7e2
+13914 * * c7e3 * * * * 30e7 e383a7,ef9e90 30e7,f790 000030e7,0000f790 c7e3 * * * * * c7e3
+13915 * * c7e4 * * * * 30e8 e383a8,ef9e91 30e8,f791 000030e8,0000f791 c7e4 * * * * * c7e4
+13916 * * c7e5 * * * * 30e9 e383a9,ef9e92 30e9,f792 000030e9,0000f792 c7e5 * * * * * c7e5
+13917 * * c7e6 * * * * 30ea e383aa,ef9e93 30ea,f793 000030ea,0000f793 c7e6 * * * * * c7e6
+13918 * * c7e7 * * * * 30eb e383ab,ef9e94 30eb,f794 000030eb,0000f794 c7e7 * * * * * c7e7
+13919 * * c7e8 * * * * 30ec e383ac,ef9e95 30ec,f795 000030ec,0000f795 c7e8 * * * * * c7e8
+13920 * * c7e9 * * * * 30ed e383ad,ef9e96 30ed,f796 000030ed,0000f796 c7e9 * * * * * c7e9
+13921 * * c7ea * * * * 30ee e383ae,ef9e97 30ee,f797 000030ee,0000f797 c7ea * * * * * c7ea
+13922 * * c7eb * * * * 30ef e383af,ef9e98 30ef,f798 000030ef,0000f798 c7eb * * * * * c7eb
+13923 * * c7ec * * * * 30f0 e383b0,ef9e99 30f0,f799 000030f0,0000f799 c7ec * * * * * c7ec
+13924 * * c7ed * * * * 30f1 e383b1,ef9e9a 30f1,f79a 000030f1,0000f79a c7ed * * * * * c7ed
+13925 * * c7ee * * * * 30f2 e383b2,ef9e9b 30f2,f79b 000030f2,0000f79b c7ee * * * * * c7ee
+13926 * * c7ef * * * * 30f3 e383b3,ef9e9c 30f3,f79c 000030f3,0000f79c c7ef * * * * * c7ef
+13927 * * c7f0 * * * * 30f4 e383b4,ef9e9d 30f4,f79d 000030f4,0000f79d c7f0 * * * * * c7f0
+13928 * * c7f1 * * * * 30f5 e383b5,ef9e9e 30f5,f79e 000030f5,0000f79e c7f1 * * * * * c7f1
+13929 * * c7f2 * * * * 30f6 e383b6,ef9e9f 30f6,f79f 000030f6,0000f79f c7f2 * * * * * c7f2
+13930 * * c7f3 * * * * 0410 d090,ef9ea0 0410,f7a0 00000410,0000f7a0 c7f3 * * * * * c7f3
+13931 * * c7f4 * * * * 0411 d091,ef9ea1 0411,f7a1 00000411,0000f7a1 c7f4 * * * * * c7f4
+13932 * * c7f5 * * * * 0412 d092,ef9ea2 0412,f7a2 00000412,0000f7a2 c7f5 * * * * * c7f5
+13933 * * c7f6 * * * * 0413 d093,ef9ea3 0413,f7a3 00000413,0000f7a3 c7f6 * * * * * c7f6
+13934 * * c7f7 * * * * 0414 d094,ef9ea4 0414,f7a4 00000414,0000f7a4 c7f7 * * * * * c7f7
+13935 * * c7f8 * * * * 0415 d095,ef9ea5 0415,f7a5 00000415,0000f7a5 c7f8 * * * * * c7f8
+13936 * * c7f9 * * * * 0401 d081,ef9ea6 0401,f7a6 00000401,0000f7a6 c7f9 * * * * * c7f9
+13937 * * c7fa * * * * 0416 d096,ef9ea7 0416,f7a7 00000416,0000f7a7 c7fa * * * * * c7fa
+13938 * * c7fb * * * * 0417 d097,ef9ea8 0417,f7a8 00000417,0000f7a8 c7fb * * * * * c7fb
+13939 * * c7fc * * * * 0418 d098,ef9ea9 0418,f7a9 00000418,0000f7a9 c7fc * * * * * c7fc
+13940 * * c7fd * * * * 0419 d099,ef9eaa 0419,f7aa 00000419,0000f7aa c7fd * * * * * c7fd
+13941 * * c7fe * * * * 041a d09a,ef9eab 041a,f7ab 0000041a,0000f7ab c7fe * * * * * c7fe
+13942 * * c840 * * * * 041b d09b,ef9eac 041b,f7ac 0000041b,0000f7ac c840 * * * * * c840
+13943 * * c841 * * * * 041c d09c,ef9ead 041c,f7ad 0000041c,0000f7ad c841 * * * * * c841
+13944 * * c842 * * * * 041d d09d,ef9eae 041d,f7ae 0000041d,0000f7ae c842 * * * * * c842
+13945 * * c843 * * * * 041e d09e,ef9eaf 041e,f7af 0000041e,0000f7af c843 * * * * * c843
+13946 * * c844 * * * * 041f d09f,ef9eb0 041f,f7b0 0000041f,0000f7b0 c844 * * * * * c844
+13947 * * c845 * * * * 0420 d0a0,ef9eb1 0420,f7b1 00000420,0000f7b1 c845 * * * * * c845
+13948 * * c846 * * * * 0421 d0a1,ef9eb2 0421,f7b2 00000421,0000f7b2 c846 * * * * * c846
+13949 * * c847 * * * * 0422 d0a2,ef9eb3 0422,f7b3 00000422,0000f7b3 c847 * * * * * c847
+13950 * * c848 * * * * 0423 d0a3,ef9eb4 0423,f7b4 00000423,0000f7b4 c848 * * * * * c848
+13951 * * c849 * * * * 0424 d0a4,ef9eb5 0424,f7b5 00000424,0000f7b5 c849 * * * * * c849
+13952 * * c84a * * * * 0425 d0a5,ef9eb6 0425,f7b6 00000425,0000f7b6 c84a * * * * * c84a
+13953 * * c84b * * * * 0426 d0a6,ef9eb7 0426,f7b7 00000426,0000f7b7 c84b * * * * * c84b
+13954 * * c84c * * * * 0427 d0a7,ef9eb8 0427,f7b8 00000427,0000f7b8 c84c * * * * * c84c
+13955 * * c84d * * * * 0428 d0a8,ef9eb9 0428,f7b9 00000428,0000f7b9 c84d * * * * * c84d
+13956 * * c84e * * * * 0429 d0a9,ef9eba 0429,f7ba 00000429,0000f7ba c84e * * * * * c84e
+13957 * * c84f * * * * 042a d0aa,ef9ebb 042a,f7bb 0000042a,0000f7bb c84f * * * * * c84f
+13958 * * c850 * * * * 042b d0ab,ef9ebc 042b,f7bc 0000042b,0000f7bc c850 * * * * * c850
+13959 * * c851 * * * * 042c d0ac,ef9ebd 042c,f7bd 0000042c,0000f7bd c851 * * * * * c851
+13960 * * c852 * * * * 042d d0ad,ef9ebe 042d,f7be 0000042d,0000f7be c852 * * * * * c852
+13961 * * c853 * * * * 042e d0ae,ef9ebf 042e,f7bf 0000042e,0000f7bf c853 * * * * * c853
+13962 * * c854 * * * * 042f d0af,ef9f80 042f,f7c0 0000042f,0000f7c0 c854 * * * * * c854
+13963 * * c855 * * * * 0430 d0b0,ef9f81 0430,f7c1 00000430,0000f7c1 c855 * * * * * c855
+13964 * * c856 * * * * 0431 d0b1,ef9f82 0431,f7c2 00000431,0000f7c2 c856 * * * * * c856
+13965 * * c857 * * * * 0432 d0b2,ef9f83 0432,f7c3 00000432,0000f7c3 c857 * * * * * c857
+13966 * * c858 * * * * 0433 d0b3,ef9f84 0433,f7c4 00000433,0000f7c4 c858 * * * * * c858
+13967 * * c859 * * * * 0434 d0b4,ef9f85 0434,f7c5 00000434,0000f7c5 c859 * * * * * c859
+13968 * * c85a * * * * 0435 d0b5,ef9f86 0435,f7c6 00000435,0000f7c6 c85a * * * * * c85a
+13969 * * c85b * * * * 0451 d191,ef9f87 0451,f7c7 00000451,0000f7c7 c85b * * * * * c85b
+13970 * * c85c * * * * 0436 d0b6,ef9f88 0436,f7c8 00000436,0000f7c8 c85c * * * * * c85c
+13971 * * c85d * * * * 0437 d0b7,ef9f89 0437,f7c9 00000437,0000f7c9 c85d * * * * * c85d
+13972 * * c85e * * * * 0438 d0b8,ef9f8a 0438,f7ca 00000438,0000f7ca c85e * * * * * c85e
+13973 * * c85f * * * * 0439 d0b9,ef9f8b 0439,f7cb 00000439,0000f7cb c85f * * * * * c85f
+13974 * * c860 * * * * 043a d0ba,ef9f8c 043a,f7cc 0000043a,0000f7cc c860 * * * * * c860
+13975 * * c861 * * * * 043b d0bb,ef9f8d 043b,f7cd 0000043b,0000f7cd c861 * * * * * c861
+13976 * * c862 * * * * 043c d0bc,ef9f8e 043c,f7ce 0000043c,0000f7ce c862 * * * * * c862
+13977 * * c863 * * * * 043d d0bd,ef9f8f 043d,f7cf 0000043d,0000f7cf c863 * * * * * c863
+13978 * * c864 * * * * 043e d0be,ef9f90 043e,f7d0 0000043e,0000f7d0 c864 * * * * * c864
+13979 * * c865 * * * * 043f d0bf,ef9f91 043f,f7d1 0000043f,0000f7d1 c865 * * * * * c865
+13980 * * c866 * * * * 0440 d180,ef9f92 0440,f7d2 00000440,0000f7d2 c866 * * * * * c866
+13981 * * c867 * * * * 0441 d181,ef9f93 0441,f7d3 00000441,0000f7d3 c867 * * * * * c867
+13982 * * c868 * * * * 0442 d182,ef9f94 0442,f7d4 00000442,0000f7d4 c868 * * * * * c868
+13983 * * c869 * * * * 0443 d183,ef9f95 0443,f7d5 00000443,0000f7d5 c869 * * * * * c869
+13984 * * c86a * * * * 0444 d184,ef9f96 0444,f7d6 00000444,0000f7d6 c86a * * * * * c86a
+13985 * * c86b * * * * 0445 d185,ef9f97 0445,f7d7 00000445,0000f7d7 c86b * * * * * c86b
+13986 * * c86c * * * * 0446 d186,ef9f98 0446,f7d8 00000446,0000f7d8 c86c * * * * * c86c
+13987 * * c86d * * * * 0447 d187,ef9f99 0447,f7d9 00000447,0000f7d9 c86d * * * * * c86d
+13988 * * c86e * * * * 0448 d188,ef9f9a 0448,f7da 00000448,0000f7da c86e * * * * * c86e
+13989 * * c86f * * * * 0449 d189,ef9f9b 0449,f7db 00000449,0000f7db c86f * * * * * c86f
+13990 * * c870 * * * * 044a d18a,ef9f9c 044a,f7dc 0000044a,0000f7dc c870 * * * * * c870
+13991 * * c871 * * * * 044b d18b,ef9f9d 044b,f7dd 0000044b,0000f7dd c871 * * * * * c871
+13992 * * c872 * * * * 044c d18c,ef9f9e 044c,f7de 0000044c,0000f7de c872 * * * * * c872
+13993 * * c873 * * * * 044d d18d,ef9f9f 044d,f7df 0000044d,0000f7df c873 * * * * * c873
+13994 * * c874 * * * * 044e d18e,ef9fa0 044e,f7e0 0000044e,0000f7e0 c874 * * * * * c874
+13995 * * c875 * * * * 044f d18f,ef9fa1 044f,f7e1 0000044f,0000f7e1 c875 * * * * * c875
+13996 * * c876 * * * * 21e7 e287a7,ef9fa2 21e7,f7e2 000021e7,0000f7e2 c876 * * * * * c876
+13997 * * c877 * * * * 21b8 e286b8,ef9fa3 21b8,f7e3 000021b8,0000f7e3 c877 * * * * * c877
+13998 * * c878 * * * * 21b9 e286b9,ef9fa4 21b9,f7e4 000021b9,0000f7e4 c878 * * * * * c878
+13999 * * c879 * * * * 4e41,f7e5 e3878f,e4b981,ef9fa5 31cf,4e41,f7e5 000031cf,00004e41,0000f7e5 c879 * * * * * c879
+14000 * * c87a * * * * f7e6 f0a0838c,ef9fa6 d840dccc,f7e6 000200cc,0000f7e6 c87a * * * * * c87a
+14001 * * c87b * * * * 4e5a e4b99a,ef9fa7 4e5a,f7e7 00004e5a,0000f7e7 c87b * * * * * c87b
+14002 * * c87c * * * * f7e8 f0a0828a,ef9fa8 d840dc8a,f7e8 0002008a,0000f7e8 c87c * * * * * c87c
+14003 * * c87d * * * * 5202 e58882,ef9fa9 5202,f7e9 00005202,0000f7e9 c87d * * * * * c87d
+14004 * * c87e * * * * f7ea e49291,ef9faa 4491,f7ea 00004491,0000f7ea c87e * * * * * c87e
+14005 * * c8a1 * * * * f7eb e9beb0,ef9fab 9fb0,f7eb 00009fb0,0000f7eb c8a1 * * * * * c8a1
+14006 * * c8a2 * * * * 5188 e58688,ef9fac 5188,f7ec 00005188,0000f7ec c8a2 * * * * * c8a2
+14007 * * c8a3 * * * * f7ed e3989d,e9beb1,ef9fad 361d,9fb1,f7ed 0000361d,00009fb1,0000f7ed c8a3 * * * * * c8a3
+14008 * * c8a4 * * * * f7ee f0a79887,ef9fae d85dde07,f7ee 00027607,0000f7ee c8a4 * * * * * c8a4
+14009 * * c8a5 * * * * * * * * c8a5 * * * * * *
+14010 * * c8a6 * * * * * * * * c8a6 * * * * * *
+14011 * * c8a7 * * * * * * * * c8a7 * * * * * *
+14012 * * c8a8 * * * * * * * * c8a8 * * * * * *
+14013 * * c8a9 * * * * * * * * c8a9 * * * * * *
+14014 * * c8aa * * * * * * * * c8aa * * * * * *
+14015 * * c8ab * * * * * * * * c8ab * * * * * *
+14016 * * c8ac * * * * * * * * c8ac * * * * * *
+14017 * * c8ad * * * * * * * * c8ad * * * * * *
+14018 * * c8ae * * * * * * * * c8ae * * * * * *
+14019 * * c8af * * * * * * * * c8af * * * * * *
+14020 * * c8b0 * * * * * * * * c8b0 * * * * * *
+14021 * * c8b1 * * * * * * * * c8b1 * * * * * *
+14022 * * c8b2 * * * * * * * * c8b2 * * * * * *
+14023 * * c8b3 * * * * * * * * c8b3 * * * * * *
+14024 * * c8b4 * * * * * * * * c8b4 * * * * * *
+14025 * * c8b5 * * * * * * * * c8b5 * * * * * *
+14026 * * c8b6 * * * * * * * * c8b6 * * * * * *
+14027 * * c8b7 * * * * * * * * c8b7 * * * * * *
+14028 * * c8b8 * * * * * * * * c8b8 * * * * * *
+14029 * * c8b9 * * * * * * * * c8b9 * * * * * *
+14030 * * c8ba * * * * * * * * c8ba * * * * * *
+14031 * * c8bb * * * * * * * * c8bb * * * * * *
+14032 * * c8bc * * * * * * * * c8bc * * * * * *
+14033 * * c8bd * * * * * * * * c8bd * * * * * *
+14034 * * c8be * * * * * * * * c8be * * * * * *
+14035 * * c8bf * * * * * * * * c8bf * * * * * *
+14036 * * c8c0 * * * * * * * * c8c0 * * * * * *
+14037 * * c8c1 * * * * * * * * c8c1 * * * * * *
+14038 * * c8c2 * * * * * * * * c8c2 * * * * * *
+14039 * * c8c3 * * * * * * * * c8c3 * * * * * *
+14040 * * c8c4 * * * * * * * * c8c4 * * * * * *
+14041 * * c8c5 * * * * * * * * c8c5 * * * * * *
+14042 * * c8c6 * * * * * * * * c8c6 * * * * * *
+14043 * * c8c7 * * * * * * * * c8c7 * * * * * *
+14044 * * c8c8 * * * * * * * * c8c8 * * * * * *
+14045 * * c8c9 * * * * * * * * c8c9 * * * * * *
+14046 * * c8ca * * * * * * * * c8ca * * * * * *
+14047 * * c8cb * * * * * * * * c8cb * * * * * *
+14048 * * c8cc * * * * * * * * c8cc * * * * * *
+14049 * * c8cd * * * * 00ac,ffe2 c2ac,efbfa2,efa097 00ac,ffe2,f817 000000ac,0000ffe2,0000f817 c8cd * * * * * c8cd
+14050 * * c8ce * * * * ffe4 efbfa4,efa098 ffe4,f818 0000ffe4,0000f818 c8ce * * * * * c8ce
+14051 * * c8cf * * * * ff07 efbc87,efa099 ff07,f819 0000ff07,0000f819 c8cf * * * * * c8cf
+14052 * * c8d0 * * * * ff02 efbc82,efa09a ff02,f81a 0000ff02,0000f81a c8d0 * * * * * c8d0
+14053 * * c8d1 * * * * 3231 e388b1,efa09b 3231,f81b 00003231,0000f81b c8d1 * * * * * c8d1
+14054 * * c8d2 * * * * 2116 e28496,efa09c 2116,f81c 00002116,0000f81c c8d2 * * * * * c8d2
+14055 * * c8d3 * * * * 2121 e284a1,efa09d 2121,f81d 00002121,0000f81d c8d3 * * * * * c8d3
+14056 * * f9d6 * * * * 7881 e7a281 7881 00007881 f9d6 * 8e5a * c879 fbfc f9d6
+14057 * * f9d7 * * * * 92b9 e98ab9,ee9285 92b9,e485 000092b9,0000e485 907a,f9d7 * 91fb 907a c8dd fccc 907a,f9d7
+14058 * * f9d8 * * * * 88cf e8a38f 88cf 000088cf f9d8 * 9254 * c744 fa47 f9d8
+14059 * * f9d9 * * * * 58bb e5a2bb 58bb 000058bb f9d9 * 905c * c7c8 fae9 f9d9
+14060 * * f9da * * * * 6052 e68192 6052 00006052 f9da * * * c7e2 fb57 f9da
+14061 * * f9db * * * * 7ca7 e7b2a7 7ca7 00007ca7 f9db * 925a * c8a3 fc52 f9db
+14062 * * f9dc * * * * 5afa e5abba 5afa 00005afa f9dc * * * c7cf faf4 f9dc
+14063 * * f9dd * * * * 2554 e29594 2554 00002554 f9dd * * * * * f9dd
+14064 * * f9de * * * * 2566 e295a6 2566 00002566 f9de * * * * * f9de
+14065 * * f9df * * * * 2557 e29597 2557 00002557 f9df * * * * * f9df
+14066 * * f9e0 * * * * 2560 e295a0 2560 00002560 f9e0 * * * * * f9e0
+14067 * * f9e1 * * * * 256c e295ac 256c 0000256c f9e1 * * * * * f9e1
+14068 * * f9e2 * * * * 2563 e295a3 2563 00002563 f9e2 * * * * * f9e2
+14069 * * f9e3 * * * * 255a e2959a 255a 0000255a f9e3 * * * * * f9e3
+14070 * * f9e4 * * * * 2569 e295a9 2569 00002569 f9e4 * * * * * f9e4
+14071 * * f9e5 * * * * 255d e2959d 255d 0000255d f9e5 * * * * * f9e5
+14072 * * f9e6 * * * * 2552 e29592 2552 00002552 f9e6 * * * * * f9e6
+14073 * * f9e7 * * * * 2564 e295a4 2564 00002564 f9e7 * * * * * f9e7
+14074 * * f9e8 * * * * 2555 e29595 2555 00002555 f9e8 * * * * * f9e8
+14075 * * f9e9 * * * * * e2959e 255e 0000255e f9e9 * * * * * f9e9
+14076 * * f9ea * * * * * e295aa 256a 0000256a f9ea * * * * * f9ea
+14077 * * f9eb * * * * * e295a1 2561 00002561 f9eb * * * * * f9eb
+14078 * * f9ec * * * * 2558 e29598 2558 00002558 f9ec * * * * * f9ec
+14079 * * f9ed * * * * 2567 e295a7 2567 00002567 f9ed * * * * * f9ed
+14080 * * f9ee * * * * 255b e2959b 255b 0000255b f9ee * * * * * f9ee
+14081 * * f9ef * * * * 2553 e29593 2553 00002553 f9ef * * * * * f9ef
+14082 * * f9f0 * * * * 2565 e295a5 2565 00002565 f9f0 * * * * * f9f0
+14083 * * f9f1 * * * * 2556 e29596 2556 00002556 f9f1 * * * * * f9f1
+14084 * * f9f2 * * * * 255f e2959f 255f 0000255f f9f2 * * * * * f9f2
+14085 * * f9f3 * * * * 256b e295ab 256b 0000256b f9f3 * * * * * f9f3
+14086 * * f9f4 * * * * 2562 e295a2 2562 00002562 f9f4 * * * * * f9f4
+14087 * * f9f5 * * * * 2559 e29599 2559 00002559 f9f5 * * * * * f9f5
+14088 * * f9f6 * * * * 2568 e295a8 2568 00002568 f9f6 * * * * * f9f6
+14089 * * f9f7 * * * * 255c e2959c 255c 0000255c f9f7 * * * * * f9f7
+14090 * * f9f8 * * * * 2551 e29591 2551 00002551 f9f8 * * * * * f9f8
+14091 * * f9f9 * * * * * e29590 2550 00002550 f9f9 * * * * * f9f9
+14092 * * f9fa * * * * * * * * f9fa * * * * * f9fa
+14093 * * f9fb * * * * * * * * f9fb * * * * * f9fb
+14094 * * f9fc * * * * * * * * f9fc * * * * * f9fc
+14095 * * f9fd * * * * * * * * f9fd * * * * * f9fd
+14096 * * f9fe * * * * 2593 e29693,efbfad 2593,ffed 00002593,0000ffed f9fe * * * * * f9fe
+14097 * * c6e4v c6e4v * * * * * * * c6e4v * * * * * c6e4v
+14098 * * c6e5v c6e5v * * * * * * * c6e5v * * * * * c6e5v
+14099 * * * * * * * * efb890 fe10 0000fe10 * * * * * * *
+14100 * * * * * * * * efb891 fe11 0000fe11 * * * * * * *
+14101 * * * * * * * * efb892 fe12 0000fe12 * * * * * * *
+14102 * * * * * * * * * * * * * * * * * *
+14103 * * * * * * * * efb894 fe14 0000fe14 * * * * * * *
+14104 * * * * * * * * efb893 fe13 0000fe13 * * * * * * *
+14105 * * * * * * * * efb896 fe16 0000fe16 * * * * * * *
+14106 * * * * * * * * efb895 fe15 0000fe15 * * * * * * *
+14107 * * * * * * * * * * * * * * * * * *
+14108 * * * * * * * * * * * * * * * * * *
+14109 * * * * * * * * * * * * * * * * * *
+14110 * * * * * * * * * * * * * * * * * *
+14111 * * * * * * * * * * * * * * * * * *
+14112 * * * * * * * * * * * * * * * * * *
+14113 * * * * * * * * * * * * * * * * * *
+14114 * * * * * * * * * * * * * * * * * *
+14115 * * * * * * * * * * * * * * * * * *
+14116 * * * * * * * * * * * * * * * * * *
+14117 * * * * * * * * * * * * * * * * * *
+14118 * * * * * * * * * * * * * * * * * *
+14119 * * * * * * * * * * * * * * * * * *
+14120 * * * * * * * * * * * * * * * * * *
+14121 * * * * * * * * * * * * * * * * * *
+14122 * * * * * * * * * * * * * * * * * *
+14123 * * * * * * * e311 f0a3bb97,ee8c91 d84fded7,e311 00023ed7,0000e311 8e40 * * 8e40 * * 8e40
+14124 * * * * * * * 57be e59ebe,ee8c92 57be,e312 000057be,0000e312 8e41 * * 8e41 * * 8e41
+14125 * * * * * * * e313 f0a6bb93,ee8c93 d85bded3,e313 00026ed3,0000e313 8e42 * * 8e42 * * 8e42
+14126 * * * * * * * 713e e784be,ee8c94 713e,e314 0000713e,0000e314 8e43 * * 8e43 * * 8e43
+14127 * * * * * * * e315 f0a59fa0,ee8c95 d855dfe0,e315 000257e0,0000e315 8e44 * * 8e44 * * 8e44
+14128 * * * * * * * 69a2 e6a6a2,ee8c97 69a2,e317 000069a2,0000e317 8e46 * * 8e46 * * 8e46
+14129 * * * * * * * e318 f0a8afa9,ee8c98 d862dfe9,e318 00028be9,0000e318 8e47 * * 8e47 * * 8e47
+14130 * * * * * * * 5b74 e5adb4,ee8c99 5b74,e319 00005b74,0000e319 8e48 * * 8e48 * * 8e48
+14131 * * * * * * * 7a49 e7a989,ee8c9a 7a49,e31a 00007a49,0000e31a 8e49 fd67 8e62 8e49 * fc48 8e49
+14132 * * * * * * * e31b f0a5a3a1,ee8c9b d856dce1,e31b 000258e1,0000e31b 8e4a * * 8e4a * * 8e4a
+14133 * * * * * * * e31c f0a99399,ee8c9c d865dcd9,e31c 000294d9,0000e31c 8e4b * * 8e4b * * 8e4b
+14134 * * * * * * * 7a65 e7a9a5,ee8c9d 7a65,e31d 00007a65,0000e31d 8e4c * * 8e4c * * 8e4c
+14135 * * * * * * * 7a7d e7a9bd,ee8c9e 7a7d,e31e 00007a7d,0000e31e 8e4d fc51 8ecb 8e4d * * 8e4d
+14136 * * * * * * * e31f f0a5a6ac,ee8c9f d856ddac,e31f 000259ac,0000e31f 8e4e * * 8e4e * * 8e4e
+14137 * * * * * * * 7abb e7aabb,ee8ca0 7abb,e320 00007abb,0000e320 8e4f fc53 8e5b 8e4f * * 8e4f
+14138 * * * * * * * 7ab0 e7aab0,ee8ca1 7ab0,e321 00007ab0,0000e321 8e50 fb40 8e56 8e50 c87e fc4b 8e50
+14139 * * * * * * * 7ac2 e7ab82,ee8ca2 7ac2,e322 00007ac2,0000e322 8e51 * * 8e51 * * 8e51
+14140 * * * * * * * 7ac3 e7ab83,ee8ca3 7ac3,e323 00007ac3,0000e323 8e52 * * 8e52 * * 8e52
+14141 * * * * * * * 71d1 e78791,ee8ca4 71d1,e324 000071d1,0000e324 8e53 * * 8e53 * * 8e53
+14142 * * * * * * * e325 f0a6928d,ee8ca5 d859dc8d,e325 0002648d,0000e325 8e54 * * 8e54 * * 8e54
+14143 * * * * * * * 41ca e4878a,ee8ca6 41ca,e326 000041ca,0000e326 8e55 * * 8e55 * * 8e55
+14144 * * * * * * * 7ada e7ab9a,ee8ca7 7ada,e327 00007ada,0000e327 8e56 fd6a 9256 8e56 * fc4c 8e56
+14145 * * * * * * * 7add e7ab9d,ee8ca8 7add,e328 00007add,0000e328 8e57 fd69 8e50 8e57 * * 8e57
+14146 * * * * * * * 7aea e7abaa,ee8ca9 7aea,e329 00007aea,0000e329 8e58 fd6b 91f9 8e58 * fc4d 8e58
+14147 * * * * * * * 41ef e487af,ee8caa 41ef,e32a 000041ef,0000e32a 8e59 * * 8e59 * * 8e59
+14148 * * * * * * * 54b2 e592b2,ee8cab 54b2,e32b 000054b2,0000e32b 8e5a * * 8e5a * * 8e5a
+14149 * * * * * * * e32c f0a5b081,ee8cac d857dc01,e32c 00025c01,0000e32c 8e5b * * 8e5b * * 8e5b
+14150 * * * * * * * 7b0b e7ac8b,ee8cad 7b0b,e32d 00007b0b,0000e32d 8e5c fa65 8ebf 8e5c c8a1 fc4e 8e5c
+14151 * * * * * * * 7b55 e7ad95,ee8cae 7b55,e32e 00007b55,0000e32e 8e5d * * 8e5d * * 8e5d
+14152 * * * * * * * 7b29 e7aca9,ee8caf 7b29,e32f 00007b29,0000e32f 8e5e * * 8e5e * * 8e5e
+14153 * * * * * * * e330 f0a58c8e,ee8cb0 d854df0e,e330 0002530e,0000e330 8e5f * * 8e5f * * 8e5f
+14154 * * * * * * * e331 f0a5b3be,ee8cb1 d857dcfe,e331 00025cfe,0000e331 8e60 * * 8e60 * * 8e60
+14155 * * * * * * * 7ba2 e7aea2,ee8cb2 7ba2,e332 00007ba2,0000e332 8e61 * * 8e61 * * 8e61
+14156 * * * * * * * 7b6f e7adaf,ee8cb3 7b6f,e333 00007b6f,0000e333 8e62 fb58 * 8e62 * * 8e62
+14157 * * * * * * * 839c e88e9c,ee8cb4 839c,e334 0000839c,0000e334 8e63 * * 8e63 * * 8e63
+14158 * * * * * * * e335 f0a5aeb4,ee8cb5 d856dfb4,e335 00025bb4,0000e335 8e64 * * 8e64 * * 8e64
+14159 * * * * * * * e336 f0a6b1bf,ee8cb6 d85bdc7f,e336 00026c7f,0000e336 8e65 * * 8e65 * * 8e65
+14160 * * * * * * * 7bd0 e7af90,ee8cb7 7bd0,e337 00007bd0,0000e337 8e66 * * 8e66 * * 8e66
+14161 * * * * * * * 8421 e890a1,ee8cb8 8421,e338 00008421,0000e338 8e67 * * 8e67 * * 8e67
+14162 * * * * * * * 7b92 e7ae92,ee8cb9 7b92,e339 00007b92,0000e339 8e68 fd79 8e45 8e68 c8a2 fc4f 8e68
+14163 * * * * * * * * * * * * * * 8e69 * * *
+14164 * * * * * * * e33b ee8cbb,f0a5b4a0 d857dd20,e33b 0000e33b,00025d20 8e6a * * 8e6a * * 8e6a
+14165 * * * * * * * * * * * * * * 8e6c * * *
+14166 * * * * * * * 8492 e89292,ee8cbe 8492,e33e 00008492,0000e33e 8e6d * * 8e6d * * 8e6d
+14167 * * * * * * * 7bfa e7afba,ee8cbf 7bfa,e33f 00007bfa,0000e33f 8e6e * * 8e6e * * 8e6e
+14168 * * * * * * * * * * * * * * 8e6f * * *
+14169 * * * * * * * 7c35 e7b0b5,ee8d81 7c35,e341 00007c35,0000e341 8e70 * * 8e70 * * 8e70
+14170 * * * * * * * e342 f0a5b381,ee8d82 d857dcc1,e342 00025cc1,0000e342 8e71 * * 8e71 * * 8e71
+14171 * * * * * * * 7c44 e7b184,ee8d83 7c44,e343 00007c44,0000e343 8e72 * * 8e72 * * 8e72
+14172 * * * * * * * 7c83 e7b283,ee8d84 7c83,e344 00007c83,0000e344 8e73 fda7 906b 8e73 * * 8e73
+14173 * * * * * * * e345 f0a4a282,ee8d85 d852dc82,e345 00024882,0000e345 8e74 * * 8e74 * * 8e74
+14174 * * * * * * * 7ca6 e7b2a6,ee8d86 7ca6,e346 00007ca6,0000e346 8e75 fdcb 8ed0 8e75 * fc54 8e75
+14175 * * * * * * * e348 f0a495b8,ee8d88 d851dd78,e348 00024578,0000e348 8e77 * * 8e77 * * 8e77
+14176 * * * * * * * 7cc9 e7b389,ee8d89 7cc9,e349 00007cc9,0000e349 8e78 * * 8e78 * * 8e78
+14177 * * * * * * * 7cc7 e7b387,ee8d8a 7cc7,e34a 00007cc7,0000e34a 8e79 fda9 906a 8e79 * * 8e79
+14178 * * * * * * * 7ce6 e7b3a6,ee8d8b 7ce6,e34b 00007ce6,0000e34b 8e7a * * 8e7a * * 8e7a
+14179 * * * * * * * * * * * * * * 8e7b * * *
+14180 * * * * * * * 7cf3 e7b3b3,ee8d8d 7cf3,e34d 00007cf3,0000e34d 8e7c * * 8e7c * * 8e7c
+14181 * * * * * * * 7cf5 e7b3b5,ee8d8e 7cf5,e34e 00007cf5,0000e34e 8e7d * * 8e7d * * 8e7d
+14182 * * * * * * * 7e67 e7b9a7,ee8d90 7e67,e350 00007e67,0000e350 8ea1 * * 8ea1 * * 8ea1
+14183 * * * * * * * 451d e4949d,ee8d91 451d,e351 0000451d,0000e351 8ea2 * * 8ea2 * * 8ea2
+14184 * * * * * * * e352 f0a6b984,ee8d92 d85bde44,e352 00026e44,0000e352 8ea3 * * 8ea3 * * 8ea3
+14185 * * * * * * * 7d5d e7b59d,ee8d93 7d5d,e353 00007d5d,0000e353 8ea4 fb59,fdb0 8f43 8ea4 * fc58 8ea4
+14186 * * * * * * * e354 f0a6bb96,ee8d94 d85bded6,e354 00026ed6,0000e354 8ea5 * * 8ea5 * * 8ea5
+14187 * * * * * * * 7d89 e7b689,ee8d96 7d89,e356 00007d89,0000e356 8ea7 fac0 8efe 8ea7 c8a9 fc5a 8ea7
+14188 * * * * * * * 7dab e7b6ab,ee8d97 7dab,e357 00007dab,0000e357 8ea8 faf8 9255 8ea8 c8a8 fc59 8ea8
+14189 * * * * * * * 7135 e784b5,ee8d98 7135,e358 00007135,0000e358 8ea9 * * 8ea9 * * 8ea9
+14190 * * * * * * * 7db3 e7b6b3,ee8d99 7db3,e359 00007db3,0000e359 8eaa fdb1 8ef5 8eaa * fc5b 8eaa
+14191 * * * * * * * 7dd6 e7b796 7dd6 00007dd6 * * * 8eab * * *
+14192 * * * * * * * e35b f0a48197,ee8d9b d850dc57,e35b 00024057,0000e35b 8eac * * 8eac * * 8eac
+14193 * * * * * * * e35c f0a680a9,ee8d9c d858dc29,e35c 00026029,0000e35c 8ead * * 8ead * * 8ead
+14194 * * * * * * * 7de4 e7b7a4,ee8d9d 7de4,e35d 00007de4,0000e35d 8eae * * 8eae * * 8eae
+14195 * * * * * * * 3d13 e3b493,ee8d9e 3d13,e35e 00003d13,0000e35e 8eaf * * 8eaf * * 8eaf
+14196 * * * * * * * 7df5 e7b7b5,ee8d9f 7df5,e35f 00007df5,0000e35f 8eb0 fdb3 9070 8eb0 * * 8eb0
+14197 * * * * * * * e360 f0a19fb9,ee8da0 d845dff9,e360 000217f9,0000e360 8eb1 * * 8eb1 * * 8eb1
+14198 * * * * * * * 7de5 e7b7a5,ee8da1 7de5,e361 00007de5,0000e361 8eb2 * * 8eb2 * * 8eb2
+14199 * * * * * * * e362 f0a88dad,ee8da2 d860df6d,e362 0002836d,0000e362 8eb3 * * 8eb3 * * 8eb3
+14200 * * * * * * * * * * * * * * 8eb4 * * *
+14201 * * * * * * * e364 f0a684a1,ee8da4 d858dd21,e364 00026121,0000e364 8eb5 * * 8eb5 * * 8eb5
+14202 * * * * * * * e365 f0a6859a,ee8da5 d858dd5a,e365 0002615a,0000e365 8eb6 * * 8eb6 * * 8eb6
+14203 * * * * * * * 7e6e e7b9ae,ee8da6 7e6e,e366 00007e6e,0000e366 8eb7 fdb5 9071 8eb7 * fc5d 8eb7
+14204 * * * * * * * * * * * * * * 8eb8 * * *
+14205 * * * * * * * 432b e48cab,ee8da8 432b,e368 0000432b,0000e368 8eb9 * * 8eb9 * * 8eb9
+14206 * * * * * * * 946c e991ac,ee8da9 946c,e369 0000946c,0000e369 8eba * * 8eba * * 8eba
+14207 * * * * * * * 7e27 e7b8a7,ee8daa 7e27,e36a 00007e27,0000e36a 8ebb fdb4 8ed7,8ef3 8ebb * fc5c 8ebb
+14208 * * * * * * * 7f40 e7bd80,ee8dab 7f40,e36b 00007f40,0000e36b 8ebc * * 8ebc * * 8ebc
+14209 * * * * * * * 7f41 e7bd81,ee8dac 7f41,e36c 00007f41,0000e36c 8ebd * * 8ebd * * 8ebd
+14210 * * * * * * * 7f47 e7bd87,ee8dad 7f47,e36d 00007f47,0000e36d 8ebe fdb6 8f58 8ebe c8aa fc5e 8ebe
+14211 * * * * * * * 7936 e7a4b6,ee8dae 7936,e36e 00007936,0000e36e 8ebf * * 8ebf * * 8ebf
+14212 * * * * * * * e36f f0a68b90,ee8daf d858ded0,e36f 000262d0,0000e36f 8ec0 * * 8ec0 * * 8ec0
+14213 * * * * * * * 99e1 e9a7a1,ee8db0 99e1,e370 000099e1,0000e370 8ec1 * 9162 8ec1 c8e9 fce0 8ec1
+14214 * * * * * * * 7f97 e7be97,ee8db1 7f97,e371 00007f97,0000e371 8ec2 fafd 8e47 8ec2 c8ad fc61 8ec2
+14215 * * * * * * * e372 f0a68d91,ee8db2 d858df51,e372 00026351,0000e372 8ec3 * * 8ec3 * * 8ec3
+14216 * * * * * * * 7fa3 e7bea3,ee8db3 7fa3,e373 00007fa3,0000e373 8ec4 faf3 * 8ec4 c8af fc63 8ec4
+14217 * * * * * * * e374 f0a199a1,ee8db4 d845de61,e374 00021661,0000e374 8ec5 * * 8ec5 * * 8ec5
+14218 * * * * * * * e375 f0a081a8,ee8db5 d840dc68,e375 00020068,0000e375 8ec6 * * 8ec6 * * 8ec6
+14219 * * * * * * * 455c e4959c,ee8db6 455c,e376 0000455c,0000e376 8ec7 * * 8ec7 * * 8ec7
+14220 * * * * * * * e377 f0a39da6,ee8db7 d84ddf66,e377 00023766,0000e377 8ec8 * * 8ec8 * * 8ec8
+14221 * * * * * * * e379 f0a88cba,ee8db9 d860df3a,e379 0002833a,0000e379 8eca * * 8eca * * 8eca
+14222 * * * * * * * 7ffa e7bfba,ee8dba 7ffa,e37a 00007ffa,0000e37a 8ecb * * 8ecb * * 8ecb
+14223 * * * * * * * e37b f0a69289,ee8dbb d859dc89,e37b 00026489,0000e37b 8ecc * * 8ecc * * 8ecc
+14224 * * * * * * * * efa99b fa5b 0000fa5b * * * 8ecd * * *
+14225 * * * * * * * 8008 e88088,ee8dbd 8008,e37d 00008008,0000e37d 8ece * * 8ece * * 8ece
+14226 * * * * * * * 801d e8809d,ee8dbe 801d,e37e 0000801d,0000e37e 8ecf fdb8 8ee9 8ecf * * 8ecf
+14227 * * * * * * * * * * * * * * 8ed0 * * *
+14228 * * * * * * * 802f e880af,ee8e80 802f,e380 0000802f,0000e380 8ed1 * * 8ed1 * * 8ed1
+14229 * * * * * * * e381 f0aa8287,ee8e81 d868dc87,e381 0002a087,0000e381 8ed2 * * 8ed2 * * 8ed2
+14230 * * * * * * * e382 f0a6b383,ee8e82 d85bdcc3,e382 00026cc3,0000e382 8ed3 * * 8ed3 * * 8ed3
+14231 * * * * * * * 803b e880bb,ee8e83 803b,e383 0000803b,0000e383 8ed4 * * 8ed4 c8b2 fc66 8ed4
+14232 * * * * * * * 803c e880bc,ee8e84 803c,e384 0000803c,0000e384 8ed5 * * 8ed5 * * 8ed5
+14233 * * * * * * * 8061 e881a1,ee8e85 8061,e385 00008061,0000e385 8ed6 * * 8ed6 * * 8ed6
+14234 * * * * * * * e386 f0a29c94,ee8e86 d849df14,e386 00022714,0000e386 8ed7 * * 8ed7 * * 8ed7
+14235 * * * * * * * 4989 e4a689,ee8e87 4989,e387 00004989,0000e387 8ed8 faf1 * 8ed8 c8e1 fcd1 8ed8
+14236 * * * * * * * e388 f0a698a6,ee8e88 d859de26,e388 00026626,0000e388 8ed9 * * 8ed9 * * 8ed9
+14237 * * * * * * * e389 f0a3b7a3,ee8e89 d84fdde3,e389 00023de3,0000e389 8eda * * 8eda * * 8eda
+14238 * * * * * * * e38a f0a69ba8,ee8e8a d859dee8,e38a 000266e8,0000e38a 8edb * * 8edb * * 8edb
+14239 * * * * * * * 6725 e69ca5,ee8e8b 6725,e38b 00006725,0000e38b 8edc fb5b,fdc5 8efd 8edc * * 8edc
+14240 * * * * * * * 80a7 e882a7,ee8e8c 80a7,e38c 000080a7,0000e38c 8edd * * 8edd * * 8edd
+14241 * * * * * * * e38d f0a8a988,ee8e8d d862de48,e38d 00028a48,0000e38d 8ede * * 8ede * * 8ede
+14242 * * * * * * * 8107 e88487,ee8e8e 8107,e38e 00008107,0000e38e 8edf fdbe 9045 8edf * fb7e 8edf
+14243 * * * * * * * 811a e8849a,ee8e8f 811a,e38f 0000811a,0000e38f 8ee0 * * 8ee0 * * 8ee0
+14244 * * * * * * * 58b0 e5a2b0,ee8e90 58b0,e390 000058b0,0000e390 8ee1 * * 8ee1 * * 8ee1
+14245 * * * * * * * e391 f0a29bb6,ee8e91 d849def6,e391 000226f6,0000e391 8ee2 * * 8ee2 * * 8ee2
+14246 * * * * * * * 6c7f e6b1bf,ee8e92 6c7f,e392 00006c7f,0000e392 8ee3 * * 8ee3 * * 8ee3
+14247 * * * * * * * e393 f0a69298,ee8e93 d859dc98,e393 00026498,0000e393 8ee4 * * 8ee4 * * 8ee4
+14248 * * * * * * * 64e7 e693a7,ee8e95 64e7,e395 000064e7,0000e395 8ee6 fb47 * 8ee6 c7f7 fb73 8ee6
+14249 * * * * * * * e396 f0a1928a,ee8e96 d845dc8a,e396 0002148a,0000e396 8ee7 * * 8ee7 * * 8ee7
+14250 * * * * * * * 8218 e88898,ee8e97 8218,e397 00008218,0000e397 8ee8 fb68,febc 9240 8ee8 * * 8ee8
+14251 * * * * * * * e398 f0a1a19e,ee8e98 d846dc5e,e398 0002185e,0000e398 8ee9 * * 8ee9 * * 8ee9
+14252 * * * * * * * 6a53 e6a993,ee8e99 6a53,e399 00006a53,0000e399 8eea * * 8eea * * 8eea
+14253 * * * * * * * e39a f0a4a9a5,ee8e9a d852de65,e39a 00024a65,0000e39a 8eeb * * 8eeb * * 8eeb
+14254 * * * * * * * e39b f0a4aa95,ee8e9b d852de95,e39b 00024a95,0000e39b 8eec * * 8eec * * 8eec
+14255 * * * * * * * 447a e491ba,ee8e9c 447a,e39c 0000447a,0000e39c 8eed * * 8eed * * 8eed
+14256 * * * * * * * 8229 e888a9,ee8e9d 8229,e39d 00008229,0000e39d 8eee * * 8eee * * 8eee
+14257 * * * * * * * e39f f0a6a992,ee8e9f d85ade52,e39f 00026a52,0000e39f 8ef0 * * 8ef0 * * 8ef0
+14258 * * * * * * * e3a0 f0a3b5be,ee8ea0 d84fdd7e,e3a0 00023d7e,0000e3a0 8ef1 * * 8ef1 * * 8ef1
+14259 * * * * * * * 4ff9 e4bfb9,ee8ea1 4ff9,e3a1 00004ff9,0000e3a1 8ef2 * * 8ef2 * * 8ef2
+14260 * * * * * * * e3a2 f0a193bd,ee8ea2 d845dcfd,e3a2 000214fd,0000e3a2 8ef3 * * 8ef3 * * 8ef3
+14261 * * * * * * * 84e2 e893a2,ee8ea3 84e2,e3a3 000084e2,0000e3a3 8ef4 * * 8ef4 * * 8ef4
+14262 * * * * * * * 8362 e88da2,ee8ea4 8362,e3a4 00008362,0000e3a4 8ef5 * * 8ef5 * * 8ef5
+14263 * * * * * * * * f0afa68f d87edd8f 0002f98f * * * 8ef6 * * *
+14264 * * * * * * * e3a6 f0a4a6a7,ee8ea6 d852dda7,e3a6 000249a7,0000e3a6 8ef7 * * 8ef7 * * 8ef7
+14265 * * * * * * * e3a7 f0a394b0,ee8ea7 d84ddd30,e3a7 00023530,0000e3a7 8ef8 * * 8ef8 * * 8ef8
+14266 * * * * * * * e3a8 f0a19db3,ee8ea8 d845df73,e3a8 00021773,0000e3a8 8ef9 * * 8ef9 * * 8ef9
+14267 * * * * * * * e3a9 f0a3b7b8,ee8ea9 d84fddf8,e3a9 00023df8,0000e3a9 8efa * * 8efa * * 8efa
+14268 * * * * * * * 82aa e88aaa,ee8eaa 82aa,e3aa 000082aa,0000e3aa 8efb fb4b 907e 8efb * fc69 8efb
+14269 * * * * * * * 691b e6a49b,ee8eab 691b,e3ab 0000691b,0000e3ab 8efc * * 8efc * * 8efc
+14270 * * * * * * * e3ac f0afa694,ee8eac d87edd94,e3ac 0002f994,0000e3ac 8efd * * 8efd * * 8efd
+14271 * * * * * * * 41db e4879b,ee8ead 41db,e3ad 000041db,0000e3ad 8efe * * 8efe * * 8efe
+14272 * * * * * * * 854b e8958b,ee8eae 854b,e3ae 0000854b,0000e3ae 8f40 fdf6 8f5b 8f40 * * 8f40
+14273 * * * * * * * 82d0 e88b90,ee8eaf 82d0,e3af 000082d0,0000e3af 8f41 fdec 90a3 8f41 * * 8f41
+14274 * * * * * * * 831a e88c9a,ee8eb0 831a,e3b0 0000831a,0000e3b0 8f42 * * 8f42 * * 8f42
+14275 * * * * * * * e3b1 f0a0b896,ee8eb1 d843de16,e3b1 00020e16,0000e3b1 8f43 * * 8f43 * * 8f43
+14276 * * * * * * * e3b2 f0a19eb4,ee8eb2 d845dfb4,e3b2 000217b4,0000e3b2 8f44 * * 8f44 * * 8f44
+14277 * * * * * * * 36c1 e39b81,ee8eb3 36c1,e3b3 000036c1,0000e3b3 8f45 * * 8f45 * * 8f45
+14278 * * * * * * * e3b4 f0a385bd,ee8eb4 d84cdd7d,e3b4 0002317d,0000e3b4 8f46 * * 8f46 * * 8f46
+14279 * * * * * * * e3b5 f0a3959a,ee8eb5 d84ddd5a,e3b5 0002355a,0000e3b5 8f47 * * 8f47 * * 8f47
+14280 * * * * * * * 827b e889bb,ee8eb6 827b,e3b6 0000827b,0000e3b6 8f48 * * 8f48 * * 8f48
+14281 * * * * * * * 82e2 e88ba2,ee8eb7 82e2,e3b7 000082e2,0000e3b7 8f49 * * 8f49 * * 8f49
+14282 * * * * * * * 8318 e88c98,ee8eb8 8318,e3b8 00008318,0000e3b8 8f4a * * 8f4a * * 8f4a
+14283 * * * * * * * e3b9 f0a3ba8b,ee8eb9 d84fde8b,e3b9 00023e8b,0000e3b9 8f4b * * 8f4b * * 8f4b
+14284 * * * * * * * e3ba f0a6b6a3,ee8eba d85bdda3,e3ba 00026da3,0000e3ba 8f4c * * 8f4c * * 8f4c
+14285 * * * * * * * e3bb f0a6ac85,ee8ebb d85adf05,e3bb 00026b05,0000e3bb 8f4d * * 8f4d * * 8f4d
+14286 * * * * * * * e3bc f0a6ae97,ee8ebc d85adf97,e3bc 00026b97,0000e3bc 8f4e * * 8f4e * * 8f4e
+14287 * * * * * * * e3bd f0a3978e,ee8ebd d84dddce,e3bd 000235ce,0000e3bd 8f4f * * 8f4f * * 8f4f
+14288 * * * * * * * 3dbf e3b6bf,ee8ebe 3dbf,e3be 00003dbf,0000e3be 8f50 * * 8f50 * * 8f50
+14289 * * * * * * * 831d e88c9d,ee8ebf 831d,e3bf 0000831d,0000e3bf 8f51 * * 8f51 * * 8f51
+14290 * * * * * * * 55ec e597ac,ee8f80 55ec,e3c0 000055ec,0000e3c0 8f52 * * 8f52 c7af fac9 8f52
+14291 * * * * * * * 8385 e88e85,ee8f81 8385,e3c1 00008385,0000e3c1 8f53 fded 8ec4 8f53 * * 8f53
+14292 * * * * * * * 450b e4948b,ee8f82 450b,e3c2 0000450b,0000e3c2 8f54 * * 8f54 * * 8f54
+14293 * * * * * * * e3c3 f0a6b6a5,ee8f83 d85bdda5,e3c3 00026da5,0000e3c3 8f55 * * 8f55 * * 8f55
+14294 * * * * * * * 83ac e88eac,ee8f84 83ac,e3c4 000083ac,0000e3c4 8f56 * * 8f56 * * 8f56
+14295 * * * * * * * * * * * * * * 8f57 * * *
+14296 * * * * * * * 83d3 e88f93,ee8f86 83d3,e3c6 000083d3,0000e3c6 8f58 fab9 9044 8f58 c8b4 fc6b 8f58
+14297 * * * * * * * e3c8 f0a6bb94,ee8f88 d85bded4,e3c8 00026ed4,0000e3c8 8f5a * * 8f5a * * 8f5a
+14298 * * * * * * * 6a57 e6a997,ee8f89 6a57,e3c9 00006a57,0000e3c9 8f5b * * 8f5b * * 8f5b
+14299 * * * * * * * 855a e8959a,ee8f8a 855a,e3ca 0000855a,0000e3ca 8f5c * * 8f5c * * 8f5c
+14300 * * * * * * * 3496 e39296,ee8f8b 3496,e3cb 00003496,0000e3cb 8f5d * * 8f5d * * 8f5d
+14301 * * * * * * * e3cc f0a6b982,ee8f8c d85bde42,e3cc 00026e42,0000e3cc 8f5e * * 8f5e * * 8f5e
+14302 * * * * * * * 8458 e89198,ee8f8e 8458,e3ce 00008458,0000e3ce 8f60 * * 8f60 * * 8f60
+14303 * * * * * * * e3cf f0a5afa4,ee8f8f d856dfe4,e3cf 00025be4,0000e3cf 8f61 * * 8f61 * * 8f61
+14304 * * * * * * * 8471 e891b1,ee8f90 8471,e3d0 00008471,0000e3d0 8f62 faa4 91fc 8f62 c8b7 fc70 8f62
+14305 * * * * * * * 3dd3 e3b793,ee8f91 3dd3,e3d1 00003dd3,0000e3d1 8f63 * * 8f63 * * 8f63
+14306 * * * * * * * 44e4 e493a4,ee8f92 44e4,e3d2 000044e4,0000e3d2 8f64 * * 8f64 * * 8f64
+14307 * * * * * * * 6aa7 e6aaa7,ee8f93 6aa7,e3d3 00006aa7,0000e3d3 8f65 * * 8f65 * * 8f65
+14308 * * * * * * * 844a e8918a,ee8f94 844a,e3d4 0000844a,0000e3d4 8f66 * * 8f66 * * 8f66
+14309 * * * * * * * 7958 e7a598,ee8f96 7958,e3d6 00007958,0000e3d6 8f68 * * 8f68 * * 8f68
+14310 * * * * * * * * * * * * * * 8f69 * * *
+14311 * * * * * * * e3d8 f0a6ae96,ee8f98 d85adf96,e3d8 00026b96,0000e3d8 8f6a * * 8f6a * * 8f6a
+14312 * * * * * * * e3d9 f0a6b9b7,ee8f99 d85bde77,e3d9 00026e77,0000e3d9 8f6b * * 8f6b * * 8f6b
+14313 * * * * * * * e3da f0a6b983,ee8f9a d85bde43,e3da 00026e43,0000e3da 8f6c * * 8f6c * * 8f6c
+14314 * * * * * * * 84de e8939e,ee8f9b 84de,e3db 000084de,0000e3db 8f6d * * 8f6d * * 8f6d
+14315 * * * * * * * * * * * * * * 8f6e * * *
+14316 * * * * * * * 8391 e88e91,ee8f9d 8391,e3dd 00008391,0000e3dd 8f6f * * 8f6f * * 8f6f
+14317 * * * * * * * 44a0 e492a0,ee8f9e 44a0,e3de 000044a0,0000e3de 8f70 * * 8f70 * * 8f70
+14318 * * * * * * * 8493 e89293,ee8f9f 8493,e3df 00008493,0000e3df 8f71 * * 8f71 * fc71 8f71
+14319 * * * * * * * 84e4 e893a4,ee8fa0 84e4,e3e0 000084e4,0000e3e0 8f72 * * 8f72 * * 8f72
+14320 * * * * * * * e3e1 f0a5b291,ee8fa1 d857dc91,e3e1 00025c91,0000e3e1 8f73 * * 8f73 * * 8f73
+14321 * * * * * * * 4240 e48980,ee8fa2 4240,e3e2 00004240,0000e3e2 8f74 * * 8f74 * * 8f74
+14322 * * * * * * * e3e3 f0a5b380,ee8fa3 d857dcc0,e3e3 00025cc0,0000e3e3 8f75 * * 8f75 * * 8f75
+14323 * * * * * * * 4543 e49583,ee8fa4 4543,e3e4 00004543,0000e3e4 8f76 * * 8f76 * * 8f76
+14324 * * * * * * * 8534 e894b4,ee8fa5 8534,e3e5 00008534,0000e3e5 8f77 fac5 9257 8f77 c8b8 fc72 8f77
+14325 * * * * * * * 5af2 e5abb2,ee8fa6 5af2,e3e6 00005af2,0000e3e6 8f78 fac4 * 8f78 c7ce faf3 8f78
+14326 * * * * * * * * e494a3 4523 00004523 * * * 8f79 * * *
+14327 * * * * * * * 4527 e494a7,ee8fa8 4527,e3e8 00004527,0000e3e8 8f7a * * 8f7a * * 8f7a
+14328 * * * * * * * 8573 e895b3,ee8fa9 8573,e3e9 00008573,0000e3e9 8f7b * * 8f7b * * 8f7b
+14329 * * * * * * * 4516 e49496,ee8faa 4516,e3ea 00004516,0000e3ea 8f7c * * 8f7c * * 8f7c
+14330 * * * * * * * 67bf e69ebf,ee8fab 67bf,e3eb 000067bf,0000e3eb 8f7d * * 8f7d * * 8f7d
+14331 * * * * * * * 8616 e89896,ee8fac 8616,e3ec 00008616,0000e3ec 8f7e * * 8f7e * * 8f7e
+14332 * * * * * * * e3ed f0a898a5,ee8fad d861de25,e3ed 00028625,0000e3ed 8fa1 * * 8fa1 * * 8fa1
+14333 * * * * * * * e3ee f0a898bb,ee8fae d861de3b,e3ee 0002863b,0000e3ee 8fa2 * * 8fa2 * * 8fa2
+14334 * * * * * * * 85c1 e89781,ee8faf 85c1,e3ef 000085c1,0000e3ef 8fa3 * * 8fa3 * * 8fa3
+14335 * * * * * * * e3f0 f0a78288,ee8fb0 d85cdc88,e3f0 00027088,0000e3f0 8fa4 * * 8fa4 * * 8fa4
+14336 * * * * * * * 8602 e89882,ee8fb1 8602,e3f1 00008602,0000e3f1 8fa5 fdf8 8ee3 8fa5 * * 8fa5
+14337 * * * * * * * e3f2 f0a19682,ee8fb2 d845dd82,e3f2 00021582,0000e3f2 8fa6 * * 8fa6 * * 8fa6
+14338 * * * * * * * e3f3 f0a7838d,ee8fb3 d85cdccd,e3f3 000270cd,0000e3f3 8fa7 * * 8fa7 * * 8fa7
+14339 * * * * * * * e3f4 f0a783b0,f0afa6b2,ee8fb4 d85cdcf0,d87eddb2,e3f4 000270f0,0002f9b2,0000e3f4 8fa8 * * 8fa8 * * 8fa8
+14340 * * * * * * * 456a e495aa,ee8fb5 456a,e3f5 0000456a,0000e3f5 8fa9 * * 8fa9 * * 8fa9
+14341 * * * * * * * 8628 e898a8,ee8fb6 8628,e3f6 00008628,0000e3f6 8faa * * 8faa * * 8faa
+14342 * * * * * * * 3648 e39988,ee8fb7 3648,e3f7 00003648,0000e3f7 8fab * * 8fab * * 8fab
+14343 * * * * * * * e3f8 f0a1a2a2,ee8fb8 d846dca2,e3f8 000218a2,0000e3f8 8fac * * 8fac * * 8fac
+14344 * * * * * * * 53f7 e58fb7,ee8fb9 53f7,e3f9 000053f7,0000e3f9 8fad * * 8fad * * 8fad
+14345 * * * * * * * e3fa f0a78e9a,ee8fba d85cdf9a,e3fa 0002739a,0000e3fa 8fae * * 8fae * * 8fae
+14346 * * * * * * * 867e e899be,ee8fbb 867e,e3fb 0000867e,0000e3fb 8faf * * 8faf * * 8faf
+14347 * * * * * * * 8771 * * * * fdcd 90a7 8fb0 * * *
+14348 * * * * * * * e3fd f0aa83b8,ee8fbd d868dcf8,e3fd 0002a0f8,0000e3fd 8fb1 * * 8fb1 * * 8fb1
+14349 * * * * * * * 87ee e89fae,ee8fbe 87ee,e3fe 000087ee,0000e3fe 8fb2 fb5d,fdd3 90aa 8fb2 c8bb fc79 8fb2
+14350 * * * * * * * e3ff f0a2b0a7,ee8fbf d84bdc27,e3ff 00022c27,0000e3ff 8fb3 * * 8fb3 * * 8fb3
+14351 * * * * * * * 87b1 e89eb1,ee9080 87b1,e400 000087b1,0000e400 8fb4 * * 8fb4 * * 8fb4
+14352 * * * * * * * 87da e89f9a,ee9081 87da,e401 000087da,0000e401 8fb5 * * 8fb5 * * 8fb5
+14353 * * * * * * * 880f e8a08f,eeb8be,ee9082 880f,ee3e,e402 0000880f,0000ee3e,0000e402 a063,8fb6 fdd7 90ad 8fb6 * * a063,8fb6
+14354 * * * * * * * 5661 e599a1,ee9083 5661,e403 00005661,0000e403 8fb7 * * 8fb7 * * 8fb7
+14355 * * * * * * * 866c e899ac,ee9084 866c,e404 0000866c,0000e404 8fb8 fafa 8ed2 8fb8 c8b9 fc73 8fb8
+14356 * * * * * * * 6856 e6a196,ee9085 6856,e405 00006856,0000e405 8fb9 * * 8fb9 * * 8fb9
+14357 * * * * * * * 460f e4988f,ee9086 460f,e406 0000460f,0000e406 8fba fb64,fe5c 8f5c 8fba * * 8fba
+14358 * * * * * * * 8845 e8a185,ee9087 8845,e407 00008845,0000e407 8fbb fddb 8f56 8fbb * fc7c 8fbb
+14359 * * * * * * * 8846 e8a186,ee9088 8846,e408 00008846,0000e408 8fbc * * 8fbc * * 8fbc
+14360 * * * * * * * e409 f0a797a0,ee9089 d85ddde0,e409 000275e0,0000e409 8fbd * * 8fbd * * 8fbd
+14361 * * * * * * * e40a f0a3b6b9,ee908a d84fddb9,e40a 00023db9,0000e40a 8fbe * * 8fbe * * 8fbe
+14362 * * * * * * * e40b f0a797a4,ee908b d85ddde4,e40b 000275e4,0000e40b 8fbf * * 8fbf * * 8fbf
+14363 * * * * * * * 885e e8a19e,ee908c 885e,e40c 0000885e,0000e40c 8fc0 fad2 * 8fc0 c8bd fc7d 8fc0
+14364 * * * * * * * 889c e8a29c,ee908d 889c,e40d 0000889c,0000e40d 8fc1 fb5f,fdde 90b1 8fc1 c8be fca1 8fc1
+14365 * * * * * * * 465b e4999b,ee908e 465b,e40e 0000465b,0000e40e 8fc2 * * 8fc2 * * 8fc2
+14366 * * * * * * * 88b4 e8a2b4,ee908f 88b4,e40f 000088b4,0000e40f 8fc3 * * 8fc3 c8bf fca2 8fc3
+14367 * * * * * * * 88b5 e8a2b5,ee9090 88b5,e410 000088b5,0000e410 8fc4 fde0 8f46 8fc4 c8c0 fca3 8fc4
+14368 * * * * * * * 88c5 e8a385,ee9092 88c5,e412 000088c5,0000e412 8fc6 * * 8fc6 * * 8fc6
+14369 * * * * * * * e414 f0a79c8f,ee9094 d85ddf0f,e414 0002770f,0000e414 8fc8 * * 8fc8 * * 8fc8
+14370 * * * * * * * 8987 e8a687,ee9095 8987,e415 00008987,0000e415 8fc9 fdfb 9043 8fc9 * * 8fc9
+14371 * * * * * * * 898a * * * * fdfd 9252 8fca * * *
+14372 * * * * * * * * * * * * * * 8fcb * * *
+14373 * * * * * * * 89a9 * * * * * * 8fcc * * *
+14374 * * * * * * * 89a7 e8a6a7,ee9099 89a7,e419 000089a7,0000e419 8fcd * * 8fcd * * 8fcd
+14375 * * * * * * * 89bc e8a6bc,ee909a 89bc,e41a 000089bc,0000e41a 8fce fe42 90b5 8fce * * 8fce
+14376 * * * * * * * e41b f0a8a8a5,ee909b d862de25,e41b 00028a25,0000e41b 8fcf * * 8fcf * * 8fcf
+14377 * * * * * * * 89e7 e8a7a7,ee909c 89e7,e41c 000089e7,0000e41c 8fd0 * * 8fd0 * * 8fd0
+14378 * * * * * * * e41d f0a7a4a4,ee909d d85edd24,e41d 00027924,0000e41d 8fd1 * * 8fd1 * * 8fd1
+14379 * * * * * * * e41e f0a7aabd,ee909e d85edebd,e41e 00027abd,0000e41e 8fd2 * * 8fd2 * * 8fd2
+14380 * * * * * * * 8a9c e8aa9c,ee909f 8a9c,e41f 00008a9c,0000e41f 8fd3 * * 8fd3 * * 8fd3
+14381 * * * * * * * 7793 e79e93,ee90a0 7793,e420 00007793,0000e420 8fd4 facc * 8fd4 c876 fbf6 8fd4
+14382 * * * * * * * 91fe e987be,ee90a1 91fe,e421 000091fe,0000e421 8fd5 fe6f 90cf 8fd5 c8d9 fcc8 8fd5
+14383 * * * * * * * 8a90 e8aa90,ee90a2 8a90,e422 00008a90,0000e422 8fd6 * * 8fd6 * * 8fd6
+14384 * * * * * * * e423 f0a7a999,ee90a3 d85ede59,e423 00027a59,0000e423 8fd7 * * 8fd7 * * 8fd7
+14385 * * * * * * * 7ae9 e7aba9,ee90a4 7ae9,e424 00007ae9,0000e424 8fd8 * * 8fd8 * * 8fd8
+14386 * * * * * * * e425 f0a7acba,ee90a5 d85edf3a,e425 00027b3a,0000e425 8fd9 * * 8fd9 * * 8fd9
+14387 * * * * * * * 4713 e49c93,ee90a7 4713,e427 00004713,0000e427 8fdb * * 8fdb * * 8fdb
+14388 * * * * * * * e428 f0a7acb8,ee90a8 d85edf38,e428 00027b38,0000e428 8fdc * * 8fdc * * 8fdc
+14389 * * * * * * * 717c e785bc,ee90a9 717c,e429 0000717c,0000e429 8fdd * * 8fdd * * 8fdd
+14390 * * * * * * * 8b0c e8ac8c,ee90aa 8b0c,e42a 00008b0c,0000e42a 8fde fe45 90b8 8fde * * 8fde
+14391 * * * * * * * 8b1f e8ac9f,ee90ab 8b1f,e42b 00008b1f,0000e42b 8fdf * * 8fdf * fcae 8fdf
+14392 * * * * * * * e42c f0a590b0,ee90ac d855dc30,e42c 00025430,0000e42c 8fe0 * * 8fe0 * * 8fe0
+14393 * * * * * * * e42d f0a595a5,ee90ad d855dd65,e42d 00025565,0000e42d 8fe1 * * 8fe1 * * 8fe1
+14394 * * * * * * * 8b3f e8acbf,ee90ae 8b3f,e42e 00008b3f,0000e42e 8fe2 * * 8fe2 * * 8fe2
+14395 * * * * * * * 8b4c * * * * * 8f5d 8fe3 * * *
+14396 * * * * * * * 8b4d e8ad8d,ee90b0 8b4d,e430 00008b4d,0000e430 8fe4 * * 8fe4 * * 8fe4
+14397 * * * * * * * 8aa9 e8aaa9,ee90b1 8aa9,e431 00008aa9,0000e431 8fe5 * * 8fe5 * * 8fe5
+14398 * * * * * * * e432 f0a4a9ba,ee90b2 d852de7a,e432 00024a7a,0000e432 8fe6 * * 8fe6 * * 8fe6
+14399 * * * * * * * 8b90 e8ae90,ee90b3 8b90,e433 00008b90,0000e433 8fe7 * * 8fe7 * * 8fe7
+14400 * * * * * * * 8b9b e8ae9b,ee90b4 8b9b,e434 00008b9b,0000e434 8fe8 * * 8fe8 * * 8fe8
+14401 * * * * * * * 8aaf e8aaaf,ee90b5 8aaf,e435 00008aaf,0000e435 8fe9 * * 8fe9 * * 8fe9
+14402 * * * * * * * e436 f0a19b9f,ee90b6 d845dedf,e436 000216df,0000e436 8fea * * 8fea * * 8fea
+14403 * * * * * * * 4615 e49895,ee90b7 4615,e437 00004615,0000e437 8feb * * 8feb * * 8feb
+14404 * * * * * * * 884f e8a18f,ee90b8 884f,e438 0000884f,0000e438 8fec * * 8fec * * 8fec
+14405 * * * * * * * 8c9b e8b29b,ee90b9 8c9b,e439 00008c9b,0000e439 8fed * * 8fed * * 8fed
+14406 * * * * * * * e43a f0a7b594,ee90ba d85fdd54,e43a 00027d54,0000e43a 8fee * * 8fee * * 8fee
+14407 * * * * * * * e43b f0a7b68f,ee90bb d85fdd8f,e43b 00027d8f,0000e43b 8fef * * 8fef * * 8fef
+14408 * * * * * * * e43c f0afa794,ee90bc d87eddd4,e43c 0002f9d4,0000e43c 8ff0 * * 8ff0 * * 8ff0
+14409 * * * * * * * 3725 e39ca5,ee90bd 3725,e43d 00003725,0000e43d 8ff1 * * 8ff1 * * 8ff1
+14410 * * * * * * * e43e f0a7b593,ee90be d85fdd53,e43e 00027d53,0000e43e 8ff2 * * 8ff2 * * 8ff2
+14411 * * * * * * * 8cd6 e8b396,ee90bf 8cd6,e43f 00008cd6,0000e43f 8ff3 * * 8ff3 * * 8ff3
+14412 * * * * * * * e440 f0a7b698,ee9180 d85fdd98,e440 00027d98,0000e440 8ff4 * * 8ff4 * * 8ff4
+14413 * * * * * * * e441 f0a7b6bd,ee9181 d85fddbd,e441 00027dbd,0000e441 8ff5 * * 8ff5 * * 8ff5
+14414 * * * * * * * 8d12 e8b492,ee9182 8d12,e442 00008d12,0000e442 8ff6 * * 8ff6 * * 8ff6
+14415 * * * * * * * 8d03 e8b483,ee9183 8d03,e443 00008d03,0000e443 8ff7 * * 8ff7 * * 8ff7
+14416 * * * * * * * e444 f0a1a490,ee9184 d846dd10,e444 00021910,0000e444 8ff8 * * 8ff8 * * 8ff8
+14417 * * * * * * * 8cdb e8b39b,ee9185 8cdb,e445 00008cdb,0000e445 8ff9 * * 8ff9 * * 8ff9
+14418 * * * * * * * 705c e7819c,ee9186 705c,e446 0000705c,0000e446 8ffa * * 8ffa * * 8ffa
+14419 * * * * * * * 8d11 e8b491,ee9187 8d11,e447 00008d11,0000e447 8ffb * * 8ffb * * 8ffb
+14420 * * * * * * * 3ed0 e3bb90,ee9189 3ed0,e449 00003ed0,0000e449 8ffd * * 8ffd * * 8ffd
+14421 * * * * * * * * f0afa797 d87eddd7 0002f9d7 * * * 8ffe * * *
+14422 * * * * * * * 8da9 e8b6a9,ee918b 8da9,e44b 00008da9,0000e44b 9040 * * 9040 * * 9040
+14423 * * * * * * * e44c f0a88082,ee918c d860dc02,e44c 00028002,0000e44c 9041 * * 9041 * * 9041
+14424 * * * * * * * e44d f0a18094,ee918d d844dc14,e44d 00021014,0000e44d 9042 fbe0 9170 9042 * * 9042
+14425 * * * * * * * e44e f0a4a68a,ee918e d852dd8a,e44e 0002498a,0000e44e 9043 * * 9043 * * 9043
+14426 * * * * * * * 3b7c e3adbc,ee918f 3b7c,e44f 00003b7c,0000e44f 9044 * * 9044 * * 9044
+14427 * * * * * * * e450 f0a886bc,ee9190 d860ddbc,e450 000281bc,0000e450 9045 * * 9045 * * 9045
+14428 * * * * * * * e451 f0a7848c,ee9191 d85cdd0c,e451 0002710c,0000e451 9046 * * 9046 * * 9046
+14429 * * * * * * * 7ae7 e7aba7,ee9192 7ae7,e452 00007ae7,0000e452 9047 * * 9047 * * 9047
+14430 * * * * * * * 8ead e8baad,ee9193 8ead,e453 00008ead,0000e453 9048 faf7 9247 9048 c8cc fcb6 9048
+14431 * * * * * * * 8eb6 e8bab6,ee9194 8eb6,e454 00008eb6,0000e454 9049 * * 9049 * * 9049
+14432 * * * * * * * 8ec3 e8bb83,ee9195 8ec3,e455 00008ec3,0000e455 904a * * 904a * * 904a
+14433 * * * * * * * 92d4 e98b94,ee9196 92d4,e456 000092d4,0000e456 904b * * 904b * * 904b
+14434 * * * * * * * 8f19 e8bc99,ee9197 8f19,e457 00008f19,0000e457 904c fe59 8f42 904c * * 904c
+14435 * * * * * * * 8f2d e8bcad,ee9198 8f2d,e458 00008f2d,0000e458 904d * 8ef8 904d c8d0 fcba 904d
+14436 * * * * * * * e459 f0a88da5,ee9199 d860df65,e459 00028365,0000e459 904e fa70 * 904e c8d1 fcbb 904e
+14437 * * * * * * * e45a f0a89092,ee919a d861dc12,e45a 00028412,0000e45a 904f * * 904f * * 904f
+14438 * * * * * * * 8fa5 e8bea5,ee919b 8fa5,e45b 00008fa5,0000e45b 9050 * * 9050 * * 9050
+14439 * * * * * * * 9303 e98c83,ee919c 9303,e45c 00009303,0000e45c 9051 * * 9051 * * 9051
+14440 * * * * * * * e45d f0aa8a9f,ee919d d868de9f,e45d 0002a29f,0000e45d 9052 * * 9052 * * 9052
+14441 * * * * * * * e45e f0a0a990,ee919e d842de50,e45e 00020a50,0000e45e 9053 * * 9053 * * 9053
+14442 * * * * * * * 8fb3 e8beb3,ee919f 8fb3,e45f 00008fb3,0000e45f 9054 * * 9054 * * 9054
+14443 * * * * * * * * * * * * * * 9055 * * *
+14444 * * * * * * * e461 f0a8a79e,ee91a1 d862ddde,e461 000289de,0000e461 9056 * * 9056 * * 9056
+14445 * * * * * * * e462 f0a894bd,ee91a2 d861dd3d,e462 0002853d,0000e462 9057 * * 9057 * * 9057
+14446 * * * * * * * e463 f0a3b6bb,ee91a3 d84fddbb,e463 00023dbb,0000e463 9058 * * 9058 * * 9058
+14447 * * * * * * * 5ef8 e5bbb8,ee91a4 5ef8,e464 00005ef8,0000e464 9059 faac 91f3 9059 c7da fb4e 9059
+14448 * * * * * * * e465 f0a389a2,ee91a5 d84cde62,e465 00023262,0000e465 905a * * 905a * * 905a
+14449 * * * * * * * 8ff9 e8bfb9,ee91a6 8ff9,e466 00008ff9,0000e466 905b fa66 9253 905b c8d3 fcbd 905b
+14450 * * * * * * * * * * * * * * 905e * * *
+14451 * * * * * * * e46a f0a28ca5,ee91aa d848df25,e46a 00022325,0000e46a 905f * * 905f * * 905f
+14452 * * * * * * * 3980 e3a680,ee91ab 3980,e46b 00003980,0000e46b 9060 * * 9060 * * 9060
+14453 * * * * * * * e46c f0a6bb97,ee91ac d85bded7,e46c 00026ed7,0000e46c 9061 * * 9061 * * 9061
+14454 * * * * * * * 9037 e980b7,ee91ad 9037,e46d 00009037,0000e46d 9062 * * 9062 * * 9062
+14455 * * * * * * * e46e f0a894bc,ee91ae d861dd3c,e46e 0002853c,0000e46e 9063 * * 9063 * * 9063
+14456 * * * * * * * e46f f0a7aabe,ee91af d85edebe,e46f 00027abe,0000e46f 9064 * * 9064 * * 9064
+14457 * * * * * * * 9061 e981a1,ee91b0 9061,e470 00009061,0000e470 9065 fe6d 8e55 9065 * * 9065
+14458 * * * * * * * e471 f0a895ac,ee91b1 d861dd6c,e471 0002856c,0000e471 9066 * * 9066 * * 9066
+14459 * * * * * * * e472 f0a8988b,ee91b2 d861de0b,e472 0002860b,0000e472 9067 * * 9067 * * 9067
+14460 * * * * * * * 90a8 e982a8,ee91b3 90a8,e473 000090a8,0000e473 9068 fa4c 91fe 9068 c8d4 fcc0 9068
+14461 * * * * * * * e474 f0a89c93,ee91b4 d861df13,e474 00028713,0000e474 9069 * * 9069 * * 9069
+14462 * * * * * * * 90c4 e98384,ee91b5 90c4,e475 000090c4,0000e475 906a fe5d 90c7 906a * * 906a
+14463 * * * * * * * e476 f0a89ba6,ee91b6 d861dee6,e476 000286e6,0000e476 906b * * 906b * * 906b
+14464 * * * * * * * 90ae e982ae,ee91b7 90ae,e477 000090ae,0000e477 906c * * 906c * * 906c
+14465 * * * * * * * * efa8a6 fa26 0000fa26 * * * 906d * * *
+14466 * * * * * * * 9167 e985a7,ee91b9 9167,e479 00009167,0000e479 906e fe63 8eed 906e c8d5 fcc3 906e
+14467 * * * * * * * 91a9 e986a9,ee91bb 91a9,e47b 000091a9,0000e47b 9070 * * 9070 * * 9070
+14468 * * * * * * * 91c4 e98784,ee91bc 91c4,e47c 000091c4,0000e47c 9071 * * 9071 * * 9071
+14469 * * * * * * * 7cac e7b2ac,ee91bd 7cac,e47d 00007cac,0000e47d 9072 fda8 8eca 9072 * * 9072
+14470 * * * * * * * e47e f0a8a4b3,ee91be d862dd33,e47e 00028933,0000e47e 9073 * * 9073 * * 9073
+14471 * * * * * * * e47f f0a1ba89,ee91bf d847de89,e47f 00021e89,0000e47f 9074 * * 9074 * * 9074
+14472 * * * * * * * 920e e9888e,ee9280 920e,e480 0000920e,0000e480 9075 faa9 91f8 9075 c8d7 fcc6 9075
+14473 * * * * * * * 6c9f e6b29f,ee9281 6c9f,e481 00006c9f,0000e481 9076 * * 9076 * * 9076
+14474 * * * * * * * 9241 e98981,ee9282 9241,e482 00009241,0000e482 9077 * * 9077 * * 9077
+14475 * * * * * * * 9262 e989a2,ee9283 9262,e483 00009262,0000e483 9078 fb65,fe70 8e4c 9078 c8db fcca 9078
+14476 * * * * * * * e484 f0a596b9,ee9284 d855ddb9,e484 000255b9,0000e484 9079 * * 9079 * * 9079
+14477 * * * * * * * e486 f0a8ab86,ee9286 d862dec6,e486 00028ac6,0000e486 907b * * 907b * * 907b
+14478 * * * * * * * e487 f0a3b29b,ee9287 d84fdc9b,e487 00023c9b,0000e487 907c * * 907c * * 907c
+14479 * * * * * * * e488 f0a8ac8c,ee9288 d862df0c,e488 00028b0c,0000e488 907d * * 907d * * 907d
+14480 * * * * * * * e489 f0a5979b,ee9289 d855dddb,e489 000255db,0000e489 907e * * 907e * * 907e
+14481 * * * * * * * e48a f0a0b4b1,ee928a d843dd31,e48a 00020d31,0000e48a 90a1 * * 90a1 * * 90a1
+14482 * * * * * * * 932c e98cac,ee928b 932c,e48b 0000932c,0000e48b 90a2 * * 90a2 * * 90a2
+14483 * * * * * * * 936b e98dab,ee928c 936b,e48c 0000936b,0000e48c 90a3 fe74 90d2 90a3 * * 90a3
+14484 * * * * * * * e48d f0a8aba1,ee928d d862dee1,e48d 00028ae1,0000e48d 90a4 * * 90a4 * * 90a4
+14485 * * * * * * * e48e f0a8afab,ee928e d862dfeb,e48e 00028beb,0000e48e 90a5 * * 90a5 * * 90a5
+14486 * * * * * * * 5ac3 e5ab83,ee9290 5ac3,e490 00005ac3,0000e490 90a7 * * 90a7 * * 90a7
+14487 * * * * * * * e491 f0a8aba2,ee9291 d862dee2,e491 00028ae2,0000e491 90a8 * * 90a8 * * 90a8
+14488 * * * * * * * e492 f0a8aba5,ee9292 d862dee5,e492 00028ae5,0000e492 90a9 * * 90a9 * * 90a9
+14489 * * * * * * * 4965 e4a5a5,ee9293 4965,e493 00004965,0000e493 90aa * * 90aa * * 90aa
+14490 * * * * * * * 9244 e98984,ee9294 9244,e494 00009244,0000e494 90ab fae2 8e54 90ab c8da fcc9 90ab
+14491 * * * * * * * e495 f0a8afac,ee9295 d862dfec,e495 00028bec,0000e495 90ac * * 90ac * * 90ac
+14492 * * * * * * * e496 f0a8b0b9,ee9296 d863dc39,e496 00028c39,0000e496 90ad * * 90ad * * 90ad
+14493 * * * * * * * e497 f0a8afbf,ee9297 d862dfff,e497 00028bff,0000e497 90ae * * 90ae * * 90ae
+14494 * * * * * * * 9373 e98db3,ee9298 9373,e498 00009373,0000e498 90af * * 90af * * 90af
+14495 * * * * * * * 945b e9919b,ee9299 945b,e499 0000945b,0000e499 90b0 fae4 9250 90b0 c8e0 fccf 90b0
+14496 * * * * * * * 8ebc e8babc,ee929a 8ebc,e49a 00008ebc,0000e49a 90b1 * * 90b1 * * 90b1
+14497 * * * * * * * 9585 e99685,ee929b 9585,e49b 00009585,0000e49b 90b2 * * 90b2 * * 90b2
+14498 * * * * * * * 95a6 e996a6,ee929c 95a6,e49c 000095a6,0000e49c 90b3 * * 90b3 * * 90b3
+14499 * * * * * * * 9426 e990a6,ee929d 9426,e49d 00009426,0000e49d 90b4 * * 90b4 * * 90b4
+14500 * * * * * * * 95a0 e996a0,ee929e 95a0,e49e 000095a0,0000e49e 90b5 * * 90b5 * * 90b5
+14501 * * * * * * * 6ff6 e6bfb6,ee929f 6ff6,e49f 00006ff6,0000e49f 90b6 fcda 925e 90b6 c854 fbc2 90b6
+14502 * * * * * * * 42b9 e48ab9,ee92a0 42b9,e4a0 000042b9,0000e4a0 90b7 * * 90b7 * * 90b7
+14503 * * * * * * * e4a2 f0a89b98,ee92a2 d861ded8,e4a2 000286d8,0000e4a2 90b9 * * 90b9 * * 90b9
+14504 * * * * * * * e4a3 f0a189bc,ee92a3 d844de7c,e4a3 0002127c,0000e4a3 90ba * * 90ba * * 90ba
+14505 * * * * * * * e4a4 f0a3b8ae,ee92a4 d84fde2e,e4a4 00023e2e,0000e4a4 90bb * * 90bb * * 90bb
+14506 * * * * * * * 49df e4a79f,ee92a5 49df,e4a5 000049df,0000e4a5 90bc * * 90bc * * 90bc
+14507 * * * * * * * 6c1c e6b09c,ee92a6 6c1c,e4a6 00006c1c,0000e4a6 90bd * * 90bd * * 90bd
+14508 * * * * * * * 967b e999bb,ee92a7 967b,e4a7 0000967b,0000e4a7 90be * * 90be * * 90be
+14509 * * * * * * * 9696 e99a96,ee92a8 9696,e4a8 00009696,0000e4a8 90bf fea2 90db 90bf * * 90bf
+14510 * * * * * * * 416c e485ac,ee92a9 416c,e4a9 0000416c,0000e4a9 90c0 * * 90c0 * * 90c0
+14511 * * * * * * * 96a3 e99aa3,ee92aa 96a3,e4aa 000096a3,0000e4aa 90c1 fb45 8e46 90c1 c8e2 fcd3 90c1
+14512 * * * * * * * e4ab f0a6bb95,ee92ab d85bded5,e4ab 00026ed5,0000e4ab 90c2 * * 90c2 * * 90c2
+14513 * * * * * * * 61da e6879a,ee92ac 61da,e4ac 000061da,0000e4ac 90c3 * * 90c3 * * 90c3
+14514 * * * * * * * * ee92ad e4ad 0000e4ad 90c4 * 90de 90c4 * * 90c4
+14515 * * * * * * * 78f5 e7a3b5,ee92ae 78f5,e4ae 000078f5,0000e4ae 90c5 * * 90c5 * * 90c5
+14516 * * * * * * * e4af f0a8aba0,ee92af d862dee0,e4af 00028ae0,0000e4af 90c6 * * 90c6 * * 90c6
+14517 * * * * * * * 96bd e99abd,ee92b0 96bd,e4b0 000096bd,0000e4b0 90c7 fea4 8f54 90c7 * * 90c7
+14518 * * * * * * * 53cc e58f8c,ee92b1 53cc,e4b1 000053cc,0000e4b1 90c8 fbb4 8fd2 90c8 * * 90c8
+14519 * * * * * * * 49a1 e4a6a1,ee92b2 49a1,e4b2 000049a1,0000e4b2 90c9 * * 90c9 * * 90c9
+14520 * * * * * * * e4b3 f0a6b2b8,ee92b3 d85bdcb8,e4b3 00026cb8,0000e4b3 90ca * * 90ca * * 90ca
+14521 * * * * * * * e4b4 f0a089b4,ee92b4 d840de74,e4b4 00020274,0000e4b4 90cb * * 90cb * * 90cb
+14522 * * * * * * * e4b5 f0a69090,ee92b5 d859dc10,e4b5 00026410,0000e4b5 90cc * * 90cc * * 90cc
+14523 * * * * * * * e4b6 f0a982af,ee92b6 d864dcaf,e4b6 000290af,0000e4b6 90cd * * 90cd * * 90cd
+14524 * * * * * * * e4b7 f0a983a5,ee92b7 d864dce5,e4b7 000290e5,0000e4b7 90ce * * 90ce * * 90ce
+14525 * * * * * * * e4b8 f0a4ab91,ee92b8 d852ded1,e4b8 00024ad1,0000e4b8 90cf * * 90cf * * 90cf
+14526 * * * * * * * e4b9 f0a1a495,ee92b9 d846dd15,e4b9 00021915,0000e4b9 90d0 * * 90d0 * * 90d0
+14527 * * * * * * * e4ba f0a38c8a,ee92ba d84cdf0a,e4ba 0002330a,0000e4ba 90d1 * * 90d1 * * 90d1
+14528 * * * * * * * 9731 e99cb1,ee92bb 9731,e4bb 00009731,0000e4bb 90d2 fea7 90e1 90d2 * * 90d2
+14529 * * * * * * * 8642 e89982,ee92bc 8642,e4bc 00008642,0000e4bc 90d3 * * 90d3 * * 90d3
+14530 * * * * * * * 9736 e99cb6,ee92bd 9736,e4bd 00009736,0000e4bd 90d4 * * 90d4 * * 90d4
+14531 * * * * * * * 4a0f e4a88f,ee92be 4a0f,e4be 00004a0f,0000e4be 90d5 * * 90d5 * * 90d5
+14532 * * * * * * * 453d e494bd,ee92bf 453d,e4bf 0000453d,0000e4bf 90d6 * * 90d6 * * 90d6
+14533 * * * * * * * 4585 e49685,ee9380 4585,e4c0 00004585,0000e4c0 90d7 * * 90d7 * * 90d7
+14534 * * * * * * * e4c1 f0a4aba9,ee9381 d852dee9,e4c1 00024ae9,0000e4c1 90d8 * * 90d8 * * 90d8
+14535 * * * * * * * 7075 e781b5,ee9382 7075,e4c2 00007075,0000e4c2 90d9 * * 90d9 * * 90d9
+14536 * * * * * * * 5b41 e5ad81,ee9383 5b41,e4c3 00005b41,0000e4c3 90da * * 90da * * 90da
+14537 * * * * * * * 971b e99c9b,ee9384 971b,e4c4 0000971b,0000e4c4 90db * * 90db * * 90db
+14538 * * * * * * * * * * * * * * 90dc * * *
+14539 * * * * * * * e4c6 f0a98795,ee9386 d864ddd5,e4c6 000291d5,0000e4c6 90dd * * 90dd * * 90dd
+14540 * * * * * * * 9757 e99d97,ee9387 9757,e4c7 00009757,0000e4c7 90de * * 90de * * 90de
+14541 * * * * * * * 5b4a e5ad8a,ee9388 5b4a,e4c8 00005b4a,0000e4c8 90df * * 90df * * 90df
+14542 * * * * * * * e4c9 f0a987ab,ee9389 d864ddeb,e4c9 000291eb,0000e4c9 90e0 * * 90e0 * * 90e0
+14543 * * * * * * * 975f e99d9f,ee938a 975f,e4ca 0000975f,0000e4ca 90e1 fea9 8ffa 90e1 * * 90e1
+14544 * * * * * * * 9425 e990a5,ee938b 9425,e4cb 00009425,0000e4cb 90e2 * * 90e2 * * 90e2
+14545 * * * * * * * 50d0 e58390,ee938c 50d0,e4cc 000050d0,0000e4cc 90e3 * * 90e3 * * 90e3
+14546 * * * * * * * e4cd f0a382b7,ee938d d84cdcb7,e4cd 000230b7,0000e4cd 90e4 * * 90e4 * * 90e4
+14547 * * * * * * * e4ce f0a382bc,ee938e d84cdcbc,e4ce 000230bc,0000e4ce 90e5 * * 90e5 * * 90e5
+14548 * * * * * * * 9789 e99e89,ee938f 9789,e4cf 00009789,0000e4cf 90e6 * * 90e6 * * 90e6
+14549 * * * * * * * 979f e99e9f,ee9390 979f,e4d0 0000979f,0000e4d0 90e7 feaa 90e3 90e7 * * 90e7
+14550 * * * * * * * 97b1 e99eb1,ee9391 97b1,e4d1 000097b1,0000e4d1 90e8 * * 90e8 * fcd5 90e8
+14551 * * * * * * * 97be e99ebe,ee9392 97be,e4d2 000097be,0000e4d2 90e9 feae 90e5 90e9 * * 90e9
+14552 * * * * * * * 97c0 e99f80,ee9393 97c0,e4d3 000097c0,0000e4d3 90ea * * 90ea * * 90ea
+14553 * * * * * * * 97d2 e99f92,ee9394 97d2,e4d4 000097d2,0000e4d4 90eb * * 90eb * * 90eb
+14554 * * * * * * * 97e0 e99fa0,ee9395 97e0,e4d5 000097e0,0000e4d5 90ec * * 90ec * * 90ec
+14555 * * * * * * * e4d6 f0a591ac,ee9396 d855dc6c,e4d6 0002546c,0000e4d6 90ed * * 90ed * * 90ed
+14556 * * * * * * * 97ee e99fae,ee9397 97ee,e4d7 000097ee,0000e4d7 90ee fab7 8e4d 90ee c8b6 fc6f 90ee
+14557 * * * * * * * 741c e7909c,ee9398 741c,e4d8 0000741c,0000e4d8 90ef * * 90ef * * 90ef
+14558 * * * * * * * e4d9 f0a990b3,ee9399 d865dc33,e4d9 00029433,0000e4d9 90f0 * * 90f0 * * 90f0
+14559 * * * * * * * * * * * * * * 90f1 * * *
+14560 * * * * * * * 97f5 e99fb5,ee939b 97f5,e4db 000097f5,0000e4db 90f2 feb0 8ffe 90f2 * fcd7 90f2
+14561 * * * * * * * e4dc f0a9909d,ee939c d865dc1d,e4dc 0002941d,0000e4dc 90f3 * * 90f3 * * 90f3
+14562 * * * * * * * e4dd f0a7a5ba,ee939d d85edd7a,e4dd 0002797a,0000e4dd 90f4 * * 90f4 * * 90f4
+14563 * * * * * * * 4ad1 e4ab91,ee939e 4ad1,e4de 00004ad1,0000e4de 90f5 * * 90f5 * * 90f5
+14564 * * * * * * * 9834 e9a0b4,ee939f 9834,e4df 00009834,0000e4df 90f6 * * 90f6 * * 90f6
+14565 * * * * * * * 9833 e9a0b3,ee93a0 9833,e4e0 00009833,0000e4e0 90f7 * * 90f7 * * 90f7
+14566 * * * * * * * 984b e9a18b,ee93a1 984b,e4e1 0000984b,0000e4e1 90f8 feb5 8ed5 90f8 * * 90f8
+14567 * * * * * * * 9866 e9a1a6,ee93a2 9866,e4e2 00009866,0000e4e2 90f9 feb6 90ec 90f9 * * 90f9
+14568 * * * * * * * 3b0e e3ac8e,ee93a3 3b0e,e4e3 00003b0e,0000e4e3 90fa * * 90fa * * 90fa
+14569 * * * * * * * e4e4 f0a785b5,ee93a4 d85cdd75,e4e4 00027175,0000e4e4 90fb * * 90fb * * 90fb
+14570 * * * * * * * 3d51 e3b591,ee93a5 3d51,e4e5 00003d51,0000e4e5 90fc * * 90fc * * 90fc
+14571 * * * * * * * e4e6 f0a098b0,ee93a6 d841de30,e4e6 00020630,0000e4e6 90fd * * 90fd * * 90fd
+14572 * * * * * * * e4e7 f0a4859c,ee93a7 d850dd5c,e4e7 0002415c,0000e4e7 90fe * * 90fe * * 90fe
+14573 * * * * * * * e4e8 f0a59c86,ee93a8 d855df06,e4e8 00025706,0000e4e8 9140 * * 9140 * * 9140
+14574 * * * * * * * 98ca e9a38a,ee93a9 98ca,e4e9 000098ca,0000e4e9 9141 * * 9141 * * 9141
+14575 * * * * * * * 98b7 e9a2b7,ee93aa 98b7,e4ea 000098b7,0000e4ea 9142 * * 9142 * * 9142
+14576 * * * * * * * 98c8 e9a388,ee93ab 98c8,e4eb 000098c8,0000e4eb 9143 fb67,feb9 90ef 9143 c8e4 fcd9 9143
+14577 * * * * * * * 98c7 e9a387,ee93ac 98c7,e4ec 000098c7,0000e4ec 9144 * * 9144 * * 9144
+14578 * * * * * * * 4aff e4abbf,ee93ad 4aff,e4ed 00004aff,0000e4ed 9145 * * 9145 * * 9145
+14579 * * * * * * * e4ee f0a6b4a7,ee93ae d85bdd27,e4ee 00026d27,0000e4ee 9146 * * 9146 * * 9146
+14580 * * * * * * * e4ef f0a19b93,ee93af d845ded3,e4ef 000216d3,0000e4ef 9147 * * 9147 * * 9147
+14581 * * * * * * * 55b0 e596b0,ee93b0 55b0,e4f0 000055b0,0000e4f0 9148 fbd7 904d 9148 * * 9148
+14582 * * * * * * * 98e1 e9a3a1,ee93b1 98e1,e4f1 000098e1,0000e4f1 9149 * * 9149 * * 9149
+14583 * * * * * * * 98e6 e9a3a6,ee93b2 98e6,e4f2 000098e6,0000e4f2 914a febb 90f0 914a * * 914a
+14584 * * * * * * * 98ec e9a3ac,ee93b3 98ec,e4f3 000098ec,0000e4f3 914b * * 914b * * 914b
+14585 * * * * * * * 9378 e98db8,ee93b4 9378,e4f4 00009378,0000e4f4 914c * * 914c * * 914c
+14586 * * * * * * * 9939 e9a4b9,ee93b5 9939,e4f5 00009939,0000e4f5 914d febe 8f4b 914d * * 914d
+14587 * * * * * * * e4f6 f0a4a8a9,ee93b6 d852de29,e4f6 00024a29,0000e4f6 914e * * 914e * * 914e
+14588 * * * * * * * 4b72 e4adb2,ee93b7 4b72,e4f7 00004b72,0000e4f7 914f * * 914f * * 914f
+14589 * * * * * * * e4f8 f0a9a197,ee93b8 d866dc57,e4f8 00029857,0000e4f8 9150 * * 9150 * * 9150
+14590 * * * * * * * e4f9 f0a9a485,ee93b9 d866dd05,e4f9 00029905,0000e4f9 9151 * * 9151 * * 9151
+14591 * * * * * * * 99f5 e9a7b5,ee93ba 99f5,e4fa 000099f5,0000e4fa 9152 * * 9152 * * 9152
+14592 * * * * * * * 9a0c e9a88c,ee93bb 9a0c,e4fb 00009a0c,0000e4fb 9153 fb6b,fec6 90f2 9153 * * 9153
+14593 * * * * * * * 9a3b e9a8bb,ee93bc 9a3b,e4fc 00009a3b,0000e4fc 9154 * * 9154 * * 9154
+14594 * * * * * * * 9a10 e9a890,ee93bd 9a10,e4fd 00009a10,0000e4fd 9155 fec7 924f 9155 c8ea fce1 9155
+14595 * * * * * * * 9a58 e9a998,ee93be 9a58,e4fe 00009a58,0000e4fe 9156 * * 9156 * * 9156
+14596 * * * * * * * e4ff f0a59ca5,ee93bf d855df25,e4ff 00025725,0000e4ff 9157 * * 9157 * * 9157
+14597 * * * * * * * 36c4 e39b84,ee9480 36c4,e500 000036c4,0000e500 9158 * * 9158 * * 9158
+14598 * * * * * * * e501 f0a982b1,ee9481 d864dcb1,e501 000290b1,0000e501 9159 * * 9159 * * 9159
+14599 * * * * * * * e502 f0a9af95,ee9482 d866dfd5,e502 00029bd5,0000e502 915a * * 915a * * 915a
+14600 * * * * * * * 9ae0 e9aba0,ee9483 9ae0,e503 00009ae0,0000e503 915b * * 915b * * 915b
+14601 * * * * * * * 9ae2 e9aba2,ee9484 9ae2,e504 00009ae2,0000e504 915c fece 90f4 915c * * 915c
+14602 * * * * * * * e505 f0a9ac85,ee9485 d866df05,e505 00029b05,0000e505 915d * * 915d * * 915d
+14603 * * * * * * * 9af4 e9abb4,ee9486 9af4,e506 00009af4,0000e506 915e fb6d,fecf 8ffd 915e * fce5 915e
+14604 * * * * * * * 4c0e e4b08e,ee9487 4c0e,e507 00004c0e,0000e507 915f * * 915f * * 915f
+14605 * * * * * * * 9b14 e9ac94,ee9488 9b14,e508 00009b14,0000e508 9160 * * 9160 * * 9160
+14606 * * * * * * * 9b2d e9acad,ee9489 9b2d,e509 00009b2d,0000e509 9161 fecd 924b 9161 * fce7 9161
+14607 * * * * * * * e50a f0a89880,ee948a d861de00,e50a 00028600,0000e50a 9162 * * 9162 * * 9162
+14608 * * * * * * * 5034 e580b4,ee948b 5034,e50b 00005034,0000e50b 9163 * * 9163 * * 9163
+14609 * * * * * * * 9b34 e9acb4,ee948c 9b34,e50c 00009b34,0000e50c 9164 * * 9164 * * 9164
+14610 * * * * * * * 38c3 e3a383,ee948e 38c3,e50e 000038c3,0000e50e 9166 * * 9166 * * 9166
+14611 * * * * * * * e50f f0a381bd,ee948f d84cdc7d,e50f 0002307d,0000e50f 9167 * * 9167 * * 9167
+14612 * * * * * * * 9b50 e9ad90,ee9490 9b50,e510 00009b50,0000e510 9168 * * 9168 * * 9168
+14613 * * * * * * * 9b40 e9ad80,ee9491 9b40,e511 00009b40,0000e511 9169 * * 9169 * * 9169
+14614 * * * * * * * e512 f0a9b4be,ee9492 d867dd3e,e512 00029d3e,0000e512 916a * * 916a * * 916a
+14615 * * * * * * * 5a45 e5a985,ee9493 5a45,e513 00005a45,0000e513 916b * * 916b * * 916b
+14616 * * * * * * * e514 f0a1a1a3,ee9494 d846dc63,e514 00021863,0000e514 916c * * 916c * * 916c
+14617 * * * * * * * 9b8e e9ae8e,ee9495 9b8e,e515 00009b8e,0000e515 916d fed7 8e43 916d c8ed fce8 916d
+14618 * * * * * * * 9c02 e9b082,ee9497 9c02,e517 00009c02,0000e517 916f fadf 90fc 916f c8ef fceb 916f
+14619 * * * * * * * 9bff e9afbf,ee9498 9bff,e518 00009bff,0000e518 9170 fede 90fe 9170 c8f0 fced 9170
+14620 * * * * * * * 9c0c e9b08c,ee9499 9c0c,e519 00009c0c,0000e519 9171 fedb 90fd 9171 * * 9171
+14621 * * * * * * * e51a f0a9b9a8,ee949a d867de68,e51a 00029e68,0000e51a 9172 * * 9172 * * 9172
+14622 * * * * * * * 9dd4 e9b794,ee949b 9dd4,e51b 00009dd4,0000e51b 9173 * * 9173 * * 9173
+14623 * * * * * * * e51c f0a9beb7,ee949c d867dfb7,e51c 00029fb7,0000e51c 9174 * * 9174 * * 9174
+14624 * * * * * * * e51d f0aa8692,ee949d d868dd92,e51d 0002a192,0000e51d 9175 * * 9175 * * 9175
+14625 * * * * * * * e51e f0aa86ab,ee949e d868ddab,e51e 0002a1ab,0000e51e 9176 * * 9176 * * 9176
+14626 * * * * * * * e51f f0aa83a1,ee949f d868dce1,e51f 0002a0e1,0000e51f 9177 * * 9177 * * 9177
+14627 * * * * * * * e520 f0aa84a3,ee94a0 d868dd23,e520 0002a123,0000e520 9178 * * 9178 * * 9178
+14628 * * * * * * * e521 f0aa879f,ee94a1 d868dddf,e521 0002a1df,0000e521 9179 * * 9179 * * 9179
+14629 * * * * * * * 9d7e e9b5be,ee94a2 9d7e,e522 00009d7e,0000e522 917a fee9 8f52 917a * * 917a
+14630 * * * * * * * 9d83 e9b683,ee94a3 9d83,e523 00009d83,0000e523 917b * * 917b * * 917b
+14631 * * * * * * * e524 f0aa84b4,ee94a4 d868dd34,e524 0002a134,0000e524 917c * * 917c * * 917c
+14632 * * * * * * * 9e0e e9b88e,ee94a5 9e0e,e525 00009e0e,0000e525 917d * * 917d * * 917d
+14633 * * * * * * * 9dc4 e9b784,ee94a7 9dc4,e527 00009dc4,0000e527 91a1 fb6e,feeb 8f47 91a1 c8f9 fcf7 91a1
+14634 * * * * * * * e529 f0aa8693,ee94a9 d868dd93,e529 0002a193,0000e529 91a3 * * 91a3 * * 91a3
+14635 * * * * * * * e52a f0aa88a0,ee94aa d868de20,e52a 0002a220,0000e52a 91a4 * * 91a4 * * 91a4
+14636 * * * * * * * e52b f0a1a4bb,ee94ab d846dd3b,e52b 0002193b,0000e52b 91a5 * * 91a5 * * 91a5
+14637 * * * * * * * e52c f0aa88b3,ee94ac d868de33,e52c 0002a233,0000e52c 91a6 * * 91a6 * * 91a6
+14638 * * * * * * * 9d39 e9b4b9,ee94ad 9d39,e52d 00009d39,0000e52d 91a7 * * 91a7 * * 91a7
+14639 * * * * * * * e52e f0aa82b9,ee94ae d868dcb9,e52e 0002a0b9,0000e52e 91a8 * * 91a8 * * 91a8
+14640 * * * * * * * e52f f0aa8ab4,ee94af d868deb4,e52f 0002a2b4,0000e52f 91a9 * * 91a9 * * 91a9
+14641 * * * * * * * 9e90 e9ba90,ee94b0 9e90,e530 00009e90,0000e530 91aa * * 91aa * * 91aa
+14642 * * * * * * * 9e95 e9ba95,ee94b1 9e95,e531 00009e95,0000e531 91ab fef0 8ee1 91ab * * 91ab
+14643 * * * * * * * 9e9e e9ba9e,ee94b2 9e9e,e532 00009e9e,0000e532 91ac fef2 9149 91ac * * 91ac
+14644 * * * * * * * 9ea2 e9baa2,ee94b3 9ea2,e533 00009ea2,0000e533 91ad * * 91ad * * 91ad
+14645 * * * * * * * 4d34 e4b4b4,ee94b4 4d34,e534 00004d34,0000e534 91ae * * 91ae * * 91ae
+14646 * * * * * * * 9eaa e9baaa,ee94b5 9eaa,e535 00009eaa,0000e535 91af fb46 * 91af c8fb fcf9 91af
+14647 * * * * * * * 9eaf e9baaf,ee94b6 9eaf,e536 00009eaf,0000e536 91b0 fef4 8edf 91b0 c8fc fcfb 91b0
+14648 * * * * * * * e537 f0a48da4,ee94b7 d850df64,e537 00024364,0000e537 91b1 fce6 91d3 91b1 * * 91b1
+14649 * * * * * * * 9ec1 e9bb81,ee94b8 9ec1,e538 00009ec1,0000e538 91b2 * * 91b2 * * 91b2
+14650 * * * * * * * 3b60 e3ada0,ee94b9 3b60,e539 00003b60,0000e539 91b3 * * 91b3 * * 91b3
+14651 * * * * * * * 39e5 e3a7a5,ee94ba 39e5,e53a 000039e5,0000e53a 91b4 * * 91b4 * * 91b4
+14652 * * * * * * * 3d1d e3b49d,f0aa8fad,ee94bb 3d1d,d868dfed,e53b 00003d1d,0002a3ed,0000e53b 91b5 * * 91b5 * * 91b5
+14653 * * * * * * * 4f32 e4bcb2,ee94bc 4f32,e53c 00004f32,0000e53c 91b6 fb78 9168 91b6 c746 fa49 91b6
+14654 * * * * * * * 37be e39ebe,ee94bd 37be,e53d 000037be,0000e53d 91b7 * * 91b7 * * 91b7
+14655 * * * * * * * e53e f0a8b0ab,ee94be d863dc2b,e53e 00028c2b,0000e53e 91b8 * * 91b8 * * 91b8
+14656 * * * * * * * 9f02 e9bc82,ee94bf 9f02,e53f 00009f02,0000e53f 91b9 fef8 914b 91b9 * * 91b9
+14657 * * * * * * * 9f08 e9bc88,ee9580 9f08,e540 00009f08,0000e540 91ba * * 91ba * * 91ba
+14658 * * * * * * * 4b96 e4ae96,ee9581 4b96,e541 00004b96,0000e541 91bb * * 91bb * * 91bb
+14659 * * * * * * * 9424 e990a4,ee9582 9424,e542 00009424,0000e542 91bc * * 91bc * * 91bc
+14660 * * * * * * * e543 f0a6b6a2,ee9583 d85bdda2,e543 00026da2,0000e543 91bd * * 91bd * * 91bd
+14661 * * * * * * * 9f17 e9bc97,eeb6a4,ee9584 9f17,eda4,e544 00009f17,0000eda4,0000e544 9f66,91be * * 91be * * 9f66,91be
+14662 * * * * * * * * f0afa89b d87ede1b 0002fa1b * * * 91bf * * *
+14663 * * * * * * * 9f39 e9bcb9,ee9586 9f39,e546 00009f39,0000e546 91c0 * * 91c0 * * 91c0
+14664 * * * * * * * 569f e59a9f,ee9587 569f,e547 0000569f,0000e547 91c1 fada 91a2 91c1 c7bc fada 91c1
+14665 * * * * * * * 568a e59a8a,ee9588 568a,e548 0000568a,0000e548 91c2 * * 91c2 * * 91c2
+14666 * * * * * * * 9f45 e9bd85,ee9589 9f45,e549 00009f45,0000e549 91c3 fefa 914e 91c3 * * 91c3
+14667 * * * * * * * 99b8 e9a6b8,ee958a 99b8,e54a 000099b8,0000e54a 91c4 * * 91c4 * * 91c4
+14668 * * * * * * * e54b f0a9828b,ee958b d864dc8b,e54b 0002908b,0000e54b 91c5 * * 91c5 * * 91c5
+14669 * * * * * * * 97f2 e99fb2,ee958c 97f2,e54c 000097f2,0000e54c 91c6 * * 91c6 * * 91c6
+14670 * * * * * * * 847f e891bf,ee958d 847f,e54d 0000847f,0000e54d 91c7 * * 91c7 * * 91c7
+14671 * * * * * * * 9f62 * * * * * * 91c8 * * *
+14672 * * * * * * * 9f69 e9bda9,ee958f 9f69,e54f 00009f69,0000e54f 91c9 fefd 9151 91c9 * * 91c9
+14673 * * * * * * * 7adc e7ab9c,ee9590 7adc,e550 00007adc,0000e550 91ca * * 91ca * * 91ca
+14674 * * * * * * * 9f8e e9be8e,ee9591 9f8e,e551 00009f8e,0000e551 91cb fbc9 916e 91cb * * 91cb
+14675 * * * * * * * 7216 e78896,ee9592 7216,e552 00007216,0000e552 91cc * * 91cc * * 91cc
+14676 * * * * * * * 4bbe e4aebe,ee9593 4bbe,e553 00004bbe,0000e553 91cd * * 91cd * * 91cd
+14677 * * * * * * * e554 f0a4a5b5,ee9594 d852dd75,e554 00024975,0000e554 91ce * * 91ce * * 91ce
+14678 * * * * * * * e555 f0a4a6bb,ee9595 d852ddbb,e555 000249bb,0000e555 91cf * * 91cf * * 91cf
+14679 * * * * * * * 7177 e785b7,ee9596 7177,e556 00007177,0000e556 91d0 * * 91d0 * * 91d0
+14680 * * * * * * * e557 f0a4a7b8,ee9597 d852ddf8,e557 000249f8,0000e557 91d1 * * 91d1 * * 91d1
+14681 * * * * * * * e558 f0a48d88,ee9598 d850df48,e558 00024348,0000e558 91d2 * * 91d2 * * 91d2
+14682 * * * * * * * e559 f0a4a991,ee9599 d852de51,e559 00024a51,0000e559 91d3 * * 91d3 * * 91d3
+14683 * * * * * * * 739e e78e9e,ee959a 739e,e55a 0000739e,0000e55a 91d4 * * 91d4 * * 91d4
+14684 * * * * * * * e55b f0a8af9a,ee959b d862dfda,e55b 00028bda,0000e55b 91d5 * * 91d5 * * 91d5
+14685 * * * * * * * e55c f0a1a3ba,ee959c d846dcfa,e55c 000218fa,0000e55c 91d6 * * 91d6 * * 91d6
+14686 * * * * * * * 799f e7a69f,ee959d 799f,e55d 0000799f,0000e55d 91d7 * * 91d7 * * 91d7
+14687 * * * * * * * e55e f0a8a5be,ee959e d862dd7e,e55e 0002897e,0000e55e 91d8 * * 91d8 * * 91d8
+14688 * * * * * * * e55f f0a8b8b6,ee959f d863de36,e55f 00028e36,0000e55f 91d9 * * 91d9 * * 91d9
+14689 * * * * * * * 9369 e98da9,ee95a0 9369,e560 00009369,0000e560 91da * * 91da * * 91da
+14690 * * * * * * * 93f3 e98fb3,ee95a1 93f3,e561 000093f3,0000e561 91db * * 91db * * 91db
+14691 * * * * * * * e562 f0a8a984,ee95a2 d862de44,e562 00028a44,0000e562 91dc * * 91dc * * 91dc
+14692 * * * * * * * 92ec e98bac,ee95a3 92ec,e563 000092ec,0000e563 91dd * * 91dd * * 91dd
+14693 * * * * * * * 9381 e98e81,ee95a4 9381,e564 00009381,0000e564 91de * * 91de * * 91de
+14694 * * * * * * * 93cb e98f8b,ee95a5 93cb,e565 000093cb,0000e565 91df * * 91df * * 91df
+14695 * * * * * * * e566 f0a8a5ac,ee95a6 d862dd6c,e566 0002896c,0000e566 91e0 * * 91e0 * * 91e0
+14696 * * * * * * * e567 f0a492b9,ee95a7 d851dcb9,e567 000244b9,0000e567 91e1 * * 91e1 * * 91e1
+14697 * * * * * * * 7217 e78897,ee95a8 7217,e568 00007217,0000e568 91e2 * * 91e2 c861 fbd1 91e2
+14698 * * * * * * * 3eeb e3bbab,ee95a9 3eeb,e569 00003eeb,0000e569 91e3 * * 91e3 * * 91e3
+14699 * * * * * * * 7772 e79db2,ee95aa 7772,e56a 00007772,0000e56a 91e4 * * 91e4 * * 91e4
+14700 * * * * * * * 7a43 e7a983,ee95ab 7a43,e56b 00007a43,0000e56b 91e5 * * 91e5 * * 91e5
+14701 * * * * * * * 70d0 e78390,ee95ac 70d0,e56c 000070d0,0000e56c 91e6 * * 91e6 * * 91e6
+14702 * * * * * * * e56d f0a491b3,ee95ad d851dc73,e56d 00024473,0000e56d 91e7 * * 91e7 * * 91e7
+14703 * * * * * * * e56e f0a48fb8,ee95ae d850dff8,e56e 000243f8,0000e56e 91e8 * * 91e8 * * 91e8
+14704 * * * * * * * 717e e785be,ee95af 717e,e56f 0000717e,0000e56f 91e9 * * 91e9 * * 91e9
+14705 * * * * * * * e570 f0a19faf,ee95b0 d845dfef,e570 000217ef,0000e570 91ea * * 91ea * * 91ea
+14706 * * * * * * * 70a3 e782a3,ee95b1 70a3,e571 000070a3,0000e571 91eb * * 91eb * * 91eb
+14707 * * * * * * * e572 f0a1a2be,ee95b2 d846dcbe,e572 000218be,0000e572 91ec * * 91ec * * 91ec
+14708 * * * * * * * e573 f0a39699,ee95b3 d84ddd99,e573 00023599,0000e573 91ed * * 91ed * * 91ed
+14709 * * * * * * * 3ec7 e3bb87,ee95b4 3ec7,e574 00003ec7,0000e574 91ee * * 91ee * * 91ee
+14710 * * * * * * * e575 f0a1a285,ee95b5 d846dc85,e575 00021885,0000e575 91ef * * 91ef * * 91ef
+14711 * * * * * * * e576 f0a590af,ee95b6 d855dc2f,e576 0002542f,0000e576 91f0 * * 91f0 * * 91f0
+14712 * * * * * * * e577 f0a19fb8,ee95b7 d845dff8,e577 000217f8,0000e577 91f1 * * 91f1 * * 91f1
+14713 * * * * * * * 3722 e39ca2,ee95b8 3722,e578 00003722,0000e578 91f2 * * 91f2 * * 91f2
+14714 * * * * * * * e579 f0a19bbb,ee95b9 d845defb,e579 000216fb,0000e579 91f3 * * 91f3 * * 91f3
+14715 * * * * * * * e57a f0a1a0b9,ee95ba d846dc39,e57a 00021839,0000e57a 91f4 * * 91f4 * * 91f4
+14716 * * * * * * * 36e1 e39ba1,ee95bb 36e1,e57b 000036e1,0000e57b 91f5 * * 91f5 * * 91f5
+14717 * * * * * * * e57c f0a19db4,ee95bc d845df74,e57c 00021774,0000e57c 91f6 * * 91f6 * * 91f6
+14718 * * * * * * * e57d f0a1a391,ee95bd d846dcd1,e57d 000218d1,0000e57d 91f7 * * 91f7 * * 91f7
+14719 * * * * * * * e57e f0a5bd8b,ee95be d857df4b,e57e 00025f4b,0000e57e 91f8 * * 91f8 * * 91f8
+14720 * * * * * * * 3723 e39ca3,ee95bf 3723,e57f 00003723,0000e57f 91f9 * * 91f9 * * 91f9
+14721 * * * * * * * e580 f0a19b80,ee9680 d845dec0,e580 000216c0,0000e580 91fa * * 91fa * * 91fa
+14722 * * * * * * * 575b e59d9b,ee9681 575b,e581 0000575b,0000e581 91fb * * 91fb * * 91fb
+14723 * * * * * * * e582 f0a4a8a5,ee9682 d852de25,e582 00024a25,0000e582 91fc * * 91fc * * 91fc
+14724 * * * * * * * e583 f0a18fbe,ee9683 d844dffe,e583 000213fe,0000e583 91fd * * 91fd * * 91fd
+14725 * * * * * * * e584 f0a18aa8,ee9684 d844dea8,e584 000212a8,0000e584 91fe * * 91fe * * 91fe
+14726 * * * * * * * e585 f0a18f86,ee9685 d844dfc6,e585 000213c6,0000e585 9240 * * 9240 * * 9240
+14727 * * * * * * * e586 f0a192b6,ee9686 d845dcb6,e586 000214b6,0000e586 9241 * * 9241 * * 9241
+14728 * * * * * * * * e89483,ee9689,ee9687 8503,e589,e587 00008503,0000e589,0000e587 9244,9242 * * 9242 * * 9244,9242
+14729 * * * * * * * e588 f0a39aa6,ee9688 d84ddea6,e588 000236a6,0000e588 9243 * * 9243 * * 9243
+14730 * * * * * * * 8503 * * * * * * 9244 * * *
+14731 * * * * * * * 8455 e89195,ee968a 8455,e58a 00008455,0000e58a 9245 * * 9245 * * 9245
+14732 * * * * * * * e58b f0a4a694,ee968b d852dd94,e58b 00024994,0000e58b 9246 * * 9246 * * 9246
+14733 * * * * * * * e58c f0a785a5,ee968c d85cdd65,e58c 00027165,0000e58c 9247 * * 9247 * * 9247
+14734 * * * * * * * e58d f0a3b8b1,ee968d d84fde31,e58d 00023e31,0000e58d 9248 * * 9248 * * 9248
+14735 * * * * * * * e58e f0a5959c,ee968e d855dd5c,e58e 0002555c,0000e58e 9249 * * 9249 * * 9249
+14736 * * * * * * * e58f f0a3bbbb,ee968f d84fdefb,e58f 00023efb,0000e58f 924a * * 924a * * 924a
+14737 * * * * * * * e590 f0a78192,ee9690 d85cdc52,e590 00027052,0000e590 924b * * 924b * * 924b
+14738 * * * * * * * 44f4 e493b4,ee9691 44f4,e591 000044f4,0000e591 924c * * 924c * * 924c
+14739 * * * * * * * e592 f0a39bae,ee9692 d84ddeee,e592 000236ee,0000e592 924d * * 924d * * 924d
+14740 * * * * * * * e593 f0a9a69d,ee9693 d866dd9d,e593 0002999d,0000e593 924e * * 924e * * 924e
+14741 * * * * * * * e594 f0a6bca6,ee9694 d85bdf26,e594 00026f26,0000e594 924f * * 924f * * 924f
+14742 * * * * * * * 67f9 e69fb9,ee9695 67f9,e595 000067f9,0000e595 9250 fcb1 8fe7 9250 * * 9250
+14743 * * * * * * * 3733 e39cb3,ee9696 3733,e596 00003733,0000e596 9251 * * 9251 * * 9251
+14744 * * * * * * * 3c15 e3b095,ee9697 3c15,e597 00003c15,0000e597 9252 * * 9252 * * 9252
+14745 * * * * * * * 3de7 e3b7a7,ee9698 3de7,e598 00003de7,0000e598 9253 * * 9253 * * 9253
+14746 * * * * * * * 586c e5a1ac,ee9699 586c,e599 0000586c,0000e599 9254 * * 9254 * * 9254
+14747 * * * * * * * e59a f0a1a4a2,ee969a d846dd22,e59a 00021922,0000e59a 9255 * * 9255 * * 9255
+14748 * * * * * * * 6810 e6a090,ee969b 6810,e59b 00006810,0000e59b 9256 * * 9256 * * 9256
+14749 * * * * * * * 4057 e48197,ee969c 4057,e59c 00004057,0000e59c 9257 * * 9257 * * 9257
+14750 * * * * * * * e59d f0a39cbf,ee969d d84ddf3f,e59d 0002373f,0000e59d 9258 * * 9258 * * 9258
+14751 * * * * * * * e59e f0a483a1,ee969e d850dce1,e59e 000240e1,0000e59e 9259 * * 9259 * * 9259
+14752 * * * * * * * e59f f0a4828b,ee969f d850dc8b,e59f 0002408b,0000e59f 925a * * 925a * * 925a
+14753 * * * * * * * e5a0 f0a4848f,ee96a0 d850dd0f,e5a0 0002410f,0000e5a0 925b * * 925b * * 925b
+14754 * * * * * * * e5a1 f0a6b0a1,ee96a1 d85bdc21,e5a1 00026c21,0000e5a1 925c * * 925c * * 925c
+14755 * * * * * * * 54cb e5938b,ee96a2 54cb,e5a2 000054cb,0000e5a2 925d fa5f * 925d c76c faa5 925d
+14756 * * * * * * * 569e e59a9e,ee96a3 569e,e5a3 0000569e,0000e5a3 925e * * 925e * * 925e
+14757 * * * * * * * e5a4 f0a69ab1,ee96a4 d859deb1,e5a4 000266b1,0000e5a4 925f * * 925f * * 925f
+14758 * * * * * * * 5692 e59a92,ee96a5 5692,e5a5 00005692,0000e5a5 9260 fbe5 91a1 9260 * fad7 9260
+14759 * * * * * * * e5a6 f0a0bf9f,ee96a6 d843dfdf,e5a6 00020fdf,0000e5a6 9261 * * 9261 * * 9261
+14760 * * * * * * * e5a7 f0a0aea8,ee96a7 d842dfa8,e5a7 00020ba8,0000e5a7 9262 * * 9262 * * 9262
+14761 * * * * * * * e5a8 f0a0b88d,ee96a8 d843de0d,e5a8 00020e0d,0000e5a8 9263 * * 9263 * * 9263
+14762 * * * * * * * 93c6 * * * * * * 9264 * * *
+14763 * * * * * * * e5aa f0a8ac93,ee96aa d862df13,e5aa 00028b13,0000e5aa 9265 * * 9265 * * 9265
+14764 * * * * * * * 939c e98e9c,ee96ab 939c,e5ab 0000939c,0000e5ab 9266 * * 9266 * * 9266
+14765 * * * * * * * 4ef8 e4bbb8,ee96ac 4ef8,e5ac 00004ef8,0000e5ac 9267 * * 9267 * * 9267
+14766 * * * * * * * 512b e584ab,ee96ad 512b,e5ad 0000512b,0000e5ad 9268 * * 9268 * * 9268
+14767 * * * * * * * 3819 e3a099,ee96ae 3819,e5ae 00003819,0000e5ae 9269 * * 9269 * * 9269
+14768 * * * * * * * e5af f0a490b6,ee96af d851dc36,e5af 00024436,0000e5af 926a * * 926a * * 926a
+14769 * * * * * * * 4ebc e4babc,ee96b0 4ebc,e5b0 00004ebc,0000e5b0 926b * * 926b * * 926b
+14770 * * * * * * * e5b1 f0a091a5,ee96b1 d841dc65,e5b1 00020465,0000e5b1 926c * * 926c * * 926c
+14771 * * * * * * * * * * * * * * 926d * * *
+14772 * * * * * * * 4f4b e4bd8b,ee96b3 4f4b,e5b3 00004f4b,0000e5b3 926e * * 926e * * 926e
+14773 * * * * * * * 4f8a e4be8a,ee96b4 4f8a,e5b4 00004f8a,0000e5b4 926f * * 926f * * 926f
+14774 * * * * * * * e5b5 f0a59991,ee96b5 d855de51,e5b5 00025651,0000e5b5 9270 * * 9270 * * 9270
+14775 * * * * * * * 5a68 e5a9a8,ee96b6 5a68,e5b6 00005a68,0000e5b6 9271 * * 9271 * * 9271
+14776 * * * * * * * e5b7 f0a086ab,ee96b7 d840ddab,e5b7 000201ab,0000e5b7 9272 * * 9272 * * 9272
+14777 * * * * * * * e5b8 f0a08f8b,ee96b8 d840dfcb,e5b8 000203cb,0000e5b8 9273 * * 9273 * * 9273
+14778 * * * * * * * 3999 e3a699,ee96b9 3999,e5b9 00003999,0000e5b9 9274 * * 9274 * * 9274
+14779 * * * * * * * e5ba f0a08c8a,ee96ba d840df0a,e5ba 0002030a,0000e5ba 9275 * * 9275 * * 9275
+14780 * * * * * * * e5bb f0a09094,ee96bb d841dc14,e5bb 00020414,0000e5bb 9276 * * 9276 * * 9276
+14781 * * * * * * * 3435 e390b5,ee96bc 3435,e5bc 00003435,0000e5bc 9277 * * 9277 * * 9277
+14782 * * * * * * * 4f29 e4bca9,ee96bd 4f29,e5bd 00004f29,0000e5bd 9278 * * 9278 * * 9278
+14783 * * * * * * * e5be f0a08b80,ee96be d840dec0,e5be 000202c0,0000e5be 9279 * * 9279 * * 9279
+14784 * * * * * * * e5bf f0a8bab3,ee96bf d863deb3,e5bf 00028eb3,0000e5bf 927a * * 927a * * 927a
+14785 * * * * * * * e5c0 f0a089b5,ee9780 d840de75,e5c0 00020275,0000e5c0 927b * * 927b * * 927b
+14786 * * * * * * * 8ada e8ab9a,ee9781 8ada,e5c1 00008ada,0000e5c1 927c * * 927c * * 927c
+14787 * * * * * * * e5c2 f0a0888c,ee9782 d840de0c,e5c2 0002020c,0000e5c2 927d * * 927d * * 927d
+14788 * * * * * * * 4e98 e4ba98,ee9783 4e98,e5c3 00004e98,0000e5c3 927e fa47 9059 927e c741 fa41 927e
+14789 * * * * * * * 50cd e5838d,ee9784 50cd,e5c4 000050cd,0000e5c4 92a1 fba4 905d 92a1 * fa4f 92a1
+14790 * * * * * * * 510d e5848d,ee9785 510d,e5c5 0000510d,0000e5c5 92a2 * * 92a2 * * 92a2
+14791 * * * * * * * 4fa2 e4bea2,ee9786 4fa2,e5c6 00004fa2,0000e5c6 92a3 * * 92a3 * * 92a3
+14792 * * * * * * * 4f03 e4bc83,ee9787 4f03,e5c7 00004f03,0000e5c7 92a4 fb75 9166 92a4 c745 fa48 92a4
+14793 * * * * * * * e5c8 f0a4a88e,ee9788 d852de0e,e5c8 00024a0e,0000e5c8 92a5 * * 92a5 * * 92a5
+14794 * * * * * * * e5c9 f0a3ba8a,ee9789 d84fde8a,e5c9 00023e8a,0000e5c9 92a6 * * 92a6 * * 92a6
+14795 * * * * * * * 4f42 e4bd82,ee978a 4f42,e5ca 00004f42,0000e5ca 92a7 * * 92a7 * * 92a7
+14796 * * * * * * * 502e e580ae,ee978b 502e,e5cb 0000502e,0000e5cb 92a8 fb7e 8fb4 92a8 * fa4c 92a8
+14797 * * * * * * * 506c e581ac,ee978c 506c,e5cc 0000506c,0000e5cc 92a9 fba2 8fb0 92a9 * fa4d 92a9
+14798 * * * * * * * 5081 e58281,ee978d 5081,e5cd 00005081,0000e5cd 92aa * * 92aa * * 92aa
+14799 * * * * * * * 4fcc e4bf8c,ee978e 4fcc,e5ce 00004fcc,0000e5ce 92ab * * 92ab * * 92ab
+14800 * * * * * * * 4fe5 e4bfa5,ee978f 4fe5,e5cf 00004fe5,0000e5cf 92ac fb7a 8e6b 92ac * * 92ac
+14801 * * * * * * * 5058 e58198,ee9790 5058,e5d0 00005058,0000e5d0 92ad * * 92ad * * 92ad
+14802 * * * * * * * 50fc e583bc,ee9791 50fc,e5d1 000050fc,0000e5d1 92ae * * 92ae * * 92ae
+14803 * * * * * * * 6e76 e6b9b6,ee9796 6e76,e5d6 00006e76,0000e5d6 92b3 * * 92b3 * * 92b3
+14804 * * * * * * * e5d7 f0a39695,ee9797 d84ddd95,e5d7 00023595,0000e5d7 92b4 * * 92b4 * * 92b4
+14805 * * * * * * * e5d8 f0a3b8b9,ee9798 d84fde39,e5d8 00023e39,0000e5d8 92b5 * * 92b5 * * 92b5
+14806 * * * * * * * e5d9 f0a3babf,ee9799 d84fdebf,e5d9 00023ebf,0000e5d9 92b6 * * 92b6 * * 92b6
+14807 * * * * * * * 6d72 e6b5b2,ee979a 6d72,e5da 00006d72,0000e5da 92b7 fb4f * 92b7 * * 92b7
+14808 * * * * * * * e5db f0a1a284,ee979b d846dc84,e5db 00021884,0000e5db 92b8 * * 92b8 * * 92b8
+14809 * * * * * * * e5dc f0a3ba89,ee979c d84fde89,e5dc 00023e89,0000e5dc 92b9 * * 92b9 * * 92b9
+14810 * * * * * * * 51a8 e586a8,ee979d 51a8,e5dd 000051a8,0000e5dd 92ba * * 92ba * * 92ba
+14811 * * * * * * * 51c3 e58783,ee979e 51c3,e5de 000051c3,0000e5de 92bb * * 92bb * * 92bb
+14812 * * * * * * * e5df f0a097a0,ee979f d841dde0,e5df 000205e0,0000e5df 92bc * * 92bc * * 92bc
+14813 * * * * * * * 44dd e4939d,ee97a0 44dd,e5e0 000044dd,0000e5e0 92bd * * 92bd * * 92bd
+14814 * * * * * * * e5e1 f0a092a3,ee97a1 d841dca3,e5e1 000204a3,0000e5e1 92be * * 92be * * 92be
+14815 * * * * * * * e5e2 f0a09292,ee97a2 d841dc92,e5e2 00020492,0000e5e2 92bf * * 92bf * * 92bf
+14816 * * * * * * * e5e3 f0a09291,ee97a3 d841dc91,e5e3 00020491,0000e5e3 92c0 * * 92c0 * * 92c0
+14817 * * * * * * * 8d7a e8b5ba,ee97a4 8d7a,e5e4 00008d7a,0000e5e4 92c1 * * 92c1 * * 92c1
+14818 * * * * * * * e5e5 f0a8aa9c,ee97a5 d862de9c,e5e5 00028a9c,0000e5e5 92c2 * * 92c2 * * 92c2
+14819 * * * * * * * e5e6 f0a09c8e,ee97a6 d841df0e,e5e6 0002070e,0000e5e6 92c3 * * 92c3 * * 92c3
+14820 * * * * * * * 5259 e58999,ee97a7 5259,e5e7 00005259,0000e5e7 92c4 * * 92c4 * * 92c4
+14821 * * * * * * * 52a4 e58aa4,ee97a8 52a4,e5e8 000052a4,0000e5e8 92c5 * * 92c5 * * 92c5
+14822 * * * * * * * e5e9 f0a0a1b3,ee97a9 d842dc73,e5e9 00020873,0000e5e9 92c6 * * 92c6 * * 92c6
+14823 * * * * * * * 52e1 e58ba1,ee97aa 52e1,e5ea 000052e1,0000e5ea 92c7 fbb3 8eb4 92c7 * * 92c7
+14824 * * * * * * * 936e * * * * * * 92c8 * * *
+14825 * * * * * * * 467a e499ba,ee97ac 467a,e5ec 0000467a,0000e5ec 92c9 * * 92c9 * * 92c9
+14826 * * * * * * * 718c e7868c,ee97ad 718c,e5ed 0000718c,0000e5ed 92ca * * 92ca c85a fbca 92ca
+14827 * * * * * * * e5ee f0a48e8c,ee97ae d850df8c,e5ee 0002438c,0000e5ee 92cb * * 92cb * * 92cb
+14828 * * * * * * * e5ef f0a0b0a0,ee97af d843dc20,e5ef 00020c20,0000e5ef 92cc * * 92cc * * 92cc
+14829 * * * * * * * e5f0 f0a4a6ac,ee97b0 d852ddac,e5f0 000249ac,0000e5f0 92cd * * 92cd * * 92cd
+14830 * * * * * * * e5f1 f0a183a4,ee97b1 d844dce4,e5f1 000210e4,0000e5f1 92ce * * 92ce * * 92ce
+14831 * * * * * * * 69d1 e6a791,ee97b2 69d1,e5f2 000069d1,0000e5f2 92cf * * 92cf * * 92cf
+14832 * * * * * * * e5f3 f0a0b89d,ee97b3 d843de1d,e5f3 00020e1d,0000e5f3 92d0 * * 92d0 * * 92d0
+14833 * * * * * * * * * * * * * * 92d1 * * *
+14834 * * * * * * * 3ede e3bb9e,ee97b5 3ede,e5f5 00003ede,0000e5f5 92d2 * * 92d2 * * 92d2
+14835 * * * * * * * 7499 e79299,ee97b6 7499,e5f6 00007499,0000e5f6 92d3 * * 92d3 * * 92d3
+14836 * * * * * * * 7414 e79094,ee97b7 7414,e5f7 00007414,0000e5f7 92d4 * * 92d4 * * 92d4
+14837 * * * * * * * 7456 e79196,ee97b8 7456,e5f8 00007456,0000e5f8 92d5 * * 92d5 * * 92d5
+14838 * * * * * * * 7398 e78e98,ee97b9 7398,e5f9 00007398,0000e5f9 92d6 * * 92d6 * * 92d6
+14839 * * * * * * * 4b8e e4ae8e,ee97ba 4b8e,e5fa 00004b8e,0000e5fa 92d7 * * 92d7 * * 92d7
+14840 * * * * * * * e5fb f0a4aabc,ee97bb d852debc,e5fb 00024abc,0000e5fb 92d8 * * 92d8 * * 92d8
+14841 * * * * * * * e5fc f0a4828d,ee97bc d850dc8d,e5fc 0002408d,0000e5fc 92d9 * * 92d9 * * 92d9
+14842 * * * * * * * 53d0 e58f90,ee97bd 53d0,e5fd 000053d0,0000e5fd 92da * * 92da * * 92da
+14843 * * * * * * * 3584 e39684,ee97be 3584,e5fe 00003584,0000e5fe 92db * * 92db * * 92db
+14844 * * * * * * * 720f e7888f,ee97bf 720f,e5ff 0000720f,0000e5ff 92dc * * 92dc * * 92dc
+14845 * * * * * * * e600 f0a48389,ee9880 d850dcc9,e600 000240c9,0000e600 92dd * * 92dd * * 92dd
+14846 * * * * * * * 55b4 e596b4,ee9881 55b4,e601 000055b4,0000e601 92de * * 92de * * 92de
+14847 * * * * * * * e602 f0a08d85,ee9882 d840df45,e602 00020345,0000e602 92df * * 92df * * 92df
+14848 * * * * * * * 54cd e5938d,ee9883 54cd,e603 000054cd,0000e603 92e0 fa67 * 92e0 c76b faa4 92e0
+14849 * * * * * * * e604 f0a0af86,ee9884 d842dfc6,e604 00020bc6,0000e604 92e1 * * 92e1 * * 92e1
+14850 * * * * * * * 571d e59c9d,ee9885 571d,e605 0000571d,0000e605 92e2 * * 92e2 * * 92e2
+14851 * * * * * * * 925d e9899d,ee9886 925d,e606 0000925d,0000e606 92e3 * * 92e3 * * 92e3
+14852 * * * * * * * 96f4 e99bb4,ee9887 96f4,e607 000096f4,0000e607 92e4 * * 92e4 * * 92e4
+14853 * * * * * * * 57dd e59f9d,ee9889 57dd,e609 000057dd,0000e609 92e6 fbed 91a5 92e6 * * 92e6
+14854 * * * * * * * 578d e59e8d,ee988a 578d,e60a 0000578d,0000e60a 92e7 * * 92e7 * * 92e7
+14855 * * * * * * * 577f e59dbf,ee988b 577f,e60b 0000577f,0000e60b 92e8 * * 92e8 * * 92e8
+14856 * * * * * * * 363e e398be,ee988c 363e,e60c 0000363e,0000e60c 92e9 * * 92e9 * * 92e9
+14857 * * * * * * * 58cb e5a38b,ee988d 58cb,e60d 000058cb,0000e60d 92ea * * 92ea * * 92ea
+14858 * * * * * * * 5a99 e5aa99,ee988e 5a99,e60e 00005a99,0000e60e 92eb * * 92eb * * 92eb
+14859 * * * * * * * e60f f0a8a986,ee988f d862de46,e60f 00028a46,0000e60f 92ec * * 92ec * * 92ec
+14860 * * * * * * * e610 f0a19bba,ee9890 d845defa,e610 000216fa,0000e610 92ed * * 92ed * * 92ed
+14861 * * * * * * * e611 f0a19daf,ee9891 d845df6f,e611 0002176f,0000e611 92ee * * 92ee * * 92ee
+14862 * * * * * * * e612 f0a19c90,ee9892 d845df10,e612 00021710,0000e612 92ef * * 92ef * * 92ef
+14863 * * * * * * * 5a2c e5a8ac,ee9893 5a2c,e613 00005a2c,0000e613 92f0 * * 92f0 * * 92f0
+14864 * * * * * * * 59b8 e5a6b8,ee9894 59b8,e614 000059b8,0000e614 92f1 * * 92f1 * * 92f1
+14865 * * * * * * * 5a7e e5a9be,ee9896 5a7e,e616 00005a7e,0000e616 92f3 * * 92f3 * * 92f3
+14866 * * * * * * * * e5ab8f,ee9897 5acf,e617 00005acf,0000e617 92f4 * * 92f4 * * 92f4
+14867 * * * * * * * 5a12 e5a892,ee9898 5a12,e618 00005a12,0000e618 92f5 * * 92f5 * * 92f5
+14868 * * * * * * * e619 f0a5a586,ee9899 d856dd46,e619 00025946,0000e619 92f6 * * 92f6 * * 92f6
+14869 * * * * * * * e61a f0a1a7b3,ee989a d846ddf3,e61a 000219f3,0000e61a 92f7 * * 92f7 * * 92f7
+14870 * * * * * * * e61b f0a1a1a1,ee989b d846dc61,e61b 00021861,0000e61b 92f8 * * 92f8 * * 92f8
+14871 * * * * * * * e61c f0a48a95,ee989c d850de95,e61c 00024295,0000e61c 92f9 * * 92f9 * * 92f9
+14872 * * * * * * * 36f5 e39bb5,ee989d 36f5,e61d 000036f5,0000e61d 92fa * * 92fa * * 92fa
+14873 * * * * * * * 6d05 e6b485,ee989e 6d05,e61e 00006d05,0000e61e 92fb * * 92fb * * 92fb
+14874 * * * * * * * 7443 e79183,ee989f 7443,e61f 00007443,0000e61f 92fc * * 92fc * * 92fc
+14875 * * * * * * * 5a21 e5a8a1,ee98a0 5a21,e620 00005a21,0000e620 92fd * * 92fd * * 92fd
+14876 * * * * * * * e621 f0a5ba83,ee98a1 d857de83,e621 00025e83,0000e621 92fe * * 92fe * * 92fe
+14877 * * * * * * * 5a81 e5aa81,ee98a2 5a81,e622 00005a81,0000e622 9340 * * 9340 c7cd faf2 9340
+14878 * * * * * * * e623 f0a8af97,ee98a3 d862dfd7,e623 00028bd7,0000e623 9341 * * 9341 * * 9341
+14879 * * * * * * * e624 f0a09093,ee98a4 d841dc13,e624 00020413,0000e624 9342 * * 9342 * * 9342
+14880 * * * * * * * 93e0 e98fa0,ee98a5 93e0,e625 000093e0,0000e625 9343 * * 9343 * * 9343
+14881 * * * * * * * 748c e7928c,ee98a6 748c,e626 0000748c,0000e626 9344 * * 9344 * * 9344
+14882 * * * * * * * e627 f0a18c83,ee98a7 d844df03,e627 00021303,0000e627 9345 * * 9345 * * 9345
+14883 * * * * * * * 7105 e78485,ee98a8 7105,e628 00007105,0000e628 9346 * * 9346 * * 9346
+14884 * * * * * * * 4972 e4a5b2,ee98a9 4972,e629 00004972,0000e629 9347 * * 9347 * * 9347
+14885 * * * * * * * 9408 e99088,ee98aa 9408,e62a 00009408,0000e62a 9348 * * 9348 * * 9348
+14886 * * * * * * * e62b f0a8a7bb,ee98ab d862ddfb,e62b 000289fb,0000e62b 9349 * * 9349 * * 9349
+14887 * * * * * * * 93bd e98ebd,ee98ac 93bd,e62c 000093bd,0000e62c 934a * * 934a * * 934a
+14888 * * * * * * * 37a0 e39ea0,ee98ad 37a0,e62d 000037a0,0000e62d 934b * * 934b * * 934b
+14889 * * * * * * * 5c1e e5b09e,ee98ae 5c1e,e62e 00005c1e,0000e62e 934c * * 934c * * 934c
+14890 * * * * * * * 5c9e e5b29e,ee98af 5c9e,e62f 00005c9e,0000e62f 934d * * 934d * * 934d
+14891 * * * * * * * 5e5e e5b99e,ee98b0 5e5e,e630 00005e5e,0000e630 934e fc4c 91ae 934e * fb48 934e
+14892 * * * * * * * 5e48 e5b988,ee98b1 5e48,e631 00005e48,0000e631 934f * * 934f * * 934f
+14893 * * * * * * * e632 f0a1a696,ee98b2 d846dd96,e632 00021996,0000e632 9350 * * 9350 * * 9350
+14894 * * * * * * * e633 f0a1a5bc,ee98b3 d846dd7c,e633 0002197c,0000e633 9351 * * 9351 * * 9351
+14895 * * * * * * * e634 f0a3abae,ee98b4 d84edeee,e634 00023aee,0000e634 9352 * * 9352 * * 9352
+14896 * * * * * * * 5ecd e5bb8d,ee98b5 5ecd,e635 00005ecd,0000e635 9353 fc54 8faf 9353 * fb4d 9353
+14897 * * * * * * * 5b4f e5ad8f,ee98b6 5b4f,e636 00005b4f,0000e636 9354 * * 9354 * * 9354
+14898 * * * * * * * e637 ee98b7,f0a1a483 d846dd03,e637 0000e637,00021903 9355 * * 9355 * * 9355
+14899 * * * * * * * e638 ee98b8,f0a1a484 d846dd04,e638 0000e638,00021904 9356 * * 9356 * * 9356
+14900 * * * * * * * 3701 e39c81,ee98b9 3701,e639 00003701,0000e639 9357 * * 9357 * * 9357
+14901 * * * * * * * e63a f0a1a2a0,ee98ba d846dca0,e63a 000218a0,0000e63a 9358 * * 9358 * * 9358
+14902 * * * * * * * 36dd e39b9d,ee98bb 36dd,e63b 000036dd,0000e63b 9359 * * 9359 * * 9359
+14903 * * * * * * * e63c f0a19bbe,ee98bc d845defe,e63c 000216fe,0000e63c 935a * * 935a * * 935a
+14904 * * * * * * * 36d3 e39b93,ee98bd 36d3,e63d 000036d3,0000e63d 935b * * 935b * * 935b
+14905 * * * * * * * 812a e884aa,ee98be 812a,e63e 0000812a,0000e63e 935c * * 935c * * 935c
+14906 * * * * * * * e63f f0a8a987,ee98bf d862de47,e63f 00028a47,0000e63f 935d * * 935d * * 935d
+14907 * * * * * * * e640 f0a1b6ba,ee9980 d847ddba,e640 00021dba,0000e640 935e * * 935e * * 935e
+14908 * * * * * * * e641 f0a391b2,ee9981 d84ddc72,e641 00023472,0000e641 935f * * 935f * * 935f
+14909 * * * * * * * e642 f0a8a6a8,ee9982 d862dda8,e642 000289a8,0000e642 9360 * * 9360 * * 9360
+14910 * * * * * * * 5f0c e5bc8c,eeb7b4,ee9983 5f0c,edf4,e643 00005f0c,0000edf4,0000e643 9fd8,9361 * * 9361 * * 9fd8,9361
+14911 * * * * * * * 5f0e e5bc8e,ee9984 5f0e,e644 00005f0e,0000e644 9362 * * 9362 * * 9362
+14912 * * * * * * * e645 f0a1a4a7,ee9985 d846dd27,e645 00021927,0000e645 9363 * * 9363 * * 9363
+14913 * * * * * * * e646 f0a19eab,ee9986 d845dfab,e646 000217ab,0000e646 9364 * * 9364 * * 9364
+14914 * * * * * * * 5a6b e5a9ab,ee9987 5a6b,e647 00005a6b,0000e647 9365 * * 9365 * * 9365
+14915 * * * * * * * e648 f0a19cbb,ee9988 d845df3b,e648 0002173b,0000e648 9366 * * 9366 * * 9366
+14916 * * * * * * * 5b44 e5ad84,ee9989 5b44,e649 00005b44,0000e649 9367 * * 9367 * * 9367
+14917 * * * * * * * e64b f0a797bd,ee998b d85dddfd,e64b 000275fd,0000e64b 9369 * * 9369 * * 9369
+14918 * * * * * * * 8860 e8a1a0,ee998c 8860,e64c 00008860,0000e64c 936a * * 936a * * 936a
+14919 * * * * * * * 607e e681be,ee998d 607e,e64d 0000607e,0000e64d 936b * * 936b * * 936b
+14920 * * * * * * * e64e f0a2a1a0,ee998e d84adc60,e64e 00022860,0000e64e 936c * * 936c * * 936c
+14921 * * * * * * * e64f f0a298ab,ee998f d849de2b,e64f 0002262b,0000e64f 936d * * 936d * * 936d
+14922 * * * * * * * 5fdb e5bf9b,ee9990 5fdb,e650 00005fdb,0000e650 936e * * 936e * * 936e
+14923 * * * * * * * 3eb8 e3bab8,ee9991 3eb8,e651 00003eb8,0000e651 936f * * 936f * * 936f
+14924 * * * * * * * e652 f0a296af,ee9992 d849ddaf,e652 000225af,0000e652 9370 * * 9370 * * 9370
+14925 * * * * * * * e653 f0a296be,ee9993 d849ddbe,e653 000225be,0000e653 9371 * * 9371 * * 9371
+14926 * * * * * * * e654 f0a98288,ee9994 d864dc88,e654 00029088,0000e654 9372 * * 9372 * * 9372
+14927 * * * * * * * e655 f0a6bdb3,ee9995 d85bdf73,e655 00026f73,0000e655 9373 * * 9373 * * 9373
+14928 * * * * * * * 61c0 e68780,ee9996 61c0,e656 000061c0,0000e656 9374 * * 9374 * * 9374
+14929 * * * * * * * e657 f0a080be,ee9997 d840dc3e,e657 0002003e,0000e657 9375 * * 9375 * * 9375
+14930 * * * * * * * e658 f0a08186,ee9998 d840dc46,e658 00020046,0000e658 9376 * * 9376 * * 9376
+14931 * * * * * * * e659 f0a2989b,ee9999 d849de1b,e659 0002261b,0000e659 9377 * * 9377 * * 9377
+14932 * * * * * * * 6199 e68699,ee999a 6199,e65a 00006199,0000e65a 9378 fc73 91b7 9378 * * 9378
+14933 * * * * * * * 6198 e68698,ee999b 6198,e65b 00006198,0000e65b 9379 * * 9379 * * 9379
+14934 * * * * * * * 6075 e681b5,ee999c 6075,e65c 00006075,0000e65c 937a * * 937a * * 937a
+14935 * * * * * * * e65d f0a2b29b,ee999d d84bdc9b,e65d 00022c9b,0000e65d 937b * * 937b * * 937b
+14936 * * * * * * * e65e f0a2b487,ee999e d84bdd07,e65e 00022d07,0000e65e 937c * * 937c * * 937c
+14937 * * * * * * * e65f f0a49b94,ee999f d851ded4,e65f 000246d4,0000e65f 937d * * 937d * * 937d
+14938 * * * * * * * e660 f0a9858d,ee99a0 d864dd4d,e660 0002914d,0000e660 937e * * 937e * * 937e
+14939 * * * * * * * 6471 e691b1,ee99a1 6471,e661 00006471,0000e661 93a1 * * 93a1 * * 93a1
+14940 * * * * * * * e662 f0a499a5,ee99a2 d851de65,e662 00024665,0000e662 93a2 * * 93a2 * * 93a2
+14941 * * * * * * * e663 f0a2adaa,ee99a3 d84adf6a,e663 00022b6a,0000e663 93a3 * * 93a3 * * 93a3
+14942 * * * * * * * 3a29 e3a8a9,ee99a4 3a29,e664 00003a29,0000e664 93a4 * * 93a4 * * 93a4
+14943 * * * * * * * e665 f0a2aca2,ee99a5 d84adf22,e665 00022b22,0000e665 93a5 * * 93a5 * * 93a5
+14944 * * * * * * * e666 f0a39190,ee99a6 d84ddc50,e666 00023450,0000e666 93a6 * * 93a6 * * 93a6
+14945 * * * * * * * e667 f0a9a3aa,ee99a7 d866dcea,e667 000298ea,0000e667 93a7 * * 93a7 * * 93a7
+14946 * * * * * * * e668 f0a2b9b8,ee99a8 d84bde78,e668 00022e78,0000e668 93a8 * * 93a8 * * 93a8
+14947 * * * * * * * 6337 e68cb7,ee99a9 6337,e669 00006337,0000e669 93a9 * * 93a9 * * 93a9
+14948 * * * * * * * 64b6 e692b6,ee99ab 64b6,e66b 000064b6,0000e66b 93ab * * 93ab * * 93ab
+14949 * * * * * * * 6331 e68cb1,ee99ac 6331,e66c 00006331,0000e66c 93ac * * 93ac * * 93ac
+14950 * * * * * * * 63d1 e68f91,ee99ad 63d1,e66d 000063d1,0000e66d 93ad fa58 * 93ad c7f1 fb6b 93ad
+14951 * * * * * * * e66e f0a4a7a3,ee99ae d852dde3,e66e 000249e3,0000e66e 93ae * * 93ae * * 93ae
+14952 * * * * * * * e66f f0a2b5a7,ee99af d84bdd67,e66f 00022d67,0000e66f 93af * * 93af * * 93af
+14953 * * * * * * * 62a4 e68aa4,ee99b0 62a4,e670 000062a4,0000e670 93b0 * * 93b0 * * 93b0
+14954 * * * * * * * e671 f0a2b2a1,ee99b1 d84bdca1,e671 00022ca1,0000e671 93b1 * * 93b1 * * 93b1
+14955 * * * * * * * 643b e690bb,ee99b2 643b,e672 0000643b,0000e672 93b2 * * 93b2 * * 93b2
+14956 * * * * * * * 656b e695ab,ee99b3 656b,e673 0000656b,0000e673 93b3 * * 93b3 * * 93b3
+14957 * * * * * * * 6972 e6a5b2,ee99b4 6972,e674 00006972,0000e674 93b4 * * 93b4 * * 93b4
+14958 * * * * * * * 3bf4 e3afb4,ee99b5 3bf4,e675 00003bf4,0000e675 93b5 * * 93b5 * * 93b5
+14959 * * * * * * * e676 f0a3828e,ee99b6 d84cdc8e,e676 0002308e,0000e676 93b6 * * 93b6 * * 93b6
+14960 * * * * * * * e677 f0a38aad,ee99b7 d84cdead,e677 000232ad,0000e677 93b7 * * 93b7 * * 93b7
+14961 * * * * * * * e678 f0a4a689,ee99b8 d852dd89,e678 00024989,0000e678 93b8 * * 93b8 * * 93b8
+14962 * * * * * * * e679 f0a38aab,ee99b9 d84cdeab,e679 000232ab,0000e679 93b9 * * 93b9 * * 93b9
+14963 * * * * * * * 550d e5948d,ee99ba 550d,e67a 0000550d,0000e67a 93ba * * 93ba * * 93ba
+14964 * * * * * * * e67b f0a38ba0,ee99bb d84cdee0,e67b 000232e0,0000e67b 93bb * * 93bb * * 93bb
+14965 * * * * * * * e67c f0a1a399,ee99bc d846dcd9,e67c 000218d9,0000e67c 93bc * * 93bc * * 93bc
+14966 * * * * * * * e67d f0a990bf,ee99bd d865dc3f,e67d 0002943f,0000e67d 93bd * * 93bd * * 93bd
+14967 * * * * * * * 66ce e69b8e,ee99be 66ce,e67e 000066ce,0000e67e 93be * * 93be * * 93be
+14968 * * * * * * * e67f f0a38a89,ee99bf d84cde89,e67f 00023289,0000e67f 93bf * * 93bf * * 93bf
+14969 * * * * * * * e680 f0a386b3,ee9a80 d84cddb3,e680 000231b3,0000e680 93c0 * * 93c0 * * 93c0
+14970 * * * * * * * 3ae0 e3aba0,ee9a81 3ae0,e681 00003ae0,0000e681 93c1 * * 93c1 * * 93c1
+14971 * * * * * * * e683 f0a59684,ee9a83 d855dd84,e683 00025584,0000e683 93c3 * * 93c3 * * 93c3
+14972 * * * * * * * e684 f0a8aca2,ee9a84 d862df22,e684 00028b22,0000e684 93c4 * * 93c4 * * 93c4
+14973 * * * * * * * e685 f0a5968f,ee9a85 d855dd8f,e685 0002558f,0000e685 93c5 * * 93c5 * * 93c5
+14974 * * * * * * * e686 f0a19bbc,ee9a86 d845defc,e686 000216fc,0000e686 93c6 * * 93c6 * * 93c6
+14975 * * * * * * * e687 f0a5959b,ee9a87 d855dd5b,e687 0002555b,0000e687 93c7 * * 93c7 * * 93c7
+14976 * * * * * * * e688 f0a590a5,ee9a88 d855dc25,e688 00025425,0000e688 93c8 * * 93c8 * * 93c8
+14977 * * * * * * * 78ee e7a3ae,ee9a89 78ee,e689 000078ee,0000e689 93c9 * * 93c9 * * 93c9
+14978 * * * * * * * e68a f0a38483,ee9a8a d84cdd03,e68a 00023103,0000e68a 93ca * * 93ca * * 93ca
+14979 * * * * * * * e68b f0a1a0aa,ee9a8b d846dc2a,e68b 0002182a,0000e68b 93cb * * 93cb * * 93cb
+14980 * * * * * * * e68c f0a388b4,ee9a8c d84cde34,e68c 00023234,0000e68c 93cc * * 93cc * * 93cc
+14981 * * * * * * * 3464 e391a4,ee9a8d 3464,e68d 00003464,0000e68d 93cd * * 93cd * * 93cd
+14982 * * * * * * * e68e f0a3888f,ee9a8e d84cde0f,e68e 0002320f,0000e68e 93ce * * 93ce * * 93ce
+14983 * * * * * * * e68f f0a38682,ee9a8f d84cdd82,e68f 00023182,0000e68f 93cf * * 93cf * * 93cf
+14984 * * * * * * * e690 f0a48b89,ee9a90 d850dec9,e690 000242c9,0000e690 93d0 * * 93d0 * * 93d0
+14985 * * * * * * * 668e e69a8e,ee9a91 668e,e691 0000668e,0000e691 93d1 fca8 8fbe 93d1 * * 93d1
+14986 * * * * * * * e692 f0a6b4a4,ee9a92 d85bdd24,e692 00026d24,0000e692 93d2 * * 93d2 * * 93d2
+14987 * * * * * * * 666b e699ab,ee9a93 666b,e693 0000666b,0000e693 93d3 * * 93d3 * * 93d3
+14988 * * * * * * * 4b93 e4ae93,ee9a94 4b93,e694 00004b93,0000e694 93d4 * * 93d4 * * 93d4
+14989 * * * * * * * 6630 e698b0,ee9a95 6630,e695 00006630,0000e695 93d5 * * 93d5 * * 93d5
+14990 * * * * * * * e696 f0a7a1b0,ee9a96 d85edc70,e696 00027870,0000e696 93d6 * * 93d6 * * 93d6
+14991 * * * * * * * e697 f0a1b7ab,ee9a97 d847ddeb,e697 00021deb,0000e697 93d7 * * 93d7 * * 93d7
+14992 * * * * * * * 6663 e699a3,ee9a98 6663,e698 00006663,0000e698 93d8 * * 93d8 * * 93d8
+14993 * * * * * * * e699 f0a38b92,ee9a99 d84cded2,e699 000232d2,0000e699 93d9 * * 93d9 * * 93d9
+14994 * * * * * * * e69a f0a38ba1,ee9a9a d84cdee1,e69a 000232e1,0000e69a 93da * * 93da * * 93da
+14995 * * * * * * * 661e e6989e,ee9a9b 661e,e69b 0000661e,0000e69b 93db * * 93db * * 93db
+14996 * * * * * * * e69c f0a5a1b2,ee9a9c d856dc72,e69c 00025872,0000e69c 93dc * * 93dc * * 93dc
+14997 * * * * * * * 38d1 e3a391,ee9a9d 38d1,e69d 000038d1,0000e69d 93dd * * 93dd * * 93dd
+14998 * * * * * * * e69e f0a3a0ba,ee9a9e d84edc3a,e69e 0002383a,0000e69e 93de * * 93de * * 93de
+14999 * * * * * * * e69f f0a39ebc,ee9a9f d84ddfbc,e69f 000237bc,0000e69f 93df * * 93df * * 93df
+15000 * * * * * * * 3b99 e3ae99,ee9aa0 3b99,e6a0 00003b99,0000e6a0 93e0 * * 93e0 * * 93e0
+15001 * * * * * * * e6a1 f0a39ea2,ee9aa1 d84ddfa2,e6a1 000237a2,0000e6a1 93e1 * * 93e1 * * 93e1
+15002 * * * * * * * e6a2 f0a38fbe,ee9aa2 d84cdffe,e6a2 000233fe,0000e6a2 93e2 * * 93e2 * * 93e2
+15003 * * * * * * * 74d0 e79390,ee9aa3 74d0,e6a3 000074d0,0000e6a3 93e3 * * 93e3 * * 93e3
+15004 * * * * * * * 3b96 e3ae96,ee9aa4 3b96,e6a4 00003b96,0000e6a4 93e4 * * 93e4 * * 93e4
+15005 * * * * * * * e6a6 f0a498aa,ee9aa6 d851de2a,e6a6 0002462a,0000e6a6 93e6 * * 93e6 * * 93e6
+15006 * * * * * * * 68b6 e6a2b6,ee9aa7 68b6,e6a7 000068b6,0000e6a7 93e7 fcb3 8fd6 93e7 * * 93e7
+15007 * * * * * * * * * * * * * * 93e8 * * *
+15008 * * * * * * * 3bc4 e3af84,ee9aa9 3bc4,e6a9 00003bc4,0000e6a9 93e9 * * 93e9 * * 93e9
+15009 * * * * * * * 6abe e6aabe,ee9aaa 6abe,e6aa 00006abe,0000e6aa 93ea * * 93ea * * 93ea
+15010 * * * * * * * e6ac f0a39f95,ee9aac d84ddfd5,e6ac 000237d5,0000e6ac 93ec * * 93ec * * 93ec
+15011 * * * * * * * e6ad f0a49287,ee9aad d851dc87,e6ad 00024487,0000e6ad 93ed * * 93ed * * 93ed
+15012 * * * * * * * 6a33 e6a8b3,ee9aae 6a33,e6ae 00006a33,0000e6ae 93ee * * 93ee * * 93ee
+15013 * * * * * * * 6a52 e6a992,ee9aaf 6a52,e6af 00006a52,0000e6af 93ef fcc7 91c8 93ef * * 93ef
+15014 * * * * * * * 6ac9 e6ab89,ee9ab0 6ac9,e6b0 00006ac9,0000e6b0 93f0 * * 93f0 * * 93f0
+15015 * * * * * * * 6b05 e6ac85,ee9ab1 6b05,e6b1 00006b05,0000e6b1 93f1 * * 93f1 * * 93f1
+15016 * * * * * * * e6b2 f0a1a492,ee9ab2 d846dd12,e6b2 00021912,0000e6b2 93f2 * * 93f2 * * 93f2
+15017 * * * * * * * 6511 e69491,ee9ab3 6511,e6b3 00006511,0000e6b3 93f3 * * 93f3 * * 93f3
+15018 * * * * * * * 6898 e6a298,ee9ab4 6898,e6b4 00006898,0000e6b4 93f4 fa7a 91be 93f4 c847 fbad 93f4
+15019 * * * * * * * 6a4c e6a98c,ee9ab5 6a4c,e6b5 00006a4c,0000e6b5 93f5 * * 93f5 * * 93f5
+15020 * * * * * * * 3bd7 e3af97,ee9ab6 3bd7,e6b6 00003bd7,0000e6b6 93f6 * * 93f6 * * 93f6
+15021 * * * * * * * 6a7a e6a9ba,ee9ab7 6a7a,e6b7 00006a7a,0000e6b7 93f7 fcc6 8fc8 93f7 * * 93f7
+15022 * * * * * * * 6b57 e6ad97,ee9ab8 6b57,e6b8 00006b57,0000e6b8 93f8 * * 93f8 * * 93f8
+15023 * * * * * * * e6b9 f0a3bf80,ee9ab9 d84fdfc0,e6b9 00023fc0,0000e6b9 93f9 * * 93f9 * * 93f9
+15024 * * * * * * * e6ba f0a3b29a,ee9aba d84fdc9a,e6ba 00023c9a,0000e6ba 93fa * * 93fa * * 93fa
+15025 * * * * * * * 93a0 e98ea0,ee9abb 93a0,e6bb 000093a0,0000e6bb 93fb * * 93fb * * 93fb
+15026 * * * * * * * 92f2 e98bb2,ee9abc 92f2,e6bc 000092f2,0000e6bc 93fc * * 93fc * * 93fc
+15027 * * * * * * * e6bd f0a8afaa,ee9abd d862dfea,e6bd 00028bea,0000e6bd 93fd * * 93fd * * 93fd
+15028 * * * * * * * e6be f0a8ab8b,ee9abe d862decb,e6be 00028acb,0000e6be 93fe * * 93fe * * 93fe
+15029 * * * * * * * 9289 e98a89,ee9abf 9289,e6bf 00009289,0000e6bf 9440 * * 9440 * * 9440
+15030 * * * * * * * e6c0 f0a8809e,ee9b80 d860dc1e,e6c0 0002801e,0000e6c0 9441 * * 9441 * * 9441
+15031 * * * * * * * e6c1 f0a8a79c,ee9b81 d862dddc,e6c1 000289dc,0000e6c1 9442 * * 9442 * * 9442
+15032 * * * * * * * 9467 e991a7,ee9b82 9467,e6c2 00009467,0000e6c2 9443 * * 9443 * * 9443
+15033 * * * * * * * 6da5 e6b6a5,ee9b83 6da5,e6c3 00006da5,0000e6c3 9444 * * 9444 * * 9444
+15034 * * * * * * * 6f0b e6bc8b,ee9b84 6f0b,e6c4 00006f0b,0000e6c4 9445 * * 9445 * * 9445
+15035 * * * * * * * * * * * * * * 9447 * * *
+15036 * * * * * * * e6c7 f0a3bdbf,ee9b87 d84fdf7f,e6c7 00023f7f,0000e6c7 9448 * * 9448 * * 9448
+15037 * * * * * * * 3d8f e3b68f,ee9b88 3d8f,e6c8 00003d8f,0000e6c8 9449 * * 9449 * * 9449
+15038 * * * * * * * 6e04 e6b884,ee9b89 6e04,e6c9 00006e04,0000e6c9 944a * * 944a * * 944a
+15039 * * * * * * * e6ca f0a480bc,ee9b8a d850dc3c,e6ca 0002403c,0000e6ca 944b * * 944b * * 944b
+15040 * * * * * * * 5a3d e5a8bd,ee9b8b 5a3d,e6cb 00005a3d,0000e6cb 944c * * 944c * * 944c
+15041 * * * * * * * 6e0a e6b88a,ee9b8c 6e0a,e6cc 00006e0a,0000e6cc 944d * * 944d * * 944d
+15042 * * * * * * * 5847 e5a187,ee9b8d 5847,e6cd 00005847,0000e6cd 944e * * 944e * * 944e
+15043 * * * * * * * 6d24 e6b4a4,ee9b8e 6d24,e6ce 00006d24,0000e6ce 944f fcd0 8ff0 944f * * 944f
+15044 * * * * * * * 7842 e7a182,ee9b8f 7842,e6cf 00007842,0000e6cf 9450 * * 9450 * * 9450
+15045 * * * * * * * 713b e784bb,ee9b90 713b,e6d0 0000713b,0000e6d0 9451 * * 9451 * * 9451
+15046 * * * * * * * e6d1 f0a48c9a,ee9b91 d850df1a,e6d1 0002431a,0000e6d1 9452 * * 9452 * * 9452
+15047 * * * * * * * e6d2 f0a489b6,ee9b92 d850de76,e6d2 00024276,0000e6d2 9453 * * 9453 * * 9453
+15048 * * * * * * * 70f1 e783b1,ee9b93 70f1,e6d3 000070f1,0000e6d3 9454 * * 9454 c858 fbc8 9454
+15049 * * * * * * * 7250 e78990,eeba9d,ee9b94 7250,ee9d,e6d4 00007250,0000ee9d,0000e6d4 a0e4,9455 fcea 90d6 9455 * * a0e4,9455
+15050 * * * * * * * 7287 e78a87,ee9b95 7287,e6d5 00007287,0000e6d5 9456 fcec 8eb0 9456 * * 9456
+15051 * * * * * * * 7294 e78a94,ee9b96 7294,e6d6 00007294,0000e6d6 9457 * * 9457 * * 9457
+15052 * * * * * * * e6d7 f0a49e8f,ee9b97 d851df8f,e6d7 0002478f,0000e6d7 9458 * * 9458 * * 9458
+15053 * * * * * * * e6d8 f0a49ca5,ee9b98 d851df25,e6d8 00024725,0000e6d8 9459 * * 9459 * * 9459
+15054 * * * * * * * 5179 e585b9,ee9b99 5179,e6d9 00005179,0000e6d9 945a * * 945a * * 945a
+15055 * * * * * * * e6da f0a4aaa4,ee9b9a d852dea4,e6da 00024aa4,0000e6da 945b * * 945b * * 945b
+15056 * * * * * * * e6db f0a097ab,ee9b9b d841ddeb,e6db 000205eb,0000e6db 945c * * 945c * * 945c
+15057 * * * * * * * 747a e791ba,ee9b9c 747a,e6dc 0000747a,0000e6dc 945d * * 945d * * 945d
+15058 * * * * * * * e6dd f0a3bbb8,ee9b9d d84fdef8,e6dd 00023ef8,0000e6dd 945e * * 945e * * 945e
+15059 * * * * * * * e6de f0a3999f,ee9b9e d84dde5f,e6de 0002365f,0000e6de 945f * * 945f * * 945f
+15060 * * * * * * * e6df f0a4a98a,ee9b9f d852de4a,e6df 00024a4a,0000e6df 9460 * * 9460 * * 9460
+15061 * * * * * * * e6e0 f0a4a497,ee9ba0 d852dd17,e6e0 00024917,0000e6e0 9461 * * 9461 * * 9461
+15062 * * * * * * * e6e1 f0a5bfa1,ee9ba1 d857dfe1,e6e1 00025fe1,0000e6e1 9462 * * 9462 * * 9462
+15063 * * * * * * * 3f06 e3bc86,ee9ba2 3f06,e6e2 00003f06,0000e6e2 9463 * * 9463 * * 9463
+15064 * * * * * * * 3eb1 e3bab1,ee9ba3 3eb1,e6e3 00003eb1,0000e6e3 9464 * * 9464 * * 9464
+15065 * * * * * * * e6e4 f0a4ab9f,ee9ba4 d852dedf,e6e4 00024adf,0000e6e4 9465 * * 9465 * * 9465
+15066 * * * * * * * e6e5 f0a8b0a3,ee9ba5 d863dc23,e6e5 00028c23,0000e6e5 9466 * * 9466 * * 9466
+15067 * * * * * * * e6e6 f0a3bcb5,ee9ba6 d84fdf35,e6e6 00023f35,0000e6e6 9467 * * 9467 * * 9467
+15068 * * * * * * * 60a7 e682a7,ee9ba7 60a7,e6e7 000060a7,0000e6e7 9468 fc67 8fd7 9468 * * 9468
+15069 * * * * * * * 3ef3 e3bbb3,ee9ba8 3ef3,e6e8 00003ef3,0000e6e8 9469 * * 9469 * * 9469
+15070 * * * * * * * 74cc e7938c,ee9ba9 74cc,e6e9 000074cc,0000e6e9 946a * * 946a * * 946a
+15071 * * * * * * * 743c e790bc,ee9baa 743c,e6ea 0000743c,0000e6ea 946b faa5 8f76 946b c86c fbe0 946b
+15072 * * * * * * * 9387 e98e87,ee9bab 9387,e6eb 00009387,0000e6eb 946c * * 946c * * 946c
+15073 * * * * * * * 7437 e790b7,ee9bac 7437,e6ec 00007437,0000e6ec 946d * * 946d * * 946d
+15074 * * * * * * * 449f e4929f,ee9bad 449f,e6ed 0000449f,0000e6ed 946e * * 946e * * 946e
+15075 * * * * * * * e6ee f0a6b7aa,ee9bae d85bddea,e6ee 00026dea,0000e6ee 946f * * 946f * * 946f
+15076 * * * * * * * 4551 e49591,ee9baf 4551,e6ef 00004551,0000e6ef 9470 * * 9470 * * 9470
+15077 * * * * * * * 7583 e79683,ee9bb0 7583,e6f0 00007583,0000e6f0 9471 * * 9471 * * 9471
+15078 * * * * * * * 3f63 e3bda3,ee9bb1 3f63,e6f1 00003f63,0000e6f1 9472 * * 9472 * * 9472
+15079 * * * * * * * e6f2 f0a4b399,ee9bb2 d853dcd9,e6f2 00024cd9,0000e6f2 9473 * * 9473 * * 9473
+15080 * * * * * * * e6f3 f0a4b486,ee9bb3 d853dd06,e6f3 00024d06,0000e6f3 9474 * * 9474 * * 9474
+15081 * * * * * * * 3f58 e3bd98,ee9bb4 3f58,e6f4 00003f58,0000e6f4 9475 * * 9475 * * 9475
+15082 * * * * * * * 7555 e79595,ee9bb5 7555,e6f5 00007555,0000e6f5 9476 * * 9476 * * 9476
+15083 * * * * * * * 7673 e799b3,ee9bb6 7673,e6f6 00007673,0000e6f6 9477 * * 9477 * * 9477
+15084 * * * * * * * e6f7 f0aa9786,ee9bb7 d869ddc6,e6f7 0002a5c6,0000e6f7 9478 * * 9478 * * 9478
+15085 * * * * * * * * * * * * * * 9479 * * *
+15086 * * * * * * * 7468 e791a8,eeba8e,ee9bb9 7468,ee8e,e6f9 00007468,0000ee8e,0000e6f9 a0d5,947a * * 947a * * a0d5,947a
+15087 * * * * * * * e6fa f0a8ab8c,ee9bba d862decc,e6fa 00028acc,0000e6fa 947b * * 947b * * 947b
+15088 * * * * * * * e6fb f0a4a6ab,ee9bbb d852ddab,e6fb 000249ab,0000e6fb 947c * * 947c * * 947c
+15089 * * * * * * * e6fc f0a4a68e,ee9bbc d852dd8e,e6fc 0002498e,0000e6fc 947d * * 947d * * 947d
+15090 * * * * * * * 3afb e3abbb,ee9bbd 3afb,e6fd 00003afb,0000e6fd 947e * * 947e * * 947e
+15091 * * * * * * * 3dcd e3b78d,ee9bbe 3dcd,e6fe 00003dcd,0000e6fe 94a1 * * 94a1 * * 94a1
+15092 * * * * * * * e6ff f0a4a98e,ee9bbf d852de4e,e6ff 00024a4e,0000e6ff 94a2 * * 94a2 * * 94a2
+15093 * * * * * * * 3eff e3bbbf,ee9c80 3eff,e700 00003eff,0000e700 94a3 * * 94a3 * * 94a3
+15094 * * * * * * * e701 f0a4a785,ee9c81 d852ddc5,e701 000249c5,0000e701 94a4 * * 94a4 * * 94a4
+15095 * * * * * * * e702 f0a4a3b3,ee9c82 d852dcf3,e702 000248f3,0000e702 94a5 * * 94a5 * * 94a5
+15096 * * * * * * * 91fa e987ba,ee9c83 91fa,e703 000091fa,0000e703 94a6 * * 94a6 * * 94a6
+15097 * * * * * * * 5732 e59cb2,ee9c84 5732,e704 00005732,0000e704 94a7 * * 94a7 * * 94a7
+15098 * * * * * * * 9342 e98d82,ee9c85 9342,e705 00009342,0000e705 94a8 * * 94a8 * * 94a8
+15099 * * * * * * * e706 f0a8aba3,ee9c86 d862dee3,e706 00028ae3,0000e706 94a9 * * 94a9 * * 94a9
+15100 * * * * * * * e707 f0a1a1a4,ee9c87 d846dc64,e707 00021864,0000e707 94aa * * 94aa * * 94aa
+15101 * * * * * * * 50df e5839f,ee9c88 50df,e708 000050df,0000e708 94ab * * 94ab * * 94ab
+15102 * * * * * * * e709 f0a588a1,ee9c89 d854de21,e709 00025221,0000e709 94ac * * 94ac * * 94ac
+15103 * * * * * * * e70a f0a587a7,ee9c8a d854dde7,e70a 000251e7,0000e70a 94ad * * 94ad * * 94ad
+15104 * * * * * * * 7778 e79db8,ee9c8b 7778,e70b 00007778,0000e70b 94ae * * 94ae * fbf4 94ae
+15105 * * * * * * * e70c f0a388b2,ee9c8c d84cde32,e70c 00023232,0000e70c 94af * * 94af * * 94af
+15106 * * * * * * * 770e e79c8e,ee9c8d 770e,e70d 0000770e,0000e70d 94b0 * * 94b0 * * 94b0
+15107 * * * * * * * 770f e79c8f,ee9c8e 770f,e70e 0000770f,0000e70e 94b1 * * 94b1 * * 94b1
+15108 * * * * * * * 777b e79dbb,ee9c8f 777b,e70f 0000777b,0000e70f 94b2 * * 94b2 * * 94b2
+15109 * * * * * * * e710 f0a49a97,ee9c90 d851de97,e710 00024697,0000e710 94b3 * * 94b3 * * 94b3
+15110 * * * * * * * e711 f0a39e81,ee9c91 d84ddf81,e711 00023781,0000e711 94b4 * * 94b4 * * 94b4
+15111 * * * * * * * 3a5e e3a99e,ee9c92 3a5e,e712 00003a5e,0000e712 94b5 * * 94b5 * * 94b5
+15112 * * * * * * * e713 f0a4a3b0,ee9c93 d852dcf0,e713 000248f0,0000e713 94b6 * * 94b6 * * 94b6
+15113 * * * * * * * 7438 e790b8,ee9c94 7438,e714 00007438,0000e714 94b7 * * 94b7 * * 94b7
+15114 * * * * * * * 749b e7929b,ee9c95 749b,e715 0000749b,0000e715 94b8 * * 94b8 * * 94b8
+15115 * * * * * * * 3ebf e3babf,ee9c96 3ebf,e716 00003ebf,0000e716 94b9 * * 94b9 * * 94b9
+15116 * * * * * * * e717 f0a4aaba,ee9c97 d852deba,e717 00024aba,0000e717 94ba * * 94ba * * 94ba
+15117 * * * * * * * e718 f0a4ab87,ee9c98 d852dec7,e718 00024ac7,0000e718 94bb * * 94bb * * 94bb
+15118 * * * * * * * 40c8 e48388,ee9c99 40c8,e719 000040c8,0000e719 94bc * * 94bc * fbfe 94bc
+15119 * * * * * * * e71a f0a4aa96,ee9c9a d852de96,e71a 00024a96,0000e71a 94bd * * 94bd * * 94bd
+15120 * * * * * * * e71b f0a686ae,ee9c9b d858ddae,e71b 000261ae,0000e71b 94be * * 94be * * 94be
+15121 * * * * * * * 9307 e98c87,ee9c9c 9307,e71c 00009307,0000e71c 94bf * * 94bf * * 94bf
+15122 * * * * * * * e71d f0a59681,ee9c9d d855dd81,e71d 00025581,0000e71d 94c0 * * 94c0 * * 94c0
+15123 * * * * * * * 781e e7a09e,ee9c9e 781e,e71e 0000781e,0000e71e 94c1 * * 94c1 * * 94c1
+15124 * * * * * * * 788d e7a28d,ee9c9f 788d,e71f 0000788d,0000e71f 94c2 faef 925b 94c2 c878 fbfb 94c2
+15125 * * * * * * * 7888 e7a288,ee9ca0 7888,e720 00007888,0000e720 94c3 * * 94c3 * * 94c3
+15126 * * * * * * * 78d2 e7a392,ee9ca1 78d2,e721 000078d2,0000e721 94c4 * * 94c4 * * 94c4
+15127 * * * * * * * 73d0 e78f90,ee9ca2 73d0,e722 000073d0,0000e722 94c5 * * 94c5 * fbdd 94c5
+15128 * * * * * * * 7959 e7a599,ee9ca3 7959,e723 00007959,0000e723 94c6 * * 94c6 * * 94c6
+15129 * * * * * * * e724 f0a79d81,ee9ca4 d85ddf41,e724 00027741,0000e724 94c7 * * 94c7 * * 94c7
+15130 * * * * * * * e725 f0a59ba3,ee9ca5 d855dee3,e725 000256e3,0000e725 94c8 * * 94c8 * * 94c8
+15131 * * * * * * * 410e e4848e,ee9ca6 410e,e726 0000410e,0000e726 94c9 * * 94c9 * * 94c9
+15132 * * * * * * * * * * * * * * 94ca * * *
+15133 * * * * * * * 8496 * * * * * * 94cb * * *
+15134 * * * * * * * 79a5 e7a6a5,ee9ca9 79a5,e729 000079a5,0000e729 94cc * * 94cc * * 94cc
+15135 * * * * * * * 6a2d e6a8ad,ee9caa 6a2d,e72a 00006a2d,0000e72a 94cd * * 94cd * * 94cd
+15136 * * * * * * * e72b f0a3bbba,ee9cab d84fdefa,e72b 00023efa,0000e72b 94ce * * 94ce * * 94ce
+15137 * * * * * * * 7a3a e7a8ba,ee9cac 7a3a,e72c 00007a3a,0000e72c 94cf * * 94cf * * 94cf
+15138 * * * * * * * 79f4 e7a7b4,ee9cad 79f4,e72d 000079f4,0000e72d 94d0 * * 94d0 * * 94d0
+15139 * * * * * * * 416e e485ae,ee9cae 416e,e72e 0000416e,0000e72e 94d1 * * 94d1 * * 94d1
+15140 * * * * * * * e72f f0a19ba6,ee9caf d845dee6,e72f 000216e6,0000e72f 94d2 * * 94d2 * * 94d2
+15141 * * * * * * * 4132 e484b2,ee9cb0 4132,e730 00004132,0000e730 94d3 * * 94d3 * * 94d3
+15142 * * * * * * * 9235 e988b5,ee9cb1 9235,e731 00009235,0000e731 94d4 * * 94d4 * * 94d4
+15143 * * * * * * * 79f1 e7a7b1,ee9cb2 79f1,e732 000079f1,0000e732 94d5 * * 94d5 * * 94d5
+15144 * * * * * * * e733 f0a0b58c,ee9cb3 d843dd4c,e733 00020d4c,0000e733 94d6 * * 94d6 * * 94d6
+15145 * * * * * * * e734 f0a4a68c,ee9cb4 d852dd8c,e734 0002498c,0000e734 94d7 * * 94d7 * * 94d7
+15146 * * * * * * * e735 f0a08a99,ee9cb5 d840de99,e735 00020299,0000e735 94d8 * * 94d8 * * 94d8
+15147 * * * * * * * e736 f0a3b6ba,ee9cb6 d84fddba,e736 00023dba,0000e736 94d9 * * 94d9 * * 94d9
+15148 * * * * * * * e737 f0a19dae,ee9cb7 d845df6e,e737 0002176e,0000e737 94da * * 94da * * 94da
+15149 * * * * * * * 3597 e39697,ee9cb8 3597,e738 00003597,0000e738 94db * * 94db * * 94db
+15150 * * * * * * * 556b e595ab,ee9cb9 556b,e739 0000556b,0000e739 94dc fa6e 9179 94dc c774 faae 94dc
+15151 * * * * * * * 3570 e395b0,ee9cba 3570,e73a 00003570,0000e73a 94dd * * 94dd * * 94dd
+15152 * * * * * * * 36aa e39aaa,ee9cbb 36aa,e73b 000036aa,0000e73b 94de * * 94de * * 94de
+15153 * * * * * * * e73c f0a08794,ee9cbc d840ddd4,e73c 000201d4,0000e73c 94df * * 94df * * 94df
+15154 * * * * * * * e73d f0a0b08d,ee9cbd d843dc0d,e73d 00020c0d,0000e73d 94e0 * * 94e0 * * 94e0
+15155 * * * * * * * 7ae2 e7aba2,ee9cbe 7ae2,e73e 00007ae2,0000e73e 94e1 * * 94e1 * * 94e1
+15156 * * * * * * * 5a59 e5a999,ee9cbf 5a59,e73f 00005a59,0000e73f 94e2 * * 94e2 * * 94e2
+15157 * * * * * * * e740 f0a29bb5,ee9d80 d849def5,e740 000226f5,0000e740 94e3 * * 94e3 * * 94e3
+15158 * * * * * * * e741 f0a5aaaf,ee9d81 d856deaf,e741 00025aaf,0000e741 94e4 * * 94e4 * * 94e4
+15159 * * * * * * * e742 f0a5aa9c,ee9d82 d856de9c,e742 00025a9c,0000e742 94e5 * * 94e5 * * 94e5
+15160 * * * * * * * 5a0d e5a88d,ee9d83 5a0d,e743 00005a0d,0000e743 94e6 * * 94e6 * * 94e6
+15161 * * * * * * * e744 f0a0899b,ee9d84 d840de5b,e744 0002025b,0000e744 94e7 * * 94e7 * * 94e7
+15162 * * * * * * * 78f0 e7a3b0,ee9d85 78f0,e745 000078f0,0000e745 94e8 * * 94e8 * * 94e8
+15163 * * * * * * * 5a2a e5a8aa,ee9d86 5a2a,e746 00005a2a,0000e746 94e9 * * 94e9 * * 94e9
+15164 * * * * * * * e747 f0a5af86,ee9d87 d856dfc6,e747 00025bc6,0000e747 94ea * * 94ea * * 94ea
+15165 * * * * * * * 7afe e7abbe,ee9d88 7afe,e748 00007afe,0000e748 94eb * * 94eb * * 94eb
+15166 * * * * * * * 41f9 e487b9,ee9d89 41f9,e749 000041f9,0000e749 94ec * * 94ec * * 94ec
+15167 * * * * * * * 7c5d e7b19d,ee9d8a 7c5d,e74a 00007c5d,0000e74a 94ed fda3 9068 94ed * * 94ed
+15168 * * * * * * * 7c6d e7b1ad,ee9d8b 7c6d,e74b 00007c6d,0000e74b 94ee * * 94ee * * 94ee
+15169 * * * * * * * 4211 e48891,ee9d8c 4211,e74c 00004211,0000e74c 94ef * * 94ef * * 94ef
+15170 * * * * * * * e74d f0a5aeb3,ee9d8d d856dfb3,e74d 00025bb3,0000e74d 94f0 * * 94f0 * * 94f0
+15171 * * * * * * * e74e f0a5babc,ee9d8e d857debc,e74e 00025ebc,0000e74e 94f1 * * 94f1 * * 94f1
+15172 * * * * * * * e74f f0a5baa6,ee9d8f d857dea6,e74f 00025ea6,0000e74f 94f2 * * 94f2 * * 94f2
+15173 * * * * * * * 7ccd e7b38d,ee9d90 7ccd,e750 00007ccd,0000e750 94f3 fac6 * 94f3 c8a5 fc55 94f3
+15174 * * * * * * * e751 f0a4a7b9,ee9d91 d852ddf9,e751 000249f9,0000e751 94f4 * * 94f4 * * 94f4
+15175 * * * * * * * e752 f0a19eb0,ee9d92 d845dfb0,e752 000217b0,0000e752 94f5 * * 94f5 * * 94f5
+15176 * * * * * * * 7c8e e7b28e,ee9d93 7c8e,e753 00007c8e,0000e753 94f6 * * 94f6 * * 94f6
+15177 * * * * * * * 7c7c e7b1bc,ee9d94 7c7c,e754 00007c7c,0000e754 94f7 * * 94f7 * * 94f7
+15178 * * * * * * * 7cae e7b2ae,ee9d95 7cae,e755 00007cae,0000e755 94f8 fafe * 94f8 c8a4 fc53 94f8
+15179 * * * * * * * 6ab2 e6aab2,ee9d96 6ab2,e756 00006ab2,0000e756 94f9 fcc4 91c9 94f9 * * 94f9
+15180 * * * * * * * 7ddc e7b79c,ee9d97 7ddc,e757 00007ddc,0000e757 94fa fdb2 8e5d 94fa * * 94fa
+15181 * * * * * * * 7e07 e7b887,ee9d98 7e07,e758 00007e07,0000e758 94fb * * 94fb * * 94fb
+15182 * * * * * * * 7dd3 e7b793,ee9d99 7dd3,e759 00007dd3,0000e759 94fc * * 94fc * * 94fc
+15183 * * * * * * * 7f4e e7bd8e,ee9d9a 7f4e,e75a 00007f4e,0000e75a 94fd fb5a,fdb7 9072 94fd c8ac fc60 94fd
+15184 * * * * * * * e75b f0a689a1,ee9d9b d858de61,e75b 00026261,0000e75b 94fe * * 94fe * * 94fe
+15185 * * * * * * * e75c f0a6859c,ee9d9c d858dd5c,e75c 0002615c,0000e75c 9540 * * 9540 * * 9540
+15186 * * * * * * * e75d f0a7ad88,ee9d9d d85edf48,e75d 00027b48,0000e75d 9541 * * 9541 * * 9541
+15187 * * * * * * * 7d97 e7b697,ee9d9e 7d97,e75e 00007d97,0000e75e 9542 * * 9542 * * 9542
+15188 * * * * * * * e75f f0a5ba82,ee9d9f d857de82,e75f 00025e82,0000e75f 9543 * * 9543 * * 9543
+15189 * * * * * * * 426a e489aa,ee9da0 426a,e760 0000426a,0000e760 9544 * * 9544 * * 9544
+15190 * * * * * * * e761 f0a6adb5,ee9da1 d85adf75,e761 00026b75,0000e761 9545 * * 9545 * * 9545
+15191 * * * * * * * e762 f0a0a496,ee9da2 d842dd16,e762 00020916,0000e762 9546 * * 9546 * * 9546
+15192 * * * * * * * 67d6 e69f96,ee9da3 67d6,e763 000067d6,0000e763 9547 * * 9547 * * 9547
+15193 * * * * * * * e764 f0a0818e,ee9da4 d840dc4e,e764 0002004e,0000e764 9548 * * 9548 * * 9548
+15194 * * * * * * * e765 f0a3978f,ee9da5 d84dddcf,e765 000235cf,0000e765 9549 * * 9549 * * 9549
+15195 * * * * * * * 57c4 e59f84,ee9da6 57c4,e766 000057c4,0000e766 954a * * 954a * * 954a
+15196 * * * * * * * e767 f0a69092,ee9da7 d859dc12,e767 00026412,0000e767 954b * * 954b * * 954b
+15197 * * * * * * * e768 f0a68fb8,ee9da8 d858dff8,e768 000263f8,0000e768 954c * * 954c * * 954c
+15198 * * * * * * * 7fdd e7bf9d,ee9daa 7fdd,e76a 00007fdd,0000e76a 954e * * 954e * * 954e
+15199 * * * * * * * 7b27 e7aca7,ee9dab 7b27,e76b 00007b27,0000e76b 954f * * 954f * * 954f
+15200 * * * * * * * e76c f0a0a0ac,ee9dac d842dc2c,e76c 0002082c,0000e76c 9550 * * 9550 * * 9550
+15201 * * * * * * * e76d f0a5aba9,ee9dad d856dee9,e76d 00025ae9,0000e76d 9551 * * 9551 * * 9551
+15202 * * * * * * * e76e f0a5b583,ee9dae d857dd43,e76e 00025d43,0000e76e 9552 * * 9552 * * 9552
+15203 * * * * * * * 7b0c e7ac8c,ee9daf 7b0c,e76f 00007b0c,0000e76f 9553 * * 9553 * * 9553
+15204 * * * * * * * e770 f0a5b88e,ee9db0 d857de0e,e770 00025e0e,0000e770 9554 * * 9554 * * 9554
+15205 * * * * * * * 99e6 e9a7a6,ee9db1 99e6,e771 000099e6,0000e771 9555 * * 9555 * * 9555
+15206 * * * * * * * 8645 e89985,ee9db2 8645,e772 00008645,0000e772 9556 * * 9556 * * 9556
+15207 * * * * * * * 9a63 e9a9a3,ee9db3 9a63,e773 00009a63,0000e773 9557 * * 9557 * * 9557
+15208 * * * * * * * 6a1c e6a89c,ee9db4 6a1c,e774 00006a1c,0000e774 9558 * * 9558 * * 9558
+15209 * * * * * * * e775 f0a390bf,ee9db5 d84ddc3f,e775 0002343f,0000e775 9559 * * 9559 * * 9559
+15210 * * * * * * * e777 f0a4a7b7,ee9db7 d852ddf7,e777 000249f7,0000e777 955b * * 955b * * 955b
+15211 * * * * * * * e778 f0a696ad,ee9db8 d859ddad,e778 000265ad,0000e778 955c * * 955c * * 955c
+15212 * * * * * * * 9a1f e9a89f,ee9db9 9a1f,e779 00009a1f,0000e779 955d * * 955d * * 955d
+15213 * * * * * * * e77a f0a696a0,ee9dba d859dda0,e77a 000265a0,0000e77a 955e * * 955e * * 955e
+15214 * * * * * * * 8480 e89295 8495 00008495 * * * 955f * * *
+15215 * * * * * * * e77c f0a784a7,ee9dbc d85cdd27,e77c 00027127,0000e77c 9560 * * 9560 * * 9560
+15216 * * * * * * * e77d f0a6b391,ee9dbd d85bdcd1,e77d 00026cd1,0000e77d 9561 * * 9561 * * 9561
+15217 * * * * * * * 44ea e493aa,ee9dbe 44ea,e77e 000044ea,0000e77e 9562 fb51 * 9562 c8b5 fc6c 9562
+15218 * * * * * * * 8137 e884b7,ee9dbf 8137,e77f 00008137,0000e77f 9563 faa3 * 9563 c841 fba1 9563
+15219 * * * * * * * 4402 e49082,ee9e80 4402,e780 00004402,0000e780 9564 * * 9564 * * 9564
+15220 * * * * * * * 80c6 e88386,ee9e81 80c6,e781 000080c6,0000e781 9565 fb48 8ec5 9565 c7fe fb7c 9565
+15221 * * * * * * * 8109 e88489,ee9e82 8109,e782 00008109,0000e782 9566 fdbd 8ec6 9566 c840 fb7d 9566
+15222 * * * * * * * 8142 e88582,ee9e83 8142,e783 00008142,0000e783 9567 * * 9567 * * 9567
+15223 * * * * * * * e784 f0a69eb4,ee9e84 d859dfb4,e784 000267b4,0000e784 9568 * * 9568 * * 9568
+15224 * * * * * * * 98c3 e9a383,ee9e85 98c3,e785 000098c3,0000e785 9569 * * 9569 * * 9569
+15225 * * * * * * * e786 f0a6a982,ee9e86 d85ade42,e786 00026a42,0000e786 956a * * 956a * * 956a
+15226 * * * * * * * 8262 e889a2,ee9e87 8262,e787 00008262,0000e787 956b fdcc 8ec9 956b * * 956b
+15227 * * * * * * * 8265 e889a5,ee9e88 8265,e788 00008265,0000e788 956c * * 956c * * 956c
+15228 * * * * * * * e789 f0a6a991,ee9e89 d85ade51,e789 00026a51,0000e789 956d * * 956d * * 956d
+15229 * * * * * * * 8453 e89193,ee9e8a 8453,e78a 00008453,0000e78a 956e * * 956e * * 956e
+15230 * * * * * * * e78b f0a6b6a7,ee9e8b d85bdda7,e78b 00026da7,0000e78b 956f * * 956f * * 956f
+15231 * * * * * * * 8610 e89890,ee9e8c 8610,e78c 00008610,0000e78c 9570 fdf9 90a6 9570 * * 9570
+15232 * * * * * * * e78d f0a7889b,ee9e8d d85cde1b,e78d 0002721b,0000e78d 9571 * * 9571 * * 9571
+15233 * * * * * * * 5a86 e5aa86,ee9e8e 5a86,e78e 00005a86,0000e78e 9572 * * 9572 * * 9572
+15234 * * * * * * * 417f e485bf,ee9e8f 417f,e78f 0000417f,0000e78f 9573 * * 9573 * * 9573
+15235 * * * * * * * e790 f0a1a180,ee9e90 d846dc40,e790 00021840,0000e790 9574 * * 9574 * * 9574
+15236 * * * * * * * 5b2b e5acab,ee9e91 5b2b,e791 00005b2b,0000e791 9575 * * 9575 * * 9575
+15237 * * * * * * * e792 f0a1a2a1,ee9e92 d846dca1,e792 000218a1,0000e792 9576 * * 9576 * * 9576
+15238 * * * * * * * 5ae4 e5aba4,ee9e93 5ae4,e793 00005ae4,0000e793 9577 * * 9577 * * 9577
+15239 * * * * * * * e794 f0a1a398,ee9e94 d846dcd8,e794 000218d8,0000e794 9578 * * 9578 * * 9578
+15240 * * * * * * * 86a0 e89aa0,ee9e95 86a0,e795 000086a0,0000e795 9579 * * 9579 * * 9579
+15241 * * * * * * * e796 f0afa6bc,ee9e96 d87eddbc,e796 0002f9bc,0000e796 957a * * 957a * * 957a
+15242 * * * * * * * e797 f0a3b68f,ee9e97 d84fdd8f,e797 00023d8f,0000e797 957b * * 957b * * 957b
+15243 * * * * * * * 882d e8a0ad,ee9e98 882d,e798 0000882d,0000e798 957c fdd9 8f5a 957c * * 957c
+15244 * * * * * * * e799 f0a790a2,ee9e99 d85ddc22,e799 00027422,0000e799 957d * * 957d * * 957d
+15245 * * * * * * * 5a02 e5a882,ee9e9a 5a02,e79a 00005a02,0000e79a 957e * * 957e * * 957e
+15246 * * * * * * * 886e e8a1ae,ee9e9b 886e,e79b 0000886e,0000e79b 95a1 fddd 90b0 95a1 * fa46 95a1
+15247 * * * * * * * 4f45 e4bd85,ee9e9c 4f45,e79c 00004f45,0000e79c 95a2 * * 95a2 * * 95a2
+15248 * * * * * * * 8887 e8a287,ee9e9d 8887,e79d 00008887,0000e79d 95a3 * * 95a3 * * 95a3
+15249 * * * * * * * 88bf e8a2bf,ee9e9e 88bf,e79e 000088bf,0000e79e 95a4 * * 95a4 * * 95a4
+15250 * * * * * * * 88e6 e8a3a6,ee9e9f 88e6,e79f 000088e6,0000e79f 95a5 * * 95a5 * * 95a5
+15251 * * * * * * * 8965 e8a5a5,ee9ea0 8965,e7a0 00008965,0000e7a0 95a6 * * 95a6 * * 95a6
+15252 * * * * * * * 894d e8a58d,ee9ea1 894d,e7a1 0000894d,0000e7a1 95a7 fde4 8ef4 95a7 * * 95a7
+15253 * * * * * * * e7a2 f0a59a83,ee9ea2 d855de83,e7a2 00025683,0000e7a2 95a8 * * 95a8 * * 95a8
+15254 * * * * * * * 8954 e8a594,ee9ea3 8954,e7a3 00008954,0000e7a3 95a9 * * 95a9 * * 95a9
+15255 * * * * * * * e7a4 f0a79e85,ee9ea4 d85ddf85,e7a4 00027785,0000e7a4 95aa * * 95aa * * 95aa
+15256 * * * * * * * e7a5 f0a79e84,ee9ea5 d85ddf84,e7a5 00027784,0000e7a5 95ab * * 95ab * * 95ab
+15257 * * * * * * * e7a6 f0a8afb5,ee9ea6 d862dff5,e7a6 00028bf5,0000e7a6 95ac * * 95ac * * 95ac
+15258 * * * * * * * e7a7 f0a8af99,ee9ea7 d862dfd9,e7a7 00028bd9,0000e7a7 95ad * * 95ad * * 95ad
+15259 * * * * * * * e7a8 f0a8ae9c,ee9ea8 d862df9c,e7a8 00028b9c,0000e7a8 95ae * * 95ae * * 95ae
+15260 * * * * * * * e7a9 f0a8a7b9,ee9ea9 d862ddf9,e7a9 000289f9,0000e7a9 95af * * 95af * * 95af
+15261 * * * * * * * 3ead e3baad,ee9eaa 3ead,e7aa 00003ead,0000e7aa 95b0 * * 95b0 * * 95b0
+15262 * * * * * * * 84a3 e892a3,ee9eab 84a3,e7ab 000084a3,0000e7ab 95b1 * * 95b1 * * 95b1
+15263 * * * * * * * 46f5 e49bb5,ee9eac 46f5,e7ac 000046f5,0000e7ac 95b2 * * 95b2 * * 95b2
+15264 * * * * * * * 46cf e49b8f,ee9ead 46cf,e7ad 000046cf,0000e7ad 95b3 * * 95b3 * * 95b3
+15265 * * * * * * * 37f2 e39fb2,ee9eae 37f2,e7ae 000037f2,0000e7ae 95b4 * * 95b4 * * 95b4
+15266 * * * * * * * 8a3d e8a8bd,ee9eaf 8a3d,e7af 00008a3d,0000e7af 95b5 * * 95b5 * * 95b5
+15267 * * * * * * * 8a1c e8a89c,ee9eb0 8a1c,e7b0 00008a1c,0000e7b0 95b6 * * 95b6 * * 95b6
+15268 * * * * * * * e7b1 f0a99188,ee9eb1 d865dc48,e7b1 00029448,0000e7b1 95b7 * * 95b7 * * 95b7
+15269 * * * * * * * 5f4d e5bd8d,ee9eb2 5f4d,e7b2 00005f4d,0000e7b2 95b8 fc4e 91b2 95b8 c7df fb53 95b8
+15270 * * * * * * * 922b e988ab,ee9eb3 922b,e7b3 0000922b,0000e7b3 95b9 * * 95b9 * * 95b9
+15271 * * * * * * * e7b4 f0a48a84,ee9eb4 d850de84,e7b4 00024284,0000e7b4 95ba * * 95ba * * 95ba
+15272 * * * * * * * 65d4 e69794,ee9eb5 65d4,e7b5 000065d4,0000e7b5 95bb * * 95bb * * 95bb
+15273 * * * * * * * 7129 e784a9,ee9eb6 7129,e7b6 00007129,0000e7b6 95bc * * 95bc * * 95bc
+15274 * * * * * * * 70c4 e78384,ee9eb7 70c4,e7b7 000070c4,0000e7b7 95bd * * 95bd * * 95bd
+15275 * * * * * * * e7b8 f0a1a185,ee9eb8 d846dc45,e7b8 00021845,0000e7b8 95be * * 95be * * 95be
+15276 * * * * * * * 9d6d e9b5ad,ee9eb9 9d6d,e7b9 00009d6d,0000e7b9 95bf * * 95bf * * 95bf
+15277 * * * * * * * 8c9f e8b29f,ee9eba 8c9f,e7ba 00008c9f,0000e7ba 95c0 * * 95c0 * * 95c0
+15278 * * * * * * * 8ce9 e8b3a9,ee9ebb 8ce9,e7bb 00008ce9,0000e7bb 95c1 * * 95c1 * * 95c1
+15279 * * * * * * * e7bc f0a7b79c,ee9ebc d85fdddc,e7bc 00027ddc,0000e7bc 95c2 * * 95c2 * * 95c2
+15280 * * * * * * * 599a e5a69a,ee9ebd 599a,e7bd 0000599a,0000e7bd 95c3 * * 95c3 * * 95c3
+15281 * * * * * * * 77c3 e79f83,ee9ebe 77c3,e7be 000077c3,0000e7be 95c4 * * 95c4 * * 95c4
+15282 * * * * * * * 59f0 e5a7b0,ee9ebf 59f0,e7bf 000059f0,0000e7bf 95c5 * * 95c5 * * 95c5
+15283 * * * * * * * 36d4 e39b94,ee9f81 36d4,e7c1 000036d4,0000e7c1 95c7 * * 95c7 * * 95c7
+15284 * * * * * * * 8e2a e8b8aa,ee9f82 8e2a,e7c2 00008e2a,0000e7c2 95c8 faf4 * 95c8 c8c8 fcb2 95c8
+15285 * * * * * * * 8ea7 e8baa7,ee9f83 8ea7,e7c3 00008ea7,0000e7c3 95c9 fe58 90c0 95c9 * * 95c9
+15286 * * * * * * * e7c4 f0a4b089,ee9f84 d853dc09,e7c4 00024c09,0000e7c4 95ca * * 95ca * * 95ca
+15287 * * * * * * * 8f30 e8bcb0,ee9f85 8f30,e7c5 00008f30,0000e7c5 95cb * * 95cb * * 95cb
+15288 * * * * * * * 8f4a e8bd8a,ee9f86 8f4a,e7c6 00008f4a,0000e7c6 95cc * * 95cc * * 95cc
+15289 * * * * * * * 42f4 e48bb4,ee9f87 42f4,e7c7 000042f4,0000e7c7 95cd * * 95cd * * 95cd
+15290 * * * * * * * 6c58 e6b198,ee9f88 6c58,e7c8 00006c58,0000e7c8 95ce * * 95ce * * 95ce
+15291 * * * * * * * 6fbb e6bebb,ee9f89 6fbb,e7c9 00006fbb,0000e7c9 95cf * * 95cf * * 95cf
+15292 * * * * * * * e7ca f0a28ca1,ee9f8a d848df21,e7ca 00022321,0000e7ca 95d0 * * 95d0 * * 95d0
+15293 * * * * * * * 489b e4a29b,ee9f8b 489b,e7cb 0000489b,0000e7cb 95d1 * * 95d1 * * 95d1
+15294 * * * * * * * 6f79 e6bdb9,ee9f8c 6f79,e7cc 00006f79,0000e7cc 95d2 * * 95d2 * * 95d2
+15295 * * * * * * * 6e8b e6ba8b,ee9f8d 6e8b,e7cd 00006e8b,0000e7cd 95d3 * * 95d3 * * 95d3
+15296 * * * * * * * e7ce f0a19f9a,ee9f8e d845dfda,e7ce 000217da,0000e7ce 95d4 * * 95d4 * * 95d4
+15297 * * * * * * * 9be9 e9afa9,ee9f8f 9be9,e7cf 00009be9,0000e7cf 95d5 * * 95d5 * * 95d5
+15298 * * * * * * * 36b5 e39ab5,ee9f90 36b5,e7d0 000036b5,0000e7d0 95d6 * * 95d6 * * 95d6
+15299 * * * * * * * e7d1 f0a4a4af,ee9f91 d852dd2f,e7d1 0002492f,0000e7d1 95d7 * * 95d7 * * 95d7
+15300 * * * * * * * 90bb e982bb,ee9f92 90bb,e7d2 000090bb,0000e7d2 95d8 * * 95d8 * * 95d8
+15301 * * * * * * * * e4a2b4 48b4 000048b4 * * * 95d9 * * *
+15302 * * * * * * * 5571 e595b1,ee9f94 5571,e7d4 00005571,0000e7d4 95da fa62 * 95da c775 faaf 95da
+15303 * * * * * * * 4906 e4a486,ee9f95 4906,e7d5 00004906,0000e7d5 95db * * 95db * * 95db
+15304 * * * * * * * 91bb e986bb,ee9f96 91bb,e7d6 000091bb,0000e7d6 95dc fe66 90cc 95dc * * 95dc
+15305 * * * * * * * 9404 e99084,ee9f97 9404,e7d7 00009404,0000e7d7 95dd * * 95dd * * 95dd
+15306 * * * * * * * e7d8 f0a8a98b,ee9f98 d862de4b,e7d8 00028a4b,0000e7d8 95de * * 95de * * 95de
+15307 * * * * * * * 4062 e481a2,ee9f99 4062,e7d9 00004062,0000e7d9 95df * * 95df * * 95df
+15308 * * * * * * * e7da f0a8abbc,ee9f9a d862defc,e7da 00028afc,0000e7da 95e0 * * 95e0 * * 95e0
+15309 * * * * * * * 9427 e990a7,ee9f9b 9427,e7db 00009427,0000e7db 95e1 fe78 90d5 95e1 c8df fcce 95e1
+15310 * * * * * * * e7dc f0a8b09d,ee9f9c d863dc1d,e7dc 00028c1d,0000e7dc 95e2 * * 95e2 * * 95e2
+15311 * * * * * * * e7dd f0a8b0bb,ee9f9d d863dc3b,e7dd 00028c3b,0000e7dd 95e3 * * 95e3 * * 95e3
+15312 * * * * * * * 84e5 e893a5,ee9f9e 84e5,e7de 000084e5,0000e7de 95e4 * * 95e4 * * 95e4
+15313 * * * * * * * 8a2b e8a8ab,ee9f9f 8a2b,e7df 00008a2b,0000e7df 95e5 * * 95e5 * * 95e5
+15314 * * * * * * * 9599 e99699,ee9fa0 9599,e7e0 00009599,0000e7e0 95e6 * * 95e6 * * 95e6
+15315 * * * * * * * 95a7 e996a7,ee9fa1 95a7,e7e1 000095a7,0000e7e1 95e7 fe7a 8ed9 95e7 * fcd2 95e7
+15316 * * * * * * * 9597 e99697,ee9fa2 9597,e7e2 00009597,0000e7e2 95e8 fe79 8edb 95e8 * * 95e8
+15317 * * * * * * * 9596 e99696,ee9fa3 9596,e7e3 00009596,0000e7e3 95e9 * * 95e9 * * 95e9
+15318 * * * * * * * e7e4 f0a8b4b4,ee9fa4 d863dd34,e7e4 00028d34,0000e7e4 95ea * * 95ea * * 95ea
+15319 * * * * * * * 7445 e79185,ee9fa5 7445,e7e5 00007445,0000e7e5 95eb * * 95eb * * 95eb
+15320 * * * * * * * 3ec2 e3bb82,ee9fa6 3ec2,e7e6 00003ec2,0000e7e6 95ec * * 95ec * * 95ec
+15321 * * * * * * * e7e7 f0a4a3bf,ee9fa7 d852dcff,e7e7 000248ff,0000e7e7 95ed * * 95ed * * 95ed
+15322 * * * * * * * e7e8 f0a4a982,ee9fa8 d852de42,e7e8 00024a42,0000e7e8 95ee * * 95ee * * 95ee
+15323 * * * * * * * e7e9 f0a48faa,ee9fa9 d850dfea,e7e9 000243ea,0000e7e9 95ef * * 95ef * * 95ef
+15324 * * * * * * * 3ee7 e3bba7,ee9faa 3ee7,e7ea 00003ee7,0000e7ea 95f0 * * 95f0 * * 95f0
+15325 * * * * * * * e7eb f0a388a5,ee9fab d84cde25,e7eb 00023225,0000e7eb 95f1 * * 95f1 * * 95f1
+15326 * * * * * * * 968f e99a8f,ee9fac 968f,e7ec 0000968f,0000e7ec 95f2 * * 95f2 * * 95f2
+15327 * * * * * * * e7ed f0a8bba7,ee9fad d863dee7,e7ed 00028ee7,0000e7ed 95f3 * * 95f3 * * 95f3
+15328 * * * * * * * e7ee f0a8b9a6,ee9fae d863de66,e7ee 00028e66,0000e7ee 95f4 * * 95f4 * * 95f4
+15329 * * * * * * * e7ef f0a8b9a5,ee9faf d863de65,e7ef 00028e65,0000e7ef 95f5 * * 95f5 * * 95f5
+15330 * * * * * * * 3ecc e3bb8c,ee9fb0 3ecc,e7f0 00003ecc,0000e7f0 95f6 * * 95f6 * * 95f6
+15331 * * * * * * * e7f1 f0a4a7ad,ee9fb1 d852dded,e7f1 000249ed,0000e7f1 95f7 * * 95f7 * * 95f7
+15332 * * * * * * * e7f2 f0a4a9b8,ee9fb2 d852de78,e7f2 00024a78,0000e7f2 95f8 * * 95f8 * * 95f8
+15333 * * * * * * * e7f3 f0a3bfae,ee9fb3 d84fdfee,e7f3 00023fee,0000e7f3 95f9 * * 95f9 * * 95f9
+15334 * * * * * * * 7412 e79092,ee9fb4 7412,e7f4 00007412,0000e7f4 95fa * * 95fa * * 95fa
+15335 * * * * * * * 746b e791ab,ee9fb5 746b,e7f5 0000746b,0000e7f5 95fb * * 95fb * * 95fb
+15336 * * * * * * * 3efc e3bbbc,ee9fb6 3efc,e7f6 00003efc,0000e7f6 95fc * * 95fc * * 95fc
+15337 * * * * * * * 9741 e99d81,ee9fb7 9741,e7f7 00009741,0000e7f7 95fd * * 95fd * * 95fd
+15338 * * * * * * * e7f8 f0a982b0,ee9fb8 d864dcb0,e7f8 000290b0,0000e7f8 95fe * * 95fe * * 95fe
+15339 * * * * * * * 6847 e6a187,ee9fb9 6847,e7f9 00006847,0000e7f9 9640 * * 9640 * * 9640
+15340 * * * * * * * 4a1d e4a89d,ee9fba 4a1d,e7fa 00004a1d,0000e7fa 9641 * * 9641 * * 9641
+15341 * * * * * * * e7fb f0a98293,ee9fbb d864dc93,e7fb 00029093,0000e7fb 9642 * * 9642 * * 9642
+15342 * * * * * * * e7fc f0a59f9f,ee9fbc d855dfdf,e7fc 000257df,0000e7fc 9643 * * 9643 * * 9643
+15343 * * * * * * * 975d * * * * * * 9644 * * *
+15344 * * * * * * * 9368 e98da8,ee9fbe 9368,e7fe 00009368,0000e7fe 9645 * * 9645 * * 9645
+15345 * * * * * * * e7ff f0a8a689,ee9fbf d862dd89,e7ff 00028989,0000e7ff 9646 * * 9646 * * 9646
+15346 * * * * * * * e800 f0a8b0a6,eea080 d863dc26,e800 00028c26,0000e800 9647 * * 9647 * * 9647
+15347 * * * * * * * e801 f0a8acaf,eea081 d862df2f,e801 00028b2f,0000e801 9648 * * 9648 * * 9648
+15348 * * * * * * * e802 f0a68ebe,eea082 d858dfbe,e802 000263be,0000e802 9649 * * 9649 * * 9649
+15349 * * * * * * * 92ba e98aba,eea083 92ba,e803 000092ba,0000e803 964a * * 964a * * 964a
+15350 * * * * * * * 5b11 e5ac91,eea084 5b11,e804 00005b11,0000e804 964b * * 964b * * 964b
+15351 * * * * * * * 8b69 e8ada9,eea085 8b69,e805 00008b69,0000e805 964c * * 964c * * 964c
+15352 * * * * * * * 493c e4a4bc,eea086 493c,e806 0000493c,0000e806 964d * * 964d * * 964d
+15353 * * * * * * * 73f9 e78fb9,eea087 73f9,e807 000073f9,0000e807 964e * * 964e * * 964e
+15354 * * * * * * * e808 f0a4889b,eea088 d850de1b,e808 0002421b,0000e808 964f * * 964f * * 964f
+15355 * * * * * * * 979b e99e9b,eea089 979b,e809 0000979b,0000e809 9650 * * 9650 * * 9650
+15356 * * * * * * * 9771 * * * * * 8efb 9651 * * *
+15357 * * * * * * * 9938 e9a4b8,eea08b 9938,e80b 00009938,0000e80b 9652 fad6 * 9652 c8e5 fcdc 9652
+15358 * * * * * * * e80c f0a0bca6,eea08c d843df26,e80c 00020f26,0000e80c 9653 * * 9653 * * 9653
+15359 * * * * * * * 5dc1 e5b781,eea08d 5dc1,e80d 00005dc1,0000e80d 9654 * * 9654 * * 9654
+15360 * * * * * * * e80e f0a8af85,eea08e d862dfc5,e80e 00028bc5,0000e80e 9655 * * 9655 * * 9655
+15361 * * * * * * * e80f f0a4aab2,eea08f d852deb2,e80f 00024ab2,0000e80f 9656 * * 9656 * * 9656
+15362 * * * * * * * 981f e9a09f,eea090 981f,e810 0000981f,0000e810 9657 feb1 90e9 9657 * * 9657
+15363 * * * * * * * e811 f0a9939a,eea091 d865dcda,e811 000294da,0000e811 9658 * * 9658 * * 9658
+15364 * * * * * * * 92f6 e98bb6,eea092 92f6,e812 000092f6,0000e812 9659 * * 9659 c8dc fccb 9659
+15365 * * * * * * * e813 f0a99797,eea093 d865ddd7,e813 000295d7,0000e813 965a * * 965a * * 965a
+15366 * * * * * * * 91e5 e987a5,eea094 91e5,e814 000091e5,0000e814 965b * * 965b * * 965b
+15367 * * * * * * * 44c0 e49380,eea095 44c0,e815 000044c0,0000e815 965c * * 965c * * 965c
+15368 * * * * * * * e816 f0a8ad90,eea096 d862df50,e816 00028b50,0000e816 965d * * 965d * * 965d
+15369 * * * * * * * e817 f0a4a9a7,eea097 d852de67,e817 00024a67,0000e817 965e * * 965e * * 965e
+15370 * * * * * * * e818 f0a8ada4,eea098 d862df64,e818 00028b64,0000e818 965f * * 965f * * 965f
+15371 * * * * * * * 98dc e9a39c,eea099 98dc,e819 000098dc,0000e819 9660 feba 90ee 9660 * * 9660
+15372 * * * * * * * e81a f0a8a985,eea09a d862de45,e81a 00028a45,0000e81a 9661 * * 9661 * * 9661
+15373 * * * * * * * 3f00 e3bc80,eea09b 3f00,e81b 00003f00,0000e81b 9662 * * 9662 * * 9662
+15374 * * * * * * * 922a e988aa,eea09c 922a,e81c 0000922a,0000e81c 9663 fab5 * 9663 c8d8 fcc7 9663
+15375 * * * * * * * 4925 e4a4a5,eea09d 4925,e81d 00004925,0000e81d 9664 * * 9664 * * 9664
+15376 * * * * * * * 8414 e89094,eea09e 8414,e81e 00008414,0000e81e 9665 * * 9665 * * 9665
+15377 * * * * * * * 993b e9a4bb,eea09f 993b,e81f 0000993b,0000e81f 9666 febf 8f4d 9666 c8e6 fcdd 9666
+15378 * * * * * * * 994d e9a58d,eea0a0 994d,e820 0000994d,0000e820 9667 fb6a,fec2 8f44 9667 c8e7 fcde 9667
+15379 * * * * * * * e821 f0a7ac86,eea0a1 d85edf06,e821 00027b06,0000e821 9668 * * 9668 * * 9668
+15380 * * * * * * * 3dfd e3b7bd,eea0a2 3dfd,e822 00003dfd,0000e822 9669 * * 9669 * * 9669
+15381 * * * * * * * 999b * * * * * * 966a * * *
+15382 * * * * * * * 4b6f e4adaf,eea0a4 4b6f,e824 00004b6f,0000e824 966b * * 966b * * 966b
+15383 * * * * * * * 99aa e9a6aa,eea0a5 99aa,e825 000099aa,0000e825 966c * * 966c * * 966c
+15384 * * * * * * * 9a5c e9a99c,eea0a6 9a5c,e826 00009a5c,0000e826 966d * * 966d * * 966d
+15385 * * * * * * * e827 f0a8ada5,eea0a7 d862df65,e827 00028b65,0000e827 966e * * 966e * * 966e
+15386 * * * * * * * e828 f0a5a388,eea0a8 d856dcc8,e828 000258c8,0000e828 966f * * 966f * * 966f
+15387 * * * * * * * 6a8f e6aa8f,eea0a9 6a8f,e829 00006a8f,0000e829 9670 * * 9670 * * 9670
+15388 * * * * * * * 9a21 e9a8a1,eea0aa 9a21,e82a 00009a21,0000e82a 9671 * * 9671 * * 9671
+15389 * * * * * * * 5afe e5abbe,eea0ab 5afe,e82b 00005afe,0000e82b 9672 * * 9672 * * 9672
+15390 * * * * * * * 9a2f e9a8af,eea0ac 9a2f,e82c 00009a2f,0000e82c 9673 * * 9673 * * 9673
+15391 * * * * * * * e82d f0a9a3b1,eea0ad d866dcf1,e82d 000298f1,0000e82d 9674 * * 9674 * * 9674
+15392 * * * * * * * 4b90 e4ae90,eea0ae 4b90,e82e 00004b90,0000e82e 9675 * * 9675 * * 9675
+15393 * * * * * * * e82f f0a9a588,eea0af d866dd48,e82f 00029948,0000e82f 9676 * * 9676 * * 9676
+15394 * * * * * * * 99bc e9a6bc,eea0b0 99bc,e830 000099bc,0000e830 9677 * * 9677 * * 9677
+15395 * * * * * * * 4bbd e4aebd,eea0b1 4bbd,e831 00004bbd,0000e831 9678 * * 9678 * * 9678
+15396 * * * * * * * 4b97 e4ae97,eea0b2 4b97,e832 00004b97,0000e832 9679 * * 9679 * * 9679
+15397 * * * * * * * 937d e98dbd,eea0b3 937d,e833 0000937d,0000e833 967a * * 967a * * 967a
+15398 * * * * * * * 5872 e5a1b2,eea0b4 5872,e834 00005872,0000e834 967b fb44 9246 967b c7c7 fae8 967b
+15399 * * * * * * * e835 f0a18c82,eea0b5 d844df02,e835 00021302,0000e835 967c * * 967c * * 967c
+15400 * * * * * * * 5822 e5a0a2,eea0b6 5822,e836 00005822,0000e836 967d * * 967d * * 967d
+15401 * * * * * * * e837 f0a4a6b8,eea0b7 d852ddb8,e837 000249b8,0000e837 967e * * 967e * * 967e
+15402 * * * * * * * e838 f0a193a8,eea0b8 d845dce8,e838 000214e8,0000e838 96a1 * * 96a1 * * 96a1
+15403 * * * * * * * 7844 e7a184,eea0b9 7844,e839 00007844,0000e839 96a2 * * 96a2 * * 96a2
+15404 * * * * * * * e83a f0a29c9f,eea0ba d849df1f,e83a 0002271f,0000e83a 96a3 * * 96a3 * * 96a3
+15405 * * * * * * * e83b f0a3b6b8,eea0bb d84fddb8,e83b 00023db8,0000e83b 96a4 * * 96a4 * * 96a4
+15406 * * * * * * * 68c5 e6a385,eea0bc 68c5,e83c 000068c5,0000e83c 96a5 * * 96a5 * * 96a5
+15407 * * * * * * * 3d7d e3b5bd,eea0bd 3d7d,e83d 00003d7d,0000e83d 96a6 * * 96a6 * * 96a6
+15408 * * * * * * * 9458 e99198,eea0be 9458,e83e 00009458,0000e83e 96a7 * * 96a7 * * 96a7
+15409 * * * * * * * 3927 e3a4a7,eea0bf 3927,e83f 00003927,0000e83f 96a8 * * 96a8 * * 96a8
+15410 * * * * * * * 6150 e68590,eea180 6150,e840 00006150,0000e840 96a9 * * 96a9 * * 96a9
+15411 * * * * * * * e841 f0a29e81,eea181 d849df81,e841 00022781,0000e841 96aa * * 96aa * * 96aa
+15412 * * * * * * * e842 f0a2a5ab,eea182 d84add6b,e842 0002296b,0000e842 96ab * * 96ab * * 96ab
+15413 * * * * * * * 6107 e68487,eea183 6107,e843 00006107,0000e843 96ac * * 96ac * * 96ac
+15414 * * * * * * * 9c4f e9b18f,eea184 9c4f,e844 00009c4f,0000e844 96ad * * 96ad * * 96ad
+15415 * * * * * * * 9c53 e9b193,eea185 9c53,e845 00009c53,0000e845 96ae * * 96ae * * 96ae
+15416 * * * * * * * 9c7b e9b1bb,eea186 9c7b,e846 00009c7b,0000e846 96af * * 96af * * 96af
+15417 * * * * * * * 9c35 e9b0b5,eea187 9c35,e847 00009c35,0000e847 96b0 fee3 9140 96b0 c8f4 fcf2 96b0
+15418 * * * * * * * 9c10 e9b090,eea188 9c10,e848 00009c10,0000e848 96b1 fee0 8ee5 96b1 * fcec 96b1
+15419 * * * * * * * 9b7f e9adbf,eea189 9b7f,e849 00009b7f,0000e849 96b2 * * 96b2 * * 96b2
+15420 * * * * * * * 9bcf e9af8f,eea18a 9bcf,e84a 00009bcf,0000e84a 96b3 * * 96b3 * fcea 96b3
+15421 * * * * * * * e84b f0a9b8ad,eea18b d867de2d,e84b 00029e2d,0000e84b 96b4 * * 96b4 * * 96b4
+15422 * * * * * * * 9b9f e9ae9f,eea18c 9b9f,e84c 00009b9f,0000e84c 96b5 * * 96b5 * * 96b5
+15423 * * * * * * * e84d f0aa87b5,eea18d d868ddf5,e84d 0002a1f5,0000e84d 96b6 * * 96b6 * * 96b6
+15424 * * * * * * * e84e f0aa83be,eea18e d868dcfe,e84e 0002a0fe,0000e84e 96b7 * * 96b7 * * 96b7
+15425 * * * * * * * 9d21 e9b4a1,eea18f 9d21,e84f 00009d21,0000e84f 96b8 * * 96b8 * * 96b8
+15426 * * * * * * * 4cae e4b2ae,eea190 4cae,e850 00004cae,0000e850 96b9 * * 96b9 * * 96b9
+15427 * * * * * * * e851 f0a48484,eea191 d850dd04,e851 00024104,0000e851 96ba * * 96ba * * 96ba
+15428 * * * * * * * 9e18 e9b898,eea192 9e18,e852 00009e18,0000e852 96bb * * 96bb * * 96bb
+15429 * * * * * * * 4cb0 e4b2b0,eea193 4cb0,e853 00004cb0,0000e853 96bc * * 96bc * * 96bc
+15430 * * * * * * * 9d0c e9b48c,eea194 9d0c,e854 00009d0c,0000e854 96bd * * 96bd * * 96bd
+15431 * * * * * * * e855 f0aa86b4,eea195 d868ddb4,e855 0002a1b4,0000e855 96be * * 96be * * 96be
+15432 * * * * * * * e856 f0aa83ad,eea196 d868dced,e856 0002a0ed,0000e856 96bf * * 96bf * * 96bf
+15433 * * * * * * * e857 f0aa83b3,eea197 d868dcf3,e857 0002a0f3,0000e857 96c0 * * 96c0 * * 96c0
+15434 * * * * * * * e858 f0a9a4af,eea198 d866dd2f,e858 0002992f,0000e858 96c1 * * 96c1 * * 96c1
+15435 * * * * * * * 9da5 e9b6a5,eea199 9da5,e859 00009da5,0000e859 96c2 * * 96c2 * * 96c2
+15436 * * * * * * * 84bd e892bd,eea19a 84bd,e85a 000084bd,0000e85a 96c3 fdf3 8ec8 96c3 * * 96c3
+15437 * * * * * * * e85b f0a6b892,eea19b d85bde12,e85b 00026e12,0000e85b 96c4 * * 96c4 * * 96c4
+15438 * * * * * * * e85c f0a6bf9f,eea19c d85bdfdf,e85c 00026fdf,0000e85c 96c5 * * 96c5 * * 96c5
+15439 * * * * * * * e85d f0a6ae82,eea19d d85adf82,e85d 00026b82,0000e85d 96c6 * * 96c6 * * 96c6
+15440 * * * * * * * 85fc e897bc,eea19e 85fc,e85e 000085fc,0000e85e 96c7 * * 96c7 * * 96c7
+15441 * * * * * * * 4533 e494b3,eea19f 4533,e85f 00004533,0000e85f 96c8 * * 96c8 * * 96c8
+15442 * * * * * * * e860 f0a6b6a4,eea1a0 d85bdda4,e860 00026da4,0000e860 96c9 * * 96c9 * * 96c9
+15443 * * * * * * * e861 f0a6ba84,eea1a1 d85bde84,e861 00026e84,0000e861 96ca * * 96ca * * 96ca
+15444 * * * * * * * e862 f0a6b7b0,eea1a2 d85bddf0,e862 00026df0,0000e862 96cb * * 96cb * * 96cb
+15445 * * * * * * * 8420 e890a0,eea1a3 8420,e863 00008420,0000e863 96cc fdf0 8f53 96cc * * 96cc
+15446 * * * * * * * 85ee e897ae,eea1a4 85ee,e864 000085ee,0000e864 96cd * * 96cd * * 96cd
+15447 * * * * * * * e865 f0a6b880,eea1a5 d85bde00,e865 00026e00,0000e865 96ce * * 96ce * * 96ce
+15448 * * * * * * * e866 f0a39f97,eea1a6 d84ddfd7,e866 000237d7,0000e866 96cf * * 96cf * * 96cf
+15449 * * * * * * * e867 f0a681a4,eea1a7 d858dc64,e867 00026064,0000e867 96d0 * * 96d0 * * 96d0
+15450 * * * * * * * 79e2 e7a7a2,eea1a8 79e2,e868 000079e2,0000e868 96d1 * * 96d1 * * 96d1
+15451 * * * * * * * e869 f0a3969c,eea1a9 d84ddd9c,e869 0002359c,0000e869 96d2 * * 96d2 * * 96d2
+15452 * * * * * * * e86a f0a39980,eea1aa d84dde40,e86a 00023640,0000e86a 96d3 * * 96d3 * * 96d3
+15453 * * * * * * * e86c f0a4a79e,eea1ac d852ddde,e86c 000249de,0000e86c 96d5 * * 96d5 * * 96d5
+15454 * * * * * * * 3d62 e3b5a2,eea1ad 3d62,e86d 00003d62,0000e86d 96d6 * * 96d6 * * 96d6
+15455 * * * * * * * 93db e98f9b,eea1ae 93db,e86e 000093db,0000e86e 96d7 * * 96d7 * * 96d7
+15456 * * * * * * * 92be e98abe,eea1af 92be,e86f 000092be,0000e86f 96d8 fb66,fe71 90d0 96d8 * * 96d8
+15457 * * * * * * * 9348 e98d88,eea1b0 9348,e870 00009348,0000e870 96d9 fe73 * 96d9 * * 96d9
+15458 * * * * * * * e871 f0a08abf,eea1b1 d840debf,e871 000202bf,0000e871 96da * * 96da * * 96da
+15459 * * * * * * * 78b9 e7a2b9,eea1b2 78b9,e872 000078b9,0000e872 96db * * 96db * * 96db
+15460 * * * * * * * 9277 e989b7,eea1b3 9277,e873 00009277,0000e873 96dc * * 96dc * * 96dc
+15461 * * * * * * * 944d e9918d,eea1b4 944d,e874 0000944d,0000e874 96dd * * 96dd * * 96dd
+15462 * * * * * * * 4fe4 e4bfa4,eea1b5 4fe4,e875 00004fe4,0000e875 96de fb79 8e66 96de * * 96de
+15463 * * * * * * * 3440 e39180,eea1b6 3440,e876 00003440,0000e876 96df * * 96df * * 96df
+15464 * * * * * * * 9064 e981a4,eea1b7 9064,e877 00009064,0000e877 96e0 * * 96e0 * * 96e0
+15465 * * * * * * * e878 f0a5959d,eea1b8 d855dd5d,e878 0002555d,0000e878 96e1 * * 96e1 * * 96e1
+15466 * * * * * * * 783d e7a0bd,eea1b9 783d,e879 0000783d,0000e879 96e2 * * 96e2 * * 96e2
+15467 * * * * * * * 7854 e7a194,eea1ba 7854,e87a 00007854,0000e87a 96e3 * * 96e3 * * 96e3
+15468 * * * * * * * 78b6 e7a2b6,eea1bb 78b6,e87b 000078b6,0000e87b 96e4 * * 96e4 * * 96e4
+15469 * * * * * * * 784b e7a18b,eea1bc 784b,e87c 0000784b,0000e87c 96e5 * * 96e5 * * 96e5
+15470 * * * * * * * e87d f0a19d97,eea1bd d845df57,e87d 00021757,0000e87d 96e6 * * 96e6 * * 96e6
+15471 * * * * * * * e87e f0a38789,eea1be d84cddc9,e87e 000231c9,0000e87e 96e7 * * 96e7 * * 96e7
+15472 * * * * * * * e87f f0a4a581,eea1bf d852dd41,e87f 00024941,0000e87f 96e8 * * 96e8 * * 96e8
+15473 * * * * * * * 369a e39a9a,eea280 369a,e880 0000369a,0000e880 96e9 * * 96e9 * * 96e9
+15474 * * * * * * * 4f72 e4bdb2,eea281 4f72,e881 00004f72,0000e881 96ea * * 96ea * * 96ea
+15475 * * * * * * * 6fda e6bf9a,eea282 6fda,e882 00006fda,0000e882 96eb fcd9 8f6d 96eb * * 96eb
+15476 * * * * * * * 6fd9 e6bf99,eea283 6fd9,e883 00006fd9,0000e883 96ec * * 96ec * * 96ec
+15477 * * * * * * * * * * * * fcd8 8ff7 96ed * * *
+15478 * * * * * * * 701e e7809e,eea284,eea285 701e,e884,e885 0000701e,0000e884,0000e885 96ed,96ee * * 96ee * * 96ed,96ee
+15479 * * * * * * * 5414 e59094,eea286 5414,e886 00005414,0000e886 96ef fa4a 9178 96ef c765 fa79 96ef
+15480 * * * * * * * e887 f0a486b5,eea287 d850ddb5,e887 000241b5,0000e887 96f0 * * 96f0 * * 96f0
+15481 * * * * * * * 57bb e59ebb,eea288 57bb,e888 000057bb,0000e888 96f1 * * 96f1 * * 96f1
+15482 * * * * * * * 58f3 e5a3b3,eea289 58f3,e889 000058f3,0000e889 96f2 fb42 9243 96f2 c7c2 fae2 96f2
+15483 * * * * * * * 578a e59e8a,eea28a 578a,e88a 0000578a,0000e88a 96f3 * * 96f3 * * 96f3
+15484 * * * * * * * 9d16 e9b496,eea28b 9d16,e88b 00009d16,0000e88b 96f4 * * 96f4 * * 96f4
+15485 * * * * * * * 57d7 e59f97,eea28c 57d7,e88c 000057d7,0000e88c 96f5 fa71 * 96f5 c7c3 fae3 96f5
+15486 * * * * * * * 7134 e784b4,eea28d 7134,e88d 00007134,0000e88d 96f6 fce0 91d2 96f6 * * 96f6
+15487 * * * * * * * 34af e392af,eea28e 34af,e88e 000034af,0000e88e 96f7 * * 96f7 * * 96f7
+15488 * * * * * * * e88f f0a486ac,eea28f d850ddac,e88f 000241ac,0000e88f 96f8 * * 96f8 * * 96f8
+15489 * * * * * * * 71eb e787ab,eea290 71eb,e890 000071eb,0000e890 96f9 * * 96f9 * * 96f9
+15490 * * * * * * * e891 f0a6b180,eea291 d85bdc40,e891 00026c40,0000e891 96fa * * 96fa * * 96fa
+15491 * * * * * * * e892 f0a4be97,eea292 d853df97,e892 00024f97,0000e892 96fb * * 96fb * * 96fb
+15492 * * * * * * * * * * * * * * 96fc * * *
+15493 * * * * * * * e894 f0a19eb5,eea294 d845dfb5,e894 000217b5,0000e894 96fd * * 96fd c7cb faf0 96fd
+15494 * * * * * * * e895 f0a8a989,eea295 d862de49,e895 00028a49,0000e895 96fe * * 96fe * * 96fe
+15495 * * * * * * * 610c e6848c,eea296 610c,e896 0000610c,0000e896 9740 * * 9740 * * 9740
+15496 * * * * * * * 5ace e5ab8e,eea297 5ace,e897 00005ace,0000e897 9741 * * 9741 * * 9741
+15497 * * * * * * * 5a0b e5a88b,eea298 5a0b,e898 00005a0b,0000e898 9742 * * 9742 * * 9742
+15498 * * * * * * * 42bc e48abc,eea299 42bc,e899 000042bc,0000e899 9743 * * 9743 * * 9743
+15499 * * * * * * * e89a f0a49288,eea29a d851dc88,e89a 00024488,0000e89a 9744 * * 9744 * * 9744
+15500 * * * * * * * 372c e39cac,eea29b 372c,e89b 0000372c,0000e89b 9745 * * 9745 * * 9745
+15501 * * * * * * * 4b7b e4adbb,eea29c 4b7b,e89c 00004b7b,0000e89c 9746 * * 9746 * * 9746
+15502 * * * * * * * e89d f0a8a7bc,eea29d d862ddfc,e89d 000289fc,0000e89d 9747 * * 9747 * * 9747
+15503 * * * * * * * 93bb e98ebb,eea29e 93bb,e89e 000093bb,0000e89e 9748 * * 9748 * * 9748
+15504 * * * * * * * 93b8 e98eb8,eea29f 93b8,e89f 000093b8,0000e89f 9749 * * 9749 * * 9749
+15505 * * * * * * * e8a0 f0a1a396,eea2a0 d846dcd6,e8a0 000218d6,0000e8a0 974a * * 974a * * 974a
+15506 * * * * * * * e8a1 f0a0bc9d,eea2a1 d843df1d,e8a1 00020f1d,0000e8a1 974b * * 974b * * 974b
+15507 * * * * * * * 8472 e891b2,eea2a2 8472,e8a2 00008472,0000e8a2 974c * * 974c * * 974c
+15508 * * * * * * * e8a3 f0a6b380,eea2a3 d85bdcc0,e8a3 00026cc0,0000e8a3 974d * * 974d * * 974d
+15509 * * * * * * * e8a4 f0a19093,eea2a4 d845dc13,e8a4 00021413,0000e8a4 974e * * 974e * * 974e
+15510 * * * * * * * e8a5 f0a48bba,eea2a5 d850defa,e8a5 000242fa,0000e8a5 974f * * 974f * * 974f
+15511 * * * * * * * e8a6 f0a2b0a6,eea2a6 d84bdc26,e8a6 00022c26,0000e8a6 9750 * * 9750 * * 9750
+15512 * * * * * * * e8a7 f0a48f81,eea2a7 d850dfc1,e8a7 000243c1,0000e8a7 9751 * * 9751 * * 9751
+15513 * * * * * * * 5994 e5a694,eea2a8 5994,e8a8 00005994,0000e8a8 9752 * * 9752 * * 9752
+15514 * * * * * * * e8a9 f0a3b6b7,eea2a9 d84fddb7,e8a9 00023db7,0000e8a9 9753 * * 9753 * * 9753
+15515 * * * * * * * e8aa f0a69d81,eea2aa d859df41,e8aa 00026741,0000e8aa 9754 * * 9754 * * 9754
+15516 * * * * * * * 7da8 e7b6a8,eea2ab 7da8,e8ab 00007da8,0000e8ab 9755 * * 9755 * * 9755
+15517 * * * * * * * e8ac f0a6859b,eea2ac d858dd5b,e8ac 0002615b,0000e8ac 9756 * * 9756 * * 9756
+15518 * * * * * * * e8ad f0a682a4,eea2ad d858dca4,e8ad 000260a4,0000e8ad 9757 * * 9757 * * 9757
+15519 * * * * * * * e8ae f0a4a6b9,eea2ae d852ddb9,e8ae 000249b9,0000e8ae 9758 * * 9758 * * 9758
+15520 * * * * * * * e8af f0a4a68b,eea2af d852dd8b,e8af 0002498b,0000e8af 9759 * * 9759 * * 9759
+15521 * * * * * * * e8b0 f0a8a7ba,eea2b0 d862ddfa,e8b0 000289fa,0000e8b0 975a * * 975a * * 975a
+15522 * * * * * * * 92e5 e98ba5,eea2b1 92e5,e8b1 000092e5,0000e8b1 975b * * 975b * * 975b
+15523 * * * * * * * 73e2 e78fa2,eea2b2 73e2,e8b2 000073e2,0000e8b2 975c * * 975c * * 975c
+15524 * * * * * * * 3ee9 e3bba9,eea2b3 3ee9,e8b3 00003ee9,0000e8b3 975d * * 975d * * 975d
+15525 * * * * * * * 74b4 e792b4,eea2b4 74b4,e8b4 000074b4,0000e8b4 975e * * 975e * * 975e
+15526 * * * * * * * e8b5 f0a8ada3,eea2b5 d862df63,e8b5 00028b63,0000e8b5 975f * * 975f * * 975f
+15527 * * * * * * * e8b6 f0a1a29f,eea2b6 d846dc9f,e8b6 0002189f,0000e8b6 9760 * * 9760 * * 9760
+15528 * * * * * * * 3ee1 e3bba1,eea2b7 3ee1,e8b7 00003ee1,0000e8b7 9761 * * 9761 * * 9761
+15529 * * * * * * * e8b8 f0a4aab3,eea2b8 d852deb3,e8b8 00024ab3,0000e8b8 9762 * * 9762 * * 9762
+15530 * * * * * * * 6ad8 e6ab98,eea2b9 6ad8,e8b9 00006ad8,0000e8b9 9763 * * 9763 * * 9763
+15531 * * * * * * * 73f3 e78fb3,eea2ba 73f3,e8ba 000073f3,0000e8ba 9764 * * 9764 * * 9764
+15532 * * * * * * * 73fb e78fbb,eea2bb 73fb,e8bb 000073fb,0000e8bb 9765 * * 9765 * * 9765
+15533 * * * * * * * 3ed6 e3bb96,eea2bc 3ed6,e8bc 00003ed6,0000e8bc 9766 * * 9766 * * 9766
+15534 * * * * * * * e8bd f0a4a8be,eea2bd d852de3e,e8bd 00024a3e,0000e8bd 9767 * * 9767 * * 9767
+15535 * * * * * * * e8be f0a4aa94,eea2be d852de94,e8be 00024a94,0000e8be 9768 * * 9768 * * 9768
+15536 * * * * * * * e8bf f0a19f99,eea2bf d845dfd9,e8bf 000217d9,0000e8bf 9769 * * 9769 * * 9769
+15537 * * * * * * * e8c0 f0a4a9a6,eea380 d852de66,e8c0 00024a66,0000e8c0 976a * * 976a * * 976a
+15538 * * * * * * * e8c1 f0a08ea7,eea381 d840dfa7,e8c1 000203a7,0000e8c1 976b * * 976b * * 976b
+15539 * * * * * * * e8c2 f0a190a4,eea382 d845dc24,e8c2 00021424,0000e8c2 976c * * 976c * * 976c
+15540 * * * * * * * e8c3 f0a4a7a5,eea383 d852dde5,e8c3 000249e5,0000e8c3 976d * * 976d * * 976d
+15541 * * * * * * * 7448 e79188,eea384 7448,e8c4 00007448,0000e8c4 976e * * 976e * * 976e
+15542 * * * * * * * e8c5 f0a4a496,eea385 d852dd16,e8c5 00024916,0000e8c5 976f * * 976f * * 976f
+15543 * * * * * * * 70a5 e782a5,eea386 70a5,e8c6 000070a5,0000e8c6 9770 * * 9770 * * 9770
+15544 * * * * * * * e8c7 f0a4a5b6,eea387 d852dd76,e8c7 00024976,0000e8c7 9771 * * 9771 * * 9771
+15545 * * * * * * * 9284 e98a84,eea388 9284,e8c8 00009284,0000e8c8 9772 * * 9772 * * 9772
+15546 * * * * * * * 73e6 e78fa6,eea389 73e6,e8c9 000073e6,0000e8c9 9773 * * 9773 * * 9773
+15547 * * * * * * * 935f e98d9f,eea38a 935f,e8ca 0000935f,0000e8ca 9774 * * 9774 * * 9774
+15548 * * * * * * * e8cb f0a093be,eea38b d841dcfe,e8cb 000204fe,0000e8cb 9775 * * 9775 * * 9775
+15549 * * * * * * * 9331 e98cb1,eea38c 9331,e8cc 00009331,0000e8cc 9776 * * 9776 * * 9776
+15550 * * * * * * * e8cd f0a8ab8e,eea38d d862dece,e8cd 00028ace,0000e8cd 9777 * * 9777 * * 9777
+15551 * * * * * * * e8ce f0a8a896,eea38e d862de16,e8ce 00028a16,0000e8ce 9778 * * 9778 * * 9778
+15552 * * * * * * * 9386 e98e86,eea38f 9386,e8cf 00009386,0000e8cf 9779 * * 9779 * * 9779
+15553 * * * * * * * e8d0 f0a8afa7,eea390 d862dfe7,e8d0 00028be7,0000e8d0 977a * * 977a * * 977a
+15554 * * * * * * * e8d1 f0a59795,eea391 d855ddd5,e8d1 000255d5,0000e8d1 977b * * 977b * * 977b
+15555 * * * * * * * 4935 e4a4b5,eea392 4935,e8d2 00004935,0000e8d2 977c * * 977c * * 977c
+15556 * * * * * * * e8d3 f0a8aa82,eea393 d862de82,e8d3 00028a82,0000e8d3 977d * * 977d * * 977d
+15557 * * * * * * * 716b e785ab,eea394 716b,e8d4 0000716b,0000e8d4 977e * * 977e * * 977e
+15558 * * * * * * * e8d5 f0a4a583,eea395 d852dd43,e8d5 00024943,0000e8d5 97a1 * * 97a1 * * 97a1
+15559 * * * * * * * e8d6 f0a0b3bf,eea396 d843dcff,e8d6 00020cff,0000e8d6 97a2 * * 97a2 * * 97a2
+15560 * * * * * * * 56a4 e59aa4,eea397 56a4,e8d7 000056a4,0000e8d7 97a3 fad9 * 97a3 c7bd fadb 97a3
+15561 * * * * * * * e8d8 f0a0989a,eea398 d841de1a,e8d8 0002061a,0000e8d8 97a4 * * 97a4 * * 97a4
+15562 * * * * * * * e8d9 f0a0afab,eea399 d842dfeb,e8d9 00020beb,0000e8d9 97a5 * * 97a5 * * 97a5
+15563 * * * * * * * e8da f0a0b2b8,eea39a d843dcb8,e8da 00020cb8,0000e8da 97a6 * * 97a6 * * 97a6
+15564 * * * * * * * 5502 e59482,eea39b 5502,e8db 00005502,0000e8db 97a7 fa7c * 97a7 c771 faab 97a7
+15565 * * * * * * * 79c4 e7a784,eea39c 79c4,e8dc 000079c4,0000e8dc 97a8 fb55,fd62 91f0 97a8 * * 97a8
+15566 * * * * * * * e8dd f0a19fba,eea39d d845dffa,e8dd 000217fa,0000e8dd 97a9 * * 97a9 * * 97a9
+15567 * * * * * * * 7dfe e7b7be,eea39e 7dfe,e8de 00007dfe,0000e8de 97aa * * 97aa * * 97aa
+15568 * * * * * * * e8df f0a19b82,eea39f d845dec2,e8df 000216c2,0000e8df 97ab * * 97ab * * 97ab
+15569 * * * * * * * e8e0 f0a4a990,eea3a0 d852de50,e8e0 00024a50,0000e8e0 97ac * * 97ac * * 97ac
+15570 * * * * * * * e8e1 f0a1a192,eea3a1 d846dc52,e8e1 00021852,0000e8e1 97ad * * 97ad * * 97ad
+15571 * * * * * * * 452e e494ae,eea3a2 452e,e8e2 0000452e,0000e8e2 97ae * * 97ae * * 97ae
+15572 * * * * * * * 9401 e99081,eea3a3 9401,e8e3 00009401,0000e8e3 97af * * 97af * * 97af
+15573 * * * * * * * 370a e39c8a,eea3a4 370a,e8e4 0000370a,0000e8e4 97b0 * * 97b0 * * 97b0
+15574 * * * * * * * e8e5 f0a8ab80,eea3a5 d862dec0,e8e5 00028ac0,0000e8e5 97b1 * * 97b1 * * 97b1
+15575 * * * * * * * e8e6 f0a4a6ad,eea3a6 d852ddad,e8e6 000249ad,0000e8e6 97b2 * * 97b2 * * 97b2
+15576 * * * * * * * 59b0 e5a6b0,eea3a7 59b0,e8e7 000059b0,0000e8e7 97b3 * * 97b3 * * 97b3
+15577 * * * * * * * e8e8 f0a1a2bf,eea3a8 d846dcbf,e8e8 000218bf,0000e8e8 97b4 * * 97b4 * * 97b4
+15578 * * * * * * * e8e9 f0a1a283,eea3a9 d846dc83,e8e9 00021883,0000e8e9 97b5 * * 97b5 * * 97b5
+15579 * * * * * * * e8ea f0a79284,eea3aa d85ddc84,e8ea 00027484,0000e8ea 97b6 * * 97b6 * * 97b6
+15580 * * * * * * * 5aa1 e5aaa1,eea3ab 5aa1,e8eb 00005aa1,0000e8eb 97b7 * * 97b7 * * 97b7
+15581 * * * * * * * 36e2 e39ba2,eea3ac 36e2,e8ec 000036e2,0000e8ec 97b8 * * 97b8 * * 97b8
+15582 * * * * * * * e8ed f0a3b59b,eea3ad d84fdd5b,e8ed 00023d5b,0000e8ed 97b9 * * 97b9 * * 97b9
+15583 * * * * * * * 36b0 e39ab0,eea3ae 36b0,e8ee 000036b0,0000e8ee 97ba * * 97ba * * 97ba
+15584 * * * * * * * 925f e9899f,eea3af 925f,e8ef 0000925f,0000e8ef 97bb * * 97bb * * 97bb
+15585 * * * * * * * 5a79 e5a9b9,eea3b0 5a79,e8f0 00005a79,0000e8f0 97bc * * 97bc * * 97bc
+15586 * * * * * * * e8f1 f0a8aa81,eea3b1 d862de81,e8f1 00028a81,0000e8f1 97bd * * 97bd * * 97bd
+15587 * * * * * * * e8f2 f0a1a1a2,eea3b2 d846dc62,e8f2 00021862,0000e8f2 97be * * 97be * * 97be
+15588 * * * * * * * 9374 e98db4,eea3b3 9374,e8f3 00009374,0000e8f3 97bf * * 97bf * * 97bf
+15589 * * * * * * * 3ccd e3b38d,eea3b4 3ccd,e8f4 00003ccd,0000e8f4 97c0 * * 97c0 * * 97c0
+15590 * * * * * * * e8f5 f0a0aab4,eea3b5 d842deb4,e8f5 00020ab4,0000e8f5 97c1 * * 97c1 * * 97c1
+15591 * * * * * * * 4a96 e4aa96,eea3b6 4a96,e8f6 00004a96,0000e8f6 97c2 * * 97c2 * * 97c2
+15592 * * * * * * * 398a e3a68a,eea3b7 398a,e8f7 0000398a,0000e8f7 97c3 * * 97c3 * * 97c3
+15593 * * * * * * * 50f4 e583b4,eea3b8 50f4,e8f8 000050f4,0000e8f8 97c4 * * 97c4 * * 97c4
+15594 * * * * * * * 3d69 e3b5a9,eea3b9 3d69,e8f9 00003d69,0000e8f9 97c5 * * 97c5 * * 97c5
+15595 * * * * * * * 3d4c e3b58c,eea3ba 3d4c,e8fa 00003d4c,0000e8fa 97c6 * * 97c6 * * 97c6
+15596 * * * * * * * e8fb f0a18e9c,eea3bb d844df9c,e8fb 0002139c,0000e8fb 97c7 * * 97c7 * * 97c7
+15597 * * * * * * * 7175 e785b5,eea3bc 7175,e8fc 00007175,0000e8fc 97c8 * * 97c8 * * 97c8
+15598 * * * * * * * 42fb e48bbb,eea3bd 42fb,e8fd 000042fb,0000e8fd 97c9 * * 97c9 * * 97c9
+15599 * * * * * * * e8fe f0a88898,eea3be d860de18,e8fe 00028218,0000e8fe 97ca * * 97ca * * 97ca
+15600 * * * * * * * 6e0f e6b88f,eea3bf 6e0f,e8ff 00006e0f,0000e8ff 97cb * * 97cb * * 97cb
+15601 * * * * * * * e900 f0a983a4,eea480 d864dce4,e900 000290e4,0000e900 97cc * * 97cc * * 97cc
+15602 * * * * * * * 44eb e493ab,eea481 44eb,e901 000044eb,0000e901 97cd * * 97cd * * 97cd
+15603 * * * * * * * 6d57 e6b597,eea482 6d57,e902 00006d57,0000e902 97ce * * 97ce * * 97ce
+15604 * * * * * * * e903 f0a7b98f,eea483 d85fde4f,e903 00027e4f,0000e903 97cf * * 97cf * * 97cf
+15605 * * * * * * * 7067 e781a7,eea484 7067,e904 00007067,0000e904 97d0 * * 97d0 c855 fbc4 97d0
+15606 * * * * * * * 6caf e6b2af,eea485 6caf,e905 00006caf,0000e905 97d1 * * 97d1 * * 97d1
+15607 * * * * * * * 3cd6 e3b396,eea486 3cd6,e906 00003cd6,0000e906 97d2 * * 97d2 * * 97d2
+15608 * * * * * * * e907 f0a3bfad,eea487 d84fdfed,e907 00023fed,0000e907 97d3 * * 97d3 * * 97d3
+15609 * * * * * * * e908 f0a3b8ad,eea488 d84fde2d,e908 00023e2d,0000e908 97d4 * * 97d4 * * 97d4
+15610 * * * * * * * 6e02 e6b882,eea489 6e02,e909 00006e02,0000e909 97d5 * * 97d5 * * 97d5
+15611 * * * * * * * 6f0c e6bc8c,eea48a 6f0c,e90a 00006f0c,0000e90a 97d6 * * 97d6 * * 97d6
+15612 * * * * * * * 3d6f e3b5af,eea48b 3d6f,e90b 00003d6f,0000e90b 97d7 * * 97d7 * * 97d7
+15613 * * * * * * * e90c f0a08fb5,eea48c d840dff5,e90c 000203f5,0000e90c 97d8 * * 97d8 * * 97d8
+15614 * * * * * * * 7551 e79591,eea48d 7551,e90d 00007551,0000e90d 97d9 fcdc 8ea4 97d9 * fbc6 97d9
+15615 * * * * * * * 36bc e39abc,eea48e 36bc,e90e 000036bc,0000e90e 97da * * 97da * * 97da
+15616 * * * * * * * 34c8 e39388,eea48f 34c8,e90f 000034c8,0000e90f 97db * * 97db * * 97db
+15617 * * * * * * * 4680 e49a80,eea490 4680,e910 00004680,0000e910 97dc * * 97dc * * 97dc
+15618 * * * * * * * 3eda e3bb9a,eea491 3eda,e911 00003eda,0000e911 97dd * * 97dd * * 97dd
+15619 * * * * * * * 4871 e4a1b1,eea492 4871,e912 00004871,0000e912 97de * * 97de * * 97de
+15620 * * * * * * * 59c4 e5a784,eea493 59c4,e913 000059c4,0000e913 97df * * 97df * * 97df
+15621 * * * * * * * 926e e989ae,eea494 926e,e914 0000926e,0000e914 97e0 * * 97e0 * * 97e0
+15622 * * * * * * * 493e e4a4be,eea495 493e,e915 0000493e,0000e915 97e1 * * 97e1 * * 97e1
+15623 * * * * * * * 8f41 e8bd81,eea496 8f41,e916 00008f41,0000e916 97e2 * * 97e2 * * 97e2
+15624 * * * * * * * e917 f0a8b09c,eea497 d863dc1c,e917 00028c1c,0000e917 97e3 * * 97e3 * * 97e3
+15625 * * * * * * * e918 f0a6af80,eea498 d85adfc0,e918 00026bc0,0000e918 97e4 * * 97e4 * * 97e4
+15626 * * * * * * * 5812 e5a092,eea499 5812,e919 00005812,0000e919 97e5 * * 97e5 * * 97e5
+15627 * * * * * * * 57c8 e59f88,eea49a 57c8,e91a 000057c8,0000e91a 97e6 * * 97e6 * * 97e6
+15628 * * * * * * * 36d6 e39b96,eea49b 36d6,e91b 000036d6,0000e91b 97e7 * * 97e7 * * 97e7
+15629 * * * * * * * e91c f0a19192,eea49c d845dc52,e91c 00021452,0000e91c 97e8 * * 97e8 * * 97e8
+15630 * * * * * * * 70fe e783be,eea49d 70fe,e91d 000070fe,0000e91d 97e9 * * 97e9 * * 97e9
+15631 * * * * * * * e91e f0a48da2,eea49e d850df62,e91e 00024362,0000e91e 97ea * * 97ea * * 97ea
+15632 * * * * * * * e91f f0a4a9b1,eea49f d852de71,e91f 00024a71,0000e91f 97eb * * 97eb * * 97eb
+15633 * * * * * * * e920 f0a2bfa3,eea4a0 d84bdfe3,e920 00022fe3,0000e920 97ec * * 97ec * * 97ec
+15634 * * * * * * * e921 f0a18ab0,eea4a1 d844deb0,e921 000212b0,0000e921 97ed * * 97ed * * 97ed
+15635 * * * * * * * e922 f0a28ebd,eea4a2 d848dfbd,e922 000223bd,0000e922 97ee * * 97ee * * 97ee
+15636 * * * * * * * 68b9 e6a2b9,eea4a3 68b9,e923 000068b9,0000e923 97ef * * 97ef * * 97ef
+15637 * * * * * * * 6967 e6a5a7,eea4a4 6967,e924 00006967,0000e924 97f0 * * 97f0 * * 97f0
+15638 * * * * * * * e925 f0a18e98,eea4a5 d844df98,e925 00021398,0000e925 97f1 * * 97f1 * * 97f1
+15639 * * * * * * * e926 f0a393a5,eea4a6 d84ddce5,e926 000234e5,0000e926 97f2 * * 97f2 * * 97f2
+15640 * * * * * * * e927 f0a7afb4,eea4a7 d85edff4,e927 00027bf4,0000e927 97f3 * * 97f3 * * 97f3
+15641 * * * * * * * e928 f0a39b9f,eea4a8 d84ddedf,e928 000236df,0000e928 97f4 * * 97f4 * * 97f4
+15642 * * * * * * * e929 f0a8aa83,eea4a9 d862de83,e929 00028a83,0000e929 97f5 * * 97f5 * * 97f5
+15643 * * * * * * * e92a f0a39f96,eea4aa d84ddfd6,e92a 000237d6,0000e92a 97f6 * * 97f6 * * 97f6
+15644 * * * * * * * e92b f0a38fba,eea4ab d84cdffa,e92b 000233fa,0000e92b 97f7 * * 97f7 * * 97f7
+15645 * * * * * * * e92c f0a4b29f,eea4ac d853dc9f,e92c 00024c9f,0000e92c 97f8 * * 97f8 * * 97f8
+15646 * * * * * * * 6a1a e6a89a,eea4ad 6a1a,e92d 00006a1a,0000e92d 97f9 * * 97f9 * * 97f9
+15647 * * * * * * * e92e f0a39aad,eea4ae d84ddead,e92e 000236ad,0000e92e 97fa * * 97fa * * 97fa
+15648 * * * * * * * e92f f0a6b2b7,eea4af d85bdcb7,e92f 00026cb7,0000e92f 97fb * * 97fb * * 97fb
+15649 * * * * * * * 843e e890be,eea4b0 843e,e930 0000843e,0000e930 97fc * * 97fc * * 97fc
+15650 * * * * * * * 44df e4939f,eea4b1 44df,e931 000044df,0000e931 97fd * * 97fd * * 97fd
+15651 * * * * * * * 44ce e4938e,eea4b2 44ce,e932 000044ce,0000e932 97fe * * 97fe * * 97fe
+15652 * * * * * * * e933 f0a6b4a6,eea4b3 d85bdd26,e933 00026d26,0000e933 9840 * * 9840 * * 9840
+15653 * * * * * * * e934 f0a6b591,eea4b4 d85bdd51,e934 00026d51,0000e934 9841 * * 9841 * * 9841
+15654 * * * * * * * e935 f0a6b282,eea4b5 d85bdc82,e935 00026c82,0000e935 9842 * * 9842 * * 9842
+15655 * * * * * * * e936 f0a6bf9e,eea4b6 d85bdfde,e936 00026fde,0000e936 9843 * * 9843 * * 9843
+15656 * * * * * * * * * * * * * * 9844 * * *
+15657 * * * * * * * * * * * * * * 9845 * * *
+15658 * * * * * * * 833d e88cbd,eea4b9 833d,e939 0000833d,0000e939 9846 * * 9846 * * 9846
+15659 * * * * * * * e93a f0a19cba,eea4ba d845df3a,e93a 0002173a,0000e93a 9847 * * 9847 * * 9847
+15660 * * * * * * * 83ed e88fad,eea4bb 83ed,e93b 000083ed,0000e93b 9848 * * 9848 * * 9848
+15661 * * * * * * * e93c f0a6b280,eea4bc d85bdc80,e93c 00026c80,0000e93c 9849 * * 9849 * * 9849
+15662 * * * * * * * e93d f0a78193,eea4bd d85cdc53,e93d 00027053,0000e93d 984a * * 984a * * 984a
+15663 * * * * * * * e93e f0a19f9b,eea4be d845dfdb,e93e 000217db,0000e93e 984b * * 984b * * 984b
+15664 * * * * * * * 5989 e5a689,eea4bf 5989,e93f 00005989,0000e93f 984c * * 984c * * 984c
+15665 * * * * * * * 5a82 e5aa82,eea580 5a82,e940 00005a82,0000e940 984d * * 984d * * 984d
+15666 * * * * * * * e941 f0a19eb3,eea581 d845dfb3,e941 000217b3,0000e941 984e * * 984e * * 984e
+15667 * * * * * * * 5a61 e5a9a1,eea582 5a61,e942 00005a61,0000e942 984f * * 984f * * 984f
+15668 * * * * * * * 5a71 e5a9b1,eea583 5a71,e943 00005a71,0000e943 9850 * * 9850 * * 9850
+15669 * * * * * * * e944 f0a1a485,eea584 d846dd05,e944 00021905,0000e944 9851 * * 9851 * * 9851
+15670 * * * * * * * e945 f0a487bc,eea585 d850ddfc,e945 000241fc,0000e945 9852 * * 9852 * * 9852
+15671 * * * * * * * 372d e39cad,eea586 372d,e946 0000372d,0000e946 9853 * * 9853 * * 9853
+15672 * * * * * * * 59ef e5a7af,eea587 59ef,e947 000059ef,0000e947 9854 * * 9854 * * 9854
+15673 * * * * * * * e948 f0a19cbc,eea588 d845df3c,e948 0002173c,0000e948 9855 * * 9855 * * 9855
+15674 * * * * * * * 36c7 e39b87,eea589 36c7,e949 000036c7,0000e949 9856 * * 9856 * * 9856
+15675 * * * * * * * 718e e7868e,eea58a 718e,e94a 0000718e,0000e94a 9857 * * 9857 * * 9857
+15676 * * * * * * * 9390 e98e90,eea58b 9390,e94b 00009390,0000e94b 9858 * * 9858 * * 9858
+15677 * * * * * * * 669a e69a9a,eea58c 669a,e94c 0000669a,0000e94c 9859 * * 9859 * * 9859
+15678 * * * * * * * e94d f0a48aa5,eea58d d850dea5,e94d 000242a5,0000e94d 985a * * 985a * * 985a
+15679 * * * * * * * 5a6e e5a9ae,eea58e 5a6e,e94e 00005a6e,0000e94e 985b * * 985b * * 985b
+15680 * * * * * * * 5a2b e5a8ab,eea58f 5a2b,e94f 00005a2b,0000e94f 985c * * 985c * * 985c
+15681 * * * * * * * e950 f0a48a93,eea590 d850de93,e950 00024293,0000e950 985d * * 985d * * 985d
+15682 * * * * * * * 6a2b e6a8ab,eea591 6a2b,e951 00006a2b,0000e951 985e fcc5 8ea6 985e * fbb4 985e
+15683 * * * * * * * e952 f0a3bbb9,eea592 d84fdef9,e952 00023ef9,0000e952 985f * * 985f * * 985f
+15684 * * * * * * * e953 f0a79cb6,eea593 d85ddf36,e953 00027736,0000e953 9860 * * 9860 * * 9860
+15685 * * * * * * * e954 f0a4919b,eea594 d851dc5b,e954 0002445b,0000e954 9861 * * 9861 * * 9861
+15686 * * * * * * * e955 f0a48b8a,eea595 d850deca,e955 000242ca,0000e955 9862 * * 9862 * * 9862
+15687 * * * * * * * 711d e7849d,eea596 711d,e956 0000711d,0000e956 9863 * * 9863 * * 9863
+15688 * * * * * * * e957 f0a48999,eea597 d850de59,e957 00024259,0000e957 9864 * * 9864 * * 9864
+15689 * * * * * * * e958 f0a8a7a1,eea598 d862dde1,e958 000289e1,0000e958 9865 * * 9865 * * 9865
+15690 * * * * * * * 4fb0 e4beb0,eea599 4fb0,e959 00004fb0,0000e959 9866 * * 9866 * * 9866
+15691 * * * * * * * e95a f0a6b4a8,eea59a d85bdd28,e95a 00026d28,0000e95a 9867 * * 9867 * * 9867
+15692 * * * * * * * 5cc2 e5b382,eea59b 5cc2,e95b 00005cc2,0000e95b 9868 * * 9868 * * 9868
+15693 * * * * * * * e95c f0a4938e,eea59c d851dcce,e95c 000244ce,0000e95c 9869 * * 9869 * * 9869
+15694 * * * * * * * e95d f0a7b98d,eea59d d85fde4d,e95d 00027e4d,0000e95d 986a * * 986a * * 986a
+15695 * * * * * * * e95e f0a48ebd,eea59e d850dfbd,e95e 000243bd,0000e95e 986b * * 986b * * 986b
+15696 * * * * * * * 6a0c e6a88c,eea59f 6a0c,e95f 00006a0c,0000e95f 986c * * 986c * * 986c
+15697 * * * * * * * e960 f0a48996,eea5a0 d850de56,e960 00024256,0000e960 986d * * 986d * * 986d
+15698 * * * * * * * e961 f0a18c84,eea5a1 d844df04,e961 00021304,0000e961 986e * * 986e * * 986e
+15699 * * * * * * * 70a6 * * * * * * 986f * * *
+15700 * * * * * * * 7133 e784b3,eea5a3 7133,e963 00007133,0000e963 9870 * * 9870 * * 9870
+15701 * * * * * * * e964 f0a48fa9,eea5a4 d850dfe9,e964 000243e9,0000e964 9871 * * 9871 * * 9871
+15702 * * * * * * * 3da5 e3b6a5,eea5a5 3da5,e965 00003da5,0000e965 9872 * * 9872 * * 9872
+15703 * * * * * * * 6cdf e6b39f,eea5a6 6cdf,e966 00006cdf,0000e966 9873 * * 9873 * * 9873
+15704 * * * * * * * e967 f0afa0a5,eea5a7 d87edc25,e967 0002f825,0000e967 9874 * * 9874 * * 9874
+15705 * * * * * * * 59eb e5a7ab,eea5aa 59eb,e96a 000059eb,0000e96a 9877 * * 9877 * * 9877
+15706 * * * * * * * 5f5c e5bd9c,eea5ad 5f5c,e96d 00005f5c,0000e96d 987a * * 987a * * 987a
+15707 * * * * * * * e974 eea5b4,f0a38c80 d84cdf00,e974 0000e974,00023300 98a3 * * 98a3 * * 98a3
+15708 * * * * * * * 7cd3 e7b393,eea680 7cd3,e980 00007cd3,0000e980 98af fcf7 8e49 98af * * 98af
+15709 * * * * * * * e987 eea687,f0a7abb4 d85edef4,e987 0000e987,00027af4 98b6 * * 98b6 * * 98b6
+15710 * * * * * * * e98a eea68a,f0a59bb6 d855def6,e98a 0000e98a,000256f6 98b9 * * 98b9 * * 98b9
+15711 * * * * * * * e98e f0a7ac98,eea68e d85edf18,e98e 00027b18,0000e98e 98bd * * 98bd * * 98bd
+15712 * * * * * * * 906c e981ac,eea68f 906c,e98f 0000906c,0000e98f 98be * * 98be * * 98be
+15713 * * * * * * * 81f6 e887b6,eea693 81f6,e993 000081f6,0000e993 98c2 fdc9 8eef 98c2 * * 98c2
+15714 * * * * * * * 770c e79c8c,eea695 770c,e995 0000770c,0000e995 98c4 * * 98c4 * * 98c4
+15715 * * * * * * * 6ca2 e6b2a2,eea697 6ca2,e997 00006ca2,0000e997 98c6 fafc 8fa3 98c6 c84e fbbb 98c6
+15716 * * * * * * * 56fd e59bbd,eea698 56fd,e998 000056fd,0000e998 98c7 fc57 8fb8 98c7 * * 98c7
+15717 * * * * * * * 5869 e5a1a9,eea6b4 5869,e9b4 00005869,0000e9b4 98e3 fbf0 8fd8 98e3 * * 98e3
+15718 * * * * * * * 6761 e69da1,eea6b8 6761,e9b8 00006761,0000e9b8 98e7 fcab 8e75 98e7 * * 98e7
+15719 * * * * * * * 5c5e e5b19e,eea6be 5c5e,e9be 00005c5e,0000e9be 98ed fbfe 8f78 98ed * * 98ed
+15720 * * * * * * * 58f2 e5a3b2,eea781 58f2,e9c1 000058f2,0000e9c1 98f0 * * 98f0 * * 98f0
+15721 * * * * * * * 70b9 e782b9,eea783 70b9,e9c3 000070b9,0000e9c3 98f2 fcdf 8e7e 98f2 c856 fbc5 98f2
+15722 * * * * * * * 6803 e6a083,eea78d 6803,e9cd 00006803,0000e9cd 98fc fcad 8eb1 98fc * * 98fc
+15723 * * * * * * * 8fbb eea793,e8bebb e9d3,8fbb 0000e9d3,00008fbb 9943 fe68 8ee2 9943 * * 9943
+15724 * * * * * * * 8fbc eea795,e8bebc e9d5,8fbc 0000e9d5,00008fbc 9945 fe69 8e41 9945 c8d2 fcbc 9945
+15725 * * * * * * * 4e21 e4b8a1,eea79f 4e21,e9df 00004e21,0000e9df 994f fa48 9164 994f c740 fa40 994f
+15726 * * * * * * * 7b39 e7acb9,eea7ba 7b39,e9fa 00007b39,0000e9fa 996a fd76 8f5f 996a * * 996a
+15727 * * * * * * * 3dcc e3b78c,eea7be 3dcc,e9fe 00003dcc,0000e9fe 996e fce1 91df,91ef 996e * * 996e
+15728 * * * * * * * 732a e78caa,ee8a86,eea885 732a,e286,ea05 0000732a,0000e286,0000ea05 9975,fe52 fa76 * 9975 * * 9975,fe52
+15729 * * * * * * * 7560 e795a0,eea888 7560,ea08 00007560,0000ea08 9978 fd4a 8faa 9978 * * 9978
+15730 * * * * * * * 583a e5a0ba,eea890 583a,ea10 0000583a,0000ea10 99a2 fbeb 8ea2 99a2 c7c6 fae6 99a2
+15731 * * * * * * * 82a6 e88aa6,eea89c 82a6,ea1c 000082a6,0000ea1c 99ae fde8 8f5e 99ae * * 99ae
+15732 * * * * * * * 698a e6a68a,eea8a4 698a,ea24 0000698a,0000ea24 99b6 fcc0 91c5 99b6 * * 99b6
+15733 * * * * * * * 60e3 e683a3,eea8a8 60e3,ea28 000060e3,0000ea28 99ba fc66 8fca 99ba * * 99ba
+15734 * * * * * * * 4eee e4bbae,eea990 4eee,ea50 00004eee,0000ea50 99e2 fb74 8fe2 99e2 * * 99e2
+15735 * * * * * * * 99c4 e9a784,eea9a2 99c4,ea62 000099c4,0000ea62 99f4 fec4 8e40 99f4 * * 99f4
+15736 * * * * * * * 9ebf e9babf,eea9b7 9ebf,ea77 00009ebf,0000ea77 9a4a fef5 8eda 9a4a * * 9a4a
+15737 * * * * * * * 5301 e58c81,eea9b9 5301,ea79 00005301,0000ea79 9a4c fbbd 8fa6 9a4c * * 9a4c
+15738 * * * * * * * 67a0 e69ea0,eeaa86 67a0,ea86 000067a0,0000ea86 9a59 fcae 8e69 9a59 * * 9a59
+15739 * * * * * * * 60e8 e683a8,eeaa8e 60e8,ea8e 000060e8,0000ea8e 9a61 * * 9a61 * * 9a61
+15740 * * * * * * * 51b4 e586b4,eeaa95 51b4,ea95 000051b4,0000ea95 9a68 fbb8 8e7d 9a68 * * 9a68
+15741 * * * * * * * 7a83 e7aa83,eeaaa0 7a83,eaa0 00007a83,0000eaa0 9a73 * * 9a73 * fc49 9a73
+15742 * * * * * * * 9c3a e9b0ba,eeaaab 9c3a,eaab 00009c3a,0000eaab 9a7e fee4 9142 9a7e c8f3 fcf0 9a7e
+15743 * * * * * * * 7ac8 e7ab88,eeaabd 7ac8,eabd 00007ac8,0000eabd 9ab2 fef9 8e51 9ab2 * * 9ab2
+15744 * * * * * * * 691a e6a49a,eeab82 691a,eac2 0000691a,0000eac2 9ab7 fcb5 8fd0 9ab7 * * 9ab7
+15745 * * * * * * * 59ac e5a6ac,eeab84 59ac,eac4 000059ac,0000eac4 9ab9 fbf5 924a 9ab9 * faed 9ab9
+15746 * * * * * * * 5840 e5a180,eeab86 5840,eac6 00005840,0000eac6 9abb fbee 8e6d 9abb * * 9abb
+15747 * * * * * * * 546a e591aa,eeab92 546a,ead2 0000546a,0000ead2 9ac7 fbce 8f7c 9ac7 * faa3 9ac7
+15748 * * * * * * * 60e7 e683a7,eeab9b 60e7,eadb 000060e7,0000eadb 9ad0 fc62 905e 9ad0 * fb59 9ad0
+15749 * * * * * * * 567a e599ba,eeab9d 567a,eadd 0000567a,0000eadd 9ad2 fbe3 8fed 9ad2 * * 9ad2
+15750 * * * * * * * 6955 e6a595,eeaba4 6955,eae4 00006955,0000eae4 9ad9 fcb9 91ca 9ad9 * * 9ad9
+15751 * * * * * * * 9c2f e9b0af,eeaba5 9c2f,eae5 00009c2f,0000eae5 9ada fedf 8ed8 9ada * * 9ada
+15752 * * * * * * * 87a5 e89ea5,eeaba6 87a5,eae6 000087a5,0000eae6 9adb * * 9adb * * 9adb
+15753 * * * * * * * 5c20 e5b0a0,eeabad 5c20,eaed 00005c20,0000eaed 9ae2 fbfc 905a 9ae2 * * 9ae2
+15754 * * * * * * * 5e0b e5b88b,eeabaf 5e0b,eaef 00005e0b,0000eaef 9ae4 fc48 8fd4 9ae4 * fb46 9ae4
+15755 * * * * * * * 671e e69c9e,eeabb3 671e,eaf3 0000671e,0000eaf3 9ae8 fcaa 904a 9ae8 * * 9ae8
+15756 * * * * * * * 84ad e892ad,eeabbd 84ad,eafd 000084ad,0000eafd 9af2 fdf4 8ede 9af2 * * 9af2
+15757 * * * * * * * 8b81 e8ae81,eeac81 8b81,eb01 00008b81,0000eb01 9af6 fe48 90b9 9af6 * * 9af6
+15758 * * * * * * * 4e78 e4b9b8,eeac86 4e78,eb06 00004e78,0000eb06 9afb fa5b * 9afb c84c fbb9 9afb
+15759 * * * * * * * 62c3 e68b83,eeac90 62c3,eb10 000062c3,0000eb10 9b46 fa56 * 9b46 c7eb fb64 9b46
+15760 * * * * * * * 6855 e6a195,eeac94 6855,eb14 00006855,0000eb14 9b4a * * 9b4a * * 9b4a
+15761 * * * * * * * 69e9 * * * * fcc3 91c4 9b4c * * *
+15762 * * * * * * * 82fd e88bbd,eeac9e 82fd,eb1e 000082fd,0000eb1e 9b54 fdea 8ef2 9b54 * * 9b54
+15763 * * * * * * * 89a5 e8a6a5,eeaca2 89a5,eb22 000089a5,0000eb22 9b58 fb63,fe40 90b4 9b58 * fcaa 9b58
+15764 * * * * * * * 8fa0 e8bea0,eeaca4 8fa0,eb24 00008fa0,0000eb24 9b5a fdc8 90c3 9b5a * * 9b5a
+15765 * * * * * * * 97b8 e99eb8,eeaca6 97b8,eb26 000097b8,0000eb26 9b5c feac 90e8 9b5c * * 9b5c
+15766 * * * * * * * 9847 e9a187,eeaca8 9847,eb28 00009847,0000eb28 9b5e feb4 90eb 9b5e * * 9b5e
+15767 * * * * * * * 9abd e9aabd,eeaca9 9abd,eb29 00009abd,0000eb29 9b5f fec9 9152 9b5f * * 9b5f
+15768 * * * * * * * 5fb1 e5beb1,eeacba 5fb1,eb3a 00005fb1,0000eb3a 9b70 * * 9b70 * * 9b70
+15769 * * * * * * * 6648 e69988,eeacbb 6648,eb3b 00006648,0000eb3b 9b71 fca6 91bd 9b71 * * 9b71
+15770 * * * * * * * 66bf e69abf,eeacbc 66bf,eb3c 000066bf,0000eb3c 9b72 * * 9b72 * * 9b72
+15771 * * * * * * * eb3d f0a7a9b9,eeacbd d85ede79,eb3d 00027a79,0000eb3d 9b73 * * 9b73 * * 9b73
+15772 * * * * * * * * * * * * * * 9b76 * * *
+15773 * * * * * * * eb41 eead81,f0a4a6ba d852ddba,eb41 0000eb41,000249ba 9b77 * * 9b77 * * 9b77
+15774 * * * * * * * * * * * * * * 9b78 * * *
+15775 * * * * * * * * * * * * * * 9b7b * * *
+15776 * * * * * * * eb46 eead86,f0a08d86 d840df46,eb46 0000eb46,00020346 9b7c * * 9b7c * * 9b7c
+15777 * * * * * * * 670e e69c8e,eead88 670e,eb48 0000670e,0000eb48 9b7e * * 9b7e * * 9b7e
+15778 * * * * * * * 6918 e6a498,eead89 6918,eb49 00006918,0000eb49 9ba1 * * 9ba1 * * 9ba1
+15779 * * * * * * * eb4b f0a79997,eead8b d85dde57,eb4b 00027657,0000eb4b 9ba3 * * 9ba3 * * 9ba3
+15780 * * * * * * * eb4c f0a5bfa2,eead8c d857dfe2,eb4c 00025fe2,0000eb4c 9ba4 * * 9ba4 * * 9ba4
+15781 * * * * * * * eb4f f0a797be,eead8f d85dddfe,eb4f 000275fe,0000eb4f 9ba7 * * 9ba7 * * 9ba7
+15782 * * * * * * * eb50 f0a2829a,eead90 d848dc9a,eb50 0002209a,0000eb50 9ba8 * * 9ba8 * * 9ba8
+15783 * * * * * * * 48d0 e4a390,eead91 48d0,eb51 000048d0,0000eb51 9ba9 * * 9ba9 * * 9ba9
+15784 * * * * * * * 4ab8 e4aab8,eead92 4ab8,eb52 00004ab8,0000eb52 9baa * * 9baa * * 9baa
+15785 * * * * * * * eb54 eead94,f0a8aa9a d862de9a,eb54 0000eb54,00028a9a 9bac * * 9bac * * 9bac
+15786 * * * * * * * eb57 eead97,f0a480bb d850dc3b,eb57 0000eb57,0002403b 9baf * * 9baf * * 9baf
+15787 * * * * * * * eb5a f0a4a985,eead9a d852de45,eb5a 00024a45,0000eb5a 9bb2 * * 9bb2 * * 9bb2
+15788 * * * * * * * eb5b f0a0978a,eead9b d841ddca,eb5b 000205ca,0000eb5b 9bb3 * * 9bb3 * * 9bb3
+15789 * * * * * * * 51d2 e58792,eead9c 51d2,eb5c 000051d2,0000eb5c 9bb4 * * 9bb4 * * 9bb4
+15790 * * * * * * * eb5d f0a09891,eead9d d841de11,eb5d 00020611,0000eb5d 9bb5 * * 9bb5 * * 9bb5
+15791 * * * * * * * 599f e5a69f,eead9e 599f,eb5e 0000599f,0000eb5e 9bb6 * * 9bb6 * * 9bb6
+15792 * * * * * * * eb5f f0a1baa8,eead9f d847dea8,eb5f 00021ea8,0000eb5f 9bb7 * * 9bb7 * * 9bb7
+15793 * * * * * * * 3bbe e3aebe,eeada0 3bbe,eb60 00003bbe,0000eb60 9bb8 * * 9bb8 * * 9bb8
+15794 * * * * * * * eb61 f0a3b3bf,eeada1 d84fdcff,eb61 00023cff,0000eb61 9bb9 * * 9bb9 * * 9bb9
+15795 * * * * * * * 399b e3a69b,eeada6 399b,eb66 0000399b,0000eb66 9bbe * * 9bbe * * 9bbe
+15796 * * * * * * * eb68 f0a897a8,eeada8 d861dde8,eb68 000285e8,0000eb68 9bc0 * * 9bc0 * * 9bc0
+15797 * * * * * * * eb69 f0a9a789,eeada9 d866ddc9,eb69 000299c9,0000eb69 9bc1 * * 9bc1 * * 9bc1
+15798 * * * * * * * 3762 e39da2,eeadaa 3762,eb6a 00003762,0000eb6a 9bc2 * * 9bc2 * * 9bc2
+15799 * * * * * * * eb6b f0a28783,eeadab d848ddc3,eb6b 000221c3,0000eb6b 9bc3 * * 9bc3 * * 9bc3
+15800 * * * * * * * 8b5e e8ad9e,eeadac 8b5e,eb6c 00008b5e,0000eb6c 9bc4 * * 9bc4 * * 9bc4
+15801 * * * * * * * eb6d f0a8ad8e,eeadad d862df4e,eb6d 00028b4e,0000eb6d 9bc5 * * 9bc5 * * 9bc5
+15802 * * * * * * * * * * * * * * 9bc6 * * *
+15803 * * * * * * * 7209 e78889,eeadb2 7209,eb72 00007209,0000eb72 9bca * * 9bca * * 9bca
+15804 * * * * * * * eb74 eeadb4,f0a0b1b8 d843dc78,eb74 0000eb74,00020c78 9bcc fa5d * 9bcc c770 faa9 9bcc
+15805 * * * * * * * eb78 f0a09db9,eeadb8 d841df79,eb78 00020779,0000eb78 9bd0 fa6f * 9bd0 c756 fa63 9bd0
+15806 * * * * * * * 8eda e8bb9a,eeadb9 8eda,eb79 00008eda,0000eb79 9bd1 faf9 * 9bd1 c8ce fcb8 9bd1
+15807 * * * * * * * 528f e58a8f,eeadbb 528f,eb7b 0000528f,0000eb7b 9bd3 fac9 91ec 9bd3 c757 fa65 9bd3
+15808 * * * * * * * 7171 e785b1,eeadbd 7171,eb7d 00007171,0000eb7d 9bd5 fce3 8fc2 9bd5 c859 fbc9 9bd5
+15809 * * * * * * * eb80 f0a3bd8a,eeae80 d84fdf4a,eb80 00023f4a,0000eb80 9bd8 * * 9bd8 * * 9bd8
+15810 * * * * * * * eb81 f0a4aaa7,eeae81 d852dea7,eb81 00024aa7,0000eb81 9bd9 * * 9bd9 * * 9bd9
+15811 * * * * * * * 55bc e596bc,eeae82 55bc,eb82 000055bc,0000eb82 9bda fa63 * 9bda c77d fab7 9bda
+15812 * * * * * * * eb85 eeae85,f0a6ad92 d85adf52,eb85 0000eb85,00026b52 9bdd * * 9bdd * * 9bdd
+15813 * * * * * * * 3473 e391b3,eeae87 3473,eb87 00003473,0000eb87 9bdf * * 9bdf * * 9bdf
+15814 * * * * * * * eb89 eeae89,f0a798b2 d85dde32,eb89 0000eb89,00027632 9be1 * * 9be1 * * 9be1
+15815 * * * * * * * 4718 e49c98,eeae8b 4718,eb8b 00004718,0000eb8b 9be3 * * 9be3 * * 9be3
+15816 * * * * * * * eb8f eeae8f,f0a4a4bf d852dd3f,eb8f 0000eb8f,0002493f 9be7 * * 9be7 * * 9be7
+15817 * * * * * * * 5066 e581a6,eeae91 5066,eb91 00005066,0000eb91 9be9 * * 9be9 * * 9be9
+15818 * * * * * * * 34fb e393bb,eeae92 34fb,eb92 000034fb,0000eb92 9bea * * 9bea * * 9bea
+15819 * * * * * * * eb93 f0a38f8c,eeae93 d84cdfcc,eb93 000233cc,0000eb93 9beb * * 9beb * * 9beb
+15820 * * * * * * * 60de * * * * * * 9bec * * *
+15821 * * * * * * * 477c e49dbc,eeae96 477c,eb96 0000477c,0000eb96 9bee * * 9bee * * 9bee
+15822 * * * * * * * eb97 f0a8a588,eeae97 d862dd48,eb97 00028948,0000eb97 9bef * * 9bef * * 9bef
+15823 * * * * * * * eb9b eeae9b,f0a1b690 d847dd90,eb9b 0000eb9b,00021d90 9bf3 * * 9bf3 * * 9bf3
+15824 * * * * * * * * * * * * * * 9bf6 * * *
+15825 * * * * * * * eba0 f0a7b092,eeaea0 d85fdc12,eba0 00027c12,0000eba0 9bf8 * * 9bf8 * * 9bf8
+15826 * * * * * * * 9056 e98196,eeaea1 9056,eba1 00009056,0000eba1 9bf9 fe6c 8e5e 9bf9 * * 9bf9
+15827 * * * * * * * eba3 f0a4be9a,eeaea3 d853df9a,eba3 00024f9a,0000eba3 9bfb * * 9bfb * * 9bfb
+15828 * * * * * * * 8b62 e8ada2,eeaea4 8b62,eba4 00008b62,0000eba4 9bfc * * 9bfc * * 9bfc
+15829 * * * * * * * 5d5b e5b59b,eeaea7 5d5b,eba7 00005d5b,0000eba7 9c40 * * 9c40 * fb44 9c40
+15830 * * * * * * * eba8 f0a6afb7,eeaea8 d85adff7,eba8 00026bf7,0000eba8 9c41 * * 9c41 * * 9c41
+15831 * * * * * * * * * * * * * * 9c42 * * *
+15832 * * * * * * * ebab f0a1a49c,eeaeab d846dd1c,ebab 0002191c,0000ebab 9c44 * * 9c44 * * 9c44
+15833 * * * * * * * 8aea e8abaa,eeaeac 8aea,ebac 00008aea,0000ebac 9c45 * * 9c45 * * 9c45
+15834 * * * * * * * ebad f0a4a7b6,eeaead d852ddf6,ebad 000249f6,0000ebad 9c46 * * 9c46 * * 9c46
+15835 * * * * * * * ebaf eeaeaf,f0a3bfaf d84fdfef,ebaf 0000ebaf,00023fef 9c48 * * 9c48 * * 9c48
+15836 * * * * * * * 4bc0 e4af80,eeaeb1 4bc0,ebb1 00004bc0,0000ebb1 9c4a * * 9c4a * fce2 9c4a
+15837 * * * * * * * ebb4 f0a29c9b,eeaeb4 d849df1b,ebb4 0002271b,0000ebb4 9c4d * * 9c4d * * 9c4d
+15838 * * * * * * * 9465 e991a5,eeaeb5 9465,ebb5 00009465,0000ebb5 9c4e * * 9c4e * fcd0 9c4e
+15839 * * * * * * * ebb6 f0a59fa1,eeaeb6 d855dfe1,ebb6 000257e1,0000ebb6 9c4f * * 9c4f * * 9c4f
+15840 * * * * * * * 6195 e68695,eeaeb7 6195,ebb7 00006195,0000ebb7 9c50 * * 9c50 * * 9c50
+15841 * * * * * * * 5a27 e5a8a7,eeaeb8 5a27,ebb8 00005a27,0000ebb8 9c51 * * 9c51 * * 9c51
+15842 * * * * * * * ebb9 f0afa38d,eeaeb9 d87edccd,ebb9 0002f8cd,0000ebb9 9c52 * * 9c52 * * 9c52
+15843 * * * * * * * * f0afa086 d87edc06 0002f806 * * * 9c53 * * *
+15844 * * * * * * * ebbc eeaebc,f0a494a1 d851dd21,ebbc 0000ebbc,00024521 9c55 * * 9c55 * * 9c55
+15845 * * * * * * * 4e6a e4b9aa,eeaebe 4e6a,ebbe 00004e6a,0000ebbe 9c57 * * 9c57 * * 9c57
+15846 * * * * * * * ebbf f0a4a4b4,eeaebf d852dd34,ebbf 00024934,0000ebbf 9c58 * * 9c58 * * 9c58
+15847 * * * * * * * 9656 e99996,eeaf80 9656,ebc0 00009656,0000ebc0 9c59 * * 9c59 * * 9c59
+15848 * * * * * * * 6d8f e6b68f,eeaf81 6d8f,ebc1 00006d8f,0000ebc1 9c5a * * 9c5a * * 9c5a
+15849 * * * * * * * ebc2 f0a6b2bd,eeaf82 d85bdcbd,ebc2 00026cbd,0000ebc2 9c5b * * 9c5b * * 9c5b
+15850 * * * * * * * 8977 e8a5b7,eeaf84 8977,ebc4 00008977,0000ebc4 9c5d * * 9c5d * * 9c5d
+15851 * * * * * * * ebc7 eeaf87,f0a69091 d859dc11,ebc7 0000ebc7,00026411 9c60 * * 9c60 * * 9c60
+15852 * * * * * * * * * * * * * * 9c62 * * *
+15853 * * * * * * * 7b42 e7ad82,eeaf8b 7b42,ebcb 00007b42,0000ebcb 9c64 * * 9c64 * * 9c64
+15854 * * * * * * * ebcc f0a98380,eeaf8c d864dcc0,ebcc 000290c0,0000ebcc 9c65 * * 9c65 * * 9c65
+15855 * * * * * * * ebcd f0a0a891,eeaf8d d842de11,ebcd 00020a11,0000ebcd 9c66 * * 9c66 * * 9c66
+15856 * * * * * * * * * * * * * * 9c68 * * *
+15857 * * * * * * * 7a45 e7a985,eeaf91 7a45,ebd1 00007a45,0000ebd1 9c6a * * 9c6a * fc47 9c6a
+15858 * * * * * * * 9a26 e9a8a6,eeaf94 9a26,ebd4 00009a26,0000ebd4 9c6d * * 9c6d * * 9c6d
+15859 * * * * * * * 365f e3999f,eeaf96 365f,ebd6 0000365f,0000ebd6 9c6f * * 9c6f * * 9c6f
+15860 * * * * * * * ebd7 f0a691a9,eeaf97 d859dc69,ebd7 00026469,0000ebd7 9c70 * * 9c70 * * 9c70
+15861 * * * * * * * ebd8 f0a080a1,eeaf98 d840dc21,ebd8 00020021,0000ebd8 9c71 * * 9c71 * * 9c71
+15862 * * * * * * * 7983 e7a683,eeaf99 7983,ebd9 00007983,0000ebd9 9c72 * * 9c72 * * 9c72
+15863 * * * * * * * 5d2c e5b4ac,eeaf9c 5d2c,ebdc 00005d2c,0000ebdc 9c75 * * 9c75 * * 9c75
+15864 * * * * * * * ebdd f0a39499,eeaf9d d84ddd19,ebdd 00023519,0000ebdd 9c76 * * 9c76 * * 9c76
+15865 * * * * * * * * * * * * * * 9c77 * * *
+15866 * * * * * * * 46d0 e49b90,eeafa0 46d0,ebe0 000046d0,0000ebe0 9c79 * * 9c79 * * 9c79
+15867 * * * * * * * 753b e794bb,eeafa2 753b,ebe2 0000753b,0000ebe2 9c7b * * 9c7b * * 9c7b
+15868 * * * * * * * 8865 e8a1a5,eeafa3 8865,ebe3 00008865,0000ebe3 9c7c * * 9c7c * * 9c7c
+15869 * * * * * * * 58b6 e5a2b6,eeafa5 58b6,ebe5 000058b6,0000ebe5 9c7e * * 9c7e * * 9c7e
+15870 * * * * * * * 371c e39c9c,eeafa6 371c,ebe6 0000371c,0000ebe6 9ca1 * * 9ca1 * * 9ca1
+15871 * * * * * * * ebe7 f0a2968d,eeafa7 d849dd8d,ebe7 0002258d,0000ebe7 9ca2 * * 9ca2 * * 9ca2
+15872 * * * * * * * 3c54 e3b194,eeafaa 3c54,ebea 00003c54,0000ebea 9ca5 * * 9ca5 * * 9ca5
+15873 * * * * * * * 9281 e98a81,eeafad 9281,ebed 00009281,0000ebed 9ca8 * * 9ca8 * * 9ca8
+15874 * * * * * * * ebee f0a285ba,eeafae d848dd7a,ebee 0002217a,0000ebee 9ca9 * * 9ca9 * * 9ca9
+15875 * * * * * * * 9330 e98cb0,eeafb0 9330,ebf0 00009330,0000ebf0 9cab * * 9cab * * 9cab
+15876 * * * * * * * ebf2 f0a4a790,eeafb2 d852ddd0,ebf2 000249d0,0000ebf2 9cad * * 9cad * * 9cad
+15877 * * * * * * * 6c39 e6b0b9,eeafb3 6c39,ebf3 00006c39,0000ebf3 9cae fa45 * 9cae c743 fa44 9cae
+15878 * * * * * * * ebf6 f0a0bbb8,eeafb6 d843def8,ebf6 00020ef8,0000ebf6 9cb1 * * 9cb1 * * 9cb1
+15879 * * * * * * * 8827 e8a0a7,eeafb7 8827,ebf7 00008827,0000ebf7 9cb2 * * 9cb2 * * 9cb2
+15880 * * * * * * * 88f5 e8a3b5,eeafb8 88f5,ebf8 000088f5,0000ebf8 9cb3 * * 9cb3 * * 9cb3
+15881 * * * * * * * ebf9 f0a2a4a6,eeafb9 d84add26,ebf9 00022926,0000ebf9 9cb4 * * 9cb4 * * 9cb4
+15882 * * * * * * * ebfa f0a891b3,eeafba d861dc73,ebfa 00028473,0000ebfa 9cb5 * * 9cb5 * * 9cb5
+15883 * * * * * * * ebfb f0a19eb1,eeafbb d845dfb1,ebfb 000217b1,0000ebfb 9cb6 * * 9cb6 * * 9cb6
+15884 * * * * * * * 6eb8 e6bab8,eeafbc 6eb8,ebfc 00006eb8,0000ebfc 9cb7 * * 9cb7 * * 9cb7
+15885 * * * * * * * ebfd f0a4a8aa,eeafbd d852de2a,ebfd 00024a2a,0000ebfd 9cb8 * * 9cb8 * * 9cb8
+15886 * * * * * * * ebfe f0a1a0a0,eeafbe d846dc20,ebfe 00021820,0000ebfe 9cb9 * * 9cb9 * * 9cb9
+15887 * * * * * * * 39a4 e3a6a4,eeafbf 39a4,ebff 000039a4,0000ebff 9cba * * 9cba * * 9cba
+15888 * * * * * * * * * * * * * * 9cbc * * *
+15889 * * * * * * * * * * * * * * 9cbd * * *
+15890 * * * * * * * 453f e494bf,eeb083 453f,ec03 0000453f,0000ec03 9cbe * * 9cbe * * 9cbe
+15891 * * * * * * * 66b6 e69ab6,eeb084 66b6,ec04 000066b6,0000ec04 9cbf * * 9cbf * * 9cbf
+15892 * * * * * * * ec05 f0a9b2ad,eeb085 d867dcad,ec05 00029cad,0000ec05 9cc0 * * 9cc0 * * 9cc0
+15893 * * * * * * * ec06 f0a9a2a4,eeb086 d866dca4,ec06 000298a4,0000ec06 9cc1 * * 9cc1 * * 9cc1
+15894 * * * * * * * 8943 e8a583,eeb087 8943,ec07 00008943,0000ec07 9cc2 fde3 91fd 9cc2 * * 9cc2
+15895 * * * * * * * 40df e4839f,eeb08b 40df,ec0b 000040df,0000ec0b 9cc6 * * 9cc6 * * 9cc6
+15896 * * * * * * * ec0c f0a1988a,eeb08c d845de0a,ec0c 0002160a,0000ec0c 9cc7 * * 9cc7 * * 9cc7
+15897 * * * * * * * 39a1 e3a6a1,eeb08d 39a1,ec0d 000039a1,0000ec0d 9cc8 * * 9cc8 * * 9cc8
+15898 * * * * * * * ec0e f0a39caf,eeb08e d84ddf2f,ec0e 0002372f,0000ec0e 9cc9 * * 9cc9 * * 9cc9
+15899 * * * * * * * ec0f f0a883a8,eeb08f d860dce8,ec0f 000280e8,0000ec0f 9cca * * 9cca * * 9cca
+15900 * * * * * * * ec10 f0a18f85,eeb090 d844dfc5,ec10 000213c5,0000ec10 9ccb * * 9ccb * * 9ccb
+15901 * * * * * * * 71ad e786ad,eeb091 71ad,ec11 000071ad,0000ec11 9ccc * * 9ccc * * 9ccc
+15902 * * * * * * * 8366 e88da6,eeb092 8366,ec12 00008366,0000ec12 9ccd * * 9ccd * * 9ccd
+15903 * * * * * * * ec14 eeb094,f0a986a8 d864dda8,ec14 0000ec14,000291a8 9ccf * * 9ccf * * 9ccf
+15904 * * * * * * * * * * * * * * 9cd0 * * *
+15905 * * * * * * * 4cb7 e4b2b7,eeb096 4cb7,ec16 00004cb7,0000ec16 9cd1 * * 9cd1 * * 9cd1
+15906 * * * * * * * ec17 f0a782af,eeb097 d85cdcaf,ec17 000270af,0000ec17 9cd2 * * 9cd2 * * 9cd2
+15907 * * * * * * * ec18 f0a8a6ab,eeb098 d862ddab,ec18 000289ab,0000ec18 9cd3 * * 9cd3 * * 9cd3
+15908 * * * * * * * ec1d f0a485ba,eeb09d d850dd7a,ec1d 0002417a,0000ec1d 9cd8 * * 9cd8 * * 9cd8
+15909 * * * * * * * 7b43 e7ad83,eeb09e 7b43,ec1e 00007b43,0000ec1e 9cd9 * * 9cd9 * * 9cd9
+15910 * * * * * * * 797e e7a5be,eeb09f 797e,ec1f 0000797e,0000ec1f 9cda * * 9cda * * 9cda
+15911 * * * * * * * 6fb5 e6beb5,eeb0a1 6fb5,ec21 00006fb5,0000ec21 9cdc * * 9cdc * * 9cdc
+15912 * * * * * * * ec22 f0aa8b9f,eeb0a2 d868dedf,ec22 0002a2df,0000ec22 9cdd * * 9cdd * * 9cdd
+15913 * * * * * * * 6a03 e6a883,eeb0a3 6a03,ec23 00006a03,0000ec23 9cde * * 9cde * * 9cde
+15914 * * * * * * * ec24 f0a88c98,eeb0a4 d860df18,ec24 00028318,0000ec24 9cdf * * 9cdf * * 9cdf
+15915 * * * * * * * 53a2 e58ea2,eeb0a5 53a2,ec25 000053a2,0000ec25 9ce0 * * 9ce0 * * 9ce0
+15916 * * * * * * * ec26 f0a6b887,eeb0a6 d85bde07,ec26 00026e07,0000ec26 9ce1 * * 9ce1 * * 9ce1
+15917 * * * * * * * 93bf e98ebf,eeb0a7 93bf,ec27 000093bf,0000ec27 9ce2 * * 9ce2 * * 9ce2
+15918 * * * * * * * 6836 e6a0b6,eeb0a8 6836,ec28 00006836,0000ec28 9ce3 * * 9ce3 * * 9ce3
+15919 * * * * * * * * e99d9d,ee9fbd,eeb0a9 975d,e7fd,ec29 0000975d,0000e7fd,0000ec29 9644,9ce4 fea8 90e2 9ce4 * * 9644,9ce4
+15920 * * * * * * * ec2a f0a885af,eeb0aa d860dd6f,ec2a 0002816f,0000ec2a 9ce5 * * 9ce5 * * 9ce5
+15921 * * * * * * * ec2c f0a6a6b5,eeb0ac d85addb5,ec2c 000269b5,0000ec2c 9ce7 * * 9ce7 * * 9ce7
+15922 * * * * * * * ec2d f0a18fad,eeb0ad d844dfed,ec2d 000213ed,0000ec2d 9ce8 * * 9ce8 * * 9ce8
+15923 * * * * * * * ec2e f0a388af,eeb0ae d84cde2f,ec2e 0002322f,0000ec2e 9ce9 * * 9ce9 * * 9ce9
+15924 * * * * * * * 5d85 e5b685,eeb0b0 5d85,ec30 00005d85,0000ec30 9ceb * * 9ceb * * 9ceb
+15925 * * * * * * * ec31 f0a8b0b0,eeb0b1 d863dc30,ec31 00028c30,0000ec31 9cec * * 9cec * * 9cec
+15926 * * * * * * * 5715 e59c95,eeb0b3 5715,ec33 00005715,0000ec33 9cee * * 9cee * * 9cee
+15927 * * * * * * * 9823 e9a0a3,eeb0b4 9823,ec34 00009823,0000ec34 9cef * * 9cef * * 9cef
+15928 * * * * * * * ec35 f0a8a589,eeb0b5 d862dd49,ec35 00028949,0000ec35 9cf0 * * 9cf0 * * 9cf0
+15929 * * * * * * * 5dab e5b6ab,eeb0b6 5dab,ec36 00005dab,0000ec36 9cf1 * * 9cf1 * * 9cf1
+15930 * * * * * * * ec37 f0a4a688,eeb0b7 d852dd88,ec37 00024988,0000ec37 9cf2 * * 9cf2 * * 9cf2
+15931 * * * * * * * 65be e696be,eeb0b8 65be,ec38 000065be,0000ec38 9cf3 * * 9cf3 * * 9cf3
+15932 * * * * * * * 69d5 e6a795,eeb0b9 69d5,ec39 000069d5,0000ec39 9cf4 * * 9cf4 * * 9cf4
+15933 * * * * * * * 53d2 e58f92,eeb0ba 53d2,ec3a 000053d2,0000ec3a 9cf5 * * 9cf5 * * 9cf5
+15934 * * * * * * * ec3b f0a4aaa5,eeb0bb d852dea5,ec3b 00024aa5,0000ec3b 9cf6 * * 9cf6 * * 9cf6
+15935 * * * * * * * ec3c f0a3be81,eeb0bc d84fdf81,ec3c 00023f81,0000ec3c 9cf7 * * 9cf7 * * 9cf7
+15936 * * * * * * * 3c11 e3b091,eeb0bd 3c11,ec3d 00003c11,0000ec3d 9cf8 * * 9cf8 * * 9cf8
+15937 * * * * * * * 6736 e69cb6,eeb0be 6736,ec3e 00006736,0000ec3e 9cf9 * 8f77 9cf9 * * 9cf9
+15938 * * * * * * * ec42 eeb182,f0a1bea1 d847dfa1,ec42 0000ec42,00021fa1 9cfd * * 9cfd * * 9cfd
+15939 * * * * * * * 35ca e3978a,eeb18a 35ca,ec4a 000035ca,0000ec4a 9d46 * * 9d46 * * 9d46
+15940 * * * * * * * 48fa e4a3ba,eeb18d 48fa,ec4d 000048fa,0000ec4d 9d49 * * 9d49 * * 9d49
+15941 * * * * * * * * * * * * * * 9d4a * * *
+15942 * * * * * * * 7808 e7a088,eeb190 7808,ec50 00007808,0000ec50 9d4c * * 9d4c * * 9d4c
+15943 * * * * * * * 9255 e98995,eeb191 9255,ec51 00009255,0000ec51 9d4d * * 9d4d * * 9d4d
+15944 * * * * * * * 43f2 e48fb2,eeb193 43f2,ec53 000043f2,0000ec53 9d4f * * 9d4f * * 9d4f
+15945 * * * * * * * 43df e48f9f,eeb195 43df,ec55 000043df,0000ec55 9d51 * * 9d51 * * 9d51
+15946 * * * * * * * 59f8 e5a7b8,eeb199 59f8,ec59 000059f8,0000ec59 9d55 * * 9d55 * * 9d55
+15947 * * * * * * * * * * * * * * 9d5a * * *
+15948 * * * * * * * 568b e59a8b,eeb1a6 568b,ec66 0000568b,0000ec66 9d62 * * 9d62 * * 9d62
+15949 * * * * * * * ec68 eeb1a8,f0a997a9 d865dde9,ec68 0000ec68,000295e9 9d64 * * 9d64 * * 9d64
+15950 * * * * * * * 9012 e98092,eeb1bd 9012,ec7d 00009012,0000ec7d 9d79 * * 9d79 * * 9d79
+15951 * * * * * * * 55c1 e59781,eeb282 55c1,ec82 000055c1,0000ec82 9d7e * * 9d7e * * 9d7e
+15952 * * * * * * * 4509 e49489,eeb287 4509,ec87 00004509,0000ec87 9da5 * * 9da5 * * 9da5
+15953 * * * * * * * 7e7f e7b9bf,eeb288 7e7f,ec88 00007e7f,0000ec88 9da6 * * 9da6 * * 9da6
+15954 * * * * * * * 6f56 e6bd96,eeb289 6f56,ec89 00006f56,0000ec89 9da7 * * 9da7 * * 9da7
+15955 * * * * * * * 6ab1 e6aab1,eeb28a 6ab1,ec8a 00006ab1,0000ec8a 9da8 * * 9da8 * * 9da8
+15956 * * * * * * * 34e4 e393a4,eeb28c 34e4,ec8c 000034e4,0000ec8c 9daa * * 9daa * * 9daa
+15957 * * * * * * * ec8e f0a7a29d,eeb28e d85edc9d,ec8e 0002789d,0000ec8e 9dac * * 9dac * * 9dac
+15958 * * * * * * * 373a e39cba,eeb28f 373a,ec8f 0000373a,0000ec8f 9dad * * 9dad * * 9dad
+15959 * * * * * * * 8e80 * * * * * * 9dae * * *
+15960 * * * * * * * ec92 eeb292,f0a880a4 d860dc24,ec92 0000ec92,00028024 9db0 * * 9db0 * * 9db0
+15961 * * * * * * * ec95 eeb295,f0a7a8be d85ede3e,ec95 0000ec95,00027a3e 9db3 fac7 * 9db3 c8c5 fcac 9db3
+15962 * * * * * * * 3deb e3b7ab,eeb297 3deb,ec97 00003deb,0000ec97 9db5 * * 9db5 * * 9db5
+15963 * * * * * * * ec99 eeb299,f0a3b2b7 d84fdcb7,ec99 0000ec99,00023cb7 9db7 * * 9db7 * * 9db7
+15964 * * * * * * * ec9e f0a68998,eeb29e d858de58,ec9e 00026258,0000ec9e 9dbc fadd * 9dbc * * 9dbc
+15965 * * * * * * * 56bf e59abf,eeb29f 56bf,ec9f 000056bf,0000ec9f 9dbd * * 9dbd * * 9dbd
+15966 * * * * * * * 8e0e e8b88e,eeb2a1 8e0e,eca1 00008e0e,0000eca1 9dbf * * 9dbf c8c7 fcb1 9dbf
+15967 * * * * * * * 5b6d e5adad,eeb2a2 5b6d,eca2 00005b6d,0000eca2 9dc0 * * 9dc0 c7d0 faf5 9dc0
+15968 * * * * * * * 63de e68f9e,eeb2a5 63de,eca5 000063de,0000eca5 9dc3 * * 9dc3 * * 9dc3
+15969 * * * * * * * * * * * * * * 9dc4 * * *
+15970 * * * * * * * 6530 e694b0,eeb2a9 6530,eca9 00006530,0000eca9 9dc7 * * 9dc7 * * 9dc7
+15971 * * * * * * * 562d e598ad,eeb2aa 562d,ecaa 0000562d,0000ecaa 9dc8 * * 9dc8 c7b4 face 9dc8
+15972 * * * * * * * 541a e5909a,eeb2ac 541a,ecac 0000541a,0000ecac 9dca * * 9dca * * 9dca
+15973 * * * * * * * ecaf f0a9b698,eeb2af d867dd98,ecaf 00029d98,0000ecaf 9dcd fa55 * 9dcd * * 9dcd
+15974 * * * * * * * 4c7d e4b1bd,eeb2b0 4c7d,ecb0 00004c7d,0000ecb0 9dce fa54 * 9dce c8f1 fcee 9dce
+15975 * * * * * * * 5622 e598a2,eeb2b1 5622,ecb1 00005622,0000ecb1 9dcf fac1 917c 9dcf c7ab fac5 9dcf
+15976 * * * * * * * 561e e5989e,eeb2b2 561e,ecb2 0000561e,0000ecb2 9dd0 * * 9dd0 c7ad fac7 9dd0
+15977 * * * * * * * 7f49 e7bd89,eeb2b3 7f49,ecb3 00007f49,0000ecb3 9dd1 * * 9dd1 c8ab fc5f 9dd1
+15978 * * * * * * * 5975 e5a5b5,eeb2b5 5975,ecb5 00005975,0000ecb5 9dd3 * * 9dd3 * * 9dd3
+15979 * * * * * * * ecb6 f0a3b580,eeb2b6 d84fdd40,ecb6 00023d40,0000ecb6 9dd4 * * 9dd4 * * 9dd4
+15980 * * * * * * * 8770 e89db0,eeb2b7 8770,ecb7 00008770,0000ecb7 9dd5 * * 9dd5 * * 9dd5
+15981 * * * * * * * 8117 e88497,eeb2bc 8117,ecbc 00008117,0000ecbc 9dda fdc1 8f57 9dda * fba3 9dda
+15982 * * * * * * * 9d5e e9b59e,eeb2bd 9d5e,ecbd 00009d5e,0000ecbd 9ddb fee7 9163 9ddb * * 9ddb
+15983 * * * * * * * 8d18 e8b498,eeb2be 8d18,ecbe 00008d18,0000ecbe 9ddc fe4f 8e58 9ddc * * 9ddc
+15984 * * * * * * * 763b e798bb,eeb2bf 763b,ecbf 0000763b,0000ecbf 9ddd fb56,fd6e 8e44 9ddd * fbe9 9ddd
+15985 * * * * * * * 9c45 e9b185,eeb380 9c45,ecc0 00009c45,0000ecc0 9dde fee2 9141 9dde * fcf1 9dde
+15986 * * * * * * * 764e e7998e,eeb381 764e,ecc1 0000764e,0000ecc1 9ddf fb57,fd70 8fdf 9ddf c872 fbe8 9ddf
+15987 * * * * * * * 77b9 e79eb9,eeb382 77b9,ecc2 000077b9,0000ecc2 9de0 fd55 8f50 9de0 * fbf7 9de0
+15988 * * * * * * * 9345 e98d85,eeb383 9345,ecc3 00009345,0000ecc3 9de1 fe75 90d4 9de1 * * 9de1
+15989 * * * * * * * 5432 e590b2,eeb384 5432,ecc4 00005432,0000ecc4 9de2 fbcf 9177 9de2 * * 9de2
+15990 * * * * * * * 8148 e88588,eeb385 8148,ecc5 00008148,0000ecc5 9de3 fdc4 9076 9de3 * * 9de3
+15991 * * * * * * * 82f7 e88bb7,eeb386 82f7,ecc6 000082f7,0000ecc6 9de4 fde9 907b 9de4 * * 9de4
+15992 * * * * * * * 5625 e598a5,eeb387 5625,ecc7 00005625,0000ecc7 9de5 fac2 * 9de5 c7ac fac6 9de5
+15993 * * * * * * * 8132 e884b2,eeb388 8132,ecc8 00008132,0000ecc8 9de6 fdc3 9075 9de6 * fba2 9de6
+15994 * * * * * * * 8418 e89098,eeb389 8418,ecc9 00008418,0000ecc9 9de7 fdee 90a1 9de7 * fc6d 9de7
+15995 * * * * * * * 80bd e882bd,eeb38a 80bd,ecca 000080bd,0000ecca 9de8 fb4c * 9de8 * * 9de8
+15996 * * * * * * * 55ea e597aa,eeb38b 55ea,eccb 000055ea,0000eccb 9de9 fbdb 9176 9de9 c7a8 fac1 9de9
+15997 * * * * * * * 7962 e7a5a2,eeb38c 7962,eccc 00007962,0000eccc 9dea faeb 91e6 9dea c87b fc42 9dea
+15998 * * * * * * * 5643 e59983,eeb38d 5643,eccd 00005643,0000eccd 9deb facb * 9deb c7b2 facc 9deb
+15999 * * * * * * * 5416 e59096,eeb38e 5416,ecce 00005416,0000ecce 9dec fa49 * 9dec c764 fa78 9dec
+16000 * * * * * * * eccf f0a0ba9d,eeb38f d843de9d,eccf 00020e9d,0000eccf 9ded fabd * 9ded c7a9 fac2 9ded
+16001 * * * * * * * 35ce e3978e,eeb390 35ce,ecd0 000035ce,0000ecd0 9dee fab3 9173 9dee c7a1 fab9 9dee
+16002 * * * * * * * 5605 e59885,ee82a5,eeb391 5605,e0a5,ecd1 00005605,0000e0a5,0000ecd1 fb48,9def fab4 * 9def c77e fab8 fb48,9def
+16003 * * * * * * * 55f1 e597b1,eeb392 55f1,ecd2 000055f1,0000ecd2 9df0 fabb * 9df0 c7a3 fabc 9df0
+16004 * * * * * * * 66f1 e69bb1,eeb393 66f1,ecd3 000066f1,0000ecd3 9df1 fa43 * 9df1 c7fc fb7a 9df1
+16005 * * * * * * * ecd4 f0a88ba2,eeb394 d860dee2,ecd4 000282e2,0000ecd4 9df2 fab6 * 9df2 c8cf fcb9 9df2
+16006 * * * * * * * 362d e398ad,eeb395 362d,ecd5 0000362d,0000ecd5 9df3 fa4b * 9df3 c7c1 fae0 9df3
+16007 * * * * * * * 7534 e794b4,eeb396 7534,ecd6 00007534,0000ecd6 9df4 fa44 * 9df4 c7fb fb79 9df4
+16008 * * * * * * * 55f0 e597b0,eeb397 55f0,ecd7 000055f0,0000ecd7 9df5 fabc * 9df5 c7a4 fabd 9df5
+16009 * * * * * * * 55ba e596ba,eeb398 55ba,ecd8 000055ba,0000ecd8 9df6 fab1 * 9df6 c77c fab6 9df6
+16010 * * * * * * * 5497 e59297,eeb399 5497,ecd9 00005497,0000ecd9 9df7 fa5a * 9df7 c767 fa7d 9df7
+16011 * * * * * * * 5572 e595b2,eeb39a 5572,ecda 00005572,0000ecda 9df8 faa2 * 9df8 c776 fab0 9df8
+16012 * * * * * * * ecdb f0a0b181,eeb39b d843dc41,ecdb 00020c41,0000ecdb 9df9 fae3 * 9df9 c769 faa1 9df9
+16013 * * * * * * * ecdc f0a0b296,eeb39c d843dc96,ecdc 00020c96,0000ecdc 9dfa fa5c * 9dfa c76d faa6 9dfa
+16014 * * * * * * * * e5bb90,ee84b4,eeb39d 5ed0,e134,ecdd 00005ed0,0000e134,0000ecdd fbf9,9dfb fad5 * 9dfb c7d9 fb4c fbf9,9dfb
+16015 * * * * * * * ecdf f0a0b9b6,eeb39f d843de76,ecdf 00020e76,0000ecdf 9dfd fae7 * 9dfd c7aa fac3 9dfd
+16016 * * * * * * * ece0 f0a2b1a2,eeb3a0 d84bdc62,ece0 00022c62,0000ece0 9dfe faab * 9dfe c7f3 fb6e 9dfe
+16017 * * * * * * * ece1 f0a0baa2,eeb3a1 d843dea2,ece1 00020ea2,0000ece1 9e40 fa61 * 9e40 c7a6 fabf 9e40
+16018 * * * * * * * 9eab e9baab,eeb3a2 9eab,ece2 00009eab,0000ece2 9e41 * * 9e41 * * 9e41
+16019 * * * * * * * 7d5a e7b59a,eeb3a3 7d5a,ece3 00007d5a,0000ece3 9e42 fdaf 906f 9e42 * * 9e42
+16020 * * * * * * * 55de * * * * fa78 * 9e43 c7a2 faba *
+16021 * * * * * * * ece5 f0a181b5,eeb3a5 d844dc75,ece5 00021075,0000ece5 9e44 fa5e * 9e44 c7bb fad9 9e44
+16022 * * * * * * * 629d e68a9d,eeb3a6 629d,ece6 0000629d,0000ece6 9e45 fb4a * 9e45 c7e8 fb60 9e45
+16023 * * * * * * * 976d e99dad,eeb3a7 976d,ece7 0000976d,0000ece7 9e46 faa7 * 9e46 c8e3 fcd4 9e46
+16024 * * * * * * * 5494 e59294,eeb3a8 5494,ece8 00005494,0000ece8 9e47 fa75 * 9e47 c768 fa7e 9e47
+16025 * * * * * * * 8ccd e8b38d,eeb3a9 8ccd,ece9 00008ccd,0000ece9 9e48 faba 8e5c 9e48 c8c6 fcb0 9e48
+16026 * * * * * * * 71f6 e787b6,eeb3aa 71f6,ecea 000071f6,0000ecea 9e49 fad3 * 9e49 c85f fbcf 9e49
+16027 * * * * * * * 9176 e985b6,eeb3ab 9176,eceb 00009176,0000eceb 9e4a faea 90ca 9e4a c8d6 fcc4 9e4a
+16028 * * * * * * * 63fc e68fbc,eeb3ac 63fc,ecec 000063fc,0000ecec 9e4b faad * 9e4b c7f2 fb6c 9e4b
+16029 * * * * * * * 63b9 e68eb9,eeb3ad 63b9,eced 000063b9,0000eced 9e4c fa79 * 9e4c c7ef fb68 9e4c
+16030 * * * * * * * 63fe e68fbe,eeb3ae 63fe,ecee 000063fe,0000ecee 9e4d fab0 * 9e4d * * 9e4d
+16031 * * * * * * * 5569 e595a9,eeb3af 5569,ecef 00005569,0000ecef 9e4e fa7e * 9e4e c777 fab1 9e4e
+16032 * * * * * * * ecf0 f0a2ad83,eeb3b0 d84adf43,ecf0 00022b43,0000ecf0 9e4f fa6d * 9e4f c7ed fb66 9e4f
+16033 * * * * * * * 9c72 e9b1b2,eeb3b1 9c72,ecf1 00009c72,0000ecf1 9e50 fae5 * 9e50 c8f5 fcf3 9e50
+16034 * * * * * * * ecf2 f0a2bab3,eeb3b2 d84bdeb3,ecf2 00022eb3,0000ecf2 9e51 fae9 * 9e51 c7fa fb77 9e51
+16035 * * * * * * * 519a e5869a,eeb3b3 519a,ecf3 0000519a,0000ecf3 9e52 fa42 * 9e52 c74c fa54 9e52
+16036 * * * * * * * 34df e3939f,eeb3b4 34df,ecf4 000034df,0000ecf4 9e53 fa4f * 9e53 c755 fa62 9e53
+16037 * * * * * * * ecf5 f0a0b6a7,eeb3b5 d843dda7,ecf5 00020da7,0000ecf5 9e54 fa7b * 9e54 c77b fab5 9e54
+16038 * * * * * * * 51a7 e586a7,eeb3b6 51a7,ecf6 000051a7,0000ecf6 9e55 fa6c * 9e55 c74d fa55 9e55
+16039 * * * * * * * 544d e5918d,eeb3b7 544d,ecf7 0000544d,0000ecf7 9e56 fa4d * 9e56 c766 fa7a 9e56
+16040 * * * * * * * 551e e5949e,eeb3b8 551e,ecf8 0000551e,0000ecf8 9e57 fa77 * 9e57 c772 faac 9e57
+16041 * * * * * * * 5513 e59493,eeb3b9 5513,ecf9 00005513,0000ecf9 9e58 fa72 * 9e58 c773 faad 9e58
+16042 * * * * * * * 7666 e799a6,eeb3ba 7666,ecfa 00007666,0000ecfa 9e59 fae0 * 9e59 c873 fbeb 9e59
+16043 * * * * * * * 8e2d e8b8ad,eeb3bb 8e2d,ecfb 00008e2d,0000ecfb 9e5a face * 9e5a c8c9 fcb3 9e5a
+16044 * * * * * * * ecfc f0a6a28a,eeb3bc d85adc8a,ecfc 0002688a,0000ecfc 9e5b fade * 9e5b c843 fba8 9e5b
+16045 * * * * * * * 75b1 e796b1,eeb3bd 75b1,ecfd 000075b1,0000ecfd 9e5c fa6a 9155 9e5c c86e fbe4 9e5c
+16046 * * * * * * * 80b6 e882b6,eeb3be 80b6,ecfe 000080b6,0000ecfe 9e5d fa64 * 9e5d c7fd fb7b 9e5d
+16047 * * * * * * * 8804 e8a084,eeb3bf 8804,ecff 00008804,0000ecff 9e5e fad8 * 9e5e c8bc fc7a 9e5e
+16048 * * * * * * * 8786 * * * * facd * 9e5f c8ba fc76 *
+16049 * * * * * * * 88c7 e8a387,eeb481 88c7,ed01 000088c7,0000ed01 9e60 fabe * 9e60 c8c1 fca4 9e60
+16050 * * * * * * * 81b6 e886b6,eeb482 81b6,ed02 000081b6,0000ed02 9e61 facf * 9e61 c842 fba6 9e61
+16051 * * * * * * * 841c e8909c,eeb483 841c,ed03 0000841c,0000ed03 9e62 * * 9e62 * * 9e62
+16052 * * * * * * * 44ec e493ac,eeb485 44ec,ed05 000044ec,0000ed05 9e64 * * 9e64 * * 9e64
+16053 * * * * * * * 7304 e78c84,eeb486 7304,ed06 00007304,0000ed06 9e65 * * 9e65 c865 fbd7 9e65
+16054 * * * * * * * 830b e88c8b,eeb489 830b,ed09 0000830b,0000ed09 9e68 * * 9e68 * * 9e68
+16055 * * * * * * * 567b e599bb,eeb48b 567b,ed0b 0000567b,0000ed0b 9e6a * * 9e6a c7b8 fad4 9e6a
+16056 * * * * * * * 9170 e985b0,eeb492 9170,ed12 00009170,0000ed12 9e71 * * 9e71 * fcc2 9e71
+16057 * * * * * * * 9208 e98888,eeb494 9208,ed14 00009208,0000ed14 9e73 * * 9e73 * * 9e73
+16058 * * * * * * * ed18 f0a0bbb9,eeb498 d843def9,ed18 00020ef9,0000ed18 9e77 * * 9e77 * * 9e77
+16059 * * * * * * * 7266 e789a6,eeb499 7266,ed19 00007266,0000ed19 9e78 * * 9e78 * * 9e78
+16060 * * * * * * * 474e e49d8e,eeb49b 474e,ed1b 0000474e,0000ed1b 9e7a * * 9e7a * * 9e7a
+16061 * * * * * * * ed1d eeb49d,f0a7bfb9 d85fdff9,ed1d 0000ed1d,00027ff9 9e7c * * 9e7c * * 9e7c
+16062 * * * * * * * 40fa e483ba,eeb49f 40fa,ed1f 000040fa,0000ed1f 9e7e * * 9e7e * * 9e7e
+16063 * * * * * * * 9c5d e9b19d,eeb4a0 9c5d,ed20 00009c5d,0000ed20 9ea1 * * 9ea1 * * 9ea1
+16064 * * * * * * * 651f e6949f,eeb4a1 651f,ed21 0000651f,0000ed21 9ea2 * * 9ea2 * * 9ea2
+16065 * * * * * * * 48f3 e4a3b3,eeb4a3 48f3,ed23 000048f3,0000ed23 9ea4 * * 9ea4 * * 9ea4
+16066 * * * * * * * ed24 f0a49fa0,eeb4a4 d851dfe0,ed24 000247e0,0000ed24 9ea5 * * 9ea5 * * 9ea5
+16067 * * * * * * * ed25 f0a9b5bc,eeb4a5 d867dd7c,ed25 00029d7c,0000ed25 9ea6 * * 9ea6 * * 9ea6
+16068 * * * * * * * * * * * * * * 9ea9 * * *
+16069 * * * * * * * ed29 eeb4a9,f0a796a3 d85ddda3,ed29 0000ed29,000275a3 9eaa * * 9eaa * * 9eaa
+16070 * * * * * * * * eeb4ab ed2b 0000ed2b 9eac * * 9eac * * 9eac
+16071 * * * * * * * ed2c f0a68188,eeb4ac d858dc48,ed2c 00026048,0000ed2c 9ead * * 9ead * * 9ead
+16072 * * * * * * * 71a3 e786a3,eeb4ae 71a3,ed2e 000071a3,0000ed2e 9eaf * * 9eaf * * 9eaf
+16073 * * * * * * * 7e8e e7ba8e,eeb4af 7e8e,ed2f 00007e8e,0000ed2f 9eb0 * * 9eb0 * * 9eb0
+16074 * * * * * * * 9d50 e9b590,eeb4b0 9d50,ed30 00009d50,0000ed30 9eb1 * * 9eb1 * * 9eb1
+16075 * * * * * * * 3577 e395b7,eeb4b3 3577,ed33 00003577,0000ed33 9eb4 * * 9eb4 * * 9eb4
+16076 * * * * * * * 6cb2 e6b2b2,eeb4b5 6cb2,ed35 00006cb2,0000ed35 9eb6 * * 9eb6 * * 9eb6
+16077 * * * * * * * 5367 e58da7,eeb4b6 5367,ed36 00005367,0000ed36 9eb7 * * 9eb7 c8b1 fc65 9eb7
+16078 * * * * * * * 39dc e3a79c,eeb4b8 39dc,ed38 000039dc,0000ed38 9eb9 * * 9eb9 * * 9eb9
+16079 * * * * * * * ed3b eeb4bb,f0a49898 d851de18,ed3b 0000ed3b,00024618 9ebc * * 9ebc * * 9ebc
+16080 * * * * * * * 822d e888ad,eeb4be 822d,ed3e 0000822d,0000ed3e 9ebf * * 9ebf * * 9ebf
+16081 * * * * * * * 544b e5918b,eeb4bf 544b,ed3f 0000544b,0000ed3f 9ec0 * * 9ec0 * fa7c 9ec0
+16082 * * * * * * * * eeb583 ed43 0000ed43 9ec4 * * 9ec4 * * 9ec4
+16083 * * * * * * * 3a52 e3a992,eeb584 3a52,ed44 00003a52,0000ed44 9ec5 * * 9ec5 * * 9ec5
+16084 * * * * * * * 7374 e78db4,eeb586 7374,ed46 00007374,0000ed46 9ec7 * * 9ec7 * * 9ec7
+16085 * * * * * * * ed47 f0a9baac,eeb587 d867deac,ed47 00029eac,0000ed47 9ec8 * * 9ec8 * * 9ec8
+16086 * * * * * * * 4d09 e4b489,eeb588 4d09,ed48 00004d09,0000ed48 9ec9 * * 9ec9 * * 9ec9
+16087 * * * * * * * 9bed e9afad,eeb589 9bed,ed49 00009bed,0000ed49 9eca * * 9eca * * 9eca
+16088 * * * * * * * * * * * * * * 9ecc * * *
+16089 * * * * * * * 4c5b e4b19b,eeb58c 4c5b,ed4c 00004c5b,0000ed4c 9ecd * * 9ecd * * 9ecd
+16090 * * * * * * * ed4f f0a9bf9e,eeb58f d867dfde,ed4f 00029fde,0000ed4f 9ed0 * * 9ed0 * * 9ed0
+16091 * * * * * * * 845c e8919c,eeb590 845c,ed50 0000845c,0000ed50 9ed1 * * 9ed1 * * 9ed1
+16092 * * * * * * * ed52 eeb592,f0a78ab2 d85cdeb2,ed52 0000ed52,000272b2 9ed3 * * 9ed3 * * 9ed3
+16093 * * * * * * * 632e e68cae,eeb595 632e,ed55 0000632e,0000ed55 9ed6 * * 9ed6 * * 9ed6
+16094 * * * * * * * 7d25 e7b4a5,eeb596 7d25,ed56 00007d25,0000ed56 9ed7 * * 9ed7 c8a7 fc57 9ed7
+16095 * * * * * * * 3a2a e3a8aa,eeb599 3a2a,ed59 00003a2a,0000ed59 9eda * * 9eda * * 9eda
+16096 * * * * * * * 9008 e98088,eeb59a 9008,ed5a 00009008,0000ed5a 9edb * * 9edb * fcbe 9edb
+16097 * * * * * * * 52cc e58b8c,eeb59b 52cc,ed5b 000052cc,0000ed5b 9edc * * 9edc * * 9edc
+16098 * * * * * * * 3e74 e3b9b4,eeb59c 3e74,ed5c 00003e74,0000ed5c 9edd * * 9edd * * 9edd
+16099 * * * * * * * 367a e399ba,eeb59d 367a,ed5d 0000367a,0000ed5d 9ede * * 9ede * * 9ede
+16100 * * * * * * * 45e9 e497a9,eeb59e 45e9,ed5e 000045e9,0000ed5e 9edf * * 9edf * * 9edf
+16101 * * * * * * * ed5f f0a0928e,eeb59f d841dc8e,ed5f 0002048e,0000ed5f 9ee0 * * 9ee0 * * 9ee0
+16102 * * * * * * * 7640 e79980,eeb5a0 7640,ed60 00007640,0000ed60 9ee1 * * 9ee1 * * 9ee1
+16103 * * * * * * * 5af0 e5abb0,eeb5a1 5af0,ed61 00005af0,0000ed61 9ee2 * * 9ee2 * * 9ee2
+16104 * * * * * * * ed62 f0a0bab6,eeb5a2 d843deb6,ed62 00020eb6,0000ed62 9ee3 * * 9ee3 * * 9ee3
+16105 * * * * * * * 787a e7a1ba,eeb5a3 787a,ed63 0000787a,0000ed63 9ee4 * * 9ee4 * * 9ee4
+16106 * * * * * * * 47b6 e49eb6,f0a7bcae,eeb5a4 47b6,d85fdf2e,ed64 000047b6,00027f2e,0000ed64 9ee5 * * 9ee5 * * 9ee5
+16107 * * * * * * * 58a7 e5a2a7,eeb5a5 58a7,ed65 000058a7,0000ed65 9ee6 * * 9ee6 * * 9ee6
+16108 * * * * * * * 40bf e482bf,eeb5a6 40bf,ed66 000040bf,0000ed66 9ee7 * * 9ee7 * * 9ee7
+16109 * * * * * * * 567c e599bc,eeb5a7 567c,ed67 0000567c,0000ed67 9ee8 * * 9ee8 c7b9 fad5 9ee8
+16110 * * * * * * * 9b8b e9ae8b,eeb5a8 9b8b,ed68 00009b8b,0000ed68 9ee9 * * 9ee9 * * 9ee9
+16111 * * * * * * * 5d74 e5b5b4,eeb5a9 5d74,ed69 00005d74,0000ed69 9eea * * 9eea * fb45 9eea
+16112 * * * * * * * 7654 e79994,eeb5aa 7654,ed6a 00007654,0000ed6a 9eeb * * 9eeb * * 9eeb
+16113 * * * * * * * ed6b f0aa90b4,eeb5ab d869dc34,ed6b 0002a434,0000ed6b 9eec * * 9eec * * 9eec
+16114 * * * * * * * 9e85 e9ba85,eeb5ac 9e85,ed6c 00009e85,0000ed6c 9eed * * 9eed * * 9eed
+16115 * * * * * * * 4ce1 e4b3a1,eeb5ad 4ce1,ed6d 00004ce1,0000ed6d 9eee * * 9eee * * 9eee
+16116 * * * * * * * * * * * * * * 9eef * * *
+16117 * * * * * * * 37fb e39fbb,eeb5af 37fb,ed6f 000037fb,0000ed6f 9ef0 * * 9ef0 * * 9ef0
+16118 * * * * * * * 6119 e68499,eeb5b0 6119,ed70 00006119,0000ed70 9ef1 * * 9ef1 * * 9ef1
+16119 * * * * * * * ed72 f0a48fb2,eeb5b2 d850dff2,ed72 000243f2,0000ed72 9ef3 * * 9ef3 * * 9ef3
+16120 * * * * * * * * eeb5b3 ed73 0000ed73 9ef4 * * 9ef4 * * 9ef4
+16121 * * * * * * * 565d e5999d,eeb5b4 565d,ed74 0000565d,0000ed74 9ef5 * * 9ef5 * fad2 9ef5
+16122 * * * * * * * ed78 f0a9b886,eeb5b8 d867de06,ed78 00029e06,0000ed78 9ef9 * * 9ef9 * * 9ef9
+16123 * * * * * * * 5234 e588b4,eeb5b9 5234,ed79 00005234,0000ed79 9efa * * 9efa * * 9efa
+16124 * * * * * * * 35ad e396ad,eeb5bb 35ad,ed7b 000035ad,0000ed7b 9efc * * 9efc * * 9efc
+16125 * * * * * * * * * * * * * * 9efd * * *
+16126 * * * * * * * 9d7c e9b5bc,eeb5bd 9d7c,ed7d 00009d7c,0000ed7d 9efe * * 9efe * * 9efe
+16127 * * * * * * * 7c56 e7b196,eeb5be 7c56,ed7e 00007c56,0000ed7e 9f40 * * 9f40 * * 9f40
+16128 * * * * * * * 9b39 e9acb9,eeb5bf 9b39,ed7f 00009b39,0000ed7f 9f41 * * 9f41 * * 9f41
+16129 * * * * * * * 57de e59f9e,eeb680 57de,ed80 000057de,0000ed80 9f42 * * 9f42 * * 9f42
+16130 * * * * * * * 5c53 e5b193,eeb682 5c53,ed82 00005c53,0000ed82 9f44 * * 9f44 * * 9f44
+16131 * * * * * * * 64d3 e69393,eeb683 64d3,ed83 000064d3,0000ed83 9f45 * * 9f45 * * 9f45
+16132 * * * * * * * ed84 f0a99390,eeb684 d865dcd0,ed84 000294d0,0000ed84 9f46 * * 9f46 * * 9f46
+16133 * * * * * * * ed85 f0a68cb5,eeb685 d858df35,ed85 00026335,0000ed85 9f47 * * 9f47 * * 9f47
+16134 * * * * * * * 86ad e89aad,eeb687 86ad,ed87 000086ad,0000ed87 9f49 * * 9f49 * * 9f49
+16135 * * * * * * * ed88 f0a0b4a8,eeb688 d843dd28,ed88 00020d28,0000ed88 9f4a * * 9f4a * * 9f4a
+16136 * * * * * * * ed8b f0a0b5b1,eeb68b d843dd71,ed8b 00020d71,0000ed8b 9f4d * * 9f4d c77a fab4 9f4d
+16137 * * * * * * * * eeb68c ed8c 0000ed8c 9f4e * * 9f4e * * 9f4e
+16138 * * * * * * * 51fe e587be,eeb68d 51fe,ed8d 000051fe,0000ed8d 9f4f fbbf 8fb3 9f4f * fa5e 9f4f
+16139 * * * * * * * ed8e f0a1bc8f,eeb68e d847df0f,ed8e 00021f0f,0000ed8e 9f50 fc46 91ac 9f50 * * 9f50
+16140 * * * * * * * 5d8e e5b68e,eeb68f 5d8e,ed8f 00005d8e,0000ed8f 9f51 fc45 8fe6 9f51 * * 9f51
+16141 * * * * * * * 9703 e99c83,eeb690 9703,ed90 00009703,0000ed90 9f52 fea5 90e0 9f52 * * 9f52
+16142 * * * * * * * ed91 f0a1b791,eeb691 d847ddd1,ed91 00021dd1,0000ed91 9f53 fc40 91a9 9f53 * * 9f53
+16143 * * * * * * * 9e81 e9ba81,eeb692 9e81,ed92 00009e81,0000ed92 9f54 feed 9147 9f54 * * 9f54
+16144 * * * * * * * 904c e9818c,eeb693 904c,ed93 0000904c,0000ed93 9f55 fe6e 90c6 9f55 * * 9f55
+16145 * * * * * * * 7b1f e7ac9f,eeb694 7b1f,ed94 00007b1f,0000ed94 9f56 fd78 8f59 9f56 * * 9f56
+16146 * * * * * * * 9b02 e9ac82,eeb695 9b02,ed95 00009b02,0000ed95 9f57 fed0 90f5 9f57 * * 9f57
+16147 * * * * * * * 5cd1 e5b391,eeb696 5cd1,ed96 00005cd1,0000ed96 9f58 fc41 91ab 9f58 * * 9f58
+16148 * * * * * * * 7ba3 e7aea3,eeb697 7ba3,ed97 00007ba3,0000ed97 9f59 fd7a 8f40 9f59 * * 9f59
+16149 * * * * * * * 6268 e689a8,eeb698 6268,ed98 00006268,0000ed98 9f5a fc77 8ea7 9f5a * * 9f5a
+16150 * * * * * * * 6335 e68cb5,eeb699 6335,ed99 00006335,0000ed99 9f5b fc7d 8f6e 9f5b c7ee fb67 9f5b
+16151 * * * * * * * 9aff e9abbf,eeb69a 9aff,ed9a 00009aff,0000ed9a 9f5c fed1 90f6 9f5c * * 9f5c
+16152 * * * * * * * 7bcf e7af8f,eeb69b 7bcf,ed9b 00007bcf,0000ed9b 9f5d fd7b 8e59 9f5d * * 9f5d
+16153 * * * * * * * 9b2a e9acaa,eeb69c 9b2a,ed9c 00009b2a,0000ed9c 9f5e fecb 9048 9f5e c8ec fce6 9f5e
+16154 * * * * * * * 7c7e e7b1be,eeb69d 7c7e,ed9d 00007c7e,0000ed9d 9f5f fda5 8ed4 9f5f * * 9f5f
+16155 * * * * * * * * * * * * fecc 8e48 9f60 * * *
+16156 * * * * * * * 7c42 e7b182,eeb69f 7c42,ed9f 00007c42,0000ed9f 9f61 fd7e 8ee0 9f61 * * 9f61
+16157 * * * * * * * 7c86 e7b286,eeb6a0 7c86,eda0 00007c86,0000eda0 9f62 fda6 8ecd 9f62 * * 9f62
+16158 * * * * * * * 9c15 e9b095,eeb6a1 9c15,eda1 00009c15,0000eda1 9f63 fedc 8eeb 9f63 * * 9f63
+16159 * * * * * * * 7bfc e7afbc,eeb6a2 7bfc,eda2 00007bfc,0000eda2 9f64 fd7d 9065 9f64 * fc50 9f64
+16160 * * * * * * * 9b09 e9ac89,eeb6a3 9b09,eda3 00009b09,0000eda3 9f65 fed3 90f7 9f65 * * 9f65
+16161 * * * * * * * * * * * * fef6 914c 9f66 * * *
+16162 * * * * * * * 9c2e e9b0ae 9c2e 00009c2e * fee1 8ef0 9f67 c8f2 fcef *
+16163 * * * * * * * 9f5a e9bd9a,eeb6a7 9f5a,eda7 00009f5a,0000eda7 9f69 fefc 9150 9f69 * * 9f69
+16164 * * * * * * * 5573 e595b3,eeb6a8 5573,eda8 00005573,0000eda8 9f6a fbd4 8fd5 9f6a * * 9f6a
+16165 * * * * * * * 5bc3 e5af83,eeb6a9 5bc3,eda9 00005bc3,0000eda9 9f6b fc52 9248 9f6b * * 9f6b
+16166 * * * * * * * 4ffd e4bfbd,eeb6aa 4ffd,edaa 00004ffd,0000edaa 9f6c fba1 9169 9f6c * * 9f6c
+16167 * * * * * * * 9e98 e9ba98,eeb6ab 9e98,edab 00009e98,0000edab 9f6d fb6f,fef1 9042 9f6d * * 9f6d
+16168 * * * * * * * 4ff2 e4bfb2,eeb6ac 4ff2,edac 00004ff2,0000edac 9f6e fb7d 8fa7 9f6e * * 9f6e
+16169 * * * * * * * 5260 e589a0,eeb6ad 5260,edad 00005260,0000edad 9f6f fbac 8e65 9f6f * * 9f6f
+16170 * * * * * * * 52d1 e58b91,eeb6af 52d1,edaf 000052d1,0000edaf 9f71 fbb1 8eb5 9f71 * * 9f71
+16171 * * * * * * * 5767 e59da7,eeb6b0 5767,edb0 00005767,0000edb0 9f72 fbea 8f6b 9f72 * * 9f72
+16172 * * * * * * * 5056 e58196,eeb6b1 5056,edb1 00005056,0000edb1 9f73 fb7c 8eaf 9f73 * * 9f73
+16173 * * * * * * * 59b7 e5a6b7,eeb6b2 59b7,edb2 000059b7,0000edb2 9f74 fbf3 8ead 9f74 * * 9f74
+16174 * * * * * * * 5e12 e5b892,eeb6b3 5e12,edb3 00005e12,0000edb3 9f75 fc49 8fd1 9f75 * * 9f75
+16175 * * * * * * * 97c8 e99f88,eeb6b4 97c8,edb4 000097c8,0000edb4 9f76 feaf 90e6 9f76 * * 9f76
+16176 * * * * * * * 9dab e9b6ab,eeb6b5 9dab,edb5 00009dab,0000edb5 9f77 feea 9144 9f77 c8f8 fcf6 9f77
+16177 * * * * * * * 8f5c e8bd9c,eeb6b6 8f5c,edb6 00008f5c,0000edb6 9f78 fe5b 90c2 9f78 * * 9f78
+16178 * * * * * * * 5469 e591a9,eeb6b7 5469,edb7 00005469,0000edb7 9f79 fbcb 8fa1 9f79 * * 9f79
+16179 * * * * * * * 97b4 e99eb4,eeb6b8 97b4,edb8 000097b4,0000edb8 9f7a feab 90e7 9f7a * * 9f7a
+16180 * * * * * * * 9940 e9a580,eeb6b9 9940,edb9 00009940,0000edb9 9f7b fb69,fec0 8f49 9f7b * * 9f7b
+16181 * * * * * * * 97ba e99eba,eeb6ba 97ba,edba 000097ba,0000edba 9f7c fead 90e4 9f7c * fcd6 9f7c
+16182 * * * * * * * 532c e58cac,eeb6bb 532c,edbb 0000532c,0000edbb 9f7d fbc1 916c 9f7d * * 9f7d
+16183 * * * * * * * 6130 e684b0,eeb6bc 6130,edbc 00006130,0000edbc 9f7e fc69 8fab 9f7e * * 9f7e
+16184 * * * * * * * 692c e6a4ac,eeb6bd 692c,edbd 0000692c,0000edbd 9fa1 fcb4 8fc9 9fa1 * * 9fa1
+16185 * * * * * * * 53da e58f9a,eeb6be 53da,edbe 000053da,0000edbe 9fa2 fbd2 8fcb 9fa2 * fa73 9fa2
+16186 * * * * * * * 9c0a e9b08a,eeb6bf 9c0a,edbf 00009c0a,0000edbf 9fa3 fedd 8ef7 9fa3 * * 9fa3
+16187 * * * * * * * 9d02 e9b482,eeb780 9d02,edc0 00009d02,0000edc0 9fa4 fee6 9143 9fa4 * * 9fa4
+16188 * * * * * * * 4c3b e4b0bb,eeb781 4c3b,edc1 00004c3b,0000edc1 9fa5 fed5 90f9 9fa5 * * 9fa5
+16189 * * * * * * * 9641 e99981,eeb782 9641,edc2 00009641,0000edc2 9fa6 fe7d 90d9 9fa6 * * 9fa6
+16190 * * * * * * * 6980 e6a680,eeb783 6980,edc3 00006980,0000edc3 9fa7 fcbb 8f61 9fa7 * * 9fa7
+16191 * * * * * * * 50a6 e582a6,eeb784 50a6,edc4 000050a6,0000edc4 9fa8 fba3 8fa2 9fa8 * * 9fa8
+16192 * * * * * * * 7546 e79586,eeb785 7546,edc5 00007546,0000edc5 9fa9 fbbe 91dc 9fa9 * * 9fa9
+16193 * * * * * * * edc6 f0a19dad,eeb786 d845df6d,edc6 0002176d,0000edc6 9faa fbfa 8ffc 9faa * * 9faa
+16194 * * * * * * * 99da e9a79a,eeb787 99da,edc7 000099da,0000edc7 9fab fec5 8ee6 9fab * * 9fab
+16195 * * * * * * * 5273 e589b3,eeb788 5273,edc8 00005273,0000edc8 9fac fbae 9052 9fac * * 9fac
+16196 * * * * * * * * eeb789 edc9 0000edc9 9fad fbd6 8fb9 9fad * * 9fad
+16197 * * * * * * * 9159 e98599,eeb78a 9159,edca 00009159,0000edca 9fae fe61 8efc 9fae * * 9fae
+16198 * * * * * * * 9681 e99a81,eeb78b 9681,edcb 00009681,0000edcb 9faf fea3 90dd 9faf * * 9faf
+16199 * * * * * * * 915c e9859c,eeb78c 915c,edcc 0000915c,0000edcc 9fb0 fe60 8f41 9fb0 * * 9fb0
+16200 * * * * * * * * f0ab91b3,eeb78d d86ddc73,edcd 0002b473,0000edcd 9fb1 fe5f 90ce 9fb1 * * 9fb1
+16201 * * * * * * * 9151 e98591,eeb78e 9151,edce 00009151,0000edce 9fb2 fe5e 8f45 9fb2 * * 9fb2
+16202 * * * * * * * edcf f0a8ba97,eeb78f d863de97,edcf 00028e97,0000edcf 9fb3 fe7e 90da 9fb3 * * 9fb3
+16203 * * * * * * * 637f e68dbf,eeb790 637f,edd0 0000637f,0000edd0 9fb4 fca1 8ff2 9fb4 * * 9fb4
+16204 * * * * * * * 6aca e6ab8a,eeb792 6aca,edd2 00006aca,0000edd2 9fb6 fcc9 91c6 9fb6 * * 9fb6
+16205 * * * * * * * 5611 e59891,eeb793 5611,edd3 00005611,0000edd3 9fb7 fbdd 917a 9fb7 c7b0 faca 9fb7
+16206 * * * * * * * 918e e9868e,eeb794 918e,edd4 0000918e,0000edd4 9fb8 fe65 90cb 9fb8 * * 9fb8
+16207 * * * * * * * 757a e795ba,eeb795 757a,edd5 0000757a,0000edd5 9fb9 fd4b 91dd 9fb9 * fa43 9fb9
+16208 * * * * * * * 6285 e68a85,eeb796 6285,edd6 00006285,0000edd6 9fba fc78 8fc3 9fba c7e7 fb5f 9fba
+16209 * * * * * * * 734f e78d8f,eeb798 734f,edd8 0000734f,0000edd8 9fbc fcf4 8fda 9fbc * * 9fbc
+16210 * * * * * * * 7c70 e7b1b0,eeb799 7c70,edd9 00007c70,0000edd9 9fbd fda4 9069 9fbd * * 9fbd
+16211 * * * * * * * edda f0a5b0a1,eeb79a d857dc21,edda 00025c21,0000edda 9fbe fd7c 9064 9fbe * * 9fbe
+16212 * * * * * * * * eeb79c eddc 0000eddc 9fc0 fdf7 907d 9fc0 * * 9fc0
+16213 * * * * * * * 76d6 e79b96,eeb79e 76d6,edde 000076d6,0000edde 9fc2 fd50 91e1 9fc2 * * 9fc2
+16214 * * * * * * * 9b9d e9ae9d,eeb79f 9b9d,eddf 00009b9d,0000eddf 9fc3 fed8 8f48 9fc3 * * 9fc3
+16215 * * * * * * * 4e2a e4b8aa,eeb7a0 4e2a,ede0 00004e2a,0000ede0 9fc4 fb71 8ebc 9fc4 * * 9fc4
+16216 * * * * * * * ede1 f0a0b394,eeb7a1 d843dcd4,ede1 00020cd4,0000ede1 9fc5 fa74 * 9fc5 c76f faa8 9fc5
+16217 * * * * * * * 83be e88ebe,eeb7a2 83be,ede2 000083be,0000ede2 9fc6 fb61,fdef 8e42 9fc6 * * 9fc6
+16218 * * * * * * * 8842 e8a182,eeb7a3 8842,ede3 00008842,0000ede3 9fc7 fdda 8f55 9fc7 * * 9fc7
+16219 * * * * * * * * eeb7a4 ede4 0000ede4 9fc8 fb72 8ff5 9fc8 * * 9fc8
+16220 * * * * * * * 5c4a e5b18a,eeb7a5 5c4a,ede5 00005c4a,0000ede5 9fc9 fbfd 8f7e 9fc9 * * 9fc9
+16221 * * * * * * * 69c0 e6a780,eeb7a6 69c0,ede6 000069c0,0000ede6 9fca fcbf 91c2 9fca * * 9fca
+16222 * * * * * * * * * * * * fba7 8fec 9fcb * * *
+16223 * * * * * * * 577a * * * * fbe9 91a4 9fcc * * *
+16224 * * * * * * * 521f e5889f,eeb7a9 521f,ede9 0000521f,0000ede9 9fcd fbab 8f79 9fcd * * 9fcd
+16225 * * * * * * * 5df5 e5b7b5,eeb7aa 5df5,edea 00005df5,0000edea 9fce fc47 9263 9fce * * 9fce
+16226 * * * * * * * 4ece e4bb8e,eeb7ab 4ece,edeb 00004ece,0000edeb 9fcf fb73 9165 9fcf * * 9fcf
+16227 * * * * * * * 6c31 e6b0b1,eeb7ac 6c31,edec 00006c31,0000edec 9fd0 fcf8 8fdc 9fd0 * * 9fd0
+16228 * * * * * * * eded f0a087b2,eeb7ad d840ddf2,eded 000201f2,0000eded 9fd1 fb76 91f1 9fd1 * * 9fd1
+16229 * * * * * * * 4f39 e4bcb9,eeb7ae 4f39,edee 00004f39,0000edee 9fd2 fb77 9167 9fd2 * * 9fd2
+16230 * * * * * * * 549c e5929c,eeb7af 549c,edef 0000549c,0000edef 9fd3 fbcd 8e73 9fd3 * * 9fd3
+16231 * * * * * * * * * * * * * 9172 9fd4 * * *
+16232 * * * * * * * 529a e58a9a,eeb7b1 529a,edf1 0000529a,0000edf1 9fd5 fbaf 8eba 9fd5 * * 9fd5
+16233 * * * * * * * 8d82 e8b682,eeb7b2 8d82,edf2 00008d82,0000edf2 9fd6 fe50 90ba 9fd6 * * 9fd6
+16234 * * * * * * * 35fe e397be,eeb7b3 35fe,edf3 000035fe,0000edf3 9fd7 fad1 * 9fd7 c7ba fad6 9fd7
+16235 * * * * * * * * * * * * fc4d 8f72 9fd8 * * *
+16236 * * * * * * * 35f3 e397b3,eeb7b5 35f3,edf5 000035f3,0000edf5 9fd9 fbe2 917e 9fd9 * fad1 9fd9
+16237 * * * * * * * * eeb7b6 edf6 0000edf6 9fda fb49 * 9fda c75d fa6f 9fda
+16238 * * * * * * * 6b52 e6ad92,eeb7b7 6b52,edf7 00006b52,0000edf7 9fdb fccb 8f68 9fdb * * 9fdb
+16239 * * * * * * * 917c e985bc,eeb7b8 917c,edf8 0000917c,0000edf8 9fdc fe64 90c9 9fdc * * 9fdc
+16240 * * * * * * * 9fa5 e9bea5,eeb7b9 9fa5,edf9 00009fa5,0000edf9 9fdd feb3 8ebd 9fdd * * 9fdd
+16241 * * * * * * * 9b97 e9ae97,eeb7ba 9b97,edfa 00009b97,0000edfa 9fde fed9 8f51 9fde * * 9fde
+16242 * * * * * * * 982e e9a0ae,eeb7bb 982e,edfb 0000982e,0000edfb 9fdf feb2 90ea 9fdf * * 9fdf
+16243 * * * * * * * 98b4 e9a2b4,eeb7bc 98b4,edfc 000098b4,0000edfc 9fe0 feb8 9046 9fe0 * * 9fe0
+16244 * * * * * * * 9aba e9aaba,eeb7bd 9aba,edfd 00009aba,0000edfd 9fe1 fec8 90f3 9fe1 * * 9fe1
+16245 * * * * * * * 9ea8 e9baa8,eeb7be 9ea8,edfe 00009ea8,0000edfe 9fe2 fef3 914a 9fe2 * * 9fe2
+16246 * * * * * * * 9e84 e9ba84,eeb7bf 9e84,edff 00009e84,0000edff 9fe3 feee 9148 9fe3 * * 9fe3
+16247 * * * * * * * 7b14 e7ac94,eeb881 7b14,ee01 00007b14,0000ee01 9fe5 fd75 91eb 9fe5 * * 9fe5
+16248 * * * * * * * * eeb882 ee02 0000ee02 9fe6 fcd7 8fcd 9fe6 * * 9fe6
+16249 * * * * * * * 6bfa e6afba,eeb883 6bfa,ee03 00006bfa,0000ee03 9fe7 fccc 8ff8 9fe7 * * 9fe7
+16250 * * * * * * * 8818 e8a098,eeb884 8818,ee04 00008818,0000ee04 9fe8 fdd8 90ae 9fe8 * * 9fe8
+16251 * * * * * * * 7f78 e7bdb8,eeb885 7f78,ee05 00007f78,0000ee05 9fe9 fde7 8f4c 9fe9 * * 9fe9
+16252 * * * * * * * * eeb886 ee06 0000ee06 9fea fb60,fde5 8f4e 9fea * * 9fea
+16253 * * * * * * * 5620 e598a0,eeb887 5620,ee07 00005620,0000ee07 9feb fbe6 8f6c 9feb * * 9feb
+16254 * * * * * * * ee08 f0aa998a,eeb888 d869de4a,ee08 0002a64a,0000ee08 9fec fefe * 9fec * * 9fec
+16255 * * * * * * * 8e77 e8b9b7,eeb889 8e77,ee09 00008e77,0000ee09 9fed fe56 90bf 9fed * * 9fed
+16256 * * * * * * * 9f53 e9bd93,eeb88a 9f53,ee0a 00009f53,0000ee0a 9fee fefb 914f 9fee * * 9fee
+16257 * * * * * * * * eeb88b ee0b 0000ee0b 9fef fe77 * 9fef * * 9fef
+16258 * * * * * * * 8dd4 e8b794,eeb88c 8dd4,ee0c 00008dd4,0000ee0c 9ff0 fe52 90bb 9ff0 * * 9ff0
+16259 * * * * * * * 8e4f e8b98f,eeb88d 8e4f,ee0d 00008e4f,0000ee0d 9ff1 fe55 90bd 9ff1 * * 9ff1
+16260 * * * * * * * 9e1c e9b89c,eeb88e 9e1c,ee0e 00009e1c,0000ee0e 9ff2 feec 9145 9ff2 * * 9ff2
+16261 * * * * * * * 8e01 e8b881,eeb88f 8e01,ee0f 00008e01,0000ee0f 9ff3 fe54 90bc 9ff3 * * 9ff3
+16262 * * * * * * * 6282 e68a82,eeb890 6282,ee10 00006282,0000ee10 9ff4 fc79 8fc6 9ff4 * * 9ff4
+16263 * * * * * * * ee11 f0a88dbd,eeb891 d860df7d,ee11 0002837d,0000ee11 9ff5 fe5a 90c1 9ff5 * * 9ff5
+16264 * * * * * * * 8e28 e8b8a8,eeb892 8e28,ee12 00008e28,0000ee12 9ff6 fe53 8ec3 9ff6 * * 9ff6
+16265 * * * * * * * 8e75 e8b9b5,eeb893 8e75,ee13 00008e75,0000ee13 9ff7 fe57 90be 9ff7 * * 9ff7
+16266 * * * * * * * 7ad3 e7ab93,eeb894 7ad3,ee14 00007ad3,0000ee14 9ff8 fd68 8f60 9ff8 * * 9ff8
+16267 * * * * * * * 7a3e e7a8be,eeb896 7a3e,ee16 00007a3e,0000ee16 9ffa fd66 91f2 9ffa * * 9ffa
+16268 * * * * * * * 78d8 e7a398,eeb897 78d8,ee17 000078d8,0000ee17 9ffb fd59 8ec2 9ffb * * 9ffb
+16269 * * * * * * * 6cea e6b3aa,eeb898 6cea,ee18 00006cea,0000ee18 9ffc fccd 8e6a 9ffc * * 9ffc
+16270 * * * * * * * 8a67 e8a9a7,eeb899 8a67,ee19 00008a67,0000ee19 9ffd fd74 9241 9ffd * * 9ffd
+16271 * * * * * * * 7607 e79887,eeb89a 7607,ee1a 00007607,0000ee1a 9ffe fd6d 91de 9ffe c870 fbe6 9ffe
+16272 * * * * * * * 9f26 e9bca6,eeb89c 9f26,ee1c 00009f26,0000ee1c a041 fb70,fef7 914d a041 c8fd fcfc a041
+16273 * * * * * * * 6cce e6b38e,eeb89d 6cce,ee1d 00006cce,0000ee1d a042 fccf 8f73 a042 * * a042
+16274 * * * * * * * 87d6 e89f96,eeb89e 87d6,ee1e 000087d6,0000ee1e a043 fdd5 915e a043 * fc7b a043
+16275 * * * * * * * 75c3 e79783,eeb89f 75c3,ee1f 000075c3,0000ee1f a044 fd6c 8e53 a044 * * a044
+16276 * * * * * * * ee20 f0aa8ab2,eeb8a0 d868deb2,ee20 0002a2b2,0000ee20 a045 feef 8eea a045 * * a045
+16277 * * * * * * * 7853 e7a193,eeb8a1 7853,ee21 00007853,0000ee21 a046 fd56 8edd a046 * * a046
+16278 * * * * * * * 8d0c e8b48c,eeb8a3 8d0c,ee23 00008d0c,0000ee23 a048 fe4e 8edc a048 * * a048
+16279 * * * * * * * 72e2 e78ba2,eeb8a4 72e2,ee24 000072e2,0000ee24 a049 fcef 91d7 a049 * * a049
+16280 * * * * * * * 7371 e78db1,eeb8a5 7371,ee25 00007371,0000ee25 a04a fcf5 91da a04a * * a04a
+16281 * * * * * * * 8b2d e8acad,eeb8a6 8b2d,ee26 00008b2d,0000ee26 a04b fe46 8e4a a04b * fcaf a04b
+16282 * * * * * * * 7302 e78c82,eeb8a7 7302,ee27 00007302,0000ee27 a04c fcf0 8fea a04c c864 fbd6 a04c
+16283 * * * * * * * 74f1 e793b1,eeb8a8 74f1,ee28 000074f1,0000ee28 a04d fd41 8e74 a04d * * a04d
+16284 * * * * * * * 8ceb e8b3ab,eeb8a9 8ceb,ee29 00008ceb,0000ee29 a04e fe4c 8eee a04e * * a04e
+16285 * * * * * * * ee2a f0a4aabb,eeb8aa d852debb,ee2a 00024abb,0000ee2a a04f fcfe 8fce a04f * * a04f
+16286 * * * * * * * 862f e898af,eeb8ab 862f,ee2b 0000862f,0000ee2b a050 fb62,fdfa 90a5 a050 * * a050
+16287 * * * * * * * 5fba e5beba,eeb8ac 5fba,ee2c 00005fba,0000ee2c a051 fc5c 8e63 a051 * * a051
+16288 * * * * * * * 88a0 e8a2a0,eeb8ad 88a0,ee2d 000088a0,0000ee2d a052 fde1 90b2 a052 * * a052
+16289 * * * * * * * 44b7 e492b7,eeb8ae 44b7,ee2e 000044b7,0000ee2e a053 fdeb 90a2 a053 * * a053
+16290 * * * * * * * * eeb8af ee2f 0000ee2f a054 fb5e,fddc 90af a054 * fc7e a054
+16291 * * * * * * * ee31 f0a6b885,eeb8b1 d85bde05,ee31 00026e05,0000ee31 a056 fdf5 907c a056 * * a056
+16292 * * * * * * * * f0aab9a7,eeb8b2 d86bde67,ee32 0002ae67,0000ee32 a057 fce7 91ee a057 * * a057
+16293 * * * * * * * 8a7e e8a9be,eeb8b3 8a7e,ee33 00008a7e,0000ee33 a058 fe43 90b7 a058 * * a058
+16294 * * * * * * * ee34 f0a2949b,eeb8b4 d849dd1b,ee34 0002251b,0000ee34 a059 fc59 9244 a059 * * a059
+16295 * * * * * * * * eeb8b5 ee35 0000ee35 a05a fc5e 91ce a05a * * a05a
+16296 * * * * * * * 60fd e683bd,eeb8b6 60fd,ee36 000060fd,0000ee36 a05b fc68 91b5 a05b * * a05b
+16297 * * * * * * * 7667 e799a7,eeb8b7 7667,ee37 00007667,0000ee37 a05c fd71 8e5f a05c * fbed a05c
+16298 * * * * * * * 9ad7 e9ab97,eeb8b8 9ad7,ee38 00009ad7,0000ee38 a05d fb6c,feca 8e4e a05d c8eb fce4 a05d
+16299 * * * * * * * 9d44 e9b584,eeb8b9 9d44,ee39 00009d44,0000ee39 a05e fee8 8ec0 a05e * * a05e
+16300 * * * * * * * * e98dae,ee97ab,eeb8ba 936e,e5eb,ee3a 0000936e,0000e5eb,0000ee3a 92c8,a05f fe76 8e60 a05f * * 92c8,a05f
+16301 * * * * * * * 9b8f e9ae8f,eeb8bb 9b8f,ee3b 00009b8f,0000ee3b a060 fed6 90fb a060 * * a060
+16302 * * * * * * * 87f5 e89fb5,eeb8bc 87f5,ee3c 000087f5,0000ee3c a061 fdd6 915f a061 * * a061
+16303 * * * * * * * * f0adbcbc,eeb8bd d877df3c,ee3d 0002df3c,0000ee3d a062 * 8fc5 a062 * * a062
+16304 * * * * * * * * * * * * * * a063 * * *
+16305 * * * * * * * 8cf7 e8b3b7,eeb8bf 8cf7,ee3f 00008cf7,0000ee3f a064 fe4d 8ee8 a064 * * a064
+16306 * * * * * * * 732c e78cac,eeb980 732c,ee40 0000732c,0000ee40 a065 fced 91d8 a065 c868 fbda a065
+16307 * * * * * * * 9721 e99ca1,eeb981 9721,ee41 00009721,0000ee41 a066 fea6 90df a066 * * a066
+16308 * * * * * * * 9bb0 e9aeb0,eeb982 9bb0,ee42 00009bb0,0000ee42 a067 feda 90fa a067 * * a067
+16309 * * * * * * * 35d6 e39796,eeb983 35d6,ee43 000035d6,0000ee43 a068 fbda 9175 a068 * * a068
+16310 * * * * * * * 72b2 e78ab2,eeb984 72b2,ee44 000072b2,0000ee44 a069 fcee 8fef a069 * * a069
+16311 * * * * * * * 4c07 e4b087,eeb985 4c07,ee45 00004c07,0000ee45 a06a fed2 8ebe a06a * * a06a
+16312 * * * * * * * 7c51 e7b191,eeb986 7c51,ee46 00007c51,0000ee46 a06b fda1 9067 a06b * * a06b
+16313 * * * * * * * 994a e9a58a,eeb987 994a,ee47 0000994a,0000ee47 a06c fec1 90f1 a06c * * a06c
+16314 * * * * * * * 6159 e68599,eeb989 6159,ee49 00006159,0000ee49 a06e fc6d 8f71 a06e c7e6 fb5c a06e
+16315 * * * * * * * 4c04 e4b084,eeb98a 4c04,ee4a 00004c04,0000ee4a a06f fed4 90f8 a06f * * a06f
+16316 * * * * * * * 9e96 e9ba96,eeb98b 9e96,ee4b 00009e96,0000ee4b a070 faed * a070 c8fa fcf8 a070
+16317 * * * * * * * 617d e685bd,eeb98c 617d,ee4c 0000617d,0000ee4c a071 fc70 91b4 a071 * * a071
+16318 * * * * * * * * eeb98d ee4d 0000ee4d a072 fc58 8f74 a072 * * a072
+16319 * * * * * * * 575f e59d9f,eeb98e 575f,ee4e 0000575f,0000ee4e a073 fbe7 91a3 a073 * * a073
+16320 * * * * * * * 616f e685af,eeb98f 616f,ee4f 0000616f,0000ee4f a074 fc6e 8f7b a074 * * a074
+16321 * * * * * * * 62a6 e68aa6,eeb990 62a6,ee50 000062a6,0000ee50 a075 fc7a 8fa8 a075 c7ea fb63 a075
+16322 * * * * * * * 6239 e688b9,eeb991 6239,ee51 00006239,0000ee51 a076 fc76 91b8 a076 * * a076
+16323 * * * * * * * * * * * * fae8 * a077 * * *
+16324 * * * * * * * 3a5c e3a99c,eeb993 3a5c,ee53 00003a5c,0000ee53 a078 fca4 91bc a078 * * a078
+16325 * * * * * * * 61e2 e687a2,eeb994 61e2,ee54 000061e2,0000ee54 a079 fc74 8eb3 a079 * fb5e a079
+16326 * * * * * * * 53aa e58eaa,eeb995 53aa,ee55 000053aa,0000ee55 a07a fbc7 8ea3 a07a * * a07a
+16327 * * * * * * * 6364 e68da4,eeb997 6364,ee57 00006364,0000ee57 a07c fc7c 8f64 a07c * * a07c
+16328 * * * * * * * 6802 e6a082,eeb998 6802,ee58 00006802,0000ee58 a07d fcb2 8ff1 a07d * * a07d
+16329 * * * * * * * 35d2 e39792,eeb999 35d2,ee59 000035d2,0000ee59 a07e fbd8 9174 a07e * * a07e
+16330 * * * * * * * 5d57 e5b597,eeb99a 5d57,ee5a 00005d57,0000ee5a a0a1 fc43 8feb a0a1 * * a0a1
+16331 * * * * * * * 8fda e8bf9a,eeb99c 8fda,ee5c 00008fda,0000ee5c a0a3 fe6b 8e61 a0a3 * * a0a3
+16332 * * * * * * * ee5d f0a8b8b9,eeb99d d863de39,ee5d 00028e39,0000ee5d a0a4 fe7b 90d7 a0a4 * * a0a4
+16333 * * * * * * * * eeb99e ee5e 0000ee5e a0a5 fbd9 8fa5 a0a5 * * a0a5
+16334 * * * * * * * 50d9 e58399,eeb99f 50d9,ee5f 000050d9,0000ee5f a0a6 fba5 8ea8 a0a6 * * a0a6
+16335 * * * * * * * 7906 e7a486,eeb9a1 7906,ee61 00007906,0000ee61 a0a8 fb52,fd5a 91e4 a0a8 * * a0a8
+16336 * * * * * * * 5332 e58cb2,eeb9a2 5332,ee62 00005332,0000ee62 a0a9 fbc0 916b a0a9 * * a0a9
+16337 * * * * * * * 9638 e998b8,eeb9a3 9638,ee63 00009638,0000ee63 a0aa fe7c 90d8 a0aa * * a0aa
+16338 * * * * * * * ee64 f0a0bcbb,eeb9a4 d843df3b,ee64 00020f3b,0000ee64 a0ab fbdc 916f a0ab * * a0ab
+16339 * * * * * * * 4065 e481a5,eeb9a5 4065,ee65 00004065,0000ee65 a0ac fd54 91e2 a0ac * * a0ac
+16340 * * * * * * * * eeb9a6 ee66 0000ee66 a0ad fd5c 91e5 a0ad * * a0ad
+16341 * * * * * * * 77fe e79fbe,eeb9a7 77fe,ee67 000077fe,0000ee67 a0ae faee * a0ae c877 fbf8 a0ae
+16342 * * * * * * * * eeb9a8 ee68 0000ee68 a0af fdab 906e a0af * * a0af
+16343 * * * * * * * 7cc2 e7b382,eeb9a9 7cc2,ee69 00007cc2,0000ee69 a0b0 fdaa 906d a0b0 * * a0b0
+16344 * * * * * * * ee6a f0a5bc9a,eeb9aa d857df1a,ee6a 00025f1a,0000ee6a a0b1 fdad 9264 a0b1 * * a0b1
+16345 * * * * * * * 7cda e7b39a,eeb9ab 7cda,ee6b 00007cda,0000ee6b a0b2 fdac 906c a0b2 * * a0b2
+16346 * * * * * * * 7a2d e7a8ad,eeb9ac 7a2d,ee6c 00007a2d,0000ee6c a0b3 fd65 91e9 a0b3 * fc46 a0b3
+16347 * * * * * * * 8066 e881a6,eeb9ad 8066,ee6d 00008066,0000ee6d a0b4 fdbb 8ecc a0b4 * * a0b4
+16348 * * * * * * * 8063 e881a3,eeb9ae 8063,ee6e 00008063,0000ee6e a0b5 fdba 8ed6 a0b5 * * a0b5
+16349 * * * * * * * 7d4d e7b58d,eeb9af 7d4d,ee6f 00007d4d,0000ee6f a0b6 fdae 8f4a a0b6 * * a0b6
+16350 * * * * * * * 7505 e79485,eeb9b0 7505,ee70 00007505,0000ee70 a0b7 fd44 8e70 a0b7 * * a0b7
+16351 * * * * * * * 74f2 e793b2,eeb9b1 74f2,ee71 000074f2,0000ee71 a0b8 fd42 8e77 a0b8 * * a0b8
+16352 * * * * * * * 8994 e8a694,eeb9b2 8994,ee72 00008994,0000ee72 a0b9 fdfe 90b3 a0b9 * * a0b9
+16353 * * * * * * * 821a e8889a,eeb9b3 821a,ee73 0000821a,0000ee73 a0ba fdca 907a a0ba * * a0ba
+16354 * * * * * * * 670c e69c8c,eeb9b4 670c,ee74 0000670c,0000ee74 a0bb fdbf 9074 a0bb * * a0bb
+16355 * * * * * * * 8062 e881a2,eeb9b5 8062,ee75 00008062,0000ee75 a0bc fdb9 8ed3 a0bc * * a0bc
+16356 * * * * * * * ee76 f0a79286,eeb9b6 d85ddc86,ee76 00027486,0000ee76 a0bd fdd4 90ac a0bd * * a0bd
+16357 * * * * * * * 805b e8819b,eeb9b7 805b,ee77 0000805b,0000ee77 a0be fdbc 8ecf a0be * * a0be
+16358 * * * * * * * 74f0 e793b0,eeb9b8 74f0,ee78 000074f0,0000ee78 a0bf fd43 8e7a a0bf * * a0bf
+16359 * * * * * * * 8103 e88483,eeb9b9 8103,ee79 00008103,0000ee79 a0c0 fdc0 9077 a0c0 * * a0c0
+16360 * * * * * * * 7724 e79ca4,eeb9ba 7724,ee7a 00007724,0000ee7a a0c1 fd51 8e4b a0c1 * * a0c1
+16361 * * * * * * * 8989 e8a689,eeb9bb 8989,ee7b 00008989,0000ee7b a0c2 fdfc 8ef1 a0c2 c8c2 fca7 a0c2
+16362 * * * * * * * ee7c f0a69f8c,eeb9bc d859dfcc,ee7c 000267cc,0000ee7c a0c3 fb4d * a0c3 * * a0c3
+16363 * * * * * * * 7553 e79593,eeb9bd 7553,ee7d 00007553,0000ee7d a0c4 fd48 8fad a0c4 * * a0c4
+16364 * * * * * * * 87a9 e89ea9,eeb9bf 87a9,ee7f 000087a9,0000ee7f a0c6 fdce 8ece a0c6 * * a0c6
+16365 * * * * * * * 87ce e89f8e,eeba80 87ce,ee80 000087ce,0000ee80 a0c7 fdd2 90ab a0c7 * fc78 a0c7
+16366 * * * * * * * 81c8 e88788,eeba81 81c8,ee81 000081c8,0000ee81 a0c8 fdc6 9079 a0c8 * * a0c8
+16367 * * * * * * * 878c e89e8c,eeba82 878c,ee82 0000878c,0000ee82 a0c9 fdcf 90a8 a0c9 * * a0c9
+16368 * * * * * * * 8a49 e8a989,eeba83 8a49,ee83 00008a49,0000ee83 a0ca fe44 90b6 a0ca * * a0ca
+16369 * * * * * * * 8cad e8b2ad,eeba84 8cad,ee84 00008cad,0000ee84 a0cb fe4b 8ef9 a0cb * * a0cb
+16370 * * * * * * * 8b43 e8ad83,eeba85 8b43,ee85 00008b43,0000ee85 a0cc fe47 8ec1 a0cc * * a0cc
+16371 * * * * * * * 772b e79cab,eeba86 772b,ee86 0000772b,0000ee86 a0cd fd52 8f65 a0cd * fbf2 a0cd
+16372 * * * * * * * 74f8 e793b8,eeba87 74f8,ee87 000074f8,0000ee87 a0ce fd46 8e71 a0ce * * a0ce
+16373 * * * * * * * 84da e8939a,eeba88 84da,ee88 000084da,0000ee88 a0cf fdf2 90a4 a0cf * * a0cf
+16374 * * * * * * * 69b2 e6a6b2,eeba8a 69b2,ee8a 000069b2,0000ee8a a0d1 fcbe 91c1 a0d1 * fbb2 a0d1
+16375 * * * * * * * 8da6 e8b6a6,eeba8b 8da6,ee8b 00008da6,0000ee8b a0d2 fe51 8ed1 a0d2 * * a0d2
+16376 * * * * * * * * eeba8c ee8c 0000ee8c a0d3 fdf1 8ee4 a0d3 * * a0d3
+16377 * * * * * * * * e8a6a9,ee9098,eeba8d 89a9,e418,ee8d 000089a9,0000e418,0000ee8d 8fcc,a0d4 fe41 9251 a0d4 c8c4 fca9 8fcc,a0d4
+16378 * * * * * * * * * * * * fcfd 8fee a0d5 * * *
+16379 * * * * * * * 6db9 e6b6b9,eeba8f 6db9,ee8f 00006db9,0000ee8f a0d6 fcd3 9171 a0d6 * * a0d6
+16380 * * * * * * * 87c1 e89f81,eeba90 87c1,ee90 000087c1,0000ee90 a0d7 fdd1 90a9 a0d7 * * a0d7
+16381 * * * * * * * ee91 f0a48091,eeba91 d850dc11,ee91 00024011,0000ee91 a0d8 fcd6 91cd a0d8 * * a0d8
+16382 * * * * * * * 74e7 e793a7,eeba92 74e7,ee92 000074e7,0000ee92 a0d9 fd40 8ea1 a0d9 * * a0d9
+16383 * * * * * * * 3ddb e3b79b,eeba93 3ddb,ee93 00003ddb,0000ee93 a0da fafb * a0da c85e fbce a0da
+16384 * * * * * * * 7176 e785b6,eeba94 7176,ee94 00007176,0000ee94 a0db fce2 8fbd a0db c85b fbcb a0db
+16385 * * * * * * * 60a4 e682a4,ee85a6,eeba95 60a4,e166,ee95 000060a4,0000e166,0000ee95 fc6c,a0dc fc60 91b3 a0dc * * fc6c,a0dc
+16386 * * * * * * * 619c e6869c,eeba96 619c,ee96 0000619c,0000ee96 a0dd fc6c 8f6f a0dd c7e4 fb5a a0dd
+16387 * * * * * * * 3cd1 e3b391,eeba97 3cd1,ee97 00003cd1,0000ee97 a0de fcce 8f66 a0de * * a0de
+16388 * * * * * * * * * * * * fce4 8e72 a0df * * *
+16389 * * * * * * * 6077 e681b7,eeba99 6077,ee99 00006077,0000ee99 a0e0 fc5f 8eac a0e0 * * a0e0
+16390 * * * * * * * * eeba9a ee9a 0000ee9a a0e1 fc6b 8f6a a0e1 * * a0e1
+16391 * * * * * * * 7f71 e7bdb1,eeba9b 7f71,ee9b 00007f71,0000ee9b a0e2 fde6 9073 a0e2 * * a0e2
+16392 * * * * * * * * f0afa4a2 d87edd22 0002f922 * * * a0e4 * * *
+16393 * * * * * * * 60e9 e683a9,eeba9e 60e9,ee9e 000060e9,0000ee9e a0e5 fc65 8fc4 a0e5 * * a0e5
+16394 * * * * * * * 4b7e e4adbe,eeba9f 4b7e,ee9f 00004b7e,0000ee9f a0e6 fec3 8eec a0e6 * * a0e6
+16395 * * * * * * * e000 f0a09587,ee8080 d841dd47,e000 00020547,0000e000 fa40 * * fa40 * * fa40
+16396 * * * * * * * 92db e98b9b,ee8081 92db,e001 000092db,0000e001 fa41 * * fa41 * * fa41
+16397 * * * * * * * e002 f0a0979f,ee8082 d841dddf,e002 000205df,0000e002 fa42 * * fa42 * * fa42
+16398 * * * * * * * e003 f0a3bf85,ee8083 d84fdfc5,e003 00023fc5,0000e003 fa43 * * fa43 * * fa43
+16399 * * * * * * * 854c e8958c,ee8084 854c,e004 0000854c,0000e004 fa44 * * fa44 * * fa44
+16400 * * * * * * * 42b5 e48ab5,ee8085 42b5,e005 000042b5,0000e005 fa45 * * fa45 * * fa45
+16401 * * * * * * * 73ef e78faf,ee8086 73ef,e006 000073ef,0000e006 fa46 * * fa46 * * fa46
+16402 * * * * * * * 51b5 e586b5,ee8087 51b5,e007 000051b5,0000e007 fa47 fbb7 8e79 fa47 * * fa47
+16403 * * * * * * * 3649 e39989,ee8088 3649,e008 00003649,0000e008 fa48 * * fa48 * * fa48
+16404 * * * * * * * e009 f0a4a582,ee8089 d852dd42,e009 00024942,0000e009 fa49 * * fa49 * * fa49
+16405 * * * * * * * e00a f0a8a7a4,ee808a d862dde4,e00a 000289e4,0000e00a fa4a * * fa4a * * fa4a
+16406 * * * * * * * 9344 e98d84,ee808b 9344,e00b 00009344,0000e00b fa4b * * fa4b * * fa4b
+16407 * * * * * * * e00c f0a1a79b,ee808c d846dddb,e00c 000219db,0000e00c fa4c * * fa4c * * fa4c
+16408 * * * * * * * 82ee e88bae,ee808d 82ee,e00d 000082ee,0000e00d fa4d * * fa4d * * fa4d
+16409 * * * * * * * e00e f0a3b388,ee808e d84fdcc8,e00e 00023cc8,0000e00e fa4e * * fa4e * * fa4e
+16410 * * * * * * * 783c e7a0bc,ee808f 783c,e00f 0000783c,0000e00f fa4f * * fa4f * * fa4f
+16411 * * * * * * * 6744 e69d84,ee8090 6744,e010 00006744,0000e010 fa50 * * fa50 * * fa50
+16412 * * * * * * * 62df e68b9f,ee8091 62df,e011 000062df,0000e011 fa51 * * fa51 * * fa51
+16413 * * * * * * * e012 f0a4a4b3,ee8092 d852dd33,e012 00024933,0000e012 fa52 * * fa52 * * fa52
+16414 * * * * * * * e013 f0a8a6aa,ee8093 d862ddaa,e013 000289aa,0000e013 fa53 * * fa53 * * fa53
+16415 * * * * * * * e014 f0a08aa0,ee8094 d840dea0,e014 000202a0,0000e014 fa54 * * fa54 * * fa54
+16416 * * * * * * * e015 f0a6aeb3,ee8095 d85adfb3,e015 00026bb3,0000e015 fa55 * * fa55 * * fa55
+16417 * * * * * * * e016 f0a18c85,ee8096 d844df05,e016 00021305,0000e016 fa56 * * fa56 * * fa56
+16418 * * * * * * * 4fab e4beab,ee8097 4fab,e017 00004fab,0000e017 fa57 fb7b 904f fa57 c748 fa4b fa57
+16419 * * * * * * * e018 f0a293ad,ee8098 d849dced,e018 000224ed,0000e018 fa58 * * fa58 * * fa58
+16420 * * * * * * * 5008 e58088,ee8099 5008,e019 00005008,0000e019 fa59 * * fa59 * * fa59
+16421 * * * * * * * e01a f0a6b4a9,ee809a d85bdd29,e01a 00026d29,0000e01a fa5a * * fa5a * * fa5a
+16422 * * * * * * * e01b f0a7aa84,ee809b d85ede84,e01b 00027a84,0000e01b fa5b * * fa5b * * fa5b
+16423 * * * * * * * e01c f0a39880,ee809c d84dde00,e01c 00023600,0000e01c fa5c * * fa5c * * fa5c
+16424 * * * * * * * e01d f0a4aab1,ee809d d852deb1,e01d 00024ab1,0000e01d fa5d * * fa5d * * fa5d
+16425 * * * * * * * e01e f0a29493,ee809e d849dd13,e01e 00022513,0000e01e fa5e * * fa5e * * fa5e
+16426 * * * * * * * * * * * * * * fa5f * * *
+16427 * * * * * * * e020 f0a08dbe,ee80a0 d840df7e,e020 0002037e,0000e020 fa60 * * fa60 * * fa60
+16428 * * * * * * * 5fa4 e5bea4,ee80a1 5fa4,e021 00005fa4,0000e021 fa61 fc5a 91ed fa61 * * fa61
+16429 * * * * * * * e022 f0a08e80,ee80a2 d840df80,e022 00020380,0000e022 fa62 * * fa62 * * fa62
+16430 * * * * * * * e023 f0a08d87,ee80a3 d840df47,e023 00020347,0000e023 fa63 * * fa63 * * fa63
+16431 * * * * * * * 6edb e6bb9b,ee80a4 6edb,e024 00006edb,0000e024 fa64 * * fa64 c853 fbc0 fa64
+16432 * * * * * * * e025 f0a0909f,ee80a5 d841dc1f,e025 0002041f,0000e025 fa65 * * fa65 * * fa65
+16433 * * * * * * * 50de e5839e 50de 000050de * * * fa66 * * *
+16434 * * * * * * * 5101 e58481,ee80a7 5101,e027 00005101,0000e027 fa67 fba8 8f67 fa67 * * fa67
+16435 * * * * * * * 347a e391ba,ee80a8 347a,e028 0000347a,0000e028 fa68 * * fa68 * * fa68
+16436 * * * * * * * 510e e5848e,ee80a9 510e,e029 0000510e,0000e029 fa69 fba6 8ff4 fa69 c74a fa51 fa69
+16437 * * * * * * * 986c e9a1ac,ee80aa 986c,e02a 0000986c,0000e02a fa6a feb7 90ed fa6a * fcd8 fa6a
+16438 * * * * * * * 3743 e39d83,ee80ab 3743,e02b 00003743,0000e02b fa6b * * fa6b * * fa6b
+16439 * * * * * * * 8416 e89096,ee80ac 8416,e02c 00008416,0000e02c fa6c * * fa6c * * fa6c
+16440 * * * * * * * e02d f0a4a6a4,ee80ad d852dda4,e02d 000249a4,0000e02d fa6d * * fa6d * * fa6d
+16441 * * * * * * * e02e f0a09287,ee80ae d841dc87,e02e 00020487,0000e02e fa6e * * fa6e * * fa6e
+16442 * * * * * * * 5160 e585a0,ee80af 5160,e02f 00005160,0000e02f fa6f * * fa6f * * fa6f
+16443 * * * * * * * e030 f0a38eb4,ee80b0 d84cdfb4,e030 000233b4,0000e030 fa70 * * fa70 * * fa70
+16444 * * * * * * * 516a e585aa,ee80b1 516a,e031 0000516a,0000e031 fa71 * * fa71 * * fa71
+16445 * * * * * * * e032 f0a0afbf,ee80b2 d842dfff,e032 00020bff,0000e032 fa72 * * fa72 * * fa72
+16446 * * * * * * * e033 f0a283bc,ee80b3 d848dcfc,e033 000220fc,0000e033 fa73 * * fa73 * * fa73
+16447 * * * * * * * e034 f0a08ba5,ee80b4 d840dee5,e034 000202e5,0000e034 fa74 * * fa74 * * fa74
+16448 * * * * * * * e035 f0a294b0,ee80b5 d849dd30,e035 00022530,0000e035 fa75 * * fa75 * * fa75
+16449 * * * * * * * e036 f0a0968e,ee80b6 d841dd8e,e036 0002058e,0000e036 fa76 * * fa76 * * fa76
+16450 * * * * * * * e037 f0a388b3,ee80b7 d84cde33,e037 00023233,0000e037 fa77 * * fa77 * * fa77
+16451 * * * * * * * e038 f0a1a683,ee80b8 d846dd83,e038 00021983,0000e038 fa78 * * fa78 * * fa78
+16452 * * * * * * * 5b82 e5ae82,ee80b9 5b82,e039 00005b82,0000e039 fa79 fc4f 8fb5 fa79 * * fa79
+16453 * * * * * * * 877d e89dbd,ee80ba 877d,e03a 0000877d,0000e03a fa7a * * fa7a * * fa7a
+16454 * * * * * * * e03b f0a096b3,ee80bb d841ddb3,e03b 000205b3,0000e03b fa7b * * fa7b * * fa7b
+16455 * * * * * * * e03c f0a3b299,ee80bc d84fdc99,e03c 00023c99,0000e03c fa7c * * fa7c * * fa7c
+16456 * * * * * * * 51b2 e586b2,ee80bd 51b2,e03d 000051b2,0000e03d fa7d fbb6 9249 fa7d c74f fa58 fa7d
+16457 * * * * * * * 51b8 e586b8,ee80be 51b8,e03e 000051b8,0000e03e fa7e * * fa7e c750 fa59 fa7e
+16458 * * * * * * * 9d34 e9b4b4,ee80bf 9d34,e03f 00009d34,0000e03f faa1 * * faa1 * * faa1
+16459 * * * * * * * 51c9 e58789,ee8180 51c9,e040 000051c9,0000e040 faa2 fbb9 8e76 faa2 c751 fa5a faa2
+16460 * * * * * * * 51cf e5878f,ee8181 51cf,e041 000051cf,0000e041 faa3 * * faa3 * * faa3
+16461 * * * * * * * 51d1 e58791,ee8182 51d1,e042 000051d1,0000e042 faa4 fbba 8fc1 faa4 * * faa4
+16462 * * * * * * * 3cdc e3b39c,ee8183 3cdc,e043 00003cdc,0000e043 faa5 * * faa5 * * faa5
+16463 * * * * * * * 51d3 e58793,ee8184 51d3,e044 000051d3,0000e044 faa6 fbbb 8fba faa6 c752 fa5b faa6
+16464 * * * * * * * e045 f0a4aaa6,ee8185 d852dea6,e045 00024aa6,0000e045 faa7 * * faa7 * * faa7
+16465 * * * * * * * 51b3 e586b3,ee8186 51b3,e046 000051b3,0000e046 faa8 faec * faa8 c74e fa57 faa8
+16466 * * * * * * * 51e2 * * * * * * faa9 * * *
+16467 * * * * * * * * * * * * * * faaa * * *
+16468 * * * * * * * 51ed e587ad,ee8189 51ed,e049 000051ed,0000e049 faab fba9 905f faab * fa5c faab
+16469 * * * * * * * 83cd e88f8d,ee818a 83cd,e04a 000083cd,0000e04a faac * * faac * * faac
+16470 * * * * * * * 693e e6a4be,ee818b 693e,e04b 0000693e,0000e04b faad fcbc 8f70 faad * * faad
+16471 * * * * * * * e04c f0a39cad,ee818c d84ddf2d,e04c 0002372d,0000e04c faae * * faae * * faae
+16472 * * * * * * * 5f7b e5bdbb,ee818d 5f7b,e04d 00005f7b,0000e04d faaf * * faaf * * faaf
+16473 * * * * * * * 520b e5888b,ee818e 520b,e04e 0000520b,0000e04e fab0 * * fab0 * * fab0
+16474 * * * * * * * 5226 e588a6,ee818f 5226,e04f 00005226,0000e04f fab1 fad7 8f75 fab1 c754 fa61 fab1
+16475 * * * * * * * 523c e588bc,ee8190 523c,e050 0000523c,0000e050 fab2 * * fab2 * * fab2
+16476 * * * * * * * 52b5 e58ab5,ee8191 52b5,e051 000052b5,0000e051 fab3 * * fab3 c758 fa66 fab3
+16477 * * * * * * * 5257 e58997,ee8192 5257,e052 00005257,0000e052 fab4 fbad 9055 fab4 * * fab4
+16478 * * * * * * * 5294 e58a94,ee8193 5294,e053 00005294,0000e053 fab5 * * fab5 * * fab5
+16479 * * * * * * * 52b9 e58ab9,ee8194 52b9,e054 000052b9,0000e054 fab6 fa51 9245 fab6 c759 fa67 fab6
+16480 * * * * * * * 52c5 e58b85,ee8195 52c5,e055 000052c5,0000e055 fab7 fbb0 8eb6 fab7 * fa68 fab7
+16481 * * * * * * * 7c15 e7b095,ee8196 7c15,e056 00007c15,0000e056 fab8 * * fab8 * * fab8
+16482 * * * * * * * 8542 e89582,ee8197 8542,e057 00008542,0000e057 fab9 * * fab9 * * fab9
+16483 * * * * * * * 52e0 e58ba0,ee8198 52e0,e058 000052e0,0000e058 faba fbb2 8eb2 faba * fa69 faba
+16484 * * * * * * * 860d e8988d,ee8199 860d,e059 0000860d,0000e059 fabb * * fabb * * fabb
+16485 * * * * * * * e05a f0a6ac93,ee819a d85adf13,e05a 00026b13,0000e05a fabc * * fabc * * fabc
+16486 * * * * * * * * f0afa0a9 d87edc29 0002f829 * * * fabd * * *
+16487 * * * * * * * e05c f0a8ab9e,ee819c d862dede,e05c 00028ade,0000e05c fabe * * fabe * * fabe
+16488 * * * * * * * 5549 e59589,ee819d 5549,e05d 00005549,0000e05d fabf * * fabf * * fabf
+16489 * * * * * * * 6ed9 e6bb99,ee819e 6ed9,e05e 00006ed9,0000e05e fac0 fab8 * fac0 c852 fbbf fac0
+16490 * * * * * * * e05f f0a3be80,ee819f d84fdf80,e05f 00023f80,0000e05f fac1 * * fac1 * * fac1
+16491 * * * * * * * e060 f0a0a594,ee81a0 d842dd54,e060 00020954,0000e060 fac2 * * fac2 * * fac2
+16492 * * * * * * * e061 f0a3bfac,ee81a1 d84fdfec,e061 00023fec,0000e061 fac3 * * fac3 * * fac3
+16493 * * * * * * * 5333 e58cb3,ee81a2 5333,e062 00005333,0000e062 fac4 fbc2 916a fac4 * * fac4
+16494 * * * * * * * * * * * * * * fac5 * * *
+16495 * * * * * * * e064 f0a0afa2,ee81a4 d842dfe2,e064 00020be2,0000e064 fac6 * * fac6 * * fac6
+16496 * * * * * * * 6ccb e6b38b,ee81a5 6ccb,e065 00006ccb,0000e065 fac7 * * fac7 * * fac7
+16497 * * * * * * * e066 f0a19ca6,ee81a6 d845df26,e066 00021726,0000e066 fac8 * * fac8 * * fac8
+16498 * * * * * * * 681b e6a09b,ee81a7 681b,e067 0000681b,0000e067 fac9 * * fac9 * * fac9
+16499 * * * * * * * 73d5 e78f95,ee81a8 73d5,e068 000073d5,0000e068 faca * * faca * * faca
+16500 * * * * * * * 604a e6818a,ee81a9 604a,e069 0000604a,0000e069 facb * * facb * * facb
+16501 * * * * * * * 3eaa e3baaa,ee81aa 3eaa,e06a 00003eaa,0000e06a facc * * facc * * facc
+16502 * * * * * * * 38cc e3a38c,ee81ab 38cc,e06b 000038cc,0000e06b facd * * facd * * facd
+16503 * * * * * * * e06c f0a19ba8,ee81ac d845dee8,e06c 000216e8,0000e06c face * * face * * face
+16504 * * * * * * * 71dd e7879d,ee81ad 71dd,e06d 000071dd,0000e06d facf * * facf * * facf
+16505 * * * * * * * 44a2 e492a2,ee81ae 44a2,e06e 000044a2,0000e06e fad0 * * fad0 * * fad0
+16506 * * * * * * * 536d e58dad,ee81af 536d,e06f 0000536d,0000e06f fad1 * * fad1 * fa6b fad1
+16507 * * * * * * * 5374 e58db4,ee81b0 5374,e070 00005374,0000e070 fad2 faf2 * fad2 c75b fa6c fad2
+16508 * * * * * * * e071 f0a89aab,ee81b1 d861deab,e071 000286ab,0000e071 fad3 * * fad3 * * fad3
+16509 * * * * * * * 537e e58dbe,ee81b2 537e,e072 0000537e,0000e072 fad4 * * fad4 * fa6d fad4
+16510 * * * * * * * * f0afa0b2 d87edc32 0002f832 * * * fad5 * * *
+16511 * * * * * * * e074 f0a19696,ee81b4 d845dd96,e074 00021596,0000e074 fad6 * * fad6 * * fad6
+16512 * * * * * * * e075 f0a19893,ee81b5 d845de13,e075 00021613,0000e075 fad7 * * fad7 * * fad7
+16513 * * * * * * * 77e6 e79fa6,ee81b6 77e6,e076 000077e6,0000e076 fad8 * * fad8 * * fad8
+16514 * * * * * * * 5393 e58e93,ee81b7 5393,e077 00005393,0000e077 fad9 * * fad9 c75c fa6e fad9
+16515 * * * * * * * e078 f0a8aa9b,ee81b8 d862de9b,e078 00028a9b,0000e078 fada * * fada * * fada
+16516 * * * * * * * 53a0 e58ea0,ee81b9 53a0,e079 000053a0,0000e079 fadb fbc4 924c fadb * * fadb
+16517 * * * * * * * 53ab e58eab,ee81ba 53ab,e07a 000053ab,0000e07a fadc fbc3 8fd9 fadc * * fadc
+16518 * * * * * * * 53ae e58eae,ee81bb 53ae,e07b 000053ae,0000e07b fadd fbc8 916d fadd * * fadd
+16519 * * * * * * * 73a7 e78ea7,ee81bc 73a7,e07c 000073a7,0000e07c fade * * fade * * fade
+16520 * * * * * * * e07d f0a59db2,ee81bd d855df72,e07d 00025772,0000e07d fadf * * fadf * * fadf
+16521 * * * * * * * 3f59 e3bd99,ee81be 3f59,e07e 00003f59,0000e07e fae0 * * fae0 * * fae0
+16522 * * * * * * * 739c e78e9c,ee81bf 739c,e07f 0000739c,0000e07f fae1 * * fae1 * * fae1
+16523 * * * * * * * 53c1 e58f81,ee8280 53c1,e080 000053c1,0000e080 fae2 fa53 925d fae2 c75e fa71 fae2
+16524 * * * * * * * 53c5 e58f85,ee8281 53c5,e081 000053c5,0000e081 fae3 * * fae3 * * fae3
+16525 * * * * * * * 6c49 e6b189,ee8282 6c49,e082 00006c49,0000e082 fae4 * * fae4 * * fae4
+16526 * * * * * * * 4e49 e4b989,ee8283 4e49,e083 00004e49,0000e083 fae5 * * fae5 * * fae5
+16527 * * * * * * * 57fe e59fbe,ee8284 57fe,e084 000057fe,0000e084 fae6 * * fae6 * * fae6
+16528 * * * * * * * 53d9 e58f99,ee8285 53d9,e085 000053d9,0000e085 fae7 fbb5 8fcf fae7 * * fae7
+16529 * * * * * * * 3aab e3aaab,ee8286 3aab,e086 00003aab,0000e086 fae8 * * fae8 * * fae8
+16530 * * * * * * * e087 f0a0ae8f,ee8287 d842df8f,e087 00020b8f,0000e087 fae9 * * fae9 * * fae9
+16531 * * * * * * * 53e0 e58fa0,ee8288 53e0,e088 000053e0,0000e088 faea fab2 8fc7 faea c760 fa74 faea
+16532 * * * * * * * e089 f0a3bfab,ee8289 d84fdfeb,e089 00023feb,0000e089 faeb * * faeb * * faeb
+16533 * * * * * * * e08a f0a2b6a3,ee828a d84bdda3,e08a 00022da3,0000e08a faec * * faec * * faec
+16534 * * * * * * * 53f6 e58fb6,ee828b 53f6,e08b 000053f6,0000e08b faed fa46 9054 faed c761 fa75 faed
+16535 * * * * * * * e08c f0a0b1b7,ee828c d843dc77,e08c 00020c77,0000e08c faee * * faee * * faee
+16536 * * * * * * * 5413 e59093,ee828d 5413,e08d 00005413,0000e08d faef fa7d 8fb6 faef c763 fa77 faef
+16537 * * * * * * * 7079 e781b9,ee828e 7079,e08e 00007079,0000e08e faf0 * * faf0 * * faf0
+16538 * * * * * * * 552b e594ab,ee828f 552b,e08f 0000552b,0000e08f faf1 * * faf1 * * faf1
+16539 * * * * * * * 6657 e69997,ee8290 6657,e090 00006657,0000e090 faf2 * * faf2 * * faf2
+16540 * * * * * * * 6d5b e6b59b,ee8291 6d5b,e091 00006d5b,0000e091 faf3 * * faf3 * * faf3
+16541 * * * * * * * 546d e591ad,ee8292 546d,e092 0000546d,0000e092 faf4 * * faf4 * * faf4
+16542 * * * * * * * e093 f0a6ad93,ee8293 d85adf53,e093 00026b53,0000e093 faf5 * * faf5 * * faf5
+16543 * * * * * * * e094 f0a0b5b4,ee8294 d843dd74,e094 00020d74,0000e094 faf6 * * faf6 * * faf6
+16544 * * * * * * * 555d e5959d,ee8295 555d,e095 0000555d,0000e095 faf7 * * faf7 * * faf7
+16545 * * * * * * * 548f e5928f,ee8296 548f,e096 0000548f,0000e096 faf8 fbca 8ebb faf8 c76a faa2 faf8
+16546 * * * * * * * 54a4 e592a4,ee8297 54a4,e097 000054a4,0000e097 faf9 fbd0 8eb9 faf9 * faaa faf9
+16547 * * * * * * * 47a6 e49ea6,ee8298 47a6,e098 000047a6,0000e098 fafa * * fafa * * fafa
+16548 * * * * * * * e099 f0a19c8d,ee8299 d845df0d,e099 0002170d,0000e099 fafb * * fafb * * fafb
+16549 * * * * * * * e09a f0a0bb9d,ee829a d843dedd,e09a 00020edd,0000e09a fafc * * fafc * * fafc
+16550 * * * * * * * 3db4 e3b6b4,ee829b 3db4,e09b 00003db4,0000e09b fafd * * fafd * * fafd
+16551 * * * * * * * e09c f0a0b58d,ee829c d843dd4d,e09c 00020d4d,0000e09c fafe * * fafe * * fafe
+16552 * * * * * * * e09d f0a8a6bc,ee829d d862ddbc,e09d 000289bc,0000e09d fb40 * * fb40 * * fb40
+16553 * * * * * * * e09e f0a29a98,ee829e d849de98,e09e 00022698,0000e09e fb41 * * fb41 * * fb41
+16554 * * * * * * * 5547 e59587,ee829f 5547,e09f 00005547,0000e09f fb42 * * fb42 * * fb42
+16555 * * * * * * * 4ced e4b3ad,ee82a0 4ced,e0a0 00004ced,0000e0a0 fb43 * * fb43 * * fb43
+16556 * * * * * * * 542f e590af,ee82a1 542f,e0a1 0000542f,0000e0a1 fb44 * * fb44 * * fb44
+16557 * * * * * * * 7417 e79097,ee82a2 7417,e0a2 00007417,0000e0a2 fb45 * * fb45 * * fb45
+16558 * * * * * * * 5586 e59686,ee82a3 5586,e0a3 00005586,0000e0a3 fb46 fbd5 8e68 fb46 * * fb46
+16559 * * * * * * * 55a9 e596a9,ee82a4 55a9,e0a4 000055a9,0000e0a4 fb47 * * fb47 * * fb47
+16560 * * * * * * * * * * * * * * fb48 * * *
+16561 * * * * * * * e0a6 f0a1a397,ee82a6 d846dcd7,e0a6 000218d7,0000e0a6 fb49 * * fb49 * * fb49
+16562 * * * * * * * e0a7 f0a480ba,ee82a7 d850dc3a,e0a7 0002403a,0000e0a7 fb4a * * fb4a * * fb4a
+16563 * * * * * * * 4552 e49592,ee82a8 4552,e0a8 00004552,0000e0a8 fb4b * * fb4b * * fb4b
+16564 * * * * * * * e0a9 f0a490b5,ee82a9 d851dc35,e0a9 00024435,0000e0a9 fb4c * * fb4c * * fb4c
+16565 * * * * * * * 66b3 e69ab3,ee82aa 66b3,e0aa 000066b3,0000e0aa fb4d * * fb4d * * fb4d
+16566 * * * * * * * e0ab f0a182b4,ee82ab d844dcb4,e0ab 000210b4,0000e0ab fb4e * * fb4e * * fb4e
+16567 * * * * * * * 5637 e598b7,ee82ac 5637,e0ac 00005637,0000e0ac fb4f fbdf 8fe9 fb4f c7b7 fad3 fb4f
+16568 * * * * * * * 66cd e69b8d,ee82ad 66cd,e0ad 000066cd,0000e0ad fb50 * * fb50 * * fb50
+16569 * * * * * * * e0ae f0a38a8a,ee82ae d84cde8a,e0ae 0002328a,0000e0ae fb51 * * fb51 * * fb51
+16570 * * * * * * * 66a4 e69aa4,ee82af 66a4,e0af 000066a4,0000e0af fb52 * * fb52 * * fb52
+16571 * * * * * * * * * * * * * * fb53 * * *
+16572 * * * * * * * 564d e5998d,ee82b1 564d,e0b1 0000564d,0000e0b1 fb54 fbde 8fa9 fb54 c7b3 facd fb54
+16573 * * * * * * * 564f e5998f,ee82b2 564f,e0b2 0000564f,0000e0b2 fb55 faca 917d fb55 c7b5 facf fb55
+16574 * * * * * * * 78f1 e7a3b1,ee82b3 78f1,e0b3 000078f1,0000e0b3 fb56 * * fb56 * * fb56
+16575 * * * * * * * 56f1 e59bb1,ee82b4 56f1,e0b4 000056f1,0000e0b4 fb57 * * fb57 c7c9 faec fb57
+16576 * * * * * * * 9787 e99e87,ee82b5 9787,e0b5 00009787,0000e0b5 fb58 * * fb58 * * fb58
+16577 * * * * * * * 53fe e58fbe,ee82b6 53fe,e0b6 000053fe,0000e0b6 fb59 * * fb59 * * fb59
+16578 * * * * * * * 5700 e59c80,ee82b7 5700,e0b7 00005700,0000e0b7 fb5a * * fb5a * * fb5a
+16579 * * * * * * * 56ef e59baf,ee82b8 56ef,e0b8 000056ef,0000e0b8 fb5b * * fb5b * * fb5b
+16580 * * * * * * * 56ed e59bad,ee82b9 56ed,e0b9 000056ed,0000e0b9 fb5c fc56 8fc0 fb5c * * fb5c
+16581 * * * * * * * e0ba f0a8ada6,ee82ba d862df66,e0ba 00028b66,0000e0ba fb5d * * fb5d * * fb5d
+16582 * * * * * * * 3623 e398a3,ee82bb 3623,e0bb 00003623,0000e0bb fb5e * * fb5e * * fb5e
+16583 * * * * * * * e0bc f0a1898f,ee82bc d844de4f,e0bc 0002124f,0000e0bc fb5f * * fb5f * * fb5f
+16584 * * * * * * * 5746 e59d86,ee82bd 5746,e0bd 00005746,0000e0bd fb60 fbe8 9053 fb60 * fae1 fb60
+16585 * * * * * * * e0be f0a486a5,ee82be d850dda5,e0be 000241a5,0000e0be fb61 * * fb61 * * fb61
+16586 * * * * * * * 6c6e e6b1ae,ee82bf 6c6e,e0bf 00006c6e,0000e0bf fb62 * * fb62 * * fb62
+16587 * * * * * * * 708b e7828b,ee8380 708b,e0c0 0000708b,0000e0c0 fb63 * * fb63 * * fb63
+16588 * * * * * * * 5742 e59d82,ee8381 5742,e0c1 00005742,0000e0c1 fb64 fadc * fb64 c7c0 fadf fb64
+16589 * * * * * * * 36b1 e39ab1,ee8382 36b1,e0c2 000036b1,0000e0c2 fb65 * * fb65 * * fb65
+16590 * * * * * * * e0c3 f0a6b1be,ee8383 d85bdc7e,e0c3 00026c7e,0000e0c3 fb66 * * fb66 * * fb66
+16591 * * * * * * * 57e6 e59fa6,ee8384 57e6,e0c4 000057e6,0000e0c4 fb67 fbec 8eaa fb67 * * fb67
+16592 * * * * * * * e0c5 f0a19096,ee8385 d845dc16,e0c5 00021416,0000e0c5 fb68 * * fb68 * * fb68
+16593 * * * * * * * 5803 e5a083,ee8386 5803,e0c6 00005803,0000e0c6 fb69 fb50 * fb69 c7c5 fae5 fb69
+16594 * * * * * * * e0c7 f0a19194,ee8387 d845dc54,e0c7 00021454,0000e0c7 fb6a * * fb6a * * fb6a
+16595 * * * * * * * e0c8 f0a48da3,ee8388 d850df63,e0c8 00024363,0000e0c8 fb6b * * fb6b * * fb6b
+16596 * * * * * * * 5826 e5a0a6,ee8389 5826,e0c9 00005826,0000e0c9 fb6c fbf1 904c fb6c * fae7 fb6c
+16597 * * * * * * * e0ca f0a4afb5,ee838a d852dff5,e0ca 00024bf5,0000e0ca fb6d * * fb6d * * fb6d
+16598 * * * * * * * * e5a09f 581f 0000581f * * * fb6e * * *
+16599 * * * * * * * 58aa e5a2aa,ee838c 58aa,e0cc 000058aa,0000e0cc fb6f * * fb6f * * fb6f
+16600 * * * * * * * 3561 e395a1,ee838d 3561,e0cd 00003561,0000e0cd fb70 * * fb70 * * fb70
+16601 * * * * * * * 58e0 e5a3a0,ee838e 58e0,e0ce 000058e0,0000e0ce fb71 * * fb71 * faeb fb71
+16602 * * * * * * * 58dc e5a39c,ee838f 58dc,e0cf 000058dc,0000e0cf fb72 fbf2 8e64 fb72 * faea fb72
+16603 * * * * * * * e0d0 f0a188bc,ee8390 d844de3c,e0d0 0002123c,0000e0d0 fb73 * * fb73 * * fb73
+16604 * * * * * * * 58fb e5a3bb,ee8391 58fb,e0d1 000058fb,0000e0d1 fb74 fbef 9242 fb74 * * fb74
+16605 * * * * * * * 5bff e5afbf,ee8392 5bff,e0d2 00005bff,0000e0d2 fb75 * * fb75 * * fb75
+16606 * * * * * * * 5743 e59d83,ee8393 5743,e0d3 00005743,0000e0d3 fb76 * * fb76 * * fb76
+16607 * * * * * * * e0d4 f0aa8590,ee8394 d868dd50,e0d4 0002a150,0000e0d4 fb77 * * fb77 * * fb77
+16608 * * * * * * * e0d5 f0a489b8,ee8395 d850de78,e0d5 00024278,0000e0d5 fb78 * * fb78 * * fb78
+16609 * * * * * * * 93d3 e98f93,ee8396 93d3,e0d6 000093d3,0000e0d6 fb79 * * fb79 * * fb79
+16610 * * * * * * * 35a1 e396a1,ee8397 35a1,e0d7 000035a1,0000e0d7 fb7a * * fb7a * * fb7a
+16611 * * * * * * * 591f e5a49f,ee8398 591f,e0d8 0000591f,0000e0d8 fb7b * * fb7b * * fb7b
+16612 * * * * * * * 68a6 e6a2a6,ee8399 68a6,e0d9 000068a6,0000e0d9 fb7c * * fb7c * * fb7c
+16613 * * * * * * * 36c3 e39b83,ee839a 36c3,e0da 000036c3,0000e0da fb7d * * fb7d * * fb7d
+16614 * * * * * * * 6e59 e6b999,ee839b 6e59,e0db 00006e59,0000e0db fb7e * * fb7e * * fb7e
+16615 * * * * * * * e0dc f0a198be,ee839c d845de3e,e0dc 0002163e,0000e0dc fba1 * * fba1 * * fba1
+16616 * * * * * * * 5a24 e5a8a4,ee839d 5a24,e0dd 00005a24,0000e0dd fba2 * * fba2 * * fba2
+16617 * * * * * * * * * * * * * * fba3 * * *
+16618 * * * * * * * e0df f0a19a92,ee839f d845de92,e0df 00021692,0000e0df fba4 * * fba4 * * fba4
+16619 * * * * * * * 8505 e89485,ee83a0 8505,e0e0 00008505,0000e0e0 fba5 * * fba5 * * fba5
+16620 * * * * * * * 59c9 e5a789,ee83a1 59c9,e0e1 000059c9,0000e0e1 fba6 * * fba6 * * fba6
+16621 * * * * * * * e0e2 f0a0b58e,ee83a2 d843dd4e,e0e2 00020d4e,0000e0e2 fba7 * * fba7 * * fba7
+16622 * * * * * * * e0e3 f0a6b281,ee83a3 d85bdc81,e0e3 00026c81,0000e0e3 fba8 * * fba8 * * fba8
+16623 * * * * * * * e0e4 f0a6b4aa,ee83a4 d85bdd2a,e0e4 00026d2a,0000e0e4 fba9 * * fba9 * * fba9
+16624 * * * * * * * e0e5 f0a19f9c,ee83a5 d845dfdc,e0e5 000217dc,0000e0e5 fbaa * * fbaa * * fbaa
+16625 * * * * * * * 59d9 e5a799,ee83a6 59d9,e0e6 000059d9,0000e0e6 fbab fbf6 8ff3 fbab * faee fbab
+16626 * * * * * * * e0e7 f0a19fbb,ee83a7 d845dffb,e0e7 000217fb,0000e0e7 fbac * * fbac * * fbac
+16627 * * * * * * * e0e8 f0a19eb2,ee83a8 d845dfb2,e0e8 000217b2,0000e0e8 fbad * * fbad * * fbad
+16628 * * * * * * * e0e9 f0a6b6a6,ee83a9 d85bdda6,e0e9 00026da6,0000e0e9 fbae * * fbae * * fbae
+16629 * * * * * * * 6d71 e6b5b1,ee83aa 6d71,e0ea 00006d71,0000e0ea fbaf * * fbaf * * fbaf
+16630 * * * * * * * e0eb f0a1a0a8,ee83ab d846dc28,e0eb 00021828,0000e0eb fbb0 * * fbb0 * * fbb0
+16631 * * * * * * * e0ec f0a19b95,ee83ac d845ded5,e0ec 000216d5,0000e0ec fbb1 * * fbb1 * * fbb1
+16632 * * * * * * * 59f9 e5a7b9,ee83ad 59f9,e0ed 000059f9,0000e0ed fbb2 fbf8 91a7 fbb2 * * fbb2
+16633 * * * * * * * e0ee f0a6b985,ee83ae d85bde45,e0ee 00026e45,0000e0ee fbb3 * * fbb3 * * fbb3
+16634 * * * * * * * 5aab e5aaab,ee83af 5aab,e0ef 00005aab,0000e0ef fbb4 * * fbb4 * * fbb4
+16635 * * * * * * * 5a63 e5a9a3,ee83b0 5a63,e0f0 00005a63,0000e0f0 fbb5 fbf9 8e78 fbb5 * * fbb5
+16636 * * * * * * * 36e6 e39ba6,ee83b1 36e6,e0f1 000036e6,0000e0f1 fbb6 * * fbb6 * * fbb6
+16637 * * * * * * * e0f2 f0a4a6a9,ee83b2 d852dda9,e0f2 000249a9,0000e0f2 fbb7 * * fbb7 * * fbb7
+16638 * * * * * * * * * * * * * * fbb8 * * *
+16639 * * * * * * * 3708 e39c88,ee83b4 3708,e0f4 00003708,0000e0f4 fbb9 * * fbb9 * * fbb9
+16640 * * * * * * * 5a96 e5aa96,ee83b5 5a96,e0f5 00005a96,0000e0f5 fbba * * fbba c7ca faef fbba
+16641 * * * * * * * 7465 e791a5,ee83b6 7465,e0f6 00007465,0000e0f6 fbbb * * fbbb * * fbbb
+16642 * * * * * * * 5ad3 e5ab93,ee83b7 5ad3,e0f7 00005ad3,0000e0f7 fbbc * * fbbc * * fbbc
+16643 * * * * * * * e0f8 f0a6bea1,ee83b8 d85bdfa1,e0f8 00026fa1,0000e0f8 fbbd * * fbbd * * fbbd
+16644 * * * * * * * e0f9 f0a29594,ee83b9 d849dd54,e0f9 00022554,0000e0f9 fbbe * * fbbe * * fbbe
+16645 * * * * * * * e0fb f0a1a491,ee83bb d846dd11,e0fb 00021911,0000e0fb fbc0 * * fbc0 * * fbc0
+16646 * * * * * * * 3732 e39cb2,ee83bc 3732,e0fc 00003732,0000e0fc fbc1 * * fbc1 * * fbc1
+16647 * * * * * * * e0fd f0a19ab8,ee83bd d845deb8,e0fd 000216b8,0000e0fd fbc2 * * fbc2 * * fbc2
+16648 * * * * * * * 5e83 e5ba83,ee83be 5e83,e0fe 00005e83,0000e0fe fbc3 * * fbc3 * * fbc3
+16649 * * * * * * * 52d0 e58b90,ee83bf 52d0,e0ff 000052d0,0000e0ff fbc4 * * fbc4 * * fbc4
+16650 * * * * * * * 5b76 e5adb6,ee8480 5b76,e100 00005b76,0000e100 fbc5 * * fbc5 * * fbc5
+16651 * * * * * * * 6588 e69688,ee8481 6588,e101 00006588,0000e101 fbc6 * * fbc6 * * fbc6
+16652 * * * * * * * 5b7c e5adbc,ee8482 5b7c,e102 00005b7c,0000e102 fbc7 * * fbc7 * * fbc7
+16653 * * * * * * * e103 f0a7a88e,ee8483 d85ede0e,e103 00027a0e,0000e103 fbc8 * * fbc8 * * fbc8
+16654 * * * * * * * 4004 e48084,ee8484 4004,e104 00004004,0000e104 fbc9 * * fbc9 * * fbc9
+16655 * * * * * * * 485d e4a19d,ee8485 485d,e105 0000485d,0000e105 fbca * * fbca * * fbca
+16656 * * * * * * * e106 f0a08884,ee8486 d840de04,e106 00020204,0000e106 fbcb * * fbcb * * fbcb
+16657 * * * * * * * 5bd5 e5af95,ee8487 5bd5,e107 00005bd5,0000e107 fbcc * * fbcc * * fbcc
+16658 * * * * * * * e109 f0a1a8b4,ee8489 d846de34,e109 00021a34,0000e109 fbce * * fbce * * fbce
+16659 * * * * * * * e10a f0a5a78c,ee848a d856ddcc,e10a 000259cc,0000e10a fbcf * * fbcf * * fbcf
+16660 * * * * * * * e10b f0a096a5,ee848b d841dda5,e10b 000205a5,0000e10b fbd0 * * fbd0 * * fbd0
+16661 * * * * * * * 5bf3 e5afb3,ee848c 5bf3,e10c 00005bf3,0000e10c fbd1 * * fbd1 * * fbd1
+16662 * * * * * * * 5b9d e5ae9d,ee848d 5b9d,e10d 00005b9d,0000e10d fbd2 fa52 * fbd2 c7d1 faf6 fbd2
+16663 * * * * * * * 4d10 e4b490,ee848e 4d10,e10e 00004d10,0000e10e fbd3 * * fbd3 * * fbd3
+16664 * * * * * * * 5c05 e5b085,ee848f 5c05,e10f 00005c05,0000e10f fbd4 fbfb 924d fbd4 c7d3 fafa fbd4
+16665 * * * * * * * e110 f0a1ad84,ee8490 d846df44,e110 00021b44,0000e110 fbd5 * * fbd5 * * fbd5
+16666 * * * * * * * 5c13 e5b093,ee8491 5c13,e111 00005c13,0000e111 fbd6 * * fbd6 * * fbd6
+16667 * * * * * * * 73ce e78f8e,ee8492 73ce,e112 000073ce,0000e112 fbd7 * * fbd7 * * fbd7
+16668 * * * * * * * 5c14 e5b094,ee8493 5c14,e113 00005c14,0000e113 fbd8 * * fbd8 * * fbd8
+16669 * * * * * * * e114 f0a1b2a5,ee8494 d847dca5,e114 00021ca5,0000e114 fbd9 * * fbd9 * * fbd9
+16670 * * * * * * * e115 f0a6aca8,ee8495 d85adf28,e115 00026b28,0000e115 fbda * * fbda * * fbda
+16671 * * * * * * * 5c49 e5b189,ee8496 5c49,e116 00005c49,0000e116 fbdb * * fbdb c7d2 faf8 fbdb
+16672 * * * * * * * 48dd e4a39d,ee8497 48dd,e117 000048dd,0000e117 fbdc * * fbdc * * fbdc
+16673 * * * * * * * 5c85 e5b285,ee8498 5c85,e118 00005c85,0000e118 fbdd * * fbdd * * fbdd
+16674 * * * * * * * 5ce9 e5b3a9,ee8499 5ce9,e119 00005ce9,0000e119 fbde fc42 91aa fbde * fafe fbde
+16675 * * * * * * * 5cef e5b3af,ee849a 5cef,e11a 00005cef,0000e11a fbdf fa6b * fbdf c7d4 fafd fbdf
+16676 * * * * * * * 5d8b e5b68b,ee849b 5d8b,e11b 00005d8b,0000e11b fbe0 fee5 8e7c fbe0 * * fbe0
+16677 * * * * * * * e11c f0a1b7b9,ee849c d847ddf9,e11c 00021df9,0000e11c fbe1 * * fbe1 * * fbe1
+16678 * * * * * * * e11d f0a1b8b7,ee849d d847de37,e11d 00021e37,0000e11d fbe2 * * fbe2 * * fbe2
+16679 * * * * * * * 5d10 e5b490,ee849e 5d10,e11e 00005d10,0000e11e fbe3 * * fbe3 c7d5 fb40 fbe3
+16680 * * * * * * * 5d18 e5b498,ee849f 5d18,e11f 00005d18,0000e11f fbe4 * * fbe4 * * fbe4
+16681 * * * * * * * 5d46 e5b586,ee84a0 5d46,e120 00005d46,0000e120 fbe5 fc44 904b fbe5 c7d6 fb42 fbe5
+16682 * * * * * * * e121 f0a1baa4,ee84a1 d847dea4,e121 00021ea4,0000e121 fbe6 * * fbe6 * * fbe6
+16683 * * * * * * * 5cba e5b2ba,ee84a2 5cba,e122 00005cba,0000e122 fbe7 * * fbe7 * * fbe7
+16684 * * * * * * * 5dd7 e5b797,ee84a3 5dd7,e123 00005dd7,0000e123 fbe8 * * fbe8 * * fbe8
+16685 * * * * * * * 82fc e88bbc,ee84a4 82fc,e124 000082fc,0000e124 fbe9 * * fbe9 * * fbe9
+16686 * * * * * * * 382d e3a0ad,ee84a5 382d,e125 0000382d,0000e125 fbea * * fbea * * fbea
+16687 * * * * * * * e126 f0a4a481,ee84a6 d852dd01,e126 00024901,0000e126 fbeb * * fbeb * * fbeb
+16688 * * * * * * * e127 f0a28189,ee84a7 d848dc49,e127 00022049,0000e127 fbec * * fbec * * fbec
+16689 * * * * * * * e128 f0a285b3,ee84a8 d848dd73,e128 00022173,0000e128 fbed * * fbed * * fbed
+16690 * * * * * * * 8287 e88a87,ee84a9 8287,e129 00008287,0000e129 fbee * * fbee * * fbee
+16691 * * * * * * * 3836 e3a0b6,ee84aa 3836,e12a 00003836,0000e12a fbef * * fbef * * fbef
+16692 * * * * * * * 3bc2 e3af82,ee84ab 3bc2,e12b 00003bc2,0000e12b fbf0 * * fbf0 * * fbf0
+16693 * * * * * * * 5e2e e5b8ae,ee84ac 5e2e,e12c 00005e2e,0000e12c fbf1 fc4b 91ad fbf1 * * fbf1
+16694 * * * * * * * 6a8a e6aa8a,ee84ad 6a8a,e12d 00006a8a,0000e12d fbf2 * * fbf2 * * fbf2
+16695 * * * * * * * * * * * * * * fbf3 * * *
+16696 * * * * * * * * ee84af e12f 0000e12f fbf4 * 91af fbf4 * fb4a fbf4
+16697 * * * * * * * e130 f0a492bc,ee84b0 d851dcbc,e130 000244bc,0000e130 fbf5 * * fbf5 * * fbf5
+16698 * * * * * * * e131 f0a0b393,ee84b1 d843dcd3,e131 00020cd3,0000e131 fbf6 * * fbf6 * * fbf6
+16699 * * * * * * * 53a6 e58ea6,ee84b2 53a6,e132 000053a6,0000e132 fbf7 fbc6 9058 fbf7 * * fbf7
+16700 * * * * * * * 4eb7 e4bab7,ee84b3 4eb7,e133 00004eb7,0000e133 fbf8 * * fbf8 * * fbf8
+16701 * * * * * * * 5ed0 * * * * * * fbf9 * * *
+16702 * * * * * * * 53a8 e58ea8,ee84b5 53a8,e135 000053a8,0000e135 fbfa fbc5 9057 fbfa * * fbfa
+16703 * * * * * * * e136 f0a19db1,ee84b6 d845df71,e136 00021771,0000e136 fbfb * * fbfb * * fbfb
+16704 * * * * * * * 5e09 e5b889,ee84b7 5e09,e137 00005e09,0000e137 fbfc * * fbfc * * fbfc
+16705 * * * * * * * * ee84b8 e138 0000e138 fbfd * * fbfd * * fbfd
+16706 * * * * * * * e139 f0a89282,ee84b9 d861dc82,e139 00028482,0000e139 fbfe * * fbfe * * fbfe
+16707 * * * * * * * 5ef9 e5bbb9,ee84ba 5ef9,e13a 00005ef9,0000e13a fc40 fc55 904e fc40 c7db fb4f fc40
+16708 * * * * * * * 5efb e5bbbb,ee84bb 5efb,e13b 00005efb,0000e13b fc41 faae 9261 fc41 c7dd fb51 fc41
+16709 * * * * * * * 38a0 e3a2a0,ee84bc 38a0,e13c 000038a0,0000e13c fc42 * * fc42 * * fc42
+16710 * * * * * * * 5efc e5bbbc,ee84bd 5efc,e13d 00005efc,0000e13d fc43 faaf 8fa4 fc43 c7dc fb50 fc43
+16711 * * * * * * * 683e e6a0be,ee84be 683e,e13e 0000683e,0000e13e fc44 * * fc44 * * fc44
+16712 * * * * * * * 941b e9909b,ee84bf 941b,e13f 0000941b,0000e13f fc45 * * fc45 * * fc45
+16713 * * * * * * * 5f0d e5bc8d,ee8580 5f0d,e140 00005f0d,0000e140 fc46 fa41 91b1 fc46 c7de fb52 fc46
+16714 * * * * * * * e141 f0a08781,ee8581 d840ddc1,e141 000201c1,0000e141 fc47 * * fc47 * * fc47
+16715 * * * * * * * e142 f0afa294,ee8582 d87edc94,e142 0002f894,0000e142 fc48 * * fc48 * * fc48
+16716 * * * * * * * 3ade e3ab9e,ee8583 3ade,e143 00003ade,0000e143 fc49 * * fc49 * * fc49
+16717 * * * * * * * e145 f0a18cba,ee8585 d844df3a,e145 0002133a,0000e145 fc4b * * fc4b * * fc4b
+16718 * * * * * * * 5f3a e5bcba,ee8586 5f3a,e146 00005f3a,0000e146 fc4c * * fc4c * * fc4c
+16719 * * * * * * * e147 f0a6a288,ee8587 d85adc88,e147 00026888,0000e147 fc4d * * fc4d * * fc4d
+16720 * * * * * * * e148 f0a28f90,ee8588 d848dfd0,e148 000223d0,0000e148 fc4e * * fc4e * * fc4e
+16721 * * * * * * * e14a f0a291b1,ee858a d849dc71,e14a 00022471,0000e14a fc50 * * fc50 * * fc50
+16722 * * * * * * * 5f63 e5bda3,ee858b 5f63,e14b 00005f63,0000e14b fc51 * * fc51 * * fc51
+16723 * * * * * * * e14d f0a6b9ae,ee858d d85bde6e,e14d 00026e6e,0000e14d fc53 * * fc53 * * fc53
+16724 * * * * * * * 5f72 e5bdb2,ee858e 5f72,e14e 00005f72,0000e14e fc54 * * fc54 * * fc54
+16725 * * * * * * * 9340 e98d80,ee858f 9340,e14f 00009340,0000e14f fc55 * * fc55 * * fc55
+16726 * * * * * * * e150 f0a8a8b6,ee8590 d862de36,e150 00028a36,0000e150 fc56 * * fc56 * * fc56
+16727 * * * * * * * 5fa7 e5bea7,ee8591 5fa7,e151 00005fa7,0000e151 fc57 fc5b 924e fc57 c7e0 fb54 fc57
+16728 * * * * * * * 5db6 e5b6b6,ee8592 5db6,e152 00005db6,0000e152 fc58 * * fc58 * * fc58
+16729 * * * * * * * 3d5f e3b59f,ee8593 3d5f,e153 00003d5f,0000e153 fc59 * * fc59 * * fc59
+16730 * * * * * * * e154 f0a58990,ee8594 d854de50,e154 00025250,0000e154 fc5a * * fc5a * * fc5a
+16731 * * * * * * * e155 f0a1bdaa,ee8595 d847df6a,e155 00021f6a,0000e155 fc5b * * fc5b * * fc5b
+16732 * * * * * * * e156 f0a783b8,ee8596 d85cdcf8,e156 000270f8,0000e156 fc5c * * fc5c * * fc5c
+16733 * * * * * * * e157 f0a299a8,ee8597 d849de68,e157 00022668,0000e157 fc5d * * fc5d * * fc5d
+16734 * * * * * * * 91d6 e98796,ee8598 91d6,e158 000091d6,0000e158 fc5e * * fc5e * * fc5e
+16735 * * * * * * * e159 f0a08a9e,ee8599 d840de9e,e159 0002029e,0000e159 fc5f * * fc5f * * fc5f
+16736 * * * * * * * e15a f0a8a8a9,ee859a d862de29,e15a 00028a29,0000e15a fc60 * * fc60 * * fc60
+16737 * * * * * * * 6031 e680b1,ee859b 6031,e15b 00006031,0000e15b fc61 fa59 8eae fc61 c7e1 fb56 fc61
+16738 * * * * * * * 6685 e69a85,ee859c 6685,e15c 00006685,0000e15c fc62 * * fc62 * * fc62
+16739 * * * * * * * 3963 e3a5a3,ee859e 3963,e15e 00003963,0000e15e fc64 * * fc64 * * fc64
+16740 * * * * * * * 3dc7 e3b787,ee859f 3dc7,e15f 00003dc7,0000e15f fc65 * * fc65 * * fc65
+16741 * * * * * * * 3639 e398b9,ee85a0 3639,e160 00003639,0000e160 fc66 * * fc66 * * fc66
+16742 * * * * * * * 5790 e59e90,ee85a1 5790,e161 00005790,0000e161 fc67 * * fc67 * * fc67
+16743 * * * * * * * e162 f0a29eb4,ee85a2 d849dfb4,e162 000227b4,0000e162 fc68 * * fc68 * * fc68
+16744 * * * * * * * 7971 e7a5b1,ee85a3 7971,e163 00007971,0000e163 fc69 * * fc69 * * fc69
+16745 * * * * * * * 3e40 e3b980,ee85a4 3e40,e164 00003e40,0000e164 fc6a * * fc6a * * fc6a
+16746 * * * * * * * 609e e6829e,ee85a5 609e,e165 0000609e,0000e165 fc6b fabf 925f fc6b c7e3 fb58 fc6b
+16747 * * * * * * * * * * * * * * fc6c * * *
+16748 * * * * * * * 60b3 e683aa 60ea 000060ea * fc64 8fbf fc6d * * *
+16749 * * * * * * * e168 f0a4a682,ee85a8 d852dd82,e168 00024982,0000e168 fc6e * * fc6e * * fc6e
+16750 * * * * * * * e169 f0a4a68f,ee85a9 d852dd8f,e169 0002498f,0000e169 fc6f * * fc6f * * fc6f
+16751 * * * * * * * e16a f0a7a993,ee85aa d85ede53,e16a 00027a53,0000e16a fc70 * * fc70 * * fc70
+16752 * * * * * * * 74a4 e792a4,ee85ab 74a4,e16b 000074a4,0000e16b fc71 * * fc71 * * fc71
+16753 * * * * * * * 50e1 e583a1,ee85ac 50e1,e16c 000050e1,0000e16c fc72 * * fc72 * * fc72
+16754 * * * * * * * 5aa0 e5aaa0,ee85ad 5aa0,e16d 00005aa0,0000e16d fc73 * * fc73 * * fc73
+16755 * * * * * * * 6164 e685a4,ee85ae 6164,e16e 00006164,0000e16e fc74 fc71 8f7d fc74 * * fc74
+16756 * * * * * * * 6142 e68582,ee85b0 6142,e170 00006142,0000e170 fc76 fc6a 9056 fc76 * * fc76
+16757 * * * * * * * e171 f0afa2a6,ee85b1 d87edca6,e171 0002f8a6,0000e171 fc77 * * fc77 * * fc77
+16758 * * * * * * * e172 f0a6bb92,ee85b2 d85bded2,e172 00026ed2,0000e172 fc78 * * fc78 * * fc78
+16759 * * * * * * * 6181 e68681,ee85b3 6181,e173 00006181,0000e173 fc79 * * fc79 * * fc79
+16760 * * * * * * * 51f4 e587b4,ee85b4 51f4,e174 000051f4,0000e174 fc7a fbaa 8fdd fc7a * fa5d fc7a
+16761 * * * * * * * e175 f0a09996,ee85b5 d841de56,e175 00020656,0000e175 fc7b * * fc7b * * fc7b
+16762 * * * * * * * 6187 e68687,ee85b6 6187,e176 00006187,0000e176 fc7c * * fc7c * * fc7c
+16763 * * * * * * * 5baa e5aeaa,ee85b7 5baa,e177 00005baa,0000e177 fc7d * * fc7d * * fc7d
+16764 * * * * * * * e178 f0a3beb7,ee85b8 d84fdfb7,e178 00023fb7,0000e178 fc7e * * fc7e * * fc7e
+16765 * * * * * * * e179 f0a2a19f,ee85b9 d84adc5f,e179 0002285f,0000e179 fca1 * * fca1 * * fca1
+16766 * * * * * * * 61d3 e68793,ee85ba 61d3,e17a 000061d3,0000e17a fca2 * * fca2 * * fca2
+16767 * * * * * * * e17b f0a8ae9d,ee85bb d862df9d,e17b 00028b9d,0000e17b fca3 * * fca3 * * fca3
+16768 * * * * * * * e17c f0a9a59d,ee85bc d866dd5d,e17c 0002995d,0000e17c fca4 * * fca4 * * fca4
+16769 * * * * * * * 61d0 e68790,ee85bd 61d0,e17d 000061d0,0000e17d fca5 * * fca5 * * fca5
+16770 * * * * * * * 3932 e3a4b2,ee85be 3932,e17e 00003932,0000e17e fca6 * * fca6 * * fca6
+16771 * * * * * * * e17f f0a2a680,ee85bf d84add80,e17f 00022980,0000e17f fca7 * * fca7 * * fca7
+16772 * * * * * * * e180 f0a2a381,ee8680 d84adcc1,e180 000228c1,0000e180 fca8 * * fca8 * * fca8
+16773 * * * * * * * 6023 e680a3,ee8681 6023,e181 00006023,0000e181 fca9 * * fca9 * * fca9
+16774 * * * * * * * 615c e6859c,ee8682 615c,e182 0000615c,0000e182 fcaa fc72 91b6 fcaa c7e5 fb5b fcaa
+16775 * * * * * * * 651e e6949e,ee8683 651e,e183 0000651e,0000e183 fcab fae6 91ba fcab c7f9 fb76 fcab
+16776 * * * * * * * 638b e68e8b,ee8684 638b,e184 0000638b,0000e184 fcac * * fcac * * fcac
+16777 * * * * * * * e185 f0a08498,ee8685 d840dd18,e185 00020118,0000e185 fcad * * fcad * * fcad
+16778 * * * * * * * 62c5 e68b85,ee8686 62c5,e186 000062c5,0000e186 fcae fa50 * fcae c7e9 fb62 fcae
+16779 * * * * * * * e187 f0a19db0,ee8687 d845df70,e187 00021770,0000e187 fcaf * * fcaf * * fcaf
+16780 * * * * * * * 62d5 e68b95,ee8688 62d5,e188 000062d5,0000e188 fcb0 fc7b 8fb7 fcb0 * * fcb0
+16781 * * * * * * * e189 f0a2b88d,ee8689 d84bde0d,e189 00022e0d,0000e189 fcb1 * * fcb1 * * fcb1
+16782 * * * * * * * 636c e68dac,ee868a 636c,e18a 0000636c,0000e18a fcb2 fc7e 8fe1 fcb2 * fb69 fcb2
+16783 * * * * * * * e18b f0a4a79f,ee868b d852dddf,e18b 000249df,0000e18b fcb3 * * fcb3 * * fcb3
+16784 * * * * * * * 3a17 e3a897,ee868c 3a17,e18c 00003a17,0000e18c fcb4 * * fcb4 * * fcb4
+16785 * * * * * * * 6438 e690b8,ee868d 6438,e18d 00006438,0000e18d fcb5 * * fcb5 * * fcb5
+16786 * * * * * * * 63f8 e68fb8,ee868e 63f8,e18e 000063f8,0000e18e fcb6 faa8 91b9 fcb6 c7f0 fb6a fcb6
+16787 * * * * * * * e18f f0a18e8e,ee868f d844df8e,e18f 0002138e,0000e18f fcb7 * * fcb7 * * fcb7
+16788 * * * * * * * e190 f0a19fbc,ee8690 d845dffc,e190 000217fc,0000e190 fcb8 * * fcb8 * * fcb8
+16789 * * * * * * * 6f8a e6be8a,ee8692 6f8a,e192 00006f8a,0000e192 fcba * * fcba * * fcba
+16790 * * * * * * * e193 f0a2b8b6,ee8693 d84bde36,e193 00022e36,0000e193 fcbb * * fcbb * * fcbb
+16791 * * * * * * * * * * * * * * fcbd * * *
+16792 * * * * * * * e196 f0a59c9d,ee8696 d855df1d,e196 0002571d,0000e196 fcbe * * fcbe * * fcbe
+16793 * * * * * * * 64e1 e693a1,ee8697 64e1,e197 000064e1,0000e197 fcbf * * fcbf * fb75 fcbf
+16794 * * * * * * * 64e5 e693a5,ee8698 64e5,e198 000064e5,0000e198 fcc0 * * fcc0 * * fcc0
+16795 * * * * * * * 947b e991bb,ee8699 947b,e199 0000947b,0000e199 fcc1 * * fcc1 * * fcc1
+16796 * * * * * * * 3a66 e3a9a6,ee869a 3a66,e19a 00003a66,0000e19a fcc2 * * fcc2 * * fcc2
+16797 * * * * * * * 643a e690ba,ee869b 643a,e19b 0000643a,0000e19b fcc3 fca2 9260 fcc3 c7f4 fb6f fcc3
+16798 * * * * * * * 3a57 e3a997,ee869c 3a57,e19c 00003a57,0000e19c fcc4 fa57 * fcc4 c7f8 fb74 fcc4
+16799 * * * * * * * 654d e6958d,ee869d 654d,e19d 0000654d,0000e19d fcc5 * * fcc5 * fb78 fcc5
+16800 * * * * * * * 6f16 e6bc96,ee869e 6f16,e19e 00006f16,0000e19e fcc6 * * fcc6 * * fcc6
+16801 * * * * * * * e19f f0a4a8a8,ee869f d852de28,e19f 00024a28,0000e19f fcc7 * * fcc7 * * fcc7
+16802 * * * * * * * e1a0 f0a4a8a3,ee86a0 d852de23,e1a0 00024a23,0000e1a0 fcc8 * * fcc8 * * fcc8
+16803 * * * * * * * 6585 e69685,ee86a1 6585,e1a1 00006585,0000e1a1 fcc9 fcf6 8f69 fcc9 * * fcc9
+16804 * * * * * * * 656d e695ad,ee86a2 656d,e1a2 0000656d,0000e1a2 fcca * * fcca * * fcca
+16805 * * * * * * * 655f e6959f,ee86a3 655f,e1a3 0000655f,0000e1a3 fccb * * fccb * * fccb
+16806 * * * * * * * * * * * * * * fccc * * *
+16807 * * * * * * * 65b5 e696b5,ee86a5 65b5,e1a5 000065b5,0000e1a5 fccd * * fccd * * fccd
+16808 * * * * * * * e1a6 f0a4a580,ee86a6 d852dd40,e1a6 00024940,0000e1a6 fcce * * fcce * * fcce
+16809 * * * * * * * 4b37 e4acb7,ee86a7 4b37,e1a7 00004b37,0000e1a7 fccf * * fccf * * fccf
+16810 * * * * * * * 65d1 e69791,ee86a8 65d1,e1a8 000065d1,0000e1a8 fcd0 * * fcd0 * * fcd0
+16811 * * * * * * * 40d8 e48398,ee86a9 40d8,e1a9 000040d8,0000e1a9 fcd1 * * fcd1 * * fcd1
+16812 * * * * * * * e1aa f0a1a0a9,ee86aa d846dc29,e1aa 00021829,0000e1aa fcd2 * * fcd2 * * fcd2
+16813 * * * * * * * * ee86ab e1ab 0000e1ab fcd3 * 91a8 fcd3 * * fcd3
+16814 * * * * * * * 65e3 e697a3,ee86ac 65e3,e1ac 000065e3,0000e1ac fcd4 * * fcd4 * * fcd4
+16815 * * * * * * * 5fdf e5bf9f,ee86ad 5fdf,e1ad 00005fdf,0000e1ad fcd5 * * fcd5 * * fcd5
+16816 * * * * * * * e1ae f0a39080,ee86ae d84ddc00,e1ae 00023400,0000e1ae fcd6 * * fcd6 * * fcd6
+16817 * * * * * * * 6618 e69898,ee86af 6618,e1af 00006618,0000e1af fcd7 * * fcd7 * * fcd7
+16818 * * * * * * * e1b0 ee86b0,f0a387b7 d84cddf7,e1b0 0000e1b0,000231f7 fcd8 * * fcd8 * * fcd8
+16819 * * * * * * * e1b1 ee86b1,f0a387b8 d84cddf8,e1b1 0000e1b1,000231f8 fcd9 * * fcd9 * * fcd9
+16820 * * * * * * * 6644 e69984,ee86b2 6644,e1b2 00006644,0000e1b2 fcda * * fcda * * fcda
+16821 * * * * * * * e1b3 ee86b3,f0a386a4 d84cdda4,e1b3 0000e1b3,000231a4 fcdb * * fcdb * * fcdb
+16822 * * * * * * * e1b4 ee86b4,f0a386a5 d84cdda5,e1b4 0000e1b4,000231a5 fcdc * * fcdc * * fcdc
+16823 * * * * * * * 664b e6998b,ee86b5 664b,e1b5 0000664b,0000e1b5 fcdd fca9 8fde fcdd * * fcdd
+16824 * * * * * * * e1b6 f0a0b9b5,ee86b6 d843de75,e1b6 00020e75,0000e1b6 fcde * * fcde * * fcde
+16825 * * * * * * * 6667 e699a7,ee86b7 6667,e1b7 00006667,0000e1b7 fcdf fca7 8fd3 fcdf * * fcdf
+16826 * * * * * * * e1b8 f0a587a6,ee86b8 d854dde6,e1b8 000251e6,0000e1b8 fce0 * * fce0 * * fce0
+16827 * * * * * * * 6673 e699b3,ee86b9 6673,e1b9 00006673,0000e1b9 fce1 * * fce1 * * fce1
+16828 * * * * * * * * efa892 fa12 0000fa12 * * * fce2 * * *
+16829 * * * * * * * e1bc f0a388b1,ee86bc d84cde31,e1bc 00023231,0000e1bc fce4 * * fce4 * * fce4
+16830 * * * * * * * e1bd f0a897b4,ee86bd d861ddf4,e1bd 000285f4,0000e1bd fce5 * * fce5 * * fce5
+16831 * * * * * * * e1be f0a38788,ee86be d84cddc8,e1be 000231c8,0000e1be fce6 * * fce6 * * fce6
+16832 * * * * * * * e1bf f0a58c93,ee86bf d854df13,e1bf 00025313,0000e1bf fce7 * * fce7 * * fce7
+16833 * * * * * * * 77c5 e79f85,ee8780 77c5,e1c0 000077c5,0000e1c0 fce8 * * fce8 * * fce8
+16834 * * * * * * * e1c1 f0a2a3b7,ee8781 d84adcf7,e1c1 000228f7,0000e1c1 fce9 * * fce9 * * fce9
+16835 * * * * * * * 99a4 e9a6a4,ee8782 99a4,e1c2 000099a4,0000e1c2 fcea * * fcea * * fcea
+16836 * * * * * * * 6702 e69c82,ee8783 6702,e1c3 00006702,0000e1c3 fceb * * fceb * * fceb
+16837 * * * * * * * e1c4 f0a48e9c,ee8784 d850df9c,e1c4 0002439c,0000e1c4 fcec * * fcec * * fcec
+16838 * * * * * * * e1c5 f0a4a8a1,ee8785 d852de21,e1c5 00024a21,0000e1c5 fced * * fced * * fced
+16839 * * * * * * * 69fa e6a7ba,ee8787 69fa,e1c7 000069fa,0000e1c7 fcef fcc2 91c3 fcef * * fcef
+16840 * * * * * * * e1c8 f0a39f82,ee8788 d84ddfc2,e1c8 000237c2,0000e1c8 fcf0 * * fcf0 * * fcf0
+16841 * * * * * * * * f0afa39b d87edcdb 0002f8db * * * fcf1 * * *
+16842 * * * * * * * 6767 e69da7,ee878a 6767,e1ca 00006767,0000e1ca fcf2 fb4e * fcf2 c844 fba9 fcf2
+16843 * * * * * * * 6762 e69da2,ee878b 6762,e1cb 00006762,0000e1cb fcf3 * * fcf3 * * fcf3
+16844 * * * * * * * e1cc f0a4878d,ee878c d850ddcd,e1cc 000241cd,0000e1cc fcf4 * * fcf4 * * fcf4
+16845 * * * * * * * e1cd f0a983ad,ee878d d864dced,e1cd 000290ed,0000e1cd fcf5 * * fcf5 * * fcf5
+16846 * * * * * * * 67d7 e69f97,ee878e 67d7,e1ce 000067d7,0000e1ce fcf6 * * fcf6 * * fcf6
+16847 * * * * * * * 44e9 e493a9,ee878f 44e9,e1cf 000044e9,0000e1cf fcf7 * * fcf7 * * fcf7
+16848 * * * * * * * 6822 e6a0a2,ee8790 6822,e1d0 00006822,0000e1d0 fcf8 faf5 9050 fcf8 c846 fbac fcf8
+16849 * * * * * * * 6e50 e6b990,ee8791 6e50,e1d1 00006e50,0000e1d1 fcf9 * * fcf9 * * fcf9
+16850 * * * * * * * 923c e988bc,ee8792 923c,e1d2 0000923c,0000e1d2 fcfa * * fcfa * * fcfa
+16851 * * * * * * * 6801 e6a081,ee8793 6801,e1d3 00006801,0000e1d3 fcfb * * fcfb * * fcfb
+16852 * * * * * * * e1d4 f0a38fa6,ee8794 d84cdfe6,e1d4 000233e6,0000e1d4 fcfc * * fcfc * * fcfc
+16853 * * * * * * * e1d5 f0a6b6a0,ee8795 d85bdda0,e1d5 00026da0,0000e1d5 fcfd * * fcfd * * fcfd
+16854 * * * * * * * 685d e6a19d,ee8796 685d,e1d6 0000685d,0000e1d6 fcfe * * fcfe * * fcfe
+16855 * * * * * * * e1d7 f0a391af,ee8797 d84ddc6f,e1d7 0002346f,0000e1d7 fd40 * * fd40 * * fd40
+16856 * * * * * * * 69e1 e6a7a1,ee8798 69e1,e1d8 000069e1,0000e1d8 fd41 * * fd41 * * fd41
+16857 * * * * * * * 6a0b e6a88b,ee8799 6a0b,e1d9 00006a0b,0000e1d9 fd42 fcbd 8fe0 fd42 * fbb3 fd42
+16858 * * * * * * * e1da f0a8ab9f,ee879a d862dedf,e1da 00028adf,0000e1da fd43 * * fd43 * * fd43
+16859 * * * * * * * 6973 e6a5b3,ee879b 6973,e1db 00006973,0000e1db fd44 fcba 8e6f fd44 * fbaf fd44
+16860 * * * * * * * 68c3 e6a383,ee879c 68c3,e1dc 000068c3,0000e1dc fd45 * * fd45 * * fd45
+16861 * * * * * * * e1dd f0a3978d,ee879d d84dddcd,e1dd 000235cd,0000e1dd fd46 * * fd46 * * fd46
+16862 * * * * * * * 6901 e6a481,ee879e 6901,e1de 00006901,0000e1de fd47 fcb6 91bf fd47 * fbae fd47
+16863 * * * * * * * 6900 e6a480,ee879f 6900,e1df 00006900,0000e1df fd48 fcb7 91c0 fd48 * * fd48
+16864 * * * * * * * 3a01 e3a881,ee87a1 3a01,e1e1 00003a01,0000e1e1 fd4a * * fd4a * * fd4a
+16865 * * * * * * * e1e2 f0a398bc,ee87a2 d84dde3c,e1e2 0002363c,0000e1e2 fd4b * * fd4b * * fd4b
+16866 * * * * * * * 3b80 e3ae80,ee87a3 3b80,e1e3 00003b80,0000e1e3 fd4c * * fd4c * * fd4c
+16867 * * * * * * * 67ac e69eac,ee87a4 67ac,e1e4 000067ac,0000e1e4 fd4d fcaf 8f63 fd4d * * fd4d
+16868 * * * * * * * 6961 e6a5a1,ee87a5 6961,e1e5 00006961,0000e1e5 fd4e * * fd4e * * fd4e
+16869 * * * * * * * e1e6 f0a8a98a,ee87a6 d862de4a,e1e6 00028a4a,0000e1e6 fd4f * * fd4f * * fd4f
+16870 * * * * * * * 42fc e48bbc,ee87a7 42fc,e1e7 000042fc,0000e1e7 fd50 * * fd50 * * fd50
+16871 * * * * * * * 6936 e6a4b6,ee87a8 6936,e1e8 00006936,0000e1e8 fd51 * * fd51 * * fd51
+16872 * * * * * * * 6998 e6a698,ee87a9 6998,e1e9 00006998,0000e1e9 fd52 fcc1 8f7a fd52 * fbb0 fd52
+16873 * * * * * * * 3ba1 e3aea1,ee87aa 3ba1,e1ea 00003ba1,0000e1ea fd53 * * fd53 * * fd53
+16874 * * * * * * * e1eb f0a08f89,ee87ab d840dfc9,e1eb 000203c9,0000e1eb fd54 * * fd54 * * fd54
+16875 * * * * * * * 8363 e88da3,ee87ac 8363,e1ec 00008363,0000e1ec fd55 * * fd55 * * fd55
+16876 * * * * * * * 5090 e58290,ee87ad 5090,e1ed 00005090,0000e1ed fd56 * * fd56 * * fd56
+16877 * * * * * * * 69f9 e6a7b9,ee87ae 69f9,e1ee 000069f9,0000e1ee fd57 * * fd57 * * fd57
+16878 * * * * * * * e1ef f0a39999,ee87af d84dde59,e1ef 00023659,0000e1ef fd58 * * fd58 * * fd58
+16879 * * * * * * * e1f0 f0a284aa,ee87b0 d848dd2a,e1f0 0002212a,0000e1f0 fd59 * * fd59 * * fd59
+16880 * * * * * * * 6a45 e6a985,ee87b1 6a45,e1f1 00006a45,0000e1f1 fd5a * * fd5a * * fd5a
+16881 * * * * * * * e1f2 f0a39c83,ee87b2 d84ddf03,e1f2 00023703,0000e1f2 fd5b * * fd5b * * fd5b
+16882 * * * * * * * 6a9d e6aa9d,ee87b3 6a9d,e1f3 00006a9d,0000e1f3 fd5c fcc8 91c7 fd5c * * fd5c
+16883 * * * * * * * 3bf3 e3afb3,ee87b4 3bf3,e1f4 00003bf3,0000e1f4 fd5d * * fd5d * * fd5d
+16884 * * * * * * * 67b1 e69eb1,ee87b5 67b1,e1f5 000067b1,0000e1f5 fd5e fa60 8ffb fd5e c845 fbaa fd5e
+16885 * * * * * * * 6ac8 e6ab88,ee87b6 6ac8,e1f6 00006ac8,0000e1f6 fd5f faa1 9051 fd5f c848 fbb5 fd5f
+16886 * * * * * * * e1f7 f0a9869c,ee87b7 d864dd9c,e1f7 0002919c,0000e1f7 fd60 * * fd60 * * fd60
+16887 * * * * * * * 3c0d e3b08d,ee87b8 3c0d,e1f8 00003c0d,0000e1f8 fd61 * * fd61 * * fd61
+16888 * * * * * * * 6b1d e6ac9d,ee87b9 6b1d,e1f9 00006b1d,0000e1f9 fd62 fcca 91cb fd62 c849 fbb6 fd62
+16889 * * * * * * * e1fa f0a0a4a3,ee87ba d842dd23,e1fa 00020923,0000e1fa fd63 * * fd63 * * fd63
+16890 * * * * * * * * e6839e,eeae94,ee87bb 60de,eb94,e1fb 000060de,0000eb94,0000e1fb 9bec,fd64 * * fd64 * * 9bec,fd64
+16891 * * * * * * * 6b35 e6acb5,ee87bc 6b35,e1fc 00006b35,0000e1fc fd65 * * fd65 c84a fbb7 fd65
+16892 * * * * * * * 6b74 e6adb4,ee87bd 6b74,e1fd 00006b74,0000e1fd fd66 * * fd66 * * fd66
+16893 * * * * * * * e1fe f0a29f8d,ee87be d849dfcd,e1fe 000227cd,0000e1fe fd67 * * fd67 * * fd67
+16894 * * * * * * * 6eb5 e6bab5,ee87bf 6eb5,e1ff 00006eb5,0000e1ff fd68 * * fd68 * * fd68
+16895 * * * * * * * e200 ee8880,f0a3ab9b d84ededb,e200 0000e200,00023adb fd69 * * fd69 * * fd69
+16896 * * * * * * * * * * * * * * fd6a * * *
+16897 * * * * * * * e202 f0a1a598,ee8882 d846dd58,e202 00021958,0000e202 fd6b * * fd6b * * fd6b
+16898 * * * * * * * 3740 e39d80,ee8883 3740,e203 00003740,0000e203 fd6c * * fd6c * * fd6c
+16899 * * * * * * * 5421 e590a1,ee8884 5421,e204 00005421,0000e204 fd6d fbcc 8e6e fd6d * fa7b fd6d
+16900 * * * * * * * e205 f0a3ad9a,ee8885 d84edf5a,e205 00023b5a,0000e205 fd6e * * fd6e * * fd6e
+16901 * * * * * * * 6be1 e6afa1,ee8886 6be1,e206 00006be1,0000e206 fd6f fb43 905b fd6f c84b fbb8 fd6f
+16902 * * * * * * * e207 f0a3bbbc,ee8887 d84fdefc,e207 00023efc,0000e207 fd70 * * fd70 * * fd70
+16903 * * * * * * * 6bdc e6af9c,ee8888 6bdc,e208 00006bdc,0000e208 fd71 * * fd71 * * fd71
+16904 * * * * * * * 6c37 e6b0b7,ee8889 6c37,e209 00006c37,0000e209 fd72 * * fd72 * * fd72
+16905 * * * * * * * e20a f0a2928b,ee888a d849dc8b,e20a 0002248b,0000e20a fd73 * * fd73 * * fd73
+16906 * * * * * * * e20b f0a4a3b1,ee888b d852dcf1,e20b 000248f1,0000e20b fd74 * * fd74 * * fd74
+16907 * * * * * * * e20c f0a6ad91,ee888c d85adf51,e20c 00026b51,0000e20c fd75 * * fd75 * * fd75
+16908 * * * * * * * 6c5a e6b19a,ee888d 6c5a,e20d 00006c5a,0000e20d fd76 * * fd76 * * fd76
+16909 * * * * * * * 8226 e888a6,ee888e 8226,e20e 00008226,0000e20e fd77 fa73 * fd77 c8b3 fc67 fd77
+16910 * * * * * * * 6c79 e6b1b9,ee888f 6c79,e20f 00006c79,0000e20f fd78 fa4e 8fb2 fd78 c84d fbba fd78
+16911 * * * * * * * e210 f0a3b6bc,ee8890 d84fddbc,e210 00023dbc,0000e210 fd79 * * fd79 * * fd79
+16912 * * * * * * * 44c5 e49385,ee8891 44c5,e211 000044c5,0000e211 fd7a * * fd7a * * fd7a
+16913 * * * * * * * e212 f0a3b6bd,ee8892 d84fddbd,e212 00023dbd,0000e212 fd7b * * fd7b * * fd7b
+16914 * * * * * * * e213 f0a486a4,ee8893 d850dda4,e213 000241a4,0000e213 fd7c * * fd7c * * fd7c
+16915 * * * * * * * e214 f0a4a48c,ee8894 d852dd0c,e214 0002490c,0000e214 fd7d * * fd7d * * fd7d
+16916 * * * * * * * e215 f0a4a480,ee8895 d852dd00,e215 00024900,0000e215 fd7e * * fd7e * * fd7e
+16917 * * * * * * * e216 f0a3b389,ee8896 d84fdcc9,e216 00023cc9,0000e216 fda1 * * fda1 * * fda1
+16918 * * * * * * * 36e5 e39ba5,ee8897 36e5,e217 000036e5,0000e217 fda2 * * fda2 * * fda2
+16919 * * * * * * * 3ceb e3b3ab,ee8898 3ceb,e218 00003ceb,0000e218 fda3 * * fda3 * * fda3
+16920 * * * * * * * e219 f0a0b4b2,ee8899 d843dd32,e219 00020d32,0000e219 fda4 * * fda4 * * fda4
+16921 * * * * * * * 9b83 e9ae83,ee889a 9b83,e21a 00009b83,0000e21a fda5 * * fda5 * * fda5
+16922 * * * * * * * e21b f0a387b9,ee889b d84cddf9,e21b 000231f9,0000e21b fda6 * * fda6 * * fda6
+16923 * * * * * * * e21c f0a29291,ee889c d849dc91,e21c 00022491,0000e21c fda7 * * fda7 * * fda7
+16924 * * * * * * * 7f8f e7be8f,ee889d 7f8f,e21d 00007f8f,0000e21d fda8 * * fda8 * * fda8
+16925 * * * * * * * 6837 e6a0b7,ee889e 6837,e21e 00006837,0000e21e fda9 * * fda9 * * fda9
+16926 * * * * * * * e21f f0a6b4a5,ee889f d85bdd25,e21f 00026d25,0000e21f fdaa * * fdaa * * fdaa
+16927 * * * * * * * e220 f0a6b6a1,ee88a0 d85bdda1,e220 00026da1,0000e220 fdab * * fdab * * fdab
+16928 * * * * * * * e221 f0a6b7ab,ee88a1 d85bddeb,e221 00026deb,0000e221 fdac * * fdac * * fdac
+16929 * * * * * * * 6d96 e6b696,ee88a2 6d96,e222 00006d96,0000e222 fdad fad0 8eb8 fdad c850 fbbd fdad
+16930 * * * * * * * 6d5c e6b59c,ee88a3 6d5c,e223 00006d5c,0000e223 fdae faf0 8e67 fdae c84f fbbc fdae
+16931 * * * * * * * 6e7c e6b9bc,ee88a4 6e7c,e224 00006e7c,0000e224 fdaf fad4 * fdaf c851 fbbe fdaf
+16932 * * * * * * * 6f04 e6bc84,ee88a5 6f04,e225 00006f04,0000e225 fdb0 * * fdb0 * * fdb0
+16933 * * * * * * * e226 f0a4a5bf,ee88a6 d852dd7f,e226 0002497f,0000e226 fdb1 * * fdb1 * * fdb1
+16934 * * * * * * * e227 f0a48285,ee88a7 d850dc85,e227 00024085,0000e227 fdb2 * * fdb2 * * fdb2
+16935 * * * * * * * e228 f0a6b9b2,ee88a8 d85bde72,e228 00026e72,0000e228 fdb3 * * fdb3 * * fdb3
+16936 * * * * * * * 8533 e894b3,ee88a9 8533,e229 00008533,0000e229 fdb4 * * fdb4 * * fdb4
+16937 * * * * * * * e22a f0a6bdb4,ee88aa d85bdf74,e22a 00026f74,0000e22a fdb5 * * fdb5 * * fdb5
+16938 * * * * * * * 51c7 e58787,ee88ab 51c7,e22b 000051c7,0000e22b fdb6 * * fdb6 * * fdb6
+16939 * * * * * * * * * * * * * * fdb7 * * *
+16940 * * * * * * * * * * * * * * fdb8 * * *
+16941 * * * * * * * 842e e890ae,ee88ae 842e,e22e 0000842e,0000e22e fdb9 * * fdb9 * * fdb9
+16942 * * * * * * * e22f f0a8aca1,ee88af d862df21,e22f 00028b21,0000e22f fdba * * fdba * * fdba
+16943 * * * * * * * * f0afa488 d87edd08 0002f908 * * * fdbb * * *
+16944 * * * * * * * e231 f0a3b8af,ee88b1 d84fde2f,e231 00023e2f,0000e231 fdbc * * fdbc * * fdbc
+16945 * * * * * * * 7453 e79193,ee88b2 7453,e232 00007453,0000e232 fdbd * * fdbd * * fdbd
+16946 * * * * * * * e233 f0a3be82,ee88b3 d84fdf82,e233 00023f82,0000e233 fdbe * * fdbe * * fdbe
+16947 * * * * * * * 79cc e7a78c,ee88b4 79cc,e234 000079cc,0000e234 fdbf fcde 91d4 fdbf * * fdbf
+16948 * * * * * * * 6e4f e6b98f,ee88b5 6e4f,e235 00006e4f,0000e235 fdc0 fcd2 8f62 fdc0 * * fdc0
+16949 * * * * * * * 5a91 e5aa91,ee88b6 5a91,e236 00005a91,0000e236 fdc1 * * fdc1 * * fdc1
+16950 * * * * * * * e237 f0a3818b,ee88b7 d84cdc4b,e237 0002304b,0000e237 fdc2 * * fdc2 * * fdc2
+16951 * * * * * * * 6ff8 e6bfb8,ee88b8 6ff8,e238 00006ff8,0000e238 fdc3 * * fdc3 * * fdc3
+16952 * * * * * * * 370d e39c8d,ee88b9 370d,e239 0000370d,0000e239 fdc4 * * fdc4 * * fdc4
+16953 * * * * * * * 6f9d e6be9d,ee88ba 6f9d,e23a 00006f9d,0000e23a fdc5 * * fdc5 * * fdc5
+16954 * * * * * * * e23b f0a3b8b0,ee88bb d84fde30,e23b 00023e30,0000e23b fdc6 * * fdc6 * * fdc6
+16955 * * * * * * * 6efa e6bbba,ee88bc 6efa,e23c 00006efa,0000e23c fdc7 * * fdc7 * * fdc7
+16956 * * * * * * * e23d f0a19297,ee88bd d845dc97,e23d 00021497,0000e23d fdc8 * * fdc8 * * fdc8
+16957 * * * * * * * e23e f0a480bd,ee88be d850dc3d,e23e 0002403d,0000e23e fdc9 * * fdc9 * * fdc9
+16958 * * * * * * * 4555 e49595,ee88bf 4555,e23f 00004555,0000e23f fdca * * fdca * * fdca
+16959 * * * * * * * 93f0 e98fb0,ee8980 93f0,e240 000093f0,0000e240 fdcb * * fdcb * * fdcb
+16960 * * * * * * * 6f44 e6bd84,ee8981 6f44,e241 00006f44,0000e241 fdcc fcd4 91cc fdcc * * fdcc
+16961 * * * * * * * 6f5c e6bd9c,ee8982 6f5c,e242 00006f5c,0000e242 fdcd fcd5 8fae fdcd * * fdcd
+16962 * * * * * * * 3d4e e3b58e,ee8983 3d4e,e243 00003d4e,0000e243 fdce * * fdce * fbc1 fdce
+16963 * * * * * * * 6f74 e6bdb4,ee8984 6f74,e244 00006f74,0000e244 fdcf * * fdcf * * fdcf
+16964 * * * * * * * e245 f0a985b0,ee8985 d864dd70,e245 00029170,0000e245 fdd0 * * fdd0 * * fdd0
+16965 * * * * * * * 3d3b e3b4bb,ee8986 3d3b,e246 00003d3b,0000e246 fdd1 * * fdd1 * * fdd1
+16966 * * * * * * * 6f9f e6be9f,ee8987 6f9f,e247 00006f9f,0000e247 fdd2 * * fdd2 * fbc3 fdd2
+16967 * * * * * * * e248 f0a48584,ee8988 d850dd44,e248 00024144,0000e248 fdd3 * * fdd3 * * fdd3
+16968 * * * * * * * 6fd3 e6bf93,ee8989 6fd3,e249 00006fd3,0000e249 fdd4 * * fdd4 * * fdd4
+16969 * * * * * * * e24a f0a48291,ee898a d850dc91,e24a 00024091,0000e24a fdd5 * * fdd5 * * fdd5
+16970 * * * * * * * e24b f0a48595,ee898b d850dd55,e24b 00024155,0000e24b fdd6 * * fdd6 * * fdd6
+16971 * * * * * * * e24c f0a480b9,ee898c d850dc39,e24c 00024039,0000e24c fdd7 * * fdd7 * * fdd7
+16972 * * * * * * * e24d f0a3bfb0,ee898d d84fdff0,e24d 00023ff0,0000e24d fdd8 * * fdd8 * * fdd8
+16973 * * * * * * * e24e f0a3beb4,ee898e d84fdfb4,e24e 00023fb4,0000e24e fdd9 * * fdd9 * * fdd9
+16974 * * * * * * * e24f f0a484bf,ee898f d850dd3f,e24f 0002413f,0000e24f fdda * * fdda * * fdda
+16975 * * * * * * * 51df e5879f,ee8990 51df,e250 000051df,0000e250 fddb fbbc 9262 fddb * * fddb
+16976 * * * * * * * e251 ee8991,f0a48596 d850dd56,e251 0000e251,00024156 fddc * * fddc * * fddc
+16977 * * * * * * * e252 ee8992,f0a48597 d850dd57,e252 0000e252,00024157 fddd * * fddd * * fddd
+16978 * * * * * * * e253 f0a48580,ee8993 d850dd40,e253 00024140,0000e253 fdde * * fdde * * fdde
+16979 * * * * * * * e254 f0a6879d,ee8994 d858dddd,e254 000261dd,0000e254 fddf * * fddf * * fddf
+16980 * * * * * * * 704b e7818b,ee8995 704b,e255 0000704b,0000e255 fde0 * * fde0 * * fde0
+16981 * * * * * * * 707e e781be,ee8996 707e,e256 0000707e,0000e256 fde1 fc50 8fe8 fde1 * * fde1
+16982 * * * * * * * 70a7 e782a7,ee8997 70a7,e257 000070a7,0000e257 fde2 * * fde2 * * fde2
+16983 * * * * * * * * * * * * fcdd 8fe5 fde3 * * *
+16984 * * * * * * * 70cc e7838c,ee8999 70cc,e259 000070cc,0000e259 fde4 * * fde4 * * fde4
+16985 * * * * * * * 70d5 e78395,ee899a 70d5,e25a 000070d5,0000e25a fde5 fc75 91cf fde5 * * fde5
+16986 * * * * * * * 70d6 e78396,ee899b 70d6,e25b 000070d6,0000e25b fde6 * * fde6 * * fde6
+16987 * * * * * * * 70df e7839f,ee899c 70df,e25c 000070df,0000e25c fde7 fa69 9259 fde7 c857 fbc7 fde7
+16988 * * * * * * * 4104 e48484,ee899d 4104,e25d 00004104,0000e25d fde8 * * fde8 * * fde8
+16989 * * * * * * * 3de8 e3b7a8,ee899e 3de8,e25e 00003de8,0000e25e fde9 * * fde9 * * fde9
+16990 * * * * * * * 71b4 e786b4,ee899f 71b4,e25f 000071b4,0000e25f fdea * * fdea * * fdea
+16991 * * * * * * * 7196 e78696,ee89a0 7196,e260 00007196,0000e260 fdeb * * fdeb * * fdeb
+16992 * * * * * * * e261 f0a489b7,ee89a1 d850de77,e261 00024277,0000e261 fdec * * fdec * * fdec
+16993 * * * * * * * 712b e784ab,ee89a2 712b,e262 0000712b,0000e262 fded * * fded * * fded
+16994 * * * * * * * 7145 e78585,ee89a3 7145,e263 00007145,0000e263 fdee fac3 91d1 fdee c85d fbcd fdee
+16995 * * * * * * * 5a88 e5aa88,ee89a4 5a88,e264 00005a88,0000e264 fdef * * fdef * * fdef
+16996 * * * * * * * 714a e7858a,ee89a5 714a,e265 0000714a,0000e265 fdf0 faf6 8e6c fdf0 c85c fbcc fdf0
+16997 * * * * * * * * efa988 fa48 0000fa48 * * * fdf1 * * *
+16998 * * * * * * * e268 f0a48da5,ee89a8 d850df65,e268 00024365,0000e268 fdf3 * * fdf3 * * fdf3
+16999 * * * * * * * 714f e7858f,ee89a9 714f,e269 0000714f,0000e269 fdf4 * * fdf4 * * fdf4
+17000 * * * * * * * 9362 e98da2,ee89aa 9362,e26a 00009362,0000e26a fdf5 * * fdf5 * * fdf5
+17001 * * * * * * * e26b f0a48b81,ee89ab d850dec1,e26b 000242c1,0000e26b fdf6 * * fdf6 * * fdf6
+17002 * * * * * * * 712c e784ac,ee89ac 712c,e26c 0000712c,0000e26c fdf7 * * fdf7 * * fdf7
+17003 * * * * * * * e26d f0a4919a,ee89ad d851dc5a,e26d 0002445a,0000e26d fdf8 * * fdf8 * * fdf8
+17004 * * * * * * * e26e f0a4a8a7,ee89ae d852de27,e26e 00024a27,0000e26e fdf9 * * fdf9 * * fdf9
+17005 * * * * * * * e26f f0a4a8a2,ee89af d852de22,e26f 00024a22,0000e26f fdfa * * fdfa * * fdfa
+17006 * * * * * * * 71ba e786ba,ee89b0 71ba,e270 000071ba,0000e270 fdfb * * fdfb * * fdfb
+17007 * * * * * * * e271 f0a8afa8,ee89b1 d862dfe8,e271 00028be8,0000e271 fdfc * * fdfc * * fdfc
+17008 * * * * * * * 70bd e782bd,ee89b2 70bd,e272 000070bd,0000e272 fdfd * * fdfd * * fdfd
+17009 * * * * * * * 720e e7888e,ee89b3 720e,e273 0000720e,0000e273 fdfe * * fdfe * * fdfe
+17010 * * * * * * * 9442 e99182,ee89b4 9442,e274 00009442,0000e274 fe40 * * fe40 * * fe40
+17011 * * * * * * * 7215 e78895,ee89b5 7215,e275 00007215,0000e275 fe41 fce9 8eb7 fe41 c860 fbd0 fe41
+17012 * * * * * * * 5911 e5a491,ee89b6 5911,e276 00005911,0000e276 fe42 * * fe42 * * fe42
+17013 * * * * * * * 9443 e99183,ee89b7 9443,e277 00009443,0000e277 fe43 * * fe43 * * fe43
+17014 * * * * * * * 7224 e788a4,ee89b8 7224,e278 00007224,0000e278 fe44 * * fe44 * * fe44
+17015 * * * * * * * 9341 e98d81,ee89b9 9341,e279 00009341,0000e279 fe45 * * fe45 * * fe45
+17016 * * * * * * * e27a f0a59885,ee89ba d855de05,e27a 00025605,0000e27a fe46 * * fe46 * * fe46
+17017 * * * * * * * 722e e788ae,ee89bb 722e,e27b 0000722e,0000e27b fe47 * * fe47 * * fe47
+17018 * * * * * * * 7240 e78980,ee89bc 7240,e27c 00007240,0000e27c fe48 fb41 * fe48 c862 fbd2 fe48
+17019 * * * * * * * e27d f0a4a5b4,ee89bd d852dd74,e27d 00024974,0000e27d fe49 * * fe49 * * fe49
+17020 * * * * * * * 68bd e6a2bd,ee89be 68bd,e27e 000068bd,0000e27e fe4a * * fe4a * * fe4a
+17021 * * * * * * * 7255 e78995,ee89bf 7255,e27f 00007255,0000e27f fe4b fceb 9040 fe4b * * fe4b
+17022 * * * * * * * 7257 e78997,ee8a80 7257,e280 00007257,0000e280 fe4c * * fe4c * * fe4c
+17023 * * * * * * * 3e55 e3b995,ee8a81 3e55,e281 00003e55,0000e281 fe4d * * fe4d * * fe4d
+17024 * * * * * * * e282 f0a38184,ee8a82 d84cdc44,e282 00023044,0000e282 fe4e * * fe4e * * fe4e
+17025 * * * * * * * 680d e6a08d,ee8a83 680d,e283 0000680d,0000e283 fe4f * * fe4f * * fe4f
+17026 * * * * * * * 6f3d e6bcbd,ee8a84 6f3d,e284 00006f3d,0000e284 fe50 * * fe50 * * fe50
+17027 * * * * * * * 7282 e78a82,ee8a85 7282,e285 00007282,0000e285 fe51 * * fe51 * fbd3 fe51
+17028 * * * * * * * * * * * * * * fe52 * * *
+17029 * * * * * * * 732b e78cab,ee8a87 732b,e287 0000732b,0000e287 fe53 * * fe53 * * fe53
+17030 * * * * * * * e288 f0a4a0a3,ee8a88 d852dc23,e288 00024823,0000e288 fe54 * * fe54 * * fe54
+17031 * * * * * * * e289 f0a8a0ab,ee8a89 d862dc2b,e289 0002882b,0000e289 fe55 * * fe55 * * fe55
+17032 * * * * * * * 48ed e4a3ad,ee8a8a 48ed,e28a 000048ed,0000e28a fe56 * * fe56 * * fe56
+17033 * * * * * * * e28b f0a8a084,ee8a8b d862dc04,e28b 00028804,0000e28b fe57 * * fe57 * * fe57
+17034 * * * * * * * 7328 e78ca8,ee8a8c 7328,e28c 00007328,0000e28c fe58 fcf3 91d9 fe58 c869 fbdb fe58
+17035 * * * * * * * 732e e78cae,ee8a8d 732e,e28d 0000732e,0000e28d fe59 fcf1 8ea9 fe59 c86a fbdc fe59
+17036 * * * * * * * 73cf e78f8f,ee8a8e 73cf,e28e 000073cf,0000e28e fe5a fa68 * fe5a c86b fbde fe5a
+17037 * * * * * * * 73aa e78eaa,ee8a8f 73aa,e28f 000073aa,0000e28f fe5b * * fe5b * * fe5b
+17038 * * * * * * * e290 f0a0b0ba,ee8a90 d843dc3a,e290 00020c3a,0000e290 fe5c * * fe5c * * fe5c
+17039 * * * * * * * e291 f0a6a8ae,ee8a91 d85ade2e,e291 00026a2e,0000e291 fe5d * * fe5d * * fe5d
+17040 * * * * * * * 73c9 e78f89,ee8a92 73c9,e292 000073c9,0000e292 fe5e fcf9 8fbc fe5e * fbdf fe5e
+17041 * * * * * * * 7449 e79189,ee8a93 7449,e293 00007449,0000e293 fe5f * * fe5f * * fe5f
+17042 * * * * * * * e294 f0a487a2,ee8a94 d850dde2,e294 000241e2,0000e294 fe60 * * fe60 * * fe60
+17043 * * * * * * * e295 f0a19ba7,ee8a95 d845dee7,e295 000216e7,0000e295 fe61 * * fe61 * * fe61
+17044 * * * * * * * e296 f0a4a8a4,ee8a96 d852de24,e296 00024a24,0000e296 fe62 * * fe62 * * fe62
+17045 * * * * * * * 6623 e698a3,ee8a97 6623,e297 00006623,0000e297 fe63 * * fe63 * * fe63
+17046 * * * * * * * 36c5 e39b85,ee8a98 36c5,e298 000036c5,0000e298 fe64 * * fe64 * * fe64
+17047 * * * * * * * e299 f0a4a6b7,ee8a99 d852ddb7,e299 000249b7,0000e299 fe65 * * fe65 * * fe65
+17048 * * * * * * * e29a f0a4a68d,ee8a9a d852dd8d,e29a 0002498d,0000e29a fe66 * * fe66 * * fe66
+17049 * * * * * * * e29b f0a4a7bb,ee8a9b d852ddfb,e29b 000249fb,0000e29b fe67 * * fe67 * * fe67
+17050 * * * * * * * 73f7 e78fb7,ee8a9c 73f7,e29c 000073f7,0000e29c fe68 * * fe68 * * fe68
+17051 * * * * * * * 7415 e79095,ee8a9d 7415,e29d 00007415,0000e29d fe69 * * fe69 * * fe69
+17052 * * * * * * * 6903 e6a483,ee8a9e 6903,e29e 00006903,0000e29e fe6a * * fe6a * * fe6a
+17053 * * * * * * * e29f f0a4a8a6,ee8a9f d852de26,e29f 00024a26,0000e29f fe6b * * fe6b * * fe6b
+17054 * * * * * * * 7439 e790b9,ee8aa0 7439,e2a0 00007439,0000e2a0 fe6c * * fe6c * * fe6c
+17055 * * * * * * * 3ed7 e3bb97,ee8aa2 3ed7,e2a2 00003ed7,0000e2a2 fe6e * * fe6e * * fe6e
+17056 * * * * * * * * f0afa4af d87edd2f 0002f92f * * * fe6f * * *
+17057 * * * * * * * e2a4 f0a2a2ad,ee8aa4 d84adcad,e2a4 000228ad,0000e2a4 fe70 * * fe70 * * fe70
+17058 * * * * * * * 7460 e791a0,ee8aa5 7460,e2a5 00007460,0000e2a5 fe71 fcfc 8fe4 fe71 * * fe71
+17059 * * * * * * * e2a6 f0a8bab2,ee8aa6 d863deb2,e2a6 00028eb2,0000e2a6 fe72 * * fe72 * * fe72
+17060 * * * * * * * 7447 e79187,ee8aa7 7447,e2a7 00007447,0000e2a7 fe73 * * fe73 * * fe73
+17061 * * * * * * * 73e4 e78fa4,ee8aa8 73e4,e2a8 000073e4,0000e2a8 fe74 * * fe74 * * fe74
+17062 * * * * * * * 7476 e791b6,ee8aa9 7476,e2a9 00007476,0000e2a9 fe75 * * fe75 * * fe75
+17063 * * * * * * * 83b9 e88eb9,ee8aaa 83b9,e2aa 000083b9,0000e2aa fe76 * * fe76 * * fe76
+17064 * * * * * * * 746c e791ac,ee8aab 746c,e2ab 0000746c,0000e2ab fe77 * * fe77 * * fe77
+17065 * * * * * * * 7474 e791b4,ee8aad 7474,e2ad 00007474,0000e2ad fe79 * * fe79 * * fe79
+17066 * * * * * * * 93f1 e98fb1,ee8aae 93f1,e2ae 000093f1,0000e2ae fe7a * * fe7a * * fe7a
+17067 * * * * * * * 6a2c e6a8ac,ee8aaf 6a2c,e2af 00006a2c,0000e2af fe7b * * fe7b * * fe7b
+17068 * * * * * * * 7482 e79282,ee8ab0 7482,e2b0 00007482,0000e2b0 fe7c * * fe7c * * fe7c
+17069 * * * * * * * 4953 e4a593,ee8ab1 4953,e2b1 00004953,0000e2b1 fe7d * * fe7d * * fe7d
+17070 * * * * * * * e2b2 f0a4aa8c,ee8ab2 d852de8c,e2b2 00024a8c,0000e2b2 fe7e * * fe7e * * fe7e
+17071 * * * * * * * e2b3 f0a4859f,ee8ab3 d850dd5f,e2b3 0002415f,0000e2b3 fea1 * * fea1 * * fea1
+17072 * * * * * * * e2b4 f0a4a9b9,ee8ab4 d852de79,e2b4 00024a79,0000e2b4 fea2 * * fea2 * * fea2
+17073 * * * * * * * e2b5 f0a8ae8f,ee8ab5 d862df8f,e2b5 00028b8f,0000e2b5 fea3 * * fea3 * * fea3
+17074 * * * * * * * 5b46 e5ad86,ee8ab6 5b46,e2b6 00005b46,0000e2b6 fea4 * * fea4 * * fea4
+17075 * * * * * * * e2b7 f0a8b083,ee8ab7 d863dc03,e2b7 00028c03,0000e2b7 fea5 * * fea5 * * fea5
+17076 * * * * * * * e2b8 f0a1a29e,ee8ab8 d846dc9e,e2b8 0002189e,0000e2b8 fea6 * * fea6 * * fea6
+17077 * * * * * * * 74c8 e79388,ee8ab9 74c8,e2b9 000074c8,0000e2b9 fea7 * * fea7 * * fea7
+17078 * * * * * * * e2ba f0a1a688,ee8aba d846dd88,e2ba 00021988,0000e2ba fea8 * * fea8 * * fea8
+17079 * * * * * * * 750e e7948e,ee8abb 750e,e2bb 0000750e,0000e2bb fea9 fd45 9049 fea9 * * fea9
+17080 * * * * * * * 751e e7949e,ee8abd 751e,e2bd 0000751e,0000e2bd feab fd47 9047 feab * * feab
+17081 * * * * * * * e2be f0a8bb99,ee8abe d863ded9,e2be 00028ed9,0000e2be feac * * feac * * feac
+17082 * * * * * * * e2bf f0a1a98b,ee8abf d846de4b,e2bf 00021a4b,0000e2bf fead * * fead * * fead
+17083 * * * * * * * 5bd7 e5af97,ee8b80 5bd7,e2c0 00005bd7,0000e2c0 feae * * feae * faf7 feae
+17084 * * * * * * * e2c1 f0a8baac,ee8b81 d863deac,e2c1 00028eac,0000e2c1 feaf * * feaf * * feaf
+17085 * * * * * * * 9385 e98e85,ee8b82 9385,e2c2 00009385,0000e2c2 feb0 fadb * feb0 c8de fccd feb0
+17086 * * * * * * * 754d e7958d,ee8b83 754d,e2c3 0000754d,0000e2c3 feb1 * * feb1 * * feb1
+17087 * * * * * * * 754a e7958a,ee8b84 754a,e2c4 0000754a,0000e2c4 feb2 fd49 8fb1 feb2 * * feb2
+17088 * * * * * * * 7567 e795a7,ee8b85 7567,e2c5 00007567,0000e2c5 feb3 * * feb3 * * feb3
+17089 * * * * * * * 756e e795ae,ee8b86 756e,e2c6 0000756e,0000e2c6 feb4 * * feb4 * * feb4
+17090 * * * * * * * e2c7 f0a4be82,ee8b87 d853df82,e2c7 00024f82,0000e2c7 feb5 * * feb5 * * feb5
+17091 * * * * * * * 3f04 e3bc84,ee8b88 3f04,e2c8 00003f04,0000e2c8 feb6 * * feb6 * * feb6
+17092 * * * * * * * e2c9 f0a4b493,ee8b89 d853dd13,e2c9 00024d13,0000e2c9 feb7 * * feb7 * * feb7
+17093 * * * * * * * 758e e7968e,ee8b8a 758e,e2ca 0000758e,0000e2ca feb8 fd4c 925c feb8 * fbe2 feb8
+17094 * * * * * * * 745d e7919d,ee8b8b 745d,e2cb 0000745d,0000e2cb feb9 fcfb 8ff9 feb9 * * feb9
+17095 * * * * * * * 759e e7969e,ee8b8c 759e,e2cc 0000759e,0000e2cc feba * * feba * * feba
+17096 * * * * * * * 75b4 e796b4,ee8b8d 75b4,e2cd 000075b4,0000e2cd febb faaa 8e4f febb c86d fbe3 febb
+17097 * * * * * * * 7602 e79882,ee8b8e 7602,e2ce 00007602,0000e2ce febc fd6f 8ff6 febc * * febc
+17098 * * * * * * * 762c e798ac,ee8b8f 762c,e2cf 0000762c,0000e2cf febd * * febd * * febd
+17099 * * * * * * * 7651 e79991,ee8b90 7651,e2d0 00007651,0000e2d0 febe * * febe * * febe
+17100 * * * * * * * 764f e7998f,ee8b91 764f,e2d1 0000764f,0000e2d1 febf * * febf * * febf
+17101 * * * * * * * 766f e799af,ee8b92 766f,e2d2 0000766f,0000e2d2 fec0 fd72 8fcc fec0 * * fec0
+17102 * * * * * * * * ee8b93 e2d3 0000e2d3 fec1 * * fec1 * * fec1
+17103 * * * * * * * e2d4 f0a68fb5,ee8b94 d858dff5,e2d4 000263f5,0000e2d4 fec2 * * fec2 * * fec2
+17104 * * * * * * * 7690 e79a90,ee8b95 7690,e2d5 00007690,0000e2d5 fec3 fd4e 8e57 fec3 * * fec3
+17105 * * * * * * * 81ef e887af,ee8b96 81ef,e2d6 000081ef,0000e2d6 fec4 * * fec4 * * fec4
+17106 * * * * * * * 37f8 e39fb8,ee8b97 37f8,e2d7 000037f8,0000e2d7 fec5 * * fec5 * * fec5
+17107 * * * * * * * e2d8 f0a6a491,ee8b98 d85add11,e2d8 00026911,0000e2d8 fec6 * * fec6 * * fec6
+17108 * * * * * * * e2d9 f0a6a48e,ee8b99 d85add0e,e2d9 0002690e,0000e2d9 fec7 fdc7 8fe3 fec7 * * fec7
+17109 * * * * * * * 76a1 e79aa1,ee8b9a 76a1,e2da 000076a1,0000e2da fec8 fd4d 8fbb fec8 * * fec8
+17110 * * * * * * * 76a5 e79aa5,ee8b9b 76a5,e2db 000076a5,0000e2db fec9 * * fec9 * * fec9
+17111 * * * * * * * 76b7 e79ab7,ee8b9c 76b7,e2dc 000076b7,0000e2dc feca * * feca * * feca
+17112 * * * * * * * 76cc e79b8c,ee8b9d 76cc,e2dd 000076cc,0000e2dd fecb fd4f 8fac fecb * fbf1 fecb
+17113 * * * * * * * e2de f0a6be9f,ee8b9e d85bdf9f,e2de 00026f9f,0000e2de fecc * * fecc * * fecc
+17114 * * * * * * * 8462 e891a2,ee8b9f 8462,e2df 00008462,0000e2df fecd * * fecd * * fecd
+17115 * * * * * * * e2e0 f0a5829d,ee8ba0 d854dc9d,e2e0 0002509d,0000e2e0 fece * * fece * * fece
+17116 * * * * * * * e2e1 f0a585bd,ee8ba1 d854dd7d,e2e1 0002517d,0000e2e1 fecf * * fecf * * fecf
+17117 * * * * * * * e2e2 f0a1b89c,ee8ba2 d847de1c,e2e2 00021e1c,0000e2e2 fed0 * * fed0 * * fed0
+17118 * * * * * * * 771e e79c9e,ee8ba3 771e,e2e3 0000771e,0000e2e3 fed1 * * fed1 * * fed1
+17119 * * * * * * * 7726 e79ca6,ee8ba4 7726,e2e4 00007726,0000e2e4 fed2 fd53 91e0 fed2 * * fed2
+17120 * * * * * * * 7740 e79d80,ee8ba5 7740,e2e5 00007740,0000e2e5 fed3 faa6 9258 fed3 c875 fbf3 fed3
+17121 * * * * * * * 64af e692af,ee8ba6 64af,e2e6 000064af,0000e2e6 fed4 * * fed4 * * fed4
+17122 * * * * * * * e2e7 f0a588a0,ee8ba7 d854de20,e2e7 00025220,0000e2e7 fed5 * * fed5 * * fed5
+17123 * * * * * * * 7758 e79d98,ee8ba8 7758,e2e8 00007758,0000e2e8 fed6 * * fed6 * * fed6
+17124 * * * * * * * e2e9 f0a38aac,ee8ba9 d84cdeac,e2e9 000232ac,0000e2e9 fed7 * * fed7 * * fed7
+17125 * * * * * * * 77af e79eaf,ee8baa 77af,e2ea 000077af,0000e2ea fed8 * * fed8 * * fed8
+17126 * * * * * * * e2eb f0a8a5a4,ee8bab d862dd64,e2eb 00028964,0000e2eb fed9 * * fed9 * * fed9
+17127 * * * * * * * e2ec f0a8a5a8,ee8bac d862dd68,e2ec 00028968,0000e2ec feda * * feda * * feda
+17128 * * * * * * * e2ed f0a19b81,ee8bad d845dec1,e2ed 000216c1,0000e2ed fedb * * fedb * * fedb
+17129 * * * * * * * 77f4 e79fb4,ee8bae 77f4,e2ee 000077f4,0000e2ee fedc * * fedc * * fedc
+17130 * * * * * * * * * * * * * * fedd * * *
+17131 * * * * * * * 68ca e6a38a,ee8bb2 68ca,e2f2 000068ca,0000e2f2 fee0 fcb8 8e7b fee0 * * fee0
+17132 * * * * * * * 78af e7a2af,ee8bb3 78af,e2f3 000078af,0000e2f3 fee1 fd5b 8e52 fee1 * fc40 fee1
+17133 * * * * * * * 78c7 e7a387,ee8bb4 78c7,e2f4 000078c7,0000e2f4 fee2 * * fee2 * * fee2
+17134 * * * * * * * 78d3 e7a393,ee8bb5 78d3,e2f5 000078d3,0000e2f5 fee3 fd57 91e3 fee3 * * fee3
+17135 * * * * * * * 96a5 e99aa5,ee8bb6 96a5,e2f6 000096a5,0000e2f6 fee4 * * fee4 * * fee4
+17136 * * * * * * * 792e e7a4ae,ee8bb7 792e,e2f7 0000792e,0000e2f7 fee5 fd5d 9041 fee5 c87a fc41 fee5
+17137 * * * * * * * e2f8 f0a597a0,ee8bb8 d855dde0,e2f8 000255e0,0000e2f8 fee6 * * fee6 * * fee6
+17138 * * * * * * * 78d7 e7a397,ee8bb9 78d7,e2f9 000078d7,0000e2f9 fee7 * * fee7 * * fee7
+17139 * * * * * * * 7934 e7a4b4,ee8bba 7934,e2fa 00007934,0000e2fa fee8 * * fee8 * * fee8
+17140 * * * * * * * 78b1 e7a2b1,ee8bbb 78b1,e2fb 000078b1,0000e2fb fee9 fd58 8ec7 fee9 * fbfd fee9
+17141 * * * * * * * e2fc f0a7988c,ee8bbc d85dde0c,e2fc 0002760c,0000e2fc feea * * feea * * feea
+17142 * * * * * * * 8fb8 e8beb8,ee8bbd 8fb8,e2fd 00008fb8,0000e2fd feeb * * feeb * * feeb
+17143 * * * * * * * 8884 e8a284,ee8bbe 8884,e2fe 00008884,0000e2fe feec * * feec * * feec
+17144 * * * * * * * e301 f0a2989c,ee8c81 d849de1c,e301 0002261c,0000e301 feef * * feef * * feef
+17145 * * * * * * * 7986 e7a686,ee8c82 7986,e302 00007986,0000e302 fef0 * * fef0 * * fef0
+17146 * * * * * * * 8900 e8a480,ee8c83 8900,e303 00008900,0000e303 fef1 * * fef1 * * fef1
+17147 * * * * * * * 6902 e6a482,ee8c84 6902,e304 00006902,0000e304 fef2 * * fef2 * * fef2
+17148 * * * * * * * 7980 e7a680,ee8c85 7980,e305 00007980,0000e305 fef3 * * fef3 * * fef3
+17149 * * * * * * * e306 f0a5a197,ee8c86 d856dc57,e306 00025857,0000e306 fef4 * * fef4 * * fef4
+17150 * * * * * * * 799d e7a69d,ee8c87 799d,e307 0000799d,0000e307 fef5 fb54,fd60 8efa fef5 c87c fc44 fef5
+17151 * * * * * * * e308 f0a7acb9,ee8c88 d85edf39,e308 00027b39,0000e308 fef6 * * fef6 * * fef6
+17152 * * * * * * * 793c e7a4bc,ee8c89 793c,e309 0000793c,0000e309 fef7 * * fef7 * * fef7
+17153 * * * * * * * 79a9 e7a6a9,ee8c8a 79a9,e30a 000079a9,0000e30a fef8 fd61 8ef6 fef8 * * fef8
+17154 * * * * * * * 6e2a e6b8aa,ee8c8b 6e2a,e30b 00006e2a,0000e30b fef9 * * fef9 * * fef9
+17155 * * * * * * * e30c f0a784a6,ee8c8c d85cdd26,e30c 00027126,0000e30c fefa * * fefa * * fefa
+17156 * * * * * * * 3ea8 e3baa8,ee8c8d 3ea8,e30d 00003ea8,0000e30d fefb * * fefb * * fefb
+17157 * * * * * * * 79c6 e7a786,ee8c8e 79c6,e30e 000079c6,0000e30e fefc * * fefc c87d fc45 fefc
+17158 * * * * * * * e30f f0a9848d,ee8c8f d864dd0d,e30f 0002910d,0000e30f fefd * * fefd * * fefd
+17159 * * * * * * * 79d4 e7a794,ee8c90 79d4,e310 000079d4,0000e310 fefe fd63 91e7 fefe * * fefe
+17160 * * * * * * * * * * * * * * 8a40 * * *
+17161 * * * * * * * 5525 e594a5,ef90be 5525,f43e 00005525,0000f43e 8a41 * * 8a41 * * 8a41
+17162 * * * * * * * * * * * * * * 8a42 * * *
+17163 * * * * * * * f440 f0a0b182,ef9180 d843dc42,f440 00020c42,0000f440 8a43 * * 8a43 * * 8a43
+17164 * * * * * * * f441 f0a0b495,ef9181 d843dd15,f441 00020d15,0000f441 8a44 * * 8a44 * * 8a44
+17165 * * * * * * * f442 f0a584ab,ef9182 d854dd2b,f442 0002512b,0000f442 8a45 * * 8a45 * * 8a45
+17166 * * * * * * * 5590 e59690,ef9183 5590,f443 00005590,0000f443 8a46 * * 8a46 * * 8a46
+17167 * * * * * * * f444 f0a2b386,ef9184 d84bdcc6,f444 00022cc6,0000f444 8a47 * * 8a47 * * 8a47
+17168 * * * * * * * 39ec e3a7ac,ef9185 39ec,f445 000039ec,0000f445 8a48 * * 8a48 * * 8a48
+17169 * * * * * * * f446 f0a08d81,ef9186 d840df41,f446 00020341,0000f446 8a49 * * 8a49 * * 8a49
+17170 * * * * * * * 8e46 e8b986,ef9187 8e46,f447 00008e46,0000f447 8a4a * * 8a4a * * 8a4a
+17171 * * * * * * * f448 f0a4b6b8,ef9188 d853ddb8,f448 00024db8,0000f448 8a4b * * 8a4b * * 8a4b
+17172 * * * * * * * f449 f0a993a5,ef9189 d865dce5,f449 000294e5,0000f449 8a4c * * 8a4c * * 8a4c
+17173 * * * * * * * * * * * * * * 8a4d * * *
+17174 * * * * * * * f44b f0a882be,ef918b d860dcbe,f44b 000280be,0000f44b 8a4e * * 8a4e * * 8a4e
+17175 * * * * * * * 777a e79dba,ef918c 777a,f44c 0000777a,0000f44c 8a4f * * 8a4f * fbf5 8a4f
+17176 * * * * * * * f44d f0a2b0b8,ef918d d84bdc38,f44d 00022c38,0000f44d 8a50 * * 8a50 * * 8a50
+17177 * * * * * * * 3a34 e3a8b4,ef918e 3a34,f44e 00003a34,0000f44e 8a51 * * 8a51 * * 8a51
+17178 * * * * * * * 47d5 e49f95,ef918f 47d5,f44f 000047d5,0000f44f 8a52 * * 8a52 * * 8a52
+17179 * * * * * * * f450 f0a8859d,ef9190 d860dd5d,f450 0002815d,0000f450 8a53 * * 8a53 * * 8a53
+17180 * * * * * * * f451 f0a6a7b2,ef9191 d85addf2,f451 000269f2,0000f451 8a54 * * 8a54 * * 8a54
+17181 * * * * * * * f452 f0a4b7aa,ef9192 d853ddea,f452 00024dea,0000f452 8a55 * * 8a55 * * 8a55
+17182 * * * * * * * 64dd e6939d,ef9193 64dd,f453 000064dd,0000f453 8a56 * * 8a56 * * 8a56
+17183 * * * * * * * f454 f0a0b5bc,ef9194 d843dd7c,f454 00020d7c,0000f454 8a57 * * 8a57 * * 8a57
+17184 * * * * * * * f455 f0a0beb4,ef9195 d843dfb4,f455 00020fb4,0000f455 8a58 * * 8a58 * * 8a58
+17185 * * * * * * * f456 f0a0b395,ef9196 d843dcd5,f456 00020cd5,0000f456 8a59 * * 8a59 * * 8a59
+17186 * * * * * * * * f0abaab3 d86edeb3 0002bab3 * * * 8a5a * * *
+17187 * * * * * * * 648d e6928d,ef9198 648d,f458 0000648d,0000f458 8a5b * * 8a5b * * 8a5b
+17188 * * * * * * * 8e7e e8b9be,ef9199 8e7e,f459 00008e7e,0000f459 8a5c * * 8a5c * * 8a5c
+17189 * * * * * * * f45a f0a0ba96,ef919a d843de96,f45a 00020e96,0000f45a 8a5d * * 8a5d * fac4 8a5d
+17190 * * * * * * * * * * * * * * 8a5e * * *
+17191 * * * * * * * f45c f0a0bda4,ef919c d843df64,f45c 00020f64,0000f45c 8a5f * * 8a5f * * 8a5f
+17192 * * * * * * * f45d f0a2b2a9,ef919d d84bdca9,f45d 00022ca9,0000f45d 8a60 * * 8a60 * * 8a60
+17193 * * * * * * * f45e f0a88996,ef919e d860de56,f45e 00028256,0000f45e 8a61 * * 8a61 * * 8a61
+17194 * * * * * * * f45f f0a49393,ef919f d851dcd3,f45f 000244d3,0000f45f 8a62 * * 8a62 * * 8a62
+17195 * * * * * * * * * * * * * * 8a63 * * *
+17196 * * * * * * * f461 f0a0b586,ef91a1 d843dd46,f461 00020d46,0000f461 8a64 * * 8a64 c778 fab2 8a64
+17197 * * * * * * * f462 f0a9a98d,ef91a2 d866de4d,f462 00029a4d,0000f462 8a65 * * 8a65 * * 8a65
+17198 * * * * * * * f463 f0a883a9,ef91a3 d860dce9,f463 000280e9,0000f463 8a66 * * 8a66 * * 8a66
+17199 * * * * * * * 47f4 e49fb4,ef91a4 47f4,f464 000047f4,0000f464 8a67 * * 8a67 * * 8a67
+17200 * * * * * * * f465 f0a4baa7,ef91a5 d853dea7,f465 00024ea7,0000f465 8a68 * * 8a68 * * 8a68
+17201 * * * * * * * f466 f0a2b382,ef91a6 d84bdcc2,f466 00022cc2,0000f466 8a69 * * 8a69 * * 8a69
+17202 * * * * * * * 9ab2 e9aab2,ef91a7 9ab2,f467 00009ab2,0000f467 8a6a * * 8a6a * * 8a6a
+17203 * * * * * * * 3a67 e3a9a7,ef91a8 3a67,f468 00003a67,0000f468 8a6b * * 8a6b * * 8a6b
+17204 * * * * * * * f469 f0a997b4,ef91a9 d865ddf4,f469 000295f4,0000f469 8a6c * * 8a6c * * 8a6c
+17205 * * * * * * * 3fed e3bfad,ef91aa 3fed,f46a 00003fed,0000f46a 8a6d * * 8a6d * * 8a6d
+17206 * * * * * * * 3506 e39486,ef91ab 3506,f46b 00003506,0000f46b 8a6e * * 8a6e * * 8a6e
+17207 * * * * * * * f46c f0a58b87,ef91ac d854dec7,f46c 000252c7,0000f46c 8a6f * * 8a6f * * 8a6f
+17208 * * * * * * * f46d f0a99f94,ef91ad d865dfd4,f46d 000297d4,0000f46d 8a70 * * 8a70 * * 8a70
+17209 * * * * * * * * * * * * * * 8a71 * * *
+17210 * * * * * * * f46f f0a2b584,ef91af d84bdd44,f46f 00022d44,0000f46f 8a72 * * 8a72 * * 8a72
+17211 * * * * * * * 9d6e e9b5ae,ef91b0 9d6e,f470 00009d6e,0000f470 8a73 * * 8a73 * * 8a73
+17212 * * * * * * * 9815 e9a095,ef91b1 9815,f471 00009815,0000f471 8a74 * * 8a74 * * 8a74
+17213 * * * * * * * * f0abb397 d86fdcd7 0002bcd7 * * * 8a75 * * *
+17214 * * * * * * * 43d9 e48f99,ef91b3 43d9,f473 000043d9,0000f473 8a76 * * 8a76 * * 8a76
+17215 * * * * * * * * * * * * * * 8a77 * * *
+17216 * * * * * * * 64b4 e692b4,ef91b5 64b4,f475 000064b4,0000f475 8a78 * * 8a78 * * 8a78
+17217 * * * * * * * 54e3 e593a3,ef91b6 54e3,f476 000054e3,0000f476 8a79 * * 8a79 * * 8a79
+17218 * * * * * * * * * * * * * * 8a7a * * *
+17219 * * * * * * * f478 ef91b8,f0a2af8a d84adfca,f478 0000f478,00022bca 8a7b * * 8a7b * * 8a7b
+17220 * * * * * * * * * * * * * * 8a7c * * *
+17221 * * * * * * * 39fb e3a7bb,ef91ba 39fb,f47a 000039fb,0000f47a 8a7d * * 8a7d * * 8a7d
+17222 * * * * * * * * f0aba5b7 d86edd77 0002b977 * * * 8a7e * * *
+17223 * * * * * * * f47c f0a69b9a,ef91bc d859deda,f47c 000266da,0000f47c 8aa1 * * 8aa1 * * 8aa1
+17224 * * * * * * * f47d f0a69c96,ef91bd d859df16,f47d 00026716,0000f47d 8aa2 * * 8aa2 * * 8aa2
+17225 * * * * * * * f47e f0a7a6a0,ef91be d85edda0,f47e 000279a0,0000f47e 8aa3 * * 8aa3 * * 8aa3
+17226 * * * * * * * 64ea e693aa,ef91bf 64ea,f47f 000064ea,0000f47f 8aa4 * * 8aa4 * * 8aa4
+17227 * * * * * * * f480 f0a58192,ef9280 d854dc52,f480 00025052,0000f480 8aa5 * * 8aa5 * * 8aa5
+17228 * * * * * * * f481 f0a0b183,ef9281 d843dc43,f481 00020c43,0000f481 8aa6 * * 8aa6 * * 8aa6
+17229 * * * * * * * 8e68 e8b9a8,ef9282 8e68,f482 00008e68,0000f482 8aa7 * * 8aa7 * * 8aa7
+17230 * * * * * * * * * * * * * * 8aa8 * * *
+17231 * * * * * * * f484 f0a8ad8c,ef9284 d862df4c,f484 00028b4c,0000f484 8aa9 * * 8aa9 * * 8aa9
+17232 * * * * * * * f485 f0a09cb1,ef9285 d841df31,f485 00020731,0000f485 8aaa * * 8aaa * * 8aaa
+17233 * * * * * * * * * * * * * * 8aab * * *
+17234 * * * * * * * 480b e4a08b,ef9287 480b,f487 0000480b,0000f487 8aac * * 8aac * * 8aac
+17235 * * * * * * * f488 f0a086a9,ef9288 d840dda9,f488 000201a9,0000f488 8aad * * 8aad * * 8aad
+17236 * * * * * * * 3ffa e3bfba,ef9289 3ffa,f489 00003ffa,0000f489 8aae * * 8aae * * 8aae
+17237 * * * * * * * 5873 e5a1b3,ef928a 5873,f48a 00005873,0000f48a 8aaf * * 8aaf * * 8aaf
+17238 * * * * * * * f48b f0a2b68d,ef928b d84bdd8d,f48b 00022d8d,0000f48b 8ab0 * * 8ab0 * fb72 8ab0
+17239 * * * * * * * * * * * * * * 8ab1 * * *
+17240 * * * * * * * f48d f0a49788,ef928d d851ddc8,f48d 000245c8,0000f48d 8ab2 * * 8ab2 * * 8ab2
+17241 * * * * * * * f48e f0a093bc,ef928e d841dcfc,f48e 000204fc,0000f48e 8ab3 * * 8ab3 * * 8ab3
+17242 * * * * * * * f48f f0a68297,ef928f d858dc97,f48f 00026097,0000f48f 8ab4 * * 8ab4 * * 8ab4
+17243 * * * * * * * f490 f0a0bd8c,ef9290 d843df4c,f490 00020f4c,0000f490 8ab5 * * 8ab5 * * 8ab5
+17244 * * * * * * * * * * * * * * 8ab6 * * *
+17245 * * * * * * * 5579 e595b9,ef9292 5579,f492 00005579,0000f492 8ab7 * * 8ab7 * * 8ab7
+17246 * * * * * * * * * * * * * * 8ab8 * * *
+17247 * * * * * * * 43ba e48eba,ef9294 43ba,f494 000043ba,0000f494 8ab9 * * 8ab9 * * 8ab9
+17248 * * * * * * * * * * * * * * 8aba * * *
+17249 * * * * * * * 4ab4 e4aab4,ef9296 4ab4,f496 00004ab4,0000f496 8abb * * 8abb * * 8abb
+17250 * * * * * * * f497 f0a2a9a6,ef9297 d84ade66,f497 00022a66,0000f497 8abc * * 8abc * * 8abc
+17251 * * * * * * * f498 f0a1829d,ef9298 d844dc9d,f498 0002109d,0000f498 8abd * * 8abd * * 8abd
+17252 * * * * * * * 81aa e886aa,ef9299 81aa,f499 000081aa,0000f499 8abe * * 8abe * * 8abe
+17253 * * * * * * * 98f5 e9a3b5,ef929a 98f5,f49a 000098f5,0000f49a 8abf * * 8abf * * 8abf
+17254 * * * * * * * f49b f0a0b69c,ef929b d843dd9c,f49b 00020d9c,0000f49b 8ac0 * * 8ac0 * * 8ac0
+17255 * * * * * * * 6379 e68db9,ef929c 6379,f49c 00006379,0000f49c 8ac1 * * 8ac1 * * 8ac1
+17256 * * * * * * * 39fe e3a7be,ef929d 39fe,f49d 000039fe,0000f49d 8ac2 * * 8ac2 * * 8ac2
+17257 * * * * * * * f49e f0a29db5,ef929e d849df75,f49e 00022775,0000f49e 8ac3 * * 8ac3 * * 8ac3
+17258 * * * * * * * 8dc0 e8b780,ef929f 8dc0,f49f 00008dc0,0000f49f 8ac4 * * 8ac4 * * 8ac4
+17259 * * * * * * * 56a1 e59aa1,ef92a0 56a1,f4a0 000056a1,0000f4a0 8ac5 * * 8ac5 * * 8ac5
+17260 * * * * * * * 647c e691bc,ef92a1 647c,f4a1 0000647c,0000f4a1 8ac6 * * 8ac6 * * 8ac6
+17261 * * * * * * * 3e43 e3b983,ef92a2 3e43,f4a2 00003e43,0000f4a2 8ac7 * * 8ac7 * * 8ac7
+17262 * * * * * * * * * * * * * * 8ac8 * * *
+17263 * * * * * * * f4a4 f0aa9881,ef92a4 d869de01,f4a4 0002a601,0000f4a4 8ac9 * * 8ac9 * * 8ac9
+17264 * * * * * * * f4a5 f0a0b889,ef92a5 d843de09,f4a5 00020e09,0000f4a5 8aca * * 8aca * * 8aca
+17265 * * * * * * * f4a6 f0a2ab8f,ef92a6 d84adecf,f4a6 00022acf,0000f4a6 8acb * * 8acb * * 8acb
+17266 * * * * * * * * f0ac97b8 d871ddf8 0002c5f8 * * * 8acc * * *
+17267 * * * * * * * * * * * * * * 8acd * * *
+17268 * * * * * * * f4a9 f0a18388,ef92a9 d844dcc8,f4a9 000210c8,0000f4a9 8ace * * 8ace * * 8ace
+17269 * * * * * * * f4aa f0a3a782,ef92aa d84eddc2,f4aa 000239c2,0000f4aa 8acf * * 8acf * * 8acf
+17270 * * * * * * * 3992 e3a692,ef92ab 3992,f4ab 00003992,0000f4ab 8ad0 * * 8ad0 * * 8ad0
+17271 * * * * * * * 3a06 e3a886,ef92ac 3a06,f4ac 00003a06,0000f4ac 8ad1 * * 8ad1 * * 8ad1
+17272 * * * * * * * f4ad f0a88a9b,ef92ad d860de9b,f4ad 0002829b,0000f4ad 8ad2 * * 8ad2 * * 8ad2
+17273 * * * * * * * 3578 e395b8,ef92ae 3578,f4ae 00003578,0000f4ae 8ad3 * * 8ad3 * * 8ad3
+17274 * * * * * * * f4af f0a5b989,ef92af d857de49,f4af 00025e49,0000f4af 8ad4 * * 8ad4 * * 8ad4
+17275 * * * * * * * f4b0 f0a28387,ef92b0 d848dcc7,f4b0 000220c7,0000f4b0 8ad5 * * 8ad5 * * 8ad5
+17276 * * * * * * * * * * * * * * 8ad6 * * *
+17277 * * * * * * * * * * * * * * 8ad7 * * *
+17278 * * * * * * * f4b3 f0a2b2b2,ef92b3 d84bdcb2,f4b3 00022cb2,0000f4b3 8ad8 * * 8ad8 * * 8ad8
+17279 * * * * * * * f4b4 f0a99ca0,ef92b4 d865df20,f4b4 00029720,0000f4b4 8ad9 * * 8ad9 * * 8ad9
+17280 * * * * * * * 34bc e392bc,ef92b5 34bc,f4b5 000034bc,0000f4b5 8ada * * 8ada * * 8ada
+17281 * * * * * * * 6c3d e6b0bd,ef92b6 6c3d,f4b6 00006c3d,0000f4b6 8adb * * 8adb * * 8adb
+17282 * * * * * * * f4b7 f0a4b8bb,ef92b7 d853de3b,f4b7 00024e3b,0000f4b7 8adc * * 8adc * * 8adc
+17283 * * * * * * * * f0aca6a0 d872dda0 0002c9a0 * * * 8add * * *
+17284 * * * * * * * * * * * * * * 8ade * * *
+17285 * * * * * * * f4ba f0a795b4,ef92ba d85ddd74,f4ba 00027574,0000f4ba 8adf * * 8adf * * 8adf
+17286 * * * * * * * f4bb f0a2ba8b,ef92bb d84bde8b,f4bb 00022e8b,0000f4bb 8ae0 * * 8ae0 * * 8ae0
+17287 * * * * * * * f4bc f0a28888,ef92bc d848de08,f4bc 00022208,0000f4bc 8ae1 * * 8ae1 * * 8ae1
+17288 * * * * * * * f4bd f0aa999b,ef92bd d869de5b,f4bd 0002a65b,0000f4bd 8ae2 * * 8ae2 * * 8ae2
+17289 * * * * * * * f4be f0a8b38d,ef92be d863dccd,f4be 00028ccd,0000f4be 8ae3 * * 8ae3 * * 8ae3
+17290 * * * * * * * f4bf f0a0b9ba,ef92bf d843de7a,f4bf 00020e7a,0000f4bf 8ae4 * * 8ae4 * * 8ae4
+17291 * * * * * * * f4c0 ef9380,f0a0b0b4 d843dc34,f4c0 00020c34,0000f4c0 8ae5 * * 8ae5 * * 8ae5
+17292 * * * * * * * f4db f0a798b9,ef939b d85dde39,f4db 00027639,0000f4db 8b41 * * 8b41 * * 8b41
+17293 * * * * * * * f4dc f0a2af8e,ef939c d84adfce,f4dc 00022bce,0000f4dc 8b42 * * 8b42 * * 8b42
+17294 * * * * * * * f4df ef939f,f0a2b191 d84bdc51,f4df 0000f4df,00022c51 8b45 * * 8b45 * * 8b45
+17295 * * * * * * * 3a18 e3a898,ef93a1 3a18,f4e1 00003a18,0000f4e1 8b47 * * 8b47 * fb6d 8b47
+17296 * * * * * * * f4e3 ef93a3,f0a18387 d844dcc7,f4e3 0000f4e3,000210c7 8b49 * * 8b49 * * 8b49
+17297 * * * * * * * f4e5 ef93a5,f0aa98b2 d869de32,f4e5 0000f4e5,0002a632 8b4b * * 8b4b * * 8b4b
+17298 * * * * * * * f4e7 f0a8b392,ef93a7 d863dcd2,f4e7 00028cd2,0000f4e7 8b4d * * 8b4d * * 8b4d
+17299 * * * * * * * f4e8 f0a8b699,ef93a8 d863dd99,f4e8 00028d99,0000f4e8 8b4e * * 8b4e * * 8b4e
+17300 * * * * * * * f4e9 f0a8b38a,ef93a9 d863dcca,f4e9 00028cca,0000f4e9 8b4f * * 8b4f * * 8b4f
+17301 * * * * * * * 95aa e996aa,ef93aa 95aa,f4ea 000095aa,0000f4ea 8b50 * * 8b50 * * 8b50
+17302 * * * * * * * * * * * * fbe4 * 8b54 * * *
+17303 * * * * * * * f4f2 ef93b2,f0a79d9e d85ddf5e,f4f2 0000f4f2,0002775e 8b58 * * 8b58 * * 8b58
+17304 * * * * * * * 7140 e78580,ef93b4 7140,f4f4 00007140,0000f4f4 8b5a * * 8b5a * * 8b5a
+17305 * * * * * * * * * * * * fae1 * * c742 fa42 *
+17306 * * * * * * * 5156 e58596,ef8eb1 5156,f3b1 00005156,0000f3b1 8951 * * * * fa45 8951
+17307 * * * * * * * * e4bbbe 4efe 00004efe * * * * c747 fa4a *
+17308 * * * * * * * 5088 e58288,ef9097 5088,f417 00005088,0000f417 89d9 * * * * fa4e 89d9
+17309 * * * * * * * * * * * * * * * c749 fa50 *
+17310 * * * * * * * 3493 e39293,ef9099 3493,f419 00003493,0000f419 89db * * * * fa52 89db
+17311 * * * * * * * 5186 e58686,ef909b 5186,f41b 00005186,0000f41b 89dd * * * c74b fa53 89dd
+17312 * * * * * * * 5e42 e5b982,ef98bd 5e42,f63d 00005e42,0000f63d 8d69 * * * * fa56 8d69
+17313 * * * * * * * 5205 e58885,ef909f 5205,f41f 00005205,0000f41f 89e1 * * * * fa5f 89e1
+17314 * * * * * * * 5227 e588a7,ef8fa4 5227,f3e4 00005227,0000f3e4 89a6 * * * c753 fa60 89a6
+17315 * * * * * * * 5279 e589b9,ef90a1 5279,f421 00005279,0000f421 89e3 * * * * fa64 89e3
+17316 * * * * * * * * f0afa0a8 d87edc28 0002f828 * * * * c75a fa6a *
+17317 * * * * * * * 3553 e39593,ef90a8 3553,f428 00003553,0000f428 89ea * * * * fa70 89ea
+17318 * * * * * * * 53c2 e58f82,ef90a9 53c2,f429 000053c2,0000f429 89eb * * * c75f fa72 89eb
+17319 * * * * * * * 535f e58d9f,ef93bb 535f,f4fb 0000535f,0000f4fb 8b61 * * * c762 fa76 8b61
+17320 * * * * * * * 54cc * * * * * * * c76e faa7 *
+17321 * * * * * * * 553f e594bf,ef90b8 553f,f438 0000553f,0000f438 89fa * * * c779 fab3 89fa
+17322 * * * * * * * 55b9 * * * * * * * * fabb *
+17323 * * * * * * * 55d8 e59798,eea992 55d8,ea52 000055d8,0000ea52 99e4 * * * c7a5 fabe 99e4
+17324 * * * * * * * 35dd e3979d,ef9482 35dd,f502 000035dd,0000f502 8b68 * * * c7a7 fac0 8b68
+17325 * * * * * * * 5621 e598a1,ef999b 5621,f65b 00005621,0000f65b 8da9 * * * c7ae fac8 8da9
+17326 * * * * * * * 5553 * * * * * * * c7b1 facb *
+17327 * * * * * * * 5654 e59994,eeaa8c 5654,ea8c 00005654,0000ea8c 9a5f fbe1 917b * c7b6 fad0 9a5f
+17328 * * * * * * * eaf4 eeabb4,f0a181bb d844dc7b,eaf4 0000eaf4,0002107b 9ae9 * * * * fad8 9ae9
+17329 * * * * * * * * * * * * * * * c7be fadc *
+17330 * * * * * * * eaf9 eeabb9,f0a18393 d844dcd3,eaf9 0000eaf9,000210d3 9aee * * * c7bf fadd 9aee
+17331 * * * * * * * * * * * * * * * * fade *
+17332 * * * * * * * eea7 eebaa7,f0a18bbe d844defe,eea7 0000eea7,000212fe a0ee * * * c7c4 fae4 a0ee
+17333 * * * * * * * 5acf * * * * * * * c7cc faf1 *
+17334 * * * * * * * * * * * * * * * * faf9 *
+17335 * * * * * * * 37b9 e39eb9,eeab88 37b9,eac8 000037b9,0000eac8 9abd * * * * fafb 9abd
+17336 * * * * * * * 5cc1 e5b381,eebaab 5cc1,eeab 00005cc1,0000eeab a0f2 * * * * fafc a0f2
+17337 * * * * * * * 5d15 e5b495,ef999a 5d15,f65a 00005d15,0000f65a 8da8 * * * * fb41 8da8
+17338 * * * * * * * 5d56 e5b596,ef98b6 5d56,f636 00005d56,0000f636 8d62 * * * * fb43 8d62
+17339 * * * * * * * 3838 e3a0b8,ef98bc 3838,f63c 00003838,0000f63c 8d68 * * * * fb47 8d68
+17340 * * * * * * * 4e81 e4ba81,ef908d 4e81,f40d 00004e81,0000f40d 89cf * * * c7d7 fb49 89cf
+17341 * * * * * * * 5ebd e5babd,ef98be 5ebd,f63e 00005ebd,0000f63e 8d6a * * * c7d8 fb4b 8d6a
+17342 * * * * * * * 3914 e3a494,ef9982 3914,f642 00003914,0000f642 8d6e * * * * fb55 8d6e
+17343 * * * * * * * 61b9 e686b9,ef998a 61b9,f64a 000061b9,0000f64a 8d76 * * * * fb5d 8d76
+17344 * * * * * * * 6290 e68a90,ef998e 6290,f64e 00006290,0000f64e 8d7a * * * * fb61 8d7a
+17345 * * * * * * * 6318 e68c98,ef9990 6318,f650 00006318,0000f650 8d7c * * * c7ec fb65 8d7c
+17346 * * * * * * * 645a e6919a,ef9997 645a,f657 0000645a,0000f657 8da5 * * * c7f5 fb70 8da5
+17347 * * * * * * * 6491 e69291,ef8ead 6491,f3ad 00006491,0000f3ad 894d * * * c7f6 fb71 894d
+17348 * * * * * * * 816d e885ad,ef93b5 816d,f4f5 0000816d,0000f4f5 8b5b * * * * fba4 8b5b
+17349 * * * * * * * 8184 e88684,eea892 8184,ea12 00008184,0000ea12 99a4 * * * * fba5 99a4
+17350 * * * * * * * 8193 e88693,eea894 8193,ea14 00008193,0000ea14 99a6 * * * * fba7 99a6
+17351 * * * * * * * 6800 e6a080,ef99a8 6800,f668 00006800,0000f668 8db6 * * * * fbab 8db6
+17352 * * * * * * * 3bbc e3aebc,ef99b5 3bbc,f675 00003bbc,0000f675 8dc3 * * * * fbb1 8dc3
+17353 * * * * * * * 728f e78a8f,eeb1a5 728f,ec65 0000728f,0000ec65 9d61 * * * * fbd4 9d61
+17354 * * * * * * * 72cd e78b8d,eea685 72cd,e985 000072cd,0000e985 98b4 * * * c863 fbd5 98b4
+17355 * * * * * * * * f0a49faf d851dfef 000247ef * * * * c866 fbd8 *
+17356 * * * * * * * 7339 e78cb9,eea689 7339,e989 00007339,0000e989 98b8 * * * c867 fbd9 98b8
+17357 * * * * * * * 7542 e79582,eea6a3 7542,e9a3 00007542,0000e9a3 98d2 * * * * fbe1 98d2
+17358 * * * * * * * 75dc e7979c,eea6a9 75dc,e9a9 000075dc,0000e9a9 98d8 * * * c86f fbe5 98d8
+17359 * * * * * * * 3fc0 e3bf80,eea6aa 3fc0,e9aa 00003fc0,0000e9aa 98d9 * * * c871 fbe7 98d9
+17360 * * * * * * * eb76 eeadb6,f0a4baa5 d853dea5,eb76 0000eb76,00024ea5 9bce * * * * fbea 9bce
+17361 * * * * * * * 3fd7 e3bf97,eea6ac 3fd7,e9ac 00003fd7,0000e9ac 98db * * * * fbec 98db
+17362 * * * * * * * * * * * * fd73 * * * fbee *
+17363 * * * * * * * 7680 e79a80 7680 00007680 * * * * c874 fbef *
+17364 * * * * * * * 768c,e9b0 e79a8c,eea6b0,f0a4bd9c 768c,d853df5c,e9b0 0000768c,0000e9b0,00024f5c 98df * * * * fbf0 98df
+17365 * * * * * * * 40a8 e482a8,eea785 40a8,e9c5 000040a8,0000e9c5 98f4 * * * * fbf9 98f4
+17366 * * * * * * * 7839 e7a0b9,eea786 7839,e9c6 00007839,0000e9c6 98f5 * * * * fbfa 98f5
+17367 * * * * * * * 4103 e48483,eea78f 4103,e9cf 00004103,0000e9cf 98fe * * * * fc43 98fe
+17368 * * * * * * * 7a91 e7aa91,eea797 7a91,e9d7 00007a91,0000e9d7 9947 * * * * fc4a 9947
+17369 * * * * * * * 7c1b e7b09b,eea7a4 7c1b,e9e4 00007c1b,0000e9e4 9954 * * * * fc51 9954
+17370 * * * * * * * 7ced e7b3ad,eea7ac 7ced,e9ec 00007ced,0000e9ec 995c * * * c8a6 fc56 995c
+17371 * * * * * * * 7f93 e7be93,ef9382 7f93,f4c2 00007f93,0000f4c2 8ae7 * * * c8ae fc62 8ae7
+17372 * * * * * * * 7fae e7beae,eea7b4 7fae,e9f4 00007fae,0000e9f4 9964 * * * c8b0 fc64 9964
+17373 * * * * * * * * * * * * * * * * fc68 *
+17374 * * * * * * * 82ff e88bbf,eea8a0 82ff,ea20 000082ff,0000ea20 99b2 * * * * fc6a 99b2
+17375 * * * * * * * 585f e5a19f,eea98d 585f,ea4d 0000585f,0000ea4d 99df * * * * fc6e 99df
+17376 * * * * * * * 86b2 e89ab2,eea8b8 86b2,ea38 000086b2,0000ea38 99ca * * * * fc74 99ca
+17377 * * * * * * * * e496ac 45ac 000045ac * * * * * fc75 *
+17378 * * * * * * * 878b e89e8b,eea8bb 878b,ea3b 0000878b,0000ea3b 99cd * * * * fc77 99cd
+17379 * * * * * * * 8947 e8a587,eea981 8947,ea41 00008947,0000ea41 99d3 * * * * fca6 99d3
+17380 * * * * * * * * * * * * * * * c8c3 fca8 *
+17381 * * * * * * * 8a29 e8a8a9,eea984 8a29,ea44 00008a29,0000ea44 99d6 * * * * fcab 99d6
+17382 * * * * * * * * * * * * fe49 * * * fcad *
+17383 * * * * * * * 8e71 e8b9b1,eea994 8e71,ea54 00008e71,0000ea54 99e6 * * * c8ca fcb4 99e6
+17384 * * * * * * * ec44 eeb184,f0a88689 d860dd89,ec44 0000ec44,00028189 9d40 * * * c8cb fcb5 9d40
+17385 * * * * * * * 8eb0 e8bab0,eea996 8eb0,ea56 00008eb0,0000ea56 99e8 * * * c8cd fcb7 99e8
+17386 * * * * * * * * f0ab90ac d86ddc2c 0002b42c * * * * * fcbf *
+17387 * * * * * * * 915e e9859e,ef8fab 915e,f3eb 0000915e,0000f3eb 89ad fe62 90c8 * * fcc1 89ad
+17388 * * * * * * * 918c e9868c,ef8fa9 918c,f3e9 0000918c,0000f3e9 89ab * * * * fcc5 89ab
+17389 * * * * * * * 990e e9a48e,eeaa93 990e,ea93 0000990e,0000ea93 9a66 * * * * fcda 9a66
+17390 * * * * * * * 991c e9a49c,eeaa96 991c,ea96 0000991c,0000ea96 9a69 * * * * fcdb 9a69
+17391 * * * * * * * 9962 * * * * * * * c8e8 fcdf *
+17392 * * * * * * * 9ab6 * * * * * * * * fce3 *
+17393 * * * * * * * 9b81 e9ae81,eeaaa2 9b81,eaa2 00009b81,0000eaa2 9a75 * * * c8ee fce9 9a75
+17394 * * * * * * * 9dc0 e9b780,eeaab0 9dc0,eab0 00009dc0,0000eab0 9aa5 * * * c8f6 fcf4 9aa5
+17395 * * * * * * * 9d93 e9b693,eeaaae 9d93,eaae 00009d93,0000eaae 9aa3 * * * c8f7 fcf5 9aa3
+17396 * * * * * * * 9eac e9baac,eeaab5 9eac,eab5 00009eac,0000eab5 9aaa * * * * fcfa 9aaa
+17397 * * * * * * * 4d91 e4b691,eeb1bc 4d91,ec7c 00004d91,0000ec7c 9d78 * * * * fcfd 9d78
+17398 * * * * * * * * * * * * * 8eab * * * *
+17399 * * * * * * * 93ba e98eba 93ba 000093ba * * 90d3 * * * *
+17400 * * * * * * * 9e7b e9b9bb,eeaab4 9e7b,eab4 00009e7b,0000eab4 9aa9 * 9146 * * * 9aa9
+17401 * * * * * * * 7089 e78289,ef9aac 7089,f6ac 00007089,0000f6ac 8dfa fcdb 8ea5 * * * 8dfa
+17402 * * * * * * * 7348 e78d88,eea68c 7348,e98c 00007348,0000e98c 98bb fcf2 8fdb * * * 98bb
+17403 * * * * * * * * * * * * fd64 91e8 * * * *
+17404 * * * * * * * 7999 e7a699,eea792 7999,e9d2 00007999,0000e9d2 9942 fde2 915d * * * 9942
+17405 * * * * * * * 8fb7 e8beb7,eea99d 8fb7,ea5d 00008fb7,0000ea5d 99ef fe67 8ee7 * * * 99ef
+17406 * * * * * * * * * * * * fe6a 90c5 * * * *
+17407 * * * * * * * 9942 e9a582,eeaa98 9942,ea98 00009942,0000ea98 9a6b febd 8f4f * * * 9a6b
+17408 * * * * * * * * * * * * * * * * * *
+17409 * * * * * * * * * * * * * * * * * *
+17410 * * * * * * * * * * * * * * * * * *
+17411 * * * * * * * * * * * * * * * * * *
+17412 * * * * * * * * * * * * * * * * * *
+17413 * * * * * * * * * * * * * * * * * *
+17414 * * * * * * * * * * * * * * * * * *
+17415 * * * * * * * * * * * * * * * * * *
+17416 * * * * * * * * * * * * * * * * * *
+17417 * * * * * * * * * * * * * * * * * *
+17418 * * * * * * * * * * * * * * * * * *
+17419 * * * * * * * * * * * * * * * * * *
+17420 * * * * * * * * * * * * * * * * * *
+17421 * * * * * * * * * * * * * * * * * *
+17422 * * * * * * * * * * * * * * * * * *
+17423 * * * * * * * * * * * * * * * * * *
+17424 * * * * * * * * * * * * * * * * * *
+17425 * * * * * * * * * * * * * * * * * *
+17426 * * * * * * * * * * * * * * * * * *
+17427 * * * * * * * * * * * * * * * * * *
+17428 * * * * * * * * * * * * * * * * * *
+17429 * * * * * * * * * * * * * * * * * *
+17430 * * * * * * * * * * * * * * * * * *
+17431 * * * * * * * * * * * * * * * * * *
+17432 * * * * * * * * * * * * * * * * * *
+17433 * * * * * * * * * * * * * * * * * *
+17434 * * * * * * * * * * * * * * * * * *
+17435 * * * * * * * * * * * * * * * * * *
+17436 * * * * * * * * * * * * * * * * * *
+17437 * * * * * * * * * * * * * * * * * *
+17438 * * * * * * * * * * * * * * * * * *
+17439 * * * * * * * * * * * * * * * * * *
+17440 * * * * * * * * * * * * * * * * * *
+17441 * * * * * * * * * * * * * * * * * *
+17442 * * * * * * * * * * * * * * * * * *
+17443 * * * * * * * * * * * * * * * * * *
+17444 * * * * * * * * * * * * * * * * * *
+17445 * * * * * * * * * * * * * * * * * *
+17446 * * * * * * * * * * * * * * * * * *
+17447 * * * * * * * * * * * * * * * * * *
+17448 * * * * * * * * * * * * * * * * * *
+17449 * * * * * * * * * * * * * * * * * *
+17450 * * * * * * * * * * * * * * * * * *
+17451 * * * * * * * * * * * * * * * * * *
+17452 * * * * * * * * * * * * * * * * * *
+17453 * * * * * * * * * * * * * * * * * *
+17454 * * * * * * * * * * * * * * * * * *
+17455 * * * * * * * * * * * * * * * * * *
+17456 * * * * * * * * * * * * * * * * * *
+17457 * * * * * * * * * * * * * * * * * *
+17458 * * * * * * * * * * * * * * * * * *
+17459 * * * * * * * * * * * * * * * * * *
+17460 * * * * * * * * * * * * * * * * * *
+17461 * * * * * * * * * * * * * * * * * *
+17462 * * * * * * * * * * * * * * * * * *
+17463 * * * * * * * * * * * * * * * * * *
+17464 * * * * * * * * * * * * * * * * * *
+17465 * * * * * * * * * * * * * * * * * *
+17466 * * * * * * * * * * * * * * * * * *
+17467 * * * * * * * * * * * * * * * * * *
+17468 * * * * * * * * * * * * * * * * * *
+17469 * * * * * * * * * * * * * * * * * *
+17470 * * * * * * * * * * * * * * * * * *
+17471 * * * * * * * * * * * * * * * * * *
+17472 * * * * * * * * * * * * * * * * * *
+17473 * * * * * * * * * * * * * * * * * *
+17474 * * * * * * * * * * * * * * * * * *
+17475 * * * * * * * * * * * * * * * * * *
+17476 * * * * * * * * * * * * * * * * * *
+17477 * * * * * * * * * * * * * * * * * *
+17478 * * * * * * * * * * * * * * * * * *
+17479 * * * * * * * * * * * * * * * * * *
+17480 * * * * * * * * * * * * * * * * * *
+17481 * * * * * * * * * * * * * * * * * *
+17482 * * * * * * * * * * * * * * * * * *
+17483 * * * * * * * * * * * * * * * * * *
+17484 * * * * * * * * * * * * * * * * * *
+17485 * * * * * * * * * * * * * * * * * *
+17486 * * * * * * * * * * * * * * * * * *
+17487 * * * * * * * * * * * * * * * * * *
+17488 * * * * * * * * * * * * * * * * * *
+17489 * * * * * * * * * * * * * * * * * *
+17490 * * * * * * * * * * * * * * * * * *
+17491 * * * * * * * * * * * * * * * * * *
+17492 * * * * * * * * * * * * * * * * * *
+17493 * * * * * * * * * * * * * * * * * *
+17494 * * * * * * * * * * * * * * * * * *
+17495 * * * * * * * * * * * * * * * * * *
+17496 * * * * * * * * * * * * * * * * * *
+17497 * * * * * * * * * * * * * * * * * *
+17498 * * * * * * * * * * * * * * * * * *
+17499 * * * * * * * * * * * * * * * * * *
+17500 * * * * * * * * * * * * * * * * * *
+17501 * * * * * * * * * * * * * * * * * *
+17502 * * * * * * * * * * * * * * * * * *
+17503 * * * * * * * * * * * * * * * * * *
+17504 * * * * * * * * * * * * * * * * * *
+17505 * * * * * * * * * * * * * * * * * *
+17506 * * * * * * * * * * * * * * * * * *
+17507 * * * * * * * * * * * * * * * * * *
+17508 * * * * * * * * * * * * * * * * * *
+17509 * * * * * * * * * * * * * * * * * *
+17510 * * * * * * * * * * * * * * * * * *
+17511 * * * * * * * * * * * * * * * * * *
+17512 * * * * * * * * * * * * * * * * * *
+17513 * * * * * * * * * * * * * * * * * *
+17514 * * * * * * * * * * * * * * * * * *
+17515 * * * * * * * * * * * * * * * * * *
+17516 * * * * * * * * * * * * * * * * * *
+17517 * * * * * * * * * * * * * * * * * *
+17518 * * * * * * * * * * * * * * * * * *
+17519 * * * * * * * * * * * * * * * * * *
+17520 * * * * * * * * * * * * * * * * * *
+17521 * * * * * * * * * * * * * * * * * *
+17522 * * * * * * * * * * * * * * * * * *
+17523 * * * * * * * * * * * * * * * * * *
+17524 * * * * * * * * * * * * * * * * * *
+17525 * * * * * * * * * * * * * * * * * *
+17526 * * * * * * * * * * * * * * * * * *
+17527 * * * * * * * * * * * * * * * * * *
+17528 * * * * * * * * * * * * * * * * * *
+17529 * * * * * * * * * * * * * * * * * *
+17530 * * * * * * * * * * * * * * * * * *
+17531 * * * * * * * * * * * * * * * * * *
+17532 * * * * * * * * * * * * * * * * * *
+17533 * * * * * * * * * * * * * * * * * *
+17534 * * * * * * * * * * * * * * * * * *
+17535 * * * * * * * * * * * * * * * * * *
+17536 * * * * * * * * * * * * * * * * * *
+17537 * * * * * * * * * * * * * * * * * *
+17538 * * * * * * * * * * * * * * * * * *
+17539 * * * * * * * * * * * * * * * * * *
+17540 * * * * * * * * * * * * * * * * * *
+17541 * * * * * * * * * * * * * * * * * *
+17542 * * * * * * * * * * * * * * * * * *
+17543 * * * * * * * * * * * * * * * * * *
+17544 * * * * * * * * * * * * * * * * * *
+17545 * * * * * * * * * * * * * * * * * *
+17546 * * * * * * * * * * * * * * * * * *
+17547 * * * * * * * * * * * * * * * * * *
+17548 * * * * * * * * * * * * * * * * * *
+17549 * * * * * * * * * * * * * * * * * *
+17550 * * * * * * * * * * * * * * * * * *
+17551 * * * * * * * * * * * * * * * * * *
+17552 * * * * * * * * * * * * * * * * * *
+17553 * * * * * * * * * * * * * * * * * *
+17554 * * * * * * * * * * * * * * * * * *
+17555 * * * * * * * * * * * * * * * * * *
+17556 * * * * * * * * * * * * * * * * * *
+17557 * * * * * * * * * * * * * * * * * *
+17558 * * * * * * * * * * * * * * * * * *
+17559 * * * * * * * * * * * * * * * * * *
+17560 * * * * * * * * * * * * * * * * * *
+17561 * * * * * * * * * * * * * * * * * *
+17562 * * * * * * * * * * * * * * * * * *
+17563 * * * * * * * * * * * * * * * * * *
+17564 * * * * * * * * * * * * * * * * * *
+17565 * * * * * * * * * * * * * * * * * *
+17566 * * * * * * * * * * * * * * * * * *
+17567 * * * * * * * * * * * * * * * * * *
+17568 * * * * * * * * * * * * * * * * * *
+17569 * * * * * * * * * * * * * * * * * *
+17570 * * * * * * * * * * * * * * * * * *
+17571 * * * * * * * * * * * * * * * * * *
+17572 * * * * * * * * * * * * * * * * * *
+17573 * * * * * * * * * * * * * * * * * *
+17574 * * * * * * * * * * * * * * * * * *
+17575 * * * * * * * * * * * * * * * * * *
+17576 * * * * * * * * * * * * * * * * * *
+17577 * * * * * * * * * * * * * * * * * *
+17578 * * * * * * * * * * * * * * * * * *
+17579 * * * * * * * * * * * * * * * * * *
+17580 * * * * * * * * * * * * * * * * * *
+17581 * * * * * * * * * * * * * * * * * *
+17582 * * * * * * * * * * * * * * * * * *
+17583 * * * * * * * * * * * * * * * * * *
+17584 * * * * * * * * * * * * * * * * * *
+17585 * * * * * * * * * * * * * * * * * *
+17586 * * * * * * * * * * * * * * * * * *
+17587 * * * * * * * * * * * * * * * * * *
+17588 * * * * * * * * * * * * * * * * * *
+17589 * * * * * * * * * * * * * * * * * *
+17590 * * * * * * * * * * * * * * * * * *
+17591 * * * * * * * * * * * * * * * * * *
+17592 * * * * * * * * * * * * * * * * * *
+17593 * * * * * * * * * * * * * * * * * *
+17594 * * * * * * * * * * * * * * * * * *
+17595 * * * * * * * * * * * * * * * * * *
+17596 * * * * * * * * * * * * * * * * * *
+17597 * * * * * * * * * * * * * * * * * *
+17598 * * * * * * * * * * * * * * * * * *
+17599 * * * * * * * * * * * * * * * * * *
+17600 * * * * * * * * * * * * * * * * * *
+17601 * * * * * * * 20ac e282ac 20ac 000020ac * * * * * * *
+17602 * * * * * * * * * * * * * * * * * *
+17603 * * * * * * * * * * * * * * * * * *
+17604 * * * * * * * * * * * * * * * * * *
+17605 * * * * * * * * * * * * * * * * * *
+17606 * * * * * * * 309b e3829b,efa09e 309b,f81e 0000309b,0000f81e c8d4 * * * * * c8d4
+17607 * * * * * * * 309c e3829c,efa09f 309c,f81f 0000309c,0000f81f c8d5 * * * * * c8d5
+17608 * * * * * * * 2e80 e2ba80,efa0a0 2e80,f820 00002e80,0000f820 c8d6 * * * * * c8d6
+17609 * * * * * * * f303 e38780,ef8c83 31c0,f303 000031c0,0000f303 8840 * * * * * 8840
+17610 * * * * * * * f304 e38781,ef8c84 31c1,f304 000031c1,0000f304 8841 * * * * * 8841
+17611 * * * * * * * f305 e38782,ef8c85 31c2,f305 000031c2,0000f305 8842 * * * * * 8842
+17612 * * * * * * * f306 e38783,ef8c86 31c3,f306 000031c3,0000f306 8843 * * * * * 8843
+17613 * * * * * * * f307 e38784,ef8c87 31c4,f307 000031c4,0000f307 8844 * * * * * 8844
+17614 * * * * * * * f308 f0a0848c,ef8c88 d840dd0c,f308 0002010c,0000f308 8845 * * * * * 8845
+17615 * * * * * * * f309 e38785,ef8c89 31c5,f309 000031c5,0000f309 8846 * * * * * 8846
+17616 * * * * * * * f30a f0a08391,ef8c8a d840dcd1,f30a 000200d1,0000f30a 8847 * * * * * 8847
+17617 * * * * * * * f30b f0a0838d,ef8c8b d840dccd,f30b 000200cd,0000f30b 8848 * * * * * 8848
+17618 * * * * * * * f30c e38786,ef8c8c 31c6,f30c 000031c6,0000f30c 8849 * * * * * 8849
+17619 * * * * * * * f30d e38787,ef8c8d 31c7,f30d 000031c7,0000f30d 884a * * * * * 884a
+17620 * * * * * * * f30e f0a0838b,ef8c8e d840dccb,f30e 000200cb,0000f30e 884b * * * * * 884b
+17621 * * * * * * * f30f f0a1bfa8,ef8c8f d847dfe8,f30f 00021fe8,0000f30f 884c * * * * * 884c
+17622 * * * * * * * f310 e38788,ef8c90 31c8,f310 000031c8,0000f310 884d * * * * * 884d
+17623 * * * * * * * f311 f0a0838a,ef8c91 d840dcca,f311 000200ca,0000f311 884e * * * * * 884e
+17624 * * * * * * * f312 e38789,ef8c92 31c9,f312 000031c9,0000f312 884f * * * * * 884f
+17625 * * * * * * * f313 e3878a,ef8c93 31ca,f313 000031ca,0000f313 8850 * * * * * 8850
+17626 * * * * * * * f314 e3878b,ef8c94 31cb,f314 000031cb,0000f314 8851 * * * * * 8851
+17627 * * * * * * * f315 e3878c,ef8c95 31cc,f315 000031cc,0000f315 8852 * * * * * 8852
+17628 * * * * * * * f316 f0a0848e,ef8c96 d840dd0e,f316 0002010e,0000f316 8853 * * * * * 8853
+17629 * * * * * * * f317 e3878d,ef8c97 31cd,f317 000031cd,0000f317 8854 * * * * * 8854
+17630 * * * * * * * f318 e3878e,ef8c98 31ce,f318 000031ce,0000f318 8855 * * * * * 8855
+17631 * * * * * * * * ef94b8 f538 0000f538 8bc0 * * * * * 8bc0
+17632 * * * * * * * * e2bca1,e5a482,ef94b9 2f21,5902,f539 00002f21,00005902,0000f539 8bc1 * * * * * 8bc1
+17633 * * * * * * * f53a f0a1af81,ef94ba d846dfc1,f53a 00021bc1,0000f53a 8bc2 * * * * * 8bc2
+17634 * * * * * * * f53b f0afa1b8,ef94bb d87edc78,f53b 0002f878,0000f53b 8bc3 * * * * * 8bc3
+17635 * * * * * * * 9751 e2bead,e99d91,ef94bc 2fad,9751,f53c 00002fad,00009751,0000f53c 8bc4 * * * * * 8bc4
+17636 * * * * * * * f53d f0a08286,ef94bd d840dc86,f53d 00020086,0000f53d 8bc5 * * * * * 8bc5
+17637 * * * * * * * 4e5b e4b99b,ef94be 4e5b,f53e 00004e5b,0000f53e 8bc6 * * * * * 8bc6
+17638 * * * * * * * 4ebb e4babb,ef94bf 4ebb,f53f 00004ebb,0000f53f 8bc7 * * * * * 8bc7
+17639 * * * * * * * 353e e394be,ef9580 353e,f540 0000353e,0000f540 8bc8 * * * * * 8bc8
+17640 * * * * * * * 5c23 e5b0a3,ef9581 5c23,f541 00005c23,0000f541 8bc9 * * * * * 8bc9
+17641 * * * * * * * 5f51 e5bd91,ef9582 5f51,f542 00005f51,0000f542 8bca * * * * * 8bca
+17642 * * * * * * * 5fc4 e5bf84,ef9583 5fc4,f543 00005fc4,0000f543 8bcb * * * * * 8bcb
+17643 * * * * * * * 38fa e3a3ba,ef9584 38fa,f544 000038fa,0000f544 8bcc * * * * * 8bcc
+17644 * * * * * * * 624c e6898c,ef9585 624c,f545 0000624c,0000f545 8bcd * * * * * 8bcd
+17645 * * * * * * * 6535 e694b5,ef9586 6535,f546 00006535,0000f546 8bce * * * * * 8bce
+17646 * * * * * * * 6b7a e6adba,ef9587 6b7a,f547 00006b7a,0000f547 8bcf * * * * * 8bcf
+17647 * * * * * * * 6c35 e6b0b5,ef9588 6c35,f548 00006c35,0000f548 8bd0 * * * * * 8bd0
+17648 * * * * * * * 6c3a e6b0ba,ef9589 6c3a,f549 00006c3a,0000f549 8bd1 * * * * * 8bd1
+17649 * * * * * * * 706c e781ac,ef958a 706c,f54a 0000706c,0000f54a 8bd2 * * * * * 8bd2
+17650 * * * * * * * 722b e788ab,ef958b 722b,f54b 0000722b,0000f54b 8bd3 * * * * * 8bd3
+17651 * * * * * * * 4e2c e4b8ac,ef958c 4e2c,f54c 00004e2c,0000f54c 8bd4 * * * * * 8bd4
+17652 * * * * * * * 72ad e78aad,ef958d 72ad,f54d 000072ad,0000f54d 8bd5 * * * * * 8bd5
+17653 * * * * * * * f54e f0a4a3a9,ef958e d852dce9,f54e 000248e9,0000f54e 8bd6 * * * * * 8bd6
+17654 * * * * * * * 7f52 e7bd92,ef958f 7f52,f54f 00007f52,0000f54f 8bd7 * * * * * 8bd7
+17655 * * * * * * * 793b e7a4bb,ef9590 793b,f550 0000793b,0000f550 8bd8 * * * * * 8bd8
+17656 * * * * * * * 7cf9 e7b3b9,ef9591 7cf9,f551 00007cf9,0000f551 8bd9 * * * * * 8bd9
+17657 * * * * * * * 7f53 e7bd93,ef9592 7f53,f552 00007f53,0000f552 8bda * * * * * 8bda
+17658 * * * * * * * f553 f0a689aa,ef9593 d858de6a,f553 0002626a,0000f553 8bdb * * * * * 8bdb
+17659 * * * * * * * 34c1 e39381,ef9594 34c1,f554 000034c1,0000f554 8bdc * * * * * 8bdc
+17660 * * * * * * * f556 f0a68d8b,ef9596 d858df4b,f556 0002634b,0000f556 8bde * * * * * 8bde
+17661 * * * * * * * 8002 e88082,ef9597 8002,f557 00008002,0000f557 8bdf * * * * * 8bdf
+17662 * * * * * * * 8080 e88280,ef9598 8080,f558 00008080,0000f558 8be0 * * * * * 8be0
+17663 * * * * * * * f559 f0a69892,ef9599 d859de12,f559 00026612,0000f559 8be1 * * * * * 8be1
+17664 * * * * * * * f55a f0a6a591,ef959a d85add51,f55a 00026951,0000f55a 8be2 * * * * * 8be2
+17665 * * * * * * * 535d e58d9d,ef959b 535d,f55b 0000535d,0000f55b 8be3 * * * * * 8be3
+17666 * * * * * * * 8864 e8a1a4,ef959c 8864,f55c 00008864,0000f55c 8be4 * * * * * 8be4
+17667 * * * * * * * 89c1 e8a781,ef959d 89c1,f55d 000089c1,0000f55d 8be5 * * * * * 8be5
+17668 * * * * * * * f55e f0a7a2b2,ef959e d85edcb2,f55e 000278b2,0000f55e 8be6 * * * * * 8be6
+17669 * * * * * * * 8ba0 e8aea0,ef959f 8ba0,f55f 00008ba0,0000f55f 8be7 * * * * * 8be7
+17670 * * * * * * * 8d1d e8b49d,ef95a0 8d1d,f560 00008d1d,0000f560 8be8 * * * * * 8be8
+17671 * * * * * * * 9485 e99285,ef95a1 9485,f561 00009485,0000f561 8be9 * * * * * 8be9
+17672 * * * * * * * 9578 e995b8,ef95a2 9578,f562 00009578,0000f562 8bea * * * * * 8bea
+17673 * * * * * * * 957f e995bf,ef95a3 957f,f563 0000957f,0000f563 8beb * * * * * 8beb
+17674 * * * * * * * 95e8 e997a8,ef95a4 95e8,f564 000095e8,0000f564 8bec * * * * * 8bec
+17675 * * * * * * * f565 f0a8b88f,ef95a5 d863de0f,f565 00028e0f,0000f565 8bed * * * * * 8bed
+17676 * * * * * * * 97e6 e99fa6,ef95a6 97e6,f566 000097e6,0000f566 8bee * * * * * 8bee
+17677 * * * * * * * 9875 e9a1b5,ef95a7 9875,f567 00009875,0000f567 8bef * * * * * 8bef
+17678 * * * * * * * 98ce e9a38e,ef95a8 98ce,f568 000098ce,0000f568 8bf0 * * * * * 8bf0
+17679 * * * * * * * 98de e9a39e,ef95a9 98de,f569 000098de,0000f569 8bf1 * * * * * 8bf1
+17680 * * * * * * * 9963 e9a5a3,ef95aa 9963,f56a 00009963,0000f56a 8bf2 * * * * * 8bf2
+17681 * * * * * * * f56b f0a9a090,ef95ab d866dc10,f56b 00029810,0000f56b 8bf3 * * * * * 8bf3
+17682 * * * * * * * 9c7c e9b1bc,ef95ac 9c7c,f56c 00009c7c,0000f56c 8bf4 * * * * * 8bf4
+17683 * * * * * * * 9e1f e9b89f,ef95ad 9e1f,f56d 00009e1f,0000f56d 8bf5 * * * * * 8bf5
+17684 * * * * * * * 9ec4 e9bb84,ef95ae 9ec4,f56e 00009ec4,0000f56e 8bf6 * * * * * 8bf6
+17685 * * * * * * * 6b6f e6adaf,ef95af 6b6f,f56f 00006b6f,0000f56f 8bf7 * * * * * 8bf7
+17686 * * * * * * * * efa487,ef95b0 f907,f570 0000f907,0000f570 8bf8 * * * * * 8bf8
+17687 * * * * * * * 4e37 e4b8b7,ef95b1 4e37,f571 00004e37,0000f571 8bf9 * * * * * 8bf9
+17688 * * * * * * * f572 f0a08287,ef95b2 d840dc87,f572 00020087,0000f572 8bfa * * * * * 8bfa
+17689 * * * * * * * 961d e9989d,ef95b3 961d,f573 0000961d,0000f573 8bfb * * * * * 8bfb
+17690 * * * * * * * 6237 e688b7,ef95b4 6237,f574 00006237,0000f574 8bfc * * * * * 8bfc
+17691 * * * * * * * 94a2 e992a2,ef95b5 94a2,f575 000094a2,0000f575 8bfd * * * * * 8bfd
+17692 * * * * * * * 2e84 e2ba84,efa0a1 2e84,f821 00002e84,0000f821 c8d7 * * * * * c8d7
+17693 * * * * * * * 2e86 e2ba86,efa0a2 2e86,f822 00002e86,0000f822 c8d8 * * * * * c8d8
+17694 * * * * * * * 2e87 e2ba87,efa0a3 2e87,f823 00002e87,0000f823 c8d9 * * * * * c8d9
+17695 * * * * * * * 2e88 e2ba88,efa0a4 2e88,f824 00002e88,0000f824 c8da * * * * * c8da
+17696 * * * * * * * 2e8a e2ba8a,efa0a5 2e8a,f825 00002e8a,0000f825 c8db * * * * * c8db
+17697 * * * * * * * 2e8c e2ba8c,efa0a6 2e8c,f826 00002e8c,0000f826 c8dc * * * * * c8dc
+17698 * * * * * * * 2e8d e2ba8d,efa0a7 2e8d,f827 00002e8d,0000f827 c8dd * * * * * c8dd
+17699 * * * * * * * 2e95 e2ba95,efa0a8 2e95,f828 00002e95,0000f828 c8de * * * * * c8de
+17700 * * * * * * * 2e9c e2ba9c,efa0a9 2e9c,f829 00002e9c,0000f829 c8df * * * * * c8df
+17701 * * * * * * * 2ea5 e2baa5,efa0ab 2ea5,f82b 00002ea5,0000f82b c8e1 * * * * * c8e1
+17702 * * * * * * * 2ea7 e2baa7,efa0ac 2ea7,f82c 00002ea7,0000f82c c8e2 * * * * * c8e2
+17703 * * * * * * * 2eaa e2baaa,efa0ad 2eaa,f82d 00002eaa,0000f82d c8e3 * * * * * c8e3
+17704 * * * * * * * 2eac e2baac,efa0ae 2eac,f82e 00002eac,0000f82e c8e4 * * * * * c8e4
+17705 * * * * * * * 2eae e2baae,efa0af 2eae,f82f 00002eae,0000f82f c8e5 * * * * * c8e5
+17706 * * * * * * * 2eb6 e2bab6,efa0b0 2eb6,f830 00002eb6,0000f830 c8e6 * * * * * c8e6
+17707 * * * * * * * 2ebc e2babc,efa0b1 2ebc,f831 00002ebc,0000f831 c8e7 * * * * * c8e7
+17708 * * * * * * * 2ebe e2babe,efa0b2 2ebe,f832 00002ebe,0000f832 c8e8 * * * * * c8e8
+17709 * * * * * * * 2eca e2bb8a,efa0b4 2eca,f834 00002eca,0000f834 c8ea * * * * * c8ea
+17710 * * * * * * * 2ecc e2bb8c,efa0b5 2ecc,f835 00002ecc,0000f835 c8eb * * * * * c8eb
+17711 * * * * * * * 2ecd e2bb8d,efa0b6 2ecd,f836 00002ecd,0000f836 c8ec * * * * * c8ec
+17712 * * * * * * * 2ecf e2bb8f,efa0b7 2ecf,f837 00002ecf,0000f837 c8ed * * * * * c8ed
+17713 * * * * * * * 2ed6 e2bb96,efa0b8 2ed6,f838 00002ed6,0000f838 c8ee * * * * * c8ee
+17714 * * * * * * * 2ed7 e2bb97,efa0b9 2ed7,f839 00002ed7,0000f839 c8ef * * * * * c8ef
+17715 * * * * * * * 2ede e2bb9e,efa0ba 2ede,f83a 00002ede,0000f83a c8f0 * * * * * c8f0
+17716 * * * * * * * f3a0 f0aa8ea9,ef8ea0 d868dfa9,f3a0 0002a3a9,0000f3a0 8940 * * * * * 8940
+17717 * * * * * * * f3a1 f0a18585,ef8ea1 d844dd45,f3a1 00021145,0000f3a1 8941 * * * * * 8941
+17718 * * * * * * * 650a e6948a,ef8ea3 650a,f3a3 0000650a,0000f3a3 8943 * * * * * 8943
+17719 * * * * * * * 4e3d e4b8bd,ef8ea6 4e3d,f3a6 00004e3d,0000f3a6 8946 * * * * * 8946
+17720 * * * * * * * 6edd e6bb9d,ef8ea7 6edd,f3a7 00006edd,0000f3a7 8947 * * * * * 8947
+17721 * * * * * * * 9d4e e9b58e,ef8ea8 9d4e,f3a8 00009d4e,0000f3a8 8948 * * * * * 8948
+17722 * * * * * * * 91df e9879f,ef8ea9 91df,f3a9 000091df,0000f3a9 8949 * * * * * 8949
+17723 * * * * * * * f3ac ef8eac,f0a79cb5 d85ddf35,f3ac 0000f3ac,00027735 894c * * * * * 894c
+17724 * * * * * * * 4f1a e4bc9a,ef8eae 4f1a,f3ae 00004f1a,0000f3ae 894e * * * * * 894e
+17725 * * * * * * * 4f28 e4bca8,ef8eaf 4f28,f3af 00004f28,0000f3af 894f * * * * * 894f
+17726 * * * * * * * 4fa8 e4bea8,ef8eb0 4fa8,f3b0 00004fa8,0000f3b0 8950 * * * * * 8950
+17727 * * * * * * * 5174 e585b4,ef8eb2 5174,f3b2 00005174,0000f3b2 8952 * * * * * 8952
+17728 * * * * * * * 519c e5869c,ef8eb3 519c,f3b3 0000519c,0000f3b3 8953 * * * * * 8953
+17729 * * * * * * * 51e4 e587a4,ef8eb4 51e4,f3b4 000051e4,0000f3b4 8954 * * * * * 8954
+17730 * * * * * * * 52a1 e58aa1,ef8eb5 52a1,f3b5 000052a1,0000f3b5 8955 * * * * * 8955
+17731 * * * * * * * 52a8 e58aa8,ef8eb6 52a8,f3b6 000052a8,0000f3b6 8956 * * * * * 8956
+17732 * * * * * * * 533b e58cbb,ef8eb7 533b,f3b7 0000533b,0000f3b7 8957 * * * * * 8957
+17733 * * * * * * * 534e e58d8e,ef8eb8 534e,f3b8 0000534e,0000f3b8 8958 * * * * * 8958
+17734 * * * * * * * 53d1 e58f91,ef8eb9 53d1,f3b9 000053d1,0000f3b9 8959 * * * * * 8959
+17735 * * * * * * * 53d8 e58f98,ef8eba 53d8,f3ba 000053d8,0000f3ba 895a * * * * * 895a
+17736 * * * * * * * 56e2 e59ba2,ef8ebb 56e2,f3bb 000056e2,0000f3bb 895b * * * * * 895b
+17737 * * * * * * * 58f0 e5a3b0,ef8ebc 58f0,f3bc 000058f0,0000f3bc 895c * * * * * 895c
+17738 * * * * * * * 5904 e5a484,ef8ebd 5904,f3bd 00005904,0000f3bd 895d * * * * * 895d
+17739 * * * * * * * 5907 e5a487,ef8ebe 5907,f3be 00005907,0000f3be 895e * * * * * 895e
+17740 * * * * * * * 5932 e5a4b2,ef8ebf 5932,f3bf 00005932,0000f3bf 895f * * * * * 895f
+17741 * * * * * * * 5934 e5a4b4,ef8f80 5934,f3c0 00005934,0000f3c0 8960 * * * * * 8960
+17742 * * * * * * * 5b66 e5ada6,ef8f81 5b66,f3c1 00005b66,0000f3c1 8961 * * * * * 8961
+17743 * * * * * * * 5b9e e5ae9e,ef8f82 5b9e,f3c2 00005b9e,0000f3c2 8962 * * * * * 8962
+17744 * * * * * * * 5b9f e5ae9f,ef8f83 5b9f,f3c3 00005b9f,0000f3c3 8963 * * * * * 8963
+17745 * * * * * * * 5c9a e5b29a,ef8f84 5c9a,f3c4 00005c9a,0000f3c4 8964 * * * * * 8964
+17746 * * * * * * * 5e86 e5ba86,ef8f85 5e86,f3c5 00005e86,0000f3c5 8965 * * * * * 8965
+17747 * * * * * * * 603b e680bb,ef8f86 603b,f3c6 0000603b,0000f3c6 8966 * * * * * 8966
+17748 * * * * * * * 6589 e69689,ef8f87 6589,f3c7 00006589,0000f3c7 8967 * * * * * 8967
+17749 * * * * * * * 67fe e69fbe,ef8f88 67fe,f3c8 000067fe,0000f3c8 8968 * * * * * 8968
+17750 * * * * * * * 6804 e6a084,ef8f89 6804,f3c9 00006804,0000f3c9 8969 * * * * * 8969
+17751 * * * * * * * 6865 e6a1a5,ef8f8a 6865,f3ca 00006865,0000f3ca 896a * * * * * 896a
+17752 * * * * * * * 6d4e e6b58e,ef8f8b 6d4e,f3cb 00006d4e,0000f3cb 896b * * * * * 896b
+17753 * * * * * * * 70bc e782bc,ef8f8c 70bc,f3cc 000070bc,0000f3cc 896c * * * * * 896c
+17754 * * * * * * * 7535 e794b5,ef8f8d 7535,f3cd 00007535,0000f3cd 896d * * * * * 896d
+17755 * * * * * * * 7ea4 e7baa4,ef8f8e 7ea4,f3ce 00007ea4,0000f3ce 896e * * * * * 896e
+17756 * * * * * * * 7eac e7baac,ef8f8f 7eac,f3cf 00007eac,0000f3cf 896f * * * * * 896f
+17757 * * * * * * * 7eba e7baba,ef8f90 7eba,f3d0 00007eba,0000f3d0 8970 * * * * * 8970
+17758 * * * * * * * 7ec7 e7bb87,ef8f91 7ec7,f3d1 00007ec7,0000f3d1 8971 * * * * * 8971
+17759 * * * * * * * 7ecf e7bb8f,ef8f92 7ecf,f3d2 00007ecf,0000f3d2 8972 * * * * * 8972
+17760 * * * * * * * 7edf e7bb9f,ef8f93 7edf,f3d3 00007edf,0000f3d3 8973 * * * * * 8973
+17761 * * * * * * * 7f06 e7bc86,ef8f94 7f06,f3d4 00007f06,0000f3d4 8974 * * * * * 8974
+17762 * * * * * * * 7f37 e7bcb7,ef8f95 7f37,f3d5 00007f37,0000f3d5 8975 * * * * * 8975
+17763 * * * * * * * 827a e889ba,ef8f96 827a,f3d6 0000827a,0000f3d6 8976 * * * * * 8976
+17764 * * * * * * * 82cf e88b8f,ef8f97 82cf,f3d7 000082cf,0000f3d7 8977 * * * * * 8977
+17765 * * * * * * * 836f e88daf,ef8f98 836f,f3d8 0000836f,0000f3d8 8978 * * * * * 8978
+17766 * * * * * * * 89c6 e8a786,ef8f99 89c6,f3d9 000089c6,0000f3d9 8979 * * * * * 8979
+17767 * * * * * * * 8bbe e8aebe,ef8f9a 8bbe,f3da 00008bbe,0000f3da 897a * * * * * 897a
+17768 * * * * * * * 8be2 e8afa2,ef8f9b 8be2,f3db 00008be2,0000f3db 897b * * * * * 897b
+17769 * * * * * * * 8f66 e8bda6,ef8f9c 8f66,f3dc 00008f66,0000f3dc 897c * * * * * 897c
+17770 * * * * * * * 8f67 e8bda7,ef8f9d 8f67,f3dd 00008f67,0000f3dd 897d * * * * * 897d
+17771 * * * * * * * 8f6e e8bdae,ef8f9e 8f6e,f3de 00008f6e,0000f3de 897e * * * * * 897e
+17772 * * * * * * * 7411 e79091,ef8f9f 7411,f3df 00007411,0000f3df 89a1 * * * * * 89a1
+17773 * * * * * * * 7cfc e7b3bc,ef8fa0 7cfc,f3e0 00007cfc,0000f3e0 89a2 * * * * * 89a2
+17774 * * * * * * * 7dcd e7b78d,ef8fa1 7dcd,f3e1 00007dcd,0000f3e1 89a3 * * * * * 89a3
+17775 * * * * * * * 6946 e6a586,ef8fa2 6946,f3e2 00006946,0000f3e2 89a4 * * * * * 89a4
+17776 * * * * * * * 7ac9 e7ab89,ef8fa3 7ac9,f3e3 00007ac9,0000f3e3 89a5 * * * * * 89a5
+17777 * * * * * * * 78b8 e7a2b8,ef8faa 78b8,f3ea 000078b8,0000f3ea 89ac * * * * * 89ac
+17778 * * * * * * * 80bc e882bc,ef8fac 80bc,f3ec 000080bc,0000f3ec 89ae * * * * * 89ae
+17779 * * * * * * * 8d0b e8b48b,ef8fae 8d0b,f3ee 00008d0b,0000f3ee 89b0 * * * * * 89b0
+17780 * * * * * * * 80f6 e883b6,ef8faf 80f6,f3ef 000080f6,0000f3ef 89b1 * * * * * 89b1
+17781 * * * * * * * f3f0 f0a0a7a7,ef8fb0 d842dde7,f3f0 000209e7,0000f3f0 89b2 * * * * * 89b2
+17782 * * * * * * * 809f e8829f,ef8fb3 809f,f3f3 0000809f,0000f3f3 89b5 * * * * * 89b5
+17783 * * * * * * * 9ec7 e9bb87,ef8fb4 9ec7,f3f4 00009ec7,0000f3f4 89b6 * * * * * 89b6
+17784 * * * * * * * 4ccd e4b38d,ef8fb5 4ccd,f3f5 00004ccd,0000f3f5 89b7 * * * * * 89b7
+17785 * * * * * * * 9dc9 e9b789,ef8fb6 9dc9,f3f6 00009dc9,0000f3f6 89b8 * * * * * 89b8
+17786 * * * * * * * 9e0c e9b88c,ef8fb7 9e0c,f3f7 00009e0c,0000f3f7 89b9 * * * * * 89b9
+17787 * * * * * * * 4c3e e4b0be,ef8fb8 4c3e,f3f8 00004c3e,0000f3f8 89ba * * * * * 89ba
+17788 * * * * * * * f3f9 f0a9b7b6,ef8fb9 d867ddf6,f3f9 00029df6,0000f3f9 89bb * * * * * 89bb
+17789 * * * * * * * f3fa f0a7808e,ef8fba d85cdc0e,f3fa 0002700e,0000f3fa 89bc * * * * * 89bc
+17790 * * * * * * * 9e0a e9b88a,ef8fbb 9e0a,f3fb 00009e0a,0000f3fb 89bd * * * * * 89bd
+17791 * * * * * * * f3fc f0aa84b3,ef8fbc d868dd33,f3fc 0002a133,0000f3fc 89be * * * * * 89be
+17792 * * * * * * * 35c1 e39781,ef8fbd 35c1,f3fd 000035c1,0000f3fd 89bf * * * * * 89bf
+17793 * * * * * * * 6e9a e6ba9a,ef8fbf 6e9a,f3ff 00006e9a,0000f3ff 89c1 * * * * * 89c1
+17794 * * * * * * * 823e e888be,ef9080 823e,f400 0000823e,0000f400 89c2 * * * * * 89c2
+17795 * * * * * * * 7519 e79499,ef9081 7519,f401 00007519,0000f401 89c3 * * * * * 89c3
+17796 * * * * * * * 4911 e4a491,ef9083 4911,f403 00004911,0000f403 89c5 * * * * * 89c5
+17797 * * * * * * * 9a6c e9a9ac,ef9084 9a6c,f404 00009a6c,0000f404 89c6 * * * * * 89c6
+17798 * * * * * * * 9a8f e9aa8f,ef9085 9a8f,f405 00009a8f,0000f405 89c7 * * * * * 89c7
+17799 * * * * * * * 9f99 e9be99,ef9086 9f99,f406 00009f99,0000f406 89c8 * * * * * 89c8
+17800 * * * * * * * 7987 e7a687,ef9087 7987,f407 00007987,0000f407 89c9 * * * * * 89c9
+17801 * * * * * * * f408 f0a891ac,ef9088 d861dc6c,f408 0002846c,0000f408 89ca * * * * * 89ca
+17802 * * * * * * * f409 f0a1b78a,ef9089 d847ddca,f409 00021dca,0000f409 89cb * * * * * 89cb
+17803 * * * * * * * f40a f0a09790,ef908a d841ddd0,f40a 000205d0,0000f40a 89cc * * * * * 89cc
+17804 * * * * * * * f40b f0a2aba6,ef908b d84adee6,f40b 00022ae6,0000f40b 89cd * * * * * 89cd
+17805 * * * * * * * 4e24 e4b8a4,ef908c 4e24,f40c 00004e24,0000f40c 89ce * * * * * 89ce
+17806 * * * * * * * 4e80 e4ba80,ef908e 4e80,f40e 00004e80,0000f40e 89d0 * * * * * 89d0
+17807 * * * * * * * 4e87 e4ba87,ef908f 4e87,f40f 00004e87,0000f40f 89d1 * * * * * 89d1
+17808 * * * * * * * 4ebf e4babf,ef9090 4ebf,f410 00004ebf,0000f410 89d2 * * * * * 89d2
+17809 * * * * * * * 4eeb e4bbab,ef9091 4eeb,f411 00004eeb,0000f411 89d3 * * * * * 89d3
+17810 * * * * * * * 4f37 e4bcb7,ef9092 4f37,f412 00004f37,0000f412 89d4 * * * * * 89d4
+17811 * * * * * * * 344c e3918c,ef9093 344c,f413 0000344c,0000f413 89d5 * * * * * 89d5
+17812 * * * * * * * 4fbd e4bebd,ef9094 4fbd,f414 00004fbd,0000f414 89d6 * * * * * 89d6
+17813 * * * * * * * 3e48 e3b988,ef9095 3e48,f415 00003e48,0000f415 89d7 * * * * * 89d7
+17814 * * * * * * * 5003 e58083,ef9096 5003,f416 00005003,0000f416 89d8 * * * * * 89d8
+17815 * * * * * * * 347d e391bd,ef9098 347d,f418 0000347d,0000f418 89da * * * * * 89da
+17816 * * * * * * * 34a5 e392a5,ef909a 34a5,f41a 000034a5,0000f41a 89dc * * * * * 89dc
+17817 * * * * * * * 5905 e5a485,ef909c 5905,f41c 00005905,0000f41c 89de * * * * * 89de
+17818 * * * * * * * 51db e5879b,ef909d 51db,f41d 000051db,0000f41d 89df * * * * * 89df
+17819 * * * * * * * 51fc e587bc,ef909e 51fc,f41e 000051fc,0000f41e 89e0 * * * * * 89e0
+17820 * * * * * * * 4e89 e4ba89,ef90a0 4e89,f420 00004e89,0000f420 89e2 * * * * * 89e2
+17821 * * * * * * * 5290 e58a90,ef90a2 5290,f422 00005290,0000f422 89e4 * * * * * 89e4
+17822 * * * * * * * 5327 e58ca7,ef90a3 5327,f423 00005327,0000f423 89e5 * * * * * 89e5
+17823 * * * * * * * 35c7 e39787,ef90a4 35c7,f424 000035c7,0000f424 89e6 * * * * * 89e6
+17824 * * * * * * * 53a9 e58ea9,ef90a5 53a9,f425 000053a9,0000f425 89e7 * * * * * 89e7
+17825 * * * * * * * 3551 e39591,ef90a6 3551,f426 00003551,0000f426 89e8 * * * * * 89e8
+17826 * * * * * * * 53b0 e58eb0,ef90a7 53b0,f427 000053b0,0000f427 89e9 * * * * * 89e9
+17827 * * * * * * * 5423 e590a3,ef90aa 5423,f42a 00005423,0000f42a 89ec * * * * * 89ec
+17828 * * * * * * * 356d e395ad,ef90ab 356d,f42b 0000356d,0000f42b 89ed * * * * * 89ed
+17829 * * * * * * * 3572 e395b2,ef90ac 3572,f42c 00003572,0000f42c 89ee * * * * * 89ee
+17830 * * * * * * * 3681 e39a81,ef90ad 3681,f42d 00003681,0000f42d 89ef * * * * * 89ef
+17831 * * * * * * * 5493 e59293,ef90ae 5493,f42e 00005493,0000f42e 89f0 * * * * * 89f0
+17832 * * * * * * * 54a3 e592a3,ef90af 54a3,f42f 000054a3,0000f42f 89f1 * * * * * 89f1
+17833 * * * * * * * 54b4 e592b4,ef90b0 54b4,f430 000054b4,0000f430 89f2 * * * * * 89f2
+17834 * * * * * * * 54b9 e592b9,ef90b1 54b9,f431 000054b9,0000f431 89f3 * * * * * 89f3
+17835 * * * * * * * 54d0 e59390,ef90b2 54d0,f432 000054d0,0000f432 89f4 * * * * * 89f4
+17836 * * * * * * * 54ef e593af,ef90b3 54ef,f433 000054ef,0000f433 89f5 * * * * * 89f5
+17837 * * * * * * * 5518 e59498,ef90b4 5518,f434 00005518,0000f434 89f6 * * * * * 89f6
+17838 * * * * * * * 5523 e594a3,ef90b5 5523,f435 00005523,0000f435 89f7 * * * * * 89f7
+17839 * * * * * * * 5528 e594a8,ef90b6 5528,f436 00005528,0000f436 89f8 * * * * * 89f8
+17840 * * * * * * * 3598 e39698,ef90b7 3598,f437 00003598,0000f437 89f9 * * * * * 89f9
+17841 * * * * * * * 35a5 e396a5,ef90b9 35a5,f439 000035a5,0000f439 89fb * * * * * 89fb
+17842 * * * * * * * 35bf e396bf,ef90ba 35bf,f43a 000035bf,0000f43a 89fc * * * * * 89fc
+17843 * * * * * * * 55d7 e59797,ef90bb 55d7,f43b 000055d7,0000f43b 89fd * * * * * 89fd
+17844 * * * * * * * 35c5 e39785,ef90bc 35c5,f43c 000035c5,0000f43c 89fe * * * * * 89fe
+17845 * * * * * * * f43d f0a7b684,ef90bd d85fdd84,f43d 00027d84,0000f43d 8a40 * * * * * 8a40
+17846 * * * * * * * 4053 e48193,ef918a 4053,f44a 00004053,0000f44a 8a4d * * * * * 8a4d
+17847 * * * * * * * f457 ef9197,f0a183b4 d844dcf4,f457 0000f457,000210f4 8a5a * * * * * 8a5a
+17848 * * * * * * * f45b ef919b,f0a0b08b d843dc0b,f45b 0000f45b,00020c0b 8a5e * * * * * 8a5e
+17849 * * * * * * * f46e ef91ae,f0a7a388 d85edcc8,f46e 0000f46e,000278c8 8a71 * * * * * 8a71
+17850 * * * * * * * f474 ef91b4,f0a682a5 d858dca5,f474 0000f474,000260a5 8a77 * * * * * 8a77
+17851 * * * * * * * f477 ef91b7,f0a2b58c d84bdd4c,f477 0000f477,00022d4c 8a7a * * * * * 8a7a
+17852 * * * * * * * f479 ef91b9,f0a181b7 d844dc77,f479 0000f479,00021077 8a7c * * * * * 8a7c
+17853 * * * * * * * f47b ef91bb,f0a181af d844dc6f,f47b 0000f47b,0002106f 8a7e * * * * * 8a7e
+17854 * * * * * * * f483 ef9283,f0a286a1 d848dda1,f483 0000f483,000221a1 8aa8 * * * * * 8aa8
+17855 * * * * * * * f491 ef9291,f0a0b696 d843dd96,f491 0000f491,00020d96 8ab6 * * * * * 8ab6
+17856 * * * * * * * 40bb e482bb,ef9293 40bb,f493 000040bb,0000f493 8ab8 * * * * * 8ab8
+17857 * * * * * * * f4a7 ef92a7,f0a2b389 d84bdcc9,f4a7 0000f4a7,00022cc9 8acc * * * * * 8acc
+17858 * * * * * * * 5652 e59992,ef92b1 5652,f4b1 00005652,0000f4b1 8ad6 * * * * * 8ad6
+17859 * * * * * * * f4b2 f0a0bcb1,ef92b2 d843df31,f4b2 00020f31,0000f4b2 8ad7 * * * * * 8ad7
+17860 * * * * * * * f4c1 ef9381,f0a6a09c d85adc1c,f4c1 0000f4c1,0002681c 8ae6 * * * * * 8ae6
+17861 * * * * * * * f4c3 f0a1838f,ef9383 d844dccf,f4c3 000210cf,0000f4c3 8ae8 * * * * * 8ae8
+17862 * * * * * * * f4c4 f0a2a083,ef9384 d84adc03,f4c4 00022803,0000f4c4 8ae9 * * * * * 8ae9
+17863 * * * * * * * f4c5 f0a2a4b9,ef9385 d84add39,f4c5 00022939,0000f4c5 8aea * * * * * 8aea
+17864 * * * * * * * 35fb e397bb,ef9386 35fb,f4c6 000035fb,0000f4c6 8aeb * * * * * 8aeb
+17865 * * * * * * * f4c7 f0a587a3,ef9387 d854dde3,f4c7 000251e3,0000f4c7 8aec * * * * * 8aec
+17866 * * * * * * * f4c8 f0a0ba8c,ef9388 d843de8c,f4c8 00020e8c,0000f4c8 8aed * * * * * 8aed
+17867 * * * * * * * f4c9 f0a0be8d,ef9389 d843df8d,f4c9 00020f8d,0000f4c9 8aee * * * * * 8aee
+17868 * * * * * * * f4ca f0a0baaa,ef938a d843deaa,f4ca 00020eaa,0000f4ca 8aef * * * * * 8aef
+17869 * * * * * * * 3f93 e3be93,ef938b 3f93,f4cb 00003f93,0000f4cb 8af0 * * * * * 8af0
+17870 * * * * * * * f4cc f0a0bcb0,ef938c d843df30,f4cc 00020f30,0000f4cc 8af1 * * * * * 8af1
+17871 * * * * * * * f4cd f0a0b587,ef938d d843dd47,f4cd 00020d47,0000f4cd 8af2 * * * * * 8af2
+17872 * * * * * * * f4ce f0a1858f,ef938e d844dd4f,f4ce 0002114f,0000f4ce 8af3 * * * * * 8af3
+17873 * * * * * * * f4cf f0a0b98c,ef938f d843de4c,f4cf 00020e4c,0000f4cf 8af4 * * * * * 8af4
+17874 * * * * * * * f4d1 f0a0baab,ef9391 d843deab,f4d1 00020eab,0000f4d1 8af6 * * * * * 8af6
+17875 * * * * * * * f4d2 f0a0aea9,ef9392 d842dfa9,f4d2 00020ba9,0000f4d2 8af7 * * * * * 8af7
+17876 * * * * * * * f4d3 f0a0b588,ef9393 d843dd48,f4d3 00020d48,0000f4d3 8af8 * * * * * 8af8
+17877 * * * * * * * f4d4 f0a18380,ef9394 d844dcc0,f4d4 000210c0,0000f4d4 8af9 * * * * * 8af9
+17878 * * * * * * * f4d5 f0a184bd,ef9395 d844dd3d,f4d5 0002113d,0000f4d5 8afa * * * * * 8afa
+17879 * * * * * * * 3ff9 e3bfb9,ef9396 3ff9,f4d6 00003ff9,0000f4d6 8afb * * * * * 8afb
+17880 * * * * * * * f4d7 f0a29a96,ef9397 d849de96,f4d7 00022696,0000f4d7 8afc * * * * * 8afc
+17881 * * * * * * * 6432 e690b2,ef9398 6432,f4d8 00006432,0000f4d8 8afd * * * * * 8afd
+17882 * * * * * * * f4d9 f0a0bead,ef9399 d843dfad,f4d9 00020fad,0000f4d9 8afe * * * * * 8afe
+17883 * * * * * * * f4da f0a38fb4,ef939a d84cdff4,f4da 000233f4,0000f4da 8b40 * * * * * 8b40
+17884 * * * * * * * f4dd ef939d,f0a0b5be d843dd7e,f4dd 0000f4dd,00020d7e 8b43 * * * * * 8b43
+17885 * * * * * * * f4de ef939e,f0a0b5bf d843dd7f,f4de 0000f4de,00020d7f 8b44 * * * * * 8b44
+17886 * * * * * * * f4e0 ef93a0,f0a2b195 d84bdc55,f4e0 0000f4e0,00022c55 8b46 * * * * * 8b46
+17887 * * * * * * * f4e2 ef93a2,f0a0ba98 d843de98,f4e2 0000f4e2,00020e98 8b48 * * * * * 8b48
+17888 * * * * * * * f4e4 ef93a4,f0a0bcae d843df2e,f4e4 0000f4e4,00020f2e 8b4a * * * * * 8b4a
+17889 * * * * * * * f4e6 ef93a6,f0a6ad90 d85adf50,f4e6 0000f4e6,00026b50 8b4c * * * * * 8b4c
+17890 * * * * * * * * e5938c,ef93ab 54cc,f4eb 000054cc,0000f4eb 8b51 * * * * * 8b51
+17891 * * * * * * * 82c4 e88b84,ef93ac 82c4,f4ec 000082c4,0000f4ec 8b52 * * * * * 8b52
+17892 * * * * * * * * e596b9,ef93ad 55b9,f4ed 000055b9,0000f4ed 8b53 * * * * * 8b53
+17893 * * * * * * * f4ef f0a9bb83,ef93af d867dec3,f4ef 00029ec3,0000f4ef 8b55 * * * * * 8b55
+17894 * * * * * * * 9c26 e9b0a6,ef93b0 9c26,f4f0 00009c26,0000f4f0 8b56 * * * * * 8b56
+17895 * * * * * * * * e9aab6,ef93b1 9ab6,f4f1 00009ab6,0000f4f1 8b57 * * * * * 8b57
+17896 * * * * * * * f4f3 ef93b3,f0a2b7ae d84bddee,f4f3 0000f4f3,00022dee 8b59 * * * * * 8b59
+17897 * * * * * * * 80ec e883ac,ef93b6 80ec,f4f6 000080ec,0000f4f6 8b5c * * * * * 8b5c
+17898 * * * * * * * 5c1c e5b09c,ef93b7 5c1c,f4f7 00005c1c,0000f4f7 8b5d * * * * * 8b5d
+17899 * * * * * * * f4f8 f0a695b2,ef93b8 d859dd72,f4f8 00026572,0000f4f8 8b5e * * * * * 8b5e
+17900 * * * * * * * 8134 e884b4,ef93b9 8134,f4f9 00008134,0000f4f9 8b5f * * * * * 8b5f
+17901 * * * * * * * 3797 e39e97,ef93ba 3797,f4fa 00003797,0000f4fa 8b60 * * * * * 8b60
+17902 * * * * * * * f4fc f0a882bd,ef93bc d860dcbd,f4fc 000280bd,0000f4fc 8b62 * * * * * 8b62
+17903 * * * * * * * 91b6 e986b6,ef93bd 91b6,f4fd 000091b6,0000f4fd 8b63 * * * * * 8b63
+17904 * * * * * * * f4fe f0a0bbba,ef93be d843defa,f4fe 00020efa,0000f4fe 8b64 * * * * * 8b64
+17905 * * * * * * * f4ff f0a0b88f,ef93bf d843de0f,f4ff 00020e0f,0000f4ff 8b65 * * * * * 8b65
+17906 * * * * * * * f500 f0a0b9b7,ef9480 d843de77,f500 00020e77,0000f500 8b66 * * * * * 8b66
+17907 * * * * * * * f501 f0a0bbbb,ef9481 d843defb,f501 00020efb,0000f501 8b67 * * * * * 8b67
+17908 * * * * * * * f503 f0a4b7ab,ef9483 d853ddeb,f503 00024deb,0000f503 8b69 * * * * * 8b69
+17909 * * * * * * * 3609 e39889,ef9484 3609,f504 00003609,0000f504 8b6a * * * * * 8b6a
+17910 * * * * * * * f505 f0a0b396,ef9485 d843dcd6,f505 00020cd6,0000f505 8b6b * * * * * 8b6b
+17911 * * * * * * * 56af e59aaf,ef9486 56af,f506 000056af,0000f506 8b6c * * * * * 8b6c
+17912 * * * * * * * f507 f0a29eb5,ef9487 d849dfb5,f507 000227b5,0000f507 8b6d * * * * * 8b6d
+17913 * * * * * * * f508 f0a18389,ef9488 d844dcc9,f508 000210c9,0000f508 8b6e * * * * * 8b6e
+17914 * * * * * * * f509 f0a0b890,ef9489 d843de10,f509 00020e10,0000f509 8b6f * * * * * 8b6f
+17915 * * * * * * * f50a f0a0b9b8,ef948a d843de78,f50a 00020e78,0000f50a 8b70 * * * * * 8b70
+17916 * * * * * * * f50b f0a181b8,ef948b d844dc78,f50b 00021078,0000f50b 8b71 * * * * * 8b71
+17917 * * * * * * * f50c f0a18588,ef948c d844dd48,f50c 00021148,0000f50c 8b72 * * * * * 8b72
+17918 * * * * * * * f50d f0a88887,ef948d d860de07,f50d 00028207,0000f50d 8b73 * * * * * 8b73
+17919 * * * * * * * f50e f0a19195,ef948e d845dc55,f50e 00021455,0000f50e 8b74 * * * * * 8b74
+17920 * * * * * * * f50f f0a0b9b9,ef948f d843de79,f50f 00020e79,0000f50f 8b75 * * * * * 8b75
+17921 * * * * * * * f510 f0a4b990,ef9490 d853de50,f510 00024e50,0000f510 8b76 * * * * * 8b76
+17922 * * * * * * * f511 f0a2b6a4,ef9491 d84bdda4,f511 00022da4,0000f511 8b77 * * * * * 8b77
+17923 * * * * * * * 5a54 e5a994,ef9492 5a54,f512 00005a54,0000f512 8b78 * * * * * 8b78
+17924 * * * * * * * f513 ef9493,f0a1809d d844dc1d,f513 0000f513,0002101d 8b79 * * * * * 8b79
+17925 * * * * * * * f514 ef9494,f0a1809e d844dc1e,f514 0000f514,0002101e 8b7a * * * * * 8b7a
+17926 * * * * * * * f515 ef9495,f0a183b5 d844dcf5,f515 0000f515,000210f5 8b7b * * * * * 8b7b
+17927 * * * * * * * f516 ef9496,f0a183b6 d844dcf6,f516 0000f516,000210f6 8b7c * * * * * 8b7c
+17928 * * * * * * * 579c e59e9c,ef9497 579c,f517 0000579c,0000f517 8b7d * * * * * 8b7d
+17929 * * * * * * * f518 f0a0b891,ef9498 d843de11,f518 00020e11,0000f518 8b7e * * * * * 8b7e
+17930 * * * * * * * f519 f0a79a94,ef9499 d85dde94,f519 00027694,0000f519 8ba1 * * * * * 8ba1
+17931 * * * * * * * f51a f0a88b8d,ef949a d860decd,f51a 000282cd,0000f51a 8ba2 * * * * * 8ba2
+17932 * * * * * * * f51b f0a0beb5,ef949b d843dfb5,f51b 00020fb5,0000f51b 8ba3 * * * * * 8ba3
+17933 * * * * * * * f51c f0a0b9bb,ef949c d843de7b,f51c 00020e7b,0000f51c 8ba4 * * * * * 8ba4
+17934 * * * * * * * f51d f0a585be,ef949d d854dd7e,f51d 0002517e,0000f51d 8ba5 * * * * * 8ba5
+17935 * * * * * * * 3703 e39c83,ef949e 3703,f51e 00003703,0000f51e 8ba6 * * * * * 8ba6
+17936 * * * * * * * f51f f0a0beb6,ef949f d843dfb6,f51f 00020fb6,0000f51f 8ba7 * * * * * 8ba7
+17937 * * * * * * * f520 f0a18680,ef94a0 d844dd80,f520 00021180,0000f520 8ba8 * * * * * 8ba8
+17938 * * * * * * * f521 f0a58b98,ef94a1 d854ded8,f521 000252d8,0000f521 8ba9 * * * * * 8ba9
+17939 * * * * * * * f522 f0aa8abd,ef94a2 d868debd,f522 0002a2bd,0000f522 8baa * * * * * 8baa
+17940 * * * * * * * f523 f0a4a79a,ef94a3 d852ddda,f523 000249da,0000f523 8bab * * * * * 8bab
+17941 * * * * * * * f524 f0a1a0ba,ef94a4 d846dc3a,f524 0002183a,0000f524 8bac * * * * * 8bac
+17942 * * * * * * * f525 f0a485b7,ef94a5 d850dd77,f525 00024177,0000f525 8bad * * * * * 8bad
+17943 * * * * * * * f526 f0a889bc,ef94a6 d860de7c,f526 0002827c,0000f526 8bae * * * * * 8bae
+17944 * * * * * * * 5899 e5a299,ef94a7 5899,f527 00005899,0000f527 8baf * * * * * 8baf
+17945 * * * * * * * 5268 e589a8,ef94a8 5268,f528 00005268,0000f528 8bb0 * * * * * 8bb0
+17946 * * * * * * * 361a e3989a,ef94a9 361a,f529 0000361a,0000f529 8bb1 * * * * * 8bb1
+17947 * * * * * * * f52a f0a59cbd,ef94aa d855df3d,f52a 0002573d,0000f52a 8bb2 * * * * * 8bb2
+17948 * * * * * * * 7bb2 e7aeb2,ef94ab 7bb2,f52b 00007bb2,0000f52b 8bb3 * * * * * 8bb3
+17949 * * * * * * * 5b68 e5ada8,ef94ac 5b68,f52c 00005b68,0000f52c 8bb4 * * * * * 8bb4
+17950 * * * * * * * 4800 e4a080,ef94ad 4800,f52d 00004800,0000f52d 8bb5 * * * * * 8bb5
+17951 * * * * * * * 4b2c e4acac,ef94ae 4b2c,f52e 00004b2c,0000f52e 8bb6 * * * * * 8bb6
+17952 * * * * * * * 9f27 e9bca7,ef94af 9f27,f52f 00009f27,0000f52f 8bb7 * * * * * 8bb7
+17953 * * * * * * * 49e7 e4a7a7,ef94b0 49e7,f530 000049e7,0000f530 8bb8 * * * * * 8bb8
+17954 * * * * * * * 9c1f e9b09f,ef94b1 9c1f,f531 00009c1f,0000f531 8bb9 * * * * * 8bb9
+17955 * * * * * * * 9b8d e9ae8d,ef94b2 9b8d,f532 00009b8d,0000f532 8bba * * * * * 8bba
+17956 * * * * * * * f533 f0a5adb4,ef94b3 d856df74,f533 00025b74,0000f533 8bbb * * * * * 8bbb
+17957 * * * * * * * f534 f0a384bd,ef94b4 d84cdd3d,f534 0002313d,0000f534 8bbc * * * * * 8bbc
+17958 * * * * * * * 55fb e597bb,ef94b5 55fb,f535 000055fb,0000f535 8bbd * * * * * 8bbd
+17959 * * * * * * * 35f2 e397b2,ef94b6 35f2,f536 000035f2,0000f536 8bbe * * * * * 8bbe
+17960 * * * * * * * 5689 e59a89,ef94b7 5689,f537 00005689,0000f537 8bbf * * * * * 8bbf
+17961 * * * * * * * 5d3e e5b4be,ef98b4 5d3e,f634 00005d3e,0000f634 8d60 * * * * * 8d60
+17962 * * * * * * * 5d48 e5b588,ef98b5 5d48,f635 00005d48,0000f635 8d61 * * * * * 8d61
+17963 * * * * * * * 3dfc e3b7bc,ef98b7 3dfc,f637 00003dfc,0000f637 8d63 * * * * * 8d63
+17964 * * * * * * * 380f e3a08f,ef98b8 380f,f638 0000380f,0000f638 8d64 * * * * * 8d64
+17965 * * * * * * * 5da4 e5b6a4,ef98b9 5da4,f639 00005da4,0000f639 8d65 * * * * * 8d65
+17966 * * * * * * * 5db9 e5b6b9,ef98ba 5db9,f63a 00005db9,0000f63a 8d66 * * * * * 8d66
+17967 * * * * * * * 3820 e3a0a0,ef98bb 3820,f63b 00003820,0000f63b 8d67 * * * * * 8d67
+17968 * * * * * * * 5f25 e5bca5,ef98bf 5f25,f63f 00005f25,0000f63f 8d6b * * * * * 8d6b
+17969 * * * * * * * 5f83 e5be83,ef9980 5f83,f640 00005f83,0000f640 8d6c * * * * * 8d6c
+17970 * * * * * * * 3908 e3a488,ef9981 3908,f641 00003908,0000f641 8d6d * * * * * 8d6d
+17971 * * * * * * * 393f e3a4bf,ef9983 393f,f643 0000393f,0000f643 8d6f * * * * * 8d6f
+17972 * * * * * * * 394d e3a58d,ef9984 394d,f644 0000394d,0000f644 8d70 * * * * * 8d70
+17973 * * * * * * * 60d7 e68397,ef9985 60d7,f645 000060d7,0000f645 8d71 * * * * * 8d71
+17974 * * * * * * * 613d e684bd,ef9986 613d,f646 0000613d,0000f646 8d72 * * * * * 8d72
+17975 * * * * * * * 5ce5 e5b3a5,ef9987 5ce5,f647 00005ce5,0000f647 8d73 * * * * * 8d73
+17976 * * * * * * * 3989 e3a689,ef9988 3989,f648 00003989,0000f648 8d74 * * * * * 8d74
+17977 * * * * * * * 61b7 e686b7,ef9989 61b7,f649 000061b7,0000f649 8d75 * * * * * 8d75
+17978 * * * * * * * 61cf e6878f,ef998b 61cf,f64b 000061cf,0000f64b 8d77 * * * * * 8d77
+17979 * * * * * * * 39b8 e3a6b8,ef998c 39b8,f64c 000039b8,0000f64c 8d78 * * * * * 8d78
+17980 * * * * * * * 622c e688ac,ef998d 622c,f64d 0000622c,0000f64d 8d79 * * * * * 8d79
+17981 * * * * * * * 62e5 e68ba5,ef998f 62e5,f64f 000062e5,0000f64f 8d7b * * * * * 8d7b
+17982 * * * * * * * 39f8 e3a7b8,ef9991 39f8,f651 000039f8,0000f651 8d7d * * * * * 8d7d
+17983 * * * * * * * 56b1 e59ab1,ef9992 56b1,f652 000056b1,0000f652 8d7e * * * * * 8d7e
+17984 * * * * * * * 3a03 e3a883,ef9993 3a03,f653 00003a03,0000f653 8da1 * * * * * 8da1
+17985 * * * * * * * 63e2 e68fa2,ef9994 63e2,f654 000063e2,0000f654 8da2 * * * * * 8da2
+17986 * * * * * * * 63fb e68fbb,ef9995 63fb,f655 000063fb,0000f655 8da3 * * * * * 8da3
+17987 * * * * * * * 6407 e69087,ef9996 6407,f656 00006407,0000f656 8da4 * * * * * 8da4
+17988 * * * * * * * 3a4b e3a98b,ef9998 3a4b,f658 00003a4b,0000f658 8da6 * * * * * 8da6
+17989 * * * * * * * 64c0 e69380,ef9999 64c0,f659 000064c0,0000f659 8da7 * * * * * 8da7
+17990 * * * * * * * 9f9f e9be9f,ef999c 9f9f,f65c 00009f9f,0000f65c 8daa * * * * * 8daa
+17991 * * * * * * * 3a97 e3aa97,ef999d 3a97,f65d 00003a97,0000f65d 8dab * * * * * 8dab
+17992 * * * * * * * 6586 e69686,ef999e 6586,f65e 00006586,0000f65e 8dac * * * * * 8dac
+17993 * * * * * * * 3abd e3aabd,ef999f 3abd,f65f 00003abd,0000f65f 8dad * * * * * 8dad
+17994 * * * * * * * 65ff e697bf,ef99a0 65ff,f660 000065ff,0000f660 8dae * * * * * 8dae
+17995 * * * * * * * 6653 e69993,ef99a1 6653,f661 00006653,0000f661 8daf * * * * * 8daf
+17996 * * * * * * * 3af2 e3abb2,ef99a2 3af2,f662 00003af2,0000f662 8db0 * * * * * 8db0
+17997 * * * * * * * 6692 e69a92,ef99a3 6692,f663 00006692,0000f663 8db1 * * * * * 8db1
+17998 * * * * * * * 3b22 e3aca2,ef99a4 3b22,f664 00003b22,0000f664 8db2 * * * * * 8db2
+17999 * * * * * * * 6716 e69c96,ef99a5 6716,f665 00006716,0000f665 8db3 * * * * * 8db3
+18000 * * * * * * * 3b42 e3ad82,ef99a6 3b42,f666 00003b42,0000f666 8db4 * * * * * 8db4
+18001 * * * * * * * 67a4 e69ea4,ef99a7 67a4,f667 000067a4,0000f667 8db5 * * * * * 8db5
+18002 * * * * * * * 3b58 e3ad98,ef99a9 3b58,f669 00003b58,0000f669 8db7 * * * * * 8db7
+18003 * * * * * * * 684a e6a18a,ef99aa 684a,f66a 0000684a,0000f66a 8db8 * * * * * 8db8
+18004 * * * * * * * 6884 e6a284,ef99ab 6884,f66b 00006884,0000f66b 8db9 * * * * * 8db9
+18005 * * * * * * * 3b72 e3adb2,ef99ac 3b72,f66c 00003b72,0000f66c 8dba * * * * * 8dba
+18006 * * * * * * * 3b71 e3adb1,ef99ad 3b71,f66d 00003b71,0000f66d 8dbb * * * * * 8dbb
+18007 * * * * * * * 3b7b e3adbb,ef99ae 3b7b,f66e 00003b7b,0000f66e 8dbc * * * * * 8dbc
+18008 * * * * * * * 6909 e6a489,ef99af 6909,f66f 00006909,0000f66f 8dbd * * * * * 8dbd
+18009 * * * * * * * 6943 e6a583,ef99b0 6943,f670 00006943,0000f670 8dbe * * * * * 8dbe
+18010 * * * * * * * 725c e7899c,ef99b1 725c,f671 0000725c,0000f671 8dbf * * * * * 8dbf
+18011 * * * * * * * 6964 e6a5a4,ef99b2 6964,f672 00006964,0000f672 8dc0 * * * * * 8dc0
+18012 * * * * * * * 699f e6a69f,ef99b3 699f,f673 0000699f,0000f673 8dc1 * * * * * 8dc1
+18013 * * * * * * * 6985 e6a685,ef99b4 6985,f674 00006985,0000f674 8dc2 * * * * * 8dc2
+18014 * * * * * * * 69d6 e6a796,ef99b6 69d6,f676 000069d6,0000f676 8dc4 * * * * * 8dc4
+18015 * * * * * * * 3bdd e3af9d,ef99b7 3bdd,f677 00003bdd,0000f677 8dc5 * * * * * 8dc5
+18016 * * * * * * * 6a65 e6a9a5,ef99b8 6a65,f678 00006a65,0000f678 8dc6 * * * * * 8dc6
+18017 * * * * * * * 6a74 e6a9b4,ef99b9 6a74,f679 00006a74,0000f679 8dc7 * * * * * 8dc7
+18018 * * * * * * * 6a71 e6a9b1,ef99ba 6a71,f67a 00006a71,0000f67a 8dc8 * * * * * 8dc8
+18019 * * * * * * * 6a82 e6aa82,ef99bb 6a82,f67b 00006a82,0000f67b 8dc9 * * * * * 8dc9
+18020 * * * * * * * 3bec e3afac,ef99bc 3bec,f67c 00003bec,0000f67c 8dca * * * * * 8dca
+18021 * * * * * * * 6a99 e6aa99,ef99bd 6a99,f67d 00006a99,0000f67d 8dcb * * * * * 8dcb
+18022 * * * * * * * 3bf2 e3afb2,ef99be 3bf2,f67e 00003bf2,0000f67e 8dcc * * * * * 8dcc
+18023 * * * * * * * 6aab e6aaab,ef99bf 6aab,f67f 00006aab,0000f67f 8dcd * * * * * 8dcd
+18024 * * * * * * * 6ab5 e6aab5,ef9a80 6ab5,f680 00006ab5,0000f680 8dce * * * * * 8dce
+18025 * * * * * * * 6ad4 e6ab94,ef9a81 6ad4,f681 00006ad4,0000f681 8dcf * * * * * 8dcf
+18026 * * * * * * * 6af6 e6abb6,ef9a82 6af6,f682 00006af6,0000f682 8dd0 * * * * * 8dd0
+18027 * * * * * * * 6b81 e6ae81,ef9a83 6b81,f683 00006b81,0000f683 8dd1 * * * * * 8dd1
+18028 * * * * * * * 6bc1 e6af81,ef9a84 6bc1,f684 00006bc1,0000f684 8dd2 * * * * * 8dd2
+18029 * * * * * * * 6bea e6afaa,ef9a85 6bea,f685 00006bea,0000f685 8dd3 * * * * * 8dd3
+18030 * * * * * * * 6c75 e6b1b5,ef9a86 6c75,f686 00006c75,0000f686 8dd4 * * * * * 8dd4
+18031 * * * * * * * 6caa e6b2aa,ef9a87 6caa,f687 00006caa,0000f687 8dd5 * * * * * 8dd5
+18032 * * * * * * * 3ccb e3b38b,ef9a88 3ccb,f688 00003ccb,0000f688 8dd6 * * * * * 8dd6
+18033 * * * * * * * 6d02 e6b482,ef9a89 6d02,f689 00006d02,0000f689 8dd7 * * * * * 8dd7
+18034 * * * * * * * 6d06 e6b486,ef9a8a 6d06,f68a 00006d06,0000f68a 8dd8 * * * * * 8dd8
+18035 * * * * * * * 6d26 e6b4a6,ef9a8b 6d26,f68b 00006d26,0000f68b 8dd9 * * * * * 8dd9
+18036 * * * * * * * 6d81 e6b681,ef9a8c 6d81,f68c 00006d81,0000f68c 8dda * * * * * 8dda
+18037 * * * * * * * 3cef e3b3af,ef9a8d 3cef,f68d 00003cef,0000f68d 8ddb * * * * * 8ddb
+18038 * * * * * * * 6da4 e6b6a4,ef9a8e 6da4,f68e 00006da4,0000f68e 8ddc * * * * * 8ddc
+18039 * * * * * * * 6db1 e6b6b1,ef9a8f 6db1,f68f 00006db1,0000f68f 8ddd * * * * * 8ddd
+18040 * * * * * * * 6e15 e6b895,ef9a90 6e15,f690 00006e15,0000f690 8dde * * * * * 8dde
+18041 * * * * * * * 6e18 e6b898,ef9a91 6e18,f691 00006e18,0000f691 8ddf * * * * * 8ddf
+18042 * * * * * * * 6e29 e6b8a9,ef9a92 6e29,f692 00006e29,0000f692 8de0 * * * * * 8de0
+18043 * * * * * * * 6e86 e6ba86,ef9a93 6e86,f693 00006e86,0000f693 8de1 * * * * * 8de1
+18044 * * * * * * * f694 f0a8a780,ef9a94 d862ddc0,f694 000289c0,0000f694 8de2 * * * * * 8de2
+18045 * * * * * * * 6ebb e6babb,ef9a95 6ebb,f695 00006ebb,0000f695 8de3 * * * * * 8de3
+18046 * * * * * * * 6ee2 e6bba2,ef9a96 6ee2,f696 00006ee2,0000f696 8de4 * * * * * 8de4
+18047 * * * * * * * 6eda e6bb9a,ef9a97 6eda,f697 00006eda,0000f697 8de5 * * * * * 8de5
+18048 * * * * * * * 9f7f e9bdbf,ef9a98 9f7f,f698 00009f7f,0000f698 8de6 * * * * * 8de6
+18049 * * * * * * * 6ee8 e6bba8,ef9a99 6ee8,f699 00006ee8,0000f699 8de7 * * * * * 8de7
+18050 * * * * * * * 6ee9 e6bba9,ef9a9a 6ee9,f69a 00006ee9,0000f69a 8de8 * * * * * 8de8
+18051 * * * * * * * 6f24 e6bca4,ef9a9b 6f24,f69b 00006f24,0000f69b 8de9 * * * * * 8de9
+18052 * * * * * * * 6f34 e6bcb4,ef9a9c 6f34,f69c 00006f34,0000f69c 8dea * * * * * 8dea
+18053 * * * * * * * 3d46 e3b586,ef9a9d 3d46,f69d 00003d46,0000f69d 8deb * * * * * 8deb
+18054 * * * * * * * f69e f0a3bd81,ef9a9e d84fdf41,f69e 00023f41,0000f69e 8dec * * * * * 8dec
+18055 * * * * * * * 6f81 e6be81,ef9a9f 6f81,f69f 00006f81,0000f69f 8ded * * * * * 8ded
+18056 * * * * * * * 6fbe e6bebe,ef9aa0 6fbe,f6a0 00006fbe,0000f6a0 8dee * * * * * 8dee
+18057 * * * * * * * 3d6a e3b5aa,ef9aa1 3d6a,f6a1 00003d6a,0000f6a1 8def * * * * * 8def
+18058 * * * * * * * 3d75 e3b5b5,ef9aa2 3d75,f6a2 00003d75,0000f6a2 8df0 * * * * * 8df0
+18059 * * * * * * * 71b7 e786b7,ef9aa3 71b7,f6a3 000071b7,0000f6a3 8df1 * * * * * 8df1
+18060 * * * * * * * 5c99 e5b299,ef9aa4 5c99,f6a4 00005c99,0000f6a4 8df2 * * * * * 8df2
+18061 * * * * * * * 3d8a e3b68a,ef9aa5 3d8a,f6a5 00003d8a,0000f6a5 8df3 * * * * * 8df3
+18062 * * * * * * * 702c e780ac,ef9aa6 702c,f6a6 0000702c,0000f6a6 8df4 * * * * * 8df4
+18063 * * * * * * * 3d91 e3b691,ef9aa7 3d91,f6a7 00003d91,0000f6a7 8df5 * * * * * 8df5
+18064 * * * * * * * 7050 e78190,ef9aa8 7050,f6a8 00007050,0000f6a8 8df6 * * * * * 8df6
+18065 * * * * * * * 7054 e78194,ef9aa9 7054,f6a9 00007054,0000f6a9 8df7 * * * * * 8df7
+18066 * * * * * * * 706f e781af,ef9aaa 706f,f6aa 0000706f,0000f6aa 8df8 * * * * * 8df8
+18067 * * * * * * * 707f e781bf,ef9aab 707f,f6ab 0000707f,0000f6ab 8df9 * * * * * 8df9
+18068 * * * * * * * f6ad f0a08ca5,ef9aad d840df25,f6ad 00020325,0000f6ad 8dfb * * * * * 8dfb
+18069 * * * * * * * 43c1 e48f81,ef9aae 43c1,f6ae 000043c1,0000f6ae 8dfc * * * * * 8dfc
+18070 * * * * * * * 35f1 e397b1,ef9aaf 35f1,f6af 000035f1,0000f6af 8dfd * * * * * 8dfd
+18071 * * * * * * * f6b0 f0a0bb98,ef9ab0 d843ded8,f6b0 00020ed8,0000f6b0 8dfe * * * * * 8dfe
+18072 * * * * * * * 364e e3998e,ee8c96 364e,e316 0000364e,0000e316 8e45 * * * * * 8e45
+18073 * * * * * * * 3dad e3b6ad,ee8cbc 3dad,e33c 00003dad,0000e33c 8e6b * * * * * 8e6b
+18074 * * * * * * * e33d f0a5b1a5,ee8cbd d857dc65,e33d 00025c65,0000e33d 8e6c * * * * * 8e6c
+18075 * * * * * * * 667d e699bd,ee8d87 667d,e347 0000667d,0000e347 8e76 * * * * * 8e76
+18076 * * * * * * * 7c74 e7b1b4,ee8d8c 7c74,e34c 00007c74,0000e34c 8e7b * * * * * 8e7b
+18077 * * * * * * * 748d e7928d,ee8d95 748d,e355 0000748d,0000e355 8ea6 * * * * * 8ea6
+18078 * * * * * * * 7e92 e7ba92,ee8da7 7e92,e367 00007e92,0000e367 8eb8 * * * * * 8eb8
+18079 * * * * * * * 4503 e49483,ee8db8 4503,e378 00004503,0000e378 8ec9 * * * * * 8ec9
+18080 * * * * * * * e394 ee8e94,f0a4beb8 d853dfb8,e394 0000e394,00024fb8 8ee5 * * * * * 8ee5
+18081 * * * * * * * e39e ee8e9e,f0a0ac8d d842df0d,e39e 0000e39e,00020b0d 8eef * * * * * 8eef
+18082 * * * * * * * e3a5 ee8ea5,f0a6ac8a d85adf0a,e3a5 0000e3a5,00026b0a 8ef6 * * * * * 8ef6
+18083 * * * * * * * 347e e391be,ee8f87 347e,e3c7 0000347e,0000e3c7 8f59 * * * * * 8f59
+18084 * * * * * * * e3cd ee8f8d,f0a2bbaf d84bdeef,e3cd 0000e3cd,00022eef 8f5f * * * * * 8f5f
+18085 * * * * * * * e3d5 ee8f95,f0a3b2b5 d84fdcb5,e3d5 0000e3d5,00023cb5 8f67 * * * * * 8f67
+18086 * * * * * * * e3e7 ee8fa7,f0a6ba99 d85bde99,e3e7 0000e3e7,00026e99 8f79 * * * * * 8f79
+18087 * * * * * * * * e89db1,ee8fbc 8771,e3fc 00008771,0000e3fc 8fb0 * * * * * 8fb0
+18088 * * * * * * * 63c1 e68f81,ee9091 63c1,e411 000063c1,0000e411 8fc5 * * * * * 8fc5
+18089 * * * * * * * 7777 e79db7,ee9093 7777,e413 00007777,0000e413 8fc7 * * * * * 8fc7
+18090 * * * * * * * * e8a68a,ee9096 898a,e416 0000898a,0000e416 8fca * * * * * 8fca
+18091 * * * * * * * e426 ee90a6,f0a3be8f d84fdf8f,e426 0000e426,00023f8f 8fda * * * * * 8fda
+18092 * * * * * * * * e8ad8c,ee90af 8b4c,e42f 00008b4c,0000e42f 8fe3 * * * * * 8fe3
+18093 * * * * * * * e448 ee9188,f0a4b389 d853dcc9,e448 0000e448,00024cc9 8ffc * * * * * 8ffc
+18094 * * * * * * * 492a e4a4aa,ee91a0 492a,e460 0000492a,0000e460 9055 * * * * * 9055
+18095 * * * * * * * e467 f0aa8094,ee91a7 d868dc14,e467 0002a014,0000e467 905c * * * * * 905c
+18096 * * * * * * * e468 f0a89abc,ee91a8 d861debc,e468 000286bc,0000e468 905d * * * * * 905d
+18097 * * * * * * * e469 f0a89481,ee91a9 d861dd01,e469 00028501,0000e469 905e * * * * * 905e
+18098 * * * * * * * 3af0 e3abb0,ee91ba 3af0,e47a 00003af0,0000e47a 906f * * * * * 906f
+18099 * * * * * * * 708f e7828f,ee928f 708f,e48f 0000708f,0000e48f 90a6 * * * * * 90a6
+18100 * * * * * * * e4a1 ee92a1,f0a299ba d849de7a,e4a1 0000e4a1,0002267a 90b8 * * * * * 90b8
+18101 * * * * * * * e50d ee948d,f0a6a6a8 d85adda8,e50d 0000e50d,000269a8 9165 * * * * * 9165
+18102 * * * * * * * e516 ee9496,f0a4898b d850de4b,e516 0000e516,0002424b 916e * * * * * 916e
+18103 * * * * * * * 6888 e6a288,ee94a6 6888,e526 00006888,0000e526 917e * * * * * 917e
+18104 * * * * * * * e528 ee94a8,f0a2859b d848dd5b,e528 0000e528,0002215b 91a2 * * * * * 91a2
+18105 * * * * * * * * e9bda2,ee958e 9f62,e54e 00009f62,0000e54e 91c8 * * * * * 91c8
+18106 * * * * * * * * e98f86,ee96a9 93c6,e5a9 000093c6,0000e5a9 9264 * * * * * 9264
+18107 * * * * * * * e5b2 ee96b2,f0a08dbf d840df7f,e5b2 0000e5b2,0002037f 926d * * * * * 926d
+18108 * * * * * * * 9366 e98da6,ee9888 9366,e608 00009366,0000e608 92e5 * * * * * 92e5
+18109 * * * * * * * 928f e98a8f,ee9895 928f,e615 0000928f,0000e615 92f2 * * * * * 92f2
+18110 * * * * * * * 8614 e89894,ee998a 8614,e64a 00008614,0000e64a 9368 * * * * * 9368
+18111 * * * * * * * e66a ee99aa,f0aa919b d869dc5b,e66a 0000e66a,0002a45b 93aa * * * * * 93aa
+18112 * * * * * * * 4190 e48690,ee9a82 4190,e682 00004190,0000e682 93c2 * * * * * 93c2
+18113 * * * * * * * 678f e69e8f,ee9aa5 678f,e6a5 0000678f,0000e6a5 93e5 * * * * * 93e5
+18114 * * * * * * * 681e e6a09e,ee9aa8 681e,e6a8 0000681e,0000e6a8 93e8 * * * * * 93e8
+18115 * * * * * * * 3863 e3a1a3,ee9aab 3863,e6ab 00003863,0000e6ab 93eb * * * * * 93eb
+18116 * * * * * * * e6c5 ee9b85,f0a4a7ac d852ddec,e6c5 0000e6c5,000249ec 9446 * * * * * 9446
+18117 * * * * * * * 3b19 e3ac99,ee9bb8 3b19,e6f8 00003b19,0000e6f8 9479 * * * * * 9479
+18118 * * * * * * * * e89296,ee9ca8 8496,e728 00008496,0000e728 94cb * * * * * 94cb
+18119 * * * * * * * e769 ee9da9,f0a4a5a2 d852dd62,e769 0000e769,00024962 954d * * * * * 954d
+18120 * * * * * * * 39e2 e3a7a2,ee9db6 39e2,e776 000039e2,0000e776 955a * * * * * 955a
+18121 * * * * * * * * e89280,ee9dbb 8480,e77b 00008480,0000e77b 955f * * * * * 955f
+18122 * * * * * * * 436e e48dae,ee9f80 436e,e7c0 0000436e,0000e7c0 95c6 * * * * * 95c6
+18123 * * * * * * * * e99db1,eea08a 9771,e80a 00009771,0000e80a 9651 * * * * * 9651
+18124 * * * * * * * * e9a69b,eea0a3 999b,e823 0000999b,0000e823 966a * * * * * 966a
+18125 * * * * * * * 492d e4a4ad,eea1ab 492d,e86b 0000492d,0000e86b 96d4 * * * * * 96d4
+18126 * * * * * * * 6f17 e6bc97,eea4b7 6f17,e937 00006f17,0000e937 9844 * * * * * 9844
+18127 * * * * * * * e938 f0a78489,eea4b8 d85cdd09,e938 00027109,0000e938 9845 * * * * * 9845
+18128 * * * * * * * * e782a6,eea5a2 70a6,e962 000070a6,0000e962 986f * * * * * 986f
+18129 * * * * * * * e968 f0a4a98f,eea5a8 d852de4f,e968 00024a4f,0000e968 9875 * * * * * 9875
+18130 * * * * * * * 7e65 e7b9a5,eea5a9 7e65,e969 00007e65,0000e969 9876 * * * * * 9876
+18131 * * * * * * * 5d2f e5b4af,eea5ab 5d2f,e96b 00005d2f,0000e96b 9878 * * * * * 9878
+18132 * * * * * * * 3df3 e3b7b3,eea5ac 3df3,e96c 00003df3,0000e96c 9879 * * * * * 9879
+18133 * * * * * * * e96e f0a4a99d,eea5ae d852de5d,e96e 00024a5d,0000e96e 987b * * * * * 987b
+18134 * * * * * * * e96f f0a19f9f,eea5af d845dfdf,e96f 000217df,0000e96f 987c * * * * * 987c
+18135 * * * * * * * 7da4 e7b6a4,eea5b0 7da4,e970 00007da4,0000e970 987d * * * * * 987d
+18136 * * * * * * * 8426 e890a6,eea5b1 8426,e971 00008426,0000e971 987e * * * * * 987e
+18137 * * * * * * * 5485 e59285,eea5b2 5485,e972 00005485,0000e972 98a1 * * * * * 98a1
+18138 * * * * * * * e973 f0a3abba,eea5b3 d84edefa,e973 00023afa,0000e973 98a2 * * * * * 98a2
+18139 * * * * * * * e975 f0a08894,eea5b5 d840de14,e975 00020214,0000e975 98a4 * * * * * 98a4
+18140 * * * * * * * 577e e59dbe,eea5b6 577e,e976 0000577e,0000e976 98a5 * * * * * 98a5
+18141 * * * * * * * e977 f0a0a395,eea5b7 d842dcd5,e977 000208d5,0000e977 98a6 * * * * * 98a6
+18142 * * * * * * * e978 f0a09899,eea5b8 d841de19,e978 00020619,0000e978 98a7 * * * * * 98a7
+18143 * * * * * * * 3fe5 e3bfa5,eea5b9 3fe5,e979 00003fe5,0000e979 98a8 * * * * * 98a8
+18144 * * * * * * * e97a f0a1be9e,eea5ba d847df9e,e97a 00021f9e,0000e97a 98a9 * * * * * 98a9
+18145 * * * * * * * e97b f0aa8ab6,eea5bb d868deb6,e97b 0002a2b6,0000e97b 98aa * * * * * 98aa
+18146 * * * * * * * 7003 e78083,eea5bc 7003,e97c 00007003,0000e97c 98ab * * * * * 98ab
+18147 * * * * * * * e97d f0a9859b,eea5bd d864dd5b,e97d 0002915b,0000e97d 98ac * * * * * 98ac
+18148 * * * * * * * 5d70 e5b5b0,eea5be 5d70,e97e 00005d70,0000e97e 98ad * * * * * 98ad
+18149 * * * * * * * 738f e78e8f,eea5bf 738f,e97f 0000738f,0000e97f 98ae * * * * * 98ae
+18150 * * * * * * * e981 f0a8a999,eea681 d862de59,e981 00028a59,0000e981 98b0 * * * * * 98b0
+18151 * * * * * * * e982 f0a990a0,eea682 d865dc20,e982 00029420,0000e982 98b1 * * * * * 98b1
+18152 * * * * * * * 4fc8 e4bf88,eea683 4fc8,e983 00004fc8,0000e983 98b2 * * * * * 98b2
+18153 * * * * * * * 7fe7 e7bfa7,eea684 7fe7,e984 00007fe7,0000e984 98b3 * * * * * 98b3
+18154 * * * * * * * 7310 e78c90,eea686 7310,e986 00007310,0000e986 98b5 * * * * * 98b5
+18155 * * * * * * * 7338 e78cb8,eea688 7338,e988 00007338,0000e988 98b7 * * * * * 98b7
+18156 * * * * * * * 7341 e78d81,eea68b 7341,e98b 00007341,0000e98b 98ba * * * * * 98ba
+18157 * * * * * * * 3ea9 e3baa9,eea68d 3ea9,e98d 00003ea9,0000e98d 98bc * * * * * 98bc
+18158 * * * * * * * 71f5 e787b5,eea690 71f5,e990 000071f5,0000e990 98bf * * * * * 98bf
+18159 * * * * * * * e991 f0a4a3b2,eea691 d852dcf2,e991 000248f2,0000e991 98c0 * * * * * 98c0
+18160 * * * * * * * 73e1 e78fa1,eea692 73e1,e992 000073e1,0000e992 98c1 * * * * * 98c1
+18161 * * * * * * * 3eca e3bb8a,eea694 3eca,e994 00003eca,0000e994 98c3 * * * * * 98c3
+18162 * * * * * * * 3ed1 e3bb91,eea696 3ed1,e996 00003ed1,0000e996 98c5 * * * * * 98c5
+18163 * * * * * * * 7419 e79099,eea699 7419,e999 00007419,0000e999 98c8 * * * * * 98c8
+18164 * * * * * * * 741e e7909e,eea69a 741e,e99a 0000741e,0000e99a 98c9 * * * * * 98c9
+18165 * * * * * * * 741f e7909f,eea69b 741f,e99b 0000741f,0000e99b 98ca * * * * * 98ca
+18166 * * * * * * * 3ee2 e3bba2,eea69c 3ee2,e99c 00003ee2,0000e99c 98cb * * * * * 98cb
+18167 * * * * * * * 3ef0 e3bbb0,eea69d 3ef0,e99d 00003ef0,0000e99d 98cc * * * * * 98cc
+18168 * * * * * * * 3ef4 e3bbb4,eea69e 3ef4,e99e 00003ef4,0000e99e 98cd * * * * * 98cd
+18169 * * * * * * * 3efa e3bbba,eea69f 3efa,e99f 00003efa,0000e99f 98ce * * * * * 98ce
+18170 * * * * * * * 74d3 e79393,eea6a0 74d3,e9a0 000074d3,0000e9a0 98cf * * * * * 98cf
+18171 * * * * * * * 3f0e e3bc8e,eea6a1 3f0e,e9a1 00003f0e,0000e9a1 98d0 * * * * * 98d0
+18172 * * * * * * * 3f53 e3bd93,eea6a2 3f53,e9a2 00003f53,0000e9a2 98d1 * * * * * 98d1
+18173 * * * * * * * 756d e795ad,eea6a4 756d,e9a4 0000756d,0000e9a4 98d3 * * * * * 98d3
+18174 * * * * * * * 7572 e795b2,eea6a5 7572,e9a5 00007572,0000e9a5 98d4 * * * * * 98d4
+18175 * * * * * * * 758d e7968d,eea6a6 758d,e9a6 0000758d,0000e9a6 98d5 * * * * * 98d5
+18176 * * * * * * * 3f7c e3bdbc,eea6a7 3f7c,e9a7 00003f7c,0000e9a7 98d6 * * * * * 98d6
+18177 * * * * * * * 75c8 e79788,eea6a8 75c8,e9a8 000075c8,0000e9a8 98d7 * * * * * 98d7
+18178 * * * * * * * 764d e7998d,eea6ab 764d,e9ab 0000764d,0000e9ab 98da * * * * * 98da
+18179 * * * * * * * 7674 e799b4,eea6ad 7674,e9ad 00007674,0000e9ad 98dc * * * * * 98dc
+18180 * * * * * * * 3fdc e3bf9c,eea6ae 3fdc,e9ae 00003fdc,0000e9ae 98dd * * * * * 98dd
+18181 * * * * * * * 767a e799ba,eea6af 767a,e9af 0000767a,0000e9af 98de * * * * * 98de
+18182 * * * * * * * 7188 e78688,eea6b1 7188,e9b1 00007188,0000e9b1 98e0 * * * * * 98e0
+18183 * * * * * * * 5623 e598a3,eea6b2 5623,e9b2 00005623,0000e9b2 98e1 * * * * * 98e1
+18184 * * * * * * * 8980 e8a680,eea6b3 8980,e9b3 00008980,0000e9b3 98e2 * * * * * 98e2
+18185 * * * * * * * 401d e4809d,eea6b5 401d,e9b5 0000401d,0000e9b5 98e4 * * * * * 98e4
+18186 * * * * * * * 7743 e79d83,eea6b6 7743,e9b6 00007743,0000e9b6 98e5 * * * * * 98e5
+18187 * * * * * * * 4039 e480b9,eea6b7 4039,e9b7 00004039,0000e9b7 98e6 * * * * * 98e6
+18188 * * * * * * * 4045 e48185,eea6b9 4045,e9b9 00004045,0000e9b9 98e8 * * * * * 98e8
+18189 * * * * * * * 35db e3979b,eea6ba 35db,e9ba 000035db,0000e9ba 98e9 * * * * * 98e9
+18190 * * * * * * * 7798 e79e98,eea6bb 7798,e9bb 00007798,0000e9bb 98ea * * * * * 98ea
+18191 * * * * * * * 406a e481aa,eea6bc 406a,e9bc 0000406a,0000e9bc 98eb * * * * * 98eb
+18192 * * * * * * * 406f e481af,eea6bd 406f,e9bd 0000406f,0000e9bd 98ec * * * * * 98ec
+18193 * * * * * * * 77be e79ebe,eea6bf 77be,e9bf 000077be,0000e9bf 98ee * * * * * 98ee
+18194 * * * * * * * 77cb e79f8b,eea780 77cb,e9c0 000077cb,0000e9c0 98ef * * * * * 98ef
+18195 * * * * * * * 7818 e7a098,eea782 7818,e9c2 00007818,0000e9c2 98f1 * * * * * 98f1
+18196 * * * * * * * 781c e7a09c,eea784 781c,e9c4 0000781c,0000e9c4 98f3 * * * * * 98f3
+18197 * * * * * * * 7847 e7a187,eea787 7847,e9c7 00007847,0000e9c7 98f6 * * * * * 98f6
+18198 * * * * * * * 7851 e7a191,eea788 7851,e9c8 00007851,0000e9c8 98f7 * * * * * 98f7
+18199 * * * * * * * 7866 e7a1a6,eea789 7866,e9c9 00007866,0000e9c9 98f8 * * * * * 98f8
+18200 * * * * * * * 8448 e89188,eea78a 8448,e9ca 00008448,0000e9ca 98f9 * * * * * 98f9
+18201 * * * * * * * e9cb f0a594b5,eea78b d855dd35,e9cb 00025535,0000e9cb 98fa * * * * * 98fa
+18202 * * * * * * * 7933 e7a4b3,eea78c 7933,e9cc 00007933,0000e9cc 98fb * * * * * 98fb
+18203 * * * * * * * 7932 e7a4b2,eea78e 7932,e9ce 00007932,0000e9ce 98fd * * * * * 98fd
+18204 * * * * * * * 4109 e48489,eea790 4109,e9d0 00004109,0000e9d0 9940 * * * * * 9940
+18205 * * * * * * * 7991 e7a691,eea791 7991,e9d1 00007991,0000e9d1 9941 * * * * * 9941
+18206 * * * * * * * 7a06 e7a886,eea794 7a06,e9d4 00007a06,0000e9d4 9944 * * * * * 9944
+18207 * * * * * * * 4167 e485a7,eea796 4167,e9d6 00004167,0000e9d6 9946 * * * * * 9946
+18208 * * * * * * * 41b2 e486b2,eea798 41b2,e9d8 000041b2,0000e9d8 9948 * * * * * 9948
+18209 * * * * * * * 7abc e7aabc,eea799 7abc,e9d9 00007abc,0000e9d9 9949 * * * * * 9949
+18210 * * * * * * * 8279 e889b9,eea79a 8279,e9da 00008279,0000e9da 994a * * * * * 994a
+18211 * * * * * * * 41c4 e48784,eea79b 41c4,e9db 000041c4,0000e9db 994b * * * * * 994b
+18212 * * * * * * * 7acf e7ab8f,eea79c 7acf,e9dc 00007acf,0000e9dc 994c * * * * * 994c
+18213 * * * * * * * 7adb e7ab9b,eea79d 7adb,e9dd 00007adb,0000e9dd 994d * * * * * 994d
+18214 * * * * * * * 41cf e4878f,eea79e 41cf,e9de 000041cf,0000e9de 994e * * * * * 994e
+18215 * * * * * * * 7b62 e7ada2,eea7a0 7b62,e9e0 00007b62,0000e9e0 9950 * * * * * 9950
+18216 * * * * * * * 7b6c e7adac,eea7a1 7b6c,e9e1 00007b6c,0000e9e1 9951 * * * * * 9951
+18217 * * * * * * * 7b7b e7adbb,eea7a2 7b7b,e9e2 00007b7b,0000e9e2 9952 * * * * * 9952
+18218 * * * * * * * 7c12 e7b092,eea7a3 7c12,e9e3 00007c12,0000e9e3 9953 * * * * * 9953
+18219 * * * * * * * 4260 e489a0,eea7a5 4260,e9e5 00004260,0000e9e5 9955 * * * * * 9955
+18220 * * * * * * * 427a e489ba,eea7a6 427a,e9e6 0000427a,0000e9e6 9956 * * * * * 9956
+18221 * * * * * * * 7c7b e7b1bb,eea7a7 7c7b,e9e7 00007c7b,0000e9e7 9957 * * * * * 9957
+18222 * * * * * * * 7c9c e7b29c,eea7a8 7c9c,e9e8 00007c9c,0000e9e8 9958 * * * * * 9958
+18223 * * * * * * * 428c e48a8c,eea7a9 428c,e9e9 0000428c,0000e9e9 9959 * * * * * 9959
+18224 * * * * * * * 7cb8 e7b2b8,eea7aa 7cb8,e9ea 00007cb8,0000e9ea 995a * * * * * 995a
+18225 * * * * * * * 4294 e48a94,eea7ab 4294,e9eb 00004294,0000e9eb 995b * * * * * 995b
+18226 * * * * * * * 8f93 e8be93,eea7ad 8f93,e9ed 00008f93,0000e9ed 995d * * * * * 995d
+18227 * * * * * * * 70c0 e78380,eea7ae 70c0,e9ee 000070c0,0000e9ee 995e * * * * * 995e
+18228 * * * * * * * e9ef f0a0b38f,eea7af d843dccf,e9ef 00020ccf,0000e9ef 995f * * * * * 995f
+18229 * * * * * * * 7dcf e7b78f,eea7b0 7dcf,e9f0 00007dcf,0000e9f0 9960 * * * * * 9960
+18230 * * * * * * * 7dd4 e7b794,eea7b1 7dd4,e9f1 00007dd4,0000e9f1 9961 * * * * * 9961
+18231 * * * * * * * 7dd0 e7b790,eea7b2 7dd0,e9f2 00007dd0,0000e9f2 9962 * * * * * 9962
+18232 * * * * * * * 7dfd e7b7bd,eea7b3 7dfd,e9f3 00007dfd,0000e9f3 9963 * * * * * 9963
+18233 * * * * * * * 7fb4 e7beb4,eea7b5 7fb4,e9f5 00007fb4,0000e9f5 9965 * * * * * 9965
+18234 * * * * * * * 729f e78a9f,eea7b6 729f,e9f6 0000729f,0000e9f6 9966 * * * * * 9966
+18235 * * * * * * * 4397 e48e97,eea7b7 4397,e9f7 00004397,0000e9f7 9967 * * * * * 9967
+18236 * * * * * * * 8020 e880a0,eea7b8 8020,e9f8 00008020,0000e9f8 9968 * * * * * 9968
+18237 * * * * * * * 8025 e880a5,eea7b9 8025,e9f9 00008025,0000e9f9 9969 * * * * * 9969
+18238 * * * * * * * 802e e880ae,eea7bb 802e,e9fb 0000802e,0000e9fb 996b * * * * * 996b
+18239 * * * * * * * 8031 e880b1,eea7bc 8031,e9fc 00008031,0000e9fc 996c * * * * * 996c
+18240 * * * * * * * 8054 e88194,eea7bd 8054,e9fd 00008054,0000e9fd 996d * * * * * 996d
+18241 * * * * * * * 57b4 e59eb4,eea7bf 57b4,e9ff 000057b4,0000e9ff 996f * * * * * 996f
+18242 * * * * * * * 70a0 e782a0,eea880 70a0,ea00 000070a0,0000ea00 9970 * * * * * 9970
+18243 * * * * * * * 80b7 e882b7,eea881 80b7,ea01 000080b7,0000ea01 9971 * * * * * 9971
+18244 * * * * * * * 80e9 e883a9,eea882 80e9,ea02 000080e9,0000ea02 9972 * * * * * 9972
+18245 * * * * * * * 43ed e48fad,eea883 43ed,ea03 000043ed,0000ea03 9973 * * * * * 9973
+18246 * * * * * * * 810c e8848c,eea884 810c,ea04 0000810c,0000ea04 9974 * * * * * 9974
+18247 * * * * * * * 810e e8848e,eea886 810e,ea06 0000810e,0000ea06 9976 * * * * * 9976
+18248 * * * * * * * 8112 e88492,eea887 8112,ea07 00008112,0000ea07 9977 * * * * * 9977
+18249 * * * * * * * 8114 e88494,eea889 8114,ea09 00008114,0000ea09 9979 * * * * * 9979
+18250 * * * * * * * 4401 e49081,eea88a 4401,ea0a 00004401,0000ea0a 997a * * * * * 997a
+18251 * * * * * * * 3b39 e3acb9,eea88b 3b39,ea0b 00003b39,0000ea0b 997b * * * * * 997b
+18252 * * * * * * * 8156 e88596,eea88c 8156,ea0c 00008156,0000ea0c 997c * * * * * 997c
+18253 * * * * * * * 8159 e88599,eea88d 8159,ea0d 00008159,0000ea0d 997d * * * * * 997d
+18254 * * * * * * * 815a e8859a,eea88e 815a,ea0e 0000815a,0000ea0e 997e * * * * * 997e
+18255 * * * * * * * 4413 e49093,eea88f 4413,ea0f 00004413,0000ea0f 99a1 * * * * * 99a1
+18256 * * * * * * * 817c e885bc,eea891 817c,ea11 0000817c,0000ea11 99a3 * * * * * 99a3
+18257 * * * * * * * 4425 e490a5,eea893 4425,ea13 00004425,0000ea13 99a5 * * * * * 99a5
+18258 * * * * * * * 442d e490ad,eea895 442d,ea15 0000442d,0000ea15 99a7 * * * * * 99a7
+18259 * * * * * * * 81a5 e886a5,eea896 81a5,ea16 000081a5,0000ea16 99a8 * * * * * 99a8
+18260 * * * * * * * 57ef e59faf,eea897 57ef,ea17 000057ef,0000ea17 99a9 * * * * * 99a9
+18261 * * * * * * * 81c1 e88781,eea898 81c1,ea18 000081c1,0000ea18 99aa * * * * * 99aa
+18262 * * * * * * * 81e4 e887a4,eea899 81e4,ea19 000081e4,0000ea19 99ab * * * * * 99ab
+18263 * * * * * * * 8254 e88994,eea89a 8254,ea1a 00008254,0000ea1a 99ac * * * * * 99ac
+18264 * * * * * * * 448f e4928f,eea89b 448f,ea1b 0000448f,0000ea1b 99ad * * * * * 99ad
+18265 * * * * * * * 8276 e889b6,eea89d 8276,ea1d 00008276,0000ea1d 99af * * * * * 99af
+18266 * * * * * * * 82ca e88b8a,eea89e 82ca,ea1e 000082ca,0000ea1e 99b0 * * * * * 99b0
+18267 * * * * * * * 82d8 e88b98,eea89f 82d8,ea1f 000082d8,0000ea1f 99b1 * * * * * 99b1
+18268 * * * * * * * 44b0 e492b0,eea8a1 44b0,ea21 000044b0,0000ea21 99b3 * * * * * 99b3
+18269 * * * * * * * 8357 e88d97,eea8a2 8357,ea22 00008357,0000ea22 99b4 * * * * * 99b4
+18270 * * * * * * * 9669 e999a9,eea8a3 9669,ea23 00009669,0000ea23 99b5 * * * * * 99b5
+18271 * * * * * * * 8405 e89085,eea8a5 8405,ea25 00008405,0000ea25 99b7 * * * * * 99b7
+18272 * * * * * * * 70f5 e783b5,eea8a6 70f5,ea26 000070f5,0000ea26 99b8 * * * * * 99b8
+18273 * * * * * * * 8464 e891a4,eea8a7 8464,ea27 00008464,0000ea27 99b9 * * * * * 99b9
+18274 * * * * * * * 8488 e89288,eea8a9 8488,ea29 00008488,0000ea29 99bb * * * * * 99bb
+18275 * * * * * * * 4504 e49484,eea8aa 4504,ea2a 00004504,0000ea2a 99bc * * * * * 99bc
+18276 * * * * * * * 84be e892be,eea8ab 84be,ea2b 000084be,0000ea2b 99bd * * * * * 99bd
+18277 * * * * * * * 84e1 e893a1,eea8ac 84e1,ea2c 000084e1,0000ea2c 99be * * * * * 99be
+18278 * * * * * * * 84f8 e893b8,eea8ad 84f8,ea2d 000084f8,0000ea2d 99bf * * * * * 99bf
+18279 * * * * * * * 8510 e89490,eea8ae 8510,ea2e 00008510,0000ea2e 99c0 * * * * * 99c0
+18280 * * * * * * * 8538 e894b8,eea8af 8538,ea2f 00008538,0000ea2f 99c1 * * * * * 99c1
+18281 * * * * * * * 8552 e89592,eea8b0 8552,ea30 00008552,0000ea30 99c2 * * * * * 99c2
+18282 * * * * * * * 453b e494bb,eea8b1 453b,ea31 0000453b,0000ea31 99c3 * * * * * 99c3
+18283 * * * * * * * 856f e895af,eea8b2 856f,ea32 0000856f,0000ea32 99c4 * * * * * 99c4
+18284 * * * * * * * 8570 e895b0,eea8b3 8570,ea33 00008570,0000ea33 99c5 * * * * * 99c5
+18285 * * * * * * * 85e0 e897a0,eea8b4 85e0,ea34 000085e0,0000ea34 99c6 * * * * * 99c6
+18286 * * * * * * * 4577 e495b7,eea8b5 4577,ea35 00004577,0000ea35 99c7 * * * * * 99c7
+18287 * * * * * * * 8672 e899b2,eea8b6 8672,ea36 00008672,0000ea36 99c8 * * * * * 99c8
+18288 * * * * * * * 8692 e89a92,eea8b7 8692,ea37 00008692,0000ea37 99c9 * * * * * 99c9
+18289 * * * * * * * 86ef e89baf,eea8b9 86ef,ea39 000086ef,0000ea39 99cb * * * * * 99cb
+18290 * * * * * * * 9645 e99985,eea8ba 9645,ea3a 00009645,0000ea3a 99cc * * * * * 99cc
+18291 * * * * * * * 4606 e49886,eea8bc 4606,ea3c 00004606,0000ea3c 99ce * * * * * 99ce
+18292 * * * * * * * 4617 e49897,eea8bd 4617,ea3d 00004617,0000ea3d 99cf * * * * * 99cf
+18293 * * * * * * * 88ae e8a2ae,eea8be 88ae,ea3e 000088ae,0000ea3e 99d0 * * * * * 99d0
+18294 * * * * * * * 88ff e8a3bf,eea8bf 88ff,ea3f 000088ff,0000ea3f 99d1 * * * * * 99d1
+18295 * * * * * * * 8924 e8a4a4,eea980 8924,ea40 00008924,0000ea40 99d2 * * * * * 99d2
+18296 * * * * * * * 8991 e8a691,eea982 8991,ea42 00008991,0000ea42 99d4 * * * * * 99d4
+18297 * * * * * * * ea43 f0a7a5a7,eea983 d85edd67,ea43 00027967,0000ea43 99d5 * * * * * 99d5
+18298 * * * * * * * 8a38 e8a8b8,eea985 8a38,ea45 00008a38,0000ea45 99d7 * * * * * 99d7
+18299 * * * * * * * 8a94 e8aa94,eea986 8a94,ea46 00008a94,0000ea46 99d8 * * * * * 99d8
+18300 * * * * * * * 8ab4 e8aab4,eea987 8ab4,ea47 00008ab4,0000ea47 99d9 * * * * * 99d9
+18301 * * * * * * * 8c51 e8b191,eea988 8c51,ea48 00008c51,0000ea48 99da * * * * * 99da
+18302 * * * * * * * 8cd4 e8b394,eea989 8cd4,ea49 00008cd4,0000ea49 99db * * * * * 99db
+18303 * * * * * * * 8cf2 e8b3b2,eea98a 8cf2,ea4a 00008cf2,0000ea4a 99dc * * * * * 99dc
+18304 * * * * * * * 8d1c e8b49c,eea98b 8d1c,ea4b 00008d1c,0000ea4b 99dd * * * * * 99dd
+18305 * * * * * * * 4798 e49e98,eea98c 4798,ea4c 00004798,0000ea4c 99de * * * * * 99de
+18306 * * * * * * * 8dc3 e8b783,eea98e 8dc3,ea4e 00008dc3,0000ea4e 99e0 * * * * * 99e0
+18307 * * * * * * * 47ed e49fad,eea98f 47ed,ea4f 000047ed,0000ea4f 99e1 * * * * * 99e1
+18308 * * * * * * * 8e3a e8b8ba,eea991 8e3a,ea51 00008e3a,0000ea51 99e3 * * * * * 99e3
+18309 * * * * * * * 5754 e59d94,eea993 5754,ea53 00005754,0000ea53 99e5 * * * * * 99e5
+18310 * * * * * * * 55f5 e597b5,eea995 55f5,ea55 000055f5,0000ea55 99e7 * * * * * 99e7
+18311 * * * * * * * 4837 e4a0b7,eea997 4837,ea57 00004837,0000ea57 99e9 * * * * * 99e9
+18312 * * * * * * * 8ece e8bb8e,eea998 8ece,ea58 00008ece,0000ea58 99ea * * * * * 99ea
+18313 * * * * * * * 8ee2 e8bba2,eea999 8ee2,ea59 00008ee2,0000ea59 99eb * * * * * 99eb
+18314 * * * * * * * 8ee4 e8bba4,eea99a 8ee4,ea5a 00008ee4,0000ea5a 99ec * * * * * 99ec
+18315 * * * * * * * 8eed e8bbad,eea99b 8eed,ea5b 00008eed,0000ea5b 99ed * * * * * 99ed
+18316 * * * * * * * 8ef2 e8bbb2,eea99c 8ef2,ea5c 00008ef2,0000ea5c 99ee * * * * * 99ee
+18317 * * * * * * * 8fc1 e8bf81,eea99e 8fc1,ea5e 00008fc1,0000ea5e 99f0 * * * * * 99f0
+18318 * * * * * * * 8fca e8bf8a,eea99f 8fca,ea5f 00008fca,0000ea5f 99f1 * * * * * 99f1
+18319 * * * * * * * 8fcc e8bf8c,eea9a0 8fcc,ea60 00008fcc,0000ea60 99f2 * * * * * 99f2
+18320 * * * * * * * 9033 e980b3,eea9a1 9033,ea61 00009033,0000ea61 99f3 * * * * * 99f3
+18321 * * * * * * * 48ad e4a2ad,eea9a3 48ad,ea63 000048ad,0000ea63 99f5 * * * * * 99f5
+18322 * * * * * * * 98e0 e9a3a0,eea9a4 98e0,ea64 000098e0,0000ea64 99f6 * * * * * 99f6
+18323 * * * * * * * 9213 e98893,eea9a5 9213,ea65 00009213,0000ea65 99f7 * * * * * 99f7
+18324 * * * * * * * 491e e4a49e,eea9a6 491e,ea66 0000491e,0000ea66 99f8 * * * * * 99f8
+18325 * * * * * * * 9228 e988a8,eea9a7 9228,ea67 00009228,0000ea67 99f9 * * * * * 99f9
+18326 * * * * * * * 9258 e98998,eea9a8 9258,ea68 00009258,0000ea68 99fa * * * * * 99fa
+18327 * * * * * * * 926b e989ab,eea9a9 926b,ea69 0000926b,0000ea69 99fb * * * * * 99fb
+18328 * * * * * * * 92b1 e98ab1,eea9aa 92b1,ea6a 000092b1,0000ea6a 99fc * * * * * 99fc
+18329 * * * * * * * 92ae e98aae,eea9ab 92ae,ea6b 000092ae,0000ea6b 99fd * * * * * 99fd
+18330 * * * * * * * 92bf e98abf,eea9ac 92bf,ea6c 000092bf,0000ea6c 99fe * * * * * 99fe
+18331 * * * * * * * 92e3 e98ba3,eea9ad 92e3,ea6d 000092e3,0000ea6d 9a40 * * * * * 9a40
+18332 * * * * * * * 92eb e98bab,eea9ae 92eb,ea6e 000092eb,0000ea6e 9a41 * * * * * 9a41
+18333 * * * * * * * 92f3 e98bb3,eea9af 92f3,ea6f 000092f3,0000ea6f 9a42 * * * * * 9a42
+18334 * * * * * * * 92f4 e98bb4,eea9b0 92f4,ea70 000092f4,0000ea70 9a43 * * * * * 9a43
+18335 * * * * * * * 92fd e98bbd,eea9b1 92fd,ea71 000092fd,0000ea71 9a44 * * * * * 9a44
+18336 * * * * * * * 9343 e98d83,eea9b2 9343,ea72 00009343,0000ea72 9a45 * * * * * 9a45
+18337 * * * * * * * 9384 e98e84,eea9b3 9384,ea73 00009384,0000ea73 9a46 * * * * * 9a46
+18338 * * * * * * * 93ad e98ead,eea9b4 93ad,ea74 000093ad,0000ea74 9a47 * * * * * 9a47
+18339 * * * * * * * 4945 e4a585,eea9b5 4945,ea75 00004945,0000ea75 9a48 * * * * * 9a48
+18340 * * * * * * * 4951 e4a591,eea9b6 4951,ea76 00004951,0000ea76 9a49 * * * * * 9a49
+18341 * * * * * * * 9417 e99097,eea9b8 9417,ea78 00009417,0000ea78 9a4b * * * * * 9a4b
+18342 * * * * * * * 941d e9909d,eea9ba 941d,ea7a 0000941d,0000ea7a 9a4d * * * * * 9a4d
+18343 * * * * * * * 942d e990ad,eea9bb 942d,ea7b 0000942d,0000ea7b 9a4e * * * * * 9a4e
+18344 * * * * * * * 943e e990be,eea9bc 943e,ea7c 0000943e,0000ea7c 9a4f * * * * * 9a4f
+18345 * * * * * * * 496a e4a5aa,eea9bd 496a,ea7d 0000496a,0000ea7d 9a50 * * * * * 9a50
+18346 * * * * * * * 9454 e99194,eea9be 9454,ea7e 00009454,0000ea7e 9a51 * * * * * 9a51
+18347 * * * * * * * 9479 e991b9,eea9bf 9479,ea7f 00009479,0000ea7f 9a52 * * * * * 9a52
+18348 * * * * * * * 952d e994ad,eeaa80 952d,ea80 0000952d,0000ea80 9a53 * * * * * 9a53
+18349 * * * * * * * 95a2 e996a2,eeaa81 95a2,ea81 000095a2,0000ea81 9a54 * * * * * 9a54
+18350 * * * * * * * 49a7 e4a6a7,eeaa82 49a7,ea82 000049a7,0000ea82 9a55 * * * * * 9a55
+18351 * * * * * * * 95f4 e997b4,eeaa83 95f4,ea83 000095f4,0000ea83 9a56 * * * * * 9a56
+18352 * * * * * * * 9633 e998b3,eeaa84 9633,ea84 00009633,0000ea84 9a57 * * * * * 9a57
+18353 * * * * * * * 49e5 e4a7a5,eeaa85 49e5,ea85 000049e5,0000ea85 9a58 * * * * * 9a58
+18354 * * * * * * * 4a24 e4a8a4,eeaa87 4a24,ea87 00004a24,0000ea87 9a5a * * * * * 9a5a
+18355 * * * * * * * 9740 e99d80,eeaa88 9740,ea88 00009740,0000ea88 9a5b * * * * * 9a5b
+18356 * * * * * * * 4a35 e4a8b5,eeaa89 4a35,ea89 00004a35,0000ea89 9a5c * * * * * 9a5c
+18357 * * * * * * * 97b2 e99eb2,eeaa8a 97b2,ea8a 000097b2,0000ea8a 9a5d * * * * * 9a5d
+18358 * * * * * * * 97c2 e99f82,eeaa8b 97c2,ea8b 000097c2,0000ea8b 9a5e * * * * * 9a5e
+18359 * * * * * * * 4ae4 e4aba4,eeaa8d 4ae4,ea8d 00004ae4,0000ea8d 9a60 * * * * * 9a60
+18360 * * * * * * * 98b9 e9a2b9,eeaa8f 98b9,ea8f 000098b9,0000ea8f 9a62 * * * * * 9a62
+18361 * * * * * * * 4b19 e4ac99,eeaa90 4b19,ea90 00004b19,0000ea90 9a63 * * * * * 9a63
+18362 * * * * * * * 98f1 e9a3b1,eeaa91 98f1,ea91 000098f1,0000ea91 9a64 * * * * * 9a64
+18363 * * * * * * * 5844 e5a184,eeaa92 5844,ea92 00005844,0000ea92 9a65 * * * * * 9a65
+18364 * * * * * * * 9919 e9a499,eeaa94 9919,ea94 00009919,0000ea94 9a67 * * * * * 9a67
+18365 * * * * * * * 9937 e9a4b7,eeaa97 9937,ea97 00009937,0000ea97 9a6a * * * * * 9a6a
+18366 * * * * * * * 995d e9a59d,eeaa99 995d,ea99 0000995d,0000ea99 9a6c * * * * * 9a6c
+18367 * * * * * * * * e9a5a2,eeaa9a 9962,ea9a 00009962,0000ea9a 9a6d * * * * * 9a6d
+18368 * * * * * * * 4b70 e4adb0,eeaa9b 4b70,ea9b 00004b70,0000ea9b 9a6e * * * * * 9a6e
+18369 * * * * * * * 99c5 e9a785,eeaa9c 99c5,ea9c 000099c5,0000ea9c 9a6f * * * * * 9a6f
+18370 * * * * * * * 4b9d e4ae9d,eeaa9d 4b9d,ea9d 00004b9d,0000ea9d 9a70 * * * * * 9a70
+18371 * * * * * * * 9a3c e9a8bc,eeaa9e 9a3c,ea9e 00009a3c,0000ea9e 9a71 * * * * * 9a71
+18372 * * * * * * * 9b0f e9ac8f,eeaa9f 9b0f,ea9f 00009b0f,0000ea9f 9a72 * * * * * 9a72
+18373 * * * * * * * 9b69 e9ada9,eeaaa1 9b69,eaa1 00009b69,0000eaa1 9a74 * * * * * 9a74
+18374 * * * * * * * 9bdd e9af9d,eeaaa3 9bdd,eaa3 00009bdd,0000eaa3 9a76 * * * * * 9a76
+18375 * * * * * * * 9bf1 e9afb1,eeaaa4 9bf1,eaa4 00009bf1,0000eaa4 9a77 * * * * * 9a77
+18376 * * * * * * * 9bf4 e9afb4,eeaaa5 9bf4,eaa5 00009bf4,0000eaa5 9a78 * * * * * 9a78
+18377 * * * * * * * 4c6d e4b1ad,eeaaa6 4c6d,eaa6 00004c6d,0000eaa6 9a79 * * * * * 9a79
+18378 * * * * * * * 9c20 e9b0a0,eeaaa7 9c20,eaa7 00009c20,0000eaa7 9a7a * * * * * 9a7a
+18379 * * * * * * * 376f e39daf,eeaaa8 376f,eaa8 0000376f,0000eaa8 9a7b * * * * * 9a7b
+18380 * * * * * * * eaa9 f0a1af82,eeaaa9 d846dfc2,eaa9 00021bc2,0000eaa9 9a7c * * * * * 9a7c
+18381 * * * * * * * 9d49 e9b589,eeaaaa 9d49,eaaa 00009d49,0000eaaa 9a7d * * * * * 9a7d
+18382 * * * * * * * 9efe e9bbbe,eeaaac 9efe,eaac 00009efe,0000eaac 9aa1 * * * * * 9aa1
+18383 * * * * * * * 5650 e59990,eeaaad 5650,eaad 00005650,0000eaad 9aa2 * * * * * 9aa2
+18384 * * * * * * * 9dbd e9b6bd,eeaaaf 9dbd,eaaf 00009dbd,0000eaaf 9aa4 * * * * * 9aa4
+18385 * * * * * * * 9dfc e9b7bc,eeaab1 9dfc,eab1 00009dfc,0000eab1 9aa6 * * * * * 9aa6
+18386 * * * * * * * 94f6 e993b6,eeaab2 94f6,eab2 000094f6,0000eab2 9aa7 * * * * * 9aa7
+18387 * * * * * * * 8fb6 e8beb6,eeaab3 8fb6,eab3 00008fb6,0000eab3 9aa8 * * * * * 9aa8
+18388 * * * * * * * 9eb1 e9bab1,eeaab6 9eb1,eab6 00009eb1,0000eab6 9aab * * * * * 9aab
+18389 * * * * * * * 9ebd e9babd,eeaab7 9ebd,eab7 00009ebd,0000eab7 9aac * * * * * 9aac
+18390 * * * * * * * 9ec6 e9bb86,eeaab8 9ec6,eab8 00009ec6,0000eab8 9aad * * * * * 9aad
+18391 * * * * * * * 94dc e9939c,eeaab9 94dc,eab9 000094dc,0000eab9 9aae * * * * * 9aae
+18392 * * * * * * * 9ee2 e9bba2,eeaaba 9ee2,eaba 00009ee2,0000eaba 9aaf * * * * * 9aaf
+18393 * * * * * * * 9ef1 e9bbb1,eeaabb 9ef1,eabb 00009ef1,0000eabb 9ab0 * * * * * 9ab0
+18394 * * * * * * * 9ef8 e9bbb8,eeaabc 9ef8,eabc 00009ef8,0000eabc 9ab1 * * * * * 9ab1
+18395 * * * * * * * 9f44 e9bd84,eeaabe 9f44,eabe 00009f44,0000eabe 9ab3 * * * * * 9ab3
+18396 * * * * * * * eabf f0a08294,eeaabf d840dc94,eabf 00020094,0000eabf 9ab4 * * * * * 9ab4
+18397 * * * * * * * eac0 f0a08ab7,eeab80 d840deb7,eac0 000202b7,0000eac0 9ab5 * * * * * 9ab5
+18398 * * * * * * * eac1 f0a08ea0,eeab81 d840dfa0,eac1 000203a0,0000eac1 9ab6 * * * * * 9ab6
+18399 * * * * * * * 94c3 e99383,eeab83 94c3,eac3 000094c3,0000eac3 9ab8 * * * * * 9ab8
+18400 * * * * * * * eac5 eeab85,f0a09397 d841dcd7,eac5 0000eac5,000204d7 9aba * * * * * 9aba
+18401 * * * * * * * 94c1 e99381,eeab87 94c1,eac7 000094c1,0000eac7 9abc * * * * * 9abc
+18402 * * * * * * * eac9 f0a09795,eeab89 d841ddd5,eac9 000205d5,0000eac9 9abe * * * * * 9abe
+18403 * * * * * * * eaca f0a09895,eeab8a d841de15,eaca 00020615,0000eaca 9abf * * * * * 9abf
+18404 * * * * * * * eacb f0a099b6,eeab8b d841de76,eacb 00020676,0000eacb 9ac0 * * * * * 9ac0
+18405 * * * * * * * eacc f0a19aba,eeab8c d845deba,eacc 000216ba,0000eacc 9ac1 * * * * * 9ac1
+18406 * * * * * * * 5757 e59d97,eeab8d 5757,eacd 00005757,0000eacd 9ac2 * * * * * 9ac2
+18407 * * * * * * * 7173 e785b3,eeab8e 7173,eace 00007173,0000eace 9ac3 * * * * * 9ac3
+18408 * * * * * * * eacf f0a0ab82,eeab8f d842dec2,eacf 00020ac2,0000eacf 9ac4 * * * * * 9ac4
+18409 * * * * * * * ead0 f0a0ab8d,eeab90 d842decd,ead0 00020acd,0000ead0 9ac5 * * * * * 9ac5
+18410 * * * * * * * ead1 f0a0aebf,eeab91 d842dfbf,ead1 00020bbf,0000ead1 9ac6 * * * * * 9ac6
+18411 * * * * * * * ead3 f0afa0bb,eeab93 d87edc3b,ead3 0002f83b,0000ead3 9ac8 * * * * * 9ac8
+18412 * * * * * * * ead4 f0a0af8b,eeab94 d842dfcb,ead4 00020bcb,0000ead4 9ac9 * * * * * 9ac9
+18413 * * * * * * * 549e e5929e,eeab95 549e,ead5 0000549e,0000ead5 9aca * * * * * 9aca
+18414 * * * * * * * ead6 f0a0afbb,eeab96 d842dffb,ead6 00020bfb,0000ead6 9acb * * * * * 9acb
+18415 * * * * * * * ead7 f0a0b0bb,eeab97 d843dc3b,ead7 00020c3b,0000ead7 9acc * * * * * 9acc
+18416 * * * * * * * ead8 f0a0b193,eeab98 d843dc53,ead8 00020c53,0000ead8 9acd * * * * * 9acd
+18417 * * * * * * * ead9 f0a0b1a5,eeab99 d843dc65,ead9 00020c65,0000ead9 9ace * * * * * 9ace
+18418 * * * * * * * eada f0a0b1bc,eeab9a d843dc7c,eada 00020c7c,0000eada 9acf * * * * * 9acf
+18419 * * * * * * * eadc eeab9c,f0a0b28d d843dc8d,eadc 0000eadc,00020c8d 9ad1 * * * * * 9ad1
+18420 * * * * * * * eade f0a0b2b5,eeab9e d843dcb5,eade 00020cb5,0000eade 9ad3 * * * * * 9ad3
+18421 * * * * * * * eadf f0a0b39d,eeab9f d843dcdd,eadf 00020cdd,0000eadf 9ad4 * * * * * 9ad4
+18422 * * * * * * * eae0 f0a0b3ad,eeaba0 d843dced,eae0 00020ced,0000eae0 9ad5 * * * * * 9ad5
+18423 * * * * * * * eae1 f0a0b5af,eeaba1 d843dd6f,eae1 00020d6f,0000eae1 9ad6 * * * * * 9ad6
+18424 * * * * * * * eae2 f0a0b6b2,eeaba2 d843ddb2,eae2 00020db2,0000eae2 9ad7 * * * * * 9ad7
+18425 * * * * * * * eae3 f0a0b788,eeaba3 d843ddc8,eae3 00020dc8,0000eae3 9ad8 * * * * * 9ad8
+18426 * * * * * * * eae7 f0a0b884,eeaba7 d843de04,eae7 00020e04,0000eae7 9adc * * * * * 9adc
+18427 * * * * * * * eae8 f0a0b88e,eeaba8 d843de0e,eae8 00020e0e,0000eae8 9add * * * * * 9add
+18428 * * * * * * * eae9 f0a0bb97,eeaba9 d843ded7,eae9 00020ed7,0000eae9 9ade * * * * * 9ade
+18429 * * * * * * * eaea f0a0be90,eeabaa d843df90,eaea 00020f90,0000eaea 9adf * * * * * 9adf
+18430 * * * * * * * eaeb f0a0bcad,eeabab d843df2d,eaeb 00020f2d,0000eaeb 9ae0 * * * * * 9ae0
+18431 * * * * * * * eaec f0a0b9b3,eeabac d843de73,eaec 00020e73,0000eaec 9ae1 * * * * * 9ae1
+18432 * * * * * * * eaee eeabae,f0a0bebc d843dfbc,eaee 0000eaee,00020fbc 9ae3 * * * * * 9ae3
+18433 * * * * * * * eaf0 f0a1819c,eeabb0 d844dc5c,eaf0 0002105c,0000eaf0 9ae5 * * * * * 9ae5
+18434 * * * * * * * eaf1 f0a1818f,eeabb1 d844dc4f,eaf1 0002104f,0000eaf1 9ae6 * * * * * 9ae6
+18435 * * * * * * * eaf2 f0a181b6,eeabb2 d844dc76,eaf2 00021076,0000eaf2 9ae7 * * * * * 9ae7
+18436 * * * * * * * eaf5 f0a18288,eeabb5 d844dc88,eaf5 00021088,0000eaf5 9aea * * * * * 9aea
+18437 * * * * * * * eaf6 f0a18296,eeabb6 d844dc96,eaf6 00021096,0000eaf6 9aeb * * * * * 9aeb
+18438 * * * * * * * 3647 e39987,eeabb7 3647,eaf7 00003647,0000eaf7 9aec * * * * * 9aec
+18439 * * * * * * * eaf8 f0a182bf,eeabb8 d844dcbf,eaf8 000210bf,0000eaf8 9aed * * * * * 9aed
+18440 * * * * * * * eafa f0a184af,eeabba d844dd2f,eafa 0002112f,0000eafa 9aef * * * * * 9aef
+18441 * * * * * * * eafb f0a184bb,eeabbb d844dd3b,eafb 0002113b,0000eafb 9af0 * * * * * 9af0
+18442 * * * * * * * 5364 e58da4,eeabbc 5364,eafc 00005364,0000eafc 9af1 * * * * * 9af1
+18443 * * * * * * * eafe f0a18ba3,eeabbe d844dee3,eafe 000212e3,0000eafe 9af3 * * * * * 9af3
+18444 * * * * * * * eaff f0a18db5,eeabbf d844df75,eaff 00021375,0000eaff 9af4 * * * * * 9af4
+18445 * * * * * * * eb00 eeac80,f0a18cb6 d844df36,eb00 0000eb00,00021336 9af5 * * * * * 9af5
+18446 * * * * * * * eb02 f0a195b7,eeac82 d845dd77,eb02 00021577,0000eb02 9af7 * * * * * 9af7
+18447 * * * * * * * eb03 f0a19899,eeac83 d845de19,eb03 00021619,0000eb03 9af8 * * * * * 9af8
+18448 * * * * * * * eb04 f0a19f83,eeac84 d845dfc3,eb04 000217c3,0000eb04 9af9 * * * * * 9af9
+18449 * * * * * * * eb05 f0a19f87,eeac85 d845dfc7,eb05 000217c7,0000eb05 9afa * * * * * 9afa
+18450 * * * * * * * 70bb e782bb,eeac87 70bb,eb07 000070bb,0000eb07 9afc * * * * * 9afc
+18451 * * * * * * * eb08 f0a1a0ad,eeac88 d846dc2d,eb08 0002182d,0000eb08 9afd * * * * * 9afd
+18452 * * * * * * * eb09 f0a1a5aa,eeac89 d846dd6a,eb09 0002196a,0000eb09 9afe * * * * * 9afe
+18453 * * * * * * * eb0a f0a1a8ad,eeac8a d846de2d,eb0a 00021a2d,0000eb0a 9b40 * * * * * 9b40
+18454 * * * * * * * eb0b f0a1a985,eeac8b d846de45,eb0b 00021a45,0000eb0b 9b41 * * * * * 9b41
+18455 * * * * * * * eb0c f0a1b0aa,eeac8c d847dc2a,eb0c 00021c2a,0000eb0c 9b42 * * * * * 9b42
+18456 * * * * * * * eb0d f0a1b1b0,eeac8d d847dc70,eb0d 00021c70,0000eb0d 9b43 * * * * * 9b43
+18457 * * * * * * * eb0e f0a1b2ac,eeac8e d847dcac,eb0e 00021cac,0000eb0e 9b44 * * * * * 9b44
+18458 * * * * * * * eb0f f0a1bb88,eeac8f d847dec8,eb0f 00021ec8,0000eb0f 9b45 * * * * * 9b45
+18459 * * * * * * * eb11 f0a1bb95,eeac91 d847ded5,eb11 00021ed5,0000eb11 9b47 * * * * * 9b47
+18460 * * * * * * * eb12 f0a1bc95,eeac92 d847df15,eb12 00021f15,0000eb12 9b48 * * * * * 9b48
+18461 * * * * * * * 7198 e78698,eeac93 7198,eb13 00007198,0000eb13 9b49 * * * * * 9b49
+18462 * * * * * * * eb15 f0a28185,eeac95 d848dc45,eb15 00022045,0000eb15 9b4b * * * * * 9b4b
+18463 * * * * * * * * e6a7a9,eeac96 69e9,eb16 000069e9,0000eb16 9b4c * * * * * 9b4c
+18464 * * * * * * * 36c8 e39b88,eeac97 36c8,eb17 000036c8,0000eb17 9b4d * * * * * 9b4d
+18465 * * * * * * * eb18 f0a289bc,eeac98 d848de7c,eb18 0002227c,0000eb18 9b4e * * * * * 9b4e
+18466 * * * * * * * eb19 f0a28f97,eeac99 d848dfd7,eb19 000223d7,0000eb19 9b4f * * * * * 9b4f
+18467 * * * * * * * eb1a f0a28fba,eeac9a d848dffa,eb1a 000223fa,0000eb1a 9b50 * * * * * 9b50
+18468 * * * * * * * eb1b f0a29caa,eeac9b d849df2a,eb1b 0002272a,0000eb1b 9b51 * * * * * 9b51
+18469 * * * * * * * eb1c f0a2a1b1,eeac9c d84adc71,eb1c 00022871,0000eb1c 9b52 * * * * * 9b52
+18470 * * * * * * * eb1d f0a2a58f,eeac9d d84add4f,eb1d 0002294f,0000eb1d 9b53 * * * * * 9b53
+18471 * * * * * * * eb1f f0a2a5a7,eeac9f d84add67,eb1f 00022967,0000eb1f 9b55 * * * * * 9b55
+18472 * * * * * * * eb20 f0a2a693,eeaca0 d84add93,eb20 00022993,0000eb20 9b56 * * * * * 9b56
+18473 * * * * * * * eb21 f0a2ab95,eeaca1 d84aded5,eb21 00022ad5,0000eb21 9b57 * * * * * 9b57
+18474 * * * * * * * eb23 eeaca3,f0a2aba8 d84adee8,eb23 0000eb23,00022ae8 9b59 * * * * * 9b59
+18475 * * * * * * * eb25 eeaca5,f0a2ac8e d84adf0e,eb25 0000eb25,00022b0e 9b5b * * * * * 9b5b
+18476 * * * * * * * eb27 eeaca7,f0a2acbf d84adf3f,eb27 0000eb27,00022b3f 9b5d * * * * * 9b5d
+18477 * * * * * * * eb2a eeacaa,f0a2b18c d84bdc4c,eb2a 0000eb2a,00022c4c 9b60 * * * * * 9b60
+18478 * * * * * * * eb2c f0a2b288,eeacac d84bdc88,eb2c 00022c88,0000eb2c 9b62 * * * * * 9b62
+18479 * * * * * * * eb2d f0a2b2b7,eeacad d84bdcb7,eb2d 00022cb7,0000eb2d 9b63 * * * * * 9b63
+18480 * * * * * * * eb2e f0a5afa8,eeacae d856dfe8,eb2e 00025be8,0000eb2e 9b64 * * * * * 9b64
+18481 * * * * * * * eb2f f0a2b488,eeacaf d84bdd08,eb2f 00022d08,0000eb2f 9b65 * * * * * 9b65
+18482 * * * * * * * eb30 f0a2b492,eeacb0 d84bdd12,eb30 00022d12,0000eb30 9b66 * * * * * 9b66
+18483 * * * * * * * eb31 f0a2b6b7,eeacb1 d84bddb7,eb31 00022db7,0000eb31 9b67 * * * * * 9b67
+18484 * * * * * * * eb32 f0a2b695,eeacb2 d84bdd95,eb32 00022d95,0000eb32 9b68 * * * * * 9b68
+18485 * * * * * * * eb33 f0a2b982,eeacb3 d84bde42,eb33 00022e42,0000eb33 9b69 * * * * * 9b69
+18486 * * * * * * * eb34 f0a2bdb4,eeacb4 d84bdf74,eb34 00022f74,0000eb34 9b6a * * * * * 9b6a
+18487 * * * * * * * eb35 f0a2bf8c,eeacb5 d84bdfcc,eb35 00022fcc,0000eb35 9b6b * * * * * 9b6b
+18488 * * * * * * * eb36 f0a380b3,eeacb6 d84cdc33,eb36 00023033,0000eb36 9b6c * * * * * 9b6c
+18489 * * * * * * * eb37 f0a381a6,eeacb7 d84cdc66,eb37 00023066,0000eb37 9b6d * * * * * 9b6d
+18490 * * * * * * * eb38 f0a38c9f,eeacb8 d84cdf1f,eb38 0002331f,0000eb38 9b6e * * * * * 9b6e
+18491 * * * * * * * eb39 f0a38f9e,eeacb9 d84cdfde,eb39 000233de,0000eb39 9b6f * * * * * 9b6f
+18492 * * * * * * * eb3e f0a395a7,eeacbe d84ddd67,eb3e 00023567,0000eb3e 9b74 * * * * * 9b74
+18493 * * * * * * * eb3f f0a397b3,eeacbf d84dddf3,eb3f 000235f3,0000eb3f 9b75 * * * * * 9b75
+18494 * * * * * * * eb43 f0a3989a,eead83 d84dde1a,eb43 0002361a,0000eb43 9b79 * * * * * 9b79
+18495 * * * * * * * eb44 f0a39c96,eead84 d84ddf16,eb44 00023716,0000eb44 9b7a * * * * * 9b7a
+18496 * * * * * * * 58b5 e5a2b5,eead87 58b5,eb47 000058b5,0000eb47 9b7d * * * * * 9b7d
+18497 * * * * * * * eb4a eead8a,f0a3aaa7 d84edea7,eb4a 0000eb4a,00023aa7 9ba2 * * * * * 9ba2
+18498 * * * * * * * eb4d f0a3b891,eead8d d84fde11,eb4d 00023e11,0000eb4d 9ba5 * * * * * 9ba5
+18499 * * * * * * * eb4e f0a3bab9,eead8e d84fdeb9,eb4e 00023eb9,0000eb4e 9ba6 * * * * * 9ba6
+18500 * * * * * * * eb53 eead93,f0a48499 d850dd19,eb53 0000eb53,00024119 9bab * * * * * 9bab
+18501 * * * * * * * eb55 f0a48bae,eead95 d850deee,eb55 000242ee,0000eb55 9bad * * * * * 9bad
+18502 * * * * * * * eb56 f0a48c8d,eead96 d850df0d,eb56 0002430d,0000eb56 9bae * * * * * 9bae
+18503 * * * * * * * eb58 f0a48cb4,eead98 d850df34,eb58 00024334,0000eb58 9bb0 * * * * * 9bb0
+18504 * * * * * * * eb59 f0a48e96,eead99 d850df96,eb59 00024396,0000eb59 9bb1 * * * * * 9bb1
+18505 * * * * * * * eb62 f0a49084,eeada2 d851dc04,eb62 00024404,0000eb62 9bba * * * * * 9bba
+18506 * * * * * * * eb63 f0a49396,eeada3 d851dcd6,eb63 000244d6,0000eb63 9bbb * * * * * 9bbb
+18507 * * * * * * * 5788 e59e88,eeada4 5788,eb64 00005788,0000eb64 9bbc * * * * * 9bbc
+18508 * * * * * * * eb65 f0a499b4,eeada5 d851de74,eb65 00024674,0000eb65 9bbd * * * * * 9bbd
+18509 * * * * * * * eb67 eeada7,f0a49caf d851df2f,eb67 0000eb67,0002472f 9bbf * * * * * 9bbf
+18510 * * * * * * * eb6f f0a4a092,eeadaf d852dc12,eb6f 00024812,0000eb6f 9bc7 * * * * * 9bc7
+18511 * * * * * * * eb70 f0a4a3bb,eeadb0 d852dcfb,eb70 000248fb,0000eb70 9bc8 * * * * * 9bc8
+18512 * * * * * * * eb71 f0a4a895,eeadb1 d852de15,eb71 00024a15,0000eb71 9bc9 * * * * * 9bc9
+18513 * * * * * * * eb73 eeadb3,f0a4ab80 d852dec0,eb73 0000eb73,00024ac0 9bcb * * * * * 9bcb
+18514 * * * * * * * 5965 e5a5a5,eeadb5 5965,eb75 00005965,0000eb75 9bcd * * * * * 9bcd
+18515 * * * * * * * eb77 eeadb7,f0a4be86 d853df86,eb77 0000eb77,00024f86 9bcf * * * * * 9bcf
+18516 * * * * * * * eb7a eeadba,f0a580ac d854dc2c,eb7a 0000eb7a,0002502c 9bd2 * * * * * 9bd2
+18517 * * * * * * * 573f e59cbf,eeadbc 573f,eb7c 0000573f,0000eb7c 9bd4 * * * * * 9bd4
+18518 * * * * * * * eb7e f0a58a99,eeadbe d854de99,eb7e 00025299,0000eb7e 9bd6 * * * * * 9bd6
+18519 * * * * * * * eb7f f0a59099,eeadbf d855dc19,eb7f 00025419,0000eb7f 9bd7 * * * * * 9bd7
+18520 * * * * * * * eb83 f0a59186,eeae83 d855dc46,eb83 00025446,0000eb83 9bdb * * * * * 9bdb
+18521 * * * * * * * eb84 f0a591ae,eeae84 d855dc6e,eb84 0002546e,0000eb84 9bdc * * * * * 9bdc
+18522 * * * * * * * eb88 eeae88,f0a594bf d855dd3f,eb88 0000eb88,0002553f 9be0 * * * * * 9be0
+18523 * * * * * * * eb8a eeae8a,f0a5959e d855dd5e,eb8a 0000eb8a,0002555e 9be2 * * * * * 9be2
+18524 * * * * * * * eb8c f0a595a2,eeae8c d855dd62,eb8c 00025562,0000eb8c 9be4 * * * * * 9be4
+18525 * * * * * * * eb8d f0a595a6,eeae8d d855dd66,eb8d 00025566,0000eb8d 9be5 * * * * * 9be5
+18526 * * * * * * * eb8e f0a59f87,eeae8e d855dfc7,eb8e 000257c7,0000eb8e 9be6 * * * * * 9be6
+18527 * * * * * * * eb90 eeae90,f0a5a19d d856dc5d,eb90 0000eb90,0002585d 9be8 * * * * * 9be8
+18528 * * * * * * * eb95 eeae95,f0a5a483 d856dd03,eb95 0000eb95,00025903 9bed * * * * * 9bed
+18529 * * * * * * * eb98 f0a5aaae,eeae98 d856deae,eb98 00025aae,0000eb98 9bf0 * * * * * 9bf0
+18530 * * * * * * * eb99 f0a5ae89,eeae99 d856df89,eb99 00025b89,0000eb99 9bf1 * * * * * 9bf1
+18531 * * * * * * * eb9a f0a5b086,eeae9a d857dc06,eb9a 00025c06,0000eb9a 9bf2 * * * * * 9bf2
+18532 * * * * * * * 57a1 e59ea1,eeae9c 57a1,eb9c 000057a1,0000eb9c 9bf4 * * * * * 9bf4
+18533 * * * * * * * 7151 e78591,eeae9d 7151,eb9d 00007151,0000eb9d 9bf5 * * * * * 9bf5
+18534 * * * * * * * eb9f eeae9f,f0a68482 d858dd02,eb9f 0000eb9f,00026102 9bf7 * * * * * 9bf7
+18535 * * * * * * * eba2 eeaea2,f0a686b2 d858ddb2,eba2 0000eba2,000261b2 9bfa * * * * * 9bfa
+18536 * * * * * * * eba5 f0a69082,eeaea5 d859dc02,eba5 00026402,0000eba5 9bfd * * * * * 9bfd
+18537 * * * * * * * eba6 f0a6918a,eeaea6 d859dc4a,eba6 0002644a,0000eba6 9bfe * * * * * 9bfe
+18538 * * * * * * * ebaa eeaeaa,f0a69284 d859dc84,ebaa 0000ebaa,00026484 9c43 * * * * * 9c43
+18539 * * * * * * * ebae eeaeae,f0a69288 d859dc88,ebae 0000ebae,00026488 9c47 * * * * * 9c47
+18540 * * * * * * * ebb0 eeaeb0,f0a69492 d859dd12,ebb0 0000ebb0,00026512 9c49 * * * * * 9c49
+18541 * * * * * * * ebb2 f0a696bf,eeaeb2 d859ddbf,ebb2 000265bf,0000ebb2 9c4b * * * * * 9c4b
+18542 * * * * * * * ebb3 f0a69ab5,eeaeb3 d859deb5,ebb3 000266b5,0000ebb3 9c4c * * * * * 9c4c
+18543 * * * * * * * 56b9 e59ab9,eeaebb 56b9,ebbb 000056b9,0000ebbb 9c54 * * * * * 9c54
+18544 * * * * * * * ebbd eeaebd,f0a69bbc d859defc,ebbd 0000ebbd,000266fc 9c56 * * * * * 9c56
+18545 * * * * * * * 3618 e39898,eeaf83 3618,ebc3 00003618,0000ebc3 9c5c * * * * * 9c5c
+18546 * * * * * * * ebc5 f0a69e99,eeaf85 d859df99,ebc5 00026799,0000ebc5 9c5e * * * * * 9c5e
+18547 * * * * * * * ebc6 f0a6a1ae,eeaf86 d85adc6e,ebc6 0002686e,0000ebc6 9c5f * * * * * 9c5f
+18548 * * * * * * * ebc8 eeaf88,f0a6a19e d85adc5e,ebc8 0000ebc8,0002685e 9c61 * * * * * 9c61
+18549 * * * * * * * ebca eeaf8a,f0a6a387 d85adcc7,ebca 0000ebca,000268c7 9c63 * * * * * 9c63
+18550 * * * * * * * ebce eeaf8e,f0a6a4a6 d85add26,ebce 0000ebce,00026926 9c67 * * * * * 9c67
+18551 * * * * * * * ebd0 eeaf90,f0a6a4b9 d85add39,ebd0 0000ebd0,00026939 9c69 * * * * * 9c69
+18552 * * * * * * * ebd3 eeaf93,f0a6a7ba d85addfa,ebd3 0000ebd3,000269fa 9c6c * * * * * 9c6c
+18553 * * * * * * * ebd5 eeaf95,f0a6a8ad d85ade2d,ebd5 0000ebd5,00026a2d 9c6e * * * * * 9c6e
+18554 * * * * * * * ebda f0a6a8b4,eeaf9a d85ade34,ebda 00026a34,0000ebda 9c73 * * * * * 9c73
+18555 * * * * * * * ebdb f0a6ad9b,eeaf9b d85adf5b,ebdb 00026b5b,0000ebdb 9c74 * * * * * 9c74
+18556 * * * * * * * ebdf eeaf9f,f0a6ae9d d85adf9d,ebdf 0000ebdf,00026b9d 9c78 * * * * * 9c78
+18557 * * * * * * * ebe1 eeafa1,f0a6b2a4 d85bdca4,ebe1 0000ebe1,00026ca4 9c7a * * * * * 9c7a
+18558 * * * * * * * ebe4 eeafa4,f0a6b6ae d85bddae,ebe4 0000ebe4,00026dae 9c7d * * * * * 9c7d
+18559 * * * * * * * ebe8 f0a7818b,eeafa8 d85cdc4b,ebe8 0002704b,0000ebe8 9ca3 * * * * * 9ca3
+18560 * * * * * * * ebe9 f0a7878d,eeafa9 d85cddcd,ebe9 000271cd,0000ebe9 9ca4 * * * * * 9ca4
+18561 * * * * * * * ebeb f0a78a80,eeafab d85cde80,ebeb 00027280,0000ebeb 9ca6 * * * * * 9ca6
+18562 * * * * * * * ebec f0a78a85,eeafac d85cde85,ebec 00027285,0000ebec 9ca7 * * * * * 9ca7
+18563 * * * * * * * ebef eeafaf,f0a78a8b d85cde8b,ebef 0000ebef,0002728b 9caa * * * * * 9caa
+18564 * * * * * * * ebf1 eeafb1,f0a78ba6 d85cdee6,ebf1 0000ebf1,000272e6 9cac * * * * * 9cac
+18565 * * * * * * * 949f e9929f,eeafb4 949f,ebf4 0000949f,0000ebf4 9caf * * * * * 9caf
+18566 * * * * * * * ebf5 f0a79190,eeafb5 d85ddc50,ebf5 00027450,0000ebf5 9cb0 * * * * * 9cb0
+18567 * * * * * * * 36b9 e39ab9,eeb080 36b9,ec00 000036b9,0000ec00 9cbb * * * * * 9cbb
+18568 * * * * * * * ec08 f0a79f8c,eeb088 d85ddfcc,ec08 000277cc,0000ec08 9cc3 * * * * * 9cc3
+18569 * * * * * * * ec09 f0a7a198,eeb089 d85edc58,ec09 00027858,0000ec09 9cc4 * * * * * 9cc4
+18570 * * * * * * * 56d6 e59b96,eeb08a 56d6,ec0a 000056d6,0000ec0a 9cc5 * * * * * 9cc5
+18571 * * * * * * * ec13 eeb093,f0a7a79d d85edddd,ec13 0000ec13,000279dd 9cce * * * * * 9cce
+18572 * * * * * * * ec19 f0a7a7bd,eeb099 d85eddfd,ec19 000279fd,0000ec19 9cd4 * * * * * 9cd4
+18573 * * * * * * * ec1a f0a7a88a,eeb09a d85ede0a,ec1a 00027a0a,0000ec1a 9cd5 * * * * * 9cd5
+18574 * * * * * * * ec1b f0a7ac8b,eeb09b d85edf0b,ec1b 00027b0b,0000ec1b 9cd6 * * * * * 9cd6
+18575 * * * * * * * ec1c f0a7b5a6,eeb09c d85fdd66,ec1c 00027d66,0000ec1c 9cd7 * * * * * 9cd7
+18576 * * * * * * * ec20 eeb0a0,f0a88089 d860dc09,ec20 0000ec20,00028009 9cdb * * * * * 9cdb
+18577 * * * * * * * ec2b eeb0ab,f0a880a3 d860dc23,ec2b 0000ec2b,00028023 9ce6 * * * * * 9ce6
+18578 * * * * * * * ec2f eeb0af,f0a88188 d860dc48,ec2f 0000ec2f,00028048 9cea * * * * * 9cea
+18579 * * * * * * * ec32 eeb0b2,f0a88283 d860dc83,ec32 0000ec32,00028083 9ced * * * * * 9ced
+18580 * * * * * * * ec3f eeb0bf,f0a88290 d860dc90,ec3f 00028090,0000ec3f 9cfa * * * * * 9cfa
+18581 * * * * * * * ec40 f0a883b4,eeb180 d860dcf4,ec40 000280f4,0000ec40 9cfb * * * * * 9cfb
+18582 * * * * * * * ec41 f0a884ae,eeb181 d860dd2e,ec41 0002812e,0000ec41 9cfc * * * * * 9cfc
+18583 * * * * * * * ec43 eeb183,f0a8858f d860dd4f,ec43 0000ec43,0002814f 9cfe * * * * * 9cfe
+18584 * * * * * * * ec45 f0a886af,eeb185 d860ddaf,ec45 000281af,0000ec45 9d41 * * * * * 9d41
+18585 * * * * * * * ec46 f0a8889a,eeb186 d860de1a,ec46 0002821a,0000ec46 9d42 * * * * * 9d42
+18586 * * * * * * * ec47 f0a88c86,eeb187 d860df06,ec47 00028306,0000ec47 9d43 * * * * * 9d43
+18587 * * * * * * * ec48 f0a88caf,eeb188 d860df2f,ec48 0002832f,0000ec48 9d44 * * * * * 9d44
+18588 * * * * * * * ec49 f0a88e8a,eeb189 d860df8a,ec49 0002838a,0000ec49 9d45 * * * * * 9d45
+18589 * * * * * * * ec4b f0a891a8,eeb18b d861dc68,ec4b 00028468,0000ec4b 9d47 * * * * * 9d47
+18590 * * * * * * * ec4c f0a89aaa,eeb18c d861deaa,ec4c 000286aa,0000ec4c 9d48 * * * * * 9d48
+18591 * * * * * * * 63e6 e68fa6,eeb18e 63e6,ec4e 000063e6,0000ec4e 9d4a * * * * * 9d4a
+18592 * * * * * * * ec4f f0a8a596,eeb18f d862dd56,ec4f 00028956,0000ec4f 9d4b * * * * * 9d4b
+18593 * * * * * * * ec52 eeb192,f0a8a6b8 d862ddb8,ec52 0000ec52,000289b8 9d4e * * * * * 9d4e
+18594 * * * * * * * ec54 eeb194,f0a8a7a7 ec54,d862dde7 0000ec54,000289e7 9d50 * * * * * 9d50
+18595 * * * * * * * ec56 eeb196,f0a8a7a8 d862dde8,ec56 0000ec56,000289e8 9d52 * * * * * 9d52
+18596 * * * * * * * ec57 f0a8ad86,eeb197 d862df46,ec57 00028b46,0000ec57 9d53 * * * * * 9d53
+18597 * * * * * * * ec58 f0a8af94,eeb198 d862dfd4,ec58 00028bd4,0000ec58 9d54 * * * * * 9d54
+18598 * * * * * * * ec5a eeb19a,f0a8b089 d863dc09,ec5a 0000ec5a,00028c09 9d56 * * * * * 9d56
+18599 * * * * * * * ec5c f0a8bf85,eeb19c d863dfc5,ec5c 00028fc5,0000ec5c 9d58 * * * * * 9d58
+18600 * * * * * * * ec5d f0a983ac,eeb19d d864dcec,ec5d 000290ec,0000ec5d 9d59 * * * * * 9d59
+18601 * * * * * * * ec5f f0a98490,eeb19f d864dd10,ec5f 00029110,0000ec5f 9d5b * * * * * 9d5b
+18602 * * * * * * * ec60 f0a984bc,eeb1a0 d864dd3c,ec60 0002913c,0000ec60 9d5c * * * * * 9d5c
+18603 * * * * * * * 3df7 e3b7b7,eeb1a1 3df7,ec61 00003df7,0000ec61 9d5d * * * * * 9d5d
+18604 * * * * * * * ec62 f0a9859e,eeb1a2 d864dd5e,ec62 0002915e,0000ec62 9d5e * * * * * 9d5e
+18605 * * * * * * * ec63 f0a4ab8a,eeb1a3 d852deca,ec63 00024aca,0000ec63 9d5f * * * * * 9d5f
+18606 * * * * * * * 8fd0 e8bf90,eeb1a4 8fd0,ec64 00008fd0,0000ec64 9d60 * * * * * 9d60
+18607 * * * * * * * ec67 eeb1a7,f0a993a7 d865dce7,ec67 0000ec67,000294e7 9d63 * * * * * 9d63
+18608 * * * * * * * ec69 f0a996b0,eeb1a9 d865ddb0,ec69 000295b0,0000ec69 9d65 * * * * * 9d65
+18609 * * * * * * * ec6a f0a996b8,eeb1aa d865ddb8,ec6a 000295b8,0000ec6a 9d66 * * * * * 9d66
+18610 * * * * * * * ec6b f0a99cb2,eeb1ab d865df32,ec6b 00029732,0000ec6b 9d67 * * * * * 9d67
+18611 * * * * * * * ec6c f0a9a391,eeb1ac d866dcd1,ec6c 000298d1,0000ec6c 9d68 * * * * * 9d68
+18612 * * * * * * * ec6d f0a9a589,eeb1ad d866dd49,ec6d 00029949,0000ec6d 9d69 * * * * * 9d69
+18613 * * * * * * * ec6e f0a9a5aa,eeb1ae d866dd6a,ec6e 0002996a,0000ec6e 9d6a * * * * * 9d6a
+18614 * * * * * * * ec6f f0a9a783,eeb1af d866ddc3,ec6f 000299c3,0000ec6f 9d6b * * * * * 9d6b
+18615 * * * * * * * ec70 f0a9a8a8,eeb1b0 d866de28,ec70 00029a28,0000ec70 9d6c * * * * * 9d6c
+18616 * * * * * * * ec71 f0a9ac8e,eeb1b1 d866df0e,ec71 00029b0e,0000ec71 9d6d * * * * * 9d6d
+18617 * * * * * * * ec72 f0a9b59a,eeb1b2 d867dd5a,ec72 00029d5a,0000ec72 9d6e * * * * * 9d6e
+18618 * * * * * * * ec73 f0a9b69b,eeb1b3 d867dd9b,ec73 00029d9b,0000ec73 9d6f * * * * * 9d6f
+18619 * * * * * * * 7e9f e7ba9f,eeb1b4 7e9f,ec74 00007e9f,0000ec74 9d70 * * * * * 9d70
+18620 * * * * * * * ec75 f0a9bbb8,eeb1b5 d867def8,ec75 00029ef8,0000ec75 9d71 * * * * * 9d71
+18621 * * * * * * * ec76 f0a9bca3,eeb1b6 d867df23,ec76 00029f23,0000ec76 9d72 * * * * * 9d72
+18622 * * * * * * * 4ca4 e4b2a4,e9bf90,eeb1b7 4ca4,9fd0,ec77 00004ca4,00009fd0,0000ec77 9d73 * * * * * 9d73
+18623 * * * * * * * 9547 e99587,eeb1b8 9547,ec78 00009547,0000ec78 9d74 * * * * * 9d74
+18624 * * * * * * * ec79 f0aa8a93,eeb1b9 d868de93,ec79 0002a293,0000ec79 9d75 * * * * * 9d75
+18625 * * * * * * * 71a2 e786a2,eeb1ba 71a2,ec7a 000071a2,0000ec7a 9d76 * * * * * 9d76
+18626 * * * * * * * ec7b f0aa8bbf,eeb1bb d868deff,ec7b 0002a2ff,0000ec7b 9d77 * * * * * 9d77
+18627 * * * * * * * ec7e f0aa978b,eeb1be d869ddcb,ec7e 0002a5cb,0000ec7e 9d7a * * * * * 9d7a
+18628 * * * * * * * 4d9c e4b69c,eeb1bf 4d9c,ec7f 00004d9c,0000ec7f 9d7b * * * * * 9d7b
+18629 * * * * * * * ec80 f0a0b29c,eeb280 d843dc9c,ec80 00020c9c,0000ec80 9d7c * * * * * 9d7c
+18630 * * * * * * * 8fbe e8bebe,eeb281 8fbe,ec81 00008fbe,0000ec81 9d7d * * * * * 9d7d
+18631 * * * * * * * 8fba e8beba,eeb283 8fba,ec83 00008fba,0000ec83 9da1 * * * * * 9da1
+18632 * * * * * * * ec84 f0a292b0,eeb284 d849dcb0,ec84 000224b0,0000ec84 9da2 * * * * * 9da2
+18633 * * * * * * * 8fb9 e8beb9,eeb285 8fb9,ec85 00008fb9,0000ec85 9da3 * * * * * 9da3
+18634 * * * * * * * ec86 f0a4aa93,eeb286 d852de93,ec86 00024a93,0000ec86 9da4 * * * * * 9da4
+18635 * * * * * * * 4eea e4bbaa,eeb28b 4eea,ec8b 00004eea,0000ec8b 9da9 * * * * * 9da9
+18636 * * * * * * * ec8d eeb28d,f0a8acac d862df2c,ec8d 0000ec8d,00028b2c 9dab * * * * * 9dab
+18637 * * * * * * * * e8ba80,eeb290 8e80,ec90 00008e80,0000ec90 9dae * * * * * 9dae
+18638 * * * * * * * ec91 f0a19fb5,eeb291 d845dff5,ec91 000217f5,0000ec91 9daf * * * * * 9daf
+18639 * * * * * * * ec93 f0a8adac,eeb293 d862df6c,ec93 00028b6c,0000ec93 9db1 * * * * * 9db1
+18640 * * * * * * * ec94 f0a8ae99,eeb294 d862df99,ec94 00028b99,0000ec94 9db2 * * * * * 9db2
+18641 * * * * * * * ec96 eeb296,f0a69aaf d859deaf,ec96 0000ec96,000266af 9db4 * * * * * 9db4
+18642 * * * * * * * ec98 eeb298,f0a79995 d85dde55,ec98 0000ec98,00027655 9db6 * * * * * 9db6
+18643 * * * * * * * ec9a f0a598b5,eeb29a d855de35,ec9a 00025635,0000ec9a 9db8 * * * * * 9db8
+18644 * * * * * * * ec9b f0a5a596,eeb29b d856dd56,ec9b 00025956,0000ec9b 9db9 * * * * * 9db9
+18645 * * * * * * * 4e9a e4ba9a,eeb29c 4e9a,ec9c 00004e9a,0000ec9c 9dba * * * * * 9dba
+18646 * * * * * * * ec9d f0a5ba81,eeb29d d857de81,ec9d 00025e81,0000ec9d 9dbb * * * * * 9dbb
+18647 * * * * * * * eca0 eeb2a0,f0a0b9ad d843de6d,eca0 0000eca0,00020e6d 9dbe * * * * * 9dbe
+18648 * * * * * * * eca3 f0a3ba88,eeb2a3 d84fde88,eca3 00023e88,0000eca3 9dc1 * * * * * 9dc1
+18649 * * * * * * * eca4 f0a4b29e,eeb2a4 d853dc9e,eca4 00024c9e,0000eca4 9dc2 * * * * * 9dc2
+18650 * * * * * * * eca7 f0a19fb6,eeb2a7 d845dff6,eca7 000217f6,0000eca7 9dc5 * * * * * 9dc5
+18651 * * * * * * * eca8 f0a1a1bb,eeb2a8 d846dc7b,eca8 0002187b,0000eca8 9dc6 * * * * * 9dc6
+18652 * * * * * * * ecab eeb2ab,f0a5b18a d857dc4a,ecab 0000ecab,00025c4a 9dc9 * * * * * 9dc9
+18653 * * * * * * * ecad f0a58c91,eeb2ad d854df11,ecad 00025311,0000ecad 9dcb * * * * * 9dcb
+18654 * * * * * * * 3dc6 e3b786,eeb2ae 3dc6,ecae 00003dc6,0000ecae 9dcc * * * * * 9dcc
+18655 * * * * * * * ecb4 eeb2b4,f0a5bb98 d857ded8,ecb4 0000ecb4,00025ed8 9dd2 * * * * * 9dd2
+18656 * * * * * * * 4e1c e4b89c,eeb2b8 4e1c,ecb8 00004e1c,0000ecb8 9dd6 * * * * * 9dd6
+18657 * * * * * * * ecb9 f0a0bfaa,eeb2b9 d843dfea,ecb9 00020fea,0000ecb9 9dd7 * * * * * 9dd7
+18658 * * * * * * * ecba f0a0b589,eeb2ba d843dd49,ecba 00020d49,0000ecba 9dd8 * * * * * 9dd8
+18659 * * * * * * * ecbb f0a39aba,eeb2bb d84ddeba,ecbb 000236ba,0000ecbb 9dd9 * * * * * 9dd9
+18660 * * * * * * * ecde eeb39e,f0a58588 d854dd48,ecde 0000ecde,00025148 9dfc * * * * * 9dfc
+18661 * * * * * * * * e5979e,eeb3a4 55de,ece4 000055de,0000ece4 9e43 * * * * * 9e43
+18662 * * * * * * * * e89e86,eeb480 8786,ed00 00008786,0000ed00 9e5f * * * * * 9e5f
+18663 * * * * * * * ed04 eeb484,f0a18381 d844dcc1,ed04 0000ed04,000210c1 9e63 * * * * * 9e63
+18664 * * * * * * * ed07 f0a49c86,eeb487 d851df06,ed07 00024706,0000ed07 9e66 * * * * * 9e66
+18665 * * * * * * * 5b90 e5ae90,eeb488 5b90,ed08 00005b90,0000ed08 9e67 * * * * * 9e67
+18666 * * * * * * * ed0a eeb48a,f0a6a293 d85adc93,ed0a 0000ed0a,00026893 9e69 * * * * * 9e69
+18667 * * * * * * * ed0c f0a29bb4,eeb48c d849def4,ed0c 000226f4,0000ed0c 9e6b * * * * * 9e6b
+18668 * * * * * * * ed0d f0a7b4af,eeb48d d85fdd2f,ed0d 00027d2f,0000ed0d 9e6c * * * * * 9e6c
+18669 * * * * * * * ed0e f0a486a3,eeb48e d850dda3,ed0e 000241a3,0000ed0e 9e6d * * * * * 9e6d
+18670 * * * * * * * ed0f f0a7b5b3,eeb48f d85fdd73,ed0f 00027d73,0000ed0f 9e6e * * * * * 9e6e
+18671 * * * * * * * ed10 f0a6bb90,eeb490 d85bded0,ed10 00026ed0,0000ed10 9e6f * * * * * 9e6f
+18672 * * * * * * * ed11 f0a78ab6,eeb491 d85cdeb6,ed11 000272b6,0000ed11 9e70 * * * * * 9e70
+18673 * * * * * * * ed13 eeb493,f0a18799 d844ddd9,ed13 0000ed13,000211d9 9e72 * * * * * 9e72
+18674 * * * * * * * ed15 f0a3b3bc,eeb495 d84fdcfc,ed15 00023cfc,0000ed15 9e74 * * * * * 9e74
+18675 * * * * * * * ed16 f0aa9aa9,eeb496 d869dea9,ed16 0002a6a9,0000ed16 9e75 * * * * * 9e75
+18676 * * * * * * * ed17 f0a0baac,eeb497 d843deac,ed17 00020eac,0000ed17 9e76 * * * * * 9e76
+18677 * * * * * * * ed1a eeb49a,f0a1b2a2 d847dca2,ed1a 0000ed1a,00021ca2 9e79 * * * * * 9e79
+18678 * * * * * * * ed1c eeb49c,f0a4bf82 d853dfc2,ed1c 0000ed1c,00024fc2 9e7b * * * * * 9e7b
+18679 * * * * * * * ed1e eeb49e,f0a0bfab d843dfeb,ed1e 0000ed1e,00020feb 9e7d * * * * * 9e7d
+18680 * * * * * * * ed22 eeb4a2,f0a2b6a0 d84bdda0,ed22 0000ed22,00022da0 9ea3 * * * * * 9ea3
+18681 * * * * * * * ed26 f0a0bfac,eeb4a6 d843dfec,ed26 00020fec,0000ed26 9ea7 * * * * * 9ea7
+18682 * * * * * * * ed27 f0a0b88a,eeb4a7 d843de0a,ed27 00020e0a,0000ed27 9ea8 * * * * * 9ea8
+18683 * * * * * * * ed2a eeb4aa,f0a0bfad d843dfed,ed2a 0000ed2a,00020fed 9eab * * * * * 9eab
+18684 * * * * * * * ed2d eeb4ad,f0a18687 d844dd87,ed2d 0000ed2d,00021187 9eae * * * * * 9eae
+18685 * * * * * * * 4e1a e4b89a,eeb4b1 4e1a,ed31 00004e1a,0000ed31 9eb2 * * * * * 9eb2
+18686 * * * * * * * 4e04 e4b884,eeb4b2 4e04,ed32 00004e04,0000ed32 9eb3 * * * * * 9eb3
+18687 * * * * * * * 5b0d e5ac8d,eeb4b4 5b0d,ed34 00005b0d,0000ed34 9eb5 * * * * * 9eb5
+18688 * * * * * * * 36ac e39aac,eeb4b7 36ac,ed37 000036ac,0000ed37 9eb8 * * * * * 9eb8
+18689 * * * * * * * 537d e58dbd,eeb4b9 537d,ed39 0000537d,0000ed39 9eba * * * * * 9eba
+18690 * * * * * * * 36a5 e39aa5,eeb4ba 36a5,ed3a 000036a5,0000ed3a 9ebb * * * * * 9ebb
+18691 * * * * * * * 589a e5a29a,eeb4bc 589a,ed3c 0000589a,0000ed3c 9ebd * * * * * 9ebd
+18692 * * * * * * * ed3d f0a4adae,eeb4bd d852df6e,ed3d 00024b6e,0000ed3d 9ebe * * * * * 9ebe
+18693 * * * * * * * 57aa e59eaa,eeb580 57aa,ed40 000057aa,0000ed40 9ec1 * * * * * 9ec1
+18694 * * * * * * * ed41 f0a5aa95,eeb581 d856de95,ed41 00025a95,0000ed41 9ec2 * * * * * 9ec2
+18695 * * * * * * * ed42 f0a0a5b9,eeb582 d842dd79,ed42 00020979,0000ed42 9ec3 * * * * * 9ec3
+18696 * * * * * * * ed45 eeb585,f0a291a5 d849dc65,ed45 0000ed45,00022465 9ec6 * * * * * 9ec6
+18697 * * * * * * * ed4a f0a3b3be,eeb58a d84fdcfe,ed4a 00023cfe,0000ed4a 9ecb * * * * * 9ecb
+18698 * * * * * * * ed4b f0a9bcb0,eeb58b d867df30,ed4b 00029f30,0000ed4b 9ecc * * * * * 9ecc
+18699 * * * * * * * ed4d f0a4bea9,eeb58d d853dfa9,ed4d 00024fa9,0000ed4d 9ece * * * * * 9ece
+18700 * * * * * * * ed4e f0a9969e,eeb58e d865dd9e,ed4e 0002959e,0000ed4e 9ecf * * * * * 9ecf
+18701 * * * * * * * ed51 eeb591,f0a3b6b6 d84fddb6,ed51 0000ed51,00023db6 9ed2 * * * * * 9ed2
+18702 * * * * * * * ed53 f0a69eb3,eeb593 d859dfb3,ed53 000267b3,0000ed53 9ed4 * * * * * 9ed4
+18703 * * * * * * * ed54 f0a39ca0,eeb594 d84ddf20,ed54 00023720,0000ed54 9ed5 * * * * * 9ed5
+18704 * * * * * * * ed57 f0a3bbb7,eeb597 d84fdef7,ed57 00023ef7,0000ed57 9ed8 * * * * * 9ed8
+18705 * * * * * * * ed58 f0a3b8ac,eeb598 d84fde2c,ed58 00023e2c,0000ed58 9ed9 * * * * * 9ed9
+18706 * * * * * * * ed71 eeb5b1,f0a3839a d84cdcda,ed71 0000ed71,000230da 9ef2 * * * * * 9ef2
+18707 * * * * * * * ed75 f0a18aa9,eeb5b5 d844dea9,ed75 000212a9,0000ed75 9ef6 * * * * * 9ef6
+18708 * * * * * * * 57a7 e59ea7,eeb5b6 57a7,ed76 000057a7,0000ed76 9ef7 * * * * * 9ef7
+18709 * * * * * * * ed77 f0a4a5a3,eeb5b7 d852dd63,ed77 00024963,0000ed77 9ef8 * * * * * 9ef8
+18710 * * * * * * * ed7a eeb5ba,f0a782ae d85cdcae,ed7a 0000ed7a,000270ae 9efb * * * * * 9efb
+18711 * * * * * * * ed81 eeb681,f0a19dac d845df6c,ed81 0000ed81,0002176c 9f43 * * * * * 9f43
+18712 * * * * * * * ed86 eeb686,f0a785a4 d85cdd64,ed86 0000ed86,00027164 9f48 * * * * * 9f48
+18713 * * * * * * * ed89 f0a6b4a2,eeb689 d85bdd22,ed89 00026d22,0000ed89 9f4b * * * * * 9f4b
+18714 * * * * * * * ed8a f0a4aba2,eeb68a d852dee2,ed8a 00024ae2,0000ed8a 9f4c * * * * * 9f4c
+18715 * * * * * * * 9c1b e9b09b,eeb6a5 9c1b,eda5 00009c1b,0000eda5 9f67 * * * * * 9f67
+18716 * * * * * * * eda6 f0a4a4be,eeb6a6 d852dd3e,eda6 0002493e,0000eda6 9f68 * * * * * 9f68
+18717 * * * * * * * 3e06 e3b886,eeb6ae 3e06,edae 00003e06,0000edae 9f70 * * * * * 9f70
+18718 * * * * * * * edd1 eeb791,f0a6b4a3 d85bdd23,edd1 0000edd1,00026d23 9fb5 * * * * * 9fb5
+18719 * * * * * * * edd7 eeb797,f0a08fbc d840dffc,edd7 0000edd7,000203fc 9fbb * * * * * 9fbb
+18720 * * * * * * * eddb eeb79b,f0a3b3bd d84fdcfd,eddb 0000eddb,00023cfd 9fbf * * * * * 9fbf
+18721 * * * * * * * eddd eeb79d,f0a4a499 d852dd19,eddd 0000eddd,00024919 9fc1 * * * * * 9fc1
+18722 * * * * * * * * e59dba,eeb7a8 577a,ede8 0000577a,0000ede8 9fcc * * * * * 9fcc
+18723 * * * * * * * 54da e5939a,eeb7b0 54da,edf0 000054da,0000edf0 9fd4 * * * * * 9fd4
+18724 * * * * * * * 717a e785ba,eeb880 717a,ee00 0000717a,0000ee00 9fe4 * * * * * 9fe4
+18725 * * * * * * * ee15 eeb895,f0a4a9b7 d852de77,ee15 0000ee15,00024a77 9ff9 * * * * * 9ff9
+18726 * * * * * * * ee1b eeb89b,f0a8a99a d862de5a,ee1b 0000ee1b,00028a5a a040 * * * * * a040
+18727 * * * * * * * ee22 eeb8a2,f0afa180 d87edc40,ee22 0000ee22,0002f840 a047 * * * * * a047
+18728 * * * * * * * ee30 eeb8b0,f0a1a0bb d846dc3b,ee30 0000ee30,0002183b a055 * * * * * a055
+18729 * * * * * * * ee48 eeb988,f0a68599 d858dd59,ee48 0000ee48,00026159 a06d * * * * * a06d
+18730 * * * * * * * ee56 eeb996,f0a38fb5 d84cdff5,ee56 0000ee56,000233f5 a07b * * * * * a07b
+18731 * * * * * * * ee5b eeb99b,f0a8af82 d862dfc2,ee5b 0000ee5b,00028bc2 a0a2 * * * * * a0a2
+18732 * * * * * * * ee60 eeb9a0,f0a1b586 d847dd46,ee60 0000ee60,00021d46 a0a7 * * * * * a0a7
+18733 * * * * * * * ee7e eeb9be,f0a6bb91 d85bded1,ee7e 0000ee7e,00026ed1 a0c5 * * * * * a0c5
+18734 * * * * * * * 3635 e398b5,eeba89 3635,ee89 00003635,0000ee89 a0d0 * * * * * a0d0
+18735 * * * * * * * ee9c eeba9c,f0a8acad d862df2d,ee9c 0000ee9c,00028b2d a0e3 * * * * * a0e3
+18736 * * * * * * * 5220 e588a0,eebaa0 5220,eea0 00005220,0000eea0 a0e7 * * * * * a0e7
+18737 * * * * * * * eea1 e3b098,eebaa1 3c18,eea1 00003c18,0000eea1 a0e8 * * * * * a0e8
+18738 * * * * * * * eea2 f0a3b387,eebaa2 d84fdcc7,eea2 00023cc7,0000eea2 a0e9 * * * * * a0e9
+18739 * * * * * * * eea3 f0a5bb97,eebaa3 d857ded7,eea3 00025ed7,0000eea3 a0ea * * * * * a0ea
+18740 * * * * * * * eea4 f0a79996,eebaa4 d85dde56,eea4 00027656,0000eea4 a0eb * * * * * a0eb
+18741 * * * * * * * eea5 f0a594b1,eebaa5 d855dd31,eea5 00025531,0000eea5 a0ec * * * * * a0ec
+18742 * * * * * * * eea6 f0a1a584,eebaa6 d846dd44,eea6 00021944,0000eea6 a0ed * * * * * a0ed
+18743 * * * * * * * eea8 f0a9a483,eebaa8 d866dd03,eea8 00029903,0000eea8 a0ef * * * * * a0ef
+18744 * * * * * * * eea9 f0a6b79c,eebaa9 d85bdddc,eea9 00026ddc,0000eea9 a0f0 * * * * * a0f0
+18745 * * * * * * * eeaa f0a782ad,eebaaa d85cdcad,eeaa 000270ad,0000eeaa a0f1 * * * * * a0f1
+18746 * * * * * * * eeac f0a686ad,eebaac d858ddad,eeac 000261ad,0000eeac a0f3 * * * * * a0f3
+18747 * * * * * * * eead f0a8a88f,eebaad d862de0f,eead 00028a0f,0000eead a0f4 * * * * * a0f4
+18748 * * * * * * * eeae f0a399b7,eebaae d84dde77,eeae 00023677,0000eeae a0f5 * * * * * a0f5
+18749 * * * * * * * eeaf f0a083ae,eebaaf d840dcee,eeaf 000200ee,0000eeaf a0f6 * * * * * a0f6
+18750 * * * * * * * eeb0 f0a6a186,eebab0 d85adc46,eeb0 00026846,0000eeb0 a0f7 * * * * * a0f7
+18751 * * * * * * * eeb1 f0a4bc8e,eebab1 d853df0e,eeb1 00024f0e,0000eeb1 a0f8 * * * * * a0f8
+18752 * * * * * * * 4562 e495a2,eebab2 4562,eeb2 00004562,0000eeb2 a0f9 * * * * * a0f9
+18753 * * * * * * * 5b1f e5ac9f,eebab3 5b1f,eeb3 00005b1f,0000eeb3 a0fa * * * * * a0fa
+18754 * * * * * * * eeb4 f0a68d8c,eebab4 d858df4c,eeb4 0002634c,0000eeb4 a0fb * * * * * a0fb
+18755 * * * * * * * 9f50 e9bd90,eebab5 9f50,eeb5 00009f50,0000eeb5 a0fc * * * * * a0fc
+18756 * * * * * * * 9ea6 e9baa6,eebab6 9ea6,eeb6 00009ea6,0000eeb6 a0fd * * * * * a0fd
+18757 * * * * * * * eeb7 f0a689ab,eebab7 d858de6b,eeb7 0002626b,0000eeb7 a0fe * * * * * a0fe
+18758 * * * * * * * * e587a2,ee8187 51e2,e047 000051e2,0000e047 faa9 * * * * * faa9
+18759 * * * * * * * 5342 e58d82,ee8188 5342,e048 00005342,0000e048 faaa * * * * * faaa
+18760 * * * * * * * 66ad e69aad,ee82b0 66ad,e0b0 000066ad,0000e0b0 fb53 * * * * * fb53
+18761 * * * * * * * 585c e5a19c,ee838b 585c,e0cb 0000585c,0000e0cb fb6e * * * * * fb6e
+18762 * * * * * * * * e59593,ee839e 5553,e0de 00005553,0000e0de fba3 * * * * * fba3
+18763 * * * * * * * 3d85 e3b685,ee83ba 3d85,e0fa 00003d85,0000e0fa fbbf * * * * * fbbf
+18764 * * * * * * * 6160 e685a0,ee8488 6160,e108 00006160,0000e108 fbcd * * * * * fbcd
+18765 * * * * * * * 48ae e4a2ae,ee8584 48ae,e144 000048ae,0000e144 fc4a * * * * * fc4a
+18766 * * * * * * * 97bd e99ebd,ee858c 97bd,e14c 000097bd,0000e14c fc52 * * * * * fc52
+18767 * * * * * * * e15d ee859d,f0a1a1b7 d846dc77,e15d 0000e15d,00021877 fc63 * * * * * fc63
+18768 * * * * * * * * e682b3,ee85a7 60b3,e167 000060b3,0000e167 fc6d * * * * * fc6d
+18769 * * * * * * * 8424 e890a4,ee85af 8424,e16f 00008424,0000e16f fc75 * * * * * fc75
+18770 * * * * * * * 9814 e9a094,ee8694 9814,e194 00009814,0000e194 fcbc * * * * * fcbc
+18771 * * * * * * * e195 f0a4828c,ee8695 d850dc8c,e195 0002408c,0000e195 fcbd * * * * * fcbd
+18772 * * * * * * * e1a4 ee86a4,f0a381be d84cdc7e,e1a4 0000e1a4,0002307e fccc * * * * * fccc
+18773 * * * * * * * e1bb ee86bb,f0a1b8bd d847de3d,e1bb 0000e1bb,00021e3d fce3 * * * * * fce3
+18774 * * * * * * * 3b2b e3acab,ee8786 3b2b,e1c6 00003b2b,0000e1c6 fcee * * * * * fcee
+18775 * * * * * * * 3d32 e3b4b2,ee87a0 3d32,e1e0 00003d32,0000e1e0 fd49 * * * * * fd49
+18776 * * * * * * * e201 ee8881,f0a08eb5 d840dfb5,e201 0000e201,000203b5 fd6a * * * * * fd6a
+18777 * * * * * * * 7081 e78281,ee8998 7081,e258 00007081,0000e258 fde3 * * * * * fde3
+18778 * * * * * * * 5c9c e5b29c,ee89a7 5c9c,e267 00005c9c,0000e267 fdf2 * * * * * fdf2
+18779 * * * * * * * e2a1 ee8aa1,f0a09783 d841ddc3,e2a1 0000e2a1,000205c3 fe6d * * * * * fe6d
+18780 * * * * * * * 3730 e39cb0,ee8aac 3730,e2ac 00003730,0000e2ac fe78 * * * * * fe78
+18781 * * * * * * * e2f0 f0a18db6,ee8bb0 d844df76,e2f0 00021376,0000e2f0 fede * * * * * fede
+18782 * * * * * * * e2f1 f0a4a892,ee8bb1 d852de12,e2f1 00024a12,0000e2f1 fedf * * * * * fedf
+18783 * * * * * * * e2ff ee8bbf,f0a8acab d862df2b,e2ff 0000e2ff,00028b2b feed * * * * * feed
+18784 * * * * * * * e300 ee8c80,f0a68283 d858dc83,e300 0000e300,00026083 feee * * * * * feee
+18785 * * * * * * * 0100 c480,ef8c99 0100,f319 00000100,0000f319 8856 * * * * * 8856
+18786 * * * * * * * 00c1 c381,ef8c9a 00c1,f31a 000000c1,0000f31a 8857 * * * * * 8857
+18787 * * * * * * * 01cd c78d,ef8c9b 01cd,f31b 000001cd,0000f31b 8858 * * * * * 8858
+18788 * * * * * * * 00c0 c380,ef8c9c 00c0,f31c 000000c0,0000f31c 8859 * * * * * 8859
+18789 * * * * * * * 0112 c492,ef8c9d 0112,f31d 00000112,0000f31d 885a * * * * * 885a
+18790 * * * * * * * 00c9 c389,ef8c9e 00c9,f31e 000000c9,0000f31e 885b * * * * * 885b
+18791 * * * * * * * 011a c49a,ef8c9f 011a,f31f 0000011a,0000f31f 885c * * * * * 885c
+18792 * * * * * * * 00c8 c388,ef8ca0 00c8,f320 000000c8,0000f320 885d * * * * * 885d
+18793 * * * * * * * 014c c58c,ef8ca1 014c,f321 0000014c,0000f321 885e * * * * * 885e
+18794 * * * * * * * 00d3 c393,ef8ca2 00d3,f322 000000d3,0000f322 885f * * * * * 885f
+18795 * * * * * * * 01d1 c791,ef8ca3 01d1,f323 000001d1,0000f323 8860 * * * * * 8860
+18796 * * * * * * * 00d2 c392,ef8ca4 00d2,f324 000000d2,0000f324 8861 * * * * * 8861
+18797 * * * * * * * f325 ef8ca5 f325 0000f325 8862 * * * * * 8862
+18798 * * * * * * * 1ebe e1babe,ef8ca6 1ebe,f326 00001ebe,0000f326 8863 * * * * * 8863
+18799 * * * * * * * f327 ef8ca7 f327 0000f327 8864 * * * * * 8864
+18800 * * * * * * * 1ec0 e1bb80,ef8ca8 1ec0,f328 00001ec0,0000f328 8865 * * * * * 8865
+18801 * * * * * * * 00ca c38a,ef8ca9 00ca,f329 000000ca,0000f329 8866 * * * * * 8866
+18802 * * * * * * * 0101 c481,ef8caa 0101,f32a 00000101,0000f32a 8867 * * * * * 8867
+18803 * * * * * * * 00e1 c3a1,ef8cab 00e1,f32b 000000e1,0000f32b 8868 * * * * * 8868
+18804 * * * * * * * 01ce c78e,ef8cac 01ce,f32c 000001ce,0000f32c 8869 * * * * * 8869
+18805 * * * * * * * 00e0 c3a0,ef8cad 00e0,f32d 000000e0,0000f32d 886a * * * * * 886a
+18806 * * * * * * * 0251 c991,ef8cae 0251,f32e 00000251,0000f32e 886b * * * * * 886b
+18807 * * * * * * * 0113 c493,ef8caf 0113,f32f 00000113,0000f32f 886c * * * * * 886c
+18808 * * * * * * * 00e9 c3a9,ef8cb0 00e9,f330 000000e9,0000f330 886d * * * * * 886d
+18809 * * * * * * * 011b c49b,ef8cb1 011b,f331 0000011b,0000f331 886e * * * * * 886e
+18810 * * * * * * * 00e8 c3a8,ef8cb2 00e8,f332 000000e8,0000f332 886f * * * * * 886f
+18811 * * * * * * * 012b c4ab,ef8cb3 012b,f333 0000012b,0000f333 8870 * * * * * 8870
+18812 * * * * * * * 00ed c3ad,ef8cb4 00ed,f334 000000ed,0000f334 8871 * * * * * 8871
+18813 * * * * * * * 01d0 c790,ef8cb5 01d0,f335 000001d0,0000f335 8872 * * * * * 8872
+18814 * * * * * * * 00ec c3ac,ef8cb6 00ec,f336 000000ec,0000f336 8873 * * * * * 8873
+18815 * * * * * * * 014d c58d,ef8cb7 014d,f337 0000014d,0000f337 8874 * * * * * 8874
+18816 * * * * * * * 00f3 c3b3,ef8cb8 00f3,f338 000000f3,0000f338 8875 * * * * * 8875
+18817 * * * * * * * 01d2 c792,ef8cb9 01d2,f339 000001d2,0000f339 8876 * * * * * 8876
+18818 * * * * * * * 00f2 c3b2,ef8cba 00f2,f33a 000000f2,0000f33a 8877 * * * * * 8877
+18819 * * * * * * * 016b c5ab,ef8cbb 016b,f33b 0000016b,0000f33b 8878 * * * * * 8878
+18820 * * * * * * * 00fa c3ba,ef8cbc 00fa,f33c 000000fa,0000f33c 8879 * * * * * 8879
+18821 * * * * * * * 01d4 c794,ef8cbd 01d4,f33d 000001d4,0000f33d 887a * * * * * 887a
+18822 * * * * * * * 00f9 c3b9,ef8cbe 00f9,f33e 000000f9,0000f33e 887b * * * * * 887b
+18823 * * * * * * * 01d6 c796,ef8cbf 01d6,f33f 000001d6,0000f33f 887c * * * * * 887c
+18824 * * * * * * * 01d8 c798,ef8d80 01d8,f340 000001d8,0000f340 887d * * * * * 887d
+18825 * * * * * * * 01da c79a,ef8d81 01da,f341 000001da,0000f341 887e * * * * * 887e
+18826 * * * * * * * 01dc c79c,ef8d82 01dc,f342 000001dc,0000f342 88a1 * * * * * 88a1
+18827 * * * * * * * 00fc c3bc,ef8d83 00fc,f343 000000fc,0000f343 88a2 * * * * * 88a2
+18828 * * * * * * * f344 ef8d84 f344 0000f344 88a3 * * * * * 88a3
+18829 * * * * * * * 1ebf e1babf,ef8d85 1ebf,f345 00001ebf,0000f345 88a4 * * * * * 88a4
+18830 * * * * * * * f346 ef8d86 f346 0000f346 88a5 * * * * * 88a5
+18831 * * * * * * * 1ec1 e1bb81,ef8d87 1ec1,f347 00001ec1,0000f347 88a6 * * * * * 88a6
+18832 * * * * * * * 00ea c3aa,ef8d88 00ea,f348 000000ea,0000f348 88a7 * * * * * 88a7
+18833 * * * * * * * 0261 c9a1,ef8d89 0261,f349 00000261,0000f349 88a8 * * * * * 88a8
+18834 * * * * * * * 0283 ca83,efa0bf 0283,f83f 00000283,0000f83f c8f5 * * * * * c8f5
+18835 * * * * * * * 0250 c990,efa180 0250,f840 00000250,0000f840 c8f6 * * * * * c8f6
+18836 * * * * * * * 025b c99b,efa181 025b,f841 0000025b,0000f841 c8f7 * * * * * c8f7
+18837 * * * * * * * 0254 c994,efa182 0254,f842 00000254,0000f842 c8f8 * * * * * c8f8
+18838 * * * * * * * 0275 c9b5,efa183 0275,f843 00000275,0000f843 c8f9 * * * * * c8f9
+18839 * * * * * * * 0153 c593,efa184 0153,f844 00000153,0000f844 c8fa * * * * * c8fa
+18840 * * * * * * * 00f8 c3b8,efa185 00f8,f845 000000f8,0000f845 c8fb * * * * * c8fb
+18841 * * * * * * * 014b c58b,efa186 014b,f846 0000014b,0000f846 c8fc * * * * * c8fc
+18842 * * * * * * * 028a ca8a,efa187 028a,f847 0000028a,0000f847 c8fd * * * * * c8fd
+18843 * * * * * * * 026a c9aa,efa188 026a,f848 0000026a,0000f848 c8fe * * * * * c8fe
+18844 * * * * * * * f34a e28f9a,ef8d8a 23da,f34a 000023da,0000f34a 88a9 * * * * * 88a9
+18845 * * * * * * * f34b e28f9b,ef8d8b 23db,f34b 000023db,0000f34b 88aa * * * * * 88aa
+18846 * * * * * * * * e2ba9d,efa0aa 2e9d,f82a 00002e9d,0000f82a c8e0 * * * * * c8e0
+18847 * * * * * * * * e2bb86,efa0b3 2ec6,f833 00002ec6,0000f833 c8e9 * * * * * c8e9
+18848 * * * * * * * * e2bba3,efa0bb 2ee3,f83b 00002ee3,0000f83b c8f1 * * * * * c8f1
+18849 * * * * * * * * e580bb 503b 0000503b 8c40 * * * * * 8c40
+18850 * * * * * * * * e6b7be 6dfe 00006dfe 8c41 * * * * * 8c41
+18851 * * * * * * * * f0a9b1b3,ef95b9 d867dc73,f579 00029c73,0000f579 8c42 * * * * * 8c42
+18852 * * * * * * * * e9bea6,ef95ba 9fa6,f57a 00009fa6,0000f57a 8c43 * * * * * 8c43
+18853 * * * * * * * * e3b789,ef95bb 3dc9,f57b 00003dc9,0000f57b 8c44 * * * * * 8c44
+18854 * * * * * * * * e8a28f 888f 0000888f 8c45 * * * * * 8c45
+18855 * * * * * * * * ef95bd,f0a4858e d850dd4e,f57d 0000f57d,0002414e 8c46 * * * * * 8c46
+18856 * * * * * * * * e781b7 7077 00007077 8c47 * * * * * 8c47
+18857 * * * * * * * * e5b3b5 5cf5 00005cf5 8c48 * * * * * 8c48
+18858 * * * * * * * * e4aca0,ef9680 4b20,f580 00004b20,0000f580 8c49 * * * * * 8c49
+18859 * * * * * * * * f0a5878d,ef9681 d854ddcd,f581 000251cd,0000f581 8c4a * * * * * 8c4a
+18860 * * * * * * * * e39599,ef9682 3559,f582 00003559,0000f582 8c4b * * * * * 8c4b
+18861 * * * * * * * * f0a5b4b0,ef9683 d857dd30,f583 00025d30,0000f583 8c4c * * * * * 8c4c
+18862 * * * * * * * * e684a2 6122 00006122 8c4d * * * * * 8c4d
+18863 * * * * * * * * ef9685,f0a8a8b2 d862de32,f585 0000f585,00028a32 8c4e * * * * * 8c4e
+18864 * * * * * * * * e8bea7 8fa7 00008fa7 8c4f * * * * * 8c4f
+18865 * * * * * * * * e987b6 91f6 000091f6 8c50 * * * * * 8c50
+18866 * * * * * * * * e78691 7191 00007191 8c51 * * * * * 8c51
+18867 * * * * * * * * e69c99 6719 00006719 8c52 * * * * * 8c52
+18868 * * * * * * * * e78eba 73ba 000073ba 8c53 * * * * * 8c53
+18869 * * * * * * * * f0a38a81,ef968b d84cde81,f58b 00023281,0000f58b 8c54 * * * * * 8c54
+18870 * * * * * * * * f0aa8487,ef968c d868dd07,f58c 0002a107,0000f58c 8c55 * * * * * 8c55
+18871 * * * * * * * * e3b28b,ef968d 3c8b,f58d 00003c8b,0000f58d 8c56 * * * * * 8c56
+18872 * * * * * * * * f0a1a680,ef968e d846dd80,f58e 00021980,0000f58e 8c57 * * * * * 8c57
+18873 * * * * * * * * e4ac90,ef968f 4b10,f58f 00004b10,0000f58f 8c58 * * * * * 8c58
+18874 * * * * * * * * e7a3a4 78e4 000078e4 8c59 * * * * * 8c59
+18875 * * * * * * * * e79082 7402 00007402 8c5a * * * * * 8c5a
+18876 * * * * * * * * e586ae 51ae 000051ae 8c5b * * * * * 8c5b
+18877 * * * * * * * * f0a89c8f,ef9693 d861df0f,f593 0002870f,0000f593 8c5c * * * * * 8c5c
+18878 * * * * * * * * e48089,ef9694 4009,f594 00004009,0000f594 8c5d * * * * * 8c5d
+18879 * * * * * * * * e6a9a3 6a63 00006a63 8c5e * * * * * 8c5e
+18880 * * * * * * * * f0aa8aba,ef9696 d868deba,f596 0002a2ba,0000f596 8c5f * * * * * 8c5f
+18881 * * * * * * * * e488a3,ef9697 4223,f597 00004223,0000f597 8c60 * * * * * 8c60
+18882 * * * * * * * * e8988f 860f 0000860f 8c61 * * * * * 8c61
+18883 * * * * * * * * e7a8aa 7a2a 00007a2a 8c63 * * * * * 8c63
+18884 * * * * * * * * f0a9a587,ef969b d866dd47,f59b 00029947,0000f59b 8c64 * * * * * 8c64
+18885 * * * * * * * * f0a8abaa,ef969c d862deea,f59c 00028aea,0000f59c 8c65 * * * * * 8c65
+18886 * * * * * * * * e99d95 9755 00009755 8c66 * * * * * 8c66
+18887 * * * * * * * * e7818d 704d 0000704d 8c67 * * * * * 8c67
+18888 * * * * * * * * e58ca4 5324 00005324 8c68 * * * * * 8c68
+18889 * * * * * * * * ef96a0,f0a281be d848dc7e,f5a0 0000f5a0,0002207e 8c69 * * * * * 8c69
+18890 * * * * * * * * e98fb4 93f4 000093f4 8c6a * * * * * 8c6a
+18891 * * * * * * * * e79b99 76d9 000076d9 8c6b * * * * * 8c6b
+18892 * * * * * * * * f0a8a7a3,ef96a3 d862dde3,f5a3 000289e3,0000f5a3 8c6c * * * * * 8c6c
+18893 * * * * * * * * e9bea7,ef96a4 9fa7,f5a4 00009fa7,0000f5a4 8c6d * * * * * 8c6d
+18894 * * * * * * * * e79f9d 77dd 000077dd 8c6e * * * * * 8c6e
+18895 * * * * * * * * e4baa3 4ea3 00004ea3 8c6f * * * * * 8c6f
+18896 * * * * * * * * e4bfb0 4ff0 00004ff0 8c70 * * * * * 8c70
+18897 * * * * * * * * e582bc 50bc 000050bc 8c71 * * * * * 8c71
+18898 * * * * * * * * e4b8af 4e2f 00004e2f 8c72 * * * * * 8c72
+18899 * * * * * * * * e4bc97 4f17 00004f17 8c73 * * * * * 8c73
+18900 * * * * * * * * e9bea8,ef96ab 9fa8,f5ab 00009fa8,0000f5ab 8c74 * * * * * 8c74
+18901 * * * * * * * * e590b4 5434 00005434 8c75 * * * * * 8c75
+18902 * * * * * * * * e7b68b 7d8b 00007d8b 8c76 * * * * * 8c76
+18903 * * * * * * * * e5a292 5892 00005892 8c77 * * * * * 8c77
+18904 * * * * * * * * e5a390 58d0 000058d0 8c78 * * * * * 8c78
+18905 * * * * * * * * ef96b0,f0a1b6b6 d847ddb6,f5b0 0000f5b0,00021db6 8c79 * * * * * 8c79
+18906 * * * * * * * * e5ba92 5e92 00005e92 8c7a * * * * * 8c7a
+18907 * * * * * * * * e5ba99 5e99 00005e99 8c7b * * * * * 8c7b
+18908 * * * * * * * * e5bf82 5fc2 00005fc2 8c7c * * * * * 8c7c
+18909 * * * * * * * * ef96b4,f0a29c92 d849df12,f5b4 0000f5b4,00022712 8c7d * * * * * 8c7d
+18910 * * * * * * * * e6968b 658b 0000658b 8c7e * * * * * 8c7e
+18911 * * * * * * * * ef96b6,f0a38fb9 d84cdff9,f5b6 0000f5b6,000233f9 8ca1 * * * * * 8ca1
+18912 * * * * * * * * e6a499 6919 00006919 8ca2 * * * * * 8ca2
+18913 * * * * * * * * e6a983 6a43 00006a43 8ca3 * * * * * 8ca3
+18914 * * * * * * * * ef96b9,f0a3b1a3 d84fdc63,f5b9 0000f5b9,00023c63 8ca4 * * * * * 8ca4
+18915 * * * * * * * * e6b3bf 6cff 00006cff 8ca5 * * * * * 8ca5
+18916 * * * * * * * * e78880 7200 00007200 8ca7 * * * * * 8ca7
+18917 * * * * * * * * ef96bd,f0a49485 d851dd05,f5bd 0000f5bd,00024505 8ca8 * * * * * 8ca8
+18918 * * * * * * * * e78e8c 738c 0000738c 8ca9 * * * * * 8ca9
+18919 * * * * * * * * e3bb9b,ef96bf 3edb,f5bf 00003edb,0000f5bf 8caa * * * * * 8caa
+18920 * * * * * * * * ef9780,f0a4a893 d852de13,f5c0 00024a13,0000f5c0 8cab * * * * * 8cab
+18921 * * * * * * * * e5ac95 5b15 00005b15 8cac * * * * * 8cac
+18922 * * * * * * * * e792b9 74b9 000074b9 8cad * * * * * 8cad
+18923 * * * * * * * * e8ae83 8b83 00008b83 8cae * * * * * 8cae
+18924 * * * * * * * * f0a5b2a4,ef9784 d857dca4,f5c4 00025ca4,0000f5c4 8caf * * * * * 8caf
+18925 * * * * * * * * f0a59a95,ef9785 d855de95,f5c5 00025695,0000f5c5 8cb0 * * * * * 8cb0
+18926 * * * * * * * * e7aa93 7a93 00007a93 8cb1 * * * * * 8cb1
+18927 * * * * * * * * e7afac 7bec 00007bec 8cb2 * * * * * 8cb2
+18928 * * * * * * * * e7b383 7cc3 00007cc3 8cb3 * * * * * 8cb3
+18929 * * * * * * * * e7b9ac 7e6c 00007e6c 8cb4 * * * * * 8cb4
+18930 * * * * * * * * e88bb8 82f8 000082f8 8cb5 * * * * * 8cb5
+18931 * * * * * * * * e89697 8597 00008597 8cb6 * * * * * 8cb6
+18932 * * * * * * * * e9bea9,ef978c 9fa9,f5cc 00009fa9,0000f5cc 8cb7 * * * * * 8cb7
+18933 * * * * * * * * e8a290 8890 00008890 8cb8 * * * * * 8cb8
+18934 * * * * * * * * e9beaa,ef978e 9faa,f5ce 00009faa,0000f5ce 8cb9 * * * * * 8cb9
+18935 * * * * * * * * e8bab9 8eb9 00008eb9 8cba * * * * * 8cba
+18936 * * * * * * * * e9beab,ef9790 9fab,f5d0 00009fab,0000f5d0 8cbb * * * * * 8cbb
+18937 * * * * * * * * e8bf8f 8fcf 00008fcf 8cbc * * * * * 8cbc
+18938 * * * * * * * * e8959f 855f 0000855f 8cbd * * * * * 8cbd
+18939 * * * * * * * * e9a7a0 99e0 000099e0 8cbe * * * * * 8cbe
+18940 * * * * * * * * e988a1 9221 00009221 8cbf * * * * * 8cbf
+18941 * * * * * * * * e9beac,ef9795 9fac,f5d5 00009fac,0000f5d5 8cc0 * * * * * 8cc0
+18942 * * * * * * * * f0a8b6b9,ef9796 d863ddb9,f5d6 00028db9,0000f5d6 8cc1 * * * * * 8cc1
+18943 * * * * * * * * f0a190bf,ef9797 d845dc3f,f5d7 0002143f,0000f5d7 8cc2 * * * * * 8cc2
+18944 * * * * * * * * e481b1,ef9798 4071,f5d8 00004071,0000f5d8 8cc3 * * * * * 8cc3
+18945 * * * * * * * * e48aa2,ef9799 42a2,f5d9 000042a2,0000f5d9 8cc4 * * * * * 8cc4
+18946 * * * * * * * * e5a89a 5a1a 00005a1a 8cc5 * * * * * 8cc5
+18947 * * * * * * * * e9a1a8 9868 00009868 8cc9 * * * * * 8cc9
+18948 * * * * * * * * e69dab 676b 0000676b 8cca * * * * * 8cca
+18949 * * * * * * * * e489b6,ef97a0 4276,f5e0 00004276,0000f5e0 8ccb * * * * * 8ccb
+18950 * * * * * * * * e59cbd 573d 0000573d 8ccc * * * * * 8ccc
+18951 * * * * * * * * e89796 85d6 000085d6 8cce * * * * * 8cce
+18952 * * * * * * * * ef97a4,f0a4a5bb d852dd7b,f5e4 0000f5e4,0002497b 8ccf * * * * * 8ccf
+18953 * * * * * * * * e88abf 82bf 000082bf 8cd0 * * * * * 8cd0
+18954 * * * * * * * * f0a7848d,ef97a6 d85cdd0d,f5e6 0002710d,0000f5e6 8cd1 * * * * * 8cd1
+18955 * * * * * * * * e4b281,ef97a7 4c81,f5e7 00004c81,0000f5e7 8cd2 * * * * * 8cd2
+18956 * * * * * * * * f0a6b5b4,ef97a8 d85bdd74,f5e8 00026d74,0000f5e8 8cd3 * * * * * 8cd3
+18957 * * * * * * * * e5b5bb 5d7b 00005d7b 8cd4 * * * * * 8cd4
+18958 * * * * * * * * f0a6ac95,ef97aa d85adf15,f5ea 00026b15,0000f5ea 8cd5 * * * * * 8cd5
+18959 * * * * * * * * f0a6bebe,ef97ab d85bdfbe,f5eb 00026fbe,0000f5eb 8cd6 * * * * * 8cd6
+18960 * * * * * * * * e9bead,ef97ac 9fad,f5ec 00009fad,0000f5ec 8cd7 * * * * * 8cd7
+18961 * * * * * * * * e9beae,ef97ad 9fae,f5ed 00009fae,0000f5ed 8cd8 * * * * * 8cd8
+18962 * * * * * * * * e5ae96 5b96 00005b96 8cd9 * * * * * 8cd9
+18963 * * * * * * * * e9beaf,ef97af 9faf,f5ef 00009faf,0000f5ef 8cda * * * * * 8cda
+18964 * * * * * * * * e7b99b 7e5b 00007e5b 8cdc * * * * * 8cdc
+18965 * * * * * * * * e48fb0 43f0 000043f0 8740 * * * * * 8740
+18966 * * * * * * * * e4b0b2 4c32 00004c32 8741 * * * * * 8741
+18967 * * * * * * * * e49883 4603 00004603 8742 * * * * * 8742
+18968 * * * * * * * * e496a6 45a6 000045a6 8743 * * * * * 8743
+18969 * * * * * * * * e495b8 4578 00004578 8744 * * * * * 8744
+18970 * * * * * * * * f0a789a7 d85cde67 00027267 8745 * * * * * 8745
+18971 * * * * * * * * e4b5b7 4d77 00004d77 8746 * * * * * 8746
+18972 * * * * * * * * e496b3 45b3 000045b3 8747 * * * * * 8747
+18973 * * * * * * * * f0a7b2b1 d85fdcb1 00027cb1 8748 * * * * * 8748
+18974 * * * * * * * * e4b3a2 4ce2 00004ce2 8749 * * * * * 8749
+18975 * * * * * * * * f0a7b385 d85fdcc5 00027cc5 874a * * * * * 874a
+18976 * * * * * * * * e3ae95 3b95 00003b95 874b * * * * * 874b
+18977 * * * * * * * * e49cb6 4736 00004736 874c * * * * * 874c
+18978 * * * * * * * * e49d84 4744 00004744 874d * * * * * 874d
+18979 * * * * * * * * e4b187 4c47 00004c47 874e * * * * * 874e
+18980 * * * * * * * * e4b180 4c40 00004c40 874f * * * * * 874f
+18981 * * * * * * * * f0a48abf d850debf 000242bf 8750 * * * * * 8750
+18982 * * * * * * * * f0a39897 d84dde17 00023617 8751 * * * * * 8751
+18983 * * * * * * * * f0a78d92 d85cdf52 00027352 8752 * * * * * 8752
+18984 * * * * * * * * f0a6ba8b d85bde8b 00026e8b 8753 * * * * * 8753
+18985 * * * * * * * * f0a78392 d85cdcd2 000270d2 8754 * * * * * 8754
+18986 * * * * * * * * e4b197 4c57 00004c57 8755 * * * * * 8755
+18987 * * * * * * * * f0aa8d91 d868df51 0002a351 8756 * * * * * 8756
+18988 * * * * * * * * e49d8f 474f 0000474f 8757 * * * * * 8757
+18989 * * * * * * * * e4979a 45da 000045da 8758 * * * * * 8758
+18990 * * * * * * * * e4b285 4c85 00004c85 8759 * * * * * 8759
+18991 * * * * * * * * f0a7b1ac d85fdc6c 00027c6c 875a * * * * * 875a
+18992 * * * * * * * * e4b487 4d07 00004d07 875b * * * * * 875b
+18993 * * * * * * * * e4aaa4 4aa4 00004aa4 875c * * * * * 875c
+18994 * * * * * * * * e49aa1 46a1 000046a1 875d * * * * * 875d
+18995 * * * * * * * * f0a6aca3 d85adf23 00026b23 875e * * * * * 875e
+18996 * * * * * * * * e788a5 7225 00007225 875f * * * * * 875f
+18997 * * * * * * * * f0a5a994 d856de54 00025a54 8760 * * * * * 8760
+18998 * * * * * * * * f0a1a9a3 d846de63 00021a63 8761 * * * * * 8761
+18999 * * * * * * * * f0a3b886 d84fde06 00023e06 8762 * * * * * 8762
+19000 * * * * * * * * f0a3bda1 d84fdf61 00023f61 8763 * * * * * 8763
+19001 * * * * * * * * e6998d 664d 0000664d 8764 * * * * * 8764
+19002 * * * * * * * * e59bbb 56fb 000056fb 8765 * * * * * 8765
+19003 * * * * * * * * e7b695 7d95 00007d95 8767 * * * * * 8767
+19004 * * * * * * * * e5a49d 591d 0000591d 8768 * * * * * 8768
+19005 * * * * * * * * f0a8aeb9 d862dfb9 00028bb9 8769 * * * * * 8769
+19006 * * * * * * * * e3b7b4 3df4 00003df4 876a * * * * * 876a
+19007 * * * * * * * * e99cb4 9734 00009734 876b * * * * * 876b
+19008 * * * * * * * * f0a7afaf d85edfef 00027bef 876c * * * * * 876c
+19009 * * * * * * * * e5af9b 5bdb 00005bdb 876d * * * * * 876d
+19010 * * * * * * * * f0a1b59e d847dd5e 00021d5e 876e * * * * * 876e
+19011 * * * * * * * * e5aaa4 5aa4 00005aa4 876f * * * * * 876f
+19012 * * * * * * * * e398a5 3625 00003625 8770 * * * * * 8770
+19013 * * * * * * * * f0a9bab0 d867deb0 00029eb0 8771 * * * * * 8771
+19014 * * * * * * * * e5ab91 5ad1 00005ad1 8772 * * * * * 8772
+19015 * * * * * * * * e5aeb7 5bb7 00005bb7 8773 * * * * * 8773
+19016 * * * * * * * * e5b3bc 5cfc 00005cfc 8774 * * * * * 8774
+19017 * * * * * * * * e69dae 676e 0000676e 8775 * * * * * 8775
+19018 * * * * * * * * e89693 8593 00008593 8776 * * * * * 8776
+19019 * * * * * * * * f0a9a585 d866dd45 00029945 8777 * * * * * 8777
+19020 * * * * * * * * e791a1 7461 00007461 8778 * * * * * 8778
+19021 * * * * * * * * e7929d 749d 0000749d 8779 * * * * * 8779
+19022 * * * * * * * * f0a0a9af d842de6f 00020a6f 8c62 * * * * * 8c62
+19023 * * * * * * * * e69ba7 66e7 000066e7 8cdb * * * * * 8cdb
+19024 * * * * * * * * e6b997 6e57 00006e57 8cdd * * * * * 8cdd
+19025 * * * * * * * * e7a78a 79ca 000079ca 8cde * * * * * 8cde
+19026 * * * * * * * * e3b688 3d88 00003d88 8cdf * * * * * 8cdf
+19027 * * * * * * * * e49383 44c3 000044c3 8ce0 * * * * * 8ce0
+19028 * * * * * * * * f0a38996 d84cde56 00023256 8ce1 * * * * * 8ce1
+19029 * * * * * * * * f0a29e96 d849df96 00022796 8ce2 * * * * * 8ce2
+19030 * * * * * * * * e48e9a 439a 0000439a 8ce3 * * * * * 8ce3
+19031 * * * * * * * * e494b6 4536 00004536 8ce4 * * * * * 8ce4
+19032 * * * * * * * * e5b395 5cd5 00005cd5 8ce6 * * * * * 8ce6
+19033 * * * * * * * * f0a3ac9a d84edf1a 00023b1a 8ce7 * * * * * 8ce7
+19034 * * * * * * * * e8abb9 8af9 00008af9 8ce8 * * * * * 8ce8
+19035 * * * * * * * * e5b1b8 5c78 00005c78 8ce9 * * * * * 8ce9
+19036 * * * * * * * * e3b492 3d12 00003d12 8cea * * * * * 8cea
+19037 * * * * * * * * f0a39591 d84ddd51 00023551 8ceb * * * * * 8ceb
+19038 * * * * * * * * e5b5b8 5d78 00005d78 8cec * * * * * 8cec
+19039 * * * * * * * * e9beb2 9fb2 00009fb2 8ced * * * * * 8ced
+19040 * * * * * * * * e78597 7157 00007157 8cee * * * * * 8cee
+19041 * * * * * * * * e49598 4558 00004558 8cef * * * * * 8cef
+19042 * * * * * * * * f0a483ac d850dcec 000240ec 8cf0 * * * * * 8cf0
+19043 * * * * * * * * f0a1b8a3 d847de23 00021e23 8cf1 * * * * * 8cf1
+19044 * * * * * * * * e4b1b7 4c77 00004c77 8cf2 * * * * * 8cf2
+19045 * * * * * * * * e3a5b8 3978 00003978 8cf3 * * * * * 8cf3
+19046 * * * * * * * * e3918a 344a 0000344a 8cf4 * * * * * 8cf4
+19047 * * * * * * * * f0a086a4 d840dda4 000201a4 8cf5 * * * * * 8cf5
+19048 * * * * * * * * f0a6b181 d85bdc41 00026c41 8cf6 * * * * * 8cf6
+19049 * * * * * * * * e8ab8c 8acc 00008acc 8cf7 * * * * * 8cf7
+19050 * * * * * * * * e4beb4 4fb4 00004fb4 8cf8 * * * * * 8cf8
+19051 * * * * * * * * f0a088b9 d840de39 00020239 8cf9 * * * * * 8cf9
+19052 * * * * * * * * e5a6bf 59bf 000059bf 8cfa * * * * * 8cfa
+19053 * * * * * * * * e885ac 816c 0000816c 8cfb * * * * * 8cfb
+19054 * * * * * * * * e9a196 9856 00009856 8cfc * * * * * 8cfc
+19055 * * * * * * * * f0a9a3ba d866dcfa 000298fa 8cfd * * * * * 8cfd
+19056 * * * * * * * * e5bcbb 5f3b 00005f3b 8cfe * * * * * 8cfe
+19057 * * * * * * * * f0a0ae9f d842df9f 00020b9f 8d40 * * * * * 8d40
+19058 * * * * * * * * f0a28781 d848ddc1 000221c1 8d42 * * * * * 8d42
+19059 * * * * * * * * f0a8a5ad d862dd6d 0002896d 8d43 * * * * * 8d43
+19060 * * * * * * * * e48482 4102 00004102 8d44 * * * * * 8d44
+19061 * * * * * * * * e49abb 46bb 000046bb 8d45 * * * * * 8d45
+19062 * * * * * * * * f0a981b9 d864dc79 00029079 8d46 * * * * * 8d46
+19063 * * * * * * * * e3bc87 3f07 00003f07 8d47 * * * * * 8d47
+19064 * * * * * * * * e9beb3 9fb3 00009fb3 8d48 * * * * * 8d48
+19065 * * * * * * * * f0aa86b5 d868ddb5 0002a1b5 8d49 * * * * * 8d49
+19066 * * * * * * * * e483b8 40f8 000040f8 8d4a * * * * * 8d4a
+19067 * * * * * * * * e39f96 37d6 000037d6 8d4b * * * * * 8d4b
+19068 * * * * * * * * e49bb7 46f7 000046f7 8d4c * * * * * 8d4c
+19069 * * * * * * * * f0a6b186 d85bdc46 00026c46 8d4d * * * * * 8d4d
+19070 * * * * * * * * e485bc 417c 0000417c 8d4e * * * * * 8d4e
+19071 * * * * * * * * f0a89ab2 d861deb2 000286b2 8d4f * * * * * 8d4f
+19072 * * * * * * * * f0a78fbf d85cdfff 000273ff 8d50 * * * * * 8d50
+19073 * * * * * * * * e495ad 456d 0000456d 8d51 * * * * * 8d51
+19074 * * * * * * * * e3a394 38d4 000038d4 8d52 * * * * * 8d52
+19075 * * * * * * * * f0a5929a d855dc9a 0002549a 8d53 * * * * * 8d53
+19076 * * * * * * * * e495a1 4561 00004561 8d54 * * * * * 8d54
+19077 * * * * * * * * e4949b 451b 0000451b 8d55 * * * * * 8d55
+19078 * * * * * * * * e4b689 4d89 00004d89 8d56 * * * * * 8d56
+19079 * * * * * * * * e4b1bb 4c7b 00004c7b 8d57 * * * * * 8d57
+19080 * * * * * * * * e4b5b6 4d76 00004d76 8d58 * * * * * 8d58
+19081 * * * * * * * * e497aa 45ea 000045ea 8d59 * * * * * 8d59
+19082 * * * * * * * * e3bf88 3fc8 00003fc8 8d5a * * * * * 8d5a
+19083 * * * * * * * * f0a4ac8f d852df0f 00024b0f 8d5b * * * * * 8d5b
+19084 * * * * * * * * e399a1 3661 00003661 8d5c * * * * * 8d5c
+19085 * * * * * * * * e4939e 44de 000044de 8d5d * * * * * 8d5d
+19086 * * * * * * * * e492bd 44bd 000044bd 8d5e * * * * * 8d5e
+19087 * * * * * * * * e487ad 41ed 000041ed 8d5f * * * * * 8d5f
+19088 * * * * * * * * e3a1b5 3875 00003875 877a * * * * * 877a
+19089 * * * * * * * * f0a1b593 d847dd53 00021d53 877b * * * * * 877b
+19090 * * * * * * * * f0a39a9e d84dde9e 0002369e 877c * * * * * 877c
+19091 * * * * * * * * f0a680a1 d858dc21 00026021 877d * * * * * 877d
+19092 * * * * * * * * e3bbac 3eec 00003eec 877e * * * * * 877e
+19093 * * * * * * * * f0a5a39e d856dcde 000258de 87a1 * * * * * 87a1
+19094 * * * * * * * * e3abb5 3af5 00003af5 87a2 * * * * * 87a2
+19095 * * * * * * * * e7abbc 7afc 00007afc 87a3 * * * * * 87a3
+19096 * * * * * * * * e9be97 9f97 00009f97 87a4 * * * * * 87a4
+19097 * * * * * * * * f0a485a1 d850dd61 00024161 87a5 * * * * * 87a5
+19098 * * * * * * * * f0a8a48d d862dd0d 0002890d 87a6 * * * * * 87a6
+19099 * * * * * * * * f0a387aa d84cddea 000231ea 87a7 * * * * * 87a7
+19100 * * * * * * * * f0a0aa8a d842de8a 00020a8a 87a8 * * * * * 87a8
+19101 * * * * * * * * f0a3899e d84cde5e 0002325e 87a9 * * * * * 87a9
+19102 * * * * * * * * e48c8a 430a 0000430a 87aa * * * * * 87aa
+19103 * * * * * * * * e89284 8484 00008484 87ab * * * * * 87ab
+19104 * * * * * * * * e9be96 9f96 00009f96 87ac * * * * * 87ac
+19105 * * * * * * * * e990af 942f 0000942f 87ad * * * * * 87ad
+19106 * * * * * * * * e4a4b0 4930 00004930 87ae * * * * * 87ae
+19107 * * * * * * * * e89893 8613 00008613 87af * * * * * 87af
+19108 * * * * * * * * e5a296 5896 00005896 87b0 * * * * * 87b0
+19109 * * * * * * * * e99d8a 974a 0000974a 87b1 * * * * * 87b1
+19110 * * * * * * * * e98898 9218 00009218 87b2 * * * * * 87b2
+19111 * * * * * * * * e7a790 79d0 000079d0 87b3 * * * * * 87b3
+19112 * * * * * * * * e7a8b2 7a32 00007a32 87b4 * * * * * 87b4
+19113 * * * * * * * * e699a0 6660 00006660 87b5 * * * * * 87b5
+19114 * * * * * * * * e6a8a9 6a29 00006a29 87b6 * * * * * 87b6
+19115 * * * * * * * * e8a29d 889d 0000889d 87b7 * * * * * 87b7
+19116 * * * * * * * * e7918c 744c 0000744c 87b8 * * * * * 87b8
+19117 * * * * * * * * e7af85 7bc5 00007bc5 87b9 * * * * * 87b9
+19118 * * * * * * * * e69e82 6782 00006782 87ba * * * * * 87ba
+19119 * * * * * * * * e7a8ac 7a2c 00007a2c 87bb * * * * * 87bb
+19120 * * * * * * * * e5898f 524f 0000524f 87bc * * * * * 87bc
+19121 * * * * * * * * e98186 9046 00009046 87bd * * * * * 87bd
+19122 * * * * * * * * e393a6 34e6 000034e6 87be * * * * * 87be
+19123 * * * * * * * * e78f84 73c4 000073c4 87bf * * * * * 87bf
+19124 * * * * * * * * f0a5b6b9 d857ddb9 00025db9 87c0 * * * * * 87c0
+19125 * * * * * * * * e79386 74c6 000074c6 87c1 * * * * * 87c1
+19126 * * * * * * * * e9bf87 9fc7 00009fc7 87c2 * * * * * 87c2
+19127 * * * * * * * * e59eb3 57b3 000057b3 87c3 * * * * * 87c3
+19128 * * * * * * * * e4a4af 492f 0000492f 87c4 * * * * * 87c4
+19129 * * * * * * * * e5918c 544c 0000544c 87c5 * * * * * 87c5
+19130 * * * * * * * * e484b1 4131 00004131 87c6 * * * * * 87c6
+19131 * * * * * * * * f0a39a8e d84dde8e 0002368e 87c7 * * * * * 87c7
+19132 * * * * * * * * e5a098 5818 00005818 87c8 * * * * * 87c8
+19133 * * * * * * * * e7a9b2 7a72 00007a72 87c9 * * * * * 87c9
+19134 * * * * * * * * f0a7ada5 d85edf65 00027b65 87ca * * * * * 87ca
+19135 * * * * * * * * e8ae8f 8b8f 00008b8f 87cb * * * * * 87cb
+19136 * * * * * * * * e49aae 46ae 000046ae 87cc * * * * * 87cc
+19137 * * * * * * * * f0a6ba88 d85bde88 00026e88 87cd * * * * * 87cd
+19138 * * * * * * * * e48681 4181 00004181 87ce * * * * * 87ce
+19139 * * * * * * * * f0a5b699 d857dd99 00025d99 87cf * * * * * 87cf
+19140 * * * * * * * * e7aeae 7bae 00007bae 87d0 * * * * * 87d0
+19141 * * * * * * * * f0a292bc d849dcbc 000224bc 87d1 * * * * * 87d1
+19142 * * * * * * * * e9bf88 9fc8 00009fc8 87d2 * * * * * 87d2
+19143 * * * * * * * * f0a29381 d849dcc1 000224c1 87d3 * * * * * 87d3
+19144 * * * * * * * * f0a29389 d849dcc9 000224c9 87d4 * * * * * 87d4
+19145 * * * * * * * * f0a2938c d849dccc 000224cc 87d5 * * * * * 87d5
+19146 * * * * * * * * e9bf89 9fc9 00009fc9 87d6 * * * * * 87d6
+19147 * * * * * * * * e89484 8504 00008504 87d7 * * * * * 87d7
+19148 * * * * * * * * f0a396bb d84dddbb 000235bb 87d8 * * * * * 87d8
+19149 * * * * * * * * e482b4 40b4 000040b4 87d9 * * * * * 87d9
+19150 * * * * * * * * e9bf8a 9fca 00009fca 87da * * * * * 87da
+19151 * * * * * * * * e493a1 44e1 000044e1 87db * * * * * 87db
+19152 * * * * * * * * f0aab7bf d86bddff 0002adff 87dc * * * * * 87dc
+19153 * * * * * * * * e68b81 62c1 000062c1 87dd * * * * * 87dd
+19154 * * * * * * * * e781ae 706e 0000706e 87de * * * * * 87de
+19155 * * * * * * * * e9bf8b 9fcb 00009fcb 87df * * * * * 87df
+19156 * * * * * * * * e58591 5151 00005151 * * * * * * *
+19157 * * * * * * * * e590bf 543f 0000543f * * * * * * *
+19158 * * * * * * * * e5aaaa 5aaa 00005aaa * * * * * * *
+19159 * * * * * * * * e682a6 60a6 000060a6 * * * * * * *
+19160 * * * * * * * * e684a0 6120 00006120 * * * * * * *
+19161 * * * * * * * * e68d9d 635d 0000635d * * * * * * *
+19162 * * * * * * * * e6959a 655a 0000655a * * * * * * *
+19163 * * * * * * * * e6a381 68c1 000068c1 * * * * * * *
+19164 * * * * * * * * e6b0b2 6c32 00006c32 * * * * * * *
+19165 * * * * * * * * e6b69a 6d9a 00006d9a * * * * * * *
+19166 * * * * * * * * e785b4 7174 00007174 * * * * * * *
+19167 * * * * * * * * e7a88e 7a0e 00007a0e * * * * * * *
+19168 * * * * * * * * e7b7bc 7dfc 00007dfc * * * * * * *
+19169 * * * * * * * * e884b1 8131 00008131 * * * * * * *
+19170 * * * * * * * * e885bd 817d 0000817d * * * * * * *
+19171 * * * * * * * * e897b4 85f4 000085f4 * * * * * * *
+19172 * * * * * * * * e89c95 8715 00008715 * * * * * * *
+19173 * * * * * * * * e8aaac 8aac 00008aac * * * * * * *
+19174 * * * * * * * * e8bcbc 8f3c 00008f3c * * * * * * *
+19175 * * * * * * * * e98696 9196 00009196 * * * * * * *
+19176 * * * * * * * * e98bad 92ed 000092ed * * * * * * *
+19177 * * * * * * * * e996b2 95b2 000095b2 * * * * * * *
+19178 * * * * * * * * e9b187 9c47 00009c47 * * * * * * *
+# EOF
diff --git a/libs/anr/examples/res/cid2codesmall.txt b/libs/anr/examples/res/cid2codesmall.txt
new file mode 100644
index 0000000..2dd40b9
--- /dev/null
+++ b/libs/anr/examples/res/cid2codesmall.txt
@@ -0,0 +1,6835 @@
+# cid2code.txt (Version 10/24/2017)
+#
+# The data in this table contains nineteen tab-delimited columns of
+# information. The contents of this file supplement "The Adobe-CNS1-7
+# Character Collection" (formerly Adobe Tech Note #5080):
+#
+# https://github.com/adobe-type-tools/Adobe-CNS1/
+#
+# This table contains lists CIDs 0 through 19178 in the first column,
+# and provides additional columns that indicate whether a CID is used
+# in a particular CMap file, and if so, provides the encoded value.
+# Here are some common aspects of the data that you will find in this
+# table:
+#
+# o All character codes are provided in hexadecimal notation.
+#
+# o Many of the CMap files indicated at the head of each column have
+# both "-H" (horizontal writing mode) and "-V" (vertical writing
+# mode) versions. Those with only a "-H" version are explicitly
+# shown with the "-H" appended. Those with both do not have a
+# writing mode suffix.
+#
+# o The character codes found in a corresponding "-V" (vertical
+# writing mode) CMap file are indicated by a "v" appended to the
+# hexadecimal code.
+#
+# o There may be cases of single CIDs being referenced in multiple
+# encoding points within a single CMap file. These cases are
+# comma-delimited, within the same column.
+#
+# The following is a synopsis of columns 2 through 19, and provides
+# information about character set and encoding:
+#
+# o Column 2: Character codes for the "B5-H" and "B5-V" CMaps (Big
+# Five character set, Big Five encoding, half-width Latin
+# characters).
+#
+# o Column 3: Character codes for the "B5pc-H" and "B5pc-V" CMaps
+# (MacOS-T character set, Big Five encoding, proportional Latin
+# characters).
+#
+# o Column 4: Character codes for the "ETen-B5-H" and "ETen-B5-V"
+# CMaps (Big Five character set with ETen extensions, Big Five
+# encoding, half-width Latin characters).
+#
+# o Column 5: Character codes for the "ETenms-B5-H" and
+# "ETenms-B5-V" CMaps (Big Five character set with ETen extensions,
+# Big Five encoding, proportional Latin characters).
+#
+# o Column 6: Character codes for the "CNS1-H" and "CNS1-V" CMaps
+# (CNS 11643-1992 character set, Plane 1, ISO-2022-CN encoding).
+#
+# o Column 7: Character codes for the "CNS2-H" and "CNS2-V" CMaps
+# (CNS 11643-1992 character set, Plane 2, ISO-2022-CN encoding).
+#
+# o Column 8: Character codes for the "CNS-EUC-H" and "CNS-EUC-V"
+# CMaps (CNS 11643-1992 character set, Planes 1 and 2, EUC-TW
+# encoding, half-width Latin characters).
+#
+# o Column 9: Character codes for the "UniCNS-UCS2-H" and
+# "UniCNS-UCS2-V" CMaps (Unicode UCS-2 encoding, proportional
+# Latin characters).
+# (NOTE: These two CMap files are no longer being maintained. The
+# use of the UTF-8, UTF-16, and UTF-32 CMap files is recommended.)
+#
+# o Column 10: Character codes for the "UniCNS-UTF8-H" and
+# "UniCNS-UTF8-V" CMaps (Unicode 10.0 UTF-8 encoding, proportional Latin
+# characters).
+#
+# o Column 11: Character codes for the "UniCNS-UTF16-H" and
+# "UniCNS-UTF16-V" CMaps (Unicode 10.0 UTF-16 encoding, proportional
+# Latin characters).
+#
+# o Column 12: Character codes for the "UniCNS-UTF32-H" and
+# "UniCNS-UTF32-V" CMaps (Unicode 10.0 UTF-32 encoding, proportional
+# Latin characters).
+#
+# o Column 13: Character codes for the "ETHK-B5-H" and "ETHK-B5-V"
+# CMaps (Big Five character set with the ETen and Hong Kong SCS
+# extensions, Big Five encoding, proportional Latin characters).
+#
+# o Column 14: Character codes for the "HKdla-B5-H" and "HKdla-B5-V"
+# CMaps (Big Five character set with Dynalab's Hong Kong Extension
+# A with 784 Hong Kong hanzi, Big Five encoding, proportional Latin
+# characters).
+#
+# o Column 15: Character codes for the "HKdlb-B5-H" and "HKdlb-B5-V"
+# CMaps (Big Five character set with Dynalab's Hong Kong Extension
+# B with 665 Hong Kong hanzi, Big Five encoding, proportional Latin
+# characters).
+#
+# o Column 16: Character codes for the "HKgccs-B5-H" and "HKgccs-B5-V"
+# CMaps (Big Five character set with Hong Kong's GCCS extension, Big
+# Five encoding, proportional Latin characters).
+#
+# o Column 17: Character codes for the "HKm314-B5-H" and "HKm314-B5-V"
+# CMaps (Big Five character set with Monotype's Hong Kong extension
+# containing 314 Hong Kong hanzi, Big Five encoding, proportional
+# Latin characters).
+#
+# o Column 18: Character codes for the "HKm471-B5-H" and "HKm471-B5-V"
+# CMaps (Big Five character set with Monotype's Hong Kong extension
+# containing 471 Hong Kong hanzi, Big Five encoding, proportional
+# Latin characters).
+#
+# o Column 19: Character codes for the "HKscs-B5-H" and "HKscs-B5-V"
+# CMaps (Big Five character set with Hong Kong's SCS extension,
+# Big Five encoding, proportional Latin characters).
+#
+CID B5 B5pc ETen-B5 ETenms-B5 CNS1 CNS2 CNS-EUC UniCNS-UCS2 UniCNS-UTF8 UniCNS-UTF16 UniCNS-UTF32 ETHK-B5 HKdla-B5 HKdlb-B5 HKgccs-B5 HKm314-B5 HKm471-B5 HKscs-B5
+0 * * * * * * * * * * * * * * * * * *
+1 * 20 * 20 * * * 0020 c2a0,20 00a0,0020 000000a0,00000020 20 20 20 20 20 20 20
+2 * 21 * 21 * * * 0021 21 0021 00000021 21 21 21 21 21 21 21
+3 * 22 * 22 * * * 0022 22 0022 00000022 22 22 22 22 22 22 22
+4 * 23 * 23 * * * 0023 23 0023 00000023 23 23 23 23 23 23 23
+5 * 24 * 24 * * * 0024 24 0024 00000024 24 24 24 24 24 24 24
+6 * 25 * 25 * * * 0025 25 0025 00000025 25 25 25 25 25 25 25
+7 * 26 * 26 * * * 0026 26 0026 00000026 26 26 26 26 26 26 26
+8 * 27 * 27 * * * 0027 27 0027 00000027 27 27 27 27 27 27 27
+9 * 28 * 28 * * * 0028 28 0028 00000028 28 28 28 28 28 28 28
+10 * 29 * 29 * * * 0029 29 0029 00000029 29 29 29 29 29 29 29
+11 * 2a * 2a * * * 002a 2a 002a 0000002a 2a 2a 2a 2a 2a 2a 2a
+12 * 2b * 2b * * * 002b 2b 002b 0000002b 2b 2b 2b 2b 2b 2b 2b
+13 * 2c * 2c * * * 002c 2c 002c 0000002c 2c 2c 2c 2c 2c 2c 2c
+14 * 2d * 2d * * * 002d 2d 002d 0000002d 2d 2d 2d 2d 2d 2d 2d
+15 * 2e * 2e * * * 002e 2e 002e 0000002e 2e 2e 2e 2e 2e 2e 2e
+16 * 2f * 2f * * * 002f 2f 002f 0000002f 2f 2f 2f 2f 2f 2f 2f
+17 * 30 * 30 * * * 0030 30 0030 00000030 30 30 30 30 30 30 30
+18 * 31 * 31 * * * 0031 31 0031 00000031 31 31 31 31 31 31 31
+19 * 32 * 32 * * * 0032 32 0032 00000032 32 32 32 32 32 32 32
+20 * 33 * 33 * * * 0033 33 0033 00000033 33 33 33 33 33 33 33
+21 * 34 * 34 * * * 0034 34 0034 00000034 34 34 34 34 34 34 34
+22 * 35 * 35 * * * 0035 35 0035 00000035 35 35 35 35 35 35 35
+23 * 36 * 36 * * * 0036 36 0036 00000036 36 36 36 36 36 36 36
+24 * 37 * 37 * * * 0037 37 0037 00000037 37 37 37 37 37 37 37
+25 * 38 * 38 * * * 0038 38 0038 00000038 38 38 38 38 38 38 38
+26 * 39 * 39 * * * 0039 39 0039 00000039 39 39 39 39 39 39 39
+27 * 3a * 3a * * * 003a 3a 003a 0000003a 3a 3a 3a 3a 3a 3a 3a
+28 * 3b * 3b * * * 003b 3b 003b 0000003b 3b 3b 3b 3b 3b 3b 3b
+29 * 3c * 3c * * * 003c 3c 003c 0000003c 3c 3c 3c 3c 3c 3c 3c
+30 * 3d * 3d * * * 003d 3d 003d 0000003d 3d 3d 3d 3d 3d 3d 3d
+31 * 3e * 3e * * * 003e 3e 003e 0000003e 3e 3e 3e 3e 3e 3e 3e
+32 * 3f * 3f * * * 003f 3f 003f 0000003f 3f 3f 3f 3f 3f 3f 3f
+33 * 40 * 40 * * * 0040 40 0040 00000040 40 40 40 40 40 40 40
+34 * 41 * 41 * * * 0041 41 0041 00000041 41 41 41 41 41 41 41
+35 * 42 * 42 * * * 0042 42 0042 00000042 42 42 42 42 42 42 42
+36 * 43 * 43 * * * 0043 43 0043 00000043 43 43 43 43 43 43 43
+37 * 44 * 44 * * * 0044 44 0044 00000044 44 44 44 44 44 44 44
+38 * 45 * 45 * * * 0045 45 0045 00000045 45 45 45 45 45 45 45
+39 * 46 * 46 * * * 0046 46 0046 00000046 46 46 46 46 46 46 46
+40 * 47 * 47 * * * 0047 47 0047 00000047 47 47 47 47 47 47 47
+41 * 48 * 48 * * * 0048 48 0048 00000048 48 48 48 48 48 48 48
+42 * 49 * 49 * * * 0049 49 0049 00000049 49 49 49 49 49 49 49
+43 * 4a * 4a * * * 004a 4a 004a 0000004a 4a 4a 4a 4a 4a 4a 4a
+44 * 4b * 4b * * * 004b 4b 004b 0000004b 4b 4b 4b 4b 4b 4b 4b
+45 * 4c * 4c * * * 004c 4c 004c 0000004c 4c 4c 4c 4c 4c 4c 4c
+46 * 4d * 4d * * * 004d 4d 004d 0000004d 4d 4d 4d 4d 4d 4d 4d
+47 * 4e * 4e * * * 004e 4e 004e 0000004e 4e 4e 4e 4e 4e 4e 4e
+48 * 4f * 4f * * * 004f 4f 004f 0000004f 4f 4f 4f 4f 4f 4f 4f
+49 * 50 * 50 * * * 0050 50 0050 00000050 50 50 50 50 50 50 50
+50 * 51 * 51 * * * 0051 51 0051 00000051 51 51 51 51 51 51 51
+51 * 52 * 52 * * * 0052 52 0052 00000052 52 52 52 52 52 52 52
+52 * 53 * 53 * * * 0053 53 0053 00000053 53 53 53 53 53 53 53
+53 * 54 * 54 * * * 0054 54 0054 00000054 54 54 54 54 54 54 54
+54 * 55 * 55 * * * 0055 55 0055 00000055 55 55 55 55 55 55 55
+55 * 56 * 56 * * * 0056 56 0056 00000056 56 56 56 56 56 56 56
+56 * 57 * 57 * * * 0057 57 0057 00000057 57 57 57 57 57 57 57
+57 * 58 * 58 * * * 0058 58 0058 00000058 58 58 58 58 58 58 58
+58 * 59 * 59 * * * 0059 59 0059 00000059 59 59 59 59 59 59 59
+59 * 5a * 5a * * * 005a 5a 005a 0000005a 5a 5a 5a 5a 5a 5a 5a
+60 * 5b * 5b * * * 005b 5b 005b 0000005b 5b 5b 5b 5b 5b 5b 5b
+61 * 5c,80 * 5c * * * 005c 5c 005c 0000005c 5c 5c 5c 5c 5c 5c 5c
+62 * 5d * 5d * * * 005d 5d 005d 0000005d 5d 5d 5d 5d 5d 5d 5d
+63 * 5e * 5e * * * 005e 5e 005e 0000005e 5e 5e 5e 5e 5e 5e 5e
+64 * 5f * 5f * * * 005f 5f 005f 0000005f 5f 5f 5f 5f 5f 5f 5f
+65 * 60 * 60 * * * 0060 60 0060 00000060 60 60 60 60 60 60 60
+66 * 61 * 61 * * * 0061 61 0061 00000061 61 61 61 61 61 61 61
+67 * 62 * 62 * * * 0062 62 0062 00000062 62 62 62 62 62 62 62
+68 * 63 * 63 * * * 0063 63 0063 00000063 63 63 63 63 63 63 63
+69 * 64 * 64 * * * 0064 64 0064 00000064 64 64 64 64 64 64 64
+70 * 65 * 65 * * * 0065 65 0065 00000065 65 65 65 65 65 65 65
+71 * 66 * 66 * * * 0066 66 0066 00000066 66 66 66 66 66 66 66
+72 * 67 * 67 * * * 0067 67 0067 00000067 67 67 67 67 67 67 67
+73 * 68 * 68 * * * 0068 68 0068 00000068 68 68 68 68 68 68 68
+74 * 69 * 69 * * * 0069 69 0069 00000069 69 69 69 69 69 69 69
+75 * 6a * 6a * * * 006a 6a 006a 0000006a 6a 6a 6a 6a 6a 6a 6a
+76 * 6b * 6b * * * 006b 6b 006b 0000006b 6b 6b 6b 6b 6b 6b 6b
+77 * 6c * 6c * * * 006c 6c 006c 0000006c 6c 6c 6c 6c 6c 6c 6c
+78 * 6d * 6d * * * 006d 6d 006d 0000006d 6d 6d 6d 6d 6d 6d 6d
+79 * 6e * 6e * * * 006e 6e 006e 0000006e 6e 6e 6e 6e 6e 6e 6e
+80 * 6f * 6f * * * 006f 6f 006f 0000006f 6f 6f 6f 6f 6f 6f 6f
+81 * 70 * 70 * * * 0070 70 0070 00000070 70 70 70 70 70 70 70
+82 * 71 * 71 * * * 0071 71 0071 00000071 71 71 71 71 71 71 71
+83 * 72 * 72 * * * 0072 72 0072 00000072 72 72 72 72 72 72 72
+84 * 73 * 73 * * * 0073 73 0073 00000073 73 73 73 73 73 73 73
+85 * 74 * 74 * * * 0074 74 0074 00000074 74 74 74 74 74 74 74
+86 * 75 * 75 * * * 0075 75 0075 00000075 75 75 75 75 75 75 75
+87 * 76 * 76 * * * 0076 76 0076 00000076 76 76 76 76 76 76 76
+88 * 77 * 77 * * * 0077 77 0077 00000077 77 77 77 77 77 77 77
+89 * 78 * 78 * * * 0078 78 0078 00000078 78 78 78 78 78 78 78
+90 * 79 * 79 * * * 0079 79 0079 00000079 79 79 79 79 79 79 79
+91 * 7a * 7a * * * 007a 7a 007a 0000007a 7a 7a 7a 7a 7a 7a 7a
+92 * 7b * 7b * * * 007b 7b 007b 0000007b 7b 7b 7b 7b 7b 7b 7b
+93 * 7c * 7c * * * 007c 7c 007c 0000007c 7c 7c 7c 7c 7c 7c 7c
+94 * 7d * 7d * * * 007d 7d 007d 0000007d 7d 7d 7d 7d 7d 7d 7d
+95 * 7e * 7e * * * 007e 7e 007e 0000007e 7e 7e 7e 7e 7e 7e 7e
+96 * fd * * * * * * c2a9 00a9 000000a9 * * * * * * *
+97 * fe * * * * * * e284a2 2122 00002122 * * * * * * *
+98 * ff * * * * * * * * * * * * * * * *
+99 a140 a140 a140 * 2121 * 8ea1a1a1,a1a1,8ea1a1a1v,a1a1v 3000 e38080 3000 00003000 a140 a140 a140 a140 a140 a140 a140
+100 a141 a141 a141 * 2122 * 8ea1a1a2,a1a2,8ea1a1a2v,a1a2v ff0c efbc8c ff0c 0000ff0c a141 a141 a141 a141 a141 a141 a141
+101 a142 a142 a142 * 2123 * 8ea1a1a3,a1a3,8ea1a1a3v,a1a3v 3001 e38081 3001 00003001 a142 a142 a142 a142 a142 a142 a142
+102 a143 a143 a143 * 2124 * 8ea1a1a4,a1a4,8ea1a1a4v,a1a4v 3002 e38082 3002 00003002 a143 a143 a143 a143 a143 a143 a143
+103 a144 a144 a144 * 2125 * 8ea1a1a5,a1a5,8ea1a1a5v,a1a5v ff0e efbc8e ff0e 0000ff0e a144 a144 a144 a144 a144 a144 a144
+104 a145 a145 a145 * 2126 * 8ea1a1a6,a1a6,8ea1a1a6v,a1a6v 2022 e280a2,e280a7 2022,2027 00002022,00002027 a145 a145 a145 a145 a145 a145 a145
+105 a146 a146 a146 * 2127 * 8ea1a1a7,a1a7,8ea1a1a7v,a1a7v ff1b efbc9b ff1b 0000ff1b a146 a146 a146 a146 a146 a146 a146
+106 a147 a147 a147 * 2128 * 8ea1a1a8,a1a8,8ea1a1a8v,a1a8v ff1a efbc9a ff1a 0000ff1a a147 a147 a147 a147 a147 a147 a147
+107 a148 a148 a148 * 2129 * 8ea1a1a9,a1a9,8ea1a1a9v,a1a9v ff1f efbc9f ff1f 0000ff1f a148 a148 a148 a148 a148 a148 a148
+108 a149 a149 a149 * 212a * 8ea1a1aa,a1aa,8ea1a1aav,a1aav ff01 efbc81 ff01 0000ff01 a149 a149 a149 a149 a149 a149 a149
+109 a14a a14a a14a a14cv 212b * 8ea1a1ab,a1ab,8ea1a1abv,a1abv fe30,2025v efb8b0,e280a5v fe30,2025v 0000fe30,00002025v a14a a14a a14a a14a a14a a14a a14a
+110 a14b a14b a14b * 212c * 8ea1a1ac,a1ac 2026 e280a6,e28baf 2026,22ef 00002026,000022ef a14b a14b a14b a14b a14b a14b a14b
+111 a14c a14c a14c * 212d * 8ea1a1ad,a1ad,8ea1a1adv,a1adv 2025 e280a5 2025 00002025 a14c a14c a14c a14c a14c a14c a14c
+112 a14d a14d a14d * 212e * 8ea1a1ae,a1ae,8ea1a1aev,a1aev fe50 efb990 fe50 0000fe50 a14d a14d a14d a14d a14d a14d a14d
+113 a14e a14e a14e * 212f * 8ea1a1af,a1af,8ea1a1afv,a1afv ff64 efbda4,efb991 ff64,fe51 0000ff64,0000fe51 a14e a14e a14e a14e a14e a14e a14e
+114 a14f a14f a14f * 2130 * 8ea1a1b0,a1b0,8ea1a1b0v,a1b0v fe52 efb992 fe52 0000fe52 a14f a14f a14f a14f a14f a14f a14f
+115 a150 a150 a150 * 2131 * 8ea1a1b1,a1b1,8ea1a1b1v,a1b1v 00b7 c2b7 00b7 000000b7 a150 a150 a150 a150 a150 a150 a150
+116 a151 a151 a151 * 2132 * 8ea1a1b2,a1b2,8ea1a1b2v,a1b2v fe54 efb994 fe54 0000fe54 a151 a151 a151 a151 a151 a151 a151
+117 a152 a152 a152 * 2133 * 8ea1a1b3,a1b3,8ea1a1b3v,a1b3v fe55 efb995 fe55 0000fe55 a152 a152 a152 a152 a152 a152 a152
+118 a153 a153 a153 * 2134 * 8ea1a1b4,a1b4,8ea1a1b4v,a1b4v fe56 efb996 fe56 0000fe56 a153 a153 a153 a153 a153 a153 a153
+119 a154 a154 a154 * 2135 * 8ea1a1b5,a1b5,8ea1a1b5v,a1b5v fe57 efb997 fe57 0000fe57 a154 a154 a154 a154 a154 a154 a154
+120 a155 a155 a155 * 2136 * 8ea1a1b6,a1b6,8ea1a1b6v,a1b6v ff5c,2013v efbd9c,e28093v ff5c,2013v 0000ff5c,00002013v a155 a155 a155 a155 a155 a155 a155
+121 a156 a156 a156 * 2137 * 8ea1a1b7,a1b7,8ea1a1b7v,a1b7v 2013 e28093 2013 00002013 a156 a156 a156 a156 a156 a156 a156
+122 a157 a157 a157 a158v 2138 * 8ea1a1b8,a1b8,8ea1a1b8v,a1b8v fe31,2014v efb8b1,e28094v fe31,2014v 0000fe31,00002014v a157 a157 a157 a157 a157 a157 a157
+123 a158 a158 a158 * 2139 * 8ea1a1b9,a1b9,8ea1a1b9v,a1b9v 2014 e28094 2014 00002014 a158 a158 a158 a158 a158 a158 a158
+124 * * * * 213a,213bv * 8ea1a1ba,a1ba,8ea1a1bav,8ea1a1bbv,a1bav,a1bbv * * * * * * * * * * *
+125 * * * * 213b * 8ea1a1bb,a1bb * * * * * * * * * * *
+126 * * * * 213c,213dv * 8ea1a1bc,a1bc,8ea1a1bcv,8ea1a1bdv,a1bcv,a1bdv * * * * * * * * * * *
+127 * * * * 213d * 8ea1a1bd,a1bd * * * * * * * * * * *
+128 a15d a15d a15d * 213e * 8ea1a1be,a1be ff08 efbc88 ff08 0000ff08 a15d a15d a15d a15d a15d a15d a15d
+129 a15e a15e a15e * 213f * 8ea1a1bf,a1bf ff09 efbc89 ff09 0000ff09 a15e a15e a15e a15e a15e a15e a15e
+130 a15f,a15dv a15f,a15dv a15f,a15dv a15dv,a17dv 2140,213ev * 8ea1a1c0,a1c0,8ea1a1bev,8ea1a1c0v,a1bev,a1c0v fe35,ff08v efb8b5,efbc88v fe35,ff08v 0000fe35,0000ff08v a15f,a15dv a15f,a15dv a15f,a15dv a15f,a15dv a15f,a15dv a15f,a15dv a15f,a15dv
+131 a160,a15ev a160,a15ev a160,a15ev a15ev,a17ev 2141,213fv * 8ea1a1c1,a1c1,8ea1a1bfv,8ea1a1c1v,a1bfv,a1c1v fe36,ff09v efb8b6,efbc89v fe36,ff09v 0000fe36,0000ff09v a160,a15ev a160,a15ev a160,a15ev a160,a15ev a160,a15ev a160,a15ev a160,a15ev
+132 a161 a161 a161 * 2142 * 8ea1a1c2,a1c2 ff5b efbd9b ff5b 0000ff5b a161 a161 a161 a161 a161 a161 a161
+133 a162 a162 a162 * 2143 * 8ea1a1c3,a1c3 ff5d efbd9d ff5d 0000ff5d a162 a162 a162 a162 a162 a162 a162
+134 a163,a161v a163,a161v a163,a161v a161v,a1a1v 2144,2142v * 8ea1a1c4,a1c4,8ea1a1c2v,8ea1a1c4v,a1c2v,a1c4v fe37,ff5bv efb8b7,efbd9bv fe37,ff5bv 0000fe37,0000ff5bv a163,a161v a163,a161v a163,a161v a163,a161v a163,a161v a163,a161v a163,a161v
+135 a164,a162v a164,a162v a164,a162v a162v,a1a2v 2145,2143v * 8ea1a1c5,a1c5,8ea1a1c3v,8ea1a1c5v,a1c3v,a1c5v fe38,ff5dv efb8b8,efbd9dv fe38,ff5dv 0000fe38,0000ff5dv a164,a162v a164,a162v a164,a162v a164,a162v a164,a162v a164,a162v a164,a162v
+136 a165 a165 a165 * 2146 * 8ea1a1c6,a1c6 3014 e38094 3014 00003014 a165 a165 a165 a165 a165 a165 a165
+137 a166 a166 a166 * 2147 * 8ea1a1c7,a1c7 3015 e38095 3015 00003015 a166 a166 a166 a166 a166 a166 a166
+138 a167,a165v a167,a165v a167,a165v a165v,a1a3v 2148,2146v * 8ea1a1c8,a1c8,8ea1a1c6v,8ea1a1c8v,a1c6v,a1c8v fe39,3014v efb8b9,e38094v fe39,3014v 0000fe39,00003014v a167,a165v a167,a165v a167,a165v a167,a165v a167,a165v a167,a165v a167,a165v
+139 a168,a166v a168,a166v a168,a166v a166v,a1a4v 2149,2147v * 8ea1a1c9,a1c9,8ea1a1c7v,8ea1a1c9v,a1c7v,a1c9v fe3a,3015v efb8ba,e38095v fe3a,3015v 0000fe3a,00003015v a168,a166v a168,a166v a168,a166v a168,a166v a168,a166v a168,a166v a168,a166v
+140 a169 a169 a169 * 214a * 8ea1a1ca,a1ca 3010 e38090 3010 00003010 a169 a169 a169 a169 a169 a169 a169
+141 a16a a16a a16a * 214b * 8ea1a1cb,a1cb 3011 e38091 3011 00003011 a16a a16a a16a a16a a16a a16a a16a
+142 a16b,a169v a16b,a169v a16b,a169v a169v 214c,214av * 8ea1a1cc,a1cc,8ea1a1cav,8ea1a1ccv,a1cav,a1ccv fe3b,3010v efb8bb,e38090v fe3b,3010v 0000fe3b,00003010v a16b,a169v a16b,a169v a16b,a169v a16b,a169v a16b,a169v a16b,a169v a16b,a169v
+143 a16c,a16av a16c,a16av a16c,a16av a16av 214d,214bv * 8ea1a1cd,a1cd,8ea1a1cbv,8ea1a1cdv,a1cbv,a1cdv fe3c,3011v efb8bc,e38091v fe3c,3011v 0000fe3c,00003011v a16c,a16av a16c,a16av a16c,a16av a16c,a16av a16c,a16av a16c,a16av a16c,a16av
+144 a16d a16d a16d * 214e * 8ea1a1ce,a1ce 300a e3808a 300a 0000300a a16d a16d a16d a16d a16d a16d a16d
+145 a16e a16e a16e * 214f * 8ea1a1cf,a1cf 300b e3808b 300b 0000300b a16e a16e a16e a16e a16e a16e a16e
+146 a16f,a16dv a16f,a16dv a16f,a16dv a16dv 2150,214ev * 8ea1a1d0,a1d0,8ea1a1cev,8ea1a1d0v,a1cev,a1d0v fe3d,300av efb8bd,e3808av fe3d,300av 0000fe3d,0000300av a16f,a16dv a16f,a16dv a16f,a16dv a16f,a16dv a16f,a16dv a16f,a16dv a16f,a16dv
+147 a170,a16ev a170,a16ev a170,a16ev a16ev 2151,214fv * 8ea1a1d1,a1d1,8ea1a1cfv,8ea1a1d1v,a1cfv,a1d1v fe3e,300bv efb8be,e3808bv fe3e,300bv 0000fe3e,0000300bv a170,a16ev a170,a16ev a170,a16ev a170,a16ev a170,a16ev a170,a16ev a170,a16ev
+148 a171 a171 a171 * 2152 * 8ea1a1d2,a1d2 3008 e28ca9,e38088 2329,3008 00002329,00003008 a171 a171 a171 a171 a171 a171 a171
+149 a172 a172 a172 * 2153 * 8ea1a1d3,a1d3 3009 e28caa,e38089 232a,3009 0000232a,00003009 a172 a172 a172 a172 a172 a172 a172
+150 a173,a171v a173,a171v a173,a171v a171v 2154,2152v * 8ea1a1d4,a1d4,8ea1a1d2v,8ea1a1d4v,a1d2v,a1d4v fe3f,3008v efb8bf,e38088v fe3f,3008v 0000fe3f,00003008v a173,a171v a173,a171v a173,a171v a173,a171v a173,a171v a173,a171v a173,a171v
+151 a174,a172v a174,a172v a174,a172v a172v 2155,2153v * 8ea1a1d5,a1d5,8ea1a1d3v,8ea1a1d5v,a1d3v,a1d5v fe40,3009v efb980,e38089v fe40,3009v 0000fe40,00003009v a174,a172v a174,a172v a174,a172v a174,a172v a174,a172v a174,a172v a174,a172v
+152 a175 a175 a175 * 2156 * 8ea1a1d6,a1d6 300c e3808c 300c 0000300c a175 a175 a175 a175 a175 a175 a175
+153 a176 a176 a176 * 2157 * 8ea1a1d7,a1d7 300d e3808d 300d 0000300d a176 a176 a176 a176 a176 a176 a176
+154 a177,a175v a177,a175v a177,a175v a175v 2158,2156v * 8ea1a1d8,a1d8,8ea1a1d6v,8ea1a1d8v,a1d6v,a1d8v fe41,300cv efb981,e3808cv fe41,300cv 0000fe41,0000300cv a177,a175v a177,a175v a177,a175v a177,a175v a177,a175v a177,a175v a177,a175v
+155 a178,a176v a178,a176v a178,a176v a176v 2159,2157v * 8ea1a1d9,a1d9,8ea1a1d7v,8ea1a1d9v,a1d7v,a1d9v fe42,300dv efb982,e3808dv fe42,300dv 0000fe42,0000300dv a178,a176v a178,a176v a178,a176v a178,a176v a178,a176v a178,a176v a178,a176v
+156 a179 a179 a179 * 215a * 8ea1a1da,a1da 300e e3808e 300e 0000300e a179 a179 a179 a179 a179 a179 a179
+157 a17a a17a a17a * 215b * 8ea1a1db,a1db 300f e3808f 300f 0000300f a17a a17a a17a a17a a17a a17a a17a
+158 a17b,a179v a17b,a179v a17b,a179v a179v 215c,215av * 8ea1a1dc,a1dc,8ea1a1dav,8ea1a1dcv,a1dav,a1dcv fe43,300ev efb983,e3808ev fe43,300ev 0000fe43,0000300ev a17b,a179v a17b,a179v a17b,a179v a17b,a179v a17b,a179v a17b,a179v a17b,a179v
+159 a17c,a17av a17c,a17av a17c,a17av a17av 215d,215bv * 8ea1a1dd,a1dd,8ea1a1dbv,8ea1a1ddv,a1dbv,a1ddv fe44,300fv efb984,e3808fv fe44,300fv 0000fe44,0000300fv a17c,a17av a17c,a17av a17c,a17av a17c,a17av a17c,a17av a17c,a17av a17c,a17av
+160 a17d a17d a17d * 215e * 8ea1a1de,a1de,8ea1a1dev,a1dev fe59 efb999 fe59 0000fe59 a17d a17d a17d a17d a17d a17d a17d
+161 a17e a17e a17e * 215f * 8ea1a1df,a1df,8ea1a1dfv,a1dfv fe5a efb99a fe5a 0000fe5a a17e a17e a17e a17e a17e a17e a17e
+162 a1a1 a1a1 a1a1 * 2160 * 8ea1a1e0,a1e0,8ea1a1e0v,a1e0v fe5b efb99b fe5b 0000fe5b a1a1 a1a1 a1a1 a1a1 a1a1 a1a1 a1a1
+163 a1a2 a1a2 a1a2 * 2161 * 8ea1a1e1,a1e1,8ea1a1e1v,a1e1v fe5c efb99c fe5c 0000fe5c a1a2 a1a2 a1a2 a1a2 a1a2 a1a2 a1a2
+164 a1a3 a1a3 a1a3 * 2162 * 8ea1a1e2,a1e2,8ea1a1e2v,a1e2v fe5d efb99d fe5d 0000fe5d a1a3 a1a3 a1a3 a1a3 a1a3 a1a3 a1a3
+165 a1a4 a1a4 a1a4 * 2163 * 8ea1a1e3,a1e3,8ea1a1e3v,a1e3v fe5e efb99e fe5e 0000fe5e a1a4 a1a4 a1a4 a1a4 a1a4 a1a4 a1a4
+166 a1a5 a1a5 a1a5 * 2164 * 8ea1a1e4,a1e4,8ea1a1e4v,a1e4v 2018 e28098 2018 00002018 a1a5 a1a5 a1a5 a1a5 a1a5 a1a5 a1a5
+167 a1a6 a1a6 a1a6 * 2165 * 8ea1a1e5,a1e5,8ea1a1e5v,a1e5v 2019 e28099 2019 00002019 a1a6 a1a6 a1a6 a1a6 a1a6 a1a6 a1a6
+168 a1a7 a1a7 a1a7 * 2166 * 8ea1a1e6,a1e6,8ea1a1e6v,a1e6v 201c e2809c 201c 0000201c a1a7 a1a7 a1a7 a1a7 a1a7 a1a7 a1a7
+169 a1a8 a1a8 a1a8 * 2167 * 8ea1a1e7,a1e7,8ea1a1e7v,a1e7v 201d e2809d 201d 0000201d a1a8 a1a8 a1a8 a1a8 a1a8 a1a8 a1a8
+170 a1a9 a1a9 a1a9 * 2168 * 8ea1a1e8,a1e8,8ea1a1e8v,a1e8v 301d e3809d 301d 0000301d a1a9 a1a9 a1a9 a1a9 a1a9 a1a9 a1a9
+171 a1aa a1aa a1aa * 2169 * 8ea1a1e9,a1e9,8ea1a1e9v,a1e9v 301e e3809e 301e 0000301e a1aa a1aa a1aa a1aa a1aa a1aa a1aa
+172 a1ab a1ab a1ab * 216a * 8ea1a1ea,a1ea,8ea1a1eav,a1eav 2035 e280b5 2035 00002035 a1ab a1ab a1ab a1ab a1ab a1ab a1ab
+173 a1ac a1ac a1ac * 216b * 8ea1a1eb,a1eb,8ea1a1ebv,a1ebv 2032 e280b2 2032 00002032 a1ac a1ac a1ac a1ac a1ac a1ac a1ac
+174 a1ad a1ad a1ad * 216c * 8ea1a1ec,a1ec,8ea1a1ecv,a1ecv ff03 efbc83 ff03 0000ff03 a1ad a1ad a1ad a1ad a1ad a1ad a1ad
+175 a1ae a1ae a1ae * 216d * 8ea1a1ed,a1ed,8ea1a1edv,a1edv ff06 efbc86 ff06 0000ff06 a1ae a1ae a1ae a1ae a1ae a1ae a1ae
+176 a1af a1af a1af * 216e * 8ea1a1ee,a1ee,8ea1a1eev,a1eev ff0a efbc8a ff0a 0000ff0a a1af a1af a1af a1af a1af a1af a1af
+177 a1b0 a1b0 a1b0 * 216f * 8ea1a1ef,a1ef,8ea1a1efv,a1efv 203b e280bb 203b 0000203b a1b0 a1b0 a1b0 a1b0 a1b0 a1b0 a1b0
+178 a1b1 a1b1 a1b1 * 2170 * 8ea1a1f0,a1f0,8ea1a1f0v,a1f0v 00a7 c2a7 00a7 000000a7 a1b1 a1b1 a1b1 a1b1 a1b1 a1b1 a1b1
+179 a1b2 a1b2 a1b2 * 2171 * 8ea1a1f1,a1f1,8ea1a1f1v,a1f1v 3003 e38083 3003 00003003 a1b2 a1b2 a1b2 a1b2 a1b2 a1b2 a1b2
+180 a1b3 a1b3 a1b3 * 2172 * 8ea1a1f2,a1f2,8ea1a1f2v,a1f2v 25cb e2978b 25cb 000025cb a1b3 a1b3 a1b3 a1b3 a1b3 a1b3 a1b3
+181 a1b4 a1b4 a1b4 * 2173 * 8ea1a1f3,a1f3,8ea1a1f3v,a1f3v 25cf e2978f 25cf 000025cf a1b4 a1b4 a1b4 a1b4 a1b4 a1b4 a1b4
+182 a1b5 a1b5 a1b5 * 2174 * 8ea1a1f4,a1f4,8ea1a1f4v,a1f4v 25b3 e296b3 25b3 000025b3 a1b5 a1b5 a1b5 a1b5 a1b5 a1b5 a1b5
+183 a1b6 a1b6 a1b6 * 2175 * 8ea1a1f5,a1f5,8ea1a1f5v,a1f5v 25b2 e296b2 25b2 000025b2 a1b6 a1b6 a1b6 a1b6 a1b6 a1b6 a1b6
+184 a1b7 a1b7 a1b7 * 2176 * 8ea1a1f6,a1f6,8ea1a1f6v,a1f6v 25ce e2978e 25ce 000025ce a1b7 a1b7 a1b7 a1b7 a1b7 a1b7 a1b7
+185 a1b8 a1b8 a1b8 * 2177 * 8ea1a1f7,a1f7,8ea1a1f7v,a1f7v 2606 e29886 2606 00002606 a1b8 a1b8 a1b8 a1b8 a1b8 a1b8 a1b8
+186 a1b9 a1b9 a1b9 * 2178 * 8ea1a1f8,a1f8,8ea1a1f8v,a1f8v 2605 e29885 2605 00002605 a1b9 a1b9 a1b9 a1b9 a1b9 a1b9 a1b9
+187 a1ba a1ba a1ba * 2179 * 8ea1a1f9,a1f9,8ea1a1f9v,a1f9v 25c7 e29787 25c7 000025c7 a1ba a1ba a1ba a1ba a1ba a1ba a1ba
+188 a1bb a1bb a1bb * 217a * 8ea1a1fa,a1fa,8ea1a1fav,a1fav 25c6 e29786 25c6 000025c6 a1bb a1bb a1bb a1bb a1bb a1bb a1bb
+189 a1bc a1bc a1bc * 217b * 8ea1a1fb,a1fb,8ea1a1fbv,a1fbv 25a1 e296a1 25a1 000025a1 a1bc a1bc a1bc a1bc a1bc a1bc a1bc
+190 a1bd a1bd a1bd * 217c * 8ea1a1fc,a1fc,8ea1a1fcv,a1fcv 25a0 e296a0 25a0 000025a0 a1bd a1bd a1bd a1bd a1bd a1bd a1bd
+191 a1be a1be a1be * 217d * 8ea1a1fd,a1fd,8ea1a1fdv,a1fdv 25bd e296bd 25bd 000025bd a1be a1be a1be a1be a1be a1be a1be
+192 a1bf a1bf a1bf * 217e * 8ea1a1fe,a1fe,8ea1a1fev,a1fev 25bc e296bc 25bc 000025bc a1bf a1bf a1bf a1bf a1bf a1bf a1bf
+193 a1c0 a1c0 a1c0 * 2221 * 8ea1a2a1,a2a1,8ea1a2a1v,a2a1v 32a3 e38aa3 32a3 000032a3 a1c0 a1c0 a1c0 a1c0 a1c0 a1c0 a1c0
+194 a1c1 a1c1 a1c1 * 2222 * 8ea1a2a2,a2a2,8ea1a2a2v,a2a2v 2105 e28485 2105 00002105 a1c1 a1c1 a1c1 a1c1 a1c1 a1c1 a1c1
+195 a1c2 a1c2 a1c2 * 2223 * 8ea1a2a3,a2a3,8ea1a2a3v,a2a3v 203e c2af,cc84,e280be 00af,0304,203e 000000af,00000304,0000203e a1c2 a1c2 a1c2 a1c2 a1c2 a1c2 a1c2
+196 a1c3 a1c3 a1c3 * 2224 * 8ea1a2a4,a2a4,8ea1a2a4v,a2a4v * efbfa3 ffe3 0000ffe3 a1c3 a1c3 a1c3 a1c3 a1c3 a1c3 a1c3
+197 a1c4 a1c4 a1c4 * 2225 * 8ea1a2a5,a2a5,8ea1a2a5v,a2a5v ff3f efbcbf ff3f 0000ff3f a1c4 a1c4 a1c4 a1c4 a1c4 a1c4 a1c4
+198 a1c5 a1c5 a1c5 * 2226 * 8ea1a2a6,a2a6,8ea1a2a6v,a2a6v * cb8d 02cd 000002cd a1c5 a1c5 a1c5 a1c5 a1c5 a1c5 a1c5
+199 a1c6 a1c6 a1c6 * 2227 * 8ea1a2a7,a2a7,8ea1a2a7v,a2a7v fe49 efb989 fe49 0000fe49 a1c6 a1c6 a1c6 a1c6 a1c6 a1c6 a1c6
+200 a1c7 a1c7 a1c7 * 2228 * 8ea1a2a8,a2a8,8ea1a2a8v,a2a8v fe4a efb98a fe4a 0000fe4a a1c7 a1c7 a1c7 a1c7 a1c7 a1c7 a1c7
+201 a1c8 a1c8 a1c8 * 2229 * 8ea1a2a9,a2a9,8ea1a2a9v,a2a9v fe4d efb98d fe4d 0000fe4d a1c8 a1c8 a1c8 a1c8 a1c8 a1c8 a1c8
+202 a1c9 a1c9 a1c9 * 222a * 8ea1a2aa,a2aa,8ea1a2aav,a2aav fe4e efb98e fe4e 0000fe4e a1c9 a1c9 a1c9 a1c9 a1c9 a1c9 a1c9
+203 a1ca a1ca a1ca * 222b * 8ea1a2ab,a2ab,8ea1a2abv,a2abv fe4b efb98b fe4b 0000fe4b a1ca a1ca a1ca a1ca a1ca a1ca a1ca
+204 a1cb a1cb a1cb * 222c * 8ea1a2ac,a2ac,8ea1a2acv,a2acv fe4c efb98c fe4c 0000fe4c a1cb a1cb a1cb a1cb a1cb a1cb a1cb
+205 a1cc a1cc a1cc * 222d * 8ea1a2ad,a2ad,8ea1a2adv,a2adv fe5f efb99f fe5f 0000fe5f a1cc a1cc a1cc a1cc a1cc a1cc a1cc
+206 a1cd a1cd a1cd * 222e * 8ea1a2ae,a2ae,8ea1a2aev,a2aev fe60 efb9a0 fe60 0000fe60 a1cd a1cd a1cd a1cd a1cd a1cd a1cd
+207 a1ce a1ce a1ce * 222f * 8ea1a2af,a2af,8ea1a2afv,a2afv fe61 efb9a1 fe61 0000fe61 a1ce a1ce a1ce a1ce a1ce a1ce a1ce
+208 a1cf a1cf a1cf * 2230 * 8ea1a2b0,a2b0,8ea1a2b0v,a2b0v ff0b efbc8b ff0b 0000ff0b a1cf a1cf a1cf a1cf a1cf a1cf a1cf
+209 a1d0 a1d0 a1d0 * 2231 * 8ea1a2b1,a2b1,8ea1a2b1v,a2b1v ff0d efbc8d ff0d 0000ff0d a1d0 a1d0 a1d0 a1d0 a1d0 a1d0 a1d0
+210 a1d1 a1d1 a1d1 * 2232 * 8ea1a2b2,a2b2,8ea1a2b2v,a2b2v 00d7 c397 00d7 000000d7 a1d1 a1d1 a1d1 a1d1 a1d1 a1d1 a1d1
+211 a1d2 a1d2 a1d2 * 2233 * 8ea1a2b3,a2b3,8ea1a2b3v,a2b3v 00f7 c3b7 00f7 000000f7 a1d2 a1d2 a1d2 a1d2 a1d2 a1d2 a1d2
+212 a1d3 a1d3 a1d3 * 2234 * 8ea1a2b4,a2b4,8ea1a2b4v,a2b4v 00b1 c2b1 00b1 000000b1 a1d3 a1d3 a1d3 a1d3 a1d3 a1d3 a1d3
+213 a1d4 a1d4 a1d4 * 2235 * 8ea1a2b5,a2b5,8ea1a2b5v,a2b5v 221a e2889a 221a 0000221a a1d4 a1d4 a1d4 a1d4 a1d4 a1d4 a1d4
+214 a1d5 a1d5 a1d5 * 2236 * 8ea1a2b6,a2b6,8ea1a2b6v,a2b6v ff1c efbc9c ff1c 0000ff1c a1d5 a1d5 a1d5 a1d5 a1d5 a1d5 a1d5
+215 a1d6 a1d6 a1d6 * 2237 * 8ea1a2b7,a2b7,8ea1a2b7v,a2b7v ff1e efbc9e ff1e 0000ff1e a1d6 a1d6 a1d6 a1d6 a1d6 a1d6 a1d6
+216 a1d7 a1d7 a1d7 * 2238 * 8ea1a2b8,a2b8,8ea1a2b8v,a2b8v ff1d efbc9d ff1d 0000ff1d a1d7 a1d7 a1d7 a1d7 a1d7 a1d7 a1d7
+217 a1d8 a1d8 a1d8 * 2239 * 8ea1a2b9,a2b9,8ea1a2b9v,a2b9v 2266 e289a6 2266 00002266 a1d8 a1d8 a1d8 a1d8 a1d8 a1d8 a1d8
+218 a1d9 a1d9 a1d9 * 223a * 8ea1a2ba,a2ba,8ea1a2bav,a2bav 2267 e289a7 2267 00002267 a1d9 a1d9 a1d9 a1d9 a1d9 a1d9 a1d9
+219 a1da a1da a1da * 223b * 8ea1a2bb,a2bb,8ea1a2bbv,a2bbv 2260 e289a0 2260 00002260 a1da a1da a1da a1da a1da a1da a1da
+220 a1db a1db a1db * 223c * 8ea1a2bc,a2bc,8ea1a2bcv,a2bcv 221e e2889e 221e 0000221e a1db a1db a1db a1db a1db a1db a1db
+221 a1dc a1dc a1dc * 223d * 8ea1a2bd,a2bd,8ea1a2bdv,a2bdv 2252 e28992 2252 00002252 a1dc a1dc a1dc a1dc a1dc a1dc a1dc
+222 a1dd a1dd a1dd * 223e * 8ea1a2be,a2be,8ea1a2bev,a2bev 2261 e289a1 2261 00002261 a1dd a1dd a1dd a1dd a1dd a1dd a1dd
+223 a1de a1de a1de * 223f * 8ea1a2bf,a2bf,8ea1a2bfv,a2bfv fe62 efb9a2 fe62 0000fe62 a1de a1de a1de a1de a1de a1de a1de
+224 a1df a1df a1df * 2240 * 8ea1a2c0,a2c0,8ea1a2c0v,a2c0v fe63 efb9a3 fe63 0000fe63 a1df a1df a1df a1df a1df a1df a1df
+225 a1e0 a1e0 a1e0 * 2241 * 8ea1a2c1,a2c1,8ea1a2c1v,a2c1v fe64 efb9a4 fe64 0000fe64 a1e0 a1e0 a1e0 a1e0 a1e0 a1e0 a1e0
+226 a1e1 a1e1 a1e1 * 2242 * 8ea1a2c2,a2c2,8ea1a2c2v,a2c2v fe65 efb9a5 fe65 0000fe65 a1e1 a1e1 a1e1 a1e1 a1e1 a1e1 a1e1
+227 a1e2 a1e2 a1e2 * 2243 * 8ea1a2c3,a2c3,8ea1a2c3v,a2c3v fe66 efb9a6 fe66 0000fe66 a1e2 a1e2 a1e2 a1e2 a1e2 a1e2 a1e2
+228 a1e3 a1e3 a1e3 * 2244 * 8ea1a2c4,a2c4 223c e288bc,efbd9e 223c,ff5e 0000223c,0000ff5e a1e3 a1e3 a1e3 a1e3 a1e3 a1e3 a1e3
+229 a1e4 a1e4 a1e4 * 2245 * 8ea1a2c5,a2c5,8ea1a2c5v,a2c5v 2229 e288a9 2229 00002229 a1e4 a1e4 a1e4 a1e4 a1e4 a1e4 a1e4
+230 a1e5 a1e5 a1e5 * 2246 * 8ea1a2c6,a2c6,8ea1a2c6v,a2c6v 222a e288aa 222a 0000222a a1e5 a1e5 a1e5 a1e5 a1e5 a1e5 a1e5
+231 a1e6 a1e6 a1e6 * 2247 * 8ea1a2c7,a2c7,8ea1a2c7v,a2c7v 22a5 e28aa5 22a5 000022a5 a1e6 a1e6 a1e6 a1e6 a1e6 a1e6 a1e6
+232 a1e7 a1e7 a1e7 * 2248 * 8ea1a2c8,a2c8,8ea1a2c8v,a2c8v 2220 e288a0 2220 00002220 a1e7 a1e7 a1e7 a1e7 a1e7 a1e7 a1e7
+233 a1e8 a1e8 a1e8 * 2249 * 8ea1a2c9,a2c9,8ea1a2c9v,a2c9v 221f e2889f 221f 0000221f a1e8 a1e8 a1e8 a1e8 a1e8 a1e8 a1e8
+234 a1e9 a1e9 a1e9 * 224a * 8ea1a2ca,a2ca,8ea1a2cav,a2cav 22bf e28abf 22bf 000022bf a1e9 a1e9 a1e9 a1e9 a1e9 a1e9 a1e9
+235 a1ea a1ea a1ea * 224b * 8ea1a2cb,a2cb,8ea1a2cbv,a2cbv 33d2 e38f92 33d2 000033d2 a1ea a1ea a1ea a1ea a1ea a1ea a1ea
+236 a1eb a1eb a1eb * 224c * 8ea1a2cc,a2cc,8ea1a2ccv,a2ccv 33d1 e38f91 33d1 000033d1 a1eb a1eb a1eb a1eb a1eb a1eb a1eb
+237 a1ec a1ec a1ec * 224d * 8ea1a2cd,a2cd,8ea1a2cdv,a2cdv 222b e288ab 222b 0000222b a1ec a1ec a1ec a1ec a1ec a1ec a1ec
+238 a1ed a1ed a1ed * 224e * 8ea1a2ce,a2ce,8ea1a2cev,a2cev 222e e288ae 222e 0000222e a1ed a1ed a1ed a1ed a1ed a1ed a1ed
+239 a1ee a1ee a1ee * 224f * 8ea1a2cf,a2cf,8ea1a2cfv,a2cfv 2235 e288b5 2235 00002235 a1ee a1ee a1ee a1ee a1ee a1ee a1ee
+240 a1ef a1ef a1ef * 2250 * 8ea1a2d0,a2d0,8ea1a2d0v,a2d0v 2234 e288b4 2234 00002234 a1ef a1ef a1ef a1ef a1ef a1ef a1ef
+241 a1f0 a1f0 a1f0 * 2251 * 8ea1a2d1,a2d1,8ea1a2d1v,a2d1v 2640 e29980 2640 00002640 a1f0 a1f0 a1f0 a1f0 a1f0 a1f0 a1f0
+242 a1f1 a1f1 a1f1 * 2252 * 8ea1a2d2,a2d2,8ea1a2d2v,a2d2v 2642 e29982 2642 00002642 a1f1 a1f1 a1f1 a1f1 a1f1 a1f1 a1f1
+243 a1f2 a1f2 a1f2 * 2253 * 8ea1a2d3,a2d3,8ea1a2d3v,a2d3v 2641 e28a95,e29981 2295,2641 00002295,00002641 a1f2 a1f2 a1f2 a1f2 a1f2 a1f2 a1f2
+244 a1f3 a1f3 a1f3 * 2254 * 8ea1a2d4,a2d4,8ea1a2d4v,a2d4v 2609 e28a99,e29889 2299,2609 00002299,00002609 a1f3 a1f3 a1f3 a1f3 a1f3 a1f3 a1f3
+245 a1f4 a1f4 a1f4 * 2255 * 8ea1a2d5,a2d5,8ea1a2d5v,a2d5v 2191 e28691 2191 00002191 a1f4 a1f4 a1f4 a1f4 a1f4 a1f4 a1f4
+246 a1f5 a1f5 a1f5 * 2256 * 8ea1a2d6,a2d6,8ea1a2d6v,a2d6v 2193 e28693 2193 00002193 a1f5 a1f5 a1f5 a1f5 a1f5 a1f5 a1f5
+247 a1f7 a1f7 a1f7 * 2257 * 8ea1a2d7,a2d7,8ea1a2d7v,a2d7v 2192 e28692 2192 00002192 a1f7 a1f7 a1f7 a1f7 a1f7 a1f7 a1f7
+248 a1f6 a1f6 a1f6 * 2258 * 8ea1a2d8,a2d8,8ea1a2d8v,a2d8v 2190 e28690 2190 00002190 a1f6 a1f6 a1f6 a1f6 a1f6 a1f6 a1f6
+249 a1f8 a1f8 a1f8 * 2259 * 8ea1a2d9,a2d9,8ea1a2d9v,a2d9v 2196 e28696 2196 00002196 a1f8 a1f8 a1f8 a1f8 a1f8 a1f8 a1f8
+250 a1f9 a1f9 a1f9 * 225a * 8ea1a2da,a2da,8ea1a2dav,a2dav 2197 e28697 2197 00002197 a1f9 a1f9 a1f9 a1f9 a1f9 a1f9 a1f9
+251 a1fa a1fa a1fa * 225b * 8ea1a2db,a2db,8ea1a2dbv,a2dbv 2199 e28699 2199 00002199 a1fa a1fa a1fa a1fa a1fa a1fa a1fa
+252 a1fb a1fb a1fb * 225c * 8ea1a2dc,a2dc,8ea1a2dcv,a2dcv 2198 e28698 2198 00002198 a1fb a1fb a1fb a1fb a1fb a1fb a1fb
+253 a1fc a1fc a1fc * 225d * 8ea1a2dd,a2dd,8ea1a2ddv,a2ddv 2225 e288a5 2225 00002225 a1fc a1fc a1fc a1fc a1fc a1fc a1fc
+254 a1fd a1fd a1fd * 225e * 8ea1a2de,a2de,8ea1a2dev,a2dev 2223 e288a3 2223 00002223 a1fd a1fd a1fd a1fd a1fd a1fd a1fd
+255 a1fe a1fe a1fe * 225f * 8ea1a2df,a2df,8ea1a2dfv,a2dfv * * * * a1fe a1fe a1fe a1fe a1fe a1fe a1fe
+256 a240 a240 a240 * 2260 * 8ea1a2e0,a2e0,8ea1a2e0v,a2e0v * * * * a240 a240 a240 a240 a240 a240 a240
+257 a241 a241 a241 * 2261 * 8ea1a2e1,a2e1,8ea1a2e1v,a2e1v ff0f e28895,efbc8f 2215,ff0f 00002215,0000ff0f a241 a241 a241 a241 a241 a241 a241
+258 a242 a242 a242 * 2262 * 8ea1a2e2,a2e2,8ea1a2e2v,a2e2v ff3c efb9a8,efbcbc fe68,ff3c 0000fe68,0000ff3c a242 a242 a242 a242 a242 a242 a242
+259 a243 a243 a243 * 2263 * 8ea1a2e3,a2e3,8ea1a2e3v,a2e3v ff04 efbc84 ff04 0000ff04 a243 a243 a243 a243 a243 a243 a243
+260 a244 a244 a244 * 2264 * 8ea1a2e4,a2e4,8ea1a2e4v,a2e4v 00a5 c2a5,efbfa5 00a5,ffe5 000000a5,0000ffe5 a244 a244 a244 a244 a244 a244 a244
+261 a245 a245 a245 * 2265 * 8ea1a2e5,a2e5,8ea1a2e5v,a2e5v 3012 e38092 3012 00003012 a245 a245 a245 a245 a245 a245 a245
+262 a246 a246 a246 * 2266 * 8ea1a2e6,a2e6,8ea1a2e6v,a2e6v 00a2 c2a2,efbfa0 00a2,ffe0 000000a2,0000ffe0 a246 a246 a246 a246 a246 a246 a246
+263 a247 a247 a247 * 2267 * 8ea1a2e7,a2e7,8ea1a2e7v,a2e7v 00a3 c2a3,efbfa1 00a3,ffe1 000000a3,0000ffe1 a247 a247 a247 a247 a247 a247 a247
+264 a248 a248 a248 * 2268 * 8ea1a2e8,a2e8,8ea1a2e8v,a2e8v ff05 efbc85 ff05 0000ff05 a248 a248 a248 a248 a248 a248 a248
+265 a249 a249 a249 * 2269 * 8ea1a2e9,a2e9,8ea1a2e9v,a2e9v ff20 efbca0 ff20 0000ff20 a249 a249 a249 a249 a249 a249 a249
+266 a24a a24a a24a * 226a * 8ea1a2ea,a2ea,8ea1a2eav,a2eav 2103 e28483 2103 00002103 a24a a24a a24a a24a a24a a24a a24a
+267 a24b a24b a24b * 226b * 8ea1a2eb,a2eb,8ea1a2ebv,a2ebv 2109 e28489 2109 00002109 a24b a24b a24b a24b a24b a24b a24b
+268 a24c a24c a24c * 226c * 8ea1a2ec,a2ec,8ea1a2ecv,a2ecv fe69 efb9a9 fe69 0000fe69 a24c a24c a24c a24c a24c a24c a24c
+269 a24d a24d a24d * 226d * 8ea1a2ed,a2ed,8ea1a2edv,a2edv fe6a efb9aa fe6a 0000fe6a a24d a24d a24d a24d a24d a24d a24d
+270 a24e a24e a24e * 226e * 8ea1a2ee,a2ee,8ea1a2eev,a2eev fe6b efb9ab fe6b 0000fe6b a24e a24e a24e a24e a24e a24e a24e
+271 a24f a24f a24f * 226f * 8ea1a2ef,a2ef,8ea1a2efv,a2efv 33d5 e38f95 33d5 000033d5 a24f a24f a24f a24f a24f a24f a24f
+272 a250 a250 a250 * 2270 * 8ea1a2f0,a2f0,8ea1a2f0v,a2f0v 339c e38e9c 339c 0000339c a250 a250 a250 a250 a250 a250 a250
+273 a251 a251 a251 * 2271 * 8ea1a2f1,a2f1,8ea1a2f1v,a2f1v 339d e38e9d 339d 0000339d a251 a251 a251 a251 a251 a251 a251
+274 a252 a252 a252 * 2272 * 8ea1a2f2,a2f2,8ea1a2f2v,a2f2v 339e e38e9e 339e 0000339e a252 a252 a252 a252 a252 a252 a252
+275 a253 a253 a253 * 2273 * 8ea1a2f3,a2f3,8ea1a2f3v,a2f3v 33ce e38f8e 33ce 000033ce a253 a253 a253 a253 a253 a253 a253
+276 a254 a254 a254 * 2274 * 8ea1a2f4,a2f4,8ea1a2f4v,a2f4v 33a1 e38ea1 33a1 000033a1 a254 a254 a254 a254 a254 a254 a254
+277 a255 a255 a255 * 2275 * 8ea1a2f5,a2f5,8ea1a2f5v,a2f5v 338e e38e8e 338e 0000338e a255 a255 a255 a255 a255 a255 a255
+278 a256 a256 a256 * 2276 * 8ea1a2f6,a2f6,8ea1a2f6v,a2f6v 338f e38e8f 338f 0000338f a256 a256 a256 a256 a256 a256 a256
+279 a257 a257 a257 * 2277 * 8ea1a2f7,a2f7,8ea1a2f7v,a2f7v 33c4 e38f84 33c4 000033c4 a257 a257 a257 a257 a257 a257 a257
+280 a258 a258 a258 * 2278 * 8ea1a2f8,a2f8,8ea1a2f8v,a2f8v 00b0 c2b0 00b0 000000b0 a258 a258 a258 a258 a258 a258 a258
+281 a259 a259 a259 * 2279 * 8ea1a2f9,a2f9,8ea1a2f9v,a2f9v 5159 e58599,ee9792 5159,e5d2 00005159,0000e5d2 92af,a259 a259 a259 92af,a259 a259 a259 92af,a259
+282 a25a a25a a25a * 227a * 8ea1a2fa,a2fa,8ea1a2fav,a2fav 515b e5859b,ee9793 515b,e5d3 0000515b,0000e5d3 92b0,a25a a25a a25a 92b0,a25a a25a a25a 92b0,a25a
+283 a25b a25b a25b * 227b * 8ea1a2fb,a2fb,8ea1a2fbv,a2fbv 515e e5859e,ee9795 515e,e5d5 0000515e,0000e5d5 92b2,a25b a25b a25b 92b2,a25b a25b a25b 92b2,a25b
+284 a25c a25c a25c * 227c * 8ea1a2fc,a2fc,8ea1a2fcv,a2fcv 515d e5859d,ee9794 515d,e5d4 0000515d,0000e5d4 92b1,a25c a25c a25c 92b1,a25c a25c a25c 92b1,a25c
+285 a25d a25d a25d * 227d * 8ea1a2fd,a2fd,8ea1a2fdv,a2fdv 5161 e585a1 5161 00005161 a25d a25d a25d a25d a25d a25d a25d
+286 a25e a25e a25e * 227e * 8ea1a2fe,a2fe,8ea1a2fev,a2fev 5163 e585a3 5163 00005163 a25e a25e a25e a25e a25e a25e a25e
+287 a25f a25f a25f * 2321 * 8ea1a3a1,a3a1,8ea1a3a1v,a3a1v 55e7 e597a7 55e7 000055e7 a25f a25f a25f a25f a25f a25f a25f
+288 a260 a260 a260 * 2322 * 8ea1a3a2,a3a2,8ea1a3a2v,a3a2v 74e9 e793a9,ee8abc 74e9,e2bc 000074e9,0000e2bc feaa,a260 a260 a260 a260,feaa a260 a260 feaa,a260
+289 a261 a261 a261 * 2323 * 8ea1a3a3,a3a3,8ea1a3a3v,a3a3v 7cce e7b38e,ee8d8f 7cce,e34f 00007cce,0000e34f 8e7e,a261 a261 a261 8e7e,a261 a261 a261 8e7e,a261
+290 a262 a262 a262 * 2324 * 8ea1a3a4,a3a4,8ea1a3a4v,a3a4v 2581 e29681 2581 00002581 a262 a262 a262 a262 a262 a262 a262
+291 a263 a263 a263 * 2325 * 8ea1a3a5,a3a5,8ea1a3a5v,a3a5v 2582 e29682 2582 00002582 a263 a263 a263 a263 a263 a263 a263
+292 a264 a264 a264 * 2326 * 8ea1a3a6,a3a6,8ea1a3a6v,a3a6v 2583 e29683 2583 00002583 a264 a264 a264 a264 a264 a264 a264
+293 a265 a265 a265 * 2327 * 8ea1a3a7,a3a7,8ea1a3a7v,a3a7v 2584 e29684 2584 00002584 a265 a265 a265 a265 a265 a265 a265
+294 a266 a266 a266 * 2328 * 8ea1a3a8,a3a8,8ea1a3a8v,a3a8v 2585 e29685 2585 00002585 a266 a266 a266 a266 a266 a266 a266
+295 a267 a267 a267 * 2329 * 8ea1a3a9,a3a9,8ea1a3a9v,a3a9v 2586 e29686 2586 00002586 a267 a267 a267 a267 a267 a267 a267
+296 a268 a268 a268 * 232a * 8ea1a3aa,a3aa,8ea1a3aav,a3aav 2587 e29687 2587 00002587 a268 a268 a268 a268 a268 a268 a268
+297 a269 a269 a269 * 232b * 8ea1a3ab,a3ab,8ea1a3abv,a3abv 2588 e29688 2588 00002588 a269 a269 a269 a269 a269 a269 a269
+298 a26a a26a a26a * 232c * 8ea1a3ac,a3ac,8ea1a3acv,a3acv 258f e2968f 258f 0000258f a26a a26a a26a a26a a26a a26a a26a
+299 a26b a26b a26b * 232d * 8ea1a3ad,a3ad,8ea1a3adv,a3adv 258e e2968e 258e 0000258e a26b a26b a26b a26b a26b a26b a26b
+300 a26c a26c a26c * 232e * 8ea1a3ae,a3ae,8ea1a3aev,a3aev 258d e2968d 258d 0000258d a26c a26c a26c a26c a26c a26c a26c
+301 a26d a26d a26d * 232f * 8ea1a3af,a3af,8ea1a3afv,a3afv 258c e2968c 258c 0000258c a26d a26d a26d a26d a26d a26d a26d
+302 a26e a26e a26e * 2330 * 8ea1a3b0,a3b0,8ea1a3b0v,a3b0v 258b e2968b 258b 0000258b a26e a26e a26e a26e a26e a26e a26e
+303 a26f a26f a26f * 2331 * 8ea1a3b1,a3b1,8ea1a3b1v,a3b1v 258a e2968a 258a 0000258a a26f a26f a26f a26f a26f a26f a26f
+304 a270 a270 a270 * 2332 * 8ea1a3b2,a3b2,8ea1a3b2v,a3b2v 2589 e29689 2589 00002589 a270 a270 a270 a270 a270 a270 a270
+305 a271 a271 a271 * 2333 * 8ea1a3b3,a3b3,8ea1a3b3v,a3b3v 253c e294bc 253c 0000253c a271 a271 a271 a271 a271 a271 a271
+306 a272 a272 a272 * 2334 * 8ea1a3b4,a3b4,8ea1a3b4v,a3b4v 2534 e294b4 2534 00002534 a272 a272 a272 a272 a272 a272 a272
+307 a273 a273 a273 * 2335 * 8ea1a3b5,a3b5,8ea1a3b5v,a3b5v 252c e294ac 252c 0000252c a273 a273 a273 a273 a273 a273 a273
+308 a274 a274 a274 * 2336 * 8ea1a3b6,a3b6,8ea1a3b6v,a3b6v 2524 e294a4 2524 00002524 a274 a274 a274 a274 a274 a274 a274
+309 a275 a275 a275 * 2337 * 8ea1a3b7,a3b7,8ea1a3b7v,a3b7v 251c e2949c 251c 0000251c a275 a275 a275 a275 a275 a275 a275
+310 a276 a276 a276 * 2338 * 8ea1a3b8,a3b8,8ea1a3b8v,a3b8v 2594 e29694 2594 00002594 a276 a276 a276 a276 a276 a276 a276
+311 a277 a277 a277 * 2339 * 8ea1a3b9,a3b9,8ea1a3b9v,a3b9v 2500 e29480 2500 00002500 a277 a277 a277 a277 a277 a277 a277
+312 a278 a278 a278 a156v 233a * 8ea1a3ba,a3ba,8ea1a3bav,a3bav 2502 e29482 2502 00002502 a278 a278 a278 a278 a278 a278 a278
+313 a279 a279 a279 * 233b * 8ea1a3bb,a3bb,8ea1a3bbv,a3bbv 2595 e29695 2595 00002595 a279 a279 a279 a279 a279 a279 a279
+314 a27a a27a a27a * 233c * 8ea1a3bc,a3bc,8ea1a3bcv,a3bcv 250c e2948c 250c 0000250c a27a a27a a27a a27a a27a a27a a27a
+315 a27b a27b a27b * 233d * 8ea1a3bd,a3bd,8ea1a3bdv,a3bdv 2510 e29490 2510 00002510 a27b a27b a27b a27b a27b a27b a27b
+316 a27c a27c a27c * 233e * 8ea1a3be,a3be,8ea1a3bev,a3bev 2514 e29494 2514 00002514 a27c a27c a27c a27c a27c a27c a27c
+317 a27d a27d a27d * 233f * 8ea1a3bf,a3bf,8ea1a3bfv,a3bfv 2518 e29498 2518 00002518 a27d a27d a27d a27d a27d a27d a27d
+318 a27e a27e a27e * 2340 * 8ea1a3c0,a3c0,8ea1a3c0v,a3c0v 256d e295ad 256d 0000256d a27e a27e a27e a27e a27e a27e a27e
+319 a2a1 a2a1 a2a1 * 2341 * 8ea1a3c1,a3c1,8ea1a3c1v,a3c1v 256e e295ae 256e 0000256e a2a1 a2a1 a2a1 a2a1 a2a1 a2a1 a2a1
+320 a2a2 a2a2 a2a2 * 2342 * 8ea1a3c2,a3c2,8ea1a3c2v,a3c2v 2570 e295b0 2570 00002570 a2a2 a2a2 a2a2 a2a2 a2a2 a2a2 a2a2
+321 a2a3 a2a3 a2a3 * 2343 * 8ea1a3c3,a3c3,8ea1a3c3v,a3c3v 256f e295af 256f 0000256f a2a3 a2a3 a2a3 a2a3 a2a3 a2a3 a2a3
+322 a2a4 a2a4 a2a4 * 2344 * 8ea1a3c4,a3c4,8ea1a3c4v,a3c4v 2550 * * * a2a4 a2a4 a2a4 a2a4 a2a4 a2a4 a2a4
+323 a2a5 a2a5 a2a5 * 2345 * 8ea1a3c5,a3c5,8ea1a3c5v,a3c5v 255e * * * a2a5 a2a5 a2a5 a2a5 a2a5 a2a5 a2a5
+324 a2a6 a2a6 a2a6 * 2346 * 8ea1a3c6,a3c6,8ea1a3c6v,a3c6v 256a * * * a2a6 a2a6 a2a6 a2a6 a2a6 a2a6 a2a6
+325 a2a7 a2a7 a2a7 * 2347 * 8ea1a3c7,a3c7,8ea1a3c7v,a3c7v 2561 * * * a2a7 a2a7 a2a7 a2a7 a2a7 a2a7 a2a7
+326 a2a8 a2a8 a2a8 * 2348 * 8ea1a3c8,a3c8,8ea1a3c8v,a3c8v 25e2 e297a2 25e2 000025e2 a2a8 a2a8 a2a8 a2a8 a2a8 a2a8 a2a8
+327 a2a9 a2a9 a2a9 * 2349 * 8ea1a3c9,a3c9,8ea1a3c9v,a3c9v 25e3 e297a3 25e3 000025e3 a2a9 a2a9 a2a9 a2a9 a2a9 a2a9 a2a9
+328 a2aa a2aa a2aa * 234a * 8ea1a3ca,a3ca,8ea1a3cav,a3cav 25e5 e297a5 25e5 000025e5 a2aa a2aa a2aa a2aa a2aa a2aa a2aa
+329 a2ab a2ab a2ab * 234b * 8ea1a3cb,a3cb,8ea1a3cbv,a3cbv 25e4 e297a4 25e4 000025e4 a2ab a2ab a2ab a2ab a2ab a2ab a2ab
+330 a2ac a2ac a2ac * 234c * 8ea1a3cc,a3cc,8ea1a3ccv,a3ccv 2571 e295b1 2571 00002571 a2ac a2ac a2ac a2ac a2ac a2ac a2ac
+331 a2ad a2ad a2ad * 234d * 8ea1a3cd,a3cd,8ea1a3cdv,a3cdv 2572 e295b2 2572 00002572 a2ad a2ad a2ad a2ad a2ad a2ad a2ad
+332 a2ae a2ae a2ae * 234e * 8ea1a3ce,a3ce,8ea1a3cev,a3cev 2573 e295b3 2573 00002573 a2ae a2ae a2ae a2ae a2ae a2ae a2ae
+333 a2af a2af a2af * 2421 * 8ea1a4a1,a4a1,8ea1a4a1v,a4a1v ff10 efbc90 ff10 0000ff10 a2af a2af a2af a2af a2af a2af a2af
+334 a2b0 a2b0 a2b0 * 2422 * 8ea1a4a2,a4a2,8ea1a4a2v,a4a2v ff11 efbc91 ff11 0000ff11 a2b0 a2b0 a2b0 a2b0 a2b0 a2b0 a2b0
+335 a2b1 a2b1 a2b1 * 2423 * 8ea1a4a3,a4a3,8ea1a4a3v,a4a3v ff12 efbc92 ff12 0000ff12 a2b1 a2b1 a2b1 a2b1 a2b1 a2b1 a2b1
+336 a2b2 a2b2 a2b2 * 2424 * 8ea1a4a4,a4a4,8ea1a4a4v,a4a4v ff13 efbc93 ff13 0000ff13 a2b2 a2b2 a2b2 a2b2 a2b2 a2b2 a2b2
+337 a2b3 a2b3 a2b3 * 2425 * 8ea1a4a5,a4a5,8ea1a4a5v,a4a5v ff14 efbc94 ff14 0000ff14 a2b3 a2b3 a2b3 a2b3 a2b3 a2b3 a2b3
+338 a2b4 a2b4 a2b4 * 2426 * 8ea1a4a6,a4a6,8ea1a4a6v,a4a6v ff15 efbc95 ff15 0000ff15 a2b4 a2b4 a2b4 a2b4 a2b4 a2b4 a2b4
+339 a2b5 a2b5 a2b5 * 2427 * 8ea1a4a7,a4a7,8ea1a4a7v,a4a7v ff16 efbc96 ff16 0000ff16 a2b5 a2b5 a2b5 a2b5 a2b5 a2b5 a2b5
+340 a2b6 a2b6 a2b6 * 2428 * 8ea1a4a8,a4a8,8ea1a4a8v,a4a8v ff17 efbc97 ff17 0000ff17 a2b6 a2b6 a2b6 a2b6 a2b6 a2b6 a2b6
+341 a2b7 a2b7 a2b7 * 2429 * 8ea1a4a9,a4a9,8ea1a4a9v,a4a9v ff18 efbc98 ff18 0000ff18 a2b7 a2b7 a2b7 a2b7 a2b7 a2b7 a2b7
+342 a2b8 a2b8 a2b8 * 242a * 8ea1a4aa,a4aa,8ea1a4aav,a4aav ff19 efbc99 ff19 0000ff19 a2b8 a2b8 a2b8 a2b8 a2b8 a2b8 a2b8
+343 a2b9 a2b9 a2b9 * 242b * 8ea1a4ab,a4ab,8ea1a4abv,a4abv 2160 e285a0 2160 00002160 a2b9 a2b9 a2b9 a2b9 a2b9 a2b9 a2b9
+344 a2ba a2ba a2ba * 242c * 8ea1a4ac,a4ac,8ea1a4acv,a4acv 2161 e285a1 2161 00002161 a2ba a2ba a2ba a2ba a2ba a2ba a2ba
+345 a2bb a2bb a2bb * 242d * 8ea1a4ad,a4ad,8ea1a4adv,a4adv 2162 e285a2 2162 00002162 a2bb a2bb a2bb a2bb a2bb a2bb a2bb
+346 a2bc a2bc a2bc * 242e * 8ea1a4ae,a4ae,8ea1a4aev,a4aev 2163 e285a3 2163 00002163 a2bc a2bc a2bc a2bc a2bc a2bc a2bc
+347 a2bd a2bd a2bd * 242f * 8ea1a4af,a4af,8ea1a4afv,a4afv 2164 e285a4 2164 00002164 a2bd a2bd a2bd a2bd a2bd a2bd a2bd
+348 a2be a2be a2be * 2430 * 8ea1a4b0,a4b0,8ea1a4b0v,a4b0v 2165 e285a5 2165 00002165 a2be a2be a2be a2be a2be a2be a2be
+349 a2bf a2bf a2bf * 2431 * 8ea1a4b1,a4b1,8ea1a4b1v,a4b1v 2166 e285a6 2166 00002166 a2bf a2bf a2bf a2bf a2bf a2bf a2bf
+350 a2c0 a2c0 a2c0 * 2432 * 8ea1a4b2,a4b2,8ea1a4b2v,a4b2v 2167 e285a7 2167 00002167 a2c0 a2c0 a2c0 a2c0 a2c0 a2c0 a2c0
+351 a2c1 a2c1 a2c1 * 2433 * 8ea1a4b3,a4b3,8ea1a4b3v,a4b3v 2168 e285a8 2168 00002168 a2c1 a2c1 a2c1 a2c1 a2c1 a2c1 a2c1
+352 a2c2 a2c2 a2c2 * 2434 * 8ea1a4b4,a4b4,8ea1a4b4v,a4b4v 2169 e285a9 2169 00002169 a2c2 a2c2 a2c2 a2c2 a2c2 a2c2 a2c2
+353 a2c3 a2c3 a2c3 * 2435 * 8ea1a4b5,a4b5,8ea1a4b5v,a4b5v 3021 e380a1 3021 00003021 a2c3 a2c3 a2c3 a2c3 a2c3 a2c3 a2c3
+354 a2c4 a2c4 a2c4 * 2436 * 8ea1a4b6,a4b6,8ea1a4b6v,a4b6v 3022 e380a2 3022 00003022 a2c4 a2c4 a2c4 a2c4 a2c4 a2c4 a2c4
+355 a2c5 a2c5 a2c5 * 2437 * 8ea1a4b7,a4b7,8ea1a4b7v,a4b7v 3023 e380a3 3023 00003023 a2c5 a2c5 a2c5 a2c5 a2c5 a2c5 a2c5
+356 a2c6 a2c6 a2c6 * 2438 * 8ea1a4b8,a4b8,8ea1a4b8v,a4b8v 3024 e380a4 3024 00003024 a2c6 a2c6 a2c6 a2c6 a2c6 a2c6 a2c6
+357 a2c7 a2c7 a2c7 * 2439 * 8ea1a4b9,a4b9,8ea1a4b9v,a4b9v 3025 e380a5 3025 00003025 a2c7 a2c7 a2c7 a2c7 a2c7 a2c7 a2c7
+358 a2c8 a2c8 a2c8 * 243a * 8ea1a4ba,a4ba,8ea1a4bav,a4bav 3026 e380a6 3026 00003026 a2c8 a2c8 a2c8 a2c8 a2c8 a2c8 a2c8
+359 a2c9 a2c9 a2c9 * 243b * 8ea1a4bb,a4bb,8ea1a4bbv,a4bbv 3027 e380a7 3027 00003027 a2c9 a2c9 a2c9 a2c9 a2c9 a2c9 a2c9
+360 a2ca a2ca a2ca * 243c * 8ea1a4bc,a4bc,8ea1a4bcv,a4bcv 3028 e380a8 3028 00003028 a2ca a2ca a2ca a2ca a2ca a2ca a2ca
+361 a2cb a2cb a2cb * 243d * 8ea1a4bd,a4bd,8ea1a4bdv,a4bdv 3029 e380a9 3029 00003029 a2cb a2cb a2cb a2cb a2cb a2cb a2cb
+362 a2cc a2cc a2cc * 243e * 8ea1a4be,a4be,8ea1a4bev,a4bev * e380b8 3038 00003038 a2cc a2cc a2cc a2cc a2cc a2cc a2cc
+363 a2cd a2cd a2cd * 243f * 8ea1a4bf,a4bf,8ea1a4bfv,a4bfv 5344 e58d84,ee81a3,e380b9 5344,e063,3039 00005344,0000e063,00003039 fac5,a2cd a2cd a2cd a2cd a2cd a2cd fac5,a2cd
+364 a2ce a2ce a2ce * 2440 * 8ea1a4c0,a4c0,8ea1a4c0v,a4c0v * e380ba 303a 0000303a a2ce a2ce a2ce a2ce a2ce a2ce a2ce
+365 a2cf a2cf a2cf * 2441 * 8ea1a4c1,a4c1,8ea1a4c1v,a4c1v ff21 efbca1 ff21 0000ff21 a2cf a2cf a2cf a2cf a2cf a2cf a2cf
+366 a2d0 a2d0 a2d0 * 2442 * 8ea1a4c2,a4c2,8ea1a4c2v,a4c2v ff22 efbca2 ff22 0000ff22 a2d0 a2d0 a2d0 a2d0 a2d0 a2d0 a2d0
+367 a2d1 a2d1 a2d1 * 2443 * 8ea1a4c3,a4c3,8ea1a4c3v,a4c3v ff23 efbca3 ff23 0000ff23 a2d1 a2d1 a2d1 a2d1 a2d1 a2d1 a2d1
+368 a2d2 a2d2 a2d2 * 2444 * 8ea1a4c4,a4c4,8ea1a4c4v,a4c4v ff24 efbca4 ff24 0000ff24 a2d2 a2d2 a2d2 a2d2 a2d2 a2d2 a2d2
+369 a2d3 a2d3 a2d3 * 2445 * 8ea1a4c5,a4c5,8ea1a4c5v,a4c5v ff25 efbca5 ff25 0000ff25 a2d3 a2d3 a2d3 a2d3 a2d3 a2d3 a2d3
+370 a2d4 a2d4 a2d4 * 2446 * 8ea1a4c6,a4c6,8ea1a4c6v,a4c6v ff26 efbca6 ff26 0000ff26 a2d4 a2d4 a2d4 a2d4 a2d4 a2d4 a2d4
+371 a2d5 a2d5 a2d5 * 2447 * 8ea1a4c7,a4c7,8ea1a4c7v,a4c7v ff27 efbca7 ff27 0000ff27 a2d5 a2d5 a2d5 a2d5 a2d5 a2d5 a2d5
+372 a2d6 a2d6 a2d6 * 2448 * 8ea1a4c8,a4c8,8ea1a4c8v,a4c8v ff28 efbca8 ff28 0000ff28 a2d6 a2d6 a2d6 a2d6 a2d6 a2d6 a2d6
+373 a2d7 a2d7 a2d7 * 2449 * 8ea1a4c9,a4c9,8ea1a4c9v,a4c9v ff29 efbca9 ff29 0000ff29 a2d7 a2d7 a2d7 a2d7 a2d7 a2d7 a2d7
+374 a2d8 a2d8 a2d8 * 244a * 8ea1a4ca,a4ca,8ea1a4cav,a4cav ff2a efbcaa ff2a 0000ff2a a2d8 a2d8 a2d8 a2d8 a2d8 a2d8 a2d8
+375 a2d9 a2d9 a2d9 * 244b * 8ea1a4cb,a4cb,8ea1a4cbv,a4cbv ff2b efbcab ff2b 0000ff2b a2d9 a2d9 a2d9 a2d9 a2d9 a2d9 a2d9
+376 a2da a2da a2da * 244c * 8ea1a4cc,a4cc,8ea1a4ccv,a4ccv ff2c efbcac ff2c 0000ff2c a2da a2da a2da a2da a2da a2da a2da
+377 a2db a2db a2db * 244d * 8ea1a4cd,a4cd,8ea1a4cdv,a4cdv ff2d efbcad ff2d 0000ff2d a2db a2db a2db a2db a2db a2db a2db
+378 a2dc a2dc a2dc * 244e * 8ea1a4ce,a4ce,8ea1a4cev,a4cev ff2e efbcae ff2e 0000ff2e a2dc a2dc a2dc a2dc a2dc a2dc a2dc
+379 a2dd a2dd a2dd * 244f * 8ea1a4cf,a4cf,8ea1a4cfv,a4cfv ff2f efbcaf ff2f 0000ff2f a2dd a2dd a2dd a2dd a2dd a2dd a2dd
+380 a2de a2de a2de * 2450 * 8ea1a4d0,a4d0,8ea1a4d0v,a4d0v ff30 efbcb0 ff30 0000ff30 a2de a2de a2de a2de a2de a2de a2de
+381 a2df a2df a2df * 2451 * 8ea1a4d1,a4d1,8ea1a4d1v,a4d1v ff31 efbcb1 ff31 0000ff31 a2df a2df a2df a2df a2df a2df a2df
+382 a2e0 a2e0 a2e0 * 2452 * 8ea1a4d2,a4d2,8ea1a4d2v,a4d2v ff32 efbcb2 ff32 0000ff32 a2e0 a2e0 a2e0 a2e0 a2e0 a2e0 a2e0
+383 a2e1 a2e1 a2e1 * 2453 * 8ea1a4d3,a4d3,8ea1a4d3v,a4d3v ff33 efbcb3 ff33 0000ff33 a2e1 a2e1 a2e1 a2e1 a2e1 a2e1 a2e1
+384 a2e2 a2e2 a2e2 * 2454 * 8ea1a4d4,a4d4,8ea1a4d4v,a4d4v ff34 efbcb4 ff34 0000ff34 a2e2 a2e2 a2e2 a2e2 a2e2 a2e2 a2e2
+385 a2e3 a2e3 a2e3 * 2455 * 8ea1a4d5,a4d5,8ea1a4d5v,a4d5v ff35 efbcb5 ff35 0000ff35 a2e3 a2e3 a2e3 a2e3 a2e3 a2e3 a2e3
+386 a2e4 a2e4 a2e4 * 2456 * 8ea1a4d6,a4d6,8ea1a4d6v,a4d6v ff36 efbcb6 ff36 0000ff36 a2e4 a2e4 a2e4 a2e4 a2e4 a2e4 a2e4
+387 a2e5 a2e5 a2e5 * 2457 * 8ea1a4d7,a4d7,8ea1a4d7v,a4d7v ff37 efbcb7 ff37 0000ff37 a2e5 a2e5 a2e5 a2e5 a2e5 a2e5 a2e5
+388 a2e6 a2e6 a2e6 * 2458 * 8ea1a4d8,a4d8,8ea1a4d8v,a4d8v ff38 efbcb8 ff38 0000ff38 a2e6 a2e6 a2e6 a2e6 a2e6 a2e6 a2e6
+389 a2e7 a2e7 a2e7 * 2459 * 8ea1a4d9,a4d9,8ea1a4d9v,a4d9v ff39 efbcb9 ff39 0000ff39 a2e7 a2e7 a2e7 a2e7 a2e7 a2e7 a2e7
+390 a2e8 a2e8 a2e8 * 245a * 8ea1a4da,a4da,8ea1a4dav,a4dav ff3a efbcba ff3a 0000ff3a a2e8 a2e8 a2e8 a2e8 a2e8 a2e8 a2e8
+391 a2e9 a2e9 a2e9 * 245b * 8ea1a4db,a4db,8ea1a4dbv,a4dbv ff41 efbd81 ff41 0000ff41 a2e9 a2e9 a2e9 a2e9 a2e9 a2e9 a2e9
+392 a2ea a2ea a2ea * 245c * 8ea1a4dc,a4dc,8ea1a4dcv,a4dcv ff42 efbd82 ff42 0000ff42 a2ea a2ea a2ea a2ea a2ea a2ea a2ea
+393 a2eb a2eb a2eb * 245d * 8ea1a4dd,a4dd,8ea1a4ddv,a4ddv ff43 efbd83 ff43 0000ff43 a2eb a2eb a2eb a2eb a2eb a2eb a2eb
+394 a2ec a2ec a2ec * 245e * 8ea1a4de,a4de,8ea1a4dev,a4dev ff44 efbd84 ff44 0000ff44 a2ec a2ec a2ec a2ec a2ec a2ec a2ec
+395 a2ed a2ed a2ed * 245f * 8ea1a4df,a4df,8ea1a4dfv,a4dfv ff45 efbd85 ff45 0000ff45 a2ed a2ed a2ed a2ed a2ed a2ed a2ed
+396 a2ee a2ee a2ee * 2460 * 8ea1a4e0,a4e0,8ea1a4e0v,a4e0v ff46 efbd86 ff46 0000ff46 a2ee a2ee a2ee a2ee a2ee a2ee a2ee
+397 a2ef a2ef a2ef * 2461 * 8ea1a4e1,a4e1,8ea1a4e1v,a4e1v ff47 efbd87 ff47 0000ff47 a2ef a2ef a2ef a2ef a2ef a2ef a2ef
+398 a2f0 a2f0 a2f0 * 2462 * 8ea1a4e2,a4e2,8ea1a4e2v,a4e2v ff48 efbd88 ff48 0000ff48 a2f0 a2f0 a2f0 a2f0 a2f0 a2f0 a2f0
+399 a2f1 a2f1 a2f1 * 2463 * 8ea1a4e3,a4e3,8ea1a4e3v,a4e3v ff49 efbd89 ff49 0000ff49 a2f1 a2f1 a2f1 a2f1 a2f1 a2f1 a2f1
+400 a2f2 a2f2 a2f2 * 2464 * 8ea1a4e4,a4e4,8ea1a4e4v,a4e4v ff4a efbd8a ff4a 0000ff4a a2f2 a2f2 a2f2 a2f2 a2f2 a2f2 a2f2
+401 a2f3 a2f3 a2f3 * 2465 * 8ea1a4e5,a4e5,8ea1a4e5v,a4e5v ff4b efbd8b ff4b 0000ff4b a2f3 a2f3 a2f3 a2f3 a2f3 a2f3 a2f3
+402 a2f4 a2f4 a2f4 * 2466 * 8ea1a4e6,a4e6,8ea1a4e6v,a4e6v ff4c efbd8c ff4c 0000ff4c a2f4 a2f4 a2f4 a2f4 a2f4 a2f4 a2f4
+403 a2f5 a2f5 a2f5 * 2467 * 8ea1a4e7,a4e7,8ea1a4e7v,a4e7v ff4d efbd8d ff4d 0000ff4d a2f5 a2f5 a2f5 a2f5 a2f5 a2f5 a2f5
+404 a2f6 a2f6 a2f6 * 2468 * 8ea1a4e8,a4e8,8ea1a4e8v,a4e8v ff4e efbd8e ff4e 0000ff4e a2f6 a2f6 a2f6 a2f6 a2f6 a2f6 a2f6
+405 a2f7 a2f7 a2f7 * 2469 * 8ea1a4e9,a4e9,8ea1a4e9v,a4e9v ff4f efbd8f ff4f 0000ff4f a2f7 a2f7 a2f7 a2f7 a2f7 a2f7 a2f7
+406 a2f8 a2f8 a2f8 * 246a * 8ea1a4ea,a4ea,8ea1a4eav,a4eav ff50 efbd90 ff50 0000ff50 a2f8 a2f8 a2f8 a2f8 a2f8 a2f8 a2f8
+407 a2f9 a2f9 a2f9 * 246b * 8ea1a4eb,a4eb,8ea1a4ebv,a4ebv ff51 efbd91 ff51 0000ff51 a2f9 a2f9 a2f9 a2f9 a2f9 a2f9 a2f9
+408 a2fa a2fa a2fa * 246c * 8ea1a4ec,a4ec,8ea1a4ecv,a4ecv ff52 efbd92 ff52 0000ff52 a2fa a2fa a2fa a2fa a2fa a2fa a2fa
+409 a2fb a2fb a2fb * 246d * 8ea1a4ed,a4ed,8ea1a4edv,a4edv ff53 efbd93 ff53 0000ff53 a2fb a2fb a2fb a2fb a2fb a2fb a2fb
+410 a2fc a2fc a2fc * 246e * 8ea1a4ee,a4ee,8ea1a4eev,a4eev ff54 efbd94 ff54 0000ff54 a2fc a2fc a2fc a2fc a2fc a2fc a2fc
+411 a2fd a2fd a2fd * 246f * 8ea1a4ef,a4ef,8ea1a4efv,a4efv ff55 efbd95 ff55 0000ff55 a2fd a2fd a2fd a2fd a2fd a2fd a2fd
+412 a2fe a2fe a2fe * 2470 * 8ea1a4f0,a4f0,8ea1a4f0v,a4f0v ff56 efbd96 ff56 0000ff56 a2fe a2fe a2fe a2fe a2fe a2fe a2fe
+413 a340 a340 a340 * 2471 * 8ea1a4f1,a4f1,8ea1a4f1v,a4f1v ff57 efbd97 ff57 0000ff57 a340 a340 a340 a340 a340 a340 a340
+414 a341 a341 a341 * 2472 * 8ea1a4f2,a4f2,8ea1a4f2v,a4f2v ff58 efbd98 ff58 0000ff58 a341 a341 a341 a341 a341 a341 a341
+415 a342 a342 a342 * 2473 * 8ea1a4f3,a4f3,8ea1a4f3v,a4f3v ff59 efbd99 ff59 0000ff59 a342 a342 a342 a342 a342 a342 a342
+416 a343 a343 a343 * 2474 * 8ea1a4f4,a4f4,8ea1a4f4v,a4f4v ff5a efbd9a ff5a 0000ff5a a343 a343 a343 a343 a343 a343 a343
+417 a344 a344 a344 * 2475 * 8ea1a4f5,a4f5,8ea1a4f5v,a4f5v 0391 ce91 0391 00000391 a344 a344 a344 a344 a344 a344 a344
+418 a345 a345 a345 * 2476 * 8ea1a4f6,a4f6,8ea1a4f6v,a4f6v 0392 ce92 0392 00000392 a345 a345 a345 a345 a345 a345 a345
+419 a346 a346 a346 * 2477 * 8ea1a4f7,a4f7,8ea1a4f7v,a4f7v 0393 ce93 0393 00000393 a346 a346 a346 a346 a346 a346 a346
+420 a347 a347 a347 * 2478 * 8ea1a4f8,a4f8,8ea1a4f8v,a4f8v 0394 ce94 0394 00000394 a347 a347 a347 a347 a347 a347 a347
+421 a348 a348 a348 * 2479 * 8ea1a4f9,a4f9,8ea1a4f9v,a4f9v 0395 ce95 0395 00000395 a348 a348 a348 a348 a348 a348 a348
+422 a349 a349 a349 * 247a * 8ea1a4fa,a4fa,8ea1a4fav,a4fav 0396 ce96 0396 00000396 a349 a349 a349 a349 a349 a349 a349
+423 a34a a34a a34a * 247b * 8ea1a4fb,a4fb,8ea1a4fbv,a4fbv 0397 ce97 0397 00000397 a34a a34a a34a a34a a34a a34a a34a
+424 a34b a34b a34b * 247c * 8ea1a4fc,a4fc,8ea1a4fcv,a4fcv 0398 ce98 0398 00000398 a34b a34b a34b a34b a34b a34b a34b
+425 a34c a34c a34c * 247d * 8ea1a4fd,a4fd,8ea1a4fdv,a4fdv 0399 ce99 0399 00000399 a34c a34c a34c a34c a34c a34c a34c
+426 a34d a34d a34d * 247e * 8ea1a4fe,a4fe,8ea1a4fev,a4fev 039a ce9a 039a 0000039a a34d a34d a34d a34d a34d a34d a34d
+427 a34e a34e a34e * 2521 * 8ea1a5a1,a5a1,8ea1a5a1v,a5a1v 039b ce9b 039b 0000039b a34e a34e a34e a34e a34e a34e a34e
+428 a34f a34f a34f * 2522 * 8ea1a5a2,a5a2,8ea1a5a2v,a5a2v 039c ce9c 039c 0000039c a34f a34f a34f a34f a34f a34f a34f
+429 a350 a350 a350 * 2523 * 8ea1a5a3,a5a3,8ea1a5a3v,a5a3v 039d ce9d 039d 0000039d a350 a350 a350 a350 a350 a350 a350
+430 a351 a351 a351 * 2524 * 8ea1a5a4,a5a4,8ea1a5a4v,a5a4v 039e ce9e 039e 0000039e a351 a351 a351 a351 a351 a351 a351
+431 a352 a352 a352 * 2525 * 8ea1a5a5,a5a5,8ea1a5a5v,a5a5v 039f ce9f 039f 0000039f a352 a352 a352 a352 a352 a352 a352
+432 a353 a353 a353 * 2526 * 8ea1a5a6,a5a6,8ea1a5a6v,a5a6v 03a0 cea0 03a0 000003a0 a353 a353 a353 a353 a353 a353 a353
+433 a354 a354 a354 * 2527 * 8ea1a5a7,a5a7,8ea1a5a7v,a5a7v 03a1 cea1 03a1 000003a1 a354 a354 a354 a354 a354 a354 a354
+434 a355 a355 a355 * 2528 * 8ea1a5a8,a5a8,8ea1a5a8v,a5a8v 03a3 cea3 03a3 000003a3 a355 a355 a355 a355 a355 a355 a355
+435 a356 a356 a356 * 2529 * 8ea1a5a9,a5a9,8ea1a5a9v,a5a9v 03a4 cea4 03a4 000003a4 a356 a356 a356 a356 a356 a356 a356
+436 a357 a357 a357 * 252a * 8ea1a5aa,a5aa,8ea1a5aav,a5aav 03a5 cea5 03a5 000003a5 a357 a357 a357 a357 a357 a357 a357
+437 a358 a358 a358 * 252b * 8ea1a5ab,a5ab,8ea1a5abv,a5abv 03a6 cea6 03a6 000003a6 a358 a358 a358 a358 a358 a358 a358
+438 a359 a359 a359 * 252c * 8ea1a5ac,a5ac,8ea1a5acv,a5acv 03a7 cea7 03a7 000003a7 a359 a359 a359 a359 a359 a359 a359
+439 a35a a35a a35a * 252d * 8ea1a5ad,a5ad,8ea1a5adv,a5adv 03a8 cea8 03a8 000003a8 a35a a35a a35a a35a a35a a35a a35a
+440 a35b a35b a35b * 252e * 8ea1a5ae,a5ae,8ea1a5aev,a5aev 03a9 cea9 03a9 000003a9 a35b a35b a35b a35b a35b a35b a35b
+441 a35c a35c a35c * 252f * 8ea1a5af,a5af,8ea1a5afv,a5afv 03b1 ceb1 03b1 000003b1 a35c a35c a35c a35c a35c a35c a35c
+442 a35d a35d a35d * 2530 * 8ea1a5b0,a5b0,8ea1a5b0v,a5b0v 03b2 ceb2 03b2 000003b2 a35d a35d a35d a35d a35d a35d a35d
+443 a35e a35e a35e * 2531 * 8ea1a5b1,a5b1,8ea1a5b1v,a5b1v 03b3 ceb3 03b3 000003b3 a35e a35e a35e a35e a35e a35e a35e
+444 a35f a35f a35f * 2532 * 8ea1a5b2,a5b2,8ea1a5b2v,a5b2v 03b4 ceb4 03b4 000003b4 a35f a35f a35f a35f a35f a35f a35f
+445 a360 a360 a360 * 2533 * 8ea1a5b3,a5b3,8ea1a5b3v,a5b3v 03b5 ceb5 03b5 000003b5 a360 a360 a360 a360 a360 a360 a360
+446 a361 a361 a361 * 2534 * 8ea1a5b4,a5b4,8ea1a5b4v,a5b4v 03b6 ceb6 03b6 000003b6 a361 a361 a361 a361 a361 a361 a361
+447 a362 a362 a362 * 2535 * 8ea1a5b5,a5b5,8ea1a5b5v,a5b5v 03b7 ceb7 03b7 000003b7 a362 a362 a362 a362 a362 a362 a362
+448 a363 a363 a363 * 2536 * 8ea1a5b6,a5b6,8ea1a5b6v,a5b6v 03b8 ceb8 03b8 000003b8 a363 a363 a363 a363 a363 a363 a363
+449 a364 a364 a364 * 2537 * 8ea1a5b7,a5b7,8ea1a5b7v,a5b7v 03b9 ceb9 03b9 000003b9 a364 a364 a364 a364 a364 a364 a364
+450 a365 a365 a365 * 2538 * 8ea1a5b8,a5b8,8ea1a5b8v,a5b8v 03ba ceba 03ba 000003ba a365 a365 a365 a365 a365 a365 a365
+451 a366 a366 a366 * 2539 * 8ea1a5b9,a5b9,8ea1a5b9v,a5b9v 03bb cebb 03bb 000003bb a366 a366 a366 a366 a366 a366 a366
+452 a367 a367 a367 * 253a * 8ea1a5ba,a5ba,8ea1a5bav,a5bav 03bc cebc 03bc 000003bc a367 a367 a367 a367 a367 a367 a367
+453 a368 a368 a368 * 253b * 8ea1a5bb,a5bb,8ea1a5bbv,a5bbv 03bd cebd 03bd 000003bd a368 a368 a368 a368 a368 a368 a368
+454 a369 a369 a369 * 253c * 8ea1a5bc,a5bc,8ea1a5bcv,a5bcv 03be cebe 03be 000003be a369 a369 a369 a369 a369 a369 a369
+455 a36a a36a a36a * 253d * 8ea1a5bd,a5bd,8ea1a5bdv,a5bdv 03bf cebf 03bf 000003bf a36a a36a a36a a36a a36a a36a a36a
+456 a36b a36b a36b * 253e * 8ea1a5be,a5be,8ea1a5bev,a5bev 03c0 cf80 03c0 000003c0 a36b a36b a36b a36b a36b a36b a36b
+457 a36c a36c a36c * 253f * 8ea1a5bf,a5bf,8ea1a5bfv,a5bfv 03c1 cf81 03c1 000003c1 a36c a36c a36c a36c a36c a36c a36c
+458 a36d a36d a36d * 2540 * 8ea1a5c0,a5c0,8ea1a5c0v,a5c0v 03c3 cf83 03c3 000003c3 a36d a36d a36d a36d a36d a36d a36d
+459 a36e a36e a36e * 2541 * 8ea1a5c1,a5c1,8ea1a5c1v,a5c1v 03c4 cf84 03c4 000003c4 a36e a36e a36e a36e a36e a36e a36e
+460 a36f a36f a36f * 2542 * 8ea1a5c2,a5c2,8ea1a5c2v,a5c2v 03c5 cf85 03c5 000003c5 a36f a36f a36f a36f a36f a36f a36f
+461 a370 a370 a370 * 2543 * 8ea1a5c3,a5c3,8ea1a5c3v,a5c3v 03c6 cf86 03c6 000003c6 a370 a370 a370 a370 a370 a370 a370
+462 a371 a371 a371 * 2544 * 8ea1a5c4,a5c4,8ea1a5c4v,a5c4v 03c7 cf87 03c7 000003c7 a371 a371 a371 a371 a371 a371 a371
+463 a372 a372 a372 * 2545 * 8ea1a5c5,a5c5,8ea1a5c5v,a5c5v 03c8 cf88 03c8 000003c8 a372 a372 a372 a372 a372 a372 a372
+464 a373 a373 a373 * 2546 * 8ea1a5c6,a5c6,8ea1a5c6v,a5c6v 03c9 cf89 03c9 000003c9 a373 a373 a373 a373 a373 a373 a373
+465 a374 a374 a374 * 2547 * 8ea1a5c7,a5c7,8ea1a5c7v,a5c7v 3105 e38485 3105 00003105 a374 a374 a374 a374 a374 a374 a374
+466 a375 a375 a375 * 2548 * 8ea1a5c8,a5c8,8ea1a5c8v,a5c8v 3106 e38486 3106 00003106 a375 a375 a375 a375 a375 a375 a375
+467 a376 a376 a376 * 2549 * 8ea1a5c9,a5c9,8ea1a5c9v,a5c9v 3107 e38487 3107 00003107 a376 a376 a376 a376 a376 a376 a376
+468 a377 a377 a377 * 254a * 8ea1a5ca,a5ca,8ea1a5cav,a5cav 3108 e38488 3108 00003108 a377 a377 a377 a377 a377 a377 a377
+469 a378 a378 a378 * 254b * 8ea1a5cb,a5cb,8ea1a5cbv,a5cbv 3109 e38489 3109 00003109 a378 a378 a378 a378 a378 a378 a378
+470 a379 a379 a379 * 254c * 8ea1a5cc,a5cc,8ea1a5ccv,a5ccv 310a e3848a 310a 0000310a a379 a379 a379 a379 a379 a379 a379
+471 a37a a37a a37a * 254d * 8ea1a5cd,a5cd,8ea1a5cdv,a5cdv 310b e3848b 310b 0000310b a37a a37a a37a a37a a37a a37a a37a
+472 a37b a37b a37b * 254e * 8ea1a5ce,a5ce,8ea1a5cev,a5cev 310c e3848c 310c 0000310c a37b a37b a37b a37b a37b a37b a37b
+473 a37c a37c a37c * 254f * 8ea1a5cf,a5cf,8ea1a5cfv,a5cfv 310d e3848d 310d 0000310d a37c a37c a37c a37c a37c a37c a37c
+474 a37d a37d a37d * 2550 * 8ea1a5d0,a5d0,8ea1a5d0v,a5d0v 310e e3848e 310e 0000310e a37d a37d a37d a37d a37d a37d a37d
+475 a37e a37e a37e * 2551 * 8ea1a5d1,a5d1,8ea1a5d1v,a5d1v 310f e3848f 310f 0000310f a37e a37e a37e a37e a37e a37e a37e
+476 a3a1 a3a1 a3a1 * 2552 * 8ea1a5d2,a5d2,8ea1a5d2v,a5d2v 3110 e38490 3110 00003110 a3a1 a3a1 a3a1 a3a1 a3a1 a3a1 a3a1
+477 a3a2 a3a2 a3a2 * 2553 * 8ea1a5d3,a5d3,8ea1a5d3v,a5d3v 3111 e38491 3111 00003111 a3a2 a3a2 a3a2 a3a2 a3a2 a3a2 a3a2
+478 a3a3 a3a3 a3a3 * 2554 * 8ea1a5d4,a5d4,8ea1a5d4v,a5d4v 3112 e38492 3112 00003112 a3a3 a3a3 a3a3 a3a3 a3a3 a3a3 a3a3
+479 a3a4 a3a4 a3a4 * 2555 * 8ea1a5d5,a5d5,8ea1a5d5v,a5d5v 3113 e38493 3113 00003113 a3a4 a3a4 a3a4 a3a4 a3a4 a3a4 a3a4
+480 a3a5 a3a5 a3a5 * 2556 * 8ea1a5d6,a5d6,8ea1a5d6v,a5d6v 3114 e38494 3114 00003114 a3a5 a3a5 a3a5 a3a5 a3a5 a3a5 a3a5
+481 a3a6 a3a6 a3a6 * 2557 * 8ea1a5d7,a5d7,8ea1a5d7v,a5d7v 3115 e38495 3115 00003115 a3a6 a3a6 a3a6 a3a6 a3a6 a3a6 a3a6
+482 a3a7 a3a7 a3a7 * 2558 * 8ea1a5d8,a5d8,8ea1a5d8v,a5d8v 3116 e38496 3116 00003116 a3a7 a3a7 a3a7 a3a7 a3a7 a3a7 a3a7
+483 a3a8 a3a8 a3a8 * 2559 * 8ea1a5d9,a5d9,8ea1a5d9v,a5d9v 3117 e38497 3117 00003117 a3a8 a3a8 a3a8 a3a8 a3a8 a3a8 a3a8
+484 a3a9 a3a9 a3a9 * 255a * 8ea1a5da,a5da,8ea1a5dav,a5dav 3118 e38498 3118 00003118 a3a9 a3a9 a3a9 a3a9 a3a9 a3a9 a3a9
+485 a3aa a3aa a3aa * 255b * 8ea1a5db,a5db,8ea1a5dbv,a5dbv 3119 e38499 3119 00003119 a3aa a3aa a3aa a3aa a3aa a3aa a3aa
+486 a3ab a3ab a3ab * 255c * 8ea1a5dc,a5dc,8ea1a5dcv,a5dcv 311a e3849a 311a 0000311a a3ab a3ab a3ab a3ab a3ab a3ab a3ab
+487 a3ac a3ac a3ac * 255d * 8ea1a5dd,a5dd,8ea1a5ddv,a5ddv 311b e3849b 311b 0000311b a3ac a3ac a3ac a3ac a3ac a3ac a3ac
+488 a3ad a3ad a3ad * 255e * 8ea1a5de,a5de,8ea1a5dev,a5dev 311c e3849c 311c 0000311c a3ad a3ad a3ad a3ad a3ad a3ad a3ad
+489 a3ae a3ae a3ae * 255f * 8ea1a5df,a5df,8ea1a5dfv,a5dfv 311d e3849d 311d 0000311d a3ae a3ae a3ae a3ae a3ae a3ae a3ae
+490 a3af a3af a3af * 2560 * 8ea1a5e0,a5e0,8ea1a5e0v,a5e0v 311e e3849e 311e 0000311e a3af a3af a3af a3af a3af a3af a3af
+491 a3b0 a3b0 a3b0 * 2561 * 8ea1a5e1,a5e1,8ea1a5e1v,a5e1v 311f e3849f 311f 0000311f a3b0 a3b0 a3b0 a3b0 a3b0 a3b0 a3b0
+492 a3b1 a3b1 a3b1 * 2562 * 8ea1a5e2,a5e2,8ea1a5e2v,a5e2v 3120 e384a0 3120 00003120 a3b1 a3b1 a3b1 a3b1 a3b1 a3b1 a3b1
+493 a3b2 a3b2 a3b2 * 2563 * 8ea1a5e3,a5e3,8ea1a5e3v,a5e3v 3121 e384a1 3121 00003121 a3b2 a3b2 a3b2 a3b2 a3b2 a3b2 a3b2
+494 a3b3 a3b3 a3b3 * 2564 * 8ea1a5e4,a5e4,8ea1a5e4v,a5e4v 3122 e384a2 3122 00003122 a3b3 a3b3 a3b3 a3b3 a3b3 a3b3 a3b3
+495 a3b4 a3b4 a3b4 * 2565 * 8ea1a5e5,a5e5,8ea1a5e5v,a5e5v 3123 e384a3 3123 00003123 a3b4 a3b4 a3b4 a3b4 a3b4 a3b4 a3b4
+496 a3b5 a3b5 a3b5 * 2566 * 8ea1a5e6,a5e6,8ea1a5e6v,a5e6v 3124 e384a4 3124 00003124 a3b5 a3b5 a3b5 a3b5 a3b5 a3b5 a3b5
+497 a3b6 a3b6 a3b6 * 2567 * 8ea1a5e7,a5e7,8ea1a5e7v,a5e7v 3125 e384a5 3125 00003125 a3b6 a3b6 a3b6 a3b6 a3b6 a3b6 a3b6
+498 a3b7 a3b7 a3b7 * 2568 * 8ea1a5e8,a5e8,8ea1a5e8v,a5e8v 3126 e384a6 3126 00003126 a3b7 a3b7 a3b7 a3b7 a3b7 a3b7 a3b7
+499 a3b8 a3b8 a3b8 * 2569 * 8ea1a5e9,a5e9,8ea1a5e9v,a5e9v 3127 e384a7 3127 00003127 a3b8 a3b8 a3b8 a3b8 a3b8 a3b8 a3b8
+500 a3b9 a3b9 a3b9 * 256a * 8ea1a5ea,a5ea,8ea1a5eav,a5eav 3128 e384a8 3128 00003128 a3b9 a3b9 a3b9 a3b9 a3b9 a3b9 a3b9
+501 a3ba a3ba a3ba * 256b * 8ea1a5eb,a5eb,8ea1a5ebv,a5ebv 3129 e384a9 3129 00003129 a3ba a3ba a3ba a3ba a3ba a3ba a3ba
+502 a3bb a3bb a3bb * 256c * 8ea1a5ec,a5ec,8ea1a5ecv,a5ecv 02d9 cb99 02d9 000002d9 a3bb a3bb a3bb a3bb a3bb a3bb a3bb
+503 a3bd a3bd a3bd * 256e * 8ea1a5ee,a5ee,8ea1a5eev,a5eev 02ca cb8a 02ca 000002ca a3bd a3bd a3bd a3bd a3bd a3bd a3bd
+504 a3be a3be a3be * 256f * 8ea1a5ef,a5ef,8ea1a5efv,a5efv 02c7 cb87,cc8c 02c7,030c 000002c7,0000030c a3be a3be a3be a3be a3be a3be a3be
+505 a3bf a3bf a3bf * 2570 * 8ea1a5f0,a5f0,8ea1a5f0v,a5f0v 02cb cb8b 02cb 000002cb a3bf a3bf a3bf a3bf a3bf a3bf a3bf
+506 * * c6a1 * 2621 * 8ea1a6a1,a6a1,8ea1a6a1v,a6a1v 2460 e291a0,ef9ab1 2460,f6b1 00002460,0000f6b1 c6a1 * * * * * c6a1
+507 * * c6a2 * 2622 * 8ea1a6a2,a6a2,8ea1a6a2v,a6a2v 2461 e291a1,ef9ab2 2461,f6b2 00002461,0000f6b2 c6a2 * * * * * c6a2
+508 * * c6a3 * 2623 * 8ea1a6a3,a6a3,8ea1a6a3v,a6a3v 2462 e291a2,ef9ab3 2462,f6b3 00002462,0000f6b3 c6a3 * * * * * c6a3
+509 * * c6a4 * 2624 * 8ea1a6a4,a6a4,8ea1a6a4v,a6a4v 2463 e291a3,ef9ab4 2463,f6b4 00002463,0000f6b4 c6a4 * * * * * c6a4
+510 * * c6a5 * 2625 * 8ea1a6a5,a6a5,8ea1a6a5v,a6a5v 2464 e291a4,ef9ab5 2464,f6b5 00002464,0000f6b5 c6a5 * * * * * c6a5
+511 * * c6a6 * 2626 * 8ea1a6a6,a6a6,8ea1a6a6v,a6a6v 2465 e291a5,ef9ab6 2465,f6b6 00002465,0000f6b6 c6a6 * * * * * c6a6
+512 * * c6a7 * 2627 * 8ea1a6a7,a6a7,8ea1a6a7v,a6a7v 2466 e291a6,ef9ab7 2466,f6b7 00002466,0000f6b7 c6a7 * * * * * c6a7
+513 * * c6a8 * 2628 * 8ea1a6a8,a6a8,8ea1a6a8v,a6a8v 2467 e291a7,ef9ab8 2467,f6b8 00002467,0000f6b8 c6a8 * * * * * c6a8
+514 * * c6a9 * 2629 * 8ea1a6a9,a6a9,8ea1a6a9v,a6a9v 2468 e291a8,ef9ab9 2468,f6b9 00002468,0000f6b9 c6a9 * * * * * c6a9
+515 * * c6aa * 262a * 8ea1a6aa,a6aa,8ea1a6aav,a6aav 2469 e291a9,ef9aba 2469,f6ba 00002469,0000f6ba c6aa * * * * * c6aa
+516 * * c6ab * 262b * 8ea1a6ab,a6ab,8ea1a6abv,a6abv 2474 e291b4,ef9abb 2474,f6bb 00002474,0000f6bb c6ab * * * * * c6ab
+517 * * c6ac * 262c * 8ea1a6ac,a6ac,8ea1a6acv,a6acv 2475 e291b5,ef9abc 2475,f6bc 00002475,0000f6bc c6ac * * * * * c6ac
+518 * * c6ad * 262d * 8ea1a6ad,a6ad,8ea1a6adv,a6adv 2476 e291b6,ef9abd 2476,f6bd 00002476,0000f6bd c6ad * * * * * c6ad
+519 * * c6ae * 262e * 8ea1a6ae,a6ae,8ea1a6aev,a6aev 2477 e291b7,ef9abe 2477,f6be 00002477,0000f6be c6ae * * * * * c6ae
+520 * * c6af * 262f * 8ea1a6af,a6af,8ea1a6afv,a6afv 2478 e291b8,ef9abf 2478,f6bf 00002478,0000f6bf c6af * * * * * c6af
+521 * * c6b0 * 2630 * 8ea1a6b0,a6b0,8ea1a6b0v,a6b0v 2479 e291b9,ef9b80 2479,f6c0 00002479,0000f6c0 c6b0 * * * * * c6b0
+522 * * c6b1 * 2631 * 8ea1a6b1,a6b1,8ea1a6b1v,a6b1v 247a e291ba,ef9b81 247a,f6c1 0000247a,0000f6c1 c6b1 * * * * * c6b1
+523 * * c6b2 * 2632 * 8ea1a6b2,a6b2,8ea1a6b2v,a6b2v 247b e291bb,ef9b82 247b,f6c2 0000247b,0000f6c2 c6b2 * * * * * c6b2
+524 * * c6b3 * 2633 * 8ea1a6b3,a6b3,8ea1a6b3v,a6b3v 247c e291bc,ef9b83 247c,f6c3 0000247c,0000f6c3 c6b3 * * * * * c6b3
+525 * * c6b4 * 2634 * 8ea1a6b4,a6b4,8ea1a6b4v,a6b4v 247d e291bd,ef9b84 247d,f6c4 0000247d,0000f6c4 c6b4 * * * * * c6b4
+526 * * c6b5 * 2635 * 8ea1a6b5,a6b5,8ea1a6b5v,a6b5v 2170 e285b0,ef9b85 2170,f6c5 00002170,0000f6c5 c6b5 * * * * * c6b5
+527 * * c6b6 * 2636 * 8ea1a6b6,a6b6,8ea1a6b6v,a6b6v 2171 e285b1,ef9b86 2171,f6c6 00002171,0000f6c6 c6b6 * * * * * c6b6
+528 * * c6b7 * 2637 * 8ea1a6b7,a6b7,8ea1a6b7v,a6b7v 2172 e285b2,ef9b87 2172,f6c7 00002172,0000f6c7 c6b7 * * * * * c6b7
+529 * * c6b8 * 2638 * 8ea1a6b8,a6b8,8ea1a6b8v,a6b8v 2173 e285b3,ef9b88 2173,f6c8 00002173,0000f6c8 c6b8 * * * * * c6b8
+530 * * c6b9 * 2639 * 8ea1a6b9,a6b9,8ea1a6b9v,a6b9v 2174 e285b4,ef9b89 2174,f6c9 00002174,0000f6c9 c6b9 * * * * * c6b9
+531 * * c6ba * 263a * 8ea1a6ba,a6ba,8ea1a6bav,a6bav 2175 e285b5,ef9b8a 2175,f6ca 00002175,0000f6ca c6ba * * * * * c6ba
+532 * * c6bb * 263b * 8ea1a6bb,a6bb,8ea1a6bbv,a6bbv 2176 e285b6,ef9b8b 2176,f6cb 00002176,0000f6cb c6bb * * * * * c6bb
+533 * * c6bc * 263c * 8ea1a6bc,a6bc,8ea1a6bcv,a6bcv 2177 e285b7,ef9b8c 2177,f6cc 00002177,0000f6cc c6bc * * * * * c6bc
+534 * * c6bd * 263d * 8ea1a6bd,a6bd,8ea1a6bdv,a6bdv 2178 e285b8,ef9b8d 2178,f6cd 00002178,0000f6cd c6bd * * * * * c6bd
+535 * * c6be * 263e * 8ea1a6be,a6be,8ea1a6bev,a6bev 2179 e285b9,ef9b8e 2179,f6ce 00002179,0000f6ce c6be * * * * * c6be
+536 * * * * 2722 * 8ea1a7a2,a7a2,8ea1a7a2v,a7a2v 4e28 e4b8a8,e2bc81 4e28,2f01 00004e28,00002f01 * * * * * * *
+537 * * c6bf * 2723 * 8ea1a7a3,a7a3,8ea1a7a3v,a7a3v 4e36 e4b8b6,e2bc82,ef9b8f 4e36,2f02,f6cf 00004e36,00002f02,0000f6cf c6bf * * * * * c6bf
+538 * * c6c0 * 2724 * 8ea1a7a4,a7a4,8ea1a7a4v,a7a4v 4e3f e4b8bf,e2bc83,ef9b90 4e3f,2f03,f6d0 00004e3f,00002f03,0000f6d0 c6c0 * * * * * c6c0
+539 * * c6c1 * 2726 * 8ea1a7a6,a7a6,8ea1a7a6v,a7a6v 4e85 e2bc85,e4ba85,ef9b91 2f05,4e85,f6d1 00002f05,00004e85,0000f6d1 c6c1 * * * * * c6c1
+540 * * c6c2 * 2728 * 8ea1a7a8,a7a8,8ea1a7a8v,a7a8v 4ea0 e2bc87,e4baa0,ef9b92 2f07,4ea0,f6d2 00002f07,00004ea0,0000f6d2 c6c2 * * * * * c6c2
+541 * * c6c3 * 272d * 8ea1a7ad,a7ad,8ea1a7adv,a7adv 5182 e58682,e2bc8c,ef9b93 5182,2f0c,f6d3 00005182,00002f0c,0000f6d3 c6c3 * * * * * c6c3
+542 * * c6c4 * 272e * 8ea1a7ae,a7ae,8ea1a7aev,a7aev 5196 e58696,e2bc8d,ef9b94 5196,2f0d,f6d4 00005196,00002f0d,0000f6d4 c6c4 * * * * * c6c4
+543 * * c6c5 * 272f * 8ea1a7af,a7af,8ea1a7afv,a7afv 51ab e586ab,e2bc8e,ef9b95 51ab,2f0e,f6d5 000051ab,00002f0e,0000f6d5 c6c5 * * * * * c6c5
+544 * * c6c6 * 2734 * 8ea1a7b4,a7b4,8ea1a7b4v,a7b4v 52f9 e2bc93,e58bb9,ef9b96 2f13,52f9,f6d6 00002f13,000052f9,0000f6d6 c6c6 * * * * * c6c6
+545 * * c6c7 * 2737 * 8ea1a7b7,a7b7,8ea1a7b7v,a7b7v 5338 e2bc96,e58cb8,ef9b97 2f16,5338,f6d7 00002f16,00005338,0000f6d7 c6c7 * * * * * c6c7
+546 * * c6c8 * 273a * 8ea1a7ba,a7ba,8ea1a7bav,a7bav 5369 e2bc99,e58da9,ef9b98 2f19,5369,f6d8 00002f19,00005369,0000f6d8 c6c8 * * * * * c6c8
+547 * * c6c9 * 273c * 8ea1a7bc,a7bc,8ea1a7bcv,a7bcv 53b6 e2bc9b,e58eb6,ef9b99 2f1b,53b6,f6d9 00002f1b,000053b6,0000f6d9 c6c9 * * * * * c6c9
+548 * * c6ca * 2742 * 8ea1a7c2,a7c2,8ea1a7c2v,a7c2v 5902,590a e2bca2,e5a48a,ef9b9a 2f22,590a,f6da 00002f22,0000590a,0000f6da c6ca * * * * * c6ca
+549 * * c6cb * 2747 * 8ea1a7c7,a7c7,8ea1a7c7v,a7c7v 5b80 e2bca7,e5ae80,ef9b9b 2f27,5b80,f6db 00002f27,00005b80,0000f6db c6cb * * * * * c6cb
+550 * * c6cc * 274e * 8ea1a7ce,a7ce,8ea1a7cev,a7cev 5ddb e2bcae,e5b79b,ef9b9c 2f2e,5ddb,f6dc 00002f2e,00005ddb,0000f6dc c6cc * 91b0 * * * c6cc
+551 * * c6cd * 2753 * 8ea1a7d3,a7d3,8ea1a7d3v,a7d3v 2f33,5e7a e5b9ba,e2bcb3,ef9b9d 5e7a,2f33,f6dd 00005e7a,00002f33,0000f6dd c6cd * * * * * c6cd
+552 * * c6ce * 2754 * 8ea1a7d4,a7d4,8ea1a7d4v,a7d4v 5e7f e5b9bf,e2bcb4,ef9b9e 5e7f,2f34,f6de 00005e7f,00002f34,0000f6de c6ce * 9159 * * * c6ce
+553 * * c6cf * 2755 * 8ea1a7d5,a7d5,8ea1a7d5v,a7d5v 5ef4 e5bbb4,e2bcb5 5ef4,2f35 00005ef4,00002f35 c6cf * * * * * *
+554 * * c6d0 * 2759 * 8ea1a7d9,a7d9,8ea1a7d9v,a7d9v 5f50 e5bd90,e2bcb9,ef9ba0 5f50,2f39,f6e0 00005f50,00002f39,0000f6e0 c6d0 * * * * * c6d0
+555 * * c6d1 * 275a * 8ea1a7da,a7da,8ea1a7dav,a7dav 5f61 e5bda1,e2bcba,ef9ba1 5f61,2f3a,f6e1 00005f61,00002f3a,0000f6e1 c6d1 * * * * * c6d1
+556 * * c6d2 * 2761 * 8ea1a7e1,a7e1,8ea1a7e1v,a7e1v 6534 e2bd81,e694b4,ef9ba2 2f41,6534,f6e2 00002f41,00006534,0000f6e2 c6d2 * * * * * c6d2
+557 * * c6d3 * 2766 * 8ea1a7e6,a7e6,8ea1a7e6v,a7e6v 65e0 e2bd86,e697a0 2f46,65e0 00002f46,000065e0 c6d3 * * * * * *
+558 * * c6d4 * 2829 * 8ea1a8a9,a8a9,8ea1a8a9v,a8a9v 7592 e79692,ef9ba4,e2bda7 7592,f6e4,2f67 00007592,0000f6e4,00002f67 c6d4 * * * * * c6d4
+559 * * c6d5 * 282a * 8ea1a8aa,a8aa,8ea1a8aav,a8aav 7676 e799b6,e2bda8 7676,2f68 00007676,00002f68 c6d5 * * * * * *
+560 * * c6d6 * 2863 * 8ea1a8e3,a8e3,8ea1a8e3v,a8e3v 8fb5 e2bea1,e8beb5,ef9ba6 2fa1,8fb5,f6e6 00002fa1,00008fb5,0000f6e6 c6d6 * 90c4 * * * c6d6
+561 * * c6d7 * 286c * 8ea1a8ec,a8ec,8ea1a8ecv,a8ecv 96b6 e2beaa,e99ab6 2faa,96b6 00002faa,000096b6 c6d7 * * * * * *
+562 * a3c0 * * 4221 * 8ea1c2a1,c2a1,8ea1c2a1v,c2a1v 2400 e29080 2400 00002400 * * * * * * *
+563 * a3c1 * * 4222 * 8ea1c2a2,c2a2,8ea1c2a2v,c2a2v 2401 e29081 2401 00002401 * * * * * * *
+564 * a3c2 * * 4223 * 8ea1c2a3,c2a3,8ea1c2a3v,c2a3v 2402 e29082 2402 00002402 * * * * * * *
+565 * a3c3 * * 4224 * 8ea1c2a4,c2a4,8ea1c2a4v,c2a4v 2403 e29083 2403 00002403 * * * * * * *
+566 * a3c4 * * 4225 * 8ea1c2a5,c2a5,8ea1c2a5v,c2a5v 2404 e29084 2404 00002404 * * * * * * *
+567 * a3c5 * * 4226 * 8ea1c2a6,c2a6,8ea1c2a6v,c2a6v 2405 e29085 2405 00002405 * * * * * * *
+568 * a3c6 * * 4227 * 8ea1c2a7,c2a7,8ea1c2a7v,c2a7v 2406 e29086 2406 00002406 * * * * * * *
+569 * a3c7 * * 4228 * 8ea1c2a8,c2a8,8ea1c2a8v,c2a8v 2407 e29087 2407 00002407 * * * * * * *
+570 * a3c8 * * 4229 * 8ea1c2a9,c2a9,8ea1c2a9v,c2a9v 2408 e29088 2408 00002408 * * * * * * *
+571 * a3c9 * * 422a * 8ea1c2aa,c2aa,8ea1c2aav,c2aav 2409 e29089 2409 00002409 * * * * * * *
+572 * a3ca * * 422b * 8ea1c2ab,c2ab,8ea1c2abv,c2abv 240a e2908a 240a 0000240a * * * * * * *
+573 * a3cb * * 422c * 8ea1c2ac,c2ac,8ea1c2acv,c2acv 240b e2908b 240b 0000240b * * * * * * *
+574 * a3cc * * 422d * 8ea1c2ad,c2ad,8ea1c2adv,c2adv 240c e2908c 240c 0000240c * * * * * * *
+575 * a3cd * * 422e * 8ea1c2ae,c2ae,8ea1c2aev,c2aev 240d e2908d 240d 0000240d * * * * * * *
+576 * a3ce * * 422f * 8ea1c2af,c2af,8ea1c2afv,c2afv 240e e2908e 240e 0000240e * * * * * * *
+577 * a3cf * * 4230 * 8ea1c2b0,c2b0,8ea1c2b0v,c2b0v 240f e2908f 240f 0000240f * * * * * * *
+578 * a3d0 * * 4231 * 8ea1c2b1,c2b1,8ea1c2b1v,c2b1v 2410 e29090 2410 00002410 * * * * * * *
+579 * a3d1 * * 4232 * 8ea1c2b2,c2b2,8ea1c2b2v,c2b2v 2411 e29091 2411 00002411 * * * * * * *
+580 * a3d2 * * 4233 * 8ea1c2b3,c2b3,8ea1c2b3v,c2b3v 2412 e29092 2412 00002412 * * * * * * *
+581 * a3d3 * * 4234 * 8ea1c2b4,c2b4,8ea1c2b4v,c2b4v 2413 e29093 2413 00002413 * * * * * * *
+582 * a3d4 * * 4235 * 8ea1c2b5,c2b5,8ea1c2b5v,c2b5v 2414 e29094 2414 00002414 * * * * * * *
+583 * a3d5 * * 4236 * 8ea1c2b6,c2b6,8ea1c2b6v,c2b6v 2415 e29095 2415 00002415 * * * * * * *
+584 * a3d6 * * 4237 * 8ea1c2b7,c2b7,8ea1c2b7v,c2b7v 2416 e29096 2416 00002416 * * * * * * *
+585 * a3d7 * * 4238 * 8ea1c2b8,c2b8,8ea1c2b8v,c2b8v 2417 e29097 2417 00002417 * * * * * * *
+586 * a3d8 * * 4239 * 8ea1c2b9,c2b9,8ea1c2b9v,c2b9v 2418 e29098 2418 00002418 * * * * * * *
+587 * a3d9 * * 423a * 8ea1c2ba,c2ba,8ea1c2bav,c2bav 2419 e29099 2419 00002419 * * * * * * *
+588 * a3da * * 423b * 8ea1c2bb,c2bb,8ea1c2bbv,c2bbv 241a e2909a 241a 0000241a * * * * * * *
+589 * a3db * * 423c * 8ea1c2bc,c2bc,8ea1c2bcv,c2bcv 241b e2909b 241b 0000241b * * * * * * *
+590 * a3dc * * 423d * 8ea1c2bd,c2bd,8ea1c2bdv,c2bdv 241c e2909c 241c 0000241c * * * * * * *
+591 * a3dd * * 423e * 8ea1c2be,c2be,8ea1c2bev,c2bev 241d e2909d 241d 0000241d * * * * * * *
+592 * a3de * * 423f * 8ea1c2bf,c2bf,8ea1c2bfv,c2bfv 241e e2909e 241e 0000241e * * * * * * *
+593 * a3df * * 4240 * 8ea1c2c0,c2c0,8ea1c2c0v,c2c0v 241f e2909f 241f 0000241f * * * * * * *
+594 * a3e0 * * 4241 * 8ea1c2c1,c2c1,8ea1c2c1v,c2c1v 2421 e290a1 2421 00002421 * * * * * * *
+595 a440 a440 a440 * 2721,4421 * 8ea1a7a1,8ea1c4a1,a7a1,c4a1,8ea1a7a1v,8ea1c4a1v,a7a1v,c4a1v 4e00 e2bc80,e4b880 2f00,4e00 00002f00,00004e00 a440 a440 a440 a440 a440 a440 a440
+596 a441 a441 a441 * 2725,4422 * 8ea1a7a5,8ea1c4a2,a7a5,c4a2,8ea1a7a5v,8ea1c4a2v,a7a5v,c4a2v 4e59 e2bc84,e4b999 2f04,4e59 00002f04,00004e59 a441 a441 a441 a441 a441 a441 a441
+597 a442 a442 a442 * 4423 * 8ea1c4a3,c4a3,8ea1c4a3v,c4a3v 4e01 e4b881 4e01 00004e01 a442 a442 a442 a442 a442 a442 a442
+598 a443 a443 a443 * 4424 * 8ea1c4a4,c4a4,8ea1c4a4v,c4a4v 4e03 e4b883 4e03 00004e03 a443 a443 a443 a443 a443 a443 a443
+599 a444 a444 a444 * 4425 * 8ea1c4a5,c4a5,8ea1c4a5v,c4a5v 4e43 e4b983 4e43 00004e43 a444 a444 a444 a444 a444 a444 a444
+600 a445 a445 a445 * 4426 * 8ea1c4a6,c4a6,8ea1c4a6v,c4a6v 4e5d e4b99d 4e5d 00004e5d a445 a445 a445 a445 a445 a445 a445
+601 a446 a446 a446 * 4427 * 8ea1c4a7,c4a7,8ea1c4a7v,c4a7v 4e86 e4ba86 4e86 00004e86 a446 a446 a446 a446 a446 a446 a446
+602 a447 a447 a447 * 2727,4428 * 8ea1a7a7,8ea1c4a8,a7a7,c4a8,8ea1a7a7v,8ea1c4a8v,a7a7v,c4a8v 4e8c e2bc86,e4ba8c 2f06,4e8c 00002f06,00004e8c a447 a447 a447 a447 a447 a447 a447
+603 a448 a448 a448 * 2729,4429 * 8ea1a7a9,8ea1c4a9,a7a9,c4a9,8ea1a7a9v,8ea1c4a9v,a7a9v,c4a9v 4eba e4baba,e2bc88 4eba,2f08 00004eba,00002f08 a448 a448 a448 a448 a448 a448 a448
+604 a449 a449 a449 * 272a,442a * 8ea1a7aa,8ea1c4aa,a7aa,c4aa,8ea1a7aav,8ea1c4aav,a7aav,c4aav 513f e584bf,e2bc89 513f,2f09 0000513f,00002f09 a449 a449 a449 a449 a449 a449 a449
+605 a44a a44a a44a * 272b,442b * 8ea1a7ab,8ea1c4ab,a7ab,c4ab,8ea1a7abv,8ea1c4abv,a7abv,c4abv 5165 e585a5,e2bc8a 5165,2f0a 00005165,00002f0a a44a a44a a44a a44a a44a a44a a44a
+606 a44b a44b a44b * 272c,442c * 8ea1a7ac,8ea1c4ac,a7ac,c4ac,8ea1a7acv,8ea1c4acv,a7acv,c4acv 516b e585ab,e2bc8b 516b,2f0b 0000516b,00002f0b a44b a44b a44b a44b a44b a44b a44b
+607 a44c a44c a44c * 2730,442d * 8ea1a7b0,8ea1c4ad,a7b0,c4ad,8ea1a7b0v,8ea1c4adv,a7b0v,c4adv 51e0 e2bc8f,e587a0 2f0f,51e0 00002f0f,000051e0 a44c a44c a44c a44c a44c a44c a44c
+608 a44d a44d a44d * 2732,442e * 8ea1a7b2,8ea1c4ae,a7b2,c4ae,8ea1a7b2v,8ea1c4aev,a7b2v,c4aev 5200 e2bc91,e58880 2f11,5200 00002f11,00005200 a44d a44d a44d a44d a44d a44d a44d
+609 a44e a44e a44e * 442f * 8ea1c4af,c4af,8ea1c4afv,c4afv 5201 e58881 5201 00005201 a44e a44e a44e a44e a44e a44e a44e
+610 a44f a44f a44f * 2733,4430 * 8ea1a7b3,8ea1c4b0,a7b3,c4b0,8ea1a7b3v,8ea1c4b0v,a7b3v,c4b0v 529b e2bc92,e58a9b 2f12,529b 00002f12,0000529b a44f a44f a44f a44f a44f a44f a44f
+611 a450 a450 a450 * 2735,4431 * 8ea1a7b5,8ea1c4b1,a7b5,c4b1,8ea1a7b5v,8ea1c4b1v,a7b5v,c4b1v 5315 e2bc94,e58c95 2f14,5315 00002f14,00005315 a450 a450 a450 a450 a450 a450 a450
+612 a451 a451 a451 * 2738,4432 * 8ea1a7b8,8ea1c4b2,a7b8,c4b2,8ea1a7b8v,8ea1c4b2v,a7b8v,c4b2v 5341 e58d81,e2bc97 5341,2f17 00005341,00002f17 a451 a451 a451 a451 a451 a451 a451
+613 a452 a452 a452 * 2739,4433 * 8ea1a7b9,8ea1c4b3,a7b9,c4b3,8ea1a7b9v,8ea1c4b3v,a7b9v,c4b3v 535c e58d9c,e2bc98 535c,2f18 0000535c,00002f18 a452 a452 a452 a452 a452 a452 a452
+614 a453 a453 a453 * 273d,4434 * 8ea1a7bd,8ea1c4b4,a7bd,c4b4,8ea1a7bdv,8ea1c4b4v,a7bdv,c4b4v 53c8 e2bc9c,e58f88 2f1c,53c8 00002f1c,000053c8 a453 a453 a453 a453 a453 a453 a453
+615 a454 a454 a454 * 4435 * 8ea1c4b5,c4b5,8ea1c4b5v,c4b5v 4e09 e4b889 4e09 00004e09 a454 a454 a454 a454 a454 a454 a454
+616 a455 a455 a455 * 4436 * 8ea1c4b6,c4b6,8ea1c4b6v,c4b6v 4e0b e4b88b 4e0b 00004e0b a455 a455 a455 a455 a455 a455 a455
+617 a456 a456 a456 * 4437 * 8ea1c4b7,c4b7,8ea1c4b7v,c4b7v 4e08 e4b888 4e08 00004e08 a456 a456 a456 a456 a456 a456 a456
+618 a457 a457 a457 * 4438 * 8ea1c4b8,c4b8,8ea1c4b8v,c4b8v 4e0a e4b88a 4e0a 00004e0a a457 a457 a457 a457 a457 a457 a457
+619 a458 a458 a458 * 4439 * 8ea1c4b9,c4b9,8ea1c4b9v,c4b9v 4e2b e4b8ab 4e2b 00004e2b a458 a458 a458 a458 a458 a458 a458
+620 a459 a459 a459 * 443a * 8ea1c4ba,c4ba,8ea1c4bav,c4bav 4e38 e4b8b8 4e38 00004e38 a459 a459 a459 a459 a459 a459 a459
+621 a45a a45a a45a * 443b * 8ea1c4bb,c4bb,8ea1c4bbv,c4bbv 51e1 e587a1 51e1 000051e1 a45a a45a a45a a45a a45a a45a a45a
+622 a45b a45b a45b * 443c * 8ea1c4bc,c4bc,8ea1c4bcv,c4bcv 4e45 e4b985 4e45 00004e45 a45b a45b a45b a45b a45b a45b a45b
+623 a45c a45c a45c * 443d * 8ea1c4bd,c4bd,8ea1c4bdv,c4bdv 4e48 e4b988 4e48 00004e48 a45c a45c a45c a45c a45c a45c a45c
+624 a45d a45d a45d * 443e * 8ea1c4be,c4be,8ea1c4bev,c4bev 4e5f e4b99f 4e5f 00004e5f a45d a45d a45d a45d a45d a45d a45d
+625 a45e a45e a45e * 443f * 8ea1c4bf,c4bf,8ea1c4bfv,c4bfv 4e5e e4b99e 4e5e 00004e5e a45e a45e a45e a45e a45e a45e a45e
+626 a45f a45f a45f * 4440 * 8ea1c4c0,c4c0,8ea1c4c0v,c4c0v 4e8e e4ba8e 4e8e 00004e8e a45f a45f a45f a45f a45f a45f a45f
+627 a460 a460 a460 * 4441 * 8ea1c4c1,c4c1,8ea1c4c1v,c4c1v 4ea1 e4baa1 4ea1 00004ea1 a460 a460 a460 a460 a460 a460 a460
+628 a461,c94a a461,c94a a461,c94a * 4442 * 8ea1c4c2,c4c2,8ea1c4c2v,c4c2v 5140,fa0c e58580,efa88c 5140,fa0c 00005140,0000fa0c c94a,a461 a461,c94a a461,c94a a461,c94a a461,c94a a461,c94a c94a,a461
+629 a462 a462 a462 * 4443 * 8ea1c4c3,c4c3,8ea1c4c3v,c4c3v 5203 e58883 5203 00005203 a462 a462 a462 a462 a462 a462 a462
+630 a463 a463 a463 * 4444 * 8ea1c4c4,c4c4,8ea1c4c4v,c4c4v 52fa e58bba 52fa 000052fa a463 a463 a463 a463 a463 a463 a463
+631 a464 a464 a464 * 4445 * 8ea1c4c5,c4c5,8ea1c4c5v,c4c5v 5343 e58d83 5343 00005343 a464 a464 a464 a464 a464 a464 a464
+632 a465 a465 a465 * 4446 * 8ea1c4c6,c4c6,8ea1c4c6v,c4c6v 53c9 e58f89 53c9 000053c9 a465 a465 a465 a465 a465 a465 a465
+633 a466 a466 a466 * 273e,4447 * 8ea1a7be,8ea1c4c7,a7be,c4c7,8ea1a7bev,8ea1c4c7v,a7bev,c4c7v 53e3 e2bc9d,e58fa3 2f1d,53e3 00002f1d,000053e3 a466 a466 a466 a466 a466 a466 a466
+634 a467 a467 a467 * 2740,4448 * 8ea1a7c0,8ea1c4c8,a7c0,c4c8,8ea1a7c0v,8ea1c4c8v,a7c0v,c4c8v 571f e59c9f,e2bc9f 571f,2f1f 0000571f,00002f1f a467 a467 a467 a467 a467 a467 a467
+635 a468 a468 a468 * 2741,4449 * 8ea1a7c1,8ea1c4c9,a7c1,c4c9,8ea1a7c1v,8ea1c4c9v,a7c1v,c4c9v 58eb e5a3ab,e2bca0 58eb,2f20 000058eb,00002f20 a468 a468 a468 a468 a468 a468 a468
+636 a469 a469 a469 * 2743,444a * 8ea1a7c3,8ea1c4ca,a7c3,c4ca,8ea1a7c3v,8ea1c4cav,a7c3v,c4cav 5915 e5a495,e2bca3 5915,2f23 00005915,00002f23 a469 a469 a469 a469 a469 a469 a469
+637 a46a a46a a46a * 2744,444b * 8ea1a7c4,8ea1c4cb,a7c4,c4cb,8ea1a7c4v,8ea1c4cbv,a7c4v,c4cbv 5927 e5a4a7,e2bca4 5927,2f24 00005927,00002f24 a46a a46a a46a a46a a46a a46a a46a
+638 a46b a46b a46b * 2745,444c * 8ea1a7c5,8ea1c4cc,a7c5,c4cc,8ea1a7c5v,8ea1c4ccv,a7c5v,c4ccv 5973 e5a5b3,e2bca5 5973,2f25 00005973,00002f25 a46b a46b a46b a46b a46b a46b a46b
+639 a46c a46c a46c * 2746,444d * 8ea1a7c6,8ea1c4cd,a7c6,c4cd,8ea1a7c6v,8ea1c4cdv,a7c6v,c4cdv 5b50 e2bca6,e5ad90 2f26,5b50 00002f26,00005b50 a46c a46c a46c a46c a46c a46c a46c
+640 a46d a46d a46d * 444e * 8ea1c4ce,c4ce,8ea1c4cev,c4cev 5b51 e5ad91 5b51 00005b51 a46d a46d a46d a46d a46d a46d a46d
+641 a46e a46e a46e * 444f * 8ea1c4cf,c4cf,8ea1c4cfv,c4cfv 5b53 e5ad93 5b53 00005b53 a46e a46e a46e a46e a46e a46e a46e
+642 a46f a46f a46f * 2748,4450 * 8ea1a7c8,8ea1c4d0,a7c8,c4d0,8ea1a7c8v,8ea1c4d0v,a7c8v,c4d0v 5bf8 e5afb8,e2bca8 5bf8,2f28 00005bf8,00002f28 a46f a46f a46f a46f a46f a46f a46f
+643 a470 a470 a470 * 2749,4451 * 8ea1a7c9,8ea1c4d1,a7c9,c4d1,8ea1a7c9v,8ea1c4d1v,a7c9v,c4d1v 5c0f e5b08f,e2bca9 5c0f,2f29 00005c0f,00002f29 a470 a470 a470 a470 a470 a470 a470
+644 a471 a471 a471 * 274a,4452 * 8ea1a7ca,8ea1c4d2,a7ca,c4d2,8ea1a7cav,8ea1c4d2v,a7cav,c4d2v 5c22 e5b0a2,e2bcaa 5c22,2f2a 00005c22,00002f2a a471 a471 a471 a471 a471 a471 a471
+645 a472 a472 a472 * 274b,4453 * 8ea1a7cb,8ea1c4d3,a7cb,c4d3,8ea1a7cbv,8ea1c4d3v,a7cbv,c4d3v 5c38 e5b0b8,e2bcab 5c38,2f2b 00005c38,00002f2b a472 a472 a472 a472 a472 a472 a472
+646 a473 a473 a473 * 274d,4454 * 8ea1a7cd,8ea1c4d4,a7cd,c4d4,8ea1a7cdv,8ea1c4d4v,a7cdv,c4d4v 5c71 e2bcad,e5b1b1 2f2d,5c71 00002f2d,00005c71 a473 a473 a473 a473 a473 a473 a473
+647 a474 a474 a474 * 4455 * 8ea1c4d5,c4d5,8ea1c4d5v,c4d5v 5ddd e5b79d 5ddd 00005ddd a474 a474 a474 a474 a474 a474 a474
+648 a475 a475 a475 * 274f,4456 * 8ea1a7cf,8ea1c4d6,a7cf,c4d6,8ea1a7cfv,8ea1c4d6v,a7cfv,c4d6v 5de5 e5b7a5,e2bcaf 5de5,2f2f 00005de5,00002f2f a475 a475 a475 a475 a475 a475 a475
+649 a476 a476 a476 * 2750,4457 * 8ea1a7d0,8ea1c4d7,a7d0,c4d7,8ea1a7d0v,8ea1c4d7v,a7d0v,c4d7v 5df1 e2bcb0,e5b7b1 2f30,5df1 00002f30,00005df1 a476 a476 a476 a476 a476 a476 a476
+650 a477 a477 a477 * 4458 * 8ea1c4d8,c4d8,8ea1c4d8v,c4d8v 5df2 e5b7b2 5df2 00005df2 a477 a477 a477 a477 a477 a477 a477
+651 a478 a478 a478 * 4459 * 8ea1c4d9,c4d9,8ea1c4d9v,c4d9v 5df3 e5b7b3 5df3 00005df3 a478 a478 a478 a478 a478 a478 a478
+652 a479 a479 a479 * 2751,445a * 8ea1a7d1,8ea1c4da,a7d1,c4da,8ea1a7d1v,8ea1c4dav,a7d1v,c4dav 5dfe e5b7be,e2bcb1 5dfe,2f31 00005dfe,00002f31 a479 a479 a479 a479 a479 a479 a479
+653 a47a a47a a47a * 2752,445b * 8ea1a7d2,8ea1c4db,a7d2,c4db,8ea1a7d2v,8ea1c4dbv,a7d2v,c4dbv 5e72 e5b9b2,e2bcb2 5e72,2f32 00005e72,00002f32 a47a a47a a47a a47a a47a a47a a47a
+654 a47b a47b a47b * 2756,445c * 8ea1a7d6,8ea1c4dc,a7d6,c4dc,8ea1a7d6v,8ea1c4dcv,a7d6v,c4dcv 5efe e5bbbe,e2bcb6 5efe,2f36 00005efe,00002f36 a47b a47b a47b a47b a47b a47b a47b
+655 a47c a47c a47c * 2757,445d * 8ea1a7d7,8ea1c4dd,a7d7,c4dd,8ea1a7d7v,8ea1c4ddv,a7d7v,c4ddv 5f0b e5bc8b,e2bcb7 5f0b,2f37 00005f0b,00002f37 a47c a47c a47c a47c a47c a47c a47c
+656 a47d a47d a47d * 2758,445e * 8ea1a7d8,8ea1c4de,a7d8,c4de,8ea1a7d8v,8ea1c4dev,a7d8v,c4dev 5f13 e5bc93,e2bcb8 5f13,2f38 00005f13,00002f38 a47d a47d a47d a47d a47d a47d a47d
+657 a47e a47e a47e * 445f * 8ea1c4df,c4df,8ea1c4dfv,c4dfv 624d e6898d 624d 0000624d a47e a47e a47e a47e a47e a47e a47e
+658 a4a1 a4a1 a4a1 * 4460 * 8ea1c4e0,c4e0,8ea1c4e0v,c4e0v 4e11 e4b891 4e11 00004e11 a4a1 a4a1 a4a1 a4a1 a4a1 a4a1 a4a1
+659 a4a2 a4a2 a4a2 * 4461 * 8ea1c4e1,c4e1,8ea1c4e1v,c4e1v 4e10 e4b890 4e10 00004e10 a4a2 a4a2 a4a2 a4a2 a4a2 a4a2 a4a2
+660 a4a3 a4a3 a4a3 * 4462 * 8ea1c4e2,c4e2,8ea1c4e2v,c4e2v 4e0d e4b88d 4e0d 00004e0d a4a3 a4a3 a4a3 a4a3 a4a3 a4a3 a4a3
+661 a4a4 a4a4 a4a4 * 4463 * 8ea1c4e3,c4e3,8ea1c4e3v,c4e3v 4e2d e4b8ad 4e2d 00004e2d a4a4 a4a4 a4a4 a4a4 a4a4 a4a4 a4a4
+662 a4a5 a4a5 a4a5 * 4464 * 8ea1c4e4,c4e4,8ea1c4e4v,c4e4v 4e30 e4b8b0 4e30 00004e30 a4a5 a4a5 a4a5 a4a5 a4a5 a4a5 a4a5
+663 a4a6 a4a6 a4a6 * 4465 * 8ea1c4e5,c4e5,8ea1c4e5v,c4e5v 4e39 e4b8b9 4e39 00004e39 a4a6 a4a6 a4a6 a4a6 a4a6 a4a6 a4a6
+664 a4a7 a4a7 a4a7 * 4466 * 8ea1c4e6,c4e6,8ea1c4e6v,c4e6v 4e4b e4b98b 4e4b 00004e4b a4a7 a4a7 a4a7 a4a7 a4a7 a4a7 a4a7
+665 a4a8 a4a8 a4a8 * 4467 * 8ea1c4e7,c4e7,8ea1c4e7v,c4e7v 5c39 e5b0b9 5c39 00005c39 a4a8 a4a8 a4a8 a4a8 a4a8 a4a8 a4a8
+666 a4a9 a4a9 a4a9 * 4468 * 8ea1c4e8,c4e8,8ea1c4e8v,c4e8v 4e88 e4ba88 4e88 00004e88 a4a9 a4a9 a4a9 a4a9 a4a9 a4a9 a4a9
+667 a4aa a4aa a4aa * 4469 * 8ea1c4e9,c4e9,8ea1c4e9v,c4e9v 4e91 e4ba91 4e91 00004e91 a4aa a4aa a4aa a4aa a4aa a4aa a4aa
+668 a4ab a4ab a4ab * 446a * 8ea1c4ea,c4ea,8ea1c4eav,c4eav 4e95 e4ba95 4e95 00004e95 a4ab a4ab a4ab a4ab a4ab a4ab a4ab
+669 a4ac a4ac a4ac * 446b * 8ea1c4eb,c4eb,8ea1c4ebv,c4ebv 4e92 e4ba92 4e92 00004e92 a4ac a4ac a4ac a4ac a4ac a4ac a4ac
+670 a4ad a4ad a4ad * 446c * 8ea1c4ec,c4ec,8ea1c4ecv,c4ecv 4e94 e4ba94 4e94 00004e94 a4ad a4ad a4ad a4ad a4ad a4ad a4ad
+671 a4ae a4ae a4ae * 446d * 8ea1c4ed,c4ed,8ea1c4edv,c4edv 4ea2 e4baa2 4ea2 00004ea2 a4ae a4ae a4ae a4ae a4ae a4ae a4ae
+672 a4af a4af a4af * 446e * 8ea1c4ee,c4ee,8ea1c4eev,c4eev 4ec1 e4bb81 4ec1 00004ec1 a4af a4af a4af a4af a4af a4af a4af
+673 a4b0 a4b0 a4b0 * 446f * 8ea1c4ef,c4ef,8ea1c4efv,c4efv 4ec0 e4bb80 4ec0 00004ec0 a4b0 a4b0 a4b0 a4b0 a4b0 a4b0 a4b0
+674 a4b1 a4b1 a4b1 * 4470 * 8ea1c4f0,c4f0,8ea1c4f0v,c4f0v 4ec3 e4bb83 4ec3 00004ec3 a4b1 a4b1 a4b1 a4b1 a4b1 a4b1 a4b1
+675 a4b2 a4b2 a4b2 * 4471 * 8ea1c4f1,c4f1,8ea1c4f1v,c4f1v 4ec6 e4bb86 4ec6 00004ec6 a4b2 a4b2 a4b2 a4b2 a4b2 a4b2 a4b2
+676 a4b3 a4b3 a4b3 * 4472 * 8ea1c4f2,c4f2,8ea1c4f2v,c4f2v 4ec7 e4bb87 4ec7 00004ec7 a4b3 a4b3 a4b3 a4b3 a4b3 a4b3 a4b3
+677 a4b4 a4b4 a4b4 * 4473 * 8ea1c4f3,c4f3,8ea1c4f3v,c4f3v 4ecd e4bb8d 4ecd 00004ecd a4b4 a4b4 a4b4 a4b4 a4b4 a4b4 a4b4
+678 a4b5 a4b5 a4b5 * 4474 * 8ea1c4f4,c4f4,8ea1c4f4v,c4f4v 4eca e4bb8a 4eca 00004eca a4b5 a4b5 a4b5 a4b5 a4b5 a4b5 a4b5
+679 a4b6 a4b6 a4b6 * 4475 * 8ea1c4f5,c4f5,8ea1c4f5v,c4f5v 4ecb e4bb8b 4ecb 00004ecb a4b6 a4b6 a4b6 a4b6 a4b6 a4b6 a4b6
+680 a4b7 a4b7 a4b7 * 4476 * 8ea1c4f6,c4f6,8ea1c4f6v,c4f6v 4ec4 e4bb84 4ec4 00004ec4 a4b7 a4b7 a4b7 a4b7 a4b7 a4b7 a4b7
+681 a4b8 a4b8 a4b8 * 4477 * 8ea1c4f7,c4f7,8ea1c4f7v,c4f7v 5143 e58583 5143 00005143 a4b8 a4b8 a4b8 a4b8 a4b8 a4b8 a4b8
+682 a4b9 a4b9 a4b9 * 4478 * 8ea1c4f8,c4f8,8ea1c4f8v,c4f8v 5141 e58581 5141 00005141 a4b9 a4b9 a4b9 a4b9 a4b9 a4b9 a4b9
+683 a4ba a4ba a4ba * 4479 * 8ea1c4f9,c4f9,8ea1c4f9v,c4f9v 5167 e585a7 5167 00005167 a4ba a4ba a4ba a4ba a4ba a4ba a4ba
+684 a4bb a4bb a4bb * 447a * 8ea1c4fa,c4fa,8ea1c4fav,c4fav 516d e585ad 516d 0000516d a4bb a4bb a4bb a4bb a4bb a4bb a4bb
+685 a4bc a4bc a4bc * 447b * 8ea1c4fb,c4fb,8ea1c4fbv,c4fbv 516e e585ae 516e 0000516e a4bc a4bc a4bc a4bc a4bc a4bc a4bc
+686 a4bd a4bd a4bd * 447c * 8ea1c4fc,c4fc,8ea1c4fcv,c4fcv 516c e585ac 516c 0000516c a4bd a4bd a4bd a4bd a4bd a4bd a4bd
+687 a4be a4be a4be * 447d * 8ea1c4fd,c4fd,8ea1c4fdv,c4fdv 5197 e58697 5197 00005197 a4be a4be a4be a4be a4be a4be a4be
+688 a4bf a4bf a4bf * 447e * 8ea1c4fe,c4fe,8ea1c4fev,c4fev 51f6 e587b6 51f6 000051f6 a4bf a4bf a4bf a4bf a4bf a4bf a4bf
+689 a4c0 a4c0 a4c0 * 4521 * 8ea1c5a1,c5a1,8ea1c5a1v,c5a1v 5206 e58886 5206 00005206 a4c0 a4c0 a4c0 a4c0 a4c0 a4c0 a4c0
+690 a4c1 a4c1 a4c1 * 4522 * 8ea1c5a2,c5a2,8ea1c5a2v,c5a2v 5207 e58887 5207 00005207 a4c1 a4c1 a4c1 a4c1 a4c1 a4c1 a4c1
+691 a4c2 a4c2 a4c2 * 4523 * 8ea1c5a3,c5a3,8ea1c5a3v,c5a3v 5208 e58888 5208 00005208 a4c2 a4c2 a4c2 a4c2 a4c2 a4c2 a4c2
+692 a4c3 a4c3 a4c3 * 4524 * 8ea1c5a4,c5a4,8ea1c5a4v,c5a4v 52fb e58bbb 52fb 000052fb a4c3 a4c3 a4c3 a4c3 a4c3 a4c3 a4c3
+693 a4c4 a4c4 a4c4 * 4525 * 8ea1c5a5,c5a5,8ea1c5a5v,c5a5v 52fe e58bbe 52fe 000052fe a4c4 a4c4 a4c4 a4c4 a4c4 a4c4 a4c4
+694 a4c5 a4c5 a4c5 * 4526 * 8ea1c5a6,c5a6,8ea1c5a6v,c5a6v 52ff e58bbf 52ff 000052ff a4c5 a4c5 a4c5 a4c5 a4c5 a4c5 a4c5
+695 a4c6 a4c6 a4c6 * 4527 * 8ea1c5a7,c5a7,8ea1c5a7v,c5a7v 5316 e58c96 5316 00005316 a4c6 a4c6 a4c6 a4c6 a4c6 a4c6 a4c6
+696 a4c7 a4c7 a4c7 * 4528 * 8ea1c5a8,c5a8,8ea1c5a8v,c5a8v 5339 e58cb9 5339 00005339 a4c7 a4c7 a4c7 a4c7 a4c7 a4c7 a4c7
+697 a4c8 a4c8 a4c8 * 4529 * 8ea1c5a9,c5a9,8ea1c5a9v,c5a9v 5348 e58d88 5348 00005348 a4c8 a4c8 a4c8 a4c8 a4c8 a4c8 a4c8
+698 a4c9 a4c9 a4c9 * 452a * 8ea1c5aa,c5aa,8ea1c5aav,c5aav 5347 e58d87 5347 00005347 a4c9 a4c9 a4c9 a4c9 a4c9 a4c9 a4c9
+699 a4ca a4ca a4ca * 452b * 8ea1c5ab,c5ab,8ea1c5abv,c5abv 5345 e58d85 5345 00005345 a4ca a4ca a4ca a4ca a4ca a4ca a4ca
+700 a4cb a4cb a4cb * 452c * 8ea1c5ac,c5ac,8ea1c5acv,c5acv 535e e58d9e 535e 0000535e a4cb a4cb a4cb a4cb a4cb a4cb a4cb
+701 a4cc a4cc a4cc * 452d * 8ea1c5ad,c5ad,8ea1c5adv,c5adv 5384 e58e84 5384 00005384 a4cc a4cc a4cc a4cc a4cc a4cc a4cc
+702 a4cd a4cd a4cd * 452e * 8ea1c5ae,c5ae,8ea1c5aev,c5aev 53cb e58f8b 53cb 000053cb a4cd a4cd a4cd a4cd a4cd a4cd a4cd
+703 a4ce a4ce a4ce * 452f * 8ea1c5af,c5af,8ea1c5afv,c5afv 53ca e58f8a 53ca 000053ca a4ce a4ce a4ce a4ce a4ce a4ce a4ce
+704 a4cf a4cf a4cf * 4530 * 8ea1c5b0,c5b0,8ea1c5b0v,c5b0v 53cd e58f8d 53cd 000053cd a4cf a4cf a4cf a4cf a4cf a4cf a4cf
+705 a4d0 a4d0 a4d0 * 4531 * 8ea1c5b1,c5b1,8ea1c5b1v,c5b1v 58ec e5a3ac 58ec 000058ec a4d0 a4d0 a4d0 a4d0 a4d0 a4d0 a4d0
+706 a4d1 a4d1 a4d1 * 4532 * 8ea1c5b2,c5b2,8ea1c5b2v,c5b2v 5929 e5a4a9 5929 00005929 a4d1 a4d1 a4d1 a4d1 a4d1 a4d1 a4d1
+707 a4d2 a4d2 a4d2 * 4533 * 8ea1c5b3,c5b3,8ea1c5b3v,c5b3v 592b e5a4ab 592b 0000592b a4d2 a4d2 a4d2 a4d2 a4d2 a4d2 a4d2
+708 a4d3 a4d3 a4d3 * 4534 * 8ea1c5b4,c5b4,8ea1c5b4v,c5b4v 592a e5a4aa 592a 0000592a a4d3 a4d3 a4d3 a4d3 a4d3 a4d3 a4d3
+709 a4d4 a4d4 a4d4 * 4535 * 8ea1c5b5,c5b5,8ea1c5b5v,c5b5v 592d e5a4ad 592d 0000592d a4d4 a4d4 a4d4 a4d4 a4d4 a4d4 a4d4
+710 a4d5 a4d5 a4d5 * 4536 * 8ea1c5b6,c5b6,8ea1c5b6v,c5b6v 5b54 e5ad94 5b54 00005b54 a4d5 a4d5 a4d5 a4d5 a4d5 a4d5 a4d5
+711 a4d6 a4d6 a4d6 * 4537 * 8ea1c5b7,c5b7,8ea1c5b7v,c5b7v 5c11 e5b091 5c11 00005c11 a4d6 a4d6 a4d6 a4d6 a4d6 a4d6 a4d6
+712 a4d7 a4d7 a4d7 * 4538 * 8ea1c5b8,c5b8,8ea1c5b8v,c5b8v 5c24 e5b0a4 5c24 00005c24 a4d7 a4d7 a4d7 a4d7 a4d7 a4d7 a4d7
+713 a4d8 a4d8 a4d8 * 4539 * 8ea1c5b9,c5b9,8ea1c5b9v,c5b9v 5c3a e5b0ba 5c3a 00005c3a a4d8 a4d8 a4d8 a4d8 a4d8 a4d8 a4d8
+714 a4d9 a4d9 a4d9 * 453a * 8ea1c5ba,c5ba,8ea1c5bav,c5bav 5c6f e5b1af 5c6f 00005c6f a4d9 a4d9 a4d9 a4d9 a4d9 a4d9 a4d9
+715 a4da a4da a4da * 453b * 8ea1c5bb,c5bb,8ea1c5bbv,c5bbv 5df4 e5b7b4 5df4 00005df4 a4da a4da a4da a4da a4da a4da a4da
+716 a4db a4db a4db * 453c * 8ea1c5bc,c5bc,8ea1c5bcv,c5bcv 5e7b e5b9bb 5e7b 00005e7b a4db a4db a4db a4db a4db a4db a4db
+717 a4dc a4dc a4dc * 453d * 8ea1c5bd,c5bd,8ea1c5bdv,c5bdv 5eff e5bbbf 5eff 00005eff a4dc a4dc a4dc a4dc a4dc a4dc a4dc
+718 a4dd a4dd a4dd * 453e * 8ea1c5be,c5be,8ea1c5bev,c5bev 5f14 e5bc94 5f14 00005f14 a4dd a4dd a4dd a4dd a4dd a4dd a4dd
+719 a4de a4de a4de * 453f * 8ea1c5bf,c5bf,8ea1c5bfv,c5bfv 5f15 e5bc95 5f15 00005f15 a4de a4de a4de a4de a4de a4de a4de
+720 a4df a4df a4df * 275c,4540 * 8ea1a7dc,8ea1c5c0,a7dc,c5c0,8ea1a7dcv,8ea1c5c0v,a7dcv,c5c0v 5fc3 e5bf83,e2bcbc 5fc3,2f3c 00005fc3,00002f3c a4df a4df a4df a4df a4df a4df a4df
+721 a4e0 a4e0 a4e0 * 275d,4541 * 8ea1a7dd,8ea1c5c1,a7dd,c5c1,8ea1a7ddv,8ea1c5c1v,a7ddv,c5c1v 6208 e68888,e2bcbd 6208,2f3d 00006208,00002f3d a4e0 a4e0 a4e0 a4e0 a4e0 a4e0 a4e0
+722 a4e1 a4e1 a4e1 * 275e,4542 * 8ea1a7de,8ea1c5c2,a7de,c5c2,8ea1a7dev,8ea1c5c2v,a7dev,c5c2v 6236 e688b6,e2bcbe 6236,2f3e 00006236,00002f3e a4e1 a4e1 a4e1 a4e1 a4e1 a4e1 a4e1
+723 a4e2 a4e2 a4e2 * 275f,4543 * 8ea1a7df,8ea1c5c3,a7df,c5c3,8ea1a7dfv,8ea1c5c3v,a7dfv,c5c3v 624b e6898b,e2bcbf 624b,2f3f 0000624b,00002f3f a4e2 a4e2 a4e2 a4e2 a4e2 a4e2 a4e2
+724 a4e3 a4e3 a4e3 * 4544 * 8ea1c5c4,c5c4,8ea1c5c4v,c5c4v 624e e6898e 624e 0000624e a4e3 a4e3 a4e3 a4e3 a4e3 a4e3 a4e3
+725 a4e4 a4e4 a4e4 * 2760,4545 * 8ea1a7e0,8ea1c5c5,a7e0,c5c5,8ea1a7e0v,8ea1c5c5v,a7e0v,c5c5v 652f e2bd80,e694af 2f40,652f 00002f40,0000652f a4e4 a4e4 a4e4 a4e4 a4e4 a4e4 a4e4
+726 a4e5 a4e5 a4e5 * 2762,4546 * 8ea1a7e2,8ea1c5c6,a7e2,c5c6,8ea1a7e2v,8ea1c5c6v,a7e2v,c5c6v 6587 e69687,e2bd82 6587,2f42 00006587,00002f42 a4e5 a4e5 a4e5 a4e5 a4e5 a4e5 a4e5
+727 a4e6 a4e6 a4e6 * 2763,4547 * 8ea1a7e3,8ea1c5c7,a7e3,c5c7,8ea1a7e3v,8ea1c5c7v,a7e3v,c5c7v 6597 e69697,e2bd83 6597,2f43 00006597,00002f43 a4e6 a4e6 a4e6 a4e6 a4e6 a4e6 a4e6
+728 a4e7 a4e7 a4e7 * 2764,4548 * 8ea1a7e4,8ea1c5c8,a7e4,c5c8,8ea1a7e4v,8ea1c5c8v,a7e4v,c5c8v 65a4 e696a4,e2bd84 65a4,2f44 000065a4,00002f44 a4e7 a4e7 a4e7 a4e7 a4e7 a4e7 a4e7
+729 a4e8 a4e8 a4e8 * 2765,4549 * 8ea1a7e5,8ea1c5c9,a7e5,c5c9,8ea1a7e5v,8ea1c5c9v,a7e5v,c5c9v 65b9 e696b9,e2bd85 65b9,2f45 000065b9,00002f45 a4e8 a4e8 a4e8 a4e8 a4e8 a4e8 a4e8
+730 a4e9 a4e9 a4e9 * 2767,454a * 8ea1a7e7,8ea1c5ca,a7e7,c5ca,8ea1a7e7v,8ea1c5cav,a7e7v,c5cav 65e5 e697a5,e2bd87 65e5,2f47 000065e5,00002f47 a4e9 a4e9 a4e9 a4e9 a4e9 a4e9 a4e9
+731 a4ea a4ea a4ea * 2768,454b * 8ea1a7e8,8ea1c5cb,a7e8,c5cb,8ea1a7e8v,8ea1c5cbv,a7e8v,c5cbv 66f0 e69bb0,e2bd88 66f0,2f48 000066f0,00002f48 a4ea a4ea a4ea a4ea a4ea a4ea a4ea
+732 a4eb a4eb a4eb * 2769,454c * 8ea1a7e9,8ea1c5cc,a7e9,c5cc,8ea1a7e9v,8ea1c5ccv,a7e9v,c5ccv 2e9d,6708 e69c88,e2bd89 6708,2f49 00006708,00002f49 a4eb a4eb a4eb a4eb a4eb a4eb a4eb
+733 a4ec a4ec a4ec * 276a,454d * 8ea1a7ea,8ea1c5cd,a7ea,c5cd,8ea1a7eav,8ea1c5cdv,a7eav,c5cdv 6728 e69ca8,e2bd8a 6728,2f4a 00006728,00002f4a a4ec a4ec a4ec a4ec a4ec a4ec a4ec
+734 a4ed a4ed a4ed * 276b,454e * 8ea1a7eb,8ea1c5ce,a7eb,c5ce,8ea1a7ebv,8ea1c5cev,a7ebv,c5cev 6b20 e6aca0,e2bd8b 6b20,2f4b 00006b20,00002f4b a4ed a4ed a4ed a4ed a4ed a4ed a4ed
+735 a4ee a4ee a4ee * 276c,454f * 8ea1a7ec,8ea1c5cf,a7ec,c5cf,8ea1a7ecv,8ea1c5cfv,a7ecv,c5cfv 6b62 e6ada2,e2bd8c 6b62,2f4c 00006b62,00002f4c a4ee a4ee a4ee a4ee a4ee a4ee a4ee
+736 a4ef a4ef a4ef * 276d,4550 * 8ea1a7ed,8ea1c5d0,a7ed,c5d0,8ea1a7edv,8ea1c5d0v,a7edv,c5d0v 6b79 e6adb9,e2bd8d 6b79,2f4d 00006b79,00002f4d a4ef a4ef a4ef a4ef a4ef a4ef a4ef
+737 a4f0 a4f0 a4f0 * 276f,4551 * 8ea1a7ef,8ea1c5d1,a7ef,c5d1,8ea1a7efv,8ea1c5d1v,a7efv,c5d1v 6bcb e6af8b,e2bd8f 6bcb,2f4f 00006bcb,00002f4f a4f0 a4f0 a4f0 a4f0 a4f0 a4f0 a4f0
+738 a4f1 a4f1 a4f1 * 2770,4552 * 8ea1a7f0,8ea1c5d2,a7f0,c5d2,8ea1a7f0v,8ea1c5d2v,a7f0v,c5d2v 6bd4 e6af94,e2bd90 6bd4,2f50 00006bd4,00002f50 a4f1 a4f1 a4f1 a4f1 a4f1 a4f1 a4f1
+739 a4f2 a4f2 a4f2 * 2771,4553 * 8ea1a7f1,8ea1c5d3,a7f1,c5d3,8ea1a7f1v,8ea1c5d3v,a7f1v,c5d3v 6bdb e6af9b,e2bd91 6bdb,2f51 00006bdb,00002f51 a4f2 a4f2 a4f2 a4f2 a4f2 a4f2 a4f2
+740 a4f3 a4f3 a4f3 * 2772,4554 * 8ea1a7f2,8ea1c5d4,a7f2,c5d4,8ea1a7f2v,8ea1c5d4v,a7f2v,c5d4v 6c0f e6b08f,e2bd92 6c0f,2f52 00006c0f,00002f52 a4f3 a4f3 a4f3 a4f3 a4f3 a4f3 a4f3
+741 a4f4 a4f4 a4f4 * 2774,4555 * 8ea1a7f4,8ea1c5d5,a7f4,c5d5,8ea1a7f4v,8ea1c5d5v,a7f4v,c5d5v 6c34 e6b0b4,e2bd94 6c34,2f54 00006c34,00002f54 a4f4 a4f4 a4f4 a4f4 a4f4 a4f4 a4f4
+742 a4f5 a4f5 a4f5 * 2775,4556 * 8ea1a7f5,8ea1c5d6,a7f5,c5d6,8ea1a7f5v,8ea1c5d6v,a7f5v,c5d6v 706b e781ab,e2bd95 706b,2f55 0000706b,00002f55 a4f5 a4f5 a4f5 a4f5 a4f5 a4f5 a4f5
+743 a4f6 a4f6 a4f6 * 2776,4557 * 8ea1a7f6,8ea1c5d7,a7f6,c5d7,8ea1a7f6v,8ea1c5d7v,a7f6v,c5d7v 722a e788aa,e2bd96 722a,2f56 0000722a,00002f56 a4f6 a4f6 a4f6 a4f6 a4f6 a4f6 a4f6
+744 a4f7 a4f7 a4f7 * 2777,4558 * 8ea1a7f7,8ea1c5d8,a7f7,c5d8,8ea1a7f7v,8ea1c5d8v,a7f7v,c5d8v 7236 e788b6,e2bd97 7236,2f57 00007236,00002f57 a4f7 a4f7 a4f7 a4f7 a4f7 a4f7 a4f7
+745 a4f8 a4f8 a4f8 * 2778,4559 * 8ea1a7f8,8ea1c5d9,a7f8,c5d9,8ea1a7f8v,8ea1c5d9v,a7f8v,c5d9v 723b e788bb,e2bd98 723b,2f58 0000723b,00002f58 a4f8 a4f8 a4f8 a4f8 a4f8 a4f8 a4f8
+746 a4f9 a4f9 a4f9 * 277a,455a * 8ea1a7fa,8ea1c5da,a7fa,c5da,8ea1a7fav,8ea1c5dav,a7fav,c5dav 7247 e78987,e2bd9a 7247,2f5a 00007247,00002f5a a4f9 a4f9 a4f9 a4f9 a4f9 a4f9 a4f9
+747 a4fa a4fa a4fa * 277b,455b * 8ea1a7fb,8ea1c5db,a7fb,c5db,8ea1a7fbv,8ea1c5dbv,a7fbv,c5dbv 7259 e78999,e2bd9b 7259,2f5b 00007259,00002f5b a4fa a4fa a4fa a4fa a4fa a4fa a4fa
+748 a4fb a4fb a4fb * 277c,455c * 8ea1a7fc,8ea1c5dc,a7fc,c5dc,8ea1a7fcv,8ea1c5dcv,a7fcv,c5dcv 725b e7899b,e2bd9c 725b,2f5c 0000725b,00002f5c a4fb a4fb a4fb a4fb a4fb a4fb a4fb
+749 a4fc a4fc a4fc * 277d,455d * 8ea1a7fd,8ea1c5dd,a7fd,c5dd,8ea1a7fdv,8ea1c5ddv,a7fdv,c5ddv 72ac e78aac,e2bd9d 72ac,2f5d 000072ac,00002f5d a4fc a4fc a4fc a4fc a4fc a4fc a4fc
+750 a4fd a4fd a4fd * 455e * 8ea1c5de,c5de,8ea1c5dev,c5dev 738b e78e8b 738b 0000738b a4fd a4fd a4fd a4fd a4fd a4fd a4fd
+751 a4fe a4fe a4fe * 455f * 8ea1c5df,c5df,8ea1c5dfv,c5dfv 4e19 e4b899 4e19 00004e19 a4fe a4fe a4fe a4fe a4fe a4fe a4fe
+752 a540 a540 a540 * 4560 * 8ea1c5e0,c5e0,8ea1c5e0v,c5e0v 4e16 e4b896 4e16 00004e16 a540 a540 a540 a540 a540 a540 a540
+753 a541 a541 a541 * 4561 * 8ea1c5e1,c5e1,8ea1c5e1v,c5e1v 4e15 e4b895 4e15 00004e15 a541 a541 a541 a541 a541 a541 a541
+754 a542 a542 a542 * 4562 * 8ea1c5e2,c5e2,8ea1c5e2v,c5e2v 4e14 e4b894 4e14 00004e14 a542 a542 a542 a542 a542 a542 a542
+755 a543 a543 a543 * 4563 * 8ea1c5e3,c5e3,8ea1c5e3v,c5e3v 4e18 e4b898 4e18 00004e18 a543 a543 a543 a543 a543 a543 a543
+756 a544 a544 a544 * 4564 * 8ea1c5e4,c5e4,8ea1c5e4v,c5e4v 4e3b e4b8bb 4e3b 00004e3b a544 a544 a544 a544 a544 a544 a544
+757 a545 a545 a545 * 4565 * 8ea1c5e5,c5e5,8ea1c5e5v,c5e5v 4e4d e4b98d 4e4d 00004e4d a545 a545 a545 a545 a545 a545 a545
+758 a546 a546 a546 * 4566 * 8ea1c5e6,c5e6,8ea1c5e6v,c5e6v 4e4f e4b98f 4e4f 00004e4f a546 a546 a546 a546 a546 a546 a546
+759 a547 a547 a547 * 4567 * 8ea1c5e7,c5e7,8ea1c5e7v,c5e7v 4e4e e4b98e 4e4e 00004e4e a547 a547 a547 a547 a547 a547 a547
+760 a548 a548 a548 * 4568 * 8ea1c5e8,c5e8,8ea1c5e8v,c5e8v 4ee5 e4bba5 4ee5 00004ee5 a548 a548 a548 a548 a548 a548 a548
+761 a549 a549 a549 * 4569 * 8ea1c5e9,c5e9,8ea1c5e9v,c5e9v 4ed8 e4bb98 4ed8 00004ed8 a549 a549 a549 a549 a549 a549 a549
+762 a54a a54a a54a * 456a * 8ea1c5ea,c5ea,8ea1c5eav,c5eav 4ed4 e4bb94 4ed4 00004ed4 a54a a54a a54a a54a a54a a54a a54a
+763 a54b a54b a54b * 456b * 8ea1c5eb,c5eb,8ea1c5ebv,c5ebv 4ed5 e4bb95 4ed5 00004ed5 a54b a54b a54b a54b a54b a54b a54b
+764 a54c a54c a54c * 456c * 8ea1c5ec,c5ec,8ea1c5ecv,c5ecv 4ed6 e4bb96 4ed6 00004ed6 a54c a54c a54c a54c a54c a54c a54c
+765 a54d a54d a54d * 456d * 8ea1c5ed,c5ed,8ea1c5edv,c5edv 4ed7 e4bb97 4ed7 00004ed7 a54d a54d a54d a54d a54d a54d a54d
+766 a54e a54e a54e * 456e * 8ea1c5ee,c5ee,8ea1c5eev,c5eev 4ee3 e4bba3 4ee3 00004ee3 a54e a54e a54e a54e a54e a54e a54e
+767 a54f a54f a54f * 456f * 8ea1c5ef,c5ef,8ea1c5efv,c5efv 4ee4 e4bba4 4ee4 00004ee4 a54f a54f a54f a54f a54f a54f a54f
+768 a550 a550 a550 * 4570 * 8ea1c5f0,c5f0,8ea1c5f0v,c5f0v 4ed9 e4bb99 4ed9 00004ed9 a550 a550 a550 a550 a550 a550 a550
+769 a551 a551 a551 * 4571 * 8ea1c5f1,c5f1,8ea1c5f1v,c5f1v 4ede e4bb9e 4ede 00004ede a551 a551 a551 a551 a551 a551 a551
+770 a552 a552 a552 * 4572 * 8ea1c5f2,c5f2,8ea1c5f2v,c5f2v 5145 e58585 5145 00005145 a552 a552 a552 a552 a552 a552 a552
+771 a553 a553 a553 * 4573 * 8ea1c5f3,c5f3,8ea1c5f3v,c5f3v 5144 e58584 5144 00005144 a553 a553 a553 a553 a553 a553 a553
+772 a554 a554 a554 * 4574 * 8ea1c5f4,c5f4,8ea1c5f4v,c5f4v 5189 e58689 5189 00005189 a554 a554 a554 a554 a554 a554 a554
+773 a555 a555 a555 * 4575 * 8ea1c5f5,c5f5,8ea1c5f5v,c5f5v 518a e5868a 518a 0000518a a555 a555 a555 a555 a555 a555 a555
+774 a556 a556 a556 * 4576 * 8ea1c5f6,c5f6,8ea1c5f6v,c5f6v 51ac e586ac 51ac 000051ac a556 a556 a556 a556 a556 a556 a556
+775 a557 a557 a557 * 4577 * 8ea1c5f7,c5f7,8ea1c5f7v,c5f7v 51f9 e587b9 51f9 000051f9 a557 a557 a557 a557 a557 a557 a557
+776 a558 a558 a558 * 4578 * 8ea1c5f8,c5f8,8ea1c5f8v,c5f8v 51fa e587ba 51fa 000051fa a558 a558 a558 a558 a558 a558 a558
+777 a559 a559 a559 * 4579 * 8ea1c5f9,c5f9,8ea1c5f9v,c5f9v 51f8 e587b8 51f8 000051f8 a559 a559 a559 a559 a559 a559 a559
+778 a55a a55a a55a * 457a * 8ea1c5fa,c5fa,8ea1c5fav,c5fav 520a e5888a 520a 0000520a a55a a55a a55a a55a a55a a55a a55a
+779 a55b a55b a55b * 457b * 8ea1c5fb,c5fb,8ea1c5fbv,c5fbv 52a0 e58aa0 52a0 000052a0 a55b a55b a55b a55b a55b a55b a55b
+780 a55c a55c a55c * 457c * 8ea1c5fc,c5fc,8ea1c5fcv,c5fcv 529f e58a9f 529f 0000529f a55c a55c a55c a55c a55c a55c a55c
+781 a55d a55d a55d * 457d * 8ea1c5fd,c5fd,8ea1c5fdv,c5fdv 5305 ee819b,e58c85 e05b,5305 0000e05b,00005305 fabd,a55d a55d a55d a55d a55d a55d fabd,a55d
+782 a55e a55e a55e * 457e * 8ea1c5fe,c5fe,8ea1c5fev,c5fev 5306 e58c86 5306 00005306 a55e a55e a55e a55e a55e a55e a55e
+783 a55f a55f a55f * 4621 * 8ea1c6a1,c6a1,8ea1c6a1v,c6a1v 5317 e58c97 5317 00005317 a55f a55f a55f a55f a55f a55f a55f
+784 a560 a560 a560 * 4622 * 8ea1c6a2,c6a2,8ea1c6a2v,c6a2v 531d e58c9d 531d 0000531d a560 a560 a560 a560 a560 a560 a560
+785 a561 a561 a561 * 4623 * 8ea1c6a3,c6a3,8ea1c6a3v,c6a3v 4edf e4bb9f 4edf 00004edf a561 a561 a561 a561 a561 a561 a561
+786 a562 a562 a562 * 4624 * 8ea1c6a4,c6a4,8ea1c6a4v,c6a4v 534a e58d8a 534a 0000534a a562 a562 a562 a562 a562 a562 a562
+787 a563 a563 a563 * 4625 * 8ea1c6a5,c6a5,8ea1c6a5v,c6a5v 5349 e58d89 5349 00005349 a563 a563 a563 a563 a563 a563 a563
+788 a564 a564 a564 * 4626 * 8ea1c6a6,c6a6,8ea1c6a6v,c6a6v 5361 e58da1 5361 00005361 a564 a564 a564 a564 a564 a564 a564
+789 a565 a565 a565 * 4627 * 8ea1c6a7,c6a7,8ea1c6a7v,c6a7v 5360 e58da0 5360 00005360 a565 a565 a565 a565 a565 a565 a565
+790 a566 a566 a566 * 4628 * 8ea1c6a8,c6a8,8ea1c6a8v,c6a8v 536f e58daf 536f 0000536f a566 a566 a566 a566 a566 a566 a566
+791 a567 a567 a567 * 4629 * 8ea1c6a9,c6a9,8ea1c6a9v,c6a9v 536e e58dae 536e 0000536e a567 a567 a567 a567 a567 a567 a567
+792 a568 a568 a568 * 462a * 8ea1c6aa,c6aa,8ea1c6aav,c6aav 53bb e58ebb 53bb 000053bb a568 a568 a568 a568 a568 a568 a568
+793 a569 a569 a569 * 462b * 8ea1c6ab,c6ab,8ea1c6abv,c6abv 53ef e58faf 53ef 000053ef a569 a569 a569 a569 a569 a569 a569
+794 a56a a56a a56a * 462c * 8ea1c6ac,c6ac,8ea1c6acv,c6acv 53e4 e58fa4 53e4 000053e4 a56a a56a a56a a56a a56a a56a a56a
+795 a56b a56b a56b * 462d * 8ea1c6ad,c6ad,8ea1c6adv,c6adv 53f3 e58fb3 53f3 000053f3 a56b a56b a56b a56b a56b a56b a56b
+796 a56c a56c a56c * 462e * 8ea1c6ae,c6ae,8ea1c6aev,c6aev 53ec e58fac 53ec 000053ec a56c a56c a56c a56c a56c a56c a56c
+797 a56d a56d a56d * 462f * 8ea1c6af,c6af,8ea1c6afv,c6afv 53ee e58fae 53ee 000053ee a56d a56d a56d a56d a56d a56d a56d
+798 a56e a56e a56e * 4630 * 8ea1c6b0,c6b0,8ea1c6b0v,c6b0v 53e9 e58fa9 53e9 000053e9 a56e a56e a56e a56e a56e a56e a56e
+799 a56f a56f a56f * 4631 * 8ea1c6b1,c6b1,8ea1c6b1v,c6b1v 53e8 e58fa8 53e8 000053e8 a56f a56f a56f a56f a56f a56f a56f
+800 a570 a570 a570 * 4632 * 8ea1c6b2,c6b2,8ea1c6b2v,c6b2v 53fc e58fbc 53fc 000053fc a570 a570 a570 a570 a570 a570 a570
+801 a571 a571 a571 * 4633 * 8ea1c6b3,c6b3,8ea1c6b3v,c6b3v 53f8 e58fb8 53f8 000053f8 a571 a571 a571 a571 a571 a571 a571
+802 a572 a572 a572 * 4634 * 8ea1c6b4,c6b4,8ea1c6b4v,c6b4v 53f5 e58fb5 53f5 000053f5 a572 a572 a572 a572 a572 a572 a572
+803 a573 a573 a573 * 4635 * 8ea1c6b5,c6b5,8ea1c6b5v,c6b5v 53eb e58fab 53eb 000053eb a573 a573 a573 a573 a573 a573 a573
+804 a574 a574 a574 * 4636 * 8ea1c6b6,c6b6,8ea1c6b6v,c6b6v 53e6 e58fa6 53e6 000053e6 a574 a574 a574 a574 a574 a574 a574
+805 a575 a575 a575 * 4637 * 8ea1c6b7,c6b7,8ea1c6b7v,c6b7v 53ea e58faa 53ea 000053ea a575 a575 a575 a575 a575 a575 a575
+806 a576 a576 a576 * 4638 * 8ea1c6b8,c6b8,8ea1c6b8v,c6b8v 53f2 e58fb2 53f2 000053f2 a576 a576 a576 a576 a576 a576 a576
+807 a577 a577 a577 * 4639 * 8ea1c6b9,c6b9,8ea1c6b9v,c6b9v 53f1 e58fb1 53f1 000053f1 a577 a577 a577 a577 a577 a577 a577
+808 a578 a578 a578 * 463a * 8ea1c6ba,c6ba,8ea1c6bav,c6bav 53f0 e58fb0 53f0 000053f0 a578 a578 a578 a578 a578 a578 a578
+809 a579 a579 a579 * 463b * 8ea1c6bb,c6bb,8ea1c6bbv,c6bbv 53e5 e58fa5 53e5 000053e5 a579 a579 a579 a579 a579 a579 a579
+810 a57a a57a a57a * 463c * 8ea1c6bc,c6bc,8ea1c6bcv,c6bcv 53ed e58fad 53ed 000053ed a57a a57a a57a a57a a57a a57a a57a
+811 a57b a57b a57b * 463d * 8ea1c6bd,c6bd,8ea1c6bdv,c6bdv 53fb e58fbb 53fb 000053fb a57b a57b a57b a57b a57b a57b a57b
+812 a57c a57c a57c * 463e * 8ea1c6be,c6be,8ea1c6bev,c6bev 56db e59b9b 56db 000056db a57c a57c a57c a57c a57c a57c a57c
+813 a57d a57d a57d * 463f * 8ea1c6bf,c6bf,8ea1c6bfv,c6bfv 56da e59b9a 56da 000056da a57d a57d a57d a57d a57d a57d a57d
+814 a57e a57e a57e * 4640 * 8ea1c6c0,c6c0,8ea1c6c0v,c6c0v 5916 e5a496 5916 00005916 a57e a57e a57e a57e a57e a57e a57e
+815 a5a1 a5a1 a5a1 * 4641 * 8ea1c6c1,c6c1,8ea1c6c1v,c6c1v 592e e5a4ae 592e 0000592e a5a1 a5a1 a5a1 a5a1 a5a1 a5a1 a5a1
+816 a5a2 a5a2 a5a2 * 4642 * 8ea1c6c2,c6c2,8ea1c6c2v,c6c2v 5931 e5a4b1 5931 00005931 a5a2 a5a2 a5a2 a5a2 a5a2 a5a2 a5a2
+817 a5a3 a5a3 a5a3 * 4643 * 8ea1c6c3,c6c3,8ea1c6c3v,c6c3v 5974 e5a5b4 5974 00005974 a5a3 a5a3 a5a3 a5a3 a5a3 a5a3 a5a3
+818 a5a4 a5a4 a5a4 * 4644 * 8ea1c6c4,c6c4,8ea1c6c4v,c6c4v 5976 e5a5b6 5976 00005976 a5a4 a5a4 a5a4 a5a4 a5a4 a5a4 a5a4
+819 a5a5 a5a5 a5a5 * 4645 * 8ea1c6c5,c6c5,8ea1c6c5v,c6c5v 5b55 e5ad95 5b55 00005b55 a5a5 a5a5 a5a5 a5a5 a5a5 a5a5 a5a5
+820 a5a6 a5a6 a5a6 * 4646 * 8ea1c6c6,c6c6,8ea1c6c6v,c6c6v 5b83 e5ae83 5b83 00005b83 a5a6 a5a6 a5a6 a5a6 a5a6 a5a6 a5a6
+821 a5a7 a5a7 a5a7 * 4647 * 8ea1c6c7,c6c7,8ea1c6c7v,c6c7v 5c3c e5b0bc 5c3c 00005c3c a5a7 a5a7 a5a7 a5a7 a5a7 a5a7 a5a7
+822 a5a8 a5a8 a5a8 * 4648 * 8ea1c6c8,c6c8,8ea1c6c8v,c6c8v 5de8 e5b7a8 5de8 00005de8 a5a8 a5a8 a5a8 a5a8 a5a8 a5a8 a5a8
+823 a5a9 a5a9 a5a9 * 4649 * 8ea1c6c9,c6c9,8ea1c6c9v,c6c9v 5de7 e5b7a7 5de7 00005de7 a5a9 a5a9 a5a9 a5a9 a5a9 a5a9 a5a9
+824 a5aa a5aa a5aa * 464a * 8ea1c6ca,c6ca,8ea1c6cav,c6cav 5de6 e5b7a6 5de6 00005de6 a5aa a5aa a5aa a5aa a5aa a5aa a5aa
+825 a5ab a5ab a5ab * 464b * 8ea1c6cb,c6cb,8ea1c6cbv,c6cbv 5e02 e5b882 5e02 00005e02 a5ab a5ab a5ab a5ab a5ab a5ab a5ab
+826 a5ac a5ac a5ac * 464c * 8ea1c6cc,c6cc,8ea1c6ccv,c6ccv 5e03 e5b883 5e03 00005e03 a5ac a5ac a5ac a5ac a5ac a5ac a5ac
+827 a5ad a5ad a5ad * 464d * 8ea1c6cd,c6cd,8ea1c6cdv,c6cdv 5e73 e5b9b3 5e73 00005e73 a5ad a5ad a5ad a5ad a5ad a5ad a5ad
+828 a5ae a5ae a5ae * 464e * 8ea1c6ce,c6ce,8ea1c6cev,c6cev 5e7c e5b9bc 5e7c 00005e7c a5ae a5ae a5ae a5ae a5ae a5ae a5ae
+829 a5af a5af a5af * 464f * 8ea1c6cf,c6cf,8ea1c6cfv,c6cfv 5f01 e5bc81 5f01 00005f01 a5af a5af a5af a5af a5af a5af a5af
+830 a5b0 a5b0 a5b0 * 4650 * 8ea1c6d0,c6d0,8ea1c6d0v,c6d0v 5f18 e5bc98 5f18 00005f18 a5b0 a5b0 a5b0 a5b0 a5b0 a5b0 a5b0
+831 a5b1 a5b1 a5b1 * 4651 * 8ea1c6d1,c6d1,8ea1c6d1v,c6d1v 5f17 e5bc97 5f17 00005f17 a5b1 a5b1 a5b1 a5b1 a5b1 a5b1 a5b1
+832 a5b2 a5b2 a5b2 * 4652 * 8ea1c6d2,c6d2,8ea1c6d2v,c6d2v 5fc5 e5bf85 5fc5 00005fc5 a5b2 a5b2 a5b2 a5b2 a5b2 a5b2 a5b2
+833 a5b3 a5b3 a5b3 * 4653 * 8ea1c6d3,c6d3,8ea1c6d3v,c6d3v 620a e6888a 620a 0000620a a5b3 a5b3 a5b3 a5b3 a5b3 a5b3 a5b3
+834 a5b4 a5b4 a5b4 * 4654 * 8ea1c6d4,c6d4,8ea1c6d4v,c6d4v 6253 e68993 6253 00006253 a5b4 a5b4 a5b4 a5b4 a5b4 a5b4 a5b4
+835 a5b5 a5b5 a5b5 * 4655 * 8ea1c6d5,c6d5,8ea1c6d5v,c6d5v 6254 e68994 6254 00006254 a5b5 a5b5 a5b5 a5b5 a5b5 a5b5 a5b5
+836 a5b6 a5b6 a5b6 * 4656 * 8ea1c6d6,c6d6,8ea1c6d6v,c6d6v 6252 e68992 6252 00006252 a5b6 a5b6 a5b6 a5b6 a5b6 a5b6 a5b6
+837 a5b7 a5b7 a5b7 * 4657 * 8ea1c6d7,c6d7,8ea1c6d7v,c6d7v 6251 e68991 6251 00006251 a5b7 a5b7 a5b7 a5b7 a5b7 a5b7 a5b7
+838 a5b8 a5b8 a5b8 * 4658 * 8ea1c6d8,c6d8,8ea1c6d8v,c6d8v 65a5 e696a5 65a5 000065a5 a5b8 a5b8 a5b8 a5b8 a5b8 a5b8 a5b8
+839 a5b9 a5b9 a5b9 * 4659 * 8ea1c6d9,c6d9,8ea1c6d9v,c6d9v 65e6 e697a6 65e6 000065e6 a5b9 a5b9 a5b9 a5b9 a5b9 a5b9 a5b9
+840 a5ba a5ba a5ba * 465a * 8ea1c6da,c6da,8ea1c6dav,c6dav 672e e69cae 672e 0000672e a5ba a5ba a5ba a5ba a5ba a5ba a5ba
+841 a5bb a5bb a5bb * 465b * 8ea1c6db,c6db,8ea1c6dbv,c6dbv 672c e69cac 672c 0000672c a5bb a5bb a5bb a5bb a5bb a5bb a5bb
+842 a5bc a5bc a5bc * 465c * 8ea1c6dc,c6dc,8ea1c6dcv,c6dcv 672a e69caa 672a 0000672a a5bc a5bc a5bc a5bc a5bc a5bc a5bc
+843 a5bd a5bd a5bd * 465d * 8ea1c6dd,c6dd,8ea1c6ddv,c6ddv 672b e69cab 672b 0000672b a5bd a5bd a5bd a5bd a5bd a5bd a5bd
+844 a5be a5be a5be * 465e * 8ea1c6de,c6de,8ea1c6dev,c6dev 672d e69cad 672d 0000672d a5be a5be a5be a5be a5be a5be a5be
+845 a5bf a5bf a5bf * 465f * 8ea1c6df,c6df,8ea1c6dfv,c6dfv 6b63 e6ada3 6b63 00006b63 a5bf a5bf a5bf a5bf a5bf a5bf a5bf
+846 a5c0 a5c0 a5c0 * 4660 * 8ea1c6e0,c6e0,8ea1c6e0v,c6e0v 6bcd e6af8d 6bcd 00006bcd a5c0 a5c0 a5c0 a5c0 a5c0 a5c0 a5c0
+847 a5c1 a5c1 a5c1 * 4661 * 8ea1c6e1,c6e1,8ea1c6e1v,c6e1v 6c11 e6b091 6c11 00006c11 a5c1 a5c1 a5c1 a5c1 a5c1 a5c1 a5c1
+848 a5c2 a5c2 a5c2 * 4662 * 8ea1c6e2,c6e2,8ea1c6e2v,c6e2v 6c10 e6b090 6c10 00006c10 a5c2 a5c2 a5c2 a5c2 a5c2 a5c2 a5c2
+849 a5c3 a5c3 a5c3 * 4663 * 8ea1c6e3,c6e3,8ea1c6e3v,c6e3v 6c38 e6b0b8 6c38 00006c38 a5c3 a5c3 a5c3 a5c3 a5c3 a5c3 a5c3
+850 a5c4 a5c4 a5c4 * 4664 * 8ea1c6e4,c6e4,8ea1c6e4v,c6e4v 6c41 e6b181 6c41 00006c41 a5c4 a5c4 a5c4 a5c4 a5c4 a5c4 a5c4
+851 a5c5 a5c5 a5c5 * 4665 * 8ea1c6e5,c6e5,8ea1c6e5v,c6e5v 6c40 e6b180 6c40 00006c40 a5c5 a5c5 a5c5 a5c5 a5c5 a5c5 a5c5
+852 a5c6 a5c6 a5c6 * 4666 * 8ea1c6e6,c6e6,8ea1c6e6v,c6e6v 6c3e e6b0be 6c3e 00006c3e a5c6 a5c6 a5c6 a5c6 a5c6 a5c6 a5c6
+853 a5c7 a5c7 a5c7 * 4667 * 8ea1c6e7,c6e7,8ea1c6e7v,c6e7v 72af e78aaf 72af 000072af a5c7 a5c7 a5c7 a5c7 a5c7 a5c7 a5c7
+854 a5c8 a5c8 a5c8 * 277e,4668 * 8ea1a7fe,8ea1c6e8,a7fe,c6e8,8ea1a7fev,8ea1c6e8v,a7fev,c6e8v 7384 e78e84,e2bd9e 7384,2f5e 00007384,00002f5e a5c8 a5c8 a5c8 a5c8 a5c8 a5c8 a5c8
+855 a5c9 a5c9 a5c9 * 2821,4669 * 8ea1a8a1,8ea1c6e9,a8a1,c6e9,8ea1a8a1v,8ea1c6e9v,a8a1v,c6e9v 7389 e78e89,e2bd9f 7389,2f5f 00007389,00002f5f a5c9 a5c9 a5c9 a5c9 a5c9 a5c9 a5c9
+856 a5ca a5ca a5ca * 2822,466a * 8ea1a8a2,8ea1c6ea,a8a2,c6ea,8ea1a8a2v,8ea1c6eav,a8a2v,c6eav 74dc e7939c,e2bda0 74dc,2f60 000074dc,00002f60 a5ca a5ca a5ca a5ca a5ca a5ca a5ca
+857 a5cb a5cb a5cb * 2823,466b * 8ea1a8a3,8ea1c6eb,a8a3,c6eb,8ea1a8a3v,8ea1c6ebv,a8a3v,c6ebv 74e6 e793a6,e2bda1 74e6,2f61 000074e6,00002f61 a5cb a5cb a5cb a5cb a5cb a5cb a5cb
+858 a5cc a5cc a5cc * 2824,466c * 8ea1a8a4,8ea1c6ec,a8a4,c6ec,8ea1a8a4v,8ea1c6ecv,a8a4v,c6ecv 7518 e79498,e2bda2 7518,2f62 00007518,00002f62 a5cc a5cc a5cc a5cc a5cc a5cc a5cc
+859 a5cd a5cd a5cd * 2825,466d * 8ea1a8a5,8ea1c6ed,a8a5,c6ed,8ea1a8a5v,8ea1c6edv,a8a5v,c6edv 751f e7949f,e2bda3 751f,2f63 0000751f,00002f63 a5cd a5cd a5cd a5cd a5cd a5cd a5cd
+860 a5ce a5ce a5ce * 2826,466e * 8ea1a8a6,8ea1c6ee,a8a6,c6ee,8ea1a8a6v,8ea1c6eev,a8a6v,c6eev 7528 e2bda4,e794a8 2f64,7528 00002f64,00007528 a5ce a5ce a5ce a5ce a5ce a5ce a5ce
+861 a5cf a5cf a5cf * 466f * 8ea1c6ef,c6ef,8ea1c6efv,c6efv 7529 e794a9 7529 00007529 a5cf a5cf a5cf a5cf a5cf a5cf a5cf
+862 a5d0 a5d0 a5d0 * 2827,4670 * 8ea1a8a7,8ea1c6f0,a8a7,c6f0,8ea1a8a7v,8ea1c6f0v,a8a7v,c6f0v 7530 e2bda5,e794b0 2f65,7530 00002f65,00007530 a5d0 a5d0 a5d0 a5d0 a5d0 a5d0 a5d0
+863 a5d1 a5d1 a5d1 * 4671 * 8ea1c6f1,c6f1,8ea1c6f1v,c6f1v 7531 e794b1 7531 00007531 a5d1 a5d1 a5d1 a5d1 a5d1 a5d1 a5d1
+864 a5d2 a5d2 a5d2 * 4672 * 8ea1c6f2,c6f2,8ea1c6f2v,c6f2v 7532 e794b2 7532 00007532 a5d2 a5d2 a5d2 a5d2 a5d2 a5d2 a5d2
+865 a5d3 a5d3 a5d3 * 4673 * 8ea1c6f3,c6f3,8ea1c6f3v,c6f3v 7533 e794b3 7533 00007533 a5d3 a5d3 a5d3 a5d3 a5d3 a5d3 a5d3
+866 a5d4 a5d4 a5d4 * 2828,4674 * 8ea1a8a8,8ea1c6f4,a8a8,c6f4,8ea1a8a8v,8ea1c6f4v,a8a8v,c6f4v 758b e2bda6,e7968b 2f66,758b 00002f66,0000758b a5d4 a5d4 a5d4 a5d4 a5d4 a5d4 a5d4
+867 a5d5 a5d5 a5d5 * 282b,4675 * 8ea1a8ab,8ea1c6f5,a8ab,c6f5,8ea1a8abv,8ea1c6f5v,a8abv,c6f5v 767d e799bd,e2bda9 767d,2f69 0000767d,00002f69 a5d5 a5d5 a5d5 a5d5 a5d5 a5d5 a5d5
+868 a5d6 a5d6 a5d6 * 282c,4676 * 8ea1a8ac,8ea1c6f6,a8ac,c6f6,8ea1a8acv,8ea1c6f6v,a8acv,c6f6v 76ae e79aae,e2bdaa 76ae,2f6a 000076ae,00002f6a a5d6 a5d6 a5d6 a5d6 a5d6 a5d6 a5d6
+869 a5d7 a5d7 a5d7 * 282d,4677 * 8ea1a8ad,8ea1c6f7,a8ad,c6f7,8ea1a8adv,8ea1c6f7v,a8adv,c6f7v 76bf e79abf,e2bdab 76bf,2f6b 000076bf,00002f6b a5d7 a5d7 a5d7 a5d7 a5d7 a5d7 a5d7
+870 a5d8 a5d8 a5d8 * 282e,4678 * 8ea1a8ae,8ea1c6f8,a8ae,c6f8,8ea1a8aev,8ea1c6f8v,a8aev,c6f8v 76ee e79bae,e2bdac 76ee,2f6c 000076ee,00002f6c a5d8 a5d8 a5d8 a5d8 a5d8 a5d8 a5d8
+871 a5d9 a5d9 a5d9 * 282f,4679 * 8ea1a8af,8ea1c6f9,a8af,c6f9,8ea1a8afv,8ea1c6f9v,a8afv,c6f9v 77db e79f9b,e2bdad 77db,2f6d 000077db,00002f6d a5d9 a5d9 a5d9 a5d9 a5d9 a5d9 a5d9
+872 a5da a5da a5da * 2830,467a * 8ea1a8b0,8ea1c6fa,a8b0,c6fa,8ea1a8b0v,8ea1c6fav,a8b0v,c6fav 77e2 e79fa2,e2bdae 77e2,2f6e 000077e2,00002f6e a5da a5da a5da a5da a5da a5da a5da
+873 a5db a5db a5db * 2831,467b * 8ea1a8b1,8ea1c6fb,a8b1,c6fb,8ea1a8b1v,8ea1c6fbv,a8b1v,c6fbv 77f3 e79fb3,e2bdaf 77f3,2f6f 000077f3,00002f6f a5db a5db a5db a5db a5db a5db a5db
+874 a5dc a5dc a5dc * 2832,467c * 8ea1a8b2,8ea1c6fc,a8b2,c6fc,8ea1a8b2v,8ea1c6fcv,a8b2v,c6fcv 793a e7a4ba,e2bdb0 793a,2f70 0000793a,00002f70 a5dc a5dc a5dc a5dc a5dc a5dc a5dc
+875 a5dd a5dd a5dd * 2834,467d * 8ea1a8b4,8ea1c6fd,a8b4,c6fd,8ea1a8b4v,8ea1c6fdv,a8b4v,c6fdv 79be e7a6be,e2bdb2 79be,2f72 000079be,00002f72 a5dd a5dd a5dd a5dd a5dd a5dd a5dd
+876 a5de a5de a5de * 2835,467e * 8ea1a8b5,8ea1c6fe,a8b5,c6fe,8ea1a8b5v,8ea1c6fev,a8b5v,c6fev 7a74 e7a9b4,e2bdb3 7a74,2f73 00007a74,00002f73 a5de a5de a5de a5de a5de a5de a5de
+877 a5df a5df a5df * 2836,4721 * 8ea1a8b6,8ea1c7a1,a8b6,c7a1,8ea1a8b6v,8ea1c7a1v,a8b6v,c7a1v 7acb e7ab8b,e2bdb4 7acb,2f74 00007acb,00002f74 a5df a5df a5df a5df a5df a5df a5df
+878 a5e0 a5e0 a5e0 * 4722 * 8ea1c7a2,c7a2,8ea1c7a2v,c7a2v 4e1e e4b89e 4e1e 00004e1e a5e0 a5e0 a5e0 a5e0 a5e0 a5e0 a5e0
+879 a5e1 a5e1 a5e1 * 4723 * 8ea1c7a3,c7a3,8ea1c7a3v,c7a3v 4e1f e4b89f 4e1f 00004e1f a5e1 a5e1 a5e1 a5e1 a5e1 a5e1 a5e1
+880 a5e2 a5e2 a5e2 * 4724 * 8ea1c7a4,c7a4,8ea1c7a4v,c7a4v 4e52 e4b992 4e52 00004e52 a5e2 a5e2 a5e2 a5e2 a5e2 a5e2 a5e2
+881 a5e3 a5e3 a5e3 * 4725 * 8ea1c7a5,c7a5,8ea1c7a5v,c7a5v 4e53 e4b993 4e53 00004e53 a5e3 a5e3 a5e3 a5e3 a5e3 a5e3 a5e3
+882 a5e4 a5e4 a5e4 * 4726 * 8ea1c7a6,c7a6,8ea1c7a6v,c7a6v 4e69 e4b9a9 4e69 00004e69 a5e4 a5e4 a5e4 a5e4 a5e4 a5e4 a5e4
+883 a5e5 a5e5 a5e5 * 4727 * 8ea1c7a7,c7a7,8ea1c7a7v,c7a7v 4e99 e4ba99 4e99 00004e99 a5e5 a5e5 a5e5 a5e5 a5e5 a5e5 a5e5
+884 a5e6 a5e6 a5e6 * 4728 * 8ea1c7a8,c7a8,8ea1c7a8v,c7a8v 4ea4 e4baa4 4ea4 00004ea4 a5e6 a5e6 a5e6 a5e6 a5e6 a5e6 a5e6
+885 a5e7 a5e7 a5e7 * 4729 * 8ea1c7a9,c7a9,8ea1c7a9v,c7a9v 4ea6 e4baa6 4ea6 00004ea6 a5e7 a5e7 a5e7 a5e7 a5e7 a5e7 a5e7
+886 a5e8 a5e8 a5e8 * 472a * 8ea1c7aa,c7aa,8ea1c7aav,c7aav 4ea5 e4baa5 4ea5 00004ea5 a5e8 a5e8 a5e8 a5e8 a5e8 a5e8 a5e8
+887 a5e9 a5e9 a5e9 * 472b * 8ea1c7ab,c7ab,8ea1c7abv,c7abv 4eff e4bbbf 4eff 00004eff a5e9 a5e9 a5e9 a5e9 a5e9 a5e9 a5e9
+888 a5ea a5ea a5ea * 472c * 8ea1c7ac,c7ac,8ea1c7acv,c7acv 4f09 e4bc89 4f09 00004f09 a5ea a5ea a5ea a5ea a5ea a5ea a5ea
+889 a5eb a5eb a5eb * 472d * 8ea1c7ad,c7ad,8ea1c7adv,c7adv 4f19 e4bc99 4f19 00004f19 a5eb a5eb a5eb a5eb a5eb a5eb a5eb
+890 a5ec a5ec a5ec * 472e * 8ea1c7ae,c7ae,8ea1c7aev,c7aev 4f0a e4bc8a 4f0a 00004f0a a5ec a5ec a5ec a5ec a5ec a5ec a5ec
+891 a5ed a5ed a5ed * 472f * 8ea1c7af,c7af,8ea1c7afv,c7afv 4f15 e4bc95 4f15 00004f15 a5ed a5ed a5ed a5ed a5ed a5ed a5ed
+892 a5ee a5ee a5ee * 4730 * 8ea1c7b0,c7b0,8ea1c7b0v,c7b0v 4f0d e4bc8d 4f0d 00004f0d a5ee a5ee a5ee a5ee a5ee a5ee a5ee
+893 a5ef a5ef a5ef * 4731 * 8ea1c7b1,c7b1,8ea1c7b1v,c7b1v 4f10 e4bc90 4f10 00004f10 a5ef a5ef a5ef a5ef a5ef a5ef a5ef
+894 a5f0 a5f0 a5f0 * 4732 * 8ea1c7b2,c7b2,8ea1c7b2v,c7b2v 4f11 e4bc91 4f11 00004f11 a5f0 a5f0 a5f0 a5f0 a5f0 a5f0 a5f0
+895 a5f1 a5f1 a5f1 * 4733 * 8ea1c7b3,c7b3,8ea1c7b3v,c7b3v 4f0f e4bc8f 4f0f 00004f0f a5f1 a5f1 a5f1 a5f1 a5f1 a5f1 a5f1
+896 a5f2 a5f2 a5f2 * 4734 * 8ea1c7b4,c7b4,8ea1c7b4v,c7b4v 4ef2 e4bbb2 4ef2 00004ef2 a5f2 a5f2 a5f2 a5f2 a5f2 a5f2 a5f2
+897 a5f3 a5f3 a5f3 * 4735 * 8ea1c7b5,c7b5,8ea1c7b5v,c7b5v 4ef6 e4bbb6 4ef6 00004ef6 a5f3 a5f3 a5f3 a5f3 a5f3 a5f3 a5f3
+898 a5f4 a5f4 a5f4 * 4736 * 8ea1c7b6,c7b6,8ea1c7b6v,c7b6v 4efb e4bbbb 4efb 00004efb a5f4 a5f4 a5f4 a5f4 a5f4 a5f4 a5f4
+899 a5f5 a5f5 a5f5 * 4737 * 8ea1c7b7,c7b7,8ea1c7b7v,c7b7v 4ef0 e4bbb0 4ef0 00004ef0 a5f5 a5f5 a5f5 a5f5 a5f5 a5f5 a5f5
+900 a5f6 a5f6 a5f6 * 4738 * 8ea1c7b8,c7b8,8ea1c7b8v,c7b8v 4ef3 e4bbb3 4ef3 00004ef3 a5f6 a5f6 a5f6 a5f6 a5f6 a5f6 a5f6
+901 a5f7 a5f7 a5f7 * 4739 * 8ea1c7b9,c7b9,8ea1c7b9v,c7b9v 4efd e4bbbd 4efd 00004efd a5f7 a5f7 a5f7 a5f7 a5f7 a5f7 a5f7
+902 a5f8 a5f8 a5f8 * 473a * 8ea1c7ba,c7ba,8ea1c7bav,c7bav 4f01 e4bc81 4f01 00004f01 a5f8 a5f8 a5f8 a5f8 a5f8 a5f8 a5f8
+903 a5f9 a5f9 a5f9 * 473b * 8ea1c7bb,c7bb,8ea1c7bbv,c7bbv 4f0b e4bc8b 4f0b 00004f0b a5f9 a5f9 a5f9 a5f9 a5f9 a5f9 a5f9
+904 a5fa a5fa a5fa * 473c * 8ea1c7bc,c7bc,8ea1c7bcv,c7bcv 5149 e58589 5149 00005149 a5fa a5fa a5fa a5fa a5fa a5fa a5fa
+905 a5fb a5fb a5fb * 473d * 8ea1c7bd,c7bd,8ea1c7bdv,c7bdv 5147 e58587 5147 00005147 a5fb a5fb a5fb a5fb a5fb a5fb a5fb
+906 a5fc a5fc a5fc * 473e * 8ea1c7be,c7be,8ea1c7bev,c7bev 5146 e58586 5146 00005146 a5fc a5fc a5fc a5fc a5fc a5fc a5fc
+907 a5fd a5fd a5fd * 473f * 8ea1c7bf,c7bf,8ea1c7bfv,c7bfv 5148 e58588 5148 00005148 a5fd a5fd a5fd a5fd a5fd a5fd a5fd
+908 a5fe a5fe a5fe * 4740 * 8ea1c7c0,c7c0,8ea1c7c0v,c7c0v 5168 e585a8 5168 00005168 a5fe a5fe a5fe a5fe a5fe a5fe a5fe
+909 a640 a640 a640 * 4741 * 8ea1c7c1,c7c1,8ea1c7c1v,c7c1v 5171 e585b1 5171 00005171 a640 a640 a640 a640 a640 a640 a640
+910 a641 a641 a641 * 4742 * 8ea1c7c2,c7c2,8ea1c7c2v,c7c2v 518d e5868d 518d 0000518d a641 a641 a641 a641 a641 a641 a641
+911 a642 a642 a642 * 4743 * 8ea1c7c3,c7c3,8ea1c7c3v,c7c3v 51b0 e586b0 51b0 000051b0 a642 a642 a642 a642 a642 a642 a642
+912 a643 a643 a643 * 4744 * 8ea1c7c4,c7c4,8ea1c7c4v,c7c4v 5217 e58897 5217 00005217 a643 a643 a643 a643 a643 a643 a643
+913 a644 a644 a644 * 4745 * 8ea1c7c5,c7c5,8ea1c7c5v,c7c5v 5211 e58891 5211 00005211 a644 a644 a644 a644 a644 a644 a644
+914 a645 a645 a645 * 4746 * 8ea1c7c6,c7c6,8ea1c7c6v,c7c6v 5212 e58892 5212 00005212 a645 a645 a645 a645 a645 a645 a645
+915 a646 a646 a646 * 4747 * 8ea1c7c7,c7c7,8ea1c7c7v,c7c7v 520e e5888e 520e 0000520e a646 a646 a646 a646 a646 a646 a646
+916 a647 a647 a647 * 4748 * 8ea1c7c8,c7c8,8ea1c7c8v,c7c8v 5216 e58896 5216 00005216 a647 a647 a647 a647 a647 a647 a647
+917 a648 a648 a648 * 4749 * 8ea1c7c9,c7c9,8ea1c7c9v,c7c9v 52a3 e58aa3 52a3 000052a3 a648 a648 a648 a648 a648 a648 a648
+918 a649 a649 a649 * 474a * 8ea1c7ca,c7ca,8ea1c7cav,c7cav 5308 e58c88 5308 00005308 a649 a649 a649 a649 a649 a649 a649
+919 a64a a64a a64a * 474b * 8ea1c7cb,c7cb,8ea1c7cbv,c7cbv 5321 e58ca1 5321 00005321 a64a a64a a64a a64a a64a a64a a64a
+920 a64b a64b a64b * 474c * 8ea1c7cc,c7cc,8ea1c7ccv,c7ccv 5320 e58ca0 5320 00005320 a64b a64b a64b a64b a64b a64b a64b
+921 a64c a64c a64c * 474d * 8ea1c7cd,c7cd,8ea1c7cdv,c7cdv 5370 e58db0 5370 00005370 a64c a64c a64c a64c a64c a64c a64c
+922 a64d a64d a64d * 474e * 8ea1c7ce,c7ce,8ea1c7cev,c7cev 5371 e58db1 5371 00005371 a64d a64d a64d a64d a64d a64d a64d
+923 a64e a64e a64e * 474f * 8ea1c7cf,c7cf,8ea1c7cfv,c7cfv 5409 e59089 5409 00005409 a64e a64e a64e a64e a64e a64e a64e
+924 a64f a64f a64f * 4750 * 8ea1c7d0,c7d0,8ea1c7d0v,c7d0v 540f e5908f 540f 0000540f a64f a64f a64f a64f a64f a64f a64f
+925 a650 a650 a650 * 4751 * 8ea1c7d1,c7d1,8ea1c7d1v,c7d1v 540c e5908c 540c 0000540c a650 a650 a650 a650 a650 a650 a650
+926 a651 a651 a651 * 4752 * 8ea1c7d2,c7d2,8ea1c7d2v,c7d2v 540a e5908a 540a 0000540a a651 a651 a651 a651 a651 a651 a651
+927 a652 a652 a652 * 4753 * 8ea1c7d3,c7d3,8ea1c7d3v,c7d3v 5410 e59090 5410 00005410 a652 a652 a652 a652 a652 a652 a652
+928 a653 a653 a653 * 4754 * 8ea1c7d4,c7d4,8ea1c7d4v,c7d4v 5401 e59081 5401 00005401 a653 a653 a653 a653 a653 a653 a653
+929 a654 a654 a654 * 4755 * 8ea1c7d5,c7d5,8ea1c7d5v,c7d5v 540b e5908b 540b 0000540b a654 a654 a654 a654 a654 a654 a654
+930 a655 a655 a655 * 4756 * 8ea1c7d6,c7d6,8ea1c7d6v,c7d6v 5404 e59084 5404 00005404 a655 a655 a655 a655 a655 a655 a655
+931 a656 a656 a656 * 4757 * 8ea1c7d7,c7d7,8ea1c7d7v,c7d7v 5411 e59091 5411 00005411 a656 a656 a656 a656 a656 a656 a656
+932 a657 a657 a657 * 4758 * 8ea1c7d8,c7d8,8ea1c7d8v,c7d8v 540d e5908d 540d 0000540d a657 a657 a657 a657 a657 a657 a657
+933 a658 a658 a658 * 4759 * 8ea1c7d9,c7d9,8ea1c7d9v,c7d9v 5408 e59088 5408 00005408 a658 a658 a658 a658 a658 a658 a658
+934 a659 a659 a659 * 475a * 8ea1c7da,c7da,8ea1c7dav,c7dav 5403 e59083 5403 00005403 a659 a659 a659 a659 a659 a659 a659
+935 a65a a65a a65a * 475b * 8ea1c7db,c7db,8ea1c7dbv,c7dbv 540e e5908e 540e 0000540e a65a a65a a65a a65a a65a a65a a65a
+936 a65b a65b a65b * 475c * 8ea1c7dc,c7dc,8ea1c7dcv,c7dcv 5406 e59086 5406 00005406 a65b a65b a65b a65b a65b a65b a65b
+937 a65c a65c a65c * 475d * 8ea1c7dd,c7dd,8ea1c7ddv,c7ddv 5412 e59092 5412 00005412 a65c a65c a65c a65c a65c a65c a65c
+938 a65d a65d a65d * 475e * 8ea1c7de,c7de,8ea1c7dev,c7dev 56e0 e59ba0 56e0 000056e0 a65d a65d a65d a65d a65d a65d a65d
+939 a65e a65e a65e * 475f * 8ea1c7df,c7df,8ea1c7dfv,c7dfv 56de e59b9e 56de 000056de a65e a65e a65e a65e a65e a65e a65e
+940 a65f a65f a65f * 4760 * 8ea1c7e0,c7e0,8ea1c7e0v,c7e0v 56dd e59b9d 56dd 000056dd a65f a65f a65f a65f a65f a65f a65f
+941 a660 a660 a660 * 4761 * 8ea1c7e1,c7e1,8ea1c7e1v,c7e1v 5733 e59cb3 5733 00005733 a660 a660 a660 a660 a660 a660 a660
+942 a661 a661 a661 * 4762 * 8ea1c7e2,c7e2,8ea1c7e2v,c7e2v 5730 e59cb0 5730 00005730 a661 a661 a661 a661 a661 a661 a661
+943 a662 a662 a662 * 4763 * 8ea1c7e3,c7e3,8ea1c7e3v,c7e3v 5728 e59ca8 5728 00005728 a662 a662 a662 a662 a662 a662 a662
+944 a663 a663 a663 * 4764 * 8ea1c7e4,c7e4,8ea1c7e4v,c7e4v 572d e59cad 572d 0000572d a663 a663 a663 a663 a663 a663 a663
+945 a664 a664 a664 * 4765 * 8ea1c7e5,c7e5,8ea1c7e5v,c7e5v 572c e59cac 572c 0000572c a664 a664 a664 a664 a664 a664 a664
+946 a665 a665 a665 * 4766 * 8ea1c7e6,c7e6,8ea1c7e6v,c7e6v 572f e59caf 572f 0000572f a665 a665 a665 a665 a665 a665 a665
+947 a666 a666 a666 * 4767 * 8ea1c7e7,c7e7,8ea1c7e7v,c7e7v 5729 e59ca9 5729 00005729 a666 a666 a666 a666 a666 a666 a666
+948 a667 a667 a667 * 4768 * 8ea1c7e8,c7e8,8ea1c7e8v,c7e8v 5919 e5a499 5919 00005919 a667 a667 a667 a667 a667 a667 a667
+949 a668 a668 a668 * 4769 * 8ea1c7e9,c7e9,8ea1c7e9v,c7e9v 591a e5a49a 591a 0000591a a668 a668 a668 a668 a668 a668 a668
+950 a669 a669 a669 * 476a * 8ea1c7ea,c7ea,8ea1c7eav,c7eav 5937 e5a4b7 5937 00005937 a669 a669 a669 a669 a669 a669 a669
+951 a66a a66a a66a * 476b * 8ea1c7eb,c7eb,8ea1c7ebv,c7ebv 5938 e5a4b8 5938 00005938 a66a a66a a66a a66a a66a a66a a66a
+952 a66b a66b a66b * 476c * 8ea1c7ec,c7ec,8ea1c7ecv,c7ecv 5984 e5a684 5984 00005984 a66b a66b a66b a66b a66b a66b a66b
+953 a66c a66c a66c * 476d * 8ea1c7ed,c7ed,8ea1c7edv,c7edv 5978 e5a5b8 5978 00005978 a66c a66c a66c a66c a66c a66c a66c
+954 a66d a66d a66d * 476e * 8ea1c7ee,c7ee,8ea1c7eev,c7eev 5983 e5a683 5983 00005983 a66d a66d a66d a66d a66d a66d a66d
+955 a66e a66e a66e * 476f * 8ea1c7ef,c7ef,8ea1c7efv,c7efv 597d e5a5bd 597d 0000597d a66e a66e a66e a66e a66e a66e a66e
+956 a66f a66f a66f * 4770 * 8ea1c7f0,c7f0,8ea1c7f0v,c7f0v 5979 e5a5b9 5979 00005979 a66f a66f a66f a66f a66f a66f a66f
+957 a670 a670 a670 * 4771 * 8ea1c7f1,c7f1,8ea1c7f1v,c7f1v 5982 e5a682 5982 00005982 a670 a670 a670 a670 a670 a670 a670
+958 a671 a671 a671 * 4772 * 8ea1c7f2,c7f2,8ea1c7f2v,c7f2v 5981 e5a681 5981 00005981 a671 a671 a671 a671 a671 a671 a671
+959 a672 a672 a672 * 4773 * 8ea1c7f3,c7f3,8ea1c7f3v,c7f3v 5b57 e5ad97 5b57 00005b57 a672 a672 a672 a672 a672 a672 a672
+960 a673 a673 a673 * 4774 * 8ea1c7f4,c7f4,8ea1c7f4v,c7f4v 5b58 e5ad98 5b58 00005b58 a673 a673 a673 a673 a673 a673 a673
+961 a674 a674 a674 * 4775 * 8ea1c7f5,c7f5,8ea1c7f5v,c7f5v 5b87 e5ae87 5b87 00005b87 a674 a674 a674 a674 a674 a674 a674
+962 a675 a675 a675 * 4776 * 8ea1c7f6,c7f6,8ea1c7f6v,c7f6v 5b88 e5ae88 5b88 00005b88 a675 a675 a675 a675 a675 a675 a675
+963 a676 a676 a676 * 4777 * 8ea1c7f7,c7f7,8ea1c7f7v,c7f7v 5b85 e5ae85 5b85 00005b85 a676 a676 a676 a676 a676 a676 a676
+964 a677 a677 a677 * 4778 * 8ea1c7f8,c7f8,8ea1c7f8v,c7f8v 5b89 e5ae89 5b89 00005b89 a677 a677 a677 a677 a677 a677 a677
+965 a678 a678 a678 * 4779 * 8ea1c7f9,c7f9,8ea1c7f9v,c7f9v 5bfa e5afba 5bfa 00005bfa a678 a678 a678 a678 a678 a678 a678
+966 a679 a679 a679 * 477a * 8ea1c7fa,c7fa,8ea1c7fav,c7fav 5c16 e5b096 5c16 00005c16 a679 a679 a679 a679 a679 a679 a679
+967 a67a a67a a67a * 477b * 8ea1c7fb,c7fb,8ea1c7fbv,c7fbv 5c79 e5b1b9 5c79 00005c79 a67a a67a a67a a67a a67a a67a a67a
+968 a67b a67b a67b * 477c * 8ea1c7fc,c7fc,8ea1c7fcv,c7fcv 5dde e5b79e 5dde 00005dde a67b a67b a67b a67b a67b a67b a67b
+969 a67c a67c a67c * 477d * 8ea1c7fd,c7fd,8ea1c7fdv,c7fdv 5e06 e5b886 5e06 00005e06 a67c a67c a67c a67c a67c a67c a67c
+970 a67d a67d a67d * 477e * 8ea1c7fe,c7fe,8ea1c7fev,c7fev 5e76 e5b9b6 5e76 00005e76 a67d a67d a67d a67d a67d a67d a67d
+971 a67e a67e a67e * 4821 * 8ea1c8a1,c8a1,8ea1c8a1v,c8a1v 5e74 e5b9b4 5e74 00005e74 a67e a67e a67e a67e a67e a67e a67e
+972 a6a1 a6a1 a6a1 * 4822 * 8ea1c8a2,c8a2,8ea1c8a2v,c8a2v 5f0f e5bc8f 5f0f 00005f0f a6a1 a6a1 a6a1 a6a1 a6a1 a6a1 a6a1
+973 a6a2 a6a2 a6a2 * 4823 * 8ea1c8a3,c8a3,8ea1c8a3v,c8a3v 5f1b e5bc9b 5f1b 00005f1b a6a2 a6a2 a6a2 a6a2 a6a2 a6a2 a6a2
+974 a6a3 a6a3 a6a3 * 4824 * 8ea1c8a4,c8a4,8ea1c8a4v,c8a4v 5fd9 e5bf99 5fd9 00005fd9 a6a3 a6a3 a6a3 a6a3 a6a3 a6a3 a6a3
+975 a6a4 a6a4 a6a4 * 4825 * 8ea1c8a5,c8a5,8ea1c8a5v,c8a5v 5fd6 e5bf96 5fd6 00005fd6 a6a4 a6a4 a6a4 a6a4 a6a4 a6a4 a6a4
+976 a6a5 a6a5 a6a5 * 4826 * 8ea1c8a6,c8a6,8ea1c8a6v,c8a6v 620e e6888e 620e 0000620e a6a5 a6a5 a6a5 a6a5 a6a5 a6a5 a6a5
+977 a6a6 a6a6 a6a6 * 4827 * 8ea1c8a7,c8a7,8ea1c8a7v,c8a7v 620c e6888c 620c 0000620c a6a6 a6a6 a6a6 a6a6 a6a6 a6a6 a6a6
+978 a6a7 a6a7 a6a7 * 4828 * 8ea1c8a8,c8a8,8ea1c8a8v,c8a8v 620d e6888d 620d 0000620d a6a7 a6a7 a6a7 a6a7 a6a7 a6a7 a6a7
+979 a6a8 a6a8 a6a8 * 4829 * 8ea1c8a9,c8a9,8ea1c8a9v,c8a9v 6210 e68890 6210 00006210 a6a8 a6a8 a6a8 a6a8 a6a8 a6a8 a6a8
+980 a6a9 a6a9 a6a9 * 482a * 8ea1c8aa,c8aa,8ea1c8aav,c8aav 6263 e689a3 6263 00006263 a6a9 a6a9 a6a9 a6a9 a6a9 a6a9 a6a9
+981 a6aa a6aa a6aa * 482b * 8ea1c8ab,c8ab,8ea1c8abv,c8abv 625b e6899b 625b 0000625b a6aa a6aa a6aa a6aa a6aa a6aa a6aa
+982 a6ab a6ab a6ab * 482c * 8ea1c8ac,c8ac,8ea1c8acv,c8acv 6258 e68998 6258 00006258 a6ab a6ab a6ab a6ab a6ab a6ab a6ab
+983 a6ac a6ac a6ac * 482d * 8ea1c8ad,c8ad,8ea1c8adv,c8adv 6536 e694b6 6536 00006536 a6ac a6ac a6ac a6ac a6ac a6ac a6ac
+984 a6ad a6ad a6ad * 482e * 8ea1c8ae,c8ae,8ea1c8aev,c8aev 65e9 e697a9 65e9 000065e9 a6ad a6ad a6ad a6ad a6ad a6ad a6ad
+985 a6ae a6ae a6ae * 482f * 8ea1c8af,c8af,8ea1c8afv,c8afv 65e8 e697a8 65e8 000065e8 a6ae a6ae a6ae a6ae a6ae a6ae a6ae
+986 a6af a6af a6af * 4830 * 8ea1c8b0,c8b0,8ea1c8b0v,c8b0v 65ec e697ac 65ec 000065ec a6af a6af a6af a6af a6af a6af a6af
+987 a6b0 a6b0 a6b0 * 4831 * 8ea1c8b1,c8b1,8ea1c8b1v,c8b1v 65ed e697ad 65ed 000065ed a6b0 a6b0 a6b0 a6b0 a6b0 a6b0 a6b0
+988 a6b1 a6b1 a6b1 * 4832 * 8ea1c8b2,c8b2,8ea1c8b2v,c8b2v 66f2 e69bb2 66f2 000066f2 a6b1 a6b1 a6b1 a6b1 a6b1 a6b1 a6b1
+989 a6b2 a6b2 a6b2 * 4833 * 8ea1c8b3,c8b3,8ea1c8b3v,c8b3v 66f3 e69bb3 66f3 000066f3 a6b2 a6b2 a6b2 a6b2 a6b2 a6b2 a6b2
+990 a6b3 a6b3 a6b3 * 4834 * 8ea1c8b4,c8b4,8ea1c8b4v,c8b4v 6709 e69c89 6709 00006709 a6b3 a6b3 a6b3 a6b3 a6b3 a6b3 a6b3
+991 a6b4 a6b4 a6b4 * 4835 * 8ea1c8b5,c8b5,8ea1c8b5v,c8b5v 673d e69cbd 673d 0000673d a6b4 a6b4 a6b4 a6b4 a6b4 a6b4 a6b4
+992 a6b5 a6b5 a6b5 * 4836 * 8ea1c8b6,c8b6,8ea1c8b6v,c8b6v 6734 e69cb4 6734 00006734 a6b5 a6b5 a6b5 a6b5 a6b5 a6b5 a6b5
+993 a6b6 a6b6 a6b6 * 4837 * 8ea1c8b7,c8b7,8ea1c8b7v,c8b7v 6731 e69cb1 6731 00006731 a6b6 a6b6 a6b6 a6b6 a6b6 a6b6 a6b6
+994 a6b7 a6b7 a6b7 * 4838 * 8ea1c8b8,c8b8,8ea1c8b8v,c8b8v 6735 e69cb5 6735 00006735 a6b7 a6b7,fcac a6b7 a6b7 a6b7 a6b7 a6b7
+995 a6b8 a6b8 a6b8 * 4839 * 8ea1c8b9,c8b9,8ea1c8b9v,c8b9v 6b21 e6aca1 6b21 00006b21 a6b8 a6b8 a6b8 a6b8 a6b8 a6b8 a6b8
+996 a6b9 a6b9 a6b9 * 483a * 8ea1c8ba,c8ba,8ea1c8bav,c8bav 6b64 e6ada4 6b64 00006b64 a6b9 a6b9 a6b9 a6b9 a6b9 a6b9 a6b9
+997 a6ba a6ba a6ba * 483b * 8ea1c8bb,c8bb,8ea1c8bbv,c8bbv 6b7b e6adbb 6b7b 00006b7b a6ba a6ba a6ba a6ba a6ba a6ba a6ba
+998 a6bb a6bb a6bb * 483c * 8ea1c8bc,c8bc,8ea1c8bcv,c8bcv 6c16 e6b096 6c16 00006c16 a6bb a6bb a6bb a6bb a6bb a6bb a6bb
+999 a6bc a6bc a6bc * 483d * 8ea1c8bd,c8bd,8ea1c8bdv,c8bdv 6c5d e6b19d 6c5d 00006c5d a6bc a6bc a6bc a6bc a6bc a6bc a6bc
+1000 a6bd a6bd a6bd * 483e * 8ea1c8be,c8be,8ea1c8bev,c8bev 6c57 e6b197 6c57 00006c57 a6bd a6bd a6bd a6bd a6bd a6bd a6bd
+1001 a6be a6be a6be * 483f * 8ea1c8bf,c8bf,8ea1c8bfv,c8bfv 6c59 e6b199 6c59 00006c59 a6be a6be a6be a6be a6be a6be a6be
+1002 a6bf a6bf a6bf * 4840 * 8ea1c8c0,c8c0,8ea1c8c0v,c8c0v 6c5f e6b19f 6c5f 00006c5f a6bf a6bf a6bf a6bf a6bf a6bf a6bf
+1003 a6c0 a6c0 a6c0 * 4841 * 8ea1c8c1,c8c1,8ea1c8c1v,c8c1v 6c60 e6b1a0 6c60 00006c60 a6c0 a6c0 a6c0 a6c0 a6c0 a6c0 a6c0
+1004 a6c1 a6c1 a6c1 * 4842 * 8ea1c8c2,c8c2,8ea1c8c2v,c8c2v 6c50 e6b190 6c50 00006c50 a6c1 a6c1 a6c1 a6c1 a6c1 a6c1 a6c1
+1005 a6c2 a6c2 a6c2 * 4843 * 8ea1c8c3,c8c3,8ea1c8c3v,c8c3v 6c55 e6b195 6c55 00006c55 a6c2 a6c2 a6c2 a6c2 a6c2 a6c2 a6c2
+1006 a6c3 a6c3 a6c3 * 4844 * 8ea1c8c4,c8c4,8ea1c8c4v,c8c4v 6c61 e6b1a1 6c61 00006c61 a6c3 a6c3 a6c3 a6c3 a6c3 a6c3 a6c3
+1007 a6c4 a6c4 a6c4 * 4845 * 8ea1c8c5,c8c5,8ea1c8c5v,c8c5v 6c5b e6b19b 6c5b 00006c5b a6c4 a6c4 a6c4 a6c4 a6c4 a6c4 a6c4
+1008 a6c5 a6c5 a6c5 * 4846 * 8ea1c8c6,c8c6,8ea1c8c6v,c8c6v 6c4d e6b18d 6c4d 00006c4d a6c5 a6c5 a6c5 a6c5 a6c5 a6c5 a6c5
+1009 a6c6 a6c6 a6c6 * 4847 * 8ea1c8c7,c8c7,8ea1c8c7v,c8c7v 6c4e e6b18e 6c4e 00006c4e a6c6 a6c6 a6c6 a6c6 a6c6 a6c6 a6c6
+1010 a6c7 a6c7 a6c7 * 4848 * 8ea1c8c8,c8c8,8ea1c8c8v,c8c8v 7070 e781b0 7070 00007070 a6c7 a6c7 a6c7 a6c7 a6c7 a6c7 a6c7
+1011 a6c8 a6c8 a6c8 * 4849 * 8ea1c8c9,c8c9,8ea1c8c9v,c8c9v 725f e7899f 725f 0000725f a6c8 a6c8 a6c8 a6c8 a6c8 a6c8 a6c8
+1012 a6c9 a6c9 a6c9 * 484a * 8ea1c8ca,c8ca,8ea1c8cav,c8cav 725d e7899d 725d 0000725d a6c9 a6c9 a6c9 a6c9 a6c9 a6c9 a6c9
+1013 a6ca a6ca a6ca * 484b * 8ea1c8cb,c8cb,8ea1c8cbv,c8cbv 767e e799be 767e 0000767e a6ca a6ca a6ca a6ca a6ca a6ca a6ca
+1014 a6cb a6cb a6cb * 2837,484c * 8ea1a8b7,8ea1c8cc,a8b7,c8cc,8ea1a8b7v,8ea1c8ccv,a8b7v,c8ccv 7af9 e7abb9,e2bdb5 7af9,2f75 00007af9,00002f75 a6cb a6cb a6cb a6cb a6cb a6cb a6cb
+1015 a6cc a6cc a6cc * 2838,484d * 8ea1a8b8,8ea1c8cd,a8b8,c8cd,8ea1a8b8v,8ea1c8cdv,a8b8v,c8cdv 7c73 e7b1b3,e2bdb6 7c73,2f76 00007c73,00002f76 a6cc a6cc a6cc a6cc a6cc a6cc a6cc
+1016 a6cd a6cd a6cd * 2839,484e * 8ea1a8b9,8ea1c8ce,a8b9,c8ce,8ea1a8b9v,8ea1c8cev,a8b9v,c8cev 7cf8 e7b3b8,e2bdb7 7cf8,2f77 00007cf8,00002f77 a6cd a6cd a6cd a6cd a6cd a6cd a6cd
+1017 a6ce a6ce a6ce * 283a,484f * 8ea1a8ba,8ea1c8cf,a8ba,c8cf,8ea1a8bav,8ea1c8cfv,a8bav,c8cfv 7f36 e7bcb6,e2bdb8 7f36,2f78 00007f36,00002f78 a6ce a6ce a6ce a6ce a6ce a6ce a6ce
+1018 a6cf a6cf a6cf * 283c,4850 * 8ea1a8bc,8ea1c8d0,a8bc,c8d0,8ea1a8bcv,8ea1c8d0v,a8bcv,c8d0v 7f8a e7be8a,e2bdba 7f8a,2f7a 00007f8a,00002f7a a6cf a6cf a6cf a6cf a6cf a6cf a6cf
+1019 a6d0 a6d0 a6d0 * 283d,4851 * 8ea1a8bd,8ea1c8d1,a8bd,c8d1,8ea1a8bdv,8ea1c8d1v,a8bdv,c8d1v 7fbd e7bebd,e2bdbb 7fbd,2f7b 00007fbd,00002f7b a6d0 a6d0 a6d0 a6d0 a6d0 a6d0 a6d0
+1020 a6d1 a6d1 a6d1 * 283e,4852 * 8ea1a8be,8ea1c8d2,a8be,c8d2,8ea1a8bev,8ea1c8d2v,a8bev,c8d2v 8001 e88081,e2bdbc 8001,2f7c 00008001,00002f7c a6d1 a6d1 a6d1 a6d1 a6d1 a6d1 a6d1
+1021 a6d2 a6d2 a6d2 * 4853 * 8ea1c8d3,c8d3,8ea1c8d3v,c8d3v 8003 e88083 8003 00008003 a6d2 a6d2 a6d2 a6d2 a6d2 a6d2 a6d2
+1022 a6d3 a6d3 a6d3 * 283f,4854 * 8ea1a8bf,8ea1c8d4,a8bf,c8d4,8ea1a8bfv,8ea1c8d4v,a8bfv,c8d4v 800c e8808c,e2bdbd 800c,2f7d 0000800c,00002f7d a6d3 a6d3 a6d3 a6d3 a6d3 a6d3 a6d3
+1023 a6d4 a6d4 a6d4 * 2840,4855 * 8ea1a8c0,8ea1c8d5,a8c0,c8d5,8ea1a8c0v,8ea1c8d5v,a8c0v,c8d5v 8012 e88092,e2bdbe 8012,2f7e 00008012,00002f7e a6d4 a6d4 a6d4 a6d4 a6d4 a6d4 a6d4
+1024 a6d5 a6d5 a6d5 * 2841,4856 * 8ea1a8c1,8ea1c8d6,a8c1,c8d6,8ea1a8c1v,8ea1c8d6v,a8c1v,c8d6v 8033 e880b3,e2bdbf 8033,2f7f 00008033,00002f7f a6d5 a6d5 a6d5 a6d5 a6d5 a6d5 a6d5
+1025 a6d6 a6d6 a6d6 * 2842,4857 * 8ea1a8c2,8ea1c8d7,a8c2,c8d7,8ea1a8c2v,8ea1c8d7v,a8c2v,c8d7v 807f e881bf,e2be80 807f,2f80 0000807f,00002f80 a6d6 a6d6 a6d6 a6d6 a6d6 a6d6 a6d6
+1026 a6d7 a6d7 a6d7 * 2843,4858 * 8ea1a8c3,8ea1c8d8,a8c3,c8d8,8ea1a8c3v,8ea1c8d8v,a8c3v,c8d8v 8089 e88289,e2be81 8089,2f81 00008089,00002f81 a6d7 a6d7 a6d7 a6d7 a6d7 a6d7 a6d7
+1027 a6d8 a6d8 a6d8 * 4859 * 8ea1c8d9,c8d9,8ea1c8d9v,c8d9v 808b e8828b 808b 0000808b a6d8 a6d8 a6d8 a6d8 a6d8 a6d8 a6d8
+1028 a6d9 a6d9 a6d9 * 485a * 8ea1c8da,c8da,8ea1c8dav,c8dav 808c e8828c 808c 0000808c a6d9 a6d9 a6d9 a6d9 a6d9 a6d9 a6d9
+1029 a6da a6da a6da * 2844,485b * 8ea1a8c4,8ea1c8db,a8c4,c8db,8ea1a8c4v,8ea1c8dbv,a8c4v,c8dbv 81e3 e887a3,e2be82 81e3,2f82 000081e3,00002f82 a6da a6da a6da a6da a6da a6da a6da
+1030 a6db a6db a6db * 2845,485c * 8ea1a8c5,8ea1c8dc,a8c5,c8dc,8ea1a8c5v,8ea1c8dcv,a8c5v,c8dcv 81ea e887aa,e2be83 81ea,2f83 000081ea,00002f83 a6db a6db a6db a6db a6db a6db a6db
+1031 a6dc a6dc a6dc * 2846,485d * 8ea1a8c6,8ea1c8dd,a8c6,c8dd,8ea1a8c6v,8ea1c8ddv,a8c6v,c8ddv 81f3 e887b3,e2be84 81f3,2f84 000081f3,00002f84 a6dc a6dc a6dc a6dc a6dc a6dc a6dc
+1032 a6dd a6dd a6dd * 2847,485e * 8ea1a8c7,8ea1c8de,a8c7,c8de,8ea1a8c7v,8ea1c8dev,a8c7v,c8dev 81fc e887bc,e2be85 81fc,2f85 000081fc,00002f85 a6dd a6dd a6dd a6dd a6dd a6dd a6dd
+1033 a6de a6de a6de * 2848,485f * 8ea1a8c8,8ea1c8df,a8c8,c8df,8ea1a8c8v,8ea1c8dfv,a8c8v,c8dfv 820c e8888c,e2be86 820c,2f86 0000820c,00002f86 a6de a6de a6de a6de a6de a6de a6de
+1034 a6df a6df a6df * 2849,4860 * 8ea1a8c9,8ea1c8e0,a8c9,c8e0,8ea1a8c9v,8ea1c8e0v,a8c9v,c8e0v 821b e8889b,e2be87 821b,2f87 0000821b,00002f87 a6df a6df a6df a6df a6df a6df a6df
+1035 a6e0 a6e0 a6e0 * 284a,4861 * 8ea1a8ca,8ea1c8e1,a8ca,c8e1,8ea1a8cav,8ea1c8e1v,a8cav,c8e1v 821f e8889f,e2be88 821f,2f88 0000821f,00002f88 a6e0 a6e0 a6e0 a6e0 a6e0 a6e0 a6e0
+1036 a6e1 a6e1 a6e1 * 284b,4862 * 8ea1a8cb,8ea1c8e2,a8cb,c8e2,8ea1a8cbv,8ea1c8e2v,a8cbv,c8e2v 826e e889ae,e2be89 826e,2f89 0000826e,00002f89 a6e1 a6e1 a6e1 a6e1 a6e1 a6e1 a6e1
+1037 a6e2 a6e2 a6e2 * 284c,4863 * 8ea1a8cc,8ea1c8e3,a8cc,c8e3,8ea1a8ccv,8ea1c8e3v,a8ccv,c8e3v 8272 e889b2,e2be8a 8272,2f8a 00008272,00002f8a a6e2 a6e2 a6e2 a6e2 a6e2 a6e2 a6e2
+1038 a6e3 a6e3 a6e3 * 4864 * 8ea1c8e4,c8e4,8ea1c8e4v,c8e4v 827e e889be 827e 0000827e a6e3 a6e3 a6e3 a6e3 a6e3 a6e3 a6e3
+1039 a6e4 a6e4 a6e4 * 284f,4865 * 8ea1a8cf,8ea1c8e5,a8cf,c8e5,8ea1a8cfv,8ea1c8e5v,a8cfv,c8e5v 866b e899ab,e2be8d 866b,2f8d 0000866b,00002f8d a6e4 a6e4 a6e4 a6e4 a6e4 a6e4 a6e4
+1040 a6e5 a6e5 a6e5 * 2850,4866 * 8ea1a8d0,8ea1c8e6,a8d0,c8e6,8ea1a8d0v,8ea1c8e6v,a8d0v,c8e6v 8840 e8a180,e2be8e 8840,2f8e 00008840,00002f8e a6e5 a6e5 a6e5 a6e5 a6e5 a6e5 a6e5
+1041 a6e6 a6e6 a6e6 * 2851,4867 * 8ea1a8d1,8ea1c8e7,a8d1,c8e7,8ea1a8d1v,8ea1c8e7v,a8d1v,c8e7v 884c e8a18c,e2be8f 884c,2f8f 0000884c,00002f8f a6e6 a6e6 a6e6 a6e6 a6e6 a6e6 a6e6
+1042 a6e7 a6e7 a6e7 * 2852,4868 * 8ea1a8d2,8ea1c8e8,a8d2,c8e8,8ea1a8d2v,8ea1c8e8v,a8d2v,c8e8v 8863 e8a1a3,e2be90 8863,2f90 00008863,00002f90 a6e7 a6e7 a6e7 a6e7 a6e7 a6e7 a6e7
+1043 a6e8 a6e8 a6e8 * 4869 * 8ea1c8e9,c8e9,8ea1c8e9v,c8e9v 897f e8a5bf 897f 0000897f a6e8 a6e8 a6e8 a6e8 a6e8 a6e8 a6e8
+1044 a6e9 a6e9 a6e9 * 486a * 8ea1c8ea,c8ea,8ea1c8eav,c8eav 9621 e998a1 9621 00009621 a6e9 a6e9 a6e9 a6e9 a6e9 a6e9 a6e9
+1045 a6ea a6ea a6ea * 486b * 8ea1c8eb,c8eb,8ea1c8ebv,c8ebv 4e32 e4b8b2 4e32 00004e32 a6ea a6ea a6ea a6ea a6ea a6ea a6ea
+1046 a6eb a6eb a6eb * 486c * 8ea1c8ec,c8ec,8ea1c8ecv,c8ecv 4ea8 e4baa8 4ea8 00004ea8 a6eb a6eb a6eb a6eb a6eb a6eb a6eb
+1047 a6ec a6ec a6ec * 486d * 8ea1c8ed,c8ed,8ea1c8edv,c8edv 4f4d e4bd8d 4f4d 00004f4d a6ec a6ec a6ec a6ec a6ec a6ec a6ec
+1048 a6ed a6ed a6ed * 486e * 8ea1c8ee,c8ee,8ea1c8eev,c8eev 4f4f e4bd8f 4f4f 00004f4f a6ed a6ed a6ed a6ed a6ed a6ed a6ed
+1049 a6ee a6ee a6ee * 486f * 8ea1c8ef,c8ef,8ea1c8efv,c8efv 4f47 e4bd87 4f47 00004f47 a6ee a6ee a6ee a6ee a6ee a6ee a6ee
+1050 a6ef a6ef a6ef * 4870 * 8ea1c8f0,c8f0,8ea1c8f0v,c8f0v 4f57 e4bd97 4f57 00004f57 a6ef a6ef a6ef a6ef a6ef a6ef a6ef
+1051 a6f0 a6f0 a6f0 * 4871 * 8ea1c8f1,c8f1,8ea1c8f1v,c8f1v 4f5e e4bd9e 4f5e 00004f5e a6f0 a6f0 a6f0 a6f0 a6f0 a6f0 a6f0
+1052 a6f1 a6f1 a6f1 * 4872 * 8ea1c8f2,c8f2,8ea1c8f2v,c8f2v 4f34 e4bcb4 4f34 00004f34 a6f1 a6f1 a6f1 a6f1 a6f1 a6f1 a6f1
+1053 a6f2 a6f2 a6f2 * 4873 * 8ea1c8f3,c8f3,8ea1c8f3v,c8f3v 4f5b e4bd9b 4f5b 00004f5b a6f2 a6f2 a6f2 a6f2 a6f2 a6f2 a6f2
+1054 a6f3 a6f3 a6f3 * 4874 * 8ea1c8f4,c8f4,8ea1c8f4v,c8f4v 4f55 e4bd95 4f55 00004f55 a6f3 a6f3 a6f3 a6f3 a6f3 a6f3 a6f3
+1055 a6f4 a6f4 a6f4 * 4875 * 8ea1c8f5,c8f5,8ea1c8f5v,c8f5v 4f30 e4bcb0 4f30 00004f30 a6f4 a6f4 a6f4 a6f4 a6f4 a6f4 a6f4
+1056 a6f5 a6f5 a6f5 * 4876 * 8ea1c8f6,c8f6,8ea1c8f6v,c8f6v 4f50 e4bd90 4f50 00004f50 a6f5 a6f5 a6f5 a6f5 a6f5 a6f5 a6f5
+1057 a6f6 a6f6 a6f6 * 4877 * 8ea1c8f7,c8f7,8ea1c8f7v,c8f7v 4f51 e4bd91 4f51 00004f51 a6f6 a6f6 a6f6 a6f6 a6f6 a6f6 a6f6
+1058 a6f7 a6f7 a6f7 * 4878 * 8ea1c8f8,c8f8,8ea1c8f8v,c8f8v 4f3d e4bcbd 4f3d 00004f3d a6f7 a6f7 a6f7 a6f7 a6f7 a6f7 a6f7
+1059 a6f8 a6f8 a6f8 * 4879 * 8ea1c8f9,c8f9,8ea1c8f9v,c8f9v 4f3a e4bcba 4f3a 00004f3a a6f8 a6f8 a6f8 a6f8 a6f8 a6f8 a6f8
+1060 a6f9 a6f9 a6f9 * 487a * 8ea1c8fa,c8fa,8ea1c8fav,c8fav 4f38 e4bcb8 4f38 00004f38 a6f9 a6f9 a6f9 a6f9 a6f9 a6f9 a6f9
+1061 a6fa a6fa a6fa * 487b * 8ea1c8fb,c8fb,8ea1c8fbv,c8fbv 4f43 e4bd83 4f43 00004f43 a6fa a6fa a6fa a6fa a6fa a6fa a6fa
+1062 a6fb a6fb a6fb * 487c * 8ea1c8fc,c8fc,8ea1c8fcv,c8fcv 4f54 e4bd94 4f54 00004f54 a6fb a6fb a6fb a6fb a6fb a6fb a6fb
+1063 a6fc a6fc a6fc * 487d * 8ea1c8fd,c8fd,8ea1c8fdv,c8fdv 4f3c e4bcbc 4f3c 00004f3c a6fc a6fc a6fc a6fc a6fc a6fc a6fc
+1064 a6fd a6fd a6fd * 487e * 8ea1c8fe,c8fe,8ea1c8fev,c8fev 4f46 e4bd86 4f46 00004f46 a6fd a6fd a6fd a6fd a6fd a6fd a6fd
+1065 a6fe a6fe a6fe * 4921 * 8ea1c9a1,c9a1,8ea1c9a1v,c9a1v 4f63 e4bda3 4f63 00004f63 a6fe a6fe a6fe a6fe a6fe a6fe a6fe
+1066 a740 a740 a740 * 4922 * 8ea1c9a2,c9a2,8ea1c9a2v,c9a2v 4f5c e4bd9c 4f5c 00004f5c a740 a740 a740 a740 a740 a740 a740
+1067 a741 a741 a741 * 4923 * 8ea1c9a3,c9a3,8ea1c9a3v,c9a3v 4f60 e4bda0 4f60 00004f60 a741 a741 a741 a741 a741 a741 a741
+1068 a742 a742 a742 * 4924 * 8ea1c9a4,c9a4,8ea1c9a4v,c9a4v 4f2f e4bcaf 4f2f 00004f2f a742 a742 a742 a742 a742 a742 a742
+1069 a743 a743 a743 * 4925 * 8ea1c9a5,c9a5,8ea1c9a5v,c9a5v 4f4e e4bd8e 4f4e 00004f4e a743 a743 a743 a743 a743 a743 a743
+1070 a744 a744 a744 * 4926 * 8ea1c9a6,c9a6,8ea1c9a6v,c9a6v 4f36 e4bcb6 4f36 00004f36 a744 a744 a744 a744 a744 a744 a744
+1071 a745 a745 a745 * 4927 * 8ea1c9a7,c9a7,8ea1c9a7v,c9a7v 4f59 e4bd99 4f59 00004f59 a745 a745 a745 a745 a745 a745 a745
+1072 a746 a746 a746 * 4928 * 8ea1c9a8,c9a8,8ea1c9a8v,c9a8v 4f5d e4bd9d 4f5d 00004f5d a746 a746 a746 a746 a746 a746 a746
+1073 a747 a747 a747 * 4929 * 8ea1c9a9,c9a9,8ea1c9a9v,c9a9v 4f48 e4bd88 4f48 00004f48 a747 a747 a747 a747 a747 a747 a747
+1074 a748 a748 a748 * 492a * 8ea1c9aa,c9aa,8ea1c9aav,c9aav 4f5a e4bd9a 4f5a 00004f5a a748 a748 a748 a748 a748 a748 a748
+1075 a749 a749 a749 * 492b * 8ea1c9ab,c9ab,8ea1c9abv,c9abv 514c e5858c 514c 0000514c a749 a749 a749 a749 a749 a749 a749
+1076 a74a a74a a74a * 492c * 8ea1c9ac,c9ac,8ea1c9acv,c9acv 514b e5858b 514b 0000514b a74a a74a a74a a74a a74a a74a a74a
+1077 a74b a74b a74b * 492d * 8ea1c9ad,c9ad,8ea1c9adv,c9adv 514d e5858d 514d 0000514d a74b a74b a74b a74b a74b a74b a74b
+1078 a74c a74c a74c * 492e * 8ea1c9ae,c9ae,8ea1c9aev,c9aev 5175 e585b5 5175 00005175 a74c a74c a74c a74c a74c a74c a74c
+1079 a74d a74d a74d * 492f * 8ea1c9af,c9af,8ea1c9afv,c9afv 51b6 e586b6 51b6 000051b6 a74d a74d a74d a74d a74d a74d a74d
+1080 a74e a74e a74e * 4930 * 8ea1c9b0,c9b0,8ea1c9b0v,c9b0v 51b7 e586b7 51b7 000051b7 a74e a74e a74e a74e a74e a74e a74e
+1081 a74f a74f a74f * 4931 * 8ea1c9b1,c9b1,8ea1c9b1v,c9b1v 5225 e588a5 5225 00005225 a74f a74f a74f a74f a74f a74f a74f
+1082 a750 a750 a750 * 4932 * 8ea1c9b2,c9b2,8ea1c9b2v,c9b2v 5224 e588a4 5224 00005224 a750 a750 a750 a750 a750 a750 a750
+1083 a751 a751 a751 * 4933 * 8ea1c9b3,c9b3,8ea1c9b3v,c9b3v 5229 e588a9 5229 00005229 a751 a751 a751 a751 a751 a751 a751
+1084 a752 a752 a752 * 4934 * 8ea1c9b4,c9b4,8ea1c9b4v,c9b4v 522a e588aa 522a 0000522a a752 a752 a752 a752 a752 a752 a752
+1085 a753 a753 a753 * 4935 * 8ea1c9b5,c9b5,8ea1c9b5v,c9b5v 5228 e588a8 5228 00005228 a753 a753 a753 a753 a753 a753 a753
+1086 a754 a754 a754 * 4936 * 8ea1c9b6,c9b6,8ea1c9b6v,c9b6v 52ab e58aab 52ab 000052ab a754 a754 a754 a754 a754 a754 a754
+1087 a755 a755 a755 * 4937 * 8ea1c9b7,c9b7,8ea1c9b7v,c9b7v 52a9 e58aa9 52a9 000052a9 a755 a755 a755 a755 a755 a755 a755
+1088 a756 a756 a756 * 4938 * 8ea1c9b8,c9b8,8ea1c9b8v,c9b8v 52aa e58aaa 52aa 000052aa a756 a756 a756 a756 a756 a756 a756
+1089 a757 a757 a757 * 4939 * 8ea1c9b9,c9b9,8ea1c9b9v,c9b9v 52ac e58aac 52ac 000052ac a757 a757 a757 a757 a757 a757 a757
+1090 a758 a758 a758 * 493a * 8ea1c9ba,c9ba,8ea1c9bav,c9bav 5323 e58ca3 5323 00005323 a758 a758 a758 a758 a758 a758 a758
+1091 a759 a759 a759 * 493b * 8ea1c9bb,c9bb,8ea1c9bbv,c9bbv 5373 e58db3 5373 00005373 a759 a759 a759 a759 a759 a759 a759
+1092 a75a a75a a75a * 493c * 8ea1c9bc,c9bc,8ea1c9bcv,c9bcv 5375 e58db5 5375 00005375 a75a a75a a75a a75a a75a a75a a75a
+1093 a75b a75b a75b * 493d * 8ea1c9bd,c9bd,8ea1c9bdv,c9bdv 541d e5909d 541d 0000541d a75b a75b a75b a75b a75b a75b a75b
+1094 a75c a75c a75c * 493e * 8ea1c9be,c9be,8ea1c9bev,c9bev 542d e590ad 542d 0000542d a75c a75c a75c a75c a75c a75c a75c
+1095 a75d a75d a75d * 493f * 8ea1c9bf,c9bf,8ea1c9bfv,c9bfv 541e e5909e 541e 0000541e a75d a75d a75d a75d a75d a75d a75d
+1096 a75e a75e a75e * 4940 * 8ea1c9c0,c9c0,8ea1c9c0v,c9c0v 543e e590be 543e 0000543e a75e a75e a75e a75e a75e a75e a75e
+1097 a75f a75f a75f * 4941 * 8ea1c9c1,c9c1,8ea1c9c1v,c9c1v 5426 e590a6 5426 00005426 a75f a75f a75f a75f a75f a75f a75f
+1098 a760 a760 a760 * 4942 * 8ea1c9c2,c9c2,8ea1c9c2v,c9c2v 544e e5918e 544e 0000544e a760 a760 a760 a760 a760 a760 a760
+1099 a761 a761 a761 * 4943 * 8ea1c9c3,c9c3,8ea1c9c3v,c9c3v 5427 e590a7 5427 00005427 a761 a761 a761 a761 a761 a761 a761
+1100 a762 a762 a762 * 4944 * 8ea1c9c4,c9c4,8ea1c9c4v,c9c4v 5446 e59186 5446 00005446 a762 a762 a762 a762 a762 a762 a762
+1101 a763 a763 a763 * 4945 * 8ea1c9c5,c9c5,8ea1c9c5v,c9c5v 5443 e59183 5443 00005443 a763 a763 a763 a763 a763 a763 a763
+1102 a764 a764 a764 * 4946 * 8ea1c9c6,c9c6,8ea1c9c6v,c9c6v 5433 e590b3 5433 00005433 a764 a764 a764 a764 a764 a764 a764
+1103 a765 a765 a765 * 4947 * 8ea1c9c7,c9c7,8ea1c9c7v,c9c7v 5448 e59188 5448 00005448 a765 a765 a765 a765 a765 a765 a765
+1104 a766 a766 a766 * 4948 * 8ea1c9c8,c9c8,8ea1c9c8v,c9c8v 5442 e59182 5442 00005442 a766 a766 a766 a766 a766 a766 a766
+1105 a767 a767 a767 * 4949 * 8ea1c9c9,c9c9,8ea1c9c9v,c9c9v 541b e5909b 541b 0000541b a767 a767 a767 a767 a767 a767 a767
+1106 a768 a768 a768 * 494a * 8ea1c9ca,c9ca,8ea1c9cav,c9cav 5429 e590a9 5429 00005429 a768 a768 a768 a768 a768 a768 a768
+1107 a769 a769 a769 * 494b * 8ea1c9cb,c9cb,8ea1c9cbv,c9cbv 544a e5918a 544a 0000544a a769 a769 a769 a769 a769 a769 a769
+1108 a76a a76a a76a * 494c * 8ea1c9cc,c9cc,8ea1c9ccv,c9ccv 5439 e590b9 5439 00005439 a76a a76a a76a a76a a76a a76a a76a
+1109 a76b a76b a76b * 494d * 8ea1c9cd,c9cd,8ea1c9cdv,c9cdv 543b e590bb 543b 0000543b a76b a76b a76b a76b a76b a76b a76b
+1110 a76c a76c a76c * 494e * 8ea1c9ce,c9ce,8ea1c9cev,c9cev 5438 e590b8 5438 00005438 a76c a76c a76c a76c a76c a76c a76c
+1111 a76d a76d a76d * 494f * 8ea1c9cf,c9cf,8ea1c9cfv,c9cfv 542e e590ae 542e 0000542e a76d a76d a76d a76d a76d a76d a76d
+1112 a76e a76e a76e * 4950 * 8ea1c9d0,c9d0,8ea1c9d0v,c9d0v 5435 e590b5 5435 00005435 a76e a76e a76e a76e a76e a76e a76e
+1113 a76f a76f a76f * 4951 * 8ea1c9d1,c9d1,8ea1c9d1v,c9d1v 5436 e590b6 5436 00005436 a76f a76f a76f a76f a76f a76f a76f
+1114 a770 a770 a770 * 4952 * 8ea1c9d2,c9d2,8ea1c9d2v,c9d2v 5420 e590a0 5420 00005420 a770 a770 a770 a770 a770 a770 a770
+1115 a771 a771 a771 * 4953 * 8ea1c9d3,c9d3,8ea1c9d3v,c9d3v 543c e590bc 543c 0000543c a771 a771 a771 a771 a771 a771 a771
+1116 a772 a772 a772 * 4954 * 8ea1c9d4,c9d4,8ea1c9d4v,c9d4v 5440 e59180 5440 00005440 a772 a772 a772 a772 a772 a772 a772
+1117 a773 a773 a773 * 4955 * 8ea1c9d5,c9d5,8ea1c9d5v,c9d5v 5431 e590b1 5431 00005431 a773 a773 a773 a773 a773 a773 a773
+1118 a774 a774 a774 * 4956 * 8ea1c9d6,c9d6,8ea1c9d6v,c9d6v 542b e590ab 542b 0000542b a774 a774 a774 a774 a774 a774 a774
+1119 a775 a775 a775 * 4957 * 8ea1c9d7,c9d7,8ea1c9d7v,c9d7v 541f e5909f 541f 0000541f a775 a775 a775 a775 a775 a775 a775
+1120 a776 a776 a776 * 4958 * 8ea1c9d8,c9d8,8ea1c9d8v,c9d8v 542c e590ac 542c 0000542c a776 a776 a776 a776 a776 a776 a776
+1121 a777 a777 a777 * 4959 * 8ea1c9d9,c9d9,8ea1c9d9v,c9d9v 56ea e59baa 56ea 000056ea a777 a777 a777 a777 a777 a777 a777
+1122 a778 a778 a778 * 495a * 8ea1c9da,c9da,8ea1c9dav,c9dav 56f0 e59bb0 56f0 000056f0 a778 a778 a778 a778 a778 a778 a778
+1123 a779 a779 a779 * 495b * 8ea1c9db,c9db,8ea1c9dbv,c9dbv 56e4 e59ba4 56e4 000056e4 a779 a779 a779 a779 a779 a779 a779
+1124 a77a a77a a77a * 495c * 8ea1c9dc,c9dc,8ea1c9dcv,c9dcv 56eb e59bab 56eb 000056eb a77a a77a a77a a77a a77a a77a a77a
+1125 a77b a77b a77b * 495d * 8ea1c9dd,c9dd,8ea1c9ddv,c9ddv 574a e59d8a 574a 0000574a a77b a77b a77b a77b a77b a77b a77b
+1126 a77c a77c a77c * 495e * 8ea1c9de,c9de,8ea1c9dev,c9dev 5751 e59d91 5751 00005751 a77c a77c a77c a77c a77c a77c a77c
+1127 a77d a77d a77d * 495f * 8ea1c9df,c9df,8ea1c9dfv,c9dfv 5740 e59d80 5740 00005740 a77d a77d a77d a77d a77d a77d a77d
+1128 a77e a77e a77e * 4960 * 8ea1c9e0,c9e0,8ea1c9e0v,c9e0v 574d e59d8d 574d 0000574d a77e a77e a77e a77e a77e a77e a77e
+1129 a7a1 a7a1 a7a1 * 4961 * 8ea1c9e1,c9e1,8ea1c9e1v,c9e1v 5747 e59d87 5747 00005747 a7a1 a7a1 a7a1 a7a1 a7a1 a7a1 a7a1
+1130 a7a2 a7a2 a7a2 * 4962 * 8ea1c9e2,c9e2,8ea1c9e2v,c9e2v 574e e59d8e 574e 0000574e a7a2 a7a2 a7a2 a7a2 a7a2 a7a2 a7a2
+1131 a7a3 a7a3 a7a3 * 4963 * 8ea1c9e3,c9e3,8ea1c9e3v,c9e3v 573e e59cbe 573e 0000573e a7a3 a7a3 a7a3 a7a3 a7a3 a7a3 a7a3
+1132 a7a4 a7a4 a7a4 * 4964 * 8ea1c9e4,c9e4,8ea1c9e4v,c9e4v 5750 e59d90 5750 00005750 a7a4 a7a4 a7a4 a7a4 a7a4 a7a4 a7a4
+1133 a7a5 a7a5 a7a5 * 4965 * 8ea1c9e5,c9e5,8ea1c9e5v,c9e5v 574f e59d8f 574f 0000574f a7a5 a7a5 a7a5 a7a5 a7a5 a7a5 a7a5
+1134 a7a6 a7a6 a7a6 * 4966 * 8ea1c9e6,c9e6,8ea1c9e6v,c9e6v 573b e59cbb 573b 0000573b a7a6 a7a6 a7a6 a7a6 a7a6 a7a6 a7a6
+1135 a7a7 a7a7 a7a7 * 4967 * 8ea1c9e7,c9e7,8ea1c9e7v,c9e7v 58ef e5a3af 58ef 000058ef a7a7 a7a7 a7a7 a7a7 a7a7 a7a7 a7a7
+1136 a7a8 a7a8 a7a8 * 4968 * 8ea1c9e8,c9e8,8ea1c9e8v,c9e8v 593e e5a4be 593e 0000593e a7a8 a7a8 a7a8 a7a8 a7a8 a7a8 a7a8
+1137 a7a9 a7a9 a7a9 * 4969 * 8ea1c9e9,c9e9,8ea1c9e9v,c9e9v 599d e5a69d 599d 0000599d a7a9 a7a9 a7a9 a7a9 a7a9 a7a9 a7a9
+1138 a7aa a7aa a7aa * 496a * 8ea1c9ea,c9ea,8ea1c9eav,c9eav 5992 e5a692 5992 00005992 a7aa a7aa a7aa a7aa a7aa a7aa a7aa
+1139 a7ab a7ab a7ab * 496b * 8ea1c9eb,c9eb,8ea1c9ebv,c9ebv 59a8 e5a6a8 59a8 000059a8 a7ab a7ab a7ab a7ab a7ab a7ab a7ab
+1140 a7ac a7ac a7ac * 496c * 8ea1c9ec,c9ec,8ea1c9ecv,c9ecv 599e e5a69e 599e 0000599e a7ac a7ac a7ac a7ac a7ac a7ac a7ac
+1141 a7ad a7ad a7ad * 496d * 8ea1c9ed,c9ed,8ea1c9edv,c9edv 59a3 e5a6a3 59a3 000059a3 a7ad a7ad a7ad a7ad a7ad a7ad a7ad
+1142 a7ae a7ae a7ae * 496e * 8ea1c9ee,c9ee,8ea1c9eev,c9eev 5999 e5a699 5999 00005999 a7ae a7ae a7ae a7ae a7ae a7ae a7ae
+1143 a7af a7af a7af * 496f * 8ea1c9ef,c9ef,8ea1c9efv,c9efv 5996 e5a696 5996 00005996 a7af a7af a7af a7af a7af a7af a7af
+1144 a7b0 a7b0 a7b0 * 4970 * 8ea1c9f0,c9f0,8ea1c9f0v,c9f0v 598d e5a68d 598d 0000598d a7b0 a7b0 a7b0 a7b0 a7b0 a7b0 a7b0
+1145 a7b1 a7b1 a7b1 * 4971 * 8ea1c9f1,c9f1,8ea1c9f1v,c9f1v 59a4 e5a6a4 59a4 000059a4 a7b1 a7b1 a7b1 a7b1 a7b1 a7b1 a7b1
+1146 a7b2 a7b2 a7b2 * 4972 * 8ea1c9f2,c9f2,8ea1c9f2v,c9f2v 5993 e5a693 5993 00005993 a7b2 a7b2 a7b2 a7b2 a7b2 a7b2 a7b2
+1147 a7b3 a7b3 a7b3 * 4973 * 8ea1c9f3,c9f3,8ea1c9f3v,c9f3v 598a e5a68a 598a 0000598a a7b3 a7b3 a7b3 a7b3 a7b3 a7b3 a7b3
+1148 a7b4 a7b4 a7b4 * 4974 * 8ea1c9f4,c9f4,8ea1c9f4v,c9f4v 59a5 e5a6a5 59a5 000059a5 a7b4 a7b4 a7b4 a7b4 a7b4 a7b4 a7b4
+1149 a7b5 a7b5 a7b5 * 4975 * 8ea1c9f5,c9f5,8ea1c9f5v,c9f5v 5b5d e5ad9d 5b5d 00005b5d a7b5 a7b5 a7b5 a7b5 a7b5 a7b5 a7b5
+1150 a7b6 a7b6 a7b6 * 4976 * 8ea1c9f6,c9f6,8ea1c9f6v,c9f6v 5b5c e5ad9c 5b5c 00005b5c a7b6 a7b6 a7b6 a7b6 a7b6 a7b6 a7b6
+1151 a7b7 a7b7 a7b7 * 4977 * 8ea1c9f7,c9f7,8ea1c9f7v,c9f7v 5b5a e5ad9a 5b5a 00005b5a a7b7 a7b7 a7b7 a7b7 a7b7 a7b7 a7b7
+1152 a7b8 a7b8 a7b8 * 4978 * 8ea1c9f8,c9f8,8ea1c9f8v,c9f8v 5b5b e5ad9b 5b5b 00005b5b a7b8 a7b8 a7b8 a7b8 a7b8 a7b8 a7b8
+1153 a7b9 a7b9 a7b9 * 4979 * 8ea1c9f9,c9f9,8ea1c9f9v,c9f9v 5b8c e5ae8c 5b8c 00005b8c a7b9 a7b9 a7b9 a7b9 a7b9 a7b9 a7b9
+1154 a7ba a7ba a7ba * 497a * 8ea1c9fa,c9fa,8ea1c9fav,c9fav 5b8b e5ae8b 5b8b 00005b8b a7ba a7ba a7ba a7ba a7ba a7ba a7ba
+1155 a7bb a7bb a7bb * 497b * 8ea1c9fb,c9fb,8ea1c9fbv,c9fbv 5b8f e5ae8f 5b8f 00005b8f a7bb a7bb a7bb a7bb a7bb a7bb a7bb
+1156 a7bc a7bc a7bc * 497c * 8ea1c9fc,c9fc,8ea1c9fcv,c9fcv 5c2c e5b0ac 5c2c 00005c2c a7bc a7bc a7bc a7bc a7bc a7bc a7bc
+1157 a7bd a7bd a7bd * 497d * 8ea1c9fd,c9fd,8ea1c9fdv,c9fdv 5c40 e5b180 5c40 00005c40 a7bd a7bd a7bd a7bd a7bd a7bd a7bd
+1158 a7be a7be a7be * 497e * 8ea1c9fe,c9fe,8ea1c9fev,c9fev 5c41 e5b181 5c41 00005c41 a7be a7be a7be a7be a7be a7be a7be
+1159 a7bf a7bf a7bf * 4a21 * 8ea1caa1,caa1,8ea1caa1v,caa1v 5c3f e5b0bf 5c3f 00005c3f a7bf a7bf a7bf a7bf a7bf a7bf a7bf
+1160 a7c0 a7c0 a7c0 * 4a22 * 8ea1caa2,caa2,8ea1caa2v,caa2v 5c3e e5b0be 5c3e 00005c3e a7c0 a7c0 a7c0 a7c0 a7c0 a7c0 a7c0
+1161 a7c1 a7c1 a7c1 * 4a23 * 8ea1caa3,caa3,8ea1caa3v,caa3v 5c90 e5b290 5c90 00005c90 a7c1 a7c1 a7c1 a7c1 a7c1 a7c1 a7c1
+1162 a7c2 a7c2 a7c2 * 4a24 * 8ea1caa4,caa4,8ea1caa4v,caa4v 5c91 e5b291 5c91 00005c91 a7c2 a7c2 a7c2 a7c2 a7c2 a7c2 a7c2
+1163 a7c3 a7c3 a7c3 * 4a25 * 8ea1caa5,caa5,8ea1caa5v,caa5v 5c94 e5b294 5c94 00005c94 a7c3 a7c3 a7c3 a7c3 a7c3 a7c3 a7c3
+1164 a7c4 a7c4 a7c4 * 4a26 * 8ea1caa6,caa6,8ea1caa6v,caa6v 5c8c e5b28c 5c8c 00005c8c a7c4 a7c4 a7c4 a7c4 a7c4 a7c4 a7c4
+1165 a7c5 a7c5 a7c5 * 4a27 * 8ea1caa7,caa7,8ea1caa7v,caa7v 5deb e5b7ab 5deb 00005deb a7c5 a7c5 a7c5 a7c5 a7c5 a7c5 a7c5
+1166 a7c6 a7c6 a7c6 * 4a28 * 8ea1caa8,caa8,8ea1caa8v,caa8v 5e0c e5b88c 5e0c 00005e0c a7c6 a7c6 a7c6 a7c6 a7c6 a7c6 a7c6
+1167 a7c7 a7c7 a7c7 * 4a29 * 8ea1caa9,caa9,8ea1caa9v,caa9v 5e8f e5ba8f 5e8f 00005e8f a7c7 a7c7 a7c7 a7c7 a7c7 a7c7 a7c7
+1168 a7c8 a7c8 a7c8 * 4a2a * 8ea1caaa,caaa,8ea1caaav,caaav 5e87 e5ba87 5e87 00005e87 a7c8 a7c8 a7c8 a7c8 a7c8 a7c8 a7c8
+1169 a7c9 a7c9 a7c9 * 4a2b * 8ea1caab,caab,8ea1caabv,caabv 5e8a e5ba8a 5e8a 00005e8a a7c9 a7c9 a7c9 a7c9 a7c9 a7c9 a7c9
+1170 a7ca a7ca a7ca * 4a2c * 8ea1caac,caac,8ea1caacv,caacv 5ef7 e5bbb7 5ef7 00005ef7 a7ca a7ca a7ca a7ca a7ca a7ca a7ca
+1171 a7cb a7cb a7cb * 4a2d * 8ea1caad,caad,8ea1caadv,caadv 5f04 e5bc84 5f04 00005f04 a7cb a7cb a7cb a7cb a7cb a7cb a7cb
+1172 a7cc a7cc a7cc * 4a2e * 8ea1caae,caae,8ea1caaev,caaev 5f1f e5bc9f 5f1f 00005f1f a7cc a7cc a7cc a7cc a7cc a7cc a7cc
+1173 a7cd a7cd a7cd * 4a2f * 8ea1caaf,caaf,8ea1caafv,caafv 5f64 e5bda4 5f64 00005f64 a7cd a7cd a7cd a7cd a7cd a7cd a7cd
+1174 a7ce a7ce a7ce * 4a30 * 8ea1cab0,cab0,8ea1cab0v,cab0v 5f62 e5bda2 5f62 00005f62 a7ce a7ce a7ce a7ce a7ce a7ce a7ce
+1175 a7cf a7cf a7cf * 4a31 * 8ea1cab1,cab1,8ea1cab1v,cab1v 5f77 e5bdb7 5f77 00005f77 a7cf a7cf a7cf a7cf a7cf a7cf a7cf
+1176 a7d0 a7d0 a7d0 * 4a32 * 8ea1cab2,cab2,8ea1cab2v,cab2v 5f79 e5bdb9 5f79 00005f79 a7d0 a7d0 a7d0 a7d0 a7d0 a7d0 a7d0
+1177 a7d1 a7d1 a7d1 * 4a33 * 8ea1cab3,cab3,8ea1cab3v,cab3v 5fd8 e5bf98 5fd8 00005fd8 a7d1 a7d1 a7d1 a7d1 a7d1 a7d1 a7d1
+1178 a7d2 a7d2 a7d2 * 4a34 * 8ea1cab4,cab4,8ea1cab4v,cab4v 5fcc e5bf8c 5fcc 00005fcc a7d2 a7d2 a7d2 a7d2 a7d2 a7d2 a7d2
+1179 a7d3 a7d3 a7d3 * 4a35 * 8ea1cab5,cab5,8ea1cab5v,cab5v 5fd7 e5bf97 5fd7 00005fd7 a7d3 a7d3 a7d3 a7d3 a7d3 a7d3 a7d3
+1180 a7d4 a7d4 a7d4 * 4a36 * 8ea1cab6,cab6,8ea1cab6v,cab6v 5fcd e5bf8d 5fcd 00005fcd a7d4 a7d4 a7d4 a7d4 a7d4 a7d4 a7d4
+1181 a7d5 a7d5 a7d5 * 4a37 * 8ea1cab7,cab7,8ea1cab7v,cab7v 5ff1 e5bfb1 5ff1 00005ff1 a7d5 a7d5 a7d5 a7d5 a7d5 a7d5 a7d5
+1182 a7d6 a7d6 a7d6 * 4a38 * 8ea1cab8,cab8,8ea1cab8v,cab8v 5feb e5bfab 5feb 00005feb a7d6 a7d6 a7d6 a7d6 a7d6 a7d6 a7d6
+1183 a7d7 a7d7 a7d7 * 4a39 * 8ea1cab9,cab9,8ea1cab9v,cab9v 5ff8 e5bfb8 5ff8 00005ff8 a7d7 a7d7 a7d7 a7d7 a7d7 a7d7 a7d7
+1184 a7d8 a7d8 a7d8 * 4a3a * 8ea1caba,caba,8ea1cabav,cabav 5fea e5bfaa 5fea 00005fea a7d8 a7d8 a7d8 a7d8 a7d8 a7d8 a7d8
+1185 a7d9 a7d9 a7d9 * 4a3b * 8ea1cabb,cabb,8ea1cabbv,cabbv 6212 e68892 6212 00006212 a7d9 a7d9 a7d9 a7d9 a7d9 a7d9 a7d9
+1186 a7da a7da a7da * 4a3c * 8ea1cabc,cabc,8ea1cabcv,cabcv 6211 e68891 6211 00006211 a7da a7da a7da a7da a7da a7da a7da
+1187 a7db a7db a7db * 4a3d * 8ea1cabd,cabd,8ea1cabdv,cabdv 6284 e68a84 6284 00006284 a7db a7db a7db a7db a7db a7db a7db
+1188 a7dc a7dc a7dc * 4a3e * 8ea1cabe,cabe,8ea1cabev,cabev 6297 e68a97 6297 00006297 a7dc a7dc a7dc a7dc a7dc a7dc a7dc
+1189 a7dd a7dd a7dd * 4a3f * 8ea1cabf,cabf,8ea1cabfv,cabfv 6296 e68a96 6296 00006296 a7dd a7dd a7dd a7dd a7dd a7dd a7dd
+1190 a7de a7de a7de * 4a40 * 8ea1cac0,cac0,8ea1cac0v,cac0v 6280 e68a80 6280 00006280 a7de a7de a7de a7de a7de a7de a7de
+1191 a7df a7df a7df * 4a41 * 8ea1cac1,cac1,8ea1cac1v,cac1v 6276 e689b6 6276 00006276 a7df a7df a7df a7df a7df a7df a7df
+1192 a7e0 a7e0 a7e0 * 4a42 * 8ea1cac2,cac2,8ea1cac2v,cac2v 6289 e68a89 6289 00006289 a7e0 a7e0 a7e0 a7e0 a7e0 a7e0 a7e0
+1193 a7e1 a7e1 a7e1 * 4a43 * 8ea1cac3,cac3,8ea1cac3v,cac3v 626d e689ad 626d 0000626d a7e1 a7e1 a7e1 a7e1 a7e1 a7e1 a7e1
+1194 a7e2 a7e2 a7e2 * 4a44 * 8ea1cac4,cac4,8ea1cac4v,cac4v 628a e68a8a 628a 0000628a a7e2 a7e2 a7e2 a7e2 a7e2 a7e2 a7e2
+1195 a7e3 a7e3 a7e3 * 4a45 * 8ea1cac5,cac5,8ea1cac5v,cac5v 627c e689bc 627c 0000627c a7e3 a7e3 a7e3 a7e3 a7e3 a7e3 a7e3
+1196 a7e4 a7e4 a7e4 * 4a46 * 8ea1cac6,cac6,8ea1cac6v,cac6v 627e e689be 627e 0000627e a7e4 a7e4 a7e4 a7e4 a7e4 a7e4 a7e4
+1197 a7e5 a7e5 a7e5 * 4a47 * 8ea1cac7,cac7,8ea1cac7v,cac7v 6279 e689b9 6279 00006279 a7e5 a7e5 a7e5 a7e5 a7e5 a7e5 a7e5
+1198 a7e6 a7e6 a7e6 * 4a48 * 8ea1cac8,cac8,8ea1cac8v,cac8v 6273 e689b3 6273 00006273 a7e6 a7e6 a7e6 a7e6 a7e6 a7e6 a7e6
+1199 a7e7 a7e7 a7e7 * 4a49 * 8ea1cac9,cac9,8ea1cac9v,cac9v 6292 e68a92 6292 00006292 a7e7 a7e7 a7e7 a7e7 a7e7 a7e7 a7e7
+1200 a7e8 a7e8 a7e8 * 4a4a * 8ea1caca,caca,8ea1cacav,cacav 626f e689af 626f 0000626f a7e8 a7e8 a7e8 a7e8 a7e8 a7e8 a7e8
+1201 a7e9 a7e9 a7e9 * 4a4b * 8ea1cacb,cacb,8ea1cacbv,cacbv 6298 e68a98 6298 00006298 a7e9 a7e9 a7e9 a7e9 a7e9 a7e9 a7e9
+1202 a7ea a7ea a7ea * 4a4c * 8ea1cacc,cacc,8ea1caccv,caccv 626e e689ae 626e 0000626e a7ea a7ea a7ea a7ea a7ea a7ea a7ea
+1203 a7eb a7eb a7eb * 4a4d * 8ea1cacd,cacd,8ea1cacdv,cacdv 6295 e68a95 6295 00006295 a7eb a7eb a7eb a7eb a7eb a7eb a7eb
+1204 a7ec a7ec a7ec * 4a4e * 8ea1cace,cace,8ea1cacev,cacev 6293 e68a93 6293 00006293 a7ec a7ec a7ec a7ec a7ec a7ec a7ec
+1205 a7ed a7ed a7ed * 4a4f * 8ea1cacf,cacf,8ea1cacfv,cacfv 6291 e68a91 6291 00006291 a7ed a7ed a7ed a7ed a7ed a7ed a7ed
+1206 a7ee a7ee a7ee * 4a50 * 8ea1cad0,cad0,8ea1cad0v,cad0v 6286 e68a86 6286 00006286 a7ee a7ee a7ee a7ee a7ee a7ee a7ee
+1207 a7ef a7ef a7ef * 4a51 * 8ea1cad1,cad1,8ea1cad1v,cad1v 6539 e694b9 6539 00006539 a7ef a7ef a7ef a7ef a7ef a7ef a7ef
+1208 a7f0 a7f0 a7f0 * 4a52 * 8ea1cad2,cad2,8ea1cad2v,cad2v 653b e694bb 653b 0000653b a7f0 a7f0 a7f0 a7f0 a7f0 a7f0 a7f0
+1209 a7f1 a7f1 a7f1 * 4a53 * 8ea1cad3,cad3,8ea1cad3v,cad3v 6538 e694b8 6538 00006538 a7f1 a7f1 a7f1 a7f1 a7f1 a7f1 a7f1
+1210 a7f2 a7f2 a7f2 * 4a54 * 8ea1cad4,cad4,8ea1cad4v,cad4v 65f1 e697b1 65f1 000065f1 a7f2 a7f2 a7f2 a7f2 a7f2 a7f2 a7f2
+1211 a7f3 a7f3 a7f3 * 4a55 * 8ea1cad5,cad5,8ea1cad5v,cad5v 66f4 e69bb4 66f4 000066f4 a7f3 a7f3 a7f3 a7f3 a7f3 a7f3 a7f3
+1212 a7f4 a7f4 a7f4 * 4a56 * 8ea1cad6,cad6,8ea1cad6v,cad6v 675f e69d9f 675f 0000675f a7f4 a7f4 a7f4 a7f4 a7f4 a7f4 a7f4
+1213 a7f5 a7f5 a7f5 * 4a57 * 8ea1cad7,cad7,8ea1cad7v,cad7v 674e e69d8e 674e 0000674e a7f5 a7f5 a7f5 a7f5 a7f5 a7f5 a7f5
+1214 a7f6 a7f6 a7f6 * 4a58 * 8ea1cad8,cad8,8ea1cad8v,cad8v 674f e69d8f 674f 0000674f a7f6 a7f6 a7f6 a7f6 a7f6 a7f6 a7f6
+1215 a7f7 a7f7 a7f7 * 4a59 * 8ea1cad9,cad9,8ea1cad9v,cad9v 6750 e69d90 6750 00006750 a7f7 a7f7 a7f7 a7f7 a7f7 a7f7 a7f7
+1216 a7f8 a7f8 a7f8 * 4a5a * 8ea1cada,cada,8ea1cadav,cadav 6751 e69d91 6751 00006751 a7f8 a7f8 a7f8 a7f8 a7f8 a7f8 a7f8
+1217 a7f9 a7f9 a7f9 * 4a5b * 8ea1cadb,cadb,8ea1cadbv,cadbv 675c e69d9c 675c 0000675c a7f9 a7f9 a7f9 a7f9 a7f9 a7f9 a7f9
+1218 a7fa a7fa a7fa * 4a5c * 8ea1cadc,cadc,8ea1cadcv,cadcv 6756 e69d96 6756 00006756 a7fa a7fa a7fa a7fa a7fa a7fa a7fa
+1219 a7fb a7fb a7fb * 4a5d * 8ea1cadd,cadd,8ea1caddv,caddv 675e e69d9e,ee8789 675e,e1c9 0000675e,0000e1c9 fcf1,a7fb a7fb a7fb a7fb a7fb a7fb fcf1,a7fb
+1220 a7fc a7fc a7fc * 4a5e * 8ea1cade,cade,8ea1cadev,cadev 6749 e69d89 6749 00006749 a7fc a7fc a7fc a7fc a7fc a7fc a7fc
+1221 a7fd a7fd a7fd * 4a5f * 8ea1cadf,cadf,8ea1cadfv,cadfv 6746 e69d86 6746 00006746 a7fd a7fd a7fd a7fd a7fd a7fd a7fd
+1222 a7fe a7fe a7fe * 4a60 * 8ea1cae0,cae0,8ea1cae0v,cae0v 6760 e69da0 6760 00006760 a7fe a7fe a7fe a7fe a7fe a7fe a7fe
+1223 a840 a840 a840 * 4a61 * 8ea1cae1,cae1,8ea1cae1v,cae1v 6753 e69d93 6753 00006753 a840 a840 a840 a840 a840 a840 a840
+1224 a841 a841 a841 * 4a62 * 8ea1cae2,cae2,8ea1cae2v,cae2v 6757 e69d97 6757 00006757 a841 a841 a841 a841 a841 a841 a841
+1225 a842 a842 a842 * 4a63 * 8ea1cae3,cae3,8ea1cae3v,cae3v 6b65 e6ada5 6b65 00006b65 a842 a842 a842 a842 a842 a842 a842
+1226 a843 a843 a843 * 4a64 * 8ea1cae4,cae4,8ea1cae4v,cae4v 6bcf e6af8f 6bcf 00006bcf a843 a843 a843 a843 a843 a843 a843
+1227 a844 a844 a844 * 4a65 * 8ea1cae5,cae5,8ea1cae5v,cae5v 6c42 e6b182 6c42 00006c42 a844 a844 a844 a844 a844 a844 a844
+1228 a845 a845 a845 * 4a66 * 8ea1cae6,cae6,8ea1cae6v,cae6v 6c5e e6b19e 6c5e 00006c5e a845 a845 a845 a845 a845 a845 a845
+1229 a846 a846 a846 * 4a67 * 8ea1cae7,cae7,8ea1cae7v,cae7v 6c99 e6b299 6c99 00006c99 a846 a846 a846 a846 a846 a846 a846
+1230 a847 a847 a847 * 4a68 * 8ea1cae8,cae8,8ea1cae8v,cae8v 6c81 e6b281 6c81 00006c81 a847 a847 a847 a847 a847 a847 a847
+1231 a848 a848 a848 * 4a69 * 8ea1cae9,cae9,8ea1cae9v,cae9v 6c88 e6b288 6c88 00006c88 a848 a848 a848 a848 a848 a848 a848
+1232 a849 a849 a849 * 4a6a * 8ea1caea,caea,8ea1caeav,caeav 6c89 e6b289 6c89 00006c89 a849 a849 a849 a849 a849 a849 a849
+1233 a84a a84a a84a * 4a6b * 8ea1caeb,caeb,8ea1caebv,caebv 6c85 e6b285 6c85 00006c85 a84a a84a a84a a84a a84a a84a a84a
+1234 a84b a84b a84b * 4a6c * 8ea1caec,caec,8ea1caecv,caecv 6c9b e6b29b 6c9b 00006c9b a84b a84b a84b a84b a84b a84b a84b
+1235 a84c a84c a84c * 4a6d * 8ea1caed,caed,8ea1caedv,caedv 6c6a e6b1aa 6c6a 00006c6a a84c a84c a84c a84c a84c a84c a84c
+1236 a84d a84d a84d * 4a6e * 8ea1caee,caee,8ea1caeev,caeev 6c7a e6b1ba 6c7a 00006c7a a84d a84d a84d a84d a84d a84d a84d
+1237 a84e a84e a84e * 4a6f * 8ea1caef,caef,8ea1caefv,caefv 6c90 e6b290 6c90 00006c90 a84e a84e a84e a84e a84e a84e a84e
+1238 a84f a84f a84f * 4a70 * 8ea1caf0,caf0,8ea1caf0v,caf0v 6c70 e6b1b0 6c70 00006c70 a84f a84f a84f a84f a84f a84f a84f
+1239 a850 a850 a850 * 4a71 * 8ea1caf1,caf1,8ea1caf1v,caf1v 6c8c e6b28c 6c8c 00006c8c a850 a850 a850 a850 a850 a850 a850
+1240 a851 a851 a851 * 4a72 * 8ea1caf2,caf2,8ea1caf2v,caf2v 6c68 e6b1a8 6c68 00006c68 a851 a851 a851 a851 a851 a851 a851
+1241 a852 a852 a852 * 4a73 * 8ea1caf3,caf3,8ea1caf3v,caf3v 6c96 e6b296 6c96 00006c96 a852 a852 a852 a852 a852 a852 a852
+1242 a853 a853 a853 * 4a74 * 8ea1caf4,caf4,8ea1caf4v,caf4v 6c92 e6b292 6c92 00006c92 a853 a853 a853 a853 a853 a853 a853
+1243 a854 a854 a854 * 4a75 * 8ea1caf5,caf5,8ea1caf5v,caf5v 6c7d e6b1bd 6c7d 00006c7d a854 a854 a854 a854 a854 a854 a854
+1244 a855 a855 a855 * 4a76 * 8ea1caf6,caf6,8ea1caf6v,caf6v 6c83 e6b283 6c83 00006c83 a855 a855 a855 a855 a855 a855 a855
+1245 a856 a856 a856 * 4a77 * 8ea1caf7,caf7,8ea1caf7v,caf7v 6c72 e6b1b2 6c72 00006c72 a856 a856 a856 a856 a856 a856 a856
+1246 a857 a857 a857 * 4a78 * 8ea1caf8,caf8,8ea1caf8v,caf8v 6c7e e6b1be 6c7e 00006c7e a857 a857 a857 a857 a857 a857 a857
+1247 a858 a858 a858 * 4a79 * 8ea1caf9,caf9,8ea1caf9v,caf9v 6c74 e6b1b4 6c74 00006c74 a858 a858 a858 a858 a858 a858 a858
+1248 a859 a859 a859 * 4a7a * 8ea1cafa,cafa,8ea1cafav,cafav 6c86 e6b286 6c86 00006c86 a859 a859 a859 a859 a859 a859 a859
+1249 a85a a85a a85a * 4a7b * 8ea1cafb,cafb,8ea1cafbv,cafbv 6c76 e6b1b6 6c76 00006c76 a85a a85a a85a a85a a85a a85a a85a
+1250 a85b a85b a85b * 4a7c * 8ea1cafc,cafc,8ea1cafcv,cafcv 6c8d e6b28d 6c8d 00006c8d a85b a85b a85b a85b a85b a85b a85b
+1251 a85c a85c a85c * 4a7d * 8ea1cafd,cafd,8ea1cafdv,cafdv 6c94 e6b294 6c94 00006c94 a85c a85c a85c a85c a85c a85c a85c
+1252 a85d a85d a85d * 4a7e * 8ea1cafe,cafe,8ea1cafev,cafev 6c98 e6b298 6c98 00006c98 a85d a85d a85d a85d a85d a85d a85d
+1253 a85e a85e a85e * 4b21 * 8ea1cba1,cba1,8ea1cba1v,cba1v 6c82 e6b282 6c82 00006c82 a85e a85e a85e a85e a85e a85e a85e
+1254 a85f a85f a85f * 4b22 * 8ea1cba2,cba2,8ea1cba2v,cba2v 7076 e781b6 7076 00007076 a85f a85f a85f a85f a85f a85f a85f
+1255 a860 a860 a860 * 4b23 * 8ea1cba3,cba3,8ea1cba3v,cba3v 707c e781bc 707c 0000707c a860 a860 a860 a860 a860 a860 a860
+1256 a861 a861 a861 * 4b24 * 8ea1cba4,cba4,8ea1cba4v,cba4v 707d e781bd 707d 0000707d a861 a861 a861 a861 a861 a861 a861
+1257 a862 a862 a862 * 4b25 * 8ea1cba5,cba5,8ea1cba5v,cba5v 7078 e781b8 7078 00007078 a862 a862 a862 a862 a862 a862 a862
+1258 a863 a863 a863 * 4b26 * 8ea1cba6,cba6,8ea1cba6v,cba6v 7262 e789a2 7262 00007262 a863 a863 a863 a863 a863 a863 a863
+1259 a864 a864 a864 * 4b27 * 8ea1cba7,cba7,8ea1cba7v,cba7v 7261 e789a1 7261 00007261 a864 a864 a864 a864 a864 a864 a864
+1260 a865 a865 a865 * 4b28 * 8ea1cba8,cba8,8ea1cba8v,cba8v 7260 e789a0 7260 00007260 a865 a865 a865 a865 a865 a865 a865
+1261 a866 a866 a866 * 4b29 * 8ea1cba9,cba9,8ea1cba9v,cba9v 72c4 e78b84 72c4 000072c4 a866 a866 a866 a866 a866 a866 a866
+1262 a867 a867 a867 * 4b2a * 8ea1cbaa,cbaa,8ea1cbaav,cbaav 72c2 e78b82 72c2 000072c2 a867 a867 a867 a867 a867 a867 a867
+1263 a868 a868 a868 * 4b2b * 8ea1cbab,cbab,8ea1cbabv,cbabv 7396 e78e96 7396 00007396 a868 a868 a868 a868 a868 a868 a868
+1264 a869 a869 a869 * 4b2c * 8ea1cbac,cbac,8ea1cbacv,cbacv 752c e794ac 752c 0000752c a869 a869 a869 a869 a869 a869 a869
+1265 a86a a86a a86a * 4b2d * 8ea1cbad,cbad,8ea1cbadv,cbadv 752b e794ab 752b 0000752b a86a a86a a86a a86a a86a a86a a86a
+1266 a86b a86b a86b * 4b2e * 8ea1cbae,cbae,8ea1cbaev,cbaev 7537 e794b7 7537 00007537 a86b a86b a86b a86b a86b a86b a86b
+1267 a86c a86c a86c * 4b2f * 8ea1cbaf,cbaf,8ea1cbafv,cbafv 7538 e794b8 7538 00007538 a86c a86c a86c a86c a86c a86c a86c
+1268 a86d a86d a86d * 4b30 * 8ea1cbb0,cbb0,8ea1cbb0v,cbb0v 7682 e79a82 7682 00007682 a86d a86d a86d a86d a86d a86d a86d
+1269 a86e a86e a86e * 4b31 * 8ea1cbb1,cbb1,8ea1cbb1v,cbb1v 76ef e79baf 76ef 000076ef a86e a86e a86e a86e a86e a86e a86e
+1270 a86f a86f a86f * 4b32 * 8ea1cbb2,cbb2,8ea1cbb2v,cbb2v 77e3 e79fa3 77e3 000077e3 a86f a86f a86f a86f a86f a86f a86f
+1271 a870 a870 a870 * 4b33 * 8ea1cbb3,cbb3,8ea1cbb3v,cbb3v 79c1 e7a781 79c1 000079c1 a870 a870 a870 a870 a870 a870 a870
+1272 a871 a871 a871 * 4b34 * 8ea1cbb4,cbb4,8ea1cbb4v,cbb4v 79c0 e7a780 79c0 000079c0 a871 a871 a871 a871 a871 a871 a871
+1273 a872 a872 a872 * 4b35 * 8ea1cbb5,cbb5,8ea1cbb5v,cbb5v 79bf e7a6bf 79bf 000079bf a872 a872 a872 a872 a872 a872 a872
+1274 a873 a873 a873 * 4b36 * 8ea1cbb6,cbb6,8ea1cbb6v,cbb6v 7a76 e7a9b6 7a76 00007a76 a873 a873 a873 a873 a873 a873 a873
+1275 a874 a874 a874 * 4b37 * 8ea1cbb7,cbb7,8ea1cbb7v,cbb7v 7cfb e7b3bb 7cfb 00007cfb a874 a874 a874 a874 a874 a874 a874
+1276 a875 a875 a875 * 4b38 * 8ea1cbb8,cbb8,8ea1cbb8v,cbb8v 7f55 e7bd95 7f55 00007f55 a875 a875 a875 a875 a875 a875 a875
+1277 a876 a876 a876 * 4b39 * 8ea1cbb9,cbb9,8ea1cbb9v,cbb9v 8096 e88296 8096 00008096 a876 a876 a876 a876 a876 a876 a876
+1278 a877 a877 a877 * 4b3a * 8ea1cbba,cbba,8ea1cbbav,cbbav 8093 e88293 8093 00008093 a877 a877 a877 a877 a877 a877 a877
+1279 a878 a878 a878 * 4b3b * 8ea1cbbb,cbbb,8ea1cbbbv,cbbbv 809d e8829d 809d 0000809d a878 a878 a878 a878 a878 a878 a878
+1280 a879 a879 a879 * 4b3c * 8ea1cbbc,cbbc,8ea1cbbcv,cbbcv 8098 e88298 8098 00008098 a879 a879 a879 a879 a879 a879 a879
+1281 a87a a87a a87a * 4b3d * 8ea1cbbd,cbbd,8ea1cbbdv,cbbdv 809b e8829b 809b 0000809b a87a a87a a87a a87a a87a a87a a87a
+1282 a87b a87b a87b * 4b3e * 8ea1cbbe,cbbe,8ea1cbbev,cbbev 809a e8829a 809a 0000809a a87b a87b a87b a87b a87b a87b a87b
+1283 a87c a87c a87c * 4b3f * 8ea1cbbf,cbbf,8ea1cbbfv,cbbfv 80b2 e882b2 80b2 000080b2 a87c a87c a87c a87c a87c a87c a87c
+1284 a87d a87d a87d * 4b40 * 8ea1cbc0,cbc0,8ea1cbc0v,cbc0v 826f e889af 826f 0000826f a87d a87d a87d a87d a87d a87d a87d
+1285 a87e a87e a87e * 4b41 * 8ea1cbc1,cbc1,8ea1cbc1v,cbc1v 8292 e88a92 8292 00008292 a87e a87e a87e a87e a87e a87e a87e
+1286 a8a1 a8a1 a8a1 * 4b42 * 8ea1cbc2,cbc2,8ea1cbc2v,cbc2v 828b e88a8b 828b 0000828b a8a1 a8a1 a8a1 a8a1 a8a1 a8a1 a8a1
+1287 a8a2 a8a2 a8a2 * 4b43 * 8ea1cbc3,cbc3,8ea1cbc3v,cbc3v 828d e88a8d 828d 0000828d a8a2 a8a2 a8a2 a8a2 a8a2 a8a2 a8a2
+1288 a8a3 a8a3 a8a3 * 2854,4b44 * 8ea1a8d4,8ea1cbc4,a8d4,cbc4,8ea1a8d4v,8ea1cbc4v,a8d4v,cbc4v 898b e8a68b,e2be92 898b,2f92 0000898b,00002f92 a8a3 a8a3 a8a3 a8a3 a8a3 a8a3 a8a3
+1289 a8a4 a8a4 a8a4 * 2855,4b45 * 8ea1a8d5,8ea1cbc5,a8d5,cbc5,8ea1a8d5v,8ea1cbc5v,a8d5v,cbc5v 2ec6,89d2 e8a792,e2be93 89d2,2f93 000089d2,00002f93 a8a4 a8a4 a8a4 a8a4 a8a4 a8a4 a8a4
+1290 a8a5 a8a5 a8a5 * 2856,4b46 * 8ea1a8d6,8ea1cbc6,a8d6,cbc6,8ea1a8d6v,8ea1cbc6v,a8d6v,cbc6v 8a00 e8a880,e2be94 8a00,2f94 00008a00,00002f94 a8a5 a8a5 a8a5 a8a5 a8a5 a8a5 a8a5
+1291 a8a6 a8a6 a8a6 * 2857,4b47 * 8ea1a8d7,8ea1cbc7,a8d7,cbc7,8ea1a8d7v,8ea1cbc7v,a8d7v,cbc7v 8c37 e8b0b7,e2be95 8c37,2f95 00008c37,00002f95 a8a6 a8a6 a8a6 a8a6 a8a6 a8a6 a8a6
+1292 a8a7 a8a7 a8a7 * 2858,4b48 * 8ea1a8d8,8ea1cbc8,a8d8,cbc8,8ea1a8d8v,8ea1cbc8v,a8d8v,cbc8v 8c46 e8b186,e2be96 8c46,2f96 00008c46,00002f96 a8a7 a8a7 a8a7 a8a7 a8a7 a8a7 a8a7
+1293 a8a8 a8a8 a8a8 * 2859,4b49 * 8ea1a8d9,8ea1cbc9,a8d9,cbc9,8ea1a8d9v,8ea1cbc9v,a8d9v,cbc9v 8c55 e8b195,e2be97 8c55,2f97 00008c55,00002f97 a8a8 a8a8 a8a8 a8a8 a8a8 a8a8 a8a8
+1294 a8a9 a8a9 a8a9 * 285b,4b4a * 8ea1a8db,8ea1cbca,a8db,cbca,8ea1a8dbv,8ea1cbcav,a8dbv,cbcav 8c9d e8b29d,e2be99 8c9d,2f99 00008c9d,00002f99 a8a9 a8a9 a8a9 a8a9 a8a9 a8a9 a8a9
+1295 a8aa a8aa a8aa * 285c,4b4b * 8ea1a8dc,8ea1cbcb,a8dc,cbcb,8ea1a8dcv,8ea1cbcbv,a8dcv,cbcbv 8d64 e8b5a4,e2be9a 8d64,2f9a 00008d64,00002f9a a8aa a8aa a8aa a8aa a8aa a8aa a8aa
+1296 a8ab a8ab a8ab * 285d,4b4c * 8ea1a8dd,8ea1cbcc,a8dd,cbcc,8ea1a8ddv,8ea1cbccv,a8ddv,cbccv 8d70 e8b5b0,e2be9b 8d70,2f9b 00008d70,00002f9b a8ab a8ab a8ab a8ab a8ab a8ab a8ab
+1297 a8ac a8ac a8ac * 285e,4b4d * 8ea1a8de,8ea1cbcd,a8de,cbcd,8ea1a8dev,8ea1cbcdv,a8dev,cbcdv 8db3 e8b6b3,e2be9c 8db3,2f9c 00008db3,00002f9c a8ac a8ac a8ac a8ac a8ac a8ac a8ac
+1298 a8ad a8ad a8ad * 285f,4b4e * 8ea1a8df,8ea1cbce,a8df,cbce,8ea1a8dfv,8ea1cbcev,a8dfv,cbcev 8eab e8baab,e2be9d 8eab,2f9d 00008eab,00002f9d a8ad a8ad a8ad a8ad a8ad a8ad a8ad
+1299 a8ae a8ae a8ae * 2860,4b4f * 8ea1a8e0,8ea1cbcf,a8e0,cbcf,8ea1a8e0v,8ea1cbcfv,a8e0v,cbcfv 8eca e8bb8a,e2be9e 8eca,2f9e 00008eca,00002f9e a8ae a8ae a8ae a8ae a8ae a8ae a8ae
+1300 a8af a8af a8af * 2861,4b50 * 8ea1a8e1,8ea1cbd0,a8e1,cbd0,8ea1a8e1v,8ea1cbd0v,a8e1v,cbd0v 8f9b e8be9b,e2be9f 8f9b,2f9f 00008f9b,00002f9f a8af a8af a8af a8af a8af a8af a8af
+1301 a8b0 a8b0 a8b0 * 2862,4b51 * 8ea1a8e2,8ea1cbd1,a8e2,cbd1,8ea1a8e2v,8ea1cbd1v,a8e2v,cbd1v 8fb0 e8beb0,e2bea0 8fb0,2fa0 00008fb0,00002fa0 a8b0 a8b0 a8b0 a8b0 a8b0 a8b0 a8b0
+1302 a8b1 a8b1 a8b1 * 4b52 * 8ea1cbd2,cbd2,8ea1cbd2v,cbd2v 8fc2 e8bf82 8fc2 00008fc2 a8b1 a8b1 a8b1 a8b1 a8b1 a8b1 a8b1
+1303 a8b2 a8b2 a8b2 * 4b53 * 8ea1cbd3,cbd3,8ea1cbd3v,cbd3v 8fc6 e8bf86 8fc6 00008fc6 a8b2 a8b2 a8b2 a8b2 a8b2 a8b2 a8b2
+1304 a8b3 a8b3 a8b3 * 4b54 * 8ea1cbd4,cbd4,8ea1cbd4v,cbd4v 8fc5 e8bf85 8fc5 00008fc5 a8b3 a8b3 a8b3 a8b3 a8b3 a8b3 a8b3
+1305 a8b4 a8b4 a8b4 * 4b55 * 8ea1cbd5,cbd5,8ea1cbd5v,cbd5v 8fc4 e8bf84 8fc4 00008fc4 a8b4 a8b4 a8b4 a8b4 a8b4 a8b4 a8b4
+1306 a8b5 a8b5 a8b5 * 4b56 * 8ea1cbd6,cbd6,8ea1cbd6v,cbd6v 5de1 e5b7a1 5de1 00005de1 a8b5 a8b5 a8b5 a8b5 a8b5 a8b5 a8b5
+1307 a8b6 a8b6 a8b6 * 2864,4b57 * 8ea1a8e4,8ea1cbd7,a8e4,cbd7,8ea1a8e4v,8ea1cbd7v,a8e4v,cbd7v 9091 e2bea2,e98291 2fa2,9091 00002fa2,00009091 a8b6 a8b6 a8b6 a8b6 a8b6 a8b6 a8b6
+1308 a8b7 a8b7 a8b7 * 4b58 * 8ea1cbd8,cbd8,8ea1cbd8v,cbd8v 90a2 e982a2 90a2 000090a2 a8b7 a8b7 a8b7 a8b7 a8b7 a8b7 a8b7
+1309 a8b8 a8b8 a8b8 * 4b59 * 8ea1cbd9,cbd9,8ea1cbd9v,cbd9v 90aa e982aa 90aa 000090aa a8b8 a8b8 a8b8 a8b8 a8b8 a8b8 a8b8
+1310 a8b9 a8b9 a8b9 * 4b5a * 8ea1cbda,cbda,8ea1cbdav,cbdav 90a6 e982a6 90a6 000090a6 a8b9 a8b9 a8b9 a8b9 a8b9 a8b9 a8b9
+1311 a8ba a8ba a8ba * 4b5b * 8ea1cbdb,cbdb,8ea1cbdbv,cbdbv 90a3 e982a3 90a3 000090a3 a8ba a8ba a8ba a8ba a8ba a8ba a8ba
+1312 a8bb a8bb a8bb * 2865,4b5c * 8ea1a8e5,8ea1cbdc,a8e5,cbdc,8ea1a8e5v,8ea1cbdcv,a8e5v,cbdcv 9149 e98589,e2bea3 9149,2fa3 00009149,00002fa3 a8bb a8bb a8bb a8bb a8bb a8bb a8bb
+1313 a8bc a8bc a8bc * 2866,4b5d * 8ea1a8e6,8ea1cbdd,a8e6,cbdd,8ea1a8e6v,8ea1cbddv,a8e6v,cbddv 91c6 e98786,e2bea4 91c6,2fa4 000091c6,00002fa4 a8bc a8bc a8bc a8bc a8bc a8bc a8bc
+1314 a8bd a8bd a8bd * 2867,4b5e * 8ea1a8e7,8ea1cbde,a8e7,cbde,8ea1a8e7v,8ea1cbdev,a8e7v,cbdev 91cc e9878c,e2bea5 91cc,2fa5 000091cc,00002fa5 a8bd a8bd a8bd a8bd a8bd a8bd a8bd
+1315 a8be a8be a8be * 4b5f * 8ea1cbdf,cbdf,8ea1cbdfv,cbdfv 9632 e998b2 9632 00009632 a8be a8be a8be a8be a8be a8be a8be
+1316 a8bf a8bf a8bf * 4b60 * 8ea1cbe0,cbe0,8ea1cbe0v,cbe0v 962e e998ae 962e 0000962e a8bf a8bf a8bf a8bf a8bf a8bf a8bf
+1317 a8c0 a8c0 a8c0 * 4b61 * 8ea1cbe1,cbe1,8ea1cbe1v,cbe1v 9631 e998b1 9631 00009631 a8c0 a8c0 a8c0 a8c0 a8c0 a8c0 a8c0
+1318 a8c1 a8c1 a8c1 * 4b62 * 8ea1cbe2,cbe2,8ea1cbe2v,cbe2v 962a e998aa 962a 0000962a a8c1 a8c1 a8c1 a8c1 a8c1 a8c1 a8c1
+1319 a8c2 a8c2 a8c2 * 4b63 * 8ea1cbe3,cbe3,8ea1cbe3v,cbe3v 962c e998ac 962c 0000962c a8c2 a8c2 a8c2 a8c2 a8c2 a8c2 a8c2
+1320 a8c3 a8c3 a8c3 * 4b64 * 8ea1cbe4,cbe4,8ea1cbe4v,cbe4v 4e26 e4b8a6 4e26 00004e26 a8c3 a8c3 a8c3 a8c3 a8c3 a8c3 a8c3
+1321 a8c4 a8c4 a8c4 * 4b65 * 8ea1cbe5,cbe5,8ea1cbe5v,cbe5v 4e56 e4b996 4e56 00004e56 a8c4 a8c4 a8c4 a8c4 a8c4 a8c4 a8c4
+1322 a8c5 a8c5 a8c5 * 4b66 * 8ea1cbe6,cbe6,8ea1cbe6v,cbe6v 4e73 e4b9b3 4e73 00004e73 a8c5 a8c5 a8c5 a8c5 a8c5 a8c5 a8c5
+1323 a8c6 a8c6 a8c6 * 4b67 * 8ea1cbe7,cbe7,8ea1cbe7v,cbe7v 4e8b e4ba8b 4e8b 00004e8b a8c6 a8c6 a8c6 a8c6 a8c6 a8c6 a8c6
+1324 a8c7 a8c7 a8c7 * 4b68 * 8ea1cbe8,cbe8,8ea1cbe8v,cbe8v 4e9b e4ba9b 4e9b 00004e9b a8c7 a8c7 a8c7 a8c7 a8c7 a8c7 a8c7
+1325 a8c8 a8c8 a8c8 * 4b69 * 8ea1cbe9,cbe9,8ea1cbe9v,cbe9v 4e9e e4ba9e 4e9e 00004e9e a8c8 a8c8 a8c8 a8c8 a8c8 a8c8 a8c8
+1326 a8c9 a8c9 a8c9 * 4b6a * 8ea1cbea,cbea,8ea1cbeav,cbeav 4eab e4baab 4eab 00004eab a8c9 a8c9 a8c9 a8c9 a8c9 a8c9 a8c9
+1327 a8ca a8ca a8ca * 4b6b * 8ea1cbeb,cbeb,8ea1cbebv,cbebv 4eac e4baac 4eac 00004eac a8ca a8ca a8ca a8ca a8ca a8ca a8ca
+1328 a8cb a8cb a8cb * 4b6c * 8ea1cbec,cbec,8ea1cbecv,cbecv 4f6f e4bdaf 4f6f 00004f6f a8cb a8cb a8cb a8cb a8cb a8cb a8cb
+1329 a8cc a8cc a8cc * 4b6d * 8ea1cbed,cbed,8ea1cbedv,cbedv 4f9d e4be9d 4f9d 00004f9d a8cc a8cc a8cc a8cc a8cc a8cc a8cc
+1330 a8cd a8cd a8cd * 4b6e * 8ea1cbee,cbee,8ea1cbeev,cbeev 4f8d e4be8d 4f8d 00004f8d a8cd a8cd a8cd a8cd a8cd a8cd a8cd
+1331 a8ce a8ce a8ce * 4b6f * 8ea1cbef,cbef,8ea1cbefv,cbefv 4f73 e4bdb3 4f73 00004f73 a8ce a8ce a8ce a8ce a8ce a8ce a8ce
+1332 a8cf a8cf a8cf * 4b70 * 8ea1cbf0,cbf0,8ea1cbf0v,cbf0v 4f7f e4bdbf 4f7f 00004f7f a8cf a8cf a8cf a8cf a8cf a8cf a8cf
+1333 a8d0 a8d0 a8d0 * 4b71 * 8ea1cbf1,cbf1,8ea1cbf1v,cbf1v 4f6c e4bdac 4f6c 00004f6c a8d0 a8d0 a8d0 a8d0 a8d0 a8d0 a8d0
+1334 a8d1 a8d1 a8d1 * 4b72 * 8ea1cbf2,cbf2,8ea1cbf2v,cbf2v 4f9b e4be9b 4f9b 00004f9b a8d1 a8d1 a8d1 a8d1 a8d1 a8d1 a8d1
+1335 a8d2 a8d2 a8d2 * 4b73 * 8ea1cbf3,cbf3,8ea1cbf3v,cbf3v 4f8b e4be8b 4f8b 00004f8b a8d2 a8d2 a8d2 a8d2 a8d2 a8d2 a8d2
+1336 a8d3 a8d3 a8d3 * 4b74 * 8ea1cbf4,cbf4,8ea1cbf4v,cbf4v 4f86 e4be86 4f86 00004f86 a8d3 a8d3 a8d3 a8d3 a8d3 a8d3 a8d3
+1337 a8d4 a8d4 a8d4 * 4b75 * 8ea1cbf5,cbf5,8ea1cbf5v,cbf5v 4f83 e4be83 4f83 00004f83 a8d4 a8d4 a8d4 a8d4 a8d4 a8d4 a8d4
+1338 a8d5 a8d5 a8d5 * 4b76 * 8ea1cbf6,cbf6,8ea1cbf6v,cbf6v 4f70 e4bdb0 4f70 00004f70 a8d5 a8d5 a8d5 a8d5 a8d5 a8d5 a8d5
+1339 a8d6 a8d6 a8d6 * 4b77 * 8ea1cbf7,cbf7,8ea1cbf7v,cbf7v 4f75 e4bdb5 4f75 00004f75 a8d6 a8d6 a8d6 a8d6 a8d6 a8d6 a8d6
+1340 a8d7 a8d7 a8d7 * 4b78 * 8ea1cbf8,cbf8,8ea1cbf8v,cbf8v 4f88 e4be88 4f88 00004f88 a8d7 a8d7 a8d7 a8d7 a8d7 a8d7 a8d7
+1341 a8d8 a8d8 a8d8 * 4b79 * 8ea1cbf9,cbf9,8ea1cbf9v,cbf9v 4f69 e4bda9 4f69 00004f69 a8d8 a8d8 a8d8 a8d8 a8d8 a8d8 a8d8
+1342 a8d9 a8d9 a8d9 * 4b7a * 8ea1cbfa,cbfa,8ea1cbfav,cbfav 4f7b e4bdbb 4f7b 00004f7b a8d9 a8d9 a8d9 a8d9 a8d9 a8d9 a8d9
+1343 a8da a8da a8da * 4b7b * 8ea1cbfb,cbfb,8ea1cbfbv,cbfbv 4f96 e4be96 4f96 00004f96 a8da a8da a8da a8da a8da a8da a8da
+1344 a8db a8db a8db * 4b7c * 8ea1cbfc,cbfc,8ea1cbfcv,cbfcv 4f7e e4bdbe 4f7e 00004f7e a8db a8db a8db a8db a8db a8db a8db
+1345 a8dc a8dc a8dc * 4b7d * 8ea1cbfd,cbfd,8ea1cbfdv,cbfdv 4f8f e4be8f 4f8f 00004f8f a8dc a8dc a8dc a8dc a8dc a8dc a8dc
+1346 a8dd a8dd a8dd * 4b7e * 8ea1cbfe,cbfe,8ea1cbfev,cbfev 4f91 e4be91 4f91 00004f91 a8dd a8dd a8dd a8dd a8dd a8dd a8dd
+1347 a8de a8de a8de * 4c21 * 8ea1cca1,cca1,8ea1cca1v,cca1v 4f7a e4bdba 4f7a 00004f7a a8de a8de a8de a8de a8de a8de a8de
+1348 a8df a8df a8df * 4c22 * 8ea1cca2,cca2,8ea1cca2v,cca2v 5154 e58594 5154 00005154 a8df a8df a8df a8df a8df a8df a8df
+1349 a8e0 a8e0 a8e0 * 4c23 * 8ea1cca3,cca3,8ea1cca3v,cca3v 5152 e58592 5152 00005152 a8e0 a8e0 a8e0 a8e0 a8e0 a8e0 a8e0
+1350 a8e1 a8e1 a8e1 * 4c24 * 8ea1cca4,cca4,8ea1cca4v,cca4v 5155 e58595 5155 00005155 a8e1 a8e1 a8e1 a8e1 a8e1 a8e1 a8e1
+1351 a8e2 a8e2 a8e2 * 4c25 * 8ea1cca5,cca5,8ea1cca5v,cca5v 5169 e585a9 5169 00005169 a8e2 a8e2 a8e2 a8e2 a8e2 a8e2 a8e2
+1352 a8e3 a8e3 a8e3 * 4c26 * 8ea1cca6,cca6,8ea1cca6v,cca6v 5177 e585b7 5177 00005177 a8e3 a8e3 a8e3 a8e3 a8e3 a8e3 a8e3
+1353 a8e4 a8e4 a8e4 * 4c27 * 8ea1cca7,cca7,8ea1cca7v,cca7v 5176 e585b6 5176 00005176 a8e4 a8e4 a8e4 a8e4 a8e4 a8e4 a8e4
+1354 a8e5 a8e5 a8e5 * 4c28 * 8ea1cca8,cca8,8ea1cca8v,cca8v 5178 e585b8 5178 00005178 a8e5 a8e5 a8e5 a8e5 a8e5 a8e5 a8e5
+1355 a8e6 a8e6 a8e6 * 4c29 * 8ea1cca9,cca9,8ea1cca9v,cca9v 51bd e586bd 51bd 000051bd a8e6 a8e6 a8e6 a8e6 a8e6 a8e6 a8e6
+1356 a8e7 a8e7 a8e7 * 4c2a * 8ea1ccaa,ccaa,8ea1ccaav,ccaav 51fd e587bd 51fd 000051fd a8e7 a8e7 a8e7 a8e7 a8e7 a8e7 a8e7
+1357 a8e8 a8e8 a8e8 * 4c2b * 8ea1ccab,ccab,8ea1ccabv,ccabv 523b e588bb 523b 0000523b a8e8 a8e8 a8e8 a8e8 a8e8 a8e8 a8e8
+1358 a8e9 a8e9 a8e9 * 4c2c * 8ea1ccac,ccac,8ea1ccacv,ccacv 5238 e588b8 5238 00005238 a8e9 a8e9 a8e9 a8e9 a8e9 a8e9 a8e9
+1359 a8ea a8ea a8ea * 4c2d * 8ea1ccad,ccad,8ea1ccadv,ccadv 5237 e588b7 5237 00005237 a8ea a8ea a8ea a8ea a8ea a8ea a8ea
+1360 a8eb a8eb a8eb * 4c2e * 8ea1ccae,ccae,8ea1ccaev,ccaev 523a e588ba 523a 0000523a a8eb a8eb a8eb a8eb a8eb a8eb a8eb
+1361 a8ec a8ec a8ec * 4c2f * 8ea1ccaf,ccaf,8ea1ccafv,ccafv 5230 e588b0 5230 00005230 a8ec a8ec a8ec a8ec a8ec a8ec a8ec
+1362 a8ed a8ed a8ed * 4c30 * 8ea1ccb0,ccb0,8ea1ccb0v,ccb0v 522e e588ae 522e 0000522e a8ed a8ed a8ed a8ed a8ed a8ed a8ed
+1363 a8ee a8ee a8ee * 4c31 * 8ea1ccb1,ccb1,8ea1ccb1v,ccb1v 5236 e588b6 5236 00005236 a8ee a8ee a8ee a8ee a8ee a8ee a8ee
+1364 a8ef a8ef a8ef * 4c32 * 8ea1ccb2,ccb2,8ea1ccb2v,ccb2v 5241 e58981 5241 00005241 a8ef a8ef a8ef a8ef a8ef a8ef a8ef
+1365 a8f0 a8f0 a8f0 * 4c33 * 8ea1ccb3,ccb3,8ea1ccb3v,ccb3v 52be e58abe 52be 000052be a8f0 a8f0 a8f0 a8f0 a8f0 a8f0 a8f0
+1366 a8f1 a8f1 a8f1 * 4c34 * 8ea1ccb4,ccb4,8ea1ccb4v,ccb4v 52bb e58abb 52bb 000052bb a8f1 a8f1 a8f1 a8f1 a8f1 a8f1 a8f1
+1367 a8f2 a8f2 a8f2 * 4c35 * 8ea1ccb5,ccb5,8ea1ccb5v,ccb5v 5352 e58d92 5352 00005352 a8f2 a8f2 a8f2 a8f2 a8f2 a8f2 a8f2
+1368 a8f3 a8f3 a8f3 * 4c36 * 8ea1ccb6,ccb6,8ea1ccb6v,ccb6v 5354 e58d94 5354 00005354 a8f3 a8f3 a8f3 a8f3 a8f3 a8f3 a8f3
+1369 a8f4 a8f4 a8f4 * 4c37 * 8ea1ccb7,ccb7,8ea1ccb7v,ccb7v 5353 e58d93 5353 00005353 a8f4 a8f4 a8f4 a8f4 a8f4 a8f4 a8f4
+1370 a8f5 a8f5 a8f5 * 4c38 * 8ea1ccb8,ccb8,8ea1ccb8v,ccb8v 5351 e58d91 5351 00005351 a8f5 a8f5 a8f5 a8f5 a8f5 a8f5 a8f5
+1371 a8f6 a8f6 a8f6 * 4c39 * 8ea1ccb9,ccb9,8ea1ccb9v,ccb9v 5366 e58da6 5366 00005366 a8f6 a8f6 a8f6 a8f6 a8f6 a8f6 a8f6
+1372 a8f7 a8f7 a8f7 * 4c3a * 8ea1ccba,ccba,8ea1ccbav,ccbav 5377 e58db7 5377 00005377 a8f7 a8f7 a8f7 a8f7 a8f7 a8f7 a8f7
+1373 a8f8 a8f8 a8f8 * 4c3b * 8ea1ccbb,ccbb,8ea1ccbbv,ccbbv 5378 e58db8 5378 00005378 a8f8 a8f8 a8f8 a8f8 a8f8 a8f8 a8f8
+1374 a8f9 a8f9 a8f9 * 4c3c * 8ea1ccbc,ccbc,8ea1ccbcv,ccbcv 5379 e58db9 5379 00005379 a8f9 a8f9 a8f9 a8f9 a8f9 a8f9 a8f9
+1375 a8fa a8fa a8fa * 4c3d * 8ea1ccbd,ccbd,8ea1ccbdv,ccbdv 53d6 e58f96 53d6 000053d6 a8fa a8fa a8fa a8fa a8fa a8fa a8fa
+1376 a8fb a8fb a8fb * 4c3e * 8ea1ccbe,ccbe,8ea1ccbev,ccbev 53d4 e58f94 53d4 000053d4 a8fb a8fb a8fb a8fb a8fb a8fb a8fb
+1377 a8fc a8fc a8fc * 4c3f * 8ea1ccbf,ccbf,8ea1ccbfv,ccbfv 53d7 e58f97 53d7 000053d7 a8fc a8fc a8fc a8fc a8fc a8fc a8fc
+1378 a8fd a8fd a8fd * 4c40 * 8ea1ccc0,ccc0,8ea1ccc0v,ccc0v 5473 e591b3 5473 00005473 a8fd a8fd a8fd a8fd a8fd a8fd a8fd
+1379 a8fe a8fe a8fe * 4c41 * 8ea1ccc1,ccc1,8ea1ccc1v,ccc1v 5475 e591b5 5475 00005475 a8fe a8fe a8fe a8fe a8fe a8fe a8fe
+1380 a940 a940 a940 * 4c42 * 8ea1ccc2,ccc2,8ea1ccc2v,ccc2v 5496 e59296 5496 00005496 a940 a940 a940 a940 a940 a940 a940
+1381 a941 a941 a941 * 4c43 * 8ea1ccc3,ccc3,8ea1ccc3v,ccc3v 5478 e591b8 5478 00005478 a941 a941 a941 a941 a941 a941 a941
+1382 a942 a942 a942 * 4c44 * 8ea1ccc4,ccc4,8ea1ccc4v,ccc4v 5495 e59295 5495 00005495 a942 a942 a942 a942 a942 a942 a942
+1383 a943 a943 a943 * 4c45 * 8ea1ccc5,ccc5,8ea1ccc5v,ccc5v 5480 e59280 5480 00005480 a943 a943 a943 a943 a943 a943 a943
+1384 a944 a944 a944 * 4c46 * 8ea1ccc6,ccc6,8ea1ccc6v,ccc6v 547b e591bb 547b 0000547b a944 a944 a944 a944 a944 a944 a944
+1385 a945 a945 a945 * 4c47 * 8ea1ccc7,ccc7,8ea1ccc7v,ccc7v 5477 e591b7 5477 00005477 a945 a945 a945 a945 a945 a945 a945
+1386 a946 a946 a946 * 4c48 * 8ea1ccc8,ccc8,8ea1ccc8v,ccc8v 5484 e59284 5484 00005484 a946 a946 a946 a946 a946 a946 a946
+1387 a947 a947 a947 * 4c49 * 8ea1ccc9,ccc9,8ea1ccc9v,ccc9v 5492 e59292 5492 00005492 a947 a947 a947 a947 a947 a947 a947
+1388 a948 a948 a948 * 4c4a * 8ea1ccca,ccca,8ea1cccav,cccav 5486 e59286 5486 00005486 a948 a948 a948 a948 a948 a948 a948
+1389 a949 a949 a949 * 4c4b * 8ea1cccb,cccb,8ea1cccbv,cccbv 547c e591bc 547c 0000547c a949 a949 a949 a949 a949 a949 a949
+1390 a94a a94a a94a * 4c4c * 8ea1cccc,cccc,8ea1ccccv,ccccv 5490 e59290 5490 00005490 a94a a94a a94a a94a a94a a94a a94a
+1391 a94b a94b a94b * 4c4d * 8ea1cccd,cccd,8ea1cccdv,cccdv 5471 e591b1 5471 00005471 a94b a94b a94b a94b a94b a94b a94b
+1392 a94c a94c a94c * 4c4e * 8ea1ccce,ccce,8ea1cccev,cccev 5476 e591b6 5476 00005476 a94c a94c,fbd1 9154,a94c a94c a94c a94c a94c
+1393 a94d a94d a94d * 4c4f * 8ea1cccf,cccf,8ea1cccfv,cccfv 548c e5928c 548c 0000548c a94d a94d a94d a94d a94d a94d a94d
+1394 a94e a94e a94e * 4c50 * 8ea1ccd0,ccd0,8ea1ccd0v,ccd0v 549a e5929a 549a 0000549a a94e a94e a94e a94e a94e a94e a94e
+1395 a94f a94f a94f * 4c51 * 8ea1ccd1,ccd1,8ea1ccd1v,ccd1v 5462 e591a2 5462 00005462 a94f a94f a94f a94f a94f a94f a94f
+1396 a950 a950 a950 * 4c52 * 8ea1ccd2,ccd2,8ea1ccd2v,ccd2v 5468 e591a8 5468 00005468 a950 a950 a950 a950 a950 a950 a950
+1397 a951 a951 a951 * 4c53 * 8ea1ccd3,ccd3,8ea1ccd3v,ccd3v 548b e5928b 548b 0000548b a951 a951 a951 a951 a951 a951 a951
+1398 a952 a952 a952 * 4c54 * 8ea1ccd4,ccd4,8ea1ccd4v,ccd4v 547d e591bd 547d 0000547d a952 a952 a952 a952 a952 a952 a952
+1399 a953 a953 a953 * 4c55 * 8ea1ccd5,ccd5,8ea1ccd5v,ccd5v 548e e5928e 548e 0000548e a953 a953 a953 a953 a953 a953 a953
+1400 a954 a954 a954 * 4c56 * 8ea1ccd6,ccd6,8ea1ccd6v,ccd6v 56fa e59bba 56fa 000056fa a954 a954 a954 a954 a954 a954 a954
+1401 a955 a955 a955 * 4c57 * 8ea1ccd7,ccd7,8ea1ccd7v,ccd7v 5783 e59e83 5783 00005783 a955 a955 a955 a955 a955 a955 a955
+1402 a956 a956 a956 * 4c58 * 8ea1ccd8,ccd8,8ea1ccd8v,ccd8v 5777 e59db7 5777 00005777 a956 a956 a956 a956 a956 a956 a956
+1403 a957 a957 a957 * 4c59 * 8ea1ccd9,ccd9,8ea1ccd9v,ccd9v 576a e59daa 576a 0000576a a957 a957 a957 a957 a957 a957 a957
+1404 a958 a958 a958 * 4c5a * 8ea1ccda,ccda,8ea1ccdav,ccdav 5769 e59da9 5769 00005769 a958 a958 a958 a958 a958 a958 a958
+1405 a959 a959 a959 * 4c5b * 8ea1ccdb,ccdb,8ea1ccdbv,ccdbv 5761 e59da1 5761 00005761 a959 a959 a959 a959 a959 a959 a959
+1406 a95a a95a a95a * 4c5c * 8ea1ccdc,ccdc,8ea1ccdcv,ccdcv 5766 e59da6 5766 00005766 a95a a95a a95a a95a a95a a95a a95a
+1407 a95b a95b a95b * 4c5d * 8ea1ccdd,ccdd,8ea1ccddv,ccddv 5764 e59da4 5764 00005764 a95b a95b a95b a95b a95b a95b a95b
+1408 a95c a95c a95c * 4c5e * 8ea1ccde,ccde,8ea1ccdev,ccdev 577c e59dbc 577c 0000577c a95c a95c a95c a95c a95c a95c a95c
+1409 a95d a95d a95d * 4c5f * 8ea1ccdf,ccdf,8ea1ccdfv,ccdfv 591c e5a49c 591c 0000591c a95d a95d a95d a95d a95d a95d a95d
+1410 a95e a95e a95e * 4c60 * 8ea1cce0,cce0,8ea1cce0v,cce0v 5949 e5a589 5949 00005949 a95e a95e a95e a95e a95e a95e a95e
+1411 a95f a95f a95f * 4c61 * 8ea1cce1,cce1,8ea1cce1v,cce1v 5947 e5a587 5947 00005947 a95f a95f a95f a95f a95f a95f a95f
+1412 a960 a960 a960 * 4c62 * 8ea1cce2,cce2,8ea1cce2v,cce2v 5948 e5a588 5948 00005948 a960 a960 a960 a960 a960 a960 a960
+1413 a961 a961 a961 * 4c63 * 8ea1cce3,cce3,8ea1cce3v,cce3v 5944 e5a584 5944 00005944 a961 a961 a961 a961 a961 a961 a961
+1414 a962 a962 a962 * 4c64 * 8ea1cce4,cce4,8ea1cce4v,cce4v 5954 e5a594 5954 00005954 a962 a962 a962 a962 a962 a962 a962
+1415 a963 a963 a963 * 4c65 * 8ea1cce5,cce5,8ea1cce5v,cce5v 59be e5a6be 59be 000059be a963 a963 a963 a963 a963 a963 a963
+1416 a964 a964 a964 * 4c66 * 8ea1cce6,cce6,8ea1cce6v,cce6v 59bb e5a6bb 59bb 000059bb a964 a964 a964 a964 a964 a964 a964
+1417 a965 a965 a965 * 4c67 * 8ea1cce7,cce7,8ea1cce7v,cce7v 59d4 e5a794 59d4 000059d4 a965 a965 a965 a965 a965 a965 a965
+1418 a966 a966 a966 * 4c68 * 8ea1cce8,cce8,8ea1cce8v,cce8v 59b9 e5a6b9 59b9 000059b9 a966 a966 a966 a966 a966 a966 a966
+1419 a967 a967 a967 * 4c69 * 8ea1cce9,cce9,8ea1cce9v,cce9v 59ae e5a6ae 59ae 000059ae a967 a967 a967 a967 a967 a967 a967
+1420 a968 a968 a968 * 4c6a * 8ea1ccea,ccea,8ea1cceav,cceav 59d1 e5a791 59d1 000059d1 a968 a968 a968 a968 a968 a968 a968
+1421 a969 a969 a969 * 4c6b * 8ea1cceb,cceb,8ea1ccebv,ccebv 59c6 e5a786 59c6 000059c6 a969 a969 a969 a969 a969 a969 a969
+1422 a96a a96a a96a * 4c6c * 8ea1ccec,ccec,8ea1ccecv,ccecv 59d0 e5a790 59d0 000059d0 a96a a96a a96a a96a a96a a96a a96a
+1423 a96b a96b a96b * 4c6d * 8ea1cced,cced,8ea1ccedv,ccedv 59cd e5a78d 59cd 000059cd a96b a96b a96b a96b a96b a96b a96b
+1424 a96c a96c a96c * 4c6e * 8ea1ccee,ccee,8ea1cceev,cceev 59cb e5a78b 59cb 000059cb a96c a96c a96c a96c a96c a96c a96c
+1425 a96d a96d a96d * 4c6f * 8ea1ccef,ccef,8ea1ccefv,ccefv 59d3 e5a793 59d3 000059d3 a96d a96d a96d a96d a96d a96d a96d
+1426 a96e a96e a96e * 4c70 * 8ea1ccf0,ccf0,8ea1ccf0v,ccf0v 59ca e5a78a 59ca 000059ca a96e a96e a96e a96e a96e a96e a96e
+1427 a96f a96f a96f * 4c71 * 8ea1ccf1,ccf1,8ea1ccf1v,ccf1v 59af e5a6af 59af 000059af a96f a96f a96f a96f a96f a96f a96f
+1428 a970 a970 a970 * 4c72 * 8ea1ccf2,ccf2,8ea1ccf2v,ccf2v 59b3 e5a6b3 59b3 000059b3 a970 a970 a970 a970 a970 a970 a970
+1429 a971 a971 a971 * 4c73 * 8ea1ccf3,ccf3,8ea1ccf3v,ccf3v 59d2 e5a792 59d2 000059d2 a971 a971,fbf4 9158,a971 a971 a971 a971 a971
+1430 a972 a972 a972 * 4c74 * 8ea1ccf4,ccf4,8ea1ccf4v,ccf4v 59c5 e5a785 59c5 000059c5 a972 a972 a972 a972 a972 a972 a972
+1431 a973 a973 a973 * 4c75 * 8ea1ccf5,ccf5,8ea1ccf5v,ccf5v 5b5f e5ad9f 5b5f 00005b5f a973 a973 a973 a973 a973 a973 a973
+1432 a974 a974 a974 * 4c76 * 8ea1ccf6,ccf6,8ea1ccf6v,ccf6v 5b64 e5ada4 5b64 00005b64 a974 a974 a974 a974 a974 a974 a974
+1433 a975 a975 a975 * 4c77 * 8ea1ccf7,ccf7,8ea1ccf7v,ccf7v 5b63 e5ada3 5b63 00005b63 a975 a975 a975 a975 a975 a975 a975
+1434 a976 a976 a976 * 4c78 * 8ea1ccf8,ccf8,8ea1ccf8v,ccf8v 5b97 e5ae97 5b97 00005b97 a976 a976 a976 a976 a976 a976 a976
+1435 a977 a977 a977 * 4c79 * 8ea1ccf9,ccf9,8ea1ccf9v,ccf9v 5b9a e5ae9a 5b9a 00005b9a a977 a977 a977 a977 a977 a977 a977
+1436 a978 a978 a978 * 4c7a * 8ea1ccfa,ccfa,8ea1ccfav,ccfav 5b98 e5ae98 5b98 00005b98 a978 a978 a978 a978 a978 a978 a978
+1437 a979 a979 a979 * 4c7b * 8ea1ccfb,ccfb,8ea1ccfbv,ccfbv 5b9c e5ae9c 5b9c 00005b9c a979 a979 a979 a979 a979 a979 a979
+1438 a97a a97a a97a * 4c7c * 8ea1ccfc,ccfc,8ea1ccfcv,ccfcv 5b99 e5ae99 5b99 00005b99 a97a a97a a97a a97a a97a a97a a97a
+1439 a97b a97b a97b * 4c7d * 8ea1ccfd,ccfd,8ea1ccfdv,ccfdv 5b9b e5ae9b 5b9b 00005b9b a97b a97b a97b a97b a97b a97b a97b
+1440 a97c a97c a97c * 4c7e * 8ea1ccfe,ccfe,8ea1ccfev,ccfev 5c1a e5b09a 5c1a 00005c1a a97c a97c a97c a97c a97c a97c a97c
+1441 a97d a97d a97d * 4d21 * 8ea1cda1,cda1,8ea1cda1v,cda1v 5c48 e5b188 5c48 00005c48 a97d a97d a97d a97d a97d a97d a97d
+1442 a97e a97e a97e * 4d22 * 8ea1cda2,cda2,8ea1cda2v,cda2v 5c45 e5b185 5c45 00005c45 a97e a97e a97e a97e a97e a97e a97e
+1443 a9a1 a9a1 a9a1 * 4d23 * 8ea1cda3,cda3,8ea1cda3v,cda3v 5c46 e5b186 5c46 00005c46 a9a1 a9a1 a9a1 a9a1 a9a1 a9a1 a9a1
+1444 a9a2 a9a2 a9a2 * 4d24 * 8ea1cda4,cda4,8ea1cda4v,cda4v 5cb7 e5b2b7 5cb7 00005cb7 a9a2 a9a2 a9a2 a9a2 a9a2 a9a2 a9a2
+1445 a9a3 a9a3 a9a3 * 4d25 * 8ea1cda5,cda5,8ea1cda5v,cda5v 5ca1 e5b2a1 5ca1 00005ca1 a9a3 a9a3 a9a3 a9a3 a9a3 a9a3 a9a3
+1446 a9a4 a9a4 a9a4 * 4d26 * 8ea1cda6,cda6,8ea1cda6v,cda6v 5cb8 e5b2b8 5cb8 00005cb8 a9a4 a9a4 a9a4 a9a4 a9a4 a9a4 a9a4
+1447 a9a5 a9a5 a9a5 * 4d27 * 8ea1cda7,cda7,8ea1cda7v,cda7v 5ca9 e5b2a9 5ca9 00005ca9 a9a5 a9a5 a9a5 a9a5 a9a5 a9a5 a9a5
+1448 a9a6 a9a6 a9a6 * 4d28 * 8ea1cda8,cda8,8ea1cda8v,cda8v 5cab e5b2ab 5cab 00005cab a9a6 a9a6 a9a6 a9a6 a9a6 a9a6 a9a6
+1449 a9a7 a9a7 a9a7 * 4d29 * 8ea1cda9,cda9,8ea1cda9v,cda9v 5cb1 e5b2b1 5cb1 00005cb1 a9a7 a9a7 a9a7 a9a7 a9a7 a9a7 a9a7
+1450 a9a8 a9a8 a9a8 * 4d2a * 8ea1cdaa,cdaa,8ea1cdaav,cdaav 5cb3 e5b2b3 5cb3 00005cb3 a9a8 a9a8 a9a8 a9a8 a9a8 a9a8 a9a8
+1451 a9a9 a9a9 a9a9 * 4d2b * 8ea1cdab,cdab,8ea1cdabv,cdabv 5e18 e5b898 5e18 00005e18 a9a9 a9a9 a9a9 a9a9 a9a9 a9a9 a9a9
+1452 a9aa a9aa a9aa * 4d2c * 8ea1cdac,cdac,8ea1cdacv,cdacv 5e1a e5b89a 5e1a 00005e1a a9aa a9aa a9aa a9aa a9aa a9aa a9aa
+1453 a9ab a9ab a9ab * 4d2d * 8ea1cdad,cdad,8ea1cdadv,cdadv 5e16 e5b896 5e16 00005e16 a9ab a9ab a9ab a9ab a9ab a9ab a9ab
+1454 a9ac a9ac a9ac * 4d2e * 8ea1cdae,cdae,8ea1cdaev,cdaev 5e15 e5b895 5e15 00005e15 a9ac a9ac a9ac a9ac a9ac a9ac a9ac
+1455 a9ad a9ad a9ad * 4d2f * 8ea1cdaf,cdaf,8ea1cdafv,cdafv 5e1b e5b89b 5e1b 00005e1b a9ad a9ad a9ad a9ad a9ad a9ad a9ad
+1456 a9ae a9ae a9ae * 4d30 * 8ea1cdb0,cdb0,8ea1cdb0v,cdb0v 5e11 e5b891 5e11 00005e11 a9ae a9ae a9ae a9ae a9ae a9ae a9ae
+1457 a9af a9af a9af * 4d31 * 8ea1cdb1,cdb1,8ea1cdb1v,cdb1v 5e78 e5b9b8 5e78 00005e78 a9af a9af a9af a9af a9af a9af a9af
+1458 a9b0 a9b0 a9b0 * 4d32 * 8ea1cdb2,cdb2,8ea1cdb2v,cdb2v 5e9a e5ba9a 5e9a 00005e9a a9b0 a9b0 a9b0 a9b0 a9b0 a9b0 a9b0
+1459 a9b1 a9b1 a9b1 * 4d33 * 8ea1cdb3,cdb3,8ea1cdb3v,cdb3v 5e97 e5ba97 5e97 00005e97 a9b1 a9b1 a9b1 a9b1 a9b1 a9b1 a9b1
+1460 a9b2 a9b2 a9b2 * 4d34 * 8ea1cdb4,cdb4,8ea1cdb4v,cdb4v 5e9c e5ba9c 5e9c 00005e9c a9b2 a9b2 a9b2 a9b2 a9b2 a9b2 a9b2
+1461 a9b3 a9b3 a9b3 * 4d35 * 8ea1cdb5,cdb5,8ea1cdb5v,cdb5v 5e95 e5ba95 5e95 00005e95 a9b3 a9b3 a9b3 a9b3 a9b3 a9b3 a9b3
+1462 a9b4 a9b4 a9b4 * 4d36 * 8ea1cdb6,cdb6,8ea1cdb6v,cdb6v 5e96 e5ba96 5e96 00005e96 a9b4 a9b4 a9b4 a9b4 a9b4 a9b4 a9b4
+1463 a9b5 a9b5 a9b5 * 4d37 * 8ea1cdb7,cdb7,8ea1cdb7v,cdb7v 5ef6 e5bbb6 5ef6 00005ef6 a9b5 a9b5 a9b5 a9b5 a9b5 a9b5 a9b5
+1464 a9b6 a9b6 a9b6 * 4d38 * 8ea1cdb8,cdb8,8ea1cdb8v,cdb8v 5f26 e5bca6 5f26 00005f26 a9b6 a9b6 a9b6 a9b6 a9b6 a9b6 a9b6
+1465 a9b7 a9b7 a9b7 * 4d39 * 8ea1cdb9,cdb9,8ea1cdb9v,cdb9v 5f27 e5bca7 5f27 00005f27 a9b7 a9b7 a9b7 a9b7 a9b7 a9b7 a9b7
+1466 a9b8 a9b8 a9b8 * 4d3a * 8ea1cdba,cdba,8ea1cdbav,cdbav 5f29 e5bca9 5f29 00005f29 a9b8 a9b8 a9b8 a9b8 a9b8 a9b8 a9b8
+1467 a9b9 a9b9 a9b9 * 4d3b * 8ea1cdbb,cdbb,8ea1cdbbv,cdbbv 5f80 e5be80 5f80 00005f80 a9b9 a9b9 a9b9 a9b9 a9b9 a9b9 a9b9
+1468 a9ba a9ba a9ba * 4d3c * 8ea1cdbc,cdbc,8ea1cdbcv,cdbcv 5f81 e5be81 5f81 00005f81 a9ba a9ba a9ba a9ba a9ba a9ba a9ba
+1469 a9bb a9bb a9bb * 4d3d * 8ea1cdbd,cdbd,8ea1cdbdv,cdbdv 5f7f e5bdbf 5f7f 00005f7f a9bb a9bb a9bb a9bb a9bb a9bb a9bb
+1470 a9bc a9bc a9bc * 4d3e * 8ea1cdbe,cdbe,8ea1cdbev,cdbev 5f7c e5bdbc 5f7c 00005f7c a9bc a9bc a9bc a9bc a9bc a9bc a9bc
+1471 a9bd a9bd a9bd * 4d3f * 8ea1cdbf,cdbf,8ea1cdbfv,cdbfv 5fdd e5bf9d 5fdd 00005fdd a9bd a9bd a9bd a9bd a9bd a9bd a9bd
+1472 a9be a9be a9be * 4d40 * 8ea1cdc0,cdc0,8ea1cdc0v,cdc0v 5fe0 e5bfa0 5fe0 00005fe0 a9be a9be a9be a9be a9be a9be a9be
+1473 a9bf a9bf a9bf * 4d41 * 8ea1cdc1,cdc1,8ea1cdc1v,cdc1v 5ffd e5bfbd 5ffd 00005ffd a9bf a9bf a9bf a9bf a9bf a9bf a9bf
+1474 a9c0 a9c0 a9c0 * 4d42 * 8ea1cdc2,cdc2,8ea1cdc2v,cdc2v 5ff5 e5bfb5 5ff5 00005ff5 a9c0 a9c0 a9c0 a9c0 a9c0 a9c0 a9c0
+1475 a9c1 a9c1 a9c1 * 4d43 * 8ea1cdc3,cdc3,8ea1cdc3v,cdc3v 5fff e5bfbf 5fff 00005fff a9c1 a9c1 a9c1 a9c1 a9c1 a9c1 a9c1
+1476 a9c2 a9c2 a9c2 * 4d44 * 8ea1cdc4,cdc4,8ea1cdc4v,cdc4v 600f e6808f 600f 0000600f a9c2 a9c2 a9c2 a9c2 a9c2 a9c2 a9c2
+1477 a9c3 a9c3 a9c3 * 4d45 * 8ea1cdc5,cdc5,8ea1cdc5v,cdc5v 6014 e68094 6014 00006014 a9c3 a9c3 a9c3 a9c3 a9c3 a9c3 a9c3
+1478 a9c4 a9c4 a9c4 * 4d46 * 8ea1cdc6,cdc6,8ea1cdc6v,cdc6v 602f e680af 602f 0000602f a9c4 a9c4 a9c4 a9c4 a9c4 a9c4 a9c4
+1479 a9c5 a9c5 a9c5 * 4d47 * 8ea1cdc7,cdc7,8ea1cdc7v,cdc7v 6035 e680b5 6035 00006035 a9c5 a9c5 a9c5 a9c5 a9c5 a9c5 a9c5
+1480 a9c6 a9c6 a9c6 * 4d48 * 8ea1cdc8,cdc8,8ea1cdc8v,cdc8v 6016 e68096 6016 00006016 a9c6 a9c6 a9c6 a9c6 a9c6 a9c6 a9c6
+1481 a9c7 a9c7 a9c7 * 4d49 * 8ea1cdc9,cdc9,8ea1cdc9v,cdc9v 602a e680aa 602a 0000602a a9c7 a9c7 a9c7 a9c7 a9c7 a9c7 a9c7
+1482 a9c8 a9c8 a9c8 * 4d4a * 8ea1cdca,cdca,8ea1cdcav,cdcav 6015 e68095 6015 00006015 a9c8 a9c8 a9c8 a9c8 a9c8 a9c8 a9c8
+1483 a9c9 a9c9 a9c9 * 4d4b * 8ea1cdcb,cdcb,8ea1cdcbv,cdcbv 6021 e680a1 6021 00006021 a9c9 a9c9 a9c9 a9c9 a9c9 a9c9 a9c9
+1484 a9ca a9ca a9ca * 4d4c * 8ea1cdcc,cdcc,8ea1cdccv,cdccv 6027 e680a7 6027 00006027 a9ca a9ca a9ca a9ca a9ca a9ca a9ca
+1485 a9cb a9cb a9cb * 4d4d * 8ea1cdcd,cdcd,8ea1cdcdv,cdcdv 6029 e680a9 6029 00006029 a9cb a9cb a9cb a9cb a9cb a9cb a9cb
+1486 a9cc a9cc a9cc * 4d4e * 8ea1cdce,cdce,8ea1cdcev,cdcev 602b e680ab 602b 0000602b a9cc a9cc a9cc a9cc a9cc a9cc a9cc
+1487 a9cd a9cd a9cd * 4d4f * 8ea1cdcf,cdcf,8ea1cdcfv,cdcfv 601b e6809b 601b 0000601b a9cd a9cd a9cd a9cd a9cd a9cd a9cd
+1488 a9ce a9ce a9ce * 4d50 * 8ea1cdd0,cdd0,8ea1cdd0v,cdd0v 6216 e68896 6216 00006216 a9ce a9ce a9ce a9ce a9ce a9ce a9ce
+1489 a9cf a9cf a9cf * 4d51 * 8ea1cdd1,cdd1,8ea1cdd1v,cdd1v 6215 e68895 6215 00006215 a9cf a9cf a9cf a9cf a9cf a9cf a9cf
+1490 a9d0 a9d0 a9d0 * 4d52 * 8ea1cdd2,cdd2,8ea1cdd2v,cdd2v 623f e688bf 623f 0000623f a9d0 a9d0 a9d0 a9d0 a9d0 a9d0 a9d0
+1491 a9d1 a9d1 a9d1 * 4d53 * 8ea1cdd3,cdd3,8ea1cdd3v,cdd3v 623e e688be 623e 0000623e a9d1 a9d1 a9d1 a9d1 a9d1 a9d1 a9d1
+1492 a9d2 a9d2 a9d2 * 4d54 * 8ea1cdd4,cdd4,8ea1cdd4v,cdd4v 6240 e68980 6240 00006240 a9d2 a9d2 a9d2 a9d2 a9d2 a9d2 a9d2
+1493 a9d3 a9d3 a9d3 * 4d55 * 8ea1cdd5,cdd5,8ea1cdd5v,cdd5v 627f e689bf 627f 0000627f a9d3 a9d3 a9d3 a9d3 a9d3 a9d3 a9d3
+1494 a9d4 a9d4 a9d4 * 4d56 * 8ea1cdd6,cdd6,8ea1cdd6v,cdd6v 62c9 e68b89 62c9 000062c9 a9d4 a9d4 a9d4 a9d4 a9d4 a9d4 a9d4
+1495 a9d5 a9d5 a9d5 * 4d57 * 8ea1cdd7,cdd7,8ea1cdd7v,cdd7v 62cc e68b8c 62cc 000062cc a9d5 a9d5 a9d5 a9d5 a9d5 a9d5 a9d5
+1496 a9d6 a9d6 a9d6 * 4d58 * 8ea1cdd8,cdd8,8ea1cdd8v,cdd8v 62c4 e68b84 62c4 000062c4 a9d6 a9d6 a9d6 a9d6 a9d6 a9d6 a9d6
+1497 a9d7 a9d7 a9d7 * 4d59 * 8ea1cdd9,cdd9,8ea1cdd9v,cdd9v 62bf e68abf 62bf 000062bf a9d7 a9d7 a9d7 a9d7 a9d7 a9d7 a9d7
+1498 a9d8 a9d8 a9d8 * 4d5a * 8ea1cdda,cdda,8ea1cddav,cddav 62c2 e68b82 62c2 000062c2 a9d8 a9d8 a9d8 a9d8 a9d8 a9d8 a9d8
+1499 a9d9 a9d9 a9d9 * 4d5b * 8ea1cddb,cddb,8ea1cddbv,cddbv 62b9 e68ab9 62b9 000062b9 a9d9 a9d9 a9d9 a9d9 a9d9 a9d9 a9d9
+1500 a9da a9da a9da * 4d5c * 8ea1cddc,cddc,8ea1cddcv,cddcv 62d2 e68b92 62d2 000062d2 a9da a9da a9da a9da a9da a9da a9da
+1501 a9db a9db a9db * 4d5d * 8ea1cddd,cddd,8ea1cdddv,cdddv 62db e68b9b 62db 000062db a9db a9db a9db a9db a9db a9db a9db
+1502 a9dc a9dc a9dc * 4d5e * 8ea1cdde,cdde,8ea1cddev,cddev 62ab e68aab 62ab 000062ab a9dc a9dc a9dc a9dc a9dc a9dc a9dc
+1503 a9dd a9dd a9dd * 4d5f * 8ea1cddf,cddf,8ea1cddfv,cddfv 62d3 e68b93 62d3 000062d3 a9dd a9dd a9dd a9dd a9dd a9dd a9dd
+1504 a9de a9de a9de * 4d60 * 8ea1cde0,cde0,8ea1cde0v,cde0v 62d4 e68b94 62d4 000062d4 a9de a9de a9de a9de a9de a9de a9de
+1505 a9df a9df a9df * 4d61 * 8ea1cde1,cde1,8ea1cde1v,cde1v 62cb e68b8b 62cb 000062cb a9df a9df a9df a9df a9df a9df a9df
+1506 a9e0 a9e0 a9e0 * 4d62 * 8ea1cde2,cde2,8ea1cde2v,cde2v 62c8 e68b88 62c8 000062c8 a9e0 a9e0 a9e0 a9e0 a9e0 a9e0 a9e0
+1507 a9e1 a9e1 a9e1 * 4d63 * 8ea1cde3,cde3,8ea1cde3v,cde3v 62a8 e68aa8 62a8 000062a8 a9e1 a9e1 a9e1 a9e1 a9e1 a9e1 a9e1
+1508 a9e2 a9e2 a9e2 * 4d64 * 8ea1cde4,cde4,8ea1cde4v,cde4v 62bd e68abd 62bd 000062bd a9e2 a9e2 a9e2 a9e2 a9e2 a9e2 a9e2
+1509 a9e3 a9e3 a9e3 * 4d65 * 8ea1cde5,cde5,8ea1cde5v,cde5v 62bc e68abc 62bc 000062bc a9e3 a9e3 a9e3 a9e3 a9e3 a9e3 a9e3
+1510 a9e4 a9e4 a9e4 * 4d66 * 8ea1cde6,cde6,8ea1cde6v,cde6v 62d0 e68b90,eeb2a6 62d0,eca6 000062d0,0000eca6 9dc4,a9e4 a9e4 a9e4 a9e4 a9e4 a9e4 9dc4,a9e4
+1511 a9e5 a9e5 a9e5 * 4d67 * 8ea1cde7,cde7,8ea1cde7v,cde7v 62d9 e68b99 62d9 000062d9 a9e5 a9e5 a9e5 a9e5 a9e5 a9e5 a9e5
+1512 a9e6 a9e6 a9e6 * 4d68 * 8ea1cde8,cde8,8ea1cde8v,cde8v 62c7 e68b87 62c7 000062c7 a9e6 a9e6 a9e6 a9e6 a9e6 a9e6 a9e6
+1513 a9e7 a9e7 a9e7 * 4d69 * 8ea1cde9,cde9,8ea1cde9v,cde9v 62cd e68b8d 62cd 000062cd a9e7 a9e7 a9e7 a9e7 a9e7 a9e7 a9e7
+1514 a9e8 a9e8 a9e8 * 4d6a * 8ea1cdea,cdea,8ea1cdeav,cdeav 62b5 e68ab5 62b5 000062b5 a9e8 a9e8 a9e8 a9e8 a9e8 a9e8 a9e8
+1515 a9e9 a9e9 a9e9 * 4d6b * 8ea1cdeb,cdeb,8ea1cdebv,cdebv 62da e68b9a 62da 000062da a9e9 a9e9 a9e9 a9e9 a9e9 a9e9 a9e9
+1516 a9ea a9ea a9ea * 4d6c * 8ea1cdec,cdec,8ea1cdecv,cdecv 62b1 e68ab1 62b1 000062b1 a9ea a9ea a9ea a9ea a9ea a9ea a9ea
+1517 a9eb a9eb a9eb * 4d6d * 8ea1cded,cded,8ea1cdedv,cdedv 62d8 e68b98 62d8 000062d8 a9eb a9eb a9eb a9eb a9eb a9eb a9eb
+1518 a9ec a9ec a9ec * 4d6e * 8ea1cdee,cdee,8ea1cdeev,cdeev 62d6 e68b96 62d6 000062d6 a9ec a9ec a9ec a9ec a9ec a9ec a9ec
+1519 a9ed a9ed a9ed * 4d6f * 8ea1cdef,cdef,8ea1cdefv,cdefv 62d7 e68b97 62d7 000062d7 a9ed a9ed a9ed a9ed a9ed a9ed a9ed
+1520 a9ee a9ee a9ee * 4d70 * 8ea1cdf0,cdf0,8ea1cdf0v,cdf0v 62c6 e68b86 62c6 000062c6 a9ee a9ee a9ee a9ee a9ee a9ee a9ee
+1521 a9ef a9ef a9ef * 4d71 * 8ea1cdf1,cdf1,8ea1cdf1v,cdf1v 62ac e68aac 62ac 000062ac a9ef a9ef a9ef a9ef a9ef a9ef a9ef
+1522 a9f0 a9f0 a9f0 * 4d72 * 8ea1cdf2,cdf2,8ea1cdf2v,cdf2v 62ce e68b8e,eeb992 62ce,ee52 000062ce,0000ee52 a077,a9f0 a9f0 a9f0 a9f0 a9f0 a9f0 a077,a9f0
+1523 a9f1 a9f1 a9f1 * 4d73 * 8ea1cdf3,cdf3,8ea1cdf3v,cdf3v 653e e694be 653e 0000653e a9f1 a9f1 a9f1 a9f1 a9f1 a9f1 a9f1
+1524 a9f2 a9f2 a9f2 * 4d74 * 8ea1cdf4,cdf4,8ea1cdf4v,cdf4v 65a7 e696a7 65a7 000065a7 a9f2 a9f2 a9f2 a9f2 a9f2 a9f2 a9f2
+1525 a9f3 a9f3 a9f3 * 4d75 * 8ea1cdf5,cdf5,8ea1cdf5v,cdf5v 65bc e696bc 65bc 000065bc a9f3 a9f3 a9f3 a9f3 a9f3 a9f3 a9f3
+1526 a9f4 a9f4 a9f4 * 4d76 * 8ea1cdf6,cdf6,8ea1cdf6v,cdf6v 65fa e697ba 65fa 000065fa a9f4 a9f4 a9f4 a9f4 a9f4 a9f4 a9f4
+1527 a9f5 a9f5 a9f5 * 4d77 * 8ea1cdf7,cdf7,8ea1cdf7v,cdf7v 6614 e69894 6614 00006614 a9f5 a9f5 a9f5 a9f5 a9f5 a9f5 a9f5
+1528 a9f6 a9f6 a9f6 * 4d78 * 8ea1cdf8,cdf8,8ea1cdf8v,cdf8v 6613 e69893 6613 00006613 a9f6 a9f6 a9f6 a9f6 a9f6 a9f6 a9f6
+1529 a9f7 a9f7 a9f7 * 4d79 * 8ea1cdf9,cdf9,8ea1cdf9v,cdf9v 660c e6988c 660c 0000660c a9f7 a9f7 a9f7 a9f7 a9f7 a9f7 a9f7
+1530 a9f8 a9f8 a9f8 * 4d7a * 8ea1cdfa,cdfa,8ea1cdfav,cdfav 6606 e69886 6606 00006606 a9f8 a9f8 a9f8 a9f8 a9f8 a9f8 a9f8
+1531 a9f9 a9f9 a9f9 * 4d7b * 8ea1cdfb,cdfb,8ea1cdfbv,cdfbv 6602 e69882 6602 00006602 a9f9 a9f9 a9f9 a9f9 a9f9 a9f9 a9f9
+1532 a9fa a9fa a9fa * 4d7c * 8ea1cdfc,cdfc,8ea1cdfcv,cdfcv 660e e6988e 660e 0000660e a9fa a9fa a9fa a9fa a9fa a9fa a9fa
+1533 a9fb a9fb a9fb * 4d7d * 8ea1cdfd,cdfd,8ea1cdfdv,cdfdv 6600 e69880 6600 00006600 a9fb a9fb a9fb a9fb a9fb a9fb a9fb
+1534 a9fc a9fc a9fc * 4d7e * 8ea1cdfe,cdfe,8ea1cdfev,cdfev 660f e6988f 660f 0000660f a9fc a9fc a9fc a9fc a9fc a9fc a9fc
+1535 a9fd a9fd a9fd * 4e21 * 8ea1cea1,cea1,8ea1cea1v,cea1v 6615 e69895 6615 00006615 a9fd a9fd a9fd a9fd a9fd a9fd a9fd
+1536 a9fe a9fe a9fe * 4e22 * 8ea1cea2,cea2,8ea1cea2v,cea2v 660a e6988a 660a 0000660a a9fe a9fe a9fe a9fe a9fe a9fe a9fe
+1537 aa40 aa40 aa40 * 4e23 * 8ea1cea3,cea3,8ea1cea3v,cea3v 6607 e69887 6607 00006607 aa40 aa40 aa40 aa40 aa40 aa40 aa40
+1538 aa41 aa41 aa41 * 4e24 * 8ea1cea4,cea4,8ea1cea4v,cea4v 670d e69c8d 670d 0000670d aa41 aa41 aa41 aa41 aa41 aa41 aa41
+1539 aa42 aa42 aa42 * 4e25 * 8ea1cea5,cea5,8ea1cea5v,cea5v 670b e69c8b 670b 0000670b aa42 aa42 aa42 aa42 aa42 aa42 aa42
+1540 aa43 aa43 aa43 * 4e26 * 8ea1cea6,cea6,8ea1cea6v,cea6v 676d e69dad 676d 0000676d aa43 aa43 aa43 aa43 aa43 aa43 aa43
+1541 aa44 aa44 aa44 * 4e27 * 8ea1cea7,cea7,8ea1cea7v,cea7v 678b e69e8b 678b 0000678b aa44 aa44 aa44 aa44 aa44 aa44 aa44
+1542 aa45 aa45 aa45 * 4e28 * 8ea1cea8,cea8,8ea1cea8v,cea8v 6795 e69e95 6795 00006795 aa45 aa45 aa45 aa45 aa45 aa45 aa45
+1543 aa46 aa46 aa46 * 4e29 * 8ea1cea9,cea9,8ea1cea9v,cea9v 6771 e69db1 6771 00006771 aa46 aa46 aa46 aa46 aa46 aa46 aa46
+1544 aa47 aa47 aa47 * 4e2a * 8ea1ceaa,ceaa,8ea1ceaav,ceaav 679c e69e9c 679c 0000679c aa47 aa47 aa47 aa47 aa47 aa47 aa47
+1545 aa48 aa48 aa48 * 4e2b * 8ea1ceab,ceab,8ea1ceabv,ceabv 6773 e69db3 6773 00006773 aa48 aa48 aa48 aa48 aa48 aa48 aa48
+1546 aa49 aa49 aa49 * 4e2c * 8ea1ceac,ceac,8ea1ceacv,ceacv 6777 e69db7 6777 00006777 aa49 aa49 aa49 aa49 aa49 aa49 aa49
+1547 aa4a aa4a aa4a * 4e2d * 8ea1cead,cead,8ea1ceadv,ceadv 6787 e69e87 6787 00006787 aa4a aa4a aa4a aa4a aa4a aa4a aa4a
+1548 aa4b aa4b aa4b * 4e2e * 8ea1ceae,ceae,8ea1ceaev,ceaev 679d e69e9d 679d 0000679d aa4b aa4b aa4b aa4b aa4b aa4b aa4b
+1549 aa4c aa4c aa4c * 4e2f * 8ea1ceaf,ceaf,8ea1ceafv,ceafv 6797 e69e97 6797 00006797 aa4c aa4c aa4c aa4c aa4c aa4c aa4c
+1550 aa4d aa4d aa4d * 4e30 * 8ea1ceb0,ceb0,8ea1ceb0v,ceb0v 676f e69daf 676f 0000676f aa4d aa4d aa4d aa4d aa4d aa4d aa4d
+1551 aa4e aa4e aa4e * 4e31 * 8ea1ceb1,ceb1,8ea1ceb1v,ceb1v 6770 e69db0 6770 00006770 aa4e aa4e aa4e aa4e aa4e aa4e aa4e
+1552 aa4f aa4f aa4f * 4e32 * 8ea1ceb2,ceb2,8ea1ceb2v,ceb2v 677f e69dbf 677f 0000677f aa4f aa4f aa4f aa4f aa4f aa4f aa4f
+1553 aa50 aa50 aa50 * 4e33 * 8ea1ceb3,ceb3,8ea1ceb3v,ceb3v 6789 e69e89 6789 00006789 aa50 aa50 aa50 aa50 aa50 aa50 aa50
+1554 aa51 aa51 aa51 * 4e34 * 8ea1ceb4,ceb4,8ea1ceb4v,ceb4v 677e e69dbe 677e 0000677e aa51 aa51 aa51 aa51 aa51 aa51 aa51
+1555 aa52 aa52 aa52 * 4e35 * 8ea1ceb5,ceb5,8ea1ceb5v,ceb5v 6790 e69e90 6790 00006790 aa52 aa52 aa52 aa52 aa52 aa52 aa52
+1556 aa53 aa53 aa53 * 4e36 * 8ea1ceb6,ceb6,8ea1ceb6v,ceb6v 6775 e69db5 6775 00006775 aa53 aa53 aa53 aa53 aa53 aa53 aa53
+1557 aa54 aa54 aa54 * 4e37 * 8ea1ceb7,ceb7,8ea1ceb7v,ceb7v 679a e69e9a 679a 0000679a aa54 aa54 aa54 aa54 aa54 aa54 aa54
+1558 aa55 aa55 aa55 * 4e38 * 8ea1ceb8,ceb8,8ea1ceb8v,ceb8v 6793 e69e93 6793 00006793 aa55 aa55 aa55 aa55 aa55 aa55 aa55
+1559 aa56 aa56 aa56 * 4e39 * 8ea1ceb9,ceb9,8ea1ceb9v,ceb9v 677c e69dbc 677c 0000677c aa56 aa56 aa56 aa56 aa56 aa56 aa56
+1560 aa57 aa57 aa57 * 4e3a * 8ea1ceba,ceba,8ea1cebav,cebav 676a e69daa 676a 0000676a aa57 aa57 aa57 aa57 aa57 aa57 aa57
+1561 aa58 aa58 aa58 * 4e3b * 8ea1cebb,cebb,8ea1cebbv,cebbv 6772 e69db2 6772 00006772 aa58 aa58,fcb0 9061,aa58 aa58 aa58 aa58 aa58
+1562 aa59 aa59 aa59 * 4e3c * 8ea1cebc,cebc,8ea1cebcv,cebcv 6b23 e6aca3 6b23 00006b23 aa59 aa59 aa59 aa59 aa59 aa59 aa59
+1563 aa5a aa5a aa5a * 4e3d * 8ea1cebd,cebd,8ea1cebdv,cebdv 6b66 e6ada6 6b66 00006b66 aa5a aa5a aa5a aa5a aa5a aa5a aa5a
+1564 aa5b aa5b aa5b * 4e3e * 8ea1cebe,cebe,8ea1cebev,cebev 6b67 e6ada7 6b67 00006b67 aa5b aa5b 9265,aa5b aa5b aa5b aa5b aa5b
+1565 aa5c aa5c aa5c * 4e3f * 8ea1cebf,cebf,8ea1cebfv,cebfv 6b7f e6adbf 6b7f 00006b7f aa5c aa5c aa5c aa5c aa5c aa5c aa5c
+1566 aa5d aa5d aa5d * 4e40 * 8ea1cec0,cec0,8ea1cec0v,cec0v 6c13 e6b093 6c13 00006c13 aa5d aa5d aa5d aa5d aa5d aa5d aa5d
+1567 aa5e aa5e aa5e * 4e41 * 8ea1cec1,cec1,8ea1cec1v,cec1v 6c1b e6b09b 6c1b 00006c1b aa5e aa5e aa5e aa5e aa5e aa5e aa5e
+1568 aa5f aa5f aa5f * 4e42 * 8ea1cec2,cec2,8ea1cec2v,cec2v 6ce3 e6b3a3 6ce3 00006ce3 aa5f aa5f aa5f aa5f aa5f aa5f aa5f
+1569 aa60 aa60 aa60 * 4e43 * 8ea1cec3,cec3,8ea1cec3v,cec3v 6ce8 e6b3a8 6ce8 00006ce8 aa60 aa60 aa60 aa60 aa60 aa60 aa60
+1570 aa61 aa61 aa61 * 4e44 * 8ea1cec4,cec4,8ea1cec4v,cec4v 6cf3 e6b3b3 6cf3 00006cf3 aa61 aa61 aa61 aa61 aa61 aa61 aa61
+1571 aa62 aa62 aa62 * 4e45 * 8ea1cec5,cec5,8ea1cec5v,cec5v 6cb1 e6b2b1 6cb1 00006cb1 aa62 aa62 aa62 aa62 aa62 aa62 aa62
+1572 aa63 aa63 aa63 * 4e46 * 8ea1cec6,cec6,8ea1cec6v,cec6v 6ccc e6b38c 6ccc 00006ccc aa63 aa63 aa63 aa63 aa63 aa63 aa63
+1573 aa64 aa64 aa64 * 4e47 * 8ea1cec7,cec7,8ea1cec7v,cec7v 6ce5 e6b3a5 6ce5 00006ce5 aa64 aa64 aa64 aa64 aa64 aa64 aa64
+1574 aa65 aa65 aa65 * 4e48 * 8ea1cec8,cec8,8ea1cec8v,cec8v 6cb3 e6b2b3 6cb3 00006cb3 aa65 aa65 aa65 aa65 aa65 aa65 aa65
+1575 aa66 aa66 aa66 * 4e49 * 8ea1cec9,cec9,8ea1cec9v,cec9v 6cbd e6b2bd 6cbd 00006cbd aa66 aa66 aa66 aa66 aa66 aa66 aa66
+1576 aa67 aa67 aa67 * 4e4a * 8ea1ceca,ceca,8ea1cecav,cecav 6cbe e6b2be 6cbe 00006cbe aa67 aa67 aa67 aa67 aa67 aa67 aa67
+1577 aa68 aa68 aa68 * 4e4b * 8ea1cecb,cecb,8ea1cecbv,cecbv 6cbc e6b2bc 6cbc 00006cbc aa68 aa68 aa68 aa68 aa68 aa68 aa68
+1578 aa69 aa69 aa69 * 4e4c * 8ea1cecc,cecc,8ea1ceccv,ceccv 6ce2 e6b3a2 6ce2 00006ce2 aa69 aa69 aa69 aa69 aa69 aa69 aa69
+1579 aa6a aa6a aa6a * 4e4d * 8ea1cecd,cecd,8ea1cecdv,cecdv 6cab e6b2ab 6cab 00006cab aa6a aa6a aa6a aa6a aa6a aa6a aa6a
+1580 aa6b aa6b aa6b * 4e4e * 8ea1cece,cece,8ea1cecev,cecev 6cd5 e6b395 6cd5 00006cd5 aa6b aa6b aa6b aa6b aa6b aa6b aa6b
+1581 aa6c aa6c aa6c * 4e4f * 8ea1cecf,cecf,8ea1cecfv,cecfv 6cd3 e6b393 6cd3 00006cd3 aa6c aa6c aa6c aa6c aa6c aa6c aa6c
+1582 aa6d aa6d aa6d * 4e50 * 8ea1ced0,ced0,8ea1ced0v,ced0v 6cb8 e6b2b8 6cb8 00006cb8 aa6d aa6d aa6d aa6d aa6d aa6d aa6d
+1583 aa6e aa6e aa6e * 4e51 * 8ea1ced1,ced1,8ea1ced1v,ced1v 6cc4 e6b384 6cc4 00006cc4 aa6e aa6e aa6e aa6e aa6e aa6e aa6e
+1584 aa6f aa6f aa6f * 4e52 * 8ea1ced2,ced2,8ea1ced2v,ced2v 6cb9 e6b2b9 6cb9 00006cb9 aa6f aa6f aa6f aa6f aa6f aa6f aa6f
+1585 aa70 aa70 aa70 * 4e53 * 8ea1ced3,ced3,8ea1ced3v,ced3v 6cc1 e6b381 6cc1 00006cc1 aa70 aa70 aa70 aa70 aa70 aa70 aa70
+1586 aa71 aa71 aa71 * 4e54 * 8ea1ced4,ced4,8ea1ced4v,ced4v 6cae e6b2ae 6cae 00006cae aa71 aa71 aa71 aa71 aa71 aa71 aa71
+1587 aa72 aa72 aa72 * 4e55 * 8ea1ced5,ced5,8ea1ced5v,ced5v 6cd7 e6b397 6cd7 00006cd7 aa72 aa72 aa72 aa72 aa72 aa72 aa72
+1588 aa73 aa73 aa73 * 4e56 * 8ea1ced6,ced6,8ea1ced6v,ced6v 6cc5 e6b385 6cc5 00006cc5 aa73 aa73 aa73 aa73 aa73 aa73 aa73
+1589 aa74 aa74 aa74 * 4e57 * 8ea1ced7,ced7,8ea1ced7v,ced7v 6cf1 e6b3b1 6cf1 00006cf1 aa74 aa74 aa74 aa74 aa74 aa74 aa74
+1590 aa75 aa75 aa75 * 4e58 * 8ea1ced8,ced8,8ea1ced8v,ced8v 6cbf e6b2bf 6cbf 00006cbf aa75 aa75 aa75 aa75 aa75 aa75 aa75
+1591 aa76 aa76 aa76 * 4e59 * 8ea1ced9,ced9,8ea1ced9v,ced9v 6cbb e6b2bb 6cbb 00006cbb aa76 aa76 aa76 aa76 aa76 aa76 aa76
+1592 aa77 aa77 aa77 * 4e5a * 8ea1ceda,ceda,8ea1cedav,cedav 6ce1 e6b3a1 6ce1 00006ce1 aa77 aa77 aa77 aa77 aa77 aa77 aa77
+1593 aa78 aa78 aa78 * 4e5b * 8ea1cedb,cedb,8ea1cedbv,cedbv 6cdb e6b39b 6cdb 00006cdb aa78 aa78 aa78 aa78 aa78 aa78 aa78
+1594 aa79 aa79 aa79 * 4e5c * 8ea1cedc,cedc,8ea1cedcv,cedcv 6cca e6b38a 6cca 00006cca aa79 aa79 aa79 aa79 aa79 aa79 aa79
+1595 aa7a aa7a aa7a * 4e5d * 8ea1cedd,cedd,8ea1ceddv,ceddv 6cac e6b2ac 6cac 00006cac aa7a aa7a aa7a aa7a aa7a aa7a aa7a
+1596 aa7b aa7b aa7b * 4e5e * 8ea1cede,cede,8ea1cedev,cedev 6cef e6b3af 6cef 00006cef aa7b aa7b aa7b aa7b aa7b aa7b aa7b
+1597 aa7c aa7c aa7c * 4e5f * 8ea1cedf,cedf,8ea1cedfv,cedfv 6cdc e6b39c 6cdc 00006cdc aa7c aa7c aa7c aa7c aa7c aa7c aa7c
+1598 aa7d aa7d aa7d * 4e60 * 8ea1cee0,cee0,8ea1cee0v,cee0v 6cd6 e6b396 6cd6 00006cd6 aa7d aa7d aa7d aa7d aa7d aa7d aa7d
+1599 aa7e aa7e aa7e * 4e61 * 8ea1cee1,cee1,8ea1cee1v,cee1v 6ce0 e6b3a0 6ce0 00006ce0 aa7e aa7e aa7e aa7e aa7e aa7e aa7e
+1600 aaa1 aaa1 aaa1 * 4e62 * 8ea1cee2,cee2,8ea1cee2v,cee2v 7095 e78295 7095 00007095 aaa1 aaa1 aaa1 aaa1 aaa1 aaa1 aaa1
+1601 aaa2 aaa2 aaa2 * 4e63 * 8ea1cee3,cee3,8ea1cee3v,cee3v 708e e7828e 708e 0000708e aaa2 aaa2 aaa2 aaa2 aaa2 aaa2 aaa2
+1602 aaa3 aaa3 aaa3 * 4e64 * 8ea1cee4,cee4,8ea1cee4v,cee4v 7092 e78292 7092 00007092 aaa3 aaa3 aaa3 aaa3 aaa3 aaa3 aaa3
+1603 aaa4 aaa4 aaa4 * 4e65 * 8ea1cee5,cee5,8ea1cee5v,cee5v 708a e7828a 708a 0000708a aaa4 aaa4 aaa4 aaa4 aaa4 aaa4 aaa4
+1604 aaa5 aaa5 aaa5 * 4e66 * 8ea1cee6,cee6,8ea1cee6v,cee6v 7099 e78299 7099 00007099 aaa5 aaa5 aaa5 aaa5 aaa5 aaa5 aaa5
+1605 aaa6 aaa6 aaa6 * 4e67 * 8ea1cee7,cee7,8ea1cee7v,cee7v 722c e788ac 722c 0000722c aaa6 aaa6 aaa6 aaa6 aaa6 aaa6 aaa6
+1606 aaa7 aaa7 aaa7 * 4e68 * 8ea1cee8,cee8,8ea1cee8v,cee8v 722d e788ad 722d 0000722d aaa7 aaa7 aaa7 aaa7 aaa7 aaa7 aaa7
+1607 aaa8 aaa8 aaa8 * 4e69 * 8ea1cee9,cee9,8ea1cee9v,cee9v 7238 e788b8 7238 00007238 aaa8 aaa8 aaa8 aaa8 aaa8 aaa8 aaa8
+1608 aaa9 aaa9 aaa9 * 4e6a * 8ea1ceea,ceea,8ea1ceeav,ceeav 7248 e78988 7248 00007248 aaa9 aaa9 aaa9 aaa9 aaa9 aaa9 aaa9
+1609 aaaa aaaa aaaa * 4e6b * 8ea1ceeb,ceeb,8ea1ceebv,ceebv 7267 e789a7 7267 00007267 aaaa aaaa aaaa aaaa aaaa aaaa aaaa
+1610 aaab aaab aaab * 4e6c * 8ea1ceec,ceec,8ea1ceecv,ceecv 7269 e789a9 7269 00007269 aaab aaab aaab aaab aaab aaab aaab
+1611 aaac aaac aaac * 4e6d * 8ea1ceed,ceed,8ea1ceedv,ceedv 72c0 e78b80 72c0 000072c0 aaac aaac aaac aaac aaac aaac aaac
+1612 aaad aaad aaad * 4e6e * 8ea1ceee,ceee,8ea1ceeev,ceeev 72ce e78b8e 72ce 000072ce aaad aaad aaad aaad aaad aaad aaad
+1613 aaae aaae aaae * 4e6f * 8ea1ceef,ceef,8ea1ceefv,ceefv 72d9 e78b99 72d9 000072d9 aaae aaae aaae aaae aaae aaae aaae
+1614 aaaf aaaf aaaf * 4e70 * 8ea1cef0,cef0,8ea1cef0v,cef0v 72d7 e78b97 72d7 000072d7 aaaf aaaf aaaf aaaf aaaf aaaf aaaf
+1615 aab0 aab0 aab0 * 4e71 * 8ea1cef1,cef1,8ea1cef1v,cef1v 72d0 e78b90 72d0 000072d0 aab0 aab0 aab0 aab0 aab0 aab0 aab0
+1616 aab1 aab1 aab1 * 4e72 * 8ea1cef2,cef2,8ea1cef2v,cef2v 73a9 e78ea9 73a9 000073a9 aab1 aab1 aab1 aab1 aab1 aab1 aab1
+1617 aab2 aab2 aab2 * 4e73 * 8ea1cef3,cef3,8ea1cef3v,cef3v 73a8 e78ea8 73a8 000073a8 aab2 aab2 aab2 aab2 aab2 aab2 aab2
+1618 aab3 aab3 aab3 * 4e74 * 8ea1cef4,cef4,8ea1cef4v,cef4v 739f e78e9f 739f 0000739f aab3 aab3 aab3 aab3 aab3 aab3 aab3
+1619 aab4 aab4 aab4 * 4e75 * 8ea1cef5,cef5,8ea1cef5v,cef5v 73ab e78eab 73ab 000073ab aab4 aab4 aab4 aab4 aab4 aab4 aab4
+1620 aab5 aab5 aab5 * 4e76 * 8ea1cef6,cef6,8ea1cef6v,cef6v 73a5 e78ea5 73a5 000073a5 aab5 aab5 aab5 aab5 aab5 aab5 aab5
+1621 aab6 aab6 aab6 * 4e77 * 8ea1cef7,cef7,8ea1cef7v,cef7v 753d e794bd 753d 0000753d aab6 aab6 aab6 aab6 aab6 aab6 aab6
+1622 aab7 aab7 aab7 * 4e78 * 8ea1cef8,cef8,8ea1cef8v,cef8v 759d e7969d 759d 0000759d aab7 aab7 aab7 aab7 aab7 aab7 aab7
+1623 aab8 aab8 aab8 * 4e79 * 8ea1cef9,cef9,8ea1cef9v,cef9v 7599 e79699 7599 00007599 aab8 aab8 aab8 aab8 aab8 aab8 aab8
+1624 aab9 aab9 aab9 * 4e7a * 8ea1cefa,cefa,8ea1cefav,cefav 759a e7969a 759a 0000759a aab9 aab9 aab9 aab9 aab9 aab9 aab9
+1625 aaba aaba aaba * 4e7b * 8ea1cefb,cefb,8ea1cefbv,cefbv 7684 e79a84 7684 00007684 aaba aaba aaba aaba aaba aaba aaba
+1626 aabb aabb aabb * 4e7c * 8ea1cefc,cefc,8ea1cefcv,cefcv 76c2 e79b82 76c2 000076c2 aabb aabb aabb aabb aabb aabb aabb
+1627 aabc aabc aabc * 4e7d * 8ea1cefd,cefd,8ea1cefdv,cefdv 76f2 e79bb2 76f2 000076f2 aabc aabc aabc aabc aabc aabc aabc
+1628 aabd aabd aabd * 4e7e * 8ea1cefe,cefe,8ea1cefev,cefev 76f4 e79bb4 76f4 000076f4 aabd aabd aabd aabd aabd aabd aabd
+1629 aabe aabe aabe * 4f21 * 8ea1cfa1,cfa1,8ea1cfa1v,cfa1v 77e5 e79fa5 77e5 000077e5 aabe aabe aabe aabe aabe aabe aabe
+1630 aabf aabf aabf * 4f22 * 8ea1cfa2,cfa2,8ea1cfa2v,cfa2v 77fd e79fbd 77fd 000077fd aabf aabf aabf aabf aabf aabf aabf
+1631 aac0 aac0 aac0 * 4f23 * 8ea1cfa3,cfa3,8ea1cfa3v,cfa3v 793e e7a4be 793e 0000793e aac0 aac0 aac0 aac0 aac0 aac0 aac0
+1632 aac1 aac1 aac1 * 4f24 * 8ea1cfa4,cfa4,8ea1cfa4v,cfa4v 7940 e7a580 7940 00007940 aac1 aac1 aac1 aac1 aac1 aac1 aac1
+1633 aac2 aac2 aac2 * 4f25 * 8ea1cfa5,cfa5,8ea1cfa5v,cfa5v 7941 e7a581 7941 00007941 aac2 aac2 aac2 aac2 aac2 aac2 aac2
+1634 aac3 aac3 aac3 * 4f26 * 8ea1cfa6,cfa6,8ea1cfa6v,cfa6v 79c9 e7a789 79c9 000079c9 aac3 aac3 aac3 aac3 aac3 aac3 aac3
+1635 aac4 aac4 aac4 * 4f27 * 8ea1cfa7,cfa7,8ea1cfa7v,cfa7v 79c8 e7a788 79c8 000079c8 aac4 aac4 aac4 aac4 aac4 aac4 aac4
+1636 aac5 aac5 aac5 * 4f28 * 8ea1cfa8,cfa8,8ea1cfa8v,cfa8v 7a7a e7a9ba 7a7a 00007a7a aac5 aac5 aac5 aac5 aac5 aac5 aac5
+1637 aac6 aac6 aac6 * 4f29 * 8ea1cfa9,cfa9,8ea1cfa9v,cfa9v 7a79 e7a9b9 7a79 00007a79 aac6 aac6 aac6 aac6 aac6 aac6 aac6
+1638 aac7 aac7 aac7 * 4f2a * 8ea1cfaa,cfaa,8ea1cfaav,cfaav 7afa e7abba 7afa 00007afa aac7 aac7 aac7 aac7 aac7 aac7 aac7
+1639 aac8 aac8 aac8 * 4f2b * 8ea1cfab,cfab,8ea1cfabv,cfabv 7cfe e7b3be 7cfe 00007cfe aac8 aac8 aac8 aac8 aac8 aac8 aac8
+1640 aac9 aac9 aac9 * 4f2c * 8ea1cfac,cfac,8ea1cfacv,cfacv 7f54 e7bd94 7f54 00007f54 aac9 aac9 aac9 aac9 aac9 aac9 aac9
+1641 aaca aaca aaca * 4f2d * 8ea1cfad,cfad,8ea1cfadv,cfadv 7f8c e7be8c 7f8c 00007f8c aaca aaca aaca aaca aaca aaca aaca
+1642 aacb aacb aacb * 4f2e * 8ea1cfae,cfae,8ea1cfaev,cfaev 7f8b e7be8b 7f8b 00007f8b aacb aacb aacb aacb aacb aacb aacb
+1643 aacc aacc aacc * 4f2f * 8ea1cfaf,cfaf,8ea1cfafv,cfafv 8005 e88085,ee8dbc 8005,e37c 00008005,0000e37c 8ecd,aacc aacc aacc aacc aacc aacc 8ecd,aacc
+1644 aacd aacd aacd * 4f30 * 8ea1cfb0,cfb0,8ea1cfb0v,cfb0v 80ba e882ba 80ba 000080ba aacd aacd aacd aacd aacd aacd aacd
+1645 aace aace aace * 4f31 * 8ea1cfb1,cfb1,8ea1cfb1v,cfb1v 80a5 e882a5 80a5 000080a5 aace aace aace aace aace aace aace
+1646 aacf aacf aacf * 4f32 * 8ea1cfb2,cfb2,8ea1cfb2v,cfb2v 80a2 e882a2 80a2 000080a2 aacf aacf aacf aacf aacf aacf aacf
+1647 aad0 aad0 aad0 * 4f33 * 8ea1cfb3,cfb3,8ea1cfb3v,cfb3v 80b1 e882b1 80b1 000080b1 aad0 aad0 aad0 aad0 aad0 aad0 aad0
+1648 aad1 aad1 aad1 * 4f34 * 8ea1cfb4,cfb4,8ea1cfb4v,cfb4v 80a1 e882a1 80a1 000080a1 aad1 aad1 aad1 aad1 aad1 aad1 aad1
+1649 aad2 aad2 aad2 * 4f35 * 8ea1cfb5,cfb5,8ea1cfb5v,cfb5v 80ab e882ab 80ab 000080ab aad2 aad2 aad2 aad2 aad2 aad2 aad2
+1650 aad3 aad3 aad3 * 4f36 * 8ea1cfb6,cfb6,8ea1cfb6v,cfb6v 80a9 e882a9 80a9 000080a9 aad3 aad3 aad3 aad3 aad3 aad3 aad3
+1651 aad4 aad4 aad4 * 4f37 * 8ea1cfb7,cfb7,8ea1cfb7v,cfb7v 80b4 e882b4 80b4 000080b4 aad4 aad4 aad4 aad4 aad4 aad4 aad4
+1652 aad5 aad5 aad5 * 4f38 * 8ea1cfb8,cfb8,8ea1cfb8v,cfb8v 80aa e882aa 80aa 000080aa aad5 aad5 aad5 aad5 aad5 aad5 aad5
+1653 aad6 aad6 aad6 * 4f39 * 8ea1cfb9,cfb9,8ea1cfb9v,cfb9v 80af e882af 80af 000080af aad6 aad6 aad6 aad6 aad6 aad6 aad6
+1654 aad7 aad7 aad7 * 4f3a * 8ea1cfba,cfba,8ea1cfbav,cfbav 81e5 e887a5 81e5 000081e5 aad7 aad7 aad7 aad7 aad7 aad7 aad7
+1655 aad8 aad8 aad8 * 4f3b * 8ea1cfbb,cfbb,8ea1cfbbv,cfbbv 81fe e887be 81fe 000081fe aad8 aad8 aad8 aad8 aad8 aad8 aad8
+1656 aad9 aad9 aad9 * 4f3c * 8ea1cfbc,cfbc,8ea1cfbcv,cfbcv 820d e8888d 820d 0000820d aad9 aad9 aad9 aad9 aad9 aad9 aad9
+1657 aada aada aada * 4f3d * 8ea1cfbd,cfbd,8ea1cfbdv,cfbdv 82b3 e88ab3 82b3 000082b3 aada aada aada aada aada aada aada
+1658 aadb aadb aadb * 4f3e * 8ea1cfbe,cfbe,8ea1cfbev,cfbev 829d e88a9d 829d 0000829d aadb aadb aadb aadb aadb aadb aadb
+1659 aadc aadc aadc * 4f3f * 8ea1cfbf,cfbf,8ea1cfbfv,cfbfv 8299 e88a99 8299 00008299 aadc aadc aadc aadc aadc aadc aadc
+1660 aadd aadd aadd * 4f40 * 8ea1cfc0,cfc0,8ea1cfc0v,cfc0v 82ad e88aad 82ad 000082ad aadd aadd aadd aadd aadd aadd aadd
+1661 aade aade aade * 4f41 * 8ea1cfc1,cfc1,8ea1cfc1v,cfc1v 82bd e88abd 82bd 000082bd aade aade aade aade aade aade aade
+1662 aadf aadf aadf * 4f42 * 8ea1cfc2,cfc2,8ea1cfc2v,cfc2v 829f e88a9f 829f 0000829f aadf aadf aadf aadf aadf aadf aadf
+1663 aae0 aae0 aae0 * 4f43 * 8ea1cfc3,cfc3,8ea1cfc3v,cfc3v 82b9 e88ab9 82b9 000082b9 aae0 aae0 aae0 aae0 aae0 aae0 aae0
+1664 aae1 aae1 aae1 * 4f44 * 8ea1cfc4,cfc4,8ea1cfc4v,cfc4v 82b1 e88ab1 82b1 000082b1 aae1 aae1 aae1 aae1 aae1 aae1 aae1
+1665 aae2 aae2 aae2 * 4f45 * 8ea1cfc5,cfc5,8ea1cfc5v,cfc5v 82ac e88aac 82ac 000082ac aae2 aae2 aae2 aae2 aae2 aae2 aae2
+1666 aae3 aae3 aae3 * 4f46 * 8ea1cfc6,cfc6,8ea1cfc6v,cfc6v 82a5 e88aa5 82a5 000082a5 aae3 aae3 aae3 aae3 aae3 aae3 aae3
+1667 aae4 aae4 aae4 * 4f47 * 8ea1cfc7,cfc7,8ea1cfc7v,cfc7v 82af e88aaf 82af 000082af aae4 aae4 aae4 aae4 aae4 aae4 aae4
+1668 aae5 aae5 aae5 * 4f48 * 8ea1cfc8,cfc8,8ea1cfc8v,cfc8v 82b8 e88ab8 82b8 000082b8 aae5 aae5 aae5 aae5 aae5 aae5 aae5
+1669 aae6 aae6 aae6 * 4f49 * 8ea1cfc9,cfc9,8ea1cfc9v,cfc9v 82a3 e88aa3 82a3 000082a3 aae6 aae6 aae6 aae6 aae6 aae6 aae6
+1670 aae7 aae7 aae7 * 4f4a * 8ea1cfca,cfca,8ea1cfcav,cfcav 82b0 e88ab0 82b0 000082b0 aae7 aae7 aae7 aae7 aae7 aae7 aae7
+1671 aae8 aae8 aae8 * 4f4b * 8ea1cfcb,cfcb,8ea1cfcbv,cfcbv 82be e88abe 82be 000082be aae8 aae8 aae8 aae8 aae8 aae8 aae8
+1672 aae9 aae9 aae9 * 4f4c * 8ea1cfcc,cfcc,8ea1cfccv,cfccv 82b7 e88ab7 82b7 000082b7 aae9 aae9 aae9 aae9 aae9 aae9 aae9
+1673 aaea aaea aaea * 4f4d * 8ea1cfcd,cfcd,8ea1cfcdv,cfcdv 864e e8998e 864e 0000864e aaea aaea aaea aaea aaea aaea aaea
+1674 aaeb aaeb aaeb * 4f4e * 8ea1cfce,cfce,8ea1cfcev,cfcev 8671 e899b1 8671 00008671 aaeb aaeb aaeb aaeb aaeb aaeb aaeb
+1675 aaec aaec aaec * 4f4f * 8ea1cfcf,cfcf,8ea1cfcfv,cfcfv 521d e5889d 521d 0000521d aaec aaec aaec aaec aaec aaec aaec
+1676 aaed aaed aaed * 4f50 * 8ea1cfd0,cfd0,8ea1cfd0v,cfd0v 8868 e8a1a8 8868 00008868 aaed aaed aaed aaed aaed aaed aaed
+1677 aaee aaee aaee * 4f51 * 8ea1cfd1,cfd1,8ea1cfd1v,cfd1v 8ecb e8bb8b 8ecb 00008ecb aaee aaee aaee aaee aaee aaee aaee
+1678 aaef aaef aaef * 4f52 * 8ea1cfd2,cfd2,8ea1cfd2v,cfd2v 8fce e8bf8e 8fce 00008fce aaef aaef aaef aaef aaef aaef aaef
+1679 aaf0 aaf0 aaf0 * 4f53 * 8ea1cfd3,cfd3,8ea1cfd3v,cfd3v 8fd4 e8bf94 8fd4 00008fd4 aaf0 aaf0 aaf0 aaf0 aaf0 aaf0 aaf0
+1680 aaf1 aaf1 aaf1 * 4f54 * 8ea1cfd4,cfd4,8ea1cfd4v,cfd4v 8fd1 e8bf91 8fd1 00008fd1 aaf1 aaf1 aaf1 aaf1 aaf1 aaf1 aaf1
+1681 aaf2 aaf2 aaf2 * 4f55 * 8ea1cfd5,cfd5,8ea1cfd5v,cfd5v 90b5 e982b5 90b5 000090b5 aaf2 aaf2 aaf2 aaf2 aaf2 aaf2 aaf2
+1682 aaf3 aaf3 aaf3 * 4f56 * 8ea1cfd6,cfd6,8ea1cfd6v,cfd6v 90b8 e982b8 90b8 000090b8 aaf3 aaf3 aaf3 aaf3 aaf3 aaf3 aaf3
+1683 aaf4 aaf4 aaf4 * 4f57 * 8ea1cfd7,cfd7,8ea1cfd7v,cfd7v 90b1 e982b1 90b1 000090b1 aaf4 aaf4 aaf4 aaf4 aaf4 aaf4 aaf4
+1684 aaf5 aaf5 aaf5 * 4f58 * 8ea1cfd8,cfd8,8ea1cfd8v,cfd8v 90b6 e982b6 90b6 000090b6 aaf5 aaf5 aaf5 aaf5 aaf5 aaf5 aaf5
+1685 aaf6 aaf6 aaf6 * 4f59 * 8ea1cfd9,cfd9,8ea1cfd9v,cfd9v 91c7 e98787 91c7 000091c7 aaf6 aaf6 aaf6 aaf6 aaf6 aaf6 aaf6
+1686 aaf7 aaf7 aaf7 * 2868,4f5a * 8ea1a8e8,8ea1cfda,a8e8,cfda,8ea1a8e8v,8ea1cfdav,a8e8v,cfdav 91d1 e98791,e2bea6 91d1,2fa6 000091d1,00002fa6 aaf7 aaf7 aaf7 aaf7 aaf7 aaf7 aaf7
+1687 aaf8 aaf8 aaf8 * 2869,4f5b * 8ea1a8e9,8ea1cfdb,a8e9,cfdb,8ea1a8e9v,8ea1cfdbv,a8e9v,cfdbv 9577 e995b7,e2bea7 9577,2fa7 00009577,00002fa7 aaf8 aaf8 aaf8 aaf8 aaf8 aaf8 aaf8
+1688 aaf9 aaf9 aaf9 * 286a,4f5c * 8ea1a8ea,8ea1cfdc,a8ea,cfdc,8ea1a8eav,8ea1cfdcv,a8eav,cfdcv 9580 e99680,e2bea8 9580,2fa8 00009580,00002fa8 aaf9 aaf9 aaf9 aaf9 aaf9 aaf9 aaf9
+1689 aafa aafa aafa * 286b,4f5d * 8ea1a8eb,8ea1cfdd,a8eb,cfdd,8ea1a8ebv,8ea1cfddv,a8ebv,cfddv 961c e9989c,e2bea9 961c,2fa9 0000961c,00002fa9 aafa aafa aafa aafa aafa aafa aafa
+1690 aafb aafb aafb * 4f5e * 8ea1cfde,cfde,8ea1cfdev,cfdev 9640 e99980 9640 00009640 aafb aafb aafb aafb aafb aafb aafb
+1691 aafc aafc aafc * 4f5f * 8ea1cfdf,cfdf,8ea1cfdfv,cfdfv 963f e998bf 963f 0000963f aafc aafc aafc aafc aafc aafc aafc
+1692 aafd aafd aafd * 4f60 * 8ea1cfe0,cfe0,8ea1cfe0v,cfe0v 963b e998bb 963b 0000963b aafd aafd aafd aafd aafd aafd aafd
+1693 aafe aafe aafe * 4f61 * 8ea1cfe1,cfe1,8ea1cfe1v,cfe1v 9644 e99984 9644 00009644 aafe aafe aafe aafe aafe aafe aafe
+1694 ab40 ab40 ab40 * 4f62 * 8ea1cfe2,cfe2,8ea1cfe2v,cfe2v 9642 e99982 9642 00009642 ab40 ab40 ab40 ab40 ab40 ab40 ab40
+1695 ab41 ab41 ab41 * 286d,4f63 * 8ea1a8ed,8ea1cfe3,a8ed,cfe3,8ea1a8edv,8ea1cfe3v,a8edv,cfe3v 96b9 e99ab9,e2beab 96b9,2fab 000096b9,00002fab ab41 ab41 ab41 ab41 ab41 ab41 ab41
+1696 ab42 ab42 ab42 * 286e,4f64 * 8ea1a8ee,8ea1cfe4,a8ee,cfe4,8ea1a8eev,8ea1cfe4v,a8eev,cfe4v 96e8 e99ba8,e2beac 96e8,2fac 000096e8,00002fac ab42 ab42 ab42 ab42 ab42 ab42 ab42
+1697 ab43 ab43 ab43 * 286f,4f65 * 8ea1a8ef,8ea1cfe5,a8ef,cfe5,8ea1a8efv,8ea1cfe5v,a8efv,cfe5v 9752 e99d92 9752 00009752 ab43 ab43 ab43 ab43 ab43 ab43 ab43
+1698 ab44 ab44 ab44 * 2870,4f66 * 8ea1a8f0,8ea1cfe6,a8f0,cfe6,8ea1a8f0v,8ea1cfe6v,a8f0v,cfe6v 975e e2beae,e99d9e 2fae,975e 00002fae,0000975e ab44 ab44 ab44 ab44 ab44 ab44 ab44
+1699 ab45 ab45 ab45 * 4f67 * 8ea1cfe7,cfe7,8ea1cfe7v,cfe7v 4e9f e4ba9f 4e9f 00004e9f ab45 ab45 ab45 ab45 ab45 ab45 ab45
+1700 ab46 ab46 ab46 * 4f68 * 8ea1cfe8,cfe8,8ea1cfe8v,cfe8v 4ead e4baad 4ead 00004ead ab46 ab46 ab46 ab46 ab46 ab46 ab46
+1701 ab47 ab47 ab47 * 4f69 * 8ea1cfe9,cfe9,8ea1cfe9v,cfe9v 4eae e4baae 4eae 00004eae ab47 ab47 ab47 ab47 ab47 ab47 ab47
+1702 ab48 ab48 ab48 * 4f6a * 8ea1cfea,cfea,8ea1cfeav,cfeav 4fe1 e4bfa1 4fe1 00004fe1 ab48 ab48 ab48 ab48 ab48 ab48 ab48
+1703 ab49 ab49 ab49 * 4f6b * 8ea1cfeb,cfeb,8ea1cfebv,cfebv 4fb5 e4beb5 4fb5 00004fb5 ab49 ab49 ab49 ab49 ab49 ab49 ab49
+1704 ab4a ab4a ab4a * 4f6c * 8ea1cfec,cfec,8ea1cfecv,cfecv 4faf e4beaf 4faf 00004faf ab4a ab4a ab4a ab4a ab4a ab4a ab4a
+1705 ab4b ab4b ab4b * 4f6d * 8ea1cfed,cfed,8ea1cfedv,cfedv 4fbf e4bebf 4fbf 00004fbf ab4b ab4b ab4b ab4b ab4b ab4b ab4b
+1706 ab4c ab4c ab4c * 4f6e * 8ea1cfee,cfee,8ea1cfeev,cfeev 4fe0 e4bfa0 4fe0 00004fe0 ab4c ab4c ab4c ab4c ab4c ab4c ab4c
+1707 ab4d ab4d ab4d * 4f6f * 8ea1cfef,cfef,8ea1cfefv,cfefv 4fd1 e4bf91 4fd1 00004fd1 ab4d ab4d ab4d ab4d ab4d ab4d ab4d
+1708 ab4e ab4e ab4e * 4f70 * 8ea1cff0,cff0,8ea1cff0v,cff0v 4fcf e4bf8f 4fcf 00004fcf ab4e ab4e ab4e ab4e ab4e ab4e ab4e
+1709 ab4f ab4f ab4f * 4f71 * 8ea1cff1,cff1,8ea1cff1v,cff1v 4fdd e4bf9d 4fdd 00004fdd ab4f ab4f ab4f ab4f ab4f ab4f ab4f
+1710 ab50 ab50 ab50 * 4f72 * 8ea1cff2,cff2,8ea1cff2v,cff2v 4fc3 e4bf83 4fc3 00004fc3 ab50 ab50 ab50 ab50 ab50 ab50 ab50
+1711 ab51 ab51 ab51 * 4f73 * 8ea1cff3,cff3,8ea1cff3v,cff3v 4fb6 e4beb6 4fb6 00004fb6 ab51 ab51 ab51 ab51 ab51 ab51 ab51
+1712 ab52 ab52 ab52 * 4f74 * 8ea1cff4,cff4,8ea1cff4v,cff4v 4fd8 e4bf98 4fd8 00004fd8 ab52 ab52 ab52 ab52 ab52 ab52 ab52
+1713 ab53 ab53 ab53 * 4f75 * 8ea1cff5,cff5,8ea1cff5v,cff5v 4fdf e4bf9f 4fdf 00004fdf ab53 ab53 ab53 ab53 ab53 ab53 ab53
+1714 ab54 ab54 ab54 * 4f76 * 8ea1cff6,cff6,8ea1cff6v,cff6v 4fca e4bf8a 4fca 00004fca ab54 ab54 ab54 ab54 ab54 ab54 ab54
+1715 ab55 ab55 ab55 * 4f77 * 8ea1cff7,cff7,8ea1cff7v,cff7v 4fd7 e4bf97 4fd7 00004fd7 ab55 ab55 ab55 ab55 ab55 ab55 ab55
+1716 ab56 ab56 ab56 * 4f78 * 8ea1cff8,cff8,8ea1cff8v,cff8v 4fae e4beae 4fae 00004fae ab56 ab56 ab56 ab56 ab56 ab56 ab56
+1717 ab57 ab57 ab57 * 4f79 * 8ea1cff9,cff9,8ea1cff9v,cff9v 4fd0 e4bf90 4fd0 00004fd0 ab57 ab57 ab57 ab57 ab57 ab57 ab57
+1718 ab58 ab58 ab58 * 4f7a * 8ea1cffa,cffa,8ea1cffav,cffav 4fc4 e4bf84 4fc4 00004fc4 ab58 ab58 ab58 ab58 ab58 ab58 ab58
+1719 ab59 ab59 ab59 * 4f7b * 8ea1cffb,cffb,8ea1cffbv,cffbv 4fc2 e4bf82 4fc2 00004fc2 ab59 ab59 ab59 ab59 ab59 ab59 ab59
+1720 ab5a ab5a ab5a * 4f7c * 8ea1cffc,cffc,8ea1cffcv,cffcv 4fda e4bf9a 4fda 00004fda ab5a ab5a ab5a ab5a ab5a ab5a ab5a
+1721 ab5b ab5b ab5b * 4f7d * 8ea1cffd,cffd,8ea1cffdv,cffdv 4fce e4bf8e 4fce 00004fce ab5b ab5b ab5b ab5b ab5b ab5b ab5b
+1722 ab5c ab5c ab5c * 4f7e * 8ea1cffe,cffe,8ea1cffev,cffev 4fde e4bf9e 4fde 00004fde ab5c ab5c ab5c ab5c ab5c ab5c ab5c
+1723 ab5d ab5d ab5d * 5021 * 8ea1d0a1,d0a1,8ea1d0a1v,d0a1v 4fb7 e4beb7 4fb7 00004fb7 ab5d ab5d ab5d ab5d ab5d ab5d ab5d
+1724 ab5e ab5e ab5e * 5022 * 8ea1d0a2,d0a2,8ea1d0a2v,d0a2v 5157 e58597 5157 00005157 ab5e ab5e ab5e ab5e ab5e ab5e ab5e
+1725 ab5f ab5f ab5f * 5023 * 8ea1d0a3,d0a3,8ea1d0a3v,d0a3v 5192 e58692 5192 00005192 ab5f ab5f ab5f ab5f ab5f ab5f ab5f
+1726 ab60 ab60 ab60 * 5024 * 8ea1d0a4,d0a4,8ea1d0a4v,d0a4v 5191 e58691 5191 00005191 ab60 ab60 ab60 ab60 ab60 ab60 ab60
+1727 ab61 ab61 ab61 * 5025 * 8ea1d0a5,d0a5,8ea1d0a5v,d0a5v 51a0 e586a0 51a0 000051a0 ab61 ab61 ab61 ab61 ab61 ab61 ab61
+1728 ab62 ab62 ab62 * 5026 * 8ea1d0a6,d0a6,8ea1d0a6v,d0a6v 524e e5898e 524e 0000524e ab62 ab62 ab62 ab62 ab62 ab62 ab62
+1729 ab63 ab63 ab63 * 5027 * 8ea1d0a7,d0a7,8ea1d0a7v,d0a7v 5243 e58983 5243 00005243 ab63 ab63 ab63 ab63 ab63 ab63 ab63
+1730 ab64 ab64 ab64 * 5028 * 8ea1d0a8,d0a8,8ea1d0a8v,d0a8v 524a e5898a 524a 0000524a ab64 ab64 ab64 ab64 ab64 ab64 ab64
+1731 ab65 ab65 ab65 * 5029 * 8ea1d0a9,d0a9,8ea1d0a9v,d0a9v 524d e5898d 524d 0000524d ab65 ab65 ab65 ab65 ab65 ab65 ab65
+1732 ab66 ab66 ab66 * 502a * 8ea1d0aa,d0aa,8ea1d0aav,d0aav 524c e5898c 524c 0000524c ab66 ab66 ab66 ab66 ab66 ab66 ab66
+1733 ab67 ab67 ab67 * 502b * 8ea1d0ab,d0ab,8ea1d0abv,d0abv 524b e5898b 524b 0000524b ab67 ab67 ab67 ab67 ab67 ab67 ab67
+1734 ab68 ab68 ab68 * 502c * 8ea1d0ac,d0ac,8ea1d0acv,d0acv 5247 e58987 5247 00005247 ab68 ab68 ab68 ab68 ab68 ab68 ab68
+1735 ab69 ab69 ab69 * 502d * 8ea1d0ad,d0ad,8ea1d0adv,d0adv 52c7 e58b87 52c7 000052c7 ab69 ab69 ab69 ab69 ab69 ab69 ab69
+1736 ab6a ab6a ab6a * 502e * 8ea1d0ae,d0ae,8ea1d0aev,d0aev 52c9 e58b89 52c9 000052c9 ab6a ab6a ab6a ab6a ab6a ab6a ab6a
+1737 ab6b ab6b ab6b * 502f * 8ea1d0af,d0af,8ea1d0afv,d0afv 52c3 e58b83 52c3 000052c3 ab6b ab6b ab6b ab6b ab6b ab6b ab6b
+1738 ab6c ab6c ab6c * 5030 * 8ea1d0b0,d0b0,8ea1d0b0v,d0b0v 52c1 e58b81 52c1 000052c1 ab6c ab6c ab6c ab6c ab6c ab6c ab6c
+1739 ab6d ab6d ab6d * 5031 * 8ea1d0b1,d0b1,8ea1d0b1v,d0b1v 530d e58c8d 530d 0000530d ab6d ab6d ab6d ab6d ab6d ab6d ab6d
+1740 ab6e ab6e ab6e * 5032 * 8ea1d0b2,d0b2,8ea1d0b2v,d0b2v 5357 e58d97 5357 00005357 ab6e ab6e ab6e ab6e ab6e ab6e ab6e
+1741 ab6f ab6f ab6f * 5033 * 8ea1d0b3,d0b3,8ea1d0b3v,d0b3v 537b e58dbb 537b 0000537b ab6f ab6f ab6f ab6f ab6f ab6f ab6f
+1742 ab70 ab70 ab70 * 5034 * 8ea1d0b4,d0b4,8ea1d0b4v,d0b4v 539a e58e9a 539a 0000539a ab70 ab70 ab70 ab70 ab70 ab70 ab70
+1743 ab71 ab71 ab71 * 5035 * 8ea1d0b5,d0b5,8ea1d0b5v,d0b5v 53db e58f9b 53db 000053db ab71 ab71 ab71 ab71 ab71 ab71 ab71
+1744 ab72 ab72 ab72 * 5036 * 8ea1d0b6,d0b6,8ea1d0b6v,d0b6v 54ac e592ac 54ac 000054ac ab72 ab72 ab72 ab72 ab72 ab72 ab72
+1745 ab73 ab73 ab73 * 5037 * 8ea1d0b7,d0b7,8ea1d0b7v,d0b7v 54c0 e59380 54c0 000054c0 ab73 ab73 ab73 ab73 ab73 ab73 ab73
+1746 ab74 ab74 ab74 * 5038 * 8ea1d0b8,d0b8,8ea1d0b8v,d0b8v 54a8 e592a8 54a8 000054a8 ab74 ab74 ab74 ab74 ab74 ab74 ab74
+1747 ab75 ab75 ab75 * 5039 * 8ea1d0b9,d0b9,8ea1d0b9v,d0b9v 54ce e5938e 54ce 000054ce ab75 ab75 ab75 ab75 ab75 ab75 ab75
+1748 ab76 ab76 ab76 * 503a * 8ea1d0ba,d0ba,8ea1d0bav,d0bav 54c9 e59389 54c9 000054c9 ab76 ab76 ab76 ab76 ab76 ab76 ab76
+1749 ab77 ab77 ab77 * 503b * 8ea1d0bb,d0bb,8ea1d0bbv,d0bbv 54b8 e592b8 54b8 000054b8 ab77 ab77 ab77 ab77 ab77 ab77 ab77
+1750 ab78 ab78 ab78 * 503c * 8ea1d0bc,d0bc,8ea1d0bcv,d0bcv 54a6 e592a6 54a6 000054a6 ab78 ab78 ab78 ab78 ab78 ab78 ab78
+1751 ab79 ab79 ab79 * 503d * 8ea1d0bd,d0bd,8ea1d0bdv,d0bdv 54b3 e592b3 54b3 000054b3 ab79 ab79 ab79 ab79 ab79 ab79 ab79
+1752 ab7a ab7a ab7a * 503e * 8ea1d0be,d0be,8ea1d0bev,d0bev 54c7 e59387 54c7 000054c7 ab7a ab7a ab7a ab7a ab7a ab7a ab7a
+1753 ab7b ab7b ab7b * 503f * 8ea1d0bf,d0bf,8ea1d0bfv,d0bfv 54c2 e59382 54c2 000054c2 ab7b ab7b ab7b ab7b ab7b ab7b ab7b
+1754 ab7c ab7c ab7c * 5040 * 8ea1d0c0,d0c0,8ea1d0c0v,d0c0v 54bd e592bd 54bd 000054bd ab7c ab7c ab7c ab7c ab7c ab7c ab7c
+1755 ab7d ab7d ab7d * 5041 * 8ea1d0c1,d0c1,8ea1d0c1v,d0c1v 54aa e592aa 54aa 000054aa ab7d ab7d ab7d ab7d ab7d ab7d ab7d
+1756 ab7e ab7e ab7e * 5042 * 8ea1d0c2,d0c2,8ea1d0c2v,d0c2v 54c1 e59381 54c1 000054c1 ab7e ab7e ab7e ab7e ab7e ab7e ab7e
+1757 aba1 aba1 aba1 * 5043 * 8ea1d0c3,d0c3,8ea1d0c3v,d0c3v 54c4 e59384 54c4 000054c4 aba1 aba1 aba1 aba1 aba1 aba1 aba1
+1758 aba2 aba2 aba2 * 5044 * 8ea1d0c4,d0c4,8ea1d0c4v,d0c4v 54c8 e59388 54c8 000054c8 aba2 aba2 aba2 aba2 aba2 aba2 aba2
+1759 aba3 aba3 aba3 * 5045 * 8ea1d0c5,d0c5,8ea1d0c5v,d0c5v 54af e592af 54af 000054af aba3 aba3 aba3 aba3 aba3 aba3 aba3
+1760 aba4 aba4 aba4 * 5046 * 8ea1d0c6,d0c6,8ea1d0c6v,d0c6v 54ab e592ab 54ab 000054ab aba4 aba4 aba4 aba4 aba4 aba4 aba4
+1761 aba5 aba5 aba5 * 5047 * 8ea1d0c7,d0c7,8ea1d0c7v,d0c7v 54b1 e592b1 54b1 000054b1 aba5 aba5 aba5 aba5 aba5 aba5 aba5
+1762 aba6 aba6 aba6 * 5048 * 8ea1d0c8,d0c8,8ea1d0c8v,d0c8v 54bb e592bb 54bb 000054bb aba6 aba6 aba6 aba6 aba6 aba6 aba6
+1763 aba7 aba7 aba7 * 5049 * 8ea1d0c9,d0c9,8ea1d0c9v,d0c9v 54a9 e592a9 54a9 000054a9 aba7 aba7 aba7 aba7 aba7 aba7 aba7
+1764 aba8 aba8 aba8 * 504a * 8ea1d0ca,d0ca,8ea1d0cav,d0cav 54a7 e592a7 54a7 000054a7 aba8 aba8 aba8 aba8 aba8 aba8 aba8
+1765 aba9 aba9 aba9 * 504b * 8ea1d0cb,d0cb,8ea1d0cbv,d0cbv 54bf e592bf 54bf 000054bf aba9 aba9 aba9 aba9 aba9 aba9 aba9
+1766 abaa abaa abaa * 504c * 8ea1d0cc,d0cc,8ea1d0ccv,d0ccv 56ff e59bbf 56ff 000056ff abaa abaa abaa abaa abaa abaa abaa
+1767 abab abab abab * 504d * 8ea1d0cd,d0cd,8ea1d0cdv,d0cdv 5782 e59e82 5782 00005782 abab abab abab abab abab abab abab
+1768 abac abac abac * 504e * 8ea1d0ce,d0ce,8ea1d0cev,d0cev 578b e59e8b 578b 0000578b abac abac abac abac abac abac abac
+1769 abad abad abad * 504f * 8ea1d0cf,d0cf,8ea1d0cfv,d0cfv 57a0 e59ea0 57a0 000057a0 abad abad abad abad abad abad abad
+1770 abae abae abae * 5050 * 8ea1d0d0,d0d0,8ea1d0d0v,d0d0v 57a3 e59ea3 57a3 000057a3 abae abae abae abae abae abae abae
+1771 abaf abaf abaf * 5051 * 8ea1d0d1,d0d1,8ea1d0d1v,d0d1v 57a2 e59ea2 57a2 000057a2 abaf abaf abaf abaf abaf abaf abaf
+1772 abb0 abb0 abb0 * 5052 * 8ea1d0d2,d0d2,8ea1d0d2v,d0d2v 57ce e59f8e 57ce 000057ce abb0 abb0 abb0 abb0 abb0 abb0 abb0
+1773 abb1 abb1 abb1 * 5053 * 8ea1d0d3,d0d3,8ea1d0d3v,d0d3v 57ae e59eae 57ae 000057ae abb1 abb1 abb1 abb1 abb1 abb1 abb1
+1774 abb2 abb2 abb2 * 5054 * 8ea1d0d4,d0d4,8ea1d0d4v,d0d4v 5793 e59e93 5793 00005793 abb2 abb2 abb2 abb2 abb2 abb2 abb2
+1775 abb3 abb3 abb3 * 5055 * 8ea1d0d5,d0d5,8ea1d0d5v,d0d5v 5955 e5a595 5955 00005955 abb3 abb3 abb3 abb3 abb3 abb3 abb3
+1776 abb4 abb4 abb4 * 5056 * 8ea1d0d6,d0d6,8ea1d0d6v,d0d6v 5951 e5a591 5951 00005951 abb4 abb4 abb4 abb4 abb4 abb4 abb4
+1777 abb5 abb5 abb5 * 5057 * 8ea1d0d7,d0d7,8ea1d0d7v,d0d7v 594f e5a58f 594f 0000594f abb5 abb5 abb5 abb5 abb5 abb5 abb5
+1778 abb6 abb6 abb6 * 5058 * 8ea1d0d8,d0d8,8ea1d0d8v,d0d8v 594e e5a58e 594e 0000594e abb6 abb6 abb6 abb6 abb6 abb6 abb6
+1779 abb7 abb7 abb7 * 5059 * 8ea1d0d9,d0d9,8ea1d0d9v,d0d9v 5950 e5a590 5950 00005950 abb7 abb7 abb7 abb7 abb7 abb7 abb7
+1780 abb8 abb8 abb8 * 505a * 8ea1d0da,d0da,8ea1d0dav,d0dav 59dc e5a79c 59dc 000059dc abb8 abb8 abb8 abb8 abb8 abb8 abb8
+1781 abb9 abb9 abb9 * 505b * 8ea1d0db,d0db,8ea1d0dbv,d0dbv 59d8 e5a798 59d8 000059d8 abb9 abb9,fbf7 91a6,abb9 abb9 abb9 abb9 abb9
+1782 abba abba abba * 505c * 8ea1d0dc,d0dc,8ea1d0dcv,d0dcv 59ff e5a7bf 59ff 000059ff abba abba abba abba abba abba abba
+1783 abbb abbb abbb * 505d * 8ea1d0dd,d0dd,8ea1d0ddv,d0ddv 59e3 e5a7a3 59e3 000059e3 abbb abbb abbb abbb abbb abbb abbb
+1784 abbc abbc abbc * 505e * 8ea1d0de,d0de,8ea1d0dev,d0dev 59e8 e5a7a8 59e8 000059e8 abbc abbc abbc abbc abbc abbc abbc
+1785 abbd abbd abbd * 505f * 8ea1d0df,d0df,8ea1d0dfv,d0dfv 5a03 e5a883 5a03 00005a03 abbd abbd abbd abbd abbd abbd abbd
+1786 abbe abbe abbe * 5060 * 8ea1d0e0,d0e0,8ea1d0e0v,d0e0v 59e5 e5a7a5 59e5 000059e5 abbe abbe abbe abbe abbe abbe abbe
+1787 abbf abbf abbf * 5061 * 8ea1d0e1,d0e1,8ea1d0e1v,d0e1v 59ea e5a7aa 59ea 000059ea abbf abbf abbf abbf abbf abbf abbf
+1788 abc0 abc0 abc0 * 5062 * 8ea1d0e2,d0e2,8ea1d0e2v,d0e2v 59da e5a79a 59da 000059da abc0 abc0 abc0 abc0 abc0 abc0 abc0
+1789 abc1 abc1 abc1 * 5063 * 8ea1d0e3,d0e3,8ea1d0e3v,d0e3v 59e6 e5a7a6 59e6 000059e6 abc1 abc1 abc1 abc1 abc1 abc1 abc1
+1790 abc2 abc2 abc2 * 5064 * 8ea1d0e4,d0e4,8ea1d0e4v,d0e4v 5a01 e5a881 5a01 00005a01 abc2 abc2 abc2 abc2 abc2 abc2 abc2
+1791 abc3 abc3 abc3 * 5065 * 8ea1d0e5,d0e5,8ea1d0e5v,d0e5v 59fb e5a7bb 59fb 000059fb abc3 abc3 abc3 abc3 abc3 abc3 abc3
+1792 abc4 abc4 abc4 * 5066 * 8ea1d0e6,d0e6,8ea1d0e6v,d0e6v 5b69 e5ada9 5b69 00005b69 abc4 abc4 abc4 abc4 abc4 abc4 abc4
+1793 abc5 abc5 abc5 * 5067 * 8ea1d0e7,d0e7,8ea1d0e7v,d0e7v 5ba3 e5aea3 5ba3 00005ba3 abc5 abc5 abc5 abc5 abc5 abc5 abc5
+1794 abc6 abc6 abc6 * 5068 * 8ea1d0e8,d0e8,8ea1d0e8v,d0e8v 5ba6 e5aea6 5ba6 00005ba6 abc6 abc6 abc6 abc6 abc6 abc6 abc6
+1795 abc7 abc7 abc7 * 5069 * 8ea1d0e9,d0e9,8ea1d0e9v,d0e9v 5ba4 e5aea4 5ba4 00005ba4 abc7 abc7 abc7 abc7 abc7 abc7 abc7
+1796 abc8 abc8 abc8 * 506a * 8ea1d0ea,d0ea,8ea1d0eav,d0eav 5ba2 e5aea2 5ba2 00005ba2 abc8 abc8 abc8 abc8 abc8 abc8 abc8
+1797 abc9 abc9 abc9 * 506b * 8ea1d0eb,d0eb,8ea1d0ebv,d0ebv 5ba5 e5aea5 5ba5 00005ba5 abc9 abc9 abc9 abc9 abc9 abc9 abc9
+1798 abca abca abca * 506c * 8ea1d0ec,d0ec,8ea1d0ecv,d0ecv 5c01 e5b081 5c01 00005c01 abca abca abca abca abca abca abca
+1799 abcb abcb abcb * 506d * 8ea1d0ed,d0ed,8ea1d0edv,d0edv 5c4e e5b18e 5c4e 00005c4e abcb abcb abcb abcb abcb abcb abcb
+1800 abcc abcc abcc * 506e * 8ea1d0ee,d0ee,8ea1d0eev,d0eev 5c4f e5b18f 5c4f 00005c4f abcc abcc abcc abcc abcc abcc abcc
+1801 abcd abcd abcd * 506f * 8ea1d0ef,d0ef,8ea1d0efv,d0efv 5c4d e5b18d 5c4d 00005c4d abcd abcd abcd abcd abcd abcd abcd
+1802 abce abce abce * 5070 * 8ea1d0f0,d0f0,8ea1d0f0v,d0f0v 5c4b e5b18b 5c4b 00005c4b abce abce abce abce abce abce abce
+1803 abcf abcf abcf * 5071 * 8ea1d0f1,d0f1,8ea1d0f1v,d0f1v 5cd9 e5b399 5cd9 00005cd9 abcf abcf abcf abcf abcf abcf abcf
+1804 abd0 abd0 abd0 * 5072 * 8ea1d0f2,d0f2,8ea1d0f2v,d0f2v 5cd2 e5b392 5cd2 00005cd2 abd0 abd0 abd0 abd0 abd0 abd0 abd0
+1805 abd1 abd1 abd1 * 5073 * 8ea1d0f3,d0f3,8ea1d0f3v,d0f3v 5df7 e5b7b7 5df7 00005df7 abd1 abd1 abd1 abd1 abd1 abd1 abd1
+1806 abd2 abd2 abd2 * 5074 * 8ea1d0f4,d0f4,8ea1d0f4v,d0f4v 5e1d e5b89d 5e1d 00005e1d abd2 abd2 abd2 abd2 abd2 abd2 abd2
+1807 abd3 abd3 abd3 * 5075 * 8ea1d0f5,d0f5,8ea1d0f5v,d0f5v 5e25 e5b8a5 5e25 00005e25 abd3 abd3 abd3 abd3 abd3 abd3 abd3
+1808 abd4 abd4 abd4 * 5076 * 8ea1d0f6,d0f6,8ea1d0f6v,d0f6v 5e1f e5b89f 5e1f 00005e1f abd4 abd4 abd4 abd4 abd4 abd4 abd4
+1809 abd5 abd5 abd5 * 5077 * 8ea1d0f7,d0f7,8ea1d0f7v,d0f7v 5e7d e5b9bd 5e7d 00005e7d abd5 abd5 abd5 abd5 abd5 abd5 abd5
+1810 abd6 abd6 abd6 * 5078 * 8ea1d0f8,d0f8,8ea1d0f8v,d0f8v 5ea0 e5baa0 5ea0 00005ea0 abd6 abd6 abd6 abd6 abd6 abd6 abd6
+1811 abd7 abd7 abd7 * 5079 * 8ea1d0f9,d0f9,8ea1d0f9v,d0f9v 5ea6 e5baa6 5ea6 00005ea6 abd7 abd7 abd7 abd7 abd7 abd7 abd7
+1812 abd8 abd8 abd8 * 507a * 8ea1d0fa,d0fa,8ea1d0fav,d0fav 5efa e5bbba 5efa 00005efa abd8 abd8 abd8 abd8 abd8 abd8 abd8
+1813 abd9 abd9 abd9 * 507b * 8ea1d0fb,d0fb,8ea1d0fbv,d0fbv 5f08 e5bc88 5f08 00005f08 abd9 abd9 abd9 abd9 abd9 abd9 abd9
+1814 abda abda abda * 507c * 8ea1d0fc,d0fc,8ea1d0fcv,d0fcv 5f2d e5bcad 5f2d 00005f2d abda abda abda abda abda abda abda
+1815 abdb abdb abdb * 507d * 8ea1d0fd,d0fd,8ea1d0fdv,d0fdv 5f65 e5bda5 5f65 00005f65 abdb abdb abdb abdb abdb abdb abdb
+1816 abdc abdc abdc * 507e * 8ea1d0fe,d0fe,8ea1d0fev,d0fev 5f88 e5be88 5f88 00005f88 abdc abdc abdc abdc abdc abdc abdc
+1817 abdd abdd abdd * 5121 * 8ea1d1a1,d1a1,8ea1d1a1v,d1a1v 5f85 e5be85 5f85 00005f85 abdd abdd abdd abdd abdd abdd abdd
+1818 abde abde abde * 5122 * 8ea1d1a2,d1a2,8ea1d1a2v,d1a2v 5f8a e5be8a 5f8a 00005f8a abde abde abde abde abde abde abde
+1819 abdf abdf abdf * 5123 * 8ea1d1a3,d1a3,8ea1d1a3v,d1a3v 5f8b e5be8b 5f8b 00005f8b abdf abdf abdf abdf abdf abdf abdf
+1820 abe0 abe0 abe0 * 5124 * 8ea1d1a4,d1a4,8ea1d1a4v,d1a4v 5f87 e5be87 5f87 00005f87 abe0 abe0 abe0 abe0 abe0 abe0 abe0
+1821 abe1 abe1 abe1 * 5125 * 8ea1d1a5,d1a5,8ea1d1a5v,d1a5v 5f8c e5be8c 5f8c 00005f8c abe1 abe1 abe1 abe1 abe1 abe1 abe1
+1822 abe2 abe2 abe2 * 5126 * 8ea1d1a6,d1a6,8ea1d1a6v,d1a6v 5f89 e5be89 5f89 00005f89 abe2 abe2 abe2 abe2 abe2 abe2 abe2
+1823 abe3 abe3 abe3 * 5127 * 8ea1d1a7,d1a7,8ea1d1a7v,d1a7v 6012 e68092 6012 00006012 abe3 abe3 abe3 abe3 abe3 abe3 abe3
+1824 abe4 abe4 abe4 * 5128 * 8ea1d1a8,d1a8,8ea1d1a8v,d1a8v 601d e6809d 601d 0000601d abe4 abe4 abe4 abe4 abe4 abe4 abe4
+1825 abe5 abe5 abe5 * 5129 * 8ea1d1a9,d1a9,8ea1d1a9v,d1a9v 6020 e680a0 6020 00006020 abe5 abe5 abe5 abe5 abe5 abe5 abe5
+1826 abe6 abe6 abe6 * 512a * 8ea1d1aa,d1aa,8ea1d1aav,d1aav 6025 e680a5 6025 00006025 abe6 abe6 abe6 abe6 abe6 abe6 abe6
+1827 abe7 abe7 abe7 * 512b * 8ea1d1ab,d1ab,8ea1d1abv,d1abv 600e e6808e 600e 0000600e abe7 abe7 abe7 abe7 abe7 abe7 abe7
+1828 abe8 abe8 abe8 * 512c * 8ea1d1ac,d1ac,8ea1d1acv,d1acv 6028 e680a8 6028 00006028 abe8 abe8 abe8 abe8 abe8 abe8 abe8
+1829 abe9 abe9 abe9 * 512d * 8ea1d1ad,d1ad,8ea1d1adv,d1adv 604d e6818d 604d 0000604d abe9 abe9 abe9 abe9 abe9 abe9 abe9
+1830 abea abea abea * 512e * 8ea1d1ae,d1ae,8ea1d1aev,d1aev 6070 e681b0 6070 00006070 abea abea abea abea abea abea abea
+1831 abeb abeb abeb * 512f * 8ea1d1af,d1af,8ea1d1afv,d1afv 6068 e681a8 6068 00006068 abeb abeb abeb abeb abeb abeb abeb
+1832 abec abec abec * 5130 * 8ea1d1b0,d1b0,8ea1d1b0v,d1b0v 6062 e681a2,eeb4a8 6062,ed28 00006062,0000ed28 9ea9,abec abec abec abec abec abec 9ea9,abec
+1833 abed abed abed * 5131 * 8ea1d1b1,d1b1,8ea1d1b1v,d1b1v 6046 e68186 6046 00006046 abed abed abed abed abed abed abed
+1834 abee abee abee * 5132 * 8ea1d1b2,d1b2,8ea1d1b2v,d1b2v 6043 e68183 6043 00006043 abee abee abee abee abee abee abee
+1835 abef abef abef * 5133 * 8ea1d1b3,d1b3,8ea1d1b3v,d1b3v 606c e681ac 606c 0000606c abef abef abef abef abef abef abef
+1836 abf0 abf0 abf0 * 5134 * 8ea1d1b4,d1b4,8ea1d1b4v,d1b4v 606b e681ab 606b 0000606b abf0 abf0 abf0 abf0 abf0 abf0 abf0
+1837 abf1 abf1 abf1 * 5135 * 8ea1d1b5,d1b5,8ea1d1b5v,d1b5v 606a e681aa 606a 0000606a abf1 abf1 abf1 abf1 abf1 abf1 abf1
+1838 abf2 abf2 abf2 * 5136 * 8ea1d1b6,d1b6,8ea1d1b6v,d1b6v 6064 e681a4 6064 00006064 abf2 abf2 abf2 abf2 abf2 abf2 abf2
+1839 abf3 abf3 abf3 * 5137 * 8ea1d1b7,d1b7,8ea1d1b7v,d1b7v 6241 e68981 6241 00006241 abf3 abf3 abf3 abf3 abf3 abf3 abf3
+1840 abf4 abf4 abf4 * 5138 * 8ea1d1b8,d1b8,8ea1d1b8v,d1b8v 62dc e68b9c 62dc 000062dc abf4 abf4 abf4 abf4 abf4 abf4 abf4
+1841 abf5 abf5 abf5 * 5139 * 8ea1d1b9,d1b9,8ea1d1b9v,d1b9v 6316 e68c96 6316 00006316 abf5 abf5 abf5 abf5 abf5 abf5 abf5
+1842 abf6 abf6 abf6 * 513a * 8ea1d1ba,d1ba,8ea1d1bav,d1bav 6309 e68c89 6309 00006309 abf6 abf6 abf6 abf6 abf6 abf6 abf6
+1843 abf7 abf7 abf7 * 513b * 8ea1d1bb,d1bb,8ea1d1bbv,d1bbv 62fc e68bbc 62fc 000062fc abf7 abf7 abf7 abf7 abf7 abf7 abf7
+1844 abf8 abf8 abf8 * 513c * 8ea1d1bc,d1bc,8ea1d1bcv,d1bcv 62ed e68bad 62ed 000062ed abf8 abf8 abf8 abf8 abf8 abf8 abf8
+1845 abf9 abf9 abf9 * 513d * 8ea1d1bd,d1bd,8ea1d1bdv,d1bdv 6301 e68c81 6301 00006301 abf9 abf9 abf9 abf9 abf9 abf9 abf9
+1846 abfa abfa abfa * 513e * 8ea1d1be,d1be,8ea1d1bev,d1bev 62ee e68bae 62ee 000062ee abfa abfa abfa abfa abfa abfa abfa
+1847 abfb abfb abfb * 513f * 8ea1d1bf,d1bf,8ea1d1bfv,d1bfv 62fd e68bbd 62fd 000062fd abfb abfb abfb abfb abfb abfb abfb
+1848 abfc abfc abfc * 5140 * 8ea1d1c0,d1c0,8ea1d1c0v,d1c0v 6307 e68c87 6307 00006307 abfc abfc abfc abfc abfc abfc abfc
+1849 abfd abfd abfd * 5141 * 8ea1d1c1,d1c1,8ea1d1c1v,d1c1v 62f1 e68bb1 62f1 000062f1 abfd abfd abfd abfd abfd abfd abfd
+1850 abfe abfe abfe * 5142 * 8ea1d1c2,d1c2,8ea1d1c2v,d1c2v 62f7 e68bb7 62f7 000062f7 abfe abfe abfe abfe abfe abfe abfe
+1851 ac40 ac40 ac40 * 5143 * 8ea1d1c3,d1c3,8ea1d1c3v,d1c3v 62ef e68baf 62ef 000062ef ac40 ac40 ac40 ac40 ac40 ac40 ac40
+1852 ac41 ac41 ac41 * 5144 * 8ea1d1c4,d1c4,8ea1d1c4v,d1c4v 62ec e68bac 62ec 000062ec ac41 ac41 ac41 ac41 ac41 ac41 ac41
+1853 ac42 ac42 ac42 * 5145 * 8ea1d1c5,d1c5,8ea1d1c5v,d1c5v 62fe e68bbe 62fe 000062fe ac42 ac42 ac42 ac42 ac42 ac42 ac42
+1854 ac43 ac43 ac43 * 5146 * 8ea1d1c6,d1c6,8ea1d1c6v,d1c6v 62f4 e68bb4 62f4 000062f4 ac43 ac43 ac43 ac43 ac43 ac43 ac43
+1855 ac44 ac44 ac44 * 5147 * 8ea1d1c7,d1c7,8ea1d1c7v,d1c7v 6311 e68c91 6311 00006311 ac44 ac44 ac44 ac44 ac44 ac44 ac44
+1856 ac45 ac45 ac45 * 5148 * 8ea1d1c8,d1c8,8ea1d1c8v,d1c8v 6302 e68c82 6302 00006302 ac45 ac45 ac45 ac45 ac45 ac45 ac45
+1857 ac46 ac46 ac46 * 5149 * 8ea1d1c9,d1c9,8ea1d1c9v,d1c9v 653f e694bf 653f 0000653f ac46 ac46 ac46 ac46 ac46 ac46 ac46
+1858 ac47 ac47 ac47 * 514a * 8ea1d1ca,d1ca,8ea1d1cav,d1cav 6545 e69585 6545 00006545 ac47 ac47 ac47 ac47 ac47 ac47 ac47
+1859 ac48 ac48 ac48 * 514b * 8ea1d1cb,d1cb,8ea1d1cbv,d1cbv 65ab e696ab 65ab 000065ab ac48 ac48 ac48 ac48 ac48 ac48 ac48
+1860 ac49 ac49 ac49 * 514c * 8ea1d1cc,d1cc,8ea1d1ccv,d1ccv 65bd e696bd 65bd 000065bd ac49 ac49 ac49 ac49 ac49 ac49 ac49
+1861 ac4a ac4a ac4a * 514d * 8ea1d1cd,d1cd,8ea1d1cdv,d1cdv 65e2 e697a2 65e2 000065e2 ac4a ac4a 91f6,ac4a ac4a ac4a ac4a ac4a
+1862 ac4b ac4b ac4b * 514e * 8ea1d1ce,d1ce,8ea1d1cev,d1cev 6625 e698a5 6625 00006625 ac4b ac4b ac4b ac4b ac4b ac4b ac4b
+1863 ac4c ac4c ac4c * 514f * 8ea1d1cf,d1cf,8ea1d1cfv,d1cfv 662d e698ad 662d 0000662d ac4c ac4c ac4c ac4c ac4c ac4c ac4c
+1864 ac4d ac4d ac4d * 5150 * 8ea1d1d0,d1d0,8ea1d1d0v,d1d0v 6620 e698a0 6620 00006620 ac4d ac4d ac4d ac4d ac4d ac4d ac4d
+1865 ac4e ac4e ac4e * 5151 * 8ea1d1d1,d1d1,8ea1d1d1v,d1d1v 6627 e698a7 6627 00006627 ac4e ac4e ac4e ac4e ac4e ac4e ac4e
+1866 ac4f ac4f ac4f * 5152 * 8ea1d1d2,d1d2,8ea1d1d2v,d1d2v 662f e698af 662f 0000662f ac4f ac4f ac4f ac4f ac4f ac4f ac4f
+1867 ac50 ac50 ac50 * 5153 * 8ea1d1d3,d1d3,8ea1d1d3v,d1d3v 661f e6989f 661f 0000661f ac50 ac50 ac50 ac50 ac50 ac50 ac50
+1868 ac51 ac51 ac51 * 5154 * 8ea1d1d4,d1d4,8ea1d1d4v,d1d4v 6628 e698a8 6628 00006628 ac51 ac51 ac51 ac51 ac51 ac51 ac51
+1869 ac52 ac52 ac52 * 5155 * 8ea1d1d5,d1d5,8ea1d1d5v,d1d5v 6631 e698b1 6631 00006631 ac52 ac52 ac52 ac52 ac52 ac52 ac52
+1870 ac53 ac53 ac53 * 5156 * 8ea1d1d6,d1d6,8ea1d1d6v,d1d6v 6624 e698a4 6624 00006624 ac53 ac53 ac53 ac53 ac53 ac53 ac53
+1871 ac54 ac54 ac54 * 5157 * 8ea1d1d7,d1d7,8ea1d1d7v,d1d7v 66f7 e69bb7 66f7 000066f7 ac54 ac54 ac54 ac54 ac54 ac54 ac54
+1872 ac55 ac55 ac55 * 5158 * 8ea1d1d8,d1d8,8ea1d1d8v,d1d8v 67ff e69fbf 67ff 000067ff ac55 ac55 ac55 ac55 ac55 ac55 ac55
+1873 ac56 ac56 ac56 * 5159 * 8ea1d1d9,d1d9,8ea1d1d9v,d1d9v 67d3 e69f93 67d3 000067d3 ac56 ac56 ac56 ac56 ac56 ac56 ac56
+1874 ac57 ac57 ac57 * 515a * 8ea1d1da,d1da,8ea1d1dav,d1dav 67f1 e69fb1 67f1 000067f1 ac57 ac57 ac57 ac57 ac57 ac57 ac57
+1875 ac58 ac58 ac58 * 515b * 8ea1d1db,d1db,8ea1d1dbv,d1dbv 67d4 e69f94 67d4 000067d4 ac58 ac58 ac58 ac58 ac58 ac58 ac58
+1876 ac59 ac59 ac59 * 515c * 8ea1d1dc,d1dc,8ea1d1dcv,d1dcv 67d0 e69f90 67d0 000067d0 ac59 ac59 ac59 ac59 ac59 ac59 ac59
+1877 ac5a ac5a ac5a * 515d * 8ea1d1dd,d1dd,8ea1d1ddv,d1ddv 67ec e69fac 67ec 000067ec ac5a ac5a ac5a ac5a ac5a ac5a ac5a
+1878 ac5b ac5b ac5b * 515e * 8ea1d1de,d1de,8ea1d1dev,d1dev 67b6 e69eb6 67b6 000067b6 ac5b ac5b ac5b ac5b ac5b ac5b ac5b
+1879 ac5c ac5c ac5c * 515f * 8ea1d1df,d1df,8ea1d1dfv,d1dfv 67af e69eaf 67af 000067af ac5c ac5c ac5c ac5c ac5c ac5c ac5c
+1880 ac5d ac5d ac5d * 5160 * 8ea1d1e0,d1e0,8ea1d1e0v,d1e0v 67f5 e69fb5 67f5 000067f5 ac5d ac5d ac5d ac5d ac5d ac5d ac5d
+1881 ac5e ac5e ac5e * 5161 * 8ea1d1e1,d1e1,8ea1d1e1v,d1e1v 67e9 e69fa9 67e9 000067e9 ac5e ac5e ac5e ac5e ac5e ac5e ac5e
+1882 ac5f ac5f ac5f * 5162 * 8ea1d1e2,d1e2,8ea1d1e2v,d1e2v 67ef e69faf 67ef 000067ef ac5f ac5f ac5f ac5f ac5f ac5f ac5f
+1883 ac60 ac60 ac60 * 5163 * 8ea1d1e3,d1e3,8ea1d1e3v,d1e3v 67c4 e69f84 67c4 000067c4 ac60 ac60 ac60 ac60 ac60 ac60 ac60
+1884 ac61 ac61 ac61 * 5164 * 8ea1d1e4,d1e4,8ea1d1e4v,d1e4v 67d1 e69f91 67d1 000067d1 ac61 ac61 ac61 ac61 ac61 ac61 ac61
+1885 ac62 ac62 ac62 * 5165 * 8ea1d1e5,d1e5,8ea1d1e5v,d1e5v 67b4 e69eb4 67b4 000067b4 ac62 ac62 ac62 ac62 ac62 ac62 ac62
+1886 ac63 ac63 ac63 * 5166 * 8ea1d1e6,d1e6,8ea1d1e6v,d1e6v 67da e69f9a 67da 000067da ac63 ac63 ac63 ac63 ac63 ac63 ac63
+1887 ac64 ac64 ac64 * 5167 * 8ea1d1e7,d1e7,8ea1d1e7v,d1e7v 67e5 e69fa5 67e5 000067e5 ac64 ac64 ac64 ac64 ac64 ac64 ac64
+1888 ac65 ac65 ac65 * 5168 * 8ea1d1e8,d1e8,8ea1d1e8v,d1e8v 67b8 e69eb8 67b8 000067b8 ac65 ac65 ac65 ac65 ac65 ac65 ac65
+1889 ac66 ac66 ac66 * 5169 * 8ea1d1e9,d1e9,8ea1d1e9v,d1e9v 67cf e69f8f 67cf 000067cf ac66 ac66 ac66 ac66 ac66 ac66 ac66
+1890 ac67 ac67 ac67 * 516a * 8ea1d1ea,d1ea,8ea1d1eav,d1eav 67de e69f9e 67de 000067de ac67 ac67 ac67 ac67 ac67 ac67 ac67
+1891 ac68 ac68 ac68 * 516b * 8ea1d1eb,d1eb,8ea1d1ebv,d1ebv 67f3 e69fb3 67f3 000067f3 ac68 ac68 ac68 ac68 ac68 ac68 ac68
+1892 ac69 ac69 ac69 * 516c * 8ea1d1ec,d1ec,8ea1d1ecv,d1ecv 67b0 e69eb0 67b0 000067b0 ac69 ac69 ac69 ac69 ac69 ac69 ac69
+1893 ac6a ac6a ac6a * 516d * 8ea1d1ed,d1ed,8ea1d1edv,d1edv 67d9 e69f99 67d9 000067d9 ac6a ac6a ac6a ac6a ac6a ac6a ac6a
+1894 ac6b ac6b ac6b * 516e * 8ea1d1ee,d1ee,8ea1d1eev,d1eev 67e2 e69fa2 67e2 000067e2 ac6b ac6b ac6b ac6b ac6b ac6b ac6b
+1895 ac6c ac6c ac6c * 516f * 8ea1d1ef,d1ef,8ea1d1efv,d1efv 67dd e69f9d 67dd 000067dd ac6c ac6c ac6c ac6c ac6c ac6c ac6c
+1896 ac6d ac6d ac6d * 5170 * 8ea1d1f0,d1f0,8ea1d1f0v,d1f0v 67d2 e69f92 67d2 000067d2 ac6d ac6d ac6d ac6d ac6d ac6d ac6d
+1897 ac6e ac6e ac6e * 5171 * 8ea1d1f1,d1f1,8ea1d1f1v,d1f1v 6b6a e6adaa 6b6a 00006b6a ac6e ac6e ac6e ac6e ac6e ac6e ac6e
+1898 ac6f ac6f ac6f * 5172 * 8ea1d1f2,d1f2,8ea1d1f2v,d1f2v 6b83 e6ae83 6b83 00006b83 ac6f ac6f ac6f ac6f ac6f ac6f ac6f
+1899 ac70 ac70 ac70 * 5173 * 8ea1d1f3,d1f3,8ea1d1f3v,d1f3v 6b86 e6ae86 6b86 00006b86 ac70 ac70 ac70 ac70 ac70 ac70 ac70
+1900 ac71 ac71 ac71 * 5174 * 8ea1d1f4,d1f4,8ea1d1f4v,d1f4v 6bb5 e6aeb5 6bb5 00006bb5 ac71 ac71 ac71 ac71 ac71 ac71 ac71
+1901 ac72 ac72 ac72 * 5175 * 8ea1d1f5,d1f5,8ea1d1f5v,d1f5v 6bd2 e6af92 6bd2 00006bd2 ac72 ac72 ac72 ac72 ac72 ac72 ac72
+1902 ac73 ac73 ac73 * 5176 * 8ea1d1f6,d1f6,8ea1d1f6v,d1f6v 6bd7 e6af97 6bd7 00006bd7 ac73 ac73 ac73 ac73 ac73 ac73 ac73
+1903 ac74 ac74 ac74 * 5177 * 8ea1d1f7,d1f7,8ea1d1f7v,d1f7v 6c1f e6b09f 6c1f 00006c1f ac74 ac74 ac74 ac74 ac74 ac74 ac74
+1904 ac75 ac75 ac75 * 5178 * 8ea1d1f8,d1f8,8ea1d1f8v,d1f8v 6cc9 e6b389 6cc9 00006cc9 ac75 ac75 ac75 ac75 ac75 ac75 ac75
+1905 ac76 ac76 ac76 * 5179 * 8ea1d1f9,d1f9,8ea1d1f9v,d1f9v 6d0b e6b48b 6d0b 00006d0b ac76 ac76 ac76 ac76 ac76 ac76 ac76
+1906 ac77 ac77 ac77 * 517a * 8ea1d1fa,d1fa,8ea1d1fav,d1fav 6d32 e6b4b2 6d32 00006d32 ac77 ac77 ac77 ac77 ac77 ac77 ac77
+1907 ac78 ac78 ac78 * 517b * 8ea1d1fb,d1fb,8ea1d1fbv,d1fbv 6d2a e6b4aa 6d2a 00006d2a ac78 ac78 ac78 ac78 ac78 ac78 ac78
+1908 ac79 ac79 ac79 * 517c * 8ea1d1fc,d1fc,8ea1d1fcv,d1fcv 6d41 e6b581 6d41 00006d41 ac79 ac79 ac79 ac79 ac79 ac79 ac79
+1909 ac7a ac7a ac7a * 517d * 8ea1d1fd,d1fd,8ea1d1fdv,d1fdv 6d25 e6b4a5 6d25 00006d25 ac7a ac7a ac7a ac7a ac7a ac7a ac7a
+1910 ac7b ac7b ac7b * 517e * 8ea1d1fe,d1fe,8ea1d1fev,d1fev 6d0c e6b48c 6d0c 00006d0c ac7b ac7b ac7b ac7b ac7b ac7b ac7b
+1911 ac7c ac7c ac7c * 5221 * 8ea1d2a1,d2a1,8ea1d2a1v,d2a1v 6d31 e6b4b1 6d31 00006d31 ac7c ac7c ac7c ac7c ac7c ac7c ac7c
+1912 ac7d ac7d ac7d * 5222 * 8ea1d2a2,d2a2,8ea1d2a2v,d2a2v 6d1e e6b49e 6d1e 00006d1e ac7d ac7d ac7d ac7d ac7d ac7d ac7d
+1913 ac7e ac7e ac7e * 5223 * 8ea1d2a3,d2a3,8ea1d2a3v,d2a3v 6d17 e6b497 6d17 00006d17 ac7e ac7e ac7e ac7e ac7e ac7e ac7e
+1914 aca1 aca1 aca1 * 5224 * 8ea1d2a4,d2a4,8ea1d2a4v,d2a4v 6d3b e6b4bb 6d3b 00006d3b aca1 aca1 aca1 aca1 aca1 aca1 aca1
+1915 aca2 aca2 aca2 * 5225 * 8ea1d2a5,d2a5,8ea1d2a5v,d2a5v 6d3d e6b4bd 6d3d 00006d3d aca2 aca2 aca2 aca2 aca2 aca2 aca2
+1916 aca3 aca3 aca3 * 5226 * 8ea1d2a6,d2a6,8ea1d2a6v,d2a6v 6d3e e6b4be 6d3e 00006d3e aca3 aca3 aca3 aca3 aca3 aca3 aca3
+1917 aca4 aca4 aca4 * 5227 * 8ea1d2a7,d2a7,8ea1d2a7v,d2a7v 6d36 e6b4b6 6d36 00006d36 aca4 aca4 aca4 aca4 aca4 aca4 aca4
+1918 aca5 aca5 aca5 * 5228 * 8ea1d2a8,d2a8,8ea1d2a8v,d2a8v 6d1b e6b49b 6d1b 00006d1b aca5 aca5 aca5 aca5 aca5 aca5 aca5
+1919 aca6 aca6 aca6 * 5229 * 8ea1d2a9,d2a9,8ea1d2a9v,d2a9v 6cf5 e6b3b5 6cf5 00006cf5 aca6 aca6 aca6 aca6 aca6 aca6 aca6
+1920 aca7 aca7 aca7 * 522a * 8ea1d2aa,d2aa,8ea1d2aav,d2aav 6d39 e6b4b9 6d39 00006d39 aca7 aca7 aca7 aca7 aca7 aca7 aca7
+1921 aca8 aca8 aca8 * 522b * 8ea1d2ab,d2ab,8ea1d2abv,d2abv 6d27 e6b4a7 6d27 00006d27 aca8 aca8 aca8 aca8 aca8 aca8 aca8
+1922 aca9 aca9 aca9 * 522c * 8ea1d2ac,d2ac,8ea1d2acv,d2acv 6d38 e6b4b8 6d38 00006d38 aca9 aca9 aca9 aca9 aca9 aca9 aca9
+1923 acaa acaa acaa * 522d * 8ea1d2ad,d2ad,8ea1d2adv,d2adv 6d29 e6b4a9 6d29 00006d29 acaa acaa acaa acaa acaa acaa acaa
+1924 acab acab acab * 522e * 8ea1d2ae,d2ae,8ea1d2aev,d2aev 6d2e e6b4ae 6d2e 00006d2e acab acab acab acab acab acab acab
+1925 acac acac acac * 522f * 8ea1d2af,d2af,8ea1d2afv,d2afv 6d35 e6b4b5 6d35 00006d35 acac acac acac acac acac acac acac
+1926 acad acad acad * 5230 * 8ea1d2b0,d2b0,8ea1d2b0v,d2b0v 6d0e e6b48e 6d0e 00006d0e acad acad acad acad acad acad acad
+1927 acae acae acae * 5231 * 8ea1d2b1,d2b1,8ea1d2b1v,d2b1v 6d2b e6b4ab 6d2b 00006d2b acae acae acae acae acae acae acae
+1928 acaf acaf acaf * 5232 * 8ea1d2b2,d2b2,8ea1d2b2v,d2b2v 70ab e782ab 70ab 000070ab acaf acaf acaf acaf acaf acaf acaf
+1929 acb0 acb0 acb0 * 5233 * 8ea1d2b3,d2b3,8ea1d2b3v,d2b3v 70ba e782ba 70ba 000070ba acb0 acb0 acb0 acb0 acb0 acb0 acb0
+1930 acb1 acb1 acb1 * 5234 * 8ea1d2b4,d2b4,8ea1d2b4v,d2b4v 70b3 e782b3 70b3 000070b3 acb1 acb1 acb1 acb1 acb1 acb1 acb1
+1931 acb2 acb2 acb2 * 5235 * 8ea1d2b5,d2b5,8ea1d2b5v,d2b5v 70ac e782ac 70ac 000070ac acb2 acb2 acb2 acb2 acb2 acb2 acb2
+1932 acb3 acb3 acb3 * 5236 * 8ea1d2b6,d2b6,8ea1d2b6v,d2b6v 70af e782af 70af 000070af acb3 acb3 acb3 acb3 acb3 acb3 acb3
+1933 acb4 acb4 acb4 * 5237 * 8ea1d2b7,d2b7,8ea1d2b7v,d2b7v 70ad e782ad 70ad 000070ad acb4 acb4 acb4 acb4 acb4 acb4 acb4
+1934 acb5 acb5 acb5 * 5238 * 8ea1d2b8,d2b8,8ea1d2b8v,d2b8v 70b8 e782b8 70b8 000070b8 acb5 acb5 acb5 acb5 acb5 acb5 acb5
+1935 acb6 acb6 acb6 * 5239 * 8ea1d2b9,d2b9,8ea1d2b9v,d2b9v 70ae e782ae 70ae 000070ae acb6 acb6 acb6 acb6 acb6 acb6 acb6
+1936 acb7 acb7 acb7 * 523a * 8ea1d2ba,d2ba,8ea1d2bav,d2bav 70a4 e782a4 70a4 000070a4 acb7 acb7 acb7 acb7 acb7 acb7 acb7
+1937 acb8 acb8 acb8 * 523b * 8ea1d2bb,d2bb,8ea1d2bbv,d2bbv 7230 e788b0 7230 00007230 acb8 acb8 acb8 acb8 acb8 acb8 acb8
+1938 acb9 acb9 acb9 * 523c * 8ea1d2bc,d2bc,8ea1d2bcv,d2bcv 7272 e789b2 7272 00007272 acb9 acb9 acb9 acb9 acb9 acb9 acb9
+1939 acba acba acba * 523d * 8ea1d2bd,d2bd,8ea1d2bdv,d2bdv 726f e789af 726f 0000726f acba acba acba acba acba acba acba
+1940 acbb acbb acbb * 523e * 8ea1d2be,d2be,8ea1d2bev,d2bev 7274 e789b4 7274 00007274 acbb acbb acbb acbb acbb acbb acbb
+1941 acbc acbc acbc * 523f * 8ea1d2bf,d2bf,8ea1d2bfv,d2bfv 72e9 e78ba9 72e9 000072e9 acbc acbc acbc acbc acbc acbc acbc
+1942 acbd acbd acbd * 5240 * 8ea1d2c0,d2c0,8ea1d2c0v,d2c0v 72e0 e78ba0 72e0 000072e0 acbd acbd acbd acbd acbd acbd acbd
+1943 acbe acbe acbe * 5241 * 8ea1d2c1,d2c1,8ea1d2c1v,d2c1v 72e1 e78ba1 72e1 000072e1 acbe acbe acbe acbe acbe acbe acbe
+1944 acbf acbf acbf * 5242 * 8ea1d2c2,d2c2,8ea1d2c2v,d2c2v 73b7 e78eb7 73b7 000073b7 acbf acbf acbf acbf acbf acbf acbf
+1945 acc0 acc0 acc0 * 5243 * 8ea1d2c3,d2c3,8ea1d2c3v,d2c3v 73ca e78f8a 73ca 000073ca acc0 acc0 acc0 acc0 acc0 acc0 acc0
+1946 acc1 acc1 acc1 * 5244 * 8ea1d2c4,d2c4,8ea1d2c4v,d2c4v 73bb e78ebb 73bb 000073bb acc1 acc1 acc1 acc1 acc1 acc1 acc1
+1947 acc2 acc2 acc2 * 5245 * 8ea1d2c5,d2c5,8ea1d2c5v,d2c5v 73b2 e78eb2 73b2 000073b2 acc2 acc2 acc2 acc2 acc2 acc2 acc2
+1948 acc3 acc3 acc3 * 5246 * 8ea1d2c6,d2c6,8ea1d2c6v,d2c6v 73cd e78f8d 73cd 000073cd acc3 acc3 acc3 acc3 acc3 acc3 acc3
+1949 acc4 acc4 acc4 * 5247 * 8ea1d2c7,d2c7,8ea1d2c7v,d2c7v 73c0 e78f80 73c0 000073c0 acc4 acc4 acc4 acc4 acc4 acc4 acc4
+1950 acc5 acc5 acc5 * 5248 * 8ea1d2c8,d2c8,8ea1d2c8v,d2c8v 73b3 e78eb3 73b3 000073b3 acc5 acc5 acc5 acc5 acc5 acc5 acc5
+1951 acc6 acc6 acc6 * 5249 * 8ea1d2c9,d2c9,8ea1d2c9v,d2c9v 751a e7949a 751a 0000751a acc6 acc6 acc6 acc6 acc6 acc6 acc6
+1952 acc7 acc7 acc7 * 524a * 8ea1d2ca,d2ca,8ea1d2cav,d2cav 752d e794ad 752d 0000752d acc7 acc7 acc7 acc7 acc7 acc7 acc7
+1953 acc8 acc8 acc8 * 524b * 8ea1d2cb,d2cb,8ea1d2cbv,d2cbv 754f e7958f 754f 0000754f acc8 acc8 acc8 acc8 acc8 acc8 acc8
+1954 acc9 acc9 acc9 * 524c * 8ea1d2cc,d2cc,8ea1d2ccv,d2ccv 754c e7958c 754c 0000754c acc9 acc9 acc9 acc9 acc9 acc9 acc9
+1955 acca acca acca * 524d * 8ea1d2cd,d2cd,8ea1d2cdv,d2cdv 754e e7958e 754e 0000754e acca acca acca acca acca acca acca
+1956 accb accb accb * 524e * 8ea1d2ce,d2ce,8ea1d2cev,d2cev 754b e7958b 754b 0000754b accb accb accb accb accb accb accb
+1957 accc accc accc * 524f * 8ea1d2cf,d2cf,8ea1d2cfv,d2cfv 75ab e796ab 75ab 000075ab accc accc accc accc accc accc accc
+1958 accd accd accd * 5250 * 8ea1d2d0,d2d0,8ea1d2d0v,d2d0v 75a4 e796a4 75a4 000075a4 accd accd accd accd accd accd accd
+1959 acce acce acce * 5251 * 8ea1d2d1,d2d1,8ea1d2d1v,d2d1v 75a5 e796a5 75a5 000075a5 acce acce acce acce acce acce acce
+1960 accf accf accf * 5252 * 8ea1d2d2,d2d2,8ea1d2d2v,d2d2v 75a2 e796a2 75a2 000075a2 accf accf accf accf accf accf accf
+1961 acd0 acd0 acd0 * 5253 * 8ea1d2d3,d2d3,8ea1d2d3v,d2d3v 75a3 e796a3 75a3 000075a3 acd0 acd0 acd0 acd0 acd0 acd0 acd0
+1962 acd1 acd1 acd1 * 5254 * 8ea1d2d4,d2d4,8ea1d2d4v,d2d4v 7678 e799b8 7678 00007678 acd1 acd1 acd1 acd1 acd1 acd1 acd1
+1963 acd2 acd2 acd2 * 5255 * 8ea1d2d5,d2d5,8ea1d2d5v,d2d5v 7686 e79a86 7686 00007686 acd2 acd2 acd2 acd2 acd2 acd2 acd2
+1964 acd3 acd3 acd3 * 5256 * 8ea1d2d6,d2d6,8ea1d2d6v,d2d6v 7687 e79a87 7687 00007687 acd3 acd3 acd3 acd3 acd3 acd3 acd3
+1965 acd4 acd4 acd4 * 5257 * 8ea1d2d7,d2d7,8ea1d2d7v,d2d7v 7688 e79a88 7688 00007688 acd4 acd4 acd4 acd4 acd4 acd4 acd4
+1966 acd5 acd5 acd5 * 5258 * 8ea1d2d8,d2d8,8ea1d2d8v,d2d8v 76c8 e79b88 76c8 000076c8 acd5 acd5 acd5 acd5 acd5 acd5 acd5
+1967 acd6 acd6 acd6 * 5259 * 8ea1d2d9,d2d9,8ea1d2d9v,d2d9v 76c6 e79b86 76c6 000076c6 acd6 acd6 acd6 acd6 acd6 acd6 acd6
+1968 acd7 acd7 acd7 * 525a * 8ea1d2da,d2da,8ea1d2dav,d2dav 76c3 e79b83 76c3 000076c3 acd7 acd7 acd7 acd7 acd7 acd7 acd7
+1969 acd8 acd8 acd8 * 525b * 8ea1d2db,d2db,8ea1d2dbv,d2dbv 76c5 e79b85 76c5 000076c5 acd8 acd8 acd8 acd8 acd8 acd8 acd8
+1970 acd9 acd9 acd9 * 525c * 8ea1d2dc,d2dc,8ea1d2dcv,d2dcv 7701 e79c81 7701 00007701 acd9 acd9 acd9 acd9 acd9 acd9 acd9
+1971 acda acda acda * 525d * 8ea1d2dd,d2dd,8ea1d2ddv,d2ddv 76f9 e79bb9 76f9 000076f9 acda acda acda acda acda acda acda
+1972 acdb acdb acdb * 525e * 8ea1d2de,d2de,8ea1d2dev,d2dev 76f8 e79bb8 76f8 000076f8 acdb acdb acdb acdb acdb acdb acdb
+1973 acdc acdc acdc * 525f * 8ea1d2df,d2df,8ea1d2dfv,d2dfv 7709 e79c89 7709 00007709 acdc acdc acdc acdc acdc acdc acdc
+1974 acdd acdd acdd * 5260 * 8ea1d2e0,d2e0,8ea1d2e0v,d2e0v 770b e79c8b 770b 0000770b acdd acdd acdd acdd acdd acdd acdd
+1975 acde acde acde * 5261 * 8ea1d2e1,d2e1,8ea1d2e1v,d2e1v 76fe e79bbe 76fe 000076fe acde acde acde acde acde acde acde
+1976 acdf acdf acdf * 5262 * 8ea1d2e2,d2e2,8ea1d2e2v,d2e2v 76fc e79bbc 76fc 000076fc acdf acdf acdf acdf acdf acdf acdf
+1977 ace0 ace0 ace0 * 5263 * 8ea1d2e3,d2e3,8ea1d2e3v,d2e3v 7707 e79c87 7707 00007707 ace0 ace0 ace0 ace0 ace0 ace0 ace0
+1978 ace1 ace1 ace1 * 5264 * 8ea1d2e4,d2e4,8ea1d2e4v,d2e4v 77dc e79f9c 77dc 000077dc ace1 ace1 ace1 ace1 ace1 ace1 ace1
+1979 ace2 ace2 ace2 * 5265 * 8ea1d2e5,d2e5,8ea1d2e5v,d2e5v 7802 e7a082 7802 00007802 ace2 ace2 ace2 ace2 ace2 ace2 ace2
+1980 ace3 ace3 ace3 * 5266 * 8ea1d2e6,d2e6,8ea1d2e6v,d2e6v 7814 e7a094 7814 00007814 ace3 ace3 ace3 ace3 ace3 ace3 ace3
+1981 ace4 ace4 ace4 * 5267 * 8ea1d2e7,d2e7,8ea1d2e7v,d2e7v 780c e7a08c 780c 0000780c ace4 ace4 ace4 ace4 ace4 ace4 ace4
+1982 ace5 ace5 ace5 * 5268 * 8ea1d2e8,d2e8,8ea1d2e8v,d2e8v 780d e7a08d 780d 0000780d ace5 ace5 ace5 ace5 ace5 ace5 ace5
+1983 ace6 ace6 ace6 * 5269 * 8ea1d2e9,d2e9,8ea1d2e9v,d2e9v 7946 e7a586 7946 00007946 ace6 ace6 ace6 ace6 ace6 ace6 ace6
+1984 ace7 ace7 ace7 * 526a * 8ea1d2ea,d2ea,8ea1d2eav,d2eav 7949 e7a589 7949 00007949 ace7 ace7 ace7 ace7 ace7 ace7 ace7
+1985 ace8 ace8 ace8 * 526b * 8ea1d2eb,d2eb,8ea1d2ebv,d2ebv 7948 e7a588 7948 00007948 ace8 ace8 ace8 ace8 ace8 ace8 ace8
+1986 ace9 ace9 ace9 * 526c * 8ea1d2ec,d2ec,8ea1d2ecv,d2ecv 7947 e7a587 7947 00007947 ace9 ace9,fb53,fd5e 9160,ace9 ace9 ace9 ace9 ace9
+1987 acea acea acea * 526d * 8ea1d2ed,d2ed,8ea1d2edv,d2edv 79b9 e7a6b9 79b9 000079b9 acea acea acea acea acea acea acea
+1988 aceb aceb aceb * 526e * 8ea1d2ee,d2ee,8ea1d2eev,d2eev 79ba e7a6ba 79ba 000079ba aceb aceb aceb aceb aceb aceb aceb
+1989 acec acec acec * 526f * 8ea1d2ef,d2ef,8ea1d2efv,d2efv 79d1 e7a791 79d1 000079d1 acec acec acec acec acec acec acec
+1990 aced aced aced * 5270 * 8ea1d2f0,d2f0,8ea1d2f0v,d2f0v 79d2 e7a792 79d2 000079d2 aced aced aced aced aced aced aced
+1991 acee acee acee * 5271 * 8ea1d2f1,d2f1,8ea1d2f1v,d2f1v 79cb e7a78b 79cb 000079cb acee acee acee acee acee acee acee
+1992 acef acef acef * 5272 * 8ea1d2f2,d2f2,8ea1d2f2v,d2f2v 7a7f e7a9bf 7a7f 00007a7f acef acef acef acef acef acef acef
+1993 acf0 acf0 acf0 * 5273 * 8ea1d2f3,d2f3,8ea1d2f3v,d2f3v 7a81 e7aa81 7a81 00007a81 acf0 acf0 acf0 acf0 acf0 acf0 acf0
+1994 acf1 acf1 acf1 * 5274 * 8ea1d2f4,d2f4,8ea1d2f4v,d2f4v 7aff e7abbf 7aff 00007aff acf1 acf1 acf1 acf1 acf1 acf1 acf1
+1995 acf2 acf2 acf2 * 5275 * 8ea1d2f5,d2f5,8ea1d2f5v,d2f5v 7afd e7abbd 7afd 00007afd acf2 acf2 acf2 acf2 acf2 acf2 acf2
+1996 acf3 acf3 acf3 * 5276 * 8ea1d2f6,d2f6,8ea1d2f6v,d2f6v 7c7d e7b1bd 7c7d 00007c7d acf3 acf3 acf3 acf3 acf3 acf3 acf3
+1997 acf4 acf4 acf4 * 5277 * 8ea1d2f7,d2f7,8ea1d2f7v,d2f7v 7d02 e7b482 7d02 00007d02 acf4 acf4 acf4 acf4 acf4 acf4 acf4
+1998 acf5 acf5 acf5 * 5278 * 8ea1d2f8,d2f8,8ea1d2f8v,d2f8v 7d05 e7b485 7d05 00007d05 acf5 acf5 acf5 acf5 acf5 acf5 acf5
+1999 acf6 acf6 acf6 * 5279 * 8ea1d2f9,d2f9,8ea1d2f9v,d2f9v 7d00 e7b480 7d00 00007d00 acf6 acf6 acf6 acf6 acf6 acf6 acf6
+2000 acf7 acf7 acf7 * 527a * 8ea1d2fa,d2fa,8ea1d2fav,d2fav 7d09 e7b489 7d09 00007d09 acf7 acf7 acf7 acf7 acf7 acf7 acf7
+2001 acf8 acf8 acf8 * 527b * 8ea1d2fb,d2fb,8ea1d2fbv,d2fbv 7d07 e7b487 7d07 00007d07 acf8 acf8 acf8 acf8 acf8 acf8 acf8
+2002 acf9 acf9 acf9 * 527c * 8ea1d2fc,d2fc,8ea1d2fcv,d2fcv 7d04 e7b484 7d04 00007d04 acf9 acf9 acf9 acf9 acf9 acf9 acf9
+2003 acfa acfa acfa * 527d * 8ea1d2fd,d2fd,8ea1d2fdv,d2fdv 7d06 e7b486 7d06 00007d06 acfa acfa acfa acfa acfa acfa acfa
+2004 acfb acfb acfb * 527e * 8ea1d2fe,d2fe,8ea1d2fev,d2fev 7f38 e7bcb8 7f38 00007f38 acfb acfb acfb acfb acfb acfb acfb
+2005 acfc acfc acfc * 5321 * 8ea1d3a1,d3a1,8ea1d3a1v,d3a1v 7f8e e7be8e 7f8e 00007f8e acfc acfc acfc acfc acfc acfc acfc
+2006 acfd acfd acfd * 5322 * 8ea1d3a2,d3a2,8ea1d3a2v,d3a2v 7fbf e7bebf 7fbf 00007fbf acfd acfd acfd acfd acfd acfd acfd
+2007 ad40 ad40 ad40 * 5323 * 8ea1d3a3,d3a3,8ea1d3a3v,d3a3v 8010 e88090 8010 00008010 ad40 ad40 ad40 ad40 ad40 ad40 ad40
+2008 ad41 ad41 ad41 * 5324 * 8ea1d3a4,d3a4,8ea1d3a4v,d3a4v 800d e8808d 800d 0000800d ad41 ad41 ad41 ad41 ad41 ad41 ad41
+2009 ad42 ad42 ad42 * 5325 * 8ea1d3a5,d3a5,8ea1d3a5v,d3a5v 8011 e88091 8011 00008011 ad42 ad42 ad42 ad42 ad42 ad42 ad42
+2010 ad43 ad43 ad43 * 5326 * 8ea1d3a6,d3a6,8ea1d3a6v,d3a6v 8036 e880b6 8036 00008036 ad43 ad43 ad43 ad43 ad43 ad43 ad43
+2011 ad44 ad44 ad44 * 5327 * 8ea1d3a7,d3a7,8ea1d3a7v,d3a7v 80d6 e88396 80d6 000080d6 ad44 ad44 ad44 ad44 ad44 ad44 ad44
+2012 ad45 ad45 ad45 * 5328 * 8ea1d3a8,d3a8,8ea1d3a8v,d3a8v 80e5 e883a5 80e5 000080e5 ad45 ad45 ad45 ad45 ad45 ad45 ad45
+2013 ad46 ad46 ad46 * 5329 * 8ea1d3a9,d3a9,8ea1d3a9v,d3a9v 80da e8839a 80da 000080da ad46 ad46 ad46 ad46 ad46 ad46 ad46
+2014 ad47 ad47 ad47 * 532a * 8ea1d3aa,d3aa,8ea1d3aav,d3aav 80c3 e88383 80c3 000080c3 ad47 ad47 ad47 ad47 ad47 ad47 ad47
+2015 ad48 ad48 ad48 * 532b * 8ea1d3ab,d3ab,8ea1d3abv,d3abv 80c4 e88384 80c4 000080c4 ad48 ad48 ad48 ad48 ad48 ad48 ad48
+2016 ad49 ad49 ad49 * 532c * 8ea1d3ac,d3ac,8ea1d3acv,d3acv 80cc e8838c 80cc 000080cc ad49 ad49 ad49 ad49 ad49 ad49 ad49
+2017 ad4a ad4a ad4a * 532d * 8ea1d3ad,d3ad,8ea1d3adv,d3adv 80e1 e883a1 80e1 000080e1 ad4a ad4a ad4a ad4a ad4a ad4a ad4a
+2018 ad4b ad4b ad4b * 532e * 8ea1d3ae,d3ae,8ea1d3aev,d3aev 80db e8839b 80db 000080db ad4b ad4b ad4b ad4b ad4b ad4b ad4b
+2019 ad4c ad4c ad4c * 532f * 8ea1d3af,d3af,8ea1d3afv,d3afv 80ce e8838e 80ce 000080ce ad4c ad4c ad4c ad4c ad4c ad4c ad4c
+2020 ad4d ad4d ad4d * 5330 * 8ea1d3b0,d3b0,8ea1d3b0v,d3b0v 80de e8839e 80de 000080de ad4d ad4d ad4d ad4d ad4d ad4d ad4d
+2021 ad4e ad4e ad4e * 5331 * 8ea1d3b1,d3b1,8ea1d3b1v,d3b1v 80e4 e883a4 80e4 000080e4 ad4e ad4e ad4e ad4e ad4e ad4e ad4e
+2022 ad4f ad4f ad4f * 5332 * 8ea1d3b2,d3b2,8ea1d3b2v,d3b2v 80dd e8839d 80dd 000080dd ad4f ad4f ad4f ad4f ad4f ad4f ad4f
+2023 ad50 ad50 ad50 * 5333 * 8ea1d3b3,d3b3,8ea1d3b3v,d3b3v 81f4 e887b4 81f4 000081f4 ad50 ad50 ad50 ad50 ad50 ad50 ad50
+2024 ad51 ad51 ad51 * 5334 * 8ea1d3b4,d3b4,8ea1d3b4v,d3b4v 8222 e888a2 8222 00008222 ad51 ad51 ad51 ad51 ad51 ad51 ad51
+2025 ad52 ad52 ad52 * 5335 * 8ea1d3b5,d3b5,8ea1d3b5v,d3b5v 82e7 e88ba7 82e7 000082e7 ad52 ad52 ad52 ad52 ad52 ad52 ad52
+2026 ad53 ad53 ad53 * 5336 * 8ea1d3b6,d3b6,8ea1d3b6v,d3b6v 8303 e88c83 8303 00008303 ad53 ad53 ad53 ad53 ad53 ad53 ad53
+2027 ad54 ad54 ad54 * 5337 * 8ea1d3b7,d3b7,8ea1d3b7v,d3b7v 8305 e88c85 8305 00008305 ad54 ad54 ad54 ad54 ad54 ad54 ad54
+2028 ad55 ad55 ad55 * 5338 * 8ea1d3b8,d3b8,8ea1d3b8v,d3b8v 82e3 e88ba3 82e3 000082e3 ad55 ad55 ad55 ad55 ad55 ad55 ad55
+2029 ad56 ad56 ad56 * 5339 * 8ea1d3b9,d3b9,8ea1d3b9v,d3b9v 82db e88b9b 82db 000082db ad56 ad56 ad56 ad56 ad56 ad56 ad56
+2030 ad57 ad57 ad57 * 533a * 8ea1d3ba,d3ba,8ea1d3bav,d3bav 82e6 e88ba6 82e6 000082e6 ad57 ad57 ad57 ad57 ad57 ad57 ad57
+2031 ad58 ad58 ad58 * 533b * 8ea1d3bb,d3bb,8ea1d3bbv,d3bbv 8304 e88c84 8304 00008304 ad58 ad58 ad58 ad58 ad58 ad58 ad58
+2032 ad59 ad59 ad59 * 533c * 8ea1d3bc,d3bc,8ea1d3bcv,d3bcv 82e5 e88ba5 82e5 000082e5 ad59 ad59 ad59 ad59 ad59 ad59 ad59
+2033 ad5a ad5a ad5a * 533d * 8ea1d3bd,d3bd,8ea1d3bdv,d3bdv 8302 e88c82 8302 00008302 ad5a ad5a ad5a ad5a ad5a ad5a ad5a
+2034 ad5b ad5b ad5b * 533e * 8ea1d3be,d3be,8ea1d3bev,d3bev 8309 e88c89 8309 00008309 ad5b ad5b ad5b ad5b ad5b ad5b ad5b
+2035 ad5c ad5c ad5c * 533f * 8ea1d3bf,d3bf,8ea1d3bfv,d3bfv 82d2 e88b92 82d2 000082d2 ad5c ad5c ad5c ad5c ad5c ad5c ad5c
+2036 ad5d ad5d ad5d * 5340 * 8ea1d3c0,d3c0,8ea1d3c0v,d3c0v 82d7 e88b97 82d7 000082d7 ad5d ad5d ad5d ad5d ad5d ad5d ad5d
+2037 ad5e ad5e ad5e * 5341 * 8ea1d3c1,d3c1,8ea1d3c1v,d3c1v 82f1 e88bb1 82f1 000082f1 ad5e ad5e ad5e ad5e ad5e ad5e ad5e
+2038 ad5f ad5f ad5f * 5342 * 8ea1d3c2,d3c2,8ea1d3c2v,d3c2v 8301 e88c81 8301 00008301 ad5f ad5f ad5f ad5f ad5f ad5f ad5f
+2039 ad60 ad60 ad60 * 5343 * 8ea1d3c3,d3c3,8ea1d3c3v,d3c3v 82dc e88b9c 82dc 000082dc ad60 ad60 ad60 ad60 ad60 ad60 ad60
+2040 ad61 ad61 ad61 * 5344 * 8ea1d3c4,d3c4,8ea1d3c4v,d3c4v 82d4 e88b94 82d4 000082d4 ad61 ad61 ad61 ad61 ad61 ad61 ad61
+2041 ad62 ad62 ad62 * 5345 * 8ea1d3c5,d3c5,8ea1d3c5v,d3c5v 82d1 e88b91 82d1 000082d1 ad62 ad62 ad62 ad62 ad62 ad62 ad62
+2042 ad63 ad63 ad63 * 5346 * 8ea1d3c6,d3c6,8ea1d3c6v,d3c6v 82de e88b9e 82de 000082de ad63 ad63 ad63 ad63 ad63 ad63 ad63
+2043 ad64 ad64 ad64 * 5347 * 8ea1d3c7,d3c7,8ea1d3c7v,d3c7v 82d3 e88b93 82d3 000082d3 ad64 ad64 ad64 ad64 ad64 ad64 ad64
+2044 ad65 ad65 ad65 * 5348 * 8ea1d3c8,d3c8,8ea1d3c8v,d3c8v 82df e88b9f 82df 000082df ad65 ad65 ad65 ad65 ad65 ad65 ad65
+2045 ad66 ad66 ad66 * 5349 * 8ea1d3c9,d3c9,8ea1d3c9v,d3c9v 82ef e88baf 82ef 000082ef ad66 ad66 ad66 ad66 ad66 ad66 ad66
+2046 ad67 ad67 ad67 * 534a * 8ea1d3ca,d3ca,8ea1d3cav,d3cav 8306 e88c86 8306 00008306 ad67 ad67 ad67 ad67 ad67 ad67 ad67
+2047 ad68 ad68 ad68 * 534b * 8ea1d3cb,d3cb,8ea1d3cbv,d3cbv 8650 e89990 8650 00008650 ad68 ad68 ad68 ad68 ad68 ad68 ad68
+2048 ad69 ad69 ad69 * 534c * 8ea1d3cc,d3cc,8ea1d3ccv,d3ccv 8679 e899b9 8679 00008679 ad69 ad69 ad69 ad69 ad69 ad69 ad69
+2049 ad6a ad6a ad6a * 534d * 8ea1d3cd,d3cd,8ea1d3cdv,d3cdv 867b e899bb 867b 0000867b ad6a ad6a ad6a ad6a ad6a ad6a ad6a
+2050 ad6b ad6b ad6b * 534e * 8ea1d3ce,d3ce,8ea1d3cev,d3cev 867a e899ba 867a 0000867a ad6b ad6b ad6b ad6b ad6b ad6b ad6b
+2051 ad6c ad6c ad6c * 534f * 8ea1d3cf,d3cf,8ea1d3cfv,d3cfv 884d e8a18d 884d 0000884d ad6c ad6c ad6c ad6c ad6c ad6c ad6c
+2052 ad6d ad6d ad6d * 5350 * 8ea1d3d0,d3d0,8ea1d3d0v,d3d0v 886b e8a1ab 886b 0000886b ad6d ad6d ad6d ad6d ad6d ad6d ad6d
+2053 ad6e ad6e ad6e * 5351 * 8ea1d3d1,d3d1,8ea1d3d1v,d3d1v 8981 e8a681 8981 00008981 ad6e ad6e ad6e ad6e ad6e ad6e ad6e
+2054 ad6f ad6f ad6f * 5352 * 8ea1d3d2,d3d2,8ea1d3d2v,d3d2v 89d4 e8a794 89d4 000089d4 ad6f ad6f ad6f ad6f ad6f ad6f ad6f
+2055 ad70 ad70 ad70 * 5353 * 8ea1d3d3,d3d3,8ea1d3d3v,d3d3v 8a08 e8a888 8a08 00008a08 ad70 ad70 ad70 ad70 ad70 ad70 ad70
+2056 ad71 ad71 ad71 * 5354 * 8ea1d3d4,d3d4,8ea1d3d4v,d3d4v 8a02 e8a882 8a02 00008a02 ad71 ad71 ad71 ad71 ad71 ad71 ad71
+2057 ad72 ad72 ad72 * 5355 * 8ea1d3d5,d3d5,8ea1d3d5v,d3d5v 8a03 e8a883 8a03 00008a03 ad72 ad72 ad72 ad72 ad72 ad72 ad72
+2058 ad73 ad73 ad73 * 5356 * 8ea1d3d6,d3d6,8ea1d3d6v,d3d6v 8c9e e8b29e 8c9e 00008c9e ad73 ad73 ad73 ad73 ad73 ad73 ad73
+2059 ad74 ad74 ad74 * 5357 * 8ea1d3d7,d3d7,8ea1d3d7v,d3d7v 8ca0 e8b2a0 8ca0 00008ca0 ad74 ad74 ad74 ad74 ad74 ad74 ad74
+2060 ad75 ad75 ad75 * 5358 * 8ea1d3d8,d3d8,8ea1d3d8v,d3d8v 8d74 e8b5b4 8d74 00008d74 ad75 ad75 ad75 ad75 ad75 ad75 ad75
+2061 ad76 ad76 ad76 * 5359 * 8ea1d3d9,d3d9,8ea1d3d9v,d3d9v 8d73 e8b5b3 8d73 00008d73 ad76 ad76 ad76 ad76 ad76 ad76 ad76
+2062 ad77 ad77 ad77 * 535a * 8ea1d3da,d3da,8ea1d3dav,d3dav 8db4 e8b6b4 8db4 00008db4 ad77 ad77 ad77 ad77 ad77 ad77 ad77
+2063 ad78 ad78 ad78 * 535b * 8ea1d3db,d3db,8ea1d3dbv,d3dbv 8ecd e8bb8d 8ecd 00008ecd ad78 ad78 ad78 ad78 ad78 ad78 ad78
+2064 ad79 ad79 ad79 * 535c * 8ea1d3dc,d3dc,8ea1d3dcv,d3dcv 8ecc e8bb8c 8ecc 00008ecc ad79 ad79 ad79 ad79 ad79 ad79 ad79
+2065 ad7a ad7a ad7a * 535d * 8ea1d3dd,d3dd,8ea1d3ddv,d3ddv 8ff0 e8bfb0 8ff0 00008ff0 ad7a ad7a ad7a ad7a ad7a ad7a ad7a
+2066 ad7b ad7b ad7b * 535e * 8ea1d3de,d3de,8ea1d3dev,d3dev 8fe6 e8bfa6 8fe6 00008fe6 ad7b ad7b ad7b ad7b ad7b ad7b ad7b
+2067 ad7c ad7c ad7c * 535f * 8ea1d3df,d3df,8ea1d3dfv,d3dfv 8fe2 e8bfa2 8fe2 00008fe2 ad7c ad7c ad7c ad7c ad7c ad7c ad7c
+2068 ad7d ad7d ad7d * 5360 * 8ea1d3e0,d3e0,8ea1d3e0v,d3e0v 8fea e8bfaa 8fea 00008fea ad7d ad7d ad7d ad7d ad7d ad7d ad7d
+2069 ad7e ad7e ad7e * 5361 * 8ea1d3e1,d3e1,8ea1d3e1v,d3e1v 8fe5 e8bfa5 8fe5 00008fe5 ad7e ad7e ad7e ad7e ad7e ad7e ad7e
+2070 ada1 ada1 ada1 * 5362 * 8ea1d3e2,d3e2,8ea1d3e2v,d3e2v 8fed e8bfad 8fed 00008fed ada1 ada1 ada1 ada1 ada1 ada1 ada1
+2071 ada2 ada2 ada2 * 5363 * 8ea1d3e3,d3e3,8ea1d3e3v,d3e3v 8feb e8bfab 8feb 00008feb ada2 ada2 ada2 ada2 ada2 ada2 ada2
+2072 ada3 ada3 ada3 * 5364 * 8ea1d3e4,d3e4,8ea1d3e4v,d3e4v 8fe4 e8bfa4 8fe4 00008fe4 ada3 ada3 ada3 ada3 ada3 ada3 ada3
+2073 ada4 ada4 ada4 * 5365 * 8ea1d3e5,d3e5,8ea1d3e5v,d3e5v 8fe8 e8bfa8 8fe8 00008fe8 ada4 ada4 ada4 ada4 ada4 ada4 ada4
+2074 ada5 ada5 ada5 * 5366 * 8ea1d3e6,d3e6,8ea1d3e6v,d3e6v 90ca e9838a 90ca 000090ca ada5 ada5 ada5 ada5 ada5 ada5 ada5
+2075 ada6 ada6 ada6 * 5367 * 8ea1d3e7,d3e7,8ea1d3e7v,d3e7v 90ce e9838e 90ce 000090ce ada6 ada6 ada6 ada6 ada6 ada6 ada6
+2076 ada7 ada7 ada7 * 5368 * 8ea1d3e8,d3e8,8ea1d3e8v,d3e8v 90c1 e98381 90c1 000090c1 ada7 ada7 ada7 ada7 ada7 ada7 ada7
+2077 ada8 ada8 ada8 * 5369 * 8ea1d3e9,d3e9,8ea1d3e9v,d3e9v 90c3 e98383 90c3 000090c3 ada8 ada8 ada8 ada8 ada8 ada8 ada8
+2078 ada9 ada9 ada9 * 536a * 8ea1d3ea,d3ea,8ea1d3eav,d3eav 914b e9858b 914b 0000914b ada9 ada9 ada9 ada9 ada9 ada9 ada9
+2079 adaa adaa adaa * 536b * 8ea1d3eb,d3eb,8ea1d3ebv,d3ebv 914a e9858a 914a 0000914a adaa adaa adaa adaa adaa adaa adaa
+2080 adab adab adab * 536c * 8ea1d3ec,d3ec,8ea1d3ecv,d3ecv 91cd e9878d 91cd 000091cd adab adab adab adab adab adab adab
+2081 adac adac adac * 536d * 8ea1d3ed,d3ed,8ea1d3edv,d3edv 9582 e99682 9582 00009582 adac adac adac adac adac adac adac
+2082 adad adad adad * 536e * 8ea1d3ee,d3ee,8ea1d3eev,d3eev 9650 e99990 9650 00009650 adad adad adad adad adad adad adad
+2083 adae adae adae * 536f * 8ea1d3ef,d3ef,8ea1d3efv,d3efv 964b e9998b 964b 0000964b adae adae adae adae adae adae adae
+2084 adaf adaf adaf * 5370 * 8ea1d3f0,d3f0,8ea1d3f0v,d3f0v 964c e9998c 964c 0000964c adaf adaf adaf adaf adaf adaf adaf
+2085 adb0 adb0 adb0 * 5371 * 8ea1d3f1,d3f1,8ea1d3f1v,d3f1v 964d e9998d 964d 0000964d adb0 adb0 adb0 adb0 adb0 adb0 adb0
+2086 adb1 adb1 adb1 * 2871,5372 * 8ea1a8f1,8ea1d3f2,a8f1,d3f2,8ea1a8f1v,8ea1d3f2v,a8f1v,d3f2v 9762 e99da2,e2beaf 9762,2faf 00009762,00002faf adb1 adb1 adb1 adb1 adb1 adb1 adb1
+2087 adb2 adb2 adb2 * 2872,5373 * 8ea1a8f2,8ea1d3f3,a8f2,d3f3,8ea1a8f2v,8ea1d3f3v,a8f2v,d3f3v 9769 e99da9,e2beb0 9769,2fb0 00009769,00002fb0 adb2 adb2 adb2 adb2 adb2 adb2 adb2
+2088 adb3 adb3 adb3 * 2873,5374 * 8ea1a8f3,8ea1d3f4,a8f3,d3f4,8ea1a8f3v,8ea1d3f4v,a8f3v,d3f4v 97cb e99f8b,e2beb1 97cb,2fb1 000097cb,00002fb1 adb3 adb3 adb3 adb3 adb3 adb3 adb3
+2089 adb4 adb4 adb4 * 2874,5375 * 8ea1a8f4,8ea1d3f5,a8f4,d3f5,8ea1a8f4v,8ea1d3f5v,a8f4v,d3f5v 97ed e99fad,e2beb2 97ed,2fb2 000097ed,00002fb2 adb4 adb4 adb4 adb4 adb4 adb4 adb4
+2090 adb5 adb5 adb5 * 2875,5376 * 8ea1a8f5,8ea1d3f6,a8f5,d3f6,8ea1a8f5v,8ea1d3f6v,a8f5v,d3f6v 97f3 e99fb3,e2beb3 97f3,2fb3 000097f3,00002fb3 adb5 adb5 adb5 adb5 adb5 adb5 adb5
+2091 adb6 adb6 adb6 * 2876,5377 * 8ea1a8f6,8ea1d3f7,a8f6,d3f7,8ea1a8f6v,8ea1d3f7v,a8f6v,d3f7v 9801 e9a081,e2beb4 9801,2fb4 00009801,00002fb4 adb6 adb6 adb6 adb6 adb6 adb6 adb6
+2092 adb7 adb7 adb7 * 2877,5378 * 8ea1a8f7,8ea1d3f8,a8f7,d3f8,8ea1a8f7v,8ea1d3f8v,a8f7v,d3f8v 98a8 e9a2a8,e2beb5 98a8,2fb5 000098a8,00002fb5 adb7 adb7 adb7 adb7 adb7 adb7 adb7
+2093 adb8 adb8 adb8 * 2878,5379 * 8ea1a8f8,8ea1d3f9,a8f8,d3f9,8ea1a8f8v,8ea1d3f9v,a8f8v,d3f9v 98db e9a39b,e2beb6 98db,2fb6 000098db,00002fb6 adb8 adb8 adb8 adb8 adb8 adb8 adb8
+2094 adb9 adb9 adb9 * 2879,537a * 8ea1a8f9,8ea1d3fa,a8f9,d3fa,8ea1a8f9v,8ea1d3fav,a8f9v,d3fav 98df e9a39f,e2beb7 98df,2fb7 000098df,00002fb7 adb9 adb9 adb9 adb9 adb9 adb9 adb9
+2095 adba adba adba * 287a,537b * 8ea1a8fa,8ea1d3fb,a8fa,d3fb,8ea1a8fav,8ea1d3fbv,a8fav,d3fbv 9996 e9a696,e2beb8 9996,2fb8 00009996,00002fb8 adba adba adba adba adba adba adba
+2096 adbb adbb adbb * 287b,537c * 8ea1a8fb,8ea1d3fc,a8fb,d3fc,8ea1a8fbv,8ea1d3fcv,a8fbv,d3fcv 9999 e9a699,e2beb9 9999,2fb9 00009999,00002fb9 adbb adbb adbb adbb adbb adbb adbb
+2097 adbc adbc adbc * 537d * 8ea1d3fd,d3fd,8ea1d3fdv,d3fdv 4e58 e4b998 4e58 00004e58 adbc adbc adbc adbc adbc adbc adbc
+2098 adbd adbd adbd * 537e * 8ea1d3fe,d3fe,8ea1d3fev,d3fev 4eb3 e4bab3 4eb3 00004eb3 adbd adbd adbd adbd adbd adbd adbd
+2099 adbe adbe adbe * 5421 * 8ea1d4a1,d4a1,8ea1d4a1v,d4a1v 500c e5808c 500c 0000500c adbe adbe adbe adbe adbe adbe adbe
+2100 adbf adbf adbf * 5422 * 8ea1d4a2,d4a2,8ea1d4a2v,d4a2v 500d e5808d 500d 0000500d adbf adbf adbf adbf adbf adbf adbf
+2101 adc0 adc0 adc0 * 5423 * 8ea1d4a3,d4a3,8ea1d4a3v,d4a3v 5023 e580a3 5023 00005023 adc0 adc0 adc0 adc0 adc0 adc0 adc0
+2102 adc1 adc1 adc1 * 5424 * 8ea1d4a4,d4a4,8ea1d4a4v,d4a4v 4fef e4bfaf 4fef 00004fef adc1 adc1 adc1 adc1 adc1 adc1 adc1
+2103 adc2 adc2 adc2 * 5425 * 8ea1d4a5,d4a5,8ea1d4a5v,d4a5v 5026 e580a6 5026 00005026 adc2 adc2 adc2 adc2 adc2 adc2 adc2
+2104 adc3 adc3 adc3 * 5426 * 8ea1d4a6,d4a6,8ea1d4a6v,d4a6v 5025 e580a5 5025 00005025 adc3 adc3 adc3 adc3 adc3 adc3 adc3
+2105 adc4 adc4 adc4 * 5427 * 8ea1d4a7,d4a7,8ea1d4a7v,d4a7v 4ff8 e4bfb8 4ff8 00004ff8 adc4 adc4 adc4 adc4 adc4 adc4 adc4
+2106 adc5 adc5 adc5 * 5428 * 8ea1d4a8,d4a8,8ea1d4a8v,d4a8v 5029 e580a9,ee809f 5029,e01f 00005029,0000e01f fa5f,adc5 adc5 adc5 adc5 adc5 adc5 fa5f,adc5
+2107 adc6 adc6 adc6 * 5429 * 8ea1d4a9,d4a9,8ea1d4a9v,d4a9v 5016 e58096 5016 00005016 adc6 adc6 adc6 adc6 adc6 adc6 adc6
+2108 adc7 adc7 adc7 * 542a * 8ea1d4aa,d4aa,8ea1d4aav,d4aav 5006 e58086 5006 00005006 adc7 adc7 adc7 adc7 adc7 adc7 adc7
+2109 adc8 adc8 adc8 * 542b * 8ea1d4ab,d4ab,8ea1d4abv,d4abv 503c e580bc 503c 0000503c adc8 adc8 adc8 adc8 adc8 adc8 adc8
+2110 adc9 adc9 adc9 * 542c * 8ea1d4ac,d4ac,8ea1d4acv,d4acv 501f e5809f 501f 0000501f adc9 adc9 adc9 adc9 adc9 adc9 adc9
+2111 adca adca adca * 542d * 8ea1d4ad,d4ad,8ea1d4adv,d4adv 501a e5809a 501a 0000501a adca adca adca adca adca adca adca
+2112 adcb adcb adcb * 542e * 8ea1d4ae,d4ae,8ea1d4aev,d4aev 5012 e58092 5012 00005012 adcb adcb adcb adcb adcb adcb adcb
+2113 adcc adcc adcc * 542f * 8ea1d4af,d4af,8ea1d4afv,d4afv 5011 e58091 5011 00005011 adcc adcc adcc adcc adcc adcc adcc
+2114 adcd adcd adcd * 5430 * 8ea1d4b0,d4b0,8ea1d4b0v,d4b0v 4ffa e4bfba 4ffa 00004ffa adcd adcd adcd adcd adcd adcd adcd
+2115 adce adce adce * 5431 * 8ea1d4b1,d4b1,8ea1d4b1v,d4b1v 5000 e58080 5000 00005000 adce adce adce adce adce adce adce
+2116 adcf adcf adcf * 5432 * 8ea1d4b2,d4b2,8ea1d4b2v,d4b2v 5014 e58094 5014 00005014 adcf adcf adcf adcf adcf adcf adcf
+2117 add0 add0 add0 * 5433 * 8ea1d4b3,d4b3,8ea1d4b3v,d4b3v 5028 e580a8 5028 00005028 add0 add0 add0 add0 add0 add0 add0
+2118 add1 add1 add1 * 5434 * 8ea1d4b4,d4b4,8ea1d4b4v,d4b4v 4ff1 e4bfb1 4ff1 00004ff1 add1 add1 add1 add1 add1 add1 add1
+2119 add2 add2 add2 * 5435 * 8ea1d4b5,d4b5,8ea1d4b5v,d4b5v 5021 e580a1 5021 00005021 add2 add2 add2 add2 add2 add2 add2
+2120 add3 add3 add3 * 5436 * 8ea1d4b6,d4b6,8ea1d4b6v,d4b6v 500b e5808b 500b 0000500b add3 add3 add3 add3 add3 add3 add3
+2121 add4 add4 add4 * 5437 * 8ea1d4b7,d4b7,8ea1d4b7v,d4b7v 5019 e58099 5019 00005019 add4 add4 add4 add4 add4 add4 add4
+2122 add5 add5 add5 * 5438 * 8ea1d4b8,d4b8,8ea1d4b8v,d4b8v 5018 e58098 5018 00005018 add5 add5 add5 add5 add5 add5 add5
+2123 add6 add6 add6 * 5439 * 8ea1d4b9,d4b9,8ea1d4b9v,d4b9v 4ff3 e4bfb3 4ff3 00004ff3 add6 add6 add6 add6 add6 add6 add6
+2124 add7 add7 add7 * 543a * 8ea1d4ba,d4ba,8ea1d4bav,d4bav 4fee e4bfae 4fee 00004fee add7 add7 add7 add7 add7 add7 add7
+2125 add8 add8 add8 * 543b * 8ea1d4bb,d4bb,8ea1d4bbv,d4bbv 502d e580ad 502d 0000502d add8 add8 add8 add8 add8 add8 add8
+2126 add9 add9 add9 * 543c * 8ea1d4bc,d4bc,8ea1d4bcv,d4bcv 502a e580aa 502a 0000502a add9 add9 add9 add9 add9 add9 add9
+2127 adda adda adda * 543d * 8ea1d4bd,d4bd,8ea1d4bdv,d4bdv 4ffe e4bfbe 4ffe 00004ffe adda adda adda adda adda adda adda
+2128 addb addb addb * 543e * 8ea1d4be,d4be,8ea1d4bev,d4bev 502b e580ab 502b 0000502b addb addb addb addb addb addb addb
+2129 addc addc addc * 543f * 8ea1d4bf,d4bf,8ea1d4bfv,d4bfv 5009 e58089 5009 00005009 addc addc addc addc addc addc addc
+2130 addd addd addd * 5440 * 8ea1d4c0,d4c0,8ea1d4c0v,d4c0v 517c e585bc 517c 0000517c addd addd addd addd addd addd addd
+2131 adde adde adde * 5441 * 8ea1d4c1,d4c1,8ea1d4c1v,d4c1v 51a4 e586a4 51a4 000051a4 adde adde adde adde adde adde adde
+2132 addf addf addf * 5442 * 8ea1d4c2,d4c2,8ea1d4c2v,d4c2v 51a5 e586a5 51a5 000051a5 addf addf addf addf addf addf addf
+2133 ade0 ade0 ade0 * 5443 * 8ea1d4c3,d4c3,8ea1d4c3v,d4c3v 51a2 e586a2 51a2 000051a2 ade0 ade0 ade0 ade0 ade0 ade0 ade0
+2134 ade1 ade1 ade1 * 5444 * 8ea1d4c4,d4c4,8ea1d4c4v,d4c4v 51cd e5878d 51cd 000051cd ade1 ade1 ade1 ade1 ade1 ade1 ade1
+2135 ade2 ade2 ade2 * 5445 * 8ea1d4c5,d4c5,8ea1d4c5v,d4c5v 51cc e5878c 51cc 000051cc ade2 ade2 ade2 ade2 ade2 ade2 ade2
+2136 ade3 ade3 ade3 * 5446 * 8ea1d4c6,d4c6,8ea1d4c6v,d4c6v 51c6 e58786 51c6 000051c6 ade3 ade3 ade3 ade3 ade3 ade3 ade3
+2137 ade4 ade4 ade4 * 5447 * 8ea1d4c7,d4c7,8ea1d4c7v,d4c7v 51cb e5878b 51cb 000051cb ade4 ade4 ade4 ade4 ade4 ade4 ade4
+2138 ade5 ade5 ade5 * 5448 * 8ea1d4c8,d4c8,8ea1d4c8v,d4c8v 5256 e58996 5256 00005256 ade5 ade5 ade5 ade5 ade5 ade5 ade5
+2139 ade6 ade6 ade6 * 5449 * 8ea1d4c9,d4c9,8ea1d4c9v,d4c9v 525c e5899c 525c 0000525c ade6 ade6 ade6 ade6 ade6 ade6 ade6
+2140 ade7 ade7 ade7 * 544a * 8ea1d4ca,d4ca,8ea1d4cav,d4cav 5254 e58994 5254 00005254 ade7 ade7 ade7 ade7 ade7 ade7 ade7
+2141 ade8 ade8 ade8 * 544b * 8ea1d4cb,d4cb,8ea1d4cbv,d4cbv 525b e5899b 525b 0000525b ade8 ade8 ade8 ade8 ade8 ade8 ade8
+2142 ade9 ade9 ade9 * 544c * 8ea1d4cc,d4cc,8ea1d4ccv,d4ccv 525d e5899d 525d 0000525d ade9 ade9 ade9 ade9 ade9 ade9 ade9
+2143 adea adea adea * 544d * 8ea1d4cd,d4cd,8ea1d4cdv,d4cdv 532a e58caa 532a 0000532a adea adea adea adea adea adea adea
+2144 adeb adeb adeb * 544e * 8ea1d4ce,d4ce,8ea1d4cev,d4cev 537f e58dbf,ee81b3 537f,e073 0000537f,0000e073 fad5,adeb adeb adeb adeb adeb adeb fad5,adeb
+2145 adec adec adec * 544f * 8ea1d4cf,d4cf,8ea1d4cfv,d4cfv 539f e58e9f 539f 0000539f adec adec adec adec adec adec adec
+2146 aded aded aded * 5450 * 8ea1d4d0,d4d0,8ea1d4d0v,d4d0v 539d e58e9d 539d 0000539d aded aded aded aded aded aded aded
+2147 adee adee adee * 5451 * 8ea1d4d1,d4d1,8ea1d4d1v,d4d1v 53df e58f9f 53df 000053df adee adee adee adee adee adee adee
+2148 adef adef adef * 5452 * 8ea1d4d2,d4d2,8ea1d4d2v,d4d2v 54e8 e593a8 54e8 000054e8 adef adef adef adef adef adef adef
+2149 adf0 adf0 adf0 * 5453 * 8ea1d4d3,d4d3,8ea1d4d3v,d4d3v 5510 e59490 5510 00005510 adf0 adf0 adf0 adf0 adf0 adf0 adf0
+2150 adf1 adf1 adf1 * 5454 * 8ea1d4d4,d4d4,8ea1d4d4v,d4d4v 5501 e59481 5501 00005501 adf1 adf1 adf1 adf1 adf1 adf1 adf1
+2151 adf2 adf2 adf2 * 5455 * 8ea1d4d5,d4d5,8ea1d4d5v,d4d5v 5537 e594b7 5537 00005537 adf2 adf2 adf2 adf2 adf2 adf2 adf2
+2152 adf3 adf3 adf3 * 5456 * 8ea1d4d6,d4d6,8ea1d4d6v,d4d6v 54fc e593bc 54fc 000054fc adf3 adf3 adf3 adf3 adf3 adf3 adf3
+2153 adf4 adf4 adf4 * 5457 * 8ea1d4d7,d4d7,8ea1d4d7v,d4d7v 54e5 e593a5 54e5 000054e5 adf4 adf4 adf4 adf4 adf4 adf4 adf4
+2154 adf5 adf5 adf5 * 5458 * 8ea1d4d8,d4d8,8ea1d4d8v,d4d8v 54f2 e593b2 54f2 000054f2 adf5 adf5 adf5 adf5 adf5 adf5 adf5
+2155 adf6 adf6 adf6 * 5459 * 8ea1d4d9,d4d9,8ea1d4d9v,d4d9v 5506 e59486 5506 00005506 adf6 adf6 adf6 adf6 adf6 adf6 adf6
+2156 adf7 adf7 adf7 * 545a * 8ea1d4da,d4da,8ea1d4dav,d4dav 54fa e593ba 54fa 000054fa adf7 adf7 adf7 adf7 adf7 adf7 adf7
+2157 adf8 adf8 adf8 * 545b * 8ea1d4db,d4db,8ea1d4dbv,d4dbv 5514 e59494 5514 00005514 adf8 adf8 adf8 adf8 adf8 adf8 adf8
+2158 adf9 adf9 adf9 * 545c * 8ea1d4dc,d4dc,8ea1d4dcv,d4dcv 54e9 e593a9 54e9 000054e9 adf9 adf9 adf9 adf9 adf9 adf9 adf9
+2159 adfa adfa adfa * 545d * 8ea1d4dd,d4dd,8ea1d4ddv,d4ddv 54ed e593ad 54ed 000054ed adfa adfa adfa adfa adfa adfa adfa
+2160 adfb adfb adfb * 545e * 8ea1d4de,d4de,8ea1d4dev,d4dev 54e1 e593a1 54e1 000054e1 adfb adfb adfb adfb adfb adfb adfb
+2161 adfc adfc adfc * 545f * 8ea1d4df,d4df,8ea1d4dfv,d4dfv 5509 e59489 5509 00005509 adfc adfc,fbd3 9062,adfc adfc adfc adfc adfc
+2162 adfd adfd adfd * 5460 * 8ea1d4e0,d4e0,8ea1d4e0v,d4e0v 54ee e593ae 54ee 000054ee adfd adfd adfd adfd adfd adfd adfd
+2163 adfe adfe adfe * 5461 * 8ea1d4e1,d4e1,8ea1d4e1v,d4e1v 54ea e593aa 54ea 000054ea adfe adfe adfe adfe adfe adfe adfe
+2164 ae40 ae40 ae40 * 5462 * 8ea1d4e2,d4e2,8ea1d4e2v,d4e2v 54e6 e593a6 54e6 000054e6 ae40 ae40 ae40 ae40 ae40 ae40 ae40
+2165 ae41 ae41 ae41 * 5463 * 8ea1d4e3,d4e3,8ea1d4e3v,d4e3v 5527 e594a7 5527 00005527 ae41 ae41 ae41 ae41 ae41 ae41 ae41
+2166 ae42 ae42 ae42 * 5464 * 8ea1d4e4,d4e4,8ea1d4e4v,d4e4v 5507 e59487 5507 00005507 ae42 ae42 ae42 ae42 ae42 ae42 ae42
+2167 ae43 ae43 ae43 * 5465 * 8ea1d4e5,d4e5,8ea1d4e5v,d4e5v 54fd e593bd 54fd 000054fd ae43 ae43 ae43 ae43 ae43 ae43 ae43
+2168 ae44 ae44 ae44 * 5466 * 8ea1d4e6,d4e6,8ea1d4e6v,d4e6v 550f e5948f 550f 0000550f ae44 ae44 ae44 ae44 ae44 ae44 ae44
+2169 ae45 ae45 ae45 * 5467 * 8ea1d4e7,d4e7,8ea1d4e7v,d4e7v 5703 e59c83 5703 00005703 ae45 ae45 ae45 ae45 ae45 ae45 ae45
+2170 ae46 ae46 ae46 * 5468 * 8ea1d4e8,d4e8,8ea1d4e8v,d4e8v 5704 e59c84 5704 00005704 ae46 ae46 ae46 ae46 ae46 ae46 ae46
+2171 ae47 ae47 ae47 * 5469 * 8ea1d4e9,d4e9,8ea1d4e9v,d4e9v 57c2 e59f82 57c2 000057c2 ae47 ae47 ae47 ae47 ae47 ae47 ae47
+2172 ae48 ae48 ae48 * 546a * 8ea1d4ea,d4ea,8ea1d4eav,d4eav 57d4 e59f94 57d4 000057d4 ae48 ae48 ae48 ae48 ae48 ae48 ae48
+2173 ae49 ae49 ae49 * 546b * 8ea1d4eb,d4eb,8ea1d4ebv,d4ebv 57cb e59f8b 57cb 000057cb ae49 ae49 ae49 ae49 ae49 ae49 ae49
+2174 ae4a ae4a ae4a * 546c * 8ea1d4ec,d4ec,8ea1d4ecv,d4ecv 57c3 e59f83 57c3 000057c3 ae4a ae4a ae4a ae4a ae4a ae4a ae4a
+2175 ae4b ae4b ae4b * 546d * 8ea1d4ed,d4ed,8ea1d4edv,d4edv 5809 e5a089 5809 00005809 ae4b ae4b ae4b ae4b ae4b ae4b ae4b
+2176 ae4c ae4c ae4c * 546e * 8ea1d4ee,d4ee,8ea1d4eev,d4eev 590f e5a48f 590f 0000590f ae4c ae4c ae4c ae4c ae4c ae4c ae4c
+2177 ae4d ae4d ae4d * 546f * 8ea1d4ef,d4ef,8ea1d4efv,d4efv 5957 e5a597 5957 00005957 ae4d ae4d ae4d ae4d ae4d ae4d ae4d
+2178 ae4e ae4e ae4e * 5470 * 8ea1d4f0,d4f0,8ea1d4f0v,d4f0v 5958 e5a598 5958 00005958 ae4e ae4e ae4e ae4e ae4e ae4e ae4e
+2179 ae4f ae4f ae4f * 5471 * 8ea1d4f1,d4f1,8ea1d4f1v,d4f1v 595a e5a59a 595a 0000595a ae4f ae4f ae4f ae4f ae4f ae4f ae4f
+2180 ae50 ae50 ae50 * 5472 * 8ea1d4f2,d4f2,8ea1d4f2v,d4f2v 5a11 e5a891 5a11 00005a11 ae50 ae50 ae50 ae50 ae50 ae50 ae50
+2181 ae51 ae51 ae51 * 5473 * 8ea1d4f3,d4f3,8ea1d4f3v,d4f3v 5a18 e5a898 5a18 00005a18 ae51 ae51 ae51 ae51 ae51 ae51 ae51
+2182 ae52 ae52 ae52 * 5474 * 8ea1d4f4,d4f4,8ea1d4f4v,d4f4v 5a1c e5a89c 5a1c 00005a1c ae52 ae52 ae52 ae52 ae52 ae52 ae52
+2183 ae53 ae53 ae53 * 5475 * 8ea1d4f5,d4f5,8ea1d4f5v,d4f5v 5a1f e5a89f 5a1f 00005a1f ae53 ae53 ae53 ae53 ae53 ae53 ae53
+2184 ae54 ae54 ae54 * 5476 * 8ea1d4f6,d4f6,8ea1d4f6v,d4f6v 5a1b e5a89b 5a1b 00005a1b ae54 ae54 ae54 ae54 ae54 ae54 ae54
+2185 ae55 ae55 ae55 * 5477 * 8ea1d4f7,d4f7,8ea1d4f7v,d4f7v 5a13 e5a893 5a13 00005a13 ae55 ae55 ae55 ae55 ae55 ae55 ae55
+2186 ae56 ae56 ae56 * 5478 * 8ea1d4f8,d4f8,8ea1d4f8v,d4f8v 59ec e5a7ac 59ec 000059ec ae56 ae56 ae56 ae56 ae56 ae56 ae56
+2187 ae57 ae57 ae57 * 5479 * 8ea1d4f9,d4f9,8ea1d4f9v,d4f9v 5a20 e5a8a0 5a20 00005a20 ae57 ae57 ae57 ae57 ae57 ae57 ae57
+2188 ae58 ae58 ae58 * 547a * 8ea1d4fa,d4fa,8ea1d4fav,d4fav 5a23 e5a8a3 5a23 00005a23 ae58 ae58 ae58 ae58 ae58 ae58 ae58
+2189 ae59 ae59 ae59 * 547b * 8ea1d4fb,d4fb,8ea1d4fbv,d4fbv 5a29 e5a8a9 5a29 00005a29 ae59 ae59 ae59 ae59 ae59 ae59 ae59
+2190 ae5a ae5a ae5a * 547c * 8ea1d4fc,d4fc,8ea1d4fcv,d4fcv 5a25 e5a8a5 5a25 00005a25 ae5a ae5a ae5a ae5a ae5a ae5a ae5a
+2191 ae5b ae5b ae5b * 547d * 8ea1d4fd,d4fd,8ea1d4fdv,d4fdv 5a0c e5a88c 5a0c 00005a0c ae5b ae5b ae5b ae5b ae5b ae5b ae5b
+2192 ae5c ae5c ae5c * 547e * 8ea1d4fe,d4fe,8ea1d4fev,d4fev 5a09 e5a889 5a09 00005a09 ae5c ae5c ae5c ae5c ae5c ae5c ae5c
+2193 ae5d ae5d ae5d * 5521 * 8ea1d5a1,d5a1,8ea1d5a1v,d5a1v 5b6b e5adab 5b6b 00005b6b ae5d ae5d ae5d ae5d ae5d ae5d ae5d
+2194 ae5e ae5e ae5e * 5522 * 8ea1d5a2,d5a2,8ea1d5a2v,d5a2v 5c58 e5b198 5c58 00005c58 ae5e ae5e ae5e ae5e ae5e ae5e ae5e
+2195 ae5f ae5f ae5f * 5523 * 8ea1d5a3,d5a3,8ea1d5a3v,d5a3v 5bb0 e5aeb0 5bb0 00005bb0 ae5f ae5f ae5f ae5f ae5f ae5f ae5f
+2196 ae60 ae60 ae60 * 5524 * 8ea1d5a4,d5a4,8ea1d5a4v,d5a4v 5bb3 e5aeb3 5bb3 00005bb3 ae60 ae60 ae60 ae60 ae60 ae60 ae60
+2197 ae61 ae61 ae61 * 5525 * 8ea1d5a5,d5a5,8ea1d5a5v,d5a5v 5bb6 e5aeb6 5bb6 00005bb6 ae61 ae61 ae61 ae61 ae61 ae61 ae61
+2198 ae62 ae62 ae62 * 5526 * 8ea1d5a6,d5a6,8ea1d5a6v,d5a6v 5bb4 e5aeb4 5bb4 00005bb4 ae62 ae62 ae62 ae62 ae62 ae62 ae62
+2199 ae63 ae63 ae63 * 5527 * 8ea1d5a7,d5a7,8ea1d5a7v,d5a7v 5bae e5aeae 5bae 00005bae ae63 ae63 ae63 ae63 ae63 ae63 ae63
+2200 ae64 ae64 ae64 * 5528 * 8ea1d5a8,d5a8,8ea1d5a8v,d5a8v 5bb5 e5aeb5 5bb5 00005bb5 ae64 ae64 ae64 ae64 ae64 ae64 ae64
+2201 ae65 ae65 ae65 * 5529 * 8ea1d5a9,d5a9,8ea1d5a9v,d5a9v 5bb9 e5aeb9 5bb9 00005bb9 ae65 ae65 ae65 ae65 ae65 ae65 ae65
+2202 ae66 ae66 ae66 * 552a * 8ea1d5aa,d5aa,8ea1d5aav,d5aav 5bb8 e5aeb8 5bb8 00005bb8 ae66 ae66 ae66 ae66 ae66 ae66 ae66
+2203 ae67 ae67 ae67 * 552b * 8ea1d5ab,d5ab,8ea1d5abv,d5abv 5c04 e5b084 5c04 00005c04 ae67 ae67 ae67 ae67 ae67 ae67 ae67
+2204 ae68 ae68 ae68 * 552c * 8ea1d5ac,d5ac,8ea1d5acv,d5acv 5c51 e5b191 5c51 00005c51 ae68 ae68 ae68 ae68 ae68 ae68 ae68
+2205 ae69 ae69 ae69 * 552d * 8ea1d5ad,d5ad,8ea1d5adv,d5adv 5c55 e5b195 5c55 00005c55 ae69 ae69 ae69 ae69 ae69 ae69 ae69
+2206 ae6a ae6a ae6a * 552e * 8ea1d5ae,d5ae,8ea1d5aev,d5aev 5c50 e5b190 5c50 00005c50 ae6a ae6a ae6a ae6a ae6a ae6a ae6a
+2207 ae6b ae6b ae6b * 552f * 8ea1d5af,d5af,8ea1d5afv,d5afv 5ced e5b3ad 5ced 00005ced ae6b ae6b ae6b ae6b ae6b ae6b ae6b
+2208 ae6c ae6c ae6c * 5530 * 8ea1d5b0,d5b0,8ea1d5b0v,d5b0v 5cfd e5b3bd 5cfd 00005cfd ae6c ae6c ae6c ae6c ae6c ae6c ae6c
+2209 ae6d ae6d ae6d * 5531 * 8ea1d5b1,d5b1,8ea1d5b1v,d5b1v 5cfb e5b3bb 5cfb 00005cfb ae6d ae6d ae6d ae6d ae6d ae6d ae6d
+2210 ae6e ae6e ae6e * 5532 * 8ea1d5b2,d5b2,8ea1d5b2v,d5b2v 5cea e5b3aa 5cea 00005cea ae6e ae6e ae6e ae6e ae6e ae6e ae6e
+2211 ae6f ae6f ae6f * 5533 * 8ea1d5b3,d5b3,8ea1d5b3v,d5b3v 5ce8 e5b3a8 5ce8 00005ce8 ae6f ae6f ae6f ae6f ae6f ae6f ae6f
+2212 ae70 ae70 ae70 * 5534 * 8ea1d5b4,d5b4,8ea1d5b4v,d5b4v 5cf0 e5b3b0 5cf0 00005cf0 ae70 ae70 ae70 ae70 ae70 ae70 ae70
+2213 ae71 ae71 ae71 * 5535 * 8ea1d5b5,d5b5,8ea1d5b5v,d5b5v 5cf6 e5b3b6 5cf6 00005cf6 ae71 ae71 ae71 ae71 ae71 ae71 ae71
+2214 ae72 ae72 ae72 * 5536 * 8ea1d5b6,d5b6,8ea1d5b6v,d5b6v 5d01 e5b481 5d01 00005d01 ae72 ae72 ae72 ae72 ae72 ae72 ae72
+2215 ae73 ae73 ae73 * 5537 * 8ea1d5b7,d5b7,8ea1d5b7v,d5b7v 5cf4 e5b3b4 5cf4 00005cf4 ae73 ae73 ae73 ae73 ae73 ae73 ae73
+2216 ae74 ae74 ae74 * 5538 * 8ea1d5b8,d5b8,8ea1d5b8v,d5b8v 5dee e5b7ae 5dee 00005dee ae74 ae74 ae74 ae74 ae74 ae74 ae74
+2217 ae75 ae75 ae75 * 5539 * 8ea1d5b9,d5b9,8ea1d5b9v,d5b9v 5e2d e5b8ad 5e2d 00005e2d ae75 ae75 ae75 ae75 ae75 ae75 ae75
+2218 ae76 ae76 ae76 * 553a * 8ea1d5ba,d5ba,8ea1d5bav,d5bav 5e2b e5b8ab 5e2b 00005e2b ae76 ae76 ae76 ae76 ae76 ae76 ae76
+2219 ae77 ae77 ae77 * 553b * 8ea1d5bb,d5bb,8ea1d5bbv,d5bbv 5eab e5baab 5eab 00005eab ae77 ae77 ae77 ae77 ae77 ae77 ae77
+2220 ae78 ae78 ae78 * 553c * 8ea1d5bc,d5bc,8ea1d5bcv,d5bcv 5ead e5baad 5ead 00005ead ae78 ae78 ae78 ae78 ae78 ae78 ae78
+2221 ae79 ae79 ae79 * 553d * 8ea1d5bd,d5bd,8ea1d5bdv,d5bdv 5ea7 e5baa7 5ea7 00005ea7 ae79 ae79 ae79 ae79 ae79 ae79 ae79
+2222 ae7a ae7a ae7a * 553e * 8ea1d5be,d5be,8ea1d5bev,d5bev 5f31 e5bcb1 5f31 00005f31 ae7a ae7a ae7a ae7a ae7a ae7a ae7a
+2223 ae7b ae7b ae7b * 553f * 8ea1d5bf,d5bf,8ea1d5bfv,d5bfv 5f92 e5be92 5f92 00005f92 ae7b ae7b ae7b ae7b ae7b ae7b ae7b
+2224 ae7c ae7c ae7c * 5540 * 8ea1d5c0,d5c0,8ea1d5c0v,d5c0v 5f91 e5be91 5f91 00005f91 ae7c ae7c ae7c ae7c ae7c ae7c ae7c
+2225 ae7d ae7d ae7d * 5541 * 8ea1d5c1,d5c1,8ea1d5c1v,d5c1v 5f90 e5be90 5f90 00005f90 ae7d ae7d ae7d ae7d ae7d ae7d ae7d
+2226 ae7e ae7e ae7e * 5542 * 8ea1d5c2,d5c2,8ea1d5c2v,d5c2v 6059 e68199 6059 00006059 ae7e ae7e ae7e ae7e ae7e ae7e ae7e
+2227 aea1 aea1 aea1 * 5543 * 8ea1d5c3,d5c3,8ea1d5c3v,d5c3v 6063 e681a3 6063 00006063 aea1 aea1 aea1 aea1 aea1 aea1 aea1
+2228 aea2 aea2 aea2 * 5544 * 8ea1d5c4,d5c4,8ea1d5c4v,d5c4v 6065 e681a5 6065 00006065 aea2 aea2 aea2 aea2 aea2 aea2 aea2
+2229 aea3 aea3 aea3 * 5545 * 8ea1d5c5,d5c5,8ea1d5c5v,d5c5v 6050 e68190 6050 00006050 aea3 aea3 aea3 aea3 aea3 aea3 aea3
+2230 aea4 aea4 aea4 * 5546 * 8ea1d5c6,d5c6,8ea1d5c6v,d5c6v 6055 e68195 6055 00006055 aea4 aea4 aea4 aea4 aea4 aea4 aea4
+2231 aea5 aea5 aea5 * 5547 * 8ea1d5c7,d5c7,8ea1d5c7v,d5c7v 606d e681ad 606d 0000606d aea5 aea5 aea5 aea5 aea5 aea5 aea5
+2232 aea6 aea6 aea6 * 5548 * 8ea1d5c8,d5c8,8ea1d5c8v,d5c8v 6069 e681a9 6069 00006069 aea6 aea6 aea6 aea6 aea6 aea6 aea6
+2233 aea7 aea7 aea7 * 5549 * 8ea1d5c9,d5c9,8ea1d5c9v,d5c9v 606f e681af 606f 0000606f aea7 aea7 aea7 aea7 aea7 aea7 aea7
+2234 aea8 aea8 aea8 * 554a * 8ea1d5ca,d5ca,8ea1d5cav,d5cav 6084 e68284 6084 00006084 aea8 aea8 aea8 aea8 aea8 aea8 aea8
+2235 aea9 aea9 aea9 * 554b * 8ea1d5cb,d5cb,8ea1d5cbv,d5cbv 609f e6829f 609f 0000609f aea9 aea9 aea9 aea9 aea9 aea9 aea9
+2236 aeaa aeaa aeaa * 554c * 8ea1d5cc,d5cc,8ea1d5ccv,d5ccv 609a e6829a 609a 0000609a aeaa aeaa aeaa aeaa aeaa aeaa aeaa
+2237 aeab aeab aeab * 554d * 8ea1d5cd,d5cd,8ea1d5cdv,d5cdv 608d e6828d 608d 0000608d aeab aeab aeab aeab aeab aeab aeab
+2238 aeac aeac aeac * 554e * 8ea1d5ce,d5ce,8ea1d5cev,d5cev 6094 e68294 6094 00006094 aeac aeac aeac aeac aeac aeac aeac
+2239 aead aead aead * 554f * 8ea1d5cf,d5cf,8ea1d5cfv,d5cfv 608c e6828c 608c 0000608c aead aead aead aead aead aead aead
+2240 aeae aeae aeae * 5550 * 8ea1d5d0,d5d0,8ea1d5d0v,d5d0v 6085 e68285 6085 00006085 aeae aeae aeae aeae aeae aeae aeae
+2241 aeaf aeaf aeaf * 5551 * 8ea1d5d1,d5d1,8ea1d5d1v,d5d1v 6096 e68296 6096 00006096 aeaf aeaf aeaf aeaf aeaf aeaf aeaf
+2242 aeb0 aeb0 aeb0 * 5552 * 8ea1d5d2,d5d2,8ea1d5d2v,d5d2v 6247 e68987 6247 00006247 aeb0 aeb0 aeb0 aeb0 aeb0 aeb0 aeb0
+2243 aeb1 aeb1 aeb1 * 5553 * 8ea1d5d3,d5d3,8ea1d5d3v,d5d3v 62f3 e68bb3 62f3 000062f3 aeb1 aeb1 aeb1 aeb1 aeb1 aeb1 aeb1
+2244 aeb2 aeb2 aeb2 * 5554 * 8ea1d5d4,d5d4,8ea1d5d4v,d5d4v 6308 e68c88 6308 00006308 aeb2 aeb2 aeb2 aeb2 aeb2 aeb2 aeb2
+2245 aeb3 aeb3 aeb3 * 5555 * 8ea1d5d5,d5d5,8ea1d5d5v,d5d5v 62ff e68bbf 62ff 000062ff aeb3 aeb3 aeb3 aeb3 aeb3 aeb3 aeb3
+2246 aeb4 aeb4 aeb4 * 5556 * 8ea1d5d6,d5d6,8ea1d5d6v,d5d6v 634e e68d8e 634e 0000634e aeb4 aeb4 aeb4 aeb4 aeb4 aeb4 aeb4
+2247 aeb5 aeb5 aeb5 * 5557 * 8ea1d5d7,d5d7,8ea1d5d7v,d5d7v 633e e68cbe 633e 0000633e aeb5 aeb5 aeb5 aeb5 aeb5 aeb5 aeb5
+2248 aeb6 aeb6 aeb6 * 5558 * 8ea1d5d8,d5d8,8ea1d5d8v,d5d8v 632f e68caf 632f 0000632f aeb6 aeb6 aeb6 aeb6 aeb6 aeb6 aeb6
+2249 aeb7 aeb7 aeb7 * 5559 * 8ea1d5d9,d5d9,8ea1d5d9v,d5d9v 6355 e68d95 6355 00006355 aeb7 aeb7 aeb7 aeb7 aeb7 aeb7 aeb7
+2250 aeb8 aeb8 aeb8 * 555a * 8ea1d5da,d5da,8ea1d5dav,d5dav 6342 e68d82 6342 00006342 aeb8 aeb8 aeb8 aeb8 aeb8 aeb8 aeb8
+2251 aeb9 aeb9 aeb9 * 555b * 8ea1d5db,d5db,8ea1d5dbv,d5dbv 6346 e68d86 6346 00006346 aeb9 aeb9 aeb9 aeb9 aeb9 aeb9 aeb9
+2252 aeba aeba aeba * 555c * 8ea1d5dc,d5dc,8ea1d5dcv,d5dcv 634f e68d8f 634f 0000634f aeba aeba aeba aeba aeba aeba aeba
+2253 aebb aebb aebb * 555d * 8ea1d5dd,d5dd,8ea1d5ddv,d5ddv 6349 e68d89 6349 00006349 aebb aebb aebb aebb aebb aebb aebb
+2254 aebc aebc aebc * 555e * 8ea1d5de,d5de,8ea1d5dev,d5dev 633a e68cba 633a 0000633a aebc aebc aebc aebc aebc aebc aebc
+2255 aebd aebd aebd * 555f * 8ea1d5df,d5df,8ea1d5dfv,d5dfv 6350 e68d90 6350 00006350 aebd aebd aebd aebd aebd aebd aebd
+2256 aebe aebe aebe * 5560 * 8ea1d5e0,d5e0,8ea1d5e0v,d5e0v 633d e68cbd 633d 0000633d aebe aebe aebe aebe aebe aebe aebe
+2257 aebf aebf aebf * 5561 * 8ea1d5e1,d5e1,8ea1d5e1v,d5e1v 632a e68caa 632a 0000632a aebf aebf aebf aebf aebf aebf aebf
+2258 aec0 aec0 aec0 * 5562 * 8ea1d5e2,d5e2,8ea1d5e2v,d5e2v 632b e68cab 632b 0000632b aec0 aec0 aec0 aec0 aec0 aec0 aec0
+2259 aec1 aec1 aec1 * 5563 * 8ea1d5e3,d5e3,8ea1d5e3v,d5e3v 6328 e68ca8 6328 00006328 aec1 aec1 aec1 aec1 aec1 aec1 aec1
+2260 aec2 aec2 aec2 * 5564 * 8ea1d5e4,d5e4,8ea1d5e4v,d5e4v 634d e68d8d 634d 0000634d aec2 aec2 aec2 aec2 aec2 aec2 aec2
+2261 aec3 aec3 aec3 * 5565 * 8ea1d5e5,d5e5,8ea1d5e5v,d5e5v 634c e68d8c 634c 0000634c aec3 aec3 aec3 aec3 aec3 aec3 aec3
+2262 aec4 aec4 aec4 * 5566 * 8ea1d5e6,d5e6,8ea1d5e6v,d5e6v 6548 e69588 6548 00006548 aec4 aec4 aec4 aec4 aec4 aec4 aec4
+2263 aec5 aec5 aec5 * 5567 * 8ea1d5e7,d5e7,8ea1d5e7v,d5e7v 6549 e69589 6549 00006549 aec5 aec5 aec5 aec5 aec5 aec5 aec5
+2264 aec6 aec6 aec6 * 5568 * 8ea1d5e8,d5e8,8ea1d5e8v,d5e8v 6599 e69699 6599 00006599 aec6 aec6 aec6 aec6 aec6 aec6 aec6
+2265 aec7 aec7 aec7 * 5569 * 8ea1d5e9,d5e9,8ea1d5e9v,d5e9v 65c1 e69781 65c1 000065c1 aec7 aec7 aec7 aec7 aec7 aec7 aec7
+2266 aec8 aec8 aec8 * 556a * 8ea1d5ea,d5ea,8ea1d5eav,d5eav 65c5 e69785 65c5 000065c5 aec8 aec8 aec8 aec8 aec8 aec8 aec8
+2267 aec9 aec9 aec9 * 556b * 8ea1d5eb,d5eb,8ea1d5ebv,d5ebv 6642 e69982 6642 00006642 aec9 aec9 aec9 aec9 aec9 aec9 aec9
+2268 aeca aeca aeca * 556c * 8ea1d5ec,d5ec,8ea1d5ecv,d5ecv 6649 e69989 6649 00006649 aeca aeca aeca aeca aeca aeca aeca
+2269 aecb aecb aecb * 556d * 8ea1d5ed,d5ed,8ea1d5edv,d5edv 664f e6998f 664f 0000664f aecb aecb aecb aecb aecb aecb aecb
+2270 aecc aecc aecc * 556e * 8ea1d5ee,d5ee,8ea1d5eev,d5eev 6643 e69983 6643 00006643 aecc aecc aecc aecc aecc aecc aecc
+2271 aecd aecd aecd * 556f * 8ea1d5ef,d5ef,8ea1d5efv,d5efv 6652 e69992 6652 00006652 aecd aecd aecd aecd aecd aecd aecd
+2272 aece aece aece * 5570 * 8ea1d5f0,d5f0,8ea1d5f0v,d5f0v 664c e6998c 664c 0000664c aece aece aece aece aece aece aece
+2273 aecf aecf aecf * 5571 * 8ea1d5f1,d5f1,8ea1d5f1v,d5f1v 6645 e69985 6645 00006645 aecf aecf aecf aecf aecf aecf aecf
+2274 aed0 aed0 aed0 * 5572 * 8ea1d5f2,d5f2,8ea1d5f2v,d5f2v 6641 e69981 6641 00006641 aed0 aed0 aed0 aed0 aed0 aed0 aed0
+2275 aed1 aed1 aed1 * 5573 * 8ea1d5f3,d5f3,8ea1d5f3v,d5f3v 66f8 e69bb8 66f8 000066f8 aed1 aed1 aed1 aed1 aed1 aed1 aed1
+2276 aed2 aed2 aed2 * 5574 * 8ea1d5f4,d5f4,8ea1d5f4v,d5f4v 6714 e69c94 6714 00006714 aed2 aed2 aed2 aed2 aed2 aed2 aed2
+2277 aed3 aed3 aed3 * 5575 * 8ea1d5f5,d5f5,8ea1d5f5v,d5f5v 6715 e69c95 6715 00006715 aed3 aed3 aed3 aed3 aed3 aed3 aed3
+2278 aed4 aed4 aed4 * 5576 * 8ea1d5f6,d5f6,8ea1d5f6v,d5f6v 6717 e69c97 6717 00006717 aed4 aed4 aed4 aed4 aed4 aed4 aed4
+2279 aed5 aed5 aed5 * 5577 * 8ea1d5f7,d5f7,8ea1d5f7v,d5f7v 6821 e6a0a1 6821 00006821 aed5 aed5 aed5 aed5 aed5 aed5 aed5
+2280 aed6 aed6 aed6 * 5578 * 8ea1d5f8,d5f8,8ea1d5f8v,d5f8v 6838 e6a0b8 6838 00006838 aed6 aed6 aed6 aed6 aed6 aed6 aed6
+2281 aed7 aed7 aed7 * 5579 * 8ea1d5f9,d5f9,8ea1d5f9v,d5f9v 6848 e6a188 6848 00006848 aed7 aed7 aed7 aed7 aed7 aed7 aed7
+2282 aed8 aed8 aed8 * 557a * 8ea1d5fa,d5fa,8ea1d5fav,d5fav 6846 e6a186 6846 00006846 aed8 aed8 aed8 aed8 aed8 aed8 aed8
+2283 aed9 aed9 aed9 * 557b * 8ea1d5fb,d5fb,8ea1d5fbv,d5fbv 6853 e6a193 6853 00006853 aed9 aed9 aed9 aed9 aed9 aed9 aed9
+2284 aeda aeda aeda * 557c * 8ea1d5fc,d5fc,8ea1d5fcv,d5fcv 6839 e6a0b9 6839 00006839 aeda aeda aeda aeda aeda aeda aeda
+2285 aedb aedb aedb * 557d * 8ea1d5fd,d5fd,8ea1d5fdv,d5fdv 6842 e6a182 6842 00006842 aedb aedb aedb aedb aedb aedb aedb
+2286 aedc aedc aedc * 557e * 8ea1d5fe,d5fe,8ea1d5fev,d5fev 6854 e6a194 6854 00006854 aedc aedc aedc aedc aedc aedc aedc
+2287 aedd aedd aedd * 5621 * 8ea1d6a1,d6a1,8ea1d6a1v,d6a1v 6829 e6a0a9 6829 00006829 aedd aedd aedd aedd aedd aedd aedd
+2288 aede aede aede * 5622 * 8ea1d6a2,d6a2,8ea1d6a2v,d6a2v 68b3 e6a2b3 68b3 000068b3 aede aede aede aede aede aede aede
+2289 aedf aedf aedf * 5623 * 8ea1d6a3,d6a3,8ea1d6a3v,d6a3v 6817 e6a097 6817 00006817 aedf aedf aedf aedf aedf aedf aedf
+2290 aee0 aee0 aee0 * 5624 * 8ea1d6a4,d6a4,8ea1d6a4v,d6a4v 684c e6a18c 684c 0000684c aee0 aee0 aee0 aee0 aee0 aee0 aee0
+2291 aee1 aee1 aee1 * 5625 * 8ea1d6a5,d6a5,8ea1d6a5v,d6a5v 6851 e6a191 6851 00006851 aee1 aee1 aee1 aee1 aee1 aee1 aee1
+2292 aee2 aee2 aee2 * 5626 * 8ea1d6a6,d6a6,8ea1d6a6v,d6a6v 683d e6a0bd 683d 0000683d aee2 aee2 aee2 aee2 aee2 aee2 aee2
+2293 aee3 aee3 aee3 * 5627 * 8ea1d6a7,d6a7,8ea1d6a7v,d6a7v 67f4 e69fb4 67f4 000067f4 aee3 aee3 aee3 aee3 aee3 aee3 aee3
+2294 aee4 aee4 aee4 * 5628 * 8ea1d6a8,d6a8,8ea1d6a8v,d6a8v 6850 e6a190 6850 00006850 aee4 aee4 aee4 aee4 aee4 aee4 aee4
+2295 aee5 aee5 aee5 * 5629 * 8ea1d6a9,d6a9,8ea1d6a9v,d6a9v 6840 e6a180 6840 00006840 aee5 aee5 aee5 aee5 aee5 aee5 aee5
+2296 aee6 aee6 aee6 * 562a * 8ea1d6aa,d6aa,8ea1d6aav,d6aav 683c e6a0bc 683c 0000683c aee6 aee6 aee6 aee6 aee6 aee6 aee6
+2297 aee7 aee7 aee7 * 562b * 8ea1d6ab,d6ab,8ea1d6abv,d6abv 6843 e6a183 6843 00006843 aee7 aee7 aee7 aee7 aee7 aee7 aee7
+2298 aee8 aee8 aee8 * 562c * 8ea1d6ac,d6ac,8ea1d6acv,d6acv 682a e6a0aa 682a 0000682a aee8 aee8 aee8 aee8 aee8 aee8 aee8
+2299 aee9 aee9 aee9 * 562d * 8ea1d6ad,d6ad,8ea1d6adv,d6adv 6845 e6a185 6845 00006845 aee9 aee9 aee9 aee9 aee9 aee9 aee9
+2300 aeea aeea aeea * 562e * 8ea1d6ae,d6ae,8ea1d6aev,d6aev 6813 e6a093 6813 00006813 aeea aeea aeea aeea aeea aeea aeea
+2301 aeeb aeeb aeeb * 562f * 8ea1d6af,d6af,8ea1d6afv,d6afv 6818 e6a098 6818 00006818 aeeb aeeb aeeb aeeb aeeb aeeb aeeb
+2302 aeec aeec aeec * 5630 * 8ea1d6b0,d6b0,8ea1d6b0v,d6b0v 6841 e6a181 6841 00006841 aeec aeec aeec aeec aeec aeec aeec
+2303 aeed aeed aeed * 5631 * 8ea1d6b1,d6b1,8ea1d6b1v,d6b1v 6b8a e6ae8a 6b8a 00006b8a aeed aeed aeed aeed aeed aeed aeed
+2304 aeee aeee aeee * 5632 * 8ea1d6b2,d6b2,8ea1d6b2v,d6b2v 6b89 e6ae89 6b89 00006b89 aeee aeee aeee aeee aeee aeee aeee
+2305 aeef aeef aeef * 5633 * 8ea1d6b3,d6b3,8ea1d6b3v,d6b3v 6bb7 e6aeb7 6bb7 00006bb7 aeef aeef aeef aeef aeef aeef aeef
+2306 aef0 aef0 aef0 * 5634 * 8ea1d6b4,d6b4,8ea1d6b4v,d6b4v 6c23 e6b0a3 6c23 00006c23 aef0 aef0 aef0 aef0 aef0 aef0 aef0
+2307 aef1 aef1 aef1 * 5635 * 8ea1d6b5,d6b5,8ea1d6b5v,d6b5v 6c27 e6b0a7 6c27 00006c27 aef1 aef1 aef1 aef1 aef1 aef1 aef1
+2308 aef2 aef2 aef2 * 5636 * 8ea1d6b6,d6b6,8ea1d6b6v,d6b6v 6c28 e6b0a8 6c28 00006c28 aef2 aef2 aef2 aef2 aef2 aef2 aef2
+2309 aef3 aef3 aef3 * 5637 * 8ea1d6b7,d6b7,8ea1d6b7v,d6b7v 6c26 e6b0a6 6c26 00006c26 aef3 aef3 aef3 aef3 aef3 aef3 aef3
+2310 aef4 aef4 aef4 * 5638 * 8ea1d6b8,d6b8,8ea1d6b8v,d6b8v 6c24 e6b0a4 6c24 00006c24 aef4 aef4 aef4 aef4 aef4 aef4 aef4
+2311 aef5 aef5 aef5 * 5639 * 8ea1d6b9,d6b9,8ea1d6b9v,d6b9v 6cf0 e6b3b0 6cf0 00006cf0 aef5 aef5 aef5 aef5 aef5 aef5 aef5
+2312 aef6 aef6 aef6 * 563a * 8ea1d6ba,d6ba,8ea1d6bav,d6bav 6d6a e6b5aa 6d6a 00006d6a aef6 aef6 aef6 aef6 aef6 aef6 aef6
+2313 aef7 aef7 aef7 * 563b * 8ea1d6bb,d6bb,8ea1d6bbv,d6bbv 6d95 e6b695 6d95 00006d95 aef7 aef7 aef7 aef7 aef7 aef7 aef7
+2314 aef8 aef8 aef8 * 563c * 8ea1d6bc,d6bc,8ea1d6bcv,d6bcv 6d88 e6b688 6d88 00006d88 aef8 aef8 aef8 aef8 aef8 aef8 aef8
+2315 aef9 aef9 aef9 * 563d * 8ea1d6bd,d6bd,8ea1d6bdv,d6bdv 6d87 e6b687 6d87 00006d87 aef9 aef9 aef9 aef9 aef9 aef9 aef9
+2316 aefa aefa aefa * 563e * 8ea1d6be,d6be,8ea1d6bev,d6bev 6d66 e6b5a6 6d66 00006d66 aefa aefa aefa aefa aefa aefa aefa
+2317 aefb aefb aefb * 563f * 8ea1d6bf,d6bf,8ea1d6bfv,d6bfv 6d78 e6b5b8 6d78 00006d78 aefb aefb aefb aefb aefb aefb aefb
+2318 aefc aefc aefc * 5640 * 8ea1d6c0,d6c0,8ea1d6c0v,d6c0v 6d77 e6b5b7 6d77 00006d77 aefc aefc aefc aefc aefc aefc aefc
+2319 aefd aefd aefd * 5641 * 8ea1d6c1,d6c1,8ea1d6c1v,d6c1v 6d59 e6b599 6d59 00006d59 aefd aefd aefd aefd aefd aefd aefd
+2320 aefe aefe aefe * 5642 * 8ea1d6c2,d6c2,8ea1d6c2v,d6c2v 6d93 e6b693 6d93 00006d93 aefe aefe aefe aefe aefe aefe aefe
+2321 af40 af40 af40 * 5643 * 8ea1d6c3,d6c3,8ea1d6c3v,d6c3v 6d6c e6b5ac 6d6c 00006d6c af40 af40 af40 af40 af40 af40 af40
+2322 af41 af41 af41 * 5644 * 8ea1d6c4,d6c4,8ea1d6c4v,d6c4v 6d89 e6b689 6d89 00006d89 af41 af41 af41 af41 af41 af41 af41
+2323 af42 af42 af42 * 5645 * 8ea1d6c5,d6c5,8ea1d6c5v,d6c5v 6d6e e6b5ae 6d6e 00006d6e af42 af42 af42 af42 af42 af42 af42
+2324 af43 af43 af43 * 5646 * 8ea1d6c6,d6c6,8ea1d6c6v,d6c6v 6d5a e6b59a 6d5a 00006d5a af43 af43 af43 af43 af43 af43 af43
+2325 af44 af44 af44 * 5647 * 8ea1d6c7,d6c7,8ea1d6c7v,d6c7v 6d74 e6b5b4 6d74 00006d74 af44 af44 af44 af44 af44 af44 af44
+2326 af45 af45 af45 * 5648 * 8ea1d6c8,d6c8,8ea1d6c8v,d6c8v 6d69 e6b5a9 6d69 00006d69 af45 af45 af45 af45 af45 af45 af45
+2327 af46 af46 af46 * 5649 * 8ea1d6c9,d6c9,8ea1d6c9v,d6c9v 6d8c e6b68c 6d8c 00006d8c af46 af46 af46 af46 af46 af46 af46
+2328 af47 af47 af47 * 564a * 8ea1d6ca,d6ca,8ea1d6cav,d6cav 6d8a e6b68a 6d8a 00006d8a af47 af47 af47 af47 af47 af47 af47
+2329 af48 af48 af48 * 564b * 8ea1d6cb,d6cb,8ea1d6cbv,d6cbv 6d79 e6b5b9 6d79 00006d79 af48 af48 af48 af48 af48 af48 af48
+2330 af49 af49 af49 * 564c * 8ea1d6cc,d6cc,8ea1d6ccv,d6ccv 6d85 e6b685 6d85 00006d85 af49 af49,fcd1 915c,af49 af49 af49 af49 af49
+2331 af4a af4a af4a * 564d * 8ea1d6cd,d6cd,8ea1d6cdv,d6cdv 6d65 e6b5a5 6d65 00006d65 af4a af4a af4a af4a af4a af4a af4a
+2332 af4b af4b af4b * 564e * 8ea1d6ce,d6ce,8ea1d6cev,d6cev 6d94 e6b694 6d94 00006d94 af4b af4b af4b af4b af4b af4b af4b
+2333 af4c af4c af4c * 564f * 8ea1d6cf,d6cf,8ea1d6cfv,d6cfv 70ca e7838a 70ca 000070ca af4c af4c af4c af4c af4c af4c af4c
+2334 af4d af4d af4d * 5650 * 8ea1d6d0,d6d0,8ea1d6d0v,d6d0v 70d8 e78398 70d8 000070d8 af4d af4d af4d af4d af4d af4d af4d
+2335 af4e af4e af4e * 5651 * 8ea1d6d1,d6d1,8ea1d6d1v,d6d1v 70e4 e783a4 70e4 000070e4 af4e af4e af4e af4e af4e af4e af4e
+2336 af4f af4f af4f * 5652 * 8ea1d6d2,d6d2,8ea1d6d2v,d6d2v 70d9 e78399 70d9 000070d9 af4f af4f af4f af4f af4f af4f af4f
+2337 af50 af50 af50 * 5653 * 8ea1d6d3,d6d3,8ea1d6d3v,d6d3v 70c8 e78388 70c8 000070c8 af50 af50 af50 af50 af50 af50 af50
+2338 af51 af51 af51 * 5654 * 8ea1d6d4,d6d4,8ea1d6d4v,d6d4v 70cf e7838f 70cf 000070cf af51 af51 af51 af51 af51 af51 af51
+2339 af52 af52 af52 * 5655 * 8ea1d6d5,d6d5,8ea1d6d5v,d6d5v 7239 e788b9 7239 00007239 af52 af52 af52 af52 af52 af52 af52
+2340 af53 af53 af53 * 5656 * 8ea1d6d6,d6d6,8ea1d6d6v,d6d6v 7279 e789b9 7279 00007279 af53 af53 af53 af53 af53 af53 af53
+2341 af54 af54 af54 * 5657 * 8ea1d6d7,d6d7,8ea1d6d7v,d6d7v 72fc e78bbc 72fc 000072fc af54 af54 af54 af54 af54 af54 af54
+2342 af55 af55 af55 * 5658 * 8ea1d6d8,d6d8,8ea1d6d8v,d6d8v 72f9 e78bb9 72f9 000072f9 af55 af55 af55 af55 af55 af55 af55
+2343 af56 af56 af56 * 5659 * 8ea1d6d9,d6d9,8ea1d6d9v,d6d9v 72fd e78bbd 72fd 000072fd af56 af56 af56 af56 af56 af56 af56
+2344 af57 af57 af57 * 565a * 8ea1d6da,d6da,8ea1d6dav,d6dav 72f8 e78bb8 72f8 000072f8 af57 af57 af57 af57 af57 af57 af57
+2345 af58 af58 af58 * 565b * 8ea1d6db,d6db,8ea1d6dbv,d6dbv 72f7 e78bb7 72f7 000072f7 af58 af58 af58 af58 af58 af58 af58
+2346 af59 af59 af59 * 565c * 8ea1d6dc,d6dc,8ea1d6dcv,d6dcv 7386 e78e86 7386 00007386 af59 af59 af59 af59 af59 af59 af59
+2347 af5a af5a af5a * 565d * 8ea1d6dd,d6dd,8ea1d6ddv,d6ddv 73ed e78fad 73ed 000073ed af5a af5a af5a af5a af5a af5a af5a
+2348 af5b af5b af5b * 565e * 8ea1d6de,d6de,8ea1d6dev,d6dev 7409 e79089 7409 00007409 af5b af5b af5b af5b af5b af5b af5b
+2349 af5c af5c af5c * 565f * 8ea1d6df,d6df,8ea1d6dfv,d6dfv 73ee e78fae 73ee 000073ee af5c af5c af5c af5c af5c af5c af5c
+2350 af5d af5d af5d * 5660 * 8ea1d6e0,d6e0,8ea1d6e0v,d6e0v 73e0 e78fa0 73e0 000073e0 af5d af5d af5d af5d af5d af5d af5d
+2351 af5e af5e af5e * 5661 * 8ea1d6e1,d6e1,8ea1d6e1v,d6e1v 73ea e78faa 73ea 000073ea af5e af5e af5e af5e af5e af5e af5e
+2352 af5f af5f af5f * 5662 * 8ea1d6e2,d6e2,8ea1d6e2v,d6e2v 73de e78f9e 73de 000073de af5f af5f af5f af5f af5f af5f af5f
+2353 af60 af60 af60 * 5663 * 8ea1d6e3,d6e3,8ea1d6e3v,d6e3v 7554 e79594 7554 00007554 af60 af60 af60 af60 af60 af60 af60
+2354 af61 af61 af61 * 5664 * 8ea1d6e4,d6e4,8ea1d6e4v,d6e4v 755d e7959d 755d 0000755d af61 af61 af61 af61 af61 af61 af61
+2355 af62 af62 af62 * 5665 * 8ea1d6e5,d6e5,8ea1d6e5v,d6e5v 755c e7959c 755c 0000755c af62 af62 af62 af62 af62 af62 af62
+2356 af63 af63 af63 * 5666 * 8ea1d6e6,d6e6,8ea1d6e6v,d6e6v 755a e7959a 755a 0000755a af63 af63 af63 af63 af63 af63 af63
+2357 af64 af64 af64 * 5667 * 8ea1d6e7,d6e7,8ea1d6e7v,d6e7v 7559 e79599 7559 00007559 af64 af64 af64 af64 af64 af64 af64
+2358 af65 af65 af65 * 5668 * 8ea1d6e8,d6e8,8ea1d6e8v,d6e8v 75be e796be 75be 000075be af65 af65 af65 af65 af65 af65 af65
+2359 af66 af66 af66 * 5669 * 8ea1d6e9,d6e9,8ea1d6e9v,d6e9v 75c5 e79785 75c5 000075c5 af66 af66 af66 af66 af66 af66 af66
+2360 af67 af67 af67 * 566a * 8ea1d6ea,d6ea,8ea1d6eav,d6eav 75c7 e79787 75c7 000075c7 af67 af67 af67 af67 af67 af67 af67
+2361 af68 af68 af68 * 566b * 8ea1d6eb,d6eb,8ea1d6ebv,d6ebv 75b2 e796b2 75b2 000075b2 af68 af68 af68 af68 af68 af68 af68
+2362 af69 af69 af69 * 566c * 8ea1d6ec,d6ec,8ea1d6ecv,d6ecv 75b3 e796b3 75b3 000075b3 af69 af69 af69 af69 af69 af69 af69
+2363 af6a af6a af6a * 566d * 8ea1d6ed,d6ed,8ea1d6edv,d6edv 75bd e796bd 75bd 000075bd af6a af6a af6a af6a af6a af6a af6a
+2364 af6b af6b af6b * 566e * 8ea1d6ee,d6ee,8ea1d6eev,d6eev 75bc e796bc 75bc 000075bc af6b af6b af6b af6b af6b af6b af6b
+2365 af6c af6c af6c * 566f * 8ea1d6ef,d6ef,8ea1d6efv,d6efv 75b9 e796b9 75b9 000075b9 af6c af6c af6c af6c af6c af6c af6c
+2366 af6d af6d af6d * 5670 * 8ea1d6f0,d6f0,8ea1d6f0v,d6f0v 75c2 e79782 75c2 000075c2 af6d af6d af6d af6d af6d af6d af6d
+2367 af6e af6e af6e * 5671 * 8ea1d6f1,d6f1,8ea1d6f1v,d6f1v 75b8 e796b8 75b8 000075b8 af6e af6e af6e af6e af6e af6e af6e
+2368 af6f af6f af6f * 5672 * 8ea1d6f2,d6f2,8ea1d6f2v,d6f2v 768b e79a8b 768b 0000768b af6f af6f af6f af6f af6f af6f af6f
+2369 af70 af70 af70 * 5673 * 8ea1d6f3,d6f3,8ea1d6f3v,d6f3v 76b0 e79ab0 76b0 000076b0 af70 af70 af70 af70 af70 af70 af70
+2370 af71 af71 af71 * 5674 * 8ea1d6f4,d6f4,8ea1d6f4v,d6f4v 76ca e79b8a 76ca 000076ca af71 af71 af71 af71 af71 af71 af71
+2371 af72 af72 af72 * 5675 * 8ea1d6f5,d6f5,8ea1d6f5v,d6f5v 76cd e79b8d 76cd 000076cd af72 af72 af72 af72 af72 af72 af72
+2372 af73 af73 af73 * 5676 * 8ea1d6f6,d6f6,8ea1d6f6v,d6f6v 76ce e79b8e 76ce 000076ce af73 af73 af73 af73 af73 af73 af73
+2373 af74 af74 af74 * 5677 * 8ea1d6f7,d6f7,8ea1d6f7v,d6f7v 7729 e79ca9 7729 00007729 af74 af74 af74 af74 af74 af74 af74
+2374 af75 af75 af75 * 5678 * 8ea1d6f8,d6f8,8ea1d6f8v,d6f8v 771f e79c9f 771f 0000771f af75 af75 af75 af75 af75 af75 af75
+2375 af76 af76 af76 * 5679 * 8ea1d6f9,d6f9,8ea1d6f9v,d6f9v 7720 e79ca0 7720 00007720 af76 af76 af76 af76 af76 af76 af76
+2376 af77 af77 af77 * 567a * 8ea1d6fa,d6fa,8ea1d6fav,d6fav 7728 e79ca8 7728 00007728 af77 af77 af77 af77 af77 af77 af77
+2377 af78 af78 af78 * 567b * 8ea1d6fb,d6fb,8ea1d6fbv,d6fbv 77e9 e79fa9 77e9 000077e9 af78 af78 af78 af78 af78 af78 af78
+2378 af79 af79 af79 * 567c * 8ea1d6fc,d6fc,8ea1d6fcv,d6fcv 7830 e7a0b0 7830 00007830 af79 af79 af79 af79 af79 af79 af79
+2379 af7a af7a af7a * 567d * 8ea1d6fd,d6fd,8ea1d6fdv,d6fdv 7827 e7a0a7 7827 00007827 af7a af7a af7a af7a af7a af7a af7a
+2380 af7b af7b af7b * 567e * 8ea1d6fe,d6fe,8ea1d6fev,d6fev 7838 e7a0b8 7838 00007838 af7b af7b af7b af7b af7b af7b af7b
+2381 af7c af7c af7c * 5721 * 8ea1d7a1,d7a1,8ea1d7a1v,d7a1v 781d e7a09d 781d 0000781d af7c af7c af7c af7c af7c af7c af7c
+2382 af7d af7d af7d * 5722 * 8ea1d7a2,d7a2,8ea1d7a2v,d7a2v 7834 e7a0b4 7834 00007834 af7d af7d af7d af7d af7d af7d af7d
+2383 af7e af7e af7e * 5723 * 8ea1d7a3,d7a3,8ea1d7a3v,d7a3v 7837 e7a0b7 7837 00007837 af7e af7e af7e af7e af7e af7e af7e
+2384 afa1 afa1 afa1 * 5724 * 8ea1d7a4,d7a4,8ea1d7a4v,d7a4v 7825 e7a0a5 7825 00007825 afa1 afa1 afa1 afa1 afa1 afa1 afa1
+2385 afa2 afa2 afa2 * 5725 * 8ea1d7a5,d7a5,8ea1d7a5v,d7a5v 782d e7a0ad 782d 0000782d afa2 afa2 afa2 afa2 afa2 afa2 afa2
+2386 afa3 afa3 afa3 * 5726 * 8ea1d7a6,d7a6,8ea1d7a6v,d7a6v 7820 e7a0a0 7820 00007820 afa3 afa3 afa3 afa3 afa3 afa3 afa3
+2387 afa4 afa4 afa4 * 5727 * 8ea1d7a7,d7a7,8ea1d7a7v,d7a7v 781f e7a09f 781f 0000781f afa4 afa4 afa4 afa4 afa4 afa4 afa4
+2388 afa5 afa5 afa5 * 5728 * 8ea1d7a8,d7a8,8ea1d7a8v,d7a8v 7832 e7a0b2 7832 00007832 afa5 afa5 afa5 afa5 afa5 afa5 afa5
+2389 afa6 afa6 afa6 * 5729 * 8ea1d7a9,d7a9,8ea1d7a9v,d7a9v 7955 e7a595 7955 00007955 afa6 afa6,fd5f 9161,afa6 afa6 afa6 afa6 afa6
+2390 afa7 afa7 afa7 * 572a * 8ea1d7aa,d7aa,8ea1d7aav,d7aav 7950 e7a590 7950 00007950 afa7 afa7 afa7 afa7 afa7 afa7 afa7
+2391 afa8 afa8 afa8 * 572b * 8ea1d7ab,d7ab,8ea1d7abv,d7abv 7960 e7a5a0 7960 00007960 afa8 afa8 afa8 afa8 afa8 afa8 afa8
+2392 afa9 afa9 afa9 * 572c * 8ea1d7ac,d7ac,8ea1d7acv,d7acv 795f e7a59f 795f 0000795f afa9 afa9 afa9 afa9 afa9 afa9 afa9
+2393 afaa afaa afaa * 572d * 8ea1d7ad,d7ad,8ea1d7adv,d7adv 7956 e7a596 7956 00007956 afaa afaa afaa afaa afaa afaa afaa
+2394 afab afab afab * 572e * 8ea1d7ae,d7ae,8ea1d7aev,d7aev 795e e7a59e 795e 0000795e afab afab afab afab afab afab afab
+2395 afac afac afac * 572f * 8ea1d7af,d7af,8ea1d7afv,d7afv 795d e7a59d 795d 0000795d afac afac afac afac afac afac afac
+2396 afad afad afad * 5730 * 8ea1d7b0,d7b0,8ea1d7b0v,d7b0v 7957 e7a597 7957 00007957 afad afad afad afad afad afad afad
+2397 afae afae afae * 5731 * 8ea1d7b1,d7b1,8ea1d7b1v,d7b1v 795a e7a59a 795a 0000795a afae afae afae afae afae afae afae
+2398 afaf afaf afaf * 5732 * 8ea1d7b2,d7b2,8ea1d7b2v,d7b2v 79e4 e7a7a4 79e4 000079e4 afaf afaf afaf afaf afaf afaf afaf
+2399 afb0 afb0 afb0 * 5733 * 8ea1d7b3,d7b3,8ea1d7b3v,d7b3v 79e3 e7a7a3,eeb082 79e3,ec02 000079e3,0000ec02 9cbd,afb0 afb0 afb0 afb0 afb0 afb0 9cbd,afb0
+2400 afb1 afb1 afb1 * 5734 * 8ea1d7b4,d7b4,8ea1d7b4v,d7b4v 79e7 e7a7a7 79e7 000079e7 afb1 afb1 afb1 afb1 afb1 afb1 afb1
+2401 afb2 afb2 afb2 * 5735 * 8ea1d7b5,d7b5,8ea1d7b5v,d7b5v 79df e7a79f 79df 000079df afb2 afb2 afb2 afb2 afb2 afb2 afb2
+2402 afb3 afb3 afb3 * 5736 * 8ea1d7b6,d7b6,8ea1d7b6v,d7b6v 79e6 e7a7a6 79e6 000079e6 afb3 afb3 afb3 afb3 afb3 afb3 afb3
+2403 afb4 afb4 afb4 * 5737 * 8ea1d7b7,d7b7,8ea1d7b7v,d7b7v 79e9 e7a7a9 79e9 000079e9 afb4 afb4 afb4 afb4 afb4 afb4 afb4
+2404 afb5 afb5 afb5 * 5738 * 8ea1d7b8,d7b8,8ea1d7b8v,d7b8v 79d8 e7a798 79d8 000079d8 afb5 afb5 afb5 afb5 afb5 afb5 afb5
+2405 afb6 afb6 afb6 * 5739 * 8ea1d7b9,d7b9,8ea1d7b9v,d7b9v 7a84 e7aa84 7a84 00007a84 afb6 afb6 afb6 afb6 afb6 afb6 afb6
+2406 afb7 afb7 afb7 * 573a * 8ea1d7ba,d7ba,8ea1d7bav,d7bav 7a88 e7aa88 7a88 00007a88 afb7 afb7 afb7 afb7 afb7 afb7 afb7
+2407 afb8 afb8 afb8 * 573b * 8ea1d7bb,d7bb,8ea1d7bbv,d7bbv 7ad9 e7ab99 7ad9 00007ad9 afb8 afb8 afb8 afb8 afb8 afb8 afb8
+2408 afb9 afb9 afb9 * 573c * 8ea1d7bc,d7bc,8ea1d7bcv,d7bcv 7b06 e7ac86 7b06 00007b06 afb9 afb9 afb9 afb9 afb9 afb9 afb9
+2409 afba afba afba * 573d * 8ea1d7bd,d7bd,8ea1d7bdv,d7bdv 7b11 e7ac91 7b11 00007b11 afba afba afba afba afba afba afba
+2410 afbb afbb afbb * 573e * 8ea1d7be,d7be,8ea1d7bev,d7bev 7c89 e7b289 7c89 00007c89 afbb afbb afbb afbb afbb afbb afbb
+2411 afbc afbc afbc * 573f * 8ea1d7bf,d7bf,8ea1d7bfv,d7bfv 7d21 e7b4a1 7d21 00007d21 afbc afbc afbc afbc afbc afbc afbc
+2412 afbd afbd afbd * 5740 * 8ea1d7c0,d7c0,8ea1d7c0v,d7c0v 7d17 e7b497 7d17 00007d17 afbd afbd afbd afbd afbd afbd afbd
+2413 afbe afbe afbe * 5741 * 8ea1d7c1,d7c1,8ea1d7c1v,d7c1v 7d0b e7b48b 7d0b 00007d0b afbe afbe afbe afbe afbe afbe afbe
+2414 afbf afbf afbf * 5742 * 8ea1d7c2,d7c2,8ea1d7c2v,d7c2v 7d0a e7b48a 7d0a 00007d0a afbf afbf afbf afbf afbf afbf afbf
+2415 afc0 afc0 afc0 * 5743 * 8ea1d7c3,d7c3,8ea1d7c3v,d7c3v 7d20 e7b4a0 7d20 00007d20 afc0 afc0 afc0 afc0 afc0 afc0 afc0
+2416 afc1 afc1 afc1 * 5744 * 8ea1d7c4,d7c4,8ea1d7c4v,d7c4v 7d22 e7b4a2 7d22 00007d22 afc1 afc1 afc1 afc1 afc1 afc1 afc1
+2417 afc2 afc2 afc2 * 5745 * 8ea1d7c5,d7c5,8ea1d7c5v,d7c5v 7d14 e7b494 7d14 00007d14 afc2 afc2 afc2 afc2 afc2 afc2 afc2
+2418 afc3 afc3 afc3 * 5746 * 8ea1d7c6,d7c6,8ea1d7c6v,d7c6v 7d10 e7b490 7d10 00007d10 afc3 afc3 afc3 afc3 afc3 afc3 afc3
+2419 afc4 afc4 afc4 * 5747 * 8ea1d7c7,d7c7,8ea1d7c7v,d7c7v 7d15 e7b495 7d15 00007d15 afc4 afc4 afc4 afc4 afc4 afc4 afc4
+2420 afc5 afc5 afc5 * 5748 * 8ea1d7c8,d7c8,8ea1d7c8v,d7c8v 7d1a e7b49a 7d1a 00007d1a afc5 afc5 afc5 afc5 afc5 afc5 afc5
+2421 afc6 afc6 afc6 * 5749 * 8ea1d7c9,d7c9,8ea1d7c9v,d7c9v 7d1c e7b49c 7d1c 00007d1c afc6 afc6 afc6 afc6 afc6 afc6 afc6
+2422 afc7 afc7 afc7 * 574a * 8ea1d7ca,d7ca,8ea1d7cav,d7cav 7d0d e7b48d 7d0d 00007d0d afc7 afc7 afc7 afc7 afc7 afc7 afc7
+2423 afc8 afc8 afc8 * 574b * 8ea1d7cb,d7cb,8ea1d7cbv,d7cbv 7d19 e7b499 7d19 00007d19 afc8 afc8 afc8 afc8 afc8 afc8 afc8
+2424 afc9 afc9 afc9 * 574c * 8ea1d7cc,d7cc,8ea1d7ccv,d7ccv 7d1b e7b49b 7d1b 00007d1b afc9 afc9 afc9 afc9 afc9 afc9 afc9
+2425 afca afca afca * 574d * 8ea1d7cd,d7cd,8ea1d7cdv,d7cdv 7f3a e7bcba 7f3a 00007f3a afca afca afca afca afca afca afca
+2426 afcb afcb afcb * 574e * 8ea1d7ce,d7ce,8ea1d7cev,d7cev 7f5f e7bd9f 7f5f 00007f5f afcb afcb afcb afcb afcb afcb afcb
+2427 afcc afcc afcc * 574f * 8ea1d7cf,d7cf,8ea1d7cfv,d7cfv 7f94 e7be94 7f94 00007f94 afcc afcc afcc afcc afcc afcc afcc
+2428 afcd afcd afcd * 5750 * 8ea1d7d0,d7d0,8ea1d7d0v,d7d0v 7fc5 e7bf85 7fc5 00007fc5 afcd afcd afcd afcd afcd afcd afcd
+2429 afce afce afce * 5751 * 8ea1d7d1,d7d1,8ea1d7d1v,d7d1v 7fc1 e7bf81 7fc1 00007fc1 afce afce afce afce afce afce afce
+2430 afcf afcf afcf * 5752 * 8ea1d7d2,d7d2,8ea1d7d2v,d7d2v 8006 e88086 8006 00008006 afcf afcf afcf afcf afcf afcf afcf
+2431 acfe acfe acfe * 5753 * 8ea1d7d3,d7d3,8ea1d7d3v,d7d3v 8004 e88084 8004 00008004 acfe acfe acfe acfe acfe acfe acfe
+2432 afd0 afd0 afd0 * 5754 * 8ea1d7d4,d7d4,8ea1d7d4v,d7d4v 8018 e88098 8018 00008018 afd0 afd0 afd0 afd0 afd0 afd0 afd0
+2433 afd1 afd1 afd1 * 5755 * 8ea1d7d5,d7d5,8ea1d7d5v,d7d5v 8015 e88095 8015 00008015 afd1 afd1 afd1 afd1 afd1 afd1 afd1
+2434 afd2 afd2 afd2 * 5756 * 8ea1d7d6,d7d6,8ea1d7d6v,d7d6v 8019 e88099 8019 00008019 afd2 afd2 afd2 afd2 afd2 afd2 afd2
+2435 afd3 afd3 afd3 * 5757 * 8ea1d7d7,d7d7,8ea1d7d7v,d7d7v 8017 e88097 8017 00008017 afd3 afd3 afd3 afd3 afd3 afd3 afd3
+2436 afd4 afd4 afd4 * 5758 * 8ea1d7d8,d7d8,8ea1d7d8v,d7d8v 803d e880bd 803d 0000803d afd4 afd4 afd4 afd4 afd4 afd4 afd4
+2437 afd5 afd5 afd5 * 5759 * 8ea1d7d9,d7d9,8ea1d7d9v,d7d9v 803f e880bf 803f 0000803f afd5 afd5 afd5 afd5 afd5 afd5 afd5
+2438 afd6 afd6 afd6 * 575a * 8ea1d7da,d7da,8ea1d7dav,d7dav 80f1 e883b1 80f1 000080f1 afd6 afd6 afd6 afd6 afd6 afd6 afd6
+2439 afd7 afd7 afd7 * 575b * 8ea1d7db,d7db,8ea1d7dbv,d7dbv 8102 e88482 8102 00008102 afd7 afd7 afd7 afd7 afd7 afd7 afd7
+2440 afd8 afd8 afd8 * 575c * 8ea1d7dc,d7dc,8ea1d7dcv,d7dcv 80f0 e883b0 80f0 000080f0 afd8 afd8 afd8 afd8 afd8 afd8 afd8
+2441 afd9 afd9 afd9 * 575d * 8ea1d7dd,d7dd,8ea1d7ddv,d7ddv 8105 e88485 8105 00008105 afd9 afd9 afd9 afd9 afd9 afd9 afd9
+2442 afda afda afda * 575e * 8ea1d7de,d7de,8ea1d7dev,d7dev 80ed e883ad 80ed 000080ed afda afda afda afda afda afda afda
+2443 afdb afdb afdb * 575f * 8ea1d7df,d7df,8ea1d7dfv,d7dfv 80f4 e883b4 80f4 000080f4 afdb afdb afdb afdb afdb afdb afdb
+2444 afdc afdc afdc * 5760 * 8ea1d7e0,d7e0,8ea1d7e0v,d7e0v 8106 e88486 8106 00008106 afdc afdc afdc afdc afdc afdc afdc
+2445 afdd afdd afdd * 5761 * 8ea1d7e1,d7e1,8ea1d7e1v,d7e1v 80f8 e883b8 80f8 000080f8 afdd afdd afdd afdd afdd afdd afdd
+2446 afde afde afde * 5762 * 8ea1d7e2,d7e2,8ea1d7e2v,d7e2v 80f3 e883b3 80f3 000080f3 afde afde afde afde afde afde afde
+2447 afdf afdf afdf * 5763 * 8ea1d7e3,d7e3,8ea1d7e3v,d7e3v 8108 e88488 8108 00008108 afdf afdf afdf afdf afdf afdf afdf
+2448 afe0 afe0 afe0 * 5764 * 8ea1d7e4,d7e4,8ea1d7e4v,d7e4v 80fd e883bd 80fd 000080fd afe0 afe0 afe0 afe0 afe0 afe0 afe0
+2449 afe1 afe1 afe1 * 5765 * 8ea1d7e5,d7e5,8ea1d7e5v,d7e5v 810a e8848a 810a 0000810a afe1 afe1 afe1 afe1 afe1 afe1 afe1
+2450 afe2 afe2 afe2 * 5766 * 8ea1d7e6,d7e6,8ea1d7e6v,d7e6v 80fc e883bc 80fc 000080fc afe2 afe2 afe2 afe2 afe2 afe2 afe2
+2451 afe3 afe3 afe3 * 5767 * 8ea1d7e7,d7e7,8ea1d7e7v,d7e7v 80ef e883af 80ef 000080ef afe3 afe3 afe3 afe3 afe3 afe3 afe3
+2452 afe4 afe4 afe4 * 5768 * 8ea1d7e8,d7e8,8ea1d7e8v,d7e8v 81ed e887ad 81ed 000081ed afe4 afe4 afe4 afe4 afe4 afe4 afe4
+2453 afe5 afe5 afe5 * 5769 * 8ea1d7e9,d7e9,8ea1d7e9v,d7e9v 81ec e887ac 81ec 000081ec afe5 afe5 afe5 afe5 afe5 afe5 afe5
+2454 afe6 afe6 afe6 * 576a * 8ea1d7ea,d7ea,8ea1d7eav,d7eav 8200 e88880 8200 00008200 afe6 afe6 afe6 afe6 afe6 afe6 afe6
+2455 afe7 afe7 afe7 * 576b * 8ea1d7eb,d7eb,8ea1d7ebv,d7ebv 8210 e88890 8210 00008210 afe7 afe7 afe7 afe7 afe7 afe7 afe7
+2456 afe8 afe8 afe8 * 576c * 8ea1d7ec,d7ec,8ea1d7ecv,d7ecv 822a e888aa 822a 0000822a afe8 afe8 afe8 afe8 afe8 afe8 afe8
+2457 afe9 afe9 afe9 * 576d * 8ea1d7ed,d7ed,8ea1d7edv,d7edv 822b e888ab 822b 0000822b afe9 afe9 afe9 afe9 afe9 afe9 afe9
+2458 afea afea afea * 576e * 8ea1d7ee,d7ee,8ea1d7eev,d7eev 8228 e888a8 8228 00008228 afea afea afea afea afea afea afea
+2459 afeb afeb afeb * 576f * 8ea1d7ef,d7ef,8ea1d7efv,d7efv 822c e888ac 822c 0000822c afeb afeb afeb afeb afeb afeb afeb
+2460 afec afec afec * 5770 * 8ea1d7f0,d7f0,8ea1d7f0v,d7f0v 82bb e88abb 82bb 000082bb afec afec afec afec afec afec afec
+2461 afed afed afed * 5771 * 8ea1d7f1,d7f1,8ea1d7f1v,d7f1v 832b e88cab 832b 0000832b afed afed afed afed afed afed afed
+2462 afee afee afee * 5772 * 8ea1d7f2,d7f2,8ea1d7f2v,d7f2v 8352 e88d92 8352 00008352 afee afee afee afee afee afee afee
+2463 afef afef afef * 5773 * 8ea1d7f3,d7f3,8ea1d7f3v,d7f3v 8354 e88d94 8354 00008354 afef afef afef afef afef afef afef
+2464 aff0 aff0 aff0 * 5774 * 8ea1d7f4,d7f4,8ea1d7f4v,d7f4v 834a e88d8a 834a 0000834a aff0 aff0 aff0 aff0 aff0 aff0 aff0
+2465 aff1 aff1 aff1 * 5775 * 8ea1d7f5,d7f5,8ea1d7f5v,d7f5v 8338 e88cb8 8338 00008338 aff1 aff1 aff1 aff1 aff1 aff1 aff1
+2466 aff2 aff2 aff2 * 5776 * 8ea1d7f6,d7f6,8ea1d7f6v,d7f6v 8350 e88d90 8350 00008350 aff2 aff2 aff2 aff2 aff2 aff2 aff2
+2467 aff3 aff3 aff3 * 5777 * 8ea1d7f7,d7f7,8ea1d7f7v,d7f7v 8349 e88d89 8349 00008349 aff3 aff3 aff3 aff3 aff3 aff3 aff3
+2468 aff4 aff4 aff4 * 5778 * 8ea1d7f8,d7f8,8ea1d7f8v,d7f8v 8335 e88cb5 8335 00008335 aff4 aff4 aff4 aff4 aff4 aff4 aff4
+2469 aff5 aff5 aff5 * 5779 * 8ea1d7f9,d7f9,8ea1d7f9v,d7f9v 8334 e88cb4 8334 00008334 aff5 aff5 aff5 aff5 aff5 aff5 aff5
+2470 aff6 aff6 aff6 * 577a * 8ea1d7fa,d7fa,8ea1d7fav,d7fav 834f e88d8f 834f 0000834f aff6 aff6 aff6 aff6 aff6 aff6 aff6
+2471 aff7 aff7 aff7 * 577b * 8ea1d7fb,d7fb,8ea1d7fbv,d7fbv 8332 e88cb2 8332 00008332 aff7 aff7 aff7 aff7 aff7 aff7 aff7
+2472 aff8 aff8 aff8 * 577c * 8ea1d7fc,d7fc,8ea1d7fcv,d7fcv 8339 e88cb9 8339 00008339 aff8 aff8 aff8 aff8 aff8 aff8 aff8
+2473 aff9 aff9 aff9 * 577d * 8ea1d7fd,d7fd,8ea1d7fdv,d7fdv 8336 e88cb6 8336 00008336 aff9 aff9 aff9 aff9 aff9 aff9 aff9
+2474 affa affa affa * 577e * 8ea1d7fe,d7fe,8ea1d7fev,d7fev 8317 e88c97 8317 00008317 affa affa affa affa affa affa affa
+2475 affb affb affb * 5821 * 8ea1d8a1,d8a1,8ea1d8a1v,d8a1v 8340 e88d80 8340 00008340 affb affb affb affb affb affb affb
+2476 affc affc affc * 5822 * 8ea1d8a2,d8a2,8ea1d8a2v,d8a2v 8331 e88cb1 8331 00008331 affc affc affc affc affc affc affc
+2477 affd affd affd * 5823 * 8ea1d8a3,d8a3,8ea1d8a3v,d8a3v 8328 e88ca8 8328 00008328 affd affd affd affd affd affd affd
+2478 affe affe affe * 5824 * 8ea1d8a4,d8a4,8ea1d8a4v,d8a4v 8343 e88d83 8343 00008343 affe affe affe affe affe affe affe
+2479 b040 b040 b040 * 5825 * 8ea1d8a5,d8a5,8ea1d8a5v,d8a5v 8654 e89994 8654 00008654 b040 b040 b040 b040 b040 b040 b040
+2480 b041 b041 b041 * 5826 * 8ea1d8a6,d8a6,8ea1d8a6v,d8a6v 868a e89a8a 868a 0000868a b041 b041 b041 b041 b041 b041 b041
+2481 b042 b042 b042 * 5827 * 8ea1d8a7,d8a7,8ea1d8a7v,d8a7v 86aa e89aaa 86aa 000086aa b042 b042 b042 b042 b042 b042 b042
+2482 b043 b043 b043 * 5828 * 8ea1d8a8,d8a8,8ea1d8a8v,d8a8v 8693 e89a93 8693 00008693 b043 b043 b043 b043 b043 b043 b043
+2483 b044 b044 b044 * 5829 * 8ea1d8a9,d8a9,8ea1d8a9v,d8a9v 86a4 e89aa4 86a4 000086a4 b044 b044 b044 b044 b044 b044 b044
+2484 b045 b045 b045 * 582a * 8ea1d8aa,d8aa,8ea1d8aav,d8aav 86a9 e89aa9 86a9 000086a9 b045 b045 b045 b045 b045 b045 b045
+2485 b046 b046 b046 * 582b * 8ea1d8ab,d8ab,8ea1d8abv,d8abv 868c e89a8c 868c 0000868c b046 b046 b046 b046 b046 b046 b046
+2486 b047 b047 b047 * 582c * 8ea1d8ac,d8ac,8ea1d8acv,d8acv 86a3 e89aa3 86a3 000086a3 b047 b047 b047 b047 b047 b047 b047
+2487 b048 b048 b048 * 582d * 8ea1d8ad,d8ad,8ea1d8adv,d8adv 869c e89a9c 869c 0000869c b048 b048 b048 b048 b048 b048 b048
+2488 b049 b049 b049 * 582e * 8ea1d8ae,d8ae,8ea1d8aev,d8aev 8870 e8a1b0 8870 00008870 b049 b049 b049 b049 b049 b049 b049
+2489 b04a b04a b04a * 582f * 8ea1d8af,d8af,8ea1d8afv,d8afv 8877 e8a1b7 8877 00008877 b04a b04a b04a b04a b04a b04a b04a
+2490 b04b b04b b04b * 5830 * 8ea1d8b0,d8b0,8ea1d8b0v,d8b0v 8881 e8a281 8881 00008881 b04b b04b b04b b04b b04b b04b b04b
+2491 b04c b04c b04c * 5831 * 8ea1d8b1,d8b1,8ea1d8b1v,d8b1v 8882 e8a282 8882 00008882 b04c b04c b04c b04c b04c b04c b04c
+2492 b04d b04d b04d * 5832 * 8ea1d8b2,d8b2,8ea1d8b2v,d8b2v 887d e8a1bd 887d 0000887d b04d b04d b04d b04d b04d b04d b04d
+2493 b04e b04e b04e * 5833 * 8ea1d8b3,d8b3,8ea1d8b3v,d8b3v 8879 e8a1b9 8879 00008879 b04e b04e b04e b04e b04e b04e b04e
+2494 b04f b04f b04f * 5834 * 8ea1d8b4,d8b4,8ea1d8b4v,d8b4v 8a18 e8a898 8a18 00008a18 b04f b04f b04f b04f b04f b04f b04f
+2495 b050 b050 b050 * 5835 * 8ea1d8b5,d8b5,8ea1d8b5v,d8b5v 8a10 e8a890 8a10 00008a10 b050 b050 b050 b050 b050 b050 b050
+2496 b051 b051 b051 * 5836 * 8ea1d8b6,d8b6,8ea1d8b6v,d8b6v 8a0e e8a88e 8a0e 00008a0e b051 b051 b051 b051 b051 b051 b051
+2497 b052 b052 b052 * 5837 * 8ea1d8b7,d8b7,8ea1d8b7v,d8b7v 8a0c e8a88c 8a0c 00008a0c b052 b052 b052 b052 b052 b052 b052
+2498 b053 b053 b053 * 5838 * 8ea1d8b8,d8b8,8ea1d8b8v,d8b8v 8a15 e8a895 8a15 00008a15 b053 b053 b053 b053 b053 b053 b053
+2499 b054 b054 b054 * 5839 * 8ea1d8b9,d8b9,8ea1d8b9v,d8b9v 8a0a e8a88a 8a0a 00008a0a b054 b054 b054 b054 b054 b054 b054
+2500 b055 b055 b055 * 583a * 8ea1d8ba,d8ba,8ea1d8bav,d8bav 8a17 e8a897 8a17 00008a17 b055 b055 b055 b055 b055 b055 b055
+2501 b056 b056 b056 * 583b * 8ea1d8bb,d8bb,8ea1d8bbv,d8bbv 8a13 e8a893 8a13 00008a13 b056 b056 b056 b056 b056 b056 b056
+2502 b057 b057 b057 * 583c * 8ea1d8bc,d8bc,8ea1d8bcv,d8bcv 8a16 e8a896 8a16 00008a16 b057 b057 b057 b057 b057 b057 b057
+2503 b058 b058 b058 * 583d * 8ea1d8bd,d8bd,8ea1d8bdv,d8bdv 8a0f e8a88f 8a0f 00008a0f b058 b058 b058 b058 b058 b058 b058
+2504 b059 b059 b059 * 583e * 8ea1d8be,d8be,8ea1d8bev,d8bev 8a11 e8a891 8a11 00008a11 b059 b059 b059 b059 b059 b059 b059
+2505 b05a b05a b05a * 583f * 8ea1d8bf,d8bf,8ea1d8bfv,d8bfv 8c48 e8b188 8c48 00008c48 b05a b05a b05a b05a b05a b05a b05a
+2506 b05b b05b b05b * 5840 * 8ea1d8c0,d8c0,8ea1d8c0v,d8c0v 8c7a e8b1ba 8c7a 00008c7a b05b b05b b05b b05b b05b b05b b05b
+2507 b05c b05c b05c * 5841 * 8ea1d8c1,d8c1,8ea1d8c1v,d8c1v 8c79 e8b1b9 8c79 00008c79 b05c b05c b05c b05c b05c b05c b05c
+2508 b05d b05d b05d * 5842 * 8ea1d8c2,d8c2,8ea1d8c2v,d8c2v 8ca1 e8b2a1 8ca1 00008ca1 b05d b05d b05d b05d b05d b05d b05d
+2509 b05e b05e b05e * 5843 * 8ea1d8c3,d8c3,8ea1d8c3v,d8c3v 8ca2 e8b2a2 8ca2 00008ca2 b05e b05e b05e b05e b05e b05e b05e
+2510 b05f b05f b05f * 5844 * 8ea1d8c4,d8c4,8ea1d8c4v,d8c4v 8d77 e8b5b7,ee918a 8d77,e44a 00008d77,0000e44a 8ffe,b05f b05f b05f b05f b05f b05f 8ffe,b05f
+2511 b060 b060 b060 * 5845 * 8ea1d8c5,d8c5,8ea1d8c5v,d8c5v 8eac e8baac 8eac 00008eac b060 b060 b060 b060 b060 b060 b060
+2512 b061 b061 b061 * 5846 * 8ea1d8c6,d8c6,8ea1d8c6v,d8c6v 8ed2 e8bb92 8ed2 00008ed2 b061 b061 b061 b061 b061 b061 b061
+2513 b062 b062 b062 * 5847 * 8ea1d8c7,d8c7,8ea1d8c7v,d8c7v 8ed4 e8bb94 8ed4 00008ed4 b062 b062 b062 b062 b062 b062 b062
+2514 b063 b063 b063 * 5848 * 8ea1d8c8,d8c8,8ea1d8c8v,d8c8v 8ecf e8bb8f 8ecf 00008ecf b063 b063 b063 b063 b063 b063 b063
+2515 b064 b064 b064 * 5849 * 8ea1d8c9,d8c9,8ea1d8c9v,d8c9v 8fb1 e8beb1 8fb1 00008fb1 b064 b064 b064 b064 b064 b064 b064
+2516 b065 b065 b065 * 584a * 8ea1d8ca,d8ca,8ea1d8cav,d8cav 9001 e98081 9001 00009001 b065 b065 b065 b065 b065 b065 b065
+2517 b066 b066 b066 * 584b * 8ea1d8cb,d8cb,8ea1d8cbv,d8cbv 9006 e98086 9006 00009006 b066 b066 b066 b066 b066 b066 b066
+2518 b067 b067 b067 * 584c * 8ea1d8cc,d8cc,8ea1d8ccv,d8ccv 8ff7 e8bfb7 8ff7 00008ff7 b067 b067 b067 b067 b067 b067 b067
+2519 b068 b068 b068 * 584d * 8ea1d8cd,d8cd,8ea1d8cdv,d8cdv 9000 e98080 9000 00009000 b068 b068 b068 b068 b068 b068 b068
+2520 b069 b069 b069 * 584e * 8ea1d8ce,d8ce,8ea1d8cev,d8cev 8ffa e8bfba 8ffa 00008ffa b069 b069 b069 b069 b069 b069 b069
+2521 b06a b06a b06a * 584f * 8ea1d8cf,d8cf,8ea1d8cfv,d8cfv 8ff4 e8bfb4 8ff4 00008ff4 b06a b06a b06a b06a b06a b06a b06a
+2522 b06b b06b b06b * 5850 * 8ea1d8d0,d8d0,8ea1d8d0v,d8d0v 9003 e98083 9003 00009003 b06b b06b b06b b06b b06b b06b b06b
+2523 b06c b06c b06c * 5851 * 8ea1d8d1,d8d1,8ea1d8d1v,d8d1v 8ffd e8bfbd 8ffd 00008ffd b06c b06c b06c b06c b06c b06c b06c
+2524 b06d b06d b06d * 5852 * 8ea1d8d2,d8d2,8ea1d8d2v,d8d2v 9005 e98085 9005 00009005 b06d b06d b06d b06d b06d b06d b06d
+2525 b06e b06e b06e * 5853 * 8ea1d8d3,d8d3,8ea1d8d3v,d8d3v 8ff8 e8bfb8 8ff8 00008ff8 b06e b06e b06e b06e b06e b06e b06e
+2526 b06f b06f b06f * 5854 * 8ea1d8d4,d8d4,8ea1d8d4v,d8d4v 9095 e98295 9095 00009095 b06f b06f b06f b06f b06f b06f b06f
+2527 b070 b070 b070 * 5855 * 8ea1d8d5,d8d5,8ea1d8d5v,d8d5v 90e1 e983a1 90e1 000090e1 b070 b070 b070 b070 b070 b070 b070
+2528 b071 b071 b071 * 5856 * 8ea1d8d6,d8d6,8ea1d8d6v,d8d6v 90dd e9839d 90dd 000090dd b071 b071 b071 b071 b071 b071 b071
+2529 b072 b072 b072 * 5857 * 8ea1d8d7,d8d7,8ea1d8d7v,d8d7v 90e2 e983a2 90e2 000090e2 b072 b072 b072 b072 b072 b072 b072
+2530 b073 b073 b073 * 5858 * 8ea1d8d8,d8d8,8ea1d8d8v,d8d8v 9152 e98592 9152 00009152 b073 b073 b073 b073 b073 b073 b073
+2531 b074 b074 b074 * 5859 * 8ea1d8d9,d8d9,8ea1d8d9v,d8d9v 914d e9858d 914d 0000914d b074 b074 b074 b074 b074 b074 b074
+2532 b075 b075 b075 * 585a * 8ea1d8da,d8da,8ea1d8dav,d8dav 914c e9858c 914c 0000914c b075 b075 b075 b075 b075 b075 b075
+2533 b076 b076 b076 * 585b * 8ea1d8db,d8db,8ea1d8dbv,d8dbv 91d8 e98798 91d8 000091d8 b076 b076 b076 b076 b076 b076 b076
+2534 b077 b077 b077 * 585c * 8ea1d8dc,d8dc,8ea1d8dcv,d8dcv 91dd e9879d 91dd 000091dd b077 b077 b077 b077 b077 b077 b077
+2535 b078 b078 b078 * 585d * 8ea1d8dd,d8dd,8ea1d8ddv,d8ddv 91d7 e98797 91d7 000091d7 b078 b078 b078 b078 b078 b078 b078
+2536 b079 b079 b079 * 585e * 8ea1d8de,d8de,8ea1d8dev,d8dev 91dc e9879c 91dc 000091dc b079 b079 b079 b079 b079 b079 b079
+2537 b07a b07a b07a * 585f * 8ea1d8df,d8df,8ea1d8dfv,d8dfv 91d9 e98799 91d9 000091d9 b07a b07a b07a b07a b07a b07a b07a
+2538 b07b b07b b07b * 5860 * 8ea1d8e0,d8e0,8ea1d8e0v,d8e0v 9583 e99683 9583 00009583 b07b b07b b07b b07b b07b b07b b07b
+2539 b07c b07c b07c * 5861 * 8ea1d8e1,d8e1,8ea1d8e1v,d8e1v 9662 e999a2 9662 00009662 b07c b07c b07c b07c b07c b07c b07c
+2540 b07d b07d b07d * 5862 * 8ea1d8e2,d8e2,8ea1d8e2v,d8e2v 9663 e999a3 9663 00009663 b07d b07d b07d b07d b07d b07d b07d
+2541 b07e b07e b07e * 5863 * 8ea1d8e3,d8e3,8ea1d8e3v,d8e3v 9661 e999a1 9661 00009661 b07e b07e b07e b07e b07e b07e b07e
+2542 b0a1 b0a1 b0a1 * 5864 * 8ea1d8e4,d8e4,8ea1d8e4v,d8e4v 965b e9999b 965b 0000965b b0a1 b0a1 b0a1 b0a1 b0a1 b0a1 b0a1
+2543 b0a2 b0a2 b0a2 * 5865 * 8ea1d8e5,d8e5,8ea1d8e5v,d8e5v 965d e9999d 965d 0000965d b0a2 b0a2 b0a2 b0a2 b0a2 b0a2 b0a2
+2544 b0a3 b0a3 b0a3 * 5866 * 8ea1d8e6,d8e6,8ea1d8e6v,d8e6v 9664 e999a4 9664 00009664 b0a3 b0a3 b0a3 b0a3 b0a3 b0a3 b0a3
+2545 b0a4 b0a4 b0a4 * 5867 * 8ea1d8e7,d8e7,8ea1d8e7v,d8e7v 9658 e99998 9658 00009658 b0a4 b0a4 b0a4 b0a4 b0a4 b0a4 b0a4
+2546 b0a5 b0a5 b0a5 * 5868 * 8ea1d8e8,d8e8,8ea1d8e8v,d8e8v 965e e9999e 965e 0000965e b0a5 b0a5 b0a5 b0a5 b0a5 b0a5 b0a5
+2547 b0a6 b0a6 b0a6 * 5869 * 8ea1d8e9,d8e9,8ea1d8e9v,d8e9v 96bb e99abb 96bb 000096bb b0a6 b0a6 b0a6 b0a6 b0a6 b0a6 b0a6
+2548 b0a7 b0a7 b0a7 * 586a * 8ea1d8ea,d8ea,8ea1d8eav,d8eav 98e2 e9a3a2 98e2 000098e2 b0a7 b0a7 b0a7 b0a7 b0a7 b0a7 b0a7
+2549 b0a8 b0a8 b0a8 * 287c,586b * 8ea1a8fc,8ea1d8eb,a8fc,d8eb,8ea1a8fcv,8ea1d8ebv,a8fcv,d8ebv 99ac e9a6ac,e2beba 99ac,2fba 000099ac,00002fba b0a8 b0a8 b0a8 b0a8 b0a8 b0a8 b0a8
+2550 b0a9 b0a9 b0a9 * 287d,586c * 8ea1a8fd,8ea1d8ec,a8fd,d8ec,8ea1a8fdv,8ea1d8ecv,a8fdv,d8ecv 2ee3,9aa8 e9aaa8,e2bebb 9aa8,2fbb 00009aa8,00002fbb b0a9 b0a9 b0a9 b0a9 b0a9 b0a9 b0a9
+2551 b0aa b0aa b0aa * 287e,586d * 8ea1a8fe,8ea1d8ed,a8fe,d8ed,8ea1a8fev,8ea1d8edv,a8fev,d8edv 9ad8 e9ab98,e2bebc 9ad8,2fbc 00009ad8,00002fbc b0aa b0aa b0aa b0aa b0aa b0aa b0aa
+2552 b0ab b0ab b0ab * 2922,586e * 8ea1a9a2,8ea1d8ee,a9a2,d8ee,8ea1a9a2v,8ea1d8eev,a9a2v,d8eev 9b25 e2bebe,e9aca5 2fbe,9b25 00002fbe,00009b25 b0ab b0ab b0ab b0ab b0ab b0ab b0ab
+2553 b0ac b0ac b0ac * 2924,586f * 8ea1a9a4,8ea1d8ef,a9a4,d8ef,8ea1a9a4v,8ea1d8efv,a9a4v,d8efv 9b32 e9acb2,e2bf80 9b32,2fc0 00009b32,00002fc0 b0ac b0ac b0ac b0ac b0ac b0ac b0ac
+2554 b0ad b0ad b0ad * 2925,5870 * 8ea1a9a5,8ea1d8f0,a9a5,d8f0,8ea1a9a5v,8ea1d8f0v,a9a5v,d8f0v 9b3c e9acbc,e2bf81 9b3c,2fc1 00009b3c,00002fc1 b0ad b0ad b0ad b0ad b0ad b0ad b0ad
+2555 b0ae b0ae b0ae * 5871 * 8ea1d8f1,d8f1,8ea1d8f1v,d8f1v 4e7e e4b9be 4e7e 00004e7e b0ae b0ae b0ae b0ae b0ae b0ae b0ae
+2556 b0af b0af b0af * 5872 * 8ea1d8f2,d8f2,8ea1d8f2v,d8f2v 507a e581ba 507a 0000507a b0af b0af b0af b0af b0af b0af b0af
+2557 b0b0 b0b0 b0b0 * 5873 * 8ea1d8f3,d8f3,8ea1d8f3v,d8f3v 507d e581bd,ee80a6 507d,e026 0000507d,0000e026 fa66,b0b0 b0b0 b0b0 b0b0 b0b0 b0b0 fa66,b0b0
+2558 b0b1 b0b1 b0b1 * 5874 * 8ea1d8f4,d8f4,8ea1d8f4v,d8f4v 505c e5819c 505c 0000505c b0b1 b0b1 b0b1 b0b1 b0b1 b0b1 b0b1
+2559 b0b2 b0b2 b0b2 * 5875 * 8ea1d8f5,d8f5,8ea1d8f5v,d8f5v 5047 e58187 5047 00005047 b0b2 b0b2 b0b2 b0b2 b0b2 b0b2 b0b2
+2560 b0b3 b0b3 b0b3 * 5876 * 8ea1d8f6,d8f6,8ea1d8f6v,d8f6v 5043 e58183 5043 00005043 b0b3 b0b3 b0b3 b0b3 b0b3 b0b3 b0b3
+2561 b0b4 b0b4 b0b4 * 5877 * 8ea1d8f7,d8f7,8ea1d8f7v,d8f7v 504c e5818c 504c 0000504c b0b4 b0b4 b0b4 b0b4 b0b4 b0b4 b0b4
+2562 b0b5 b0b5 b0b5 * 5878 * 8ea1d8f8,d8f8,8ea1d8f8v,d8f8v 505a e5819a 505a 0000505a b0b5 b0b5 b0b5 b0b5 b0b5 b0b5 b0b5
+2563 b0b6 b0b6 b0b6 * 5879 * 8ea1d8f9,d8f9,8ea1d8f9v,d8f9v 5049 e58189 5049 00005049 b0b6 b0b6 b0b6 b0b6 b0b6 b0b6 b0b6
+2564 b0b7 b0b7 b0b7 * 587a * 8ea1d8fa,d8fa,8ea1d8fav,d8fav 5065 e581a5 5065 00005065 b0b7 b0b7 b0b7 b0b7 b0b7 b0b7 b0b7
+2565 b0b8 b0b8 b0b8 * 587b * 8ea1d8fb,d8fb,8ea1d8fbv,d8fbv 5076 e581b6 5076 00005076 b0b8 b0b8 b0b8 b0b8 b0b8 b0b8 b0b8
+2566 b0b9 b0b9 b0b9 * 587c * 8ea1d8fc,d8fc,8ea1d8fcv,d8fcv 504e e5818e 504e 0000504e b0b9 b0b9 b0b9 b0b9 b0b9 b0b9 b0b9
+2567 b0ba b0ba b0ba * 587d * 8ea1d8fd,d8fd,8ea1d8fdv,d8fdv 5055 e58195 5055 00005055 b0ba b0ba b0ba b0ba b0ba b0ba b0ba
+2568 b0bb b0bb b0bb * 587e * 8ea1d8fe,d8fe,8ea1d8fev,d8fev 5075 e581b5 5075 00005075 b0bb b0bb b0bb b0bb b0bb b0bb b0bb
+2569 b0bc b0bc b0bc * 5921 * 8ea1d9a1,d9a1,8ea1d9a1v,d9a1v 5074 e581b4 5074 00005074 b0bc b0bc b0bc b0bc b0bc b0bc b0bc
+2570 b0bd b0bd b0bd * 5922 * 8ea1d9a2,d9a2,8ea1d9a2v,d9a2v 5077 e581b7 5077 00005077 b0bd b0bd b0bd b0bd b0bd b0bd b0bd
+2571 b0be b0be b0be * 5923 * 8ea1d9a3,d9a3,8ea1d9a3v,d9a3v 504f e5818f 504f 0000504f b0be b0be b0be b0be b0be b0be b0be
+2572 b0bf b0bf b0bf * 5924 * 8ea1d9a4,d9a4,8ea1d9a4v,d9a4v 500f e5808f 500f 0000500f b0bf b0bf b0bf b0bf b0bf b0bf b0bf
+2573 b0c0 b0c0 b0c0 * 5925 * 8ea1d9a5,d9a5,8ea1d9a5v,d9a5v 506f e581af 506f 0000506f b0c0 b0c0 b0c0 b0c0 b0c0 b0c0 b0c0
+2574 b0c1 b0c1 b0c1 * 5926 * 8ea1d9a6,d9a6,8ea1d9a6v,d9a6v 506d e581ad 506d 0000506d b0c1 b0c1 b0c1 b0c1 b0c1 b0c1 b0c1
+2575 b0c2 b0c2 b0c2 * 5927 * 8ea1d9a7,d9a7,8ea1d9a7v,d9a7v 515c e5859c 515c 0000515c b0c2 b0c2 b0c2 b0c2 b0c2 b0c2 b0c2
+2576 b0c3 b0c3 b0c3 * 5928 * 8ea1d9a8,d9a8,8ea1d9a8v,d9a8v 5195 e58695 5195 00005195 b0c3 b0c3 b0c3 b0c3 b0c3 b0c3 b0c3
+2577 b0c4 b0c4 b0c4 * 5929 * 8ea1d9a9,d9a9,8ea1d9a9v,d9a9v 51f0 e587b0 51f0 000051f0 b0c4 b0c4 b0c4 b0c4 b0c4 b0c4 b0c4
+2578 b0c5 b0c5 b0c5 * 592a * 8ea1d9aa,d9aa,8ea1d9aav,d9aav 526a e589aa 526a 0000526a b0c5 b0c5 b0c5 b0c5 b0c5 b0c5 b0c5
+2579 b0c6 b0c6 b0c6 * 592b * 8ea1d9ab,d9ab,8ea1d9abv,d9abv 526f e589af 526f 0000526f b0c6 b0c6 b0c6 b0c6 b0c6 b0c6 b0c6
+2580 b0c7 b0c7 b0c7 * 592c * 8ea1d9ac,d9ac,8ea1d9acv,d9acv 52d2 e58b92 52d2 000052d2 b0c7 b0c7 b0c7 b0c7 b0c7 b0c7 b0c7
+2581 b0c8 b0c8 b0c8 * 592d * 8ea1d9ad,d9ad,8ea1d9adv,d9adv 52d9 e58b99 52d9 000052d9 b0c8 b0c8 b0c8 b0c8 b0c8 b0c8 b0c8
+2582 b0c9 b0c9 b0c9 * 592e * 8ea1d9ae,d9ae,8ea1d9aev,d9aev 52d8 e58b98 52d8 000052d8 b0c9 b0c9 b0c9 b0c9 b0c9 b0c9 b0c9
+2583 b0ca b0ca b0ca * 592f * 8ea1d9af,d9af,8ea1d9afv,d9afv 52d5 e58b95 52d5 000052d5 b0ca b0ca b0ca b0ca b0ca b0ca b0ca
+2584 b0cb b0cb b0cb * 5930 * 8ea1d9b0,d9b0,8ea1d9b0v,d9b0v 5310 e58c90 5310 00005310 b0cb b0cb b0cb b0cb b0cb b0cb b0cb
+2585 b0cc b0cc b0cc * 5931 * 8ea1d9b1,d9b1,8ea1d9b1v,d9b1v 530f e58c8f 530f 0000530f b0cc b0cc b0cc b0cc b0cc b0cc b0cc
+2586 b0cd b0cd b0cd * 5932 * 8ea1d9b2,d9b2,8ea1d9b2v,d9b2v 5319 e58c99 5319 00005319 b0cd b0cd b0cd b0cd b0cd b0cd b0cd
+2587 b0ce b0ce b0ce * 5933 * 8ea1d9b3,d9b3,8ea1d9b3v,d9b3v 533f e58cbf 533f 0000533f b0ce b0ce b0ce b0ce b0ce b0ce b0ce
+2588 b0cf b0cf b0cf * 5934 * 8ea1d9b4,d9b4,8ea1d9b4v,d9b4v 5340 e58d80 5340 00005340 b0cf b0cf b0cf b0cf b0cf b0cf b0cf
+2589 b0d0 b0d0 b0d0 * 5935 * 8ea1d9b5,d9b5,8ea1d9b5v,d9b5v 533e e58cbe 533e 0000533e b0d0 b0d0 b0d0 b0d0 b0d0 b0d0 b0d0
+2590 b0d1 b0d1 b0d1 * 5936 * 8ea1d9b6,d9b6,8ea1d9b6v,d9b6v 53c3 e58f83 53c3 000053c3 b0d1 b0d1 b0d1 b0d1 b0d1 b0d1 b0d1
+2591 b0d2 b0d2 b0d2 * 5937 * 8ea1d9b7,d9b7,8ea1d9b7v,d9b7v 66fc e69bbc 66fc 000066fc b0d2 b0d2 b0d2 b0d2 b0d2 b0d2 b0d2
+2592 b0d3 b0d3 b0d3 * 5938 * 8ea1d9b8,d9b8,8ea1d9b8v,d9b8v 5546 e59586 5546 00005546 b0d3 b0d3 b0d3 b0d3 b0d3 b0d3 b0d3
+2593 b0d4 b0d4 b0d4 * 5939 * 8ea1d9b9,d9b9,8ea1d9b9v,d9b9v 556a e595aa 556a 0000556a b0d4 b0d4 b0d4 b0d4 b0d4 b0d4 b0d4
+2594 b0d5 b0d5 b0d5 * 593a * 8ea1d9ba,d9ba,8ea1d9bav,d9bav 5566 e595a6 5566 00005566 b0d5 b0d5 b0d5 b0d5 b0d5 b0d5 b0d5
+2595 b0d6 b0d6 b0d6 * 593b * 8ea1d9bb,d9bb,8ea1d9bbv,d9bbv 5544 e59584 5544 00005544 b0d6 b0d6 b0d6 b0d6 b0d6 b0d6 b0d6
+2596 b0d7 b0d7 b0d7 * 593c * 8ea1d9bc,d9bc,8ea1d9bcv,d9bcv 555e e5959e 555e 0000555e b0d7 b0d7 b0d7 b0d7 b0d7 b0d7 b0d7
+2597 b0d8 b0d8 b0d8 * 593d * 8ea1d9bd,d9bd,8ea1d9bdv,d9bdv 5561 e595a1 5561 00005561 b0d8 b0d8 b0d8 b0d8 b0d8 b0d8 b0d8
+2598 b0d9 b0d9 b0d9 * 593e * 8ea1d9be,d9be,8ea1d9bev,d9bev 5543 e59583 5543 00005543 b0d9 b0d9 b0d9 b0d9 b0d9 b0d9 b0d9
+2599 b0da b0da b0da * 593f * 8ea1d9bf,d9bf,8ea1d9bfv,d9bfv 554a e5958a 554a 0000554a b0da b0da b0da b0da b0da b0da b0da
+2600 b0db b0db b0db * 5940 * 8ea1d9c0,d9c0,8ea1d9c0v,d9c0v 5531 e594b1 5531 00005531 b0db b0db b0db b0db b0db b0db b0db
+2601 b0dc b0dc b0dc * 5941 * 8ea1d9c1,d9c1,8ea1d9c1v,d9c1v 5556 e59596 5556 00005556 b0dc b0dc b0dc b0dc b0dc b0dc b0dc
+2602 b0dd b0dd b0dd * 5942 * 8ea1d9c2,d9c2,8ea1d9c2v,d9c2v 554f e5958f 554f 0000554f b0dd b0dd b0dd b0dd b0dd b0dd b0dd
+2603 b0de b0de b0de * 5943 * 8ea1d9c3,d9c3,8ea1d9c3v,d9c3v 5555 e59595 5555 00005555 b0de b0de b0de b0de b0de b0de b0de
+2604 b0df b0df b0df * 5944 * 8ea1d9c4,d9c4,8ea1d9c4v,d9c4v 552f e594af 552f 0000552f b0df b0df b0df b0df b0df b0df b0df
+2605 b0e0 b0e0 b0e0 * 5945 * 8ea1d9c5,d9c5,8ea1d9c5v,d9c5v 5564 e595a4 5564 00005564 b0e0 b0e0 b0e0 b0e0 b0e0 b0e0 b0e0
+2606 b0e1 b0e1 b0e1 * 5946 * 8ea1d9c6,d9c6,8ea1d9c6v,d9c6v 5538 e594b8 5538 00005538 b0e1 b0e1 b0e1 b0e1 b0e1 b0e1 b0e1
+2607 b0e2 b0e2 b0e2 * 5947 * 8ea1d9c7,d9c7,8ea1d9c7v,d9c7v 552e e594ae 552e 0000552e b0e2 b0e2 b0e2 b0e2 b0e2 b0e2 b0e2
+2608 b0e3 b0e3 b0e3 * 5948 * 8ea1d9c8,d9c8,8ea1d9c8v,d9c8v 555c e5959c 555c 0000555c b0e3 b0e3 b0e3 b0e3 b0e3 b0e3 b0e3
+2609 b0e4 b0e4 b0e4 * 5949 * 8ea1d9c9,d9c9,8ea1d9c9v,d9c9v 552c e594ac 552c 0000552c b0e4 b0e4 b0e4 b0e4 b0e4 b0e4 b0e4
+2610 b0e5 b0e5 b0e5 * 594a * 8ea1d9ca,d9ca,8ea1d9cav,d9cav 5563 e595a3 5563 00005563 b0e5 b0e5 b0e5 b0e5 b0e5 b0e5 b0e5
+2611 b0e6 b0e6 b0e6 * 594b * 8ea1d9cb,d9cb,8ea1d9cbv,d9cbv 5533 e594b3 5533 00005533 b0e6 b0e6 b0e6 b0e6 b0e6 b0e6 b0e6
+2612 b0e7 b0e7 b0e7 * 594c * 8ea1d9cc,d9cc,8ea1d9ccv,d9ccv 5541 e59581 5541 00005541 b0e7 b0e7 b0e7 b0e7 b0e7 b0e7 b0e7
+2613 b0e8 b0e8 b0e8 * 594d * 8ea1d9cd,d9cd,8ea1d9cdv,d9cdv 5557 e59597 5557 00005557 b0e8 b0e8 b0e8 b0e8 b0e8 b0e8 b0e8
+2614 b0e9 b0e9 b0e9 * 594e * 8ea1d9ce,d9ce,8ea1d9cev,d9cev 5708 e59c88 5708 00005708 b0e9 b0e9 b0e9 b0e9 b0e9 b0e9 b0e9
+2615 b0ea b0ea b0ea * 594f * 8ea1d9cf,d9cf,8ea1d9cfv,d9cfv 570b e59c8b 570b 0000570b b0ea b0ea b0ea b0ea b0ea b0ea b0ea
+2616 b0eb b0eb b0eb * 5950 * 8ea1d9d0,d9d0,8ea1d9d0v,d9d0v 5709 e59c89 5709 00005709 b0eb b0eb b0eb b0eb b0eb b0eb b0eb
+2617 b0ec b0ec b0ec * 5951 * 8ea1d9d1,d9d1,8ea1d9d1v,d9d1v 57df e59f9f 57df 000057df b0ec b0ec b0ec b0ec b0ec b0ec b0ec
+2618 b0ed b0ed b0ed * 5952 * 8ea1d9d2,d9d2,8ea1d9d2v,d9d2v 5805 e5a085 5805 00005805 b0ed b0ed b0ed b0ed b0ed b0ed b0ed
+2619 b0ee b0ee b0ee * 5953 * 8ea1d9d3,d9d3,8ea1d9d3v,d9d3v 580a e5a08a 580a 0000580a b0ee b0ee b0ee b0ee b0ee b0ee b0ee
+2620 b0ef b0ef b0ef * 5954 * 8ea1d9d4,d9d4,8ea1d9d4v,d9d4v 5806 e5a086 5806 00005806 b0ef b0ef b0ef b0ef b0ef b0ef b0ef
+2621 b0f0 b0f0 b0f0 * 5955 * 8ea1d9d5,d9d5,8ea1d9d5v,d9d5v 57e0 e59fa0 57e0 000057e0 b0f0 b0f0 b0f0 b0f0 b0f0 b0f0 b0f0
+2622 b0f1 b0f1 b0f1 * 5956 * 8ea1d9d6,d9d6,8ea1d9d6v,d9d6v 57e4 e59fa4 57e4 000057e4 b0f1 b0f1 b0f1 b0f1 b0f1 b0f1 b0f1
+2623 b0f2 b0f2 b0f2 * 5957 * 8ea1d9d7,d9d7,8ea1d9d7v,d9d7v 57fa e59fba 57fa 000057fa b0f2 b0f2 b0f2 b0f2 b0f2 b0f2 b0f2
+2624 b0f3 b0f3 b0f3 * 5958 * 8ea1d9d8,d9d8,8ea1d9d8v,d9d8v 5802 e5a082 5802 00005802 b0f3 b0f3 b0f3 b0f3 b0f3 b0f3 b0f3
+2625 b0f4 b0f4 b0f4 * 5959 * 8ea1d9d9,d9d9,8ea1d9d9v,d9d9v 5835 e5a0b5 5835 00005835 b0f4 b0f4 b0f4 b0f4 b0f4 b0f4 b0f4
+2626 b0f5 b0f5 b0f5 * 595a * 8ea1d9da,d9da,8ea1d9dav,d9dav 57f7 e59fb7 57f7 000057f7 b0f5 b0f5 b0f5 b0f5 b0f5 b0f5 b0f5
+2627 b0f6 b0f6 b0f6 * 595b * 8ea1d9db,d9db,8ea1d9dbv,d9dbv 57f9 e59fb9 57f9 000057f9 b0f6 b0f6 b0f6 b0f6 b0f6 b0f6 b0f6
+2628 b0f7 b0f7 b0f7 * 595c * 8ea1d9dc,d9dc,8ea1d9dcv,d9dcv 5920 e5a4a0 5920 00005920 b0f7 b0f7 b0f7 b0f7 b0f7 b0f7 b0f7
+2629 b0f8 b0f8 b0f8 * 595d * 8ea1d9dd,d9dd,8ea1d9ddv,d9ddv 5962 e5a5a2 5962 00005962 b0f8 b0f8 b0f8 b0f8 b0f8 b0f8 b0f8
+2630 b0f9 b0f9 b0f9 * 595e * 8ea1d9de,d9de,8ea1d9dev,d9dev 5a36 e5a8b6 5a36 00005a36 b0f9 b0f9 b0f9 b0f9 b0f9 b0f9 b0f9
+2631 b0fa b0fa b0fa * 595f * 8ea1d9df,d9df,8ea1d9dfv,d9dfv 5a41 e5a981 5a41 00005a41 b0fa b0fa b0fa b0fa b0fa b0fa b0fa
+2632 b0fb b0fb b0fb * 5960 * 8ea1d9e0,d9e0,8ea1d9e0v,d9e0v 5a49 e5a989 5a49 00005a49 b0fb b0fb b0fb b0fb b0fb b0fb b0fb
+2633 b0fc b0fc b0fc * 5961 * 8ea1d9e1,d9e1,8ea1d9e1v,d9e1v 5a66 e5a9a6 5a66 00005a66 b0fc b0fc b0fc b0fc b0fc b0fc b0fc
+2634 b0fd b0fd b0fd * 5962 * 8ea1d9e2,d9e2,8ea1d9e2v,d9e2v 5a6a e5a9aa 5a6a 00005a6a b0fd b0fd b0fd b0fd b0fd b0fd b0fd
+2635 b0fe b0fe b0fe * 5963 * 8ea1d9e3,d9e3,8ea1d9e3v,d9e3v 5a40 e5a980 5a40 00005a40 b0fe b0fe b0fe b0fe b0fe b0fe b0fe
+2636 b140 b140 b140 * 5964 * 8ea1d9e4,d9e4,8ea1d9e4v,d9e4v 5a3c e5a8bc 5a3c 00005a3c b140 b140 b140 b140 b140 b140 b140
+2637 b141 b141 b141 * 5965 * 8ea1d9e5,d9e5,8ea1d9e5v,d9e5v 5a62 e5a9a2 5a62 00005a62 b141 b141 b141 b141 b141 b141 b141
+2638 b142 b142 b142 * 5966 * 8ea1d9e6,d9e6,8ea1d9e6v,d9e6v 5a5a e5a99a 5a5a 00005a5a b142 b142 b142 b142 b142 b142 b142
+2639 b143 b143 b143 * 5967 * 8ea1d9e7,d9e7,8ea1d9e7v,d9e7v 5a46 e5a986 5a46 00005a46 b143 b143 b143 b143 b143 b143 b143
+2640 b144 b144 b144 * 5968 * 8ea1d9e8,d9e8,8ea1d9e8v,d9e8v 5a4a e5a98a 5a4a 00005a4a b144 b144 b144 b144 b144 b144 b144
+2641 b145 b145 b145 * 5969 * 8ea1d9e9,d9e9,8ea1d9e9v,d9e9v 5b70 e5adb0 5b70 00005b70 b145 b145 b145 b145 b145 b145 b145
+2642 b146 b146 b146 * 596a * 8ea1d9ea,d9ea,8ea1d9eav,d9eav 5bc7 e5af87 5bc7 00005bc7 b146 b146 b146 b146 b146 b146 b146
+2643 b147 b147 b147 * 596b * 8ea1d9eb,d9eb,8ea1d9ebv,d9ebv 5bc5 e5af85 5bc5 00005bc5 b147 b147 b147 b147 b147 b147 b147
+2644 b148 b148 b148 * 596c * 8ea1d9ec,d9ec,8ea1d9ecv,d9ecv 5bc4 e5af84 5bc4 00005bc4 b148 b148 b148 b148 b148 b148 b148
+2645 b149 b149 b149 * 596d * 8ea1d9ed,d9ed,8ea1d9edv,d9edv 5bc2 e5af82 5bc2 00005bc2 b149 b149 b149 b149 b149 b149 b149
+2646 b14a b14a b14a * 596e * 8ea1d9ee,d9ee,8ea1d9eev,d9eev 5bbf e5aebf 5bbf 00005bbf b14a b14a b14a b14a b14a b14a b14a
+2647 b14b b14b b14b * 596f * 8ea1d9ef,d9ef,8ea1d9efv,d9efv 5bc6 e5af86 5bc6 00005bc6 b14b b14b b14b b14b b14b b14b b14b
+2648 b14c b14c b14c * 5970 * 8ea1d9f0,d9f0,8ea1d9f0v,d9f0v 5c09 e5b089 5c09 00005c09 b14c b14c b14c b14c b14c b14c b14c
+2649 b14d b14d b14d * 5971 * 8ea1d9f1,d9f1,8ea1d9f1v,d9f1v 5c08 e5b088 5c08 00005c08 b14d b14d b14d b14d b14d b14d b14d
+2650 b14e b14e b14e * 5972 * 8ea1d9f2,d9f2,8ea1d9f2v,d9f2v 5c07 e5b087 5c07 00005c07 b14e b14e b14e b14e b14e b14e b14e
+2651 b14f b14f b14f * 5973 * 8ea1d9f3,d9f3,8ea1d9f3v,d9f3v 5c60 e5b1a0 5c60 00005c60 b14f b14f b14f b14f b14f b14f b14f
+2652 b150 b150 b150 * 5974 * 8ea1d9f4,d9f4,8ea1d9f4v,d9f4v 5c5c e5b19c 5c5c 00005c5c b150 b150 b150 b150 b150 b150 b150
+2653 b151 b151 b151 * 5975 * 8ea1d9f5,d9f5,8ea1d9f5v,d9f5v 5c5d e5b19d 5c5d 00005c5d b151 b151 b151 b151 b151 b151 b151
+2654 b152 b152 b152 * 5976 * 8ea1d9f6,d9f6,8ea1d9f6v,d9f6v 5d07 e5b487 5d07 00005d07 b152 b152 b152 b152 b152 b152 b152
+2655 b153 b153 b153 * 5977 * 8ea1d9f7,d9f7,8ea1d9f7v,d9f7v 5d06 e5b486 5d06 00005d06 b153 b153 b153 b153 b153 b153 b153
+2656 b154 b154 b154 * 5978 * 8ea1d9f8,d9f8,8ea1d9f8v,d9f8v 5d0e e5b48e 5d0e 00005d0e b154 b154 b154 b154 b154 b154 b154
+2657 b155 b155 b155 * 5979 * 8ea1d9f9,d9f9,8ea1d9f9v,d9f9v 5d1b e5b49b 5d1b 00005d1b b155 b155 b155 b155 b155 b155 b155
+2658 b156 b156 b156 * 597a * 8ea1d9fa,d9fa,8ea1d9fav,d9fav 5d16 e5b496 5d16 00005d16 b156 b156 b156 b156 b156 b156 b156
+2659 b157 b157 b157 * 597b * 8ea1d9fb,d9fb,8ea1d9fbv,d9fbv 5d22 e5b4a2 5d22 00005d22 b157 b157 b157 b157 b157 b157 b157
+2660 b158 b158 b158 * 597c * 8ea1d9fc,d9fc,8ea1d9fcv,d9fcv 5d11 e5b491 5d11 00005d11 b158 b158 b158 b158 b158 b158 b158
+2661 b159 b159 b159 * 597d * 8ea1d9fd,d9fd,8ea1d9fdv,d9fdv 5d29 e5b4a9 5d29 00005d29 b159 b159 b159 b159 b159 b159 b159
+2662 b15a b15a b15a * 597e * 8ea1d9fe,d9fe,8ea1d9fev,d9fev 5d14 e5b494 5d14 00005d14 b15a b15a b15a b15a b15a b15a b15a
+2663 b15b b15b b15b * 5a21 * 8ea1daa1,daa1,8ea1daa1v,daa1v 5d19 e5b499 5d19 00005d19 b15b b15b b15b b15b b15b b15b b15b
+2664 b15c b15c b15c * 5a22 * 8ea1daa2,daa2,8ea1daa2v,daa2v 5d24 e5b4a4 5d24 00005d24 b15c b15c b15c b15c b15c b15c b15c
+2665 b15d b15d b15d * 5a23 * 8ea1daa3,daa3,8ea1daa3v,daa3v 5d27 e5b4a7 5d27 00005d27 b15d b15d b15d b15d b15d b15d b15d
+2666 b15e b15e b15e * 5a24 * 8ea1daa4,daa4,8ea1daa4v,daa4v 5d17 e5b497 5d17 00005d17 b15e b15e b15e b15e b15e b15e b15e
+2667 b15f b15f b15f * 5a25 * 8ea1daa5,daa5,8ea1daa5v,daa5v 5de2 e5b7a2 5de2 00005de2 b15f b15f b15f b15f b15f b15f b15f
+2668 b160 b160 b160 * 5a26 * 8ea1daa6,daa6,8ea1daa6v,daa6v 5e38 e5b8b8 5e38 00005e38 b160 b160 b160 b160 b160 b160 b160
+2669 b161 b161 b161 * 5a27 * 8ea1daa7,daa7,8ea1daa7v,daa7v 5e36 e5b8b6 5e36 00005e36 b161 b161 b161 b161 b161 b161 b161
+2670 b162 b162 b162 * 5a28 * 8ea1daa8,daa8,8ea1daa8v,daa8v 5e33 e5b8b3 5e33 00005e33 b162 b162 b162 b162 b162 b162 b162
+2671 b163 b163 b163 * 5a29 * 8ea1daa9,daa9,8ea1daa9v,daa9v 5e37 e5b8b7 5e37 00005e37 b163 b163 b163 b163 b163 b163 b163
+2672 b164 b164 b164 * 5a2a * 8ea1daaa,daaa,8ea1daaav,daaav 5eb7 e5bab7 5eb7 00005eb7 b164 b164 b164 b164 b164 b164 b164
+2673 b165 b165 b165 * 5a2b * 8ea1daab,daab,8ea1daabv,daabv 5eb8 e5bab8 5eb8 00005eb8 b165 b165 b165 b165 b165 b165 b165
+2674 b166 b166 b166 * 5a2c * 8ea1daac,daac,8ea1daacv,daacv 5eb6 e5bab6 5eb6 00005eb6 b166 b166 b166 b166 b166 b166 b166
+2675 b167 b167 b167 * 5a2d * 8ea1daad,daad,8ea1daadv,daadv 5eb5 e5bab5 5eb5 00005eb5 b167 b167 b167 b167 b167 b167 b167
+2676 b168 b168 b168 * 5a2e * 8ea1daae,daae,8ea1daaev,daaev 5ebe e5babe 5ebe 00005ebe b168 b168 b168 b168 b168 b168 b168
+2677 b169 b169 b169 * 5a2f * 8ea1daaf,daaf,8ea1daafv,daafv 5f35 e5bcb5 5f35 00005f35 b169 b169 b169 b169 b169 b169 b169
+2678 b16a b16a b16a * 5a30 * 8ea1dab0,dab0,8ea1dab0v,dab0v 5f37 e5bcb7 5f37 00005f37 b16a b16a b16a b16a b16a b16a b16a
+2679 b16b b16b b16b * 5a31 * 8ea1dab1,dab1,8ea1dab1v,dab1v 5f57 e5bd97 5f57 00005f57 b16b b16b b16b b16b b16b b16b b16b
+2680 b16c b16c b16c * 5a32 * 8ea1dab2,dab2,8ea1dab2v,dab2v 5f6c e5bdac 5f6c 00005f6c b16c b16c b16c b16c b16c b16c b16c
+2681 b16d b16d b16d * 5a33 * 8ea1dab3,dab3,8ea1dab3v,dab3v 5f69 e5bda9 5f69 00005f69 b16d b16d b16d b16d b16d b16d b16d
+2682 b16e b16e b16e * 5a34 * 8ea1dab4,dab4,8ea1dab4v,dab4v 5f6b e5bdab 5f6b 00005f6b b16e b16e b16e b16e b16e b16e b16e
+2683 b16f b16f b16f * 5a35 * 8ea1dab5,dab5,8ea1dab5v,dab5v 5f97 e5be97 5f97 00005f97 b16f b16f b16f b16f b16f b16f b16f
+2684 b170 b170 b170 * 5a36 * 8ea1dab6,dab6,8ea1dab6v,dab6v 5f99 e5be99 5f99 00005f99 b170 b170 b170 b170 b170 b170 b170
+2685 b171 b171 b171 * 5a37 * 8ea1dab7,dab7,8ea1dab7v,dab7v 5f9e e5be9e 5f9e 00005f9e b171 b171 b171 b171 b171 b171 b171
+2686 b172 b172 b172 * 5a38 * 8ea1dab8,dab8,8ea1dab8v,dab8v 5f98 e5be98 5f98 00005f98 b172 b172 b172 b172 b172 b172 b172
+2687 b173 b173 b173 * 5a39 * 8ea1dab9,dab9,8ea1dab9v,dab9v 5fa1 e5bea1 5fa1 00005fa1 b173 b173 b173 b173 b173 b173 b173
+2688 b174 b174 b174 * 5a3a * 8ea1daba,daba,8ea1dabav,dabav 5fa0 e5bea0 5fa0 00005fa0 b174 b174 b174 b174 b174 b174 b174
+2689 b175 b175 b175 * 5a3b * 8ea1dabb,dabb,8ea1dabbv,dabbv 5f9c e5be9c 5f9c 00005f9c b175 b175 b175 b175 b175 b175 b175
+2690 b176 b176 b176 * 5a3c * 8ea1dabc,dabc,8ea1dabcv,dabcv 607f e681bf 607f 0000607f b176 b176 b176 b176 b176 b176 b176
+2691 b177 b177 b177 * 5a3d * 8ea1dabd,dabd,8ea1dabdv,dabdv 60a3 e682a3 60a3 000060a3 b177 b177 b177 b177 b177 b177 b177
+2692 b178 b178 b178 * 5a3e * 8ea1dabe,dabe,8ea1dabev,dabev 6089 e68289 6089 00006089 b178 b178 b178 b178 b178 b178 b178
+2693 b179 b179 b179 * 5a3f * 8ea1dabf,dabf,8ea1dabfv,dabfv 60a0 e682a0 60a0 000060a0 b179 b179 b179 b179 b179 b179 b179
+2694 b17a b17a b17a * 5a40 * 8ea1dac0,dac0,8ea1dac0v,dac0v 60a8 e682a8 60a8 000060a8 b17a b17a b17a b17a b17a b17a b17a
+2695 b17b b17b b17b * 5a41 * 8ea1dac1,dac1,8ea1dac1v,dac1v 60cb e6838b 60cb 000060cb b17b b17b b17b b17b b17b b17b b17b
+2696 b17c b17c b17c * 5a42 * 8ea1dac2,dac2,8ea1dac2v,dac2v 60b4 e682b4 60b4 000060b4 b17c b17c b17c b17c b17c b17c b17c
+2697 b17d b17d b17d * 5a43 * 8ea1dac3,dac3,8ea1dac3v,dac3v 60e6 e683a6 60e6 000060e6 b17d b17d b17d b17d b17d b17d b17d
+2698 b17e b17e b17e * 5a44 * 8ea1dac4,dac4,8ea1dac4v,dac4v 60bd e682bd 60bd 000060bd b17e b17e b17e b17e b17e b17e b17e
+2699 b1a1 b1a1 b1a1 * 5a45 * 8ea1dac5,dac5,8ea1dac5v,dac5v 60c5 e68385 60c5 000060c5 b1a1 b1a1 b1a1 b1a1 b1a1 b1a1 b1a1
+2700 b1a2 b1a2 b1a2 * 5a46 * 8ea1dac6,dac6,8ea1dac6v,dac6v 60bb e682bb 60bb 000060bb b1a2 b1a2 b1a2 b1a2 b1a2 b1a2 b1a2
+2701 b1a3 b1a3 b1a3 * 5a47 * 8ea1dac7,dac7,8ea1dac7v,dac7v 60b5 e682b5 60b5 000060b5 b1a3 b1a3 b1a3 b1a3 b1a3 b1a3 b1a3
+2702 b1a4 b1a4 b1a4 * 5a48 * 8ea1dac8,dac8,8ea1dac8v,dac8v 60dc e6839c 60dc 000060dc b1a4 b1a4 b1a4 b1a4 b1a4 b1a4 b1a4
+2703 b1a5 b1a5 b1a5 * 5a49 * 8ea1dac9,dac9,8ea1dac9v,dac9v 60bc e682bc 60bc 000060bc b1a5 b1a5 b1a5 b1a5 b1a5 b1a5 b1a5
+2704 b1a6 b1a6 b1a6 * 5a4a * 8ea1daca,daca,8ea1dacav,dacav 60d8 e68398 60d8 000060d8 b1a6 b1a6 b1a6 b1a6 b1a6 b1a6 b1a6
+2705 b1a7 b1a7 b1a7 * 5a4b * 8ea1dacb,dacb,8ea1dacbv,dacbv 60d5 e68395 60d5 000060d5 b1a7 b1a7 b1a7 b1a7 b1a7 b1a7 b1a7
+2706 b1a8 b1a8 b1a8 * 5a4c * 8ea1dacc,dacc,8ea1daccv,daccv 60c6 e68386 60c6 000060c6 b1a8 b1a8 b1a8 b1a8 b1a8 b1a8 b1a8
+2707 b1a9 b1a9 b1a9 * 5a4d * 8ea1dacd,dacd,8ea1dacdv,dacdv 60df e6839f 60df 000060df b1a9 b1a9 b1a9 b1a9 b1a9 b1a9 b1a9
+2708 b1aa b1aa b1aa * 5a4e * 8ea1dace,dace,8ea1dacev,dacev 60b8 e682b8 60b8 000060b8 b1aa b1aa b1aa b1aa b1aa b1aa b1aa
+2709 b1ab b1ab b1ab * 5a4f * 8ea1dacf,dacf,8ea1dacfv,dacfv 60da e6839a 60da 000060da b1ab b1ab,fc63 915a,b1ab b1ab b1ab b1ab b1ab
+2710 b1ac b1ac b1ac * 5a50 * 8ea1dad0,dad0,8ea1dad0v,dad0v 60c7 e68387 60c7 000060c7 b1ac b1ac b1ac b1ac b1ac b1ac b1ac
+2711 b1ad b1ad b1ad * 5a51 * 8ea1dad1,dad1,8ea1dad1v,dad1v 621a e6889a 621a 0000621a b1ad b1ad b1ad b1ad b1ad b1ad b1ad
+2712 b1ae b1ae b1ae * 5a52 * 8ea1dad2,dad2,8ea1dad2v,dad2v 621b e6889b 621b 0000621b b1ae b1ae b1ae b1ae b1ae b1ae b1ae
+2713 b1af b1af b1af * 5a53 * 8ea1dad3,dad3,8ea1dad3v,dad3v 6248 e68988 6248 00006248 b1af b1af b1af b1af b1af b1af b1af
+2714 b1b0 b1b0 b1b0 * 5a54 * 8ea1dad4,dad4,8ea1dad4v,dad4v 63a0 e68ea0 63a0 000063a0 b1b0 b1b0 b1b0 b1b0 b1b0 b1b0 b1b0
+2715 b1b1 b1b1 b1b1 * 5a55 * 8ea1dad5,dad5,8ea1dad5v,dad5v 63a7 e68ea7 63a7 000063a7 b1b1 b1b1 b1b1 b1b1 b1b1 b1b1 b1b1
+2716 b1b2 b1b2 b1b2 * 5a56 * 8ea1dad6,dad6,8ea1dad6v,dad6v 6372 e68db2 6372 00006372 b1b2 b1b2 b1b2 b1b2 b1b2 b1b2 b1b2
+2717 b1b3 b1b3 b1b3 * 5a57 * 8ea1dad7,dad7,8ea1dad7v,dad7v 6396 e68e96 6396 00006396 b1b3 b1b3 b1b3 b1b3 b1b3 b1b3 b1b3
+2718 b1b4 b1b4 b1b4 * 5a58 * 8ea1dad8,dad8,8ea1dad8v,dad8v 63a2 e68ea2 63a2 000063a2 b1b4 b1b4 b1b4 b1b4 b1b4 b1b4 b1b4
+2719 b1b5 b1b5 b1b5 * 5a59 * 8ea1dad9,dad9,8ea1dad9v,dad9v 63a5 e68ea5 63a5 000063a5 b1b5 b1b5 b1b5 b1b5 b1b5 b1b5 b1b5
+2720 b1b6 b1b6 b1b6 * 5a5a * 8ea1dada,dada,8ea1dadav,dadav 6377 e68db7 6377 00006377 b1b6 b1b6 b1b6 b1b6 b1b6 b1b6 b1b6
+2721 b1b7 b1b7 b1b7 * 5a5b * 8ea1dadb,dadb,8ea1dadbv,dadbv 6367 e68da7 6367 00006367 b1b7 b1b7 b1b7 b1b7 b1b7 b1b7 b1b7
+2722 b1b8 b1b8 b1b8 * 5a5c * 8ea1dadc,dadc,8ea1dadcv,dadcv 6398 e68e98 6398 00006398 b1b8 b1b8 b1b8 b1b8 b1b8 b1b8 b1b8
+2723 b1b9 b1b9 b1b9 * 5a5d * 8ea1dadd,dadd,8ea1daddv,daddv 63aa e68eaa 63aa 000063aa b1b9 b1b9 b1b9 b1b9 b1b9 b1b9 b1b9
+2724 b1ba b1ba b1ba * 5a5e * 8ea1dade,dade,8ea1dadev,dadev 6371 e68db1 6371 00006371 b1ba b1ba b1ba b1ba b1ba b1ba b1ba
+2725 b1bb b1bb b1bb * 5a5f * 8ea1dadf,dadf,8ea1dadfv,dadfv 63a9 e68ea9 63a9 000063a9 b1bb b1bb b1bb b1bb b1bb b1bb b1bb
+2726 b1bc b1bc b1bc * 5a60 * 8ea1dae0,dae0,8ea1dae0v,dae0v 6389 e68e89 6389 00006389 b1bc b1bc b1bc b1bc b1bc b1bc b1bc
+2727 b1bd b1bd b1bd * 5a61 * 8ea1dae1,dae1,8ea1dae1v,dae1v 6383 e68e83 6383 00006383 b1bd b1bd b1bd b1bd b1bd b1bd b1bd
+2728 b1be b1be b1be * 5a62 * 8ea1dae2,dae2,8ea1dae2v,dae2v 639b e68e9b 639b 0000639b b1be b1be b1be b1be b1be b1be b1be
+2729 b1bf b1bf b1bf * 5a63 * 8ea1dae3,dae3,8ea1dae3v,dae3v 636b e68dab 636b 0000636b b1bf b1bf b1bf b1bf b1bf b1bf b1bf
+2730 b1c0 b1c0 b1c0 * 5a64 * 8ea1dae4,dae4,8ea1dae4v,dae4v 63a8 e68ea8 63a8 000063a8 b1c0 b1c0 b1c0 b1c0 b1c0 b1c0 b1c0
+2731 b1c1 b1c1 b1c1 * 5a65 * 8ea1dae5,dae5,8ea1dae5v,dae5v 6384 e68e84 6384 00006384 b1c1 b1c1 b1c1 b1c1 b1c1 b1c1 b1c1
+2732 b1c2 b1c2 b1c2 * 5a66 * 8ea1dae6,dae6,8ea1dae6v,dae6v 6388 e68e88 6388 00006388 b1c2 b1c2 b1c2 b1c2 b1c2 b1c2 b1c2
+2733 b1c3 b1c3 b1c3 * 5a67 * 8ea1dae7,dae7,8ea1dae7v,dae7v 6399 e68e99 6399 00006399 b1c3 b1c3 b1c3 b1c3 b1c3 b1c3 b1c3
+2734 b1c4 b1c4 b1c4 * 5a68 * 8ea1dae8,dae8,8ea1dae8v,dae8v 63a1 e68ea1 63a1 000063a1 b1c4 b1c4 b1c4 b1c4 b1c4 b1c4 b1c4
+2735 b1c5 b1c5 b1c5 * 5a69 * 8ea1dae9,dae9,8ea1dae9v,dae9v 63ac e68eac 63ac 000063ac b1c5 b1c5 b1c5 b1c5 b1c5 b1c5 b1c5
+2736 b1c6 b1c6 b1c6 * 5a6a * 8ea1daea,daea,8ea1daeav,daeav 6392 e68e92 6392 00006392 b1c6 b1c6 b1c6 b1c6 b1c6 b1c6 b1c6
+2737 b1c7 b1c7 b1c7 * 5a6b * 8ea1daeb,daeb,8ea1daebv,daebv 638f e68e8f 638f 0000638f b1c7 b1c7 b1c7 b1c7 b1c7 b1c7 b1c7
+2738 b1c8 b1c8 b1c8 * 5a6c * 8ea1daec,daec,8ea1daecv,daecv 6380 e68e80 6380 00006380 b1c8 b1c8 b1c8 b1c8 b1c8 b1c8 b1c8
+2739 b1c9 b1c9 b1c9 * 5a6d * 8ea1daed,daed,8ea1daedv,daedv 637b e68dbb 637b 0000637b b1c9 b1c9 b1c9 b1c9 b1c9 b1c9 b1c9
+2740 b1ca b1ca b1ca * 5a6e * 8ea1daee,daee,8ea1daeev,daeev 6369 e68da9 6369 00006369 b1ca b1ca b1ca b1ca b1ca b1ca b1ca
+2741 b1cb b1cb b1cb * 5a6f * 8ea1daef,daef,8ea1daefv,daefv 6368 e68da8 6368 00006368 b1cb b1cb b1cb b1cb b1cb b1cb b1cb
+2742 b1cc b1cc b1cc * 5a70 * 8ea1daf0,daf0,8ea1daf0v,daf0v 637a e68dba 637a 0000637a b1cc b1cc b1cc b1cc b1cc b1cc b1cc
+2743 b1cd b1cd b1cd * 5a71 * 8ea1daf1,daf1,8ea1daf1v,daf1v 655d e6959d 655d 0000655d b1cd b1cd b1cd b1cd b1cd b1cd b1cd
+2744 b1ce b1ce b1ce * 5a72 * 8ea1daf2,daf2,8ea1daf2v,daf2v 6556 e69596 6556 00006556 b1ce b1ce b1ce b1ce b1ce b1ce b1ce
+2745 b1cf b1cf b1cf * 5a73 * 8ea1daf3,daf3,8ea1daf3v,daf3v 6551 e69591 6551 00006551 b1cf b1cf b1cf b1cf b1cf b1cf b1cf
+2746 b1d0 b1d0 b1d0 * 5a74 * 8ea1daf4,daf4,8ea1daf4v,daf4v 6559 e69599 6559 00006559 b1d0 b1d0 b1d0 b1d0 b1d0,c8fe b1d0,fcfe b1d0
+2747 b1d1 b1d1 b1d1 * 5a75 * 8ea1daf5,daf5,8ea1daf5v,daf5v 6557 e69597 6557 00006557 b1d1 b1d1 b1d1 b1d1 b1d1 b1d1 b1d1
+2748 b1d2 b1d2 b1d2 * 5a76 * 8ea1daf6,daf6,8ea1daf6v,daf6v 555f e5959f 555f 0000555f b1d2 b1d2 b1d2 b1d2 b1d2 b1d2 b1d2
+2749 b1d3 b1d3 b1d3 * 5a77 * 8ea1daf7,daf7,8ea1daf7v,daf7v 654f e6958f 654f 0000654f b1d3 b1d3 b1d3 b1d3 b1d3 b1d3 b1d3
+2750 b1d4 b1d4 b1d4 * 5a78 * 8ea1daf8,daf8,8ea1daf8v,daf8v 6558 e69598 6558 00006558 b1d4 b1d4 b1d4 b1d4 b1d4 b1d4 b1d4
+2751 b1d5 b1d5 b1d5 * 5a79 * 8ea1daf9,daf9,8ea1daf9v,daf9v 6555 e69595 6555 00006555 b1d5 b1d5 b1d5 b1d5 b1d5 b1d5 b1d5
+2752 b1d6 b1d6 b1d6 * 5a7a * 8ea1dafa,dafa,8ea1dafav,dafav 6554 e69594 6554 00006554 b1d6 b1d6 b1d6 b1d6 b1d6 b1d6 b1d6
+2753 b1d7 b1d7 b1d7 * 5a7b * 8ea1dafb,dafb,8ea1dafbv,dafbv 659c e6969c 659c 0000659c b1d7 b1d7 b1d7 b1d7 b1d7 b1d7 b1d7
+2754 b1d8 b1d8 b1d8 * 5a7c * 8ea1dafc,dafc,8ea1dafcv,dafcv 659b e6969b 659b 0000659b b1d8 b1d8 b1d8 b1d8 b1d8 b1d8 b1d8
+2755 b1d9 b1d9 b1d9 * 5a7d * 8ea1dafd,dafd,8ea1dafdv,dafdv 65ac e696ac 65ac 000065ac b1d9 b1d9 b1d9 b1d9 b1d9 b1d9 b1d9
+2756 b1da b1da b1da * 5a7e * 8ea1dafe,dafe,8ea1dafev,dafev 65cf e6978f 65cf 000065cf b1da b1da b1da b1da b1da b1da b1da
+2757 b1db b1db b1db * 5b21 * 8ea1dba1,dba1,8ea1dba1v,dba1v 65cb e6978b 65cb 000065cb b1db b1db b1db b1db b1db b1db b1db
+2758 b1dc b1dc b1dc * 5b22 * 8ea1dba2,dba2,8ea1dba2v,dba2v 65cc e6978c 65cc 000065cc b1dc b1dc b1dc b1dc b1dc b1dc b1dc
+2759 b1dd b1dd b1dd * 5b23 * 8ea1dba3,dba3,8ea1dba3v,dba3v 65ce e6978e 65ce 000065ce b1dd b1dd b1dd b1dd b1dd b1dd b1dd
+2760 b1de b1de b1de * 5b24 * 8ea1dba4,dba4,8ea1dba4v,dba4v 665d e6999d 665d 0000665d b1de b1de b1de b1de b1de b1de b1de
+2761 b1df b1df b1df * 5b25 * 8ea1dba5,dba5,8ea1dba5v,dba5v 665a e6999a 665a 0000665a b1df b1df b1df b1df b1df b1df b1df
+2762 b1e0 b1e0 b1e0 * 5b26 * 8ea1dba6,dba6,8ea1dba6v,dba6v 6664 e699a4 6664 00006664 b1e0 b1e0 b1e0 b1e0 b1e0 b1e0 b1e0
+2763 b1e1 b1e1 b1e1 * 5b27 * 8ea1dba7,dba7,8ea1dba7v,dba7v 6668 e699a8 6668 00006668 b1e1 b1e1 b1e1 b1e1 b1e1 b1e1 b1e1
+2764 b1e2 b1e2 b1e2 * 5b28 * 8ea1dba8,dba8,8ea1dba8v,dba8v 6666 e699a6 6666 00006666 b1e2 b1e2 b1e2 b1e2 b1e2 b1e2 b1e2
+2765 b1e3 b1e3 b1e3 * 5b29 * 8ea1dba9,dba9,8ea1dba9v,dba9v 665e e6999e 665e 0000665e b1e3 b1e3 b1e3 b1e3 b1e3 b1e3 b1e3
+2766 b1e4 b1e4 b1e4 * 5b2a * 8ea1dbaa,dbaa,8ea1dbaav,dbaav 66f9 e69bb9 66f9 000066f9 b1e4 b1e4 b1e4 b1e4 b1e4 b1e4 b1e4
+2767 b1e5 b1e5 b1e5 * 5b2b * 8ea1dbab,dbab,8ea1dbabv,dbabv 52d7 e58b97 52d7 000052d7 b1e5 b1e5 b1e5 b1e5 b1e5 b1e5 b1e5
+2768 b1e6 b1e6 b1e6 * 5b2c * 8ea1dbac,dbac,8ea1dbacv,dbacv 671b e69c9b 671b 0000671b b1e6 b1e6 b1e6 b1e6 b1e6 b1e6 b1e6
+2769 b1e7 b1e7 b1e7 * 5b2d * 8ea1dbad,dbad,8ea1dbadv,dbadv 6881 e6a281 6881 00006881 b1e7 b1e7 b1e7 b1e7 b1e7 b1e7 b1e7
+2770 b1e8 b1e8 b1e8 * 5b2e * 8ea1dbae,dbae,8ea1dbaev,dbaev 68af e6a2af 68af 000068af b1e8 b1e8 b1e8 b1e8 b1e8 b1e8 b1e8
+2771 b1e9 b1e9 b1e9 * 5b2f * 8ea1dbaf,dbaf,8ea1dbafv,dbafv 68a2 e6a2a2 68a2 000068a2 b1e9 b1e9 b1e9 b1e9 b1e9 b1e9 b1e9
+2772 b1ea b1ea b1ea * 5b30 * 8ea1dbb0,dbb0,8ea1dbb0v,dbb0v 6893 e6a293 6893 00006893 b1ea b1ea b1ea b1ea b1ea b1ea b1ea
+2773 b1eb b1eb b1eb * 5b31 * 8ea1dbb1,dbb1,8ea1dbb1v,dbb1v 68b5 e6a2b5 68b5 000068b5 b1eb b1eb b1eb b1eb b1eb b1eb b1eb
+2774 b1ec b1ec b1ec * 5b32 * 8ea1dbb2,dbb2,8ea1dbb2v,dbb2v 687f e6a1bf 687f 0000687f b1ec b1ec b1ec b1ec b1ec b1ec b1ec
+2775 b1ed b1ed b1ed * 5b33 * 8ea1dbb3,dbb3,8ea1dbb3v,dbb3v 6876 e6a1b6 6876 00006876 b1ed b1ed b1ed b1ed b1ed b1ed b1ed
+2776 b1ee b1ee b1ee * 5b34 * 8ea1dbb4,dbb4,8ea1dbb4v,dbb4v 68b1 e6a2b1 68b1 000068b1 b1ee b1ee b1ee b1ee b1ee b1ee b1ee
+2777 b1ef b1ef b1ef * 5b35 * 8ea1dbb5,dbb5,8ea1dbb5v,dbb5v 68a7 e6a2a7 68a7 000068a7 b1ef b1ef b1ef b1ef b1ef b1ef b1ef
+2778 b1f0 b1f0 b1f0 * 5b36 * 8ea1dbb6,dbb6,8ea1dbb6v,dbb6v 6897 e6a297 6897 00006897 b1f0 b1f0 b1f0 b1f0 b1f0 b1f0 b1f0
+2779 b1f1 b1f1 b1f1 * 5b37 * 8ea1dbb7,dbb7,8ea1dbb7v,dbb7v 68b0 e6a2b0 68b0 000068b0 b1f1 b1f1 b1f1 b1f1 b1f1 b1f1 b1f1
+2780 b1f2 b1f2 b1f2 * 5b38 * 8ea1dbb8,dbb8,8ea1dbb8v,dbb8v 6883 e6a283 6883 00006883 b1f2 b1f2 b1f2 b1f2 b1f2 b1f2 b1f2
+2781 b1f3 b1f3 b1f3 * 5b39 * 8ea1dbb9,dbb9,8ea1dbb9v,dbb9v 68c4 e6a384 68c4 000068c4 b1f3 b1f3 b1f3 b1f3 b1f3 b1f3 b1f3
+2782 b1f4 b1f4 b1f4 * 5b3a * 8ea1dbba,dbba,8ea1dbbav,dbbav 68ad e6a2ad 68ad 000068ad b1f4 b1f4 b1f4 b1f4 b1f4 b1f4 b1f4
+2783 b1f5 b1f5 b1f5 * 5b3b * 8ea1dbbb,dbbb,8ea1dbbbv,dbbbv 6886 e6a286 6886 00006886 b1f5 b1f5 b1f5 b1f5 b1f5 b1f5 b1f5
+2784 b1f6 b1f6 b1f6 * 5b3c * 8ea1dbbc,dbbc,8ea1dbbcv,dbbcv 6885 e6a285 6885 00006885 b1f6 b1f6 b1f6 b1f6 b1f6 b1f6 b1f6
+2785 b1f7 b1f7 b1f7 * 5b3d * 8ea1dbbd,dbbd,8ea1dbbdv,dbbdv 6894 e6a294 6894 00006894 b1f7 b1f7 b1f7 b1f7 b1f7 b1f7 b1f7
+2786 b1f8 b1f8 b1f8 * 5b3e * 8ea1dbbe,dbbe,8ea1dbbev,dbbev 689d e6a29d 689d 0000689d b1f8 b1f8 b1f8 b1f8 b1f8 b1f8 b1f8
+2787 b1f9 b1f9 b1f9 * 5b3f * 8ea1dbbf,dbbf,8ea1dbbfv,dbbfv 68a8 e6a2a8 68a8 000068a8 b1f9 b1f9 b1f9 b1f9 b1f9 b1f9 b1f9
+2788 b1fa b1fa b1fa * 5b40 * 8ea1dbc0,dbc0,8ea1dbc0v,dbc0v 689f e6a29f 689f 0000689f b1fa b1fa b1fa b1fa b1fa b1fa b1fa
+2789 b1fb b1fb b1fb * 5b41 * 8ea1dbc1,dbc1,8ea1dbc1v,dbc1v 68a1 e6a2a1 68a1 000068a1 b1fb b1fb b1fb b1fb b1fb b1fb b1fb
+2790 b1fc b1fc b1fc * 5b42 * 8ea1dbc2,dbc2,8ea1dbc2v,dbc2v 6882 e6a282 6882 00006882 b1fc b1fc b1fc b1fc b1fc b1fc b1fc
+2791 b1fd b1fd b1fd * 5b43 * 8ea1dbc3,dbc3,8ea1dbc3v,dbc3v 6b32 e6acb2 6b32 00006b32 b1fd b1fd b1fd b1fd b1fd b1fd b1fd
+2792 b1fe b1fe b1fe * 5b44 * 8ea1dbc4,dbc4,8ea1dbc4v,dbc4v 6bba e6aeba 6bba 00006bba b1fe b1fe b1fe b1fe b1fe b1fe b1fe
+2793 b240 b240 b240 * 5b45 * 8ea1dbc5,dbc5,8ea1dbc5v,dbc5v 6beb e6afab 6beb 00006beb b240 b240 b240 b240 b240 b240 b240
+2794 b241 b241 b241 * 5b46 * 8ea1dbc6,dbc6,8ea1dbc6v,dbc6v 6bec e6afac 6bec 00006bec b241 b241 b241 b241 b241 b241 b241
+2795 b242 b242 b242 * 5b47 * 8ea1dbc7,dbc7,8ea1dbc7v,dbc7v 6c2b e6b0ab 6c2b 00006c2b b242 b242 b242 b242 b242 b242 b242
+2796 b243 b243 b243 * 5b48 * 8ea1dbc8,dbc8,8ea1dbc8v,dbc8v 6d8e e6b68e 6d8e 00006d8e b243 b243 b243 b243 b243 b243 b243
+2797 b244 b244 b244 * 5b49 * 8ea1dbc9,dbc9,8ea1dbc9v,dbc9v 6dbc e6b6bc 6dbc 00006dbc b244 b244 b244 b244 b244 b244 b244
+2798 b245 b245 b245 * 5b4a * 8ea1dbca,dbca,8ea1dbcav,dbcav 6df3 e6b7b3 6df3 00006df3 b245 b245 b245 b245 b245 b245 b245
+2799 b246 b246 b246 * 5b4b * 8ea1dbcb,dbcb,8ea1dbcbv,dbcbv 6dd9 e6b799 6dd9 00006dd9 b246 b246 b246 b246 b246 b246 b246
+2800 b247 b247 b247 * 5b4c * 8ea1dbcc,dbcc,8ea1dbccv,dbccv 6db2 e6b6b2 6db2 00006db2 b247 b247 b247 b247 b247 b247 b247
+2801 b248 b248 b248 * 5b4d * 8ea1dbcd,dbcd,8ea1dbcdv,dbcdv 6de1 e6b7a1 6de1 00006de1 b248 b248 b248 b248 b248 b248 b248
+2802 b249 b249 b249 * 5b4e * 8ea1dbce,dbce,8ea1dbcev,dbcev 6dcc e6b78c 6dcc 00006dcc b249 b249 b249 b249 b249 b249 b249
+2803 b24a b24a b24a * 5b4f * 8ea1dbcf,dbcf,8ea1dbcfv,dbcfv 6de4 e6b7a4 6de4 00006de4 b24a b24a b24a b24a b24a b24a b24a
+2804 b24b b24b b24b * 5b50 * 8ea1dbd0,dbd0,8ea1dbd0v,dbd0v 6dfb e6b7bb 6dfb 00006dfb b24b b24b b24b b24b b24b b24b b24b
+2805 b24c b24c b24c * 5b51 * 8ea1dbd1,dbd1,8ea1dbd1v,dbd1v 6dfa e6b7ba 6dfa 00006dfa b24c b24c b24c b24c b24c b24c b24c
+2806 b24d b24d b24d * 5b52 * 8ea1dbd2,dbd2,8ea1dbd2v,dbd2v 6e05 e6b885 6e05 00006e05 b24d b24d b24d b24d b24d b24d b24d
+2807 b24e b24e b24e * 5b53 * 8ea1dbd3,dbd3,8ea1dbd3v,dbd3v 6dc7 e6b787 6dc7 00006dc7 b24e b24e b24e b24e b24e b24e b24e
+2808 b24f b24f b24f * 5b54 * 8ea1dbd4,dbd4,8ea1dbd4v,dbd4v 6dcb e6b78b 6dcb 00006dcb b24f b24f b24f b24f b24f b24f b24f
+2809 b250 b250 b250 * 5b55 * 8ea1dbd5,dbd5,8ea1dbd5v,dbd5v 6daf e6b6af 6daf 00006daf b250 b250 b250 b250 b250 b250 b250
+2810 b251 b251 b251 * 5b56 * 8ea1dbd6,dbd6,8ea1dbd6v,dbd6v 6dd1 e6b791 6dd1 00006dd1 b251 b251 b251 b251 b251 b251 b251
+2811 b252 b252 b252 * 5b57 * 8ea1dbd7,dbd7,8ea1dbd7v,dbd7v 6dae e6b6ae 6dae 00006dae b252 b252 b252 b252 b252 b252 b252
+2812 b253 b253 b253 * 5b58 * 8ea1dbd8,dbd8,8ea1dbd8v,dbd8v 6dde e6b79e 6dde 00006dde b253 b253 b253 b253 b253 b253 b253
+2813 b254 b254 b254 * 5b59 * 8ea1dbd9,dbd9,8ea1dbd9v,dbd9v 6df9 e6b7b9 6df9 00006df9 b254 b254 b254 b254 b254 b254 b254
+2814 b255 b255 b255 * 5b5a * 8ea1dbda,dbda,8ea1dbdav,dbdav 6db8 e6b6b8 6db8 00006db8 b255 b255 b255 b255 b255 b255 b255
+2815 b256 b256 b256 * 5b5b * 8ea1dbdb,dbdb,8ea1dbdbv,dbdbv 6df7 e6b7b7 6df7 00006df7 b256 b256 b256 b256 b256 b256 b256
+2816 b257 b257 b257 * 5b5c * 8ea1dbdc,dbdc,8ea1dbdcv,dbdcv 6df5 e6b7b5 6df5 00006df5 b257 b257 b257 b257 b257 b257 b257
+2817 b258 b258 b258 * 5b5d * 8ea1dbdd,dbdd,8ea1dbddv,dbddv 6dc5 e6b785 6dc5 00006dc5 b258 b258 b258 b258 b258 b258 b258
+2818 b259 b259 b259 * 5b5e * 8ea1dbde,dbde,8ea1dbdev,dbdev 6dd2 e6b792 6dd2 00006dd2 b259 b259 b259 b259 b259 b259 b259
+2819 b25a b25a b25a * 5b5f * 8ea1dbdf,dbdf,8ea1dbdfv,dbdfv 6e1a e6b89a 6e1a 00006e1a b25a b25a b25a b25a b25a b25a b25a
+2820 b25b b25b b25b * 5b60 * 8ea1dbe0,dbe0,8ea1dbe0v,dbe0v 6db5 e6b6b5 6db5 00006db5 b25b b25b b25b b25b b25b b25b b25b
+2821 b25c b25c b25c * 5b61 * 8ea1dbe1,dbe1,8ea1dbe1v,dbe1v 6dda e6b79a 6dda 00006dda b25c b25c b25c b25c b25c b25c b25c
+2822 b25d b25d b25d * 5b62 * 8ea1dbe2,dbe2,8ea1dbe2v,dbe2v 6deb e6b7ab 6deb 00006deb b25d b25d b25d b25d b25d b25d b25d
+2823 b25e b25e b25e * 5b63 * 8ea1dbe3,dbe3,8ea1dbe3v,dbe3v 6dd8 e6b798 6dd8 00006dd8 b25e b25e b25e b25e b25e b25e b25e
+2824 b25f b25f b25f * 5b64 * 8ea1dbe4,dbe4,8ea1dbe4v,dbe4v 6dea e6b7aa 6dea 00006dea b25f b25f b25f b25f b25f b25f b25f
+2825 b260 b260 b260 * 5b65 * 8ea1dbe5,dbe5,8ea1dbe5v,dbe5v 6df1 e6b7b1 6df1 00006df1 b260 b260 b260 b260 b260 b260 b260
+2826 b261 b261 b261 * 5b66 * 8ea1dbe6,dbe6,8ea1dbe6v,dbe6v 6dee e6b7ae 6dee 00006dee b261 b261 b261 b261 b261 b261 b261
+2827 b262 b262 b262 * 5b67 * 8ea1dbe7,dbe7,8ea1dbe7v,dbe7v 6de8 e6b7a8 6de8 00006de8 b262 b262 b262 b262 b262 b262 b262
+2828 b263 b263 b263 * 5b68 * 8ea1dbe8,dbe8,8ea1dbe8v,dbe8v 6dc6 e6b786 6dc6 00006dc6 b263 b263 b263 b263 b263 b263 b263
+2829 b264 b264 b264 * 5b69 * 8ea1dbe9,dbe9,8ea1dbe9v,dbe9v 6dc4 e6b784 6dc4 00006dc4 b264 b264 b264 b264 b264 b264 b264
+2830 b265 b265 b265 * 5b6a * 8ea1dbea,dbea,8ea1dbeav,dbeav 6daa e6b6aa 6daa 00006daa b265 b265 b265 b265 b265 b265 b265
+2831 b266 b266 b266 * 5b6b * 8ea1dbeb,dbeb,8ea1dbebv,dbebv 6dec e6b7ac 6dec 00006dec b266 b266 b266 b266 b266 b266 b266
+2832 b267 b267 b267 * 5b6c * 8ea1dbec,dbec,8ea1dbecv,dbecv 6dbf e6b6bf 6dbf 00006dbf b267 b267 b267 b267 b267 b267 b267
+2833 b268 b268 b268 * 5b6d * 8ea1dbed,dbed,8ea1dbedv,dbedv 6de6 e6b7a6 6de6 00006de6 b268 b268 b268 b268 b268 b268 b268
+2834 b269 b269 b269 * 5b6e * 8ea1dbee,dbee,8ea1dbeev,dbeev 70f9 e783b9 70f9 000070f9 b269 b269 b269 b269 b269 b269 b269
+2835 b26a b26a b26a * 5b6f * 8ea1dbef,dbef,8ea1dbefv,dbefv 7109 e78489 7109 00007109 b26a b26a b26a b26a b26a b26a b26a
+2836 b26b b26b b26b * 5b70 * 8ea1dbf0,dbf0,8ea1dbf0v,dbf0v 710a e7848a 710a 0000710a b26b b26b b26b b26b b26b b26b b26b
+2837 b26c b26c b26c * 5b71 * 8ea1dbf1,dbf1,8ea1dbf1v,dbf1v 70fd e783bd 70fd 000070fd b26c b26c b26c b26c b26c b26c b26c
+2838 b26d b26d b26d * 5b72 * 8ea1dbf2,dbf2,8ea1dbf2v,dbf2v 70ef e783af 70ef 000070ef b26d b26d b26d b26d b26d b26d b26d
+2839 b26e b26e b26e * 5b73 * 8ea1dbf3,dbf3,8ea1dbf3v,dbf3v 723d e788bd 723d 0000723d b26e b26e b26e b26e b26e b26e b26e
+2840 b26f b26f b26f * 5b74 * 8ea1dbf4,dbf4,8ea1dbf4v,dbf4v 727d e789bd 727d 0000727d b26f b26f b26f b26f b26f b26f b26f
+2841 b270 b270 b270 * 5b75 * 8ea1dbf5,dbf5,8ea1dbf5v,dbf5v 7281 e78a81 7281 00007281 b270 b270 b270 b270 b270 b270 b270
+2842 b271 b271 b271 * 5b76 * 8ea1dbf6,dbf6,8ea1dbf6v,dbf6v 731c e78c9c 731c 0000731c b271 b271 b271 b271 b271 b271 b271
+2843 b272 b272 b272 * 5b77 * 8ea1dbf7,dbf7,8ea1dbf7v,dbf7v 731b e78c9b 731b 0000731b b272 b272 b272 b272 b272 b272 b272
+2844 b273 b273 b273 * 5b78 * 8ea1dbf8,dbf8,8ea1dbf8v,dbf8v 7316 e78c96 7316 00007316 b273 b273 b273 b273 b273 b273 b273
+2845 b274 b274 b274 * 5b79 * 8ea1dbf9,dbf9,8ea1dbf9v,dbf9v 7313 e78c93 7313 00007313 b274 b274 b274 b274 b274 b274 b274
+2846 b275 b275 b275 * 5b7a * 8ea1dbfa,dbfa,8ea1dbfav,dbfav 7319 e78c99 7319 00007319 b275 b275 b275 b275 b275 b275 b275
+2847 b276 b276 b276 * 5b7b * 8ea1dbfb,dbfb,8ea1dbfbv,dbfbv 7387 e78e87 7387 00007387 b276 b276 b276 b276 b276 b276 b276
+2848 b277 b277 b277 * 5b7c * 8ea1dbfc,dbfc,8ea1dbfcv,dbfcv 7405 e79085 7405 00007405 b277 b277 b277 b277 b277 b277 b277
+2849 b278 b278 b278 * 5b7d * 8ea1dbfd,dbfd,8ea1dbfdv,dbfdv 740a e7908a 740a 0000740a b278 b278 b278 b278 b278 b278 b278
+2850 b279 b279 b279 * 5b7e * 8ea1dbfe,dbfe,8ea1dbfev,dbfev 7403 e79083 7403 00007403 b279 b279 b279 b279 b279 b279 b279
+2851 b27a b27a b27a * 5c21 * 8ea1dca1,dca1,8ea1dca1v,dca1v 7406 e79086 7406 00007406 b27a b27a b27a b27a b27a b27a b27a
+2852 b27b b27b b27b * 5c22 * 8ea1dca2,dca2,8ea1dca2v,dca2v 73fe e78fbe 73fe 000073fe b27b b27b b27b b27b b27b b27b b27b
+2853 b27c b27c b27c * 5c23 * 8ea1dca3,dca3,8ea1dca3v,dca3v 740d e7908d 740d 0000740d b27c b27c b27c b27c b27c b27c b27c
+2854 b27d b27d b27d * 5c24 * 8ea1dca4,dca4,8ea1dca4v,dca4v 74e0 e793a0 74e0 000074e0 b27d b27d b27d b27d b27d b27d b27d
+2855 b27e b27e b27e * 5c25 * 8ea1dca5,dca5,8ea1dca5v,dca5v 74f6 e793b6 74f6 000074f6 b27e b27e b27e b27e b27e b27e b27e
+2856 b2a1 b2a1 b2a1 * 5c26 * 8ea1dca6,dca6,8ea1dca6v,dca6v 74f7 e793b7 74f7 000074f7 b2a1 b2a1 b2a1 b2a1 b2a1 b2a1 b2a1
+2857 b2a2 b2a2 b2a2 * 5c27 * 8ea1dca7,dca7,8ea1dca7v,dca7v 751c e7949c 751c 0000751c b2a2 b2a2 b2a2 b2a2 b2a2 b2a2 b2a2
+2858 b2a3 b2a3 b2a3 * 5c28 * 8ea1dca8,dca8,8ea1dca8v,dca8v 7522 e794a2 7522 00007522 b2a3 b2a3 b2a3 b2a3 b2a3 b2a3 b2a3
+2859 b2a4 b2a4 b2a4 * 5c29 * 8ea1dca9,dca9,8ea1dca9v,dca9v 7565 e795a5 7565 00007565 b2a4 b2a4 b2a4 b2a4 b2a4 b2a4 b2a4
+2860 b2a5 b2a5 b2a5 * 5c2a * 8ea1dcaa,dcaa,8ea1dcaav,dcaav 7566 e795a6 7566 00007566 b2a5 b2a5 b2a5 b2a5 b2a5 b2a5 b2a5
+2861 b2a6 b2a6 b2a6 * 5c2b * 8ea1dcab,dcab,8ea1dcabv,dcabv 7562 e795a2 7562 00007562 b2a6 b2a6 b2a6 b2a6 b2a6 b2a6 b2a6
+2862 b2a7 b2a7 b2a7 * 5c2c * 8ea1dcac,dcac,8ea1dcacv,dcacv 7570 e795b0 7570 00007570 b2a7 b2a7 b2a7 b2a7 b2a7 b2a7 b2a7
+2863 b2a8 b2a8 b2a8 * 5c2d * 8ea1dcad,dcad,8ea1dcadv,dcadv 758f e7968f 758f 0000758f b2a8 b2a8 b2a8 b2a8 b2a8 b2a8 b2a8
+2864 b2a9 b2a9 b2a9 * 5c2e * 8ea1dcae,dcae,8ea1dcaev,dcaev 75d4 e79794 75d4 000075d4 b2a9 b2a9 b2a9 b2a9 b2a9 b2a9 b2a9
+2865 b2aa b2aa b2aa * 5c2f * 8ea1dcaf,dcaf,8ea1dcafv,dcafv 75d5 e79795 75d5 000075d5 b2aa b2aa b2aa b2aa b2aa b2aa b2aa
+2866 b2ab b2ab b2ab * 5c30 * 8ea1dcb0,dcb0,8ea1dcb0v,dcb0v 75b5 e796b5 75b5 000075b5 b2ab b2ab b2ab b2ab b2ab b2ab b2ab
+2867 b2ac b2ac b2ac * 5c31 * 8ea1dcb1,dcb1,8ea1dcb1v,dcb1v 75ca e7978a 75ca 000075ca b2ac b2ac b2ac b2ac b2ac b2ac b2ac
+2868 b2ad b2ad b2ad * 5c32 * 8ea1dcb2,dcb2,8ea1dcb2v,dcb2v 75cd e7978d 75cd 000075cd b2ad b2ad b2ad b2ad b2ad b2ad b2ad
+2869 b2ae b2ae b2ae * 5c33 * 8ea1dcb3,dcb3,8ea1dcb3v,dcb3v 768e e79a8e 768e 0000768e b2ae b2ae b2ae b2ae b2ae b2ae b2ae
+2870 b2af b2af b2af * 5c34 * 8ea1dcb4,dcb4,8ea1dcb4v,dcb4v 76d4 e79b94 76d4 000076d4 b2af b2af b2af b2af b2af b2af b2af
+2871 b2b0 b2b0 b2b0 * 5c35 * 8ea1dcb5,dcb5,8ea1dcb5v,dcb5v 76d2 e79b92 76d2 000076d2 b2b0 b2b0 b2b0 b2b0 b2b0 b2b0 b2b0
+2872 b2b1 b2b1 b2b1 * 5c36 * 8ea1dcb6,dcb6,8ea1dcb6v,dcb6v 76db e79b9b 76db 000076db b2b1 b2b1 b2b1 b2b1 b2b1 b2b1 b2b1
+2873 b2b2 b2b2 b2b2 * 5c37 * 8ea1dcb7,dcb7,8ea1dcb7v,dcb7v 7737 e79cb7 7737 00007737 b2b2 b2b2 b2b2 b2b2 b2b2 b2b2 b2b2
+2874 b2b3 b2b3 b2b3 * 5c38 * 8ea1dcb8,dcb8,8ea1dcb8v,dcb8v 773e e79cbe 773e 0000773e b2b3 b2b3 b2b3 b2b3 b2b3 b2b3 b2b3
+2875 b2b4 b2b4 b2b4 * 5c39 * 8ea1dcb9,dcb9,8ea1dcb9v,dcb9v 773c e79cbc 773c 0000773c b2b4 b2b4 b2b4 b2b4 b2b4 b2b4 b2b4
+2876 b2b5 b2b5 b2b5 * 5c3a * 8ea1dcba,dcba,8ea1dcbav,dcbav 7736 e79cb6 7736 00007736 b2b5 b2b5 b2b5 b2b5 b2b5 b2b5 b2b5
+2877 b2b6 b2b6 b2b6 * 5c3b * 8ea1dcbb,dcbb,8ea1dcbbv,dcbbv 7738 e79cb8 7738 00007738 b2b6 b2b6 b2b6 b2b6 b2b6 b2b6 b2b6
+2878 b2b7 b2b7 b2b7 * 5c3c * 8ea1dcbc,dcbc,8ea1dcbcv,dcbcv 773a e79cba 773a 0000773a b2b7 b2b7 b2b7 b2b7 b2b7 b2b7 b2b7
+2879 b2b8 b2b8 b2b8 * 5c3d * 8ea1dcbd,dcbd,8ea1dcbdv,dcbdv 786b e7a1ab 786b 0000786b b2b8 b2b8 b2b8 b2b8 b2b8 b2b8 b2b8
+2880 b2b9 b2b9 b2b9 * 5c3e * 8ea1dcbe,dcbe,8ea1dcbev,dcbev 7843 e7a183 7843 00007843 b2b9 b2b9 b2b9 b2b9 b2b9 b2b9 b2b9
+2881 b2ba b2ba b2ba * 5c3f * 8ea1dcbf,dcbf,8ea1dcbfv,dcbfv 784e e7a18e 784e 0000784e b2ba b2ba b2ba b2ba b2ba b2ba b2ba
+2882 b2bb b2bb b2bb * 5c40 * 8ea1dcc0,dcc0,8ea1dcc0v,dcc0v 7965 e7a5a5 7965 00007965 b2bb b2bb b2bb b2bb b2bb b2bb b2bb
+2883 b2bc b2bc b2bc * 5c41 * 8ea1dcc1,dcc1,8ea1dcc1v,dcc1v 7968 e7a5a8 7968 00007968 b2bc b2bc b2bc b2bc b2bc b2bc b2bc
+2884 b2bd b2bd b2bd * 5c42 * 8ea1dcc2,dcc2,8ea1dcc2v,dcc2v 796d e7a5ad 796d 0000796d b2bd b2bd b2bd b2bd b2bd b2bd b2bd
+2885 b2be b2be b2be * 5c43 * 8ea1dcc3,dcc3,8ea1dcc3v,dcc3v 79fb e7a7bb 79fb 000079fb b2be b2be b2be b2be b2be b2be b2be
+2886 b2bf b2bf b2bf * 5c44 * 8ea1dcc4,dcc4,8ea1dcc4v,dcc4v 7a92 e7aa92 7a92 00007a92 b2bf b2bf b2bf b2bf b2bf b2bf b2bf
+2887 b2c0 b2c0 b2c0 * 5c45 * 8ea1dcc5,dcc5,8ea1dcc5v,dcc5v 7a95 e7aa95 7a95 00007a95 b2c0 b2c0 b2c0 b2c0 b2c0 b2c0 b2c0
+2888 b2c1 b2c1 b2c1 * 5c46 * 8ea1dcc6,dcc6,8ea1dcc6v,dcc6v 7b20 e7aca0 7b20 00007b20 b2c1 b2c1 b2c1 b2c1 b2c1 b2c1 b2c1
+2889 b2c2 b2c2 b2c2 * 5c47 * 8ea1dcc7,dcc7,8ea1dcc7v,dcc7v 7b28 e7aca8 7b28 00007b28 b2c2 b2c2 b2c2 b2c2 b2c2 b2c2 b2c2
+2890 b2c3 b2c3 b2c3 * 5c48 * 8ea1dcc8,dcc8,8ea1dcc8v,dcc8v 7b1b e7ac9b 7b1b 00007b1b b2c3 b2c3 b2c3 b2c3 b2c3 b2c3 b2c3
+2891 b2c4 b2c4 b2c4 * 5c49 * 8ea1dcc9,dcc9,8ea1dcc9v,dcc9v 7b2c e7acac 7b2c 00007b2c b2c4 b2c4 b2c4 b2c4 b2c4 b2c4 b2c4
+2892 b2c5 b2c5 b2c5 * 5c4a * 8ea1dcca,dcca,8ea1dccav,dccav 7b26 e7aca6 7b26 00007b26 b2c5 b2c5 b2c5 b2c5 b2c5 b2c5 b2c5
+2893 b2c6 b2c6 b2c6 * 5c4b * 8ea1dccb,dccb,8ea1dccbv,dccbv 7b19 e7ac99 7b19 00007b19 b2c6 b2c6 b2c6 b2c6 b2c6 b2c6 b2c6
+2894 b2c7 b2c7 b2c7 * 5c4c * 8ea1dccc,dccc,8ea1dcccv,dcccv 7b1e e7ac9e 7b1e 00007b1e b2c7 b2c7 b2c7 b2c7 b2c7 b2c7 b2c7
+2895 b2c8 b2c8 b2c8 * 5c4d * 8ea1dccd,dccd,8ea1dccdv,dccdv 7b2e e7acae 7b2e 00007b2e b2c8 b2c8 b2c8 b2c8 b2c8 b2c8 b2c8
+2896 b2c9 b2c9 b2c9 * 5c4e * 8ea1dcce,dcce,8ea1dccev,dccev 7c92 e7b292 7c92 00007c92 b2c9 b2c9 b2c9 b2c9 b2c9 b2c9 b2c9
+2897 b2ca b2ca b2ca * 5c4f * 8ea1dccf,dccf,8ea1dccfv,dccfv 7c97 e7b297 7c97 00007c97 b2ca b2ca b2ca b2ca b2ca b2ca b2ca
+2898 b2cb b2cb b2cb * 5c50 * 8ea1dcd0,dcd0,8ea1dcd0v,dcd0v 7c95 e7b295 7c95 00007c95 b2cb b2cb b2cb b2cb b2cb b2cb b2cb
+2899 b2cc b2cc b2cc * 5c51 * 8ea1dcd1,dcd1,8ea1dcd1v,dcd1v 7d46 e7b586 7d46 00007d46 b2cc b2cc b2cc b2cc b2cc b2cc b2cc
+2900 b2cd b2cd b2cd * 5c52 * 8ea1dcd2,dcd2,8ea1dcd2v,dcd2v 7d43 e7b583 7d43 00007d43 b2cd b2cd b2cd b2cd b2cd b2cd b2cd
+2901 b2ce b2ce b2ce * 5c53 * 8ea1dcd3,dcd3,8ea1dcd3v,dcd3v 7d71 e7b5b1 7d71 00007d71 b2ce b2ce b2ce b2ce b2ce b2ce b2ce
+2902 b2cf b2cf b2cf * 5c54 * 8ea1dcd4,dcd4,8ea1dcd4v,dcd4v 7d2e e7b4ae 7d2e 00007d2e b2cf b2cf b2cf b2cf b2cf b2cf b2cf
+2903 b2d0 b2d0 b2d0 * 5c55 * 8ea1dcd5,dcd5,8ea1dcd5v,dcd5v 7d39 e7b4b9 7d39 00007d39 b2d0 b2d0 b2d0 b2d0 b2d0 b2d0 b2d0
+2904 b2d1 b2d1 b2d1 * 5c56 * 8ea1dcd6,dcd6,8ea1dcd6v,dcd6v 7d3c e7b4bc 7d3c 00007d3c b2d1 b2d1 b2d1 b2d1 b2d1 b2d1 b2d1
+2905 b2d2 b2d2 b2d2 * 5c57 * 8ea1dcd7,dcd7,8ea1dcd7v,dcd7v 7d40 e7b580 7d40 00007d40 b2d2 b2d2 b2d2 b2d2 b2d2 b2d2 b2d2
+2906 b2d3 b2d3 b2d3 * 5c58 * 8ea1dcd8,dcd8,8ea1dcd8v,dcd8v 7d30 e7b4b0 7d30 00007d30 b2d3 b2d3 b2d3 b2d3 b2d3 b2d3 b2d3
+2907 b2d4 b2d4 b2d4 * 5c59 * 8ea1dcd9,dcd9,8ea1dcd9v,dcd9v 7d33 e7b4b3 7d33 00007d33 b2d4 b2d4 b2d4 b2d4 b2d4 b2d4 b2d4
+2908 b2d5 b2d5 b2d5 * 5c5a * 8ea1dcda,dcda,8ea1dcdav,dcdav 7d44 e7b584 7d44 00007d44 b2d5 b2d5 b2d5 b2d5 b2d5 b2d5 b2d5
+2909 b2d6 b2d6 b2d6 * 5c5b * 8ea1dcdb,dcdb,8ea1dcdbv,dcdbv 7d2f e7b4af 7d2f 00007d2f b2d6 b2d6 b2d6 b2d6 b2d6 b2d6 b2d6
+2910 b2d7 b2d7 b2d7 * 5c5c * 8ea1dcdc,dcdc,8ea1dcdcv,dcdcv 7d42 e7b582 7d42 00007d42 b2d7 b2d7 b2d7 b2d7 b2d7 b2d7 b2d7
+2911 b2d8 b2d8 b2d8 * 5c5d * 8ea1dcdd,dcdd,8ea1dcddv,dcddv 7d32 e7b4b2 7d32 00007d32 b2d8 b2d8 b2d8 b2d8 b2d8 b2d8 b2d8
+2912 b2d9 b2d9 b2d9 * 5c5e * 8ea1dcde,dcde,8ea1dcdev,dcdev 7d31 e7b4b1 7d31 00007d31 b2d9 b2d9 b2d9 b2d9 b2d9 b2d9 b2d9
+2913 b2da b2da b2da * 5c5f * 8ea1dcdf,dcdf,8ea1dcdfv,dcdfv 7f3d e7bcbd 7f3d 00007f3d b2da b2da b2da b2da b2da b2da b2da
+2914 b2db b2db b2db * 5c60 * 8ea1dce0,dce0,8ea1dce0v,dce0v 7f9e e7be9e 7f9e 00007f9e b2db b2db b2db b2db b2db b2db b2db
+2915 b2dc b2dc b2dc * 5c61 * 8ea1dce1,dce1,8ea1dce1v,dce1v 7f9a e7be9a 7f9a 00007f9a b2dc b2dc b2dc b2dc b2dc b2dc b2dc
+2916 b2dd b2dd b2dd * 5c62 * 8ea1dce2,dce2,8ea1dce2v,dce2v 7fcc e7bf8c 7fcc 00007fcc b2dd b2dd b2dd b2dd b2dd b2dd b2dd
+2917 b2de b2de b2de * 5c63 * 8ea1dce3,dce3,8ea1dce3v,dce3v 7fce e7bf8e 7fce 00007fce b2de b2de b2de b2de b2de b2de b2de
+2918 b2df b2df b2df * 5c64 * 8ea1dce4,dce4,8ea1dce4v,dce4v 7fd2 e7bf92 7fd2 00007fd2 b2df b2df b2df b2df b2df b2df b2df
+2919 b2e0 b2e0 b2e0 * 5c65 * 8ea1dce5,dce5,8ea1dce5v,dce5v 801c e8809c 801c 0000801c b2e0 b2e0 b2e0 b2e0 b2e0 b2e0 b2e0
+2920 b2e1 b2e1 b2e1 * 5c66 * 8ea1dce6,dce6,8ea1dce6v,dce6v 804a e8818a 804a 0000804a b2e1 b2e1 b2e1 b2e1 b2e1 b2e1 b2e1
+2921 b2e2 b2e2 b2e2 * 5c67 * 8ea1dce7,dce7,8ea1dce7v,dce7v 8046 e88186 8046 00008046 b2e2 b2e2 b2e2 b2e2 b2e2 b2e2 b2e2
+2922 b2e3 b2e3 b2e3 * 5c68 * 8ea1dce8,dce8,8ea1dce8v,dce8v 812f e884af 812f 0000812f b2e3 b2e3 b2e3 b2e3 b2e3 b2e3 b2e3
+2923 b2e4 b2e4 b2e4 * 5c69 * 8ea1dce9,dce9,8ea1dce9v,dce9v 8116 e88496 8116 00008116 b2e4 b2e4 b2e4 b2e4 b2e4 b2e4 b2e4
+2924 b2e5 b2e5 b2e5 * 5c6a * 8ea1dcea,dcea,8ea1dceav,dceav 8123 e884a3 8123 00008123 b2e5 b2e5 b2e5 b2e5 b2e5 b2e5 b2e5
+2925 b2e6 b2e6 b2e6 * 5c6b * 8ea1dceb,dceb,8ea1dcebv,dcebv 812b e884ab 812b 0000812b b2e6 b2e6 b2e6 b2e6 b2e6 b2e6 b2e6
+2926 b2e7 b2e7 b2e7 * 5c6c * 8ea1dcec,dcec,8ea1dcecv,dcecv 8129 e884a9 8129 00008129 b2e7 b2e7 b2e7 b2e7 b2e7 b2e7 b2e7
+2927 b2e8 b2e8 b2e8 * 5c6d * 8ea1dced,dced,8ea1dcedv,dcedv 8130 e884b0 8130 00008130 b2e8 b2e8 b2e8 b2e8 b2e8 b2e8 b2e8
+2928 b2e9 b2e9 b2e9 * 5c6e * 8ea1dcee,dcee,8ea1dceev,dceev 8124 e884a4 8124 00008124 b2e9 b2e9 b2e9 b2e9 b2e9 b2e9 b2e9
+2929 b2ea b2ea b2ea * 5c6f * 8ea1dcef,dcef,8ea1dcefv,dcefv 8202 e88882 8202 00008202 b2ea b2ea b2ea b2ea b2ea b2ea b2ea
+2930 b2eb b2eb b2eb * 5c70 * 8ea1dcf0,dcf0,8ea1dcf0v,dcf0v 8235 e888b5 8235 00008235 b2eb b2eb b2eb b2eb b2eb b2eb b2eb
+2931 b2ec b2ec b2ec * 5c71 * 8ea1dcf1,dcf1,8ea1dcf1v,dcf1v 8237 e888b7 8237 00008237 b2ec b2ec b2ec b2ec b2ec b2ec b2ec
+2932 b2ed b2ed b2ed * 5c72 * 8ea1dcf2,dcf2,8ea1dcf2v,dcf2v 8236 e888b6 8236 00008236 b2ed b2ed b2ed b2ed b2ed b2ed b2ed
+2933 b2ee b2ee b2ee * 5c73 * 8ea1dcf3,dcf3,8ea1dcf3v,dcf3v 8239 e888b9 8239 00008239 b2ee b2ee b2ee b2ee b2ee b2ee b2ee
+2934 b2ef b2ef b2ef * 5c74 * 8ea1dcf4,dcf4,8ea1dcf4v,dcf4v 838e e88e8e 838e 0000838e b2ef b2ef b2ef b2ef b2ef b2ef b2ef
+2935 b2f0 b2f0 b2f0 * 5c75 * 8ea1dcf5,dcf5,8ea1dcf5v,dcf5v 839e e88e9e 839e 0000839e b2f0 b2f0 b2f0 b2f0 b2f0 b2f0 b2f0
+2936 b2f1 b2f1 b2f1 * 5c76 * 8ea1dcf6,dcf6,8ea1dcf6v,dcf6v 8398 e88e98 8398 00008398 b2f1 b2f1 b2f1 b2f1 b2f1 b2f1 b2f1
+2937 b2f2 b2f2 b2f2 * 5c77 * 8ea1dcf7,dcf7,8ea1dcf7v,dcf7v 8378 e88db8 8378 00008378 b2f2 b2f2 b2f2 b2f2 b2f2 b2f2 b2f2
+2938 b2f3 b2f3 b2f3 * 5c78 * 8ea1dcf8,dcf8,8ea1dcf8v,dcf8v 83a2 e88ea2 83a2 000083a2 b2f3 b2f3 b2f3 b2f3 b2f3 b2f3 b2f3
+2939 b2f4 b2f4 b2f4 * 5c79 * 8ea1dcf9,dcf9,8ea1dcf9v,dcf9v 8396 e88e96 8396 00008396 b2f4 b2f4 b2f4 b2f4 b2f4 b2f4 b2f4
+2940 b2f5 b2f5 b2f5 * 5c7a * 8ea1dcfa,dcfa,8ea1dcfav,dcfav 83bd e88ebd 83bd 000083bd b2f5 b2f5 b2f5 b2f5 b2f5 b2f5 b2f5
+2941 b2f6 b2f6 b2f6 * 5c7b * 8ea1dcfb,dcfb,8ea1dcfbv,dcfbv 83ab e88eab 83ab 000083ab b2f6 b2f6 b2f6 b2f6 b2f6 b2f6 b2f6
+2942 b2f7 b2f7 b2f7 * 5c7c * 8ea1dcfc,dcfc,8ea1dcfcv,dcfcv 8392 e88e92 8392 00008392 b2f7 b2f7 b2f7 b2f7 b2f7 b2f7 b2f7
+2943 b2f8 b2f8 b2f8 * 5c7d * 8ea1dcfd,dcfd,8ea1dcfdv,dcfdv 838a e88e8a 838a 0000838a b2f8 b2f8 b2f8 b2f8 b2f8 b2f8 b2f8
+2944 b2f9 b2f9 b2f9 * 5c7e * 8ea1dcfe,dcfe,8ea1dcfev,dcfev 8393 e88e93 8393 00008393 b2f9 b2f9 b2f9 b2f9 b2f9 b2f9 b2f9
+2945 b2fa b2fa b2fa * 5d21 * 8ea1dda1,dda1,8ea1dda1v,dda1v 8389 e88e89 8389 00008389 b2fa b2fa b2fa b2fa b2fa b2fa b2fa
+2946 b2fb b2fb b2fb * 5d22 * 8ea1dda2,dda2,8ea1dda2v,dda2v 83a0 e88ea0 83a0 000083a0 b2fb b2fb b2fb b2fb b2fb b2fb b2fb
+2947 b2fc b2fc b2fc * 5d23 * 8ea1dda3,dda3,8ea1dda3v,dda3v 8377 e88db7 8377 00008377 b2fc b2fc b2fc b2fc b2fc b2fc b2fc
+2948 b2fd b2fd b2fd * 5d24 * 8ea1dda4,dda4,8ea1dda4v,dda4v 837b e88dbb 837b 0000837b b2fd b2fd b2fd b2fd b2fd b2fd b2fd
+2949 b2fe b2fe b2fe * 5d25 * 8ea1dda5,dda5,8ea1dda5v,dda5v 837c e88dbc 837c 0000837c b2fe b2fe b2fe b2fe b2fe b2fe b2fe
+2950 b340 b340 b340 * 5d26 * 8ea1dda6,dda6,8ea1dda6v,dda6v 8386 e88e86 8386 00008386 b340 b340 b340 b340 b340 b340 b340
+2951 b341 b341 b341 * 5d27 * 8ea1dda7,dda7,8ea1dda7v,dda7v 83a7 e88ea7 83a7 000083a7 b341 b341 b341 b341 b341 b341 b341
+2952 b342 b342 b342 * 5d28 * 8ea1dda8,dda8,8ea1dda8v,dda8v 8655 e89995 8655 00008655 b342 b342 b342 b342 b342 b342 b342
+2953 b343 b343 b343 * 5d29 * 8ea1dda9,dda9,8ea1dda9v,dda9v 5f6a e5bdaa 5f6a 00005f6a b343 b343 b343 b343 b343 b343 b343
+2954 b344 b344 b344 * 5d2a * 8ea1ddaa,ddaa,8ea1ddaav,ddaav 86c7 e89b87 86c7 000086c7 b344 b344 b344 b344 b344 b344 b344
+2955 b345 b345 b345 * 5d2b * 8ea1ddab,ddab,8ea1ddabv,ddabv 86c0 e89b80 86c0 000086c0 b345 b345 b345 b345 b345 b345 b345
+2956 b346 b346 b346 * 5d2c * 8ea1ddac,ddac,8ea1ddacv,ddacv 86b6 e89ab6 86b6 000086b6 b346 b346 b346 b346 b346 b346 b346
+2957 b347 b347 b347 * 5d2d * 8ea1ddad,ddad,8ea1ddadv,ddadv 86c4 e89b84 86c4 000086c4 b347 b347 b347 b347 b347 b347 b347
+2958 b348 b348 b348 * 5d2e * 8ea1ddae,ddae,8ea1ddaev,ddaev 86b5 e89ab5 86b5 000086b5 b348 b348 b348 b348 b348 b348 b348
+2959 b349 b349 b349 * 5d2f * 8ea1ddaf,ddaf,8ea1ddafv,ddafv 86c6 e89b86 86c6 000086c6 b349 b349 b349 b349 b349 b349 b349
+2960 b34a b34a b34a * 5d30 * 8ea1ddb0,ddb0,8ea1ddb0v,ddb0v 86cb e89b8b 86cb 000086cb b34a b34a b34a b34a b34a b34a b34a
+2961 b34b b34b b34b * 5d31 * 8ea1ddb1,ddb1,8ea1ddb1v,ddb1v 86b1 e89ab1 86b1 000086b1 b34b b34b b34b b34b b34b b34b b34b
+2962 b34c b34c b34c * 5d32 * 8ea1ddb2,ddb2,8ea1ddb2v,ddb2v 86af e89aaf 86af 000086af b34c b34c b34c b34c b34c b34c b34c
+2963 b34d b34d b34d * 5d33 * 8ea1ddb3,ddb3,8ea1ddb3v,ddb3v 86c9 e89b89 86c9 000086c9 b34d b34d b34d b34d b34d b34d b34d
+2964 b34e b34e b34e * 5d34 * 8ea1ddb4,ddb4,8ea1ddb4v,ddb4v 8853 e8a193 8853 00008853 b34e b34e b34e b34e b34e b34e b34e
+2965 b34f b34f b34f * 5d35 * 8ea1ddb5,ddb5,8ea1ddb5v,ddb5v 889e e8a29e 889e 0000889e b34f b34f b34f b34f b34f b34f b34f
+2966 b350 b350 b350 * 5d36 * 8ea1ddb6,ddb6,8ea1ddb6v,ddb6v 8888 e8a288 8888 00008888 b350 b350 b350 b350 b350 b350 b350
+2967 b351 b351 b351 * 5d37 * 8ea1ddb7,ddb7,8ea1ddb7v,ddb7v 88ab e8a2ab 88ab 000088ab b351 b351 b351 b351 b351 b351 b351
+2968 b352 b352 b352 * 5d38 * 8ea1ddb8,ddb8,8ea1ddb8v,ddb8v 8892 e8a292 8892 00008892 b352 b352 b352 b352 b352 b352 b352
+2969 b353 b353 b353 * 5d39 * 8ea1ddb9,ddb9,8ea1ddb9v,ddb9v 8896 e8a296 8896 00008896 b353 b353 b353 b353 b353 b353 b353
+2970 b354 b354 b354 * 5d3a * 8ea1ddba,ddba,8ea1ddbav,ddbav 888d e8a28d 888d 0000888d b354 b354 b354 b354 b354 b354 b354
+2971 b355 b355 b355 * 5d3b * 8ea1ddbb,ddbb,8ea1ddbbv,ddbbv 888b e8a28b 888b 0000888b b355 b355 b355 b355 b355 b355 b355
+2972 b356 b356 b356 * 5d3c * 8ea1ddbc,ddbc,8ea1ddbcv,ddbcv 8993 e8a693 8993 00008993 b356 b356 b356 b356 b356 b356 b356
+2973 b357 b357 b357 * 5d3d * 8ea1ddbd,ddbd,8ea1ddbdv,ddbdv 898f e8a68f 898f 0000898f b357 b357 b357 b357 b357 b357 b357
+2974 b358 b358 b358 * 5d3e * 8ea1ddbe,ddbe,8ea1ddbev,ddbev 8a2a e8a8aa 8a2a 00008a2a b358 b358 b358 b358 b358 b358 b358
+2975 b359 b359 b359 * 5d3f * 8ea1ddbf,ddbf,8ea1ddbfv,ddbfv 8a1d e8a89d 8a1d 00008a1d b359 b359 b359 b359 b359 b359 b359
+2976 b35a b35a b35a * 5d40 * 8ea1ddc0,ddc0,8ea1ddc0v,ddc0v 8a23 e8a8a3 8a23 00008a23 b35a b35a b35a b35a b35a b35a b35a
+2977 b35b b35b b35b * 5d41 * 8ea1ddc1,ddc1,8ea1ddc1v,ddc1v 8a25 e8a8a5 8a25 00008a25 b35b b35b b35b b35b b35b b35b b35b
+2978 b35c b35c b35c * 5d42 * 8ea1ddc2,ddc2,8ea1ddc2v,ddc2v 8a31 e8a8b1 8a31 00008a31 b35c b35c b35c b35c b35c b35c b35c
+2979 b35d b35d b35d * 5d43 * 8ea1ddc3,ddc3,8ea1ddc3v,ddc3v 8a2d e8a8ad 8a2d 00008a2d b35d b35d b35d b35d b35d b35d b35d
+2980 b35e b35e b35e * 5d44 * 8ea1ddc4,ddc4,8ea1ddc4v,ddc4v 8a1f e8a89f 8a1f 00008a1f b35e b35e b35e b35e b35e b35e b35e
+2981 b35f b35f b35f * 5d45 * 8ea1ddc5,ddc5,8ea1ddc5v,ddc5v 8a1b e8a89b 8a1b 00008a1b b35f b35f b35f b35f b35f b35f b35f
+2982 b360 b360 b360 * 5d46 * 8ea1ddc6,ddc6,8ea1ddc6v,ddc6v 8a22 e8a8a2 8a22 00008a22 b360 b360 b360 b360 b360 b360 b360
+2983 b361 b361 b361 * 5d47 * 8ea1ddc7,ddc7,8ea1ddc7v,ddc7v 8c49 e8b189 8c49 00008c49 b361 b361 b361 b361 b361 b361 b361
+2984 b362 b362 b362 * 5d48 * 8ea1ddc8,ddc8,8ea1ddc8v,ddc8v 8c5a e8b19a 8c5a 00008c5a b362 b362 b362 b362 b362 b362 b362
+2985 b363 b363 b363 * 5d49 * 8ea1ddc9,ddc9,8ea1ddc9v,ddc9v 8ca9 e8b2a9 8ca9 00008ca9 b363 b363 b363 b363 b363 b363 b363
+2986 b364 b364 b364 * 5d4a * 8ea1ddca,ddca,8ea1ddcav,ddcav 8cac e8b2ac 8cac 00008cac b364 b364 b364 b364 b364 b364 b364
+2987 b365 b365 b365 * 5d4b * 8ea1ddcb,ddcb,8ea1ddcbv,ddcbv 8cab e8b2ab 8cab 00008cab b365 b365 b365 b365 b365 b365 b365
+2988 b366 b366 b366 * 5d4c * 8ea1ddcc,ddcc,8ea1ddccv,ddccv 8ca8 e8b2a8 8ca8 00008ca8 b366 b366 b366 b366 b366 b366 b366
+2989 b367 b367 b367 * 5d4d * 8ea1ddcd,ddcd,8ea1ddcdv,ddcdv 8caa e8b2aa 8caa 00008caa b367 b367 b367 b367 b367 b367 b367
+2990 b368 b368 b368 * 5d4e * 8ea1ddce,ddce,8ea1ddcev,ddcev 8ca7 e8b2a7 8ca7 00008ca7 b368 b368 b368 b368 b368 b368 b368
+2991 b369 b369 b369 * 5d4f * 8ea1ddcf,ddcf,8ea1ddcfv,ddcfv 8d67 e8b5a7 8d67 00008d67 b369 b369 b369 b369 b369 b369 b369
+2992 b36a b36a b36a * 5d50 * 8ea1ddd0,ddd0,8ea1ddd0v,ddd0v 8d66 e8b5a6 8d66 00008d66 b36a b36a b36a b36a b36a b36a b36a
+2993 b36b b36b b36b * 5d51 * 8ea1ddd1,ddd1,8ea1ddd1v,ddd1v 8dbe e8b6be 8dbe 00008dbe b36b b36b b36b b36b b36b b36b b36b
+2994 b36c b36c b36c * 5d52 * 8ea1ddd2,ddd2,8ea1ddd2v,ddd2v 8dba e8b6ba 8dba 00008dba b36c b36c b36c b36c b36c b36c b36c
+2995 b36d b36d b36d * 5d53 * 8ea1ddd3,ddd3,8ea1ddd3v,ddd3v 8edb e8bb9b 8edb 00008edb b36d b36d b36d b36d b36d b36d b36d
+2996 b36e b36e b36e * 5d54 * 8ea1ddd4,ddd4,8ea1ddd4v,ddd4v 8edf e8bb9f 8edf 00008edf b36e b36e b36e b36e b36e b36e b36e
+2997 b36f b36f b36f * 5d55 * 8ea1ddd5,ddd5,8ea1ddd5v,ddd5v 9019 e98099 9019 00009019 b36f b36f b36f b36f b36f b36f b36f
+2998 b370 b370 b370 * 5d56 * 8ea1ddd6,ddd6,8ea1ddd6v,ddd6v 900d e9808d 900d 0000900d b370 b370 b370 b370 b370 b370 b370
+2999 b371 b371 b371 * 5d57 * 8ea1ddd7,ddd7,8ea1ddd7v,ddd7v 901a e9809a 901a 0000901a b371 b371 b371 b371 b371 b371 b371
+3000 b372 b372 b372 * 5d58 * 8ea1ddd8,ddd8,8ea1ddd8v,ddd8v 9017 e98097 9017 00009017 b372 b372 b372 b372 b372 b372 b372
+3001 b373 b373 b373 * 5d59 * 8ea1ddd9,ddd9,8ea1ddd9v,ddd9v 9023 e980a3 9023 00009023 b373 b373 b373 b373 b373 b373 b373
+3002 b374 b374 b374 * 5d5a * 8ea1ddda,ddda,8ea1dddav,dddav 901f e9809f 901f 0000901f b374 b374 b374 b374 b374 b374 b374
+3003 b375 b375 b375 * 5d5b * 8ea1dddb,dddb,8ea1dddbv,dddbv 901d e9809d 901d 0000901d b375 b375 b375 b375 b375 b375 b375
+3004 b376 b376 b376 * 5d5c * 8ea1dddc,dddc,8ea1dddcv,dddcv 9010 e98090 9010 00009010 b376 b376 b376 b376 b376 b376 b376
+3005 b377 b377 b377 * 5d5d * 8ea1dddd,dddd,8ea1ddddv,ddddv 9015 e98095 9015 00009015 b377 b377 b377 b377 b377 b377 b377
+3006 b378 b378 b378 * 5d5e * 8ea1ddde,ddde,8ea1dddev,dddev 901e e9809e 901e 0000901e b378 b378 b378 b378 b378 b378 b378
+3007 b379 b379 b379 * 5d5f * 8ea1dddf,dddf,8ea1dddfv,dddfv 9020 e980a0 9020 00009020 b379 b379 b379 b379 b379 b379 b379
+3008 b37a b37a b37a * 5d60 * 8ea1dde0,dde0,8ea1dde0v,dde0v 900f e9808f 900f 0000900f b37a b37a b37a b37a b37a b37a b37a
+3009 b37b b37b b37b * 5d61 * 8ea1dde1,dde1,8ea1dde1v,dde1v 9022 e980a2 9022 00009022 b37b b37b b37b b37b b37b b37b b37b
+3010 b37c b37c b37c * 5d62 * 8ea1dde2,dde2,8ea1dde2v,dde2v 9016 e98096 9016 00009016 b37c b37c b37c b37c b37c b37c b37c
+3011 b37d b37d b37d * 5d63 * 8ea1dde3,dde3,8ea1dde3v,dde3v 901b e9809b 901b 0000901b b37d b37d b37d b37d b37d b37d b37d
+3012 b37e b37e b37e * 5d64 * 8ea1dde4,dde4,8ea1dde4v,dde4v 9014 e98094 9014 00009014 b37e b37e b37e b37e b37e b37e b37e
+3013 b3a1 b3a1 b3a1 * 5d65 * 8ea1dde5,dde5,8ea1dde5v,dde5v 90e8 e983a8 90e8 000090e8 b3a1 b3a1 b3a1 b3a1 b3a1 b3a1 b3a1
+3014 b3a2 b3a2 b3a2 * 5d66 * 8ea1dde6,dde6,8ea1dde6v,dde6v 90ed e983ad 90ed 000090ed b3a2 b3a2 b3a2 b3a2 b3a2 b3a2 b3a2
+3015 b3a3 b3a3 b3a3 * 5d67 * 8ea1dde7,dde7,8ea1dde7v,dde7v 90fd e983bd,ee91b8 90fd,e478 000090fd,0000e478 906d,b3a3 b3a3 b3a3 b3a3 b3a3 b3a3 906d,b3a3
+3016 b3a4 b3a4 b3a4 * 5d68 * 8ea1dde8,dde8,8ea1dde8v,dde8v 9157 e98597 9157 00009157 b3a4 b3a4 b3a4 b3a4 b3a4 b3a4 b3a4
+3017 b3a5 b3a5 b3a5 * 5d69 * 8ea1dde9,dde9,8ea1dde9v,dde9v 91ce e9878e 91ce 000091ce b3a5 b3a5 b3a5 b3a5 b3a5 b3a5 b3a5
+3018 b3a6 b3a6 b3a6 * 5d6a * 8ea1ddea,ddea,8ea1ddeav,ddeav 91f5 e987b5 91f5 000091f5 b3a6 b3a6 b3a6 b3a6 b3a6 b3a6 b3a6
+3019 b3a7 b3a7 b3a7 * 5d6b * 8ea1ddeb,ddeb,8ea1ddebv,ddebv 91e6 e987a6 91e6 000091e6 b3a7 b3a7 b3a7 b3a7 b3a7 b3a7 b3a7
+3020 b3a8 b3a8 b3a8 * 5d6c * 8ea1ddec,ddec,8ea1ddecv,ddecv 91e3 e987a3 91e3 000091e3 b3a8 b3a8 b3a8 b3a8 b3a8 b3a8 b3a8
+3021 b3a9 b3a9 b3a9 * 5d6d * 8ea1dded,dded,8ea1ddedv,ddedv 91e7 e987a7 91e7 000091e7 b3a9 b3a9 b3a9 b3a9 b3a9 b3a9 b3a9
+3022 b3aa b3aa b3aa * 5d6e * 8ea1ddee,ddee,8ea1ddeev,ddeev 91ed e987ad 91ed 000091ed b3aa b3aa b3aa b3aa b3aa b3aa b3aa
+3023 b3ab b3ab b3ab * 5d6f * 8ea1ddef,ddef,8ea1ddefv,ddefv 91e9 e987a9 91e9 000091e9 b3ab b3ab b3ab b3ab b3ab b3ab b3ab
+3024 b3ac b3ac b3ac * 5d70 * 8ea1ddf0,ddf0,8ea1ddf0v,ddf0v 9589 e99689 9589 00009589 b3ac b3ac b3ac b3ac b3ac b3ac b3ac
+3025 b3ad b3ad b3ad * 5d71 * 8ea1ddf1,ddf1,8ea1ddf1v,ddf1v 966a e999aa 966a 0000966a b3ad b3ad b3ad b3ad b3ad b3ad b3ad
+3026 b3ae b3ae b3ae * 5d72 * 8ea1ddf2,ddf2,8ea1ddf2v,ddf2v 9675 e999b5 9675 00009675 b3ae b3ae b3ae b3ae b3ae b3ae b3ae
+3027 b3af b3af b3af * 5d73 * 8ea1ddf3,ddf3,8ea1ddf3v,ddf3v 9673 e999b3 9673 00009673 b3af b3af b3af b3af b3af b3af b3af
+3028 b3b0 b3b0 b3b0 * 5d74 * 8ea1ddf4,ddf4,8ea1ddf4v,ddf4v 9678 e999b8 9678 00009678 b3b0 b3b0 b3b0 b3b0 b3b0 b3b0 b3b0
+3029 b3b1 b3b1 b3b1 * 5d75 * 8ea1ddf5,ddf5,8ea1ddf5v,ddf5v 9670 e999b0 9670 00009670 b3b1 b3b1 b3b1 b3b1 b3b1 b3b1 b3b1
+3030 b3b2 b3b2 b3b2 * 5d76 * 8ea1ddf6,ddf6,8ea1ddf6v,ddf6v 9674 e999b4 9674 00009674 b3b2 b3b2 b3b2 b3b2 b3b2 b3b2 b3b2
+3031 b3b3 b3b3 b3b3 * 5d77 * 8ea1ddf7,ddf7,8ea1ddf7v,ddf7v 9676 e999b6 9676 00009676 b3b3 b3b3 b3b3 b3b3 b3b3 b3b3 b3b3
+3032 b3b4 b3b4 b3b4 * 5d78 * 8ea1ddf8,ddf8,8ea1ddf8v,ddf8v 9677 e999b7 9677 00009677 b3b4 b3b4 b3b4 b3b4 b3b4 b3b4 b3b4
+3033 b3b5 b3b5 b3b5 * 5d79 * 8ea1ddf9,ddf9,8ea1ddf9v,ddf9v 966c e999ac 966c 0000966c b3b5 b3b5 b3b5 b3b5 b3b5 b3b5 b3b5
+3034 b3b6 b3b6 b3b6 * 5d7a * 8ea1ddfa,ddfa,8ea1ddfav,ddfav 96c0 e99b80 96c0 000096c0 b3b6 b3b6 b3b6 b3b6 b3b6 b3b6 b3b6
+3035 b3b7 b3b7 b3b7 * 5d7b * 8ea1ddfb,ddfb,8ea1ddfbv,ddfbv 96ea e99baa 96ea 000096ea b3b7 b3b7 b3b7 b3b7 b3b7 b3b7 b3b7
+3036 b3b8 b3b8 b3b8 * 5d7c * 8ea1ddfc,ddfc,8ea1ddfcv,ddfcv 96e9 e99ba9 96e9 000096e9 b3b8 b3b8 b3b8 b3b8 b3b8 b3b8 b3b8
+3037 b3b9 b3b9 b3b9 * 5d7d * 8ea1ddfd,ddfd,8ea1ddfdv,ddfdv 7ae0 e7aba0 7ae0 00007ae0 b3b9 b3b9 b3b9 b3b9 b3b9 b3b9 b3b9
+3038 b3ba b3ba b3ba * 5d7e * 8ea1ddfe,ddfe,8ea1ddfev,ddfev 7adf e7ab9f 7adf 00007adf b3ba b3ba b3ba b3ba b3ba b3ba b3ba
+3039 b3bb b3bb b3bb * 5e21 * 8ea1dea1,dea1,8ea1dea1v,dea1v 9802 e9a082 9802 00009802 b3bb b3bb b3bb b3bb b3bb b3bb b3bb
+3040 b3bc b3bc b3bc * 5e22 * 8ea1dea2,dea2,8ea1dea2v,dea2v 9803 e9a083 9803 00009803 b3bc b3bc b3bc b3bc b3bc b3bc b3bc
+3041 b3bd b3bd b3bd * 2926,5e23 * 8ea1a9a6,8ea1dea3,a9a6,dea3,8ea1a9a6v,8ea1dea3v,a9a6v,dea3v 9b5a e9ad9a,e2bf82 9b5a,2fc2 00009b5a,00002fc2 b3bd b3bd b3bd b3bd b3bd b3bd b3bd
+3042 b3be b3be b3be * 2927,5e24 * 8ea1a9a7,8ea1dea4,a9a7,dea4,8ea1a9a7v,8ea1dea4v,a9a7v,dea4v 9ce5 e9b3a5,e2bf83 9ce5,2fc3 00009ce5,00002fc3 b3be b3be b3be b3be b3be b3be b3be
+3043 b3bf b3bf b3bf * 2928,5e25 * 8ea1a9a8,8ea1dea5,a9a8,dea5,8ea1a9a8v,8ea1dea5v,a9a8v,dea5v 9e75 e9b9b5,e2bf84 9e75,2fc4 00009e75,00002fc4 b3bf b3bf 9157,b3bf b3bf b3bf b3bf b3bf
+3044 b3c0 b3c0 b3c0 * 2929,5e26 * 8ea1a9a9,8ea1dea6,a9a9,dea6,8ea1a9a9v,8ea1dea6v,a9a9v,dea6v 9e7f e9b9bf,e2bf85 9e7f,2fc5 00009e7f,00002fc5 b3c0 b3c0 b3c0 b3c0 b3c0 b3c0 b3c0
+3045 b3c1 b3c1 b3c1 * 292a,5e27 * 8ea1a9aa,8ea1dea7,a9aa,dea7,8ea1a9aav,8ea1dea7v,a9aav,dea7v 9ea5 e9baa5,e2bf86 9ea5,2fc6 00009ea5,00002fc6 b3c1 b3c1 b3c1 b3c1 b3c1 b3c1 b3c1
+3046 b3c2 b3c2 b3c2 * 292b,5e28 * 8ea1a9ab,8ea1dea8,a9ab,dea8,8ea1a9abv,8ea1dea8v,a9abv,dea8v 9ebb e9babb,e2bf87 9ebb,2fc7 00009ebb,00002fc7 b3c2 b3c2 b3c2 b3c2 b3c2 b3c2 b3c2
+3047 b3c3 b3c3 b3c3 * 5e29 * 8ea1dea9,dea9,8ea1dea9v,dea9v 50a2 e582a2 50a2 000050a2 b3c3 b3c3 b3c3 b3c3 b3c3 b3c3 b3c3
+3048 b3c4 b3c4 b3c4 * 5e2a * 8ea1deaa,deaa,8ea1deaav,deaav 508d e5828d 508d 0000508d b3c4 b3c4 b3c4 b3c4 b3c4 b3c4 b3c4
+3049 b3c5 b3c5 b3c5 * 5e2b * 8ea1deab,deab,8ea1deabv,deabv 5085 e58285 5085 00005085 b3c5 b3c5 b3c5 b3c5 b3c5 b3c5 b3c5
+3050 b3c6 b3c6 b3c6 * 5e2c * 8ea1deac,deac,8ea1deacv,deacv 5099 e58299 5099 00005099 b3c6 b3c6 b3c6 b3c6 b3c6 b3c6 b3c6
+3051 b3c7 b3c7 b3c7 * 5e2d * 8ea1dead,dead,8ea1deadv,deadv 5091 e58291 5091 00005091 b3c7 b3c7 b3c7 b3c7 b3c7 b3c7 b3c7
+3052 b3c8 b3c8 b3c8 * 5e2e * 8ea1deae,deae,8ea1deaev,deaev 5080 e58280 5080 00005080 b3c8 b3c8 b3c8 b3c8 b3c8 b3c8 b3c8
+3053 b3c9 b3c9 b3c9 * 5e2f * 8ea1deaf,deaf,8ea1deafv,deafv 5096 e58296 5096 00005096 b3c9 b3c9 b3c9 b3c9 b3c9 b3c9 b3c9
+3054 b3ca b3ca b3ca * 5e30 * 8ea1deb0,deb0,8ea1deb0v,deb0v 5098 e58298 5098 00005098 b3ca b3ca b3ca b3ca b3ca b3ca b3ca
+3055 b3cb b3cb b3cb * 5e31 * 8ea1deb1,deb1,8ea1deb1v,deb1v 509a e5829a 509a 0000509a b3cb b3cb b3cb b3cb b3cb b3cb b3cb
+3056 b3cc b3cc b3cc * 5e32 * 8ea1deb2,deb2,8ea1deb2v,deb2v 6700 e69c80 6700 00006700 b3cc b3cc b3cc b3cc b3cc b3cc b3cc
+3057 b3cd b3cd b3cd * 5e33 * 8ea1deb3,deb3,8ea1deb3v,deb3v 51f1 e587b1 51f1 000051f1 b3cd b3cd b3cd b3cd b3cd b3cd b3cd
+3058 b3ce b3ce b3ce * 5e34 * 8ea1deb4,deb4,8ea1deb4v,deb4v 5272 e589b2 5272 00005272 b3ce b3ce b3ce b3ce b3ce b3ce b3ce
+3059 b3cf b3cf b3cf * 5e35 * 8ea1deb5,deb5,8ea1deb5v,deb5v 5274 e589b4 5274 00005274 b3cf b3cf b3cf b3cf b3cf b3cf b3cf
+3060 b3d0 b3d0 b3d0 * 5e36 * 8ea1deb6,deb6,8ea1deb6v,deb6v 5275 e589b5 5275 00005275 b3d0 b3d0 b3d0 b3d0 b3d0 b3d0 b3d0
+3061 b3d1 b3d1 b3d1 * 5e37 * 8ea1deb7,deb7,8ea1deb7v,deb7v 5269 e589a9 5269 00005269 b3d1 b3d1 b3d1 b3d1 b3d1 b3d1 b3d1
+3062 b3d2 b3d2 b3d2 * 5e38 * 8ea1deb8,deb8,8ea1deb8v,deb8v 52de e58b9e 52de 000052de b3d2 b3d2 b3d2 b3d2 b3d2 b3d2 b3d2
+3063 b3d3 b3d3 b3d3 * 5e39 * 8ea1deb9,deb9,8ea1deb9v,deb9v 52dd e58b9d 52dd 000052dd b3d3 b3d3 b3d3 b3d3 b3d3 b3d3 b3d3
+3064 b3d4 b3d4 b3d4 * 5e3a * 8ea1deba,deba,8ea1debav,debav 52db e58b9b 52db 000052db b3d4 b3d4 b3d4 b3d4 b3d4 b3d4 b3d4
+3065 b3d5 b3d5 b3d5 * 5e3b * 8ea1debb,debb,8ea1debbv,debbv 535a e58d9a 535a 0000535a b3d5 b3d5 b3d5 b3d5 b3d5 b3d5 b3d5
+3066 b3d6 b3d6 b3d6 * 5e3c * 8ea1debc,debc,8ea1debcv,debcv 53a5 e58ea5 53a5 000053a5 b3d6 b3d6 b3d6 b3d6 b3d6 b3d6 b3d6
+3067 b3d7 b3d7 b3d7 * 5e3d * 8ea1debd,debd,8ea1debdv,debdv 557b e595bb 557b 0000557b b3d7 b3d7 b3d7 b3d7 b3d7 b3d7 b3d7
+3068 b3d8 b3d8 b3d8 * 5e3e * 8ea1debe,debe,8ea1debev,debev 5580 e59680 5580 00005580 b3d8 b3d8 b3d8 b3d8 b3d8 b3d8 b3d8
+3069 b3d9 b3d9 b3d9 * 5e3f * 8ea1debf,debf,8ea1debfv,debfv 55a7 e596a7 55a7 000055a7 b3d9 b3d9 b3d9 b3d9 b3d9 b3d9 b3d9
+3070 b3da b3da b3da * 5e40 * 8ea1dec0,dec0,8ea1dec0v,dec0v 557c e595bc 557c 0000557c b3da b3da b3da b3da b3da b3da b3da
+3071 b3db b3db b3db * 5e41 * 8ea1dec1,dec1,8ea1dec1v,dec1v 558a e5968a 558a 0000558a b3db b3db b3db b3db b3db b3db b3db
+3072 b3dc b3dc b3dc * 5e42 * 8ea1dec2,dec2,8ea1dec2v,dec2v 559d e5969d 559d 0000559d b3dc b3dc b3dc b3dc b3dc b3dc b3dc
+3073 b3dd b3dd b3dd * 5e43 * 8ea1dec3,dec3,8ea1dec3v,dec3v 5598 e59698 5598 00005598 b3dd b3dd b3dd b3dd b3dd b3dd b3dd
+3074 b3de b3de b3de * 5e44 * 8ea1dec4,dec4,8ea1dec4v,dec4v 5582 e59682 5582 00005582 b3de b3de b3de b3de b3de b3de b3de
+3075 b3df b3df b3df * 5e45 * 8ea1dec5,dec5,8ea1dec5v,dec5v 559c e5969c 559c 0000559c b3df b3df b3df b3df b3df b3df b3df
+3076 b3e0 b3e0 b3e0 * 5e46 * 8ea1dec6,dec6,8ea1dec6v,dec6v 55aa e596aa 55aa 000055aa b3e0 b3e0 b3e0 b3e0 b3e0 b3e0 b3e0
+3077 b3e1 b3e1 b3e1 * 5e47 * 8ea1dec7,dec7,8ea1dec7v,dec7v 5594 e59694 5594 00005594 b3e1 b3e1 b3e1 b3e1 b3e1 b3e1 b3e1
+3078 b3e2 b3e2 b3e2 * 5e48 * 8ea1dec8,dec8,8ea1dec8v,dec8v 5587 e59687 5587 00005587 b3e2 b3e2 b3e2 b3e2 b3e2 b3e2 b3e2
+3079 b3e3 b3e3 b3e3 * 5e49 * 8ea1dec9,dec9,8ea1dec9v,dec9v 558b e5968b 558b 0000558b b3e3 b3e3 b3e3 b3e3 b3e3 b3e3 b3e3
+3080 b3e4 b3e4 b3e4 * 5e4a * 8ea1deca,deca,8ea1decav,decav 5583 e59683 5583 00005583 b3e4 b3e4 b3e4 b3e4 b3e4 b3e4 b3e4
+3081 b3e5 b3e5 b3e5 * 5e4b * 8ea1decb,decb,8ea1decbv,decbv 55b3 e596b3 55b3 000055b3 b3e5 b3e5 b3e5 b3e5 b3e5 b3e5 b3e5
+3082 b3e6 b3e6 b3e6 * 5e4c * 8ea1decc,decc,8ea1deccv,deccv 55ae e596ae 55ae 000055ae b3e6 b3e6 b3e6 b3e6 b3e6 b3e6 b3e6
+3083 b3e7 b3e7 b3e7 * 5e4d * 8ea1decd,decd,8ea1decdv,decdv 559f e5969f 559f 0000559f b3e7 b3e7 b3e7 b3e7 b3e7 b3e7 b3e7
+3084 b3e8 b3e8 b3e8 * 5e4e * 8ea1dece,dece,8ea1decev,decev 553e e594be 553e 0000553e b3e8 b3e8 b3e8 b3e8 b3e8 b3e8 b3e8
+3085 b3e9 b3e9 b3e9 * 5e4f * 8ea1decf,decf,8ea1decfv,decfv 55b2 e596b2 55b2 000055b2 b3e9 b3e9 b3e9 b3e9 b3e9 b3e9 b3e9
+3086 b3ea b3ea b3ea * 5e50 * 8ea1ded0,ded0,8ea1ded0v,ded0v 559a e5969a 559a 0000559a b3ea b3ea b3ea b3ea b3ea b3ea b3ea
+3087 b3eb b3eb b3eb * 5e51 * 8ea1ded1,ded1,8ea1ded1v,ded1v 55bb e596bb 55bb 000055bb b3eb b3eb b3eb b3eb b3eb b3eb b3eb
+3088 b3ec b3ec b3ec * 5e52 * 8ea1ded2,ded2,8ea1ded2v,ded2v 55ac e596ac 55ac 000055ac b3ec b3ec b3ec b3ec b3ec b3ec b3ec
+3089 b3ed b3ed b3ed * 5e53 * 8ea1ded3,ded3,8ea1ded3v,ded3v 55b1 e596b1 55b1 000055b1 b3ed b3ed b3ed b3ed b3ed b3ed b3ed
+3090 b3ee b3ee b3ee * 5e54 * 8ea1ded4,ded4,8ea1ded4v,ded4v 557e e595be 557e 0000557e b3ee b3ee b3ee b3ee b3ee b3ee b3ee
+3091 b3ef b3ef b3ef * 5e55 * 8ea1ded5,ded5,8ea1ded5v,ded5v 5589 e59689 5589 00005589 b3ef b3ef b3ef b3ef b3ef b3ef b3ef
+3092 b3f0 b3f0 b3f0 * 5e56 * 8ea1ded6,ded6,8ea1ded6v,ded6v 55ab e596ab 55ab 000055ab b3f0 b3f0 b3f0 b3f0 b3f0 b3f0 b3f0
+3093 b3f1 b3f1 b3f1 * 5e57 * 8ea1ded7,ded7,8ea1ded7v,ded7v 5599 e59699 5599 00005599 b3f1 b3f1 b3f1 b3f1 b3f1 b3f1 b3f1
+3094 b3f2 b3f2 b3f2 * 5e58 * 8ea1ded8,ded8,8ea1ded8v,ded8v 570d e59c8d 570d 0000570d b3f2 b3f2 b3f2 b3f2 b3f2 b3f2 b3f2
+3095 b3f3 b3f3 b3f3 * 5e59 * 8ea1ded9,ded9,8ea1ded9v,ded9v 582f e5a0af 582f 0000582f b3f3 b3f3 b3f3 b3f3 b3f3 b3f3 b3f3
+3096 b3f4 b3f4 b3f4 * 5e5a * 8ea1deda,deda,8ea1dedav,dedav 582a e5a0aa 582a 0000582a b3f4 b3f4 b3f4 b3f4 b3f4 b3f4 b3f4
+3097 b3f5 b3f5 b3f5 * 5e5b * 8ea1dedb,dedb,8ea1dedbv,dedbv 5834 e5a0b4 5834 00005834 b3f5 b3f5 b3f5 b3f5 b3f5 b3f5 b3f5
+3098 b3f6 b3f6 b3f6 * 5e5c * 8ea1dedc,dedc,8ea1dedcv,dedcv 5824 e5a0a4 5824 00005824 b3f6 b3f6 b3f6 b3f6 b3f6 b3f6 b3f6
+3099 b3f7 b3f7 b3f7 * 5e5d * 8ea1dedd,dedd,8ea1deddv,deddv 5830 e5a0b0 5830 00005830 b3f7 b3f7 b3f7 b3f7 b3f7 b3f7 b3f7
+3100 b3f8 b3f8 b3f8 * 5e5e * 8ea1dede,dede,8ea1dedev,dedev 5831 e5a0b1 5831 00005831 b3f8 b3f8 b3f8 b3f8 b3f8 b3f8 b3f8
+3101 b3f9 b3f9 b3f9 * 5e5f * 8ea1dedf,dedf,8ea1dedfv,dedfv 5821 e5a0a1 5821 00005821 b3f9 b3f9 b3f9 b3f9 b3f9 b3f9 b3f9
+3102 b3fa b3fa b3fa * 5e60 * 8ea1dee0,dee0,8ea1dee0v,dee0v 581d e5a09d 581d 0000581d b3fa b3fa b3fa b3fa b3fa b3fa b3fa
+3103 b3fb b3fb b3fb * 5e61 * 8ea1dee1,dee1,8ea1dee1v,dee1v 5820 e5a0a0 5820 00005820 b3fb b3fb b3fb b3fb b3fb b3fb b3fb
+3104 b3fc b3fc b3fc * 5e62 * 8ea1dee2,dee2,8ea1dee2v,dee2v 58f9 e5a3b9 58f9 000058f9 b3fc b3fc b3fc b3fc b3fc b3fc b3fc
+3105 b3fd b3fd b3fd * 5e63 * 8ea1dee3,dee3,8ea1dee3v,dee3v 58fa e5a3ba 58fa 000058fa b3fd b3fd b3fd b3fd b3fd b3fd b3fd
+3106 b3fe b3fe b3fe * 5e64 * 8ea1dee4,dee4,8ea1dee4v,dee4v 5960 e5a5a0 5960 00005960 b3fe b3fe b3fe b3fe b3fe b3fe b3fe
+3107 b440 b440 b440 * 5e65 * 8ea1dee5,dee5,8ea1dee5v,dee5v 5a77 e5a9b7,ee83b3 5a77,e0f3 00005a77,0000e0f3 fbb8,b440 b440 b440 b440 b440 b440 fbb8,b440
+3108 b441 b441 b441 * 5e66 * 8ea1dee6,dee6,8ea1dee6v,dee6v 5a9a e5aa9a 5a9a 00005a9a b441 b441 b441 b441 b441 b441 b441
+3109 b442 b442 b442 * 5e67 * 8ea1dee7,dee7,8ea1dee7v,dee7v 5a7f e5a9bf 5a7f 00005a7f b442 b442 b442 b442 b442 b442 b442
+3110 b443 b443 b443 * 5e68 * 8ea1dee8,dee8,8ea1dee8v,dee8v 5a92 e5aa92 5a92 00005a92 b443 b443 b443 b443 b443 b443 b443
+3111 b444 b444 b444 * 5e69 * 8ea1dee9,dee9,8ea1dee9v,dee9v 5a9b e5aa9b 5a9b 00005a9b b444 b444 b444 b444 b444 b444 b444
+3112 b445 b445 b445 * 5e6a * 8ea1deea,deea,8ea1deeav,deeav 5aa7 e5aaa7 5aa7 00005aa7 b445 b445 b445 b445 b445 b445 b445
+3113 b446 b446 b446 * 5e6b * 8ea1deeb,deeb,8ea1deebv,deebv 5b73 e5adb3 5b73 00005b73 b446 b446 b446 b446 b446 b446 b446
+3114 b447 b447 b447 * 5e6c * 8ea1deec,deec,8ea1deecv,deecv 5b71 e5adb1 5b71 00005b71 b447 b447 b447 b447 b447 b447 b447
+3115 b448 b448 b448 * 5e6d * 8ea1deed,deed,8ea1deedv,deedv 5bd2 e5af92 5bd2 00005bd2 b448 b448 b448 b448 b448 b448 b448
+3116 b449 b449 b449 * 5e6e * 8ea1deee,deee,8ea1deeev,deeev 5bcc e5af8c 5bcc 00005bcc b449 b449 b449 b449 b449 b449 b449
+3117 b44a b44a b44a * 5e6f * 8ea1deef,deef,8ea1deefv,deefv 5bd3 e5af93 5bd3 00005bd3 b44a b44a b44a b44a b44a b44a b44a
+3118 b44b b44b b44b * 5e70 * 8ea1def0,def0,8ea1def0v,def0v 5bd0 e5af90 5bd0 00005bd0 b44b b44b b44b b44b b44b b44b b44b
+3119 b44c b44c b44c * 5e71 * 8ea1def1,def1,8ea1def1v,def1v 5c0a e5b08a 5c0a 00005c0a b44c b44c b44c b44c b44c b44c b44c
+3120 b44d b44d b44d * 5e72 * 8ea1def2,def2,8ea1def2v,def2v 5c0b e5b08b 5c0b 00005c0b b44d b44d b44d b44d b44d b44d b44d
+3121 b44e b44e b44e * 5e73 * 8ea1def3,def3,8ea1def3v,def3v 5c31 e5b0b1 5c31 00005c31 b44e b44e b44e b44e b44e b44e b44e
+3122 b44f b44f b44f * 5e74 * 8ea1def4,def4,8ea1def4v,def4v 5d4c e5b58c 5d4c 00005d4c b44f b44f b44f b44f b44f b44f b44f
+3123 b450 b450 b450 * 5e75 * 8ea1def5,def5,8ea1def5v,def5v 5d50 e5b590 5d50 00005d50 b450 b450 b450 b450 b450 b450 b450
+3124 b451 b451 b451 * 5e76 * 8ea1def6,def6,8ea1def6v,def6v 5d34 e5b4b4 5d34 00005d34 b451 b451 b451 b451 b451 b451 b451
+3125 b452 b452 b452 * 5e77 * 8ea1def7,def7,8ea1def7v,def7v 5d47 e5b587 5d47 00005d47 b452 b452 b452 b452 b452 b452 b452
+3126 b453 b453 b453 * 5e78 * 8ea1def8,def8,8ea1def8v,def8v 5dfd e5b7bd 5dfd 00005dfd b453 b453 b453 b453 b453 b453 b453
+3127 b454 b454 b454 * 5e79 * 8ea1def9,def9,8ea1def9v,def9v 5e45 e5b985 5e45 00005e45 b454 b454 b454 b454 b454 b454 b454
+3128 b455 b455 b455 * 5e7a * 8ea1defa,defa,8ea1defav,defav 5e3d e5b8bd 5e3d 00005e3d b455 b455 b455 b455 b455 b455 b455
+3129 b456 b456 b456 * 5e7b * 8ea1defb,defb,8ea1defbv,defbv 5e40 e5b980 5e40 00005e40 b456 b456 b456 b456 b456 b456 b456
+3130 b457 b457 b457 * 5e7c * 8ea1defc,defc,8ea1defcv,defcv 5e43 e5b983 5e43 00005e43 b457 b457 b457 b457 b457 b457 b457
+3131 b458 b458 b458 * 5e7d * 8ea1defd,defd,8ea1defdv,defdv 5e7e e5b9be 5e7e 00005e7e b458 b458 b458 b458 b458 b458 b458
+3132 b459 b459 b459 * 5e7e * 8ea1defe,defe,8ea1defev,defev 5eca e5bb8a 5eca 00005eca b459 b459 b459 b459 b459 b459 b459
+3133 b45a b45a b45a * 5f21 * 8ea1dfa1,dfa1,8ea1dfa1v,dfa1v 5ec1 e5bb81 5ec1 00005ec1 b45a b45a b45a b45a b45a b45a b45a
+3134 b45b b45b b45b * 5f22 * 8ea1dfa2,dfa2,8ea1dfa2v,dfa2v 5ec2 e5bb82 5ec2 00005ec2 b45b b45b b45b b45b b45b b45b b45b
+3135 b45c b45c b45c * 5f23 * 8ea1dfa3,dfa3,8ea1dfa3v,dfa3v 5ec4 e5bb84 5ec4 00005ec4 b45c b45c b45c b45c b45c b45c b45c
+3136 b45d b45d b45d * 5f24 * 8ea1dfa4,dfa4,8ea1dfa4v,dfa4v 5f3c e5bcbc 5f3c 00005f3c b45d b45d b45d b45d b45d b45d b45d
+3137 b45e b45e b45e * 5f25 * 8ea1dfa5,dfa5,8ea1dfa5v,dfa5v 5f6d e5bdad 5f6d 00005f6d b45e b45e b45e b45e b45e b45e b45e
+3138 b45f b45f b45f * 5f26 * 8ea1dfa6,dfa6,8ea1dfa6v,dfa6v 5fa9 e5bea9 5fa9 00005fa9 b45f b45f b45f b45f b45f b45f b45f
+3139 b460 b460 b460 * 5f27 * 8ea1dfa7,dfa7,8ea1dfa7v,dfa7v 5faa e5beaa 5faa 00005faa b460 b460 b460 b460 b460 b460 b460
+3140 b461 b461 b461 * 5f28 * 8ea1dfa8,dfa8,8ea1dfa8v,dfa8v 5fa8 e5bea8 5fa8 00005fa8 b461 b461 b461 b461 b461 b461 b461
+3141 b462 b462 b462 * 5f29 * 8ea1dfa9,dfa9,8ea1dfa9v,dfa9v 60d1 e68391 60d1 000060d1 b462 b462 b462 b462 b462 b462 b462
+3142 b463 b463 b463 * 5f2a * 8ea1dfaa,dfaa,8ea1dfaav,dfaav 60e1 e683a1 60e1 000060e1 b463 b463 b463 b463 b463 b463 b463
+3143 b464 b464 b464 * 5f2b * 8ea1dfab,dfab,8ea1dfabv,dfabv 60b2 e682b2 60b2 000060b2 b464 b464 b464 b464 b464 b464 b464
+3144 b465 b465 b465 * 5f2c * 8ea1dfac,dfac,8ea1dfacv,dfacv 60b6 e682b6 60b6 000060b6 b465 b465 b465 b465 b465 b465 b465
+3145 b466 b466 b466 * 5f2d * 8ea1dfad,dfad,8ea1dfadv,dfadv 60e0 e683a0 60e0 000060e0 b466 b466 b466 b466 b466 b466 b466
+3146 b467 b467 b467 * 5f2e * 8ea1dfae,dfae,8ea1dfaev,dfaev 611c e6849c 611c 0000611c b467 b467 b467 b467 b467 b467 b467
+3147 b468 b468 b468 * 5f2f * 8ea1dfaf,dfaf,8ea1dfafv,dfafv 6123 e684a3 6123 00006123 b468 b468 b468 b468 b468 b468 b468
+3148 b469 b469 b469 * 5f30 * 8ea1dfb0,dfb0,8ea1dfb0v,dfb0v 60fa e683ba 60fa 000060fa b469 b469 b469 b469 b469 b469 b469
+3149 b46a b46a b46a * 5f31 * 8ea1dfb1,dfb1,8ea1dfb1v,dfb1v 6115 e68495 6115 00006115 b46a b46a b46a b46a b46a b46a b46a
+3150 b46b b46b b46b * 5f32 * 8ea1dfb2,dfb2,8ea1dfb2v,dfb2v 60f0 e683b0 60f0 000060f0 b46b b46b b46b b46b b46b b46b b46b
+3151 b46c b46c b46c * 5f33 * 8ea1dfb3,dfb3,8ea1dfb3v,dfb3v 60fb e683bb 60fb 000060fb b46c b46c b46c b46c b46c b46c b46c
+3152 b46d b46d b46d * 5f34 * 8ea1dfb4,dfb4,8ea1dfb4v,dfb4v 60f4 e683b4 60f4 000060f4 b46d b46d b46d b46d b46d b46d b46d
+3153 b46e b46e b46e * 5f35 * 8ea1dfb5,dfb5,8ea1dfb5v,dfb5v 6168 e685a8 6168 00006168 b46e b46e b46e b46e b46e b46e b46e
+3154 b46f b46f b46f * 5f36 * 8ea1dfb6,dfb6,8ea1dfb6v,dfb6v 60f1 e683b1 60f1 000060f1 b46f b46f b46f b46f b46f b46f b46f
+3155 b470 b470 b470 * 5f37 * 8ea1dfb7,dfb7,8ea1dfb7v,dfb7v 610e e6848e 610e 0000610e b470 b470 b470 b470 b470 b470 b470
+3156 b471 b471 b471 * 5f38 * 8ea1dfb8,dfb8,8ea1dfb8v,dfb8v 60f6 e683b6 60f6 000060f6 b471 b471 b471 b471 b471 b471 b471
+3157 b472 b472 b472 * 5f39 * 8ea1dfb9,dfb9,8ea1dfb9v,dfb9v 6109 e68489 6109 00006109 b472 b472 b472 b472 b472 b472 b472
+3158 b473 b473 b473 * 5f3a * 8ea1dfba,dfba,8ea1dfbav,dfbav 6100 e68480 6100 00006100 b473 b473 b473 b473 b473 b473 b473
+3159 b474 b474 b474 * 5f3b * 8ea1dfbb,dfbb,8ea1dfbbv,dfbbv 6112 e68492 6112 00006112 b474 b474 b474 b474 b474 b474 b474
+3160 b475 b475 b475 * 5f3c * 8ea1dfbc,dfbc,8ea1dfbcv,dfbcv 621f e6889f 621f 0000621f b475 b475 b475 b475 b475 b475 b475
+3161 b476 b476 b476 * 5f3d * 8ea1dfbd,dfbd,8ea1dfbdv,dfbdv 6249 e68989 6249 00006249 b476 b476 b476 b476 b476 b476 b476
+3162 b477 b477 b477 * 5f3e * 8ea1dfbe,dfbe,8ea1dfbev,dfbev 63a3 e68ea3 63a3 000063a3 b477 b477 b477 b477 b477 b477 b477
+3163 b478 b478 b478 * 5f3f * 8ea1dfbf,dfbf,8ea1dfbfv,dfbfv 638c e68e8c 638c 0000638c b478 b478 b478 b478 b478 b478 b478
+3164 b479 b479 b479 * 5f40 * 8ea1dfc0,dfc0,8ea1dfc0v,dfc0v 63cf e68f8f 63cf 000063cf b479 b479 b479 b479 b479 b479 b479
+3165 b47a b47a b47a * 5f41 * 8ea1dfc1,dfc1,8ea1dfc1v,dfc1v 63c0 e68f80 63c0 000063c0 b47a b47a b47a b47a b47a b47a b47a
+3166 b47b b47b b47b * 5f42 * 8ea1dfc2,dfc2,8ea1dfc2v,dfc2v 63e9 e68fa9 63e9 000063e9 b47b b47b b47b b47b b47b b47b b47b
+3167 b47c b47c b47c * 5f43 * 8ea1dfc3,dfc3,8ea1dfc3v,dfc3v 63c9 e68f89 63c9 000063c9 b47c b47c b47c b47c b47c b47c b47c
+3168 b47d b47d b47d * 5f44 * 8ea1dfc4,dfc4,8ea1dfc4v,dfc4v 63c6 e68f86 63c6 000063c6 b47d b47d b47d b47d b47d b47d b47d
+3169 b47e b47e b47e * 5f45 * 8ea1dfc5,dfc5,8ea1dfc5v,dfc5v 63cd e68f8d 63cd 000063cd b47e b47e b47e b47e b47e b47e b47e
+3170 b4a1 b4a1 b4a1 * 5f46 * 8ea1dfc6,dfc6,8ea1dfc6v,dfc6v 63d2 e68f92 63d2 000063d2 b4a1 b4a1 b4a1 b4a1 b4a1 b4a1 b4a1
+3171 b4a2 b4a2 b4a2 * 5f47 * 8ea1dfc7,dfc7,8ea1dfc7v,dfc7v 63e3 e68fa3 63e3 000063e3 b4a2 b4a2 b4a2 b4a2 b4a2 b4a2 b4a2
+3172 b4a3 b4a3 b4a3 * 5f48 * 8ea1dfc8,dfc8,8ea1dfc8v,dfc8v 63d0 e68f90 63d0 000063d0 b4a3 b4a3 b4a3 b4a3 b4a3 b4a3 b4a3
+3173 b4a4 b4a4 b4a4 * 5f49 * 8ea1dfc9,dfc9,8ea1dfc9v,dfc9v 63e1 e68fa1 63e1 000063e1 b4a4 b4a4 b4a4 b4a4 b4a4 b4a4 b4a4
+3174 b4a5 b4a5 b4a5 * 5f4a * 8ea1dfca,dfca,8ea1dfcav,dfcav 63d6 e68f96 63d6 000063d6 b4a5 b4a5 b4a5 b4a5 b4a5 b4a5 b4a5
+3175 b4a6 b4a6 b4a6 * 5f4b * 8ea1dfcb,dfcb,8ea1dfcbv,dfcbv 63ed e68fad 63ed 000063ed b4a6 b4a6 b4a6 b4a6 b4a6 b4a6 b4a6
+3176 b4a7 b4a7 b4a7 * 5f4c * 8ea1dfcc,dfcc,8ea1dfccv,dfccv 63ee e68fae 63ee 000063ee b4a7 b4a7 b4a7 b4a7 b4a7 b4a7 b4a7
+3177 b4a8 b4a8 b4a8 * 5f4d * 8ea1dfcd,dfcd,8ea1dfcdv,dfcdv 6376 e68db6 6376 00006376 b4a8 b4a8 b4a8 b4a8 b4a8 b4a8 b4a8
+3178 b4a9 b4a9 b4a9 * 5f4e * 8ea1dfce,dfce,8ea1dfcev,dfcev 63f4 e68fb4 63f4 000063f4 b4a9 b4a9 b4a9 b4a9 b4a9 b4a9 b4a9
+3179 b4aa b4aa b4aa * 5f4f * 8ea1dfcf,dfcf,8ea1dfcfv,dfcfv 63ea e68faa 63ea 000063ea b4aa b4aa b4aa b4aa b4aa b4aa b4aa
+3180 b4ab b4ab b4ab * 5f50 * 8ea1dfd0,dfd0,8ea1dfd0v,dfd0v 63db e68f9b 63db 000063db b4ab b4ab b4ab b4ab b4ab b4ab b4ab
+3181 b4ac b4ac b4ac * 5f51 * 8ea1dfd1,dfd1,8ea1dfd1v,dfd1v 6452 e69192 6452 00006452 b4ac b4ac b4ac b4ac b4ac b4ac b4ac
+3182 b4ad b4ad b4ad * 5f52 * 8ea1dfd2,dfd2,8ea1dfd2v,dfd2v 63da e68f9a 63da 000063da b4ad b4ad b4ad b4ad b4ad b4ad b4ad
+3183 b4ae b4ae b4ae * 5f53 * 8ea1dfd3,dfd3,8ea1dfd3v,dfd3v 63f9 e68fb9 63f9 000063f9 b4ae b4ae b4ae b4ae b4ae b4ae b4ae
+3184 b4af b4af b4af * 5f54 * 8ea1dfd4,dfd4,8ea1dfd4v,dfd4v 655e e6959e 655e 0000655e b4af b4af b4af b4af b4af b4af b4af
+3185 b4b0 b4b0 b4b0 * 5f55 * 8ea1dfd5,dfd5,8ea1dfd5v,dfd5v 6566 e695a6 6566 00006566 b4b0 b4b0 b4b0 b4b0 b4b0 b4b0 b4b0
+3186 b4b1 b4b1 b4b1 * 5f56 * 8ea1dfd6,dfd6,8ea1dfd6v,dfd6v 6562 e695a2 6562 00006562 b4b1 b4b1 b4b1 b4b1 b4b1 b4b1 b4b1
+3187 b4b2 b4b2 b4b2 * 5f57 * 8ea1dfd7,dfd7,8ea1dfd7v,dfd7v 6563 e695a3 6563 00006563 b4b2 b4b2 b4b2 b4b2 b4b2 b4b2 b4b2
+3188 b4b3 b4b3 b4b3 * 5f58 * 8ea1dfd8,dfd8,8ea1dfd8v,dfd8v 6591 e69691 6591 00006591 b4b3 b4b3 b4b3 b4b3 b4b3 b4b3 b4b3
+3189 b4b4 b4b4 b4b4 * 5f59 * 8ea1dfd9,dfd9,8ea1dfd9v,dfd9v 6590 e69690 6590 00006590 b4b4 b4b4 b4b4 b4b4 b4b4 b4b4 b4b4
+3190 b4b5 b4b5 b4b5 * 5f5a * 8ea1dfda,dfda,8ea1dfdav,dfdav 65af e696af 65af 000065af b4b5 b4b5 b4b5 b4b5 b4b5 b4b5 b4b5
+3191 b4b6 b4b6 b4b6 * 5f5b * 8ea1dfdb,dfdb,8ea1dfdbv,dfdbv 666e e699ae 666e 0000666e b4b6 b4b6 b4b6 b4b6 b4b6 b4b6 b4b6
+3192 b4b7 b4b7 b4b7 * 5f5c * 8ea1dfdc,dfdc,8ea1dfdcv,dfdcv 6670 e699b0 6670 00006670 b4b7 b4b7 b4b7 b4b7 b4b7 b4b7 b4b7
+3193 b4b8 b4b8 b4b8 * 5f5d * 8ea1dfdd,dfdd,8ea1dfddv,dfddv 6674 e699b4,ee86ba 6674,e1ba 00006674,0000e1ba fce2,b4b8 b4b8 b4b8 b4b8 b4b8 b4b8 fce2,b4b8
+3194 b4b9 b4b9 b4b9 * 5f5e * 8ea1dfde,dfde,8ea1dfdev,dfdev 6676 e699b6 6676 00006676 b4b9 b4b9 b4b9 b4b9 b4b9 b4b9 b4b9
+3195 b4ba b4ba b4ba * 5f5f * 8ea1dfdf,dfdf,8ea1dfdfv,dfdfv 666f e699af 666f 0000666f b4ba b4ba b4ba b4ba b4ba b4ba b4ba
+3196 b4bb b4bb b4bb * 5f60 * 8ea1dfe0,dfe0,8ea1dfe0v,dfe0v 6691 e69a91 6691 00006691 b4bb b4bb b4bb b4bb b4bb b4bb b4bb
+3197 b4bc b4bc b4bc * 5f61 * 8ea1dfe1,dfe1,8ea1dfe1v,dfe1v 667a e699ba 667a 0000667a b4bc b4bc b4bc b4bc b4bc b4bc b4bc
+3198 b4bd b4bd b4bd * 5f62 * 8ea1dfe2,dfe2,8ea1dfe2v,dfe2v 667e e699be 667e 0000667e b4bd b4bd b4bd b4bd b4bd b4bd b4bd
+3199 b4be b4be b4be * 5f63 * 8ea1dfe3,dfe3,8ea1dfe3v,dfe3v 6677 e699b7 6677 00006677 b4be b4be b4be b4be b4be b4be b4be
+3200 b4bf b4bf b4bf * 5f64 * 8ea1dfe4,dfe4,8ea1dfe4v,dfe4v 66fe e69bbe 66fe 000066fe b4bf b4bf b4bf b4bf b4bf b4bf b4bf
+3201 b4c0 b4c0 b4c0 * 5f65 * 8ea1dfe5,dfe5,8ea1dfe5v,dfe5v 66ff e69bbf 66ff 000066ff b4c0 b4c0 b4c0 b4c0 b4c0 b4c0 b4c0
+3202 b4c1 b4c1 b4c1 * 5f66 * 8ea1dfe6,dfe6,8ea1dfe6v,dfe6v 671f e69c9f 671f 0000671f b4c1 b4c1 b4c1 b4c1 b4c1 b4c1 b4c1
+3203 b4c2 b4c2 b4c2 * 5f67 * 8ea1dfe7,dfe7,8ea1dfe7v,dfe7v 671d e69c9d 671d 0000671d b4c2 b4c2 b4c2 b4c2 b4c2 b4c2 b4c2
+3204 b4c3 b4c3 b4c3 * 5f68 * 8ea1dfe8,dfe8,8ea1dfe8v,dfe8v 68fa e6a3ba 68fa 000068fa b4c3 b4c3 b4c3 b4c3 b4c3 b4c3 b4c3
+3205 b4c4 b4c4 b4c4 * 5f69 * 8ea1dfe9,dfe9,8ea1dfe9v,dfe9v 68d5 e6a395 68d5 000068d5 b4c4 b4c4 b4c4 b4c4 b4c4 b4c4 b4c4
+3206 b4c5 b4c5 b4c5 * 5f6a * 8ea1dfea,dfea,8ea1dfeav,dfeav 68e0 e6a3a0 68e0 000068e0 b4c5 b4c5 b4c5 b4c5 b4c5 b4c5 b4c5
+3207 b4c6 b4c6 b4c6 * 5f6b * 8ea1dfeb,dfeb,8ea1dfebv,dfebv 68d8 e6a398 68d8 000068d8 b4c6 b4c6 b4c6 b4c6 b4c6 b4c6 b4c6
+3208 b4c7 b4c7 b4c7 * 5f6c * 8ea1dfec,dfec,8ea1dfecv,dfecv 68d7 e6a397 68d7 000068d7 b4c7 b4c7 b4c7 b4c7 b4c7 b4c7 b4c7
+3209 b4c8 b4c8 b4c8 * 5f6d * 8ea1dfed,dfed,8ea1dfedv,dfedv 6905 e6a485 6905 00006905 b4c8 b4c8 b4c8 b4c8 b4c8 b4c8 b4c8
+3210 b4c9 b4c9 b4c9 * 5f6e * 8ea1dfee,dfee,8ea1dfeev,dfeev 68df e6a39f 68df 000068df b4c9 b4c9 b4c9 b4c9 b4c9 b4c9 b4c9
+3211 b4ca b4ca b4ca * 5f6f * 8ea1dfef,dfef,8ea1dfefv,dfefv 68f5 e6a3b5 68f5 000068f5 b4ca b4ca b4ca b4ca b4ca b4ca b4ca
+3212 b4cb b4cb b4cb * 5f70 * 8ea1dff0,dff0,8ea1dff0v,dff0v 68ee e6a3ae 68ee 000068ee b4cb b4cb b4cb b4cb b4cb b4cb b4cb
+3213 b4cc b4cc b4cc * 5f71 * 8ea1dff1,dff1,8ea1dff1v,dff1v 68e7 e6a3a7 68e7 000068e7 b4cc b4cc b4cc b4cc b4cc b4cc b4cc
+3214 b4cd b4cd b4cd * 5f72 * 8ea1dff2,dff2,8ea1dff2v,dff2v 68f9 e6a3b9 68f9 000068f9 b4cd b4cd b4cd b4cd b4cd b4cd b4cd
+3215 b4ce b4ce b4ce * 5f73 * 8ea1dff3,dff3,8ea1dff3v,dff3v 68d2 e6a392 68d2 000068d2 b4ce b4ce b4ce b4ce b4ce b4ce b4ce
+3216 b4cf b4cf b4cf * 5f74 * 8ea1dff4,dff4,8ea1dff4v,dff4v 68f2 e6a3b2 68f2 000068f2 b4cf b4cf b4cf b4cf b4cf b4cf b4cf
+3217 b4d0 b4d0 b4d0 * 5f75 * 8ea1dff5,dff5,8ea1dff5v,dff5v 68e3 e6a3a3 68e3 000068e3 b4d0 b4d0 b4d0 b4d0 b4d0 b4d0 b4d0
+3218 b4d1 b4d1 b4d1 * 5f76 * 8ea1dff6,dff6,8ea1dff6v,dff6v 68cb e6a38b 68cb 000068cb b4d1 b4d1 b4d1 b4d1 b4d1 b4d1 b4d1
+3219 b4d2 b4d2 b4d2 * 5f77 * 8ea1dff7,dff7,8ea1dff7v,dff7v 68cd e6a38d 68cd 000068cd b4d2 b4d2 b4d2 b4d2 b4d2 b4d2 b4d2
+3220 b4d3 b4d3 b4d3 * 5f78 * 8ea1dff8,dff8,8ea1dff8v,dff8v 690d e6a48d 690d 0000690d b4d3 b4d3 b4d3 b4d3 b4d3 b4d3 b4d3
+3221 b4d4 b4d4 b4d4 * 5f79 * 8ea1dff9,dff9,8ea1dff9v,dff9v 6912 e6a492 6912 00006912 b4d4 b4d4 b4d4 b4d4 b4d4 b4d4 b4d4
+3222 b4d5 b4d5 b4d5 * 5f7a * 8ea1dffa,dffa,8ea1dffav,dffav 690e e6a48e 690e 0000690e b4d5 b4d5 b4d5 b4d5 b4d5 b4d5 b4d5
+3223 b4d6 b4d6 b4d6 * 5f7b * 8ea1dffb,dffb,8ea1dffbv,dffbv 68c9 e6a389 68c9 000068c9 b4d6 b4d6 b4d6 b4d6 b4d6 b4d6 b4d6
+3224 b4d7 b4d7 b4d7 * 5f7c * 8ea1dffc,dffc,8ea1dffcv,dffcv 68da e6a39a 68da 000068da b4d7 b4d7 b4d7 b4d7 b4d7 b4d7 b4d7
+3225 b4d8 b4d8 b4d8 * 5f7d * 8ea1dffd,dffd,8ea1dffdv,dffdv 696e e6a5ae 696e 0000696e b4d8 b4d8 b4d8 b4d8 b4d8 b4d8 b4d8
+3226 b4d9 b4d9 b4d9 * 5f7e * 8ea1dffe,dffe,8ea1dffev,dffev 68fb e6a3bb 68fb 000068fb b4d9 b4d9 b4d9 b4d9 b4d9 b4d9 b4d9
+3227 b4da b4da b4da * 6021 * 8ea1e0a1,e0a1,8ea1e0a1v,e0a1v 6b3e e6acbe 6b3e 00006b3e b4da b4da b4da b4da b4da b4da b4da
+3228 b4db b4db b4db * 6022 * 8ea1e0a2,e0a2,8ea1e0a2v,e0a2v 6b3a e6acba 6b3a 00006b3a b4db b4db b4db b4db b4db b4db b4db
+3229 b4dc b4dc b4dc * 6023 * 8ea1e0a3,e0a3,8ea1e0a3v,e0a3v 6b3d e6acbd 6b3d 00006b3d b4dc b4dc b4dc b4dc b4dc b4dc b4dc
+3230 b4dd b4dd b4dd * 6024 * 8ea1e0a4,e0a4,8ea1e0a4v,e0a4v 6b98 e6ae98 6b98 00006b98 b4dd b4dd b4dd b4dd b4dd b4dd b4dd
+3231 b4de b4de b4de * 6025 * 8ea1e0a5,e0a5,8ea1e0a5v,e0a5v 6b96 e6ae96 6b96 00006b96 b4de b4de b4de b4de b4de b4de b4de
+3232 b4df b4df b4df * 6026 * 8ea1e0a6,e0a6,8ea1e0a6v,e0a6v 6bbc e6aebc 6bbc 00006bbc b4df b4df b4df b4df b4df b4df b4df
+3233 b4e0 b4e0 b4e0 * 6027 * 8ea1e0a7,e0a7,8ea1e0a7v,e0a7v 6bef e6afaf 6bef 00006bef b4e0 b4e0 b4e0 b4e0 b4e0 b4e0 b4e0
+3234 b4e1 b4e1 b4e1 * 6028 * 8ea1e0a8,e0a8,8ea1e0a8v,e0a8v 6c2e e6b0ae 6c2e 00006c2e b4e1 b4e1 b4e1 b4e1 b4e1 b4e1 b4e1
+3235 b4e2 b4e2 b4e2 * 6029 * 8ea1e0a9,e0a9,8ea1e0a9v,e0a9v 6c2f e6b0af 6c2f 00006c2f b4e2 b4e2 b4e2 b4e2 b4e2 b4e2 b4e2
+3236 b4e3 b4e3 b4e3 * 602a * 8ea1e0aa,e0aa,8ea1e0aav,e0aav 6c2c e6b0ac 6c2c 00006c2c b4e3 b4e3 b4e3 b4e3 b4e3 b4e3 b4e3
+3237 b4e4 b4e4 b4e4 * 602b * 8ea1e0ab,e0ab,8ea1e0abv,e0abv 6e2f e6b8af,ee88b0 6e2f,e230 00006e2f,0000e230 fdbb,b4e4 b4e4 b4e4 b4e4 b4e4 b4e4 fdbb,b4e4
+3238 b4e5 b4e5 b4e5 * 602c * 8ea1e0ac,e0ac,8ea1e0acv,e0acv 6e38 e6b8b8 6e38 00006e38 b4e5 b4e5 b4e5 b4e5 b4e5 b4e5 b4e5
+3239 b4e6 b4e6 b4e6 * 602d * 8ea1e0ad,e0ad,8ea1e0adv,e0adv 6e54 e6b994 6e54 00006e54 b4e6 b4e6 b4e6 b4e6 b4e6 b4e6 b4e6
+3240 b4e7 b4e7 b4e7 * 602e * 8ea1e0ae,e0ae,8ea1e0aev,e0aev 6e21 e6b8a1 6e21 00006e21 b4e7 b4e7 b4e7 b4e7 b4e7 b4e7 b4e7
+3241 b4e8 b4e8 b4e8 * 602f * 8ea1e0af,e0af,8ea1e0afv,e0afv 6e32 e6b8b2 6e32 00006e32 b4e8 b4e8 b4e8 b4e8 b4e8 b4e8 b4e8
+3242 b4e9 b4e9 b4e9 * 6030 * 8ea1e0b0,e0b0,8ea1e0b0v,e0b0v 6e67 e6b9a7 6e67 00006e67 b4e9 b4e9 b4e9 b4e9 b4e9 b4e9 b4e9
+3243 b4ea b4ea b4ea * 6031 * 8ea1e0b1,e0b1,8ea1e0b1v,e0b1v 6e4a e6b98a 6e4a 00006e4a b4ea b4ea b4ea b4ea b4ea b4ea b4ea
+3244 b4eb b4eb b4eb * 6032 * 8ea1e0b2,e0b2,8ea1e0b2v,e0b2v 6e20 e6b8a0 6e20 00006e20 b4eb b4eb b4eb b4eb b4eb b4eb b4eb
+3245 b4ec b4ec b4ec * 6033 * 8ea1e0b3,e0b3,8ea1e0b3v,e0b3v 6e25 e6b8a5 6e25 00006e25 b4ec b4ec b4ec b4ec b4ec b4ec b4ec
+3246 b4ed b4ed b4ed * 6034 * 8ea1e0b4,e0b4,8ea1e0b4v,e0b4v 6e23 e6b8a3 6e23 00006e23 b4ed b4ed b4ed b4ed b4ed b4ed b4ed
+3247 b4ee b4ee b4ee * 6035 * 8ea1e0b5,e0b5,8ea1e0b5v,e0b5v 6e1b e6b89b 6e1b 00006e1b b4ee b4ee b4ee b4ee b4ee b4ee b4ee
+3248 b4ef b4ef b4ef * 6036 * 8ea1e0b6,e0b6,8ea1e0b6v,e0b6v 6e5b e6b99b 6e5b 00006e5b b4ef b4ef b4ef b4ef b4ef b4ef b4ef
+3249 b4f0 b4f0 b4f0 * 6037 * 8ea1e0b7,e0b7,8ea1e0b7v,e0b7v 6e58 e6b998 6e58 00006e58 b4f0 b4f0 b4f0 b4f0 b4f0 b4f0 b4f0
+3250 b4f1 b4f1 b4f1 * 6038 * 8ea1e0b8,e0b8,8ea1e0b8v,e0b8v 6e24 e6b8a4 6e24 00006e24 b4f1 b4f1 b4f1 b4f1 b4f1 b4f1 b4f1
+3251 b4f2 b4f2 b4f2 * 6039 * 8ea1e0b9,e0b9,8ea1e0b9v,e0b9v 6e56 e6b996 6e56 00006e56 b4f2 b4f2 b4f2 b4f2 b4f2 b4f2 b4f2
+3252 b4f3 b4f3 b4f3 * 603a * 8ea1e0ba,e0ba,8ea1e0bav,e0bav 6e6e e6b9ae 6e6e 00006e6e b4f3 b4f3 b4f3 b4f3 b4f3 b4f3 b4f3
+3253 b4f4 b4f4 b4f4 * 603b * 8ea1e0bb,e0bb,8ea1e0bbv,e0bbv 6e2d e6b8ad 6e2d 00006e2d b4f4 b4f4 b4f4 b4f4 b4f4 b4f4 b4f4
+3254 b4f5 b4f5 b4f5 * 603c * 8ea1e0bc,e0bc,8ea1e0bcv,e0bcv 6e26 e6b8a6 6e26 00006e26 b4f5 b4f5 b4f5 b4f5 b4f5 b4f5 b4f5
+3255 b4f6 b4f6 b4f6 * 603d * 8ea1e0bd,e0bd,8ea1e0bdv,e0bdv 6e6f e6b9af 6e6f 00006e6f b4f6 b4f6 b4f6 b4f6 b4f6 b4f6 b4f6
+3256 b4f7 b4f7 b4f7 * 603e * 8ea1e0be,e0be,8ea1e0bev,e0bev 6e34 e6b8b4 6e34 00006e34 b4f7 b4f7 b4f7 b4f7 b4f7 b4f7 b4f7
+3257 b4f8 b4f8 b4f8 * 603f * 8ea1e0bf,e0bf,8ea1e0bfv,e0bfv 6e4d e6b98d 6e4d 00006e4d b4f8 b4f8 b4f8 b4f8 b4f8 b4f8 b4f8
+3258 b4f9 b4f9 b4f9 * 6040 * 8ea1e0c0,e0c0,8ea1e0c0v,e0c0v 6e3a e6b8ba 6e3a 00006e3a b4f9 b4f9 b4f9 b4f9 b4f9 b4f9 b4f9
+3259 b4fa b4fa b4fa * 6041 * 8ea1e0c1,e0c1,8ea1e0c1v,e0c1v 6e2c e6b8ac 6e2c 00006e2c b4fa b4fa b4fa b4fa b4fa b4fa b4fa
+3260 b4fb b4fb b4fb * 6042 * 8ea1e0c2,e0c2,8ea1e0c2v,e0c2v 6e43 e6b983 6e43 00006e43 b4fb b4fb b4fb b4fb b4fb b4fb b4fb
+3261 b4fc b4fc b4fc * 6043 * 8ea1e0c3,e0c3,8ea1e0c3v,e0c3v 6e1d e6b89d,ee88ad 6e1d,e22d 00006e1d,0000e22d fdb8,b4fc b4fc b4fc b4fc b4fc b4fc fdb8,b4fc
+3262 b4fd b4fd b4fd * 6044 * 8ea1e0c4,e0c4,8ea1e0c4v,e0c4v 6e3e e6b8be 6e3e 00006e3e b4fd b4fd b4fd b4fd b4fd b4fd b4fd
+3263 b4fe b4fe b4fe * 6045 * 8ea1e0c5,e0c5,8ea1e0c5v,e0c5v 6ecb e6bb8b 6ecb 00006ecb b4fe b4fe b4fe b4fe b4fe b4fe b4fe
+3264 b540 b540 b540 * 6046 * 8ea1e0c6,e0c6,8ea1e0c6v,e0c6v 6e89 e6ba89 6e89 00006e89 b540 b540 b540 b540 b540 b540 b540
+3265 b541 b541 b541 * 6047 * 8ea1e0c7,e0c7,8ea1e0c7v,e0c7v 6e19 e6b899 6e19 00006e19 b541 b541 b541 b541 b541 b541 b541
+3266 b542 b542 b542 * 6048 * 8ea1e0c8,e0c8,8ea1e0c8v,e0c8v 6e4e e6b98e 6e4e 00006e4e b542 b542 b542 b542 b542 b542 b542
+3267 b543 b543 b543 * 6049 * 8ea1e0c9,e0c9,8ea1e0c9v,e0c9v 6e63 e6b9a3 6e63 00006e63 b543 b543 b543 b543 b543 b543 b543
+3268 b544 b544 b544 * 604a * 8ea1e0ca,e0ca,8ea1e0cav,e0cav 6e44 e6b984 6e44 00006e44 b544 b544 b544 b544 b544 b544 b544
+3269 b545 b545 b545 * 604b * 8ea1e0cb,e0cb,8ea1e0cbv,e0cbv 6e72 e6b9b2 6e72 00006e72 b545 b545 b545 b545 b545 b545 b545
+3270 b546 b546 b546 * 604c * 8ea1e0cc,e0cc,8ea1e0ccv,e0ccv 6e69 e6b9a9 6e69 00006e69 b546 b546 b546 b546 b546 b546 b546
+3271 b547 b547 b547 * 604d * 8ea1e0cd,e0cd,8ea1e0cdv,e0cdv 6e5f e6b99f 6e5f 00006e5f b547 b547 b547 b547 b547 b547 b547
+3272 b548 b548 b548 * 604e * 8ea1e0ce,e0ce,8ea1e0cev,e0cev 7119 e78499 7119 00007119 b548 b548 b548 b548 b548 b548 b548
+3273 b549 b549 b549 * 604f * 8ea1e0cf,e0cf,8ea1e0cfv,e0cfv 711a e7849a 711a 0000711a b549 b549 b549 b549 b549 b549 b549
+3274 b54a b54a b54a * 6050 * 8ea1e0d0,e0d0,8ea1e0d0v,e0d0v 7126 e784a6 7126 00007126 b54a b54a b54a b54a b54a b54a b54a
+3275 b54b b54b b54b * 6051 * 8ea1e0d1,e0d1,8ea1e0d1v,e0d1v 7130 e784b0 7130 00007130 b54b b54b b54b b54b b54b b54b b54b
+3276 b54c b54c b54c * 6052 * 8ea1e0d2,e0d2,8ea1e0d2v,e0d2v 7121 e784a1 7121 00007121 b54c b54c b54c b54c b54c b54c b54c
+3277 b54d b54d b54d * 6053 * 8ea1e0d3,e0d3,8ea1e0d3v,e0d3v 7136 e784b6 7136 00007136 b54d b54d b54d b54d b54d b54d b54d
+3278 b54e b54e b54e * 6054 * 8ea1e0d4,e0d4,8ea1e0d4v,e0d4v 716e e785ae,ee89a6 716e,e266 0000716e,0000e266 fdf1,b54e b54e b54e b54e b54e b54e fdf1,b54e
+3279 b54f b54f b54f * 6055 * 8ea1e0d5,e0d5,8ea1e0d5v,e0d5v 711c e7849c 711c 0000711c b54f b54f b54f b54f b54f b54f b54f
+3280 b550 b550 b550 * 6056 * 8ea1e0d6,e0d6,8ea1e0d6v,e0d6v 724c e7898c 724c 0000724c b550 b550 b550 b550 b550 b550 b550
+3281 b551 b551 b551 * 6057 * 8ea1e0d7,e0d7,8ea1e0d7v,e0d7v 7284 e78a84 7284 00007284 b551 b551 b551 b551 b551 b551 b551
+3282 b552 b552 b552 * 6058 * 8ea1e0d8,e0d8,8ea1e0d8v,e0d8v 7280 e78a80 7280 00007280 b552 b552 b552 b552 b552 b552 b552
+3283 b553 b553 b553 * 6059 * 8ea1e0d9,e0d9,8ea1e0d9v,e0d9v 7336 e78cb6 7336 00007336 b553 b553 b553 b553 b553 b553 b553
+3284 b554 b554 b554 * 605a * 8ea1e0da,e0da,8ea1e0dav,e0dav 7325 e78ca5 7325 00007325 b554 b554 b554 b554 b554 b554 b554
+3285 b555 b555 b555 * 605b * 8ea1e0db,e0db,8ea1e0dbv,e0dbv 7334 e78cb4 7334 00007334 b555 b555 b555 b555 b555 b555 b555
+3286 b556 b556 b556 * 605c * 8ea1e0dc,e0dc,8ea1e0dcv,e0dcv 7329 e78ca9 7329 00007329 b556 b556 b556 b556 b556 b556 b556
+3287 b557 b557 b557 * 605d * 8ea1e0dd,e0dd,8ea1e0ddv,e0ddv 743a e790ba 743a 0000743a b557 b557 b557 b557 b557 b557 b557
+3288 b558 b558 b558 * 605e * 8ea1e0de,e0de,8ea1e0dev,e0dev 742a e790aa 742a 0000742a b558 b558 b558 b558 b558 b558 b558
+3289 b559 b559 b559 * 605f * 8ea1e0df,e0df,8ea1e0dfv,e0dfv 7433 e790b3 7433 00007433 b559 b559 b559 b559 b559 b559 b559
+3290 b55a b55a b55a * 6060 * 8ea1e0e0,e0e0,8ea1e0e0v,e0e0v 7422 e790a2 7422 00007422 b55a b55a b55a b55a b55a b55a b55a
+3291 b55b b55b b55b * 6061 * 8ea1e0e1,e0e1,8ea1e0e1v,e0e1v 7425 e790a5 7425 00007425 b55b b55b b55b b55b b55b b55b b55b
+3292 b55c b55c b55c * 6062 * 8ea1e0e2,e0e2,8ea1e0e2v,e0e2v 7435 e790b5 7435 00007435 b55c b55c b55c b55c b55c b55c b55c
+3293 b55d b55d b55d * 6063 * 8ea1e0e3,e0e3,8ea1e0e3v,e0e3v 7436 e790b6 7436 00007436 b55d b55d b55d b55d b55d b55d b55d
+3294 b55e b55e b55e * 6064 * 8ea1e0e4,e0e4,8ea1e0e4v,e0e4v 7434 e790b4 7434 00007434 b55e b55e b55e b55e b55e b55e b55e
+3295 b55f b55f b55f * 6065 * 8ea1e0e5,e0e5,8ea1e0e5v,e0e5v 742f e790af 742f 0000742f b55f b55f b55f b55f b55f b55f b55f
+3296 b560 b560 b560 * 6066 * 8ea1e0e6,e0e6,8ea1e0e6v,e0e6v 741b e7909b 741b 0000741b b560 b560 b560 b560 b560 b560 b560
+3297 b561 b561 b561 * 6067 * 8ea1e0e7,e0e7,8ea1e0e7v,e0e7v 7426 e790a6 7426 00007426 b561 b561 b561 b561 b561 b561 b561
+3298 b562 b562 b562 * 6068 * 8ea1e0e8,e0e8,8ea1e0e8v,e0e8v 7428 e790a8 7428 00007428 b562 b562 b562 b562 b562 b562 b562
+3299 b563 b563 b563 * 6069 * 8ea1e0e9,e0e9,8ea1e0e9v,e0e9v 7525 e794a5 7525 00007525 b563 b563 b563 b563 b563 b563 b563
+3300 b564 b564 b564 * 606a * 8ea1e0ea,e0ea,8ea1e0eav,e0eav 7526 e794a6 7526 00007526 b564 b564 b564 b564 b564 b564 b564
+3301 b565 b565 b565 * 606b * 8ea1e0eb,e0eb,8ea1e0ebv,e0ebv 756b e795ab 756b 0000756b b565 b565 b565 b565 b565 b565 b565
+3302 b566 b566 b566 * 606c * 8ea1e0ec,e0ec,8ea1e0ecv,e0ecv 756a e795aa 756a 0000756a b566 b566 b566 b566 b566 b566 b566
+3303 b567 b567 b567 * 606d * 8ea1e0ed,e0ed,8ea1e0edv,e0edv 75e2 e797a2 75e2 000075e2 b567 b567 b567 b567 b567 b567 b567
+3304 b568 b568 b568 * 606e * 8ea1e0ee,e0ee,8ea1e0eev,e0eev 75db e7979b 75db 000075db b568 b568 b568 b568 b568 b568 b568
+3305 b569 b569 b569 * 606f * 8ea1e0ef,e0ef,8ea1e0efv,e0efv 75e3 e797a3 75e3 000075e3 b569 b569 b569 b569 b569 b569 b569
+3306 b56a b56a b56a * 6070 * 8ea1e0f0,e0f0,8ea1e0f0v,e0f0v 75d9 e79799 75d9 000075d9 b56a b56a b56a b56a b56a b56a b56a
+3307 b56b b56b b56b * 6071 * 8ea1e0f1,e0f1,8ea1e0f1v,e0f1v 75d8 e79798 75d8 000075d8 b56b b56b b56b b56b b56b b56b b56b
+3308 b56c b56c b56c * 6072 * 8ea1e0f2,e0f2,8ea1e0f2v,e0f2v 75de e7979e 75de 000075de b56c b56c b56c b56c b56c b56c b56c
+3309 b56d b56d b56d * 6073 * 8ea1e0f3,e0f3,8ea1e0f3v,e0f3v 75e0 e797a0 75e0 000075e0 b56d b56d b56d b56d b56d b56d b56d
+3310 b56e b56e b56e * 6074 * 8ea1e0f4,e0f4,8ea1e0f4v,e0f4v 767b e799bb 767b 0000767b b56e b56e b56e b56e b56e b56e b56e
+3311 b56f b56f b56f * 6075 * 8ea1e0f5,e0f5,8ea1e0f5v,e0f5v 767c e799bc 767c 0000767c b56f b56f b56f b56f b56f b56f b56f
+3312 b570 b570 b570 * 6076 * 8ea1e0f6,e0f6,8ea1e0f6v,e0f6v 7696 e79a96 7696 00007696 b570 b570 b570 b570 b570 b570 b570
+3313 b571 b571 b571 * 6077 * 8ea1e0f7,e0f7,8ea1e0f7v,e0f7v 7693 e79a93 7693 00007693 b571 b571 b571 b571 b571 b571 b571
+3314 b572 b572 b572 * 6078 * 8ea1e0f8,e0f8,8ea1e0f8v,e0f8v 76b4 e79ab4 76b4 000076b4 b572 b572 b572 b572 b572 b572 b572
+3315 b573 b573 b573 * 6079 * 8ea1e0f9,e0f9,8ea1e0f9v,e0f9v 76dc e79b9c 76dc 000076dc b573 b573 b573 b573 b573 b573 b573
+3316 b574 b574 b574 * 607a * 8ea1e0fa,e0fa,8ea1e0fav,e0fav 774f e79d8f 774f 0000774f b574 b574 b574 b574 b574 b574 b574
+3317 b575 b575 b575 * 607b * 8ea1e0fb,e0fb,8ea1e0fbv,e0fbv 77ed e79fad 77ed 000077ed b575 b575 b575 b575 b575 b575 b575
+3318 b576 b576 b576 * 607c * 8ea1e0fc,e0fc,8ea1e0fcv,e0fcv 785d e7a19d 785d 0000785d b576 b576 b576 b576 b576 b576 b576
+3319 b577 b577 b577 * 607d * 8ea1e0fd,e0fd,8ea1e0fdv,e0fdv 786c e7a1ac 786c 0000786c b577 b577 b577 b577 b577 b577 b577
+3320 b578 b578 b578 * 607e * 8ea1e0fe,e0fe,8ea1e0fev,e0fev 786f e7a1af 786f 0000786f b578 b578 b578 b578 b578 b578 b578
+3321 b579 b579 b579 * 6121 * 8ea1e1a1,e1a1,8ea1e1a1v,e1a1v 7a0d e7a88d 7a0d 00007a0d b579 b579 b579 b579 b579 b579 b579
+3322 b57a b57a b57a * 6122 * 8ea1e1a2,e1a2,8ea1e1a2v,e1a2v 7a08 e7a888 7a08 00007a08 b57a b57a b57a b57a b57a b57a b57a
+3323 b57b b57b b57b * 6123 * 8ea1e1a3,e1a3,8ea1e1a3v,e1a3v 7a0b e7a88b 7a0b 00007a0b b57b b57b b57b b57b b57b b57b b57b
+3324 b57c b57c b57c * 6124 * 8ea1e1a4,e1a4,8ea1e1a4v,e1a4v 7a05 e7a885 7a05 00007a05 b57c b57c b57c b57c b57c b57c b57c
+3325 b57d b57d b57d * 6125 * 8ea1e1a5,e1a5,8ea1e1a5v,e1a5v 7a00 e7a880 7a00 00007a00 b57d b57d b57d b57d b57d b57d b57d
+3326 b57e b57e b57e * 6126 * 8ea1e1a6,e1a6,8ea1e1a6v,e1a6v 7a98 e7aa98 7a98 00007a98 b57e b57e b57e b57e b57e b57e b57e
+3327 b5a1 b5a1 b5a1 * 6127 * 8ea1e1a7,e1a7,8ea1e1a7v,e1a7v 7a97 e7aa97 7a97 00007a97 b5a1 b5a1 b5a1 b5a1 b5a1 b5a1 b5a1
+3328 b5a2 b5a2 b5a2 * 6128 * 8ea1e1a8,e1a8,8ea1e1a8v,e1a8v 7a96 e7aa96 7a96 00007a96 b5a2 b5a2 b5a2 b5a2 b5a2 b5a2 b5a2
+3329 b5a3 b5a3 b5a3 * 6129 * 8ea1e1a9,e1a9,8ea1e1a9v,e1a9v 7ae5 e7aba5 7ae5 00007ae5 b5a3 b5a3 b5a3 b5a3 b5a3 b5a3 b5a3
+3330 b5a4 b5a4 b5a4 * 612a * 8ea1e1aa,e1aa,8ea1e1aav,e1aav 7ae3 e7aba3 7ae3 00007ae3 b5a4 b5a4 b5a4 b5a4 b5a4 b5a4 b5a4
+3331 b5a5 b5a5 b5a5 * 612b * 8ea1e1ab,e1ab,8ea1e1abv,e1abv 7b49 e7ad89 7b49 00007b49 b5a5 b5a5 b5a5 b5a5 b5a5 b5a5 b5a5
+3332 b5a6 b5a6 b5a6 * 612c * 8ea1e1ac,e1ac,8ea1e1acv,e1acv 7b56 e7ad96 7b56 00007b56 b5a6 b5a6 b5a6 b5a6 b5a6 b5a6 b5a6
+3333 b5a7 b5a7 b5a7 * 612d * 8ea1e1ad,e1ad,8ea1e1adv,e1adv 7b46 e7ad86 7b46 00007b46 b5a7 b5a7 b5a7 b5a7 b5a7 b5a7 b5a7
+3334 b5a8 b5a8 b5a8 * 612e * 8ea1e1ae,e1ae,8ea1e1aev,e1aev 7b50 e7ad90 7b50 00007b50 b5a8 b5a8 b5a8 b5a8 b5a8 b5a8 b5a8
+3335 b5a9 b5a9 b5a9 * 612f * 8ea1e1af,e1af,8ea1e1afv,e1afv 7b52 e7ad92 7b52 00007b52 b5a9 b5a9 b5a9 b5a9 b5a9 b5a9 b5a9
+3336 b5aa b5aa b5aa * 6130 * 8ea1e1b0,e1b0,8ea1e1b0v,e1b0v 7b54 e7ad94 7b54 00007b54 b5aa b5aa b5aa b5aa b5aa b5aa b5aa
+3337 b5ab b5ab b5ab * 6131 * 8ea1e1b1,e1b1,8ea1e1b1v,e1b1v 7b4d e7ad8d 7b4d 00007b4d b5ab b5ab b5ab b5ab b5ab b5ab b5ab
+3338 b5ac b5ac b5ac * 6132 * 8ea1e1b2,e1b2,8ea1e1b2v,e1b2v 7b4b e7ad8b 7b4b 00007b4b b5ac b5ac,fd77 91ea,b5ac b5ac b5ac b5ac b5ac
+3339 b5ad b5ad b5ad * 6133 * 8ea1e1b3,e1b3,8ea1e1b3v,e1b3v 7b4f e7ad8f 7b4f 00007b4f b5ad b5ad b5ad b5ad b5ad b5ad b5ad
+3340 b5ae b5ae b5ae * 6134 * 8ea1e1b4,e1b4,8ea1e1b4v,e1b4v 7b51 e7ad91,eeb19e 7b51,ec5e 00007b51,0000ec5e 9d5a,b5ae b5ae b5ae b5ae b5ae b5ae 9d5a,b5ae
+3341 b5af b5af b5af * 6135 * 8ea1e1b5,e1b5,8ea1e1b5v,e1b5v 7c9f e7b29f 7c9f 00007c9f b5af b5af b5af b5af b5af b5af b5af
+3342 b5b0 b5b0 b5b0 * 6136 * 8ea1e1b6,e1b6,8ea1e1b6v,e1b6v 7ca5 e7b2a5 7ca5 00007ca5 b5b0 b5b0 b5b0 b5b0 b5b0 b5b0 b5b0
+3343 b5b1 b5b1 b5b1 * 6137 * 8ea1e1b7,e1b7,8ea1e1b7v,e1b7v 7d5e e7b59e 7d5e 00007d5e b5b1 b5b1 b5b1 b5b1 b5b1 b5b1 b5b1
+3344 b5b2 b5b2 b5b2 * 6138 * 8ea1e1b8,e1b8,8ea1e1b8v,e1b8v 7d50 e7b590 7d50 00007d50 b5b2 b5b2 b5b2 b5b2 b5b2 b5b2 b5b2
+3345 b5b3 b5b3 b5b3 * 6139 * 8ea1e1b9,e1b9,8ea1e1b9v,e1b9v 7d68 e7b5a8 7d68 00007d68 b5b3 b5b3 b5b3 b5b3 b5b3 b5b3 b5b3
+3346 b5b4 b5b4 b5b4 * 613a * 8ea1e1ba,e1ba,8ea1e1bav,e1bav 7d55 e7b595 7d55 00007d55 b5b4 b5b4 b5b4 b5b4 b5b4 b5b4 b5b4
+3347 b5b5 b5b5 b5b5 * 613b * 8ea1e1bb,e1bb,8ea1e1bbv,e1bbv 7d2b e7b4ab 7d2b 00007d2b b5b5 b5b5 b5b5 b5b5 b5b5 b5b5 b5b5
+3348 b5b6 b5b6 b5b6 * 613c * 8ea1e1bc,e1bc,8ea1e1bcv,e1bcv 7d6e e7b5ae 7d6e 00007d6e b5b6 b5b6 b5b6 b5b6 b5b6 b5b6 b5b6
+3349 b5b7 b5b7 b5b7 * 613d * 8ea1e1bd,e1bd,8ea1e1bdv,e1bdv 7d72 e7b5b2 7d72 00007d72 b5b7 b5b7 b5b7 b5b7 b5b7 b5b7 b5b7
+3350 b5b8 b5b8 b5b8 * 613e * 8ea1e1be,e1be,8ea1e1bev,e1bev 7d61 e7b5a1 7d61 00007d61 b5b8 b5b8 b5b8 b5b8 b5b8 b5b8 b5b8
+3351 b5b9 b5b9 b5b9 * 613f * 8ea1e1bf,e1bf,8ea1e1bfv,e1bfv 7d66 e7b5a6 7d66 00007d66 b5b9 b5b9 b5b9 b5b9 b5b9 b5b9 b5b9
+3352 b5ba b5ba b5ba * 6140 * 8ea1e1c0,e1c0,8ea1e1c0v,e1c0v 7d62 e7b5a2 7d62 00007d62 b5ba b5ba b5ba b5ba b5ba b5ba b5ba
+3353 b5bb b5bb b5bb * 6141 * 8ea1e1c1,e1c1,8ea1e1c1v,e1c1v 7d70 e7b5b0 7d70 00007d70 b5bb b5bb b5bb b5bb b5bb b5bb b5bb
+3354 b5bc b5bc b5bc * 6142 * 8ea1e1c2,e1c2,8ea1e1c2v,e1c2v 7d73 e7b5b3 7d73 00007d73 b5bc b5bc b5bc b5bc b5bc b5bc b5bc
+3355 b5bd b5bd b5bd * 6143 * 8ea1e1c3,e1c3,8ea1e1c3v,e1c3v 5584 e59684 5584 00005584 b5bd b5bd b5bd b5bd b5bd b5bd b5bd
+3356 b5be b5be b5be * 6144 * 8ea1e1c4,e1c4,8ea1e1c4v,e1c4v 7fd4 e7bf94 7fd4 00007fd4 b5be b5be b5be b5be b5be b5be b5be
+3357 b5bf b5bf b5bf * 6145 * 8ea1e1c5,e1c5,8ea1e1c5v,e1c5v 7fd5 e7bf95 7fd5 00007fd5 b5bf b5bf b5bf b5bf b5bf b5bf b5bf
+3358 b5c0 b5c0 b5c0 * 6146 * 8ea1e1c6,e1c6,8ea1e1c6v,e1c6v 800b e8808b 800b 0000800b b5c0 b5c0 b5c0 b5c0 b5c0 b5c0 b5c0
+3359 b5c1 b5c1 b5c1 * 6147 * 8ea1e1c7,e1c7,8ea1e1c7v,e1c7v 8052 e88192 8052 00008052 b5c1 b5c1 b5c1 b5c1 b5c1 b5c1 b5c1
+
+8251 d77b d77b d77b * * 387e 8ea2b8fe,8ea2b8fev 8659 e89999 8659 00008659 d77b d77b d77b d77b d77b d77b d77b
+8252 d77c d77c d77c * * 3921 8ea2b9a1,8ea2b9a1v 8656 e89996 8656 00008656 d77c d77c d77c d77c d77c d77c d77c
+8253 d77d d77d d77d * * 3922 8ea2b9a2,8ea2b9a2v 86bf e89abf 86bf 000086bf d77d d77d d77d d77d d77d d77d d77d
+8254 d77e d77e d77e * * 3923 8ea2b9a3,8ea2b9a3v 86b7 e89ab7 86b7 000086b7 d77e d77e d77e d77e d77e d77e d77e
+8255 d7a1 d7a1 d7a1 * * 3924 8ea2b9a4,8ea2b9a4v 86c2 e89b82 86c2 000086c2 d7a1 d7a1 d7a1 d7a1 d7a1 d7a1 d7a1
+8256 d7a2 d7a2 d7a2 * * 3925 8ea2b9a5,8ea2b9a5v 86c1 e89b81 86c1 000086c1 d7a2 d7a2 d7a2 d7a2 d7a2 d7a2 d7a2
+8257 d7a3 d7a3 d7a3 * * 3926 8ea2b9a6,8ea2b9a6v 86c5 e89b85 86c5 000086c5 d7a3 d7a3 d7a3 d7a3 d7a3 d7a3 d7a3
+8258 d7a4 d7a4 d7a4 * * 3927 8ea2b9a7,8ea2b9a7v 86ba e89aba 86ba 000086ba d7a4 d7a4 d7a4 d7a4 d7a4 d7a4 d7a4
+8259 d7a5 d7a5 d7a5 * * 3928 8ea2b9a8,8ea2b9a8v 86b0 e89ab0 86b0 000086b0 d7a5 d7a5 d7a5 d7a5 d7a5 d7a5 d7a5
+8260 d7a6 d7a6 d7a6 * * 3929 8ea2b9a9,8ea2b9a9v 86c8 e89b88 86c8 000086c8 d7a6 d7a6 d7a6 d7a6 d7a6 d7a6 d7a6
+8261 d7a7 d7a7 d7a7 * * 392a 8ea2b9aa,8ea2b9aav 86b9 e89ab9 86b9 000086b9 d7a7 d7a7 d7a7 d7a7 d7a7 d7a7 d7a7
+8262 d7a8 d7a8 d7a8 * * 392b 8ea2b9ab,8ea2b9abv 86b3 e89ab3 86b3 000086b3 d7a8 d7a8 d7a8 d7a8 d7a8 d7a8 d7a8
+8263 d7a9 d7a9 d7a9 * * 392c 8ea2b9ac,8ea2b9acv 86b8 e89ab8 86b8 000086b8 d7a9 d7a9 d7a9 d7a9 d7a9 d7a9 d7a9
+8264 d7aa d7aa d7aa * * 392d 8ea2b9ad,8ea2b9adv 86cc e89b8c 86cc 000086cc d7aa d7aa d7aa d7aa d7aa d7aa d7aa
+8265 d7ab d7ab d7ab * * 392e 8ea2b9ae,8ea2b9aev 86b4 e89ab4 86b4 000086b4 d7ab d7ab d7ab d7ab d7ab d7ab d7ab
+8266 d7ac d7ac d7ac * * 392f 8ea2b9af,8ea2b9afv 86bb e89abb 86bb 000086bb d7ac d7ac d7ac d7ac d7ac d7ac d7ac
+8267 d7ad d7ad d7ad * * 3930 8ea2b9b0,8ea2b9b0v 86bc e89abc 86bc 000086bc d7ad d7ad d7ad d7ad d7ad d7ad d7ad
+8268 d7ae d7ae d7ae * * 3931 8ea2b9b1,8ea2b9b1v 86c3 e89b83 86c3 000086c3 d7ae d7ae d7ae d7ae d7ae d7ae d7ae
+8269 d7af d7af d7af * * 3932 8ea2b9b2,8ea2b9b2v 86bd e89abd 86bd 000086bd d7af d7af d7af d7af d7af d7af d7af
+8270 d7b0 d7b0 d7b0 * * 3933 8ea2b9b3,8ea2b9b3v 86be e89abe 86be 000086be d7b0 d7b0 d7b0 d7b0 d7b0 d7b0 d7b0
+8271 d7b1 d7b1 d7b1 * * 3934 8ea2b9b4,8ea2b9b4v 8852 e8a192 8852 00008852 d7b1 d7b1 d7b1 d7b1 d7b1 d7b1 d7b1
+8272 d7b2 d7b2 d7b2 * * 3935 8ea2b9b5,8ea2b9b5v 8889 e8a289 8889 00008889 d7b2 d7b2 d7b2 d7b2 d7b2 d7b2 d7b2
+8273 d7b3 d7b3 d7b3 * * 3936 8ea2b9b6,8ea2b9b6v 8895 e8a295 8895 00008895 d7b3 d7b3 d7b3 d7b3 d7b3 d7b3 d7b3
+8274 d7b4 d7b4 d7b4 * * 3937 8ea2b9b7,8ea2b9b7v 88a8 e8a2a8 88a8 000088a8 d7b4 d7b4 d7b4 d7b4 d7b4 d7b4 d7b4
+8275 d7b5 d7b5 d7b5 * * 3938 8ea2b9b8,8ea2b9b8v 88a2 e8a2a2 88a2 000088a2 d7b5 d7b5 d7b5 d7b5 d7b5 d7b5 d7b5
+8276 d7b6 d7b6 d7b6 * * 3939 8ea2b9b9,8ea2b9b9v 88aa e8a2aa 88aa 000088aa d7b6 d7b6,fddf d7b6 d7b6 d7b6 d7b6 d7b6
+8277 d7b7 d7b7 d7b7 * * 393a 8ea2b9ba,8ea2b9bav 889a e8a29a 889a 0000889a d7b7 d7b7 d7b7 d7b7 d7b7 d7b7 d7b7
+8278 d7b8 d7b8 d7b8 * * 393b 8ea2b9bb,8ea2b9bbv 8891 e8a291 8891 00008891 d7b8 d7b8 d7b8 d7b8 d7b8 d7b8 d7b8
+8279 d7b9 d7b9 d7b9 * * 393c 8ea2b9bc,8ea2b9bcv 88a1 e8a2a1 88a1 000088a1 d7b9 d7b9 d7b9 d7b9 d7b9 d7b9 d7b9
+8280 d7ba d7ba d7ba * * 393d 8ea2b9bd,8ea2b9bdv 889f e8a29f 889f 0000889f d7ba d7ba d7ba d7ba d7ba d7ba d7ba
+8281 d7bb d7bb d7bb * * 393e 8ea2b9be,8ea2b9bev 8898 e8a298 8898 00008898 d7bb d7bb d7bb d7bb d7bb d7bb d7bb
+8282 d7bc d7bc d7bc * * 393f 8ea2b9bf,8ea2b9bfv 88a7 e8a2a7 88a7 000088a7 d7bc d7bc d7bc d7bc d7bc d7bc d7bc
+8283 d7bd d7bd d7bd * * 3940 8ea2b9c0,8ea2b9c0v 8899 e8a299 8899 00008899 d7bd d7bd d7bd d7bd d7bd d7bd d7bd
+8284 d7be d7be d7be * * 3941 8ea2b9c1,8ea2b9c1v 889b e8a29b 889b 0000889b d7be d7be d7be d7be d7be d7be d7be
+8285 d7bf d7bf d7bf * * 3942 8ea2b9c2,8ea2b9c2v 8897 e8a297 8897 00008897 d7bf d7bf d7bf d7bf d7bf d7bf d7bf
+8286 d7c0 d7c0 d7c0 * * 3943 8ea2b9c3,8ea2b9c3v 88a4 e8a2a4 88a4 000088a4 d7c0 d7c0 d7c0 d7c0 d7c0 d7c0 d7c0
+8287 d7c1 d7c1 d7c1 * * 3944 8ea2b9c4,8ea2b9c4v 88ac e8a2ac 88ac 000088ac d7c1 d7c1 d7c1 d7c1 d7c1 d7c1 d7c1
+8288 d7c2 d7c2 d7c2 * * 3945 8ea2b9c5,8ea2b9c5v 888c e8a28c 888c 0000888c d7c2 d7c2 d7c2 d7c2 d7c2 d7c2 d7c2
+8289 d7c3 d7c3 d7c3 * * 3946 8ea2b9c6,8ea2b9c6v 8893 e8a293 8893 00008893 d7c3 d7c3 d7c3 d7c3 d7c3 d7c3 d7c3
+8290 d7c4 d7c4 d7c4 * * 3947 8ea2b9c7,8ea2b9c7v 888e e8a28e 888e 0000888e d7c4 d7c4 d7c4 d7c4 d7c4 d7c4 d7c4
+8291 d7c5 d7c5 d7c5 * * 3948 8ea2b9c8,8ea2b9c8v 8982 e8a682 8982 00008982 d7c5 d7c5 d7c5 d7c5 d7c5 d7c5 d7c5
+8292 d7c6 d7c6 d7c6 * * 3949 8ea2b9c9,8ea2b9c9v 89d6 e8a796 89d6 000089d6 d7c6 d7c6 d7c6 d7c6 d7c6 d7c6 d7c6
+8293 d7c7 d7c7 d7c7 * * 394a 8ea2b9ca,8ea2b9cav 89d9 e8a799 89d9 000089d9 d7c7 d7c7 d7c7 d7c7 d7c7 d7c7 d7c7
+8294 d7c8 d7c8 d7c8 * * 394b 8ea2b9cb,8ea2b9cbv 89d5 e8a795 89d5 000089d5 d7c8 d7c8 d7c8 d7c8 d7c8 d7c8 d7c8
+8295 d7c9 d7c9 d7c9 * * 394c 8ea2b9cc,8ea2b9ccv 8a30 e8a8b0 8a30 00008a30 d7c9 d7c9 d7c9 d7c9 d7c9 d7c9 d7c9
+8296 d7ca d7ca d7ca * * 394d 8ea2b9cd,8ea2b9cdv 8a27 e8a8a7 8a27 00008a27 d7ca d7ca d7ca d7ca d7ca d7ca d7ca
+8297 d7cb d7cb d7cb * * 394e 8ea2b9ce,8ea2b9cev 8a2c e8a8ac 8a2c 00008a2c d7cb d7cb d7cb d7cb d7cb d7cb d7cb
+8298 d7cc d7cc d7cc * * 394f 8ea2b9cf,8ea2b9cfv 8a1e e8a89e 8a1e 00008a1e d7cc d7cc d7cc d7cc d7cc d7cc d7cc
+8299 d7cd d7cd d7cd * * 3950 8ea2b9d0,8ea2b9d0v 8c39 e8b0b9 8c39 00008c39 d7cd d7cd d7cd d7cd d7cd d7cd d7cd
+8300 d7ce d7ce d7ce * * 3951 8ea2b9d1,8ea2b9d1v 8c3b e8b0bb 8c3b 00008c3b d7ce d7ce d7ce d7ce d7ce d7ce d7ce
+8301 d7cf d7cf d7cf * * 3952 8ea2b9d2,8ea2b9d2v 8c5c e8b19c 8c5c 00008c5c d7cf d7cf d7cf d7cf d7cf d7cf d7cf
+8302 d7d0 d7d0 d7d0 * * 3953 8ea2b9d3,8ea2b9d3v 8c5d e8b19d 8c5d 00008c5d d7d0 d7d0 d7d0 d7d0 d7d0 d7d0 d7d0
+8303 d7d1 d7d1 d7d1 * * 3954 8ea2b9d4,8ea2b9d4v 8c7d e8b1bd 8c7d 00008c7d d7d1 d7d1 d7d1 d7d1 d7d1 d7d1 d7d1
+8304 d7d2 d7d2 d7d2 * * 3955 8ea2b9d5,8ea2b9d5v 8ca5 e8b2a5 8ca5 00008ca5 d7d2 d7d2 d7d2 d7d2 d7d2 d7d2 d7d2
+8305 d7d3 d7d3 d7d3 * * 3956 8ea2b9d6,8ea2b9d6v 8d7d e8b5bd 8d7d 00008d7d d7d3 d7d3 d7d3 d7d3 d7d3 d7d3 d7d3
+8306 d7d4 d7d4 d7d4 * * 3957 8ea2b9d7,8ea2b9d7v 8d7b e8b5bb 8d7b 00008d7b d7d4 d7d4 d7d4 d7d4 d7d4 d7d4 d7d4
+8307 d7d5 d7d5 d7d5 * * 3958 8ea2b9d8,8ea2b9d8v 8d79 e8b5b9 8d79 00008d79 d7d5 d7d5 d7d5 d7d5 d7d5 d7d5 d7d5
+8308 d7d6 d7d6 d7d6 * * 3959 8ea2b9d9,8ea2b9d9v 8dbc e8b6bc 8dbc 00008dbc d7d6 d7d6 d7d6 d7d6 d7d6 d7d6 d7d6
+8309 d7d7 d7d7 d7d7 * * 395a 8ea2b9da,8ea2b9dav 8dc2 e8b782 8dc2 00008dc2 d7d7 d7d7 d7d7 d7d7 d7d7 d7d7 d7d7
+8310 d7d8 d7d8 d7d8 * * 395b 8ea2b9db,8ea2b9dbv 8db9 e8b6b9 8db9 00008db9 d7d8 d7d8 d7d8 d7d8 d7d8 d7d8 d7d8
+8311 d7d9 d7d9 d7d9 * * 395c 8ea2b9dc,8ea2b9dcv 8dbf e8b6bf 8dbf 00008dbf d7d9 d7d9 d7d9 d7d9 d7d9 d7d9 d7d9
+8312 d7da d7da d7da * * 395d 8ea2b9dd,8ea2b9ddv 8dc1 e8b781 8dc1 00008dc1 d7da d7da d7da d7da d7da d7da d7da
+8313 d7db d7db d7db * * 395e 8ea2b9de,8ea2b9dev 8ed8 e8bb98 8ed8 00008ed8 d7db d7db d7db d7db d7db d7db d7db
+8314 d7dc d7dc d7dc * * 395f 8ea2b9df,8ea2b9dfv 8ede e8bb9e 8ede 00008ede d7dc d7dc d7dc d7dc d7dc d7dc d7dc
+8315 d7dd d7dd d7dd * * 3960 8ea2b9e0,8ea2b9e0v 8edd e8bb9d 8edd 00008edd d7dd d7dd d7dd d7dd d7dd d7dd d7dd
+8316 d7de d7de d7de * * 3961 8ea2b9e1,8ea2b9e1v 8edc e8bb9c 8edc 00008edc d7de d7de d7de d7de d7de d7de d7de
+8317 d7df d7df d7df * * 3962 8ea2b9e2,8ea2b9e2v 8ed7 e8bb97 8ed7 00008ed7 d7df d7df d7df d7df d7df d7df d7df
+8318 d7e0 d7e0 d7e0 * * 3963 8ea2b9e3,8ea2b9e3v 8ee0 e8bba0 8ee0 00008ee0 d7e0 d7e0 d7e0 d7e0 d7e0 d7e0 d7e0
+8319 d7e1 d7e1 d7e1 * * 3964 8ea2b9e4,8ea2b9e4v 8ee1 e8bba1 8ee1 00008ee1 d7e1 d7e1 d7e1 d7e1 d7e1 d7e1 d7e1
+8320 d7e2 d7e2 d7e2 * * 3965 8ea2b9e5,8ea2b9e5v 9024 e980a4 9024 00009024 d7e2 d7e2 d7e2 d7e2 d7e2 d7e2 d7e2
+8321 d7e3 d7e3 d7e3 * * 3966 8ea2b9e6,8ea2b9e6v 900b e9808b 900b 0000900b d7e3 d7e3 d7e3 d7e3 d7e3 d7e3 d7e3
+8322 d7e4 d7e4 d7e4 * * 3967 8ea2b9e7,8ea2b9e7v 9011 e98091 9011 00009011 d7e4 d7e4 d7e4 d7e4 d7e4 d7e4 d7e4
+8323 d7e5 d7e5 d7e5 * * 3968 8ea2b9e8,8ea2b9e8v 901c e9809c 901c 0000901c d7e5 d7e5 d7e5 d7e5 d7e5 d7e5 d7e5
+8324 d7e6 d7e6 d7e6 * * 3969 8ea2b9e9,8ea2b9e9v 900c e9808c 900c 0000900c d7e6 d7e6 d7e6 d7e6 d7e6 d7e6 d7e6
+8325 d7e7 d7e7 d7e7 * * 396a 8ea2b9ea,8ea2b9eav 9021 e980a1 9021 00009021 d7e7 d7e7 d7e7 d7e7 d7e7 d7e7 d7e7
+8326 d7e8 d7e8 d7e8 * * 396b 8ea2b9eb,8ea2b9ebv 90ef e983af 90ef 000090ef d7e8 d7e8 d7e8 d7e8 d7e8 d7e8 d7e8
+8327 d7e9 d7e9 d7e9 * * 396c 8ea2b9ec,8ea2b9ecv 90ea e983aa 90ea 000090ea d7e9 d7e9 d7e9 d7e9 d7e9 d7e9 d7e9
+8328 d7ea d7ea d7ea * * 396d 8ea2b9ed,8ea2b9edv 90f0 e983b0 90f0 000090f0 d7ea d7ea d7ea d7ea d7ea d7ea d7ea
+8329 d7eb d7eb d7eb * * 396e 8ea2b9ee,8ea2b9eev 90f4 e983b4 90f4 000090f4 d7eb d7eb d7eb d7eb d7eb d7eb d7eb
+8330 d7ec d7ec d7ec * * 396f 8ea2b9ef,8ea2b9efv 90f2 e983b2 90f2 000090f2 d7ec d7ec d7ec d7ec d7ec d7ec d7ec
+8331 d7ed d7ed d7ed * * 3970 8ea2b9f0,8ea2b9f0v 90f3 e983b3 90f3 000090f3 d7ed d7ed d7ed d7ed d7ed d7ed d7ed
+8332 d7ee d7ee d7ee * * 3971 8ea2b9f1,8ea2b9f1v 90d4 e98394 90d4 000090d4 d7ee d7ee d7ee d7ee d7ee d7ee d7ee
+8333 d7ef d7ef d7ef * * 3972 8ea2b9f2,8ea2b9f2v 90eb e983ab 90eb 000090eb d7ef d7ef d7ef d7ef d7ef d7ef d7ef
+8334 d7f0 d7f0 d7f0 * * 3973 8ea2b9f3,8ea2b9f3v 90ec e983ac 90ec 000090ec d7f0 d7f0 d7f0 d7f0 d7f0 d7f0 d7f0
+8335 d7f1 d7f1 d7f1 * * 3974 8ea2b9f4,8ea2b9f4v 90e9 e983a9 90e9 000090e9 d7f1 d7f1 d7f1 d7f1 d7f1 d7f1 d7f1
+8336 d7f2 d7f2 d7f2 * * 3975 8ea2b9f5,8ea2b9f5v 9156 e98596 9156 00009156 d7f2 d7f2 d7f2 d7f2 d7f2 d7f2 d7f2
+8337 d7f3 d7f3 d7f3 * * 3976 8ea2b9f6,8ea2b9f6v 9158 e98598 9158 00009158 d7f3 d7f3 d7f3 d7f3 d7f3 d7f3 d7f3
+8338 d7f4 d7f4 d7f4 * * 3977 8ea2b9f7,8ea2b9f7v 915a e9859a 915a 0000915a d7f4 d7f4 d7f4 d7f4 d7f4 d7f4 d7f4
+8339 d7f5 d7f5 d7f5 * * 3978 8ea2b9f8,8ea2b9f8v 9153 e98593 9153 00009153 d7f5 d7f5 d7f5 d7f5 d7f5 d7f5 d7f5
+8340 d7f6 d7f6 d7f6 * * 3979 8ea2b9f9,8ea2b9f9v 9155 e98595 9155 00009155 d7f6 d7f6 d7f6 d7f6 d7f6 d7f6 d7f6
+8341 d7f7 d7f7 d7f7 * * 397a 8ea2b9fa,8ea2b9fav 91ec e987ac 91ec 000091ec d7f7 d7f7 d7f7 d7f7 d7f7 d7f7 d7f7
+8342 d7f8 d7f8 d7f8 * * 397b 8ea2b9fb,8ea2b9fbv 91f4 e987b4 91f4 000091f4 d7f8 d7f8 d7f8 d7f8 d7f8 d7f8 d7f8
+8343 d7f9 d7f9 d7f9 * * 397c 8ea2b9fc,8ea2b9fcv 91f1 e987b1 91f1 000091f1 d7f9 d7f9 d7f9 d7f9 d7f9 d7f9 d7f9
+8344 d7fa d7fa d7fa * * 397d 8ea2b9fd,8ea2b9fdv 91f3 e987b3 91f3 000091f3 d7fa d7fa d7fa d7fa d7fa d7fa d7fa
+8345 d7fb d7fb d7fb * * 397e 8ea2b9fe,8ea2b9fev 91f8 e987b8 91f8 000091f8 d7fb d7fb d7fb d7fb d7fb d7fb d7fb
+8346 d7fc d7fc d7fc * * 3a21 8ea2baa1,8ea2baa1v 91e4 e987a4 91e4 000091e4 d7fc d7fc d7fc d7fc d7fc d7fc d7fc
+8347 d7fd d7fd d7fd * * 3a22 8ea2baa2,8ea2baa2v 91f9 e987b9 91f9 000091f9 d7fd d7fd d7fd d7fd d7fd d7fd d7fd
+8348 d7fe d7fe d7fe * * 3a23 8ea2baa3,8ea2baa3v 91ea e987aa 91ea 000091ea d7fe d7fe d7fe d7fe d7fe d7fe d7fe
+8349 d840 d840 d840 * * 3a24 8ea2baa4,8ea2baa4v 91eb e987ab 91eb 000091eb d840 d840 d840 d840 d840 d840 d840
+8350 d841 d841 d841 * * 3a25 8ea2baa5,8ea2baa5v 91f7 e987b7 91f7 000091f7 d841 d841 d841 d841 d841 d841 d841
+8351 d842 d842 d842 * * 3a26 8ea2baa6,8ea2baa6v 91e8 e987a8 91e8 000091e8 d842 d842 d842 d842 d842 d842 d842
+8352 d843 d843 d843 * * 3a27 8ea2baa7,8ea2baa7v 91ee e987ae 91ee 000091ee d843 d843 d843 d843 d843 d843 d843
+8353 d844 d844 d844 * * 3a28 8ea2baa8,8ea2baa8v 957a e995ba 957a 0000957a d844 d844 d844 d844 d844 d844 d844
+8354 d845 d845 d845 * * 3a29 8ea2baa9,8ea2baa9v 9586 e99686 9586 00009586 d845 d845 d845 d845 d845 d845 d845
+8355 d846 d846 d846 * * 3a2a 8ea2baaa,8ea2baaav 9588 e99688 9588 00009588 d846 d846 d846 d846 d846 d846 d846
+8356 d847 d847 d847 * * 3a2b 8ea2baab,8ea2baabv 967c e999bc 967c 0000967c d847 d847 d847 d847 d847 d847 d847
+8357 d848 d848 d848 * * 3a2c 8ea2baac,8ea2baacv 966d e999ad 966d 0000966d d848 d848 d848 d848 d848 d848 d848
+8358 d849 d849 d849 * * 3a2d 8ea2baad,8ea2baadv 966b e999ab 966b 0000966b d849 d849 d849 d849 d849 d849 d849
+8359 d84a d84a d84a * * 3a2e 8ea2baae,8ea2baaev 9671 e999b1 9671 00009671 d84a d84a d84a d84a d84a d84a d84a
+8360 d84b d84b d84b * * 3a2f 8ea2baaf,8ea2baafv 966f e999af 966f 0000966f d84b d84b d84b d84b d84b d84b d84b
+8361 d84c d84c d84c * * 3a30 8ea2bab0,8ea2bab0v 96bf e99abf 96bf 000096bf d84c d84c d84c d84c d84c d84c d84c
+8362 d84d d84d d84d * * 3a31 8ea2bab1,8ea2bab1v 976a e99daa 976a 0000976a d84d d84d d84d d84d d84d d84d d84d
+8363 d84e d84e d84e * * 3a32 8ea2bab2,8ea2bab2v 9804 e9a084 9804 00009804 d84e d84e d84e d84e d84e d84e d84e
+8364 d84f d84f d84f * * 3a33 8ea2bab3,8ea2bab3v 98e5 e9a3a5 98e5 000098e5 d84f d84f d84f d84f d84f d84f d84f
+8365 d850 d850 d850 * * 3a34 8ea2bab4,8ea2bab4v 9997 e9a697 9997 00009997 d850 d850 d850 d850 d850 d850 d850
+8366 d851 d851 d851 * * 3a35 8ea2bab5,8ea2bab5v 509b e5829b 509b 0000509b d851 d851 d851 d851 d851 d851 d851
+8367 d852 d852 d852 * * 3a36 8ea2bab6,8ea2bab6v 5095 e58295 5095 00005095 d852 d852 d852 d852 d852 d852 d852
+8368 d853 d853 d853 * * 3a37 8ea2bab7,8ea2bab7v 5094 e58294 5094 00005094 d853 d853 d853 d853 d853 d853 d853
+8369 d854 d854 d854 * * 3a38 8ea2bab8,8ea2bab8v 509e e5829e 509e 0000509e d854 d854 d854 d854 d854 d854 d854
+8370 d855 d855 d855 * * 3a39 8ea2bab9,8ea2bab9v 508b e5828b 508b 0000508b d855 d855 d855 d855 d855 d855 d855
+8371 d856 d856 d856 * * 3a3a 8ea2baba,8ea2babav 50a3 e582a3 50a3 000050a3 d856 d856 d856 d856 d856 d856 d856
+8372 d857 d857 d857 * * 3a3b 8ea2babb,8ea2babbv 5083 e58283 5083 00005083 d857 d857 d857 d857 d857 d857 d857
+8373 d858 d858 d858 * * 3a3c 8ea2babc,8ea2babcv 508c e5828c 508c 0000508c d858 d858 d858 d858 d858 d858 d858
+8374 d859 d859 d859 * * 3a3d 8ea2babd,8ea2babdv 508e e5828e 508e 0000508e d859 d859 d859 d859 d859 d859 d859
+8375 d85a d85a d85a * * 3a3e 8ea2babe,8ea2babev 509d e5829d 509d 0000509d d85a d85a d85a d85a d85a d85a d85a
+8376 d85b d85b d85b * * 3a3f 8ea2babf,8ea2babfv 5068 e581a8 5068 00005068 d85b d85b d85b d85b d85b d85b d85b
+8377 d85c d85c d85c * * 3a40 8ea2bac0,8ea2bac0v 509c e5829c 509c 0000509c d85c d85c d85c d85c d85c d85c d85c
+8378 d85d d85d d85d * * 3a41 8ea2bac1,8ea2bac1v 5092 e58292 5092 00005092 d85d d85d d85d d85d d85d d85d d85d
+8379 d85e d85e d85e * * 3a42 8ea2bac2,8ea2bac2v 5082 e58282 5082 00005082 d85e d85e d85e d85e d85e d85e d85e
+8380 d85f d85f d85f * * 3a43 8ea2bac3,8ea2bac3v 5087 e58287 5087 00005087 d85f d85f d85f d85f d85f d85f d85f
+8381 d860 d860 d860 * * 3a44 8ea2bac4,8ea2bac4v 515f e5859f 515f 0000515f d860 d860 d860 d860 d860 d860 d860
+8382 d861 d861 d861 * * 3a45 8ea2bac5,8ea2bac5v 51d4 e58794 51d4 000051d4 d861 d861 d861 d861 d861 d861 d861
+8383 d862 d862 d862 * * 3a46 8ea2bac6,8ea2bac6v 5312 e58c92 5312 00005312 d862 d862 d862 d862 d862 d862 d862
+8384 d863 d863 d863 * * 3a47 8ea2bac7,8ea2bac7v 5311 e58c91 5311 00005311 d863 d863 d863 d863 d863 d863 d863
+8385 d864 d864 d864 * * 3a48 8ea2bac8,8ea2bac8v 53a4 e58ea4 53a4 000053a4 d864 d864 d864 d864 d864 d864 d864
+8386 d865 d865 d865 * * 3a49 8ea2bac9,8ea2bac9v 53a7 e58ea7 53a7 000053a7 d865 d865 d865 d865 d865 d865 d865
+8387 d866 d866 d866 * * 3a4a 8ea2baca,8ea2bacav 5591 e59691 5591 00005591 d866 d866 d866 d866 d866 d866 d866
+8388 d867 d867 d867 * * 3a4b 8ea2bacb,8ea2bacbv 55a8 e596a8 55a8 000055a8 d867 d867 d867 d867 d867 d867 d867
+8389 d868 d868 d868 * * 3a4c 8ea2bacc,8ea2baccv 55a5 e596a5 55a5 000055a5 d868 d868 d868 d868 d868 d868 d868
+8390 d869 d869 d869 * * 3a4d 8ea2bacd,8ea2bacdv 55ad e596ad 55ad 000055ad d869 d869 d869 d869 d869 d869 d869
+8391 d86a d86a d86a * * 3a4e 8ea2bace,8ea2bacev 5577 e595b7 5577 00005577 d86a d86a d86a d86a d86a d86a d86a
+8392 d86b d86b d86b * * 3a4f 8ea2bacf,8ea2bacfv 5645 e59985 5645 00005645 d86b d86b d86b d86b d86b d86b d86b
+8393 d86c d86c d86c * * 3a50 8ea2bad0,8ea2bad0v 55a2 e596a2 55a2 000055a2 d86c d86c d86c d86c d86c d86c d86c
+8394 d86d d86d d86d * * 3a51 8ea2bad1,8ea2bad1v 5593 e59693 5593 00005593 d86d d86d d86d d86d d86d d86d d86d
+8395 d86e d86e d86e * * 3a52 8ea2bad2,8ea2bad2v 5588 e59688 5588 00005588 d86e d86e d86e d86e d86e d86e d86e
+8396 d86f d86f d86f * * 3a53 8ea2bad3,8ea2bad3v 558f e5968f 558f 0000558f d86f d86f d86f d86f d86f d86f d86f
+8397 d870 d870 d870 * * 3a54 8ea2bad4,8ea2bad4v 55b5 e596b5 55b5 000055b5 d870 d870 d870 d870 d870 d870 d870
+8398 d871 d871 d871 * * 3a55 8ea2bad5,8ea2bad5v 5581 e59681 5581 00005581 d871 d871 d871 d871 d871 d871 d871
+8399 d872 d872 d872 * * 3a56 8ea2bad6,8ea2bad6v 55a3 e596a3 55a3 000055a3 d872 d872 d872 d872 d872 d872 d872
+8400 d873 d873 d873 * * 3a57 8ea2bad7,8ea2bad7v 5592 e59692 5592 00005592 d873 d873 d873 d873 d873 d873 d873
+8401 d874 d874 d874 * * 3a58 8ea2bad8,8ea2bad8v 55a4 e596a4 55a4 000055a4 d874 d874 d874 d874 d874 d874 d874
+8402 d875 d875 d875 * * 3a59 8ea2bad9,8ea2bad9v 557d e595bd 557d 0000557d d875 d875 d875 d875 d875 d875 d875
+8403 d876 d876 d876 * * 3a5a 8ea2bada,8ea2badav 558c e5968c 558c 0000558c d876 d876 d876 d876 d876 d876 d876
+8404 d877 d877 d877 * * 3a5b 8ea2badb,8ea2badbv 55a6 e596a6 55a6 000055a6 d877 d877 d877 d877 d877 d877 d877
+8405 d878 d878 d878 * * 3a5c 8ea2badc,8ea2badcv 557f e595bf 557f 0000557f d878 d878 d878 d878 d878 d878 d878
+8406 d879 d879 d879 * * 3a5d 8ea2badd,8ea2baddv 5595 e59695 5595 00005595 d879 d879 d879 d879 d879 d879 d879
+8407 d87a d87a d87a * * 3a5e 8ea2bade,8ea2badev 55a1 e596a1 55a1 000055a1 d87a d87a d87a d87a d87a d87a d87a
+8408 d87b d87b d87b * * 3a5f 8ea2badf,8ea2badfv 558e e5968e 558e 0000558e d87b d87b d87b d87b d87b d87b d87b
+8409 d87c d87c d87c * * 3a60 8ea2bae0,8ea2bae0v 570c e59c8c 570c 0000570c d87c d87c d87c d87c d87c d87c d87c
+8410 d87d d87d d87d * * 3a61 8ea2bae1,8ea2bae1v 5829 e5a0a9 5829 00005829 d87d d87d d87d d87d d87d d87d d87d
+8411 d87e d87e d87e * * 3a62 8ea2bae2,8ea2bae2v 5837 e5a0b7 5837 00005837 d87e d87e d87e d87e d87e d87e d87e
+8412 d8a1 d8a1 d8a1 * * 3a63 8ea2bae3,8ea2bae3v 5819 e5a099 5819 00005819 d8a1 d8a1 d8a1 d8a1 d8a1 d8a1 d8a1
+8413 d8a2 d8a2 d8a2 * * 3a64 8ea2bae4,8ea2bae4v 581e e5a09e 581e 0000581e d8a2 d8a2 d8a2 d8a2 d8a2 d8a2 d8a2
+8414 d8a3 d8a3 d8a3 * * 3a65 8ea2bae5,8ea2bae5v 5827 e5a0a7 5827 00005827 d8a3 d8a3 d8a3 d8a3 d8a3 d8a3 d8a3
+8415 d8a4 d8a4 d8a4 * * 3a66 8ea2bae6,8ea2bae6v 5823 e5a0a3 5823 00005823 d8a4 d8a4 d8a4 d8a4 d8a4 d8a4 d8a4
+8416 d8a5 d8a5 d8a5 * * 3a67 8ea2bae7,8ea2bae7v 5828 e5a0a8 5828 00005828 d8a5 d8a5 d8a5 d8a5 d8a5 d8a5 d8a5
+8417 d8a6 d8a6 d8a6 * * 3a68 8ea2bae8,8ea2bae8v 57f5 e59fb5 57f5 000057f5 d8a6 d8a6 d8a6 d8a6 d8a6 d8a6 d8a6
+8418 d8a7 d8a7 d8a7 * * 3a69 8ea2bae9,8ea2bae9v 5848 e5a188 5848 00005848 d8a7 d8a7 d8a7 d8a7 d8a7 d8a7 d8a7
+8419 d8a8 d8a8 d8a8 * * 3a6a 8ea2baea,8ea2baeav 5825 e5a0a5 5825 00005825 d8a8 d8a8 d8a8 d8a8 d8a8 d8a8 d8a8
+8420 d8a9 d8a9 d8a9 * * 3a6b 8ea2baeb,8ea2baebv 581c e5a09c 581c 0000581c d8a9 d8a9 d8a9 d8a9 d8a9 d8a9 d8a9
+8421 d8aa d8aa d8aa * * 3a6c 8ea2baec,8ea2baecv 581b e5a09b 581b 0000581b d8aa d8aa d8aa d8aa d8aa d8aa d8aa
+8422 d8ab d8ab d8ab * * 3a6d 8ea2baed,8ea2baedv 5833 e5a0b3 5833 00005833 d8ab d8ab d8ab d8ab d8ab d8ab d8ab
+8423 d8ac d8ac d8ac * * 3a6e 8ea2baee,8ea2baeev 583f e5a0bf 583f 0000583f d8ac d8ac d8ac d8ac d8ac d8ac d8ac
+8424 d8ad d8ad d8ad * * 3a6f 8ea2baef,8ea2baefv 5836 e5a0b6 5836 00005836 d8ad d8ad d8ad d8ad d8ad d8ad d8ad
+8425 d8ae d8ae d8ae * * 3a70 8ea2baf0,8ea2baf0v 582e e5a0ae 582e 0000582e d8ae d8ae d8ae d8ae d8ae d8ae d8ae
+8426 d8af d8af d8af * * 3a71 8ea2baf1,8ea2baf1v 5839 e5a0b9 5839 00005839 d8af d8af d8af d8af d8af d8af d8af
+8427 d8b0 d8b0 d8b0 * * 3a72 8ea2baf2,8ea2baf2v 5838 e5a0b8 5838 00005838 d8b0 d8b0 d8b0 d8b0 d8b0 d8b0 d8b0
+8428 d8b1 d8b1 d8b1 * * 3a73 8ea2baf3,8ea2baf3v 582d e5a0ad 582d 0000582d d8b1 d8b1 d8b1 d8b1 d8b1 d8b1 d8b1
+8429 d8b2 d8b2 d8b2 * * 3a74 8ea2baf4,8ea2baf4v 582c e5a0ac 582c 0000582c d8b2 d8b2 d8b2 d8b2 d8b2 d8b2 d8b2
+8430 d8b3 d8b3 d8b3 * * 3a75 8ea2baf5,8ea2baf5v 583b e5a0bb 583b 0000583b d8b3 d8b3 d8b3 d8b3 d8b3 d8b3 d8b3
+8431 d8b4 d8b4 d8b4 * * 3a76 8ea2baf6,8ea2baf6v 5961 e5a5a1 5961 00005961 d8b4 d8b4 d8b4 d8b4 d8b4 d8b4 d8b4
+8432 d8b5 d8b5 d8b5 * * 3a77 8ea2baf7,8ea2baf7v 5aaf e5aaaf 5aaf 00005aaf d8b5 d8b5 d8b5 d8b5 d8b5 d8b5 d8b5
+8433 d8b6 d8b6 d8b6 * * 3a78 8ea2baf8,8ea2baf8v 5a94 e5aa94 5a94 00005a94 d8b6 d8b6 d8b6 d8b6 d8b6 d8b6 d8b6
+8434 d8b7 d8b7 d8b7 * * 3a79 8ea2baf9,8ea2baf9v 5a9f e5aa9f 5a9f 00005a9f d8b7 d8b7 d8b7 d8b7 d8b7 d8b7 d8b7
+8435 d8b8 d8b8 d8b8 * * 3a7a 8ea2bafa,8ea2bafav 5a7a e5a9ba 5a7a 00005a7a d8b8 d8b8 d8b8 d8b8 d8b8 d8b8 d8b8
+8436 d8b9 d8b9 d8b9 * * 3a7b 8ea2bafb,8ea2bafbv 5aa2 e5aaa2 5aa2 00005aa2 d8b9 d8b9 d8b9 d8b9 d8b9 d8b9 d8b9
+8437 d8ba d8ba d8ba * * 3a7c 8ea2bafc,8ea2bafcv 5a9e e5aa9e 5a9e 00005a9e d8ba d8ba d8ba d8ba d8ba d8ba d8ba
+8438 d8bb d8bb d8bb * * 3a7d 8ea2bafd,8ea2bafdv 5a78 e5a9b8 5a78 00005a78 d8bb d8bb d8bb d8bb d8bb d8bb d8bb
+8439 d8bc d8bc d8bc * * 3a7e 8ea2bafe,8ea2bafev 5aa6 e5aaa6 5aa6 00005aa6 d8bc d8bc d8bc d8bc d8bc d8bc d8bc
+8440 d8bd d8bd d8bd * * 3b21 8ea2bba1,8ea2bba1v 5a7c e5a9bc 5a7c 00005a7c d8bd d8bd d8bd d8bd d8bd d8bd d8bd
+8441 d8be d8be d8be * * 3b22 8ea2bba2,8ea2bba2v 5aa5 e5aaa5 5aa5 00005aa5 d8be d8be d8be d8be d8be d8be d8be
+8442 d8bf d8bf d8bf * * 3b23 8ea2bba3,8ea2bba3v 5aac e5aaac 5aac 00005aac d8bf d8bf d8bf d8bf d8bf d8bf d8bf
+8443 d8c0 d8c0 d8c0 * * 3b24 8ea2bba4,8ea2bba4v 5a95 e5aa95 5a95 00005a95 d8c0 d8c0 d8c0 d8c0 d8c0 d8c0 d8c0
+8444 d8c1 d8c1 d8c1 * * 3b25 8ea2bba5,8ea2bba5v 5aae e5aaae 5aae 00005aae d8c1 d8c1 d8c1 d8c1 d8c1 d8c1 d8c1
+8445 d8c2 d8c2 d8c2 * * 3b26 8ea2bba6,8ea2bba6v 5a37 e5a8b7 5a37 00005a37 d8c2 d8c2 d8c2 d8c2 d8c2 d8c2 d8c2
+8446 d8c3 d8c3 d8c3 * * 3b27 8ea2bba7,8ea2bba7v 5a84 e5aa84 5a84 00005a84 d8c3 d8c3 d8c3 d8c3 d8c3 d8c3 d8c3
+8447 d8c4 d8c4 d8c4 * * 3b28 8ea2bba8,8ea2bba8v 5a8a e5aa8a 5a8a 00005a8a d8c4 d8c4 d8c4 d8c4 d8c4 d8c4 d8c4
+8448 d8c5 d8c5 d8c5 * * 3b29 8ea2bba9,8ea2bba9v 5a97 e5aa97 5a97 00005a97 d8c5 d8c5 d8c5 d8c5 d8c5 d8c5 d8c5
+8449 d8c6 d8c6 d8c6 * * 3b2a 8ea2bbaa,8ea2bbaav 5a83 e5aa83 5a83 00005a83 d8c6 d8c6 d8c6 d8c6 d8c6 d8c6 d8c6
+8450 d8c7 d8c7 d8c7 * * 3b2b 8ea2bbab,8ea2bbabv 5a8b e5aa8b 5a8b 00005a8b d8c7 d8c7 d8c7 d8c7 d8c7 d8c7 d8c7
+8451 d8c8 d8c8 d8c8 * * 3b2c 8ea2bbac,8ea2bbacv 5aa9 e5aaa9 5aa9 00005aa9 d8c8 d8c8 d8c8 d8c8 d8c8 d8c8 d8c8
+8452 d8c9 d8c9 d8c9 * * 3b2d 8ea2bbad,8ea2bbadv 5a7b e5a9bb 5a7b 00005a7b d8c9 d8c9 d8c9 d8c9 d8c9 d8c9 d8c9
+8453 d8ca d8ca d8ca * * 3b2e 8ea2bbae,8ea2bbaev 5a7d e5a9bd 5a7d 00005a7d d8ca d8ca d8ca d8ca d8ca d8ca d8ca
+8454 d8cb d8cb d8cb * * 3b2f 8ea2bbaf,8ea2bbafv 5a8c e5aa8c 5a8c 00005a8c d8cb d8cb d8cb d8cb d8cb d8cb d8cb
+8455 d8cc d8cc d8cc * * 3b30 8ea2bbb0,8ea2bbb0v 5a9c e5aa9c 5a9c 00005a9c d8cc d8cc d8cc d8cc d8cc d8cc d8cc
+8456 d8cd d8cd d8cd * * 3b31 8ea2bbb1,8ea2bbb1v 5a8f e5aa8f 5a8f 00005a8f d8cd d8cd d8cd d8cd d8cd d8cd d8cd
+8457 d8ce d8ce d8ce * * 3b32 8ea2bbb2,8ea2bbb2v 5a93 e5aa93 5a93 00005a93 d8ce d8ce d8ce d8ce d8ce d8ce d8ce
+8458 d8cf d8cf d8cf * * 3b33 8ea2bbb3,8ea2bbb3v 5a9d e5aa9d 5a9d 00005a9d d8cf d8cf d8cf d8cf d8cf d8cf d8cf
+8459 d8d0 d8d0 d8d0 * * 3b34 8ea2bbb4,8ea2bbb4v 5bea e5afaa 5bea 00005bea d8d0 d8d0 d8d0 d8d0 d8d0 d8d0 d8d0
+8460 d8d1 d8d1 d8d1 * * 3b35 8ea2bbb5,8ea2bbb5v 5bcd e5af8d 5bcd 00005bcd d8d1 d8d1 d8d1 d8d1 d8d1 d8d1 d8d1
+8461 d8d2 d8d2 d8d2 * * 3b36 8ea2bbb6,8ea2bbb6v 5bcb e5af8b 5bcb 00005bcb d8d2 d8d2 d8d2 d8d2 d8d2 d8d2 d8d2
+8462 d8d3 d8d3 d8d3 * * 3b37 8ea2bbb7,8ea2bbb7v 5bd4 e5af94 5bd4 00005bd4 d8d3 d8d3 d8d3 d8d3 d8d3 d8d3 d8d3
+8463 d8d4 d8d4 d8d4 * * 3b38 8ea2bbb8,8ea2bbb8v 5bd1 e5af91 5bd1 00005bd1 d8d4 d8d4 d8d4 d8d4 d8d4 d8d4 d8d4
+8464 d8d5 d8d5 d8d5 * * 3b39 8ea2bbb9,8ea2bbb9v 5bca e5af8a 5bca 00005bca d8d5 d8d5 d8d5 d8d5 d8d5 d8d5 d8d5
+8465 d8d6 d8d6 d8d6 * * 3b3a 8ea2bbba,8ea2bbbav 5bce e5af8e 5bce 00005bce d8d6 d8d6 d8d6 d8d6 d8d6 d8d6 d8d6
+8466 d8d7 d8d7 d8d7 * * 3b3b 8ea2bbbb,8ea2bbbbv 5c0c e5b08c 5c0c 00005c0c d8d7 d8d7 d8d7 d8d7 d8d7 d8d7 d8d7
+8467 d8d8 d8d8 d8d8 * * 3b3c 8ea2bbbc,8ea2bbbcv 5c30 e5b0b0 5c30 00005c30 d8d8 d8d8 d8d8 d8d8 d8d8 d8d8 d8d8
+8468 d8d9 d8d9 d8d9 * * 3b3d 8ea2bbbd,8ea2bbbdv 5d37 e5b4b7 5d37 00005d37 d8d9 d8d9 d8d9 d8d9 d8d9 d8d9 d8d9
+8469 d8da d8da d8da * * 3b3e 8ea2bbbe,8ea2bbbev 5d43 e5b583 5d43 00005d43 d8da d8da d8da d8da d8da d8da d8da
+8470 d8db d8db d8db * * 3b3f 8ea2bbbf,8ea2bbbfv 5d6b e5b5ab 5d6b 00005d6b d8db d8db d8db d8db d8db d8db d8db
+8471 d8dc d8dc d8dc * * 3b40 8ea2bbc0,8ea2bbc0v 5d41 e5b581 5d41 00005d41 d8dc d8dc d8dc d8dc d8dc d8dc d8dc
+8472 d8dd d8dd d8dd * * 3b41 8ea2bbc1,8ea2bbc1v 5d4b e5b58b 5d4b 00005d4b d8dd d8dd d8dd d8dd d8dd d8dd d8dd
+8473 d8de d8de d8de * * 3b42 8ea2bbc2,8ea2bbc2v 5d3f e5b4bf 5d3f 00005d3f d8de d8de d8de d8de d8de d8de d8de
+8474 d8df d8df d8df * * 3b43 8ea2bbc3,8ea2bbc3v 5d35 e5b4b5 5d35 00005d35 d8df d8df d8df d8df d8df d8df d8df
+8475 d8e0 d8e0 d8e0 * * 3b44 8ea2bbc4,8ea2bbc4v 5d51 e5b591 5d51 00005d51 d8e0 d8e0 d8e0 d8e0 d8e0 d8e0 d8e0
+8476 d8e1 d8e1 d8e1 * * 3b45 8ea2bbc5,8ea2bbc5v 5d4e e5b58e 5d4e 00005d4e d8e1 d8e1 d8e1 d8e1 d8e1 d8e1 d8e1
+8477 d8e2 d8e2 d8e2 * * 3b46 8ea2bbc6,8ea2bbc6v 5d55 e5b595 5d55 00005d55 d8e2 d8e2 d8e2 d8e2 d8e2 d8e2 d8e2
+8478 d8e3 d8e3 d8e3 * * 3b47 8ea2bbc7,8ea2bbc7v 5d33 e5b4b3 5d33 00005d33 d8e3 d8e3 d8e3 d8e3 d8e3 d8e3 d8e3
+8479 d8e4 d8e4 d8e4 * * 3b48 8ea2bbc8,8ea2bbc8v 5d3a e5b4ba 5d3a 00005d3a d8e4 d8e4 d8e4 d8e4 d8e4 d8e4 d8e4
+8480 d8e5 d8e5 d8e5 * * 3b49 8ea2bbc9,8ea2bbc9v 5d52 e5b592 5d52 00005d52 d8e5 d8e5 d8e5 d8e5 d8e5 d8e5 d8e5
+8481 d8e6 d8e6 d8e6 * * 3b4a 8ea2bbca,8ea2bbcav 5d3d e5b4bd 5d3d 00005d3d d8e6 d8e6 d8e6 d8e6 d8e6 d8e6 d8e6
+8482 d8e7 d8e7 d8e7 * * 3b4b 8ea2bbcb,8ea2bbcbv 5d31 e5b4b1 5d31 00005d31 d8e7 d8e7 d8e7 d8e7 d8e7 d8e7 d8e7
+8483 d8e8 d8e8 d8e8 * * 3b4c 8ea2bbcc,8ea2bbccv 5d59 e5b599 5d59 00005d59 d8e8 d8e8 d8e8 d8e8 d8e8 d8e8 d8e8
+8484 d8e9 d8e9 d8e9 * * 3b4d 8ea2bbcd,8ea2bbcdv 5d42 e5b582 5d42 00005d42 d8e9 d8e9 d8e9 d8e9 d8e9 d8e9 d8e9
+8485 d8ea d8ea d8ea * * 3b4e 8ea2bbce,8ea2bbcev 5d39 e5b4b9 5d39 00005d39 d8ea d8ea d8ea d8ea d8ea d8ea d8ea
+8486 d8eb d8eb d8eb * * 3b4f 8ea2bbcf,8ea2bbcfv 5d49 e5b589 5d49 00005d49 d8eb d8eb d8eb d8eb d8eb d8eb d8eb
+8487 d8ec d8ec d8ec * * 3b50 8ea2bbd0,8ea2bbd0v 5d38 e5b4b8 5d38 00005d38 d8ec d8ec d8ec d8ec d8ec d8ec d8ec
+8488 d8ed d8ed d8ed * * 3b51 8ea2bbd1,8ea2bbd1v 5d3c e5b4bc 5d3c 00005d3c d8ed d8ed d8ed d8ed d8ed d8ed d8ed
+8489 d8ee d8ee d8ee * * 3b52 8ea2bbd2,8ea2bbd2v 5d32 e5b4b2 5d32 00005d32 d8ee d8ee d8ee d8ee d8ee d8ee d8ee
+8490 d8ef d8ef d8ef * * 3b53 8ea2bbd3,8ea2bbd3v 5d36 e5b4b6 5d36 00005d36 d8ef d8ef d8ef d8ef d8ef d8ef d8ef
+8491 d8f0 d8f0 d8f0 * * 3b54 8ea2bbd4,8ea2bbd4v 5d40 e5b580 5d40 00005d40 d8f0 d8f0 d8f0 d8f0 d8f0 d8f0 d8f0
+8492 d8f1 d8f1 d8f1 * * 3b55 8ea2bbd5,8ea2bbd5v 5d45 e5b585 5d45 00005d45 d8f1 d8f1 d8f1 d8f1 d8f1 d8f1 d8f1
+8493 d8f2 d8f2 d8f2 * * 3b56 8ea2bbd6,8ea2bbd6v 5e44 e5b984 5e44 00005e44 d8f2 d8f2 d8f2 d8f2 d8f2 d8f2 d8f2
+8494 d8f3 d8f3 d8f3 * * 3b57 8ea2bbd7,8ea2bbd7v 5e41 e5b981 5e41 00005e41 d8f3 d8f3 d8f3 d8f3 d8f3 d8f3 d8f3
+8495 d8f4 d8f4 d8f4 * * 3b58 8ea2bbd8,8ea2bbd8v 5f58 e5bd98,ee8589 5f58,e149 00005f58,0000e149 fc4f,d8f4 d8f4 d8f4 d8f4,fc4f d8f4 d8f4 fc4f,d8f4
+8496 d8f5 d8f5 d8f5 * * 3b59 8ea2bbd9,8ea2bbd9v 5fa6 e5bea6 5fa6 00005fa6 d8f5 d8f5 d8f5 d8f5 d8f5 d8f5 d8f5
+8497 d8f6 d8f6 d8f6 * * 3b5a 8ea2bbda,8ea2bbdav 5fa5 e5bea5 5fa5 00005fa5 d8f6 d8f6 d8f6 d8f6 d8f6 d8f6 d8f6
+8498 d8f7 d8f7 d8f7 * * 3b5b 8ea2bbdb,8ea2bbdbv 5fab e5beab 5fab 00005fab d8f7 d8f7 d8f7 d8f7 d8f7 d8f7 d8f7
+8499 d8f8 d8f8 d8f8 * * 3b5c 8ea2bbdc,8ea2bbdcv 60c9 e68389 60c9 000060c9 d8f8 d8f8 d8f8 d8f8 d8f8 d8f8 d8f8
+8500 d8f9 d8f9 d8f9 * * 3b5d 8ea2bbdd,8ea2bbddv 60b9 e682b9 60b9 000060b9 d8f9 d8f9 d8f9 d8f9 d8f9 d8f9 d8f9
+8501 d8fa d8fa d8fa * * 3b5e 8ea2bbde,8ea2bbdev 60cc e6838c 60cc 000060cc d8fa d8fa d8fa d8fa d8fa d8fa d8fa
+8502 d8fb d8fb d8fb * * 3b5f 8ea2bbdf,8ea2bbdfv 60e2 e683a2 60e2 000060e2 d8fb d8fb d8fb d8fb d8fb d8fb d8fb
+8503 d8fc d8fc d8fc * * 3b60 8ea2bbe0,8ea2bbe0v 60ce e6838e 60ce 000060ce d8fc d8fc d8fc d8fc d8fc d8fc d8fc
+8504 d8fd d8fd d8fd * * 3b61 8ea2bbe1,8ea2bbe1v 60c4 e68384 60c4 000060c4 d8fd d8fd d8fd d8fd d8fd d8fd d8fd
+8505 d8fe d8fe d8fe * * 3b62 8ea2bbe2,8ea2bbe2v 6114 e68494 6114 00006114 d8fe d8fe d8fe d8fe d8fe d8fe d8fe
+8506 d940 d940 d940 * * 3b63 8ea2bbe3,8ea2bbe3v 60f2 e683b2 60f2 000060f2 d940 d940 d940 d940 d940 d940 d940
+8507 d941 d941 d941 * * 3b64 8ea2bbe4,8ea2bbe4v 610a e6848a 610a 0000610a d941 d941 d941 d941 d941 d941 d941
+8508 d942 d942 d942 * * 3b65 8ea2bbe5,8ea2bbe5v 6116 e68496 6116 00006116 d942 d942 d942 d942 d942 d942 d942
+8509 d943 d943 d943 * * 3b66 8ea2bbe6,8ea2bbe6v 6105 e68485 6105 00006105 d943 d943 d943 d943 d943 d943 d943
+8510 d944 d944 d944 * * 3b67 8ea2bbe7,8ea2bbe7v 60f5 e683b5 60f5 000060f5 d944 d944 d944 d944 d944 d944 d944
+8511 d945 d945 d945 * * 3b68 8ea2bbe8,8ea2bbe8v 6113 e68493 6113 00006113 d945 d945 d945 d945 d945 d945 d945
+8512 d946 d946 d946 * * 3b69 8ea2bbe9,8ea2bbe9v 60f8 e683b8 60f8 000060f8 d946 d946 d946 d946 d946 d946 d946
+8513 d947 d947 d947 * * 3b6a 8ea2bbea,8ea2bbeav 60fc e683bc 60fc 000060fc d947 d947 d947 d947 d947 d947 d947
+8514 d948 d948 d948 * * 3b6b 8ea2bbeb,8ea2bbebv 60fe e683be 60fe 000060fe d948 d948 d948 d948 d948 d948 d948
+8515 d949 d949 d949 * * 3b6c 8ea2bbec,8ea2bbecv 60c1 e68381 60c1 000060c1 d949 d949 d949 d949 d949 d949 d949
+8516 d94a d94a d94a * * 3b6d 8ea2bbed,8ea2bbedv 6103 e68483 6103 00006103 d94a d94a d94a d94a d94a d94a d94a
+8517 d94b d94b d94b * * 3b6e 8ea2bbee,8ea2bbeev 6118 e68498 6118 00006118 d94b d94b d94b d94b d94b d94b d94b
+8518 d94c d94c d94c * * 3b6f 8ea2bbef,8ea2bbefv 611d e6849d 611d 0000611d d94c d94c d94c d94c d94c d94c d94c
+8519 d94d d94d d94d * * 3b70 8ea2bbf0,8ea2bbf0v 6110 e68490 6110 00006110 d94d d94d d94d d94d d94d d94d d94d
+8520 d94e d94e d94e * * 3b71 8ea2bbf1,8ea2bbf1v 60ff e683bf 60ff 000060ff d94e d94e d94e d94e d94e d94e d94e
+8521 d94f d94f d94f * * 3b72 8ea2bbf2,8ea2bbf2v 6104 e68484 6104 00006104 d94f d94f d94f d94f d94f d94f d94f
+8522 d950 d950 d950 * * 3b73 8ea2bbf3,8ea2bbf3v 610b e6848b 610b 0000610b d950 d950 d950 d950 d950 d950 d950
+8523 d951 d951 d951 * * 3b74 8ea2bbf4,8ea2bbf4v 624a e6898a 624a 0000624a d951 d951 d951 d951 d951 d951 d951
+8524 d952 d952 d952 * * 3b75 8ea2bbf5,8ea2bbf5v 6394 e68e94 6394 00006394 d952 d952 d952 d952 d952 d952 d952
+8525 d953 d953 d953 * * 3b76 8ea2bbf6,8ea2bbf6v 63b1 e68eb1 63b1 000063b1 d953 d953 d953 d953 d953 d953 d953
+8526 d954 d954 d954 * * 3b77 8ea2bbf7,8ea2bbf7v 63b0 e68eb0 63b0 000063b0 d954 d954 d954 d954 d954 d954 d954
+8527 d955 d955 d955 * * 3b78 8ea2bbf8,8ea2bbf8v 63ce e68f8e 63ce 000063ce d955 d955 d955 d955 d955 d955 d955
+8528 d956 d956 d956 * * 3b79 8ea2bbf9,8ea2bbf9v 63e5 e68fa5 63e5 000063e5 d956 d956 d956 d956 d956 d956 d956
+8529 d957 d957 d957 * * 3b7a 8ea2bbfa,8ea2bbfav 63e8 e68fa8 63e8 000063e8 d957 d957 d957 d957 d957 d957 d957
+8530 d958 d958 d958 * * 3b7b 8ea2bbfb,8ea2bbfbv 63ef e68faf 63ef 000063ef d958 d958 d958 d958 d958 d958 d958
+8531 d959 d959 d959 * * 3b7c 8ea2bbfc,8ea2bbfcv 63c3 e68f83 63c3 000063c3 d959 d959 d959 d959 d959 d959 d959
+8532 d95a d95a d95a * * 3b7d 8ea2bbfd,8ea2bbfdv 649d e6929d 649d 0000649d d95a d95a d95a d95a d95a d95a d95a
+8533 d95b d95b d95b * * 3b7e 8ea2bbfe,8ea2bbfev 63f3 e68fb3 63f3 000063f3 d95b d95b d95b d95b d95b d95b d95b
+8534 d95c d95c d95c * * 3c21 8ea2bca1,8ea2bca1v 63ca e68f8a 63ca 000063ca d95c d95c d95c d95c d95c d95c d95c
+8535 d95d d95d d95d * * 3c22 8ea2bca2,8ea2bca2v 63e0 e68fa0 63e0 000063e0 d95d d95d d95d d95d d95d d95d d95d
+8536 d95e d95e d95e * * 3c23 8ea2bca3,8ea2bca3v 63f6 e68fb6 63f6 000063f6 d95e d95e d95e d95e d95e d95e d95e
+8537 d95f d95f d95f * * 3c24 8ea2bca4,8ea2bca4v 63d5 e68f95 63d5 000063d5 d95f d95f d95f d95f d95f d95f d95f
+8538 d960 d960 d960 * * 3c25 8ea2bca5,8ea2bca5v 63f2 e68fb2 63f2 000063f2 d960 d960 d960 d960 d960 d960 d960
+8539 d961 d961 d961 * * 3c26 8ea2bca6,8ea2bca6v 63f5 e68fb5 63f5 000063f5 d961 d961 d961 d961 d961 d961 d961
+8540 d962 d962 d962 * * 3c27 8ea2bca7,8ea2bca7v 6461 e691a1 6461 00006461 d962 d962 d962 d962 d962 d962 d962
+8541 d963 d963 d963 * * 3c28 8ea2bca8,8ea2bca8v 63df e68f9f 63df 000063df d963 d963 d963 d963 d963 d963 d963
+8542 d964 d964 d964 * * 3c29 8ea2bca9,8ea2bca9v 63be e68ebe 63be 000063be d964 d964 d964 d964 d964 d964 d964
+8543 d965 d965 d965 * * 3c2a 8ea2bcaa,8ea2bcaav 63dd e68f9d 63dd 000063dd d965 d965 d965 d965 d965 d965 d965
+8544 d966 d966 d966 * * 3c2b 8ea2bcab,8ea2bcabv 63dc e68f9c 63dc 000063dc d966 d966 d966 d966 d966 d966 d966
+8545 d967 d967 d967 * * 3c2c 8ea2bcac,8ea2bcacv 63c4 e68f84 63c4 000063c4 d967 d967 d967 d967 d967 d967 d967
+8546 d968 d968 d968 * * 3c2d 8ea2bcad,8ea2bcadv 63d8 e68f98 63d8 000063d8 d968 d968 d968 d968 d968 d968 d968
+8547 d969 d969 d969 * * 3c2e 8ea2bcae,8ea2bcaev 63d3 e68f93 63d3 000063d3 d969 d969 d969 d969 d969 d969 d969
+8548 d96a d96a d96a * * 3c2f 8ea2bcaf,8ea2bcafv 63c2 e68f82 63c2 000063c2 d96a d96a d96a d96a d96a d96a d96a
+8549 d96b d96b d96b * * 3c30 8ea2bcb0,8ea2bcb0v 63c7 e68f87 63c7 000063c7 d96b d96b d96b d96b d96b d96b d96b
+8550 d96c d96c d96c * * 3c31 8ea2bcb1,8ea2bcb1v 63cc e68f8c 63cc 000063cc d96c d96c d96c d96c d96c d96c d96c
+8551 d96d d96d d96d * * 3c32 8ea2bcb2,8ea2bcb2v 63cb e68f8b 63cb 000063cb d96d d96d d96d d96d d96d d96d d96d
+8552 d96e d96e d96e * * 3c33 8ea2bcb3,8ea2bcb3v 63c8 e68f88 63c8 000063c8 d96e d96e d96e d96e d96e d96e d96e
+8553 d96f d96f d96f * * 3c34 8ea2bcb4,8ea2bcb4v 63f0 e68fb0 63f0 000063f0 d96f d96f d96f d96f d96f d96f d96f
+8554 d970 d970 d970 * * 3c35 8ea2bcb5,8ea2bcb5v 63d7 e68f97 63d7 000063d7 d970 d970 d970 d970 d970 d970 d970
+8555 d971 d971 d971 * * 3c36 8ea2bcb6,8ea2bcb6v 63d9 e68f99 63d9 000063d9 d971 d971 d971 d971 d971 d971 d971
+8556 d972 d972 d972 * * 3c37 8ea2bcb7,8ea2bcb7v 6532 e694b2 6532 00006532 d972 d972 d972 d972 d972 d972 d972
+8557 d973 d973 d973 * * 3c38 8ea2bcb8,8ea2bcb8v 6567 e695a7 6567 00006567 d973 d973 d973 d973 d973 d973 d973
+8558 d974 d974 d974 * * 3c39 8ea2bcb9,8ea2bcb9v 656a e695aa 656a 0000656a d974 d974 d974 d974 d974 d974 d974
+8559 d975 d975 d975 * * 3c3a 8ea2bcba,8ea2bcbav 6564 e695a4 6564 00006564 d975 d975 d975 d975 d975 d975 d975
+8560 d976 d976 d976 * * 3c3b 8ea2bcbb,8ea2bcbbv 655c e6959c 655c 0000655c d976 d976 d976 d976 d976 d976 d976
+8561 d977 d977 d977 * * 3c3c 8ea2bcbc,8ea2bcbcv 6568 e695a8 6568 00006568 d977 d977 d977 d977 d977 d977 d977
+8562 d978 d978 d978 * * 3c3d 8ea2bcbd,8ea2bcbdv 6565 e695a5 6565 00006565 d978 d978 d978 d978 d978 d978 d978
+8563 d979 d979 d979 * * 3c3e 8ea2bcbe,8ea2bcbev 658c e6968c 658c 0000658c d979 d979 d979 d979 d979 d979 d979
+8564 d97a d97a d97a * * 3c3f 8ea2bcbf,8ea2bcbfv 659d e6969d 659d 0000659d d97a d97a d97a d97a d97a d97a d97a
+8565 d97b d97b d97b * * 3c40 8ea2bcc0,8ea2bcc0v 659e e6969e 659e 0000659e d97b d97b d97b d97b d97b d97b d97b
+8566 d97c d97c d97c * * 3c41 8ea2bcc1,8ea2bcc1v 65ae e696ae 65ae 000065ae d97c d97c d97c d97c d97c d97c d97c
+8567 d97d d97d d97d * * 3c42 8ea2bcc2,8ea2bcc2v 65d0 e69790 65d0 000065d0 d97d d97d d97d d97d d97d d97d d97d
+8568 d97e d97e d97e * * 3c43 8ea2bcc3,8ea2bcc3v 65d2 e69792 65d2 000065d2 d97e d97e d97e d97e d97e d97e d97e
+8569 d9a1 d9a1 d9a1 * * 3c44 8ea2bcc4,8ea2bcc4v 667c e699bc 667c 0000667c d9a1 d9a1 d9a1 d9a1 d9a1 d9a1 d9a1
+8570 d9a2 d9a2 d9a2 * * 3c45 8ea2bcc5,8ea2bcc5v 666c e699ac 666c 0000666c d9a2 d9a2 d9a2 d9a2 d9a2 d9a2 d9a2
+8571 d9a3 d9a3 d9a3 * * 3c46 8ea2bcc6,8ea2bcc6v 667b e699bb 667b 0000667b d9a3 d9a3 d9a3 d9a3 d9a3 d9a3 d9a3
+8572 d9a4 d9a4 d9a4 * * 3c47 8ea2bcc7,8ea2bcc7v 6680 e69a80 6680 00006680 d9a4 d9a4 d9a4 d9a4 d9a4 d9a4 d9a4
+8573 d9a5 d9a5 d9a5 * * 3c48 8ea2bcc8,8ea2bcc8v 6671 e699b1 6671 00006671 d9a5 d9a5 d9a5 d9a5 d9a5 d9a5 d9a5
+8574 d9a6 d9a6 d9a6 * * 3c49 8ea2bcc9,8ea2bcc9v 6679 e699b9 6679 00006679 d9a6 d9a6 d9a6 d9a6 d9a6 d9a6 d9a6
+8575 d9a7 d9a7 d9a7 * * 3c4a 8ea2bcca,8ea2bccav 666a e699aa 666a 0000666a d9a7 d9a7 d9a7 d9a7 d9a7 d9a7 d9a7
+8576 d9a8 d9a8 d9a8 * * 3c4b 8ea2bccb,8ea2bccbv 6672 e699b2 6672 00006672 d9a8 d9a8 d9a8 d9a8 d9a8 d9a8 d9a8
+8577 d9a9 d9a9 d9a9 * * 3c4c 8ea2bccc,8ea2bcccv 6701 e69c81 6701 00006701 d9a9 d9a9 d9a9 d9a9 d9a9 d9a9 d9a9
+8578 d9aa d9aa d9aa * * 3c4d 8ea2bccd,8ea2bccdv 690c e6a48c 690c 0000690c d9aa d9aa d9aa d9aa d9aa d9aa d9aa
+8579 d9ab d9ab d9ab * * 3c4e 8ea2bcce,8ea2bccev 68d3 e6a393 68d3 000068d3 d9ab d9ab d9ab d9ab d9ab d9ab d9ab
+8580 d9ac d9ac d9ac * * 3c4f 8ea2bccf,8ea2bccfv 6904 e6a484 6904 00006904 d9ac d9ac d9ac d9ac d9ac d9ac d9ac
+8581 d9ad d9ad d9ad * * 3c50 8ea2bcd0,8ea2bcd0v 68dc e6a39c 68dc 000068dc d9ad d9ad d9ad d9ad d9ad d9ad d9ad
+8582 d9ae d9ae d9ae * * 3c51 8ea2bcd1,8ea2bcd1v 692a e6a4aa 692a 0000692a d9ae d9ae d9ae d9ae d9ae d9ae d9ae
+8583 d9af d9af d9af * * 3c52 8ea2bcd2,8ea2bcd2v 68ec e6a3ac 68ec 000068ec d9af d9af d9af d9af d9af d9af d9af
+8584 d9b0 d9b0 d9b0 * * 3c53 8ea2bcd3,8ea2bcd3v 68ea e6a3aa 68ea 000068ea d9b0 d9b0 d9b0 d9b0 d9b0 d9b0 d9b0
+8585 d9b1 d9b1 d9b1 * * 3c54 8ea2bcd4,8ea2bcd4v 68f1 e6a3b1 68f1 000068f1 d9b1 d9b1 d9b1 d9b1 d9b1 d9b1 d9b1
+8586 d9b2 d9b2 d9b2 * * 3c55 8ea2bcd5,8ea2bcd5v 690f e6a48f 690f 0000690f d9b2 d9b2 d9b2 d9b2 d9b2 d9b2 d9b2
+8587 d9b3 d9b3 d9b3 * * 3c56 8ea2bcd6,8ea2bcd6v 68d6 e6a396 68d6 000068d6 d9b3 d9b3 d9b3 d9b3 d9b3 d9b3 d9b3
+8588 d9b4 d9b4 d9b4 * * 3c57 8ea2bcd7,8ea2bcd7v 68f7 e6a3b7 68f7 000068f7 d9b4 d9b4 d9b4 d9b4 d9b4 d9b4 d9b4
+8589 d9b5 d9b5 d9b5 * * 3c58 8ea2bcd8,8ea2bcd8v 68eb e6a3ab 68eb 000068eb d9b5 d9b5 d9b5 d9b5 d9b5 d9b5 d9b5
+8590 d9b6 d9b6 d9b6 * * 3c59 8ea2bcd9,8ea2bcd9v 68e4 e6a3a4 68e4 000068e4 d9b6 d9b6 d9b6 d9b6 d9b6 d9b6 d9b6
+8591 d9b7 d9b7 d9b7 * * 3c5a 8ea2bcda,8ea2bcdav 68f6 e6a3b6 68f6 000068f6 d9b7 d9b7 d9b7 d9b7 d9b7 d9b7 d9b7
+8592 d9b8 d9b8 d9b8 * * 3c5b 8ea2bcdb,8ea2bcdbv 6913 e6a493 6913 00006913 d9b8 d9b8 d9b8 d9b8 d9b8 d9b8 d9b8
+8593 d9b9 d9b9 d9b9 * * 3c5c 8ea2bcdc,8ea2bcdcv 6910 e6a490 6910 00006910 d9b9 d9b9 d9b9 d9b9 d9b9 d9b9 d9b9
+8594 d9ba d9ba d9ba * * 3c5d 8ea2bcdd,8ea2bcddv 68f3 e6a3b3 68f3 000068f3 d9ba d9ba d9ba d9ba d9ba d9ba d9ba
+8595 d9bb d9bb d9bb * * 3c5e 8ea2bcde,8ea2bcdev 68e1 e6a3a1 68e1 000068e1 d9bb d9bb d9bb d9bb d9bb d9bb d9bb
+8596 d9bc d9bc d9bc * * 3c5f 8ea2bcdf,8ea2bcdfv 6907 e6a487 6907 00006907 d9bc d9bc d9bc d9bc d9bc d9bc d9bc
+8597 d9bd d9bd d9bd * * 3c60 8ea2bce0,8ea2bce0v 68cc e6a38c 68cc 000068cc d9bd d9bd d9bd d9bd d9bd d9bd d9bd
+8598 d9be d9be d9be * * 3c61 8ea2bce1,8ea2bce1v 6908 e6a488 6908 00006908 d9be d9be d9be d9be d9be d9be d9be
+8599 d9bf d9bf d9bf * * 3c62 8ea2bce2,8ea2bce2v 6970 e6a5b0 6970 00006970 d9bf d9bf d9bf d9bf d9bf d9bf d9bf
+8600 d9c0 d9c0 d9c0 * * 3c63 8ea2bce3,8ea2bce3v 68b4 e6a2b4 68b4 000068b4 d9c0 d9c0 d9c0 d9c0 d9c0 d9c0 d9c0
+8601 d9c1 d9c1 d9c1 * * 3c64 8ea2bce4,8ea2bce4v 6911 e6a491 6911 00006911 d9c1 d9c1 d9c1 d9c1 d9c1 d9c1 d9c1
+8602 d9c2 d9c2 d9c2 * * 3c65 8ea2bce5,8ea2bce5v 68ef e6a3af 68ef 000068ef d9c2 d9c2 d9c2 d9c2 d9c2 d9c2 d9c2
+8603 d9c3 d9c3 d9c3 * * 3c66 8ea2bce6,8ea2bce6v 68c6 e6a386 68c6 000068c6 d9c3 d9c3 d9c3 d9c3 d9c3 d9c3 d9c3
+8604 d9c4 d9c4 d9c4 * * 3c67 8ea2bce7,8ea2bce7v 6914 e6a494 6914 00006914 d9c4 d9c4 d9c4 d9c4 d9c4 d9c4 d9c4
+8605 d9c5 d9c5 d9c5 * * 3c68 8ea2bce8,8ea2bce8v 68f8 e6a3b8 68f8 000068f8 d9c5 d9c5 d9c5 d9c5 d9c5 d9c5 d9c5
+8606 d9c6 d9c6 d9c6 * * 3c69 8ea2bce9,8ea2bce9v 68d0 e6a390 68d0 000068d0 d9c6 d9c6 d9c6 d9c6 d9c6 d9c6 d9c6
+8607 d9c7 d9c7 d9c7 * * 3c6a 8ea2bcea,8ea2bceav 68fd e6a3bd 68fd 000068fd d9c7 d9c7 d9c7 d9c7 d9c7 d9c7 d9c7
+8608 d9c8 d9c8 d9c8 * * 3c6b 8ea2bceb,8ea2bcebv 68fc e6a3bc 68fc 000068fc d9c8 d9c8 d9c8 d9c8 d9c8 d9c8 d9c8
+8609 d9c9 d9c9 d9c9 * * 3c6c 8ea2bcec,8ea2bcecv 68e8 e6a3a8 68e8 000068e8 d9c9 d9c9 d9c9 d9c9 d9c9 d9c9 d9c9
+8610 d9ca d9ca d9ca * * 3c6d 8ea2bced,8ea2bcedv 690b e6a48b 690b 0000690b d9ca d9ca d9ca d9ca d9ca d9ca d9ca
+8611 d9cb d9cb d9cb * * 3c6e 8ea2bcee,8ea2bceev 690a e6a48a 690a 0000690a d9cb d9cb d9cb d9cb d9cb d9cb d9cb
+8612 d9cc d9cc d9cc * * 3c6f 8ea2bcef,8ea2bcefv 6917 e6a497 6917 00006917 d9cc d9cc d9cc d9cc d9cc d9cc d9cc
+8613 d9cd d9cd d9cd * * 3c70 8ea2bcf0,8ea2bcf0v 68ce e6a38e 68ce 000068ce d9cd d9cd d9cd d9cd d9cd d9cd d9cd
+8614 d9ce d9ce d9ce * * 3c71 8ea2bcf1,8ea2bcf1v 68c8 e6a388 68c8 000068c8 d9ce d9ce d9ce d9ce d9ce d9ce d9ce
+8615 d9cf d9cf d9cf * * 3c72 8ea2bcf2,8ea2bcf2v 68dd e6a39d 68dd 000068dd d9cf d9cf d9cf d9cf d9cf d9cf d9cf
+8616 d9d0 d9d0 d9d0 * * 3c73 8ea2bcf3,8ea2bcf3v 68de e6a39e 68de 000068de d9d0 d9d0 d9d0 d9d0 d9d0 d9d0 d9d0
+8617 d9d1 d9d1 d9d1 * * 3c74 8ea2bcf4,8ea2bcf4v 68e6 e6a3a6 68e6 000068e6 d9d1 d9d1 d9d1 d9d1 d9d1 d9d1 d9d1
+8618 d9d2 d9d2 d9d2 * * 3c75 8ea2bcf5,8ea2bcf5v 68f4 e6a3b4 68f4 000068f4 d9d2 d9d2 d9d2 d9d2 d9d2 d9d2 d9d2
+8619 d9d3 d9d3 d9d3 * * 3c76 8ea2bcf6,8ea2bcf6v 68d1 e6a391 68d1 000068d1 d9d3 d9d3 d9d3 d9d3 d9d3 d9d3 d9d3
+8620 d9d4 d9d4 d9d4 * * 3c77 8ea2bcf7,8ea2bcf7v 6906 e6a486 6906 00006906 d9d4 d9d4 d9d4 d9d4 d9d4 d9d4 d9d4
+8621 d9d5 d9d5 d9d5 * * 3c78 8ea2bcf8,8ea2bcf8v 68d4 e6a394 68d4 000068d4 d9d5 d9d5 d9d5 d9d5 d9d5 d9d5 d9d5
+8622 d9d6 d9d6 d9d6 * * 3c79 8ea2bcf9,8ea2bcf9v 68e9 e6a3a9 68e9 000068e9 d9d6 d9d6 d9d6 d9d6 d9d6 d9d6 d9d6
+8623 d9d7 d9d7 d9d7 * * 3c7a 8ea2bcfa,8ea2bcfav 6915 e6a495 6915 00006915 d9d7 d9d7 d9d7 d9d7 d9d7 d9d7 d9d7
+8624 d9d8 d9d8 d9d8 * * 3c7b 8ea2bcfb,8ea2bcfbv 6925 e6a4a5 6925 00006925 d9d8 d9d8 d9d8 d9d8 d9d8 d9d8 d9d8
+8625 d9d9 d9d9 d9d9 * * 3c7c 8ea2bcfc,8ea2bcfcv 68c7 e6a387 68c7 000068c7 d9d9 d9d9 d9d9 d9d9 d9d9 d9d9 d9d9
+8626 d9da d9da d9da * * 3c7d 8ea2bcfd,8ea2bcfdv 6b39 e6acb9 6b39 00006b39 d9da d9da d9da d9da d9da d9da d9da
+8627 d9db d9db d9db * * 3c7e 8ea2bcfe,8ea2bcfev 6b3b e6acbb 6b3b 00006b3b d9db d9db d9db d9db d9db d9db d9db
+8628 d9dc d9dc d9dc * * 3d21 8ea2bda1,8ea2bda1v 6b3f e6acbf 6b3f 00006b3f d9dc d9dc d9dc d9dc d9dc d9dc d9dc
+8629 d9dd d9dd d9dd * * 3d22 8ea2bda2,8ea2bda2v 6b3c e6acbc 6b3c 00006b3c d9dd d9dd d9dd d9dd d9dd d9dd d9dd
+8630 d9de d9de d9de * * 3d23 8ea2bda3,8ea2bda3v 6b94 e6ae94 6b94 00006b94 d9de d9de d9de d9de d9de d9de d9de
+8631 d9df d9df d9df * * 3d24 8ea2bda4,8ea2bda4v 6b97 e6ae97 6b97 00006b97 d9df d9df d9df d9df d9df d9df d9df
+8632 d9e0 d9e0 d9e0 * * 3d25 8ea2bda5,8ea2bda5v 6b99 e6ae99 6b99 00006b99 d9e0 d9e0 d9e0 d9e0 d9e0 d9e0 d9e0
+8633 d9e1 d9e1 d9e1 * * 3d26 8ea2bda6,8ea2bda6v 6b95 e6ae95 6b95 00006b95 d9e1 d9e1 d9e1 d9e1 d9e1 d9e1 d9e1
+8634 d9e2 d9e2 d9e2 * * 3d27 8ea2bda7,8ea2bda7v 6bbd e6aebd 6bbd 00006bbd d9e2 d9e2 d9e2 d9e2 d9e2 d9e2 d9e2
+8635 d9e3 d9e3 d9e3 * * 3d28 8ea2bda8,8ea2bda8v 6bf0 e6afb0 6bf0 00006bf0 d9e3 d9e3 d9e3 d9e3 d9e3 d9e3 d9e3
+8636 d9e4 d9e4 d9e4 * * 3d29 8ea2bda9,8ea2bda9v 6bf2 e6afb2 6bf2 00006bf2 d9e4 d9e4 d9e4 d9e4 d9e4 d9e4 d9e4
+8637 d9e5 d9e5 d9e5 * * 3d2a 8ea2bdaa,8ea2bdaav 6bf3 e6afb3 6bf3 00006bf3 d9e5 d9e5 d9e5 d9e5 d9e5 d9e5 d9e5
+8638 d9e6 d9e6 d9e6 * * 3d2b 8ea2bdab,8ea2bdabv 6c30 e6b0b0 6c30 00006c30 d9e6 d9e6 d9e6 d9e6 d9e6 d9e6 d9e6
+8639 d9e7 d9e7 d9e7 * * 3d2c 8ea2bdac,8ea2bdacv 6dfc e6b7bc 6dfc 00006dfc d9e7 d9e7 d9e7 d9e7 d9e7 d9e7 d9e7
+8640 d9e8 d9e8 d9e8 * * 3d2d 8ea2bdad,8ea2bdadv 6e46 e6b986 6e46 00006e46 d9e8 d9e8 d9e8 d9e8 d9e8 d9e8 d9e8
+8641 d9e9 d9e9 d9e9 * * 3d2e 8ea2bdae,8ea2bdaev 6e47 e6b987 6e47 00006e47 d9e9 d9e9 d9e9 d9e9 d9e9 d9e9 d9e9
+8642 d9ea d9ea d9ea * * 3d2f 8ea2bdaf,8ea2bdafv 6e1f e6b89f 6e1f 00006e1f d9ea d9ea d9ea d9ea d9ea d9ea d9ea
+8643 d9eb d9eb d9eb * * 3d30 8ea2bdb0,8ea2bdb0v 6e49 e6b989 6e49 00006e49 d9eb d9eb d9eb d9eb d9eb d9eb d9eb
+8644 d9ec d9ec d9ec * * 3d31 8ea2bdb1,8ea2bdb1v 6e88 e6ba88 6e88 00006e88 d9ec d9ec d9ec d9ec d9ec d9ec d9ec
+8645 d9ed d9ed d9ed * * 3d32 8ea2bdb2,8ea2bdb2v 6e3c e6b8bc 6e3c 00006e3c d9ed d9ed d9ed d9ed d9ed d9ed d9ed
+8646 d9ee d9ee d9ee * * 3d33 8ea2bdb3,8ea2bdb3v 6e3d e6b8bd 6e3d 00006e3d d9ee d9ee d9ee d9ee d9ee d9ee d9ee
+8647 d9ef d9ef d9ef * * 3d34 8ea2bdb4,8ea2bdb4v 6e45 e6b985 6e45 00006e45 d9ef d9ef d9ef d9ef d9ef d9ef d9ef
+8648 d9f0 d9f0 d9f0 * * 3d35 8ea2bdb5,8ea2bdb5v 6e62 e6b9a2 6e62 00006e62 d9f0 d9f0 d9f0 d9f0 d9f0 d9f0 d9f0
+8649 d9f1 d9f1 d9f1 * * 3d36 8ea2bdb6,8ea2bdb6v 6e2b e6b8ab 6e2b 00006e2b d9f1 d9f1 d9f1 d9f1 d9f1 d9f1 d9f1
+8650 d9f2 d9f2 d9f2 * * 3d37 8ea2bdb7,8ea2bdb7v 6e3f e6b8bf 6e3f 00006e3f d9f2 d9f2 d9f2 d9f2 d9f2 d9f2 d9f2
+8651 d9f3 d9f3 d9f3 * * 3d38 8ea2bdb8,8ea2bdb8v 6e41 e6b981 6e41 00006e41 d9f3 d9f3 d9f3 d9f3 d9f3 d9f3 d9f3
+8652 d9f4 d9f4 d9f4 * * 3d39 8ea2bdb9,8ea2bdb9v 6e5d e6b99d 6e5d 00006e5d d9f4 d9f4 d9f4 d9f4 d9f4 d9f4 d9f4
+8653 d9f5 d9f5 d9f5 * * 3d3a 8ea2bdba,8ea2bdbav 6e73 e6b9b3 6e73 00006e73 d9f5 d9f5 d9f5 d9f5 d9f5 d9f5 d9f5
+8654 d9f6 d9f6 d9f6 * * 3d3b 8ea2bdbb,8ea2bdbbv 6e1c e6b89c 6e1c 00006e1c d9f6 d9f6 d9f6 d9f6 d9f6 d9f6 d9f6
+8655 d9f7 d9f7 d9f7 * * 3d3c 8ea2bdbc,8ea2bdbcv 6e33 e6b8b3 6e33 00006e33 d9f7 d9f7 d9f7 d9f7 d9f7 d9f7 d9f7
+8656 d9f8 d9f8 d9f8 * * 3d3d 8ea2bdbd,8ea2bdbdv 6e4b e6b98b 6e4b 00006e4b d9f8 d9f8 d9f8 d9f8 d9f8 d9f8 d9f8
+8657 d9f9 d9f9 d9f9 * * 3d3e 8ea2bdbe,8ea2bdbev 6e40 e6b980 6e40 00006e40 d9f9 d9f9 d9f9 d9f9 d9f9 d9f9 d9f9
+8658 d9fa d9fa d9fa * * 3d3f 8ea2bdbf,8ea2bdbfv 6e51 e6b991 6e51 00006e51 d9fa d9fa d9fa d9fa d9fa d9fa d9fa
+8659 d9fb d9fb d9fb * * 3d40 8ea2bdc0,8ea2bdc0v 6e3b e6b8bb 6e3b 00006e3b d9fb d9fb d9fb d9fb d9fb d9fb d9fb
+8660 d9fc d9fc d9fc * * 3d41 8ea2bdc1,8ea2bdc1v 6e03 e6b883 6e03 00006e03 d9fc d9fc d9fc d9fc d9fc d9fc d9fc
+8661 d9fd d9fd d9fd * * 3d42 8ea2bdc2,8ea2bdc2v 6e2e e6b8ae 6e2e 00006e2e d9fd d9fd d9fd d9fd d9fd d9fd d9fd
+8662 d9fe d9fe d9fe * * 3d43 8ea2bdc3,8ea2bdc3v 6e5e e6b99e 6e5e 00006e5e d9fe d9fe d9fe d9fe d9fe d9fe d9fe
+8663 da40 da40 da40 * * 3d44 8ea2bdc4,8ea2bdc4v 6e68 e6b9a8 6e68 00006e68 da40 da40 da40 da40 da40 da40 da40
+8664 da41 da41 da41 * * 3d45 8ea2bdc5,8ea2bdc5v 6e5c e6b99c 6e5c 00006e5c da41 da41 da41 da41 da41 da41 da41
+8665 da42 da42 da42 * * 3d46 8ea2bdc6,8ea2bdc6v 6e61 e6b9a1 6e61 00006e61 da42 da42 da42 da42 da42 da42 da42
+8666 da43 da43 da43 * * 3d47 8ea2bdc7,8ea2bdc7v 6e31 e6b8b1 6e31 00006e31 da43 da43 da43 da43 da43 da43 da43
+8667 da44 da44 da44 * * 3d48 8ea2bdc8,8ea2bdc8v 6e28 e6b8a8 6e28 00006e28 da44 da44 da44 da44 da44 da44 da44
+8668 da45 da45 da45 * * 3d49 8ea2bdc9,8ea2bdc9v 6e60 e6b9a0 6e60 00006e60 da45 da45 da45 da45 da45 da45 da45
+8669 da46 da46 da46 * * 3d4a 8ea2bdca,8ea2bdcav 6e71 e6b9b1 6e71 00006e71 da46 da46 da46 da46 da46 da46 da46
+8670 da47 da47 da47 * * 3d4b 8ea2bdcb,8ea2bdcbv 6e6b e6b9ab 6e6b 00006e6b da47 da47 da47 da47 da47 da47 da47
+8671 da48 da48 da48 * * 3d4c 8ea2bdcc,8ea2bdccv 6e39 e6b8b9 6e39 00006e39 da48 da48 da48 da48 da48 da48 da48
+8672 da49 da49 da49 * * 3d4d 8ea2bdcd,8ea2bdcdv 6e22 e6b8a2 6e22 00006e22 da49 da49 da49 da49 da49 da49 da49
+8673 da4a da4a da4a * * 3d4e 8ea2bdce,8ea2bdcev 6e30 e6b8b0 6e30 00006e30 da4a da4a da4a da4a da4a da4a da4a
+8674 da4b da4b da4b * * 3d4f 8ea2bdcf,8ea2bdcfv 6e53 e6b993 6e53 00006e53 da4b da4b da4b da4b da4b da4b da4b
+8675 da4c da4c da4c * * 3d50 8ea2bdd0,8ea2bdd0v 6e65 e6b9a5 6e65 00006e65 da4c da4c da4c da4c da4c da4c da4c
+8676 da4d da4d da4d * * 3d51 8ea2bdd1,8ea2bdd1v 6e27 e6b8a7 6e27 00006e27 da4d da4d da4d da4d da4d da4d da4d
+8677 da4e da4e da4e * * 3d52 8ea2bdd2,8ea2bdd2v 6e78 e6b9b8 6e78 00006e78 da4e da4e da4e da4e da4e da4e da4e
+8678 da4f da4f da4f * * 3d53 8ea2bdd3,8ea2bdd3v 6e64 e6b9a4 6e64 00006e64 da4f da4f da4f da4f da4f da4f da4f
+8679 da50 da50 da50 * * 3d54 8ea2bdd4,8ea2bdd4v 6e77 e6b9b7 6e77 00006e77 da50 da50 da50 da50 da50 da50 da50
+8680 da51 da51 da51 * * 3d55 8ea2bdd5,8ea2bdd5v 6e55 e6b995 6e55 00006e55 da51 da51 da51 da51 da51 da51 da51
+8681 da52 da52 da52 * * 3d56 8ea2bdd6,8ea2bdd6v 6e79 e6b9b9 6e79 00006e79 da52 da52 da52 da52 da52 da52 da52
+8682 da53 da53 da53 * * 3d57 8ea2bdd7,8ea2bdd7v 6e52 e6b992 6e52 00006e52 da53 da53 da53 da53 da53 da53 da53
+8683 da54 da54 da54 * * 3d58 8ea2bdd8,8ea2bdd8v 6e66 e6b9a6 6e66 00006e66 da54 da54 da54 da54 da54 da54 da54
+8684 da55 da55 da55 * * 3d59 8ea2bdd9,8ea2bdd9v 6e35 e6b8b5 6e35 00006e35 da55 da55 da55 da55 da55 da55 da55
+8685 da56 da56 da56 * * 3d5a 8ea2bdda,8ea2bddav 6e36 e6b8b6 6e36 00006e36 da56 da56 da56 da56 da56 da56 da56
+8686 da57 da57 da57 * * 3d5b 8ea2bddb,8ea2bddbv 6e5a e6b99a 6e5a 00006e5a da57 da57 da57 da57 da57 da57 da57
+8687 da58 da58 da58 * * 3d5c 8ea2bddc,8ea2bddcv 7120 e784a0 7120 00007120 da58 da58 da58 da58 da58 da58 da58
+8688 da59 da59 da59 * * 3d5d 8ea2bddd,8ea2bdddv 711e e7849e 711e 0000711e da59 da59 da59 da59 da59 da59 da59
+8689 da5a da5a da5a * * 3d5e 8ea2bdde,8ea2bddev 712f e784af 712f 0000712f da5a da5a da5a da5a da5a da5a da5a
+8690 da5b da5b da5b * * 3d5f 8ea2bddf,8ea2bddfv 70fb e783bb 70fb 000070fb da5b da5b da5b da5b da5b da5b da5b
+8691 da5c da5c da5c * * 3d60 8ea2bde0,8ea2bde0v 712e e784ae 712e 0000712e da5c da5c da5c da5c da5c da5c da5c
+8692 da5d da5d da5d * * 3d61 8ea2bde1,8ea2bde1v 7131 e784b1 7131 00007131 da5d da5d da5d da5d da5d da5d da5d
+8693 da5e da5e da5e * * 3d62 8ea2bde2,8ea2bde2v 7123 e784a3 7123 00007123 da5e da5e da5e da5e da5e da5e da5e
+8694 da5f da5f da5f * * 3d63 8ea2bde3,8ea2bde3v 7125 e784a5 7125 00007125 da5f da5f da5f da5f da5f da5f da5f
+8695 da60 da60 da60 * * 3d64 8ea2bde4,8ea2bde4v 7122 e784a2 7122 00007122 da60 da60 da60 da60 da60 da60 da60
+8696 da61 da61 da61 * * 3d65 8ea2bde5,8ea2bde5v 7132 e784b2 7132 00007132 da61 da61 da61 da61 da61 da61 da61
+8697 da62 da62 da62 * * 3d66 8ea2bde6,8ea2bde6v 711f e7849f 711f 0000711f da62 da62 da62 da62 da62 da62 da62
+8698 da63 da63 da63 * * 3d67 8ea2bde7,8ea2bde7v 7128 e784a8 7128 00007128 da63 da63 da63 da63 da63 da63 da63
+8699 da64 da64 da64 * * 3d68 8ea2bde8,8ea2bde8v 713a e784ba 713a 0000713a da64 da64 da64 da64 da64 da64 da64
+8700 da65 da65 da65 * * 3d69 8ea2bde9,8ea2bde9v 711b e7849b 711b 0000711b da65 da65 da65 da65 da65 da65 da65
+8701 da66 da66 da66 * * 3d6a 8ea2bdea,8ea2bdeav 724b e7898b 724b 0000724b da66 da66 da66 da66 da66 da66 da66
+8702 da67 da67 da67 * * 3d6b 8ea2bdeb,8ea2bdebv 725a e7899a 725a 0000725a da67 da67 da67 da67 da67 da67 da67
+8703 da68 da68 da68 * * 3d6c 8ea2bdec,8ea2bdecv 7288 e78a88 7288 00007288 da68 da68 da68 da68 da68 da68 da68
+8704 da69 da69 da69 * * 3d6d 8ea2bded,8ea2bdedv 7289 e78a89 7289 00007289 da69 da69 da69 da69 da69 da69 da69
+8705 da6a da6a da6a * * 3d6e 8ea2bdee,8ea2bdeev 7286 e78a86 7286 00007286 da6a da6a da6a da6a da6a da6a da6a
+8706 da6b da6b da6b * * 3d6f 8ea2bdef,8ea2bdefv 7285 e78a85 7285 00007285 da6b da6b da6b da6b da6b da6b da6b
+8707 da6c da6c da6c * * 3d70 8ea2bdf0,8ea2bdf0v 728b e78a8b 728b 0000728b da6c da6c da6c da6c da6c da6c da6c
+8708 da6d da6d da6d * * 3d71 8ea2bdf1,8ea2bdf1v 7312 e78c92 7312 00007312 da6d da6d da6d da6d da6d da6d da6d
+8709 da6e da6e da6e * * 3d72 8ea2bdf2,8ea2bdf2v 730b e78c8b 730b 0000730b da6e da6e da6e da6e da6e da6e da6e
+8710 da6f da6f da6f * * 3d73 8ea2bdf3,8ea2bdf3v 7330 e78cb0 7330 00007330 da6f da6f da6f da6f da6f da6f da6f
+8711 da70 da70 da70 * * 3d74 8ea2bdf4,8ea2bdf4v 7322 e78ca2 7322 00007322 da70 da70 da70 da70 da70 da70 da70
+8712 da71 da71 da71 * * 3d75 8ea2bdf5,8ea2bdf5v 7331 e78cb1 7331 00007331 da71 da71 da71 da71 da71 da71 da71
+8713 da72 da72 da72 * * 3d76 8ea2bdf6,8ea2bdf6v 7333 e78cb3 7333 00007333 da72 da72 da72 da72 da72 da72 da72
+8714 da73 da73 da73 * * 3d77 8ea2bdf7,8ea2bdf7v 7327 e78ca7 7327 00007327 da73 da73 da73 da73 da73 da73 da73
+8715 da74 da74 da74 * * 3d78 8ea2bdf8,8ea2bdf8v 7332 e78cb2 7332 00007332 da74 da74 da74 da74 da74 da74 da74
+8716 da75 da75 da75 * * 3d79 8ea2bdf9,8ea2bdf9v 732d e78cad 732d 0000732d da75 da75 da75 da75 da75 da75 da75
+8717 da76 da76 da76 * * 3d7a 8ea2bdfa,8ea2bdfav 7326 e78ca6 7326 00007326 da76 da76 da76 da76 da76 da76 da76
+8718 da77 da77 da77 * * 3d7b 8ea2bdfb,8ea2bdfbv 7323 e78ca3 7323 00007323 da77 da77 da77 da77 da77 da77 da77
+8719 da78 da78 da78 * * 3d7c 8ea2bdfc,8ea2bdfcv 7335 e78cb5 7335 00007335 da78 da78 da78 da78 da78 da78 da78
+8720 da79 da79 da79 * * 3d7d 8ea2bdfd,8ea2bdfdv 730c e78c8c 730c 0000730c da79 da79 da79 da79 da79 da79 da79
+8721 da7a da7a da7a * * 3d7e 8ea2bdfe,8ea2bdfev 742e e790ae 742e 0000742e da7a da7a da7a da7a da7a da7a da7a
+8722 da7b da7b da7b * * 3e21 8ea2bea1,8ea2bea1v 742c e790ac 742c 0000742c da7b da7b da7b da7b da7b da7b da7b
+8723 da7c da7c da7c * * 3e22 8ea2bea2,8ea2bea2v 7430 e790b0 7430 00007430 da7c da7c da7c da7c da7c da7c da7c
+8724 da7d da7d da7d * * 3e23 8ea2bea3,8ea2bea3v 742b e790ab 742b 0000742b da7d da7d da7d da7d da7d da7d da7d
+8725 da7e da7e da7e * * 3e24 8ea2bea4,8ea2bea4v 7416 e79096 7416 00007416 da7e da7e da7e da7e da7e da7e da7e
+8726 daa1 daa1 daa1 * * 3e25 8ea2bea5,8ea2bea5v 741a e7909a 741a 0000741a daa1 daa1 daa1 daa1 daa1 daa1 daa1
+8727 daa2 daa2 daa2 * * 3e26 8ea2bea6,8ea2bea6v 7421 e790a1 7421 00007421 daa2 daa2 daa2 daa2 daa2 daa2 daa2
+8728 daa3 daa3 daa3 * * 3e27 8ea2bea7,8ea2bea7v 742d e790ad 742d 0000742d daa3 daa3 daa3 daa3 daa3 daa3 daa3
+8729 daa4 daa4 daa4 * * 3e28 8ea2bea8,8ea2bea8v 7431 e790b1 7431 00007431 daa4 daa4 daa4 daa4 daa4 daa4 daa4
+8730 daa5 daa5 daa5 * * 3e29 8ea2bea9,8ea2bea9v 7424 e790a4 7424 00007424 daa5 daa5 daa5 daa5 daa5 daa5 daa5
+8731 daa6 daa6 daa6 * * 3e2a 8ea2beaa,8ea2beaav 7423 e790a3 7423 00007423 daa6 daa6 daa6 daa6 daa6 daa6 daa6
+8732 daa7 daa7 daa7 * * 3e2b 8ea2beab,8ea2beabv 741d e7909d 741d 0000741d daa7 daa7 daa7 daa7 daa7 daa7 daa7
+8733 daa8 daa8 daa8 * * 3e2c 8ea2beac,8ea2beacv 7429 e790a9 7429 00007429 daa8 daa8 daa8 daa8 daa8 daa8 daa8
+8734 daa9 daa9 daa9 * * 3e2d 8ea2bead,8ea2beadv 7420 e790a0 7420 00007420 daa9 daa9 daa9 daa9 daa9 daa9 daa9
+8735 daaa daaa daaa * * 3e2e 8ea2beae,8ea2beaev 7432 e790b2 7432 00007432 daaa daaa daaa daaa daaa daaa daaa
+8736 daab daab daab * * 3e2f 8ea2beaf,8ea2beafv 74fb e793bb 74fb 000074fb daab daab daab daab daab daab daab
+8737 daac daac daac * * 3e30 8ea2beb0,8ea2beb0v 752f e794af 752f 0000752f daac daac daac daac daac daac daac
+8738 daad daad daad * * 3e31 8ea2beb1,8ea2beb1v 756f e795af 756f 0000756f daad daad daad daad daad daad daad
+8739 daae daae daae * * 3e32 8ea2beb2,8ea2beb2v 756c e795ac 756c 0000756c daae daae daae daae daae daae daae
+8740 daaf daaf daaf * * 3e33 8ea2beb3,8ea2beb3v 75e7 e797a7 75e7 000075e7 daaf daaf daaf daaf daaf daaf daaf
+8741 dab0 dab0 dab0 * * 3e34 8ea2beb4,8ea2beb4v 75da e7979a 75da 000075da dab0 dab0 dab0 dab0 dab0 dab0 dab0
+8742 dab1 dab1 dab1 * * 3e35 8ea2beb5,8ea2beb5v 75e1 e797a1 75e1 000075e1 dab1 dab1 dab1 dab1 dab1 dab1 dab1
+8743 dab2 dab2 dab2 * * 3e36 8ea2beb6,8ea2beb6v 75e6 e797a6 75e6 000075e6 dab2 dab2 dab2 dab2 dab2 dab2 dab2
+8744 dab3 dab3 dab3 * * 3e37 8ea2beb7,8ea2beb7v 75dd e7979d 75dd 000075dd dab3 dab3 dab3 dab3 dab3 dab3 dab3
+8745 dab4 dab4 dab4 * * 3e38 8ea2beb8,8ea2beb8v 75df e7979f 75df 000075df dab4 dab4 dab4 dab4 dab4 dab4 dab4
+8746 dab5 dab5 dab5 * * 3e39 8ea2beb9,8ea2beb9v 75e4 e797a4 75e4 000075e4 dab5 dab5 dab5 dab5 dab5 dab5 dab5
+8747 dab6 dab6 dab6 * * 3e3a 8ea2beba,8ea2bebav 75d7 e79797 75d7 000075d7 dab6 dab6 dab6 dab6 dab6 dab6 dab6
+8748 dab7 dab7 dab7 * * 3e3b 8ea2bebb,8ea2bebbv 7695 e79a95 7695 00007695 dab7 dab7 dab7 dab7 dab7 dab7 dab7
+8749 dab8 dab8 dab8 * * 3e3c 8ea2bebc,8ea2bebcv 7692 e79a92 7692 00007692 dab8 dab8 dab8 dab8 dab8 dab8 dab8
+8750 dab9 dab9 dab9 * * 3e3d 8ea2bebd,8ea2bebdv 76da e79b9a 76da 000076da dab9 dab9 dab9 dab9 dab9 dab9 dab9
+8751 daba daba daba * * 3e3e 8ea2bebe,8ea2bebev 7746 e79d86 7746 00007746 daba daba daba daba daba daba daba
+8752 dabb dabb dabb * * 3e3f 8ea2bebf,8ea2bebfv 7747 e79d87 7747 00007747 dabb dabb dabb dabb dabb dabb dabb
+8753 dabc dabc dabc * * 3e40 8ea2bec0,8ea2bec0v 7744 e79d84 7744 00007744 dabc dabc dabc dabc dabc dabc dabc
+8754 dabd dabd dabd * * 3e41 8ea2bec1,8ea2bec1v 774d e79d8d 774d 0000774d dabd dabd dabd dabd dabd dabd dabd
+8755 dabe dabe dabe * * 3e42 8ea2bec2,8ea2bec2v 7745 e79d85 7745 00007745 dabe dabe dabe dabe dabe dabe dabe
+8756 dabf dabf dabf * * 3e43 8ea2bec3,8ea2bec3v 774a e79d8a 774a 0000774a dabf dabf dabf dabf dabf dabf dabf
+8757 dac0 dac0 dac0 * * 3e44 8ea2bec4,8ea2bec4v 774e e79d8e 774e 0000774e dac0 dac0 dac0 dac0 dac0 dac0 dac0
+8758 dac1 dac1 dac1 * * 3e45 8ea2bec5,8ea2bec5v 774b e79d8b 774b 0000774b dac1 dac1 dac1 dac1 dac1 dac1 dac1
+8759 dac2 dac2 dac2 * * 3e46 8ea2bec6,8ea2bec6v 774c e79d8c 774c 0000774c dac2 dac2 dac2 dac2 dac2 dac2 dac2
+8760 dac3 dac3 dac3 * * 3e47 8ea2bec7,8ea2bec7v 77de e79f9e 77de 000077de dac3 dac3 dac3 dac3 dac3 dac3 dac3
+8761 dac4 dac4 dac4 * * 3e48 8ea2bec8,8ea2bec8v 77ec e79fac 77ec 000077ec dac4 dac4 dac4 dac4 dac4 dac4 dac4
+8762 dac5 dac5 dac5 * * 3e49 8ea2bec9,8ea2bec9v 7860 e7a1a0 7860 00007860 dac5 dac5 dac5 dac5 dac5 dac5 dac5
+8763 dac6 dac6 dac6 * * 3e4a 8ea2beca,8ea2becav 7864 e7a1a4 7864 00007864 dac6 dac6 dac6 dac6 dac6 dac6 dac6
+8764 dac7 dac7 dac7 * * 3e4b 8ea2becb,8ea2becbv 7865 e7a1a5 7865 00007865 dac7 dac7 dac7 dac7 dac7 dac7 dac7
+8765 dac8 dac8 dac8 * * 3e4c 8ea2becc,8ea2beccv 785c e7a19c 785c 0000785c dac8 dac8 dac8 dac8 dac8 dac8 dac8
+8766 dac9 dac9 dac9 * * 3e4d 8ea2becd,8ea2becdv 786d e7a1ad 786d 0000786d dac9 dac9 dac9 dac9 dac9 dac9 dac9
+8767 daca daca daca * * 3e4e 8ea2bece,8ea2becev 7871 e7a1b1 7871 00007871 daca daca daca daca daca daca daca
+8768 dacb dacb dacb * * 3e4f 8ea2becf,8ea2becfv 786a e7a1aa 786a 0000786a dacb dacb dacb dacb dacb dacb dacb
+8769 dacc dacc dacc * * 3e50 8ea2bed0,8ea2bed0v 786e e7a1ae 786e 0000786e dacc dacc dacc dacc dacc dacc dacc
+8770 dacd dacd dacd * * 3e51 8ea2bed1,8ea2bed1v 7870 e7a1b0 7870 00007870 dacd dacd dacd dacd dacd dacd dacd
+8771 dace dace dace * * 3e52 8ea2bed2,8ea2bed2v 7869 e7a1a9 7869 00007869 dace dace dace dace dace dace dace
+8772 dacf dacf dacf * * 3e53 8ea2bed3,8ea2bed3v 7868 e7a1a8 7868 00007868 dacf dacf dacf dacf dacf dacf dacf
+8773 dad0 dad0 dad0 * * 3e54 8ea2bed4,8ea2bed4v 785e e7a19e 785e 0000785e dad0 dad0 dad0 dad0 dad0 dad0 dad0
+8774 dad1 dad1 dad1 * * 3e55 8ea2bed5,8ea2bed5v 7862 e7a1a2 7862 00007862 dad1 dad1 dad1 dad1 dad1 dad1 dad1
+8775 dad2 dad2 dad2 * * 3e56 8ea2bed6,8ea2bed6v 7974 e7a5b4 7974 00007974 dad2 dad2 dad2 dad2 dad2 dad2 dad2
+8776 dad3 dad3 dad3 * * 3e57 8ea2bed7,8ea2bed7v 7973 e7a5b3 7973 00007973 dad3 dad3 dad3 dad3 dad3 dad3 dad3
+8777 dad4 dad4 dad4 * * 3e58 8ea2bed8,8ea2bed8v 7972 e7a5b2 7972 00007972 dad4 dad4 dad4 dad4 dad4 dad4 dad4
+8778 dad5 dad5 dad5 * * 3e59 8ea2bed9,8ea2bed9v 7970 e7a5b0 7970 00007970 dad5 dad5 dad5 dad5 dad5 dad5 dad5
+8779 dad6 dad6 dad6 * * 3e5a 8ea2beda,8ea2bedav 7a02 e7a882 7a02 00007a02 dad6 dad6 dad6 dad6 dad6 dad6 dad6
+8780 dad7 dad7 dad7 * * 3e5b 8ea2bedb,8ea2bedbv 7a0a e7a88a 7a0a 00007a0a dad7 dad7 dad7 dad7 dad7 dad7 dad7
+8781 dad8 dad8 dad8 * * 3e5c 8ea2bedc,8ea2bedcv 7a03 e7a883 7a03 00007a03 dad8 dad8 dad8 dad8 dad8 dad8 dad8
+8782 dad9 dad9 dad9 * * 3e5d 8ea2bedd,8ea2beddv 7a0c e7a88c 7a0c 00007a0c dad9 dad9 dad9 dad9 dad9 dad9 dad9
+8783 dada dada dada * * 3e5e 8ea2bede,8ea2bedev 7a04 e7a884 7a04 00007a04 dada dada dada dada dada dada dada
+8784 dadb dadb dadb * * 3e5f 8ea2bedf,8ea2bedfv 7a99 e7aa99 7a99 00007a99 dadb dadb dadb dadb dadb dadb dadb
+8785 dadc dadc dadc * * 3e60 8ea2bee0,8ea2bee0v 7ae6 e7aba6 7ae6 00007ae6 dadc dadc dadc dadc dadc dadc dadc
+8786 dadd dadd dadd * * 3e61 8ea2bee1,8ea2bee1v 7ae4 e7aba4 7ae4 00007ae4 dadd dadd dadd dadd dadd dadd dadd
+8787 dade dade dade * * 3e62 8ea2bee2,8ea2bee2v 7b4a e7ad8a 7b4a 00007b4a dade dade dade dade dade dade dade
+8788 d6cc d6cc d6cc * * 3e63 8ea2bee3,8ea2bee3v 7b47 e7ad87 7b47 00007b47 d6cc d6cc d6cc d6cc d6cc d6cc d6cc
+8789 dae0 dae0 dae0 * * 3e64 8ea2bee4,8ea2bee4v 7b44 e7ad84 7b44 00007b44 dae0 dae0 dae0 dae0 dae0 dae0 dae0
+8790 dae1 dae1 dae1 * * 3e65 8ea2bee5,8ea2bee5v 7b48 e7ad88 7b48 00007b48 dae1 dae1 dae1 dae1 dae1 dae1 dae1
+8791 dae2 dae2 dae2 * * 3e66 8ea2bee6,8ea2bee6v 7b4c e7ad8c 7b4c 00007b4c dae2 dae2 dae2 dae2 dae2 dae2 dae2
+8792 dae3 dae3 dae3 * * 3e67 8ea2bee7,8ea2bee7v 7b4e e7ad8e 7b4e 00007b4e dae3 dae3 dae3 dae3 dae3 dae3 dae3
+8793 dae4 dae4 dae4 * * 3e68 8ea2bee8,8ea2bee8v 7b40 e7ad80 7b40 00007b40 dae4 dae4 dae4 dae4 dae4 dae4 dae4
+8794 dae5 dae5 dae5 * * 3e69 8ea2bee9,8ea2bee9v 7b58 e7ad98 7b58 00007b58 dae5 dae5 dae5 dae5 dae5 dae5 dae5
+8795 dae6 dae6 dae6 * * 3e6a 8ea2beea,8ea2beeav 7b45 e7ad85 7b45 00007b45 dae6 dae6 dae6 dae6 dae6 dae6 dae6
+8796 dae7 dae7 dae7 * * 3e6b 8ea2beeb,8ea2beebv 7ca2 e7b2a2 7ca2 00007ca2 dae7 dae7 dae7 dae7 dae7 dae7 dae7
+8797 dae8 dae8 dae8 * * 3e6c 8ea2beec,8ea2beecv 7c9e e7b29e 7c9e 00007c9e dae8 dae8 dae8 dae8 dae8 dae8 dae8
+8798 dae9 dae9 dae9 * * 3e6d 8ea2beed,8ea2beedv 7ca8 e7b2a8 7ca8 00007ca8 dae9 dae9 dae9 dae9 dae9 dae9 dae9
+8799 daea daea daea * * 3e6e 8ea2beee,8ea2beeev 7ca1 e7b2a1 7ca1 00007ca1 daea daea daea daea daea daea daea
+8800 daeb daeb daeb * * 3e6f 8ea2beef,8ea2beefv 7d58 e7b598 7d58 00007d58 daeb daeb daeb daeb daeb daeb daeb
+8801 daec daec daec * * 3e70 8ea2bef0,8ea2bef0v 7d6f e7b5af 7d6f 00007d6f daec daec daec daec daec daec daec
+8802 daed daed daed * * 3e71 8ea2bef1,8ea2bef1v 7d63 e7b5a3 7d63 00007d63 daed daed daed daed daed daed daed
+8803 daee daee daee * * 3e72 8ea2bef2,8ea2bef2v 7d53 e7b593 7d53 00007d53 daee daee daee daee daee daee daee
+8804 daef daef daef * * 3e73 8ea2bef3,8ea2bef3v 7d56 e7b596 7d56 00007d56 daef daef daef daef daef daef daef
+8805 daf0 daf0 daf0 * * 3e74 8ea2bef4,8ea2bef4v 7d67 e7b5a7 7d67 00007d67 daf0 daf0 daf0 daf0 daf0 daf0 daf0
+8806 daf1 daf1 daf1 * * 3e75 8ea2bef5,8ea2bef5v 7d6a e7b5aa 7d6a 00007d6a daf1 daf1 daf1 daf1 daf1 daf1 daf1
+8807 daf2 daf2 daf2 * * 3e76 8ea2bef6,8ea2bef6v 7d4f e7b58f 7d4f 00007d4f daf2 daf2 daf2 daf2 daf2 daf2 daf2
+8808 daf3 daf3 daf3 * * 3e77 8ea2bef7,8ea2bef7v 7d6d e7b5ad 7d6d 00007d6d daf3 daf3 daf3 daf3 daf3 daf3 daf3
+8809 daf4 daf4 daf4 * * 3e78 8ea2bef8,8ea2bef8v 7d5c e7b59c 7d5c 00007d5c daf4 daf4 daf4 daf4 daf4 daf4 daf4
+8810 daf5 daf5 daf5 * * 3e79 8ea2bef9,8ea2bef9v 7d6b e7b5ab 7d6b 00007d6b daf5 daf5 daf5 daf5 daf5 daf5 daf5
+8811 daf6 daf6 daf6 * * 3e7a 8ea2befa,8ea2befav 7d52 e7b592 7d52 00007d52 daf6 daf6 daf6 daf6 daf6 daf6 daf6
+8812 daf7 daf7 daf7 * * 3e7b 8ea2befb,8ea2befbv 7d54 e7b594 7d54 00007d54 daf7 daf7 daf7 daf7 daf7 daf7 daf7
+8813 daf8 daf8 daf8 * * 3e7c 8ea2befc,8ea2befcv 7d69 e7b5a9 7d69 00007d69 daf8 daf8 daf8 daf8 daf8 daf8 daf8
+8814 daf9 daf9 daf9 * * 3e7d 8ea2befd,8ea2befdv 7d51 e7b591 7d51 00007d51 daf9 daf9 daf9 daf9 daf9 daf9 daf9
+8815 dafa dafa dafa * * 3e7e 8ea2befe,8ea2befev 7d5f e7b59f 7d5f 00007d5f dafa dafa dafa dafa dafa dafa dafa
+8816 dafb dafb dafb * * 3f21 8ea2bfa1,8ea2bfa1v 7d4e e7b58e 7d4e 00007d4e dafb dafb dafb dafb dafb dafb dafb
+8817 dafc dafc dafc * * 3f22 8ea2bfa2,8ea2bfa2v 7f3e e7bcbe 7f3e 00007f3e dafc dafc dafc dafc dafc dafc dafc
+8818 dafd dafd dafd * * 3f23 8ea2bfa3,8ea2bfa3v 7f3f e7bcbf 7f3f 00007f3f dafd dafd dafd dafd dafd dafd dafd
+8819 dafe dafe dafe * * 3f24 8ea2bfa4,8ea2bfa4v 7f65 e7bda5 7f65 00007f65 dafe dafe dafe dafe dafe dafe dafe
+8820 db40 db40 db40 * * 3f25 8ea2bfa5,8ea2bfa5v 7f66 e7bda6 7f66 00007f66 db40 db40 db40 db40 db40 db40 db40
+8821 db41 db41 db41 * * 3f26 8ea2bfa6,8ea2bfa6v 7fa2 e7bea2 7fa2 00007fa2 db41 db41 db41 db41 db41 db41 db41
+8822 db42 db42 db42 * * 3f27 8ea2bfa7,8ea2bfa7v 7fa0 e7bea0 7fa0 00007fa0 db42 db42 db42 db42 db42 db42 db42
+8823 db43 db43 db43 * * 3f28 8ea2bfa8,8ea2bfa8v 7fa1 e7bea1 7fa1 00007fa1 db43 db43 db43 db43 db43 db43 db43
+8824 db44 db44 db44 * * 3f29 8ea2bfa9,8ea2bfa9v 7fd7 e7bf97 7fd7 00007fd7 db44 db44 db44 db44 db44 db44 db44
+8825 db45 db45 db45 * * 3f2a 8ea2bfaa,8ea2bfaav 8051 e88191 8051 00008051 db45 db45 db45 db45 db45 db45 db45
+8826 db46 db46 db46 * * 3f2b 8ea2bfab,8ea2bfabv 804f e8818f 804f 0000804f db46 db46 db46 db46 db46 db46 db46
+8827 db47 db47 db47 * * 3f2c 8ea2bfac,8ea2bfacv 8050 e88190 8050 00008050 db47 db47 db47 db47 db47 db47 db47
+8828 db48 db48 db48 * * 3f2d 8ea2bfad,8ea2bfadv 80fe e883be 80fe 000080fe db48 db48 db48 db48 db48 db48 db48
+8829 db49 db49 db49 * * 3f2e 8ea2bfae,8ea2bfaev 80d4 e88394 80d4 000080d4 db49 db49 db49 db49 db49 db49 db49
+8830 db4a db4a db4a * * 3f2f 8ea2bfaf,8ea2bfafv 8143 e88583 8143 00008143 db4a db4a db4a db4a db4a db4a db4a
+8831 db4b db4b db4b * * 3f30 8ea2bfb0,8ea2bfb0v 814a e8858a 814a 0000814a db4b db4b db4b db4b db4b db4b db4b
+8832 db4c db4c db4c * * 3f31 8ea2bfb1,8ea2bfb1v 8152 e88592 8152 00008152 db4c db4c db4c db4c db4c db4c db4c
+8833 db4d db4d db4d * * 3f32 8ea2bfb2,8ea2bfb2v 814f e8858f 814f 0000814f db4d db4d db4d db4d db4d db4d db4d
+8834 db4e db4e db4e * * 3f33 8ea2bfb3,8ea2bfb3v 8147 e88587 8147 00008147 db4e db4e db4e db4e db4e db4e db4e
+8835 db4f db4f db4f * * 3f34 8ea2bfb4,8ea2bfb4v 813d e884bd 813d 0000813d db4f db4f db4f db4f db4f db4f db4f
+8836 db50 db50 db50 * * 3f35 8ea2bfb5,8ea2bfb5v 814d e8858d 814d 0000814d db50 db50 db50 db50 db50 db50 db50
+8837 db51 db51 db51 * * 3f36 8ea2bfb6,8ea2bfb6v 813a e884ba 813a 0000813a db51 db51 db51 db51 db51 db51 db51
+8838 db52 db52 db52 * * 3f37 8ea2bfb7,8ea2bfb7v 81e6 e887a6 81e6 000081e6 db52 db52 db52 db52 db52 db52 db52
+8839 db53 db53 db53 * * 3f38 8ea2bfb8,8ea2bfb8v 81ee e887ae 81ee 000081ee db53 db53 db53 db53 db53 db53 db53
+8840 db54 db54 db54 * * 3f39 8ea2bfb9,8ea2bfb9v 81f7 e887b7 81f7 000081f7 db54 db54 db54 db54 db54 db54 db54
+8841 db55 db55 db55 * * 3f3a 8ea2bfba,8ea2bfbav 81f8 e887b8 81f8 000081f8 db55 db55 db55 db55 db55 db55 db55
+8842 db56 db56 db56 * * 3f3b 8ea2bfbb,8ea2bfbbv 81f9 e887b9 81f9 000081f9 db56 db56 db56 db56 db56 db56 db56
+8843 db57 db57 db57 * * 3f3c 8ea2bfbc,8ea2bfbcv 8204 e88884 8204 00008204 db57 db57 db57 db57 db57 db57 db57
+8844 db58 db58 db58 * * 3f3d 8ea2bfbd,8ea2bfbdv 823c e888bc 823c 0000823c db58 db58 db58 db58 db58 db58 db58
+8845 db59 db59 db59 * * 3f3e 8ea2bfbe,8ea2bfbev 823d e888bd 823d 0000823d db59 db59 db59 db59 db59 db59 db59
+8846 db5a db5a db5a * * 3f3f 8ea2bfbf,8ea2bfbfv 823f e888bf 823f 0000823f db5a db5a db5a db5a db5a db5a db5a
+8847 db5b db5b db5b * * 3f40 8ea2bfc0,8ea2bfc0v 8275 e889b5 8275 00008275 db5b db5b db5b db5b db5b db5b db5b
+8848 db5c db5c db5c * * 3f41 8ea2bfc1,8ea2bfc1v 833b e88cbb 833b 0000833b db5c db5c db5c db5c db5c db5c db5c
+8849 db5d db5d db5d * * 3f42 8ea2bfc2,8ea2bfc2v 83cf e88f8f,eeaf9e 83cf,ebde 000083cf,0000ebde 9c77,db5d db5d db5d db5d db5d db5d 9c77,db5d
+8850 db5e db5e db5e * * 3f43 8ea2bfc3,8ea2bfc3v 83f9 e88fb9 83f9 000083f9 db5e db5e db5e db5e db5e db5e db5e
+8851 db5f db5f db5f * * 3f44 8ea2bfc4,8ea2bfc4v 8423 e890a3 8423 00008423 db5f db5f db5f db5f db5f db5f db5f
+8852 db60 db60 db60 * * 3f45 8ea2bfc5,8ea2bfc5v 83c0 e88f80 83c0 000083c0 db60 db60 db60 db60 db60 db60 db60
+8853 db61 db61 db61 * * 3f46 8ea2bfc6,8ea2bfc6v 83e8 e88fa8 83e8 000083e8 db61 db61 db61 db61 db61 db61 db61
+8854 db62 db62 db62 * * 3f47 8ea2bfc7,8ea2bfc7v 8412 e89092 8412 00008412 db62 db62 db62 db62 db62 db62 db62
+8855 db63 db63 db63 * * 3f48 8ea2bfc8,8ea2bfc8v 83e7 e88fa7 83e7 000083e7 db63 db63 db63 db63 db63 db63 db63
+8856 db64 db64 db64 * * 3f49 8ea2bfc9,8ea2bfc9v 83e4 e88fa4 83e4 000083e4 db64 db64 db64 db64 db64 db64 db64
+8857 db65 db65 db65 * * 3f4a 8ea2bfca,8ea2bfcav 83fc e88fbc 83fc 000083fc db65 db65 db65 db65 db65 db65 db65
+8858 db66 db66 db66 * * 3f4b 8ea2bfcb,8ea2bfcbv 83f6 e88fb6 83f6 000083f6 db66 db66 db66 db66 db66 db66 db66
+8859 db67 db67 db67 * * 3f4c 8ea2bfcc,8ea2bfccv 8410 e89090 8410 00008410 db67 db67 db67 db67 db67 db67 db67
+8860 db68 db68 db68 * * 3f4d 8ea2bfcd,8ea2bfcdv 83c6 e88f86 83c6 000083c6 db68 db68 db68 db68 db68 db68 db68
+8861 db69 db69 db69 * * 3f4e 8ea2bfce,8ea2bfcev 83c8 e88f88 83c8 000083c8 db69 db69 db69 db69 db69 db69 db69
+8862 db6a db6a db6a * * 3f4f 8ea2bfcf,8ea2bfcfv 83eb e88fab 83eb 000083eb db6a db6a db6a db6a db6a db6a db6a
+8863 db6b db6b db6b * * 3f50 8ea2bfd0,8ea2bfd0v 83e3 e88fa3 83e3 000083e3 db6b db6b db6b db6b db6b db6b db6b
+8864 db6c db6c db6c * * 3f51 8ea2bfd1,8ea2bfd1v 83bf e88ebf 83bf 000083bf db6c db6c db6c db6c db6c db6c db6c
+8865 db6d db6d db6d * * 3f52 8ea2bfd2,8ea2bfd2v 8401 e89081 8401 00008401 db6d db6d db6d db6d db6d db6d db6d
+8866 db6e db6e db6e * * 3f53 8ea2bfd3,8ea2bfd3v 83dd e88f9d 83dd 000083dd db6e db6e db6e db6e db6e db6e db6e
+8867 db6f db6f db6f * * 3f54 8ea2bfd4,8ea2bfd4v 83e5 e88fa5 83e5 000083e5 db6f db6f db6f db6f db6f db6f db6f
+8868 db70 db70 db70 * * 3f55 8ea2bfd5,8ea2bfd5v 83d8 e88f98 83d8 000083d8 db70 db70 db70 db70 db70 db70 db70
+8869 db71 db71 db71 * * 3f56 8ea2bfd6,8ea2bfd6v 83ff e88fbf 83ff 000083ff db71 db71 db71 db71 db71 db71 db71
+8870 db72 db72 db72 * * 3f57 8ea2bfd7,8ea2bfd7v 83e1 e88fa1 83e1 000083e1 db72 db72 db72 db72 db72 db72 db72
+8871 db73 db73 db73 * * 3f58 8ea2bfd8,8ea2bfd8v 83cb e88f8b 83cb 000083cb db73 db73 db73 db73 db73 db73 db73
+8872 db74 db74 db74 * * 3f59 8ea2bfd9,8ea2bfd9v 83ce e88f8e 83ce 000083ce db74 db74 db74 db74 db74 db74 db74
+8873 db75 db75 db75 * * 3f5a 8ea2bfda,8ea2bfdav 83d6 e88f96 83d6 000083d6 db75 db75 db75 db75 db75 db75 db75
+8874 db76 db76 db76 * * 3f5b 8ea2bfdb,8ea2bfdbv 83f5 e88fb5 83f5 000083f5 db76 db76 db76 db76 db76 db76 db76
+8875 db77 db77 db77 * * 3f5c 8ea2bfdc,8ea2bfdcv 83c9 e88f89 83c9 000083c9 db77 db77 db77 db77 db77 db77 db77
+8876 db78 db78 db78 * * 3f5d 8ea2bfdd,8ea2bfddv 8409 e89089 8409 00008409 db78 db78 db78 db78 db78 db78 db78
+8877 db79 db79 db79 * * 3f5e 8ea2bfde,8ea2bfdev 840f e8908f,ee8f9c 840f,e3dc 0000840f,0000e3dc 8f6e,db79 db79 db79 db79 db79 db79 8f6e,db79
+8878 db7a db7a db7a * * 3f5f 8ea2bfdf,8ea2bfdfv 83de e88f9e 83de 000083de db7a db7a db7a db7a db7a db7a db7a
+8879 db7b db7b db7b * * 3f60 8ea2bfe0,8ea2bfe0v 8411 e89091 8411 00008411 db7b db7b db7b db7b db7b db7b db7b
+8880 db7c db7c db7c * * 3f61 8ea2bfe1,8ea2bfe1v 8406 e89086 8406 00008406 db7c db7c db7c db7c db7c db7c db7c
+8881 db7d db7d db7d * * 3f62 8ea2bfe2,8ea2bfe2v 83c2 e88f82 83c2 000083c2 db7d db7d db7d db7d db7d db7d db7d
+8882 db7e db7e db7e * * 3f63 8ea2bfe3,8ea2bfe3v 83f3 e88fb3 83f3 000083f3 db7e db7e db7e db7e db7e db7e db7e
+8883 dba1 dba1 dba1 * * 3f64 8ea2bfe4,8ea2bfe4v 83d5 e88f95 83d5 000083d5 dba1 dba1 dba1 dba1 dba1 dba1 dba1
+8884 dba2 dba2 dba2 * * 3f65 8ea2bfe5,8ea2bfe5v 83fa e88fba 83fa 000083fa dba2 dba2 dba2 dba2 dba2 dba2 dba2
+8885 dba3 dba3 dba3 * * 3f66 8ea2bfe6,8ea2bfe6v 83c7 e88f87 83c7 000083c7 dba3 dba3 dba3 dba3 dba3 dba3 dba3
+8886 dba4 dba4 dba4 * * 3f67 8ea2bfe7,8ea2bfe7v 83d1 e88f91 83d1 000083d1 dba4 dba4 dba4 dba4 dba4 dba4 dba4
+8887 dba5 dba5 dba5 * * 3f68 8ea2bfe8,8ea2bfe8v 83ea e88faa 83ea 000083ea dba5 dba5 dba5 dba5 dba5 dba5 dba5
+8888 dba6 dba6 dba6 * * 3f69 8ea2bfe9,8ea2bfe9v 8413 e89093 8413 00008413 dba6 dba6 dba6 dba6 dba6 dba6 dba6
+8889 d77a d77a d77a * * 3f6a 8ea2bfea,8ea2bfeav 839a e88e9a 839a 0000839a d77a d77a d77a d77a d77a d77a d77a
+8890 dba7 dba7 dba7 * * 3f6b 8ea2bfeb,8ea2bfebv 83c3 e88f83 83c3 000083c3 dba7 dba7 dba7 dba7 dba7 dba7 dba7
+8891 dba8 dba8 dba8 * * 3f6c 8ea2bfec,8ea2bfecv 83ec e88fac 83ec 000083ec dba8 dba8 dba8 dba8 dba8 dba8 dba8
+8892 dba9 dba9 dba9 * * 3f6d 8ea2bfed,8ea2bfedv 83ee e88fae 83ee 000083ee dba9 dba9 dba9 dba9 dba9 dba9 dba9
+8893 dbaa dbaa dbaa * * 3f6e 8ea2bfee,8ea2bfeev 83c4 e88f84 83c4 000083c4 dbaa dbaa dbaa dbaa dbaa dbaa dbaa
+8894 dbab dbab dbab * * 3f6f 8ea2bfef,8ea2bfefv 83fb e88fbb 83fb 000083fb dbab dbab dbab dbab dbab dbab dbab
+8895 dbac dbac dbac * * 3f70 8ea2bff0,8ea2bff0v 83d7 e88f97 83d7 000083d7 dbac dbac dbac dbac dbac dbac dbac
+8896 dbad dbad dbad * * 3f71 8ea2bff1,8ea2bff1v 83e2 e88fa2 83e2 000083e2 dbad dbad dbad dbad dbad dbad dbad
+8897 dbae dbae dbae * * 3f72 8ea2bff2,8ea2bff2v 841b e8909b 841b 0000841b dbae dbae dbae dbae dbae dbae dbae
+8898 dbaf dbaf dbaf * * 3f73 8ea2bff3,8ea2bff3v 83db e88f9b 83db 000083db dbaf dbaf dbaf dbaf dbaf dbaf dbaf
+8899 dbb0 dbb0 dbb0 * * 3f74 8ea2bff4,8ea2bff4v 83fe e88fbe 83fe 000083fe dbb0 dbb0 dbb0 dbb0 dbb0 dbb0 dbb0
+8900 dbb1 dbb1 dbb1 * * 3f75 8ea2bff5,8ea2bff5v 86d8 e89b98 86d8 000086d8 dbb1 dbb1 dbb1 dbb1 dbb1 dbb1 dbb1
+8901 dbb2 dbb2 dbb2 * * 3f76 8ea2bff6,8ea2bff6v 86e2 e89ba2 86e2 000086e2 dbb2 dbb2 dbb2 dbb2 dbb2 dbb2 dbb2
+8902 dbb3 dbb3 dbb3 * * 3f77 8ea2bff7,8ea2bff7v 86e6 e89ba6 86e6 000086e6 dbb3 dbb3 dbb3 dbb3 dbb3 dbb3 dbb3
+8903 dbb4 dbb4 dbb4 * * 3f78 8ea2bff8,8ea2bff8v 86d3 e89b93 86d3 000086d3 dbb4 dbb4 dbb4 dbb4 dbb4 dbb4 dbb4
+8904 dbb5 dbb5 dbb5 * * 3f79 8ea2bff9,8ea2bff9v 86e3 e89ba3 86e3 000086e3 dbb5 dbb5 dbb5 dbb5 dbb5 dbb5 dbb5
+8905 dbb6 dbb6 dbb6 * * 3f7a 8ea2bffa,8ea2bffav 86da e89b9a 86da 000086da dbb6 dbb6 dbb6 dbb6 dbb6 dbb6 dbb6
+8906 dbb7 dbb7 dbb7 * * 3f7b 8ea2bffb,8ea2bffbv 86ea e89baa 86ea 000086ea dbb7 dbb7 dbb7 dbb7 dbb7 dbb7 dbb7
+8907 dbb8 dbb8 dbb8 * * 3f7c 8ea2bffc,8ea2bffcv 86dd e89b9d 86dd 000086dd dbb8 dbb8 dbb8 dbb8 dbb8 dbb8 dbb8
+8908 dbb9 dbb9 dbb9 * * 3f7d 8ea2bffd,8ea2bffdv 86eb e89bab 86eb 000086eb dbb9 dbb9 dbb9 dbb9 dbb9 dbb9 dbb9
+8909 dbba dbba dbba * * 3f7e 8ea2bffe,8ea2bffev 86dc e89b9c 86dc 000086dc dbba dbba dbba dbba dbba dbba dbba
+8910 dbbb dbbb dbbb * * 4021 8ea2c0a1,8ea2c0a1v 86ec e89bac 86ec 000086ec dbbb dbbb dbbb dbbb dbbb dbbb dbbb
+8911 dbbc dbbc dbbc * * 4022 8ea2c0a2,8ea2c0a2v 86e9 e89ba9 86e9 000086e9 dbbc dbbc dbbc dbbc dbbc dbbc dbbc
+8912 dbbd dbbd dbbd * * 4023 8ea2c0a3,8ea2c0a3v 86d7 e89b97 86d7 000086d7 dbbd dbbd dbbd dbbd dbbd dbbd dbbd
+8913 dbbe dbbe dbbe * * 4024 8ea2c0a4,8ea2c0a4v 86e8 e89ba8 86e8 000086e8 dbbe dbbe dbbe dbbe dbbe dbbe dbbe
+8914 dbbf dbbf dbbf * * 4025 8ea2c0a5,8ea2c0a5v 86d1 e89b91 86d1 000086d1 dbbf dbbf dbbf dbbf dbbf dbbf dbbf
+8915 dbc0 dbc0 dbc0 * * 4026 8ea2c0a6,8ea2c0a6v 8848 e8a188 8848 00008848 dbc0 dbc0 dbc0 dbc0 dbc0 dbc0 dbc0
+8916 dbc1 dbc1 dbc1 * * 4027 8ea2c0a7,8ea2c0a7v 8856 e8a196 8856 00008856 dbc1 dbc1 dbc1 dbc1 dbc1 dbc1 dbc1
+8917 dbc2 dbc2 dbc2 * * 4028 8ea2c0a8,8ea2c0a8v 8855 e8a195 8855 00008855 dbc2 dbc2 dbc2 dbc2 dbc2 dbc2 dbc2
+8918 dbc3 dbc3 dbc3 * * 4029 8ea2c0a9,8ea2c0a9v 88ba e8a2ba 88ba 000088ba dbc3 dbc3 dbc3 dbc3 dbc3 dbc3 dbc3
+8919 dbc4 dbc4 dbc4 * * 402a 8ea2c0aa,8ea2c0aav 88d7 e8a397 88d7 000088d7 dbc4 dbc4 dbc4 dbc4 dbc4 dbc4 dbc4
+8920 dbc5 dbc5 dbc5 * * 402b 8ea2c0ab,8ea2c0abv 88b9 e8a2b9 88b9 000088b9 dbc5 dbc5 dbc5 dbc5 dbc5 dbc5 dbc5
+8921 dbc6 dbc6 dbc6 * * 402c 8ea2c0ac,8ea2c0acv 88b8 e8a2b8 88b8 000088b8 dbc6 dbc6 dbc6 dbc6 dbc6 dbc6 dbc6
+8922 dbc7 dbc7 dbc7 * * 402d 8ea2c0ad,8ea2c0adv 88c0 e8a380 88c0 000088c0 dbc7 dbc7 dbc7 dbc7 dbc7 dbc7 dbc7
+8923 dbc8 dbc8 dbc8 * * 402e 8ea2c0ae,8ea2c0aev 88be e8a2be 88be 000088be dbc8 dbc8 dbc8 dbc8 dbc8 dbc8 dbc8
+8924 dbc9 dbc9 dbc9 * * 402f 8ea2c0af,8ea2c0afv 88b6 e8a2b6 88b6 000088b6 dbc9 dbc9 dbc9 dbc9 dbc9 dbc9 dbc9
+8925 dbca dbca dbca * * 4030 8ea2c0b0,8ea2c0b0v 88bc e8a2bc 88bc 000088bc dbca dbca dbca dbca dbca dbca dbca
+8926 dbcb dbcb dbcb * * 4031 8ea2c0b1,8ea2c0b1v 88b7 e8a2b7 88b7 000088b7 dbcb dbcb dbcb dbcb dbcb dbcb dbcb
+8927 dbcc dbcc dbcc * * 4032 8ea2c0b2,8ea2c0b2v 88bd e8a2bd 88bd 000088bd dbcc dbcc dbcc dbcc dbcc dbcc dbcc
+8928 dbcd dbcd dbcd * * 4033 8ea2c0b3,8ea2c0b3v 88b2 e8a2b2 88b2 000088b2 dbcd dbcd dbcd dbcd dbcd dbcd dbcd
+8929 dbce dbce dbce * * 4034 8ea2c0b4,8ea2c0b4v 8901 e8a481 8901 00008901 dbce dbce dbce dbce dbce dbce dbce
+8930 dbcf dbcf dbcf * * 4035 8ea2c0b5,8ea2c0b5v 88c9 e8a389 88c9 000088c9 dbcf dbcf dbcf dbcf dbcf dbcf dbcf
+8931 dbd0 dbd0 dbd0 * * 4036 8ea2c0b6,8ea2c0b6v 8995 e8a695 8995 00008995 dbd0 dbd0 dbd0 dbd0 dbd0 dbd0 dbd0
+8932 dbd1 dbd1 dbd1 * * 4037 8ea2c0b7,8ea2c0b7v 8998 e8a698 8998 00008998 dbd1 dbd1 dbd1 dbd1 dbd1 dbd1 dbd1
+8933 dbd2 dbd2 dbd2 * * 4038 8ea2c0b8,8ea2c0b8v 8997 e8a697 8997 00008997 dbd2 dbd2 dbd2 dbd2 dbd2 dbd2 dbd2
+8934 dbd3 dbd3 dbd3 * * 4039 8ea2c0b9,8ea2c0b9v 89dd e8a79d 89dd 000089dd dbd3 dbd3 dbd3 dbd3 dbd3 dbd3 dbd3
+8935 dbd4 dbd4 dbd4 * * 403a 8ea2c0ba,8ea2c0bav 89da e8a79a 89da 000089da dbd4 dbd4 dbd4 dbd4 dbd4 dbd4 dbd4
+8936 dbd5 dbd5 dbd5 * * 403b 8ea2c0bb,8ea2c0bbv 89db e8a79b 89db 000089db dbd5 dbd5 dbd5 dbd5 dbd5 dbd5 dbd5
+8937 dbd6 dbd6 dbd6 * * 403c 8ea2c0bc,8ea2c0bcv 8a4e e8a98e 8a4e 00008a4e dbd6 dbd6 dbd6 dbd6 dbd6 dbd6 dbd6
+8938 dbd7 dbd7 dbd7 * * 403d 8ea2c0bd,8ea2c0bdv 8a4d e8a98d 8a4d 00008a4d dbd7 dbd7 dbd7 dbd7 dbd7 dbd7 dbd7
+8939 dbd8 dbd8 dbd8 * * 403e 8ea2c0be,8ea2c0bev 8a39 e8a8b9 8a39 00008a39 dbd8 dbd8 dbd8 dbd8 dbd8 dbd8 dbd8
+8940 dbd9 dbd9 dbd9 * * 403f 8ea2c0bf,8ea2c0bfv 8a59 e8a999 8a59 00008a59 dbd9 dbd9 dbd9 dbd9 dbd9 dbd9 dbd9
+8941 dbda dbda dbda * * 4040 8ea2c0c0,8ea2c0c0v 8a40 e8a980 8a40 00008a40 dbda dbda dbda dbda dbda dbda dbda
+8942 dbdb dbdb dbdb * * 4041 8ea2c0c1,8ea2c0c1v 8a57 e8a997 8a57 00008a57 dbdb dbdb dbdb dbdb dbdb dbdb dbdb
+8943 dbdc dbdc dbdc * * 4042 8ea2c0c2,8ea2c0c2v 8a58 e8a998 8a58 00008a58 dbdc dbdc dbdc dbdc dbdc dbdc dbdc
+8944 dbdd dbdd dbdd * * 4043 8ea2c0c3,8ea2c0c3v 8a44 e8a984 8a44 00008a44 dbdd dbdd dbdd dbdd dbdd dbdd dbdd
+8945 dbde dbde dbde * * 4044 8ea2c0c4,8ea2c0c4v 8a45 e8a985 8a45 00008a45 dbde dbde dbde dbde dbde dbde dbde
+8946 dbdf dbdf dbdf * * 4045 8ea2c0c5,8ea2c0c5v 8a52 e8a992 8a52 00008a52 dbdf dbdf dbdf dbdf dbdf dbdf dbdf
+8947 dbe0 dbe0 dbe0 * * 4046 8ea2c0c6,8ea2c0c6v 8a48 e8a988 8a48 00008a48 dbe0 dbe0 dbe0 dbe0 dbe0 dbe0 dbe0
+8948 dbe1 dbe1 dbe1 * * 4047 8ea2c0c7,8ea2c0c7v 8a51 e8a991 8a51 00008a51 dbe1 dbe1 dbe1 dbe1 dbe1 dbe1 dbe1
+8949 dbe2 dbe2 dbe2 * * 4048 8ea2c0c8,8ea2c0c8v 8a4a e8a98a 8a4a 00008a4a dbe2 dbe2 dbe2 dbe2 dbe2 dbe2 dbe2
+8950 dbe3 dbe3 dbe3 * * 4049 8ea2c0c9,8ea2c0c9v 8a4c e8a98c 8a4c 00008a4c dbe3 dbe3 dbe3 dbe3 dbe3 dbe3 dbe3
+8951 dbe4 dbe4 dbe4 * * 404a 8ea2c0ca,8ea2c0cav 8a4f e8a98f 8a4f 00008a4f dbe4 dbe4 dbe4 dbe4 dbe4 dbe4 dbe4
+8952 dbe5 dbe5 dbe5 * * 404b 8ea2c0cb,8ea2c0cbv 8c5f e8b19f 8c5f 00008c5f dbe5 dbe5 dbe5 dbe5 dbe5 dbe5 dbe5
+8953 dbe6 dbe6 dbe6 * * 404c 8ea2c0cc,8ea2c0ccv 8c81 e8b281 8c81 00008c81 dbe6 dbe6 dbe6 dbe6 dbe6 dbe6 dbe6
+8954 dbe7 dbe7 dbe7 * * 404d 8ea2c0cd,8ea2c0cdv 8c80 e8b280 8c80 00008c80 dbe7 dbe7 dbe7 dbe7 dbe7 dbe7 dbe7
+8955 dbe8 dbe8 dbe8 * * 404e 8ea2c0ce,8ea2c0cev 8cba e8b2ba 8cba 00008cba dbe8 dbe8 dbe8 dbe8 dbe8 dbe8 dbe8
+8956 dbe9 dbe9 dbe9 * * 404f 8ea2c0cf,8ea2c0cfv 8cbe e8b2be 8cbe 00008cbe dbe9 dbe9 dbe9 dbe9 dbe9 dbe9 dbe9
+8957 dbea dbea dbea * * 4050 8ea2c0d0,8ea2c0d0v 8cb0 e8b2b0 8cb0 00008cb0 dbea dbea dbea dbea dbea dbea dbea
+8958 dbeb dbeb dbeb * * 4051 8ea2c0d1,8ea2c0d1v 8cb9 e8b2b9 8cb9 00008cb9 dbeb dbeb dbeb dbeb dbeb dbeb dbeb
+8959 dbec dbec dbec * * 4052 8ea2c0d2,8ea2c0d2v 8cb5 e8b2b5 8cb5 00008cb5 dbec dbec dbec dbec dbec dbec dbec
+8960 dbed dbed dbed * * 4053 8ea2c0d3,8ea2c0d3v 8d84 e8b684 8d84 00008d84 dbed dbed dbed dbed dbed dbed dbed
+8961 dbee dbee dbee * * 4054 8ea2c0d4,8ea2c0d4v 8d80 e8b680 8d80 00008d80 dbee dbee dbee dbee dbee dbee dbee
+8962 dbef dbef dbef * * 4055 8ea2c0d5,8ea2c0d5v 8d89 e8b689 8d89 00008d89 dbef dbef dbef dbef dbef dbef dbef
+8963 dbf0 dbf0 dbf0 * * 4056 8ea2c0d6,8ea2c0d6v 8dd8 e8b798 8dd8 00008dd8 dbf0 dbf0 dbf0 dbf0 dbf0 dbf0 dbf0
+8964 dbf1 dbf1 dbf1 * * 4057 8ea2c0d7,8ea2c0d7v 8dd3 e8b793 8dd3 00008dd3 dbf1 dbf1 dbf1 dbf1 dbf1 dbf1 dbf1
+8965 dbf2 dbf2 dbf2 * * 4058 8ea2c0d8,8ea2c0d8v 8dcd e8b78d 8dcd 00008dcd dbf2 dbf2 dbf2 dbf2 dbf2 dbf2 dbf2
+8966 dbf3 dbf3 dbf3 * * 4059 8ea2c0d9,8ea2c0d9v 8dc7 e8b787 8dc7 00008dc7 dbf3 dbf3 dbf3 dbf3 dbf3 dbf3 dbf3
+8967 dbf4 dbf4 dbf4 * * 405a 8ea2c0da,8ea2c0dav 8dd6 e8b796 8dd6 00008dd6 dbf4 dbf4 dbf4 dbf4 dbf4 dbf4 dbf4
+8968 dbf5 dbf5 dbf5 * * 405b 8ea2c0db,8ea2c0dbv 8ddc e8b79c 8ddc 00008ddc dbf5 dbf5 dbf5 dbf5 dbf5 dbf5 dbf5
+8969 dbf6 dbf6 dbf6 * * 405c 8ea2c0dc,8ea2c0dcv 8dcf e8b78f 8dcf 00008dcf dbf6 dbf6 dbf6 dbf6 dbf6 dbf6 dbf6
+8970 dbf7 dbf7 dbf7 * * 405d 8ea2c0dd,8ea2c0ddv 8dd5 e8b795 8dd5 00008dd5 dbf7 dbf7 dbf7 dbf7 dbf7 dbf7 dbf7
+8971 dbf8 dbf8 dbf8 * * 405e 8ea2c0de,8ea2c0dev 8dd9 e8b799 8dd9 00008dd9 dbf8 dbf8 dbf8 dbf8 dbf8 dbf8 dbf8
+8972 dbf9 dbf9 dbf9 * * 405f 8ea2c0df,8ea2c0dfv 8dc8 e8b788 8dc8 00008dc8 dbf9 dbf9 dbf9 dbf9 dbf9 dbf9 dbf9
+8973 dbfa dbfa dbfa * * 4060 8ea2c0e0,8ea2c0e0v 8dd7 e8b797 8dd7 00008dd7 dbfa dbfa dbfa dbfa dbfa dbfa dbfa
+8974 dbfb dbfb dbfb * * 4061 8ea2c0e1,8ea2c0e1v 8dc5 e8b785 8dc5 00008dc5 dbfb dbfb dbfb dbfb dbfb dbfb dbfb
+8975 dbfc dbfc dbfc * * 4062 8ea2c0e2,8ea2c0e2v 8eef e8bbaf 8eef 00008eef dbfc dbfc dbfc dbfc dbfc dbfc dbfc
+8976 dbfd dbfd dbfd * * 4063 8ea2c0e3,8ea2c0e3v 8ef7 e8bbb7 8ef7 00008ef7 dbfd dbfd dbfd dbfd dbfd dbfd dbfd
+8977 dbfe dbfe dbfe * * 4064 8ea2c0e4,8ea2c0e4v 8efa e8bbba 8efa 00008efa dbfe dbfe dbfe dbfe dbfe dbfe dbfe
+8978 dc40 dc40 dc40 * * 4065 8ea2c0e5,8ea2c0e5v 8ef9 e8bbb9 8ef9 00008ef9 dc40 dc40 dc40 dc40 dc40 dc40 dc40
+8979 dc41 dc41 dc41 * * 4066 8ea2c0e6,8ea2c0e6v 8ee6 e8bba6 8ee6 00008ee6 dc41 dc41 dc41 dc41 dc41 dc41 dc41
+8980 dc42 dc42 dc42 * * 4067 8ea2c0e7,8ea2c0e7v 8eee e8bbae 8eee 00008eee dc42 dc42 dc42 dc42 dc42 dc42 dc42
+8981 dc43 dc43 dc43 * * 4068 8ea2c0e8,8ea2c0e8v 8ee5 e8bba5 8ee5 00008ee5 dc43 dc43 dc43 dc43 dc43 dc43 dc43
+8982 dc44 dc44 dc44 * * 4069 8ea2c0e9,8ea2c0e9v 8ef5 e8bbb5 8ef5 00008ef5 dc44 dc44 dc44 dc44 dc44 dc44 dc44
+8983 dc45 dc45 dc45 * * 406a 8ea2c0ea,8ea2c0eav 8ee7 e8bba7 8ee7 00008ee7 dc45 dc45 dc45 dc45 dc45 dc45 dc45
+8984 dc46 dc46 dc46 * * 406b 8ea2c0eb,8ea2c0ebv 8ee8 e8bba8 8ee8 00008ee8 dc46 dc46 dc46 dc46 dc46 dc46 dc46
+8985 dc47 dc47 dc47 * * 406c 8ea2c0ec,8ea2c0ecv 8ef6 e8bbb6 8ef6 00008ef6 dc47 dc47 dc47 dc47 dc47 dc47 dc47
+8986 dc48 dc48 dc48 * * 406d 8ea2c0ed,8ea2c0edv 8eeb e8bbab 8eeb 00008eeb dc48 dc48 dc48 dc48 dc48 dc48 dc48
+8987 dc49 dc49 dc49 * * 406e 8ea2c0ee,8ea2c0eev 8ef1 e8bbb1 8ef1 00008ef1 dc49 dc49 dc49 dc49 dc49 dc49 dc49
+8988 dc4a dc4a dc4a * * 406f 8ea2c0ef,8ea2c0efv 8eec e8bbac 8eec 00008eec dc4a dc4a dc4a dc4a dc4a dc4a dc4a
+8989 dc4b dc4b dc4b * * 4070 8ea2c0f0,8ea2c0f0v 8ef4 e8bbb4 8ef4 00008ef4 dc4b dc4b dc4b dc4b dc4b dc4b dc4b
+8990 dc4c dc4c dc4c * * 4071 8ea2c0f1,8ea2c0f1v 8ee9 e8bba9 8ee9 00008ee9 dc4c dc4c dc4c dc4c dc4c dc4c dc4c
+8991 dc4d dc4d dc4d * * 4072 8ea2c0f2,8ea2c0f2v 902d e980ad 902d 0000902d dc4d dc4d dc4d dc4d dc4d dc4d dc4d
+8992 dc4e dc4e dc4e * * 4073 8ea2c0f3,8ea2c0f3v 9034 e980b4 9034 00009034 dc4e dc4e dc4e dc4e dc4e dc4e dc4e
+8993 dc4f dc4f dc4f * * 4074 8ea2c0f4,8ea2c0f4v 902f e980af 902f 0000902f dc4f dc4f dc4f dc4f dc4f dc4f dc4f
+8994 dc50 dc50 dc50 * * 4075 8ea2c0f5,8ea2c0f5v 9106 e98486 9106 00009106 dc50 dc50 dc50 dc50 dc50 dc50 dc50
+8995 dc51 dc51 dc51 * * 4076 8ea2c0f6,8ea2c0f6v 912c e984ac 912c 0000912c dc51 dc51 dc51 dc51 dc51 dc51 dc51
+8996 dc52 dc52 dc52 * * 4077 8ea2c0f7,8ea2c0f7v 9104 e98484,eeaf8f 9104,ebcf 00009104,0000ebcf 9c68,dc52 dc52 dc52 dc52 dc52 dc52 9c68,dc52
+8997 dc53 dc53 dc53 * * 4078 8ea2c0f8,8ea2c0f8v 90ff e983bf 90ff 000090ff dc53 dc53 dc53 dc53 dc53 dc53 dc53
+8998 dc54 dc54 dc54 * * 4079 8ea2c0f9,8ea2c0f9v 90fc e983bc 90fc 000090fc dc54 dc54 dc54 dc54 dc54 dc54 dc54
+8999 dc55 dc55 dc55 * * 407a 8ea2c0fa,8ea2c0fav 9108 e98488 9108 00009108 dc55 dc55 dc55 dc55 dc55 dc55 dc55
+9000 dc56 dc56 dc56 * * 407b 8ea2c0fb,8ea2c0fbv 90f9 e983b9 90f9 000090f9 dc56 dc56 dc56 dc56 dc56 dc56 dc56
+9001 dc57 dc57 dc57 * * 407c 8ea2c0fc,8ea2c0fcv 90fb e983bb 90fb 000090fb dc57 dc57 dc57 dc57 dc57 dc57 dc57
+9002 dc58 dc58 dc58 * * 407d 8ea2c0fd,8ea2c0fdv 9101 e98481 9101 00009101 dc58 dc58 dc58 dc58 dc58 dc58 dc58
+9003 dc59 dc59 dc59 * * 407e 8ea2c0fe,8ea2c0fev 9100 e98480 9100 00009100 dc59 dc59 dc59 dc59 dc59 dc59 dc59
+9004 dc5a dc5a dc5a * * 4121 8ea2c1a1,8ea2c1a1v 9107 e98487 9107 00009107 dc5a dc5a dc5a dc5a dc5a dc5a dc5a
+9005 dc5b dc5b dc5b * * 4122 8ea2c1a2,8ea2c1a2v 9105 e98485 9105 00009105 dc5b dc5b dc5b dc5b dc5b dc5b dc5b
+9006 dc5c dc5c dc5c * * 4123 8ea2c1a3,8ea2c1a3v 9103 e98483 9103 00009103 dc5c dc5c dc5c dc5c dc5c dc5c dc5c
+9007 dc5d dc5d dc5d * * 4124 8ea2c1a4,8ea2c1a4v 9161 e985a1 9161 00009161 dc5d dc5d dc5d dc5d dc5d dc5d dc5d
+9008 dc5e dc5e dc5e * * 4125 8ea2c1a5,8ea2c1a5v 9164 e985a4 9164 00009164 dc5e dc5e dc5e dc5e dc5e dc5e dc5e
+9009 dc5f dc5f dc5f * * 4126 8ea2c1a6,8ea2c1a6v 915f e9859f 915f 0000915f dc5f dc5f dc5f dc5f dc5f dc5f dc5f
+9010 dc60 dc60 dc60 * * 4127 8ea2c1a7,8ea2c1a7v 9162 e985a2 9162 00009162 dc60 dc60 dc60 dc60 dc60 dc60 dc60
+9011 dc61 dc61 dc61 * * 4128 8ea2c1a8,8ea2c1a8v 9160 e985a0 9160 00009160 dc61 dc61 dc61 dc61 dc61 dc61 dc61
+9012 dc62 dc62 dc62 * * 4129 8ea2c1a9,8ea2c1a9v 9201 e98881 9201 00009201 dc62 dc62 dc62 dc62 dc62 dc62 dc62
+9013 dc63 dc63 dc63 * * 412a 8ea2c1aa,8ea2c1aav 920a e9888a 920a 0000920a dc63 dc63 dc63 dc63 dc63 dc63 dc63
+9014 dc64 dc64 dc64 * * 412b 8ea2c1ab,8ea2c1abv 9225 e988a5 9225 00009225 dc64 dc64 dc64 dc64 dc64 dc64 dc64
+9015 dc65 dc65 dc65 * * 412c 8ea2c1ac,8ea2c1acv 9203 e98883 9203 00009203 dc65 dc65 dc65 dc65 dc65 dc65 dc65
+9016 dc66 dc66 dc66 * * 412d 8ea2c1ad,8ea2c1adv 921a e9889a 921a 0000921a dc66 dc66 dc66 dc66 dc66 dc66 dc66
+9017 dc67 dc67 dc67 * * 412e 8ea2c1ae,8ea2c1aev 9226 e988a6 9226 00009226 dc67 dc67 dc67 dc67 dc67 dc67 dc67
+9018 dc68 dc68 dc68 * * 412f 8ea2c1af,8ea2c1afv 920f e9888f 920f 0000920f dc68 dc68 dc68 dc68 dc68 dc68 dc68
+9019 dc69 dc69 dc69 * * 4130 8ea2c1b0,8ea2c1b0v 920c e9888c 920c 0000920c dc69 dc69 dc69 dc69 dc69 dc69 dc69
+9020 dc6a dc6a dc6a * * 4131 8ea2c1b1,8ea2c1b1v 9200 e98880 9200 00009200 dc6a dc6a dc6a dc6a dc6a dc6a dc6a
+9021 dc6b dc6b dc6b * * 4132 8ea2c1b2,8ea2c1b2v 9212 e98892 9212 00009212 dc6b dc6b dc6b dc6b dc6b dc6b dc6b
+9022 dc6c dc6c dc6c * * 4133 8ea2c1b3,8ea2c1b3v 91ff e987bf 91ff 000091ff dc6c dc6c dc6c dc6c dc6c dc6c dc6c
+9023 dc6d dc6d dc6d * * 4134 8ea2c1b4,8ea2c1b4v 91fd e987bd 91fd 000091fd dc6d dc6d dc6d dc6d dc6d dc6d dc6d
+9024 dc6e dc6e dc6e * * 4135 8ea2c1b5,8ea2c1b5v 9206 e98886 9206 00009206 dc6e dc6e dc6e dc6e dc6e dc6e dc6e
+9025 dc6f dc6f dc6f * * 4136 8ea2c1b6,8ea2c1b6v 9204 e98884 9204 00009204 dc6f dc6f dc6f dc6f dc6f dc6f dc6f
+9026 dc70 dc70 dc70 * * 4137 8ea2c1b7,8ea2c1b7v 9227 e988a7 9227 00009227 dc70 dc70 dc70 dc70 dc70 dc70 dc70
+9027 dc71 dc71 dc71 * * 4138 8ea2c1b8,8ea2c1b8v 9202 e98882 9202 00009202 dc71 dc71 dc71 dc71 dc71 dc71 dc71
+9028 dc72 dc72 dc72 * * 4139 8ea2c1b9,8ea2c1b9v 921c e9889c 921c 0000921c dc72 dc72 dc72 dc72 dc72 dc72 dc72
+9029 dc73 dc73 dc73 * * 413a 8ea2c1ba,8ea2c1bav 9224 e988a4 9224 00009224 dc73 dc73 dc73 dc73 dc73 dc73 dc73
+9030 dc74 dc74 dc74 * * 413b 8ea2c1bb,8ea2c1bbv 9219 e98899 9219 00009219 dc74 dc74 dc74 dc74 dc74 dc74 dc74
+9031 dc75 dc75 dc75 * * 413c 8ea2c1bc,8ea2c1bcv 9217 e98897 9217 00009217 dc75 dc75 dc75 dc75 dc75 dc75 dc75
+9032 dc76 dc76 dc76 * * 413d 8ea2c1bd,8ea2c1bdv 9205 e98885 9205 00009205 dc76 dc76 dc76 dc76 dc76 dc76 dc76
+9033 dc77 dc77 dc77 * * 413e 8ea2c1be,8ea2c1bev 9216 e98896 9216 00009216 dc77 dc77 dc77 dc77 dc77 dc77 dc77
+9034 dc78 dc78 dc78 * * 413f 8ea2c1bf,8ea2c1bfv 957b e995bb 957b 0000957b dc78 dc78 dc78 dc78 dc78 dc78 dc78
+9035 dc79 dc79 dc79 * * 4140 8ea2c1c0,8ea2c1c0v 958d e9968d 958d 0000958d dc79 dc79 dc79 dc79 dc79 dc79 dc79
+9036 dc7a dc7a dc7a * * 4141 8ea2c1c1,8ea2c1c1v 958c e9968c 958c 0000958c dc7a dc7a dc7a dc7a dc7a dc7a dc7a
+9037 dc7b dc7b dc7b * * 4142 8ea2c1c2,8ea2c1c2v 9590 e99690 9590 00009590 dc7b dc7b dc7b dc7b dc7b dc7b dc7b
+9038 dc7c dc7c dc7c * * 4143 8ea2c1c3,8ea2c1c3v 9687 e99a87 9687 00009687 dc7c dc7c dc7c dc7c dc7c dc7c dc7c
+9039 dc7d dc7d dc7d * * 4144 8ea2c1c4,8ea2c1c4v 967e e999be 967e 0000967e dc7d dc7d dc7d dc7d dc7d dc7d dc7d
+9040 dc7e dc7e dc7e * * 4145 8ea2c1c5,8ea2c1c5v 9688 e99a88 9688 00009688 dc7e dc7e dc7e dc7e dc7e dc7e dc7e
+9041 dca1 dca1 dca1 * * 4146 8ea2c1c6,8ea2c1c6v 9689 e99a89 9689 00009689 dca1 dca1 dca1 dca1 dca1 dca1 dca1
+9042 dca2 dca2 dca2 * * 4147 8ea2c1c7,8ea2c1c7v 9683 e99a83 9683 00009683 dca2 dca2,fea1 90dc,dca2 dca2 dca2 dca2 dca2
+9043 dca3 dca3 dca3 * * 4148 8ea2c1c8,8ea2c1c8v 9680 e99a80 9680 00009680 dca3 dca3 dca3 dca3 dca3 dca3 dca3
+9044 dca4 dca4 dca4 * * 4149 8ea2c1c9,8ea2c1c9v 96c2 e99b82 96c2 000096c2 dca4 dca4 dca4 dca4 dca4 dca4 dca4
+9045 dca5 dca5 dca5 * * 414a 8ea2c1ca,8ea2c1cav 96c8 e99b88 96c8 000096c8 dca5 dca5 dca5 dca5 dca5 dca5 dca5
+9046 dca6 dca6 dca6 * * 414b 8ea2c1cb,8ea2c1cbv 96c3 e99b83 96c3 000096c3 dca6 dca6 dca6 dca6 dca6 dca6 dca6
+9047 dca7 dca7 dca7 * * 414c 8ea2c1cc,8ea2c1ccv 96f1 e99bb1 96f1 000096f1 dca7 dca7 dca7 dca7 dca7 dca7 dca7
+9048 dca8 dca8 dca8 * * 414d 8ea2c1cd,8ea2c1cdv 96f0 e99bb0 96f0 000096f0 dca8 dca8 dca8 dca8 dca8 dca8 dca8
+9049 dca9 dca9 dca9 * * 414e 8ea2c1ce,8ea2c1cev 976c e99dac 976c 0000976c dca9 dca9 dca9 dca9 dca9 dca9 dca9
+9050 dcaa dcaa dcaa * * 414f 8ea2c1cf,8ea2c1cfv 9770 e99db0 9770 00009770 dcaa dcaa dcaa dcaa dcaa dcaa dcaa
+9051 dcab dcab dcab * * 4150 8ea2c1d0,8ea2c1d0v 976e e99dae 976e 0000976e dcab dcab dcab dcab dcab dcab dcab
+9052 dcac dcac dcac * * 4151 8ea2c1d1,8ea2c1d1v 9807 e9a087 9807 00009807 dcac dcac dcac dcac dcac dcac dcac
+9053 dcad dcad dcad * * 4152 8ea2c1d2,8ea2c1d2v 98a9 e9a2a9 98a9 000098a9 dcad dcad dcad dcad dcad dcad dcad
+9054 dcae dcae dcae * * 4153 8ea2c1d3,8ea2c1d3v 98eb e9a3ab 98eb 000098eb dcae dcae dcae dcae dcae dcae dcae
+9055 dcaf dcaf dcaf * * 4154 8ea2c1d4,8ea2c1d4v 9ce6 e9b3a6 9ce6 00009ce6 dcaf dcaf dcaf dcaf dcaf dcaf dcaf
+9056 dcb0 dcb0 dcb0 * 292f 4155 8ea1a9af,8ea2c1d5,a9af,8ea1a9afv,8ea2c1d5v,a9afv 9ef9 e2bf8b,e9bbb9 2fcb,9ef9 00002fcb,00009ef9 dcb0 dcb0 dcb0 dcb0 dcb0 dcb0 dcb0
+9057 dcb1 dcb1 dcb1 * * 4156 8ea2c1d6,8ea2c1d6v 4e83 e4ba83 4e83 00004e83 dcb1 dcb1 dcb1 dcb1 dcb1 dcb1 dcb1
+9058 dcb2 dcb2 dcb2 * * 4157 8ea2c1d7,8ea2c1d7v 4e84 e4ba84 4e84 00004e84 dcb2 dcb2 dcb2 dcb2 dcb2 dcb2 dcb2
+9059 dcb3 dcb3 dcb3 * * 4158 8ea2c1d8,8ea2c1d8v 4eb6 e4bab6 4eb6 00004eb6 dcb3 dcb3 dcb3 dcb3 dcb3 dcb3 dcb3
+9060 dcb4 dcb4 dcb4 * * 4159 8ea2c1d9,8ea2c1d9v 50bd e582bd 50bd 000050bd dcb4 dcb4 dcb4 dcb4 dcb4 dcb4 dcb4
+9061 dcb5 dcb5 dcb5 * * 415a 8ea2c1da,8ea2c1dav 50bf e582bf 50bf 000050bf dcb5 dcb5 dcb5 dcb5 dcb5 dcb5 dcb5
+9062 dcb6 dcb6 dcb6 * * 415b 8ea2c1db,8ea2c1dbv 50c6 e58386 50c6 000050c6 dcb6 dcb6 dcb6 dcb6 dcb6 dcb6 dcb6
+9063 dcb7 dcb7 dcb7 * * 415c 8ea2c1dc,8ea2c1dcv 50ae e582ae 50ae 000050ae dcb7 dcb7 dcb7 dcb7 dcb7 dcb7 dcb7
+9064 dcb8 dcb8 dcb8 * * 415d 8ea2c1dd,8ea2c1ddv 50c4 e58384 50c4 000050c4 dcb8 dcb8 dcb8 dcb8 dcb8 dcb8 dcb8
+9065 dcb9 dcb9 dcb9 * * 415e 8ea2c1de,8ea2c1dev 50ca e5838a 50ca 000050ca dcb9 dcb9 dcb9 dcb9 dcb9 dcb9 dcb9
+9066 dcba dcba dcba * * 415f 8ea2c1df,8ea2c1dfv 50b4 e582b4 50b4 000050b4 dcba dcba dcba dcba dcba dcba dcba
+9067 dcbb dcbb dcbb * * 4160 8ea2c1e0,8ea2c1e0v 50c8 e58388 50c8 000050c8 dcbb dcbb dcbb dcbb dcbb dcbb dcbb
+9068 dcbc dcbc dcbc * * 4161 8ea2c1e1,8ea2c1e1v 50c2 e58382 50c2 000050c2 dcbc dcbc dcbc dcbc dcbc dcbc dcbc
+9069 dcbd dcbd dcbd * * 4162 8ea2c1e2,8ea2c1e2v 50b0 e582b0 50b0 000050b0 dcbd dcbd dcbd dcbd dcbd dcbd dcbd
+9070 dcbe dcbe dcbe * * 4163 8ea2c1e3,8ea2c1e3v 50c1 e58381 50c1 000050c1 dcbe dcbe dcbe dcbe dcbe dcbe dcbe
+9071 dcbf dcbf dcbf * * 4164 8ea2c1e4,8ea2c1e4v 50ba e582ba 50ba 000050ba dcbf dcbf dcbf dcbf dcbf dcbf dcbf
+9072 dcc0 dcc0 dcc0 * * 4165 8ea2c1e5,8ea2c1e5v 50b1 e582b1 50b1 000050b1 dcc0 dcc0 dcc0 dcc0 dcc0 dcc0 dcc0
+9073 dcc1 dcc1 dcc1 * * 4166 8ea2c1e6,8ea2c1e6v 50cb e5838b 50cb 000050cb dcc1 dcc1 dcc1 dcc1 dcc1 dcc1 dcc1
+9074 dcc2 dcc2 dcc2 * * 4167 8ea2c1e7,8ea2c1e7v 50c9 e58389 50c9 000050c9 dcc2 dcc2 dcc2 dcc2 dcc2 dcc2 dcc2
+9075 dcc3 dcc3 dcc3 * * 4168 8ea2c1e8,8ea2c1e8v 50b6 e582b6 50b6 000050b6 dcc3 dcc3 dcc3 dcc3 dcc3 dcc3 dcc3
+9076 dcc4 dcc4 dcc4 * * 4169 8ea2c1e9,8ea2c1e9v 50b8 e582b8 50b8 000050b8 dcc4 dcc4 dcc4 dcc4 dcc4 dcc4 dcc4
+9077 dcc5 dcc5 dcc5 * * 416a 8ea2c1ea,8ea2c1eav 51d7 e58797 51d7 000051d7 dcc5 dcc5 dcc5 dcc5 dcc5 dcc5 dcc5
+9078 dcc6 dcc6 dcc6 * * 416b 8ea2c1eb,8ea2c1ebv 527a e589ba 527a 0000527a dcc6 dcc6 dcc6 dcc6 dcc6 dcc6 dcc6
+9079 dcc7 dcc7 dcc7 * * 416c 8ea2c1ec,8ea2c1ecv 5278 e589b8 5278 00005278 dcc7 dcc7 dcc7 dcc7 dcc7 dcc7 dcc7
+9080 dcc8 dcc8 dcc8 * * 416d 8ea2c1ed,8ea2c1edv 527b e589bb 527b 0000527b dcc8 dcc8 dcc8 dcc8 dcc8 dcc8 dcc8
+9081 dcc9 dcc9 dcc9 * * 416e 8ea2c1ee,8ea2c1eev 527c e589bc 527c 0000527c dcc9 dcc9 dcc9 dcc9 dcc9 dcc9 dcc9
+9082 dcca dcca dcca * * 416f 8ea2c1ef,8ea2c1efv 55c3 e59783 55c3 000055c3 dcca dcca dcca dcca dcca dcca dcca
+9083 dccb dccb dccb * * 4170 8ea2c1f0,8ea2c1f0v 55db e5979b 55db 000055db dccb dccb dccb dccb dccb dccb dccb
+9084 dccc dccc dccc * * 4171 8ea2c1f1,8ea2c1f1v 55cc e5978c 55cc 000055cc dccc dccc dccc dccc dccc dccc dccc
+9085 dccd dccd dccd * * 4172 8ea2c1f2,8ea2c1f2v 55d0 e59790 55d0 000055d0 dccd dccd dccd dccd dccd dccd dccd
+9086 dcce dcce dcce * * 4173 8ea2c1f3,8ea2c1f3v 55cb e5978b 55cb 000055cb dcce dcce dcce dcce dcce dcce dcce
+9087 dccf dccf dccf * * 4174 8ea2c1f4,8ea2c1f4v 55ca e5978a 55ca 000055ca dccf dccf dccf dccf dccf dccf dccf
+9088 dcd0 dcd0 dcd0 * * 4175 8ea2c1f5,8ea2c1f5v 55dd e5979d 55dd 000055dd dcd0 dcd0 dcd0 dcd0 dcd0 dcd0 dcd0
+9089 dcd1,ddfc dcd1,ddfc dcd1,ddfc * * 4176 8ea2c1f6,8ea2c1f6v 55c0,fa0d e59780,efa88d 55c0,fa0d 000055c0,0000fa0d ddfc,dcd1 dcd1,ddfc dcd1,ddfc dcd1,ddfc dcd1,ddfc dcd1,ddfc ddfc,dcd1
+9090 dcd2 dcd2 dcd2 * * 4177 8ea2c1f7,8ea2c1f7v 55d4 e59794 55d4 000055d4 dcd2 dcd2 dcd2 dcd2 dcd2 dcd2 dcd2
+9091 dcd3 dcd3 dcd3 * * 4178 8ea2c1f8,8ea2c1f8v 55c4 e59784 55c4 000055c4 dcd3 dcd3 dcd3 dcd3 dcd3 dcd3 dcd3
+9092 dcd4 dcd4 dcd4 * * 4179 8ea2c1f9,8ea2c1f9v 55e9 e597a9 55e9 000055e9 dcd4 dcd4 dcd4 dcd4 dcd4 dcd4 dcd4
+9093 dcd5 dcd5 dcd5 * * 417a 8ea2c1fa,8ea2c1fav 55bf e596bf 55bf 000055bf dcd5 dcd5 dcd5 dcd5 dcd5 dcd5 dcd5
+9094 dcd6 dcd6 dcd6 * * 417b 8ea2c1fb,8ea2c1fbv 55d2 e59792 55d2 000055d2 dcd6 dcd6 dcd6 dcd6 dcd6 dcd6 dcd6
+9095 dcd7 dcd7 dcd7 * * 417c 8ea2c1fc,8ea2c1fcv 558d e5968d 558d 0000558d dcd7 dcd7 dcd7 dcd7 dcd7 dcd7 dcd7
+9096 dcd8 dcd8 dcd8 * * 417d 8ea2c1fd,8ea2c1fdv 55cf e5978f 55cf 000055cf dcd8 dcd8 dcd8 dcd8 dcd8 dcd8 dcd8
+9097 dcd9 dcd9 dcd9 * * 417e 8ea2c1fe,8ea2c1fev 55d5 e59795 55d5 000055d5 dcd9 dcd9 dcd9 dcd9 dcd9 dcd9 dcd9
+9098 dcda dcda dcda * * 4221 8ea2c2a1,8ea2c2a1v 55e2 e597a2 55e2 000055e2 dcda dcda dcda dcda dcda dcda dcda
+9099 dcdb dcdb dcdb * * 4222 8ea2c2a2,8ea2c2a2v 55d6 e59796 55d6 000055d6 dcdb dcdb dcdb dcdb dcdb dcdb dcdb
+9100 dcdc dcdc dcdc * * 4223 8ea2c2a3,8ea2c2a3v 55c8 e59788 55c8 000055c8 dcdc dcdc dcdc dcdc dcdc dcdc dcdc
+9101 dcdd dcdd dcdd * * 4224 8ea2c2a4,8ea2c2a4v 55f2 e597b2 55f2 000055f2 dcdd dcdd dcdd dcdd dcdd dcdd dcdd
+9102 dcde dcde dcde * * 4225 8ea2c2a5,8ea2c2a5v 55cd e5978d 55cd 000055cd dcde dcde dcde dcde dcde dcde dcde
+9103 dcdf dcdf dcdf * * 4226 8ea2c2a6,8ea2c2a6v 55d9 e59799 55d9 000055d9 dcdf dcdf dcdf dcdf dcdf dcdf dcdf
+9104 dce0 dce0 dce0 * * 4227 8ea2c2a7,8ea2c2a7v 55c2 e59782 55c2 000055c2 dce0 dce0 dce0 dce0 dce0 dce0 dce0
+9105 dce1 dce1 dce1 * * 4228 8ea2c2a8,8ea2c2a8v 5714 e59c94 5714 00005714 dce1 dce1 dce1 dce1 dce1 dce1 dce1
+9106 dce2 dce2 dce2 * * 4229 8ea2c2a9,8ea2c2a9v 5853 e5a193 5853 00005853 dce2 dce2 dce2 dce2 dce2 dce2 dce2
+9107 dce3 dce3 dce3 * * 422a 8ea2c2aa,8ea2c2aav 5868 e5a1a8 5868 00005868 dce3 dce3 dce3 dce3 dce3 dce3 dce3
+9108 dce4 dce4 dce4 * * 422b 8ea2c2ab,8ea2c2abv 5864 e5a1a4 5864 00005864 dce4 dce4 dce4 dce4 dce4 dce4 dce4
+9109 dce5 dce5 dce5 * * 422c 8ea2c2ac,8ea2c2acv 584f e5a18f 584f 0000584f dce5 dce5 dce5 dce5 dce5 dce5 dce5
+9110 dce6 dce6 dce6 * * 422d 8ea2c2ad,8ea2c2adv 584d e5a18d 584d 0000584d dce6 dce6 dce6 dce6 dce6 dce6 dce6
+9111 dce7 dce7 dce7 * * 422e 8ea2c2ae,8ea2c2aev 5849 e5a189 5849 00005849 dce7 dce7 dce7 dce7 dce7 dce7 dce7
+9112 dce8 dce8 dce8 * * 422f 8ea2c2af,8ea2c2afv 586f e5a1af 586f 0000586f dce8 dce8 dce8 dce8 dce8 dce8 dce8
+9113 dce9 dce9 dce9 * * 4230 8ea2c2b0,8ea2c2b0v 5855 e5a195 5855 00005855 dce9 dce9 dce9 dce9 dce9 dce9 dce9
+9114 dcea dcea dcea * * 4231 8ea2c2b1,8ea2c2b1v 584e e5a18e 584e 0000584e dcea dcea dcea dcea dcea dcea dcea
+9115 dceb dceb dceb * * 4232 8ea2c2b2,8ea2c2b2v 585d e5a19d 585d 0000585d dceb dceb dceb dceb dceb dceb dceb
+9116 dcec dcec dcec * * 4233 8ea2c2b3,8ea2c2b3v 5859 e5a199 5859 00005859 dcec dcec dcec dcec dcec dcec dcec
+9117 dced dced dced * * 4234 8ea2c2b4,8ea2c2b4v 5865 e5a1a5 5865 00005865 dced dced dced dced dced dced dced
+9118 dcee dcee dcee * * 4235 8ea2c2b5,8ea2c2b5v 585b e5a19b 585b 0000585b dcee dcee dcee dcee dcee dcee dcee
+9119 dcef dcef dcef * * 4236 8ea2c2b6,8ea2c2b6v 583d e5a0bd 583d 0000583d dcef dcef dcef dcef dcef dcef dcef
+9120 dcf0 dcf0 dcf0 * * 4237 8ea2c2b7,8ea2c2b7v 5863 e5a1a3 5863 00005863 dcf0 dcf0 dcf0 dcf0 dcf0 dcf0 dcf0
+9121 dcf1 dcf1 dcf1 * * 4238 8ea2c2b8,8ea2c2b8v 5871 e5a1b1 5871 00005871 dcf1 dcf1 dcf1 dcf1 dcf1 dcf1 dcf1
+9122 dcf2 dcf2 dcf2 * * 4239 8ea2c2b9,8ea2c2b9v 58fc e5a3bc 58fc 000058fc dcf2 dcf2 dcf2 dcf2 dcf2 dcf2 dcf2
+9123 dcf3 dcf3 dcf3 * * 423a 8ea2c2ba,8ea2c2bav 5ac7 e5ab87 5ac7 00005ac7 dcf3 dcf3 dcf3 dcf3 dcf3 dcf3 dcf3
+9124 dcf4 dcf4 dcf4 * * 423b 8ea2c2bb,8ea2c2bbv 5ac4 e5ab84 5ac4 00005ac4 dcf4 dcf4 dcf4 dcf4 dcf4 dcf4 dcf4
+9125 dcf5 dcf5 dcf5 * * 423c 8ea2c2bc,8ea2c2bcv 5acb e5ab8b 5acb 00005acb dcf5 dcf5 dcf5 dcf5 dcf5 dcf5 dcf5
+9126 dcf6 dcf6 dcf6 * * 423d 8ea2c2bd,8ea2c2bdv 5aba e5aaba 5aba 00005aba dcf6 dcf6 dcf6 dcf6 dcf6 dcf6 dcf6
+9127 dcf7 dcf7 dcf7 * * 423e 8ea2c2be,8ea2c2bev 5ab8 e5aab8 5ab8 00005ab8 dcf7 dcf7 dcf7 dcf7 dcf7 dcf7 dcf7
+9128 dcf8 dcf8 dcf8 * * 423f 8ea2c2bf,8ea2c2bfv 5ab1 e5aab1 5ab1 00005ab1 dcf8 dcf8 dcf8 dcf8 dcf8 dcf8 dcf8
+9129 dcf9 dcf9 dcf9 * * 4240 8ea2c2c0,8ea2c2c0v 5ab5 e5aab5 5ab5 00005ab5 dcf9 dcf9 dcf9 dcf9 dcf9 dcf9 dcf9
+9130 dcfa dcfa dcfa * * 4241 8ea2c2c1,8ea2c2c1v 5ab0 e5aab0 5ab0 00005ab0 dcfa dcfa dcfa dcfa dcfa dcfa dcfa
+9131 dcfb dcfb dcfb * * 4242 8ea2c2c2,8ea2c2c2v 5abf e5aabf 5abf 00005abf dcfb dcfb dcfb dcfb dcfb dcfb dcfb
+9132 dcfc dcfc dcfc * * 4243 8ea2c2c3,8ea2c2c3v 5ac8 e5ab88 5ac8 00005ac8 dcfc dcfc dcfc dcfc dcfc dcfc dcfc
+9133 dcfd dcfd dcfd * * 4244 8ea2c2c4,8ea2c2c4v 5abb e5aabb 5abb 00005abb dcfd dcfd dcfd dcfd dcfd dcfd dcfd
+9134 dcfe dcfe dcfe * * 4245 8ea2c2c5,8ea2c2c5v 5ac6 e5ab86 5ac6 00005ac6 dcfe dcfe dcfe dcfe dcfe dcfe dcfe
+9135 dd40 dd40 dd40 * * 4246 8ea2c2c6,8ea2c2c6v 5ab7 e5aab7 5ab7 00005ab7 dd40 dd40 dd40 dd40 dd40 dd40 dd40
+9136 dd41 dd41 dd41 * * 4247 8ea2c2c7,8ea2c2c7v 5ac0 e5ab80 5ac0 00005ac0 dd41 dd41 dd41 dd41 dd41 dd41 dd41
+9137 dd42 dd42 dd42 * * 4248 8ea2c2c8,8ea2c2c8v 5aca e5ab8a 5aca 00005aca dd42 dd42 dd42 dd42 dd42 dd42 dd42
+9138 dd43 dd43 dd43 * * 4249 8ea2c2c9,8ea2c2c9v 5ab4 e5aab4 5ab4 00005ab4 dd43 dd43 dd43 dd43 dd43 dd43 dd43
+9139 dd44 dd44 dd44 * * 424a 8ea2c2ca,8ea2c2cav 5ab6 e5aab6 5ab6 00005ab6 dd44 dd44 dd44 dd44 dd44 dd44 dd44
+9140 dd45 dd45 dd45 * * 424b 8ea2c2cb,8ea2c2cbv 5acd e5ab8d 5acd 00005acd dd45 dd45 dd45 dd45 dd45 dd45 dd45
+9141 dd46 dd46 dd46 * * 424c 8ea2c2cc,8ea2c2ccv 5ab9 e5aab9 5ab9 00005ab9 dd46 dd46 dd46 dd46 dd46 dd46 dd46
+9142 dd47 dd47 dd47 * * 424d 8ea2c2cd,8ea2c2cdv 5a90 e5aa90 5a90 00005a90 dd47 dd47 dd47 dd47 dd47 dd47 dd47
+9143 dd48 dd48 dd48 * * 424e 8ea2c2ce,8ea2c2cev 5bd6 e5af96 5bd6 00005bd6 dd48 dd48 dd48 dd48 dd48 dd48 dd48
+9144 dd49 dd49 dd49 * * 424f 8ea2c2cf,8ea2c2cfv 5bd8 e5af98 5bd8 00005bd8 dd49 dd49 dd49 dd49 dd49 dd49 dd49
+9145 dd4a dd4a dd4a * * 4250 8ea2c2d0,8ea2c2d0v 5bd9 e5af99 5bd9 00005bd9 dd4a dd4a dd4a dd4a dd4a dd4a dd4a
+9146 dd4b dd4b dd4b * * 4251 8ea2c2d1,8ea2c2d1v 5c1f e5b09f 5c1f 00005c1f dd4b dd4b dd4b dd4b dd4b dd4b dd4b
+9147 dd4c dd4c dd4c * * 4252 8ea2c2d2,8ea2c2d2v 5c33 e5b0b3 5c33 00005c33 dd4c dd4c dd4c dd4c dd4c dd4c dd4c
+9148 dd4d dd4d dd4d * * 4253 8ea2c2d3,8ea2c2d3v 5d71 e5b5b1 5d71 00005d71 dd4d dd4d dd4d dd4d dd4d dd4d dd4d
+9149 dd4e dd4e dd4e * * 4254 8ea2c2d4,8ea2c2d4v 5d63 e5b5a3 5d63 00005d63 dd4e dd4e dd4e dd4e dd4e dd4e dd4e
+9150 dd4f dd4f dd4f * * 4255 8ea2c2d5,8ea2c2d5v 5d4a e5b58a 5d4a 00005d4a dd4f dd4f dd4f dd4f dd4f dd4f dd4f
+9151 dd50 dd50 dd50 * * 4256 8ea2c2d6,8ea2c2d6v 5d65 e5b5a5 5d65 00005d65 dd50 dd50 dd50 dd50 dd50 dd50 dd50
+9152 dd51 dd51 dd51 * * 4257 8ea2c2d7,8ea2c2d7v 5d72 e5b5b2 5d72 00005d72 dd51 dd51 dd51 dd51 dd51 dd51 dd51
+9153 dd52 dd52 dd52 * * 4258 8ea2c2d8,8ea2c2d8v 5d6c e5b5ac 5d6c 00005d6c dd52 dd52 dd52 dd52 dd52 dd52 dd52
+9154 dd53 dd53 dd53 * * 4259 8ea2c2d9,8ea2c2d9v 5d5e e5b59e 5d5e 00005d5e dd53 dd53 dd53 dd53 dd53 dd53 dd53
+9155 dd54 dd54 dd54 * * 425a 8ea2c2da,8ea2c2dav 5d68 e5b5a8 5d68 00005d68 dd54 dd54 dd54 dd54 dd54 dd54 dd54
+9156 dd55 dd55 dd55 * * 425b 8ea2c2db,8ea2c2dbv 5d67 e5b5a7 5d67 00005d67 dd55 dd55 dd55 dd55 dd55 dd55 dd55
+9157 dd56 dd56 dd56 * * 425c 8ea2c2dc,8ea2c2dcv 5d62 e5b5a2 5d62 00005d62 dd56 dd56 dd56 dd56 dd56 dd56 dd56
+9158 dd57 dd57 dd57 * * 425d 8ea2c2dd,8ea2c2ddv 5df0 e5b7b0 5df0 00005df0 dd57 dd57 dd57 dd57 dd57 dd57 dd57
+9159 dd58 dd58 dd58 * * 425e 8ea2c2de,8ea2c2dev 5e4f e5b98f 5e4f 00005e4f dd58 dd58 dd58 dd58 dd58 dd58 dd58
+9160 dd59 dd59 dd59 * * 425f 8ea2c2df,8ea2c2dfv 5e4e e5b98e 5e4e 00005e4e dd59 dd59 dd59 dd59 dd59 dd59 dd59
+9161 dd5a dd5a dd5a * * 4260 8ea2c2e0,8ea2c2e0v 5e4a e5b98a 5e4a 00005e4a dd5a dd5a dd5a dd5a dd5a dd5a dd5a
+9162 dd5b dd5b dd5b * * 4261 8ea2c2e1,8ea2c2e1v 5e4d e5b98d 5e4d 00005e4d dd5b dd5b dd5b dd5b dd5b dd5b dd5b
+9163 dd5c dd5c dd5c * * 4262 8ea2c2e2,8ea2c2e2v 5e4b e5b98b 5e4b 00005e4b dd5c dd5c dd5c dd5c dd5c dd5c dd5c
+9164 dd5d dd5d dd5d * * 4263 8ea2c2e3,8ea2c2e3v 5ec5 e5bb85 5ec5 00005ec5 dd5d dd5d dd5d dd5d dd5d dd5d dd5d
+9165 dd5e dd5e dd5e * * 4264 8ea2c2e4,8ea2c2e4v 5ecc e5bb8c 5ecc 00005ecc dd5e dd5e dd5e dd5e dd5e dd5e dd5e
+9166 dd5f dd5f dd5f * * 4265 8ea2c2e5,8ea2c2e5v 5ec6 e5bb86 5ec6 00005ec6 dd5f dd5f dd5f dd5f dd5f dd5f dd5f
+9167 dd60 dd60 dd60 * * 4266 8ea2c2e6,8ea2c2e6v 5ecb e5bb8b 5ecb 00005ecb dd60 dd60 dd60 dd60 dd60 dd60 dd60
+9168 dd61 dd61 dd61 * * 4267 8ea2c2e7,8ea2c2e7v 5ec7 e5bb87 5ec7 00005ec7 dd61 dd61 dd61 dd61 dd61 dd61 dd61
+9169 dd62 dd62 dd62 * * 4268 8ea2c2e8,8ea2c2e8v 5f40 e5bd80 5f40 00005f40 dd62 dd62 dd62 dd62 dd62 dd62 dd62
+9170 dd63 dd63 dd63 * * 4269 8ea2c2e9,8ea2c2e9v 5faf e5beaf 5faf 00005faf dd63 dd63 dd63 dd63 dd63 dd63 dd63
+9171 dd64 dd64 dd64 * * 426a 8ea2c2ea,8ea2c2eav 5fad e5bead 5fad 00005fad dd64 dd64 dd64 dd64 dd64 dd64 dd64
+9172 dd65 dd65 dd65 * * 426b 8ea2c2eb,8ea2c2ebv 60f7 e683b7 60f7 000060f7 dd65 dd65 dd65 dd65 dd65 dd65 dd65
+9173 dd66 dd66 dd66 * * 426c 8ea2c2ec,8ea2c2ecv 6149 e68589 6149 00006149 dd66 dd66 dd66 dd66 dd66 dd66 dd66
+9174 dd67 dd67 dd67 * * 426d 8ea2c2ed,8ea2c2edv 614a e6858a 614a 0000614a dd67 dd67 dd67 dd67 dd67 dd67 dd67
+9175 dd68 dd68 dd68 * * 426e 8ea2c2ee,8ea2c2eev 612b e684ab 612b 0000612b dd68 dd68 dd68 dd68 dd68 dd68 dd68
+9176 dd69 dd69 dd69 * * 426f 8ea2c2ef,8ea2c2efv 6145 e68585 6145 00006145 dd69 dd69 dd69 dd69 dd69 dd69 dd69
+9177 dd6a dd6a dd6a * * 4270 8ea2c2f0,8ea2c2f0v 6136 e684b6 6136 00006136 dd6a dd6a dd6a dd6a dd6a dd6a dd6a
+9178 dd6b dd6b dd6b * * 4271 8ea2c2f1,8ea2c2f1v 6132 e684b2 6132 00006132 dd6b dd6b dd6b dd6b dd6b dd6b dd6b
+9179 dd6c dd6c dd6c * * 4272 8ea2c2f2,8ea2c2f2v 612e e684ae 612e 0000612e dd6c dd6c dd6c dd6c dd6c dd6c dd6c
+9180 dd6d dd6d dd6d * * 4273 8ea2c2f3,8ea2c2f3v 6146 e68586 6146 00006146 dd6d dd6d dd6d dd6d dd6d dd6d dd6d
+9181 dd6e dd6e dd6e * * 4274 8ea2c2f4,8ea2c2f4v 612f e684af 612f 0000612f dd6e dd6e dd6e dd6e dd6e dd6e dd6e
+9182 dd6f dd6f dd6f * * 4275 8ea2c2f5,8ea2c2f5v 614f e6858f 614f 0000614f dd6f dd6f dd6f dd6f dd6f dd6f dd6f
+9183 dd70 dd70 dd70 * * 4276 8ea2c2f6,8ea2c2f6v 6129 e684a9 6129 00006129 dd70 dd70 dd70 dd70 dd70 dd70 dd70
+9184 dd71 dd71 dd71 * * 4277 8ea2c2f7,8ea2c2f7v 6140 e68580 6140 00006140 dd71 dd71 dd71 dd71 dd71 dd71 dd71
+9185 dd72 dd72 dd72 * * 4278 8ea2c2f8,8ea2c2f8v 6220 e688a0 6220 00006220 dd72 dd72 dd72 dd72 dd72 dd72 dd72
+9186 dd73 dd73 dd73 * * 4279 8ea2c2f9,8ea2c2f9v 9168 e985a8 9168 00009168 dd73 dd73 dd73 dd73 dd73 dd73 dd73
+9187 dd74 dd74 dd74 * * 427a 8ea2c2fa,8ea2c2fav 6223 e688a3 6223 00006223 dd74 dd74 dd74 dd74 dd74 dd74 dd74
+9188 dd75 dd75 dd75 * * 427b 8ea2c2fb,8ea2c2fbv 6225 e688a5 6225 00006225 dd75 dd75 dd75 dd75 dd75 dd75 dd75
+9189 dd76 dd76 dd76 * * 427c 8ea2c2fc,8ea2c2fcv 6224 e688a4 6224 00006224 dd76 dd76 dd76 dd76 dd76 dd76 dd76
+9190 dd77 dd77 dd77 * * 427d 8ea2c2fd,8ea2c2fdv 63c5 e68f85 63c5 000063c5 dd77 dd77 dd77 dd77 dd77 dd77 dd77
+9191 dd78 dd78 dd78 * * 427e 8ea2c2fe,8ea2c2fev 63f1 e68fb1 63f1 000063f1 dd78 dd78 dd78 dd78 dd78 dd78 dd78
+9192 dd79 dd79 dd79 * * 4321 8ea2c3a1,8ea2c3a1v 63eb e68fab 63eb 000063eb dd79 dd79 dd79 dd79 dd79 dd79 dd79
+9193 dd7a dd7a dd7a * * 4322 8ea2c3a2,8ea2c3a2v 6410 e69090 6410 00006410 dd7a dd7a dd7a dd7a dd7a dd7a dd7a
+9194 dd7b dd7b dd7b * * 4323 8ea2c3a3,8ea2c3a3v 6412 e69092 6412 00006412 dd7b dd7b dd7b dd7b dd7b dd7b dd7b
+9195 dd7c dd7c dd7c * * 4324 8ea2c3a4,8ea2c3a4v 6409 e69089 6409 00006409 dd7c dd7c dd7c dd7c dd7c dd7c dd7c
+9196 dd7d dd7d dd7d * * 4325 8ea2c3a5,8ea2c3a5v 6420 e690a0 6420 00006420 dd7d dd7d dd7d dd7d dd7d dd7d dd7d
+9197 dd7e dd7e dd7e * * 4326 8ea2c3a6,8ea2c3a6v 6424 e690a4 6424 00006424 dd7e dd7e dd7e dd7e dd7e dd7e dd7e
+9198 dda1 dda1 dda1 * * 4327 8ea2c3a7,8ea2c3a7v 6433 e690b3 6433 00006433 dda1 dda1 dda1 dda1 dda1 dda1 dda1
+9199 dda2 dda2 dda2 * * 4328 8ea2c3a8,8ea2c3a8v 6443 e69183 6443 00006443 dda2 dda2 dda2 dda2 dda2 dda2 dda2
+9200 dda3 dda3 dda3 * * 4329 8ea2c3a9,8ea2c3a9v 641f e6909f 641f 0000641f dda3 dda3 dda3 dda3 dda3 dda3 dda3
+9201 dda4 dda4 dda4 * * 432a 8ea2c3aa,8ea2c3aav 6415 e69095 6415 00006415 dda4 dda4 dda4 dda4 dda4 dda4 dda4
+9202 dda5 dda5 dda5 * * 432b 8ea2c3ab,8ea2c3abv 6418 e69098 6418 00006418 dda5 dda5 dda5 dda5 dda5 dda5 dda5
+9203 dda6 dda6 dda6 * * 432c 8ea2c3ac,8ea2c3acv 6439 e690b9 6439 00006439 dda6 dda6 dda6 dda6 dda6 dda6 dda6
+9204 dda7 dda7 dda7 * * 432d 8ea2c3ad,8ea2c3adv 6437 e690b7 6437 00006437 dda7 dda7 dda7 dda7 dda7 dda7 dda7
+9205 dda8 dda8 dda8 * * 432e 8ea2c3ae,8ea2c3aev 6422 e690a2 6422 00006422 dda8 dda8 dda8 dda8 dda8 dda8 dda8
+9206 dda9 dda9 dda9 * * 432f 8ea2c3af,8ea2c3afv 6423 e690a3 6423 00006423 dda9 dda9 dda9 dda9 dda9 dda9 dda9
+9207 ddaa ddaa ddaa * * 4330 8ea2c3b0,8ea2c3b0v 640c e6908c 640c 0000640c ddaa ddaa ddaa ddaa ddaa ddaa ddaa
+9208 ddab ddab ddab * * 4331 8ea2c3b1,8ea2c3b1v 6426 e690a6 6426 00006426 ddab ddab ddab ddab ddab ddab ddab
+9209 ddac ddac ddac * * 4332 8ea2c3b2,8ea2c3b2v 6430 e690b0 6430 00006430 ddac ddac ddac ddac ddac ddac ddac
+9210 ddad ddad ddad * * 4333 8ea2c3b3,8ea2c3b3v 6428 e690a8 6428 00006428 ddad ddad ddad ddad ddad ddad ddad
+9211 ddae ddae ddae * * 4334 8ea2c3b4,8ea2c3b4v 6441 e69181 6441 00006441 ddae ddae ddae ddae ddae ddae ddae
+9212 ddaf ddaf ddaf * * 4335 8ea2c3b5,8ea2c3b5v 6435 e690b5 6435 00006435 ddaf ddaf ddaf ddaf ddaf ddaf ddaf
+9213 ddb0 ddb0 ddb0 * * 4336 8ea2c3b6,8ea2c3b6v 642f e690af 642f 0000642f ddb0 ddb0 ddb0 ddb0 ddb0 ddb0 ddb0
+9214 ddb1 ddb1 ddb1 * * 4337 8ea2c3b7,8ea2c3b7v 640a e6908a 640a 0000640a ddb1 ddb1 ddb1 ddb1 ddb1 ddb1 ddb1
+9215 ddb2 ddb2 ddb2 * * 4338 8ea2c3b8,8ea2c3b8v 641a e6909a 641a 0000641a ddb2 ddb2 ddb2 ddb2 ddb2 ddb2 ddb2
+9216 ddb3 ddb3 ddb3 * * 4339 8ea2c3b9,8ea2c3b9v 6440 e69180 6440 00006440 ddb3 ddb3 ddb3 ddb3 ddb3 ddb3 ddb3
+9217 ddb4 ddb4 ddb4 * * 433a 8ea2c3ba,8ea2c3bav 6425 e690a5 6425 00006425 ddb4 ddb4 ddb4 ddb4 ddb4 ddb4 ddb4
+9218 ddb5 ddb5 ddb5 * * 433b 8ea2c3bb,8ea2c3bbv 6427 e690a7 6427 00006427 ddb5 ddb5 ddb5 ddb5 ddb5 ddb5 ddb5
+9219 ddb6 ddb6 ddb6 * * 433c 8ea2c3bc,8ea2c3bcv 640b e6908b 640b 0000640b ddb6 ddb6 ddb6 ddb6 ddb6 ddb6 ddb6
+9220 ddb7 ddb7 ddb7 * * 433d 8ea2c3bd,8ea2c3bdv 63e7 e68fa7 63e7 000063e7 ddb7 ddb7 ddb7 ddb7 ddb7 ddb7 ddb7
+9221 ddb8 ddb8 ddb8 * * 433e 8ea2c3be,8ea2c3bev 641b e6909b 641b 0000641b ddb8 ddb8 ddb8 ddb8 ddb8 ddb8 ddb8
+9222 ddb9 ddb9 ddb9 * * 433f 8ea2c3bf,8ea2c3bfv 642e e690ae 642e 0000642e ddb9 ddb9 ddb9 ddb9 ddb9 ddb9 ddb9
+9223 ddba ddba ddba * * 4340 8ea2c3c0,8ea2c3c0v 6421 e690a1 6421 00006421 ddba ddba ddba ddba ddba ddba ddba
+9224 ddbb ddbb ddbb * * 4341 8ea2c3c1,8ea2c3c1v 640e e6908e 640e 0000640e ddbb ddbb ddbb ddbb ddbb ddbb ddbb
+9225 ddbc ddbc ddbc * * 4342 8ea2c3c2,8ea2c3c2v 656f e695af 656f 0000656f ddbc ddbc ddbc ddbc ddbc ddbc ddbc
+9226 ddbd ddbd ddbd * * 4343 8ea2c3c3,8ea2c3c3v 6592 e69692 6592 00006592 ddbd ddbd ddbd ddbd ddbd ddbd ddbd
+9227 ddbe ddbe ddbe * * 4344 8ea2c3c4,8ea2c3c4v 65d3 e69793 65d3 000065d3 ddbe ddbe ddbe ddbe ddbe ddbe ddbe
+9228 ddbf ddbf ddbf * * 4345 8ea2c3c5,8ea2c3c5v 6686 e69a86 6686 00006686 ddbf ddbf ddbf ddbf ddbf ddbf ddbf
+9229 ddc0 ddc0 ddc0 * * 4346 8ea2c3c6,8ea2c3c6v 668c e69a8c 668c 0000668c ddc0 ddc0 ddc0 ddc0 ddc0 ddc0 ddc0
+9230 ddc1 ddc1 ddc1 * * 4347 8ea2c3c7,8ea2c3c7v 6695 e69a95 6695 00006695 ddc1 ddc1 ddc1 ddc1 ddc1 ddc1 ddc1
+9231 ddc2 ddc2 ddc2 * * 4348 8ea2c3c8,8ea2c3c8v 6690 e69a90 6690 00006690 ddc2 ddc2 ddc2 ddc2 ddc2 ddc2 ddc2
+9232 ddc3 ddc3 ddc3 * * 4349 8ea2c3c9,8ea2c3c9v 668b e69a8b 668b 0000668b ddc3 ddc3 ddc3 ddc3 ddc3 ddc3 ddc3
+9233 ddc4 ddc4 ddc4 * * 434a 8ea2c3ca,8ea2c3cav 668a e69a8a 668a 0000668a ddc4 ddc4 ddc4 ddc4 ddc4 ddc4 ddc4
+9234 ddc5 ddc5 ddc5 * * 434b 8ea2c3cb,8ea2c3cbv 6699 e69a99 6699 00006699 ddc5 ddc5 ddc5 ddc5 ddc5 ddc5 ddc5
+9235 ddc6 ddc6 ddc6 * * 434c 8ea2c3cc,8ea2c3ccv 6694 e69a94 6694 00006694 ddc6 ddc6 ddc6 ddc6 ddc6 ddc6 ddc6
+9236 ddc7 ddc7 ddc7 * * 434d 8ea2c3cd,8ea2c3cdv 6678 e699b8 6678 00006678 ddc7 ddc7 ddc7 ddc7 ddc7 ddc7 ddc7
+9237 ddc8 ddc8 ddc8 * * 434e 8ea2c3ce,8ea2c3cev 6720 e69ca0 6720 00006720 ddc8 ddc8 ddc8 ddc8 ddc8 ddc8 ddc8
+9238 ddc9 ddc9 ddc9 * * 434f 8ea2c3cf,8ea2c3cfv 6966 e6a5a6 6966 00006966 ddc9 ddc9 ddc9 ddc9 ddc9 ddc9 ddc9
+9239 ddca ddca ddca * * 4350 8ea2c3d0,8ea2c3d0v 695f e6a59f 695f 0000695f ddca ddca ddca ddca ddca ddca ddca
+9240 ddcb ddcb ddcb * * 4351 8ea2c3d1,8ea2c3d1v 6938 e6a4b8 6938 00006938 ddcb ddcb ddcb ddcb ddcb ddcb ddcb
+9241 ddcc ddcc ddcc * * 4352 8ea2c3d2,8ea2c3d2v 694e e6a58e 694e 0000694e ddcc ddcc ddcc ddcc ddcc ddcc ddcc
+9242 ddcd ddcd ddcd * * 4353 8ea2c3d3,8ea2c3d3v 6962 e6a5a2 6962 00006962 ddcd ddcd ddcd ddcd ddcd ddcd ddcd
+9243 ddce ddce ddce * * 4354 8ea2c3d4,8ea2c3d4v 6971 e6a5b1 6971 00006971 ddce ddce ddce ddce ddce ddce ddce
+9244 ddcf ddcf ddcf * * 4355 8ea2c3d5,8ea2c3d5v 693f e6a4bf 693f 0000693f ddcf ddcf ddcf ddcf ddcf ddcf ddcf
+9245 ddd0 ddd0 ddd0 * * 4356 8ea2c3d6,8ea2c3d6v 6945 e6a585 6945 00006945 ddd0 ddd0 ddd0 ddd0 ddd0 ddd0 ddd0
+9246 ddd1 ddd1 ddd1 * * 4357 8ea2c3d7,8ea2c3d7v 696a e6a5aa 696a 0000696a ddd1 ddd1 ddd1 ddd1 ddd1 ddd1 ddd1
+9247 ddd2 ddd2 ddd2 * * 4358 8ea2c3d8,8ea2c3d8v 6939 e6a4b9 6939 00006939 ddd2 ddd2 ddd2 ddd2 ddd2 ddd2 ddd2
+9248 ddd3 ddd3 ddd3 * * 4359 8ea2c3d9,8ea2c3d9v 6942 e6a582 6942 00006942 ddd3 ddd3 ddd3 ddd3 ddd3 ddd3 ddd3
+9249 ddd4 ddd4 ddd4 * * 435a 8ea2c3da,8ea2c3dav 6957 e6a597 6957 00006957 ddd4 ddd4 ddd4 ddd4 ddd4 ddd4 ddd4
+9250 ddd5 ddd5 ddd5 * * 435b 8ea2c3db,8ea2c3dbv 6959 e6a599 6959 00006959 ddd5 ddd5 ddd5 ddd5 ddd5 ddd5 ddd5
+9251 ddd6 ddd6 ddd6 * * 435c 8ea2c3dc,8ea2c3dcv 697a e6a5ba 697a 0000697a ddd6 ddd6 ddd6 ddd6 ddd6 ddd6 ddd6
+9252 ddd7 ddd7 ddd7 * * 435d 8ea2c3dd,8ea2c3ddv 6948 e6a588 6948 00006948 ddd7 ddd7 ddd7 ddd7 ddd7 ddd7 ddd7
+9253 ddd8 ddd8 ddd8 * * 435e 8ea2c3de,8ea2c3dev 6949 e6a589 6949 00006949 ddd8 ddd8 ddd8 ddd8 ddd8 ddd8 ddd8
+9254 ddd9 ddd9 ddd9 * * 435f 8ea2c3df,8ea2c3dfv 6935 e6a4b5 6935 00006935 ddd9 ddd9 ddd9 ddd9 ddd9 ddd9 ddd9
+9255 ddda ddda ddda * * 4360 8ea2c3e0,8ea2c3e0v 696c e6a5ac 696c 0000696c ddda ddda ddda ddda ddda ddda ddda
+9256 dddb dddb dddb * * 4361 8ea2c3e1,8ea2c3e1v 6933 e6a4b3 6933 00006933 dddb dddb dddb dddb dddb dddb dddb
+9257 dddc dddc dddc * * 4362 8ea2c3e2,8ea2c3e2v 693d e6a4bd 693d 0000693d dddc dddc dddc dddc dddc dddc dddc
+9258 dddd dddd dddd * * 4363 8ea2c3e3,8ea2c3e3v 6965 e6a5a5 6965 00006965 dddd dddd dddd dddd dddd dddd dddd
+9259 ddde ddde ddde * * 4364 8ea2c3e4,8ea2c3e4v 68f0 e6a3b0 68f0 000068f0 ddde ddde ddde ddde ddde ddde ddde
+9260 dddf dddf dddf * * 4365 8ea2c3e5,8ea2c3e5v 6978 e6a5b8 6978 00006978 dddf dddf dddf dddf dddf dddf dddf
+9261 dde0 dde0 dde0 * * 4366 8ea2c3e6,8ea2c3e6v 6934 e6a4b4 6934 00006934 dde0 dde0 dde0 dde0 dde0 dde0 dde0
+9262 dde1 dde1 dde1 * * 4367 8ea2c3e7,8ea2c3e7v 6969 e6a5a9 6969 00006969 dde1 dde1 dde1 dde1 dde1 dde1 dde1
+9263 dde2 dde2 dde2 * * 4368 8ea2c3e8,8ea2c3e8v 6940 e6a580 6940 00006940 dde2 dde2 dde2 dde2 dde2 dde2 dde2
+9264 dde3 dde3 dde3 * * 4369 8ea2c3e9,8ea2c3e9v 696f e6a5af 696f 0000696f dde3 dde3 dde3 dde3 dde3 dde3 dde3
+9265 dde4 dde4 dde4 * * 436a 8ea2c3ea,8ea2c3eav 6944 e6a584 6944 00006944 dde4 dde4 dde4 dde4 dde4 dde4 dde4
+9266 dde5 dde5 dde5 * * 436b 8ea2c3eb,8ea2c3ebv 6976 e6a5b6 6976 00006976 dde5 dde5 dde5 dde5 dde5 dde5 dde5
+9267 dde6 dde6 dde6 * * 436c 8ea2c3ec,8ea2c3ecv 6958 e6a598 6958 00006958 dde6 dde6 dde6 dde6 dde6 dde6 dde6
+9268 dde7 dde7 dde7 * * 436d 8ea2c3ed,8ea2c3edv 6941 e6a581 6941 00006941 dde7 dde7 dde7 dde7 dde7 dde7 dde7
+9269 dde8 dde8 dde8 * * 436e 8ea2c3ee,8ea2c3eev 6974 e6a5b4 6974 00006974 dde8 dde8 dde8 dde8 dde8 dde8 dde8
+9270 dde9 dde9 dde9 * * 436f 8ea2c3ef,8ea2c3efv 694c e6a58c 694c 0000694c dde9 dde9 dde9 dde9 dde9 dde9 dde9
+9271 ddea ddea ddea * * 4370 8ea2c3f0,8ea2c3f0v 693b e6a4bb 693b 0000693b ddea ddea ddea ddea ddea ddea ddea
+9272 ddeb ddeb ddeb * * 4371 8ea2c3f1,8ea2c3f1v 694b e6a58b 694b 0000694b ddeb ddeb ddeb ddeb ddeb ddeb ddeb
+9273 ddec ddec ddec * * 4372 8ea2c3f2,8ea2c3f2v 6937 e6a4b7 6937 00006937 ddec ddec ddec ddec ddec ddec ddec
+9274 dded dded dded * * 4373 8ea2c3f3,8ea2c3f3v 695c e6a59c 695c 0000695c dded dded dded dded dded dded dded
+9275 ddee ddee ddee * * 4374 8ea2c3f4,8ea2c3f4v 694f e6a58f 694f 0000694f ddee ddee ddee ddee ddee ddee ddee
+9276 ddef ddef ddef * * 4375 8ea2c3f5,8ea2c3f5v 6951 e6a591 6951 00006951 ddef ddef ddef ddef ddef ddef ddef
+9277 ddf0 ddf0 ddf0 * * 4376 8ea2c3f6,8ea2c3f6v 6932 e6a4b2 6932 00006932 ddf0 ddf0 ddf0 ddf0 ddf0 ddf0 ddf0
+9278 ddf1 ddf1 ddf1 * * 4377 8ea2c3f7,8ea2c3f7v 6952 e6a592 6952 00006952 ddf1 ddf1 ddf1 ddf1 ddf1 ddf1 ddf1
+9279 ddf2 ddf2 ddf2 * * 4378 8ea2c3f8,8ea2c3f8v 692f e6a4af 692f 0000692f ddf2 ddf2 ddf2 ddf2 ddf2 ddf2 ddf2
+9280 ddf3 ddf3 ddf3 * * 4379 8ea2c3f9,8ea2c3f9v 697b e6a5bb 697b 0000697b ddf3 ddf3 ddf3 ddf3 ddf3 ddf3 ddf3
+9281 ddf4 ddf4 ddf4 * * 437a 8ea2c3fa,8ea2c3fav 693c e6a4bc 693c 0000693c ddf4 ddf4 ddf4 ddf4 ddf4 ddf4 ddf4
+9282 ddf5 ddf5 ddf5 * * 437b 8ea2c3fb,8ea2c3fbv 6b46 e6ad86 6b46 00006b46 ddf5 ddf5 ddf5 ddf5 ddf5 ddf5 ddf5
+9283 ddf6 ddf6 ddf6 * * 437c 8ea2c3fc,8ea2c3fcv 6b45 e6ad85 6b45 00006b45 ddf6 ddf6 ddf6 ddf6 ddf6 ddf6 ddf6
+9284 ddf7 ddf7 ddf7 * * 437d 8ea2c3fd,8ea2c3fdv 6b43 e6ad83 6b43 00006b43 ddf7 ddf7 ddf7 ddf7 ddf7 ddf7 ddf7
+9285 ddf8 ddf8 ddf8 * * 437e 8ea2c3fe,8ea2c3fev 6b42 e6ad82 6b42 00006b42 ddf8 ddf8 ddf8 ddf8 ddf8 ddf8 ddf8
+9286 ddf9 ddf9 ddf9 * * 4421 8ea2c4a1,8ea2c4a1v 6b48 e6ad88 6b48 00006b48 ddf9 ddf9 ddf9 ddf9 ddf9 ddf9 ddf9
+9287 ddfa ddfa ddfa * * 4422 8ea2c4a2,8ea2c4a2v 6b41 e6ad81 6b41 00006b41 ddfa ddfa ddfa ddfa ddfa ddfa ddfa
+9288 ddfb ddfb ddfb * * 4423 8ea2c4a3,8ea2c4a3v 6b9b e6ae9b 6b9b 00006b9b ddfb ddfb ddfb ddfb ddfb ddfb ddfb
+9289 ddfd ddfd ddfd * * 4424 8ea2c4a4,8ea2c4a4v 6bfb e6afbb 6bfb 00006bfb ddfd ddfd ddfd ddfd ddfd ddfd ddfd
+9290 ddfe ddfe ddfe * * 4425 8ea2c4a5,8ea2c4a5v 6bfc e6afbc 6bfc 00006bfc ddfe ddfe ddfe ddfe ddfe ddfe ddfe
+9291 de40 de40 de40 * * 4426 8ea2c4a6,8ea2c4a6v 6bf9 e6afb9 6bf9 00006bf9 de40 de40 de40 de40 de40 de40 de40
+9292 de41 de41 de41 * * 4427 8ea2c4a7,8ea2c4a7v 6bf7 e6afb7 6bf7 00006bf7 de41 de41 de41 de41 de41 de41 de41
+9293 de42 de42 de42 * * 4428 8ea2c4a8,8ea2c4a8v 6bf8 e6afb8 6bf8 00006bf8 de42 de42 de42 de42 de42 de42 de42
+9294 de43 de43 de43 * * 4429 8ea2c4a9,8ea2c4a9v 6e9b e6ba9b 6e9b 00006e9b de43 de43 de43 de43 de43 de43 de43
+9295 de44 de44 de44 * * 442a 8ea2c4aa,8ea2c4aav 6ed6 e6bb96 6ed6 00006ed6 de44 de44 de44 de44 de44 de44 de44
+9296 de45 de45 de45 * * 442b 8ea2c4ab,8ea2c4abv 6ec8 e6bb88 6ec8 00006ec8 de45 de45 de45 de45 de45 de45 de45
+9297 de46 de46 de46 * * 442c 8ea2c4ac,8ea2c4acv 6e8f e6ba8f 6e8f 00006e8f de46 de46 de46 de46 de46 de46 de46
+9298 de47 de47 de47 * * 442d 8ea2c4ad,8ea2c4adv 6ec0 e6bb80 6ec0 00006ec0 de47 de47 de47 de47 de47 de47 de47
+9299 de48 de48 de48 * * 442e 8ea2c4ae,8ea2c4aev 6e9f e6ba9f 6e9f 00006e9f de48 de48 de48 de48 de48 de48 de48
+9300 de49 de49 de49 * * 442f 8ea2c4af,8ea2c4afv 6e93 e6ba93 6e93 00006e93 de49 de49 de49 de49 de49 de49 de49
+9301 de4a de4a de4a * * 4430 8ea2c4b0,8ea2c4b0v 6e94 e6ba94 6e94 00006e94 de4a de4a de4a de4a de4a de4a de4a
+9302 de4b de4b de4b * * 4431 8ea2c4b1,8ea2c4b1v 6ea0 e6baa0 6ea0 00006ea0 de4b de4b de4b de4b de4b de4b de4b
+9303 de4c de4c de4c * * 4432 8ea2c4b2,8ea2c4b2v 6eb1 e6bab1 6eb1 00006eb1 de4c de4c de4c de4c de4c de4c de4c
+9304 de4d de4d de4d * * 4433 8ea2c4b3,8ea2c4b3v 6eb9 e6bab9 6eb9 00006eb9 de4d de4d de4d de4d de4d de4d de4d
+9305 de4e de4e de4e * * 4434 8ea2c4b4,8ea2c4b4v 6ec6 e6bb86 6ec6 00006ec6 de4e de4e de4e de4e de4e de4e de4e
+9306 de4f de4f de4f * * 4435 8ea2c4b5,8ea2c4b5v 6ed2 e6bb92 6ed2 00006ed2 de4f de4f de4f de4f de4f de4f de4f
+9307 de50 de50 de50 * * 4436 8ea2c4b6,8ea2c4b6v 6ebd e6babd 6ebd 00006ebd de50 de50 de50 de50 de50 de50 de50
+9308 de51 de51 de51 * * 4437 8ea2c4b7,8ea2c4b7v 6ec1 e6bb81 6ec1 00006ec1 de51 de51 de51 de51 de51 de51 de51
+9309 de52 de52 de52 * * 4438 8ea2c4b8,8ea2c4b8v 6e9e e6ba9e 6e9e 00006e9e de52 de52 de52 de52 de52 de52 de52
+9310 de53 de53 de53 * * 4439 8ea2c4b9,8ea2c4b9v 6ec9 e6bb89 6ec9 00006ec9 de53 de53 de53 de53 de53 de53 de53
+9311 de54 de54 de54 * * 443a 8ea2c4ba,8ea2c4bav 6eb7 e6bab7 6eb7 00006eb7 de54 de54 de54 de54 de54 de54 de54
+9312 de55 de55 de55 * * 443b 8ea2c4bb,8ea2c4bbv 6eb0 e6bab0 6eb0 00006eb0 de55 de55 de55 de55 de55 de55 de55
+9313 de56 de56 de56 * * 443c 8ea2c4bc,8ea2c4bcv 6ecd e6bb8d 6ecd 00006ecd de56 de56 de56 de56 de56 de56 de56
+9314 de57 de57 de57 * * 443d 8ea2c4bd,8ea2c4bdv 6ea6 e6baa6 6ea6 00006ea6 de57 de57 de57 de57 de57 de57 de57
+9315 de58 de58 de58 * * 443e 8ea2c4be,8ea2c4bev 6ecf e6bb8f 6ecf 00006ecf de58 de58 de58 de58 de58 de58 de58
+9316 de59 de59 de59 * * 443f 8ea2c4bf,8ea2c4bfv 6eb2 e6bab2 6eb2 00006eb2 de59 de59 de59 de59 de59 de59 de59
+9317 de5a de5a de5a * * 4440 8ea2c4c0,8ea2c4c0v 6ebe e6babe 6ebe 00006ebe de5a de5a de5a de5a de5a de5a de5a
+9318 de5b de5b de5b * * 4441 8ea2c4c1,8ea2c4c1v 6ec3 e6bb83 6ec3 00006ec3 de5b de5b de5b de5b de5b de5b de5b
+9319 de5c de5c de5c * * 4442 8ea2c4c2,8ea2c4c2v 6edc e6bb9c 6edc 00006edc de5c de5c de5c de5c de5c de5c de5c
+9320 de5d de5d de5d * * 4443 8ea2c4c3,8ea2c4c3v 6ed8 e6bb98 6ed8 00006ed8 de5d de5d de5d de5d de5d de5d de5d
+9321 de5e de5e de5e * * 4444 8ea2c4c4,8ea2c4c4v 6e99 e6ba99 6e99 00006e99 de5e de5e de5e de5e de5e de5e de5e
+9322 de5f de5f de5f * * 4445 8ea2c4c5,8ea2c4c5v 6e92 e6ba92 6e92 00006e92 de5f de5f de5f de5f de5f de5f de5f
+9323 de60 de60 de60 * * 4446 8ea2c4c6,8ea2c4c6v 6e8e e6ba8e 6e8e 00006e8e de60 de60 de60 de60 de60 de60 de60
+9324 de61 de61 de61 * * 4447 8ea2c4c7,8ea2c4c7v 6e8d e6ba8d 6e8d 00006e8d de61 de61 de61 de61 de61 de61 de61
+9325 de62 de62 de62 * * 4448 8ea2c4c8,8ea2c4c8v 6ea4 e6baa4 6ea4 00006ea4 de62 de62 de62 de62 de62 de62 de62
+9326 de63 de63 de63 * * 4449 8ea2c4c9,8ea2c4c9v 6ea1 e6baa1 6ea1 00006ea1 de63 de63 de63 de63 de63 de63 de63
+9327 de64 de64 de64 * * 444a 8ea2c4ca,8ea2c4cav 6ebf e6babf 6ebf 00006ebf de64 de64 de64 de64 de64 de64 de64
+9328 de65 de65 de65 * * 444b 8ea2c4cb,8ea2c4cbv 6eb3 e6bab3 6eb3 00006eb3 de65 de65 de65 de65 de65 de65 de65
+9329 de66 de66 de66 * * 444c 8ea2c4cc,8ea2c4ccv 6ed0 e6bb90 6ed0 00006ed0 de66 de66 de66 de66 de66 de66 de66
+9330 de67 de67 de67 * * 444d 8ea2c4cd,8ea2c4cdv 6eca e6bb8a 6eca 00006eca de67 de67 de67 de67 de67 de67 de67
+9331 de68 de68 de68 * * 444e 8ea2c4ce,8ea2c4cev 6e97 e6ba97 6e97 00006e97 de68 de68 de68 de68 de68 de68 de68
+9332 de69 de69 de69 * * 444f 8ea2c4cf,8ea2c4cfv 6eae e6baae 6eae 00006eae de69 de69 de69 de69 de69 de69 de69
+9333 de6a de6a de6a * * 4450 8ea2c4d0,8ea2c4d0v 6ea3 e6baa3 6ea3 00006ea3 de6a de6a de6a de6a de6a de6a de6a
+9334 de6b de6b de6b * * 4451 8ea2c4d1,8ea2c4d1v 7147 e78587 7147 00007147 de6b de6b de6b de6b de6b de6b de6b
+9335 de6c de6c de6c * * 4452 8ea2c4d2,8ea2c4d2v 7154 e78594 7154 00007154 de6c de6c de6c de6c de6c de6c de6c
+9336 de6d de6d de6d * * 4453 8ea2c4d3,8ea2c4d3v 7152 e78592 7152 00007152 de6d de6d de6d de6d de6d de6d de6d
+9337 de6e de6e de6e * * 4454 8ea2c4d4,8ea2c4d4v 7163 e785a3 7163 00007163 de6e de6e de6e de6e de6e de6e de6e
+9338 de6f de6f de6f * * 4455 8ea2c4d5,8ea2c4d5v 7160 e785a0 7160 00007160 de6f de6f de6f de6f de6f de6f de6f
+9339 de70 de70 de70 * * 4456 8ea2c4d6,8ea2c4d6v 7141 e78581 7141 00007141 de70 de70 de70 de70 de70 de70 de70
+9340 de71 de71 de71 * * 4457 8ea2c4d7,8ea2c4d7v 715d e7859d 715d 0000715d de71 de71 de71 de71 de71 de71 de71
+9341 de72 de72 de72 * * 4458 8ea2c4d8,8ea2c4d8v 7162 e785a2,eeba98 7162,ee98 00007162,0000ee98 a0df,de72 de72 de72 de72 de72 de72 a0df,de72
+9342 de73 de73 de73 * * 4459 8ea2c4d9,8ea2c4d9v 7172 e785b2 7172 00007172 de73 de73 de73 de73 de73 de73 de73
+9343 de74 de74 de74 * * 445a 8ea2c4da,8ea2c4dav 7178 e785b8 7178 00007178 de74 de74 de74 de74 de74 de74 de74
+9344 de75 de75 de75 * * 445b 8ea2c4db,8ea2c4dbv 716a e785aa 716a 0000716a de75 de75 de75 de75 de75 de75 de75
+9345 de76 de76 de76 * * 445c 8ea2c4dc,8ea2c4dcv 7161 e785a1 7161 00007161 de76 de76 de76 de76 de76 de76 de76
+9346 de77 de77 de77 * * 445d 8ea2c4dd,8ea2c4ddv 7142 e78582 7142 00007142 de77 de77 de77 de77 de77 de77 de77
+9347 de78 de78 de78 * * 445e 8ea2c4de,8ea2c4dev 7158 e78598 7158 00007158 de78 de78 de78 de78 de78 de78 de78
+9348 de79 de79 de79 * * 445f 8ea2c4df,8ea2c4dfv 7143 e78583 7143 00007143 de79 de79 de79 de79 de79 de79 de79
+9349 de7a de7a de7a * * 4460 8ea2c4e0,8ea2c4e0v 714b e7858b 714b 0000714b de7a de7a de7a de7a de7a de7a de7a
+9350 de7b de7b de7b * * 4461 8ea2c4e1,8ea2c4e1v 7170 e785b0 7170 00007170 de7b de7b de7b de7b de7b de7b de7b
+9351 de7c de7c de7c * * 4462 8ea2c4e2,8ea2c4e2v 715f e7859f 715f 0000715f de7c de7c de7c de7c de7c de7c de7c
+9352 de7d de7d de7d * * 4463 8ea2c4e3,8ea2c4e3v 7150 e78590 7150 00007150 de7d de7d de7d de7d de7d de7d de7d
+9353 de7e de7e de7e * * 4464 8ea2c4e4,8ea2c4e4v 7153 e78593 7153 00007153 de7e de7e de7e de7e de7e de7e de7e
+9354 dea1 dea1 dea1 * * 4465 8ea2c4e5,8ea2c4e5v 7144 e78584 7144 00007144 dea1 dea1 dea1 dea1 dea1 dea1 dea1
+9355 dea2 dea2 dea2 * * 4466 8ea2c4e6,8ea2c4e6v 714d e7858d 714d 0000714d dea2 dea2 dea2 dea2 dea2 dea2 dea2
+9356 dea3 dea3 dea3 * * 4467 8ea2c4e7,8ea2c4e7v 715a e7859a 715a 0000715a dea3 dea3 dea3 dea3 dea3 dea3 dea3
+9357 dea4 dea4 dea4 * * 4468 8ea2c4e8,8ea2c4e8v 724f e7898f 724f 0000724f dea4 dea4 dea4 dea4 dea4 dea4 dea4
+9358 dea5 dea5 dea5 * * 4469 8ea2c4e9,8ea2c4e9v 728d e78a8d 728d 0000728d dea5 dea5 dea5 dea5 dea5 dea5 dea5
+9359 dea6 dea6 dea6 * * 446a 8ea2c4ea,8ea2c4eav 728c e78a8c 728c 0000728c dea6 dea6 dea6 dea6 dea6 dea6 dea6
+9360 dea7 dea7 dea7 * * 446b 8ea2c4eb,8ea2c4ebv 7291 e78a91 7291 00007291 dea7 dea7 dea7 dea7 dea7 dea7 dea7
+9361 dea8 dea8 dea8 * * 446c 8ea2c4ec,8ea2c4ecv 7290 e78a90 7290 00007290 dea8 dea8 dea8 dea8 dea8 dea8 dea8
+9362 dea9 dea9 dea9 * * 446d 8ea2c4ed,8ea2c4edv 728e e78a8e 728e 0000728e dea9 dea9 dea9 dea9 dea9 dea9 dea9
+9363 deaa deaa deaa * * 446e 8ea2c4ee,8ea2c4eev 733c e78cbc 733c 0000733c deaa deaa deaa deaa deaa deaa deaa
+9364 deab deab deab * * 446f 8ea2c4ef,8ea2c4efv 7342 e78d82 7342 00007342 deab deab deab deab deab deab deab
+9365 deac deac deac * * 4470 8ea2c4f0,8ea2c4f0v 733b e78cbb 733b 0000733b deac deac deac deac deac deac deac
+9366 dead dead dead * * 4471 8ea2c4f1,8ea2c4f1v 733a e78cba 733a 0000733a dead dead dead dead dead dead dead
+9367 deae deae deae * * 4472 8ea2c4f2,8ea2c4f2v 7340 e78d80 7340 00007340 deae deae deae deae deae deae deae
+9368 deaf deaf deaf * * 4473 8ea2c4f3,8ea2c4f3v 734a e78d8a 734a 0000734a deaf deaf deaf deaf deaf deaf deaf
+9369 deb0 deb0 deb0 * * 4474 8ea2c4f4,8ea2c4f4v 7349 e78d89 7349 00007349 deb0 deb0 deb0 deb0 deb0 deb0 deb0
+9370 deb1 deb1 deb1 * * 4475 8ea2c4f5,8ea2c4f5v 7444 e79184 7444 00007444 deb1 deb1 deb1 deb1 deb1 deb1 deb1
+9371 deb2 deb2 deb2 * * 4476 8ea2c4f6,8ea2c4f6v 744a e7918a 744a 0000744a deb2 deb2 deb2 deb2 deb2 deb2 deb2
+9372 deb3 deb3 deb3 * * 4477 8ea2c4f7,8ea2c4f7v 744b e7918b 744b 0000744b deb3 deb3 deb3 deb3 deb3 deb3 deb3
+9373 deb4 deb4 deb4 * * 4478 8ea2c4f8,8ea2c4f8v 7452 e79192 7452 00007452 deb4 deb4 deb4 deb4 deb4 deb4 deb4
+9374 deb5 deb5 deb5 * * 4479 8ea2c4f9,8ea2c4f9v 7451 e79191 7451 00007451 deb5 deb5 deb5 deb5 deb5 deb5 deb5
+9375 deb6 deb6 deb6 * * 447a 8ea2c4fa,8ea2c4fav 7457 e79197 7457 00007457 deb6 deb6 deb6 deb6 deb6 deb6 deb6
+9376 deb7 deb7 deb7 * * 447b 8ea2c4fb,8ea2c4fbv 7440 e79180 7440 00007440 deb7 deb7 deb7 deb7 deb7 deb7 deb7
+9377 deb8 deb8 deb8 * * 447c 8ea2c4fc,8ea2c4fcv 744f e7918f 744f 0000744f deb8 deb8 deb8 deb8 deb8 deb8 deb8
+9378 deb9 deb9 deb9 * * 447d 8ea2c4fd,8ea2c4fdv 7450 e79190 7450 00007450 deb9 deb9 deb9 deb9 deb9 deb9 deb9
+9379 deba deba deba * * 447e 8ea2c4fe,8ea2c4fev 744e e7918e 744e 0000744e deba deba deba deba deba deba deba
+9380 debb debb debb * * 4521 8ea2c5a1,8ea2c5a1v 7442 e79182 7442 00007442 debb debb debb debb debb debb debb
+9381 debc debc debc * * 4522 8ea2c5a2,8ea2c5a2v 7446 e79186 7446 00007446 debc debc debc debc debc debc debc
+9382 debd debd debd * * 4523 8ea2c5a3,8ea2c5a3v 744d e7918d 744d 0000744d debd debd debd debd debd debd debd
+9383 debe debe debe * * 4524 8ea2c5a4,8ea2c5a4v 7454 e79194 7454 00007454 debe debe debe debe debe debe debe
+9384 debf debf debf * * 4525 8ea2c5a5,8ea2c5a5v 74e1 e793a1 74e1 000074e1 debf debf debf debf debf debf debf
+9385 dec0 dec0 dec0 * * 4526 8ea2c5a6,8ea2c5a6v 74ff e793bf 74ff 000074ff dec0 dec0 dec0 dec0 dec0 dec0 dec0
+9386 dec1 dec1 dec1 * * 4527 8ea2c5a7,8ea2c5a7v 74fe e793be 74fe 000074fe dec1 dec1 dec1 dec1 dec1 dec1 dec1
+9387 dec2 dec2 dec2 * * 4528 8ea2c5a8,8ea2c5a8v 74fd e793bd 74fd 000074fd dec2 dec2 dec2 dec2 dec2 dec2 dec2
+9388 dec3 dec3 dec3 * * 4529 8ea2c5a9,8ea2c5a9v 751d e7949d 751d 0000751d dec3 dec3 dec3 dec3 dec3 dec3 dec3
+9389 dec4 dec4 dec4 * * 452a 8ea2c5aa,8ea2c5aav 7579 e795b9 7579 00007579 dec4 dec4 dec4 dec4 dec4 dec4 dec4
+9390 dec5 dec5 dec5 * * 452b 8ea2c5ab,8ea2c5abv 7577 e795b7 7577 00007577 dec5 dec5 dec5 dec5 dec5 dec5 dec5
+9391 dec6 dec6 dec6 * * 452c 8ea2c5ac,8ea2c5acv 6983 e6a683 6983 00006983 dec6 dec6 dec6 dec6 dec6 dec6 dec6
+9392 dec7 dec7 dec7 * * 452d 8ea2c5ad,8ea2c5adv 75ef e797af 75ef 000075ef dec7 dec7 dec7 dec7 dec7 dec7 dec7
+9393 dec8 dec8 dec8 * * 452e 8ea2c5ae,8ea2c5aev 760f e7988f 760f 0000760f dec8 dec8 dec8 dec8 dec8 dec8 dec8
+9394 dec9 dec9 dec9 * * 452f 8ea2c5af,8ea2c5afv 7603 e79883 7603 00007603 dec9 dec9 dec9 dec9 dec9 dec9 dec9
+9395 deca deca deca * * 4530 8ea2c5b0,8ea2c5b0v 75f7 e797b7 75f7 000075f7 deca deca deca deca deca deca deca
+9396 decb decb decb * * 4531 8ea2c5b1,8ea2c5b1v 75fe e797be 75fe 000075fe decb decb decb decb decb decb decb
+9397 decc decc decc * * 4532 8ea2c5b2,8ea2c5b2v 75fc e797bc 75fc 000075fc decc decc decc decc decc decc decc
+9398 decd decd decd * * 4533 8ea2c5b3,8ea2c5b3v 75f9 e797b9,eeb5ae 75f9,ed6e 000075f9,0000ed6e 9eef,decd decd decd decd decd decd 9eef,decd
+9399 dece dece dece * * 4534 8ea2c5b4,8ea2c5b4v 75f8 e797b8 75f8 000075f8 dece dece dece dece dece dece dece
+9400 decf decf decf * * 4535 8ea2c5b5,8ea2c5b5v 7610 e79890 7610 00007610 decf decf decf decf decf decf decf
+9401 ded0 ded0 ded0 * * 4536 8ea2c5b6,8ea2c5b6v 75fb e797bb 75fb 000075fb ded0 ded0 ded0 ded0 ded0 ded0 ded0
+9402 ded1 ded1 ded1 * * 4537 8ea2c5b7,8ea2c5b7v 75f6 e797b6 75f6 000075f6 ded1 ded1 ded1 ded1 ded1 ded1 ded1
+9403 ded2 ded2 ded2 * * 4538 8ea2c5b8,8ea2c5b8v 75ed e797ad 75ed 000075ed ded2 ded2 ded2 ded2 ded2 ded2 ded2
+9404 ded3 ded3 ded3 * * 4539 8ea2c5b9,8ea2c5b9v 75f5 e797b5 75f5 000075f5 ded3 ded3 ded3 ded3 ded3 ded3 ded3
+9405 ded4 ded4 ded4 * * 453a 8ea2c5ba,8ea2c5bav 75fd e797bd 75fd 000075fd ded4 ded4 ded4 ded4 ded4 ded4 ded4
+9406 ded5 ded5 ded5 * * 453b 8ea2c5bb,8ea2c5bbv 7699 e79a99 7699 00007699 ded5 ded5 ded5 ded5 ded5 ded5 ded5
+9407 ded6 ded6 ded6 * * 453c 8ea2c5bc,8ea2c5bcv 76b5 e79ab5 76b5 000076b5 ded6 ded6 ded6 ded6 ded6 ded6 ded6
+9408 ded7 ded7 ded7 * * 453d 8ea2c5bd,8ea2c5bdv 76dd e79b9d 76dd 000076dd ded7 ded7 ded7 ded7 ded7 ded7 ded7
+9409 ded8 ded8 ded8 * * 453e 8ea2c5be,8ea2c5bev 7755 e79d95 7755 00007755 ded8 ded8 ded8 ded8 ded8 ded8 ded8
+9410 ded9 ded9 ded9 * * 453f 8ea2c5bf,8ea2c5bfv 775f e79d9f 775f 0000775f ded9 ded9 ded9 ded9 ded9 ded9 ded9
+9411 deda deda deda * * 4540 8ea2c5c0,8ea2c5c0v 7760 e79da0 7760 00007760 deda deda deda deda deda deda deda
+9412 dedb dedb dedb * * 4541 8ea2c5c1,8ea2c5c1v 7752 e79d92 7752 00007752 dedb dedb dedb dedb dedb dedb dedb
+9413 dedc dedc dedc * * 4542 8ea2c5c2,8ea2c5c2v 7756 e79d96 7756 00007756 dedc dedc dedc dedc dedc dedc dedc
+9414 dedd dedd dedd * * 4543 8ea2c5c3,8ea2c5c3v 775a e79d9a 775a 0000775a dedd dedd dedd dedd dedd dedd dedd
+9415 dede dede dede * * 4544 8ea2c5c4,8ea2c5c4v 7769 e79da9 7769 00007769 dede dede dede dede dede dede dede
+9416 dedf dedf dedf * * 4545 8ea2c5c5,8ea2c5c5v 7767 e79da7 7767 00007767 dedf dedf dedf dedf dedf dedf dedf
+9417 dee0 dee0 dee0 * * 4546 8ea2c5c6,8ea2c5c6v 7754 e79d94 7754 00007754 dee0 dee0 dee0 dee0 dee0 dee0 dee0
+9418 dee1 dee1 dee1 * * 4547 8ea2c5c7,8ea2c5c7v 7759 e79d99 7759 00007759 dee1 dee1 dee1 dee1 dee1 dee1 dee1
+9419 dee2 dee2 dee2 * * 4548 8ea2c5c8,8ea2c5c8v 776d e79dad 776d 0000776d dee2 dee2 dee2 dee2 dee2 dee2 dee2
+9420 dee3 dee3 dee3 * * 4549 8ea2c5c9,8ea2c5c9v 77e0 e79fa0 77e0 000077e0 dee3 dee3 dee3 dee3 dee3 dee3 dee3
+9421 dee4 dee4 dee4 * * 454a 8ea2c5ca,8ea2c5cav 7887 e7a287 7887 00007887 dee4 dee4 dee4 dee4 dee4 dee4 dee4
+9422 dee5 dee5 dee5 * * 454b 8ea2c5cb,8ea2c5cbv 789a e7a29a 789a 0000789a dee5 dee5 dee5 dee5 dee5 dee5 dee5
+9423 dee6 dee6 dee6 * * 454c 8ea2c5cc,8ea2c5ccv 7894 e7a294 7894 00007894 dee6 dee6 dee6 dee6 dee6 dee6 dee6
+9424 dee7 dee7 dee7 * * 454d 8ea2c5cd,8ea2c5cdv 788f e7a28f 788f 0000788f dee7 dee7 dee7 dee7 dee7 dee7 dee7
+9425 dee8 dee8 dee8 * * 454e 8ea2c5ce,8ea2c5cev 7884 e7a284 7884 00007884 dee8 dee8 dee8 dee8 dee8 dee8 dee8
+9426 dee9 dee9 dee9 * * 454f 8ea2c5cf,8ea2c5cfv 7895 e7a295 7895 00007895 dee9 dee9 dee9 dee9 dee9 dee9 dee9
+9427 deea deea deea * * 4550 8ea2c5d0,8ea2c5d0v 7885 e7a285 7885 00007885 deea deea deea deea deea deea deea
+9428 deeb deeb deeb * * 4551 8ea2c5d1,8ea2c5d1v 7886 e7a286 7886 00007886 deeb deeb deeb deeb deeb deeb deeb
+9429 deec deec deec * * 4552 8ea2c5d2,8ea2c5d2v 78a1 e7a2a1 78a1 000078a1 deec deec deec deec deec deec deec
+9430 deed deed deed * * 4553 8ea2c5d3,8ea2c5d3v 7883 e7a283 7883 00007883 deed deed deed deed deed deed deed
+9431 deee deee deee * * 4554 8ea2c5d4,8ea2c5d4v 7879 e7a1b9 7879 00007879 deee deee deee deee deee deee deee
+9432 deef deef deef * * 4555 8ea2c5d5,8ea2c5d5v 7899 e7a299 7899 00007899 deef deef deef deef deef deef deef
+9433 def0 def0 def0 * * 4556 8ea2c5d6,8ea2c5d6v 7880 e7a280 7880 00007880 def0 def0 def0 def0 def0 def0 def0
+9434 def1 def1 def1 * * 4557 8ea2c5d7,8ea2c5d7v 7896 e7a296 7896 00007896 def1 def1 def1 def1 def1 def1 def1
+9435 def2 def2 def2 * * 4558 8ea2c5d8,8ea2c5d8v 787b e7a1bb 787b 0000787b def2 def2 def2 def2 def2 def2 def2
+9436 def3 def3 def3 * * 4559 8ea2c5d9,8ea2c5d9v 797c e7a5bc 797c 0000797c def3 def3 def3 def3 def3 def3 def3
+9437 def4 def4 def4 * * 455a 8ea2c5da,8ea2c5dav 7982 e7a682 7982 00007982 def4 def4 def4 def4 def4 def4 def4
+9438 def5 def5 def5 * * 455b 8ea2c5db,8ea2c5dbv 797d e7a5bd 797d 0000797d def5 def5 def5 def5 def5 def5 def5
+9439 def6 def6 def6 * * 455c 8ea2c5dc,8ea2c5dcv 7979 e7a5b9 7979 00007979 def6 def6 def6 def6 def6 def6 def6
+9440 def7 def7 def7 * * 455d 8ea2c5dd,8ea2c5ddv 7a11 e7a891 7a11 00007a11 def7 def7 def7 def7 def7 def7 def7
+9441 def8 def8 def8 * * 455e 8ea2c5de,8ea2c5dev 7a18 e7a898 7a18 00007a18 def8 def8 def8 def8 def8 def8 def8
+9442 def9 def9 def9 * * 455f 8ea2c5df,8ea2c5dfv 7a19 e7a899 7a19 00007a19 def9 def9 def9 def9 def9 def9 def9
+9443 defa defa defa * * 4560 8ea2c5e0,8ea2c5e0v 7a12 e7a892 7a12 00007a12 defa defa defa defa defa defa defa
+9444 defb defb defb * * 4561 8ea2c5e1,8ea2c5e1v 7a17 e7a897 7a17 00007a17 defb defb defb defb defb defb defb
+9445 defc defc defc * * 4562 8ea2c5e2,8ea2c5e2v 7a15 e7a895 7a15 00007a15 defc defc defc defc defc defc defc
+9446 defd defd defd * * 4563 8ea2c5e3,8ea2c5e3v 7a22 e7a8a2 7a22 00007a22 defd defd defd defd defd defd defd
+9447 defe defe defe * * 4564 8ea2c5e4,8ea2c5e4v 7a13 e7a893 7a13 00007a13 defe defe defe defe defe defe defe
+9448 df40 df40 df40 * * 4565 8ea2c5e5,8ea2c5e5v 7a1b e7a89b 7a1b 00007a1b df40 df40 df40 df40 df40 df40 df40
+9449 df41 df41 df41 * * 4566 8ea2c5e6,8ea2c5e6v 7a10 e7a890 7a10 00007a10 df41 df41 df41 df41 df41 df41 df41
+9450 df42 df42 df42 * * 4567 8ea2c5e7,8ea2c5e7v 7aa3 e7aaa3 7aa3 00007aa3 df42 df42 df42 df42 df42 df42 df42
+9451 df43 df43 df43 * * 4568 8ea2c5e8,8ea2c5e8v 7aa2 e7aaa2 7aa2 00007aa2 df43 df43 df43 df43 df43 df43 df43
+9452 df44 df44 df44 * * 4569 8ea2c5e9,8ea2c5e9v 7a9e e7aa9e 7a9e 00007a9e df44 df44 df44 df44 df44 df44 df44
+9453 df45 df45 df45 * * 456a 8ea2c5ea,8ea2c5eav 7aeb e7abab 7aeb 00007aeb df45 df45 df45 df45 df45 df45 df45
+9454 df46 df46 df46 * * 456b 8ea2c5eb,8ea2c5ebv 7b66 e7ada6 7b66 00007b66 df46 df46 df46 df46 df46 df46 df46
+9455 df47 df47 df47 * * 456c 8ea2c5ec,8ea2c5ecv 7b64 e7ada4 7b64 00007b64 df47 df47 df47 df47 df47 df47 df47
+9456 df48 df48 df48 * * 456d 8ea2c5ed,8ea2c5edv 7b6d e7adad 7b6d 00007b6d df48 df48 df48 df48 df48 df48 df48
+9457 df49 df49 df49 * * 456e 8ea2c5ee,8ea2c5eev 7b74 e7adb4 7b74 00007b74 df49 df49 df49 df49 df49 df49 df49
+9458 df4a df4a df4a * * 456f 8ea2c5ef,8ea2c5efv 7b69 e7ada9 7b69 00007b69 df4a df4a df4a df4a df4a df4a df4a
+9459 df4b df4b df4b * * 4570 8ea2c5f0,8ea2c5f0v 7b72 e7adb2 7b72 00007b72 df4b df4b df4b df4b df4b df4b df4b
+9460 df4c df4c df4c * * 4571 8ea2c5f1,8ea2c5f1v 7b65 e7ada5 7b65 00007b65 df4c df4c df4c df4c df4c df4c df4c
+9461 df4d df4d df4d * * 4572 8ea2c5f2,8ea2c5f2v 7b73 e7adb3 7b73 00007b73 df4d df4d df4d df4d df4d df4d df4d
+9462 df4e df4e df4e * * 4573 8ea2c5f3,8ea2c5f3v 7b71 e7adb1 7b71 00007b71 df4e df4e df4e df4e df4e df4e df4e
+9463 df4f df4f df4f * * 4574 8ea2c5f4,8ea2c5f4v 7b70 e7adb0 7b70 00007b70 df4f df4f df4f df4f df4f df4f df4f
+9464 df50 df50 df50 * * 4575 8ea2c5f5,8ea2c5f5v 7b61 e7ada1 7b61 00007b61 df50 df50 df50 df50 df50 df50 df50
+9465 df51 df51 df51 * * 4576 8ea2c5f6,8ea2c5f6v 7b78 e7adb8 7b78 00007b78 df51 df51 df51 df51 df51 df51 df51
+9466 df52 df52 df52 * * 4577 8ea2c5f7,8ea2c5f7v 7b76 e7adb6 7b76 00007b76 df52 df52 df52 df52 df52 df52 df52
+9467 df53 df53 df53 * * 4578 8ea2c5f8,8ea2c5f8v 7b63 e7ada3 7b63 00007b63 df53 df53 df53 df53 df53 df53 df53
+9468 df54 df54 df54 * * 4579 8ea2c5f9,8ea2c5f9v 7cb2 e7b2b2 7cb2 00007cb2 df54 df54 df54 df54 df54 df54 df54
+9469 df55 df55 df55 * * 457a 8ea2c5fa,8ea2c5fav 7cb4 e7b2b4 7cb4 00007cb4 df55 df55 df55 df55 df55 df55 df55
+9470 df56 df56 df56 * * 457b 8ea2c5fb,8ea2c5fbv 7caf e7b2af 7caf 00007caf df56 df56 df56 df56 df56 df56 df56
+9471 df57 df57 df57 * * 457c 8ea2c5fc,8ea2c5fcv 7d88 e7b688 7d88 00007d88 df57 df57 df57 df57 df57 df57 df57
+9472 df58 df58 df58 * * 457d 8ea2c5fd,8ea2c5fdv 7d86 e7b686 7d86 00007d86 df58 df58 df58 df58 df58 df58 df58
+9473 df59 df59 df59 * * 457e 8ea2c5fe,8ea2c5fev 7d80 e7b680 7d80 00007d80 df59 df59 df59 df59 df59 df59 df59
+9474 df5a df5a df5a * * 4621 8ea2c6a1,8ea2c6a1v 7d8d e7b68d 7d8d 00007d8d df5a df5a df5a df5a df5a df5a df5a
+9475 df5b df5b df5b * * 4622 8ea2c6a2,8ea2c6a2v 7d7f e7b5bf 7d7f 00007d7f df5b df5b df5b df5b df5b df5b df5b
+9476 df5c df5c df5c * * 4623 8ea2c6a3,8ea2c6a3v 7d85 e7b685 7d85 00007d85 df5c df5c df5c df5c df5c df5c df5c
+9477 df5d df5d df5d * * 4624 8ea2c6a4,8ea2c6a4v 7d7a e7b5ba 7d7a 00007d7a df5d df5d df5d df5d df5d df5d df5d
+9478 df5e df5e df5e * * 4625 8ea2c6a5,8ea2c6a5v 7d8e e7b68e 7d8e 00007d8e df5e df5e df5e df5e df5e df5e df5e
+9479 df5f df5f df5f * * 4626 8ea2c6a6,8ea2c6a6v 7d7b e7b5bb 7d7b 00007d7b df5f df5f df5f df5f df5f df5f df5f
+9480 df60 df60 df60 * * 4627 8ea2c6a7,8ea2c6a7v 7d83 e7b683 7d83 00007d83 df60 df60 df60 df60 df60 df60 df60
+9481 df61 df61 df61 * * 4628 8ea2c6a8,8ea2c6a8v 7d7c e7b5bc 7d7c 00007d7c df61 df61 df61 df61 df61 df61 df61
+9482 df62 df62 df62 * * 4629 8ea2c6a9,8ea2c6a9v 7d8c e7b68c 7d8c 00007d8c df62 df62 df62 df62 df62 df62 df62
+9483 df63 df63 df63 * * 462a 8ea2c6aa,8ea2c6aav 7d94 e7b694 7d94 00007d94 df63 df63 df63 df63 df63 df63 df63
+9484 df64 df64 df64 * * 462b 8ea2c6ab,8ea2c6abv 7d84 e7b684 7d84 00007d84 df64 df64 df64 df64 df64 df64 df64
+9485 df65 df65 df65 * * 462c 8ea2c6ac,8ea2c6acv 7d7d e7b5bd 7d7d 00007d7d df65 df65 df65 df65 df65 df65 df65
+9486 df66 df66 df66 * * 462d 8ea2c6ad,8ea2c6adv 7d92 e7b692 7d92 00007d92 df66 df66 df66 df66 df66 df66 df66
+9487 df67 df67 df67 * * 462e 8ea2c6ae,8ea2c6aev 7f6d e7bdad 7f6d 00007f6d df67 df67 df67 df67 df67 df67 df67
+9488 df68 df68 df68 * * 462f 8ea2c6af,8ea2c6afv 7f6b e7bdab 7f6b 00007f6b df68 df68 df68 df68 df68 df68 df68
+9489 df69 df69 df69 * * 4630 8ea2c6b0,8ea2c6b0v 7f67 e7bda7 7f67 00007f67 df69 df69 df69 df69 df69 df69 df69
+9490 df6a df6a df6a * * 4631 8ea2c6b1,8ea2c6b1v 7f68 e7bda8 7f68 00007f68 df6a df6a df6a df6a df6a df6a df6a
+9491 df6b df6b df6b * * 4632 8ea2c6b2,8ea2c6b2v 7f6c e7bdac 7f6c 00007f6c df6b df6b df6b df6b df6b df6b df6b
+9492 df6c df6c df6c * * 4633 8ea2c6b3,8ea2c6b3v 7fa6 e7bea6 7fa6 00007fa6 df6c df6c df6c df6c df6c df6c df6c
+9493 df6d df6d df6d * * 4634 8ea2c6b4,8ea2c6b4v 7fa5 e7bea5 7fa5 00007fa5 df6d df6d df6d df6d df6d df6d df6d
+9494 df6e df6e df6e * * 4635 8ea2c6b5,8ea2c6b5v 7fa7 e7bea7 7fa7 00007fa7 df6e df6e df6e df6e df6e df6e df6e
+9495 df6f df6f df6f * * 4636 8ea2c6b6,8ea2c6b6v 7fdb e7bf9b 7fdb 00007fdb df6f df6f df6f df6f df6f df6f df6f
+9496 df70 df70 df70 * * 4637 8ea2c6b7,8ea2c6b7v 7fdc e7bf9c 7fdc 00007fdc df70 df70 df70 df70 df70 df70 df70
+9497 df71 df71 df71 * * 4638 8ea2c6b8,8ea2c6b8v 8021 e880a1 8021 00008021 df71 df71 df71 df71 df71 df71 df71
+9498 df72 df72 df72 * * 4639 8ea2c6b9,8ea2c6b9v 8164 e885a4 8164 00008164 df72 df72 df72 df72 df72 df72 df72
+9499 df73 df73 df73 * * 463a 8ea2c6ba,8ea2c6bav 8160 e885a0 8160 00008160 df73 df73 df73 df73 df73 df73 df73
+9500 df74 df74 df74 * * 463b 8ea2c6bb,8ea2c6bbv 8177 e885b7 8177 00008177 df74 df74 df74 df74 df74 df74 df74
+9501 df75 df75 df75 * * 463c 8ea2c6bc,8ea2c6bcv 815c e8859c 815c 0000815c df75 df75 df75 df75 df75 df75 df75
+9502 df76 df76 df76 * * 463d 8ea2c6bd,8ea2c6bdv 8169 e885a9 8169 00008169 df76 df76 df76 df76 df76 df76 df76
+9503 df77 df77 df77 * * 463e 8ea2c6be,8ea2c6bev 815b e8859b 815b 0000815b df77 df77 df77 df77 df77 df77 df77
+9504 df78 df78 df78 * * 463f 8ea2c6bf,8ea2c6bfv 8162 e885a2 8162 00008162 df78 df78 df78 df78 df78 df78 df78
+9505 df79 df79 df79 * * 4640 8ea2c6c0,8ea2c6c0v 8172 e885b2 8172 00008172 df79 df79 df79 df79 df79 df79 df79
+9506 df7a df7a df7a * * 4641 8ea2c6c1,8ea2c6c1v 6721 e69ca1 6721 00006721 df7a df7a df7a df7a df7a df7a df7a
+9507 df7b df7b df7b * * 4642 8ea2c6c2,8ea2c6c2v 815e e8859e 815e 0000815e df7b df7b df7b df7b df7b df7b df7b
+9508 df7c df7c df7c * * 4643 8ea2c6c3,8ea2c6c3v 8176 e885b6 8176 00008176 df7c df7c df7c df7c df7c df7c df7c
+9509 df7d df7d df7d * * 4644 8ea2c6c4,8ea2c6c4v 8167 e885a7 8167 00008167 df7d df7d df7d df7d df7d df7d df7d
+9510 df7e df7e df7e * * 4645 8ea2c6c5,8ea2c6c5v 816f e885af 816f 0000816f df7e df7e df7e df7e df7e df7e df7e
+9511 dfa1 dfa1 dfa1 * * 4646 8ea2c6c6,8ea2c6c6v 8144 e88584 8144 00008144 dfa1 dfa1 dfa1 dfa1 dfa1 dfa1 dfa1
+9512 dfa2 dfa2 dfa2 * * 4647 8ea2c6c7,8ea2c6c7v 8161 e885a1 8161 00008161 dfa2 dfa2 dfa2 dfa2 dfa2 dfa2 dfa2
+9513 dfa3 dfa3 dfa3 * * 4648 8ea2c6c8,8ea2c6c8v 821d e8889d 821d 0000821d dfa3 dfa3 dfa3 dfa3 dfa3 dfa3 dfa3
+9514 dfa4 dfa4 dfa4 * * 4649 8ea2c6c9,8ea2c6c9v 8249 e88989 8249 00008249 dfa4 dfa4 dfa4 dfa4 dfa4 dfa4 dfa4
+9515 dfa5 dfa5 dfa5 * * 464a 8ea2c6ca,8ea2c6cav 8244 e88984 8244 00008244 dfa5 dfa5 dfa5 dfa5 dfa5 dfa5 dfa5
+9516 dfa6 dfa6 dfa6 * * 464b 8ea2c6cb,8ea2c6cbv 8240 e88980 8240 00008240 dfa6 dfa6 dfa6 dfa6 dfa6 dfa6 dfa6
+9517 dfa7 dfa7 dfa7 * * 464c 8ea2c6cc,8ea2c6ccv 8242 e88982 8242 00008242 dfa7 dfa7 dfa7 dfa7 dfa7 dfa7 dfa7
+9518 dfa8 dfa8 dfa8 * * 464d 8ea2c6cd,8ea2c6cdv 8245 e88985 8245 00008245 dfa8 dfa8 dfa8 dfa8 dfa8 dfa8 dfa8
+9519 dfa9 dfa9 dfa9 * * 464e 8ea2c6ce,8ea2c6cev 84f1 e893b1 84f1 000084f1 dfa9 dfa9 dfa9 dfa9 dfa9 dfa9 dfa9
+9520 dfaa dfaa dfaa * * 464f 8ea2c6cf,8ea2c6cfv 843f e890bf 843f 0000843f dfaa dfaa dfaa dfaa dfaa dfaa dfaa
+9521 dfab dfab dfab * * 4650 8ea2c6d0,8ea2c6d0v 8456 e89196 8456 00008456 dfab dfab dfab dfab dfab dfab dfab
+9522 dfac dfac dfac * * 4651 8ea2c6d1,8ea2c6d1v 8476 e891b6 8476 00008476 dfac dfac dfac dfac dfac dfac dfac
+9523 dfad dfad dfad * * 4652 8ea2c6d2,8ea2c6d2v 8479 e891b9 8479 00008479 dfad dfad dfad dfad dfad dfad dfad
+9524 dfae dfae dfae * * 4653 8ea2c6d3,8ea2c6d3v 848f e8928f 848f 0000848f dfae dfae dfae dfae dfae dfae dfae
+9525 dfaf dfaf dfaf * * 4654 8ea2c6d4,8ea2c6d4v 848d e8928d 848d 0000848d dfaf dfaf dfaf dfaf dfaf dfaf dfaf
+9526 dfb0 dfb0 dfb0 * * 4655 8ea2c6d5,8ea2c6d5v 8465 e891a5 8465 00008465 dfb0 dfb0 dfb0 dfb0 dfb0 dfb0 dfb0
+9527 dfb1 dfb1 dfb1 * * 4656 8ea2c6d6,8ea2c6d6v 8451 e89191 8451 00008451 dfb1 dfb1 dfb1 dfb1 dfb1 dfb1 dfb1
+9528 dfb2 dfb2 dfb2 * * 4657 8ea2c6d7,8ea2c6d7v 8440 e89180 8440 00008440 dfb2 dfb2 dfb2 dfb2 dfb2 dfb2 dfb2
+
+15868 * * * * * * * 8865 e8a1a5,eeafa3 8865,ebe3 00008865,0000ebe3 9c7c * * 9c7c * * 9c7c
+15869 * * * * * * * 58b6 e5a2b6,eeafa5 58b6,ebe5 000058b6,0000ebe5 9c7e * * 9c7e * * 9c7e
+15870 * * * * * * * 371c e39c9c,eeafa6 371c,ebe6 0000371c,0000ebe6 9ca1 * * 9ca1 * * 9ca1
+15871 * * * * * * * ebe7 f0a2968d,eeafa7 d849dd8d,ebe7 0002258d,0000ebe7 9ca2 * * 9ca2 * * 9ca2
+15872 * * * * * * * 3c54 e3b194,eeafaa 3c54,ebea 00003c54,0000ebea 9ca5 * * 9ca5 * * 9ca5
+15873 * * * * * * * 9281 e98a81,eeafad 9281,ebed 00009281,0000ebed 9ca8 * * 9ca8 * * 9ca8
+15874 * * * * * * * ebee f0a285ba,eeafae d848dd7a,ebee 0002217a,0000ebee 9ca9 * * 9ca9 * * 9ca9
+15875 * * * * * * * 9330 e98cb0,eeafb0 9330,ebf0 00009330,0000ebf0 9cab * * 9cab * * 9cab
+15876 * * * * * * * ebf2 f0a4a790,eeafb2 d852ddd0,ebf2 000249d0,0000ebf2 9cad * * 9cad * * 9cad
+15877 * * * * * * * 6c39 e6b0b9,eeafb3 6c39,ebf3 00006c39,0000ebf3 9cae fa45 * 9cae c743 fa44 9cae
+15878 * * * * * * * ebf6 f0a0bbb8,eeafb6 d843def8,ebf6 00020ef8,0000ebf6 9cb1 * * 9cb1 * * 9cb1
+15879 * * * * * * * 8827 e8a0a7,eeafb7 8827,ebf7 00008827,0000ebf7 9cb2 * * 9cb2 * * 9cb2
+15880 * * * * * * * 88f5 e8a3b5,eeafb8 88f5,ebf8 000088f5,0000ebf8 9cb3 * * 9cb3 * * 9cb3
+15881 * * * * * * * ebf9 f0a2a4a6,eeafb9 d84add26,ebf9 00022926,0000ebf9 9cb4 * * 9cb4 * * 9cb4
+15882 * * * * * * * ebfa f0a891b3,eeafba d861dc73,ebfa 00028473,0000ebfa 9cb5 * * 9cb5 * * 9cb5
+15883 * * * * * * * ebfb f0a19eb1,eeafbb d845dfb1,ebfb 000217b1,0000ebfb 9cb6 * * 9cb6 * * 9cb6
+15884 * * * * * * * 6eb8 e6bab8,eeafbc 6eb8,ebfc 00006eb8,0000ebfc 9cb7 * * 9cb7 * * 9cb7
+15885 * * * * * * * ebfd f0a4a8aa,eeafbd d852de2a,ebfd 00024a2a,0000ebfd 9cb8 * * 9cb8 * * 9cb8
+15886 * * * * * * * ebfe f0a1a0a0,eeafbe d846dc20,ebfe 00021820,0000ebfe 9cb9 * * 9cb9 * * 9cb9
+15887 * * * * * * * 39a4 e3a6a4,eeafbf 39a4,ebff 000039a4,0000ebff 9cba * * 9cba * * 9cba
+15888 * * * * * * * * * * * * * * 9cbc * * *
+15889 * * * * * * * * * * * * * * 9cbd * * *
+15890 * * * * * * * 453f e494bf,eeb083 453f,ec03 0000453f,0000ec03 9cbe * * 9cbe * * 9cbe
+15891 * * * * * * * 66b6 e69ab6,eeb084 66b6,ec04 000066b6,0000ec04 9cbf * * 9cbf * * 9cbf
+15892 * * * * * * * ec05 f0a9b2ad,eeb085 d867dcad,ec05 00029cad,0000ec05 9cc0 * * 9cc0 * * 9cc0
+15893 * * * * * * * ec06 f0a9a2a4,eeb086 d866dca4,ec06 000298a4,0000ec06 9cc1 * * 9cc1 * * 9cc1
+15894 * * * * * * * 8943 e8a583,eeb087 8943,ec07 00008943,0000ec07 9cc2 fde3 91fd 9cc2 * * 9cc2
+15895 * * * * * * * 40df e4839f,eeb08b 40df,ec0b 000040df,0000ec0b 9cc6 * * 9cc6 * * 9cc6
+15896 * * * * * * * ec0c f0a1988a,eeb08c d845de0a,ec0c 0002160a,0000ec0c 9cc7 * * 9cc7 * * 9cc7
+15897 * * * * * * * 39a1 e3a6a1,eeb08d 39a1,ec0d 000039a1,0000ec0d 9cc8 * * 9cc8 * * 9cc8
+15898 * * * * * * * ec0e f0a39caf,eeb08e d84ddf2f,ec0e 0002372f,0000ec0e 9cc9 * * 9cc9 * * 9cc9
+15899 * * * * * * * ec0f f0a883a8,eeb08f d860dce8,ec0f 000280e8,0000ec0f 9cca * * 9cca * * 9cca
+15900 * * * * * * * ec10 f0a18f85,eeb090 d844dfc5,ec10 000213c5,0000ec10 9ccb * * 9ccb * * 9ccb
+15901 * * * * * * * 71ad e786ad,eeb091 71ad,ec11 000071ad,0000ec11 9ccc * * 9ccc * * 9ccc
+15902 * * * * * * * 8366 e88da6,eeb092 8366,ec12 00008366,0000ec12 9ccd * * 9ccd * * 9ccd
+15903 * * * * * * * ec14 eeb094,f0a986a8 d864dda8,ec14 0000ec14,000291a8 9ccf * * 9ccf * * 9ccf
+15904 * * * * * * * * * * * * * * 9cd0 * * *
+15905 * * * * * * * 4cb7 e4b2b7,eeb096 4cb7,ec16 00004cb7,0000ec16 9cd1 * * 9cd1 * * 9cd1
+15906 * * * * * * * ec17 f0a782af,eeb097 d85cdcaf,ec17 000270af,0000ec17 9cd2 * * 9cd2 * * 9cd2
+15907 * * * * * * * ec18 f0a8a6ab,eeb098 d862ddab,ec18 000289ab,0000ec18 9cd3 * * 9cd3 * * 9cd3
+15908 * * * * * * * ec1d f0a485ba,eeb09d d850dd7a,ec1d 0002417a,0000ec1d 9cd8 * * 9cd8 * * 9cd8
+15909 * * * * * * * 7b43 e7ad83,eeb09e 7b43,ec1e 00007b43,0000ec1e 9cd9 * * 9cd9 * * 9cd9
+15910 * * * * * * * 797e e7a5be,eeb09f 797e,ec1f 0000797e,0000ec1f 9cda * * 9cda * * 9cda
+15911 * * * * * * * 6fb5 e6beb5,eeb0a1 6fb5,ec21 00006fb5,0000ec21 9cdc * * 9cdc * * 9cdc
+15912 * * * * * * * ec22 f0aa8b9f,eeb0a2 d868dedf,ec22 0002a2df,0000ec22 9cdd * * 9cdd * * 9cdd
+15913 * * * * * * * 6a03 e6a883,eeb0a3 6a03,ec23 00006a03,0000ec23 9cde * * 9cde * * 9cde
+15914 * * * * * * * ec24 f0a88c98,eeb0a4 d860df18,ec24 00028318,0000ec24 9cdf * * 9cdf * * 9cdf
+15915 * * * * * * * 53a2 e58ea2,eeb0a5 53a2,ec25 000053a2,0000ec25 9ce0 * * 9ce0 * * 9ce0
+15916 * * * * * * * ec26 f0a6b887,eeb0a6 d85bde07,ec26 00026e07,0000ec26 9ce1 * * 9ce1 * * 9ce1
+15917 * * * * * * * 93bf e98ebf,eeb0a7 93bf,ec27 000093bf,0000ec27 9ce2 * * 9ce2 * * 9ce2
+15918 * * * * * * * 6836 e6a0b6,eeb0a8 6836,ec28 00006836,0000ec28 9ce3 * * 9ce3 * * 9ce3
+15919 * * * * * * * * e99d9d,ee9fbd,eeb0a9 975d,e7fd,ec29 0000975d,0000e7fd,0000ec29 9644,9ce4 fea8 90e2 9ce4 * * 9644,9ce4
+15920 * * * * * * * ec2a f0a885af,eeb0aa d860dd6f,ec2a 0002816f,0000ec2a 9ce5 * * 9ce5 * * 9ce5
+15921 * * * * * * * ec2c f0a6a6b5,eeb0ac d85addb5,ec2c 000269b5,0000ec2c 9ce7 * * 9ce7 * * 9ce7
+15922 * * * * * * * ec2d f0a18fad,eeb0ad d844dfed,ec2d 000213ed,0000ec2d 9ce8 * * 9ce8 * * 9ce8
+15923 * * * * * * * ec2e f0a388af,eeb0ae d84cde2f,ec2e 0002322f,0000ec2e 9ce9 * * 9ce9 * * 9ce9
+15924 * * * * * * * 5d85 e5b685,eeb0b0 5d85,ec30 00005d85,0000ec30 9ceb * * 9ceb * * 9ceb
+15925 * * * * * * * ec31 f0a8b0b0,eeb0b1 d863dc30,ec31 00028c30,0000ec31 9cec * * 9cec * * 9cec
+15926 * * * * * * * 5715 e59c95,eeb0b3 5715,ec33 00005715,0000ec33 9cee * * 9cee * * 9cee
+15927 * * * * * * * 9823 e9a0a3,eeb0b4 9823,ec34 00009823,0000ec34 9cef * * 9cef * * 9cef
+15928 * * * * * * * ec35 f0a8a589,eeb0b5 d862dd49,ec35 00028949,0000ec35 9cf0 * * 9cf0 * * 9cf0
+15929 * * * * * * * 5dab e5b6ab,eeb0b6 5dab,ec36 00005dab,0000ec36 9cf1 * * 9cf1 * * 9cf1
+15930 * * * * * * * ec37 f0a4a688,eeb0b7 d852dd88,ec37 00024988,0000ec37 9cf2 * * 9cf2 * * 9cf2
+15931 * * * * * * * 65be e696be,eeb0b8 65be,ec38 000065be,0000ec38 9cf3 * * 9cf3 * * 9cf3
+15932 * * * * * * * 69d5 e6a795,eeb0b9 69d5,ec39 000069d5,0000ec39 9cf4 * * 9cf4 * * 9cf4
+15933 * * * * * * * 53d2 e58f92,eeb0ba 53d2,ec3a 000053d2,0000ec3a 9cf5 * * 9cf5 * * 9cf5
+15934 * * * * * * * ec3b f0a4aaa5,eeb0bb d852dea5,ec3b 00024aa5,0000ec3b 9cf6 * * 9cf6 * * 9cf6
+15935 * * * * * * * ec3c f0a3be81,eeb0bc d84fdf81,ec3c 00023f81,0000ec3c 9cf7 * * 9cf7 * * 9cf7
+15936 * * * * * * * 3c11 e3b091,eeb0bd 3c11,ec3d 00003c11,0000ec3d 9cf8 * * 9cf8 * * 9cf8
+15937 * * * * * * * 6736 e69cb6,eeb0be 6736,ec3e 00006736,0000ec3e 9cf9 * 8f77 9cf9 * * 9cf9
+15938 * * * * * * * ec42 eeb182,f0a1bea1 d847dfa1,ec42 0000ec42,00021fa1 9cfd * * 9cfd * * 9cfd
+15939 * * * * * * * 35ca e3978a,eeb18a 35ca,ec4a 000035ca,0000ec4a 9d46 * * 9d46 * * 9d46
+15940 * * * * * * * 48fa e4a3ba,eeb18d 48fa,ec4d 000048fa,0000ec4d 9d49 * * 9d49 * * 9d49
+15941 * * * * * * * * * * * * * * 9d4a * * *
+15942 * * * * * * * 7808 e7a088,eeb190 7808,ec50 00007808,0000ec50 9d4c * * 9d4c * * 9d4c
+15943 * * * * * * * 9255 e98995,eeb191 9255,ec51 00009255,0000ec51 9d4d * * 9d4d * * 9d4d
+15944 * * * * * * * 43f2 e48fb2,eeb193 43f2,ec53 000043f2,0000ec53 9d4f * * 9d4f * * 9d4f
+15945 * * * * * * * 43df e48f9f,eeb195 43df,ec55 000043df,0000ec55 9d51 * * 9d51 * * 9d51
+15946 * * * * * * * 59f8 e5a7b8,eeb199 59f8,ec59 000059f8,0000ec59 9d55 * * 9d55 * * 9d55
+15947 * * * * * * * * * * * * * * 9d5a * * *
+15948 * * * * * * * 568b e59a8b,eeb1a6 568b,ec66 0000568b,0000ec66 9d62 * * 9d62 * * 9d62
+15949 * * * * * * * ec68 eeb1a8,f0a997a9 d865dde9,ec68 0000ec68,000295e9 9d64 * * 9d64 * * 9d64
+15950 * * * * * * * 9012 e98092,eeb1bd 9012,ec7d 00009012,0000ec7d 9d79 * * 9d79 * * 9d79
+15951 * * * * * * * 55c1 e59781,eeb282 55c1,ec82 000055c1,0000ec82 9d7e * * 9d7e * * 9d7e
+15952 * * * * * * * 4509 e49489,eeb287 4509,ec87 00004509,0000ec87 9da5 * * 9da5 * * 9da5
+15953 * * * * * * * 7e7f e7b9bf,eeb288 7e7f,ec88 00007e7f,0000ec88 9da6 * * 9da6 * * 9da6
+15954 * * * * * * * 6f56 e6bd96,eeb289 6f56,ec89 00006f56,0000ec89 9da7 * * 9da7 * * 9da7
+15955 * * * * * * * 6ab1 e6aab1,eeb28a 6ab1,ec8a 00006ab1,0000ec8a 9da8 * * 9da8 * * 9da8
+15956 * * * * * * * 34e4 e393a4,eeb28c 34e4,ec8c 000034e4,0000ec8c 9daa * * 9daa * * 9daa
+15957 * * * * * * * ec8e f0a7a29d,eeb28e d85edc9d,ec8e 0002789d,0000ec8e 9dac * * 9dac * * 9dac
+15958 * * * * * * * 373a e39cba,eeb28f 373a,ec8f 0000373a,0000ec8f 9dad * * 9dad * * 9dad
+15959 * * * * * * * 8e80 * * * * * * 9dae * * *
+15960 * * * * * * * ec92 eeb292,f0a880a4 d860dc24,ec92 0000ec92,00028024 9db0 * * 9db0 * * 9db0
+15961 * * * * * * * ec95 eeb295,f0a7a8be d85ede3e,ec95 0000ec95,00027a3e 9db3 fac7 * 9db3 c8c5 fcac 9db3
+15962 * * * * * * * 3deb e3b7ab,eeb297 3deb,ec97 00003deb,0000ec97 9db5 * * 9db5 * * 9db5
+15963 * * * * * * * ec99 eeb299,f0a3b2b7 d84fdcb7,ec99 0000ec99,00023cb7 9db7 * * 9db7 * * 9db7
+15964 * * * * * * * ec9e f0a68998,eeb29e d858de58,ec9e 00026258,0000ec9e 9dbc fadd * 9dbc * * 9dbc
+15965 * * * * * * * 56bf e59abf,eeb29f 56bf,ec9f 000056bf,0000ec9f 9dbd * * 9dbd * * 9dbd
+15966 * * * * * * * 8e0e e8b88e,eeb2a1 8e0e,eca1 00008e0e,0000eca1 9dbf * * 9dbf c8c7 fcb1 9dbf
+15967 * * * * * * * 5b6d e5adad,eeb2a2 5b6d,eca2 00005b6d,0000eca2 9dc0 * * 9dc0 c7d0 faf5 9dc0
+15968 * * * * * * * 63de e68f9e,eeb2a5 63de,eca5 000063de,0000eca5 9dc3 * * 9dc3 * * 9dc3
+15969 * * * * * * * * * * * * * * 9dc4 * * *
+15970 * * * * * * * 6530 e694b0,eeb2a9 6530,eca9 00006530,0000eca9 9dc7 * * 9dc7 * * 9dc7
+15971 * * * * * * * 562d e598ad,eeb2aa 562d,ecaa 0000562d,0000ecaa 9dc8 * * 9dc8 c7b4 face 9dc8
+15972 * * * * * * * 541a e5909a,eeb2ac 541a,ecac 0000541a,0000ecac 9dca * * 9dca * * 9dca
+15973 * * * * * * * ecaf f0a9b698,eeb2af d867dd98,ecaf 00029d98,0000ecaf 9dcd fa55 * 9dcd * * 9dcd
+15974 * * * * * * * 4c7d e4b1bd,eeb2b0 4c7d,ecb0 00004c7d,0000ecb0 9dce fa54 * 9dce c8f1 fcee 9dce
+15975 * * * * * * * 5622 e598a2,eeb2b1 5622,ecb1 00005622,0000ecb1 9dcf fac1 917c 9dcf c7ab fac5 9dcf
+15976 * * * * * * * 561e e5989e,eeb2b2 561e,ecb2 0000561e,0000ecb2 9dd0 * * 9dd0 c7ad fac7 9dd0
+15977 * * * * * * * 7f49 e7bd89,eeb2b3 7f49,ecb3 00007f49,0000ecb3 9dd1 * * 9dd1 c8ab fc5f 9dd1
+15978 * * * * * * * 5975 e5a5b5,eeb2b5 5975,ecb5 00005975,0000ecb5 9dd3 * * 9dd3 * * 9dd3
+15979 * * * * * * * ecb6 f0a3b580,eeb2b6 d84fdd40,ecb6 00023d40,0000ecb6 9dd4 * * 9dd4 * * 9dd4
+15980 * * * * * * * 8770 e89db0,eeb2b7 8770,ecb7 00008770,0000ecb7 9dd5 * * 9dd5 * * 9dd5
+15981 * * * * * * * 8117 e88497,eeb2bc 8117,ecbc 00008117,0000ecbc 9dda fdc1 8f57 9dda * fba3 9dda
+15982 * * * * * * * 9d5e e9b59e,eeb2bd 9d5e,ecbd 00009d5e,0000ecbd 9ddb fee7 9163 9ddb * * 9ddb
+15983 * * * * * * * 8d18 e8b498,eeb2be 8d18,ecbe 00008d18,0000ecbe 9ddc fe4f 8e58 9ddc * * 9ddc
+15984 * * * * * * * 763b e798bb,eeb2bf 763b,ecbf 0000763b,0000ecbf 9ddd fb56,fd6e 8e44 9ddd * fbe9 9ddd
+15985 * * * * * * * 9c45 e9b185,eeb380 9c45,ecc0 00009c45,0000ecc0 9dde fee2 9141 9dde * fcf1 9dde
+15986 * * * * * * * 764e e7998e,eeb381 764e,ecc1 0000764e,0000ecc1 9ddf fb57,fd70 8fdf 9ddf c872 fbe8 9ddf
+15987 * * * * * * * 77b9 e79eb9,eeb382 77b9,ecc2 000077b9,0000ecc2 9de0 fd55 8f50 9de0 * fbf7 9de0
+15988 * * * * * * * 9345 e98d85,eeb383 9345,ecc3 00009345,0000ecc3 9de1 fe75 90d4 9de1 * * 9de1
+15989 * * * * * * * 5432 e590b2,eeb384 5432,ecc4 00005432,0000ecc4 9de2 fbcf 9177 9de2 * * 9de2
+15990 * * * * * * * 8148 e88588,eeb385 8148,ecc5 00008148,0000ecc5 9de3 fdc4 9076 9de3 * * 9de3
+15991 * * * * * * * 82f7 e88bb7,eeb386 82f7,ecc6 000082f7,0000ecc6 9de4 fde9 907b 9de4 * * 9de4
+15992 * * * * * * * 5625 e598a5,eeb387 5625,ecc7 00005625,0000ecc7 9de5 fac2 * 9de5 c7ac fac6 9de5
+15993 * * * * * * * 8132 e884b2,eeb388 8132,ecc8 00008132,0000ecc8 9de6 fdc3 9075 9de6 * fba2 9de6
+15994 * * * * * * * 8418 e89098,eeb389 8418,ecc9 00008418,0000ecc9 9de7 fdee 90a1 9de7 * fc6d 9de7
+15995 * * * * * * * 80bd e882bd,eeb38a 80bd,ecca 000080bd,0000ecca 9de8 fb4c * 9de8 * * 9de8
+15996 * * * * * * * 55ea e597aa,eeb38b 55ea,eccb 000055ea,0000eccb 9de9 fbdb 9176 9de9 c7a8 fac1 9de9
+15997 * * * * * * * 7962 e7a5a2,eeb38c 7962,eccc 00007962,0000eccc 9dea faeb 91e6 9dea c87b fc42 9dea
+15998 * * * * * * * 5643 e59983,eeb38d 5643,eccd 00005643,0000eccd 9deb facb * 9deb c7b2 facc 9deb
+15999 * * * * * * * 5416 e59096,eeb38e 5416,ecce 00005416,0000ecce 9dec fa49 * 9dec c764 fa78 9dec
+16000 * * * * * * * eccf f0a0ba9d,eeb38f d843de9d,eccf 00020e9d,0000eccf 9ded fabd * 9ded c7a9 fac2 9ded
+16001 * * * * * * * 35ce e3978e,eeb390 35ce,ecd0 000035ce,0000ecd0 9dee fab3 9173 9dee c7a1 fab9 9dee
+16002 * * * * * * * 5605 e59885,ee82a5,eeb391 5605,e0a5,ecd1 00005605,0000e0a5,0000ecd1 fb48,9def fab4 * 9def c77e fab8 fb48,9def
+16003 * * * * * * * 55f1 e597b1,eeb392 55f1,ecd2 000055f1,0000ecd2 9df0 fabb * 9df0 c7a3 fabc 9df0
+16004 * * * * * * * 66f1 e69bb1,eeb393 66f1,ecd3 000066f1,0000ecd3 9df1 fa43 * 9df1 c7fc fb7a 9df1
+16005 * * * * * * * ecd4 f0a88ba2,eeb394 d860dee2,ecd4 000282e2,0000ecd4 9df2 fab6 * 9df2 c8cf fcb9 9df2
+16006 * * * * * * * 362d e398ad,eeb395 362d,ecd5 0000362d,0000ecd5 9df3 fa4b * 9df3 c7c1 fae0 9df3
+16007 * * * * * * * 7534 e794b4,eeb396 7534,ecd6 00007534,0000ecd6 9df4 fa44 * 9df4 c7fb fb79 9df4
+16008 * * * * * * * 55f0 e597b0,eeb397 55f0,ecd7 000055f0,0000ecd7 9df5 fabc * 9df5 c7a4 fabd 9df5
+16009 * * * * * * * 55ba e596ba,eeb398 55ba,ecd8 000055ba,0000ecd8 9df6 fab1 * 9df6 c77c fab6 9df6
+16010 * * * * * * * 5497 e59297,eeb399 5497,ecd9 00005497,0000ecd9 9df7 fa5a * 9df7 c767 fa7d 9df7
+16011 * * * * * * * 5572 e595b2,eeb39a 5572,ecda 00005572,0000ecda 9df8 faa2 * 9df8 c776 fab0 9df8
+16012 * * * * * * * ecdb f0a0b181,eeb39b d843dc41,ecdb 00020c41,0000ecdb 9df9 fae3 * 9df9 c769 faa1 9df9
+16013 * * * * * * * ecdc f0a0b296,eeb39c d843dc96,ecdc 00020c96,0000ecdc 9dfa fa5c * 9dfa c76d faa6 9dfa
+16014 * * * * * * * * e5bb90,ee84b4,eeb39d 5ed0,e134,ecdd 00005ed0,0000e134,0000ecdd fbf9,9dfb fad5 * 9dfb c7d9 fb4c fbf9,9dfb
+16015 * * * * * * * ecdf f0a0b9b6,eeb39f d843de76,ecdf 00020e76,0000ecdf 9dfd fae7 * 9dfd c7aa fac3 9dfd
+16016 * * * * * * * ece0 f0a2b1a2,eeb3a0 d84bdc62,ece0 00022c62,0000ece0 9dfe faab * 9dfe c7f3 fb6e 9dfe
+16017 * * * * * * * ece1 f0a0baa2,eeb3a1 d843dea2,ece1 00020ea2,0000ece1 9e40 fa61 * 9e40 c7a6 fabf 9e40
+16018 * * * * * * * 9eab e9baab,eeb3a2 9eab,ece2 00009eab,0000ece2 9e41 * * 9e41 * * 9e41
+16019 * * * * * * * 7d5a e7b59a,eeb3a3 7d5a,ece3 00007d5a,0000ece3 9e42 fdaf 906f 9e42 * * 9e42
+16020 * * * * * * * 55de * * * * fa78 * 9e43 c7a2 faba *
+16021 * * * * * * * ece5 f0a181b5,eeb3a5 d844dc75,ece5 00021075,0000ece5 9e44 fa5e * 9e44 c7bb fad9 9e44
+16022 * * * * * * * 629d e68a9d,eeb3a6 629d,ece6 0000629d,0000ece6 9e45 fb4a * 9e45 c7e8 fb60 9e45
+16023 * * * * * * * 976d e99dad,eeb3a7 976d,ece7 0000976d,0000ece7 9e46 faa7 * 9e46 c8e3 fcd4 9e46
+16024 * * * * * * * 5494 e59294,eeb3a8 5494,ece8 00005494,0000ece8 9e47 fa75 * 9e47 c768 fa7e 9e47
+16025 * * * * * * * 8ccd e8b38d,eeb3a9 8ccd,ece9 00008ccd,0000ece9 9e48 faba 8e5c 9e48 c8c6 fcb0 9e48
+16026 * * * * * * * 71f6 e787b6,eeb3aa 71f6,ecea 000071f6,0000ecea 9e49 fad3 * 9e49 c85f fbcf 9e49
+16027 * * * * * * * 9176 e985b6,eeb3ab 9176,eceb 00009176,0000eceb 9e4a faea 90ca 9e4a c8d6 fcc4 9e4a
+16028 * * * * * * * 63fc e68fbc,eeb3ac 63fc,ecec 000063fc,0000ecec 9e4b faad * 9e4b c7f2 fb6c 9e4b
+16029 * * * * * * * 63b9 e68eb9,eeb3ad 63b9,eced 000063b9,0000eced 9e4c fa79 * 9e4c c7ef fb68 9e4c
+16030 * * * * * * * 63fe e68fbe,eeb3ae 63fe,ecee 000063fe,0000ecee 9e4d fab0 * 9e4d * * 9e4d
+16031 * * * * * * * 5569 e595a9,eeb3af 5569,ecef 00005569,0000ecef 9e4e fa7e * 9e4e c777 fab1 9e4e
+16032 * * * * * * * ecf0 f0a2ad83,eeb3b0 d84adf43,ecf0 00022b43,0000ecf0 9e4f fa6d * 9e4f c7ed fb66 9e4f
+16033 * * * * * * * 9c72 e9b1b2,eeb3b1 9c72,ecf1 00009c72,0000ecf1 9e50 fae5 * 9e50 c8f5 fcf3 9e50
+16034 * * * * * * * ecf2 f0a2bab3,eeb3b2 d84bdeb3,ecf2 00022eb3,0000ecf2 9e51 fae9 * 9e51 c7fa fb77 9e51
+16035 * * * * * * * 519a e5869a,eeb3b3 519a,ecf3 0000519a,0000ecf3 9e52 fa42 * 9e52 c74c fa54 9e52
+16036 * * * * * * * 34df e3939f,eeb3b4 34df,ecf4 000034df,0000ecf4 9e53 fa4f * 9e53 c755 fa62 9e53
+16037 * * * * * * * ecf5 f0a0b6a7,eeb3b5 d843dda7,ecf5 00020da7,0000ecf5 9e54 fa7b * 9e54 c77b fab5 9e54
+16038 * * * * * * * 51a7 e586a7,eeb3b6 51a7,ecf6 000051a7,0000ecf6 9e55 fa6c * 9e55 c74d fa55 9e55
+16039 * * * * * * * 544d e5918d,eeb3b7 544d,ecf7 0000544d,0000ecf7 9e56 fa4d * 9e56 c766 fa7a 9e56
+16040 * * * * * * * 551e e5949e,eeb3b8 551e,ecf8 0000551e,0000ecf8 9e57 fa77 * 9e57 c772 faac 9e57
+16041 * * * * * * * 5513 e59493,eeb3b9 5513,ecf9 00005513,0000ecf9 9e58 fa72 * 9e58 c773 faad 9e58
+16042 * * * * * * * 7666 e799a6,eeb3ba 7666,ecfa 00007666,0000ecfa 9e59 fae0 * 9e59 c873 fbeb 9e59
+16043 * * * * * * * 8e2d e8b8ad,eeb3bb 8e2d,ecfb 00008e2d,0000ecfb 9e5a face * 9e5a c8c9 fcb3 9e5a
+16044 * * * * * * * ecfc f0a6a28a,eeb3bc d85adc8a,ecfc 0002688a,0000ecfc 9e5b fade * 9e5b c843 fba8 9e5b
+16045 * * * * * * * 75b1 e796b1,eeb3bd 75b1,ecfd 000075b1,0000ecfd 9e5c fa6a 9155 9e5c c86e fbe4 9e5c
+16046 * * * * * * * 80b6 e882b6,eeb3be 80b6,ecfe 000080b6,0000ecfe 9e5d fa64 * 9e5d c7fd fb7b 9e5d
+16047 * * * * * * * 8804 e8a084,eeb3bf 8804,ecff 00008804,0000ecff 9e5e fad8 * 9e5e c8bc fc7a 9e5e
+16048 * * * * * * * 8786 * * * * facd * 9e5f c8ba fc76 *
+16049 * * * * * * * 88c7 e8a387,eeb481 88c7,ed01 000088c7,0000ed01 9e60 fabe * 9e60 c8c1 fca4 9e60
+16050 * * * * * * * 81b6 e886b6,eeb482 81b6,ed02 000081b6,0000ed02 9e61 facf * 9e61 c842 fba6 9e61
+16051 * * * * * * * 841c e8909c,eeb483 841c,ed03 0000841c,0000ed03 9e62 * * 9e62 * * 9e62
+16052 * * * * * * * 44ec e493ac,eeb485 44ec,ed05 000044ec,0000ed05 9e64 * * 9e64 * * 9e64
+16053 * * * * * * * 7304 e78c84,eeb486 7304,ed06 00007304,0000ed06 9e65 * * 9e65 c865 fbd7 9e65
+16054 * * * * * * * 830b e88c8b,eeb489 830b,ed09 0000830b,0000ed09 9e68 * * 9e68 * * 9e68
+16055 * * * * * * * 567b e599bb,eeb48b 567b,ed0b 0000567b,0000ed0b 9e6a * * 9e6a c7b8 fad4 9e6a
+16056 * * * * * * * 9170 e985b0,eeb492 9170,ed12 00009170,0000ed12 9e71 * * 9e71 * fcc2 9e71
+16057 * * * * * * * 9208 e98888,eeb494 9208,ed14 00009208,0000ed14 9e73 * * 9e73 * * 9e73
+16058 * * * * * * * ed18 f0a0bbb9,eeb498 d843def9,ed18 00020ef9,0000ed18 9e77 * * 9e77 * * 9e77
+16059 * * * * * * * 7266 e789a6,eeb499 7266,ed19 00007266,0000ed19 9e78 * * 9e78 * * 9e78
+16060 * * * * * * * 474e e49d8e,eeb49b 474e,ed1b 0000474e,0000ed1b 9e7a * * 9e7a * * 9e7a
+16061 * * * * * * * ed1d eeb49d,f0a7bfb9 d85fdff9,ed1d 0000ed1d,00027ff9 9e7c * * 9e7c * * 9e7c
+16062 * * * * * * * 40fa e483ba,eeb49f 40fa,ed1f 000040fa,0000ed1f 9e7e * * 9e7e * * 9e7e
+16063 * * * * * * * 9c5d e9b19d,eeb4a0 9c5d,ed20 00009c5d,0000ed20 9ea1 * * 9ea1 * * 9ea1
+16064 * * * * * * * 651f e6949f,eeb4a1 651f,ed21 0000651f,0000ed21 9ea2 * * 9ea2 * * 9ea2
+16065 * * * * * * * 48f3 e4a3b3,eeb4a3 48f3,ed23 000048f3,0000ed23 9ea4 * * 9ea4 * * 9ea4
+16066 * * * * * * * ed24 f0a49fa0,eeb4a4 d851dfe0,ed24 000247e0,0000ed24 9ea5 * * 9ea5 * * 9ea5
+16067 * * * * * * * ed25 f0a9b5bc,eeb4a5 d867dd7c,ed25 00029d7c,0000ed25 9ea6 * * 9ea6 * * 9ea6
+16068 * * * * * * * * * * * * * * 9ea9 * * *
+16069 * * * * * * * ed29 eeb4a9,f0a796a3 d85ddda3,ed29 0000ed29,000275a3 9eaa * * 9eaa * * 9eaa
+16070 * * * * * * * * eeb4ab ed2b 0000ed2b 9eac * * 9eac * * 9eac
+16071 * * * * * * * ed2c f0a68188,eeb4ac d858dc48,ed2c 00026048,0000ed2c 9ead * * 9ead * * 9ead
+16072 * * * * * * * 71a3 e786a3,eeb4ae 71a3,ed2e 000071a3,0000ed2e 9eaf * * 9eaf * * 9eaf
+16073 * * * * * * * 7e8e e7ba8e,eeb4af 7e8e,ed2f 00007e8e,0000ed2f 9eb0 * * 9eb0 * * 9eb0
+16074 * * * * * * * 9d50 e9b590,eeb4b0 9d50,ed30 00009d50,0000ed30 9eb1 * * 9eb1 * * 9eb1
+16075 * * * * * * * 3577 e395b7,eeb4b3 3577,ed33 00003577,0000ed33 9eb4 * * 9eb4 * * 9eb4
+16076 * * * * * * * 6cb2 e6b2b2,eeb4b5 6cb2,ed35 00006cb2,0000ed35 9eb6 * * 9eb6 * * 9eb6
+16077 * * * * * * * 5367 e58da7,eeb4b6 5367,ed36 00005367,0000ed36 9eb7 * * 9eb7 c8b1 fc65 9eb7
+16078 * * * * * * * 39dc e3a79c,eeb4b8 39dc,ed38 000039dc,0000ed38 9eb9 * * 9eb9 * * 9eb9
+16079 * * * * * * * ed3b eeb4bb,f0a49898 d851de18,ed3b 0000ed3b,00024618 9ebc * * 9ebc * * 9ebc
+16080 * * * * * * * 822d e888ad,eeb4be 822d,ed3e 0000822d,0000ed3e 9ebf * * 9ebf * * 9ebf
+16081 * * * * * * * 544b e5918b,eeb4bf 544b,ed3f 0000544b,0000ed3f 9ec0 * * 9ec0 * fa7c 9ec0
+16082 * * * * * * * * eeb583 ed43 0000ed43 9ec4 * * 9ec4 * * 9ec4
+16083 * * * * * * * 3a52 e3a992,eeb584 3a52,ed44 00003a52,0000ed44 9ec5 * * 9ec5 * * 9ec5
+16084 * * * * * * * 7374 e78db4,eeb586 7374,ed46 00007374,0000ed46 9ec7 * * 9ec7 * * 9ec7
+16085 * * * * * * * ed47 f0a9baac,eeb587 d867deac,ed47 00029eac,0000ed47 9ec8 * * 9ec8 * * 9ec8
+16086 * * * * * * * 4d09 e4b489,eeb588 4d09,ed48 00004d09,0000ed48 9ec9 * * 9ec9 * * 9ec9
+16087 * * * * * * * 9bed e9afad,eeb589 9bed,ed49 00009bed,0000ed49 9eca * * 9eca * * 9eca
+16088 * * * * * * * * * * * * * * 9ecc * * *
+16089 * * * * * * * 4c5b e4b19b,eeb58c 4c5b,ed4c 00004c5b,0000ed4c 9ecd * * 9ecd * * 9ecd
+16090 * * * * * * * ed4f f0a9bf9e,eeb58f d867dfde,ed4f 00029fde,0000ed4f 9ed0 * * 9ed0 * * 9ed0
+16091 * * * * * * * 845c e8919c,eeb590 845c,ed50 0000845c,0000ed50 9ed1 * * 9ed1 * * 9ed1
+16092 * * * * * * * ed52 eeb592,f0a78ab2 d85cdeb2,ed52 0000ed52,000272b2 9ed3 * * 9ed3 * * 9ed3
+16093 * * * * * * * 632e e68cae,eeb595 632e,ed55 0000632e,0000ed55 9ed6 * * 9ed6 * * 9ed6
+16094 * * * * * * * 7d25 e7b4a5,eeb596 7d25,ed56 00007d25,0000ed56 9ed7 * * 9ed7 c8a7 fc57 9ed7
+16095 * * * * * * * 3a2a e3a8aa,eeb599 3a2a,ed59 00003a2a,0000ed59 9eda * * 9eda * * 9eda
+16096 * * * * * * * 9008 e98088,eeb59a 9008,ed5a 00009008,0000ed5a 9edb * * 9edb * fcbe 9edb
+16097 * * * * * * * 52cc e58b8c,eeb59b 52cc,ed5b 000052cc,0000ed5b 9edc * * 9edc * * 9edc
+16098 * * * * * * * 3e74 e3b9b4,eeb59c 3e74,ed5c 00003e74,0000ed5c 9edd * * 9edd * * 9edd
+16099 * * * * * * * 367a e399ba,eeb59d 367a,ed5d 0000367a,0000ed5d 9ede * * 9ede * * 9ede
+16100 * * * * * * * 45e9 e497a9,eeb59e 45e9,ed5e 000045e9,0000ed5e 9edf * * 9edf * * 9edf
+16101 * * * * * * * ed5f f0a0928e,eeb59f d841dc8e,ed5f 0002048e,0000ed5f 9ee0 * * 9ee0 * * 9ee0
+16102 * * * * * * * 7640 e79980,eeb5a0 7640,ed60 00007640,0000ed60 9ee1 * * 9ee1 * * 9ee1
+16103 * * * * * * * 5af0 e5abb0,eeb5a1 5af0,ed61 00005af0,0000ed61 9ee2 * * 9ee2 * * 9ee2
+16104 * * * * * * * ed62 f0a0bab6,eeb5a2 d843deb6,ed62 00020eb6,0000ed62 9ee3 * * 9ee3 * * 9ee3
+16105 * * * * * * * 787a e7a1ba,eeb5a3 787a,ed63 0000787a,0000ed63 9ee4 * * 9ee4 * * 9ee4
+16106 * * * * * * * 47b6 e49eb6,f0a7bcae,eeb5a4 47b6,d85fdf2e,ed64 000047b6,00027f2e,0000ed64 9ee5 * * 9ee5 * * 9ee5
+16107 * * * * * * * 58a7 e5a2a7,eeb5a5 58a7,ed65 000058a7,0000ed65 9ee6 * * 9ee6 * * 9ee6
+16108 * * * * * * * 40bf e482bf,eeb5a6 40bf,ed66 000040bf,0000ed66 9ee7 * * 9ee7 * * 9ee7
+16109 * * * * * * * 567c e599bc,eeb5a7 567c,ed67 0000567c,0000ed67 9ee8 * * 9ee8 c7b9 fad5 9ee8
+16110 * * * * * * * 9b8b e9ae8b,eeb5a8 9b8b,ed68 00009b8b,0000ed68 9ee9 * * 9ee9 * * 9ee9
+16111 * * * * * * * 5d74 e5b5b4,eeb5a9 5d74,ed69 00005d74,0000ed69 9eea * * 9eea * fb45 9eea
+16112 * * * * * * * 7654 e79994,eeb5aa 7654,ed6a 00007654,0000ed6a 9eeb * * 9eeb * * 9eeb
+16113 * * * * * * * ed6b f0aa90b4,eeb5ab d869dc34,ed6b 0002a434,0000ed6b 9eec * * 9eec * * 9eec
+16114 * * * * * * * 9e85 e9ba85,eeb5ac 9e85,ed6c 00009e85,0000ed6c 9eed * * 9eed * * 9eed
+16115 * * * * * * * 4ce1 e4b3a1,eeb5ad 4ce1,ed6d 00004ce1,0000ed6d 9eee * * 9eee * * 9eee
+16116 * * * * * * * * * * * * * * 9eef * * *
+16117 * * * * * * * 37fb e39fbb,eeb5af 37fb,ed6f 000037fb,0000ed6f 9ef0 * * 9ef0 * * 9ef0
+16118 * * * * * * * 6119 e68499,eeb5b0 6119,ed70 00006119,0000ed70 9ef1 * * 9ef1 * * 9ef1
+16119 * * * * * * * ed72 f0a48fb2,eeb5b2 d850dff2,ed72 000243f2,0000ed72 9ef3 * * 9ef3 * * 9ef3
+16120 * * * * * * * * eeb5b3 ed73 0000ed73 9ef4 * * 9ef4 * * 9ef4
+16121 * * * * * * * 565d e5999d,eeb5b4 565d,ed74 0000565d,0000ed74 9ef5 * * 9ef5 * fad2 9ef5
+16122 * * * * * * * ed78 f0a9b886,eeb5b8 d867de06,ed78 00029e06,0000ed78 9ef9 * * 9ef9 * * 9ef9
+16123 * * * * * * * 5234 e588b4,eeb5b9 5234,ed79 00005234,0000ed79 9efa * * 9efa * * 9efa
+16124 * * * * * * * 35ad e396ad,eeb5bb 35ad,ed7b 000035ad,0000ed7b 9efc * * 9efc * * 9efc
+16125 * * * * * * * * * * * * * * 9efd * * *
+16126 * * * * * * * 9d7c e9b5bc,eeb5bd 9d7c,ed7d 00009d7c,0000ed7d 9efe * * 9efe * * 9efe
+16127 * * * * * * * 7c56 e7b196,eeb5be 7c56,ed7e 00007c56,0000ed7e 9f40 * * 9f40 * * 9f40
+16128 * * * * * * * 9b39 e9acb9,eeb5bf 9b39,ed7f 00009b39,0000ed7f 9f41 * * 9f41 * * 9f41
+16129 * * * * * * * 57de e59f9e,eeb680 57de,ed80 000057de,0000ed80 9f42 * * 9f42 * * 9f42
+16130 * * * * * * * 5c53 e5b193,eeb682 5c53,ed82 00005c53,0000ed82 9f44 * * 9f44 * * 9f44
+16131 * * * * * * * 64d3 e69393,eeb683 64d3,ed83 000064d3,0000ed83 9f45 * * 9f45 * * 9f45
+16132 * * * * * * * ed84 f0a99390,eeb684 d865dcd0,ed84 000294d0,0000ed84 9f46 * * 9f46 * * 9f46
+16133 * * * * * * * ed85 f0a68cb5,eeb685 d858df35,ed85 00026335,0000ed85 9f47 * * 9f47 * * 9f47
+16134 * * * * * * * 86ad e89aad,eeb687 86ad,ed87 000086ad,0000ed87 9f49 * * 9f49 * * 9f49
+16135 * * * * * * * ed88 f0a0b4a8,eeb688 d843dd28,ed88 00020d28,0000ed88 9f4a * * 9f4a * * 9f4a
+16136 * * * * * * * ed8b f0a0b5b1,eeb68b d843dd71,ed8b 00020d71,0000ed8b 9f4d * * 9f4d c77a fab4 9f4d
+16137 * * * * * * * * eeb68c ed8c 0000ed8c 9f4e * * 9f4e * * 9f4e
+16138 * * * * * * * 51fe e587be,eeb68d 51fe,ed8d 000051fe,0000ed8d 9f4f fbbf 8fb3 9f4f * fa5e 9f4f
+16139 * * * * * * * ed8e f0a1bc8f,eeb68e d847df0f,ed8e 00021f0f,0000ed8e 9f50 fc46 91ac 9f50 * * 9f50
+16140 * * * * * * * 5d8e e5b68e,eeb68f 5d8e,ed8f 00005d8e,0000ed8f 9f51 fc45 8fe6 9f51 * * 9f51
+16141 * * * * * * * 9703 e99c83,eeb690 9703,ed90 00009703,0000ed90 9f52 fea5 90e0 9f52 * * 9f52
+16142 * * * * * * * ed91 f0a1b791,eeb691 d847ddd1,ed91 00021dd1,0000ed91 9f53 fc40 91a9 9f53 * * 9f53
+16143 * * * * * * * 9e81 e9ba81,eeb692 9e81,ed92 00009e81,0000ed92 9f54 feed 9147 9f54 * * 9f54
+16144 * * * * * * * 904c e9818c,eeb693 904c,ed93 0000904c,0000ed93 9f55 fe6e 90c6 9f55 * * 9f55
+16145 * * * * * * * 7b1f e7ac9f,eeb694 7b1f,ed94 00007b1f,0000ed94 9f56 fd78 8f59 9f56 * * 9f56
+16146 * * * * * * * 9b02 e9ac82,eeb695 9b02,ed95 00009b02,0000ed95 9f57 fed0 90f5 9f57 * * 9f57
+16147 * * * * * * * 5cd1 e5b391,eeb696 5cd1,ed96 00005cd1,0000ed96 9f58 fc41 91ab 9f58 * * 9f58
+16148 * * * * * * * 7ba3 e7aea3,eeb697 7ba3,ed97 00007ba3,0000ed97 9f59 fd7a 8f40 9f59 * * 9f59
+16149 * * * * * * * 6268 e689a8,eeb698 6268,ed98 00006268,0000ed98 9f5a fc77 8ea7 9f5a * * 9f5a
+16150 * * * * * * * 6335 e68cb5,eeb699 6335,ed99 00006335,0000ed99 9f5b fc7d 8f6e 9f5b c7ee fb67 9f5b
+16151 * * * * * * * 9aff e9abbf,eeb69a 9aff,ed9a 00009aff,0000ed9a 9f5c fed1 90f6 9f5c * * 9f5c
+16152 * * * * * * * 7bcf e7af8f,eeb69b 7bcf,ed9b 00007bcf,0000ed9b 9f5d fd7b 8e59 9f5d * * 9f5d
+16153 * * * * * * * 9b2a e9acaa,eeb69c 9b2a,ed9c 00009b2a,0000ed9c 9f5e fecb 9048 9f5e c8ec fce6 9f5e
+16154 * * * * * * * 7c7e e7b1be,eeb69d 7c7e,ed9d 00007c7e,0000ed9d 9f5f fda5 8ed4 9f5f * * 9f5f
+16155 * * * * * * * * * * * * fecc 8e48 9f60 * * *
+16156 * * * * * * * 7c42 e7b182,eeb69f 7c42,ed9f 00007c42,0000ed9f 9f61 fd7e 8ee0 9f61 * * 9f61
+16157 * * * * * * * 7c86 e7b286,eeb6a0 7c86,eda0 00007c86,0000eda0 9f62 fda6 8ecd 9f62 * * 9f62
+16158 * * * * * * * 9c15 e9b095,eeb6a1 9c15,eda1 00009c15,0000eda1 9f63 fedc 8eeb 9f63 * * 9f63
+16159 * * * * * * * 7bfc e7afbc,eeb6a2 7bfc,eda2 00007bfc,0000eda2 9f64 fd7d 9065 9f64 * fc50 9f64
+16160 * * * * * * * 9b09 e9ac89,eeb6a3 9b09,eda3 00009b09,0000eda3 9f65 fed3 90f7 9f65 * * 9f65
+16161 * * * * * * * * * * * * fef6 914c 9f66 * * *
+16162 * * * * * * * 9c2e e9b0ae 9c2e 00009c2e * fee1 8ef0 9f67 c8f2 fcef *
+16163 * * * * * * * 9f5a e9bd9a,eeb6a7 9f5a,eda7 00009f5a,0000eda7 9f69 fefc 9150 9f69 * * 9f69
+16164 * * * * * * * 5573 e595b3,eeb6a8 5573,eda8 00005573,0000eda8 9f6a fbd4 8fd5 9f6a * * 9f6a
+16165 * * * * * * * 5bc3 e5af83,eeb6a9 5bc3,eda9 00005bc3,0000eda9 9f6b fc52 9248 9f6b * * 9f6b
+16166 * * * * * * * 4ffd e4bfbd,eeb6aa 4ffd,edaa 00004ffd,0000edaa 9f6c fba1 9169 9f6c * * 9f6c
+16167 * * * * * * * 9e98 e9ba98,eeb6ab 9e98,edab 00009e98,0000edab 9f6d fb6f,fef1 9042 9f6d * * 9f6d
+16168 * * * * * * * 4ff2 e4bfb2,eeb6ac 4ff2,edac 00004ff2,0000edac 9f6e fb7d 8fa7 9f6e * * 9f6e
+16169 * * * * * * * 5260 e589a0,eeb6ad 5260,edad 00005260,0000edad 9f6f fbac 8e65 9f6f * * 9f6f
+16170 * * * * * * * 52d1 e58b91,eeb6af 52d1,edaf 000052d1,0000edaf 9f71 fbb1 8eb5 9f71 * * 9f71
+16171 * * * * * * * 5767 e59da7,eeb6b0 5767,edb0 00005767,0000edb0 9f72 fbea 8f6b 9f72 * * 9f72
+16172 * * * * * * * 5056 e58196,eeb6b1 5056,edb1 00005056,0000edb1 9f73 fb7c 8eaf 9f73 * * 9f73
+16173 * * * * * * * 59b7 e5a6b7,eeb6b2 59b7,edb2 000059b7,0000edb2 9f74 fbf3 8ead 9f74 * * 9f74
+16174 * * * * * * * 5e12 e5b892,eeb6b3 5e12,edb3 00005e12,0000edb3 9f75 fc49 8fd1 9f75 * * 9f75
+16175 * * * * * * * 97c8 e99f88,eeb6b4 97c8,edb4 000097c8,0000edb4 9f76 feaf 90e6 9f76 * * 9f76
+16176 * * * * * * * 9dab e9b6ab,eeb6b5 9dab,edb5 00009dab,0000edb5 9f77 feea 9144 9f77 c8f8 fcf6 9f77
+16177 * * * * * * * 8f5c e8bd9c,eeb6b6 8f5c,edb6 00008f5c,0000edb6 9f78 fe5b 90c2 9f78 * * 9f78
+16178 * * * * * * * 5469 e591a9,eeb6b7 5469,edb7 00005469,0000edb7 9f79 fbcb 8fa1 9f79 * * 9f79
+16179 * * * * * * * 97b4 e99eb4,eeb6b8 97b4,edb8 000097b4,0000edb8 9f7a feab 90e7 9f7a * * 9f7a
+16180 * * * * * * * 9940 e9a580,eeb6b9 9940,edb9 00009940,0000edb9 9f7b fb69,fec0 8f49 9f7b * * 9f7b
+16181 * * * * * * * 97ba e99eba,eeb6ba 97ba,edba 000097ba,0000edba 9f7c fead 90e4 9f7c * fcd6 9f7c
+16182 * * * * * * * 532c e58cac,eeb6bb 532c,edbb 0000532c,0000edbb 9f7d fbc1 916c 9f7d * * 9f7d
+16183 * * * * * * * 6130 e684b0,eeb6bc 6130,edbc 00006130,0000edbc 9f7e fc69 8fab 9f7e * * 9f7e
+16184 * * * * * * * 692c e6a4ac,eeb6bd 692c,edbd 0000692c,0000edbd 9fa1 fcb4 8fc9 9fa1 * * 9fa1
+16185 * * * * * * * 53da e58f9a,eeb6be 53da,edbe 000053da,0000edbe 9fa2 fbd2 8fcb 9fa2 * fa73 9fa2
+16186 * * * * * * * 9c0a e9b08a,eeb6bf 9c0a,edbf 00009c0a,0000edbf 9fa3 fedd 8ef7 9fa3 * * 9fa3
+16187 * * * * * * * 9d02 e9b482,eeb780 9d02,edc0 00009d02,0000edc0 9fa4 fee6 9143 9fa4 * * 9fa4
+16188 * * * * * * * 4c3b e4b0bb,eeb781 4c3b,edc1 00004c3b,0000edc1 9fa5 fed5 90f9 9fa5 * * 9fa5
+16189 * * * * * * * 9641 e99981,eeb782 9641,edc2 00009641,0000edc2 9fa6 fe7d 90d9 9fa6 * * 9fa6
+16190 * * * * * * * 6980 e6a680,eeb783 6980,edc3 00006980,0000edc3 9fa7 fcbb 8f61 9fa7 * * 9fa7
+16191 * * * * * * * 50a6 e582a6,eeb784 50a6,edc4 000050a6,0000edc4 9fa8 fba3 8fa2 9fa8 * * 9fa8
+16192 * * * * * * * 7546 e79586,eeb785 7546,edc5 00007546,0000edc5 9fa9 fbbe 91dc 9fa9 * * 9fa9
+16193 * * * * * * * edc6 f0a19dad,eeb786 d845df6d,edc6 0002176d,0000edc6 9faa fbfa 8ffc 9faa * * 9faa
+16194 * * * * * * * 99da e9a79a,eeb787 99da,edc7 000099da,0000edc7 9fab fec5 8ee6 9fab * * 9fab
+16195 * * * * * * * 5273 e589b3,eeb788 5273,edc8 00005273,0000edc8 9fac fbae 9052 9fac * * 9fac
+16196 * * * * * * * * eeb789 edc9 0000edc9 9fad fbd6 8fb9 9fad * * 9fad
+16197 * * * * * * * 9159 e98599,eeb78a 9159,edca 00009159,0000edca 9fae fe61 8efc 9fae * * 9fae
+16198 * * * * * * * 9681 e99a81,eeb78b 9681,edcb 00009681,0000edcb 9faf fea3 90dd 9faf * * 9faf
+16199 * * * * * * * 915c e9859c,eeb78c 915c,edcc 0000915c,0000edcc 9fb0 fe60 8f41 9fb0 * * 9fb0
+16200 * * * * * * * * f0ab91b3,eeb78d d86ddc73,edcd 0002b473,0000edcd 9fb1 fe5f 90ce 9fb1 * * 9fb1
+16201 * * * * * * * 9151 e98591,eeb78e 9151,edce 00009151,0000edce 9fb2 fe5e 8f45 9fb2 * * 9fb2
+16202 * * * * * * * edcf f0a8ba97,eeb78f d863de97,edcf 00028e97,0000edcf 9fb3 fe7e 90da 9fb3 * * 9fb3
+16203 * * * * * * * 637f e68dbf,eeb790 637f,edd0 0000637f,0000edd0 9fb4 fca1 8ff2 9fb4 * * 9fb4
+16204 * * * * * * * 6aca e6ab8a,eeb792 6aca,edd2 00006aca,0000edd2 9fb6 fcc9 91c6 9fb6 * * 9fb6
+16205 * * * * * * * 5611 e59891,eeb793 5611,edd3 00005611,0000edd3 9fb7 fbdd 917a 9fb7 c7b0 faca 9fb7
+16206 * * * * * * * 918e e9868e,eeb794 918e,edd4 0000918e,0000edd4 9fb8 fe65 90cb 9fb8 * * 9fb8
+16207 * * * * * * * 757a e795ba,eeb795 757a,edd5 0000757a,0000edd5 9fb9 fd4b 91dd 9fb9 * fa43 9fb9
+16208 * * * * * * * 6285 e68a85,eeb796 6285,edd6 00006285,0000edd6 9fba fc78 8fc3 9fba c7e7 fb5f 9fba
+16209 * * * * * * * 734f e78d8f,eeb798 734f,edd8 0000734f,0000edd8 9fbc fcf4 8fda 9fbc * * 9fbc
+16210 * * * * * * * 7c70 e7b1b0,eeb799 7c70,edd9 00007c70,0000edd9 9fbd fda4 9069 9fbd * * 9fbd
+16211 * * * * * * * edda f0a5b0a1,eeb79a d857dc21,edda 00025c21,0000edda 9fbe fd7c 9064 9fbe * * 9fbe
+16212 * * * * * * * * eeb79c eddc 0000eddc 9fc0 fdf7 907d 9fc0 * * 9fc0
+16213 * * * * * * * 76d6 e79b96,eeb79e 76d6,edde 000076d6,0000edde 9fc2 fd50 91e1 9fc2 * * 9fc2
+16214 * * * * * * * 9b9d e9ae9d,eeb79f 9b9d,eddf 00009b9d,0000eddf 9fc3 fed8 8f48 9fc3 * * 9fc3
+16215 * * * * * * * 4e2a e4b8aa,eeb7a0 4e2a,ede0 00004e2a,0000ede0 9fc4 fb71 8ebc 9fc4 * * 9fc4
+16216 * * * * * * * ede1 f0a0b394,eeb7a1 d843dcd4,ede1 00020cd4,0000ede1 9fc5 fa74 * 9fc5 c76f faa8 9fc5
+16217 * * * * * * * 83be e88ebe,eeb7a2 83be,ede2 000083be,0000ede2 9fc6 fb61,fdef 8e42 9fc6 * * 9fc6
+16218 * * * * * * * 8842 e8a182,eeb7a3 8842,ede3 00008842,0000ede3 9fc7 fdda 8f55 9fc7 * * 9fc7
+16219 * * * * * * * * eeb7a4 ede4 0000ede4 9fc8 fb72 8ff5 9fc8 * * 9fc8
+16220 * * * * * * * 5c4a e5b18a,eeb7a5 5c4a,ede5 00005c4a,0000ede5 9fc9 fbfd 8f7e 9fc9 * * 9fc9
+16221 * * * * * * * 69c0 e6a780,eeb7a6 69c0,ede6 000069c0,0000ede6 9fca fcbf 91c2 9fca * * 9fca
+16222 * * * * * * * * * * * * fba7 8fec 9fcb * * *
+16223 * * * * * * * 577a * * * * fbe9 91a4 9fcc * * *
+16224 * * * * * * * 521f e5889f,eeb7a9 521f,ede9 0000521f,0000ede9 9fcd fbab 8f79 9fcd * * 9fcd
+16225 * * * * * * * 5df5 e5b7b5,eeb7aa 5df5,edea 00005df5,0000edea 9fce fc47 9263 9fce * * 9fce
+16226 * * * * * * * 4ece e4bb8e,eeb7ab 4ece,edeb 00004ece,0000edeb 9fcf fb73 9165 9fcf * * 9fcf
+16227 * * * * * * * 6c31 e6b0b1,eeb7ac 6c31,edec 00006c31,0000edec 9fd0 fcf8 8fdc 9fd0 * * 9fd0
+16228 * * * * * * * eded f0a087b2,eeb7ad d840ddf2,eded 000201f2,0000eded 9fd1 fb76 91f1 9fd1 * * 9fd1
+16229 * * * * * * * 4f39 e4bcb9,eeb7ae 4f39,edee 00004f39,0000edee 9fd2 fb77 9167 9fd2 * * 9fd2
+16230 * * * * * * * 549c e5929c,eeb7af 549c,edef 0000549c,0000edef 9fd3 fbcd 8e73 9fd3 * * 9fd3
+16231 * * * * * * * * * * * * * 9172 9fd4 * * *
+16232 * * * * * * * 529a e58a9a,eeb7b1 529a,edf1 0000529a,0000edf1 9fd5 fbaf 8eba 9fd5 * * 9fd5
+16233 * * * * * * * 8d82 e8b682,eeb7b2 8d82,edf2 00008d82,0000edf2 9fd6 fe50 90ba 9fd6 * * 9fd6
+16234 * * * * * * * 35fe e397be,eeb7b3 35fe,edf3 000035fe,0000edf3 9fd7 fad1 * 9fd7 c7ba fad6 9fd7
+16235 * * * * * * * * * * * * fc4d 8f72 9fd8 * * *
+16236 * * * * * * * 35f3 e397b3,eeb7b5 35f3,edf5 000035f3,0000edf5 9fd9 fbe2 917e 9fd9 * fad1 9fd9
+16237 * * * * * * * * eeb7b6 edf6 0000edf6 9fda fb49 * 9fda c75d fa6f 9fda
+16238 * * * * * * * 6b52 e6ad92,eeb7b7 6b52,edf7 00006b52,0000edf7 9fdb fccb 8f68 9fdb * * 9fdb
+16239 * * * * * * * 917c e985bc,eeb7b8 917c,edf8 0000917c,0000edf8 9fdc fe64 90c9 9fdc * * 9fdc
+16240 * * * * * * * 9fa5 e9bea5,eeb7b9 9fa5,edf9 00009fa5,0000edf9 9fdd feb3 8ebd 9fdd * * 9fdd
+16241 * * * * * * * 9b97 e9ae97,eeb7ba 9b97,edfa 00009b97,0000edfa 9fde fed9 8f51 9fde * * 9fde
+16242 * * * * * * * 982e e9a0ae,eeb7bb 982e,edfb 0000982e,0000edfb 9fdf feb2 90ea 9fdf * * 9fdf
+16243 * * * * * * * 98b4 e9a2b4,eeb7bc 98b4,edfc 000098b4,0000edfc 9fe0 feb8 9046 9fe0 * * 9fe0
+16244 * * * * * * * 9aba e9aaba,eeb7bd 9aba,edfd 00009aba,0000edfd 9fe1 fec8 90f3 9fe1 * * 9fe1
+16245 * * * * * * * 9ea8 e9baa8,eeb7be 9ea8,edfe 00009ea8,0000edfe 9fe2 fef3 914a 9fe2 * * 9fe2
+16246 * * * * * * * 9e84 e9ba84,eeb7bf 9e84,edff 00009e84,0000edff 9fe3 feee 9148 9fe3 * * 9fe3
+16247 * * * * * * * 7b14 e7ac94,eeb881 7b14,ee01 00007b14,0000ee01 9fe5 fd75 91eb 9fe5 * * 9fe5
+16248 * * * * * * * * eeb882 ee02 0000ee02 9fe6 fcd7 8fcd 9fe6 * * 9fe6
+16249 * * * * * * * 6bfa e6afba,eeb883 6bfa,ee03 00006bfa,0000ee03 9fe7 fccc 8ff8 9fe7 * * 9fe7
+16250 * * * * * * * 8818 e8a098,eeb884 8818,ee04 00008818,0000ee04 9fe8 fdd8 90ae 9fe8 * * 9fe8
+16251 * * * * * * * 7f78 e7bdb8,eeb885 7f78,ee05 00007f78,0000ee05 9fe9 fde7 8f4c 9fe9 * * 9fe9
+16252 * * * * * * * * eeb886 ee06 0000ee06 9fea fb60,fde5 8f4e 9fea * * 9fea
+16253 * * * * * * * 5620 e598a0,eeb887 5620,ee07 00005620,0000ee07 9feb fbe6 8f6c 9feb * * 9feb
+16254 * * * * * * * ee08 f0aa998a,eeb888 d869de4a,ee08 0002a64a,0000ee08 9fec fefe * 9fec * * 9fec
+16255 * * * * * * * 8e77 e8b9b7,eeb889 8e77,ee09 00008e77,0000ee09 9fed fe56 90bf 9fed * * 9fed
+16256 * * * * * * * 9f53 e9bd93,eeb88a 9f53,ee0a 00009f53,0000ee0a 9fee fefb 914f 9fee * * 9fee
+16257 * * * * * * * * eeb88b ee0b 0000ee0b 9fef fe77 * 9fef * * 9fef
+16258 * * * * * * * 8dd4 e8b794,eeb88c 8dd4,ee0c 00008dd4,0000ee0c 9ff0 fe52 90bb 9ff0 * * 9ff0
+16259 * * * * * * * 8e4f e8b98f,eeb88d 8e4f,ee0d 00008e4f,0000ee0d 9ff1 fe55 90bd 9ff1 * * 9ff1
+16260 * * * * * * * 9e1c e9b89c,eeb88e 9e1c,ee0e 00009e1c,0000ee0e 9ff2 feec 9145 9ff2 * * 9ff2
+16261 * * * * * * * 8e01 e8b881,eeb88f 8e01,ee0f 00008e01,0000ee0f 9ff3 fe54 90bc 9ff3 * * 9ff3
+16262 * * * * * * * 6282 e68a82,eeb890 6282,ee10 00006282,0000ee10 9ff4 fc79 8fc6 9ff4 * * 9ff4
+16263 * * * * * * * ee11 f0a88dbd,eeb891 d860df7d,ee11 0002837d,0000ee11 9ff5 fe5a 90c1 9ff5 * * 9ff5
+16264 * * * * * * * 8e28 e8b8a8,eeb892 8e28,ee12 00008e28,0000ee12 9ff6 fe53 8ec3 9ff6 * * 9ff6
+16265 * * * * * * * 8e75 e8b9b5,eeb893 8e75,ee13 00008e75,0000ee13 9ff7 fe57 90be 9ff7 * * 9ff7
+16266 * * * * * * * 7ad3 e7ab93,eeb894 7ad3,ee14 00007ad3,0000ee14 9ff8 fd68 8f60 9ff8 * * 9ff8
+16267 * * * * * * * 7a3e e7a8be,eeb896 7a3e,ee16 00007a3e,0000ee16 9ffa fd66 91f2 9ffa * * 9ffa
+16268 * * * * * * * 78d8 e7a398,eeb897 78d8,ee17 000078d8,0000ee17 9ffb fd59 8ec2 9ffb * * 9ffb
+16269 * * * * * * * 6cea e6b3aa,eeb898 6cea,ee18 00006cea,0000ee18 9ffc fccd 8e6a 9ffc * * 9ffc
+16270 * * * * * * * 8a67 e8a9a7,eeb899 8a67,ee19 00008a67,0000ee19 9ffd fd74 9241 9ffd * * 9ffd
+16271 * * * * * * * 7607 e79887,eeb89a 7607,ee1a 00007607,0000ee1a 9ffe fd6d 91de 9ffe c870 fbe6 9ffe
+16272 * * * * * * * 9f26 e9bca6,eeb89c 9f26,ee1c 00009f26,0000ee1c a041 fb70,fef7 914d a041 c8fd fcfc a041
+16273 * * * * * * * 6cce e6b38e,eeb89d 6cce,ee1d 00006cce,0000ee1d a042 fccf 8f73 a042 * * a042
+16274 * * * * * * * 87d6 e89f96,eeb89e 87d6,ee1e 000087d6,0000ee1e a043 fdd5 915e a043 * fc7b a043
+16275 * * * * * * * 75c3 e79783,eeb89f 75c3,ee1f 000075c3,0000ee1f a044 fd6c 8e53 a044 * * a044
+16276 * * * * * * * ee20 f0aa8ab2,eeb8a0 d868deb2,ee20 0002a2b2,0000ee20 a045 feef 8eea a045 * * a045
+16277 * * * * * * * 7853 e7a193,eeb8a1 7853,ee21 00007853,0000ee21 a046 fd56 8edd a046 * * a046
+16278 * * * * * * * 8d0c e8b48c,eeb8a3 8d0c,ee23 00008d0c,0000ee23 a048 fe4e 8edc a048 * * a048
+16279 * * * * * * * 72e2 e78ba2,eeb8a4 72e2,ee24 000072e2,0000ee24 a049 fcef 91d7 a049 * * a049
+16280 * * * * * * * 7371 e78db1,eeb8a5 7371,ee25 00007371,0000ee25 a04a fcf5 91da a04a * * a04a
+16281 * * * * * * * 8b2d e8acad,eeb8a6 8b2d,ee26 00008b2d,0000ee26 a04b fe46 8e4a a04b * fcaf a04b
+16282 * * * * * * * 7302 e78c82,eeb8a7 7302,ee27 00007302,0000ee27 a04c fcf0 8fea a04c c864 fbd6 a04c
+16283 * * * * * * * 74f1 e793b1,eeb8a8 74f1,ee28 000074f1,0000ee28 a04d fd41 8e74 a04d * * a04d
+16284 * * * * * * * 8ceb e8b3ab,eeb8a9 8ceb,ee29 00008ceb,0000ee29 a04e fe4c 8eee a04e * * a04e
+16285 * * * * * * * ee2a f0a4aabb,eeb8aa d852debb,ee2a 00024abb,0000ee2a a04f fcfe 8fce a04f * * a04f
+16286 * * * * * * * 862f e898af,eeb8ab 862f,ee2b 0000862f,0000ee2b a050 fb62,fdfa 90a5 a050 * * a050
+16287 * * * * * * * 5fba e5beba,eeb8ac 5fba,ee2c 00005fba,0000ee2c a051 fc5c 8e63 a051 * * a051
+16288 * * * * * * * 88a0 e8a2a0,eeb8ad 88a0,ee2d 000088a0,0000ee2d a052 fde1 90b2 a052 * * a052
+16289 * * * * * * * 44b7 e492b7,eeb8ae 44b7,ee2e 000044b7,0000ee2e a053 fdeb 90a2 a053 * * a053
+16290 * * * * * * * * eeb8af ee2f 0000ee2f a054 fb5e,fddc 90af a054 * fc7e a054
+16291 * * * * * * * ee31 f0a6b885,eeb8b1 d85bde05,ee31 00026e05,0000ee31 a056 fdf5 907c a056 * * a056
+16292 * * * * * * * * f0aab9a7,eeb8b2 d86bde67,ee32 0002ae67,0000ee32 a057 fce7 91ee a057 * * a057
+16293 * * * * * * * 8a7e e8a9be,eeb8b3 8a7e,ee33 00008a7e,0000ee33 a058 fe43 90b7 a058 * * a058
+16294 * * * * * * * ee34 f0a2949b,eeb8b4 d849dd1b,ee34 0002251b,0000ee34 a059 fc59 9244 a059 * * a059
+16295 * * * * * * * * eeb8b5 ee35 0000ee35 a05a fc5e 91ce a05a * * a05a
+16296 * * * * * * * 60fd e683bd,eeb8b6 60fd,ee36 000060fd,0000ee36 a05b fc68 91b5 a05b * * a05b
+16297 * * * * * * * 7667 e799a7,eeb8b7 7667,ee37 00007667,0000ee37 a05c fd71 8e5f a05c * fbed a05c
+16298 * * * * * * * 9ad7 e9ab97,eeb8b8 9ad7,ee38 00009ad7,0000ee38 a05d fb6c,feca 8e4e a05d c8eb fce4 a05d
+16299 * * * * * * * 9d44 e9b584,eeb8b9 9d44,ee39 00009d44,0000ee39 a05e fee8 8ec0 a05e * * a05e
+16300 * * * * * * * * e98dae,ee97ab,eeb8ba 936e,e5eb,ee3a 0000936e,0000e5eb,0000ee3a 92c8,a05f fe76 8e60 a05f * * 92c8,a05f
+16301 * * * * * * * 9b8f e9ae8f,eeb8bb 9b8f,ee3b 00009b8f,0000ee3b a060 fed6 90fb a060 * * a060
+16302 * * * * * * * 87f5 e89fb5,eeb8bc 87f5,ee3c 000087f5,0000ee3c a061 fdd6 915f a061 * * a061
+16303 * * * * * * * * f0adbcbc,eeb8bd d877df3c,ee3d 0002df3c,0000ee3d a062 * 8fc5 a062 * * a062
+16304 * * * * * * * * * * * * * * a063 * * *
+16305 * * * * * * * 8cf7 e8b3b7,eeb8bf 8cf7,ee3f 00008cf7,0000ee3f a064 fe4d 8ee8 a064 * * a064
+16306 * * * * * * * 732c e78cac,eeb980 732c,ee40 0000732c,0000ee40 a065 fced 91d8 a065 c868 fbda a065
+16307 * * * * * * * 9721 e99ca1,eeb981 9721,ee41 00009721,0000ee41 a066 fea6 90df a066 * * a066
+16308 * * * * * * * 9bb0 e9aeb0,eeb982 9bb0,ee42 00009bb0,0000ee42 a067 feda 90fa a067 * * a067
+16309 * * * * * * * 35d6 e39796,eeb983 35d6,ee43 000035d6,0000ee43 a068 fbda 9175 a068 * * a068
+16310 * * * * * * * 72b2 e78ab2,eeb984 72b2,ee44 000072b2,0000ee44 a069 fcee 8fef a069 * * a069
+16311 * * * * * * * 4c07 e4b087,eeb985 4c07,ee45 00004c07,0000ee45 a06a fed2 8ebe a06a * * a06a
+16312 * * * * * * * 7c51 e7b191,eeb986 7c51,ee46 00007c51,0000ee46 a06b fda1 9067 a06b * * a06b
+16313 * * * * * * * 994a e9a58a,eeb987 994a,ee47 0000994a,0000ee47 a06c fec1 90f1 a06c * * a06c
+16314 * * * * * * * 6159 e68599,eeb989 6159,ee49 00006159,0000ee49 a06e fc6d 8f71 a06e c7e6 fb5c a06e
+16315 * * * * * * * 4c04 e4b084,eeb98a 4c04,ee4a 00004c04,0000ee4a a06f fed4 90f8 a06f * * a06f
+16316 * * * * * * * 9e96 e9ba96,eeb98b 9e96,ee4b 00009e96,0000ee4b a070 faed * a070 c8fa fcf8 a070
+16317 * * * * * * * 617d e685bd,eeb98c 617d,ee4c 0000617d,0000ee4c a071 fc70 91b4 a071 * * a071
+16318 * * * * * * * * eeb98d ee4d 0000ee4d a072 fc58 8f74 a072 * * a072
+16319 * * * * * * * 575f e59d9f,eeb98e 575f,ee4e 0000575f,0000ee4e a073 fbe7 91a3 a073 * * a073
+16320 * * * * * * * 616f e685af,eeb98f 616f,ee4f 0000616f,0000ee4f a074 fc6e 8f7b a074 * * a074
+16321 * * * * * * * 62a6 e68aa6,eeb990 62a6,ee50 000062a6,0000ee50 a075 fc7a 8fa8 a075 c7ea fb63 a075
+16322 * * * * * * * 6239 e688b9,eeb991 6239,ee51 00006239,0000ee51 a076 fc76 91b8 a076 * * a076
+16323 * * * * * * * * * * * * fae8 * a077 * * *
+16324 * * * * * * * 3a5c e3a99c,eeb993 3a5c,ee53 00003a5c,0000ee53 a078 fca4 91bc a078 * * a078
+16325 * * * * * * * 61e2 e687a2,eeb994 61e2,ee54 000061e2,0000ee54 a079 fc74 8eb3 a079 * fb5e a079
+16326 * * * * * * * 53aa e58eaa,eeb995 53aa,ee55 000053aa,0000ee55 a07a fbc7 8ea3 a07a * * a07a
+16327 * * * * * * * 6364 e68da4,eeb997 6364,ee57 00006364,0000ee57 a07c fc7c 8f64 a07c * * a07c
+16328 * * * * * * * 6802 e6a082,eeb998 6802,ee58 00006802,0000ee58 a07d fcb2 8ff1 a07d * * a07d
+16329 * * * * * * * 35d2 e39792,eeb999 35d2,ee59 000035d2,0000ee59 a07e fbd8 9174 a07e * * a07e
+16330 * * * * * * * 5d57 e5b597,eeb99a 5d57,ee5a 00005d57,0000ee5a a0a1 fc43 8feb a0a1 * * a0a1
+16331 * * * * * * * 8fda e8bf9a,eeb99c 8fda,ee5c 00008fda,0000ee5c a0a3 fe6b 8e61 a0a3 * * a0a3
+16332 * * * * * * * ee5d f0a8b8b9,eeb99d d863de39,ee5d 00028e39,0000ee5d a0a4 fe7b 90d7 a0a4 * * a0a4
+16333 * * * * * * * * eeb99e ee5e 0000ee5e a0a5 fbd9 8fa5 a0a5 * * a0a5
+16334 * * * * * * * 50d9 e58399,eeb99f 50d9,ee5f 000050d9,0000ee5f a0a6 fba5 8ea8 a0a6 * * a0a6
+16335 * * * * * * * 7906 e7a486,eeb9a1 7906,ee61 00007906,0000ee61 a0a8 fb52,fd5a 91e4 a0a8 * * a0a8
+16336 * * * * * * * 5332 e58cb2,eeb9a2 5332,ee62 00005332,0000ee62 a0a9 fbc0 916b a0a9 * * a0a9
+16337 * * * * * * * 9638 e998b8,eeb9a3 9638,ee63 00009638,0000ee63 a0aa fe7c 90d8 a0aa * * a0aa
+16338 * * * * * * * ee64 f0a0bcbb,eeb9a4 d843df3b,ee64 00020f3b,0000ee64 a0ab fbdc 916f a0ab * * a0ab
+16339 * * * * * * * 4065 e481a5,eeb9a5 4065,ee65 00004065,0000ee65 a0ac fd54 91e2 a0ac * * a0ac
+16340 * * * * * * * * eeb9a6 ee66 0000ee66 a0ad fd5c 91e5 a0ad * * a0ad
+16341 * * * * * * * 77fe e79fbe,eeb9a7 77fe,ee67 000077fe,0000ee67 a0ae faee * a0ae c877 fbf8 a0ae
+16342 * * * * * * * * eeb9a8 ee68 0000ee68 a0af fdab 906e a0af * * a0af
+16343 * * * * * * * 7cc2 e7b382,eeb9a9 7cc2,ee69 00007cc2,0000ee69 a0b0 fdaa 906d a0b0 * * a0b0
+16344 * * * * * * * ee6a f0a5bc9a,eeb9aa d857df1a,ee6a 00025f1a,0000ee6a a0b1 fdad 9264 a0b1 * * a0b1
+16345 * * * * * * * 7cda e7b39a,eeb9ab 7cda,ee6b 00007cda,0000ee6b a0b2 fdac 906c a0b2 * * a0b2
+16346 * * * * * * * 7a2d e7a8ad,eeb9ac 7a2d,ee6c 00007a2d,0000ee6c a0b3 fd65 91e9 a0b3 * fc46 a0b3
+16347 * * * * * * * 8066 e881a6,eeb9ad 8066,ee6d 00008066,0000ee6d a0b4 fdbb 8ecc a0b4 * * a0b4
+16348 * * * * * * * 8063 e881a3,eeb9ae 8063,ee6e 00008063,0000ee6e a0b5 fdba 8ed6 a0b5 * * a0b5
+16349 * * * * * * * 7d4d e7b58d,eeb9af 7d4d,ee6f 00007d4d,0000ee6f a0b6 fdae 8f4a a0b6 * * a0b6
+16350 * * * * * * * 7505 e79485,eeb9b0 7505,ee70 00007505,0000ee70 a0b7 fd44 8e70 a0b7 * * a0b7
+16351 * * * * * * * 74f2 e793b2,eeb9b1 74f2,ee71 000074f2,0000ee71 a0b8 fd42 8e77 a0b8 * * a0b8
+16352 * * * * * * * 8994 e8a694,eeb9b2 8994,ee72 00008994,0000ee72 a0b9 fdfe 90b3 a0b9 * * a0b9
+16353 * * * * * * * 821a e8889a,eeb9b3 821a,ee73 0000821a,0000ee73 a0ba fdca 907a a0ba * * a0ba
+16354 * * * * * * * 670c e69c8c,eeb9b4 670c,ee74 0000670c,0000ee74 a0bb fdbf 9074 a0bb * * a0bb
+16355 * * * * * * * 8062 e881a2,eeb9b5 8062,ee75 00008062,0000ee75 a0bc fdb9 8ed3 a0bc * * a0bc
+16356 * * * * * * * ee76 f0a79286,eeb9b6 d85ddc86,ee76 00027486,0000ee76 a0bd fdd4 90ac a0bd * * a0bd
+16357 * * * * * * * 805b e8819b,eeb9b7 805b,ee77 0000805b,0000ee77 a0be fdbc 8ecf a0be * * a0be
+16358 * * * * * * * 74f0 e793b0,eeb9b8 74f0,ee78 000074f0,0000ee78 a0bf fd43 8e7a a0bf * * a0bf
+16359 * * * * * * * 8103 e88483,eeb9b9 8103,ee79 00008103,0000ee79 a0c0 fdc0 9077 a0c0 * * a0c0
+16360 * * * * * * * 7724 e79ca4,eeb9ba 7724,ee7a 00007724,0000ee7a a0c1 fd51 8e4b a0c1 * * a0c1
+16361 * * * * * * * 8989 e8a689,eeb9bb 8989,ee7b 00008989,0000ee7b a0c2 fdfc 8ef1 a0c2 c8c2 fca7 a0c2
+16362 * * * * * * * ee7c f0a69f8c,eeb9bc d859dfcc,ee7c 000267cc,0000ee7c a0c3 fb4d * a0c3 * * a0c3
+16363 * * * * * * * 7553 e79593,eeb9bd 7553,ee7d 00007553,0000ee7d a0c4 fd48 8fad a0c4 * * a0c4
+16364 * * * * * * * 87a9 e89ea9,eeb9bf 87a9,ee7f 000087a9,0000ee7f a0c6 fdce 8ece a0c6 * * a0c6
+16365 * * * * * * * 87ce e89f8e,eeba80 87ce,ee80 000087ce,0000ee80 a0c7 fdd2 90ab a0c7 * fc78 a0c7
+16366 * * * * * * * 81c8 e88788,eeba81 81c8,ee81 000081c8,0000ee81 a0c8 fdc6 9079 a0c8 * * a0c8
+16367 * * * * * * * 878c e89e8c,eeba82 878c,ee82 0000878c,0000ee82 a0c9 fdcf 90a8 a0c9 * * a0c9
+16368 * * * * * * * 8a49 e8a989,eeba83 8a49,ee83 00008a49,0000ee83 a0ca fe44 90b6 a0ca * * a0ca
+16369 * * * * * * * 8cad e8b2ad,eeba84 8cad,ee84 00008cad,0000ee84 a0cb fe4b 8ef9 a0cb * * a0cb
+16370 * * * * * * * 8b43 e8ad83,eeba85 8b43,ee85 00008b43,0000ee85 a0cc fe47 8ec1 a0cc * * a0cc
+16371 * * * * * * * 772b e79cab,eeba86 772b,ee86 0000772b,0000ee86 a0cd fd52 8f65 a0cd * fbf2 a0cd
+16372 * * * * * * * 74f8 e793b8,eeba87 74f8,ee87 000074f8,0000ee87 a0ce fd46 8e71 a0ce * * a0ce
+16373 * * * * * * * 84da e8939a,eeba88 84da,ee88 000084da,0000ee88 a0cf fdf2 90a4 a0cf * * a0cf
+16374 * * * * * * * 69b2 e6a6b2,eeba8a 69b2,ee8a 000069b2,0000ee8a a0d1 fcbe 91c1 a0d1 * fbb2 a0d1
+16375 * * * * * * * 8da6 e8b6a6,eeba8b 8da6,ee8b 00008da6,0000ee8b a0d2 fe51 8ed1 a0d2 * * a0d2
+16376 * * * * * * * * eeba8c ee8c 0000ee8c a0d3 fdf1 8ee4 a0d3 * * a0d3
+16377 * * * * * * * * e8a6a9,ee9098,eeba8d 89a9,e418,ee8d 000089a9,0000e418,0000ee8d 8fcc,a0d4 fe41 9251 a0d4 c8c4 fca9 8fcc,a0d4
+16378 * * * * * * * * * * * * fcfd 8fee a0d5 * * *
+16379 * * * * * * * 6db9 e6b6b9,eeba8f 6db9,ee8f 00006db9,0000ee8f a0d6 fcd3 9171 a0d6 * * a0d6
+16380 * * * * * * * 87c1 e89f81,eeba90 87c1,ee90 000087c1,0000ee90 a0d7 fdd1 90a9 a0d7 * * a0d7
+16381 * * * * * * * ee91 f0a48091,eeba91 d850dc11,ee91 00024011,0000ee91 a0d8 fcd6 91cd a0d8 * * a0d8
+16382 * * * * * * * 74e7 e793a7,eeba92 74e7,ee92 000074e7,0000ee92 a0d9 fd40 8ea1 a0d9 * * a0d9
+16383 * * * * * * * 3ddb e3b79b,eeba93 3ddb,ee93 00003ddb,0000ee93 a0da fafb * a0da c85e fbce a0da
+16384 * * * * * * * 7176 e785b6,eeba94 7176,ee94 00007176,0000ee94 a0db fce2 8fbd a0db c85b fbcb a0db
+16385 * * * * * * * 60a4 e682a4,ee85a6,eeba95 60a4,e166,ee95 000060a4,0000e166,0000ee95 fc6c,a0dc fc60 91b3 a0dc * * fc6c,a0dc
+16386 * * * * * * * 619c e6869c,eeba96 619c,ee96 0000619c,0000ee96 a0dd fc6c 8f6f a0dd c7e4 fb5a a0dd
+16387 * * * * * * * 3cd1 e3b391,eeba97 3cd1,ee97 00003cd1,0000ee97 a0de fcce 8f66 a0de * * a0de
+16388 * * * * * * * * * * * * fce4 8e72 a0df * * *
+16389 * * * * * * * 6077 e681b7,eeba99 6077,ee99 00006077,0000ee99 a0e0 fc5f 8eac a0e0 * * a0e0
+16390 * * * * * * * * eeba9a ee9a 0000ee9a a0e1 fc6b 8f6a a0e1 * * a0e1
+16391 * * * * * * * 7f71 e7bdb1,eeba9b 7f71,ee9b 00007f71,0000ee9b a0e2 fde6 9073 a0e2 * * a0e2
+16392 * * * * * * * * f0afa4a2 d87edd22 0002f922 * * * a0e4 * * *
+16393 * * * * * * * 60e9 e683a9,eeba9e 60e9,ee9e 000060e9,0000ee9e a0e5 fc65 8fc4 a0e5 * * a0e5
+16394 * * * * * * * 4b7e e4adbe,eeba9f 4b7e,ee9f 00004b7e,0000ee9f a0e6 fec3 8eec a0e6 * * a0e6
+16395 * * * * * * * e000 f0a09587,ee8080 d841dd47,e000 00020547,0000e000 fa40 * * fa40 * * fa40
+16396 * * * * * * * 92db e98b9b,ee8081 92db,e001 000092db,0000e001 fa41 * * fa41 * * fa41
+16397 * * * * * * * e002 f0a0979f,ee8082 d841dddf,e002 000205df,0000e002 fa42 * * fa42 * * fa42
+16398 * * * * * * * e003 f0a3bf85,ee8083 d84fdfc5,e003 00023fc5,0000e003 fa43 * * fa43 * * fa43
+16399 * * * * * * * 854c e8958c,ee8084 854c,e004 0000854c,0000e004 fa44 * * fa44 * * fa44
+16400 * * * * * * * 42b5 e48ab5,ee8085 42b5,e005 000042b5,0000e005 fa45 * * fa45 * * fa45
+16401 * * * * * * * 73ef e78faf,ee8086 73ef,e006 000073ef,0000e006 fa46 * * fa46 * * fa46
+16402 * * * * * * * 51b5 e586b5,ee8087 51b5,e007 000051b5,0000e007 fa47 fbb7 8e79 fa47 * * fa47
+16403 * * * * * * * 3649 e39989,ee8088 3649,e008 00003649,0000e008 fa48 * * fa48 * * fa48
+16404 * * * * * * * e009 f0a4a582,ee8089 d852dd42,e009 00024942,0000e009 fa49 * * fa49 * * fa49
+16405 * * * * * * * e00a f0a8a7a4,ee808a d862dde4,e00a 000289e4,0000e00a fa4a * * fa4a * * fa4a
+16406 * * * * * * * 9344 e98d84,ee808b 9344,e00b 00009344,0000e00b fa4b * * fa4b * * fa4b
+16407 * * * * * * * e00c f0a1a79b,ee808c d846dddb,e00c 000219db,0000e00c fa4c * * fa4c * * fa4c
+16408 * * * * * * * 82ee e88bae,ee808d 82ee,e00d 000082ee,0000e00d fa4d * * fa4d * * fa4d
+16409 * * * * * * * e00e f0a3b388,ee808e d84fdcc8,e00e 00023cc8,0000e00e fa4e * * fa4e * * fa4e
+16410 * * * * * * * 783c e7a0bc,ee808f 783c,e00f 0000783c,0000e00f fa4f * * fa4f * * fa4f
+16411 * * * * * * * 6744 e69d84,ee8090 6744,e010 00006744,0000e010 fa50 * * fa50 * * fa50
+16412 * * * * * * * 62df e68b9f,ee8091 62df,e011 000062df,0000e011 fa51 * * fa51 * * fa51
+16413 * * * * * * * e012 f0a4a4b3,ee8092 d852dd33,e012 00024933,0000e012 fa52 * * fa52 * * fa52
+16414 * * * * * * * e013 f0a8a6aa,ee8093 d862ddaa,e013 000289aa,0000e013 fa53 * * fa53 * * fa53
+16415 * * * * * * * e014 f0a08aa0,ee8094 d840dea0,e014 000202a0,0000e014 fa54 * * fa54 * * fa54
+16416 * * * * * * * e015 f0a6aeb3,ee8095 d85adfb3,e015 00026bb3,0000e015 fa55 * * fa55 * * fa55
+16417 * * * * * * * e016 f0a18c85,ee8096 d844df05,e016 00021305,0000e016 fa56 * * fa56 * * fa56
+16418 * * * * * * * 4fab e4beab,ee8097 4fab,e017 00004fab,0000e017 fa57 fb7b 904f fa57 c748 fa4b fa57
+16419 * * * * * * * e018 f0a293ad,ee8098 d849dced,e018 000224ed,0000e018 fa58 * * fa58 * * fa58
+16420 * * * * * * * 5008 e58088,ee8099 5008,e019 00005008,0000e019 fa59 * * fa59 * * fa59
+16421 * * * * * * * e01a f0a6b4a9,ee809a d85bdd29,e01a 00026d29,0000e01a fa5a * * fa5a * * fa5a
+16422 * * * * * * * e01b f0a7aa84,ee809b d85ede84,e01b 00027a84,0000e01b fa5b * * fa5b * * fa5b
+16423 * * * * * * * e01c f0a39880,ee809c d84dde00,e01c 00023600,0000e01c fa5c * * fa5c * * fa5c
+16424 * * * * * * * e01d f0a4aab1,ee809d d852deb1,e01d 00024ab1,0000e01d fa5d * * fa5d * * fa5d
+16425 * * * * * * * e01e f0a29493,ee809e d849dd13,e01e 00022513,0000e01e fa5e * * fa5e * * fa5e
+16426 * * * * * * * * * * * * * * fa5f * * *
+16427 * * * * * * * e020 f0a08dbe,ee80a0 d840df7e,e020 0002037e,0000e020 fa60 * * fa60 * * fa60
+16428 * * * * * * * 5fa4 e5bea4,ee80a1 5fa4,e021 00005fa4,0000e021 fa61 fc5a 91ed fa61 * * fa61
+16429 * * * * * * * e022 f0a08e80,ee80a2 d840df80,e022 00020380,0000e022 fa62 * * fa62 * * fa62
+16430 * * * * * * * e023 f0a08d87,ee80a3 d840df47,e023 00020347,0000e023 fa63 * * fa63 * * fa63
+16431 * * * * * * * 6edb e6bb9b,ee80a4 6edb,e024 00006edb,0000e024 fa64 * * fa64 c853 fbc0 fa64
+16432 * * * * * * * e025 f0a0909f,ee80a5 d841dc1f,e025 0002041f,0000e025 fa65 * * fa65 * * fa65
+16433 * * * * * * * 50de e5839e 50de 000050de * * * fa66 * * *
+16434 * * * * * * * 5101 e58481,ee80a7 5101,e027 00005101,0000e027 fa67 fba8 8f67 fa67 * * fa67
+16435 * * * * * * * 347a e391ba,ee80a8 347a,e028 0000347a,0000e028 fa68 * * fa68 * * fa68
+16436 * * * * * * * 510e e5848e,ee80a9 510e,e029 0000510e,0000e029 fa69 fba6 8ff4 fa69 c74a fa51 fa69
+16437 * * * * * * * 986c e9a1ac,ee80aa 986c,e02a 0000986c,0000e02a fa6a feb7 90ed fa6a * fcd8 fa6a
+16438 * * * * * * * 3743 e39d83,ee80ab 3743,e02b 00003743,0000e02b fa6b * * fa6b * * fa6b
+16439 * * * * * * * 8416 e89096,ee80ac 8416,e02c 00008416,0000e02c fa6c * * fa6c * * fa6c
+16440 * * * * * * * e02d f0a4a6a4,ee80ad d852dda4,e02d 000249a4,0000e02d fa6d * * fa6d * * fa6d
+16441 * * * * * * * e02e f0a09287,ee80ae d841dc87,e02e 00020487,0000e02e fa6e * * fa6e * * fa6e
+16442 * * * * * * * 5160 e585a0,ee80af 5160,e02f 00005160,0000e02f fa6f * * fa6f * * fa6f
+16443 * * * * * * * e030 f0a38eb4,ee80b0 d84cdfb4,e030 000233b4,0000e030 fa70 * * fa70 * * fa70
+16444 * * * * * * * 516a e585aa,ee80b1 516a,e031 0000516a,0000e031 fa71 * * fa71 * * fa71
+16445 * * * * * * * e032 f0a0afbf,ee80b2 d842dfff,e032 00020bff,0000e032 fa72 * * fa72 * * fa72
+16446 * * * * * * * e033 f0a283bc,ee80b3 d848dcfc,e033 000220fc,0000e033 fa73 * * fa73 * * fa73
+16447 * * * * * * * e034 f0a08ba5,ee80b4 d840dee5,e034 000202e5,0000e034 fa74 * * fa74 * * fa74
+16448 * * * * * * * e035 f0a294b0,ee80b5 d849dd30,e035 00022530,0000e035 fa75 * * fa75 * * fa75
+16449 * * * * * * * e036 f0a0968e,ee80b6 d841dd8e,e036 0002058e,0000e036 fa76 * * fa76 * * fa76
+16450 * * * * * * * e037 f0a388b3,ee80b7 d84cde33,e037 00023233,0000e037 fa77 * * fa77 * * fa77
+16451 * * * * * * * e038 f0a1a683,ee80b8 d846dd83,e038 00021983,0000e038 fa78 * * fa78 * * fa78
+16452 * * * * * * * 5b82 e5ae82,ee80b9 5b82,e039 00005b82,0000e039 fa79 fc4f 8fb5 fa79 * * fa79
+16453 * * * * * * * 877d e89dbd,ee80ba 877d,e03a 0000877d,0000e03a fa7a * * fa7a * * fa7a
+16454 * * * * * * * e03b f0a096b3,ee80bb d841ddb3,e03b 000205b3,0000e03b fa7b * * fa7b * * fa7b
+16455 * * * * * * * e03c f0a3b299,ee80bc d84fdc99,e03c 00023c99,0000e03c fa7c * * fa7c * * fa7c
+16456 * * * * * * * 51b2 e586b2,ee80bd 51b2,e03d 000051b2,0000e03d fa7d fbb6 9249 fa7d c74f fa58 fa7d
+16457 * * * * * * * 51b8 e586b8,ee80be 51b8,e03e 000051b8,0000e03e fa7e * * fa7e c750 fa59 fa7e
+16458 * * * * * * * 9d34 e9b4b4,ee80bf 9d34,e03f 00009d34,0000e03f faa1 * * faa1 * * faa1
+16459 * * * * * * * 51c9 e58789,ee8180 51c9,e040 000051c9,0000e040 faa2 fbb9 8e76 faa2 c751 fa5a faa2
+16460 * * * * * * * 51cf e5878f,ee8181 51cf,e041 000051cf,0000e041 faa3 * * faa3 * * faa3
+16461 * * * * * * * 51d1 e58791,ee8182 51d1,e042 000051d1,0000e042 faa4 fbba 8fc1 faa4 * * faa4
+16462 * * * * * * * 3cdc e3b39c,ee8183 3cdc,e043 00003cdc,0000e043 faa5 * * faa5 * * faa5
+16463 * * * * * * * 51d3 e58793,ee8184 51d3,e044 000051d3,0000e044 faa6 fbbb 8fba faa6 c752 fa5b faa6
+16464 * * * * * * * e045 f0a4aaa6,ee8185 d852dea6,e045 00024aa6,0000e045 faa7 * * faa7 * * faa7
+16465 * * * * * * * 51b3 e586b3,ee8186 51b3,e046 000051b3,0000e046 faa8 faec * faa8 c74e fa57 faa8
+16466 * * * * * * * 51e2 * * * * * * faa9 * * *
+16467 * * * * * * * * * * * * * * faaa * * *
+16468 * * * * * * * 51ed e587ad,ee8189 51ed,e049 000051ed,0000e049 faab fba9 905f faab * fa5c faab
+16469 * * * * * * * 83cd e88f8d,ee818a 83cd,e04a 000083cd,0000e04a faac * * faac * * faac
+16470 * * * * * * * 693e e6a4be,ee818b 693e,e04b 0000693e,0000e04b faad fcbc 8f70 faad * * faad
+16471 * * * * * * * e04c f0a39cad,ee818c d84ddf2d,e04c 0002372d,0000e04c faae * * faae * * faae
+16472 * * * * * * * 5f7b e5bdbb,ee818d 5f7b,e04d 00005f7b,0000e04d faaf * * faaf * * faaf
+16473 * * * * * * * 520b e5888b,ee818e 520b,e04e 0000520b,0000e04e fab0 * * fab0 * * fab0
+16474 * * * * * * * 5226 e588a6,ee818f 5226,e04f 00005226,0000e04f fab1 fad7 8f75 fab1 c754 fa61 fab1
+16475 * * * * * * * 523c e588bc,ee8190 523c,e050 0000523c,0000e050 fab2 * * fab2 * * fab2
+16476 * * * * * * * 52b5 e58ab5,ee8191 52b5,e051 000052b5,0000e051 fab3 * * fab3 c758 fa66 fab3
+16477 * * * * * * * 5257 e58997,ee8192 5257,e052 00005257,0000e052 fab4 fbad 9055 fab4 * * fab4
+16478 * * * * * * * 5294 e58a94,ee8193 5294,e053 00005294,0000e053 fab5 * * fab5 * * fab5
+16479 * * * * * * * 52b9 e58ab9,ee8194 52b9,e054 000052b9,0000e054 fab6 fa51 9245 fab6 c759 fa67 fab6
+16480 * * * * * * * 52c5 e58b85,ee8195 52c5,e055 000052c5,0000e055 fab7 fbb0 8eb6 fab7 * fa68 fab7
+16481 * * * * * * * 7c15 e7b095,ee8196 7c15,e056 00007c15,0000e056 fab8 * * fab8 * * fab8
+16482 * * * * * * * 8542 e89582,ee8197 8542,e057 00008542,0000e057 fab9 * * fab9 * * fab9
+16483 * * * * * * * 52e0 e58ba0,ee8198 52e0,e058 000052e0,0000e058 faba fbb2 8eb2 faba * fa69 faba
+16484 * * * * * * * 860d e8988d,ee8199 860d,e059 0000860d,0000e059 fabb * * fabb * * fabb
+16485 * * * * * * * e05a f0a6ac93,ee819a d85adf13,e05a 00026b13,0000e05a fabc * * fabc * * fabc
+16486 * * * * * * * * f0afa0a9 d87edc29 0002f829 * * * fabd * * *
+16487 * * * * * * * e05c f0a8ab9e,ee819c d862dede,e05c 00028ade,0000e05c fabe * * fabe * * fabe
+16488 * * * * * * * 5549 e59589,ee819d 5549,e05d 00005549,0000e05d fabf * * fabf * * fabf
+16489 * * * * * * * 6ed9 e6bb99,ee819e 6ed9,e05e 00006ed9,0000e05e fac0 fab8 * fac0 c852 fbbf fac0
+16490 * * * * * * * e05f f0a3be80,ee819f d84fdf80,e05f 00023f80,0000e05f fac1 * * fac1 * * fac1
+16491 * * * * * * * e060 f0a0a594,ee81a0 d842dd54,e060 00020954,0000e060 fac2 * * fac2 * * fac2
+16492 * * * * * * * e061 f0a3bfac,ee81a1 d84fdfec,e061 00023fec,0000e061 fac3 * * fac3 * * fac3
+16493 * * * * * * * 5333 e58cb3,ee81a2 5333,e062 00005333,0000e062 fac4 fbc2 916a fac4 * * fac4
+16494 * * * * * * * * * * * * * * fac5 * * *
+16495 * * * * * * * e064 f0a0afa2,ee81a4 d842dfe2,e064 00020be2,0000e064 fac6 * * fac6 * * fac6
+16496 * * * * * * * 6ccb e6b38b,ee81a5 6ccb,e065 00006ccb,0000e065 fac7 * * fac7 * * fac7
+16497 * * * * * * * e066 f0a19ca6,ee81a6 d845df26,e066 00021726,0000e066 fac8 * * fac8 * * fac8
+16498 * * * * * * * 681b e6a09b,ee81a7 681b,e067 0000681b,0000e067 fac9 * * fac9 * * fac9
+16499 * * * * * * * 73d5 e78f95,ee81a8 73d5,e068 000073d5,0000e068 faca * * faca * * faca
+16500 * * * * * * * 604a e6818a,ee81a9 604a,e069 0000604a,0000e069 facb * * facb * * facb
+16501 * * * * * * * 3eaa e3baaa,ee81aa 3eaa,e06a 00003eaa,0000e06a facc * * facc * * facc
+16502 * * * * * * * 38cc e3a38c,ee81ab 38cc,e06b 000038cc,0000e06b facd * * facd * * facd
+16503 * * * * * * * e06c f0a19ba8,ee81ac d845dee8,e06c 000216e8,0000e06c face * * face * * face
+16504 * * * * * * * 71dd e7879d,ee81ad 71dd,e06d 000071dd,0000e06d facf * * facf * * facf
+16505 * * * * * * * 44a2 e492a2,ee81ae 44a2,e06e 000044a2,0000e06e fad0 * * fad0 * * fad0
+16506 * * * * * * * 536d e58dad,ee81af 536d,e06f 0000536d,0000e06f fad1 * * fad1 * fa6b fad1
+16507 * * * * * * * 5374 e58db4,ee81b0 5374,e070 00005374,0000e070 fad2 faf2 * fad2 c75b fa6c fad2
+16508 * * * * * * * e071 f0a89aab,ee81b1 d861deab,e071 000286ab,0000e071 fad3 * * fad3 * * fad3
+16509 * * * * * * * 537e e58dbe,ee81b2 537e,e072 0000537e,0000e072 fad4 * * fad4 * fa6d fad4
+16510 * * * * * * * * f0afa0b2 d87edc32 0002f832 * * * fad5 * * *
+16511 * * * * * * * e074 f0a19696,ee81b4 d845dd96,e074 00021596,0000e074 fad6 * * fad6 * * fad6
+16512 * * * * * * * e075 f0a19893,ee81b5 d845de13,e075 00021613,0000e075 fad7 * * fad7 * * fad7
+16513 * * * * * * * 77e6 e79fa6,ee81b6 77e6,e076 000077e6,0000e076 fad8 * * fad8 * * fad8
+16514 * * * * * * * 5393 e58e93,ee81b7 5393,e077 00005393,0000e077 fad9 * * fad9 c75c fa6e fad9
+16515 * * * * * * * e078 f0a8aa9b,ee81b8 d862de9b,e078 00028a9b,0000e078 fada * * fada * * fada
+16516 * * * * * * * 53a0 e58ea0,ee81b9 53a0,e079 000053a0,0000e079 fadb fbc4 924c fadb * * fadb
+16517 * * * * * * * 53ab e58eab,ee81ba 53ab,e07a 000053ab,0000e07a fadc fbc3 8fd9 fadc * * fadc
+16518 * * * * * * * 53ae e58eae,ee81bb 53ae,e07b 000053ae,0000e07b fadd fbc8 916d fadd * * fadd
+16519 * * * * * * * 73a7 e78ea7,ee81bc 73a7,e07c 000073a7,0000e07c fade * * fade * * fade
+16520 * * * * * * * e07d f0a59db2,ee81bd d855df72,e07d 00025772,0000e07d fadf * * fadf * * fadf
+16521 * * * * * * * 3f59 e3bd99,ee81be 3f59,e07e 00003f59,0000e07e fae0 * * fae0 * * fae0
+16522 * * * * * * * 739c e78e9c,ee81bf 739c,e07f 0000739c,0000e07f fae1 * * fae1 * * fae1
+16523 * * * * * * * 53c1 e58f81,ee8280 53c1,e080 000053c1,0000e080 fae2 fa53 925d fae2 c75e fa71 fae2
+16524 * * * * * * * 53c5 e58f85,ee8281 53c5,e081 000053c5,0000e081 fae3 * * fae3 * * fae3
+16525 * * * * * * * 6c49 e6b189,ee8282 6c49,e082 00006c49,0000e082 fae4 * * fae4 * * fae4
+16526 * * * * * * * 4e49 e4b989,ee8283 4e49,e083 00004e49,0000e083 fae5 * * fae5 * * fae5
+16527 * * * * * * * 57fe e59fbe,ee8284 57fe,e084 000057fe,0000e084 fae6 * * fae6 * * fae6
+16528 * * * * * * * 53d9 e58f99,ee8285 53d9,e085 000053d9,0000e085 fae7 fbb5 8fcf fae7 * * fae7
+16529 * * * * * * * 3aab e3aaab,ee8286 3aab,e086 00003aab,0000e086 fae8 * * fae8 * * fae8
+16530 * * * * * * * e087 f0a0ae8f,ee8287 d842df8f,e087 00020b8f,0000e087 fae9 * * fae9 * * fae9
+16531 * * * * * * * 53e0 e58fa0,ee8288 53e0,e088 000053e0,0000e088 faea fab2 8fc7 faea c760 fa74 faea
+16532 * * * * * * * e089 f0a3bfab,ee8289 d84fdfeb,e089 00023feb,0000e089 faeb * * faeb * * faeb
+16533 * * * * * * * e08a f0a2b6a3,ee828a d84bdda3,e08a 00022da3,0000e08a faec * * faec * * faec
+16534 * * * * * * * 53f6 e58fb6,ee828b 53f6,e08b 000053f6,0000e08b faed fa46 9054 faed c761 fa75 faed
+16535 * * * * * * * e08c f0a0b1b7,ee828c d843dc77,e08c 00020c77,0000e08c faee * * faee * * faee
+16536 * * * * * * * 5413 e59093,ee828d 5413,e08d 00005413,0000e08d faef fa7d 8fb6 faef c763 fa77 faef
+16537 * * * * * * * 7079 e781b9,ee828e 7079,e08e 00007079,0000e08e faf0 * * faf0 * * faf0
+16538 * * * * * * * 552b e594ab,ee828f 552b,e08f 0000552b,0000e08f faf1 * * faf1 * * faf1
+16539 * * * * * * * 6657 e69997,ee8290 6657,e090 00006657,0000e090 faf2 * * faf2 * * faf2
+16540 * * * * * * * 6d5b e6b59b,ee8291 6d5b,e091 00006d5b,0000e091 faf3 * * faf3 * * faf3
+16541 * * * * * * * 546d e591ad,ee8292 546d,e092 0000546d,0000e092 faf4 * * faf4 * * faf4
+16542 * * * * * * * e093 f0a6ad93,ee8293 d85adf53,e093 00026b53,0000e093 faf5 * * faf5 * * faf5
+16543 * * * * * * * e094 f0a0b5b4,ee8294 d843dd74,e094 00020d74,0000e094 faf6 * * faf6 * * faf6
+16544 * * * * * * * 555d e5959d,ee8295 555d,e095 0000555d,0000e095 faf7 * * faf7 * * faf7
+16545 * * * * * * * 548f e5928f,ee8296 548f,e096 0000548f,0000e096 faf8 fbca 8ebb faf8 c76a faa2 faf8
+16546 * * * * * * * 54a4 e592a4,ee8297 54a4,e097 000054a4,0000e097 faf9 fbd0 8eb9 faf9 * faaa faf9
+16547 * * * * * * * 47a6 e49ea6,ee8298 47a6,e098 000047a6,0000e098 fafa * * fafa * * fafa
+16548 * * * * * * * e099 f0a19c8d,ee8299 d845df0d,e099 0002170d,0000e099 fafb * * fafb * * fafb
+16549 * * * * * * * e09a f0a0bb9d,ee829a d843dedd,e09a 00020edd,0000e09a fafc * * fafc * * fafc
+16550 * * * * * * * 3db4 e3b6b4,ee829b 3db4,e09b 00003db4,0000e09b fafd * * fafd * * fafd
+16551 * * * * * * * e09c f0a0b58d,ee829c d843dd4d,e09c 00020d4d,0000e09c fafe * * fafe * * fafe
+16552 * * * * * * * e09d f0a8a6bc,ee829d d862ddbc,e09d 000289bc,0000e09d fb40 * * fb40 * * fb40
+16553 * * * * * * * e09e f0a29a98,ee829e d849de98,e09e 00022698,0000e09e fb41 * * fb41 * * fb41
+16554 * * * * * * * 5547 e59587,ee829f 5547,e09f 00005547,0000e09f fb42 * * fb42 * * fb42
+16555 * * * * * * * 4ced e4b3ad,ee82a0 4ced,e0a0 00004ced,0000e0a0 fb43 * * fb43 * * fb43
+16556 * * * * * * * 542f e590af,ee82a1 542f,e0a1 0000542f,0000e0a1 fb44 * * fb44 * * fb44
+16557 * * * * * * * 7417 e79097,ee82a2 7417,e0a2 00007417,0000e0a2 fb45 * * fb45 * * fb45
+16558 * * * * * * * 5586 e59686,ee82a3 5586,e0a3 00005586,0000e0a3 fb46 fbd5 8e68 fb46 * * fb46
+16559 * * * * * * * 55a9 e596a9,ee82a4 55a9,e0a4 000055a9,0000e0a4 fb47 * * fb47 * * fb47
+16560 * * * * * * * * * * * * * * fb48 * * *
+16561 * * * * * * * e0a6 f0a1a397,ee82a6 d846dcd7,e0a6 000218d7,0000e0a6 fb49 * * fb49 * * fb49
+16562 * * * * * * * e0a7 f0a480ba,ee82a7 d850dc3a,e0a7 0002403a,0000e0a7 fb4a * * fb4a * * fb4a
+16563 * * * * * * * 4552 e49592,ee82a8 4552,e0a8 00004552,0000e0a8 fb4b * * fb4b * * fb4b
+16564 * * * * * * * e0a9 f0a490b5,ee82a9 d851dc35,e0a9 00024435,0000e0a9 fb4c * * fb4c * * fb4c
+16565 * * * * * * * 66b3 e69ab3,ee82aa 66b3,e0aa 000066b3,0000e0aa fb4d * * fb4d * * fb4d
+16566 * * * * * * * e0ab f0a182b4,ee82ab d844dcb4,e0ab 000210b4,0000e0ab fb4e * * fb4e * * fb4e
+16567 * * * * * * * 5637 e598b7,ee82ac 5637,e0ac 00005637,0000e0ac fb4f fbdf 8fe9 fb4f c7b7 fad3 fb4f
+16568 * * * * * * * 66cd e69b8d,ee82ad 66cd,e0ad 000066cd,0000e0ad fb50 * * fb50 * * fb50
+16569 * * * * * * * e0ae f0a38a8a,ee82ae d84cde8a,e0ae 0002328a,0000e0ae fb51 * * fb51 * * fb51
+16570 * * * * * * * 66a4 e69aa4,ee82af 66a4,e0af 000066a4,0000e0af fb52 * * fb52 * * fb52
+16571 * * * * * * * * * * * * * * fb53 * * *
+16572 * * * * * * * 564d e5998d,ee82b1 564d,e0b1 0000564d,0000e0b1 fb54 fbde 8fa9 fb54 c7b3 facd fb54
+16573 * * * * * * * 564f e5998f,ee82b2 564f,e0b2 0000564f,0000e0b2 fb55 faca 917d fb55 c7b5 facf fb55
+16574 * * * * * * * 78f1 e7a3b1,ee82b3 78f1,e0b3 000078f1,0000e0b3 fb56 * * fb56 * * fb56
+16575 * * * * * * * 56f1 e59bb1,ee82b4 56f1,e0b4 000056f1,0000e0b4 fb57 * * fb57 c7c9 faec fb57
+16576 * * * * * * * 9787 e99e87,ee82b5 9787,e0b5 00009787,0000e0b5 fb58 * * fb58 * * fb58
+16577 * * * * * * * 53fe e58fbe,ee82b6 53fe,e0b6 000053fe,0000e0b6 fb59 * * fb59 * * fb59
+16578 * * * * * * * 5700 e59c80,ee82b7 5700,e0b7 00005700,0000e0b7 fb5a * * fb5a * * fb5a
+16579 * * * * * * * 56ef e59baf,ee82b8 56ef,e0b8 000056ef,0000e0b8 fb5b * * fb5b * * fb5b
+16580 * * * * * * * 56ed e59bad,ee82b9 56ed,e0b9 000056ed,0000e0b9 fb5c fc56 8fc0 fb5c * * fb5c
+16581 * * * * * * * e0ba f0a8ada6,ee82ba d862df66,e0ba 00028b66,0000e0ba fb5d * * fb5d * * fb5d
+16582 * * * * * * * 3623 e398a3,ee82bb 3623,e0bb 00003623,0000e0bb fb5e * * fb5e * * fb5e
+16583 * * * * * * * e0bc f0a1898f,ee82bc d844de4f,e0bc 0002124f,0000e0bc fb5f * * fb5f * * fb5f
+16584 * * * * * * * 5746 e59d86,ee82bd 5746,e0bd 00005746,0000e0bd fb60 fbe8 9053 fb60 * fae1 fb60
+16585 * * * * * * * e0be f0a486a5,ee82be d850dda5,e0be 000241a5,0000e0be fb61 * * fb61 * * fb61
+16586 * * * * * * * 6c6e e6b1ae,ee82bf 6c6e,e0bf 00006c6e,0000e0bf fb62 * * fb62 * * fb62
+16587 * * * * * * * 708b e7828b,ee8380 708b,e0c0 0000708b,0000e0c0 fb63 * * fb63 * * fb63
+16588 * * * * * * * 5742 e59d82,ee8381 5742,e0c1 00005742,0000e0c1 fb64 fadc * fb64 c7c0 fadf fb64
+16589 * * * * * * * 36b1 e39ab1,ee8382 36b1,e0c2 000036b1,0000e0c2 fb65 * * fb65 * * fb65
+16590 * * * * * * * e0c3 f0a6b1be,ee8383 d85bdc7e,e0c3 00026c7e,0000e0c3 fb66 * * fb66 * * fb66
+16591 * * * * * * * 57e6 e59fa6,ee8384 57e6,e0c4 000057e6,0000e0c4 fb67 fbec 8eaa fb67 * * fb67
+16592 * * * * * * * e0c5 f0a19096,ee8385 d845dc16,e0c5 00021416,0000e0c5 fb68 * * fb68 * * fb68
+16593 * * * * * * * 5803 e5a083,ee8386 5803,e0c6 00005803,0000e0c6 fb69 fb50 * fb69 c7c5 fae5 fb69
+16594 * * * * * * * e0c7 f0a19194,ee8387 d845dc54,e0c7 00021454,0000e0c7 fb6a * * fb6a * * fb6a
+16595 * * * * * * * e0c8 f0a48da3,ee8388 d850df63,e0c8 00024363,0000e0c8 fb6b * * fb6b * * fb6b
+16596 * * * * * * * 5826 e5a0a6,ee8389 5826,e0c9 00005826,0000e0c9 fb6c fbf1 904c fb6c * fae7 fb6c
+16597 * * * * * * * e0ca f0a4afb5,ee838a d852dff5,e0ca 00024bf5,0000e0ca fb6d * * fb6d * * fb6d
+16598 * * * * * * * * e5a09f 581f 0000581f * * * fb6e * * *
+16599 * * * * * * * 58aa e5a2aa,ee838c 58aa,e0cc 000058aa,0000e0cc fb6f * * fb6f * * fb6f
+16600 * * * * * * * 3561 e395a1,ee838d 3561,e0cd 00003561,0000e0cd fb70 * * fb70 * * fb70
+16601 * * * * * * * 58e0 e5a3a0,ee838e 58e0,e0ce 000058e0,0000e0ce fb71 * * fb71 * faeb fb71
+16602 * * * * * * * 58dc e5a39c,ee838f 58dc,e0cf 000058dc,0000e0cf fb72 fbf2 8e64 fb72 * faea fb72
+16603 * * * * * * * e0d0 f0a188bc,ee8390 d844de3c,e0d0 0002123c,0000e0d0 fb73 * * fb73 * * fb73
+16604 * * * * * * * 58fb e5a3bb,ee8391 58fb,e0d1 000058fb,0000e0d1 fb74 fbef 9242 fb74 * * fb74
+16605 * * * * * * * 5bff e5afbf,ee8392 5bff,e0d2 00005bff,0000e0d2 fb75 * * fb75 * * fb75
+16606 * * * * * * * 5743 e59d83,ee8393 5743,e0d3 00005743,0000e0d3 fb76 * * fb76 * * fb76
+16607 * * * * * * * e0d4 f0aa8590,ee8394 d868dd50,e0d4 0002a150,0000e0d4 fb77 * * fb77 * * fb77
+16608 * * * * * * * e0d5 f0a489b8,ee8395 d850de78,e0d5 00024278,0000e0d5 fb78 * * fb78 * * fb78
+16609 * * * * * * * 93d3 e98f93,ee8396 93d3,e0d6 000093d3,0000e0d6 fb79 * * fb79 * * fb79
+16610 * * * * * * * 35a1 e396a1,ee8397 35a1,e0d7 000035a1,0000e0d7 fb7a * * fb7a * * fb7a
+16611 * * * * * * * 591f e5a49f,ee8398 591f,e0d8 0000591f,0000e0d8 fb7b * * fb7b * * fb7b
+16612 * * * * * * * 68a6 e6a2a6,ee8399 68a6,e0d9 000068a6,0000e0d9 fb7c * * fb7c * * fb7c
+16613 * * * * * * * 36c3 e39b83,ee839a 36c3,e0da 000036c3,0000e0da fb7d * * fb7d * * fb7d
+16614 * * * * * * * 6e59 e6b999,ee839b 6e59,e0db 00006e59,0000e0db fb7e * * fb7e * * fb7e
+16615 * * * * * * * e0dc f0a198be,ee839c d845de3e,e0dc 0002163e,0000e0dc fba1 * * fba1 * * fba1
+16616 * * * * * * * 5a24 e5a8a4,ee839d 5a24,e0dd 00005a24,0000e0dd fba2 * * fba2 * * fba2
+16617 * * * * * * * * * * * * * * fba3 * * *
+16618 * * * * * * * e0df f0a19a92,ee839f d845de92,e0df 00021692,0000e0df fba4 * * fba4 * * fba4
+16619 * * * * * * * 8505 e89485,ee83a0 8505,e0e0 00008505,0000e0e0 fba5 * * fba5 * * fba5
+16620 * * * * * * * 59c9 e5a789,ee83a1 59c9,e0e1 000059c9,0000e0e1 fba6 * * fba6 * * fba6
+16621 * * * * * * * e0e2 f0a0b58e,ee83a2 d843dd4e,e0e2 00020d4e,0000e0e2 fba7 * * fba7 * * fba7
+16622 * * * * * * * e0e3 f0a6b281,ee83a3 d85bdc81,e0e3 00026c81,0000e0e3 fba8 * * fba8 * * fba8
+16623 * * * * * * * e0e4 f0a6b4aa,ee83a4 d85bdd2a,e0e4 00026d2a,0000e0e4 fba9 * * fba9 * * fba9
+16624 * * * * * * * e0e5 f0a19f9c,ee83a5 d845dfdc,e0e5 000217dc,0000e0e5 fbaa * * fbaa * * fbaa
+16625 * * * * * * * 59d9 e5a799,ee83a6 59d9,e0e6 000059d9,0000e0e6 fbab fbf6 8ff3 fbab * faee fbab
+16626 * * * * * * * e0e7 f0a19fbb,ee83a7 d845dffb,e0e7 000217fb,0000e0e7 fbac * * fbac * * fbac
+16627 * * * * * * * e0e8 f0a19eb2,ee83a8 d845dfb2,e0e8 000217b2,0000e0e8 fbad * * fbad * * fbad
+16628 * * * * * * * e0e9 f0a6b6a6,ee83a9 d85bdda6,e0e9 00026da6,0000e0e9 fbae * * fbae * * fbae
+16629 * * * * * * * 6d71 e6b5b1,ee83aa 6d71,e0ea 00006d71,0000e0ea fbaf * * fbaf * * fbaf
+16630 * * * * * * * e0eb f0a1a0a8,ee83ab d846dc28,e0eb 00021828,0000e0eb fbb0 * * fbb0 * * fbb0
+16631 * * * * * * * e0ec f0a19b95,ee83ac d845ded5,e0ec 000216d5,0000e0ec fbb1 * * fbb1 * * fbb1
+16632 * * * * * * * 59f9 e5a7b9,ee83ad 59f9,e0ed 000059f9,0000e0ed fbb2 fbf8 91a7 fbb2 * * fbb2
+16633 * * * * * * * e0ee f0a6b985,ee83ae d85bde45,e0ee 00026e45,0000e0ee fbb3 * * fbb3 * * fbb3
+16634 * * * * * * * 5aab e5aaab,ee83af 5aab,e0ef 00005aab,0000e0ef fbb4 * * fbb4 * * fbb4
+16635 * * * * * * * 5a63 e5a9a3,ee83b0 5a63,e0f0 00005a63,0000e0f0 fbb5 fbf9 8e78 fbb5 * * fbb5
+16636 * * * * * * * 36e6 e39ba6,ee83b1 36e6,e0f1 000036e6,0000e0f1 fbb6 * * fbb6 * * fbb6
+16637 * * * * * * * e0f2 f0a4a6a9,ee83b2 d852dda9,e0f2 000249a9,0000e0f2 fbb7 * * fbb7 * * fbb7
+16638 * * * * * * * * * * * * * * fbb8 * * *
+16639 * * * * * * * 3708 e39c88,ee83b4 3708,e0f4 00003708,0000e0f4 fbb9 * * fbb9 * * fbb9
+16640 * * * * * * * 5a96 e5aa96,ee83b5 5a96,e0f5 00005a96,0000e0f5 fbba * * fbba c7ca faef fbba
+16641 * * * * * * * 7465 e791a5,ee83b6 7465,e0f6 00007465,0000e0f6 fbbb * * fbbb * * fbbb
+16642 * * * * * * * 5ad3 e5ab93,ee83b7 5ad3,e0f7 00005ad3,0000e0f7 fbbc * * fbbc * * fbbc
+16643 * * * * * * * e0f8 f0a6bea1,ee83b8 d85bdfa1,e0f8 00026fa1,0000e0f8 fbbd * * fbbd * * fbbd
+16644 * * * * * * * e0f9 f0a29594,ee83b9 d849dd54,e0f9 00022554,0000e0f9 fbbe * * fbbe * * fbbe
+16645 * * * * * * * e0fb f0a1a491,ee83bb d846dd11,e0fb 00021911,0000e0fb fbc0 * * fbc0 * * fbc0
+16646 * * * * * * * 3732 e39cb2,ee83bc 3732,e0fc 00003732,0000e0fc fbc1 * * fbc1 * * fbc1
+16647 * * * * * * * e0fd f0a19ab8,ee83bd d845deb8,e0fd 000216b8,0000e0fd fbc2 * * fbc2 * * fbc2
+16648 * * * * * * * 5e83 e5ba83,ee83be 5e83,e0fe 00005e83,0000e0fe fbc3 * * fbc3 * * fbc3
+16649 * * * * * * * 52d0 e58b90,ee83bf 52d0,e0ff 000052d0,0000e0ff fbc4 * * fbc4 * * fbc4
+16650 * * * * * * * 5b76 e5adb6,ee8480 5b76,e100 00005b76,0000e100 fbc5 * * fbc5 * * fbc5
+16651 * * * * * * * 6588 e69688,ee8481 6588,e101 00006588,0000e101 fbc6 * * fbc6 * * fbc6
+16652 * * * * * * * 5b7c e5adbc,ee8482 5b7c,e102 00005b7c,0000e102 fbc7 * * fbc7 * * fbc7
+16653 * * * * * * * e103 f0a7a88e,ee8483 d85ede0e,e103 00027a0e,0000e103 fbc8 * * fbc8 * * fbc8
+16654 * * * * * * * 4004 e48084,ee8484 4004,e104 00004004,0000e104 fbc9 * * fbc9 * * fbc9
+16655 * * * * * * * 485d e4a19d,ee8485 485d,e105 0000485d,0000e105 fbca * * fbca * * fbca
+16656 * * * * * * * e106 f0a08884,ee8486 d840de04,e106 00020204,0000e106 fbcb * * fbcb * * fbcb
+16657 * * * * * * * 5bd5 e5af95,ee8487 5bd5,e107 00005bd5,0000e107 fbcc * * fbcc * * fbcc
+16658 * * * * * * * e109 f0a1a8b4,ee8489 d846de34,e109 00021a34,0000e109 fbce * * fbce * * fbce
+16659 * * * * * * * e10a f0a5a78c,ee848a d856ddcc,e10a 000259cc,0000e10a fbcf * * fbcf * * fbcf
+16660 * * * * * * * e10b f0a096a5,ee848b d841dda5,e10b 000205a5,0000e10b fbd0 * * fbd0 * * fbd0
+16661 * * * * * * * 5bf3 e5afb3,ee848c 5bf3,e10c 00005bf3,0000e10c fbd1 * * fbd1 * * fbd1
+16662 * * * * * * * 5b9d e5ae9d,ee848d 5b9d,e10d 00005b9d,0000e10d fbd2 fa52 * fbd2 c7d1 faf6 fbd2
+16663 * * * * * * * 4d10 e4b490,ee848e 4d10,e10e 00004d10,0000e10e fbd3 * * fbd3 * * fbd3
+16664 * * * * * * * 5c05 e5b085,ee848f 5c05,e10f 00005c05,0000e10f fbd4 fbfb 924d fbd4 c7d3 fafa fbd4
+16665 * * * * * * * e110 f0a1ad84,ee8490 d846df44,e110 00021b44,0000e110 fbd5 * * fbd5 * * fbd5
+16666 * * * * * * * 5c13 e5b093,ee8491 5c13,e111 00005c13,0000e111 fbd6 * * fbd6 * * fbd6
+16667 * * * * * * * 73ce e78f8e,ee8492 73ce,e112 000073ce,0000e112 fbd7 * * fbd7 * * fbd7
+16668 * * * * * * * 5c14 e5b094,ee8493 5c14,e113 00005c14,0000e113 fbd8 * * fbd8 * * fbd8
+16669 * * * * * * * e114 f0a1b2a5,ee8494 d847dca5,e114 00021ca5,0000e114 fbd9 * * fbd9 * * fbd9
+16670 * * * * * * * e115 f0a6aca8,ee8495 d85adf28,e115 00026b28,0000e115 fbda * * fbda * * fbda
+16671 * * * * * * * 5c49 e5b189,ee8496 5c49,e116 00005c49,0000e116 fbdb * * fbdb c7d2 faf8 fbdb
+16672 * * * * * * * 48dd e4a39d,ee8497 48dd,e117 000048dd,0000e117 fbdc * * fbdc * * fbdc
+16673 * * * * * * * 5c85 e5b285,ee8498 5c85,e118 00005c85,0000e118 fbdd * * fbdd * * fbdd
+16674 * * * * * * * 5ce9 e5b3a9,ee8499 5ce9,e119 00005ce9,0000e119 fbde fc42 91aa fbde * fafe fbde
+16675 * * * * * * * 5cef e5b3af,ee849a 5cef,e11a 00005cef,0000e11a fbdf fa6b * fbdf c7d4 fafd fbdf
+16676 * * * * * * * 5d8b e5b68b,ee849b 5d8b,e11b 00005d8b,0000e11b fbe0 fee5 8e7c fbe0 * * fbe0
+16677 * * * * * * * e11c f0a1b7b9,ee849c d847ddf9,e11c 00021df9,0000e11c fbe1 * * fbe1 * * fbe1
+16678 * * * * * * * e11d f0a1b8b7,ee849d d847de37,e11d 00021e37,0000e11d fbe2 * * fbe2 * * fbe2
+16679 * * * * * * * 5d10 e5b490,ee849e 5d10,e11e 00005d10,0000e11e fbe3 * * fbe3 c7d5 fb40 fbe3
+16680 * * * * * * * 5d18 e5b498,ee849f 5d18,e11f 00005d18,0000e11f fbe4 * * fbe4 * * fbe4
+16681 * * * * * * * 5d46 e5b586,ee84a0 5d46,e120 00005d46,0000e120 fbe5 fc44 904b fbe5 c7d6 fb42 fbe5
+16682 * * * * * * * e121 f0a1baa4,ee84a1 d847dea4,e121 00021ea4,0000e121 fbe6 * * fbe6 * * fbe6
+16683 * * * * * * * 5cba e5b2ba,ee84a2 5cba,e122 00005cba,0000e122 fbe7 * * fbe7 * * fbe7
+16684 * * * * * * * 5dd7 e5b797,ee84a3 5dd7,e123 00005dd7,0000e123 fbe8 * * fbe8 * * fbe8
+16685 * * * * * * * 82fc e88bbc,ee84a4 82fc,e124 000082fc,0000e124 fbe9 * * fbe9 * * fbe9
+16686 * * * * * * * 382d e3a0ad,ee84a5 382d,e125 0000382d,0000e125 fbea * * fbea * * fbea
+16687 * * * * * * * e126 f0a4a481,ee84a6 d852dd01,e126 00024901,0000e126 fbeb * * fbeb * * fbeb
+16688 * * * * * * * e127 f0a28189,ee84a7 d848dc49,e127 00022049,0000e127 fbec * * fbec * * fbec
+16689 * * * * * * * e128 f0a285b3,ee84a8 d848dd73,e128 00022173,0000e128 fbed * * fbed * * fbed
+16690 * * * * * * * 8287 e88a87,ee84a9 8287,e129 00008287,0000e129 fbee * * fbee * * fbee
+16691 * * * * * * * 3836 e3a0b6,ee84aa 3836,e12a 00003836,0000e12a fbef * * fbef * * fbef
+16692 * * * * * * * 3bc2 e3af82,ee84ab 3bc2,e12b 00003bc2,0000e12b fbf0 * * fbf0 * * fbf0
+16693 * * * * * * * 5e2e e5b8ae,ee84ac 5e2e,e12c 00005e2e,0000e12c fbf1 fc4b 91ad fbf1 * * fbf1
+16694 * * * * * * * 6a8a e6aa8a,ee84ad 6a8a,e12d 00006a8a,0000e12d fbf2 * * fbf2 * * fbf2
+16695 * * * * * * * * * * * * * * fbf3 * * *
+16696 * * * * * * * * ee84af e12f 0000e12f fbf4 * 91af fbf4 * fb4a fbf4
+16697 * * * * * * * e130 f0a492bc,ee84b0 d851dcbc,e130 000244bc,0000e130 fbf5 * * fbf5 * * fbf5
+16698 * * * * * * * e131 f0a0b393,ee84b1 d843dcd3,e131 00020cd3,0000e131 fbf6 * * fbf6 * * fbf6
+16699 * * * * * * * 53a6 e58ea6,ee84b2 53a6,e132 000053a6,0000e132 fbf7 fbc6 9058 fbf7 * * fbf7
+16700 * * * * * * * 4eb7 e4bab7,ee84b3 4eb7,e133 00004eb7,0000e133 fbf8 * * fbf8 * * fbf8
+16701 * * * * * * * 5ed0 * * * * * * fbf9 * * *
+16702 * * * * * * * 53a8 e58ea8,ee84b5 53a8,e135 000053a8,0000e135 fbfa fbc5 9057 fbfa * * fbfa
+16703 * * * * * * * e136 f0a19db1,ee84b6 d845df71,e136 00021771,0000e136 fbfb * * fbfb * * fbfb
+16704 * * * * * * * 5e09 e5b889,ee84b7 5e09,e137 00005e09,0000e137 fbfc * * fbfc * * fbfc
+16705 * * * * * * * * ee84b8 e138 0000e138 fbfd * * fbfd * * fbfd
+16706 * * * * * * * e139 f0a89282,ee84b9 d861dc82,e139 00028482,0000e139 fbfe * * fbfe * * fbfe
+16707 * * * * * * * 5ef9 e5bbb9,ee84ba 5ef9,e13a 00005ef9,0000e13a fc40 fc55 904e fc40 c7db fb4f fc40
+16708 * * * * * * * 5efb e5bbbb,ee84bb 5efb,e13b 00005efb,0000e13b fc41 faae 9261 fc41 c7dd fb51 fc41
+16709 * * * * * * * 38a0 e3a2a0,ee84bc 38a0,e13c 000038a0,0000e13c fc42 * * fc42 * * fc42
+16710 * * * * * * * 5efc e5bbbc,ee84bd 5efc,e13d 00005efc,0000e13d fc43 faaf 8fa4 fc43 c7dc fb50 fc43
+16711 * * * * * * * 683e e6a0be,ee84be 683e,e13e 0000683e,0000e13e fc44 * * fc44 * * fc44
+16712 * * * * * * * 941b e9909b,ee84bf 941b,e13f 0000941b,0000e13f fc45 * * fc45 * * fc45
+16713 * * * * * * * 5f0d e5bc8d,ee8580 5f0d,e140 00005f0d,0000e140 fc46 fa41 91b1 fc46 c7de fb52 fc46
+16714 * * * * * * * e141 f0a08781,ee8581 d840ddc1,e141 000201c1,0000e141 fc47 * * fc47 * * fc47
+16715 * * * * * * * e142 f0afa294,ee8582 d87edc94,e142 0002f894,0000e142 fc48 * * fc48 * * fc48
+16716 * * * * * * * 3ade e3ab9e,ee8583 3ade,e143 00003ade,0000e143 fc49 * * fc49 * * fc49
+16717 * * * * * * * e145 f0a18cba,ee8585 d844df3a,e145 0002133a,0000e145 fc4b * * fc4b * * fc4b
+16718 * * * * * * * 5f3a e5bcba,ee8586 5f3a,e146 00005f3a,0000e146 fc4c * * fc4c * * fc4c
+16719 * * * * * * * e147 f0a6a288,ee8587 d85adc88,e147 00026888,0000e147 fc4d * * fc4d * * fc4d
+16720 * * * * * * * e148 f0a28f90,ee8588 d848dfd0,e148 000223d0,0000e148 fc4e * * fc4e * * fc4e
+16721 * * * * * * * e14a f0a291b1,ee858a d849dc71,e14a 00022471,0000e14a fc50 * * fc50 * * fc50
+16722 * * * * * * * 5f63 e5bda3,ee858b 5f63,e14b 00005f63,0000e14b fc51 * * fc51 * * fc51
+16723 * * * * * * * e14d f0a6b9ae,ee858d d85bde6e,e14d 00026e6e,0000e14d fc53 * * fc53 * * fc53
+16724 * * * * * * * 5f72 e5bdb2,ee858e 5f72,e14e 00005f72,0000e14e fc54 * * fc54 * * fc54
+16725 * * * * * * * 9340 e98d80,ee858f 9340,e14f 00009340,0000e14f fc55 * * fc55 * * fc55
+16726 * * * * * * * e150 f0a8a8b6,ee8590 d862de36,e150 00028a36,0000e150 fc56 * * fc56 * * fc56
+16727 * * * * * * * 5fa7 e5bea7,ee8591 5fa7,e151 00005fa7,0000e151 fc57 fc5b 924e fc57 c7e0 fb54 fc57
+16728 * * * * * * * 5db6 e5b6b6,ee8592 5db6,e152 00005db6,0000e152 fc58 * * fc58 * * fc58
+16729 * * * * * * * 3d5f e3b59f,ee8593 3d5f,e153 00003d5f,0000e153 fc59 * * fc59 * * fc59
+16730 * * * * * * * e154 f0a58990,ee8594 d854de50,e154 00025250,0000e154 fc5a * * fc5a * * fc5a
+16731 * * * * * * * e155 f0a1bdaa,ee8595 d847df6a,e155 00021f6a,0000e155 fc5b * * fc5b * * fc5b
+16732 * * * * * * * e156 f0a783b8,ee8596 d85cdcf8,e156 000270f8,0000e156 fc5c * * fc5c * * fc5c
+16733 * * * * * * * e157 f0a299a8,ee8597 d849de68,e157 00022668,0000e157 fc5d * * fc5d * * fc5d
+16734 * * * * * * * 91d6 e98796,ee8598 91d6,e158 000091d6,0000e158 fc5e * * fc5e * * fc5e
+16735 * * * * * * * e159 f0a08a9e,ee8599 d840de9e,e159 0002029e,0000e159 fc5f * * fc5f * * fc5f
+16736 * * * * * * * e15a f0a8a8a9,ee859a d862de29,e15a 00028a29,0000e15a fc60 * * fc60 * * fc60
+16737 * * * * * * * 6031 e680b1,ee859b 6031,e15b 00006031,0000e15b fc61 fa59 8eae fc61 c7e1 fb56 fc61
+16738 * * * * * * * 6685 e69a85,ee859c 6685,e15c 00006685,0000e15c fc62 * * fc62 * * fc62
+16739 * * * * * * * 3963 e3a5a3,ee859e 3963,e15e 00003963,0000e15e fc64 * * fc64 * * fc64
+16740 * * * * * * * 3dc7 e3b787,ee859f 3dc7,e15f 00003dc7,0000e15f fc65 * * fc65 * * fc65
+16741 * * * * * * * 3639 e398b9,ee85a0 3639,e160 00003639,0000e160 fc66 * * fc66 * * fc66
+16742 * * * * * * * 5790 e59e90,ee85a1 5790,e161 00005790,0000e161 fc67 * * fc67 * * fc67
+16743 * * * * * * * e162 f0a29eb4,ee85a2 d849dfb4,e162 000227b4,0000e162 fc68 * * fc68 * * fc68
+16744 * * * * * * * 7971 e7a5b1,ee85a3 7971,e163 00007971,0000e163 fc69 * * fc69 * * fc69
+16745 * * * * * * * 3e40 e3b980,ee85a4 3e40,e164 00003e40,0000e164 fc6a * * fc6a * * fc6a
+16746 * * * * * * * 609e e6829e,ee85a5 609e,e165 0000609e,0000e165 fc6b fabf 925f fc6b c7e3 fb58 fc6b
+16747 * * * * * * * * * * * * * * fc6c * * *
+16748 * * * * * * * 60b3 e683aa 60ea 000060ea * fc64 8fbf fc6d * * *
+16749 * * * * * * * e168 f0a4a682,ee85a8 d852dd82,e168 00024982,0000e168 fc6e * * fc6e * * fc6e
+16750 * * * * * * * e169 f0a4a68f,ee85a9 d852dd8f,e169 0002498f,0000e169 fc6f * * fc6f * * fc6f
+16751 * * * * * * * e16a f0a7a993,ee85aa d85ede53,e16a 00027a53,0000e16a fc70 * * fc70 * * fc70
+16752 * * * * * * * 74a4 e792a4,ee85ab 74a4,e16b 000074a4,0000e16b fc71 * * fc71 * * fc71
+16753 * * * * * * * 50e1 e583a1,ee85ac 50e1,e16c 000050e1,0000e16c fc72 * * fc72 * * fc72
+16754 * * * * * * * 5aa0 e5aaa0,ee85ad 5aa0,e16d 00005aa0,0000e16d fc73 * * fc73 * * fc73
+16755 * * * * * * * 6164 e685a4,ee85ae 6164,e16e 00006164,0000e16e fc74 fc71 8f7d fc74 * * fc74
+16756 * * * * * * * 6142 e68582,ee85b0 6142,e170 00006142,0000e170 fc76 fc6a 9056 fc76 * * fc76
+16757 * * * * * * * e171 f0afa2a6,ee85b1 d87edca6,e171 0002f8a6,0000e171 fc77 * * fc77 * * fc77
+16758 * * * * * * * e172 f0a6bb92,ee85b2 d85bded2,e172 00026ed2,0000e172 fc78 * * fc78 * * fc78
+16759 * * * * * * * 6181 e68681,ee85b3 6181,e173 00006181,0000e173 fc79 * * fc79 * * fc79
+16760 * * * * * * * 51f4 e587b4,ee85b4 51f4,e174 000051f4,0000e174 fc7a fbaa 8fdd fc7a * fa5d fc7a
+16761 * * * * * * * e175 f0a09996,ee85b5 d841de56,e175 00020656,0000e175 fc7b * * fc7b * * fc7b
+16762 * * * * * * * 6187 e68687,ee85b6 6187,e176 00006187,0000e176 fc7c * * fc7c * * fc7c
+16763 * * * * * * * 5baa e5aeaa,ee85b7 5baa,e177 00005baa,0000e177 fc7d * * fc7d * * fc7d
+16764 * * * * * * * e178 f0a3beb7,ee85b8 d84fdfb7,e178 00023fb7,0000e178 fc7e * * fc7e * * fc7e
+16765 * * * * * * * e179 f0a2a19f,ee85b9 d84adc5f,e179 0002285f,0000e179 fca1 * * fca1 * * fca1
+16766 * * * * * * * 61d3 e68793,ee85ba 61d3,e17a 000061d3,0000e17a fca2 * * fca2 * * fca2
+16767 * * * * * * * e17b f0a8ae9d,ee85bb d862df9d,e17b 00028b9d,0000e17b fca3 * * fca3 * * fca3
+16768 * * * * * * * e17c f0a9a59d,ee85bc d866dd5d,e17c 0002995d,0000e17c fca4 * * fca4 * * fca4
+16769 * * * * * * * 61d0 e68790,ee85bd 61d0,e17d 000061d0,0000e17d fca5 * * fca5 * * fca5
+16770 * * * * * * * 3932 e3a4b2,ee85be 3932,e17e 00003932,0000e17e fca6 * * fca6 * * fca6
+16771 * * * * * * * e17f f0a2a680,ee85bf d84add80,e17f 00022980,0000e17f fca7 * * fca7 * * fca7
+16772 * * * * * * * e180 f0a2a381,ee8680 d84adcc1,e180 000228c1,0000e180 fca8 * * fca8 * * fca8
+16773 * * * * * * * 6023 e680a3,ee8681 6023,e181 00006023,0000e181 fca9 * * fca9 * * fca9
+16774 * * * * * * * 615c e6859c,ee8682 615c,e182 0000615c,0000e182 fcaa fc72 91b6 fcaa c7e5 fb5b fcaa
+16775 * * * * * * * 651e e6949e,ee8683 651e,e183 0000651e,0000e183 fcab fae6 91ba fcab c7f9 fb76 fcab
+16776 * * * * * * * 638b e68e8b,ee8684 638b,e184 0000638b,0000e184 fcac * * fcac * * fcac
+16777 * * * * * * * e185 f0a08498,ee8685 d840dd18,e185 00020118,0000e185 fcad * * fcad * * fcad
+16778 * * * * * * * 62c5 e68b85,ee8686 62c5,e186 000062c5,0000e186 fcae fa50 * fcae c7e9 fb62 fcae
+16779 * * * * * * * e187 f0a19db0,ee8687 d845df70,e187 00021770,0000e187 fcaf * * fcaf * * fcaf
+16780 * * * * * * * 62d5 e68b95,ee8688 62d5,e188 000062d5,0000e188 fcb0 fc7b 8fb7 fcb0 * * fcb0
+16781 * * * * * * * e189 f0a2b88d,ee8689 d84bde0d,e189 00022e0d,0000e189 fcb1 * * fcb1 * * fcb1
+16782 * * * * * * * 636c e68dac,ee868a 636c,e18a 0000636c,0000e18a fcb2 fc7e 8fe1 fcb2 * fb69 fcb2
+16783 * * * * * * * e18b f0a4a79f,ee868b d852dddf,e18b 000249df,0000e18b fcb3 * * fcb3 * * fcb3
+16784 * * * * * * * 3a17 e3a897,ee868c 3a17,e18c 00003a17,0000e18c fcb4 * * fcb4 * * fcb4
+16785 * * * * * * * 6438 e690b8,ee868d 6438,e18d 00006438,0000e18d fcb5 * * fcb5 * * fcb5
+16786 * * * * * * * 63f8 e68fb8,ee868e 63f8,e18e 000063f8,0000e18e fcb6 faa8 91b9 fcb6 c7f0 fb6a fcb6
+16787 * * * * * * * e18f f0a18e8e,ee868f d844df8e,e18f 0002138e,0000e18f fcb7 * * fcb7 * * fcb7
+16788 * * * * * * * e190 f0a19fbc,ee8690 d845dffc,e190 000217fc,0000e190 fcb8 * * fcb8 * * fcb8
+16789 * * * * * * * 6f8a e6be8a,ee8692 6f8a,e192 00006f8a,0000e192 fcba * * fcba * * fcba
+16790 * * * * * * * e193 f0a2b8b6,ee8693 d84bde36,e193 00022e36,0000e193 fcbb * * fcbb * * fcbb
+16791 * * * * * * * * * * * * * * fcbd * * *
+16792 * * * * * * * e196 f0a59c9d,ee8696 d855df1d,e196 0002571d,0000e196 fcbe * * fcbe * * fcbe
+16793 * * * * * * * 64e1 e693a1,ee8697 64e1,e197 000064e1,0000e197 fcbf * * fcbf * fb75 fcbf
+16794 * * * * * * * 64e5 e693a5,ee8698 64e5,e198 000064e5,0000e198 fcc0 * * fcc0 * * fcc0
+16795 * * * * * * * 947b e991bb,ee8699 947b,e199 0000947b,0000e199 fcc1 * * fcc1 * * fcc1
+16796 * * * * * * * 3a66 e3a9a6,ee869a 3a66,e19a 00003a66,0000e19a fcc2 * * fcc2 * * fcc2
+16797 * * * * * * * 643a e690ba,ee869b 643a,e19b 0000643a,0000e19b fcc3 fca2 9260 fcc3 c7f4 fb6f fcc3
+16798 * * * * * * * 3a57 e3a997,ee869c 3a57,e19c 00003a57,0000e19c fcc4 fa57 * fcc4 c7f8 fb74 fcc4
+16799 * * * * * * * 654d e6958d,ee869d 654d,e19d 0000654d,0000e19d fcc5 * * fcc5 * fb78 fcc5
+16800 * * * * * * * 6f16 e6bc96,ee869e 6f16,e19e 00006f16,0000e19e fcc6 * * fcc6 * * fcc6
+16801 * * * * * * * e19f f0a4a8a8,ee869f d852de28,e19f 00024a28,0000e19f fcc7 * * fcc7 * * fcc7
+16802 * * * * * * * e1a0 f0a4a8a3,ee86a0 d852de23,e1a0 00024a23,0000e1a0 fcc8 * * fcc8 * * fcc8
+16803 * * * * * * * 6585 e69685,ee86a1 6585,e1a1 00006585,0000e1a1 fcc9 fcf6 8f69 fcc9 * * fcc9
+16804 * * * * * * * 656d e695ad,ee86a2 656d,e1a2 0000656d,0000e1a2 fcca * * fcca * * fcca
+16805 * * * * * * * 655f e6959f,ee86a3 655f,e1a3 0000655f,0000e1a3 fccb * * fccb * * fccb
+16806 * * * * * * * * * * * * * * fccc * * *
+16807 * * * * * * * 65b5 e696b5,ee86a5 65b5,e1a5 000065b5,0000e1a5 fccd * * fccd * * fccd
+16808 * * * * * * * e1a6 f0a4a580,ee86a6 d852dd40,e1a6 00024940,0000e1a6 fcce * * fcce * * fcce
+16809 * * * * * * * 4b37 e4acb7,ee86a7 4b37,e1a7 00004b37,0000e1a7 fccf * * fccf * * fccf
+16810 * * * * * * * 65d1 e69791,ee86a8 65d1,e1a8 000065d1,0000e1a8 fcd0 * * fcd0 * * fcd0
+16811 * * * * * * * 40d8 e48398,ee86a9 40d8,e1a9 000040d8,0000e1a9 fcd1 * * fcd1 * * fcd1
+16812 * * * * * * * e1aa f0a1a0a9,ee86aa d846dc29,e1aa 00021829,0000e1aa fcd2 * * fcd2 * * fcd2
+16813 * * * * * * * * ee86ab e1ab 0000e1ab fcd3 * 91a8 fcd3 * * fcd3
+16814 * * * * * * * 65e3 e697a3,ee86ac 65e3,e1ac 000065e3,0000e1ac fcd4 * * fcd4 * * fcd4
+16815 * * * * * * * 5fdf e5bf9f,ee86ad 5fdf,e1ad 00005fdf,0000e1ad fcd5 * * fcd5 * * fcd5
+16816 * * * * * * * e1ae f0a39080,ee86ae d84ddc00,e1ae 00023400,0000e1ae fcd6 * * fcd6 * * fcd6
+16817 * * * * * * * 6618 e69898,ee86af 6618,e1af 00006618,0000e1af fcd7 * * fcd7 * * fcd7
+16818 * * * * * * * e1b0 ee86b0,f0a387b7 d84cddf7,e1b0 0000e1b0,000231f7 fcd8 * * fcd8 * * fcd8
+16819 * * * * * * * e1b1 ee86b1,f0a387b8 d84cddf8,e1b1 0000e1b1,000231f8 fcd9 * * fcd9 * * fcd9
+16820 * * * * * * * 6644 e69984,ee86b2 6644,e1b2 00006644,0000e1b2 fcda * * fcda * * fcda
+16821 * * * * * * * e1b3 ee86b3,f0a386a4 d84cdda4,e1b3 0000e1b3,000231a4 fcdb * * fcdb * * fcdb
+16822 * * * * * * * e1b4 ee86b4,f0a386a5 d84cdda5,e1b4 0000e1b4,000231a5 fcdc * * fcdc * * fcdc
+16823 * * * * * * * 664b e6998b,ee86b5 664b,e1b5 0000664b,0000e1b5 fcdd fca9 8fde fcdd * * fcdd
+16824 * * * * * * * e1b6 f0a0b9b5,ee86b6 d843de75,e1b6 00020e75,0000e1b6 fcde * * fcde * * fcde
+16825 * * * * * * * 6667 e699a7,ee86b7 6667,e1b7 00006667,0000e1b7 fcdf fca7 8fd3 fcdf * * fcdf
+16826 * * * * * * * e1b8 f0a587a6,ee86b8 d854dde6,e1b8 000251e6,0000e1b8 fce0 * * fce0 * * fce0
+16827 * * * * * * * 6673 e699b3,ee86b9 6673,e1b9 00006673,0000e1b9 fce1 * * fce1 * * fce1
+16828 * * * * * * * * efa892 fa12 0000fa12 * * * fce2 * * *
+16829 * * * * * * * e1bc f0a388b1,ee86bc d84cde31,e1bc 00023231,0000e1bc fce4 * * fce4 * * fce4
+16830 * * * * * * * e1bd f0a897b4,ee86bd d861ddf4,e1bd 000285f4,0000e1bd fce5 * * fce5 * * fce5
+16831 * * * * * * * e1be f0a38788,ee86be d84cddc8,e1be 000231c8,0000e1be fce6 * * fce6 * * fce6
+16832 * * * * * * * e1bf f0a58c93,ee86bf d854df13,e1bf 00025313,0000e1bf fce7 * * fce7 * * fce7
+16833 * * * * * * * 77c5 e79f85,ee8780 77c5,e1c0 000077c5,0000e1c0 fce8 * * fce8 * * fce8
+16834 * * * * * * * e1c1 f0a2a3b7,ee8781 d84adcf7,e1c1 000228f7,0000e1c1 fce9 * * fce9 * * fce9
+16835 * * * * * * * 99a4 e9a6a4,ee8782 99a4,e1c2 000099a4,0000e1c2 fcea * * fcea * * fcea
+16836 * * * * * * * 6702 e69c82,ee8783 6702,e1c3 00006702,0000e1c3 fceb * * fceb * * fceb
+16837 * * * * * * * e1c4 f0a48e9c,ee8784 d850df9c,e1c4 0002439c,0000e1c4 fcec * * fcec * * fcec
+16838 * * * * * * * e1c5 f0a4a8a1,ee8785 d852de21,e1c5 00024a21,0000e1c5 fced * * fced * * fced
+16839 * * * * * * * 69fa e6a7ba,ee8787 69fa,e1c7 000069fa,0000e1c7 fcef fcc2 91c3 fcef * * fcef
+16840 * * * * * * * e1c8 f0a39f82,ee8788 d84ddfc2,e1c8 000237c2,0000e1c8 fcf0 * * fcf0 * * fcf0
+16841 * * * * * * * * f0afa39b d87edcdb 0002f8db * * * fcf1 * * *
+16842 * * * * * * * 6767 e69da7,ee878a 6767,e1ca 00006767,0000e1ca fcf2 fb4e * fcf2 c844 fba9 fcf2
+16843 * * * * * * * 6762 e69da2,ee878b 6762,e1cb 00006762,0000e1cb fcf3 * * fcf3 * * fcf3
+16844 * * * * * * * e1cc f0a4878d,ee878c d850ddcd,e1cc 000241cd,0000e1cc fcf4 * * fcf4 * * fcf4
+16845 * * * * * * * e1cd f0a983ad,ee878d d864dced,e1cd 000290ed,0000e1cd fcf5 * * fcf5 * * fcf5
+16846 * * * * * * * 67d7 e69f97,ee878e 67d7,e1ce 000067d7,0000e1ce fcf6 * * fcf6 * * fcf6
+16847 * * * * * * * 44e9 e493a9,ee878f 44e9,e1cf 000044e9,0000e1cf fcf7 * * fcf7 * * fcf7
+16848 * * * * * * * 6822 e6a0a2,ee8790 6822,e1d0 00006822,0000e1d0 fcf8 faf5 9050 fcf8 c846 fbac fcf8
+16849 * * * * * * * 6e50 e6b990,ee8791 6e50,e1d1 00006e50,0000e1d1 fcf9 * * fcf9 * * fcf9
+16850 * * * * * * * 923c e988bc,ee8792 923c,e1d2 0000923c,0000e1d2 fcfa * * fcfa * * fcfa
+16851 * * * * * * * 6801 e6a081,ee8793 6801,e1d3 00006801,0000e1d3 fcfb * * fcfb * * fcfb
+16852 * * * * * * * e1d4 f0a38fa6,ee8794 d84cdfe6,e1d4 000233e6,0000e1d4 fcfc * * fcfc * * fcfc
+16853 * * * * * * * e1d5 f0a6b6a0,ee8795 d85bdda0,e1d5 00026da0,0000e1d5 fcfd * * fcfd * * fcfd
+16854 * * * * * * * 685d e6a19d,ee8796 685d,e1d6 0000685d,0000e1d6 fcfe * * fcfe * * fcfe
+16855 * * * * * * * e1d7 f0a391af,ee8797 d84ddc6f,e1d7 0002346f,0000e1d7 fd40 * * fd40 * * fd40
+16856 * * * * * * * 69e1 e6a7a1,ee8798 69e1,e1d8 000069e1,0000e1d8 fd41 * * fd41 * * fd41
+16857 * * * * * * * 6a0b e6a88b,ee8799 6a0b,e1d9 00006a0b,0000e1d9 fd42 fcbd 8fe0 fd42 * fbb3 fd42
+16858 * * * * * * * e1da f0a8ab9f,ee879a d862dedf,e1da 00028adf,0000e1da fd43 * * fd43 * * fd43
+16859 * * * * * * * 6973 e6a5b3,ee879b 6973,e1db 00006973,0000e1db fd44 fcba 8e6f fd44 * fbaf fd44
+16860 * * * * * * * 68c3 e6a383,ee879c 68c3,e1dc 000068c3,0000e1dc fd45 * * fd45 * * fd45
+16861 * * * * * * * e1dd f0a3978d,ee879d d84dddcd,e1dd 000235cd,0000e1dd fd46 * * fd46 * * fd46
+16862 * * * * * * * 6901 e6a481,ee879e 6901,e1de 00006901,0000e1de fd47 fcb6 91bf fd47 * fbae fd47
+16863 * * * * * * * 6900 e6a480,ee879f 6900,e1df 00006900,0000e1df fd48 fcb7 91c0 fd48 * * fd48
+16864 * * * * * * * 3a01 e3a881,ee87a1 3a01,e1e1 00003a01,0000e1e1 fd4a * * fd4a * * fd4a
+16865 * * * * * * * e1e2 f0a398bc,ee87a2 d84dde3c,e1e2 0002363c,0000e1e2 fd4b * * fd4b * * fd4b
+16866 * * * * * * * 3b80 e3ae80,ee87a3 3b80,e1e3 00003b80,0000e1e3 fd4c * * fd4c * * fd4c
+16867 * * * * * * * 67ac e69eac,ee87a4 67ac,e1e4 000067ac,0000e1e4 fd4d fcaf 8f63 fd4d * * fd4d
+16868 * * * * * * * 6961 e6a5a1,ee87a5 6961,e1e5 00006961,0000e1e5 fd4e * * fd4e * * fd4e
+16869 * * * * * * * e1e6 f0a8a98a,ee87a6 d862de4a,e1e6 00028a4a,0000e1e6 fd4f * * fd4f * * fd4f
+16870 * * * * * * * 42fc e48bbc,ee87a7 42fc,e1e7 000042fc,0000e1e7 fd50 * * fd50 * * fd50
+16871 * * * * * * * 6936 e6a4b6,ee87a8 6936,e1e8 00006936,0000e1e8 fd51 * * fd51 * * fd51
+16872 * * * * * * * 6998 e6a698,ee87a9 6998,e1e9 00006998,0000e1e9 fd52 fcc1 8f7a fd52 * fbb0 fd52
+16873 * * * * * * * 3ba1 e3aea1,ee87aa 3ba1,e1ea 00003ba1,0000e1ea fd53 * * fd53 * * fd53
+16874 * * * * * * * e1eb f0a08f89,ee87ab d840dfc9,e1eb 000203c9,0000e1eb fd54 * * fd54 * * fd54
+16875 * * * * * * * 8363 e88da3,ee87ac 8363,e1ec 00008363,0000e1ec fd55 * * fd55 * * fd55
+16876 * * * * * * * 5090 e58290,ee87ad 5090,e1ed 00005090,0000e1ed fd56 * * fd56 * * fd56
+16877 * * * * * * * 69f9 e6a7b9,ee87ae 69f9,e1ee 000069f9,0000e1ee fd57 * * fd57 * * fd57
+16878 * * * * * * * e1ef f0a39999,ee87af d84dde59,e1ef 00023659,0000e1ef fd58 * * fd58 * * fd58
+16879 * * * * * * * e1f0 f0a284aa,ee87b0 d848dd2a,e1f0 0002212a,0000e1f0 fd59 * * fd59 * * fd59
+16880 * * * * * * * 6a45 e6a985,ee87b1 6a45,e1f1 00006a45,0000e1f1 fd5a * * fd5a * * fd5a
+16881 * * * * * * * e1f2 f0a39c83,ee87b2 d84ddf03,e1f2 00023703,0000e1f2 fd5b * * fd5b * * fd5b
+16882 * * * * * * * 6a9d e6aa9d,ee87b3 6a9d,e1f3 00006a9d,0000e1f3 fd5c fcc8 91c7 fd5c * * fd5c
+16883 * * * * * * * 3bf3 e3afb3,ee87b4 3bf3,e1f4 00003bf3,0000e1f4 fd5d * * fd5d * * fd5d
+16884 * * * * * * * 67b1 e69eb1,ee87b5 67b1,e1f5 000067b1,0000e1f5 fd5e fa60 8ffb fd5e c845 fbaa fd5e
+16885 * * * * * * * 6ac8 e6ab88,ee87b6 6ac8,e1f6 00006ac8,0000e1f6 fd5f faa1 9051 fd5f c848 fbb5 fd5f
+16886 * * * * * * * e1f7 f0a9869c,ee87b7 d864dd9c,e1f7 0002919c,0000e1f7 fd60 * * fd60 * * fd60
+16887 * * * * * * * 3c0d e3b08d,ee87b8 3c0d,e1f8 00003c0d,0000e1f8 fd61 * * fd61 * * fd61
+16888 * * * * * * * 6b1d e6ac9d,ee87b9 6b1d,e1f9 00006b1d,0000e1f9 fd62 fcca 91cb fd62 c849 fbb6 fd62
+16889 * * * * * * * e1fa f0a0a4a3,ee87ba d842dd23,e1fa 00020923,0000e1fa fd63 * * fd63 * * fd63
+16890 * * * * * * * * e6839e,eeae94,ee87bb 60de,eb94,e1fb 000060de,0000eb94,0000e1fb 9bec,fd64 * * fd64 * * 9bec,fd64
+16891 * * * * * * * 6b35 e6acb5,ee87bc 6b35,e1fc 00006b35,0000e1fc fd65 * * fd65 c84a fbb7 fd65
+16892 * * * * * * * 6b74 e6adb4,ee87bd 6b74,e1fd 00006b74,0000e1fd fd66 * * fd66 * * fd66
+16893 * * * * * * * e1fe f0a29f8d,ee87be d849dfcd,e1fe 000227cd,0000e1fe fd67 * * fd67 * * fd67
+16894 * * * * * * * 6eb5 e6bab5,ee87bf 6eb5,e1ff 00006eb5,0000e1ff fd68 * * fd68 * * fd68
+16895 * * * * * * * e200 ee8880,f0a3ab9b d84ededb,e200 0000e200,00023adb fd69 * * fd69 * * fd69
+16896 * * * * * * * * * * * * * * fd6a * * *
+16897 * * * * * * * e202 f0a1a598,ee8882 d846dd58,e202 00021958,0000e202 fd6b * * fd6b * * fd6b
+16898 * * * * * * * 3740 e39d80,ee8883 3740,e203 00003740,0000e203 fd6c * * fd6c * * fd6c
+16899 * * * * * * * 5421 e590a1,ee8884 5421,e204 00005421,0000e204 fd6d fbcc 8e6e fd6d * fa7b fd6d
+16900 * * * * * * * e205 f0a3ad9a,ee8885 d84edf5a,e205 00023b5a,0000e205 fd6e * * fd6e * * fd6e
+16901 * * * * * * * 6be1 e6afa1,ee8886 6be1,e206 00006be1,0000e206 fd6f fb43 905b fd6f c84b fbb8 fd6f
+16902 * * * * * * * e207 f0a3bbbc,ee8887 d84fdefc,e207 00023efc,0000e207 fd70 * * fd70 * * fd70
+16903 * * * * * * * 6bdc e6af9c,ee8888 6bdc,e208 00006bdc,0000e208 fd71 * * fd71 * * fd71
+16904 * * * * * * * 6c37 e6b0b7,ee8889 6c37,e209 00006c37,0000e209 fd72 * * fd72 * * fd72
+16905 * * * * * * * e20a f0a2928b,ee888a d849dc8b,e20a 0002248b,0000e20a fd73 * * fd73 * * fd73
+16906 * * * * * * * e20b f0a4a3b1,ee888b d852dcf1,e20b 000248f1,0000e20b fd74 * * fd74 * * fd74
+16907 * * * * * * * e20c f0a6ad91,ee888c d85adf51,e20c 00026b51,0000e20c fd75 * * fd75 * * fd75
+16908 * * * * * * * 6c5a e6b19a,ee888d 6c5a,e20d 00006c5a,0000e20d fd76 * * fd76 * * fd76
+16909 * * * * * * * 8226 e888a6,ee888e 8226,e20e 00008226,0000e20e fd77 fa73 * fd77 c8b3 fc67 fd77
+16910 * * * * * * * 6c79 e6b1b9,ee888f 6c79,e20f 00006c79,0000e20f fd78 fa4e 8fb2 fd78 c84d fbba fd78
+16911 * * * * * * * e210 f0a3b6bc,ee8890 d84fddbc,e210 00023dbc,0000e210 fd79 * * fd79 * * fd79
+16912 * * * * * * * 44c5 e49385,ee8891 44c5,e211 000044c5,0000e211 fd7a * * fd7a * * fd7a
+16913 * * * * * * * e212 f0a3b6bd,ee8892 d84fddbd,e212 00023dbd,0000e212 fd7b * * fd7b * * fd7b
+16914 * * * * * * * e213 f0a486a4,ee8893 d850dda4,e213 000241a4,0000e213 fd7c * * fd7c * * fd7c
+16915 * * * * * * * e214 f0a4a48c,ee8894 d852dd0c,e214 0002490c,0000e214 fd7d * * fd7d * * fd7d
+16916 * * * * * * * e215 f0a4a480,ee8895 d852dd00,e215 00024900,0000e215 fd7e * * fd7e * * fd7e
+16917 * * * * * * * e216 f0a3b389,ee8896 d84fdcc9,e216 00023cc9,0000e216 fda1 * * fda1 * * fda1
+16918 * * * * * * * 36e5 e39ba5,ee8897 36e5,e217 000036e5,0000e217 fda2 * * fda2 * * fda2
+16919 * * * * * * * 3ceb e3b3ab,ee8898 3ceb,e218 00003ceb,0000e218 fda3 * * fda3 * * fda3
+16920 * * * * * * * e219 f0a0b4b2,ee8899 d843dd32,e219 00020d32,0000e219 fda4 * * fda4 * * fda4
+16921 * * * * * * * 9b83 e9ae83,ee889a 9b83,e21a 00009b83,0000e21a fda5 * * fda5 * * fda5
+16922 * * * * * * * e21b f0a387b9,ee889b d84cddf9,e21b 000231f9,0000e21b fda6 * * fda6 * * fda6
+16923 * * * * * * * e21c f0a29291,ee889c d849dc91,e21c 00022491,0000e21c fda7 * * fda7 * * fda7
+16924 * * * * * * * 7f8f e7be8f,ee889d 7f8f,e21d 00007f8f,0000e21d fda8 * * fda8 * * fda8
+16925 * * * * * * * 6837 e6a0b7,ee889e 6837,e21e 00006837,0000e21e fda9 * * fda9 * * fda9
+16926 * * * * * * * e21f f0a6b4a5,ee889f d85bdd25,e21f 00026d25,0000e21f fdaa * * fdaa * * fdaa
+16927 * * * * * * * e220 f0a6b6a1,ee88a0 d85bdda1,e220 00026da1,0000e220 fdab * * fdab * * fdab
+16928 * * * * * * * e221 f0a6b7ab,ee88a1 d85bddeb,e221 00026deb,0000e221 fdac * * fdac * * fdac
+16929 * * * * * * * 6d96 e6b696,ee88a2 6d96,e222 00006d96,0000e222 fdad fad0 8eb8 fdad c850 fbbd fdad
+16930 * * * * * * * 6d5c e6b59c,ee88a3 6d5c,e223 00006d5c,0000e223 fdae faf0 8e67 fdae c84f fbbc fdae
+16931 * * * * * * * 6e7c e6b9bc,ee88a4 6e7c,e224 00006e7c,0000e224 fdaf fad4 * fdaf c851 fbbe fdaf
+16932 * * * * * * * 6f04 e6bc84,ee88a5 6f04,e225 00006f04,0000e225 fdb0 * * fdb0 * * fdb0
+16933 * * * * * * * e226 f0a4a5bf,ee88a6 d852dd7f,e226 0002497f,0000e226 fdb1 * * fdb1 * * fdb1
+16934 * * * * * * * e227 f0a48285,ee88a7 d850dc85,e227 00024085,0000e227 fdb2 * * fdb2 * * fdb2
+16935 * * * * * * * e228 f0a6b9b2,ee88a8 d85bde72,e228 00026e72,0000e228 fdb3 * * fdb3 * * fdb3
+16936 * * * * * * * 8533 e894b3,ee88a9 8533,e229 00008533,0000e229 fdb4 * * fdb4 * * fdb4
+16937 * * * * * * * e22a f0a6bdb4,ee88aa d85bdf74,e22a 00026f74,0000e22a fdb5 * * fdb5 * * fdb5
+16938 * * * * * * * 51c7 e58787,ee88ab 51c7,e22b 000051c7,0000e22b fdb6 * * fdb6 * * fdb6
+16939 * * * * * * * * * * * * * * fdb7 * * *
+16940 * * * * * * * * * * * * * * fdb8 * * *
+16941 * * * * * * * 842e e890ae,ee88ae 842e,e22e 0000842e,0000e22e fdb9 * * fdb9 * * fdb9
+16942 * * * * * * * e22f f0a8aca1,ee88af d862df21,e22f 00028b21,0000e22f fdba * * fdba * * fdba
+16943 * * * * * * * * f0afa488 d87edd08 0002f908 * * * fdbb * * *
+16944 * * * * * * * e231 f0a3b8af,ee88b1 d84fde2f,e231 00023e2f,0000e231 fdbc * * fdbc * * fdbc
+16945 * * * * * * * 7453 e79193,ee88b2 7453,e232 00007453,0000e232 fdbd * * fdbd * * fdbd
+16946 * * * * * * * e233 f0a3be82,ee88b3 d84fdf82,e233 00023f82,0000e233 fdbe * * fdbe * * fdbe
+16947 * * * * * * * 79cc e7a78c,ee88b4 79cc,e234 000079cc,0000e234 fdbf fcde 91d4 fdbf * * fdbf
+16948 * * * * * * * 6e4f e6b98f,ee88b5 6e4f,e235 00006e4f,0000e235 fdc0 fcd2 8f62 fdc0 * * fdc0
+16949 * * * * * * * 5a91 e5aa91,ee88b6 5a91,e236 00005a91,0000e236 fdc1 * * fdc1 * * fdc1
+16950 * * * * * * * e237 f0a3818b,ee88b7 d84cdc4b,e237 0002304b,0000e237 fdc2 * * fdc2 * * fdc2
+16951 * * * * * * * 6ff8 e6bfb8,ee88b8 6ff8,e238 00006ff8,0000e238 fdc3 * * fdc3 * * fdc3
+16952 * * * * * * * 370d e39c8d,ee88b9 370d,e239 0000370d,0000e239 fdc4 * * fdc4 * * fdc4
+16953 * * * * * * * 6f9d e6be9d,ee88ba 6f9d,e23a 00006f9d,0000e23a fdc5 * * fdc5 * * fdc5
+16954 * * * * * * * e23b f0a3b8b0,ee88bb d84fde30,e23b 00023e30,0000e23b fdc6 * * fdc6 * * fdc6
+16955 * * * * * * * 6efa e6bbba,ee88bc 6efa,e23c 00006efa,0000e23c fdc7 * * fdc7 * * fdc7
+16956 * * * * * * * e23d f0a19297,ee88bd d845dc97,e23d 00021497,0000e23d fdc8 * * fdc8 * * fdc8
+16957 * * * * * * * e23e f0a480bd,ee88be d850dc3d,e23e 0002403d,0000e23e fdc9 * * fdc9 * * fdc9
+16958 * * * * * * * 4555 e49595,ee88bf 4555,e23f 00004555,0000e23f fdca * * fdca * * fdca
+16959 * * * * * * * 93f0 e98fb0,ee8980 93f0,e240 000093f0,0000e240 fdcb * * fdcb * * fdcb
+16960 * * * * * * * 6f44 e6bd84,ee8981 6f44,e241 00006f44,0000e241 fdcc fcd4 91cc fdcc * * fdcc
+16961 * * * * * * * 6f5c e6bd9c,ee8982 6f5c,e242 00006f5c,0000e242 fdcd fcd5 8fae fdcd * * fdcd
+16962 * * * * * * * 3d4e e3b58e,ee8983 3d4e,e243 00003d4e,0000e243 fdce * * fdce * fbc1 fdce
+16963 * * * * * * * 6f74 e6bdb4,ee8984 6f74,e244 00006f74,0000e244 fdcf * * fdcf * * fdcf
+16964 * * * * * * * e245 f0a985b0,ee8985 d864dd70,e245 00029170,0000e245 fdd0 * * fdd0 * * fdd0
+16965 * * * * * * * 3d3b e3b4bb,ee8986 3d3b,e246 00003d3b,0000e246 fdd1 * * fdd1 * * fdd1
+16966 * * * * * * * 6f9f e6be9f,ee8987 6f9f,e247 00006f9f,0000e247 fdd2 * * fdd2 * fbc3 fdd2
+16967 * * * * * * * e248 f0a48584,ee8988 d850dd44,e248 00024144,0000e248 fdd3 * * fdd3 * * fdd3
+16968 * * * * * * * 6fd3 e6bf93,ee8989 6fd3,e249 00006fd3,0000e249 fdd4 * * fdd4 * * fdd4
+16969 * * * * * * * e24a f0a48291,ee898a d850dc91,e24a 00024091,0000e24a fdd5 * * fdd5 * * fdd5
+16970 * * * * * * * e24b f0a48595,ee898b d850dd55,e24b 00024155,0000e24b fdd6 * * fdd6 * * fdd6
+16971 * * * * * * * e24c f0a480b9,ee898c d850dc39,e24c 00024039,0000e24c fdd7 * * fdd7 * * fdd7
+16972 * * * * * * * e24d f0a3bfb0,ee898d d84fdff0,e24d 00023ff0,0000e24d fdd8 * * fdd8 * * fdd8
+16973 * * * * * * * e24e f0a3beb4,ee898e d84fdfb4,e24e 00023fb4,0000e24e fdd9 * * fdd9 * * fdd9
+16974 * * * * * * * e24f f0a484bf,ee898f d850dd3f,e24f 0002413f,0000e24f fdda * * fdda * * fdda
+16975 * * * * * * * 51df e5879f,ee8990 51df,e250 000051df,0000e250 fddb fbbc 9262 fddb * * fddb
+16976 * * * * * * * e251 ee8991,f0a48596 d850dd56,e251 0000e251,00024156 fddc * * fddc * * fddc
+16977 * * * * * * * e252 ee8992,f0a48597 d850dd57,e252 0000e252,00024157 fddd * * fddd * * fddd
+16978 * * * * * * * e253 f0a48580,ee8993 d850dd40,e253 00024140,0000e253 fdde * * fdde * * fdde
+16979 * * * * * * * e254 f0a6879d,ee8994 d858dddd,e254 000261dd,0000e254 fddf * * fddf * * fddf
+16980 * * * * * * * 704b e7818b,ee8995 704b,e255 0000704b,0000e255 fde0 * * fde0 * * fde0
+16981 * * * * * * * 707e e781be,ee8996 707e,e256 0000707e,0000e256 fde1 fc50 8fe8 fde1 * * fde1
+16982 * * * * * * * 70a7 e782a7,ee8997 70a7,e257 000070a7,0000e257 fde2 * * fde2 * * fde2
+16983 * * * * * * * * * * * * fcdd 8fe5 fde3 * * *
+16984 * * * * * * * 70cc e7838c,ee8999 70cc,e259 000070cc,0000e259 fde4 * * fde4 * * fde4
+16985 * * * * * * * 70d5 e78395,ee899a 70d5,e25a 000070d5,0000e25a fde5 fc75 91cf fde5 * * fde5
+16986 * * * * * * * 70d6 e78396,ee899b 70d6,e25b 000070d6,0000e25b fde6 * * fde6 * * fde6
+16987 * * * * * * * 70df e7839f,ee899c 70df,e25c 000070df,0000e25c fde7 fa69 9259 fde7 c857 fbc7 fde7
+16988 * * * * * * * 4104 e48484,ee899d 4104,e25d 00004104,0000e25d fde8 * * fde8 * * fde8
+16989 * * * * * * * 3de8 e3b7a8,ee899e 3de8,e25e 00003de8,0000e25e fde9 * * fde9 * * fde9
+16990 * * * * * * * 71b4 e786b4,ee899f 71b4,e25f 000071b4,0000e25f fdea * * fdea * * fdea
+16991 * * * * * * * 7196 e78696,ee89a0 7196,e260 00007196,0000e260 fdeb * * fdeb * * fdeb
+16992 * * * * * * * e261 f0a489b7,ee89a1 d850de77,e261 00024277,0000e261 fdec * * fdec * * fdec
+16993 * * * * * * * 712b e784ab,ee89a2 712b,e262 0000712b,0000e262 fded * * fded * * fded
+16994 * * * * * * * 7145 e78585,ee89a3 7145,e263 00007145,0000e263 fdee fac3 91d1 fdee c85d fbcd fdee
+16995 * * * * * * * 5a88 e5aa88,ee89a4 5a88,e264 00005a88,0000e264 fdef * * fdef * * fdef
+16996 * * * * * * * 714a e7858a,ee89a5 714a,e265 0000714a,0000e265 fdf0 faf6 8e6c fdf0 c85c fbcc fdf0
+16997 * * * * * * * * efa988 fa48 0000fa48 * * * fdf1 * * *
+16998 * * * * * * * e268 f0a48da5,ee89a8 d850df65,e268 00024365,0000e268 fdf3 * * fdf3 * * fdf3
+16999 * * * * * * * 714f e7858f,ee89a9 714f,e269 0000714f,0000e269 fdf4 * * fdf4 * * fdf4
+17000 * * * * * * * 9362 e98da2,ee89aa 9362,e26a 00009362,0000e26a fdf5 * * fdf5 * * fdf5
+17001 * * * * * * * e26b f0a48b81,ee89ab d850dec1,e26b 000242c1,0000e26b fdf6 * * fdf6 * * fdf6
+17002 * * * * * * * 712c e784ac,ee89ac 712c,e26c 0000712c,0000e26c fdf7 * * fdf7 * * fdf7
+17003 * * * * * * * e26d f0a4919a,ee89ad d851dc5a,e26d 0002445a,0000e26d fdf8 * * fdf8 * * fdf8
+17004 * * * * * * * e26e f0a4a8a7,ee89ae d852de27,e26e 00024a27,0000e26e fdf9 * * fdf9 * * fdf9
+17005 * * * * * * * e26f f0a4a8a2,ee89af d852de22,e26f 00024a22,0000e26f fdfa * * fdfa * * fdfa
+17006 * * * * * * * 71ba e786ba,ee89b0 71ba,e270 000071ba,0000e270 fdfb * * fdfb * * fdfb
+17007 * * * * * * * e271 f0a8afa8,ee89b1 d862dfe8,e271 00028be8,0000e271 fdfc * * fdfc * * fdfc
+17008 * * * * * * * 70bd e782bd,ee89b2 70bd,e272 000070bd,0000e272 fdfd * * fdfd * * fdfd
+17009 * * * * * * * 720e e7888e,ee89b3 720e,e273 0000720e,0000e273 fdfe * * fdfe * * fdfe
+17010 * * * * * * * 9442 e99182,ee89b4 9442,e274 00009442,0000e274 fe40 * * fe40 * * fe40
+17011 * * * * * * * 7215 e78895,ee89b5 7215,e275 00007215,0000e275 fe41 fce9 8eb7 fe41 c860 fbd0 fe41
+17012 * * * * * * * 5911 e5a491,ee89b6 5911,e276 00005911,0000e276 fe42 * * fe42 * * fe42
+17013 * * * * * * * 9443 e99183,ee89b7 9443,e277 00009443,0000e277 fe43 * * fe43 * * fe43
+17014 * * * * * * * 7224 e788a4,ee89b8 7224,e278 00007224,0000e278 fe44 * * fe44 * * fe44
+17015 * * * * * * * 9341 e98d81,ee89b9 9341,e279 00009341,0000e279 fe45 * * fe45 * * fe45
+17016 * * * * * * * e27a f0a59885,ee89ba d855de05,e27a 00025605,0000e27a fe46 * * fe46 * * fe46
+17017 * * * * * * * 722e e788ae,ee89bb 722e,e27b 0000722e,0000e27b fe47 * * fe47 * * fe47
+17018 * * * * * * * 7240 e78980,ee89bc 7240,e27c 00007240,0000e27c fe48 fb41 * fe48 c862 fbd2 fe48
+17019 * * * * * * * e27d f0a4a5b4,ee89bd d852dd74,e27d 00024974,0000e27d fe49 * * fe49 * * fe49
+17020 * * * * * * * 68bd e6a2bd,ee89be 68bd,e27e 000068bd,0000e27e fe4a * * fe4a * * fe4a
+17021 * * * * * * * 7255 e78995,ee89bf 7255,e27f 00007255,0000e27f fe4b fceb 9040 fe4b * * fe4b
+17022 * * * * * * * 7257 e78997,ee8a80 7257,e280 00007257,0000e280 fe4c * * fe4c * * fe4c
+17023 * * * * * * * 3e55 e3b995,ee8a81 3e55,e281 00003e55,0000e281 fe4d * * fe4d * * fe4d
+17024 * * * * * * * e282 f0a38184,ee8a82 d84cdc44,e282 00023044,0000e282 fe4e * * fe4e * * fe4e
+17025 * * * * * * * 680d e6a08d,ee8a83 680d,e283 0000680d,0000e283 fe4f * * fe4f * * fe4f
+17026 * * * * * * * 6f3d e6bcbd,ee8a84 6f3d,e284 00006f3d,0000e284 fe50 * * fe50 * * fe50
+17027 * * * * * * * 7282 e78a82,ee8a85 7282,e285 00007282,0000e285 fe51 * * fe51 * fbd3 fe51
+17028 * * * * * * * * * * * * * * fe52 * * *
+17029 * * * * * * * 732b e78cab,ee8a87 732b,e287 0000732b,0000e287 fe53 * * fe53 * * fe53
+17030 * * * * * * * e288 f0a4a0a3,ee8a88 d852dc23,e288 00024823,0000e288 fe54 * * fe54 * * fe54
+17031 * * * * * * * e289 f0a8a0ab,ee8a89 d862dc2b,e289 0002882b,0000e289 fe55 * * fe55 * * fe55
+17032 * * * * * * * 48ed e4a3ad,ee8a8a 48ed,e28a 000048ed,0000e28a fe56 * * fe56 * * fe56
+17033 * * * * * * * e28b f0a8a084,ee8a8b d862dc04,e28b 00028804,0000e28b fe57 * * fe57 * * fe57
+17034 * * * * * * * 7328 e78ca8,ee8a8c 7328,e28c 00007328,0000e28c fe58 fcf3 91d9 fe58 c869 fbdb fe58
+17035 * * * * * * * 732e e78cae,ee8a8d 732e,e28d 0000732e,0000e28d fe59 fcf1 8ea9 fe59 c86a fbdc fe59
+17036 * * * * * * * 73cf e78f8f,ee8a8e 73cf,e28e 000073cf,0000e28e fe5a fa68 * fe5a c86b fbde fe5a
+17037 * * * * * * * 73aa e78eaa,ee8a8f 73aa,e28f 000073aa,0000e28f fe5b * * fe5b * * fe5b
+17038 * * * * * * * e290 f0a0b0ba,ee8a90 d843dc3a,e290 00020c3a,0000e290 fe5c * * fe5c * * fe5c
+17039 * * * * * * * e291 f0a6a8ae,ee8a91 d85ade2e,e291 00026a2e,0000e291 fe5d * * fe5d * * fe5d
+17040 * * * * * * * 73c9 e78f89,ee8a92 73c9,e292 000073c9,0000e292 fe5e fcf9 8fbc fe5e * fbdf fe5e
+17041 * * * * * * * 7449 e79189,ee8a93 7449,e293 00007449,0000e293 fe5f * * fe5f * * fe5f
+17042 * * * * * * * e294 f0a487a2,ee8a94 d850dde2,e294 000241e2,0000e294 fe60 * * fe60 * * fe60
+17043 * * * * * * * e295 f0a19ba7,ee8a95 d845dee7,e295 000216e7,0000e295 fe61 * * fe61 * * fe61
+17044 * * * * * * * e296 f0a4a8a4,ee8a96 d852de24,e296 00024a24,0000e296 fe62 * * fe62 * * fe62
+17045 * * * * * * * 6623 e698a3,ee8a97 6623,e297 00006623,0000e297 fe63 * * fe63 * * fe63
+17046 * * * * * * * 36c5 e39b85,ee8a98 36c5,e298 000036c5,0000e298 fe64 * * fe64 * * fe64
+17047 * * * * * * * e299 f0a4a6b7,ee8a99 d852ddb7,e299 000249b7,0000e299 fe65 * * fe65 * * fe65
+17048 * * * * * * * e29a f0a4a68d,ee8a9a d852dd8d,e29a 0002498d,0000e29a fe66 * * fe66 * * fe66
+17049 * * * * * * * e29b f0a4a7bb,ee8a9b d852ddfb,e29b 000249fb,0000e29b fe67 * * fe67 * * fe67
+17050 * * * * * * * 73f7 e78fb7,ee8a9c 73f7,e29c 000073f7,0000e29c fe68 * * fe68 * * fe68
+17051 * * * * * * * 7415 e79095,ee8a9d 7415,e29d 00007415,0000e29d fe69 * * fe69 * * fe69
+17052 * * * * * * * 6903 e6a483,ee8a9e 6903,e29e 00006903,0000e29e fe6a * * fe6a * * fe6a
+17053 * * * * * * * e29f f0a4a8a6,ee8a9f d852de26,e29f 00024a26,0000e29f fe6b * * fe6b * * fe6b
+17054 * * * * * * * 7439 e790b9,ee8aa0 7439,e2a0 00007439,0000e2a0 fe6c * * fe6c * * fe6c
+17055 * * * * * * * 3ed7 e3bb97,ee8aa2 3ed7,e2a2 00003ed7,0000e2a2 fe6e * * fe6e * * fe6e
+17056 * * * * * * * * f0afa4af d87edd2f 0002f92f * * * fe6f * * *
+17057 * * * * * * * e2a4 f0a2a2ad,ee8aa4 d84adcad,e2a4 000228ad,0000e2a4 fe70 * * fe70 * * fe70
+17058 * * * * * * * 7460 e791a0,ee8aa5 7460,e2a5 00007460,0000e2a5 fe71 fcfc 8fe4 fe71 * * fe71
+17059 * * * * * * * e2a6 f0a8bab2,ee8aa6 d863deb2,e2a6 00028eb2,0000e2a6 fe72 * * fe72 * * fe72
+17060 * * * * * * * 7447 e79187,ee8aa7 7447,e2a7 00007447,0000e2a7 fe73 * * fe73 * * fe73
+17061 * * * * * * * 73e4 e78fa4,ee8aa8 73e4,e2a8 000073e4,0000e2a8 fe74 * * fe74 * * fe74
+17062 * * * * * * * 7476 e791b6,ee8aa9 7476,e2a9 00007476,0000e2a9 fe75 * * fe75 * * fe75
+17063 * * * * * * * 83b9 e88eb9,ee8aaa 83b9,e2aa 000083b9,0000e2aa fe76 * * fe76 * * fe76
+17064 * * * * * * * 746c e791ac,ee8aab 746c,e2ab 0000746c,0000e2ab fe77 * * fe77 * * fe77
+17065 * * * * * * * 7474 e791b4,ee8aad 7474,e2ad 00007474,0000e2ad fe79 * * fe79 * * fe79
+17066 * * * * * * * 93f1 e98fb1,ee8aae 93f1,e2ae 000093f1,0000e2ae fe7a * * fe7a * * fe7a
+17067 * * * * * * * 6a2c e6a8ac,ee8aaf 6a2c,e2af 00006a2c,0000e2af fe7b * * fe7b * * fe7b
+17068 * * * * * * * 7482 e79282,ee8ab0 7482,e2b0 00007482,0000e2b0 fe7c * * fe7c * * fe7c
+17069 * * * * * * * 4953 e4a593,ee8ab1 4953,e2b1 00004953,0000e2b1 fe7d * * fe7d * * fe7d
+17070 * * * * * * * e2b2 f0a4aa8c,ee8ab2 d852de8c,e2b2 00024a8c,0000e2b2 fe7e * * fe7e * * fe7e
+17071 * * * * * * * e2b3 f0a4859f,ee8ab3 d850dd5f,e2b3 0002415f,0000e2b3 fea1 * * fea1 * * fea1
+17072 * * * * * * * e2b4 f0a4a9b9,ee8ab4 d852de79,e2b4 00024a79,0000e2b4 fea2 * * fea2 * * fea2
+17073 * * * * * * * e2b5 f0a8ae8f,ee8ab5 d862df8f,e2b5 00028b8f,0000e2b5 fea3 * * fea3 * * fea3
+17074 * * * * * * * 5b46 e5ad86,ee8ab6 5b46,e2b6 00005b46,0000e2b6 fea4 * * fea4 * * fea4
+17075 * * * * * * * e2b7 f0a8b083,ee8ab7 d863dc03,e2b7 00028c03,0000e2b7 fea5 * * fea5 * * fea5
+17076 * * * * * * * e2b8 f0a1a29e,ee8ab8 d846dc9e,e2b8 0002189e,0000e2b8 fea6 * * fea6 * * fea6
+17077 * * * * * * * 74c8 e79388,ee8ab9 74c8,e2b9 000074c8,0000e2b9 fea7 * * fea7 * * fea7
+17078 * * * * * * * e2ba f0a1a688,ee8aba d846dd88,e2ba 00021988,0000e2ba fea8 * * fea8 * * fea8
+17079 * * * * * * * 750e e7948e,ee8abb 750e,e2bb 0000750e,0000e2bb fea9 fd45 9049 fea9 * * fea9
+17080 * * * * * * * 751e e7949e,ee8abd 751e,e2bd 0000751e,0000e2bd feab fd47 9047 feab * * feab
+17081 * * * * * * * e2be f0a8bb99,ee8abe d863ded9,e2be 00028ed9,0000e2be feac * * feac * * feac
+17082 * * * * * * * e2bf f0a1a98b,ee8abf d846de4b,e2bf 00021a4b,0000e2bf fead * * fead * * fead
+17083 * * * * * * * 5bd7 e5af97,ee8b80 5bd7,e2c0 00005bd7,0000e2c0 feae * * feae * faf7 feae
+17084 * * * * * * * e2c1 f0a8baac,ee8b81 d863deac,e2c1 00028eac,0000e2c1 feaf * * feaf * * feaf
+17085 * * * * * * * 9385 e98e85,ee8b82 9385,e2c2 00009385,0000e2c2 feb0 fadb * feb0 c8de fccd feb0
+17086 * * * * * * * 754d e7958d,ee8b83 754d,e2c3 0000754d,0000e2c3 feb1 * * feb1 * * feb1
+17087 * * * * * * * 754a e7958a,ee8b84 754a,e2c4 0000754a,0000e2c4 feb2 fd49 8fb1 feb2 * * feb2
+17088 * * * * * * * 7567 e795a7,ee8b85 7567,e2c5 00007567,0000e2c5 feb3 * * feb3 * * feb3
+17089 * * * * * * * 756e e795ae,ee8b86 756e,e2c6 0000756e,0000e2c6 feb4 * * feb4 * * feb4
+17090 * * * * * * * e2c7 f0a4be82,ee8b87 d853df82,e2c7 00024f82,0000e2c7 feb5 * * feb5 * * feb5
+17091 * * * * * * * 3f04 e3bc84,ee8b88 3f04,e2c8 00003f04,0000e2c8 feb6 * * feb6 * * feb6
+17092 * * * * * * * e2c9 f0a4b493,ee8b89 d853dd13,e2c9 00024d13,0000e2c9 feb7 * * feb7 * * feb7
+17093 * * * * * * * 758e e7968e,ee8b8a 758e,e2ca 0000758e,0000e2ca feb8 fd4c 925c feb8 * fbe2 feb8
+17094 * * * * * * * 745d e7919d,ee8b8b 745d,e2cb 0000745d,0000e2cb feb9 fcfb 8ff9 feb9 * * feb9
+17095 * * * * * * * 759e e7969e,ee8b8c 759e,e2cc 0000759e,0000e2cc feba * * feba * * feba
+17096 * * * * * * * 75b4 e796b4,ee8b8d 75b4,e2cd 000075b4,0000e2cd febb faaa 8e4f febb c86d fbe3 febb
+17097 * * * * * * * 7602 e79882,ee8b8e 7602,e2ce 00007602,0000e2ce febc fd6f 8ff6 febc * * febc
+17098 * * * * * * * 762c e798ac,ee8b8f 762c,e2cf 0000762c,0000e2cf febd * * febd * * febd
+17099 * * * * * * * 7651 e79991,ee8b90 7651,e2d0 00007651,0000e2d0 febe * * febe * * febe
+17100 * * * * * * * 764f e7998f,ee8b91 764f,e2d1 0000764f,0000e2d1 febf * * febf * * febf
+17101 * * * * * * * 766f e799af,ee8b92 766f,e2d2 0000766f,0000e2d2 fec0 fd72 8fcc fec0 * * fec0
+17102 * * * * * * * * ee8b93 e2d3 0000e2d3 fec1 * * fec1 * * fec1
+17103 * * * * * * * e2d4 f0a68fb5,ee8b94 d858dff5,e2d4 000263f5,0000e2d4 fec2 * * fec2 * * fec2
+17104 * * * * * * * 7690 e79a90,ee8b95 7690,e2d5 00007690,0000e2d5 fec3 fd4e 8e57 fec3 * * fec3
+17105 * * * * * * * 81ef e887af,ee8b96 81ef,e2d6 000081ef,0000e2d6 fec4 * * fec4 * * fec4
+17106 * * * * * * * 37f8 e39fb8,ee8b97 37f8,e2d7 000037f8,0000e2d7 fec5 * * fec5 * * fec5
+17107 * * * * * * * e2d8 f0a6a491,ee8b98 d85add11,e2d8 00026911,0000e2d8 fec6 * * fec6 * * fec6
+17108 * * * * * * * e2d9 f0a6a48e,ee8b99 d85add0e,e2d9 0002690e,0000e2d9 fec7 fdc7 8fe3 fec7 * * fec7
+17109 * * * * * * * 76a1 e79aa1,ee8b9a 76a1,e2da 000076a1,0000e2da fec8 fd4d 8fbb fec8 * * fec8
+17110 * * * * * * * 76a5 e79aa5,ee8b9b 76a5,e2db 000076a5,0000e2db fec9 * * fec9 * * fec9
+17111 * * * * * * * 76b7 e79ab7,ee8b9c 76b7,e2dc 000076b7,0000e2dc feca * * feca * * feca
+17112 * * * * * * * 76cc e79b8c,ee8b9d 76cc,e2dd 000076cc,0000e2dd fecb fd4f 8fac fecb * fbf1 fecb
+17113 * * * * * * * e2de f0a6be9f,ee8b9e d85bdf9f,e2de 00026f9f,0000e2de fecc * * fecc * * fecc
+17114 * * * * * * * 8462 e891a2,ee8b9f 8462,e2df 00008462,0000e2df fecd * * fecd * * fecd
+17115 * * * * * * * e2e0 f0a5829d,ee8ba0 d854dc9d,e2e0 0002509d,0000e2e0 fece * * fece * * fece
+17116 * * * * * * * e2e1 f0a585bd,ee8ba1 d854dd7d,e2e1 0002517d,0000e2e1 fecf * * fecf * * fecf
+17117 * * * * * * * e2e2 f0a1b89c,ee8ba2 d847de1c,e2e2 00021e1c,0000e2e2 fed0 * * fed0 * * fed0
+17118 * * * * * * * 771e e79c9e,ee8ba3 771e,e2e3 0000771e,0000e2e3 fed1 * * fed1 * * fed1
+17119 * * * * * * * 7726 e79ca6,ee8ba4 7726,e2e4 00007726,0000e2e4 fed2 fd53 91e0 fed2 * * fed2
+17120 * * * * * * * 7740 e79d80,ee8ba5 7740,e2e5 00007740,0000e2e5 fed3 faa6 9258 fed3 c875 fbf3 fed3
+17121 * * * * * * * 64af e692af,ee8ba6 64af,e2e6 000064af,0000e2e6 fed4 * * fed4 * * fed4
+17122 * * * * * * * e2e7 f0a588a0,ee8ba7 d854de20,e2e7 00025220,0000e2e7 fed5 * * fed5 * * fed5
+17123 * * * * * * * 7758 e79d98,ee8ba8 7758,e2e8 00007758,0000e2e8 fed6 * * fed6 * * fed6
+17124 * * * * * * * e2e9 f0a38aac,ee8ba9 d84cdeac,e2e9 000232ac,0000e2e9 fed7 * * fed7 * * fed7
+17125 * * * * * * * 77af e79eaf,ee8baa 77af,e2ea 000077af,0000e2ea fed8 * * fed8 * * fed8
+17126 * * * * * * * e2eb f0a8a5a4,ee8bab d862dd64,e2eb 00028964,0000e2eb fed9 * * fed9 * * fed9
+17127 * * * * * * * e2ec f0a8a5a8,ee8bac d862dd68,e2ec 00028968,0000e2ec feda * * feda * * feda
+17128 * * * * * * * e2ed f0a19b81,ee8bad d845dec1,e2ed 000216c1,0000e2ed fedb * * fedb * * fedb
+17129 * * * * * * * 77f4 e79fb4,ee8bae 77f4,e2ee 000077f4,0000e2ee fedc * * fedc * * fedc
+17130 * * * * * * * * * * * * * * fedd * * *
+17131 * * * * * * * 68ca e6a38a,ee8bb2 68ca,e2f2 000068ca,0000e2f2 fee0 fcb8 8e7b fee0 * * fee0
+17132 * * * * * * * 78af e7a2af,ee8bb3 78af,e2f3 000078af,0000e2f3 fee1 fd5b 8e52 fee1 * fc40 fee1
+17133 * * * * * * * 78c7 e7a387,ee8bb4 78c7,e2f4 000078c7,0000e2f4 fee2 * * fee2 * * fee2
+17134 * * * * * * * 78d3 e7a393,ee8bb5 78d3,e2f5 000078d3,0000e2f5 fee3 fd57 91e3 fee3 * * fee3
+17135 * * * * * * * 96a5 e99aa5,ee8bb6 96a5,e2f6 000096a5,0000e2f6 fee4 * * fee4 * * fee4
+17136 * * * * * * * 792e e7a4ae,ee8bb7 792e,e2f7 0000792e,0000e2f7 fee5 fd5d 9041 fee5 c87a fc41 fee5
+17137 * * * * * * * e2f8 f0a597a0,ee8bb8 d855dde0,e2f8 000255e0,0000e2f8 fee6 * * fee6 * * fee6
+17138 * * * * * * * 78d7 e7a397,ee8bb9 78d7,e2f9 000078d7,0000e2f9 fee7 * * fee7 * * fee7
+17139 * * * * * * * 7934 e7a4b4,ee8bba 7934,e2fa 00007934,0000e2fa fee8 * * fee8 * * fee8
+17140 * * * * * * * 78b1 e7a2b1,ee8bbb 78b1,e2fb 000078b1,0000e2fb fee9 fd58 8ec7 fee9 * fbfd fee9
+17141 * * * * * * * e2fc f0a7988c,ee8bbc d85dde0c,e2fc 0002760c,0000e2fc feea * * feea * * feea
+17142 * * * * * * * 8fb8 e8beb8,ee8bbd 8fb8,e2fd 00008fb8,0000e2fd feeb * * feeb * * feeb
+17143 * * * * * * * 8884 e8a284,ee8bbe 8884,e2fe 00008884,0000e2fe feec * * feec * * feec
+17144 * * * * * * * e301 f0a2989c,ee8c81 d849de1c,e301 0002261c,0000e301 feef * * feef * * feef
+17145 * * * * * * * 7986 e7a686,ee8c82 7986,e302 00007986,0000e302 fef0 * * fef0 * * fef0
+17146 * * * * * * * 8900 e8a480,ee8c83 8900,e303 00008900,0000e303 fef1 * * fef1 * * fef1
+17147 * * * * * * * 6902 e6a482,ee8c84 6902,e304 00006902,0000e304 fef2 * * fef2 * * fef2
+17148 * * * * * * * 7980 e7a680,ee8c85 7980,e305 00007980,0000e305 fef3 * * fef3 * * fef3
+17149 * * * * * * * e306 f0a5a197,ee8c86 d856dc57,e306 00025857,0000e306 fef4 * * fef4 * * fef4
+17150 * * * * * * * 799d e7a69d,ee8c87 799d,e307 0000799d,0000e307 fef5 fb54,fd60 8efa fef5 c87c fc44 fef5
+17151 * * * * * * * e308 f0a7acb9,ee8c88 d85edf39,e308 00027b39,0000e308 fef6 * * fef6 * * fef6
+17152 * * * * * * * 793c e7a4bc,ee8c89 793c,e309 0000793c,0000e309 fef7 * * fef7 * * fef7
+17153 * * * * * * * 79a9 e7a6a9,ee8c8a 79a9,e30a 000079a9,0000e30a fef8 fd61 8ef6 fef8 * * fef8
+17154 * * * * * * * 6e2a e6b8aa,ee8c8b 6e2a,e30b 00006e2a,0000e30b fef9 * * fef9 * * fef9
+17155 * * * * * * * e30c f0a784a6,ee8c8c d85cdd26,e30c 00027126,0000e30c fefa * * fefa * * fefa
+17156 * * * * * * * 3ea8 e3baa8,ee8c8d 3ea8,e30d 00003ea8,0000e30d fefb * * fefb * * fefb
+17157 * * * * * * * 79c6 e7a786,ee8c8e 79c6,e30e 000079c6,0000e30e fefc * * fefc c87d fc45 fefc
+17158 * * * * * * * e30f f0a9848d,ee8c8f d864dd0d,e30f 0002910d,0000e30f fefd * * fefd * * fefd
+17159 * * * * * * * 79d4 e7a794,ee8c90 79d4,e310 000079d4,0000e310 fefe fd63 91e7 fefe * * fefe
+17160 * * * * * * * * * * * * * * 8a40 * * *
+17161 * * * * * * * 5525 e594a5,ef90be 5525,f43e 00005525,0000f43e 8a41 * * 8a41 * * 8a41
+17162 * * * * * * * * * * * * * * 8a42 * * *
+17163 * * * * * * * f440 f0a0b182,ef9180 d843dc42,f440 00020c42,0000f440 8a43 * * 8a43 * * 8a43
+17164 * * * * * * * f441 f0a0b495,ef9181 d843dd15,f441 00020d15,0000f441 8a44 * * 8a44 * * 8a44
+17165 * * * * * * * f442 f0a584ab,ef9182 d854dd2b,f442 0002512b,0000f442 8a45 * * 8a45 * * 8a45
+17166 * * * * * * * 5590 e59690,ef9183 5590,f443 00005590,0000f443 8a46 * * 8a46 * * 8a46
+17167 * * * * * * * f444 f0a2b386,ef9184 d84bdcc6,f444 00022cc6,0000f444 8a47 * * 8a47 * * 8a47
+17168 * * * * * * * 39ec e3a7ac,ef9185 39ec,f445 000039ec,0000f445 8a48 * * 8a48 * * 8a48
+17169 * * * * * * * f446 f0a08d81,ef9186 d840df41,f446 00020341,0000f446 8a49 * * 8a49 * * 8a49
+17170 * * * * * * * 8e46 e8b986,ef9187 8e46,f447 00008e46,0000f447 8a4a * * 8a4a * * 8a4a
+17171 * * * * * * * f448 f0a4b6b8,ef9188 d853ddb8,f448 00024db8,0000f448 8a4b * * 8a4b * * 8a4b
+17172 * * * * * * * f449 f0a993a5,ef9189 d865dce5,f449 000294e5,0000f449 8a4c * * 8a4c * * 8a4c
+17173 * * * * * * * * * * * * * * 8a4d * * *
+17174 * * * * * * * f44b f0a882be,ef918b d860dcbe,f44b 000280be,0000f44b 8a4e * * 8a4e * * 8a4e
+17175 * * * * * * * 777a e79dba,ef918c 777a,f44c 0000777a,0000f44c 8a4f * * 8a4f * fbf5 8a4f
+17176 * * * * * * * f44d f0a2b0b8,ef918d d84bdc38,f44d 00022c38,0000f44d 8a50 * * 8a50 * * 8a50
+17177 * * * * * * * 3a34 e3a8b4,ef918e 3a34,f44e 00003a34,0000f44e 8a51 * * 8a51 * * 8a51
+17178 * * * * * * * 47d5 e49f95,ef918f 47d5,f44f 000047d5,0000f44f 8a52 * * 8a52 * * 8a52
+17179 * * * * * * * f450 f0a8859d,ef9190 d860dd5d,f450 0002815d,0000f450 8a53 * * 8a53 * * 8a53
+17180 * * * * * * * f451 f0a6a7b2,ef9191 d85addf2,f451 000269f2,0000f451 8a54 * * 8a54 * * 8a54
+17181 * * * * * * * f452 f0a4b7aa,ef9192 d853ddea,f452 00024dea,0000f452 8a55 * * 8a55 * * 8a55
+17182 * * * * * * * 64dd e6939d,ef9193 64dd,f453 000064dd,0000f453 8a56 * * 8a56 * * 8a56
+17183 * * * * * * * f454 f0a0b5bc,ef9194 d843dd7c,f454 00020d7c,0000f454 8a57 * * 8a57 * * 8a57
+17184 * * * * * * * f455 f0a0beb4,ef9195 d843dfb4,f455 00020fb4,0000f455 8a58 * * 8a58 * * 8a58
+17185 * * * * * * * f456 f0a0b395,ef9196 d843dcd5,f456 00020cd5,0000f456 8a59 * * 8a59 * * 8a59
+17186 * * * * * * * * f0abaab3 d86edeb3 0002bab3 * * * 8a5a * * *
+17187 * * * * * * * 648d e6928d,ef9198 648d,f458 0000648d,0000f458 8a5b * * 8a5b * * 8a5b
+17188 * * * * * * * 8e7e e8b9be,ef9199 8e7e,f459 00008e7e,0000f459 8a5c * * 8a5c * * 8a5c
+17189 * * * * * * * f45a f0a0ba96,ef919a d843de96,f45a 00020e96,0000f45a 8a5d * * 8a5d * fac4 8a5d
+17190 * * * * * * * * * * * * * * 8a5e * * *
+17191 * * * * * * * f45c f0a0bda4,ef919c d843df64,f45c 00020f64,0000f45c 8a5f * * 8a5f * * 8a5f
+17192 * * * * * * * f45d f0a2b2a9,ef919d d84bdca9,f45d 00022ca9,0000f45d 8a60 * * 8a60 * * 8a60
+17193 * * * * * * * f45e f0a88996,ef919e d860de56,f45e 00028256,0000f45e 8a61 * * 8a61 * * 8a61
+17194 * * * * * * * f45f f0a49393,ef919f d851dcd3,f45f 000244d3,0000f45f 8a62 * * 8a62 * * 8a62
+17195 * * * * * * * * * * * * * * 8a63 * * *
+17196 * * * * * * * f461 f0a0b586,ef91a1 d843dd46,f461 00020d46,0000f461 8a64 * * 8a64 c778 fab2 8a64
+17197 * * * * * * * f462 f0a9a98d,ef91a2 d866de4d,f462 00029a4d,0000f462 8a65 * * 8a65 * * 8a65
+17198 * * * * * * * f463 f0a883a9,ef91a3 d860dce9,f463 000280e9,0000f463 8a66 * * 8a66 * * 8a66
+17199 * * * * * * * 47f4 e49fb4,ef91a4 47f4,f464 000047f4,0000f464 8a67 * * 8a67 * * 8a67
+17200 * * * * * * * f465 f0a4baa7,ef91a5 d853dea7,f465 00024ea7,0000f465 8a68 * * 8a68 * * 8a68
+17201 * * * * * * * f466 f0a2b382,ef91a6 d84bdcc2,f466 00022cc2,0000f466 8a69 * * 8a69 * * 8a69
+17202 * * * * * * * 9ab2 e9aab2,ef91a7 9ab2,f467 00009ab2,0000f467 8a6a * * 8a6a * * 8a6a
+17203 * * * * * * * 3a67 e3a9a7,ef91a8 3a67,f468 00003a67,0000f468 8a6b * * 8a6b * * 8a6b
+17204 * * * * * * * f469 f0a997b4,ef91a9 d865ddf4,f469 000295f4,0000f469 8a6c * * 8a6c * * 8a6c
+17205 * * * * * * * 3fed e3bfad,ef91aa 3fed,f46a 00003fed,0000f46a 8a6d * * 8a6d * * 8a6d
+17206 * * * * * * * 3506 e39486,ef91ab 3506,f46b 00003506,0000f46b 8a6e * * 8a6e * * 8a6e
+17207 * * * * * * * f46c f0a58b87,ef91ac d854dec7,f46c 000252c7,0000f46c 8a6f * * 8a6f * * 8a6f
+17208 * * * * * * * f46d f0a99f94,ef91ad d865dfd4,f46d 000297d4,0000f46d 8a70 * * 8a70 * * 8a70
+17209 * * * * * * * * * * * * * * 8a71 * * *
+17210 * * * * * * * f46f f0a2b584,ef91af d84bdd44,f46f 00022d44,0000f46f 8a72 * * 8a72 * * 8a72
+17211 * * * * * * * 9d6e e9b5ae,ef91b0 9d6e,f470 00009d6e,0000f470 8a73 * * 8a73 * * 8a73
+17212 * * * * * * * 9815 e9a095,ef91b1 9815,f471 00009815,0000f471 8a74 * * 8a74 * * 8a74
+17213 * * * * * * * * f0abb397 d86fdcd7 0002bcd7 * * * 8a75 * * *
+17214 * * * * * * * 43d9 e48f99,ef91b3 43d9,f473 000043d9,0000f473 8a76 * * 8a76 * * 8a76
+17215 * * * * * * * * * * * * * * 8a77 * * *
+17216 * * * * * * * 64b4 e692b4,ef91b5 64b4,f475 000064b4,0000f475 8a78 * * 8a78 * * 8a78
+17217 * * * * * * * 54e3 e593a3,ef91b6 54e3,f476 000054e3,0000f476 8a79 * * 8a79 * * 8a79
+17218 * * * * * * * * * * * * * * 8a7a * * *
+17219 * * * * * * * f478 ef91b8,f0a2af8a d84adfca,f478 0000f478,00022bca 8a7b * * 8a7b * * 8a7b
+17220 * * * * * * * * * * * * * * 8a7c * * *
+17221 * * * * * * * 39fb e3a7bb,ef91ba 39fb,f47a 000039fb,0000f47a 8a7d * * 8a7d * * 8a7d
+17222 * * * * * * * * f0aba5b7 d86edd77 0002b977 * * * 8a7e * * *
+17223 * * * * * * * f47c f0a69b9a,ef91bc d859deda,f47c 000266da,0000f47c 8aa1 * * 8aa1 * * 8aa1
+17224 * * * * * * * f47d f0a69c96,ef91bd d859df16,f47d 00026716,0000f47d 8aa2 * * 8aa2 * * 8aa2
+17225 * * * * * * * f47e f0a7a6a0,ef91be d85edda0,f47e 000279a0,0000f47e 8aa3 * * 8aa3 * * 8aa3
+17226 * * * * * * * 64ea e693aa,ef91bf 64ea,f47f 000064ea,0000f47f 8aa4 * * 8aa4 * * 8aa4
+17227 * * * * * * * f480 f0a58192,ef9280 d854dc52,f480 00025052,0000f480 8aa5 * * 8aa5 * * 8aa5
+17228 * * * * * * * f481 f0a0b183,ef9281 d843dc43,f481 00020c43,0000f481 8aa6 * * 8aa6 * * 8aa6
+17229 * * * * * * * 8e68 e8b9a8,ef9282 8e68,f482 00008e68,0000f482 8aa7 * * 8aa7 * * 8aa7
+17230 * * * * * * * * * * * * * * 8aa8 * * *
+17231 * * * * * * * f484 f0a8ad8c,ef9284 d862df4c,f484 00028b4c,0000f484 8aa9 * * 8aa9 * * 8aa9
+17232 * * * * * * * f485 f0a09cb1,ef9285 d841df31,f485 00020731,0000f485 8aaa * * 8aaa * * 8aaa
+17233 * * * * * * * * * * * * * * 8aab * * *
+17234 * * * * * * * 480b e4a08b,ef9287 480b,f487 0000480b,0000f487 8aac * * 8aac * * 8aac
+17235 * * * * * * * f488 f0a086a9,ef9288 d840dda9,f488 000201a9,0000f488 8aad * * 8aad * * 8aad
+17236 * * * * * * * 3ffa e3bfba,ef9289 3ffa,f489 00003ffa,0000f489 8aae * * 8aae * * 8aae
+17237 * * * * * * * 5873 e5a1b3,ef928a 5873,f48a 00005873,0000f48a 8aaf * * 8aaf * * 8aaf
+17238 * * * * * * * f48b f0a2b68d,ef928b d84bdd8d,f48b 00022d8d,0000f48b 8ab0 * * 8ab0 * fb72 8ab0
+17239 * * * * * * * * * * * * * * 8ab1 * * *
+17240 * * * * * * * f48d f0a49788,ef928d d851ddc8,f48d 000245c8,0000f48d 8ab2 * * 8ab2 * * 8ab2
+17241 * * * * * * * f48e f0a093bc,ef928e d841dcfc,f48e 000204fc,0000f48e 8ab3 * * 8ab3 * * 8ab3
+17242 * * * * * * * f48f f0a68297,ef928f d858dc97,f48f 00026097,0000f48f 8ab4 * * 8ab4 * * 8ab4
+17243 * * * * * * * f490 f0a0bd8c,ef9290 d843df4c,f490 00020f4c,0000f490 8ab5 * * 8ab5 * * 8ab5
+17244 * * * * * * * * * * * * * * 8ab6 * * *
+17245 * * * * * * * 5579 e595b9,ef9292 5579,f492 00005579,0000f492 8ab7 * * 8ab7 * * 8ab7
+17246 * * * * * * * * * * * * * * 8ab8 * * *
+17247 * * * * * * * 43ba e48eba,ef9294 43ba,f494 000043ba,0000f494 8ab9 * * 8ab9 * * 8ab9
+17248 * * * * * * * * * * * * * * 8aba * * *
+17249 * * * * * * * 4ab4 e4aab4,ef9296 4ab4,f496 00004ab4,0000f496 8abb * * 8abb * * 8abb
+17250 * * * * * * * f497 f0a2a9a6,ef9297 d84ade66,f497 00022a66,0000f497 8abc * * 8abc * * 8abc
+17251 * * * * * * * f498 f0a1829d,ef9298 d844dc9d,f498 0002109d,0000f498 8abd * * 8abd * * 8abd
+17252 * * * * * * * 81aa e886aa,ef9299 81aa,f499 000081aa,0000f499 8abe * * 8abe * * 8abe
+17253 * * * * * * * 98f5 e9a3b5,ef929a 98f5,f49a 000098f5,0000f49a 8abf * * 8abf * * 8abf
+17254 * * * * * * * f49b f0a0b69c,ef929b d843dd9c,f49b 00020d9c,0000f49b 8ac0 * * 8ac0 * * 8ac0
+17255 * * * * * * * 6379 e68db9,ef929c 6379,f49c 00006379,0000f49c 8ac1 * * 8ac1 * * 8ac1
+17256 * * * * * * * 39fe e3a7be,ef929d 39fe,f49d 000039fe,0000f49d 8ac2 * * 8ac2 * * 8ac2
+17257 * * * * * * * f49e f0a29db5,ef929e d849df75,f49e 00022775,0000f49e 8ac3 * * 8ac3 * * 8ac3
+17258 * * * * * * * 8dc0 e8b780,ef929f 8dc0,f49f 00008dc0,0000f49f 8ac4 * * 8ac4 * * 8ac4
+17259 * * * * * * * 56a1 e59aa1,ef92a0 56a1,f4a0 000056a1,0000f4a0 8ac5 * * 8ac5 * * 8ac5
+17260 * * * * * * * 647c e691bc,ef92a1 647c,f4a1 0000647c,0000f4a1 8ac6 * * 8ac6 * * 8ac6
+17261 * * * * * * * 3e43 e3b983,ef92a2 3e43,f4a2 00003e43,0000f4a2 8ac7 * * 8ac7 * * 8ac7
+17262 * * * * * * * * * * * * * * 8ac8 * * *
+17263 * * * * * * * f4a4 f0aa9881,ef92a4 d869de01,f4a4 0002a601,0000f4a4 8ac9 * * 8ac9 * * 8ac9
+17264 * * * * * * * f4a5 f0a0b889,ef92a5 d843de09,f4a5 00020e09,0000f4a5 8aca * * 8aca * * 8aca
+17265 * * * * * * * f4a6 f0a2ab8f,ef92a6 d84adecf,f4a6 00022acf,0000f4a6 8acb * * 8acb * * 8acb
+17266 * * * * * * * * f0ac97b8 d871ddf8 0002c5f8 * * * 8acc * * *
+17267 * * * * * * * * * * * * * * 8acd * * *
+17268 * * * * * * * f4a9 f0a18388,ef92a9 d844dcc8,f4a9 000210c8,0000f4a9 8ace * * 8ace * * 8ace
+17269 * * * * * * * f4aa f0a3a782,ef92aa d84eddc2,f4aa 000239c2,0000f4aa 8acf * * 8acf * * 8acf
+17270 * * * * * * * 3992 e3a692,ef92ab 3992,f4ab 00003992,0000f4ab 8ad0 * * 8ad0 * * 8ad0
+17271 * * * * * * * 3a06 e3a886,ef92ac 3a06,f4ac 00003a06,0000f4ac 8ad1 * * 8ad1 * * 8ad1
+17272 * * * * * * * f4ad f0a88a9b,ef92ad d860de9b,f4ad 0002829b,0000f4ad 8ad2 * * 8ad2 * * 8ad2
+17273 * * * * * * * 3578 e395b8,ef92ae 3578,f4ae 00003578,0000f4ae 8ad3 * * 8ad3 * * 8ad3
+17274 * * * * * * * f4af f0a5b989,ef92af d857de49,f4af 00025e49,0000f4af 8ad4 * * 8ad4 * * 8ad4
+17275 * * * * * * * f4b0 f0a28387,ef92b0 d848dcc7,f4b0 000220c7,0000f4b0 8ad5 * * 8ad5 * * 8ad5
+17276 * * * * * * * * * * * * * * 8ad6 * * *
+17277 * * * * * * * * * * * * * * 8ad7 * * *
+17278 * * * * * * * f4b3 f0a2b2b2,ef92b3 d84bdcb2,f4b3 00022cb2,0000f4b3 8ad8 * * 8ad8 * * 8ad8
+17279 * * * * * * * f4b4 f0a99ca0,ef92b4 d865df20,f4b4 00029720,0000f4b4 8ad9 * * 8ad9 * * 8ad9
+17280 * * * * * * * 34bc e392bc,ef92b5 34bc,f4b5 000034bc,0000f4b5 8ada * * 8ada * * 8ada
+17281 * * * * * * * 6c3d e6b0bd,ef92b6 6c3d,f4b6 00006c3d,0000f4b6 8adb * * 8adb * * 8adb
+17282 * * * * * * * f4b7 f0a4b8bb,ef92b7 d853de3b,f4b7 00024e3b,0000f4b7 8adc * * 8adc * * 8adc
+17283 * * * * * * * * f0aca6a0 d872dda0 0002c9a0 * * * 8add * * *
+17284 * * * * * * * * * * * * * * 8ade * * *
+17285 * * * * * * * f4ba f0a795b4,ef92ba d85ddd74,f4ba 00027574,0000f4ba 8adf * * 8adf * * 8adf
+17286 * * * * * * * f4bb f0a2ba8b,ef92bb d84bde8b,f4bb 00022e8b,0000f4bb 8ae0 * * 8ae0 * * 8ae0
+17287 * * * * * * * f4bc f0a28888,ef92bc d848de08,f4bc 00022208,0000f4bc 8ae1 * * 8ae1 * * 8ae1
+17288 * * * * * * * f4bd f0aa999b,ef92bd d869de5b,f4bd 0002a65b,0000f4bd 8ae2 * * 8ae2 * * 8ae2
+17289 * * * * * * * f4be f0a8b38d,ef92be d863dccd,f4be 00028ccd,0000f4be 8ae3 * * 8ae3 * * 8ae3
+17290 * * * * * * * f4bf f0a0b9ba,ef92bf d843de7a,f4bf 00020e7a,0000f4bf 8ae4 * * 8ae4 * * 8ae4
+17291 * * * * * * * f4c0 ef9380,f0a0b0b4 d843dc34,f4c0 00020c34,0000f4c0 8ae5 * * 8ae5 * * 8ae5
+17292 * * * * * * * f4db f0a798b9,ef939b d85dde39,f4db 00027639,0000f4db 8b41 * * 8b41 * * 8b41
+17293 * * * * * * * f4dc f0a2af8e,ef939c d84adfce,f4dc 00022bce,0000f4dc 8b42 * * 8b42 * * 8b42
+17294 * * * * * * * f4df ef939f,f0a2b191 d84bdc51,f4df 0000f4df,00022c51 8b45 * * 8b45 * * 8b45
+17295 * * * * * * * 3a18 e3a898,ef93a1 3a18,f4e1 00003a18,0000f4e1 8b47 * * 8b47 * fb6d 8b47
+17296 * * * * * * * f4e3 ef93a3,f0a18387 d844dcc7,f4e3 0000f4e3,000210c7 8b49 * * 8b49 * * 8b49
+17297 * * * * * * * f4e5 ef93a5,f0aa98b2 d869de32,f4e5 0000f4e5,0002a632 8b4b * * 8b4b * * 8b4b
+17298 * * * * * * * f4e7 f0a8b392,ef93a7 d863dcd2,f4e7 00028cd2,0000f4e7 8b4d * * 8b4d * * 8b4d
+17299 * * * * * * * f4e8 f0a8b699,ef93a8 d863dd99,f4e8 00028d99,0000f4e8 8b4e * * 8b4e * * 8b4e
+17300 * * * * * * * f4e9 f0a8b38a,ef93a9 d863dcca,f4e9 00028cca,0000f4e9 8b4f * * 8b4f * * 8b4f
+17301 * * * * * * * 95aa e996aa,ef93aa 95aa,f4ea 000095aa,0000f4ea 8b50 * * 8b50 * * 8b50
+17302 * * * * * * * * * * * * fbe4 * 8b54 * * *
+17303 * * * * * * * f4f2 ef93b2,f0a79d9e d85ddf5e,f4f2 0000f4f2,0002775e 8b58 * * 8b58 * * 8b58
+17304 * * * * * * * 7140 e78580,ef93b4 7140,f4f4 00007140,0000f4f4 8b5a * * 8b5a * * 8b5a
+17305 * * * * * * * * * * * * fae1 * * c742 fa42 *
+17306 * * * * * * * 5156 e58596,ef8eb1 5156,f3b1 00005156,0000f3b1 8951 * * * * fa45 8951
+17307 * * * * * * * * e4bbbe 4efe 00004efe * * * * c747 fa4a *
+17308 * * * * * * * 5088 e58288,ef9097 5088,f417 00005088,0000f417 89d9 * * * * fa4e 89d9
+17309 * * * * * * * * * * * * * * * c749 fa50 *
+17310 * * * * * * * 3493 e39293,ef9099 3493,f419 00003493,0000f419 89db * * * * fa52 89db
+17311 * * * * * * * 5186 e58686,ef909b 5186,f41b 00005186,0000f41b 89dd * * * c74b fa53 89dd
+17312 * * * * * * * 5e42 e5b982,ef98bd 5e42,f63d 00005e42,0000f63d 8d69 * * * * fa56 8d69
+17313 * * * * * * * 5205 e58885,ef909f 5205,f41f 00005205,0000f41f 89e1 * * * * fa5f 89e1
+17314 * * * * * * * 5227 e588a7,ef8fa4 5227,f3e4 00005227,0000f3e4 89a6 * * * c753 fa60 89a6
+17315 * * * * * * * 5279 e589b9,ef90a1 5279,f421 00005279,0000f421 89e3 * * * * fa64 89e3
+17316 * * * * * * * * f0afa0a8 d87edc28 0002f828 * * * * c75a fa6a *
+17317 * * * * * * * 3553 e39593,ef90a8 3553,f428 00003553,0000f428 89ea * * * * fa70 89ea
+17318 * * * * * * * 53c2 e58f82,ef90a9 53c2,f429 000053c2,0000f429 89eb * * * c75f fa72 89eb
+17319 * * * * * * * 535f e58d9f,ef93bb 535f,f4fb 0000535f,0000f4fb 8b61 * * * c762 fa76 8b61
+17320 * * * * * * * 54cc * * * * * * * c76e faa7 *
+17321 * * * * * * * 553f e594bf,ef90b8 553f,f438 0000553f,0000f438 89fa * * * c779 fab3 89fa
+17322 * * * * * * * 55b9 * * * * * * * * fabb *
+17323 * * * * * * * 55d8 e59798,eea992 55d8,ea52 000055d8,0000ea52 99e4 * * * c7a5 fabe 99e4
+17324 * * * * * * * 35dd e3979d,ef9482 35dd,f502 000035dd,0000f502 8b68 * * * c7a7 fac0 8b68
+17325 * * * * * * * 5621 e598a1,ef999b 5621,f65b 00005621,0000f65b 8da9 * * * c7ae fac8 8da9
+17326 * * * * * * * 5553 * * * * * * * c7b1 facb *
+17327 * * * * * * * 5654 e59994,eeaa8c 5654,ea8c 00005654,0000ea8c 9a5f fbe1 917b * c7b6 fad0 9a5f
+17328 * * * * * * * eaf4 eeabb4,f0a181bb d844dc7b,eaf4 0000eaf4,0002107b 9ae9 * * * * fad8 9ae9
+17329 * * * * * * * * * * * * * * * c7be fadc *
+17330 * * * * * * * eaf9 eeabb9,f0a18393 d844dcd3,eaf9 0000eaf9,000210d3 9aee * * * c7bf fadd 9aee
+17331 * * * * * * * * * * * * * * * * fade *
+17332 * * * * * * * eea7 eebaa7,f0a18bbe d844defe,eea7 0000eea7,000212fe a0ee * * * c7c4 fae4 a0ee
+17333 * * * * * * * 5acf * * * * * * * c7cc faf1 *
+17334 * * * * * * * * * * * * * * * * faf9 *
+17335 * * * * * * * 37b9 e39eb9,eeab88 37b9,eac8 000037b9,0000eac8 9abd * * * * fafb 9abd
+17336 * * * * * * * 5cc1 e5b381,eebaab 5cc1,eeab 00005cc1,0000eeab a0f2 * * * * fafc a0f2
+17337 * * * * * * * 5d15 e5b495,ef999a 5d15,f65a 00005d15,0000f65a 8da8 * * * * fb41 8da8
+17338 * * * * * * * 5d56 e5b596,ef98b6 5d56,f636 00005d56,0000f636 8d62 * * * * fb43 8d62
+17339 * * * * * * * 3838 e3a0b8,ef98bc 3838,f63c 00003838,0000f63c 8d68 * * * * fb47 8d68
+17340 * * * * * * * 4e81 e4ba81,ef908d 4e81,f40d 00004e81,0000f40d 89cf * * * c7d7 fb49 89cf
+17341 * * * * * * * 5ebd e5babd,ef98be 5ebd,f63e 00005ebd,0000f63e 8d6a * * * c7d8 fb4b 8d6a
+17342 * * * * * * * 3914 e3a494,ef9982 3914,f642 00003914,0000f642 8d6e * * * * fb55 8d6e
+17343 * * * * * * * 61b9 e686b9,ef998a 61b9,f64a 000061b9,0000f64a 8d76 * * * * fb5d 8d76
+17344 * * * * * * * 6290 e68a90,ef998e 6290,f64e 00006290,0000f64e 8d7a * * * * fb61 8d7a
+17345 * * * * * * * 6318 e68c98,ef9990 6318,f650 00006318,0000f650 8d7c * * * c7ec fb65 8d7c
+17346 * * * * * * * 645a e6919a,ef9997 645a,f657 0000645a,0000f657 8da5 * * * c7f5 fb70 8da5
+17347 * * * * * * * 6491 e69291,ef8ead 6491,f3ad 00006491,0000f3ad 894d * * * c7f6 fb71 894d
+17348 * * * * * * * 816d e885ad,ef93b5 816d,f4f5 0000816d,0000f4f5 8b5b * * * * fba4 8b5b
+17349 * * * * * * * 8184 e88684,eea892 8184,ea12 00008184,0000ea12 99a4 * * * * fba5 99a4
+17350 * * * * * * * 8193 e88693,eea894 8193,ea14 00008193,0000ea14 99a6 * * * * fba7 99a6
+17351 * * * * * * * 6800 e6a080,ef99a8 6800,f668 00006800,0000f668 8db6 * * * * fbab 8db6
+17352 * * * * * * * 3bbc e3aebc,ef99b5 3bbc,f675 00003bbc,0000f675 8dc3 * * * * fbb1 8dc3
+17353 * * * * * * * 728f e78a8f,eeb1a5 728f,ec65 0000728f,0000ec65 9d61 * * * * fbd4 9d61
+17354 * * * * * * * 72cd e78b8d,eea685 72cd,e985 000072cd,0000e985 98b4 * * * c863 fbd5 98b4
+17355 * * * * * * * * f0a49faf d851dfef 000247ef * * * * c866 fbd8 *
+17356 * * * * * * * 7339 e78cb9,eea689 7339,e989 00007339,0000e989 98b8 * * * c867 fbd9 98b8
+17357 * * * * * * * 7542 e79582,eea6a3 7542,e9a3 00007542,0000e9a3 98d2 * * * * fbe1 98d2
+17358 * * * * * * * 75dc e7979c,eea6a9 75dc,e9a9 000075dc,0000e9a9 98d8 * * * c86f fbe5 98d8
+17359 * * * * * * * 3fc0 e3bf80,eea6aa 3fc0,e9aa 00003fc0,0000e9aa 98d9 * * * c871 fbe7 98d9
+17360 * * * * * * * eb76 eeadb6,f0a4baa5 d853dea5,eb76 0000eb76,00024ea5 9bce * * * * fbea 9bce
+17361 * * * * * * * 3fd7 e3bf97,eea6ac 3fd7,e9ac 00003fd7,0000e9ac 98db * * * * fbec 98db
+17362 * * * * * * * * * * * * fd73 * * * fbee *
+17363 * * * * * * * 7680 e79a80 7680 00007680 * * * * c874 fbef *
+17364 * * * * * * * 768c,e9b0 e79a8c,eea6b0,f0a4bd9c 768c,d853df5c,e9b0 0000768c,0000e9b0,00024f5c 98df * * * * fbf0 98df
+17365 * * * * * * * 40a8 e482a8,eea785 40a8,e9c5 000040a8,0000e9c5 98f4 * * * * fbf9 98f4
+17366 * * * * * * * 7839 e7a0b9,eea786 7839,e9c6 00007839,0000e9c6 98f5 * * * * fbfa 98f5
+17367 * * * * * * * 4103 e48483,eea78f 4103,e9cf 00004103,0000e9cf 98fe * * * * fc43 98fe
+17368 * * * * * * * 7a91 e7aa91,eea797 7a91,e9d7 00007a91,0000e9d7 9947 * * * * fc4a 9947
+17369 * * * * * * * 7c1b e7b09b,eea7a4 7c1b,e9e4 00007c1b,0000e9e4 9954 * * * * fc51 9954
+17370 * * * * * * * 7ced e7b3ad,eea7ac 7ced,e9ec 00007ced,0000e9ec 995c * * * c8a6 fc56 995c
+17371 * * * * * * * 7f93 e7be93,ef9382 7f93,f4c2 00007f93,0000f4c2 8ae7 * * * c8ae fc62 8ae7
+17372 * * * * * * * 7fae e7beae,eea7b4 7fae,e9f4 00007fae,0000e9f4 9964 * * * c8b0 fc64 9964
+17373 * * * * * * * * * * * * * * * * fc68 *
+17374 * * * * * * * 82ff e88bbf,eea8a0 82ff,ea20 000082ff,0000ea20 99b2 * * * * fc6a 99b2
+17375 * * * * * * * 585f e5a19f,eea98d 585f,ea4d 0000585f,0000ea4d 99df * * * * fc6e 99df
+17376 * * * * * * * 86b2 e89ab2,eea8b8 86b2,ea38 000086b2,0000ea38 99ca * * * * fc74 99ca
+17377 * * * * * * * * e496ac 45ac 000045ac * * * * * fc75 *
+17378 * * * * * * * 878b e89e8b,eea8bb 878b,ea3b 0000878b,0000ea3b 99cd * * * * fc77 99cd
+17379 * * * * * * * 8947 e8a587,eea981 8947,ea41 00008947,0000ea41 99d3 * * * * fca6 99d3
+17380 * * * * * * * * * * * * * * * c8c3 fca8 *
+17381 * * * * * * * 8a29 e8a8a9,eea984 8a29,ea44 00008a29,0000ea44 99d6 * * * * fcab 99d6
+17382 * * * * * * * * * * * * fe49 * * * fcad *
+17383 * * * * * * * 8e71 e8b9b1,eea994 8e71,ea54 00008e71,0000ea54 99e6 * * * c8ca fcb4 99e6
+17384 * * * * * * * ec44 eeb184,f0a88689 d860dd89,ec44 0000ec44,00028189 9d40 * * * c8cb fcb5 9d40
+17385 * * * * * * * 8eb0 e8bab0,eea996 8eb0,ea56 00008eb0,0000ea56 99e8 * * * c8cd fcb7 99e8
+17386 * * * * * * * * f0ab90ac d86ddc2c 0002b42c * * * * * fcbf *
+17387 * * * * * * * 915e e9859e,ef8fab 915e,f3eb 0000915e,0000f3eb 89ad fe62 90c8 * * fcc1 89ad
+17388 * * * * * * * 918c e9868c,ef8fa9 918c,f3e9 0000918c,0000f3e9 89ab * * * * fcc5 89ab
+17389 * * * * * * * 990e e9a48e,eeaa93 990e,ea93 0000990e,0000ea93 9a66 * * * * fcda 9a66
+17390 * * * * * * * 991c e9a49c,eeaa96 991c,ea96 0000991c,0000ea96 9a69 * * * * fcdb 9a69
+17391 * * * * * * * 9962 * * * * * * * c8e8 fcdf *
+17392 * * * * * * * 9ab6 * * * * * * * * fce3 *
+17393 * * * * * * * 9b81 e9ae81,eeaaa2 9b81,eaa2 00009b81,0000eaa2 9a75 * * * c8ee fce9 9a75
+17394 * * * * * * * 9dc0 e9b780,eeaab0 9dc0,eab0 00009dc0,0000eab0 9aa5 * * * c8f6 fcf4 9aa5
+17395 * * * * * * * 9d93 e9b693,eeaaae 9d93,eaae 00009d93,0000eaae 9aa3 * * * c8f7 fcf5 9aa3
+17396 * * * * * * * 9eac e9baac,eeaab5 9eac,eab5 00009eac,0000eab5 9aaa * * * * fcfa 9aaa
+17397 * * * * * * * 4d91 e4b691,eeb1bc 4d91,ec7c 00004d91,0000ec7c 9d78 * * * * fcfd 9d78
+17398 * * * * * * * * * * * * * 8eab * * * *
+17399 * * * * * * * 93ba e98eba 93ba 000093ba * * 90d3 * * * *
+17400 * * * * * * * 9e7b e9b9bb,eeaab4 9e7b,eab4 00009e7b,0000eab4 9aa9 * 9146 * * * 9aa9
+17401 * * * * * * * 7089 e78289,ef9aac 7089,f6ac 00007089,0000f6ac 8dfa fcdb 8ea5 * * * 8dfa
+17402 * * * * * * * 7348 e78d88,eea68c 7348,e98c 00007348,0000e98c 98bb fcf2 8fdb * * * 98bb
+17403 * * * * * * * * * * * * fd64 91e8 * * * *
+17404 * * * * * * * 7999 e7a699,eea792 7999,e9d2 00007999,0000e9d2 9942 fde2 915d * * * 9942
+17405 * * * * * * * 8fb7 e8beb7,eea99d 8fb7,ea5d 00008fb7,0000ea5d 99ef fe67 8ee7 * * * 99ef
+17406 * * * * * * * * * * * * fe6a 90c5 * * * *
+17407 * * * * * * * 9942 e9a582,eeaa98 9942,ea98 00009942,0000ea98 9a6b febd 8f4f * * * 9a6b
+17408 * * * * * * * * * * * * * * * * * *
+17409 * * * * * * * * * * * * * * * * * *
+17410 * * * * * * * * * * * * * * * * * *
+17411 * * * * * * * * * * * * * * * * * *
+17412 * * * * * * * * * * * * * * * * * *
+17413 * * * * * * * * * * * * * * * * * *
+17414 * * * * * * * * * * * * * * * * * *
+17415 * * * * * * * * * * * * * * * * * *
+17416 * * * * * * * * * * * * * * * * * *
+17417 * * * * * * * * * * * * * * * * * *
+17418 * * * * * * * * * * * * * * * * * *
+17419 * * * * * * * * * * * * * * * * * *
+17420 * * * * * * * * * * * * * * * * * *
+17421 * * * * * * * * * * * * * * * * * *
+17422 * * * * * * * * * * * * * * * * * *
+17423 * * * * * * * * * * * * * * * * * *
+17424 * * * * * * * * * * * * * * * * * *
+17425 * * * * * * * * * * * * * * * * * *
+17426 * * * * * * * * * * * * * * * * * *
+17427 * * * * * * * * * * * * * * * * * *
+17428 * * * * * * * * * * * * * * * * * *
+17429 * * * * * * * * * * * * * * * * * *
+17430 * * * * * * * * * * * * * * * * * *
+17431 * * * * * * * * * * * * * * * * * *
+17432 * * * * * * * * * * * * * * * * * *
+17433 * * * * * * * * * * * * * * * * * *
+17434 * * * * * * * * * * * * * * * * * *
+17435 * * * * * * * * * * * * * * * * * *
+17436 * * * * * * * * * * * * * * * * * *
+17437 * * * * * * * * * * * * * * * * * *
+17438 * * * * * * * * * * * * * * * * * *
+17439 * * * * * * * * * * * * * * * * * *
+17440 * * * * * * * * * * * * * * * * * *
+17441 * * * * * * * * * * * * * * * * * *
+17442 * * * * * * * * * * * * * * * * * *
+17443 * * * * * * * * * * * * * * * * * *
+17444 * * * * * * * * * * * * * * * * * *
+17445 * * * * * * * * * * * * * * * * * *
+17446 * * * * * * * * * * * * * * * * * *
+17447 * * * * * * * * * * * * * * * * * *
+17448 * * * * * * * * * * * * * * * * * *
+17449 * * * * * * * * * * * * * * * * * *
+17450 * * * * * * * * * * * * * * * * * *
+17451 * * * * * * * * * * * * * * * * * *
+17452 * * * * * * * * * * * * * * * * * *
+17453 * * * * * * * * * * * * * * * * * *
+17454 * * * * * * * * * * * * * * * * * *
+17455 * * * * * * * * * * * * * * * * * *
+17456 * * * * * * * * * * * * * * * * * *
+17457 * * * * * * * * * * * * * * * * * *
+17458 * * * * * * * * * * * * * * * * * *
+17459 * * * * * * * * * * * * * * * * * *
+17460 * * * * * * * * * * * * * * * * * *
+17461 * * * * * * * * * * * * * * * * * *
+17462 * * * * * * * * * * * * * * * * * *
+17463 * * * * * * * * * * * * * * * * * *
+17464 * * * * * * * * * * * * * * * * * *
+17465 * * * * * * * * * * * * * * * * * *
+17466 * * * * * * * * * * * * * * * * * *
+17467 * * * * * * * * * * * * * * * * * *
+17468 * * * * * * * * * * * * * * * * * *
+17469 * * * * * * * * * * * * * * * * * *
+17470 * * * * * * * * * * * * * * * * * *
+17471 * * * * * * * * * * * * * * * * * *
+17472 * * * * * * * * * * * * * * * * * *
+17473 * * * * * * * * * * * * * * * * * *
+17474 * * * * * * * * * * * * * * * * * *
+17475 * * * * * * * * * * * * * * * * * *
+17476 * * * * * * * * * * * * * * * * * *
+17477 * * * * * * * * * * * * * * * * * *
+17478 * * * * * * * * * * * * * * * * * *
+17479 * * * * * * * * * * * * * * * * * *
+17480 * * * * * * * * * * * * * * * * * *
+17481 * * * * * * * * * * * * * * * * * *
+17482 * * * * * * * * * * * * * * * * * *
+17483 * * * * * * * * * * * * * * * * * *
+17484 * * * * * * * * * * * * * * * * * *
+17485 * * * * * * * * * * * * * * * * * *
+17486 * * * * * * * * * * * * * * * * * *
+17487 * * * * * * * * * * * * * * * * * *
+17488 * * * * * * * * * * * * * * * * * *
+17489 * * * * * * * * * * * * * * * * * *
+17490 * * * * * * * * * * * * * * * * * *
+17491 * * * * * * * * * * * * * * * * * *
+17492 * * * * * * * * * * * * * * * * * *
+17493 * * * * * * * * * * * * * * * * * *
+17494 * * * * * * * * * * * * * * * * * *
+17495 * * * * * * * * * * * * * * * * * *
+17496 * * * * * * * * * * * * * * * * * *
+17497 * * * * * * * * * * * * * * * * * *
+17498 * * * * * * * * * * * * * * * * * *
+17499 * * * * * * * * * * * * * * * * * *
+17500 * * * * * * * * * * * * * * * * * *
+17501 * * * * * * * * * * * * * * * * * *
+17502 * * * * * * * * * * * * * * * * * *
+17503 * * * * * * * * * * * * * * * * * *
+17504 * * * * * * * * * * * * * * * * * *
+17505 * * * * * * * * * * * * * * * * * *
+17506 * * * * * * * * * * * * * * * * * *
+17507 * * * * * * * * * * * * * * * * * *
+17508 * * * * * * * * * * * * * * * * * *
+17509 * * * * * * * * * * * * * * * * * *
+17510 * * * * * * * * * * * * * * * * * *
+17511 * * * * * * * * * * * * * * * * * *
+17512 * * * * * * * * * * * * * * * * * *
+17513 * * * * * * * * * * * * * * * * * *
+17514 * * * * * * * * * * * * * * * * * *
+17515 * * * * * * * * * * * * * * * * * *
+17516 * * * * * * * * * * * * * * * * * *
+17517 * * * * * * * * * * * * * * * * * *
+17518 * * * * * * * * * * * * * * * * * *
+17519 * * * * * * * * * * * * * * * * * *
+17520 * * * * * * * * * * * * * * * * * *
+17521 * * * * * * * * * * * * * * * * * *
+17522 * * * * * * * * * * * * * * * * * *
+17523 * * * * * * * * * * * * * * * * * *
+17524 * * * * * * * * * * * * * * * * * *
+17525 * * * * * * * * * * * * * * * * * *
+17526 * * * * * * * * * * * * * * * * * *
+17527 * * * * * * * * * * * * * * * * * *
+17528 * * * * * * * * * * * * * * * * * *
+17529 * * * * * * * * * * * * * * * * * *
+17530 * * * * * * * * * * * * * * * * * *
+17531 * * * * * * * * * * * * * * * * * *
+17532 * * * * * * * * * * * * * * * * * *
+17533 * * * * * * * * * * * * * * * * * *
+17534 * * * * * * * * * * * * * * * * * *
+17535 * * * * * * * * * * * * * * * * * *
+17536 * * * * * * * * * * * * * * * * * *
+17537 * * * * * * * * * * * * * * * * * *
+17538 * * * * * * * * * * * * * * * * * *
+17539 * * * * * * * * * * * * * * * * * *
+17540 * * * * * * * * * * * * * * * * * *
+17541 * * * * * * * * * * * * * * * * * *
+17542 * * * * * * * * * * * * * * * * * *
+17543 * * * * * * * * * * * * * * * * * *
+17544 * * * * * * * * * * * * * * * * * *
+17545 * * * * * * * * * * * * * * * * * *
+17546 * * * * * * * * * * * * * * * * * *
+17547 * * * * * * * * * * * * * * * * * *
+17548 * * * * * * * * * * * * * * * * * *
+17549 * * * * * * * * * * * * * * * * * *
+17550 * * * * * * * * * * * * * * * * * *
+17551 * * * * * * * * * * * * * * * * * *
+17552 * * * * * * * * * * * * * * * * * *
+17553 * * * * * * * * * * * * * * * * * *
+17554 * * * * * * * * * * * * * * * * * *
+17555 * * * * * * * * * * * * * * * * * *
+17556 * * * * * * * * * * * * * * * * * *
+17557 * * * * * * * * * * * * * * * * * *
+17558 * * * * * * * * * * * * * * * * * *
+17559 * * * * * * * * * * * * * * * * * *
+17560 * * * * * * * * * * * * * * * * * *
+17561 * * * * * * * * * * * * * * * * * *
+17562 * * * * * * * * * * * * * * * * * *
+17563 * * * * * * * * * * * * * * * * * *
+17564 * * * * * * * * * * * * * * * * * *
+17565 * * * * * * * * * * * * * * * * * *
+17566 * * * * * * * * * * * * * * * * * *
+17567 * * * * * * * * * * * * * * * * * *
+17568 * * * * * * * * * * * * * * * * * *
+17569 * * * * * * * * * * * * * * * * * *
+17570 * * * * * * * * * * * * * * * * * *
+17571 * * * * * * * * * * * * * * * * * *
+17572 * * * * * * * * * * * * * * * * * *
+17573 * * * * * * * * * * * * * * * * * *
+17574 * * * * * * * * * * * * * * * * * *
+17575 * * * * * * * * * * * * * * * * * *
+17576 * * * * * * * * * * * * * * * * * *
+17577 * * * * * * * * * * * * * * * * * *
+17578 * * * * * * * * * * * * * * * * * *
+17579 * * * * * * * * * * * * * * * * * *
+17580 * * * * * * * * * * * * * * * * * *
+17581 * * * * * * * * * * * * * * * * * *
+17582 * * * * * * * * * * * * * * * * * *
+17583 * * * * * * * * * * * * * * * * * *
+17584 * * * * * * * * * * * * * * * * * *
+17585 * * * * * * * * * * * * * * * * * *
+17586 * * * * * * * * * * * * * * * * * *
+17587 * * * * * * * * * * * * * * * * * *
+17588 * * * * * * * * * * * * * * * * * *
+17589 * * * * * * * * * * * * * * * * * *
+17590 * * * * * * * * * * * * * * * * * *
+17591 * * * * * * * * * * * * * * * * * *
+17592 * * * * * * * * * * * * * * * * * *
+17593 * * * * * * * * * * * * * * * * * *
+17594 * * * * * * * * * * * * * * * * * *
+17595 * * * * * * * * * * * * * * * * * *
+17596 * * * * * * * * * * * * * * * * * *
+17597 * * * * * * * * * * * * * * * * * *
+17598 * * * * * * * * * * * * * * * * * *
+17599 * * * * * * * * * * * * * * * * * *
+17600 * * * * * * * * * * * * * * * * * *
+17601 * * * * * * * 20ac e282ac 20ac 000020ac * * * * * * *
+17602 * * * * * * * * * * * * * * * * * *
+17603 * * * * * * * * * * * * * * * * * *
+17604 * * * * * * * * * * * * * * * * * *
+17605 * * * * * * * * * * * * * * * * * *
+17606 * * * * * * * 309b e3829b,efa09e 309b,f81e 0000309b,0000f81e c8d4 * * * * * c8d4
+17607 * * * * * * * 309c e3829c,efa09f 309c,f81f 0000309c,0000f81f c8d5 * * * * * c8d5
+17608 * * * * * * * 2e80 e2ba80,efa0a0 2e80,f820 00002e80,0000f820 c8d6 * * * * * c8d6
+17609 * * * * * * * f303 e38780,ef8c83 31c0,f303 000031c0,0000f303 8840 * * * * * 8840
+17610 * * * * * * * f304 e38781,ef8c84 31c1,f304 000031c1,0000f304 8841 * * * * * 8841
+17611 * * * * * * * f305 e38782,ef8c85 31c2,f305 000031c2,0000f305 8842 * * * * * 8842
+17612 * * * * * * * f306 e38783,ef8c86 31c3,f306 000031c3,0000f306 8843 * * * * * 8843
+17613 * * * * * * * f307 e38784,ef8c87 31c4,f307 000031c4,0000f307 8844 * * * * * 8844
+17614 * * * * * * * f308 f0a0848c,ef8c88 d840dd0c,f308 0002010c,0000f308 8845 * * * * * 8845
+17615 * * * * * * * f309 e38785,ef8c89 31c5,f309 000031c5,0000f309 8846 * * * * * 8846
+17616 * * * * * * * f30a f0a08391,ef8c8a d840dcd1,f30a 000200d1,0000f30a 8847 * * * * * 8847
+17617 * * * * * * * f30b f0a0838d,ef8c8b d840dccd,f30b 000200cd,0000f30b 8848 * * * * * 8848
+17618 * * * * * * * f30c e38786,ef8c8c 31c6,f30c 000031c6,0000f30c 8849 * * * * * 8849
+17619 * * * * * * * f30d e38787,ef8c8d 31c7,f30d 000031c7,0000f30d 884a * * * * * 884a
+17620 * * * * * * * f30e f0a0838b,ef8c8e d840dccb,f30e 000200cb,0000f30e 884b * * * * * 884b
+17621 * * * * * * * f30f f0a1bfa8,ef8c8f d847dfe8,f30f 00021fe8,0000f30f 884c * * * * * 884c
+17622 * * * * * * * f310 e38788,ef8c90 31c8,f310 000031c8,0000f310 884d * * * * * 884d
+17623 * * * * * * * f311 f0a0838a,ef8c91 d840dcca,f311 000200ca,0000f311 884e * * * * * 884e
+17624 * * * * * * * f312 e38789,ef8c92 31c9,f312 000031c9,0000f312 884f * * * * * 884f
+17625 * * * * * * * f313 e3878a,ef8c93 31ca,f313 000031ca,0000f313 8850 * * * * * 8850
+17626 * * * * * * * f314 e3878b,ef8c94 31cb,f314 000031cb,0000f314 8851 * * * * * 8851
+17627 * * * * * * * f315 e3878c,ef8c95 31cc,f315 000031cc,0000f315 8852 * * * * * 8852
+17628 * * * * * * * f316 f0a0848e,ef8c96 d840dd0e,f316 0002010e,0000f316 8853 * * * * * 8853
+17629 * * * * * * * f317 e3878d,ef8c97 31cd,f317 000031cd,0000f317 8854 * * * * * 8854
+17630 * * * * * * * f318 e3878e,ef8c98 31ce,f318 000031ce,0000f318 8855 * * * * * 8855
+17631 * * * * * * * * ef94b8 f538 0000f538 8bc0 * * * * * 8bc0
+17632 * * * * * * * * e2bca1,e5a482,ef94b9 2f21,5902,f539 00002f21,00005902,0000f539 8bc1 * * * * * 8bc1
+17633 * * * * * * * f53a f0a1af81,ef94ba d846dfc1,f53a 00021bc1,0000f53a 8bc2 * * * * * 8bc2
+17634 * * * * * * * f53b f0afa1b8,ef94bb d87edc78,f53b 0002f878,0000f53b 8bc3 * * * * * 8bc3
+17635 * * * * * * * 9751 e2bead,e99d91,ef94bc 2fad,9751,f53c 00002fad,00009751,0000f53c 8bc4 * * * * * 8bc4
+17636 * * * * * * * f53d f0a08286,ef94bd d840dc86,f53d 00020086,0000f53d 8bc5 * * * * * 8bc5
+17637 * * * * * * * 4e5b e4b99b,ef94be 4e5b,f53e 00004e5b,0000f53e 8bc6 * * * * * 8bc6
+17638 * * * * * * * 4ebb e4babb,ef94bf 4ebb,f53f 00004ebb,0000f53f 8bc7 * * * * * 8bc7
+17639 * * * * * * * 353e e394be,ef9580 353e,f540 0000353e,0000f540 8bc8 * * * * * 8bc8
+17640 * * * * * * * 5c23 e5b0a3,ef9581 5c23,f541 00005c23,0000f541 8bc9 * * * * * 8bc9
+17641 * * * * * * * 5f51 e5bd91,ef9582 5f51,f542 00005f51,0000f542 8bca * * * * * 8bca
+17642 * * * * * * * 5fc4 e5bf84,ef9583 5fc4,f543 00005fc4,0000f543 8bcb * * * * * 8bcb
+17643 * * * * * * * 38fa e3a3ba,ef9584 38fa,f544 000038fa,0000f544 8bcc * * * * * 8bcc
+17644 * * * * * * * 624c e6898c,ef9585 624c,f545 0000624c,0000f545 8bcd * * * * * 8bcd
+17645 * * * * * * * 6535 e694b5,ef9586 6535,f546 00006535,0000f546 8bce * * * * * 8bce
+17646 * * * * * * * 6b7a e6adba,ef9587 6b7a,f547 00006b7a,0000f547 8bcf * * * * * 8bcf
+17647 * * * * * * * 6c35 e6b0b5,ef9588 6c35,f548 00006c35,0000f548 8bd0 * * * * * 8bd0
+17648 * * * * * * * 6c3a e6b0ba,ef9589 6c3a,f549 00006c3a,0000f549 8bd1 * * * * * 8bd1
+17649 * * * * * * * 706c e781ac,ef958a 706c,f54a 0000706c,0000f54a 8bd2 * * * * * 8bd2
+17650 * * * * * * * 722b e788ab,ef958b 722b,f54b 0000722b,0000f54b 8bd3 * * * * * 8bd3
+17651 * * * * * * * 4e2c e4b8ac,ef958c 4e2c,f54c 00004e2c,0000f54c 8bd4 * * * * * 8bd4
+17652 * * * * * * * 72ad e78aad,ef958d 72ad,f54d 000072ad,0000f54d 8bd5 * * * * * 8bd5
+17653 * * * * * * * f54e f0a4a3a9,ef958e d852dce9,f54e 000248e9,0000f54e 8bd6 * * * * * 8bd6
+17654 * * * * * * * 7f52 e7bd92,ef958f 7f52,f54f 00007f52,0000f54f 8bd7 * * * * * 8bd7
+17655 * * * * * * * 793b e7a4bb,ef9590 793b,f550 0000793b,0000f550 8bd8 * * * * * 8bd8
+17656 * * * * * * * 7cf9 e7b3b9,ef9591 7cf9,f551 00007cf9,0000f551 8bd9 * * * * * 8bd9
+17657 * * * * * * * 7f53 e7bd93,ef9592 7f53,f552 00007f53,0000f552 8bda * * * * * 8bda
+17658 * * * * * * * f553 f0a689aa,ef9593 d858de6a,f553 0002626a,0000f553 8bdb * * * * * 8bdb
+17659 * * * * * * * 34c1 e39381,ef9594 34c1,f554 000034c1,0000f554 8bdc * * * * * 8bdc
+17660 * * * * * * * f556 f0a68d8b,ef9596 d858df4b,f556 0002634b,0000f556 8bde * * * * * 8bde
+17661 * * * * * * * 8002 e88082,ef9597 8002,f557 00008002,0000f557 8bdf * * * * * 8bdf
+17662 * * * * * * * 8080 e88280,ef9598 8080,f558 00008080,0000f558 8be0 * * * * * 8be0
+17663 * * * * * * * f559 f0a69892,ef9599 d859de12,f559 00026612,0000f559 8be1 * * * * * 8be1
+17664 * * * * * * * f55a f0a6a591,ef959a d85add51,f55a 00026951,0000f55a 8be2 * * * * * 8be2
+17665 * * * * * * * 535d e58d9d,ef959b 535d,f55b 0000535d,0000f55b 8be3 * * * * * 8be3
+17666 * * * * * * * 8864 e8a1a4,ef959c 8864,f55c 00008864,0000f55c 8be4 * * * * * 8be4
+17667 * * * * * * * 89c1 e8a781,ef959d 89c1,f55d 000089c1,0000f55d 8be5 * * * * * 8be5
+17668 * * * * * * * f55e f0a7a2b2,ef959e d85edcb2,f55e 000278b2,0000f55e 8be6 * * * * * 8be6
+17669 * * * * * * * 8ba0 e8aea0,ef959f 8ba0,f55f 00008ba0,0000f55f 8be7 * * * * * 8be7
+17670 * * * * * * * 8d1d e8b49d,ef95a0 8d1d,f560 00008d1d,0000f560 8be8 * * * * * 8be8
+17671 * * * * * * * 9485 e99285,ef95a1 9485,f561 00009485,0000f561 8be9 * * * * * 8be9
+17672 * * * * * * * 9578 e995b8,ef95a2 9578,f562 00009578,0000f562 8bea * * * * * 8bea
+17673 * * * * * * * 957f e995bf,ef95a3 957f,f563 0000957f,0000f563 8beb * * * * * 8beb
+17674 * * * * * * * 95e8 e997a8,ef95a4 95e8,f564 000095e8,0000f564 8bec * * * * * 8bec
+17675 * * * * * * * f565 f0a8b88f,ef95a5 d863de0f,f565 00028e0f,0000f565 8bed * * * * * 8bed
+17676 * * * * * * * 97e6 e99fa6,ef95a6 97e6,f566 000097e6,0000f566 8bee * * * * * 8bee
+17677 * * * * * * * 9875 e9a1b5,ef95a7 9875,f567 00009875,0000f567 8bef * * * * * 8bef
+17678 * * * * * * * 98ce e9a38e,ef95a8 98ce,f568 000098ce,0000f568 8bf0 * * * * * 8bf0
+17679 * * * * * * * 98de e9a39e,ef95a9 98de,f569 000098de,0000f569 8bf1 * * * * * 8bf1
+17680 * * * * * * * 9963 e9a5a3,ef95aa 9963,f56a 00009963,0000f56a 8bf2 * * * * * 8bf2
+17681 * * * * * * * f56b f0a9a090,ef95ab d866dc10,f56b 00029810,0000f56b 8bf3 * * * * * 8bf3
+17682 * * * * * * * 9c7c e9b1bc,ef95ac 9c7c,f56c 00009c7c,0000f56c 8bf4 * * * * * 8bf4
+17683 * * * * * * * 9e1f e9b89f,ef95ad 9e1f,f56d 00009e1f,0000f56d 8bf5 * * * * * 8bf5
+17684 * * * * * * * 9ec4 e9bb84,ef95ae 9ec4,f56e 00009ec4,0000f56e 8bf6 * * * * * 8bf6
+17685 * * * * * * * 6b6f e6adaf,ef95af 6b6f,f56f 00006b6f,0000f56f 8bf7 * * * * * 8bf7
+17686 * * * * * * * * efa487,ef95b0 f907,f570 0000f907,0000f570 8bf8 * * * * * 8bf8
+17687 * * * * * * * 4e37 e4b8b7,ef95b1 4e37,f571 00004e37,0000f571 8bf9 * * * * * 8bf9
+17688 * * * * * * * f572 f0a08287,ef95b2 d840dc87,f572 00020087,0000f572 8bfa * * * * * 8bfa
+17689 * * * * * * * 961d e9989d,ef95b3 961d,f573 0000961d,0000f573 8bfb * * * * * 8bfb
+17690 * * * * * * * 6237 e688b7,ef95b4 6237,f574 00006237,0000f574 8bfc * * * * * 8bfc
+17691 * * * * * * * 94a2 e992a2,ef95b5 94a2,f575 000094a2,0000f575 8bfd * * * * * 8bfd
+17692 * * * * * * * 2e84 e2ba84,efa0a1 2e84,f821 00002e84,0000f821 c8d7 * * * * * c8d7
+17693 * * * * * * * 2e86 e2ba86,efa0a2 2e86,f822 00002e86,0000f822 c8d8 * * * * * c8d8
+17694 * * * * * * * 2e87 e2ba87,efa0a3 2e87,f823 00002e87,0000f823 c8d9 * * * * * c8d9
+17695 * * * * * * * 2e88 e2ba88,efa0a4 2e88,f824 00002e88,0000f824 c8da * * * * * c8da
+17696 * * * * * * * 2e8a e2ba8a,efa0a5 2e8a,f825 00002e8a,0000f825 c8db * * * * * c8db
+17697 * * * * * * * 2e8c e2ba8c,efa0a6 2e8c,f826 00002e8c,0000f826 c8dc * * * * * c8dc
+17698 * * * * * * * 2e8d e2ba8d,efa0a7 2e8d,f827 00002e8d,0000f827 c8dd * * * * * c8dd
+17699 * * * * * * * 2e95 e2ba95,efa0a8 2e95,f828 00002e95,0000f828 c8de * * * * * c8de
+17700 * * * * * * * 2e9c e2ba9c,efa0a9 2e9c,f829 00002e9c,0000f829 c8df * * * * * c8df
+17701 * * * * * * * 2ea5 e2baa5,efa0ab 2ea5,f82b 00002ea5,0000f82b c8e1 * * * * * c8e1
+17702 * * * * * * * 2ea7 e2baa7,efa0ac 2ea7,f82c 00002ea7,0000f82c c8e2 * * * * * c8e2
+17703 * * * * * * * 2eaa e2baaa,efa0ad 2eaa,f82d 00002eaa,0000f82d c8e3 * * * * * c8e3
+17704 * * * * * * * 2eac e2baac,efa0ae 2eac,f82e 00002eac,0000f82e c8e4 * * * * * c8e4
+17705 * * * * * * * 2eae e2baae,efa0af 2eae,f82f 00002eae,0000f82f c8e5 * * * * * c8e5
+17706 * * * * * * * 2eb6 e2bab6,efa0b0 2eb6,f830 00002eb6,0000f830 c8e6 * * * * * c8e6
+17707 * * * * * * * 2ebc e2babc,efa0b1 2ebc,f831 00002ebc,0000f831 c8e7 * * * * * c8e7
+17708 * * * * * * * 2ebe e2babe,efa0b2 2ebe,f832 00002ebe,0000f832 c8e8 * * * * * c8e8
+17709 * * * * * * * 2eca e2bb8a,efa0b4 2eca,f834 00002eca,0000f834 c8ea * * * * * c8ea
+17710 * * * * * * * 2ecc e2bb8c,efa0b5 2ecc,f835 00002ecc,0000f835 c8eb * * * * * c8eb
+17711 * * * * * * * 2ecd e2bb8d,efa0b6 2ecd,f836 00002ecd,0000f836 c8ec * * * * * c8ec
+17712 * * * * * * * 2ecf e2bb8f,efa0b7 2ecf,f837 00002ecf,0000f837 c8ed * * * * * c8ed
+17713 * * * * * * * 2ed6 e2bb96,efa0b8 2ed6,f838 00002ed6,0000f838 c8ee * * * * * c8ee
+17714 * * * * * * * 2ed7 e2bb97,efa0b9 2ed7,f839 00002ed7,0000f839 c8ef * * * * * c8ef
+17715 * * * * * * * 2ede e2bb9e,efa0ba 2ede,f83a 00002ede,0000f83a c8f0 * * * * * c8f0
+17716 * * * * * * * f3a0 f0aa8ea9,ef8ea0 d868dfa9,f3a0 0002a3a9,0000f3a0 8940 * * * * * 8940
+17717 * * * * * * * f3a1 f0a18585,ef8ea1 d844dd45,f3a1 00021145,0000f3a1 8941 * * * * * 8941
+17718 * * * * * * * 650a e6948a,ef8ea3 650a,f3a3 0000650a,0000f3a3 8943 * * * * * 8943
+17719 * * * * * * * 4e3d e4b8bd,ef8ea6 4e3d,f3a6 00004e3d,0000f3a6 8946 * * * * * 8946
+17720 * * * * * * * 6edd e6bb9d,ef8ea7 6edd,f3a7 00006edd,0000f3a7 8947 * * * * * 8947
+17721 * * * * * * * 9d4e e9b58e,ef8ea8 9d4e,f3a8 00009d4e,0000f3a8 8948 * * * * * 8948
+17722 * * * * * * * 91df e9879f,ef8ea9 91df,f3a9 000091df,0000f3a9 8949 * * * * * 8949
+17723 * * * * * * * f3ac ef8eac,f0a79cb5 d85ddf35,f3ac 0000f3ac,00027735 894c * * * * * 894c
+17724 * * * * * * * 4f1a e4bc9a,ef8eae 4f1a,f3ae 00004f1a,0000f3ae 894e * * * * * 894e
+17725 * * * * * * * 4f28 e4bca8,ef8eaf 4f28,f3af 00004f28,0000f3af 894f * * * * * 894f
+17726 * * * * * * * 4fa8 e4bea8,ef8eb0 4fa8,f3b0 00004fa8,0000f3b0 8950 * * * * * 8950
+17727 * * * * * * * 5174 e585b4,ef8eb2 5174,f3b2 00005174,0000f3b2 8952 * * * * * 8952
+17728 * * * * * * * 519c e5869c,ef8eb3 519c,f3b3 0000519c,0000f3b3 8953 * * * * * 8953
+17729 * * * * * * * 51e4 e587a4,ef8eb4 51e4,f3b4 000051e4,0000f3b4 8954 * * * * * 8954
+17730 * * * * * * * 52a1 e58aa1,ef8eb5 52a1,f3b5 000052a1,0000f3b5 8955 * * * * * 8955
+17731 * * * * * * * 52a8 e58aa8,ef8eb6 52a8,f3b6 000052a8,0000f3b6 8956 * * * * * 8956
+17732 * * * * * * * 533b e58cbb,ef8eb7 533b,f3b7 0000533b,0000f3b7 8957 * * * * * 8957
+17733 * * * * * * * 534e e58d8e,ef8eb8 534e,f3b8 0000534e,0000f3b8 8958 * * * * * 8958
+17734 * * * * * * * 53d1 e58f91,ef8eb9 53d1,f3b9 000053d1,0000f3b9 8959 * * * * * 8959
+17735 * * * * * * * 53d8 e58f98,ef8eba 53d8,f3ba 000053d8,0000f3ba 895a * * * * * 895a
+17736 * * * * * * * 56e2 e59ba2,ef8ebb 56e2,f3bb 000056e2,0000f3bb 895b * * * * * 895b
+17737 * * * * * * * 58f0 e5a3b0,ef8ebc 58f0,f3bc 000058f0,0000f3bc 895c * * * * * 895c
+17738 * * * * * * * 5904 e5a484,ef8ebd 5904,f3bd 00005904,0000f3bd 895d * * * * * 895d
+17739 * * * * * * * 5907 e5a487,ef8ebe 5907,f3be 00005907,0000f3be 895e * * * * * 895e
+17740 * * * * * * * 5932 e5a4b2,ef8ebf 5932,f3bf 00005932,0000f3bf 895f * * * * * 895f
+17741 * * * * * * * 5934 e5a4b4,ef8f80 5934,f3c0 00005934,0000f3c0 8960 * * * * * 8960
+17742 * * * * * * * 5b66 e5ada6,ef8f81 5b66,f3c1 00005b66,0000f3c1 8961 * * * * * 8961
+17743 * * * * * * * 5b9e e5ae9e,ef8f82 5b9e,f3c2 00005b9e,0000f3c2 8962 * * * * * 8962
+17744 * * * * * * * 5b9f e5ae9f,ef8f83 5b9f,f3c3 00005b9f,0000f3c3 8963 * * * * * 8963
+17745 * * * * * * * 5c9a e5b29a,ef8f84 5c9a,f3c4 00005c9a,0000f3c4 8964 * * * * * 8964
+17746 * * * * * * * 5e86 e5ba86,ef8f85 5e86,f3c5 00005e86,0000f3c5 8965 * * * * * 8965
+17747 * * * * * * * 603b e680bb,ef8f86 603b,f3c6 0000603b,0000f3c6 8966 * * * * * 8966
+17748 * * * * * * * 6589 e69689,ef8f87 6589,f3c7 00006589,0000f3c7 8967 * * * * * 8967
+17749 * * * * * * * 67fe e69fbe,ef8f88 67fe,f3c8 000067fe,0000f3c8 8968 * * * * * 8968
+17750 * * * * * * * 6804 e6a084,ef8f89 6804,f3c9 00006804,0000f3c9 8969 * * * * * 8969
+17751 * * * * * * * 6865 e6a1a5,ef8f8a 6865,f3ca 00006865,0000f3ca 896a * * * * * 896a
+17752 * * * * * * * 6d4e e6b58e,ef8f8b 6d4e,f3cb 00006d4e,0000f3cb 896b * * * * * 896b
+17753 * * * * * * * 70bc e782bc,ef8f8c 70bc,f3cc 000070bc,0000f3cc 896c * * * * * 896c
+17754 * * * * * * * 7535 e794b5,ef8f8d 7535,f3cd 00007535,0000f3cd 896d * * * * * 896d
+17755 * * * * * * * 7ea4 e7baa4,ef8f8e 7ea4,f3ce 00007ea4,0000f3ce 896e * * * * * 896e
+17756 * * * * * * * 7eac e7baac,ef8f8f 7eac,f3cf 00007eac,0000f3cf 896f * * * * * 896f
+17757 * * * * * * * 7eba e7baba,ef8f90 7eba,f3d0 00007eba,0000f3d0 8970 * * * * * 8970
+17758 * * * * * * * 7ec7 e7bb87,ef8f91 7ec7,f3d1 00007ec7,0000f3d1 8971 * * * * * 8971
+17759 * * * * * * * 7ecf e7bb8f,ef8f92 7ecf,f3d2 00007ecf,0000f3d2 8972 * * * * * 8972
+17760 * * * * * * * 7edf e7bb9f,ef8f93 7edf,f3d3 00007edf,0000f3d3 8973 * * * * * 8973
+17761 * * * * * * * 7f06 e7bc86,ef8f94 7f06,f3d4 00007f06,0000f3d4 8974 * * * * * 8974
+17762 * * * * * * * 7f37 e7bcb7,ef8f95 7f37,f3d5 00007f37,0000f3d5 8975 * * * * * 8975
+17763 * * * * * * * 827a e889ba,ef8f96 827a,f3d6 0000827a,0000f3d6 8976 * * * * * 8976
+17764 * * * * * * * 82cf e88b8f,ef8f97 82cf,f3d7 000082cf,0000f3d7 8977 * * * * * 8977
+17765 * * * * * * * 836f e88daf,ef8f98 836f,f3d8 0000836f,0000f3d8 8978 * * * * * 8978
+17766 * * * * * * * 89c6 e8a786,ef8f99 89c6,f3d9 000089c6,0000f3d9 8979 * * * * * 8979
+17767 * * * * * * * 8bbe e8aebe,ef8f9a 8bbe,f3da 00008bbe,0000f3da 897a * * * * * 897a
+17768 * * * * * * * 8be2 e8afa2,ef8f9b 8be2,f3db 00008be2,0000f3db 897b * * * * * 897b
+17769 * * * * * * * 8f66 e8bda6,ef8f9c 8f66,f3dc 00008f66,0000f3dc 897c * * * * * 897c
+17770 * * * * * * * 8f67 e8bda7,ef8f9d 8f67,f3dd 00008f67,0000f3dd 897d * * * * * 897d
+17771 * * * * * * * 8f6e e8bdae,ef8f9e 8f6e,f3de 00008f6e,0000f3de 897e * * * * * 897e
+17772 * * * * * * * 7411 e79091,ef8f9f 7411,f3df 00007411,0000f3df 89a1 * * * * * 89a1
+17773 * * * * * * * 7cfc e7b3bc,ef8fa0 7cfc,f3e0 00007cfc,0000f3e0 89a2 * * * * * 89a2
+17774 * * * * * * * 7dcd e7b78d,ef8fa1 7dcd,f3e1 00007dcd,0000f3e1 89a3 * * * * * 89a3
+17775 * * * * * * * 6946 e6a586,ef8fa2 6946,f3e2 00006946,0000f3e2 89a4 * * * * * 89a4
+17776 * * * * * * * 7ac9 e7ab89,ef8fa3 7ac9,f3e3 00007ac9,0000f3e3 89a5 * * * * * 89a5
+17777 * * * * * * * 78b8 e7a2b8,ef8faa 78b8,f3ea 000078b8,0000f3ea 89ac * * * * * 89ac
+17778 * * * * * * * 80bc e882bc,ef8fac 80bc,f3ec 000080bc,0000f3ec 89ae * * * * * 89ae
+17779 * * * * * * * 8d0b e8b48b,ef8fae 8d0b,f3ee 00008d0b,0000f3ee 89b0 * * * * * 89b0
+17780 * * * * * * * 80f6 e883b6,ef8faf 80f6,f3ef 000080f6,0000f3ef 89b1 * * * * * 89b1
+17781 * * * * * * * f3f0 f0a0a7a7,ef8fb0 d842dde7,f3f0 000209e7,0000f3f0 89b2 * * * * * 89b2
+17782 * * * * * * * 809f e8829f,ef8fb3 809f,f3f3 0000809f,0000f3f3 89b5 * * * * * 89b5
+17783 * * * * * * * 9ec7 e9bb87,ef8fb4 9ec7,f3f4 00009ec7,0000f3f4 89b6 * * * * * 89b6
+17784 * * * * * * * 4ccd e4b38d,ef8fb5 4ccd,f3f5 00004ccd,0000f3f5 89b7 * * * * * 89b7
+17785 * * * * * * * 9dc9 e9b789,ef8fb6 9dc9,f3f6 00009dc9,0000f3f6 89b8 * * * * * 89b8
+17786 * * * * * * * 9e0c e9b88c,ef8fb7 9e0c,f3f7 00009e0c,0000f3f7 89b9 * * * * * 89b9
+17787 * * * * * * * 4c3e e4b0be,ef8fb8 4c3e,f3f8 00004c3e,0000f3f8 89ba * * * * * 89ba
+17788 * * * * * * * f3f9 f0a9b7b6,ef8fb9 d867ddf6,f3f9 00029df6,0000f3f9 89bb * * * * * 89bb
+17789 * * * * * * * f3fa f0a7808e,ef8fba d85cdc0e,f3fa 0002700e,0000f3fa 89bc * * * * * 89bc
+17790 * * * * * * * 9e0a e9b88a,ef8fbb 9e0a,f3fb 00009e0a,0000f3fb 89bd * * * * * 89bd
+17791 * * * * * * * f3fc f0aa84b3,ef8fbc d868dd33,f3fc 0002a133,0000f3fc 89be * * * * * 89be
+17792 * * * * * * * 35c1 e39781,ef8fbd 35c1,f3fd 000035c1,0000f3fd 89bf * * * * * 89bf
+17793 * * * * * * * 6e9a e6ba9a,ef8fbf 6e9a,f3ff 00006e9a,0000f3ff 89c1 * * * * * 89c1
+17794 * * * * * * * 823e e888be,ef9080 823e,f400 0000823e,0000f400 89c2 * * * * * 89c2
+17795 * * * * * * * 7519 e79499,ef9081 7519,f401 00007519,0000f401 89c3 * * * * * 89c3
+17796 * * * * * * * 4911 e4a491,ef9083 4911,f403 00004911,0000f403 89c5 * * * * * 89c5
+17797 * * * * * * * 9a6c e9a9ac,ef9084 9a6c,f404 00009a6c,0000f404 89c6 * * * * * 89c6
+17798 * * * * * * * 9a8f e9aa8f,ef9085 9a8f,f405 00009a8f,0000f405 89c7 * * * * * 89c7
+17799 * * * * * * * 9f99 e9be99,ef9086 9f99,f406 00009f99,0000f406 89c8 * * * * * 89c8
+17800 * * * * * * * 7987 e7a687,ef9087 7987,f407 00007987,0000f407 89c9 * * * * * 89c9
+17801 * * * * * * * f408 f0a891ac,ef9088 d861dc6c,f408 0002846c,0000f408 89ca * * * * * 89ca
+17802 * * * * * * * f409 f0a1b78a,ef9089 d847ddca,f409 00021dca,0000f409 89cb * * * * * 89cb
+17803 * * * * * * * f40a f0a09790,ef908a d841ddd0,f40a 000205d0,0000f40a 89cc * * * * * 89cc
+17804 * * * * * * * f40b f0a2aba6,ef908b d84adee6,f40b 00022ae6,0000f40b 89cd * * * * * 89cd
+17805 * * * * * * * 4e24 e4b8a4,ef908c 4e24,f40c 00004e24,0000f40c 89ce * * * * * 89ce
+17806 * * * * * * * 4e80 e4ba80,ef908e 4e80,f40e 00004e80,0000f40e 89d0 * * * * * 89d0
+17807 * * * * * * * 4e87 e4ba87,ef908f 4e87,f40f 00004e87,0000f40f 89d1 * * * * * 89d1
+17808 * * * * * * * 4ebf e4babf,ef9090 4ebf,f410 00004ebf,0000f410 89d2 * * * * * 89d2
+17809 * * * * * * * 4eeb e4bbab,ef9091 4eeb,f411 00004eeb,0000f411 89d3 * * * * * 89d3
+17810 * * * * * * * 4f37 e4bcb7,ef9092 4f37,f412 00004f37,0000f412 89d4 * * * * * 89d4
+17811 * * * * * * * 344c e3918c,ef9093 344c,f413 0000344c,0000f413 89d5 * * * * * 89d5
+17812 * * * * * * * 4fbd e4bebd,ef9094 4fbd,f414 00004fbd,0000f414 89d6 * * * * * 89d6
+17813 * * * * * * * 3e48 e3b988,ef9095 3e48,f415 00003e48,0000f415 89d7 * * * * * 89d7
+17814 * * * * * * * 5003 e58083,ef9096 5003,f416 00005003,0000f416 89d8 * * * * * 89d8
+17815 * * * * * * * 347d e391bd,ef9098 347d,f418 0000347d,0000f418 89da * * * * * 89da
+17816 * * * * * * * 34a5 e392a5,ef909a 34a5,f41a 000034a5,0000f41a 89dc * * * * * 89dc
+17817 * * * * * * * 5905 e5a485,ef909c 5905,f41c 00005905,0000f41c 89de * * * * * 89de
+17818 * * * * * * * 51db e5879b,ef909d 51db,f41d 000051db,0000f41d 89df * * * * * 89df
+17819 * * * * * * * 51fc e587bc,ef909e 51fc,f41e 000051fc,0000f41e 89e0 * * * * * 89e0
+17820 * * * * * * * 4e89 e4ba89,ef90a0 4e89,f420 00004e89,0000f420 89e2 * * * * * 89e2
+17821 * * * * * * * 5290 e58a90,ef90a2 5290,f422 00005290,0000f422 89e4 * * * * * 89e4
+17822 * * * * * * * 5327 e58ca7,ef90a3 5327,f423 00005327,0000f423 89e5 * * * * * 89e5
+17823 * * * * * * * 35c7 e39787,ef90a4 35c7,f424 000035c7,0000f424 89e6 * * * * * 89e6
+17824 * * * * * * * 53a9 e58ea9,ef90a5 53a9,f425 000053a9,0000f425 89e7 * * * * * 89e7
+17825 * * * * * * * 3551 e39591,ef90a6 3551,f426 00003551,0000f426 89e8 * * * * * 89e8
+17826 * * * * * * * 53b0 e58eb0,ef90a7 53b0,f427 000053b0,0000f427 89e9 * * * * * 89e9
+17827 * * * * * * * 5423 e590a3,ef90aa 5423,f42a 00005423,0000f42a 89ec * * * * * 89ec
+17828 * * * * * * * 356d e395ad,ef90ab 356d,f42b 0000356d,0000f42b 89ed * * * * * 89ed
+17829 * * * * * * * 3572 e395b2,ef90ac 3572,f42c 00003572,0000f42c 89ee * * * * * 89ee
+17830 * * * * * * * 3681 e39a81,ef90ad 3681,f42d 00003681,0000f42d 89ef * * * * * 89ef
+17831 * * * * * * * 5493 e59293,ef90ae 5493,f42e 00005493,0000f42e 89f0 * * * * * 89f0
+17832 * * * * * * * 54a3 e592a3,ef90af 54a3,f42f 000054a3,0000f42f 89f1 * * * * * 89f1
+17833 * * * * * * * 54b4 e592b4,ef90b0 54b4,f430 000054b4,0000f430 89f2 * * * * * 89f2
+17834 * * * * * * * 54b9 e592b9,ef90b1 54b9,f431 000054b9,0000f431 89f3 * * * * * 89f3
+17835 * * * * * * * 54d0 e59390,ef90b2 54d0,f432 000054d0,0000f432 89f4 * * * * * 89f4
+17836 * * * * * * * 54ef e593af,ef90b3 54ef,f433 000054ef,0000f433 89f5 * * * * * 89f5
+17837 * * * * * * * 5518 e59498,ef90b4 5518,f434 00005518,0000f434 89f6 * * * * * 89f6
+17838 * * * * * * * 5523 e594a3,ef90b5 5523,f435 00005523,0000f435 89f7 * * * * * 89f7
+17839 * * * * * * * 5528 e594a8,ef90b6 5528,f436 00005528,0000f436 89f8 * * * * * 89f8
+17840 * * * * * * * 3598 e39698,ef90b7 3598,f437 00003598,0000f437 89f9 * * * * * 89f9
+17841 * * * * * * * 35a5 e396a5,ef90b9 35a5,f439 000035a5,0000f439 89fb * * * * * 89fb
+17842 * * * * * * * 35bf e396bf,ef90ba 35bf,f43a 000035bf,0000f43a 89fc * * * * * 89fc
+17843 * * * * * * * 55d7 e59797,ef90bb 55d7,f43b 000055d7,0000f43b 89fd * * * * * 89fd
+17844 * * * * * * * 35c5 e39785,ef90bc 35c5,f43c 000035c5,0000f43c 89fe * * * * * 89fe
+17845 * * * * * * * f43d f0a7b684,ef90bd d85fdd84,f43d 00027d84,0000f43d 8a40 * * * * * 8a40
+17846 * * * * * * * 4053 e48193,ef918a 4053,f44a 00004053,0000f44a 8a4d * * * * * 8a4d
+17847 * * * * * * * f457 ef9197,f0a183b4 d844dcf4,f457 0000f457,000210f4 8a5a * * * * * 8a5a
+17848 * * * * * * * f45b ef919b,f0a0b08b d843dc0b,f45b 0000f45b,00020c0b 8a5e * * * * * 8a5e
+17849 * * * * * * * f46e ef91ae,f0a7a388 d85edcc8,f46e 0000f46e,000278c8 8a71 * * * * * 8a71
+17850 * * * * * * * f474 ef91b4,f0a682a5 d858dca5,f474 0000f474,000260a5 8a77 * * * * * 8a77
+17851 * * * * * * * f477 ef91b7,f0a2b58c d84bdd4c,f477 0000f477,00022d4c 8a7a * * * * * 8a7a
+17852 * * * * * * * f479 ef91b9,f0a181b7 d844dc77,f479 0000f479,00021077 8a7c * * * * * 8a7c
+17853 * * * * * * * f47b ef91bb,f0a181af d844dc6f,f47b 0000f47b,0002106f 8a7e * * * * * 8a7e
+17854 * * * * * * * f483 ef9283,f0a286a1 d848dda1,f483 0000f483,000221a1 8aa8 * * * * * 8aa8
+17855 * * * * * * * f491 ef9291,f0a0b696 d843dd96,f491 0000f491,00020d96 8ab6 * * * * * 8ab6
+17856 * * * * * * * 40bb e482bb,ef9293 40bb,f493 000040bb,0000f493 8ab8 * * * * * 8ab8
+17857 * * * * * * * f4a7 ef92a7,f0a2b389 d84bdcc9,f4a7 0000f4a7,00022cc9 8acc * * * * * 8acc
+17858 * * * * * * * 5652 e59992,ef92b1 5652,f4b1 00005652,0000f4b1 8ad6 * * * * * 8ad6
+17859 * * * * * * * f4b2 f0a0bcb1,ef92b2 d843df31,f4b2 00020f31,0000f4b2 8ad7 * * * * * 8ad7
+17860 * * * * * * * f4c1 ef9381,f0a6a09c d85adc1c,f4c1 0000f4c1,0002681c 8ae6 * * * * * 8ae6
+17861 * * * * * * * f4c3 f0a1838f,ef9383 d844dccf,f4c3 000210cf,0000f4c3 8ae8 * * * * * 8ae8
+17862 * * * * * * * f4c4 f0a2a083,ef9384 d84adc03,f4c4 00022803,0000f4c4 8ae9 * * * * * 8ae9
+17863 * * * * * * * f4c5 f0a2a4b9,ef9385 d84add39,f4c5 00022939,0000f4c5 8aea * * * * * 8aea
+17864 * * * * * * * 35fb e397bb,ef9386 35fb,f4c6 000035fb,0000f4c6 8aeb * * * * * 8aeb
+17865 * * * * * * * f4c7 f0a587a3,ef9387 d854dde3,f4c7 000251e3,0000f4c7 8aec * * * * * 8aec
+17866 * * * * * * * f4c8 f0a0ba8c,ef9388 d843de8c,f4c8 00020e8c,0000f4c8 8aed * * * * * 8aed
+17867 * * * * * * * f4c9 f0a0be8d,ef9389 d843df8d,f4c9 00020f8d,0000f4c9 8aee * * * * * 8aee
+17868 * * * * * * * f4ca f0a0baaa,ef938a d843deaa,f4ca 00020eaa,0000f4ca 8aef * * * * * 8aef
+17869 * * * * * * * 3f93 e3be93,ef938b 3f93,f4cb 00003f93,0000f4cb 8af0 * * * * * 8af0
+17870 * * * * * * * f4cc f0a0bcb0,ef938c d843df30,f4cc 00020f30,0000f4cc 8af1 * * * * * 8af1
+17871 * * * * * * * f4cd f0a0b587,ef938d d843dd47,f4cd 00020d47,0000f4cd 8af2 * * * * * 8af2
+17872 * * * * * * * f4ce f0a1858f,ef938e d844dd4f,f4ce 0002114f,0000f4ce 8af3 * * * * * 8af3
+17873 * * * * * * * f4cf f0a0b98c,ef938f d843de4c,f4cf 00020e4c,0000f4cf 8af4 * * * * * 8af4
+17874 * * * * * * * f4d1 f0a0baab,ef9391 d843deab,f4d1 00020eab,0000f4d1 8af6 * * * * * 8af6
+17875 * * * * * * * f4d2 f0a0aea9,ef9392 d842dfa9,f4d2 00020ba9,0000f4d2 8af7 * * * * * 8af7
+17876 * * * * * * * f4d3 f0a0b588,ef9393 d843dd48,f4d3 00020d48,0000f4d3 8af8 * * * * * 8af8
+17877 * * * * * * * f4d4 f0a18380,ef9394 d844dcc0,f4d4 000210c0,0000f4d4 8af9 * * * * * 8af9
+17878 * * * * * * * f4d5 f0a184bd,ef9395 d844dd3d,f4d5 0002113d,0000f4d5 8afa * * * * * 8afa
+17879 * * * * * * * 3ff9 e3bfb9,ef9396 3ff9,f4d6 00003ff9,0000f4d6 8afb * * * * * 8afb
+17880 * * * * * * * f4d7 f0a29a96,ef9397 d849de96,f4d7 00022696,0000f4d7 8afc * * * * * 8afc
+17881 * * * * * * * 6432 e690b2,ef9398 6432,f4d8 00006432,0000f4d8 8afd * * * * * 8afd
+17882 * * * * * * * f4d9 f0a0bead,ef9399 d843dfad,f4d9 00020fad,0000f4d9 8afe * * * * * 8afe
+17883 * * * * * * * f4da f0a38fb4,ef939a d84cdff4,f4da 000233f4,0000f4da 8b40 * * * * * 8b40
+17884 * * * * * * * f4dd ef939d,f0a0b5be d843dd7e,f4dd 0000f4dd,00020d7e 8b43 * * * * * 8b43
+17885 * * * * * * * f4de ef939e,f0a0b5bf d843dd7f,f4de 0000f4de,00020d7f 8b44 * * * * * 8b44
+17886 * * * * * * * f4e0 ef93a0,f0a2b195 d84bdc55,f4e0 0000f4e0,00022c55 8b46 * * * * * 8b46
+17887 * * * * * * * f4e2 ef93a2,f0a0ba98 d843de98,f4e2 0000f4e2,00020e98 8b48 * * * * * 8b48
+17888 * * * * * * * f4e4 ef93a4,f0a0bcae d843df2e,f4e4 0000f4e4,00020f2e 8b4a * * * * * 8b4a
+17889 * * * * * * * f4e6 ef93a6,f0a6ad90 d85adf50,f4e6 0000f4e6,00026b50 8b4c * * * * * 8b4c
+17890 * * * * * * * * e5938c,ef93ab 54cc,f4eb 000054cc,0000f4eb 8b51 * * * * * 8b51
+17891 * * * * * * * 82c4 e88b84,ef93ac 82c4,f4ec 000082c4,0000f4ec 8b52 * * * * * 8b52
+17892 * * * * * * * * e596b9,ef93ad 55b9,f4ed 000055b9,0000f4ed 8b53 * * * * * 8b53
+17893 * * * * * * * f4ef f0a9bb83,ef93af d867dec3,f4ef 00029ec3,0000f4ef 8b55 * * * * * 8b55
+17894 * * * * * * * 9c26 e9b0a6,ef93b0 9c26,f4f0 00009c26,0000f4f0 8b56 * * * * * 8b56
+17895 * * * * * * * * e9aab6,ef93b1 9ab6,f4f1 00009ab6,0000f4f1 8b57 * * * * * 8b57
+17896 * * * * * * * f4f3 ef93b3,f0a2b7ae d84bddee,f4f3 0000f4f3,00022dee 8b59 * * * * * 8b59
+17897 * * * * * * * 80ec e883ac,ef93b6 80ec,f4f6 000080ec,0000f4f6 8b5c * * * * * 8b5c
+17898 * * * * * * * 5c1c e5b09c,ef93b7 5c1c,f4f7 00005c1c,0000f4f7 8b5d * * * * * 8b5d
+17899 * * * * * * * f4f8 f0a695b2,ef93b8 d859dd72,f4f8 00026572,0000f4f8 8b5e * * * * * 8b5e
+17900 * * * * * * * 8134 e884b4,ef93b9 8134,f4f9 00008134,0000f4f9 8b5f * * * * * 8b5f
+17901 * * * * * * * 3797 e39e97,ef93ba 3797,f4fa 00003797,0000f4fa 8b60 * * * * * 8b60
+17902 * * * * * * * f4fc f0a882bd,ef93bc d860dcbd,f4fc 000280bd,0000f4fc 8b62 * * * * * 8b62
+17903 * * * * * * * 91b6 e986b6,ef93bd 91b6,f4fd 000091b6,0000f4fd 8b63 * * * * * 8b63
+17904 * * * * * * * f4fe f0a0bbba,ef93be d843defa,f4fe 00020efa,0000f4fe 8b64 * * * * * 8b64
+17905 * * * * * * * f4ff f0a0b88f,ef93bf d843de0f,f4ff 00020e0f,0000f4ff 8b65 * * * * * 8b65
+17906 * * * * * * * f500 f0a0b9b7,ef9480 d843de77,f500 00020e77,0000f500 8b66 * * * * * 8b66
+17907 * * * * * * * f501 f0a0bbbb,ef9481 d843defb,f501 00020efb,0000f501 8b67 * * * * * 8b67
+17908 * * * * * * * f503 f0a4b7ab,ef9483 d853ddeb,f503 00024deb,0000f503 8b69 * * * * * 8b69
+17909 * * * * * * * 3609 e39889,ef9484 3609,f504 00003609,0000f504 8b6a * * * * * 8b6a
+17910 * * * * * * * f505 f0a0b396,ef9485 d843dcd6,f505 00020cd6,0000f505 8b6b * * * * * 8b6b
+17911 * * * * * * * 56af e59aaf,ef9486 56af,f506 000056af,0000f506 8b6c * * * * * 8b6c
+17912 * * * * * * * f507 f0a29eb5,ef9487 d849dfb5,f507 000227b5,0000f507 8b6d * * * * * 8b6d
+17913 * * * * * * * f508 f0a18389,ef9488 d844dcc9,f508 000210c9,0000f508 8b6e * * * * * 8b6e
+17914 * * * * * * * f509 f0a0b890,ef9489 d843de10,f509 00020e10,0000f509 8b6f * * * * * 8b6f
+17915 * * * * * * * f50a f0a0b9b8,ef948a d843de78,f50a 00020e78,0000f50a 8b70 * * * * * 8b70
+17916 * * * * * * * f50b f0a181b8,ef948b d844dc78,f50b 00021078,0000f50b 8b71 * * * * * 8b71
+17917 * * * * * * * f50c f0a18588,ef948c d844dd48,f50c 00021148,0000f50c 8b72 * * * * * 8b72
+17918 * * * * * * * f50d f0a88887,ef948d d860de07,f50d 00028207,0000f50d 8b73 * * * * * 8b73
+17919 * * * * * * * f50e f0a19195,ef948e d845dc55,f50e 00021455,0000f50e 8b74 * * * * * 8b74
+17920 * * * * * * * f50f f0a0b9b9,ef948f d843de79,f50f 00020e79,0000f50f 8b75 * * * * * 8b75
+17921 * * * * * * * f510 f0a4b990,ef9490 d853de50,f510 00024e50,0000f510 8b76 * * * * * 8b76
+17922 * * * * * * * f511 f0a2b6a4,ef9491 d84bdda4,f511 00022da4,0000f511 8b77 * * * * * 8b77
+17923 * * * * * * * 5a54 e5a994,ef9492 5a54,f512 00005a54,0000f512 8b78 * * * * * 8b78
+17924 * * * * * * * f513 ef9493,f0a1809d d844dc1d,f513 0000f513,0002101d 8b79 * * * * * 8b79
+17925 * * * * * * * f514 ef9494,f0a1809e d844dc1e,f514 0000f514,0002101e 8b7a * * * * * 8b7a
+17926 * * * * * * * f515 ef9495,f0a183b5 d844dcf5,f515 0000f515,000210f5 8b7b * * * * * 8b7b
+17927 * * * * * * * f516 ef9496,f0a183b6 d844dcf6,f516 0000f516,000210f6 8b7c * * * * * 8b7c
+17928 * * * * * * * 579c e59e9c,ef9497 579c,f517 0000579c,0000f517 8b7d * * * * * 8b7d
+17929 * * * * * * * f518 f0a0b891,ef9498 d843de11,f518 00020e11,0000f518 8b7e * * * * * 8b7e
+17930 * * * * * * * f519 f0a79a94,ef9499 d85dde94,f519 00027694,0000f519 8ba1 * * * * * 8ba1
+17931 * * * * * * * f51a f0a88b8d,ef949a d860decd,f51a 000282cd,0000f51a 8ba2 * * * * * 8ba2
+17932 * * * * * * * f51b f0a0beb5,ef949b d843dfb5,f51b 00020fb5,0000f51b 8ba3 * * * * * 8ba3
+17933 * * * * * * * f51c f0a0b9bb,ef949c d843de7b,f51c 00020e7b,0000f51c 8ba4 * * * * * 8ba4
+17934 * * * * * * * f51d f0a585be,ef949d d854dd7e,f51d 0002517e,0000f51d 8ba5 * * * * * 8ba5
+17935 * * * * * * * 3703 e39c83,ef949e 3703,f51e 00003703,0000f51e 8ba6 * * * * * 8ba6
+17936 * * * * * * * f51f f0a0beb6,ef949f d843dfb6,f51f 00020fb6,0000f51f 8ba7 * * * * * 8ba7
+17937 * * * * * * * f520 f0a18680,ef94a0 d844dd80,f520 00021180,0000f520 8ba8 * * * * * 8ba8
+17938 * * * * * * * f521 f0a58b98,ef94a1 d854ded8,f521 000252d8,0000f521 8ba9 * * * * * 8ba9
+17939 * * * * * * * f522 f0aa8abd,ef94a2 d868debd,f522 0002a2bd,0000f522 8baa * * * * * 8baa
+17940 * * * * * * * f523 f0a4a79a,ef94a3 d852ddda,f523 000249da,0000f523 8bab * * * * * 8bab
+17941 * * * * * * * f524 f0a1a0ba,ef94a4 d846dc3a,f524 0002183a,0000f524 8bac * * * * * 8bac
+17942 * * * * * * * f525 f0a485b7,ef94a5 d850dd77,f525 00024177,0000f525 8bad * * * * * 8bad
+17943 * * * * * * * f526 f0a889bc,ef94a6 d860de7c,f526 0002827c,0000f526 8bae * * * * * 8bae
+17944 * * * * * * * 5899 e5a299,ef94a7 5899,f527 00005899,0000f527 8baf * * * * * 8baf
+17945 * * * * * * * 5268 e589a8,ef94a8 5268,f528 00005268,0000f528 8bb0 * * * * * 8bb0
+17946 * * * * * * * 361a e3989a,ef94a9 361a,f529 0000361a,0000f529 8bb1 * * * * * 8bb1
+17947 * * * * * * * f52a f0a59cbd,ef94aa d855df3d,f52a 0002573d,0000f52a 8bb2 * * * * * 8bb2
+17948 * * * * * * * 7bb2 e7aeb2,ef94ab 7bb2,f52b 00007bb2,0000f52b 8bb3 * * * * * 8bb3
+17949 * * * * * * * 5b68 e5ada8,ef94ac 5b68,f52c 00005b68,0000f52c 8bb4 * * * * * 8bb4
+17950 * * * * * * * 4800 e4a080,ef94ad 4800,f52d 00004800,0000f52d 8bb5 * * * * * 8bb5
+17951 * * * * * * * 4b2c e4acac,ef94ae 4b2c,f52e 00004b2c,0000f52e 8bb6 * * * * * 8bb6
+17952 * * * * * * * 9f27 e9bca7,ef94af 9f27,f52f 00009f27,0000f52f 8bb7 * * * * * 8bb7
diff --git a/libs/anr/examples/res/comic-sans.ttf b/libs/anr/examples/res/comic-sans.ttf
new file mode 100644
index 0000000..d17e1be
--- /dev/null
+++ b/libs/anr/examples/res/comic-sans.ttf
Binary files differ
diff --git a/libs/anr/examples/res/greenland_grid_velo.bmp b/libs/anr/examples/res/greenland_grid_velo.bmp
new file mode 100644
index 0000000..7bcc993
--- /dev/null
+++ b/libs/anr/examples/res/greenland_grid_velo.bmp
Binary files differ
diff --git a/libs/anr/examples/res/small.txt b/libs/anr/examples/res/small.txt
new file mode 100644
index 0000000..e604c07
--- /dev/null
+++ b/libs/anr/examples/res/small.txt
@@ -0,0 +1 @@
+12312312345454598765455555555555333332344455555551234555543214646344632146411163214641116321464 \ No newline at end of file
diff --git a/libs/anr/examples/res/spongebob.png b/libs/anr/examples/res/spongebob.png
new file mode 100644
index 0000000..82724b9
--- /dev/null
+++ b/libs/anr/examples/res/spongebob.png
Binary files differ
diff --git a/libs/anr/examples/res/stb_image.h b/libs/anr/examples/res/stb_image.h
new file mode 100644
index 0000000..a632d54
--- /dev/null
+++ b/libs/anr/examples/res/stb_image.h
@@ -0,0 +1,7985 @@
+/* stb_image - v2.29 - public domain image loader - http://nothings.org/stb
+ no warranty implied; use at your own risk
+
+ Do this:
+ #define STB_IMAGE_IMPLEMENTATION
+ before you include this file in *one* C or C++ file to create the implementation.
+
+ // i.e. it should look like this:
+ #include ...
+ #include ...
+ #include ...
+ #define STB_IMAGE_IMPLEMENTATION
+ #include "stb_image.h"
+
+ You can #define STBI_ASSERT(x) before the #include to avoid using assert.h.
+ And #define STBI_MALLOC, STBI_REALLOC, and STBI_FREE to avoid using malloc,realloc,free
+
+
+ QUICK NOTES:
+ Primarily of interest to game developers and other people who can
+ avoid problematic images and only need the trivial interface
+
+ JPEG baseline & progressive (12 bpc/arithmetic not supported, same as stock IJG lib)
+ PNG 1/2/4/8/16-bit-per-channel
+
+ TGA (not sure what subset, if a subset)
+ BMP non-1bpp, non-RLE
+ PSD (composited view only, no extra channels, 8/16 bit-per-channel)
+
+ GIF (*comp always reports as 4-channel)
+ HDR (radiance rgbE format)
+ PIC (Softimage PIC)
+ PNM (PPM and PGM binary only)
+
+ Animated GIF still needs a proper API, but here's one way to do it:
+ http://gist.github.com/urraka/685d9a6340b26b830d49
+
+ - decode from memory or through FILE (define STBI_NO_STDIO to remove code)
+ - decode from arbitrary I/O callbacks
+ - SIMD acceleration on x86/x64 (SSE2) and ARM (NEON)
+
+ Full documentation under "DOCUMENTATION" below.
+
+
+LICENSE
+
+ See end of file for license information.
+
+RECENT REVISION HISTORY:
+
+ 2.29 (2023-05-xx) optimizations
+ 2.28 (2023-01-29) many error fixes, security errors, just tons of stuff
+ 2.27 (2021-07-11) document stbi_info better, 16-bit PNM support, bug fixes
+ 2.26 (2020-07-13) many minor fixes
+ 2.25 (2020-02-02) fix warnings
+ 2.24 (2020-02-02) fix warnings; thread-local failure_reason and flip_vertically
+ 2.23 (2019-08-11) fix clang static analysis warning
+ 2.22 (2019-03-04) gif fixes, fix warnings
+ 2.21 (2019-02-25) fix typo in comment
+ 2.20 (2019-02-07) support utf8 filenames in Windows; fix warnings and platform ifdefs
+ 2.19 (2018-02-11) fix warning
+ 2.18 (2018-01-30) fix warnings
+ 2.17 (2018-01-29) bugfix, 1-bit BMP, 16-bitness query, fix warnings
+ 2.16 (2017-07-23) all functions have 16-bit variants; optimizations; bugfixes
+ 2.15 (2017-03-18) fix png-1,2,4; all Imagenet JPGs; no runtime SSE detection on GCC
+ 2.14 (2017-03-03) remove deprecated STBI_JPEG_OLD; fixes for Imagenet JPGs
+ 2.13 (2016-12-04) experimental 16-bit API, only for PNG so far; fixes
+ 2.12 (2016-04-02) fix typo in 2.11 PSD fix that caused crashes
+ 2.11 (2016-04-02) 16-bit PNGS; enable SSE2 in non-gcc x64
+ RGB-format JPEG; remove white matting in PSD;
+ allocate large structures on the stack;
+ correct channel count for PNG & BMP
+ 2.10 (2016-01-22) avoid warning introduced in 2.09
+ 2.09 (2016-01-16) 16-bit TGA; comments in PNM files; STBI_REALLOC_SIZED
+
+ See end of file for full revision history.
+
+
+ ============================ Contributors =========================
+
+ Image formats Extensions, features
+ Sean Barrett (jpeg, png, bmp) Jetro Lauha (stbi_info)
+ Nicolas Schulz (hdr, psd) Martin "SpartanJ" Golini (stbi_info)
+ Jonathan Dummer (tga) James "moose2000" Brown (iPhone PNG)
+ Jean-Marc Lienher (gif) Ben "Disch" Wenger (io callbacks)
+ Tom Seddon (pic) Omar Cornut (1/2/4-bit PNG)
+ Thatcher Ulrich (psd) Nicolas Guillemot (vertical flip)
+ Ken Miller (pgm, ppm) Richard Mitton (16-bit PSD)
+ github:urraka (animated gif) Junggon Kim (PNM comments)
+ Christopher Forseth (animated gif) Daniel Gibson (16-bit TGA)
+ socks-the-fox (16-bit PNG)
+ Jeremy Sawicki (handle all ImageNet JPGs)
+ Optimizations & bugfixes Mikhail Morozov (1-bit BMP)
+ Fabian "ryg" Giesen Anael Seghezzi (is-16-bit query)
+ Arseny Kapoulkine Simon Breuss (16-bit PNM)
+ John-Mark Allen
+ Carmelo J Fdez-Aguera
+
+ Bug & warning fixes
+ Marc LeBlanc David Woo Guillaume George Martins Mozeiko
+ Christpher Lloyd Jerry Jansson Joseph Thomson Blazej Dariusz Roszkowski
+ Phil Jordan Dave Moore Roy Eltham
+ Hayaki Saito Nathan Reed Won Chun
+ Luke Graham Johan Duparc Nick Verigakis the Horde3D community
+ Thomas Ruf Ronny Chevalier github:rlyeh
+ Janez Zemva John Bartholomew Michal Cichon github:romigrou
+ Jonathan Blow Ken Hamada Tero Hanninen github:svdijk
+ Eugene Golushkov Laurent Gomila Cort Stratton github:snagar
+ Aruelien Pocheville Sergio Gonzalez Thibault Reuille github:Zelex
+ Cass Everitt Ryamond Barbiero github:grim210
+ Paul Du Bois Engin Manap Aldo Culquicondor github:sammyhw
+ Philipp Wiesemann Dale Weiler Oriol Ferrer Mesia github:phprus
+ Josh Tobin Neil Bickford Matthew Gregan github:poppolopoppo
+ Julian Raschke Gregory Mullen Christian Floisand github:darealshinji
+ Baldur Karlsson Kevin Schmidt JR Smith github:Michaelangel007
+ Brad Weinberger Matvey Cherevko github:mosra
+ Luca Sas Alexander Veselov Zack Middleton [reserved]
+ Ryan C. Gordon [reserved] [reserved]
+ DO NOT ADD YOUR NAME HERE
+
+ Jacko Dirks
+
+ To add your name to the credits, pick a random blank space in the middle and fill it.
+ 80% of merge conflicts on stb PRs are due to people adding their name at the end
+ of the credits.
+*/
+
+#ifndef STBI_INCLUDE_STB_IMAGE_H
+#define STBI_INCLUDE_STB_IMAGE_H
+
+// DOCUMENTATION
+//
+// Limitations:
+// - no 12-bit-per-channel JPEG
+// - no JPEGs with arithmetic coding
+// - GIF always returns *comp=4
+//
+// Basic usage (see HDR discussion below for HDR usage):
+// int x,y,n;
+// unsigned char *data = stbi_load(filename, &x, &y, &n, 0);
+// // ... process data if not NULL ...
+// // ... x = width, y = height, n = # 8-bit components per pixel ...
+// // ... replace '0' with '1'..'4' to force that many components per pixel
+// // ... but 'n' will always be the number that it would have been if you said 0
+// stbi_image_free(data);
+//
+// Standard parameters:
+// int *x -- outputs image width in pixels
+// int *y -- outputs image height in pixels
+// int *channels_in_file -- outputs # of image components in image file
+// int desired_channels -- if non-zero, # of image components requested in result
+//
+// The return value from an image loader is an 'unsigned char *' which points
+// to the pixel data, or NULL on an allocation failure or if the image is
+// corrupt or invalid. The pixel data consists of *y scanlines of *x pixels,
+// with each pixel consisting of N interleaved 8-bit components; the first
+// pixel pointed to is top-left-most in the image. There is no padding between
+// image scanlines or between pixels, regardless of format. The number of
+// components N is 'desired_channels' if desired_channels is non-zero, or
+// *channels_in_file otherwise. If desired_channels is non-zero,
+// *channels_in_file has the number of components that _would_ have been
+// output otherwise. E.g. if you set desired_channels to 4, you will always
+// get RGBA output, but you can check *channels_in_file to see if it's trivially
+// opaque because e.g. there were only 3 channels in the source image.
+//
+// An output image with N components has the following components interleaved
+// in this order in each pixel:
+//
+// N=#comp components
+// 1 grey
+// 2 grey, alpha
+// 3 red, green, blue
+// 4 red, green, blue, alpha
+//
+// If image loading fails for any reason, the return value will be NULL,
+// and *x, *y, *channels_in_file will be unchanged. The function
+// stbi_failure_reason() can be queried for an extremely brief, end-user
+// unfriendly explanation of why the load failed. Define STBI_NO_FAILURE_STRINGS
+// to avoid compiling these strings at all, and STBI_FAILURE_USERMSG to get slightly
+// more user-friendly ones.
+//
+// Paletted PNG, BMP, GIF, and PIC images are automatically depalettized.
+//
+// To query the width, height and component count of an image without having to
+// decode the full file, you can use the stbi_info family of functions:
+//
+// int x,y,n,ok;
+// ok = stbi_info(filename, &x, &y, &n);
+// // returns ok=1 and sets x, y, n if image is a supported format,
+// // 0 otherwise.
+//
+// Note that stb_image pervasively uses ints in its public API for sizes,
+// including sizes of memory buffers. This is now part of the API and thus
+// hard to change without causing breakage. As a result, the various image
+// loaders all have certain limits on image size; these differ somewhat
+// by format but generally boil down to either just under 2GB or just under
+// 1GB. When the decoded image would be larger than this, stb_image decoding
+// will fail.
+//
+// Additionally, stb_image will reject image files that have any of their
+// dimensions set to a larger value than the configurable STBI_MAX_DIMENSIONS,
+// which defaults to 2**24 = 16777216 pixels. Due to the above memory limit,
+// the only way to have an image with such dimensions load correctly
+// is for it to have a rather extreme aspect ratio. Either way, the
+// assumption here is that such larger images are likely to be malformed
+// or malicious. If you do need to load an image with individual dimensions
+// larger than that, and it still fits in the overall size limit, you can
+// #define STBI_MAX_DIMENSIONS on your own to be something larger.
+//
+// ===========================================================================
+//
+// UNICODE:
+//
+// If compiling for Windows and you wish to use Unicode filenames, compile
+// with
+// #define STBI_WINDOWS_UTF8
+// and pass utf8-encoded filenames. Call stbi_convert_wchar_to_utf8 to convert
+// Windows wchar_t filenames to utf8.
+//
+// ===========================================================================
+//
+// Philosophy
+//
+// stb libraries are designed with the following priorities:
+//
+// 1. easy to use
+// 2. easy to maintain
+// 3. good performance
+//
+// Sometimes I let "good performance" creep up in priority over "easy to maintain",
+// and for best performance I may provide less-easy-to-use APIs that give higher
+// performance, in addition to the easy-to-use ones. Nevertheless, it's important
+// to keep in mind that from the standpoint of you, a client of this library,
+// all you care about is #1 and #3, and stb libraries DO NOT emphasize #3 above all.
+//
+// Some secondary priorities arise directly from the first two, some of which
+// provide more explicit reasons why performance can't be emphasized.
+//
+// - Portable ("ease of use")
+// - Small source code footprint ("easy to maintain")
+// - No dependencies ("ease of use")
+//
+// ===========================================================================
+//
+// I/O callbacks
+//
+// I/O callbacks allow you to read from arbitrary sources, like packaged
+// files or some other source. Data read from callbacks are processed
+// through a small internal buffer (currently 128 bytes) to try to reduce
+// overhead.
+//
+// The three functions you must define are "read" (reads some bytes of data),
+// "skip" (skips some bytes of data), "eof" (reports if the stream is at the end).
+//
+// ===========================================================================
+//
+// SIMD support
+//
+// The JPEG decoder will try to automatically use SIMD kernels on x86 when
+// supported by the compiler. For ARM Neon support, you must explicitly
+// request it.
+//
+// (The old do-it-yourself SIMD API is no longer supported in the current
+// code.)
+//
+// On x86, SSE2 will automatically be used when available based on a run-time
+// test; if not, the generic C versions are used as a fall-back. On ARM targets,
+// the typical path is to have separate builds for NEON and non-NEON devices
+// (at least this is true for iOS and Android). Therefore, the NEON support is
+// toggled by a build flag: define STBI_NEON to get NEON loops.
+//
+// If for some reason you do not want to use any of SIMD code, or if
+// you have issues compiling it, you can disable it entirely by
+// defining STBI_NO_SIMD.
+//
+// ===========================================================================
+//
+// HDR image support (disable by defining STBI_NO_HDR)
+//
+// stb_image supports loading HDR images in general, and currently the Radiance
+// .HDR file format specifically. You can still load any file through the existing
+// interface; if you attempt to load an HDR file, it will be automatically remapped
+// to LDR, assuming gamma 2.2 and an arbitrary scale factor defaulting to 1;
+// both of these constants can be reconfigured through this interface:
+//
+// stbi_hdr_to_ldr_gamma(2.2f);
+// stbi_hdr_to_ldr_scale(1.0f);
+//
+// (note, do not use _inverse_ constants; stbi_image will invert them
+// appropriately).
+//
+// Additionally, there is a new, parallel interface for loading files as
+// (linear) floats to preserve the full dynamic range:
+//
+// float *data = stbi_loadf(filename, &x, &y, &n, 0);
+//
+// If you load LDR images through this interface, those images will
+// be promoted to floating point values, run through the inverse of
+// constants corresponding to the above:
+//
+// stbi_ldr_to_hdr_scale(1.0f);
+// stbi_ldr_to_hdr_gamma(2.2f);
+//
+// Finally, given a filename (or an open file or memory block--see header
+// file for details) containing image data, you can query for the "most
+// appropriate" interface to use (that is, whether the image is HDR or
+// not), using:
+//
+// stbi_is_hdr(char *filename);
+//
+// ===========================================================================
+//
+// iPhone PNG support:
+//
+// We optionally support converting iPhone-formatted PNGs (which store
+// premultiplied BGRA) back to RGB, even though they're internally encoded
+// differently. To enable this conversion, call
+// stbi_convert_iphone_png_to_rgb(1).
+//
+// Call stbi_set_unpremultiply_on_load(1) as well to force a divide per
+// pixel to remove any premultiplied alpha *only* if the image file explicitly
+// says there's premultiplied data (currently only happens in iPhone images,
+// and only if iPhone convert-to-rgb processing is on).
+//
+// ===========================================================================
+//
+// ADDITIONAL CONFIGURATION
+//
+// - You can suppress implementation of any of the decoders to reduce
+// your code footprint by #defining one or more of the following
+// symbols before creating the implementation.
+//
+// STBI_NO_JPEG
+// STBI_NO_PNG
+// STBI_NO_BMP
+// STBI_NO_PSD
+// STBI_NO_TGA
+// STBI_NO_GIF
+// STBI_NO_HDR
+// STBI_NO_PIC
+// STBI_NO_PNM (.ppm and .pgm)
+//
+// - You can request *only* certain decoders and suppress all other ones
+// (this will be more forward-compatible, as addition of new decoders
+// doesn't require you to disable them explicitly):
+//
+// STBI_ONLY_JPEG
+// STBI_ONLY_PNG
+// STBI_ONLY_BMP
+// STBI_ONLY_PSD
+// STBI_ONLY_TGA
+// STBI_ONLY_GIF
+// STBI_ONLY_HDR
+// STBI_ONLY_PIC
+// STBI_ONLY_PNM (.ppm and .pgm)
+//
+// - If you use STBI_NO_PNG (or _ONLY_ without PNG), and you still
+// want the zlib decoder to be available, #define STBI_SUPPORT_ZLIB
+//
+// - If you define STBI_MAX_DIMENSIONS, stb_image will reject images greater
+// than that size (in either width or height) without further processing.
+// This is to let programs in the wild set an upper bound to prevent
+// denial-of-service attacks on untrusted data, as one could generate a
+// valid image of gigantic dimensions and force stb_image to allocate a
+// huge block of memory and spend disproportionate time decoding it. By
+// default this is set to (1 << 24), which is 16777216, but that's still
+// very big.
+
+#ifndef STBI_NO_STDIO
+#include <stdio.h>
+#endif // STBI_NO_STDIO
+
+#define STBI_VERSION 1
+
+enum
+{
+ STBI_default = 0, // only used for desired_channels
+
+ STBI_grey = 1,
+ STBI_grey_alpha = 2,
+ STBI_rgb = 3,
+ STBI_rgb_alpha = 4
+};
+
+#include <stdlib.h>
+typedef unsigned char stbi_uc;
+typedef unsigned short stbi_us;
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#ifndef STBIDEF
+#ifdef STB_IMAGE_STATIC
+#define STBIDEF static
+#else
+#define STBIDEF extern
+#endif
+#endif
+
+//////////////////////////////////////////////////////////////////////////////
+//
+// PRIMARY API - works on images of any type
+//
+
+//
+// load image by filename, open file, or memory buffer
+//
+
+typedef struct
+{
+ int (*read) (void *user,char *data,int size); // fill 'data' with 'size' bytes. return number of bytes actually read
+ void (*skip) (void *user,int n); // skip the next 'n' bytes, or 'unget' the last -n bytes if negative
+ int (*eof) (void *user); // returns nonzero if we are at end of file/data
+} stbi_io_callbacks;
+
+////////////////////////////////////
+//
+// 8-bits-per-channel interface
+//
+
+STBIDEF stbi_uc *stbi_load_from_memory (stbi_uc const *buffer, int len , int *x, int *y, int *channels_in_file, int desired_channels);
+STBIDEF stbi_uc *stbi_load_from_callbacks(stbi_io_callbacks const *clbk , void *user, int *x, int *y, int *channels_in_file, int desired_channels);
+
+#ifndef STBI_NO_STDIO
+STBIDEF stbi_uc *stbi_load (char const *filename, int *x, int *y, int *channels_in_file, int desired_channels);
+STBIDEF stbi_uc *stbi_load_from_file (FILE *f, int *x, int *y, int *channels_in_file, int desired_channels);
+// for stbi_load_from_file, file pointer is left pointing immediately after image
+#endif
+
+#ifndef STBI_NO_GIF
+STBIDEF stbi_uc *stbi_load_gif_from_memory(stbi_uc const *buffer, int len, int **delays, int *x, int *y, int *z, int *comp, int req_comp);
+#endif
+
+#ifdef STBI_WINDOWS_UTF8
+STBIDEF int stbi_convert_wchar_to_utf8(char *buffer, size_t bufferlen, const wchar_t* input);
+#endif
+
+////////////////////////////////////
+//
+// 16-bits-per-channel interface
+//
+
+STBIDEF stbi_us *stbi_load_16_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *channels_in_file, int desired_channels);
+STBIDEF stbi_us *stbi_load_16_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *channels_in_file, int desired_channels);
+
+#ifndef STBI_NO_STDIO
+STBIDEF stbi_us *stbi_load_16 (char const *filename, int *x, int *y, int *channels_in_file, int desired_channels);
+STBIDEF stbi_us *stbi_load_from_file_16(FILE *f, int *x, int *y, int *channels_in_file, int desired_channels);
+#endif
+
+////////////////////////////////////
+//
+// float-per-channel interface
+//
+#ifndef STBI_NO_LINEAR
+ STBIDEF float *stbi_loadf_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *channels_in_file, int desired_channels);
+ STBIDEF float *stbi_loadf_from_callbacks (stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *channels_in_file, int desired_channels);
+
+ #ifndef STBI_NO_STDIO
+ STBIDEF float *stbi_loadf (char const *filename, int *x, int *y, int *channels_in_file, int desired_channels);
+ STBIDEF float *stbi_loadf_from_file (FILE *f, int *x, int *y, int *channels_in_file, int desired_channels);
+ #endif
+#endif
+
+#ifndef STBI_NO_HDR
+ STBIDEF void stbi_hdr_to_ldr_gamma(float gamma);
+ STBIDEF void stbi_hdr_to_ldr_scale(float scale);
+#endif // STBI_NO_HDR
+
+#ifndef STBI_NO_LINEAR
+ STBIDEF void stbi_ldr_to_hdr_gamma(float gamma);
+ STBIDEF void stbi_ldr_to_hdr_scale(float scale);
+#endif // STBI_NO_LINEAR
+
+// stbi_is_hdr is always defined, but always returns false if STBI_NO_HDR
+STBIDEF int stbi_is_hdr_from_callbacks(stbi_io_callbacks const *clbk, void *user);
+STBIDEF int stbi_is_hdr_from_memory(stbi_uc const *buffer, int len);
+#ifndef STBI_NO_STDIO
+STBIDEF int stbi_is_hdr (char const *filename);
+STBIDEF int stbi_is_hdr_from_file(FILE *f);
+#endif // STBI_NO_STDIO
+
+
+// get a VERY brief reason for failure
+// on most compilers (and ALL modern mainstream compilers) this is threadsafe
+STBIDEF const char *stbi_failure_reason (void);
+
+// free the loaded image -- this is just free()
+STBIDEF void stbi_image_free (void *retval_from_stbi_load);
+
+// get image dimensions & components without fully decoding
+STBIDEF int stbi_info_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp);
+STBIDEF int stbi_info_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *comp);
+STBIDEF int stbi_is_16_bit_from_memory(stbi_uc const *buffer, int len);
+STBIDEF int stbi_is_16_bit_from_callbacks(stbi_io_callbacks const *clbk, void *user);
+
+#ifndef STBI_NO_STDIO
+STBIDEF int stbi_info (char const *filename, int *x, int *y, int *comp);
+STBIDEF int stbi_info_from_file (FILE *f, int *x, int *y, int *comp);
+STBIDEF int stbi_is_16_bit (char const *filename);
+STBIDEF int stbi_is_16_bit_from_file(FILE *f);
+#endif
+
+
+
+// for image formats that explicitly notate that they have premultiplied alpha,
+// we just return the colors as stored in the file. set this flag to force
+// unpremultiplication. results are undefined if the unpremultiply overflow.
+STBIDEF void stbi_set_unpremultiply_on_load(int flag_true_if_should_unpremultiply);
+
+// indicate whether we should process iphone images back to canonical format,
+// or just pass them through "as-is"
+STBIDEF void stbi_convert_iphone_png_to_rgb(int flag_true_if_should_convert);
+
+// flip the image vertically, so the first pixel in the output array is the bottom left
+STBIDEF void stbi_set_flip_vertically_on_load(int flag_true_if_should_flip);
+
+// as above, but only applies to images loaded on the thread that calls the function
+// this function is only available if your compiler supports thread-local variables;
+// calling it will fail to link if your compiler doesn't
+STBIDEF void stbi_set_unpremultiply_on_load_thread(int flag_true_if_should_unpremultiply);
+STBIDEF void stbi_convert_iphone_png_to_rgb_thread(int flag_true_if_should_convert);
+STBIDEF void stbi_set_flip_vertically_on_load_thread(int flag_true_if_should_flip);
+
+// ZLIB client - used by PNG, available for other purposes
+
+STBIDEF char *stbi_zlib_decode_malloc_guesssize(const char *buffer, int len, int initial_size, int *outlen);
+STBIDEF char *stbi_zlib_decode_malloc_guesssize_headerflag(const char *buffer, int len, int initial_size, int *outlen, int parse_header);
+STBIDEF char *stbi_zlib_decode_malloc(const char *buffer, int len, int *outlen);
+STBIDEF int stbi_zlib_decode_buffer(char *obuffer, int olen, const char *ibuffer, int ilen);
+
+STBIDEF char *stbi_zlib_decode_noheader_malloc(const char *buffer, int len, int *outlen);
+STBIDEF int stbi_zlib_decode_noheader_buffer(char *obuffer, int olen, const char *ibuffer, int ilen);
+
+
+#ifdef __cplusplus
+}
+#endif
+
+//
+//
+//// end header file /////////////////////////////////////////////////////
+#endif // STBI_INCLUDE_STB_IMAGE_H
+
+#ifdef STB_IMAGE_IMPLEMENTATION
+
+#if defined(STBI_ONLY_JPEG) || defined(STBI_ONLY_PNG) || defined(STBI_ONLY_BMP) \
+ || defined(STBI_ONLY_TGA) || defined(STBI_ONLY_GIF) || defined(STBI_ONLY_PSD) \
+ || defined(STBI_ONLY_HDR) || defined(STBI_ONLY_PIC) || defined(STBI_ONLY_PNM) \
+ || defined(STBI_ONLY_ZLIB)
+ #ifndef STBI_ONLY_JPEG
+ #define STBI_NO_JPEG
+ #endif
+ #ifndef STBI_ONLY_PNG
+ #define STBI_NO_PNG
+ #endif
+ #ifndef STBI_ONLY_BMP
+ #define STBI_NO_BMP
+ #endif
+ #ifndef STBI_ONLY_PSD
+ #define STBI_NO_PSD
+ #endif
+ #ifndef STBI_ONLY_TGA
+ #define STBI_NO_TGA
+ #endif
+ #ifndef STBI_ONLY_GIF
+ #define STBI_NO_GIF
+ #endif
+ #ifndef STBI_ONLY_HDR
+ #define STBI_NO_HDR
+ #endif
+ #ifndef STBI_ONLY_PIC
+ #define STBI_NO_PIC
+ #endif
+ #ifndef STBI_ONLY_PNM
+ #define STBI_NO_PNM
+ #endif
+#endif
+
+#if defined(STBI_NO_PNG) && !defined(STBI_SUPPORT_ZLIB) && !defined(STBI_NO_ZLIB)
+#define STBI_NO_ZLIB
+#endif
+
+
+#include <stdarg.h>
+#include <stddef.h> // ptrdiff_t on osx
+#include <stdlib.h>
+#include <string.h>
+#include <limits.h>
+
+#if !defined(STBI_NO_LINEAR) || !defined(STBI_NO_HDR)
+#include <math.h> // ldexp, pow
+#endif
+
+#ifndef STBI_NO_STDIO
+#include <stdio.h>
+#endif
+
+#ifndef STBI_ASSERT
+#include <assert.h>
+#define STBI_ASSERT(x) assert(x)
+#endif
+
+#ifdef __cplusplus
+#define STBI_EXTERN extern "C"
+#else
+#define STBI_EXTERN extern
+#endif
+
+
+#ifndef _MSC_VER
+ #ifdef __cplusplus
+ #define stbi_inline inline
+ #else
+ #define stbi_inline
+ #endif
+#else
+ #define stbi_inline __forceinline
+#endif
+
+#ifndef STBI_NO_THREAD_LOCALS
+ #if defined(__cplusplus) && __cplusplus >= 201103L
+ #define STBI_THREAD_LOCAL thread_local
+ #elif defined(__GNUC__) && __GNUC__ < 5
+ #define STBI_THREAD_LOCAL __thread
+ #elif defined(_MSC_VER)
+ #define STBI_THREAD_LOCAL __declspec(thread)
+ #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L && !defined(__STDC_NO_THREADS__)
+ #define STBI_THREAD_LOCAL _Thread_local
+ #endif
+
+ #ifndef STBI_THREAD_LOCAL
+ #if defined(__GNUC__)
+ #define STBI_THREAD_LOCAL __thread
+ #endif
+ #endif
+#endif
+
+#if defined(_MSC_VER) || defined(__SYMBIAN32__)
+typedef unsigned short stbi__uint16;
+typedef signed short stbi__int16;
+typedef unsigned int stbi__uint32;
+typedef signed int stbi__int32;
+#else
+#include <stdint.h>
+typedef uint16_t stbi__uint16;
+typedef int16_t stbi__int16;
+typedef uint32_t stbi__uint32;
+typedef int32_t stbi__int32;
+#endif
+
+// should produce compiler error if size is wrong
+typedef unsigned char validate_uint32[sizeof(stbi__uint32)==4 ? 1 : -1];
+
+#ifdef _MSC_VER
+#define STBI_NOTUSED(v) (void)(v)
+#else
+#define STBI_NOTUSED(v) (void)sizeof(v)
+#endif
+
+#ifdef _MSC_VER
+#define STBI_HAS_LROTL
+#endif
+
+#ifdef STBI_HAS_LROTL
+ #define stbi_lrot(x,y) _lrotl(x,y)
+#else
+ #define stbi_lrot(x,y) (((x) << (y)) | ((x) >> (-(y) & 31)))
+#endif
+
+#if defined(STBI_MALLOC) && defined(STBI_FREE) && (defined(STBI_REALLOC) || defined(STBI_REALLOC_SIZED))
+// ok
+#elif !defined(STBI_MALLOC) && !defined(STBI_FREE) && !defined(STBI_REALLOC) && !defined(STBI_REALLOC_SIZED)
+// ok
+#else
+#error "Must define all or none of STBI_MALLOC, STBI_FREE, and STBI_REALLOC (or STBI_REALLOC_SIZED)."
+#endif
+
+#ifndef STBI_MALLOC
+#define STBI_MALLOC(sz) malloc(sz)
+#define STBI_REALLOC(p,newsz) realloc(p,newsz)
+#define STBI_FREE(p) free(p)
+#endif
+
+#ifndef STBI_REALLOC_SIZED
+#define STBI_REALLOC_SIZED(p,oldsz,newsz) STBI_REALLOC(p,newsz)
+#endif
+
+// x86/x64 detection
+#if defined(__x86_64__) || defined(_M_X64)
+#define STBI__X64_TARGET
+#elif defined(__i386) || defined(_M_IX86)
+#define STBI__X86_TARGET
+#endif
+
+#if defined(__GNUC__) && defined(STBI__X86_TARGET) && !defined(__SSE2__) && !defined(STBI_NO_SIMD)
+// gcc doesn't support sse2 intrinsics unless you compile with -msse2,
+// which in turn means it gets to use SSE2 everywhere. This is unfortunate,
+// but previous attempts to provide the SSE2 functions with runtime
+// detection caused numerous issues. The way architecture extensions are
+// exposed in GCC/Clang is, sadly, not really suited for one-file libs.
+// New behavior: if compiled with -msse2, we use SSE2 without any
+// detection; if not, we don't use it at all.
+#define STBI_NO_SIMD
+#endif
+
+#if defined(__MINGW32__) && defined(STBI__X86_TARGET) && !defined(STBI_MINGW_ENABLE_SSE2) && !defined(STBI_NO_SIMD)
+// Note that __MINGW32__ doesn't actually mean 32-bit, so we have to avoid STBI__X64_TARGET
+//
+// 32-bit MinGW wants ESP to be 16-byte aligned, but this is not in the
+// Windows ABI and VC++ as well as Windows DLLs don't maintain that invariant.
+// As a result, enabling SSE2 on 32-bit MinGW is dangerous when not
+// simultaneously enabling "-mstackrealign".
+//
+// See https://github.com/nothings/stb/issues/81 for more information.
+//
+// So default to no SSE2 on 32-bit MinGW. If you've read this far and added
+// -mstackrealign to your build settings, feel free to #define STBI_MINGW_ENABLE_SSE2.
+#define STBI_NO_SIMD
+#endif
+
+#if !defined(STBI_NO_SIMD) && (defined(STBI__X86_TARGET) || defined(STBI__X64_TARGET))
+#define STBI_SSE2
+#include <emmintrin.h>
+
+#ifdef _MSC_VER
+
+#if _MSC_VER >= 1400 // not VC6
+#include <intrin.h> // __cpuid
+static int stbi__cpuid3(void)
+{
+ int info[4];
+ __cpuid(info,1);
+ return info[3];
+}
+#else
+static int stbi__cpuid3(void)
+{
+ int res;
+ __asm {
+ mov eax,1
+ cpuid
+ mov res,edx
+ }
+ return res;
+}
+#endif
+
+#define STBI_SIMD_ALIGN(type, name) __declspec(align(16)) type name
+
+#if !defined(STBI_NO_JPEG) && defined(STBI_SSE2)
+static int stbi__sse2_available(void)
+{
+ int info3 = stbi__cpuid3();
+ return ((info3 >> 26) & 1) != 0;
+}
+#endif
+
+#else // assume GCC-style if not VC++
+#define STBI_SIMD_ALIGN(type, name) type name __attribute__((aligned(16)))
+
+#if !defined(STBI_NO_JPEG) && defined(STBI_SSE2)
+static int stbi__sse2_available(void)
+{
+ // If we're even attempting to compile this on GCC/Clang, that means
+ // -msse2 is on, which means the compiler is allowed to use SSE2
+ // instructions at will, and so are we.
+ return 1;
+}
+#endif
+
+#endif
+#endif
+
+// ARM NEON
+#if defined(STBI_NO_SIMD) && defined(STBI_NEON)
+#undef STBI_NEON
+#endif
+
+#ifdef STBI_NEON
+#include <arm_neon.h>
+#ifdef _MSC_VER
+#define STBI_SIMD_ALIGN(type, name) __declspec(align(16)) type name
+#else
+#define STBI_SIMD_ALIGN(type, name) type name __attribute__((aligned(16)))
+#endif
+#endif
+
+#ifndef STBI_SIMD_ALIGN
+#define STBI_SIMD_ALIGN(type, name) type name
+#endif
+
+#ifndef STBI_MAX_DIMENSIONS
+#define STBI_MAX_DIMENSIONS (1 << 24)
+#endif
+
+///////////////////////////////////////////////
+//
+// stbi__context struct and start_xxx functions
+
+// stbi__context structure is our basic context used by all images, so it
+// contains all the IO context, plus some basic image information
+typedef struct
+{
+ stbi__uint32 img_x, img_y;
+ int img_n, img_out_n;
+
+ stbi_io_callbacks io;
+ void *io_user_data;
+
+ int read_from_callbacks;
+ int buflen;
+ stbi_uc buffer_start[128];
+ int callback_already_read;
+
+ stbi_uc *img_buffer, *img_buffer_end;
+ stbi_uc *img_buffer_original, *img_buffer_original_end;
+} stbi__context;
+
+
+static void stbi__refill_buffer(stbi__context *s);
+
+// initialize a memory-decode context
+static void stbi__start_mem(stbi__context *s, stbi_uc const *buffer, int len)
+{
+ s->io.read = NULL;
+ s->read_from_callbacks = 0;
+ s->callback_already_read = 0;
+ s->img_buffer = s->img_buffer_original = (stbi_uc *) buffer;
+ s->img_buffer_end = s->img_buffer_original_end = (stbi_uc *) buffer+len;
+}
+
+// initialize a callback-based context
+static void stbi__start_callbacks(stbi__context *s, stbi_io_callbacks *c, void *user)
+{
+ s->io = *c;
+ s->io_user_data = user;
+ s->buflen = sizeof(s->buffer_start);
+ s->read_from_callbacks = 1;
+ s->callback_already_read = 0;
+ s->img_buffer = s->img_buffer_original = s->buffer_start;
+ stbi__refill_buffer(s);
+ s->img_buffer_original_end = s->img_buffer_end;
+}
+
+#ifndef STBI_NO_STDIO
+
+static int stbi__stdio_read(void *user, char *data, int size)
+{
+ return (int) fread(data,1,size,(FILE*) user);
+}
+
+static void stbi__stdio_skip(void *user, int n)
+{
+ int ch;
+ fseek((FILE*) user, n, SEEK_CUR);
+ ch = fgetc((FILE*) user); /* have to read a byte to reset feof()'s flag */
+ if (ch != EOF) {
+ ungetc(ch, (FILE *) user); /* push byte back onto stream if valid. */
+ }
+}
+
+static int stbi__stdio_eof(void *user)
+{
+ return feof((FILE*) user) || ferror((FILE *) user);
+}
+
+static stbi_io_callbacks stbi__stdio_callbacks =
+{
+ stbi__stdio_read,
+ stbi__stdio_skip,
+ stbi__stdio_eof,
+};
+
+static void stbi__start_file(stbi__context *s, FILE *f)
+{
+ stbi__start_callbacks(s, &stbi__stdio_callbacks, (void *) f);
+}
+
+//static void stop_file(stbi__context *s) { }
+
+#endif // !STBI_NO_STDIO
+
+static void stbi__rewind(stbi__context *s)
+{
+ // conceptually rewind SHOULD rewind to the beginning of the stream,
+ // but we just rewind to the beginning of the initial buffer, because
+ // we only use it after doing 'test', which only ever looks at at most 92 bytes
+ s->img_buffer = s->img_buffer_original;
+ s->img_buffer_end = s->img_buffer_original_end;
+}
+
+enum
+{
+ STBI_ORDER_RGB,
+ STBI_ORDER_BGR
+};
+
+typedef struct
+{
+ int bits_per_channel;
+ int num_channels;
+ int channel_order;
+} stbi__result_info;
+
+#ifndef STBI_NO_JPEG
+static int stbi__jpeg_test(stbi__context *s);
+static void *stbi__jpeg_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri);
+static int stbi__jpeg_info(stbi__context *s, int *x, int *y, int *comp);
+#endif
+
+#ifndef STBI_NO_PNG
+static int stbi__png_test(stbi__context *s);
+static void *stbi__png_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri);
+static int stbi__png_info(stbi__context *s, int *x, int *y, int *comp);
+static int stbi__png_is16(stbi__context *s);
+#endif
+
+#ifndef STBI_NO_BMP
+static int stbi__bmp_test(stbi__context *s);
+static void *stbi__bmp_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri);
+static int stbi__bmp_info(stbi__context *s, int *x, int *y, int *comp);
+#endif
+
+#ifndef STBI_NO_TGA
+static int stbi__tga_test(stbi__context *s);
+static void *stbi__tga_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri);
+static int stbi__tga_info(stbi__context *s, int *x, int *y, int *comp);
+#endif
+
+#ifndef STBI_NO_PSD
+static int stbi__psd_test(stbi__context *s);
+static void *stbi__psd_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri, int bpc);
+static int stbi__psd_info(stbi__context *s, int *x, int *y, int *comp);
+static int stbi__psd_is16(stbi__context *s);
+#endif
+
+#ifndef STBI_NO_HDR
+static int stbi__hdr_test(stbi__context *s);
+static float *stbi__hdr_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri);
+static int stbi__hdr_info(stbi__context *s, int *x, int *y, int *comp);
+#endif
+
+#ifndef STBI_NO_PIC
+static int stbi__pic_test(stbi__context *s);
+static void *stbi__pic_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri);
+static int stbi__pic_info(stbi__context *s, int *x, int *y, int *comp);
+#endif
+
+#ifndef STBI_NO_GIF
+static int stbi__gif_test(stbi__context *s);
+static void *stbi__gif_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri);
+static void *stbi__load_gif_main(stbi__context *s, int **delays, int *x, int *y, int *z, int *comp, int req_comp);
+static int stbi__gif_info(stbi__context *s, int *x, int *y, int *comp);
+#endif
+
+#ifndef STBI_NO_PNM
+static int stbi__pnm_test(stbi__context *s);
+static void *stbi__pnm_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri);
+static int stbi__pnm_info(stbi__context *s, int *x, int *y, int *comp);
+static int stbi__pnm_is16(stbi__context *s);
+#endif
+
+static
+#ifdef STBI_THREAD_LOCAL
+STBI_THREAD_LOCAL
+#endif
+const char *stbi__g_failure_reason;
+
+STBIDEF const char *stbi_failure_reason(void)
+{
+ return stbi__g_failure_reason;
+}
+
+#ifndef STBI_NO_FAILURE_STRINGS
+static int stbi__err(const char *str)
+{
+ stbi__g_failure_reason = str;
+ return 0;
+}
+#endif
+
+static void *stbi__malloc(size_t size)
+{
+ return STBI_MALLOC(size);
+}
+
+// stb_image uses ints pervasively, including for offset calculations.
+// therefore the largest decoded image size we can support with the
+// current code, even on 64-bit targets, is INT_MAX. this is not a
+// significant limitation for the intended use case.
+//
+// we do, however, need to make sure our size calculations don't
+// overflow. hence a few helper functions for size calculations that
+// multiply integers together, making sure that they're non-negative
+// and no overflow occurs.
+
+// return 1 if the sum is valid, 0 on overflow.
+// negative terms are considered invalid.
+static int stbi__addsizes_valid(int a, int b)
+{
+ if (b < 0) return 0;
+ // now 0 <= b <= INT_MAX, hence also
+ // 0 <= INT_MAX - b <= INTMAX.
+ // And "a + b <= INT_MAX" (which might overflow) is the
+ // same as a <= INT_MAX - b (no overflow)
+ return a <= INT_MAX - b;
+}
+
+// returns 1 if the product is valid, 0 on overflow.
+// negative factors are considered invalid.
+static int stbi__mul2sizes_valid(int a, int b)
+{
+ if (a < 0 || b < 0) return 0;
+ if (b == 0) return 1; // mul-by-0 is always safe
+ // portable way to check for no overflows in a*b
+ return a <= INT_MAX/b;
+}
+
+#if !defined(STBI_NO_JPEG) || !defined(STBI_NO_PNG) || !defined(STBI_NO_TGA) || !defined(STBI_NO_HDR)
+// returns 1 if "a*b + add" has no negative terms/factors and doesn't overflow
+static int stbi__mad2sizes_valid(int a, int b, int add)
+{
+ return stbi__mul2sizes_valid(a, b) && stbi__addsizes_valid(a*b, add);
+}
+#endif
+
+// returns 1 if "a*b*c + add" has no negative terms/factors and doesn't overflow
+static int stbi__mad3sizes_valid(int a, int b, int c, int add)
+{
+ return stbi__mul2sizes_valid(a, b) && stbi__mul2sizes_valid(a*b, c) &&
+ stbi__addsizes_valid(a*b*c, add);
+}
+
+// returns 1 if "a*b*c*d + add" has no negative terms/factors and doesn't overflow
+#if !defined(STBI_NO_LINEAR) || !defined(STBI_NO_HDR) || !defined(STBI_NO_PNM)
+static int stbi__mad4sizes_valid(int a, int b, int c, int d, int add)
+{
+ return stbi__mul2sizes_valid(a, b) && stbi__mul2sizes_valid(a*b, c) &&
+ stbi__mul2sizes_valid(a*b*c, d) && stbi__addsizes_valid(a*b*c*d, add);
+}
+#endif
+
+#if !defined(STBI_NO_JPEG) || !defined(STBI_NO_PNG) || !defined(STBI_NO_TGA) || !defined(STBI_NO_HDR)
+// mallocs with size overflow checking
+static void *stbi__malloc_mad2(int a, int b, int add)
+{
+ if (!stbi__mad2sizes_valid(a, b, add)) return NULL;
+ return stbi__malloc(a*b + add);
+}
+#endif
+
+static void *stbi__malloc_mad3(int a, int b, int c, int add)
+{
+ if (!stbi__mad3sizes_valid(a, b, c, add)) return NULL;
+ return stbi__malloc(a*b*c + add);
+}
+
+#if !defined(STBI_NO_LINEAR) || !defined(STBI_NO_HDR) || !defined(STBI_NO_PNM)
+static void *stbi__malloc_mad4(int a, int b, int c, int d, int add)
+{
+ if (!stbi__mad4sizes_valid(a, b, c, d, add)) return NULL;
+ return stbi__malloc(a*b*c*d + add);
+}
+#endif
+
+// returns 1 if the sum of two signed ints is valid (between -2^31 and 2^31-1 inclusive), 0 on overflow.
+static int stbi__addints_valid(int a, int b)
+{
+ if ((a >= 0) != (b >= 0)) return 1; // a and b have different signs, so no overflow
+ if (a < 0 && b < 0) return a >= INT_MIN - b; // same as a + b >= INT_MIN; INT_MIN - b cannot overflow since b < 0.
+ return a <= INT_MAX - b;
+}
+
+// returns 1 if the product of two ints fits in a signed short, 0 on overflow.
+static int stbi__mul2shorts_valid(int a, int b)
+{
+ if (b == 0 || b == -1) return 1; // multiplication by 0 is always 0; check for -1 so SHRT_MIN/b doesn't overflow
+ if ((a >= 0) == (b >= 0)) return a <= SHRT_MAX/b; // product is positive, so similar to mul2sizes_valid
+ if (b < 0) return a <= SHRT_MIN / b; // same as a * b >= SHRT_MIN
+ return a >= SHRT_MIN / b;
+}
+
+// stbi__err - error
+// stbi__errpf - error returning pointer to float
+// stbi__errpuc - error returning pointer to unsigned char
+
+#ifdef STBI_NO_FAILURE_STRINGS
+ #define stbi__err(x,y) 0
+#elif defined(STBI_FAILURE_USERMSG)
+ #define stbi__err(x,y) stbi__err(y)
+#else
+ #define stbi__err(x,y) stbi__err(x)
+#endif
+
+#define stbi__errpf(x,y) ((float *)(size_t) (stbi__err(x,y)?NULL:NULL))
+#define stbi__errpuc(x,y) ((unsigned char *)(size_t) (stbi__err(x,y)?NULL:NULL))
+
+STBIDEF void stbi_image_free(void *retval_from_stbi_load)
+{
+ STBI_FREE(retval_from_stbi_load);
+}
+
+#ifndef STBI_NO_LINEAR
+static float *stbi__ldr_to_hdr(stbi_uc *data, int x, int y, int comp);
+#endif
+
+#ifndef STBI_NO_HDR
+static stbi_uc *stbi__hdr_to_ldr(float *data, int x, int y, int comp);
+#endif
+
+static int stbi__vertically_flip_on_load_global = 0;
+
+STBIDEF void stbi_set_flip_vertically_on_load(int flag_true_if_should_flip)
+{
+ stbi__vertically_flip_on_load_global = flag_true_if_should_flip;
+}
+
+#ifndef STBI_THREAD_LOCAL
+#define stbi__vertically_flip_on_load stbi__vertically_flip_on_load_global
+#else
+static STBI_THREAD_LOCAL int stbi__vertically_flip_on_load_local, stbi__vertically_flip_on_load_set;
+
+STBIDEF void stbi_set_flip_vertically_on_load_thread(int flag_true_if_should_flip)
+{
+ stbi__vertically_flip_on_load_local = flag_true_if_should_flip;
+ stbi__vertically_flip_on_load_set = 1;
+}
+
+#define stbi__vertically_flip_on_load (stbi__vertically_flip_on_load_set \
+ ? stbi__vertically_flip_on_load_local \
+ : stbi__vertically_flip_on_load_global)
+#endif // STBI_THREAD_LOCAL
+
+static void *stbi__load_main(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri, int bpc)
+{
+ memset(ri, 0, sizeof(*ri)); // make sure it's initialized if we add new fields
+ ri->bits_per_channel = 8; // default is 8 so most paths don't have to be changed
+ ri->channel_order = STBI_ORDER_RGB; // all current input & output are this, but this is here so we can add BGR order
+ ri->num_channels = 0;
+
+ // test the formats with a very explicit header first (at least a FOURCC
+ // or distinctive magic number first)
+ #ifndef STBI_NO_PNG
+ if (stbi__png_test(s)) return stbi__png_load(s,x,y,comp,req_comp, ri);
+ #endif
+ #ifndef STBI_NO_BMP
+ if (stbi__bmp_test(s)) return stbi__bmp_load(s,x,y,comp,req_comp, ri);
+ #endif
+ #ifndef STBI_NO_GIF
+ if (stbi__gif_test(s)) return stbi__gif_load(s,x,y,comp,req_comp, ri);
+ #endif
+ #ifndef STBI_NO_PSD
+ if (stbi__psd_test(s)) return stbi__psd_load(s,x,y,comp,req_comp, ri, bpc);
+ #else
+ STBI_NOTUSED(bpc);
+ #endif
+ #ifndef STBI_NO_PIC
+ if (stbi__pic_test(s)) return stbi__pic_load(s,x,y,comp,req_comp, ri);
+ #endif
+
+ // then the formats that can end up attempting to load with just 1 or 2
+ // bytes matching expectations; these are prone to false positives, so
+ // try them later
+ #ifndef STBI_NO_JPEG
+ if (stbi__jpeg_test(s)) return stbi__jpeg_load(s,x,y,comp,req_comp, ri);
+ #endif
+ #ifndef STBI_NO_PNM
+ if (stbi__pnm_test(s)) return stbi__pnm_load(s,x,y,comp,req_comp, ri);
+ #endif
+
+ #ifndef STBI_NO_HDR
+ if (stbi__hdr_test(s)) {
+ float *hdr = stbi__hdr_load(s, x,y,comp,req_comp, ri);
+ return stbi__hdr_to_ldr(hdr, *x, *y, req_comp ? req_comp : *comp);
+ }
+ #endif
+
+ #ifndef STBI_NO_TGA
+ // test tga last because it's a crappy test!
+ if (stbi__tga_test(s))
+ return stbi__tga_load(s,x,y,comp,req_comp, ri);
+ #endif
+
+ return stbi__errpuc("unknown image type", "Image not of any known type, or corrupt");
+}
+
+static stbi_uc *stbi__convert_16_to_8(stbi__uint16 *orig, int w, int h, int channels)
+{
+ int i;
+ int img_len = w * h * channels;
+ stbi_uc *reduced;
+
+ reduced = (stbi_uc *) stbi__malloc(img_len);
+ if (reduced == NULL) return stbi__errpuc("outofmem", "Out of memory");
+
+ for (i = 0; i < img_len; ++i)
+ reduced[i] = (stbi_uc)((orig[i] >> 8) & 0xFF); // top half of each byte is sufficient approx of 16->8 bit scaling
+
+ STBI_FREE(orig);
+ return reduced;
+}
+
+static stbi__uint16 *stbi__convert_8_to_16(stbi_uc *orig, int w, int h, int channels)
+{
+ int i;
+ int img_len = w * h * channels;
+ stbi__uint16 *enlarged;
+
+ enlarged = (stbi__uint16 *) stbi__malloc(img_len*2);
+ if (enlarged == NULL) return (stbi__uint16 *) stbi__errpuc("outofmem", "Out of memory");
+
+ for (i = 0; i < img_len; ++i)
+ enlarged[i] = (stbi__uint16)((orig[i] << 8) + orig[i]); // replicate to high and low byte, maps 0->0, 255->0xffff
+
+ STBI_FREE(orig);
+ return enlarged;
+}
+
+static void stbi__vertical_flip(void *image, int w, int h, int bytes_per_pixel)
+{
+ int row;
+ size_t bytes_per_row = (size_t)w * bytes_per_pixel;
+ stbi_uc temp[2048];
+ stbi_uc *bytes = (stbi_uc *)image;
+
+ for (row = 0; row < (h>>1); row++) {
+ stbi_uc *row0 = bytes + row*bytes_per_row;
+ stbi_uc *row1 = bytes + (h - row - 1)*bytes_per_row;
+ // swap row0 with row1
+ size_t bytes_left = bytes_per_row;
+ while (bytes_left) {
+ size_t bytes_copy = (bytes_left < sizeof(temp)) ? bytes_left : sizeof(temp);
+ memcpy(temp, row0, bytes_copy);
+ memcpy(row0, row1, bytes_copy);
+ memcpy(row1, temp, bytes_copy);
+ row0 += bytes_copy;
+ row1 += bytes_copy;
+ bytes_left -= bytes_copy;
+ }
+ }
+}
+
+#ifndef STBI_NO_GIF
+static void stbi__vertical_flip_slices(void *image, int w, int h, int z, int bytes_per_pixel)
+{
+ int slice;
+ int slice_size = w * h * bytes_per_pixel;
+
+ stbi_uc *bytes = (stbi_uc *)image;
+ for (slice = 0; slice < z; ++slice) {
+ stbi__vertical_flip(bytes, w, h, bytes_per_pixel);
+ bytes += slice_size;
+ }
+}
+#endif
+
+static unsigned char *stbi__load_and_postprocess_8bit(stbi__context *s, int *x, int *y, int *comp, int req_comp)
+{
+ stbi__result_info ri;
+ void *result = stbi__load_main(s, x, y, comp, req_comp, &ri, 8);
+
+ if (result == NULL)
+ return NULL;
+
+ // it is the responsibility of the loaders to make sure we get either 8 or 16 bit.
+ STBI_ASSERT(ri.bits_per_channel == 8 || ri.bits_per_channel == 16);
+
+ if (ri.bits_per_channel != 8) {
+ result = stbi__convert_16_to_8((stbi__uint16 *) result, *x, *y, req_comp == 0 ? *comp : req_comp);
+ ri.bits_per_channel = 8;
+ }
+
+ // @TODO: move stbi__convert_format to here
+
+ if (stbi__vertically_flip_on_load) {
+ int channels = req_comp ? req_comp : *comp;
+ stbi__vertical_flip(result, *x, *y, channels * sizeof(stbi_uc));
+ }
+
+ return (unsigned char *) result;
+}
+
+static stbi__uint16 *stbi__load_and_postprocess_16bit(stbi__context *s, int *x, int *y, int *comp, int req_comp)
+{
+ stbi__result_info ri;
+ void *result = stbi__load_main(s, x, y, comp, req_comp, &ri, 16);
+
+ if (result == NULL)
+ return NULL;
+
+ // it is the responsibility of the loaders to make sure we get either 8 or 16 bit.
+ STBI_ASSERT(ri.bits_per_channel == 8 || ri.bits_per_channel == 16);
+
+ if (ri.bits_per_channel != 16) {
+ result = stbi__convert_8_to_16((stbi_uc *) result, *x, *y, req_comp == 0 ? *comp : req_comp);
+ ri.bits_per_channel = 16;
+ }
+
+ // @TODO: move stbi__convert_format16 to here
+ // @TODO: special case RGB-to-Y (and RGBA-to-YA) for 8-bit-to-16-bit case to keep more precision
+
+ if (stbi__vertically_flip_on_load) {
+ int channels = req_comp ? req_comp : *comp;
+ stbi__vertical_flip(result, *x, *y, channels * sizeof(stbi__uint16));
+ }
+
+ return (stbi__uint16 *) result;
+}
+
+#if !defined(STBI_NO_HDR) && !defined(STBI_NO_LINEAR)
+static void stbi__float_postprocess(float *result, int *x, int *y, int *comp, int req_comp)
+{
+ if (stbi__vertically_flip_on_load && result != NULL) {
+ int channels = req_comp ? req_comp : *comp;
+ stbi__vertical_flip(result, *x, *y, channels * sizeof(float));
+ }
+}
+#endif
+
+#ifndef STBI_NO_STDIO
+
+#if defined(_WIN32) && defined(STBI_WINDOWS_UTF8)
+STBI_EXTERN __declspec(dllimport) int __stdcall MultiByteToWideChar(unsigned int cp, unsigned long flags, const char *str, int cbmb, wchar_t *widestr, int cchwide);
+STBI_EXTERN __declspec(dllimport) int __stdcall WideCharToMultiByte(unsigned int cp, unsigned long flags, const wchar_t *widestr, int cchwide, char *str, int cbmb, const char *defchar, int *used_default);
+#endif
+
+#if defined(_WIN32) && defined(STBI_WINDOWS_UTF8)
+STBIDEF int stbi_convert_wchar_to_utf8(char *buffer, size_t bufferlen, const wchar_t* input)
+{
+ return WideCharToMultiByte(65001 /* UTF8 */, 0, input, -1, buffer, (int) bufferlen, NULL, NULL);
+}
+#endif
+
+static FILE *stbi__fopen(char const *filename, char const *mode)
+{
+ FILE *f;
+#if defined(_WIN32) && defined(STBI_WINDOWS_UTF8)
+ wchar_t wMode[64];
+ wchar_t wFilename[1024];
+ if (0 == MultiByteToWideChar(65001 /* UTF8 */, 0, filename, -1, wFilename, sizeof(wFilename)/sizeof(*wFilename)))
+ return 0;
+
+ if (0 == MultiByteToWideChar(65001 /* UTF8 */, 0, mode, -1, wMode, sizeof(wMode)/sizeof(*wMode)))
+ return 0;
+
+#if defined(_MSC_VER) && _MSC_VER >= 1400
+ if (0 != _wfopen_s(&f, wFilename, wMode))
+ f = 0;
+#else
+ f = _wfopen(wFilename, wMode);
+#endif
+
+#elif defined(_MSC_VER) && _MSC_VER >= 1400
+ if (0 != fopen_s(&f, filename, mode))
+ f=0;
+#else
+ f = fopen(filename, mode);
+#endif
+ return f;
+}
+
+
+STBIDEF stbi_uc *stbi_load(char const *filename, int *x, int *y, int *comp, int req_comp)
+{
+ FILE *f = stbi__fopen(filename, "rb");
+ unsigned char *result;
+ if (!f) return stbi__errpuc("can't fopen", "Unable to open file");
+ result = stbi_load_from_file(f,x,y,comp,req_comp);
+ fclose(f);
+ return result;
+}
+
+STBIDEF stbi_uc *stbi_load_from_file(FILE *f, int *x, int *y, int *comp, int req_comp)
+{
+ unsigned char *result;
+ stbi__context s;
+ stbi__start_file(&s,f);
+ result = stbi__load_and_postprocess_8bit(&s,x,y,comp,req_comp);
+ if (result) {
+ // need to 'unget' all the characters in the IO buffer
+ fseek(f, - (int) (s.img_buffer_end - s.img_buffer), SEEK_CUR);
+ }
+ return result;
+}
+
+STBIDEF stbi__uint16 *stbi_load_from_file_16(FILE *f, int *x, int *y, int *comp, int req_comp)
+{
+ stbi__uint16 *result;
+ stbi__context s;
+ stbi__start_file(&s,f);
+ result = stbi__load_and_postprocess_16bit(&s,x,y,comp,req_comp);
+ if (result) {
+ // need to 'unget' all the characters in the IO buffer
+ fseek(f, - (int) (s.img_buffer_end - s.img_buffer), SEEK_CUR);
+ }
+ return result;
+}
+
+STBIDEF stbi_us *stbi_load_16(char const *filename, int *x, int *y, int *comp, int req_comp)
+{
+ FILE *f = stbi__fopen(filename, "rb");
+ stbi__uint16 *result;
+ if (!f) return (stbi_us *) stbi__errpuc("can't fopen", "Unable to open file");
+ result = stbi_load_from_file_16(f,x,y,comp,req_comp);
+ fclose(f);
+ return result;
+}
+
+
+#endif //!STBI_NO_STDIO
+
+STBIDEF stbi_us *stbi_load_16_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *channels_in_file, int desired_channels)
+{
+ stbi__context s;
+ stbi__start_mem(&s,buffer,len);
+ return stbi__load_and_postprocess_16bit(&s,x,y,channels_in_file,desired_channels);
+}
+
+STBIDEF stbi_us *stbi_load_16_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *channels_in_file, int desired_channels)
+{
+ stbi__context s;
+ stbi__start_callbacks(&s, (stbi_io_callbacks *)clbk, user);
+ return stbi__load_and_postprocess_16bit(&s,x,y,channels_in_file,desired_channels);
+}
+
+STBIDEF stbi_uc *stbi_load_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp)
+{
+ stbi__context s;
+ stbi__start_mem(&s,buffer,len);
+ return stbi__load_and_postprocess_8bit(&s,x,y,comp,req_comp);
+}
+
+STBIDEF stbi_uc *stbi_load_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *comp, int req_comp)
+{
+ stbi__context s;
+ stbi__start_callbacks(&s, (stbi_io_callbacks *) clbk, user);
+ return stbi__load_and_postprocess_8bit(&s,x,y,comp,req_comp);
+}
+
+#ifndef STBI_NO_GIF
+STBIDEF stbi_uc *stbi_load_gif_from_memory(stbi_uc const *buffer, int len, int **delays, int *x, int *y, int *z, int *comp, int req_comp)
+{
+ unsigned char *result;
+ stbi__context s;
+ stbi__start_mem(&s,buffer,len);
+
+ result = (unsigned char*) stbi__load_gif_main(&s, delays, x, y, z, comp, req_comp);
+ if (stbi__vertically_flip_on_load) {
+ stbi__vertical_flip_slices( result, *x, *y, *z, *comp );
+ }
+
+ return result;
+}
+#endif
+
+#ifndef STBI_NO_LINEAR
+static float *stbi__loadf_main(stbi__context *s, int *x, int *y, int *comp, int req_comp)
+{
+ unsigned char *data;
+ #ifndef STBI_NO_HDR
+ if (stbi__hdr_test(s)) {
+ stbi__result_info ri;
+ float *hdr_data = stbi__hdr_load(s,x,y,comp,req_comp, &ri);
+ if (hdr_data)
+ stbi__float_postprocess(hdr_data,x,y,comp,req_comp);
+ return hdr_data;
+ }
+ #endif
+ data = stbi__load_and_postprocess_8bit(s, x, y, comp, req_comp);
+ if (data)
+ return stbi__ldr_to_hdr(data, *x, *y, req_comp ? req_comp : *comp);
+ return stbi__errpf("unknown image type", "Image not of any known type, or corrupt");
+}
+
+STBIDEF float *stbi_loadf_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp)
+{
+ stbi__context s;
+ stbi__start_mem(&s,buffer,len);
+ return stbi__loadf_main(&s,x,y,comp,req_comp);
+}
+
+STBIDEF float *stbi_loadf_from_callbacks(stbi_io_callbacks const *clbk, void *user, int *x, int *y, int *comp, int req_comp)
+{
+ stbi__context s;
+ stbi__start_callbacks(&s, (stbi_io_callbacks *) clbk, user);
+ return stbi__loadf_main(&s,x,y,comp,req_comp);
+}
+
+#ifndef STBI_NO_STDIO
+STBIDEF float *stbi_loadf(char const *filename, int *x, int *y, int *comp, int req_comp)
+{
+ float *result;
+ FILE *f = stbi__fopen(filename, "rb");
+ if (!f) return stbi__errpf("can't fopen", "Unable to open file");
+ result = stbi_loadf_from_file(f,x,y,comp,req_comp);
+ fclose(f);
+ return result;
+}
+
+STBIDEF float *stbi_loadf_from_file(FILE *f, int *x, int *y, int *comp, int req_comp)
+{
+ stbi__context s;
+ stbi__start_file(&s,f);
+ return stbi__loadf_main(&s,x,y,comp,req_comp);
+}
+#endif // !STBI_NO_STDIO
+
+#endif // !STBI_NO_LINEAR
+
+// these is-hdr-or-not is defined independent of whether STBI_NO_LINEAR is
+// defined, for API simplicity; if STBI_NO_LINEAR is defined, it always
+// reports false!
+
+STBIDEF int stbi_is_hdr_from_memory(stbi_uc const *buffer, int len)
+{
+ #ifndef STBI_NO_HDR
+ stbi__context s;
+ stbi__start_mem(&s,buffer,len);
+ return stbi__hdr_test(&s);
+ #else
+ STBI_NOTUSED(buffer);
+ STBI_NOTUSED(len);
+ return 0;
+ #endif
+}
+
+#ifndef STBI_NO_STDIO
+STBIDEF int stbi_is_hdr (char const *filename)
+{
+ FILE *f = stbi__fopen(filename, "rb");
+ int result=0;
+ if (f) {
+ result = stbi_is_hdr_from_file(f);
+ fclose(f);
+ }
+ return result;
+}
+
+STBIDEF int stbi_is_hdr_from_file(FILE *f)
+{
+ #ifndef STBI_NO_HDR
+ long pos = ftell(f);
+ int res;
+ stbi__context s;
+ stbi__start_file(&s,f);
+ res = stbi__hdr_test(&s);
+ fseek(f, pos, SEEK_SET);
+ return res;
+ #else
+ STBI_NOTUSED(f);
+ return 0;
+ #endif
+}
+#endif // !STBI_NO_STDIO
+
+STBIDEF int stbi_is_hdr_from_callbacks(stbi_io_callbacks const *clbk, void *user)
+{
+ #ifndef STBI_NO_HDR
+ stbi__context s;
+ stbi__start_callbacks(&s, (stbi_io_callbacks *) clbk, user);
+ return stbi__hdr_test(&s);
+ #else
+ STBI_NOTUSED(clbk);
+ STBI_NOTUSED(user);
+ return 0;
+ #endif
+}
+
+#ifndef STBI_NO_LINEAR
+static float stbi__l2h_gamma=2.2f, stbi__l2h_scale=1.0f;
+
+STBIDEF void stbi_ldr_to_hdr_gamma(float gamma) { stbi__l2h_gamma = gamma; }
+STBIDEF void stbi_ldr_to_hdr_scale(float scale) { stbi__l2h_scale = scale; }
+#endif
+
+static float stbi__h2l_gamma_i=1.0f/2.2f, stbi__h2l_scale_i=1.0f;
+
+STBIDEF void stbi_hdr_to_ldr_gamma(float gamma) { stbi__h2l_gamma_i = 1/gamma; }
+STBIDEF void stbi_hdr_to_ldr_scale(float scale) { stbi__h2l_scale_i = 1/scale; }
+
+
+//////////////////////////////////////////////////////////////////////////////
+//
+// Common code used by all image loaders
+//
+
+enum
+{
+ STBI__SCAN_load=0,
+ STBI__SCAN_type,
+ STBI__SCAN_header
+};
+
+static void stbi__refill_buffer(stbi__context *s)
+{
+ int n = (s->io.read)(s->io_user_data,(char*)s->buffer_start,s->buflen);
+ s->callback_already_read += (int) (s->img_buffer - s->img_buffer_original);
+ if (n == 0) {
+ // at end of file, treat same as if from memory, but need to handle case
+ // where s->img_buffer isn't pointing to safe memory, e.g. 0-byte file
+ s->read_from_callbacks = 0;
+ s->img_buffer = s->buffer_start;
+ s->img_buffer_end = s->buffer_start+1;
+ *s->img_buffer = 0;
+ } else {
+ s->img_buffer = s->buffer_start;
+ s->img_buffer_end = s->buffer_start + n;
+ }
+}
+
+stbi_inline static stbi_uc stbi__get8(stbi__context *s)
+{
+ if (s->img_buffer < s->img_buffer_end)
+ return *s->img_buffer++;
+ if (s->read_from_callbacks) {
+ stbi__refill_buffer(s);
+ return *s->img_buffer++;
+ }
+ return 0;
+}
+
+#if defined(STBI_NO_JPEG) && defined(STBI_NO_HDR) && defined(STBI_NO_PIC) && defined(STBI_NO_PNM)
+// nothing
+#else
+stbi_inline static int stbi__at_eof(stbi__context *s)
+{
+ if (s->io.read) {
+ if (!(s->io.eof)(s->io_user_data)) return 0;
+ // if feof() is true, check if buffer = end
+ // special case: we've only got the special 0 character at the end
+ if (s->read_from_callbacks == 0) return 1;
+ }
+
+ return s->img_buffer >= s->img_buffer_end;
+}
+#endif
+
+#if defined(STBI_NO_JPEG) && defined(STBI_NO_PNG) && defined(STBI_NO_BMP) && defined(STBI_NO_PSD) && defined(STBI_NO_TGA) && defined(STBI_NO_GIF) && defined(STBI_NO_PIC)
+// nothing
+#else
+static void stbi__skip(stbi__context *s, int n)
+{
+ if (n == 0) return; // already there!
+ if (n < 0) {
+ s->img_buffer = s->img_buffer_end;
+ return;
+ }
+ if (s->io.read) {
+ int blen = (int) (s->img_buffer_end - s->img_buffer);
+ if (blen < n) {
+ s->img_buffer = s->img_buffer_end;
+ (s->io.skip)(s->io_user_data, n - blen);
+ return;
+ }
+ }
+ s->img_buffer += n;
+}
+#endif
+
+#if defined(STBI_NO_PNG) && defined(STBI_NO_TGA) && defined(STBI_NO_HDR) && defined(STBI_NO_PNM)
+// nothing
+#else
+static int stbi__getn(stbi__context *s, stbi_uc *buffer, int n)
+{
+ if (s->io.read) {
+ int blen = (int) (s->img_buffer_end - s->img_buffer);
+ if (blen < n) {
+ int res, count;
+
+ memcpy(buffer, s->img_buffer, blen);
+
+ count = (s->io.read)(s->io_user_data, (char*) buffer + blen, n - blen);
+ res = (count == (n-blen));
+ s->img_buffer = s->img_buffer_end;
+ return res;
+ }
+ }
+
+ if (s->img_buffer+n <= s->img_buffer_end) {
+ memcpy(buffer, s->img_buffer, n);
+ s->img_buffer += n;
+ return 1;
+ } else
+ return 0;
+}
+#endif
+
+#if defined(STBI_NO_JPEG) && defined(STBI_NO_PNG) && defined(STBI_NO_PSD) && defined(STBI_NO_PIC)
+// nothing
+#else
+static int stbi__get16be(stbi__context *s)
+{
+ int z = stbi__get8(s);
+ return (z << 8) + stbi__get8(s);
+}
+#endif
+
+#if defined(STBI_NO_PNG) && defined(STBI_NO_PSD) && defined(STBI_NO_PIC)
+// nothing
+#else
+static stbi__uint32 stbi__get32be(stbi__context *s)
+{
+ stbi__uint32 z = stbi__get16be(s);
+ return (z << 16) + stbi__get16be(s);
+}
+#endif
+
+#if defined(STBI_NO_BMP) && defined(STBI_NO_TGA) && defined(STBI_NO_GIF)
+// nothing
+#else
+static int stbi__get16le(stbi__context *s)
+{
+ int z = stbi__get8(s);
+ return z + (stbi__get8(s) << 8);
+}
+#endif
+
+#ifndef STBI_NO_BMP
+static stbi__uint32 stbi__get32le(stbi__context *s)
+{
+ stbi__uint32 z = stbi__get16le(s);
+ z += (stbi__uint32)stbi__get16le(s) << 16;
+ return z;
+}
+#endif
+
+#define STBI__BYTECAST(x) ((stbi_uc) ((x) & 255)) // truncate int to byte without warnings
+
+#if defined(STBI_NO_JPEG) && defined(STBI_NO_PNG) && defined(STBI_NO_BMP) && defined(STBI_NO_PSD) && defined(STBI_NO_TGA) && defined(STBI_NO_GIF) && defined(STBI_NO_PIC) && defined(STBI_NO_PNM)
+// nothing
+#else
+//////////////////////////////////////////////////////////////////////////////
+//
+// generic converter from built-in img_n to req_comp
+// individual types do this automatically as much as possible (e.g. jpeg
+// does all cases internally since it needs to colorspace convert anyway,
+// and it never has alpha, so very few cases ). png can automatically
+// interleave an alpha=255 channel, but falls back to this for other cases
+//
+// assume data buffer is malloced, so malloc a new one and free that one
+// only failure mode is malloc failing
+
+static stbi_uc stbi__compute_y(int r, int g, int b)
+{
+ return (stbi_uc) (((r*77) + (g*150) + (29*b)) >> 8);
+}
+#endif
+
+#if defined(STBI_NO_PNG) && defined(STBI_NO_BMP) && defined(STBI_NO_PSD) && defined(STBI_NO_TGA) && defined(STBI_NO_GIF) && defined(STBI_NO_PIC) && defined(STBI_NO_PNM)
+// nothing
+#else
+static unsigned char *stbi__convert_format(unsigned char *data, int img_n, int req_comp, unsigned int x, unsigned int y)
+{
+ int i,j;
+ unsigned char *good;
+
+ if (req_comp == img_n) return data;
+ STBI_ASSERT(req_comp >= 1 && req_comp <= 4);
+
+ good = (unsigned char *) stbi__malloc_mad3(req_comp, x, y, 0);
+ if (good == NULL) {
+ STBI_FREE(data);
+ return stbi__errpuc("outofmem", "Out of memory");
+ }
+
+ for (j=0; j < (int) y; ++j) {
+ unsigned char *src = data + j * x * img_n ;
+ unsigned char *dest = good + j * x * req_comp;
+
+ #define STBI__COMBO(a,b) ((a)*8+(b))
+ #define STBI__CASE(a,b) case STBI__COMBO(a,b): for(i=x-1; i >= 0; --i, src += a, dest += b)
+ // convert source image with img_n components to one with req_comp components;
+ // avoid switch per pixel, so use switch per scanline and massive macros
+ switch (STBI__COMBO(img_n, req_comp)) {
+ STBI__CASE(1,2) { dest[0]=src[0]; dest[1]=255; } break;
+ STBI__CASE(1,3) { dest[0]=dest[1]=dest[2]=src[0]; } break;
+ STBI__CASE(1,4) { dest[0]=dest[1]=dest[2]=src[0]; dest[3]=255; } break;
+ STBI__CASE(2,1) { dest[0]=src[0]; } break;
+ STBI__CASE(2,3) { dest[0]=dest[1]=dest[2]=src[0]; } break;
+ STBI__CASE(2,4) { dest[0]=dest[1]=dest[2]=src[0]; dest[3]=src[1]; } break;
+ STBI__CASE(3,4) { dest[0]=src[0];dest[1]=src[1];dest[2]=src[2];dest[3]=255; } break;
+ STBI__CASE(3,1) { dest[0]=stbi__compute_y(src[0],src[1],src[2]); } break;
+ STBI__CASE(3,2) { dest[0]=stbi__compute_y(src[0],src[1],src[2]); dest[1] = 255; } break;
+ STBI__CASE(4,1) { dest[0]=stbi__compute_y(src[0],src[1],src[2]); } break;
+ STBI__CASE(4,2) { dest[0]=stbi__compute_y(src[0],src[1],src[2]); dest[1] = src[3]; } break;
+ STBI__CASE(4,3) { dest[0]=src[0];dest[1]=src[1];dest[2]=src[2]; } break;
+ default: STBI_ASSERT(0); STBI_FREE(data); STBI_FREE(good); return stbi__errpuc("unsupported", "Unsupported format conversion");
+ }
+ #undef STBI__CASE
+ }
+
+ STBI_FREE(data);
+ return good;
+}
+#endif
+
+#if defined(STBI_NO_PNG) && defined(STBI_NO_PSD)
+// nothing
+#else
+static stbi__uint16 stbi__compute_y_16(int r, int g, int b)
+{
+ return (stbi__uint16) (((r*77) + (g*150) + (29*b)) >> 8);
+}
+#endif
+
+#if defined(STBI_NO_PNG) && defined(STBI_NO_PSD)
+// nothing
+#else
+static stbi__uint16 *stbi__convert_format16(stbi__uint16 *data, int img_n, int req_comp, unsigned int x, unsigned int y)
+{
+ int i,j;
+ stbi__uint16 *good;
+
+ if (req_comp == img_n) return data;
+ STBI_ASSERT(req_comp >= 1 && req_comp <= 4);
+
+ good = (stbi__uint16 *) stbi__malloc(req_comp * x * y * 2);
+ if (good == NULL) {
+ STBI_FREE(data);
+ return (stbi__uint16 *) stbi__errpuc("outofmem", "Out of memory");
+ }
+
+ for (j=0; j < (int) y; ++j) {
+ stbi__uint16 *src = data + j * x * img_n ;
+ stbi__uint16 *dest = good + j * x * req_comp;
+
+ #define STBI__COMBO(a,b) ((a)*8+(b))
+ #define STBI__CASE(a,b) case STBI__COMBO(a,b): for(i=x-1; i >= 0; --i, src += a, dest += b)
+ // convert source image with img_n components to one with req_comp components;
+ // avoid switch per pixel, so use switch per scanline and massive macros
+ switch (STBI__COMBO(img_n, req_comp)) {
+ STBI__CASE(1,2) { dest[0]=src[0]; dest[1]=0xffff; } break;
+ STBI__CASE(1,3) { dest[0]=dest[1]=dest[2]=src[0]; } break;
+ STBI__CASE(1,4) { dest[0]=dest[1]=dest[2]=src[0]; dest[3]=0xffff; } break;
+ STBI__CASE(2,1) { dest[0]=src[0]; } break;
+ STBI__CASE(2,3) { dest[0]=dest[1]=dest[2]=src[0]; } break;
+ STBI__CASE(2,4) { dest[0]=dest[1]=dest[2]=src[0]; dest[3]=src[1]; } break;
+ STBI__CASE(3,4) { dest[0]=src[0];dest[1]=src[1];dest[2]=src[2];dest[3]=0xffff; } break;
+ STBI__CASE(3,1) { dest[0]=stbi__compute_y_16(src[0],src[1],src[2]); } break;
+ STBI__CASE(3,2) { dest[0]=stbi__compute_y_16(src[0],src[1],src[2]); dest[1] = 0xffff; } break;
+ STBI__CASE(4,1) { dest[0]=stbi__compute_y_16(src[0],src[1],src[2]); } break;
+ STBI__CASE(4,2) { dest[0]=stbi__compute_y_16(src[0],src[1],src[2]); dest[1] = src[3]; } break;
+ STBI__CASE(4,3) { dest[0]=src[0];dest[1]=src[1];dest[2]=src[2]; } break;
+ default: STBI_ASSERT(0); STBI_FREE(data); STBI_FREE(good); return (stbi__uint16*) stbi__errpuc("unsupported", "Unsupported format conversion");
+ }
+ #undef STBI__CASE
+ }
+
+ STBI_FREE(data);
+ return good;
+}
+#endif
+
+#ifndef STBI_NO_LINEAR
+static float *stbi__ldr_to_hdr(stbi_uc *data, int x, int y, int comp)
+{
+ int i,k,n;
+ float *output;
+ if (!data) return NULL;
+ output = (float *) stbi__malloc_mad4(x, y, comp, sizeof(float), 0);
+ if (output == NULL) { STBI_FREE(data); return stbi__errpf("outofmem", "Out of memory"); }
+ // compute number of non-alpha components
+ if (comp & 1) n = comp; else n = comp-1;
+ for (i=0; i < x*y; ++i) {
+ for (k=0; k < n; ++k) {
+ output[i*comp + k] = (float) (pow(data[i*comp+k]/255.0f, stbi__l2h_gamma) * stbi__l2h_scale);
+ }
+ }
+ if (n < comp) {
+ for (i=0; i < x*y; ++i) {
+ output[i*comp + n] = data[i*comp + n]/255.0f;
+ }
+ }
+ STBI_FREE(data);
+ return output;
+}
+#endif
+
+#ifndef STBI_NO_HDR
+#define stbi__float2int(x) ((int) (x))
+static stbi_uc *stbi__hdr_to_ldr(float *data, int x, int y, int comp)
+{
+ int i,k,n;
+ stbi_uc *output;
+ if (!data) return NULL;
+ output = (stbi_uc *) stbi__malloc_mad3(x, y, comp, 0);
+ if (output == NULL) { STBI_FREE(data); return stbi__errpuc("outofmem", "Out of memory"); }
+ // compute number of non-alpha components
+ if (comp & 1) n = comp; else n = comp-1;
+ for (i=0; i < x*y; ++i) {
+ for (k=0; k < n; ++k) {
+ float z = (float) pow(data[i*comp+k]*stbi__h2l_scale_i, stbi__h2l_gamma_i) * 255 + 0.5f;
+ if (z < 0) z = 0;
+ if (z > 255) z = 255;
+ output[i*comp + k] = (stbi_uc) stbi__float2int(z);
+ }
+ if (k < comp) {
+ float z = data[i*comp+k] * 255 + 0.5f;
+ if (z < 0) z = 0;
+ if (z > 255) z = 255;
+ output[i*comp + k] = (stbi_uc) stbi__float2int(z);
+ }
+ }
+ STBI_FREE(data);
+ return output;
+}
+#endif
+
+//////////////////////////////////////////////////////////////////////////////
+//
+// "baseline" JPEG/JFIF decoder
+//
+// simple implementation
+// - doesn't support delayed output of y-dimension
+// - simple interface (only one output format: 8-bit interleaved RGB)
+// - doesn't try to recover corrupt jpegs
+// - doesn't allow partial loading, loading multiple at once
+// - still fast on x86 (copying globals into locals doesn't help x86)
+// - allocates lots of intermediate memory (full size of all components)
+// - non-interleaved case requires this anyway
+// - allows good upsampling (see next)
+// high-quality
+// - upsampled channels are bilinearly interpolated, even across blocks
+// - quality integer IDCT derived from IJG's 'slow'
+// performance
+// - fast huffman; reasonable integer IDCT
+// - some SIMD kernels for common paths on targets with SSE2/NEON
+// - uses a lot of intermediate memory, could cache poorly
+
+#ifndef STBI_NO_JPEG
+
+// huffman decoding acceleration
+#define FAST_BITS 9 // larger handles more cases; smaller stomps less cache
+
+typedef struct
+{
+ stbi_uc fast[1 << FAST_BITS];
+ // weirdly, repacking this into AoS is a 10% speed loss, instead of a win
+ stbi__uint16 code[256];
+ stbi_uc values[256];
+ stbi_uc size[257];
+ unsigned int maxcode[18];
+ int delta[17]; // old 'firstsymbol' - old 'firstcode'
+} stbi__huffman;
+
+typedef struct
+{
+ stbi__context *s;
+ stbi__huffman huff_dc[4];
+ stbi__huffman huff_ac[4];
+ stbi__uint16 dequant[4][64];
+ stbi__int16 fast_ac[4][1 << FAST_BITS];
+
+// sizes for components, interleaved MCUs
+ int img_h_max, img_v_max;
+ int img_mcu_x, img_mcu_y;
+ int img_mcu_w, img_mcu_h;
+
+// definition of jpeg image component
+ struct
+ {
+ int id;
+ int h,v;
+ int tq;
+ int hd,ha;
+ int dc_pred;
+
+ int x,y,w2,h2;
+ stbi_uc *data;
+ void *raw_data, *raw_coeff;
+ stbi_uc *linebuf;
+ short *coeff; // progressive only
+ int coeff_w, coeff_h; // number of 8x8 coefficient blocks
+ } img_comp[4];
+
+ stbi__uint32 code_buffer; // jpeg entropy-coded buffer
+ int code_bits; // number of valid bits
+ unsigned char marker; // marker seen while filling entropy buffer
+ int nomore; // flag if we saw a marker so must stop
+
+ int progressive;
+ int spec_start;
+ int spec_end;
+ int succ_high;
+ int succ_low;
+ int eob_run;
+ int jfif;
+ int app14_color_transform; // Adobe APP14 tag
+ int rgb;
+
+ int scan_n, order[4];
+ int restart_interval, todo;
+
+// kernels
+ void (*idct_block_kernel)(stbi_uc *out, int out_stride, short data[64]);
+ void (*YCbCr_to_RGB_kernel)(stbi_uc *out, const stbi_uc *y, const stbi_uc *pcb, const stbi_uc *pcr, int count, int step);
+ stbi_uc *(*resample_row_hv_2_kernel)(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs);
+} stbi__jpeg;
+
+static int stbi__build_huffman(stbi__huffman *h, int *count)
+{
+ int i,j,k=0;
+ unsigned int code;
+ // build size list for each symbol (from JPEG spec)
+ for (i=0; i < 16; ++i) {
+ for (j=0; j < count[i]; ++j) {
+ h->size[k++] = (stbi_uc) (i+1);
+ if(k >= 257) return stbi__err("bad size list","Corrupt JPEG");
+ }
+ }
+ h->size[k] = 0;
+
+ // compute actual symbols (from jpeg spec)
+ code = 0;
+ k = 0;
+ for(j=1; j <= 16; ++j) {
+ // compute delta to add to code to compute symbol id
+ h->delta[j] = k - code;
+ if (h->size[k] == j) {
+ while (h->size[k] == j)
+ h->code[k++] = (stbi__uint16) (code++);
+ if (code-1 >= (1u << j)) return stbi__err("bad code lengths","Corrupt JPEG");
+ }
+ // compute largest code + 1 for this size, preshifted as needed later
+ h->maxcode[j] = code << (16-j);
+ code <<= 1;
+ }
+ h->maxcode[j] = 0xffffffff;
+
+ // build non-spec acceleration table; 255 is flag for not-accelerated
+ memset(h->fast, 255, 1 << FAST_BITS);
+ for (i=0; i < k; ++i) {
+ int s = h->size[i];
+ if (s <= FAST_BITS) {
+ int c = h->code[i] << (FAST_BITS-s);
+ int m = 1 << (FAST_BITS-s);
+ for (j=0; j < m; ++j) {
+ h->fast[c+j] = (stbi_uc) i;
+ }
+ }
+ }
+ return 1;
+}
+
+// build a table that decodes both magnitude and value of small ACs in
+// one go.
+static void stbi__build_fast_ac(stbi__int16 *fast_ac, stbi__huffman *h)
+{
+ int i;
+ for (i=0; i < (1 << FAST_BITS); ++i) {
+ stbi_uc fast = h->fast[i];
+ fast_ac[i] = 0;
+ if (fast < 255) {
+ int rs = h->values[fast];
+ int run = (rs >> 4) & 15;
+ int magbits = rs & 15;
+ int len = h->size[fast];
+
+ if (magbits && len + magbits <= FAST_BITS) {
+ // magnitude code followed by receive_extend code
+ int k = ((i << len) & ((1 << FAST_BITS) - 1)) >> (FAST_BITS - magbits);
+ int m = 1 << (magbits - 1);
+ if (k < m) k += (~0U << magbits) + 1;
+ // if the result is small enough, we can fit it in fast_ac table
+ if (k >= -128 && k <= 127)
+ fast_ac[i] = (stbi__int16) ((k * 256) + (run * 16) + (len + magbits));
+ }
+ }
+ }
+}
+
+static void stbi__grow_buffer_unsafe(stbi__jpeg *j)
+{
+ do {
+ unsigned int b = j->nomore ? 0 : stbi__get8(j->s);
+ if (b == 0xff) {
+ int c = stbi__get8(j->s);
+ while (c == 0xff) c = stbi__get8(j->s); // consume fill bytes
+ if (c != 0) {
+ j->marker = (unsigned char) c;
+ j->nomore = 1;
+ return;
+ }
+ }
+ j->code_buffer |= b << (24 - j->code_bits);
+ j->code_bits += 8;
+ } while (j->code_bits <= 24);
+}
+
+// (1 << n) - 1
+static const stbi__uint32 stbi__bmask[17]={0,1,3,7,15,31,63,127,255,511,1023,2047,4095,8191,16383,32767,65535};
+
+// decode a jpeg huffman value from the bitstream
+stbi_inline static int stbi__jpeg_huff_decode(stbi__jpeg *j, stbi__huffman *h)
+{
+ unsigned int temp;
+ int c,k;
+
+ if (j->code_bits < 16) stbi__grow_buffer_unsafe(j);
+
+ // look at the top FAST_BITS and determine what symbol ID it is,
+ // if the code is <= FAST_BITS
+ c = (j->code_buffer >> (32 - FAST_BITS)) & ((1 << FAST_BITS)-1);
+ k = h->fast[c];
+ if (k < 255) {
+ int s = h->size[k];
+ if (s > j->code_bits)
+ return -1;
+ j->code_buffer <<= s;
+ j->code_bits -= s;
+ return h->values[k];
+ }
+
+ // naive test is to shift the code_buffer down so k bits are
+ // valid, then test against maxcode. To speed this up, we've
+ // preshifted maxcode left so that it has (16-k) 0s at the
+ // end; in other words, regardless of the number of bits, it
+ // wants to be compared against something shifted to have 16;
+ // that way we don't need to shift inside the loop.
+ temp = j->code_buffer >> 16;
+ for (k=FAST_BITS+1 ; ; ++k)
+ if (temp < h->maxcode[k])
+ break;
+ if (k == 17) {
+ // error! code not found
+ j->code_bits -= 16;
+ return -1;
+ }
+
+ if (k > j->code_bits)
+ return -1;
+
+ // convert the huffman code to the symbol id
+ c = ((j->code_buffer >> (32 - k)) & stbi__bmask[k]) + h->delta[k];
+ if(c < 0 || c >= 256) // symbol id out of bounds!
+ return -1;
+ STBI_ASSERT((((j->code_buffer) >> (32 - h->size[c])) & stbi__bmask[h->size[c]]) == h->code[c]);
+
+ // convert the id to a symbol
+ j->code_bits -= k;
+ j->code_buffer <<= k;
+ return h->values[c];
+}
+
+// bias[n] = (-1<<n) + 1
+static const int stbi__jbias[16] = {0,-1,-3,-7,-15,-31,-63,-127,-255,-511,-1023,-2047,-4095,-8191,-16383,-32767};
+
+// combined JPEG 'receive' and JPEG 'extend', since baseline
+// always extends everything it receives.
+stbi_inline static int stbi__extend_receive(stbi__jpeg *j, int n)
+{
+ unsigned int k;
+ int sgn;
+ if (j->code_bits < n) stbi__grow_buffer_unsafe(j);
+ if (j->code_bits < n) return 0; // ran out of bits from stream, return 0s intead of continuing
+
+ sgn = j->code_buffer >> 31; // sign bit always in MSB; 0 if MSB clear (positive), 1 if MSB set (negative)
+ k = stbi_lrot(j->code_buffer, n);
+ j->code_buffer = k & ~stbi__bmask[n];
+ k &= stbi__bmask[n];
+ j->code_bits -= n;
+ return k + (stbi__jbias[n] & (sgn - 1));
+}
+
+// get some unsigned bits
+stbi_inline static int stbi__jpeg_get_bits(stbi__jpeg *j, int n)
+{
+ unsigned int k;
+ if (j->code_bits < n) stbi__grow_buffer_unsafe(j);
+ if (j->code_bits < n) return 0; // ran out of bits from stream, return 0s intead of continuing
+ k = stbi_lrot(j->code_buffer, n);
+ j->code_buffer = k & ~stbi__bmask[n];
+ k &= stbi__bmask[n];
+ j->code_bits -= n;
+ return k;
+}
+
+stbi_inline static int stbi__jpeg_get_bit(stbi__jpeg *j)
+{
+ unsigned int k;
+ if (j->code_bits < 1) stbi__grow_buffer_unsafe(j);
+ if (j->code_bits < 1) return 0; // ran out of bits from stream, return 0s intead of continuing
+ k = j->code_buffer;
+ j->code_buffer <<= 1;
+ --j->code_bits;
+ return k & 0x80000000;
+}
+
+// given a value that's at position X in the zigzag stream,
+// where does it appear in the 8x8 matrix coded as row-major?
+static const stbi_uc stbi__jpeg_dezigzag[64+15] =
+{
+ 0, 1, 8, 16, 9, 2, 3, 10,
+ 17, 24, 32, 25, 18, 11, 4, 5,
+ 12, 19, 26, 33, 40, 48, 41, 34,
+ 27, 20, 13, 6, 7, 14, 21, 28,
+ 35, 42, 49, 56, 57, 50, 43, 36,
+ 29, 22, 15, 23, 30, 37, 44, 51,
+ 58, 59, 52, 45, 38, 31, 39, 46,
+ 53, 60, 61, 54, 47, 55, 62, 63,
+ // let corrupt input sample past end
+ 63, 63, 63, 63, 63, 63, 63, 63,
+ 63, 63, 63, 63, 63, 63, 63
+};
+
+// decode one 64-entry block--
+static int stbi__jpeg_decode_block(stbi__jpeg *j, short data[64], stbi__huffman *hdc, stbi__huffman *hac, stbi__int16 *fac, int b, stbi__uint16 *dequant)
+{
+ int diff,dc,k;
+ int t;
+
+ if (j->code_bits < 16) stbi__grow_buffer_unsafe(j);
+ t = stbi__jpeg_huff_decode(j, hdc);
+ if (t < 0 || t > 15) return stbi__err("bad huffman code","Corrupt JPEG");
+
+ // 0 all the ac values now so we can do it 32-bits at a time
+ memset(data,0,64*sizeof(data[0]));
+
+ diff = t ? stbi__extend_receive(j, t) : 0;
+ if (!stbi__addints_valid(j->img_comp[b].dc_pred, diff)) return stbi__err("bad delta","Corrupt JPEG");
+ dc = j->img_comp[b].dc_pred + diff;
+ j->img_comp[b].dc_pred = dc;
+ if (!stbi__mul2shorts_valid(dc, dequant[0])) return stbi__err("can't merge dc and ac", "Corrupt JPEG");
+ data[0] = (short) (dc * dequant[0]);
+
+ // decode AC components, see JPEG spec
+ k = 1;
+ do {
+ unsigned int zig;
+ int c,r,s;
+ if (j->code_bits < 16) stbi__grow_buffer_unsafe(j);
+ c = (j->code_buffer >> (32 - FAST_BITS)) & ((1 << FAST_BITS)-1);
+ r = fac[c];
+ if (r) { // fast-AC path
+ k += (r >> 4) & 15; // run
+ s = r & 15; // combined length
+ if (s > j->code_bits) return stbi__err("bad huffman code", "Combined length longer than code bits available");
+ j->code_buffer <<= s;
+ j->code_bits -= s;
+ // decode into unzigzag'd location
+ zig = stbi__jpeg_dezigzag[k++];
+ data[zig] = (short) ((r >> 8) * dequant[zig]);
+ } else {
+ int rs = stbi__jpeg_huff_decode(j, hac);
+ if (rs < 0) return stbi__err("bad huffman code","Corrupt JPEG");
+ s = rs & 15;
+ r = rs >> 4;
+ if (s == 0) {
+ if (rs != 0xf0) break; // end block
+ k += 16;
+ } else {
+ k += r;
+ // decode into unzigzag'd location
+ zig = stbi__jpeg_dezigzag[k++];
+ data[zig] = (short) (stbi__extend_receive(j,s) * dequant[zig]);
+ }
+ }
+ } while (k < 64);
+ return 1;
+}
+
+static int stbi__jpeg_decode_block_prog_dc(stbi__jpeg *j, short data[64], stbi__huffman *hdc, int b)
+{
+ int diff,dc;
+ int t;
+ if (j->spec_end != 0) return stbi__err("can't merge dc and ac", "Corrupt JPEG");
+
+ if (j->code_bits < 16) stbi__grow_buffer_unsafe(j);
+
+ if (j->succ_high == 0) {
+ // first scan for DC coefficient, must be first
+ memset(data,0,64*sizeof(data[0])); // 0 all the ac values now
+ t = stbi__jpeg_huff_decode(j, hdc);
+ if (t < 0 || t > 15) return stbi__err("can't merge dc and ac", "Corrupt JPEG");
+ diff = t ? stbi__extend_receive(j, t) : 0;
+
+ if (!stbi__addints_valid(j->img_comp[b].dc_pred, diff)) return stbi__err("bad delta", "Corrupt JPEG");
+ dc = j->img_comp[b].dc_pred + diff;
+ j->img_comp[b].dc_pred = dc;
+ if (!stbi__mul2shorts_valid(dc, 1 << j->succ_low)) return stbi__err("can't merge dc and ac", "Corrupt JPEG");
+ data[0] = (short) (dc * (1 << j->succ_low));
+ } else {
+ // refinement scan for DC coefficient
+ if (stbi__jpeg_get_bit(j))
+ data[0] += (short) (1 << j->succ_low);
+ }
+ return 1;
+}
+
+// @OPTIMIZE: store non-zigzagged during the decode passes,
+// and only de-zigzag when dequantizing
+static int stbi__jpeg_decode_block_prog_ac(stbi__jpeg *j, short data[64], stbi__huffman *hac, stbi__int16 *fac)
+{
+ int k;
+ if (j->spec_start == 0) return stbi__err("can't merge dc and ac", "Corrupt JPEG");
+
+ if (j->succ_high == 0) {
+ int shift = j->succ_low;
+
+ if (j->eob_run) {
+ --j->eob_run;
+ return 1;
+ }
+
+ k = j->spec_start;
+ do {
+ unsigned int zig;
+ int c,r,s;
+ if (j->code_bits < 16) stbi__grow_buffer_unsafe(j);
+ c = (j->code_buffer >> (32 - FAST_BITS)) & ((1 << FAST_BITS)-1);
+ r = fac[c];
+ if (r) { // fast-AC path
+ k += (r >> 4) & 15; // run
+ s = r & 15; // combined length
+ if (s > j->code_bits) return stbi__err("bad huffman code", "Combined length longer than code bits available");
+ j->code_buffer <<= s;
+ j->code_bits -= s;
+ zig = stbi__jpeg_dezigzag[k++];
+ data[zig] = (short) ((r >> 8) * (1 << shift));
+ } else {
+ int rs = stbi__jpeg_huff_decode(j, hac);
+ if (rs < 0) return stbi__err("bad huffman code","Corrupt JPEG");
+ s = rs & 15;
+ r = rs >> 4;
+ if (s == 0) {
+ if (r < 15) {
+ j->eob_run = (1 << r);
+ if (r)
+ j->eob_run += stbi__jpeg_get_bits(j, r);
+ --j->eob_run;
+ break;
+ }
+ k += 16;
+ } else {
+ k += r;
+ zig = stbi__jpeg_dezigzag[k++];
+ data[zig] = (short) (stbi__extend_receive(j,s) * (1 << shift));
+ }
+ }
+ } while (k <= j->spec_end);
+ } else {
+ // refinement scan for these AC coefficients
+
+ short bit = (short) (1 << j->succ_low);
+
+ if (j->eob_run) {
+ --j->eob_run;
+ for (k = j->spec_start; k <= j->spec_end; ++k) {
+ short *p = &data[stbi__jpeg_dezigzag[k]];
+ if (*p != 0)
+ if (stbi__jpeg_get_bit(j))
+ if ((*p & bit)==0) {
+ if (*p > 0)
+ *p += bit;
+ else
+ *p -= bit;
+ }
+ }
+ } else {
+ k = j->spec_start;
+ do {
+ int r,s;
+ int rs = stbi__jpeg_huff_decode(j, hac); // @OPTIMIZE see if we can use the fast path here, advance-by-r is so slow, eh
+ if (rs < 0) return stbi__err("bad huffman code","Corrupt JPEG");
+ s = rs & 15;
+ r = rs >> 4;
+ if (s == 0) {
+ if (r < 15) {
+ j->eob_run = (1 << r) - 1;
+ if (r)
+ j->eob_run += stbi__jpeg_get_bits(j, r);
+ r = 64; // force end of block
+ } else {
+ // r=15 s=0 should write 16 0s, so we just do
+ // a run of 15 0s and then write s (which is 0),
+ // so we don't have to do anything special here
+ }
+ } else {
+ if (s != 1) return stbi__err("bad huffman code", "Corrupt JPEG");
+ // sign bit
+ if (stbi__jpeg_get_bit(j))
+ s = bit;
+ else
+ s = -bit;
+ }
+
+ // advance by r
+ while (k <= j->spec_end) {
+ short *p = &data[stbi__jpeg_dezigzag[k++]];
+ if (*p != 0) {
+ if (stbi__jpeg_get_bit(j))
+ if ((*p & bit)==0) {
+ if (*p > 0)
+ *p += bit;
+ else
+ *p -= bit;
+ }
+ } else {
+ if (r == 0) {
+ *p = (short) s;
+ break;
+ }
+ --r;
+ }
+ }
+ } while (k <= j->spec_end);
+ }
+ }
+ return 1;
+}
+
+// take a -128..127 value and stbi__clamp it and convert to 0..255
+stbi_inline static stbi_uc stbi__clamp(int x)
+{
+ // trick to use a single test to catch both cases
+ if ((unsigned int) x > 255) {
+ if (x < 0) return 0;
+ if (x > 255) return 255;
+ }
+ return (stbi_uc) x;
+}
+
+#define stbi__f2f(x) ((int) (((x) * 4096 + 0.5)))
+#define stbi__fsh(x) ((x) * 4096)
+
+// derived from jidctint -- DCT_ISLOW
+#define STBI__IDCT_1D(s0,s1,s2,s3,s4,s5,s6,s7) \
+ int t0,t1,t2,t3,p1,p2,p3,p4,p5,x0,x1,x2,x3; \
+ p2 = s2; \
+ p3 = s6; \
+ p1 = (p2+p3) * stbi__f2f(0.5411961f); \
+ t2 = p1 + p3*stbi__f2f(-1.847759065f); \
+ t3 = p1 + p2*stbi__f2f( 0.765366865f); \
+ p2 = s0; \
+ p3 = s4; \
+ t0 = stbi__fsh(p2+p3); \
+ t1 = stbi__fsh(p2-p3); \
+ x0 = t0+t3; \
+ x3 = t0-t3; \
+ x1 = t1+t2; \
+ x2 = t1-t2; \
+ t0 = s7; \
+ t1 = s5; \
+ t2 = s3; \
+ t3 = s1; \
+ p3 = t0+t2; \
+ p4 = t1+t3; \
+ p1 = t0+t3; \
+ p2 = t1+t2; \
+ p5 = (p3+p4)*stbi__f2f( 1.175875602f); \
+ t0 = t0*stbi__f2f( 0.298631336f); \
+ t1 = t1*stbi__f2f( 2.053119869f); \
+ t2 = t2*stbi__f2f( 3.072711026f); \
+ t3 = t3*stbi__f2f( 1.501321110f); \
+ p1 = p5 + p1*stbi__f2f(-0.899976223f); \
+ p2 = p5 + p2*stbi__f2f(-2.562915447f); \
+ p3 = p3*stbi__f2f(-1.961570560f); \
+ p4 = p4*stbi__f2f(-0.390180644f); \
+ t3 += p1+p4; \
+ t2 += p2+p3; \
+ t1 += p2+p4; \
+ t0 += p1+p3;
+
+static void stbi__idct_block(stbi_uc *out, int out_stride, short data[64])
+{
+ int i,val[64],*v=val;
+ stbi_uc *o;
+ short *d = data;
+
+ // columns
+ for (i=0; i < 8; ++i,++d, ++v) {
+ // if all zeroes, shortcut -- this avoids dequantizing 0s and IDCTing
+ if (d[ 8]==0 && d[16]==0 && d[24]==0 && d[32]==0
+ && d[40]==0 && d[48]==0 && d[56]==0) {
+ // no shortcut 0 seconds
+ // (1|2|3|4|5|6|7)==0 0 seconds
+ // all separate -0.047 seconds
+ // 1 && 2|3 && 4|5 && 6|7: -0.047 seconds
+ int dcterm = d[0]*4;
+ v[0] = v[8] = v[16] = v[24] = v[32] = v[40] = v[48] = v[56] = dcterm;
+ } else {
+ STBI__IDCT_1D(d[ 0],d[ 8],d[16],d[24],d[32],d[40],d[48],d[56])
+ // constants scaled things up by 1<<12; let's bring them back
+ // down, but keep 2 extra bits of precision
+ x0 += 512; x1 += 512; x2 += 512; x3 += 512;
+ v[ 0] = (x0+t3) >> 10;
+ v[56] = (x0-t3) >> 10;
+ v[ 8] = (x1+t2) >> 10;
+ v[48] = (x1-t2) >> 10;
+ v[16] = (x2+t1) >> 10;
+ v[40] = (x2-t1) >> 10;
+ v[24] = (x3+t0) >> 10;
+ v[32] = (x3-t0) >> 10;
+ }
+ }
+
+ for (i=0, v=val, o=out; i < 8; ++i,v+=8,o+=out_stride) {
+ // no fast case since the first 1D IDCT spread components out
+ STBI__IDCT_1D(v[0],v[1],v[2],v[3],v[4],v[5],v[6],v[7])
+ // constants scaled things up by 1<<12, plus we had 1<<2 from first
+ // loop, plus horizontal and vertical each scale by sqrt(8) so together
+ // we've got an extra 1<<3, so 1<<17 total we need to remove.
+ // so we want to round that, which means adding 0.5 * 1<<17,
+ // aka 65536. Also, we'll end up with -128 to 127 that we want
+ // to encode as 0..255 by adding 128, so we'll add that before the shift
+ x0 += 65536 + (128<<17);
+ x1 += 65536 + (128<<17);
+ x2 += 65536 + (128<<17);
+ x3 += 65536 + (128<<17);
+ // tried computing the shifts into temps, or'ing the temps to see
+ // if any were out of range, but that was slower
+ o[0] = stbi__clamp((x0+t3) >> 17);
+ o[7] = stbi__clamp((x0-t3) >> 17);
+ o[1] = stbi__clamp((x1+t2) >> 17);
+ o[6] = stbi__clamp((x1-t2) >> 17);
+ o[2] = stbi__clamp((x2+t1) >> 17);
+ o[5] = stbi__clamp((x2-t1) >> 17);
+ o[3] = stbi__clamp((x3+t0) >> 17);
+ o[4] = stbi__clamp((x3-t0) >> 17);
+ }
+}
+
+#ifdef STBI_SSE2
+// sse2 integer IDCT. not the fastest possible implementation but it
+// produces bit-identical results to the generic C version so it's
+// fully "transparent".
+static void stbi__idct_simd(stbi_uc *out, int out_stride, short data[64])
+{
+ // This is constructed to match our regular (generic) integer IDCT exactly.
+ __m128i row0, row1, row2, row3, row4, row5, row6, row7;
+ __m128i tmp;
+
+ // dot product constant: even elems=x, odd elems=y
+ #define dct_const(x,y) _mm_setr_epi16((x),(y),(x),(y),(x),(y),(x),(y))
+
+ // out(0) = c0[even]*x + c0[odd]*y (c0, x, y 16-bit, out 32-bit)
+ // out(1) = c1[even]*x + c1[odd]*y
+ #define dct_rot(out0,out1, x,y,c0,c1) \
+ __m128i c0##lo = _mm_unpacklo_epi16((x),(y)); \
+ __m128i c0##hi = _mm_unpackhi_epi16((x),(y)); \
+ __m128i out0##_l = _mm_madd_epi16(c0##lo, c0); \
+ __m128i out0##_h = _mm_madd_epi16(c0##hi, c0); \
+ __m128i out1##_l = _mm_madd_epi16(c0##lo, c1); \
+ __m128i out1##_h = _mm_madd_epi16(c0##hi, c1)
+
+ // out = in << 12 (in 16-bit, out 32-bit)
+ #define dct_widen(out, in) \
+ __m128i out##_l = _mm_srai_epi32(_mm_unpacklo_epi16(_mm_setzero_si128(), (in)), 4); \
+ __m128i out##_h = _mm_srai_epi32(_mm_unpackhi_epi16(_mm_setzero_si128(), (in)), 4)
+
+ // wide add
+ #define dct_wadd(out, a, b) \
+ __m128i out##_l = _mm_add_epi32(a##_l, b##_l); \
+ __m128i out##_h = _mm_add_epi32(a##_h, b##_h)
+
+ // wide sub
+ #define dct_wsub(out, a, b) \
+ __m128i out##_l = _mm_sub_epi32(a##_l, b##_l); \
+ __m128i out##_h = _mm_sub_epi32(a##_h, b##_h)
+
+ // butterfly a/b, add bias, then shift by "s" and pack
+ #define dct_bfly32o(out0, out1, a,b,bias,s) \
+ { \
+ __m128i abiased_l = _mm_add_epi32(a##_l, bias); \
+ __m128i abiased_h = _mm_add_epi32(a##_h, bias); \
+ dct_wadd(sum, abiased, b); \
+ dct_wsub(dif, abiased, b); \
+ out0 = _mm_packs_epi32(_mm_srai_epi32(sum_l, s), _mm_srai_epi32(sum_h, s)); \
+ out1 = _mm_packs_epi32(_mm_srai_epi32(dif_l, s), _mm_srai_epi32(dif_h, s)); \
+ }
+
+ // 8-bit interleave step (for transposes)
+ #define dct_interleave8(a, b) \
+ tmp = a; \
+ a = _mm_unpacklo_epi8(a, b); \
+ b = _mm_unpackhi_epi8(tmp, b)
+
+ // 16-bit interleave step (for transposes)
+ #define dct_interleave16(a, b) \
+ tmp = a; \
+ a = _mm_unpacklo_epi16(a, b); \
+ b = _mm_unpackhi_epi16(tmp, b)
+
+ #define dct_pass(bias,shift) \
+ { \
+ /* even part */ \
+ dct_rot(t2e,t3e, row2,row6, rot0_0,rot0_1); \
+ __m128i sum04 = _mm_add_epi16(row0, row4); \
+ __m128i dif04 = _mm_sub_epi16(row0, row4); \
+ dct_widen(t0e, sum04); \
+ dct_widen(t1e, dif04); \
+ dct_wadd(x0, t0e, t3e); \
+ dct_wsub(x3, t0e, t3e); \
+ dct_wadd(x1, t1e, t2e); \
+ dct_wsub(x2, t1e, t2e); \
+ /* odd part */ \
+ dct_rot(y0o,y2o, row7,row3, rot2_0,rot2_1); \
+ dct_rot(y1o,y3o, row5,row1, rot3_0,rot3_1); \
+ __m128i sum17 = _mm_add_epi16(row1, row7); \
+ __m128i sum35 = _mm_add_epi16(row3, row5); \
+ dct_rot(y4o,y5o, sum17,sum35, rot1_0,rot1_1); \
+ dct_wadd(x4, y0o, y4o); \
+ dct_wadd(x5, y1o, y5o); \
+ dct_wadd(x6, y2o, y5o); \
+ dct_wadd(x7, y3o, y4o); \
+ dct_bfly32o(row0,row7, x0,x7,bias,shift); \
+ dct_bfly32o(row1,row6, x1,x6,bias,shift); \
+ dct_bfly32o(row2,row5, x2,x5,bias,shift); \
+ dct_bfly32o(row3,row4, x3,x4,bias,shift); \
+ }
+
+ __m128i rot0_0 = dct_const(stbi__f2f(0.5411961f), stbi__f2f(0.5411961f) + stbi__f2f(-1.847759065f));
+ __m128i rot0_1 = dct_const(stbi__f2f(0.5411961f) + stbi__f2f( 0.765366865f), stbi__f2f(0.5411961f));
+ __m128i rot1_0 = dct_const(stbi__f2f(1.175875602f) + stbi__f2f(-0.899976223f), stbi__f2f(1.175875602f));
+ __m128i rot1_1 = dct_const(stbi__f2f(1.175875602f), stbi__f2f(1.175875602f) + stbi__f2f(-2.562915447f));
+ __m128i rot2_0 = dct_const(stbi__f2f(-1.961570560f) + stbi__f2f( 0.298631336f), stbi__f2f(-1.961570560f));
+ __m128i rot2_1 = dct_const(stbi__f2f(-1.961570560f), stbi__f2f(-1.961570560f) + stbi__f2f( 3.072711026f));
+ __m128i rot3_0 = dct_const(stbi__f2f(-0.390180644f) + stbi__f2f( 2.053119869f), stbi__f2f(-0.390180644f));
+ __m128i rot3_1 = dct_const(stbi__f2f(-0.390180644f), stbi__f2f(-0.390180644f) + stbi__f2f( 1.501321110f));
+
+ // rounding biases in column/row passes, see stbi__idct_block for explanation.
+ __m128i bias_0 = _mm_set1_epi32(512);
+ __m128i bias_1 = _mm_set1_epi32(65536 + (128<<17));
+
+ // load
+ row0 = _mm_load_si128((const __m128i *) (data + 0*8));
+ row1 = _mm_load_si128((const __m128i *) (data + 1*8));
+ row2 = _mm_load_si128((const __m128i *) (data + 2*8));
+ row3 = _mm_load_si128((const __m128i *) (data + 3*8));
+ row4 = _mm_load_si128((const __m128i *) (data + 4*8));
+ row5 = _mm_load_si128((const __m128i *) (data + 5*8));
+ row6 = _mm_load_si128((const __m128i *) (data + 6*8));
+ row7 = _mm_load_si128((const __m128i *) (data + 7*8));
+
+ // column pass
+ dct_pass(bias_0, 10);
+
+ {
+ // 16bit 8x8 transpose pass 1
+ dct_interleave16(row0, row4);
+ dct_interleave16(row1, row5);
+ dct_interleave16(row2, row6);
+ dct_interleave16(row3, row7);
+
+ // transpose pass 2
+ dct_interleave16(row0, row2);
+ dct_interleave16(row1, row3);
+ dct_interleave16(row4, row6);
+ dct_interleave16(row5, row7);
+
+ // transpose pass 3
+ dct_interleave16(row0, row1);
+ dct_interleave16(row2, row3);
+ dct_interleave16(row4, row5);
+ dct_interleave16(row6, row7);
+ }
+
+ // row pass
+ dct_pass(bias_1, 17);
+
+ {
+ // pack
+ __m128i p0 = _mm_packus_epi16(row0, row1); // a0a1a2a3...a7b0b1b2b3...b7
+ __m128i p1 = _mm_packus_epi16(row2, row3);
+ __m128i p2 = _mm_packus_epi16(row4, row5);
+ __m128i p3 = _mm_packus_epi16(row6, row7);
+
+ // 8bit 8x8 transpose pass 1
+ dct_interleave8(p0, p2); // a0e0a1e1...
+ dct_interleave8(p1, p3); // c0g0c1g1...
+
+ // transpose pass 2
+ dct_interleave8(p0, p1); // a0c0e0g0...
+ dct_interleave8(p2, p3); // b0d0f0h0...
+
+ // transpose pass 3
+ dct_interleave8(p0, p2); // a0b0c0d0...
+ dct_interleave8(p1, p3); // a4b4c4d4...
+
+ // store
+ _mm_storel_epi64((__m128i *) out, p0); out += out_stride;
+ _mm_storel_epi64((__m128i *) out, _mm_shuffle_epi32(p0, 0x4e)); out += out_stride;
+ _mm_storel_epi64((__m128i *) out, p2); out += out_stride;
+ _mm_storel_epi64((__m128i *) out, _mm_shuffle_epi32(p2, 0x4e)); out += out_stride;
+ _mm_storel_epi64((__m128i *) out, p1); out += out_stride;
+ _mm_storel_epi64((__m128i *) out, _mm_shuffle_epi32(p1, 0x4e)); out += out_stride;
+ _mm_storel_epi64((__m128i *) out, p3); out += out_stride;
+ _mm_storel_epi64((__m128i *) out, _mm_shuffle_epi32(p3, 0x4e));
+ }
+
+#undef dct_const
+#undef dct_rot
+#undef dct_widen
+#undef dct_wadd
+#undef dct_wsub
+#undef dct_bfly32o
+#undef dct_interleave8
+#undef dct_interleave16
+#undef dct_pass
+}
+
+#endif // STBI_SSE2
+
+#ifdef STBI_NEON
+
+// NEON integer IDCT. should produce bit-identical
+// results to the generic C version.
+static void stbi__idct_simd(stbi_uc *out, int out_stride, short data[64])
+{
+ int16x8_t row0, row1, row2, row3, row4, row5, row6, row7;
+
+ int16x4_t rot0_0 = vdup_n_s16(stbi__f2f(0.5411961f));
+ int16x4_t rot0_1 = vdup_n_s16(stbi__f2f(-1.847759065f));
+ int16x4_t rot0_2 = vdup_n_s16(stbi__f2f( 0.765366865f));
+ int16x4_t rot1_0 = vdup_n_s16(stbi__f2f( 1.175875602f));
+ int16x4_t rot1_1 = vdup_n_s16(stbi__f2f(-0.899976223f));
+ int16x4_t rot1_2 = vdup_n_s16(stbi__f2f(-2.562915447f));
+ int16x4_t rot2_0 = vdup_n_s16(stbi__f2f(-1.961570560f));
+ int16x4_t rot2_1 = vdup_n_s16(stbi__f2f(-0.390180644f));
+ int16x4_t rot3_0 = vdup_n_s16(stbi__f2f( 0.298631336f));
+ int16x4_t rot3_1 = vdup_n_s16(stbi__f2f( 2.053119869f));
+ int16x4_t rot3_2 = vdup_n_s16(stbi__f2f( 3.072711026f));
+ int16x4_t rot3_3 = vdup_n_s16(stbi__f2f( 1.501321110f));
+
+#define dct_long_mul(out, inq, coeff) \
+ int32x4_t out##_l = vmull_s16(vget_low_s16(inq), coeff); \
+ int32x4_t out##_h = vmull_s16(vget_high_s16(inq), coeff)
+
+#define dct_long_mac(out, acc, inq, coeff) \
+ int32x4_t out##_l = vmlal_s16(acc##_l, vget_low_s16(inq), coeff); \
+ int32x4_t out##_h = vmlal_s16(acc##_h, vget_high_s16(inq), coeff)
+
+#define dct_widen(out, inq) \
+ int32x4_t out##_l = vshll_n_s16(vget_low_s16(inq), 12); \
+ int32x4_t out##_h = vshll_n_s16(vget_high_s16(inq), 12)
+
+// wide add
+#define dct_wadd(out, a, b) \
+ int32x4_t out##_l = vaddq_s32(a##_l, b##_l); \
+ int32x4_t out##_h = vaddq_s32(a##_h, b##_h)
+
+// wide sub
+#define dct_wsub(out, a, b) \
+ int32x4_t out##_l = vsubq_s32(a##_l, b##_l); \
+ int32x4_t out##_h = vsubq_s32(a##_h, b##_h)
+
+// butterfly a/b, then shift using "shiftop" by "s" and pack
+#define dct_bfly32o(out0,out1, a,b,shiftop,s) \
+ { \
+ dct_wadd(sum, a, b); \
+ dct_wsub(dif, a, b); \
+ out0 = vcombine_s16(shiftop(sum_l, s), shiftop(sum_h, s)); \
+ out1 = vcombine_s16(shiftop(dif_l, s), shiftop(dif_h, s)); \
+ }
+
+#define dct_pass(shiftop, shift) \
+ { \
+ /* even part */ \
+ int16x8_t sum26 = vaddq_s16(row2, row6); \
+ dct_long_mul(p1e, sum26, rot0_0); \
+ dct_long_mac(t2e, p1e, row6, rot0_1); \
+ dct_long_mac(t3e, p1e, row2, rot0_2); \
+ int16x8_t sum04 = vaddq_s16(row0, row4); \
+ int16x8_t dif04 = vsubq_s16(row0, row4); \
+ dct_widen(t0e, sum04); \
+ dct_widen(t1e, dif04); \
+ dct_wadd(x0, t0e, t3e); \
+ dct_wsub(x3, t0e, t3e); \
+ dct_wadd(x1, t1e, t2e); \
+ dct_wsub(x2, t1e, t2e); \
+ /* odd part */ \
+ int16x8_t sum15 = vaddq_s16(row1, row5); \
+ int16x8_t sum17 = vaddq_s16(row1, row7); \
+ int16x8_t sum35 = vaddq_s16(row3, row5); \
+ int16x8_t sum37 = vaddq_s16(row3, row7); \
+ int16x8_t sumodd = vaddq_s16(sum17, sum35); \
+ dct_long_mul(p5o, sumodd, rot1_0); \
+ dct_long_mac(p1o, p5o, sum17, rot1_1); \
+ dct_long_mac(p2o, p5o, sum35, rot1_2); \
+ dct_long_mul(p3o, sum37, rot2_0); \
+ dct_long_mul(p4o, sum15, rot2_1); \
+ dct_wadd(sump13o, p1o, p3o); \
+ dct_wadd(sump24o, p2o, p4o); \
+ dct_wadd(sump23o, p2o, p3o); \
+ dct_wadd(sump14o, p1o, p4o); \
+ dct_long_mac(x4, sump13o, row7, rot3_0); \
+ dct_long_mac(x5, sump24o, row5, rot3_1); \
+ dct_long_mac(x6, sump23o, row3, rot3_2); \
+ dct_long_mac(x7, sump14o, row1, rot3_3); \
+ dct_bfly32o(row0,row7, x0,x7,shiftop,shift); \
+ dct_bfly32o(row1,row6, x1,x6,shiftop,shift); \
+ dct_bfly32o(row2,row5, x2,x5,shiftop,shift); \
+ dct_bfly32o(row3,row4, x3,x4,shiftop,shift); \
+ }
+
+ // load
+ row0 = vld1q_s16(data + 0*8);
+ row1 = vld1q_s16(data + 1*8);
+ row2 = vld1q_s16(data + 2*8);
+ row3 = vld1q_s16(data + 3*8);
+ row4 = vld1q_s16(data + 4*8);
+ row5 = vld1q_s16(data + 5*8);
+ row6 = vld1q_s16(data + 6*8);
+ row7 = vld1q_s16(data + 7*8);
+
+ // add DC bias
+ row0 = vaddq_s16(row0, vsetq_lane_s16(1024, vdupq_n_s16(0), 0));
+
+ // column pass
+ dct_pass(vrshrn_n_s32, 10);
+
+ // 16bit 8x8 transpose
+ {
+// these three map to a single VTRN.16, VTRN.32, and VSWP, respectively.
+// whether compilers actually get this is another story, sadly.
+#define dct_trn16(x, y) { int16x8x2_t t = vtrnq_s16(x, y); x = t.val[0]; y = t.val[1]; }
+#define dct_trn32(x, y) { int32x4x2_t t = vtrnq_s32(vreinterpretq_s32_s16(x), vreinterpretq_s32_s16(y)); x = vreinterpretq_s16_s32(t.val[0]); y = vreinterpretq_s16_s32(t.val[1]); }
+#define dct_trn64(x, y) { int16x8_t x0 = x; int16x8_t y0 = y; x = vcombine_s16(vget_low_s16(x0), vget_low_s16(y0)); y = vcombine_s16(vget_high_s16(x0), vget_high_s16(y0)); }
+
+ // pass 1
+ dct_trn16(row0, row1); // a0b0a2b2a4b4a6b6
+ dct_trn16(row2, row3);
+ dct_trn16(row4, row5);
+ dct_trn16(row6, row7);
+
+ // pass 2
+ dct_trn32(row0, row2); // a0b0c0d0a4b4c4d4
+ dct_trn32(row1, row3);
+ dct_trn32(row4, row6);
+ dct_trn32(row5, row7);
+
+ // pass 3
+ dct_trn64(row0, row4); // a0b0c0d0e0f0g0h0
+ dct_trn64(row1, row5);
+ dct_trn64(row2, row6);
+ dct_trn64(row3, row7);
+
+#undef dct_trn16
+#undef dct_trn32
+#undef dct_trn64
+ }
+
+ // row pass
+ // vrshrn_n_s32 only supports shifts up to 16, we need
+ // 17. so do a non-rounding shift of 16 first then follow
+ // up with a rounding shift by 1.
+ dct_pass(vshrn_n_s32, 16);
+
+ {
+ // pack and round
+ uint8x8_t p0 = vqrshrun_n_s16(row0, 1);
+ uint8x8_t p1 = vqrshrun_n_s16(row1, 1);
+ uint8x8_t p2 = vqrshrun_n_s16(row2, 1);
+ uint8x8_t p3 = vqrshrun_n_s16(row3, 1);
+ uint8x8_t p4 = vqrshrun_n_s16(row4, 1);
+ uint8x8_t p5 = vqrshrun_n_s16(row5, 1);
+ uint8x8_t p6 = vqrshrun_n_s16(row6, 1);
+ uint8x8_t p7 = vqrshrun_n_s16(row7, 1);
+
+ // again, these can translate into one instruction, but often don't.
+#define dct_trn8_8(x, y) { uint8x8x2_t t = vtrn_u8(x, y); x = t.val[0]; y = t.val[1]; }
+#define dct_trn8_16(x, y) { uint16x4x2_t t = vtrn_u16(vreinterpret_u16_u8(x), vreinterpret_u16_u8(y)); x = vreinterpret_u8_u16(t.val[0]); y = vreinterpret_u8_u16(t.val[1]); }
+#define dct_trn8_32(x, y) { uint32x2x2_t t = vtrn_u32(vreinterpret_u32_u8(x), vreinterpret_u32_u8(y)); x = vreinterpret_u8_u32(t.val[0]); y = vreinterpret_u8_u32(t.val[1]); }
+
+ // sadly can't use interleaved stores here since we only write
+ // 8 bytes to each scan line!
+
+ // 8x8 8-bit transpose pass 1
+ dct_trn8_8(p0, p1);
+ dct_trn8_8(p2, p3);
+ dct_trn8_8(p4, p5);
+ dct_trn8_8(p6, p7);
+
+ // pass 2
+ dct_trn8_16(p0, p2);
+ dct_trn8_16(p1, p3);
+ dct_trn8_16(p4, p6);
+ dct_trn8_16(p5, p7);
+
+ // pass 3
+ dct_trn8_32(p0, p4);
+ dct_trn8_32(p1, p5);
+ dct_trn8_32(p2, p6);
+ dct_trn8_32(p3, p7);
+
+ // store
+ vst1_u8(out, p0); out += out_stride;
+ vst1_u8(out, p1); out += out_stride;
+ vst1_u8(out, p2); out += out_stride;
+ vst1_u8(out, p3); out += out_stride;
+ vst1_u8(out, p4); out += out_stride;
+ vst1_u8(out, p5); out += out_stride;
+ vst1_u8(out, p6); out += out_stride;
+ vst1_u8(out, p7);
+
+#undef dct_trn8_8
+#undef dct_trn8_16
+#undef dct_trn8_32
+ }
+
+#undef dct_long_mul
+#undef dct_long_mac
+#undef dct_widen
+#undef dct_wadd
+#undef dct_wsub
+#undef dct_bfly32o
+#undef dct_pass
+}
+
+#endif // STBI_NEON
+
+#define STBI__MARKER_none 0xff
+// if there's a pending marker from the entropy stream, return that
+// otherwise, fetch from the stream and get a marker. if there's no
+// marker, return 0xff, which is never a valid marker value
+static stbi_uc stbi__get_marker(stbi__jpeg *j)
+{
+ stbi_uc x;
+ if (j->marker != STBI__MARKER_none) { x = j->marker; j->marker = STBI__MARKER_none; return x; }
+ x = stbi__get8(j->s);
+ if (x != 0xff) return STBI__MARKER_none;
+ while (x == 0xff)
+ x = stbi__get8(j->s); // consume repeated 0xff fill bytes
+ return x;
+}
+
+// in each scan, we'll have scan_n components, and the order
+// of the components is specified by order[]
+#define STBI__RESTART(x) ((x) >= 0xd0 && (x) <= 0xd7)
+
+// after a restart interval, stbi__jpeg_reset the entropy decoder and
+// the dc prediction
+static void stbi__jpeg_reset(stbi__jpeg *j)
+{
+ j->code_bits = 0;
+ j->code_buffer = 0;
+ j->nomore = 0;
+ j->img_comp[0].dc_pred = j->img_comp[1].dc_pred = j->img_comp[2].dc_pred = j->img_comp[3].dc_pred = 0;
+ j->marker = STBI__MARKER_none;
+ j->todo = j->restart_interval ? j->restart_interval : 0x7fffffff;
+ j->eob_run = 0;
+ // no more than 1<<31 MCUs if no restart_interal? that's plenty safe,
+ // since we don't even allow 1<<30 pixels
+}
+
+static int stbi__parse_entropy_coded_data(stbi__jpeg *z)
+{
+ stbi__jpeg_reset(z);
+ if (!z->progressive) {
+ if (z->scan_n == 1) {
+ int i,j;
+ STBI_SIMD_ALIGN(short, data[64]);
+ int n = z->order[0];
+ // non-interleaved data, we just need to process one block at a time,
+ // in trivial scanline order
+ // number of blocks to do just depends on how many actual "pixels" this
+ // component has, independent of interleaved MCU blocking and such
+ int w = (z->img_comp[n].x+7) >> 3;
+ int h = (z->img_comp[n].y+7) >> 3;
+ for (j=0; j < h; ++j) {
+ for (i=0; i < w; ++i) {
+ int ha = z->img_comp[n].ha;
+ if (!stbi__jpeg_decode_block(z, data, z->huff_dc+z->img_comp[n].hd, z->huff_ac+ha, z->fast_ac[ha], n, z->dequant[z->img_comp[n].tq])) return 0;
+ z->idct_block_kernel(z->img_comp[n].data+z->img_comp[n].w2*j*8+i*8, z->img_comp[n].w2, data);
+ // every data block is an MCU, so countdown the restart interval
+ if (--z->todo <= 0) {
+ if (z->code_bits < 24) stbi__grow_buffer_unsafe(z);
+ // if it's NOT a restart, then just bail, so we get corrupt data
+ // rather than no data
+ if (!STBI__RESTART(z->marker)) return 1;
+ stbi__jpeg_reset(z);
+ }
+ }
+ }
+ return 1;
+ } else { // interleaved
+ int i,j,k,x,y;
+ STBI_SIMD_ALIGN(short, data[64]);
+ for (j=0; j < z->img_mcu_y; ++j) {
+ for (i=0; i < z->img_mcu_x; ++i) {
+ // scan an interleaved mcu... process scan_n components in order
+ for (k=0; k < z->scan_n; ++k) {
+ int n = z->order[k];
+ // scan out an mcu's worth of this component; that's just determined
+ // by the basic H and V specified for the component
+ for (y=0; y < z->img_comp[n].v; ++y) {
+ for (x=0; x < z->img_comp[n].h; ++x) {
+ int x2 = (i*z->img_comp[n].h + x)*8;
+ int y2 = (j*z->img_comp[n].v + y)*8;
+ int ha = z->img_comp[n].ha;
+ if (!stbi__jpeg_decode_block(z, data, z->huff_dc+z->img_comp[n].hd, z->huff_ac+ha, z->fast_ac[ha], n, z->dequant[z->img_comp[n].tq])) return 0;
+ z->idct_block_kernel(z->img_comp[n].data+z->img_comp[n].w2*y2+x2, z->img_comp[n].w2, data);
+ }
+ }
+ }
+ // after all interleaved components, that's an interleaved MCU,
+ // so now count down the restart interval
+ if (--z->todo <= 0) {
+ if (z->code_bits < 24) stbi__grow_buffer_unsafe(z);
+ if (!STBI__RESTART(z->marker)) return 1;
+ stbi__jpeg_reset(z);
+ }
+ }
+ }
+ return 1;
+ }
+ } else {
+ if (z->scan_n == 1) {
+ int i,j;
+ int n = z->order[0];
+ // non-interleaved data, we just need to process one block at a time,
+ // in trivial scanline order
+ // number of blocks to do just depends on how many actual "pixels" this
+ // component has, independent of interleaved MCU blocking and such
+ int w = (z->img_comp[n].x+7) >> 3;
+ int h = (z->img_comp[n].y+7) >> 3;
+ for (j=0; j < h; ++j) {
+ for (i=0; i < w; ++i) {
+ short *data = z->img_comp[n].coeff + 64 * (i + j * z->img_comp[n].coeff_w);
+ if (z->spec_start == 0) {
+ if (!stbi__jpeg_decode_block_prog_dc(z, data, &z->huff_dc[z->img_comp[n].hd], n))
+ return 0;
+ } else {
+ int ha = z->img_comp[n].ha;
+ if (!stbi__jpeg_decode_block_prog_ac(z, data, &z->huff_ac[ha], z->fast_ac[ha]))
+ return 0;
+ }
+ // every data block is an MCU, so countdown the restart interval
+ if (--z->todo <= 0) {
+ if (z->code_bits < 24) stbi__grow_buffer_unsafe(z);
+ if (!STBI__RESTART(z->marker)) return 1;
+ stbi__jpeg_reset(z);
+ }
+ }
+ }
+ return 1;
+ } else { // interleaved
+ int i,j,k,x,y;
+ for (j=0; j < z->img_mcu_y; ++j) {
+ for (i=0; i < z->img_mcu_x; ++i) {
+ // scan an interleaved mcu... process scan_n components in order
+ for (k=0; k < z->scan_n; ++k) {
+ int n = z->order[k];
+ // scan out an mcu's worth of this component; that's just determined
+ // by the basic H and V specified for the component
+ for (y=0; y < z->img_comp[n].v; ++y) {
+ for (x=0; x < z->img_comp[n].h; ++x) {
+ int x2 = (i*z->img_comp[n].h + x);
+ int y2 = (j*z->img_comp[n].v + y);
+ short *data = z->img_comp[n].coeff + 64 * (x2 + y2 * z->img_comp[n].coeff_w);
+ if (!stbi__jpeg_decode_block_prog_dc(z, data, &z->huff_dc[z->img_comp[n].hd], n))
+ return 0;
+ }
+ }
+ }
+ // after all interleaved components, that's an interleaved MCU,
+ // so now count down the restart interval
+ if (--z->todo <= 0) {
+ if (z->code_bits < 24) stbi__grow_buffer_unsafe(z);
+ if (!STBI__RESTART(z->marker)) return 1;
+ stbi__jpeg_reset(z);
+ }
+ }
+ }
+ return 1;
+ }
+ }
+}
+
+static void stbi__jpeg_dequantize(short *data, stbi__uint16 *dequant)
+{
+ int i;
+ for (i=0; i < 64; ++i)
+ data[i] *= dequant[i];
+}
+
+static void stbi__jpeg_finish(stbi__jpeg *z)
+{
+ if (z->progressive) {
+ // dequantize and idct the data
+ int i,j,n;
+ for (n=0; n < z->s->img_n; ++n) {
+ int w = (z->img_comp[n].x+7) >> 3;
+ int h = (z->img_comp[n].y+7) >> 3;
+ for (j=0; j < h; ++j) {
+ for (i=0; i < w; ++i) {
+ short *data = z->img_comp[n].coeff + 64 * (i + j * z->img_comp[n].coeff_w);
+ stbi__jpeg_dequantize(data, z->dequant[z->img_comp[n].tq]);
+ z->idct_block_kernel(z->img_comp[n].data+z->img_comp[n].w2*j*8+i*8, z->img_comp[n].w2, data);
+ }
+ }
+ }
+ }
+}
+
+static int stbi__process_marker(stbi__jpeg *z, int m)
+{
+ int L;
+ switch (m) {
+ case STBI__MARKER_none: // no marker found
+ return stbi__err("expected marker","Corrupt JPEG");
+
+ case 0xDD: // DRI - specify restart interval
+ if (stbi__get16be(z->s) != 4) return stbi__err("bad DRI len","Corrupt JPEG");
+ z->restart_interval = stbi__get16be(z->s);
+ return 1;
+
+ case 0xDB: // DQT - define quantization table
+ L = stbi__get16be(z->s)-2;
+ while (L > 0) {
+ int q = stbi__get8(z->s);
+ int p = q >> 4, sixteen = (p != 0);
+ int t = q & 15,i;
+ if (p != 0 && p != 1) return stbi__err("bad DQT type","Corrupt JPEG");
+ if (t > 3) return stbi__err("bad DQT table","Corrupt JPEG");
+
+ for (i=0; i < 64; ++i)
+ z->dequant[t][stbi__jpeg_dezigzag[i]] = (stbi__uint16)(sixteen ? stbi__get16be(z->s) : stbi__get8(z->s));
+ L -= (sixteen ? 129 : 65);
+ }
+ return L==0;
+
+ case 0xC4: // DHT - define huffman table
+ L = stbi__get16be(z->s)-2;
+ while (L > 0) {
+ stbi_uc *v;
+ int sizes[16],i,n=0;
+ int q = stbi__get8(z->s);
+ int tc = q >> 4;
+ int th = q & 15;
+ if (tc > 1 || th > 3) return stbi__err("bad DHT header","Corrupt JPEG");
+ for (i=0; i < 16; ++i) {
+ sizes[i] = stbi__get8(z->s);
+ n += sizes[i];
+ }
+ if(n > 256) return stbi__err("bad DHT header","Corrupt JPEG"); // Loop over i < n would write past end of values!
+ L -= 17;
+ if (tc == 0) {
+ if (!stbi__build_huffman(z->huff_dc+th, sizes)) return 0;
+ v = z->huff_dc[th].values;
+ } else {
+ if (!stbi__build_huffman(z->huff_ac+th, sizes)) return 0;
+ v = z->huff_ac[th].values;
+ }
+ for (i=0; i < n; ++i)
+ v[i] = stbi__get8(z->s);
+ if (tc != 0)
+ stbi__build_fast_ac(z->fast_ac[th], z->huff_ac + th);
+ L -= n;
+ }
+ return L==0;
+ }
+
+ // check for comment block or APP blocks
+ if ((m >= 0xE0 && m <= 0xEF) || m == 0xFE) {
+ L = stbi__get16be(z->s);
+ if (L < 2) {
+ if (m == 0xFE)
+ return stbi__err("bad COM len","Corrupt JPEG");
+ else
+ return stbi__err("bad APP len","Corrupt JPEG");
+ }
+ L -= 2;
+
+ if (m == 0xE0 && L >= 5) { // JFIF APP0 segment
+ static const unsigned char tag[5] = {'J','F','I','F','\0'};
+ int ok = 1;
+ int i;
+ for (i=0; i < 5; ++i)
+ if (stbi__get8(z->s) != tag[i])
+ ok = 0;
+ L -= 5;
+ if (ok)
+ z->jfif = 1;
+ } else if (m == 0xEE && L >= 12) { // Adobe APP14 segment
+ static const unsigned char tag[6] = {'A','d','o','b','e','\0'};
+ int ok = 1;
+ int i;
+ for (i=0; i < 6; ++i)
+ if (stbi__get8(z->s) != tag[i])
+ ok = 0;
+ L -= 6;
+ if (ok) {
+ stbi__get8(z->s); // version
+ stbi__get16be(z->s); // flags0
+ stbi__get16be(z->s); // flags1
+ z->app14_color_transform = stbi__get8(z->s); // color transform
+ L -= 6;
+ }
+ }
+
+ stbi__skip(z->s, L);
+ return 1;
+ }
+
+ return stbi__err("unknown marker","Corrupt JPEG");
+}
+
+// after we see SOS
+static int stbi__process_scan_header(stbi__jpeg *z)
+{
+ int i;
+ int Ls = stbi__get16be(z->s);
+ z->scan_n = stbi__get8(z->s);
+ if (z->scan_n < 1 || z->scan_n > 4 || z->scan_n > (int) z->s->img_n) return stbi__err("bad SOS component count","Corrupt JPEG");
+ if (Ls != 6+2*z->scan_n) return stbi__err("bad SOS len","Corrupt JPEG");
+ for (i=0; i < z->scan_n; ++i) {
+ int id = stbi__get8(z->s), which;
+ int q = stbi__get8(z->s);
+ for (which = 0; which < z->s->img_n; ++which)
+ if (z->img_comp[which].id == id)
+ break;
+ if (which == z->s->img_n) return 0; // no match
+ z->img_comp[which].hd = q >> 4; if (z->img_comp[which].hd > 3) return stbi__err("bad DC huff","Corrupt JPEG");
+ z->img_comp[which].ha = q & 15; if (z->img_comp[which].ha > 3) return stbi__err("bad AC huff","Corrupt JPEG");
+ z->order[i] = which;
+ }
+
+ {
+ int aa;
+ z->spec_start = stbi__get8(z->s);
+ z->spec_end = stbi__get8(z->s); // should be 63, but might be 0
+ aa = stbi__get8(z->s);
+ z->succ_high = (aa >> 4);
+ z->succ_low = (aa & 15);
+ if (z->progressive) {
+ if (z->spec_start > 63 || z->spec_end > 63 || z->spec_start > z->spec_end || z->succ_high > 13 || z->succ_low > 13)
+ return stbi__err("bad SOS", "Corrupt JPEG");
+ } else {
+ if (z->spec_start != 0) return stbi__err("bad SOS","Corrupt JPEG");
+ if (z->succ_high != 0 || z->succ_low != 0) return stbi__err("bad SOS","Corrupt JPEG");
+ z->spec_end = 63;
+ }
+ }
+
+ return 1;
+}
+
+static int stbi__free_jpeg_components(stbi__jpeg *z, int ncomp, int why)
+{
+ int i;
+ for (i=0; i < ncomp; ++i) {
+ if (z->img_comp[i].raw_data) {
+ STBI_FREE(z->img_comp[i].raw_data);
+ z->img_comp[i].raw_data = NULL;
+ z->img_comp[i].data = NULL;
+ }
+ if (z->img_comp[i].raw_coeff) {
+ STBI_FREE(z->img_comp[i].raw_coeff);
+ z->img_comp[i].raw_coeff = 0;
+ z->img_comp[i].coeff = 0;
+ }
+ if (z->img_comp[i].linebuf) {
+ STBI_FREE(z->img_comp[i].linebuf);
+ z->img_comp[i].linebuf = NULL;
+ }
+ }
+ return why;
+}
+
+static int stbi__process_frame_header(stbi__jpeg *z, int scan)
+{
+ stbi__context *s = z->s;
+ int Lf,p,i,q, h_max=1,v_max=1,c;
+ Lf = stbi__get16be(s); if (Lf < 11) return stbi__err("bad SOF len","Corrupt JPEG"); // JPEG
+ p = stbi__get8(s); if (p != 8) return stbi__err("only 8-bit","JPEG format not supported: 8-bit only"); // JPEG baseline
+ s->img_y = stbi__get16be(s); if (s->img_y == 0) return stbi__err("no header height", "JPEG format not supported: delayed height"); // Legal, but we don't handle it--but neither does IJG
+ s->img_x = stbi__get16be(s); if (s->img_x == 0) return stbi__err("0 width","Corrupt JPEG"); // JPEG requires
+ if (s->img_y > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)");
+ if (s->img_x > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)");
+ c = stbi__get8(s);
+ if (c != 3 && c != 1 && c != 4) return stbi__err("bad component count","Corrupt JPEG");
+ s->img_n = c;
+ for (i=0; i < c; ++i) {
+ z->img_comp[i].data = NULL;
+ z->img_comp[i].linebuf = NULL;
+ }
+
+ if (Lf != 8+3*s->img_n) return stbi__err("bad SOF len","Corrupt JPEG");
+
+ z->rgb = 0;
+ for (i=0; i < s->img_n; ++i) {
+ static const unsigned char rgb[3] = { 'R', 'G', 'B' };
+ z->img_comp[i].id = stbi__get8(s);
+ if (s->img_n == 3 && z->img_comp[i].id == rgb[i])
+ ++z->rgb;
+ q = stbi__get8(s);
+ z->img_comp[i].h = (q >> 4); if (!z->img_comp[i].h || z->img_comp[i].h > 4) return stbi__err("bad H","Corrupt JPEG");
+ z->img_comp[i].v = q & 15; if (!z->img_comp[i].v || z->img_comp[i].v > 4) return stbi__err("bad V","Corrupt JPEG");
+ z->img_comp[i].tq = stbi__get8(s); if (z->img_comp[i].tq > 3) return stbi__err("bad TQ","Corrupt JPEG");
+ }
+
+ if (scan != STBI__SCAN_load) return 1;
+
+ if (!stbi__mad3sizes_valid(s->img_x, s->img_y, s->img_n, 0)) return stbi__err("too large", "Image too large to decode");
+
+ for (i=0; i < s->img_n; ++i) {
+ if (z->img_comp[i].h > h_max) h_max = z->img_comp[i].h;
+ if (z->img_comp[i].v > v_max) v_max = z->img_comp[i].v;
+ }
+
+ // check that plane subsampling factors are integer ratios; our resamplers can't deal with fractional ratios
+ // and I've never seen a non-corrupted JPEG file actually use them
+ for (i=0; i < s->img_n; ++i) {
+ if (h_max % z->img_comp[i].h != 0) return stbi__err("bad H","Corrupt JPEG");
+ if (v_max % z->img_comp[i].v != 0) return stbi__err("bad V","Corrupt JPEG");
+ }
+
+ // compute interleaved mcu info
+ z->img_h_max = h_max;
+ z->img_v_max = v_max;
+ z->img_mcu_w = h_max * 8;
+ z->img_mcu_h = v_max * 8;
+ // these sizes can't be more than 17 bits
+ z->img_mcu_x = (s->img_x + z->img_mcu_w-1) / z->img_mcu_w;
+ z->img_mcu_y = (s->img_y + z->img_mcu_h-1) / z->img_mcu_h;
+
+ for (i=0; i < s->img_n; ++i) {
+ // number of effective pixels (e.g. for non-interleaved MCU)
+ z->img_comp[i].x = (s->img_x * z->img_comp[i].h + h_max-1) / h_max;
+ z->img_comp[i].y = (s->img_y * z->img_comp[i].v + v_max-1) / v_max;
+ // to simplify generation, we'll allocate enough memory to decode
+ // the bogus oversized data from using interleaved MCUs and their
+ // big blocks (e.g. a 16x16 iMCU on an image of width 33); we won't
+ // discard the extra data until colorspace conversion
+ //
+ // img_mcu_x, img_mcu_y: <=17 bits; comp[i].h and .v are <=4 (checked earlier)
+ // so these muls can't overflow with 32-bit ints (which we require)
+ z->img_comp[i].w2 = z->img_mcu_x * z->img_comp[i].h * 8;
+ z->img_comp[i].h2 = z->img_mcu_y * z->img_comp[i].v * 8;
+ z->img_comp[i].coeff = 0;
+ z->img_comp[i].raw_coeff = 0;
+ z->img_comp[i].linebuf = NULL;
+ z->img_comp[i].raw_data = stbi__malloc_mad2(z->img_comp[i].w2, z->img_comp[i].h2, 15);
+ if (z->img_comp[i].raw_data == NULL)
+ return stbi__free_jpeg_components(z, i+1, stbi__err("outofmem", "Out of memory"));
+ // align blocks for idct using mmx/sse
+ z->img_comp[i].data = (stbi_uc*) (((size_t) z->img_comp[i].raw_data + 15) & ~15);
+ if (z->progressive) {
+ // w2, h2 are multiples of 8 (see above)
+ z->img_comp[i].coeff_w = z->img_comp[i].w2 / 8;
+ z->img_comp[i].coeff_h = z->img_comp[i].h2 / 8;
+ z->img_comp[i].raw_coeff = stbi__malloc_mad3(z->img_comp[i].w2, z->img_comp[i].h2, sizeof(short), 15);
+ if (z->img_comp[i].raw_coeff == NULL)
+ return stbi__free_jpeg_components(z, i+1, stbi__err("outofmem", "Out of memory"));
+ z->img_comp[i].coeff = (short*) (((size_t) z->img_comp[i].raw_coeff + 15) & ~15);
+ }
+ }
+
+ return 1;
+}
+
+// use comparisons since in some cases we handle more than one case (e.g. SOF)
+#define stbi__DNL(x) ((x) == 0xdc)
+#define stbi__SOI(x) ((x) == 0xd8)
+#define stbi__EOI(x) ((x) == 0xd9)
+#define stbi__SOF(x) ((x) == 0xc0 || (x) == 0xc1 || (x) == 0xc2)
+#define stbi__SOS(x) ((x) == 0xda)
+
+#define stbi__SOF_progressive(x) ((x) == 0xc2)
+
+static int stbi__decode_jpeg_header(stbi__jpeg *z, int scan)
+{
+ int m;
+ z->jfif = 0;
+ z->app14_color_transform = -1; // valid values are 0,1,2
+ z->marker = STBI__MARKER_none; // initialize cached marker to empty
+ m = stbi__get_marker(z);
+ if (!stbi__SOI(m)) return stbi__err("no SOI","Corrupt JPEG");
+ if (scan == STBI__SCAN_type) return 1;
+ m = stbi__get_marker(z);
+ while (!stbi__SOF(m)) {
+ if (!stbi__process_marker(z,m)) return 0;
+ m = stbi__get_marker(z);
+ while (m == STBI__MARKER_none) {
+ // some files have extra padding after their blocks, so ok, we'll scan
+ if (stbi__at_eof(z->s)) return stbi__err("no SOF", "Corrupt JPEG");
+ m = stbi__get_marker(z);
+ }
+ }
+ z->progressive = stbi__SOF_progressive(m);
+ if (!stbi__process_frame_header(z, scan)) return 0;
+ return 1;
+}
+
+static stbi_uc stbi__skip_jpeg_junk_at_end(stbi__jpeg *j)
+{
+ // some JPEGs have junk at end, skip over it but if we find what looks
+ // like a valid marker, resume there
+ while (!stbi__at_eof(j->s)) {
+ stbi_uc x = stbi__get8(j->s);
+ while (x == 0xff) { // might be a marker
+ if (stbi__at_eof(j->s)) return STBI__MARKER_none;
+ x = stbi__get8(j->s);
+ if (x != 0x00 && x != 0xff) {
+ // not a stuffed zero or lead-in to another marker, looks
+ // like an actual marker, return it
+ return x;
+ }
+ // stuffed zero has x=0 now which ends the loop, meaning we go
+ // back to regular scan loop.
+ // repeated 0xff keeps trying to read the next byte of the marker.
+ }
+ }
+ return STBI__MARKER_none;
+}
+
+// decode image to YCbCr format
+static int stbi__decode_jpeg_image(stbi__jpeg *j)
+{
+ int m;
+ for (m = 0; m < 4; m++) {
+ j->img_comp[m].raw_data = NULL;
+ j->img_comp[m].raw_coeff = NULL;
+ }
+ j->restart_interval = 0;
+ if (!stbi__decode_jpeg_header(j, STBI__SCAN_load)) return 0;
+ m = stbi__get_marker(j);
+ while (!stbi__EOI(m)) {
+ if (stbi__SOS(m)) {
+ if (!stbi__process_scan_header(j)) return 0;
+ if (!stbi__parse_entropy_coded_data(j)) return 0;
+ if (j->marker == STBI__MARKER_none ) {
+ j->marker = stbi__skip_jpeg_junk_at_end(j);
+ // if we reach eof without hitting a marker, stbi__get_marker() below will fail and we'll eventually return 0
+ }
+ m = stbi__get_marker(j);
+ if (STBI__RESTART(m))
+ m = stbi__get_marker(j);
+ } else if (stbi__DNL(m)) {
+ int Ld = stbi__get16be(j->s);
+ stbi__uint32 NL = stbi__get16be(j->s);
+ if (Ld != 4) return stbi__err("bad DNL len", "Corrupt JPEG");
+ if (NL != j->s->img_y) return stbi__err("bad DNL height", "Corrupt JPEG");
+ m = stbi__get_marker(j);
+ } else {
+ if (!stbi__process_marker(j, m)) return 1;
+ m = stbi__get_marker(j);
+ }
+ }
+ if (j->progressive)
+ stbi__jpeg_finish(j);
+ return 1;
+}
+
+// static jfif-centered resampling (across block boundaries)
+
+typedef stbi_uc *(*resample_row_func)(stbi_uc *out, stbi_uc *in0, stbi_uc *in1,
+ int w, int hs);
+
+#define stbi__div4(x) ((stbi_uc) ((x) >> 2))
+
+static stbi_uc *resample_row_1(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs)
+{
+ STBI_NOTUSED(out);
+ STBI_NOTUSED(in_far);
+ STBI_NOTUSED(w);
+ STBI_NOTUSED(hs);
+ return in_near;
+}
+
+static stbi_uc* stbi__resample_row_v_2(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs)
+{
+ // need to generate two samples vertically for every one in input
+ int i;
+ STBI_NOTUSED(hs);
+ for (i=0; i < w; ++i)
+ out[i] = stbi__div4(3*in_near[i] + in_far[i] + 2);
+ return out;
+}
+
+static stbi_uc* stbi__resample_row_h_2(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs)
+{
+ // need to generate two samples horizontally for every one in input
+ int i;
+ stbi_uc *input = in_near;
+
+ if (w == 1) {
+ // if only one sample, can't do any interpolation
+ out[0] = out[1] = input[0];
+ return out;
+ }
+
+ out[0] = input[0];
+ out[1] = stbi__div4(input[0]*3 + input[1] + 2);
+ for (i=1; i < w-1; ++i) {
+ int n = 3*input[i]+2;
+ out[i*2+0] = stbi__div4(n+input[i-1]);
+ out[i*2+1] = stbi__div4(n+input[i+1]);
+ }
+ out[i*2+0] = stbi__div4(input[w-2]*3 + input[w-1] + 2);
+ out[i*2+1] = input[w-1];
+
+ STBI_NOTUSED(in_far);
+ STBI_NOTUSED(hs);
+
+ return out;
+}
+
+#define stbi__div16(x) ((stbi_uc) ((x) >> 4))
+
+static stbi_uc *stbi__resample_row_hv_2(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs)
+{
+ // need to generate 2x2 samples for every one in input
+ int i,t0,t1;
+ if (w == 1) {
+ out[0] = out[1] = stbi__div4(3*in_near[0] + in_far[0] + 2);
+ return out;
+ }
+
+ t1 = 3*in_near[0] + in_far[0];
+ out[0] = stbi__div4(t1+2);
+ for (i=1; i < w; ++i) {
+ t0 = t1;
+ t1 = 3*in_near[i]+in_far[i];
+ out[i*2-1] = stbi__div16(3*t0 + t1 + 8);
+ out[i*2 ] = stbi__div16(3*t1 + t0 + 8);
+ }
+ out[w*2-1] = stbi__div4(t1+2);
+
+ STBI_NOTUSED(hs);
+
+ return out;
+}
+
+#if defined(STBI_SSE2) || defined(STBI_NEON)
+static stbi_uc *stbi__resample_row_hv_2_simd(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs)
+{
+ // need to generate 2x2 samples for every one in input
+ int i=0,t0,t1;
+
+ if (w == 1) {
+ out[0] = out[1] = stbi__div4(3*in_near[0] + in_far[0] + 2);
+ return out;
+ }
+
+ t1 = 3*in_near[0] + in_far[0];
+ // process groups of 8 pixels for as long as we can.
+ // note we can't handle the last pixel in a row in this loop
+ // because we need to handle the filter boundary conditions.
+ for (; i < ((w-1) & ~7); i += 8) {
+#if defined(STBI_SSE2)
+ // load and perform the vertical filtering pass
+ // this uses 3*x + y = 4*x + (y - x)
+ __m128i zero = _mm_setzero_si128();
+ __m128i farb = _mm_loadl_epi64((__m128i *) (in_far + i));
+ __m128i nearb = _mm_loadl_epi64((__m128i *) (in_near + i));
+ __m128i farw = _mm_unpacklo_epi8(farb, zero);
+ __m128i nearw = _mm_unpacklo_epi8(nearb, zero);
+ __m128i diff = _mm_sub_epi16(farw, nearw);
+ __m128i nears = _mm_slli_epi16(nearw, 2);
+ __m128i curr = _mm_add_epi16(nears, diff); // current row
+
+ // horizontal filter works the same based on shifted vers of current
+ // row. "prev" is current row shifted right by 1 pixel; we need to
+ // insert the previous pixel value (from t1).
+ // "next" is current row shifted left by 1 pixel, with first pixel
+ // of next block of 8 pixels added in.
+ __m128i prv0 = _mm_slli_si128(curr, 2);
+ __m128i nxt0 = _mm_srli_si128(curr, 2);
+ __m128i prev = _mm_insert_epi16(prv0, t1, 0);
+ __m128i next = _mm_insert_epi16(nxt0, 3*in_near[i+8] + in_far[i+8], 7);
+
+ // horizontal filter, polyphase implementation since it's convenient:
+ // even pixels = 3*cur + prev = cur*4 + (prev - cur)
+ // odd pixels = 3*cur + next = cur*4 + (next - cur)
+ // note the shared term.
+ __m128i bias = _mm_set1_epi16(8);
+ __m128i curs = _mm_slli_epi16(curr, 2);
+ __m128i prvd = _mm_sub_epi16(prev, curr);
+ __m128i nxtd = _mm_sub_epi16(next, curr);
+ __m128i curb = _mm_add_epi16(curs, bias);
+ __m128i even = _mm_add_epi16(prvd, curb);
+ __m128i odd = _mm_add_epi16(nxtd, curb);
+
+ // interleave even and odd pixels, then undo scaling.
+ __m128i int0 = _mm_unpacklo_epi16(even, odd);
+ __m128i int1 = _mm_unpackhi_epi16(even, odd);
+ __m128i de0 = _mm_srli_epi16(int0, 4);
+ __m128i de1 = _mm_srli_epi16(int1, 4);
+
+ // pack and write output
+ __m128i outv = _mm_packus_epi16(de0, de1);
+ _mm_storeu_si128((__m128i *) (out + i*2), outv);
+#elif defined(STBI_NEON)
+ // load and perform the vertical filtering pass
+ // this uses 3*x + y = 4*x + (y - x)
+ uint8x8_t farb = vld1_u8(in_far + i);
+ uint8x8_t nearb = vld1_u8(in_near + i);
+ int16x8_t diff = vreinterpretq_s16_u16(vsubl_u8(farb, nearb));
+ int16x8_t nears = vreinterpretq_s16_u16(vshll_n_u8(nearb, 2));
+ int16x8_t curr = vaddq_s16(nears, diff); // current row
+
+ // horizontal filter works the same based on shifted vers of current
+ // row. "prev" is current row shifted right by 1 pixel; we need to
+ // insert the previous pixel value (from t1).
+ // "next" is current row shifted left by 1 pixel, with first pixel
+ // of next block of 8 pixels added in.
+ int16x8_t prv0 = vextq_s16(curr, curr, 7);
+ int16x8_t nxt0 = vextq_s16(curr, curr, 1);
+ int16x8_t prev = vsetq_lane_s16(t1, prv0, 0);
+ int16x8_t next = vsetq_lane_s16(3*in_near[i+8] + in_far[i+8], nxt0, 7);
+
+ // horizontal filter, polyphase implementation since it's convenient:
+ // even pixels = 3*cur + prev = cur*4 + (prev - cur)
+ // odd pixels = 3*cur + next = cur*4 + (next - cur)
+ // note the shared term.
+ int16x8_t curs = vshlq_n_s16(curr, 2);
+ int16x8_t prvd = vsubq_s16(prev, curr);
+ int16x8_t nxtd = vsubq_s16(next, curr);
+ int16x8_t even = vaddq_s16(curs, prvd);
+ int16x8_t odd = vaddq_s16(curs, nxtd);
+
+ // undo scaling and round, then store with even/odd phases interleaved
+ uint8x8x2_t o;
+ o.val[0] = vqrshrun_n_s16(even, 4);
+ o.val[1] = vqrshrun_n_s16(odd, 4);
+ vst2_u8(out + i*2, o);
+#endif
+
+ // "previous" value for next iter
+ t1 = 3*in_near[i+7] + in_far[i+7];
+ }
+
+ t0 = t1;
+ t1 = 3*in_near[i] + in_far[i];
+ out[i*2] = stbi__div16(3*t1 + t0 + 8);
+
+ for (++i; i < w; ++i) {
+ t0 = t1;
+ t1 = 3*in_near[i]+in_far[i];
+ out[i*2-1] = stbi__div16(3*t0 + t1 + 8);
+ out[i*2 ] = stbi__div16(3*t1 + t0 + 8);
+ }
+ out[w*2-1] = stbi__div4(t1+2);
+
+ STBI_NOTUSED(hs);
+
+ return out;
+}
+#endif
+
+static stbi_uc *stbi__resample_row_generic(stbi_uc *out, stbi_uc *in_near, stbi_uc *in_far, int w, int hs)
+{
+ // resample with nearest-neighbor
+ int i,j;
+ STBI_NOTUSED(in_far);
+ for (i=0; i < w; ++i)
+ for (j=0; j < hs; ++j)
+ out[i*hs+j] = in_near[i];
+ return out;
+}
+
+// this is a reduced-precision calculation of YCbCr-to-RGB introduced
+// to make sure the code produces the same results in both SIMD and scalar
+#define stbi__float2fixed(x) (((int) ((x) * 4096.0f + 0.5f)) << 8)
+static void stbi__YCbCr_to_RGB_row(stbi_uc *out, const stbi_uc *y, const stbi_uc *pcb, const stbi_uc *pcr, int count, int step)
+{
+ int i;
+ for (i=0; i < count; ++i) {
+ int y_fixed = (y[i] << 20) + (1<<19); // rounding
+ int r,g,b;
+ int cr = pcr[i] - 128;
+ int cb = pcb[i] - 128;
+ r = y_fixed + cr* stbi__float2fixed(1.40200f);
+ g = y_fixed + (cr*-stbi__float2fixed(0.71414f)) + ((cb*-stbi__float2fixed(0.34414f)) & 0xffff0000);
+ b = y_fixed + cb* stbi__float2fixed(1.77200f);
+ r >>= 20;
+ g >>= 20;
+ b >>= 20;
+ if ((unsigned) r > 255) { if (r < 0) r = 0; else r = 255; }
+ if ((unsigned) g > 255) { if (g < 0) g = 0; else g = 255; }
+ if ((unsigned) b > 255) { if (b < 0) b = 0; else b = 255; }
+ out[0] = (stbi_uc)r;
+ out[1] = (stbi_uc)g;
+ out[2] = (stbi_uc)b;
+ out[3] = 255;
+ out += step;
+ }
+}
+
+#if defined(STBI_SSE2) || defined(STBI_NEON)
+static void stbi__YCbCr_to_RGB_simd(stbi_uc *out, stbi_uc const *y, stbi_uc const *pcb, stbi_uc const *pcr, int count, int step)
+{
+ int i = 0;
+
+#ifdef STBI_SSE2
+ // step == 3 is pretty ugly on the final interleave, and i'm not convinced
+ // it's useful in practice (you wouldn't use it for textures, for example).
+ // so just accelerate step == 4 case.
+ if (step == 4) {
+ // this is a fairly straightforward implementation and not super-optimized.
+ __m128i signflip = _mm_set1_epi8(-0x80);
+ __m128i cr_const0 = _mm_set1_epi16( (short) ( 1.40200f*4096.0f+0.5f));
+ __m128i cr_const1 = _mm_set1_epi16( - (short) ( 0.71414f*4096.0f+0.5f));
+ __m128i cb_const0 = _mm_set1_epi16( - (short) ( 0.34414f*4096.0f+0.5f));
+ __m128i cb_const1 = _mm_set1_epi16( (short) ( 1.77200f*4096.0f+0.5f));
+ __m128i y_bias = _mm_set1_epi8((char) (unsigned char) 128);
+ __m128i xw = _mm_set1_epi16(255); // alpha channel
+
+ for (; i+7 < count; i += 8) {
+ // load
+ __m128i y_bytes = _mm_loadl_epi64((__m128i *) (y+i));
+ __m128i cr_bytes = _mm_loadl_epi64((__m128i *) (pcr+i));
+ __m128i cb_bytes = _mm_loadl_epi64((__m128i *) (pcb+i));
+ __m128i cr_biased = _mm_xor_si128(cr_bytes, signflip); // -128
+ __m128i cb_biased = _mm_xor_si128(cb_bytes, signflip); // -128
+
+ // unpack to short (and left-shift cr, cb by 8)
+ __m128i yw = _mm_unpacklo_epi8(y_bias, y_bytes);
+ __m128i crw = _mm_unpacklo_epi8(_mm_setzero_si128(), cr_biased);
+ __m128i cbw = _mm_unpacklo_epi8(_mm_setzero_si128(), cb_biased);
+
+ // color transform
+ __m128i yws = _mm_srli_epi16(yw, 4);
+ __m128i cr0 = _mm_mulhi_epi16(cr_const0, crw);
+ __m128i cb0 = _mm_mulhi_epi16(cb_const0, cbw);
+ __m128i cb1 = _mm_mulhi_epi16(cbw, cb_const1);
+ __m128i cr1 = _mm_mulhi_epi16(crw, cr_const1);
+ __m128i rws = _mm_add_epi16(cr0, yws);
+ __m128i gwt = _mm_add_epi16(cb0, yws);
+ __m128i bws = _mm_add_epi16(yws, cb1);
+ __m128i gws = _mm_add_epi16(gwt, cr1);
+
+ // descale
+ __m128i rw = _mm_srai_epi16(rws, 4);
+ __m128i bw = _mm_srai_epi16(bws, 4);
+ __m128i gw = _mm_srai_epi16(gws, 4);
+
+ // back to byte, set up for transpose
+ __m128i brb = _mm_packus_epi16(rw, bw);
+ __m128i gxb = _mm_packus_epi16(gw, xw);
+
+ // transpose to interleave channels
+ __m128i t0 = _mm_unpacklo_epi8(brb, gxb);
+ __m128i t1 = _mm_unpackhi_epi8(brb, gxb);
+ __m128i o0 = _mm_unpacklo_epi16(t0, t1);
+ __m128i o1 = _mm_unpackhi_epi16(t0, t1);
+
+ // store
+ _mm_storeu_si128((__m128i *) (out + 0), o0);
+ _mm_storeu_si128((__m128i *) (out + 16), o1);
+ out += 32;
+ }
+ }
+#endif
+
+#ifdef STBI_NEON
+ // in this version, step=3 support would be easy to add. but is there demand?
+ if (step == 4) {
+ // this is a fairly straightforward implementation and not super-optimized.
+ uint8x8_t signflip = vdup_n_u8(0x80);
+ int16x8_t cr_const0 = vdupq_n_s16( (short) ( 1.40200f*4096.0f+0.5f));
+ int16x8_t cr_const1 = vdupq_n_s16( - (short) ( 0.71414f*4096.0f+0.5f));
+ int16x8_t cb_const0 = vdupq_n_s16( - (short) ( 0.34414f*4096.0f+0.5f));
+ int16x8_t cb_const1 = vdupq_n_s16( (short) ( 1.77200f*4096.0f+0.5f));
+
+ for (; i+7 < count; i += 8) {
+ // load
+ uint8x8_t y_bytes = vld1_u8(y + i);
+ uint8x8_t cr_bytes = vld1_u8(pcr + i);
+ uint8x8_t cb_bytes = vld1_u8(pcb + i);
+ int8x8_t cr_biased = vreinterpret_s8_u8(vsub_u8(cr_bytes, signflip));
+ int8x8_t cb_biased = vreinterpret_s8_u8(vsub_u8(cb_bytes, signflip));
+
+ // expand to s16
+ int16x8_t yws = vreinterpretq_s16_u16(vshll_n_u8(y_bytes, 4));
+ int16x8_t crw = vshll_n_s8(cr_biased, 7);
+ int16x8_t cbw = vshll_n_s8(cb_biased, 7);
+
+ // color transform
+ int16x8_t cr0 = vqdmulhq_s16(crw, cr_const0);
+ int16x8_t cb0 = vqdmulhq_s16(cbw, cb_const0);
+ int16x8_t cr1 = vqdmulhq_s16(crw, cr_const1);
+ int16x8_t cb1 = vqdmulhq_s16(cbw, cb_const1);
+ int16x8_t rws = vaddq_s16(yws, cr0);
+ int16x8_t gws = vaddq_s16(vaddq_s16(yws, cb0), cr1);
+ int16x8_t bws = vaddq_s16(yws, cb1);
+
+ // undo scaling, round, convert to byte
+ uint8x8x4_t o;
+ o.val[0] = vqrshrun_n_s16(rws, 4);
+ o.val[1] = vqrshrun_n_s16(gws, 4);
+ o.val[2] = vqrshrun_n_s16(bws, 4);
+ o.val[3] = vdup_n_u8(255);
+
+ // store, interleaving r/g/b/a
+ vst4_u8(out, o);
+ out += 8*4;
+ }
+ }
+#endif
+
+ for (; i < count; ++i) {
+ int y_fixed = (y[i] << 20) + (1<<19); // rounding
+ int r,g,b;
+ int cr = pcr[i] - 128;
+ int cb = pcb[i] - 128;
+ r = y_fixed + cr* stbi__float2fixed(1.40200f);
+ g = y_fixed + cr*-stbi__float2fixed(0.71414f) + ((cb*-stbi__float2fixed(0.34414f)) & 0xffff0000);
+ b = y_fixed + cb* stbi__float2fixed(1.77200f);
+ r >>= 20;
+ g >>= 20;
+ b >>= 20;
+ if ((unsigned) r > 255) { if (r < 0) r = 0; else r = 255; }
+ if ((unsigned) g > 255) { if (g < 0) g = 0; else g = 255; }
+ if ((unsigned) b > 255) { if (b < 0) b = 0; else b = 255; }
+ out[0] = (stbi_uc)r;
+ out[1] = (stbi_uc)g;
+ out[2] = (stbi_uc)b;
+ out[3] = 255;
+ out += step;
+ }
+}
+#endif
+
+// set up the kernels
+static void stbi__setup_jpeg(stbi__jpeg *j)
+{
+ j->idct_block_kernel = stbi__idct_block;
+ j->YCbCr_to_RGB_kernel = stbi__YCbCr_to_RGB_row;
+ j->resample_row_hv_2_kernel = stbi__resample_row_hv_2;
+
+#ifdef STBI_SSE2
+ if (stbi__sse2_available()) {
+ j->idct_block_kernel = stbi__idct_simd;
+ j->YCbCr_to_RGB_kernel = stbi__YCbCr_to_RGB_simd;
+ j->resample_row_hv_2_kernel = stbi__resample_row_hv_2_simd;
+ }
+#endif
+
+#ifdef STBI_NEON
+ j->idct_block_kernel = stbi__idct_simd;
+ j->YCbCr_to_RGB_kernel = stbi__YCbCr_to_RGB_simd;
+ j->resample_row_hv_2_kernel = stbi__resample_row_hv_2_simd;
+#endif
+}
+
+// clean up the temporary component buffers
+static void stbi__cleanup_jpeg(stbi__jpeg *j)
+{
+ stbi__free_jpeg_components(j, j->s->img_n, 0);
+}
+
+typedef struct
+{
+ resample_row_func resample;
+ stbi_uc *line0,*line1;
+ int hs,vs; // expansion factor in each axis
+ int w_lores; // horizontal pixels pre-expansion
+ int ystep; // how far through vertical expansion we are
+ int ypos; // which pre-expansion row we're on
+} stbi__resample;
+
+// fast 0..255 * 0..255 => 0..255 rounded multiplication
+static stbi_uc stbi__blinn_8x8(stbi_uc x, stbi_uc y)
+{
+ unsigned int t = x*y + 128;
+ return (stbi_uc) ((t + (t >>8)) >> 8);
+}
+
+static stbi_uc *load_jpeg_image(stbi__jpeg *z, int *out_x, int *out_y, int *comp, int req_comp)
+{
+ int n, decode_n, is_rgb;
+ z->s->img_n = 0; // make stbi__cleanup_jpeg safe
+
+ // validate req_comp
+ if (req_comp < 0 || req_comp > 4) return stbi__errpuc("bad req_comp", "Internal error");
+
+ // load a jpeg image from whichever source, but leave in YCbCr format
+ if (!stbi__decode_jpeg_image(z)) { stbi__cleanup_jpeg(z); return NULL; }
+
+ // determine actual number of components to generate
+ n = req_comp ? req_comp : z->s->img_n >= 3 ? 3 : 1;
+
+ is_rgb = z->s->img_n == 3 && (z->rgb == 3 || (z->app14_color_transform == 0 && !z->jfif));
+
+ if (z->s->img_n == 3 && n < 3 && !is_rgb)
+ decode_n = 1;
+ else
+ decode_n = z->s->img_n;
+
+ // nothing to do if no components requested; check this now to avoid
+ // accessing uninitialized coutput[0] later
+ if (decode_n <= 0) { stbi__cleanup_jpeg(z); return NULL; }
+
+ // resample and color-convert
+ {
+ int k;
+ unsigned int i,j;
+ stbi_uc *output;
+ stbi_uc *coutput[4] = { NULL, NULL, NULL, NULL };
+
+ stbi__resample res_comp[4];
+
+ for (k=0; k < decode_n; ++k) {
+ stbi__resample *r = &res_comp[k];
+
+ // allocate line buffer big enough for upsampling off the edges
+ // with upsample factor of 4
+ z->img_comp[k].linebuf = (stbi_uc *) stbi__malloc(z->s->img_x + 3);
+ if (!z->img_comp[k].linebuf) { stbi__cleanup_jpeg(z); return stbi__errpuc("outofmem", "Out of memory"); }
+
+ r->hs = z->img_h_max / z->img_comp[k].h;
+ r->vs = z->img_v_max / z->img_comp[k].v;
+ r->ystep = r->vs >> 1;
+ r->w_lores = (z->s->img_x + r->hs-1) / r->hs;
+ r->ypos = 0;
+ r->line0 = r->line1 = z->img_comp[k].data;
+
+ if (r->hs == 1 && r->vs == 1) r->resample = resample_row_1;
+ else if (r->hs == 1 && r->vs == 2) r->resample = stbi__resample_row_v_2;
+ else if (r->hs == 2 && r->vs == 1) r->resample = stbi__resample_row_h_2;
+ else if (r->hs == 2 && r->vs == 2) r->resample = z->resample_row_hv_2_kernel;
+ else r->resample = stbi__resample_row_generic;
+ }
+
+ // can't error after this so, this is safe
+ output = (stbi_uc *) stbi__malloc_mad3(n, z->s->img_x, z->s->img_y, 1);
+ if (!output) { stbi__cleanup_jpeg(z); return stbi__errpuc("outofmem", "Out of memory"); }
+
+ // now go ahead and resample
+ for (j=0; j < z->s->img_y; ++j) {
+ stbi_uc *out = output + n * z->s->img_x * j;
+ for (k=0; k < decode_n; ++k) {
+ stbi__resample *r = &res_comp[k];
+ int y_bot = r->ystep >= (r->vs >> 1);
+ coutput[k] = r->resample(z->img_comp[k].linebuf,
+ y_bot ? r->line1 : r->line0,
+ y_bot ? r->line0 : r->line1,
+ r->w_lores, r->hs);
+ if (++r->ystep >= r->vs) {
+ r->ystep = 0;
+ r->line0 = r->line1;
+ if (++r->ypos < z->img_comp[k].y)
+ r->line1 += z->img_comp[k].w2;
+ }
+ }
+ if (n >= 3) {
+ stbi_uc *y = coutput[0];
+ if (z->s->img_n == 3) {
+ if (is_rgb) {
+ for (i=0; i < z->s->img_x; ++i) {
+ out[0] = y[i];
+ out[1] = coutput[1][i];
+ out[2] = coutput[2][i];
+ out[3] = 255;
+ out += n;
+ }
+ } else {
+ z->YCbCr_to_RGB_kernel(out, y, coutput[1], coutput[2], z->s->img_x, n);
+ }
+ } else if (z->s->img_n == 4) {
+ if (z->app14_color_transform == 0) { // CMYK
+ for (i=0; i < z->s->img_x; ++i) {
+ stbi_uc m = coutput[3][i];
+ out[0] = stbi__blinn_8x8(coutput[0][i], m);
+ out[1] = stbi__blinn_8x8(coutput[1][i], m);
+ out[2] = stbi__blinn_8x8(coutput[2][i], m);
+ out[3] = 255;
+ out += n;
+ }
+ } else if (z->app14_color_transform == 2) { // YCCK
+ z->YCbCr_to_RGB_kernel(out, y, coutput[1], coutput[2], z->s->img_x, n);
+ for (i=0; i < z->s->img_x; ++i) {
+ stbi_uc m = coutput[3][i];
+ out[0] = stbi__blinn_8x8(255 - out[0], m);
+ out[1] = stbi__blinn_8x8(255 - out[1], m);
+ out[2] = stbi__blinn_8x8(255 - out[2], m);
+ out += n;
+ }
+ } else { // YCbCr + alpha? Ignore the fourth channel for now
+ z->YCbCr_to_RGB_kernel(out, y, coutput[1], coutput[2], z->s->img_x, n);
+ }
+ } else
+ for (i=0; i < z->s->img_x; ++i) {
+ out[0] = out[1] = out[2] = y[i];
+ out[3] = 255; // not used if n==3
+ out += n;
+ }
+ } else {
+ if (is_rgb) {
+ if (n == 1)
+ for (i=0; i < z->s->img_x; ++i)
+ *out++ = stbi__compute_y(coutput[0][i], coutput[1][i], coutput[2][i]);
+ else {
+ for (i=0; i < z->s->img_x; ++i, out += 2) {
+ out[0] = stbi__compute_y(coutput[0][i], coutput[1][i], coutput[2][i]);
+ out[1] = 255;
+ }
+ }
+ } else if (z->s->img_n == 4 && z->app14_color_transform == 0) {
+ for (i=0; i < z->s->img_x; ++i) {
+ stbi_uc m = coutput[3][i];
+ stbi_uc r = stbi__blinn_8x8(coutput[0][i], m);
+ stbi_uc g = stbi__blinn_8x8(coutput[1][i], m);
+ stbi_uc b = stbi__blinn_8x8(coutput[2][i], m);
+ out[0] = stbi__compute_y(r, g, b);
+ out[1] = 255;
+ out += n;
+ }
+ } else if (z->s->img_n == 4 && z->app14_color_transform == 2) {
+ for (i=0; i < z->s->img_x; ++i) {
+ out[0] = stbi__blinn_8x8(255 - coutput[0][i], coutput[3][i]);
+ out[1] = 255;
+ out += n;
+ }
+ } else {
+ stbi_uc *y = coutput[0];
+ if (n == 1)
+ for (i=0; i < z->s->img_x; ++i) out[i] = y[i];
+ else
+ for (i=0; i < z->s->img_x; ++i) { *out++ = y[i]; *out++ = 255; }
+ }
+ }
+ }
+ stbi__cleanup_jpeg(z);
+ *out_x = z->s->img_x;
+ *out_y = z->s->img_y;
+ if (comp) *comp = z->s->img_n >= 3 ? 3 : 1; // report original components, not output
+ return output;
+ }
+}
+
+static void *stbi__jpeg_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri)
+{
+ unsigned char* result;
+ stbi__jpeg* j = (stbi__jpeg*) stbi__malloc(sizeof(stbi__jpeg));
+ if (!j) return stbi__errpuc("outofmem", "Out of memory");
+ memset(j, 0, sizeof(stbi__jpeg));
+ STBI_NOTUSED(ri);
+ j->s = s;
+ stbi__setup_jpeg(j);
+ result = load_jpeg_image(j, x,y,comp,req_comp);
+ STBI_FREE(j);
+ return result;
+}
+
+static int stbi__jpeg_test(stbi__context *s)
+{
+ int r;
+ stbi__jpeg* j = (stbi__jpeg*)stbi__malloc(sizeof(stbi__jpeg));
+ if (!j) return stbi__err("outofmem", "Out of memory");
+ memset(j, 0, sizeof(stbi__jpeg));
+ j->s = s;
+ stbi__setup_jpeg(j);
+ r = stbi__decode_jpeg_header(j, STBI__SCAN_type);
+ stbi__rewind(s);
+ STBI_FREE(j);
+ return r;
+}
+
+static int stbi__jpeg_info_raw(stbi__jpeg *j, int *x, int *y, int *comp)
+{
+ if (!stbi__decode_jpeg_header(j, STBI__SCAN_header)) {
+ stbi__rewind( j->s );
+ return 0;
+ }
+ if (x) *x = j->s->img_x;
+ if (y) *y = j->s->img_y;
+ if (comp) *comp = j->s->img_n >= 3 ? 3 : 1;
+ return 1;
+}
+
+static int stbi__jpeg_info(stbi__context *s, int *x, int *y, int *comp)
+{
+ int result;
+ stbi__jpeg* j = (stbi__jpeg*) (stbi__malloc(sizeof(stbi__jpeg)));
+ if (!j) return stbi__err("outofmem", "Out of memory");
+ memset(j, 0, sizeof(stbi__jpeg));
+ j->s = s;
+ result = stbi__jpeg_info_raw(j, x, y, comp);
+ STBI_FREE(j);
+ return result;
+}
+#endif
+
+// public domain zlib decode v0.2 Sean Barrett 2006-11-18
+// simple implementation
+// - all input must be provided in an upfront buffer
+// - all output is written to a single output buffer (can malloc/realloc)
+// performance
+// - fast huffman
+
+#ifndef STBI_NO_ZLIB
+
+// fast-way is faster to check than jpeg huffman, but slow way is slower
+#define STBI__ZFAST_BITS 9 // accelerate all cases in default tables
+#define STBI__ZFAST_MASK ((1 << STBI__ZFAST_BITS) - 1)
+#define STBI__ZNSYMS 288 // number of symbols in literal/length alphabet
+
+// zlib-style huffman encoding
+// (jpegs packs from left, zlib from right, so can't share code)
+typedef struct
+{
+ stbi__uint16 fast[1 << STBI__ZFAST_BITS];
+ stbi__uint16 firstcode[16];
+ int maxcode[17];
+ stbi__uint16 firstsymbol[16];
+ stbi_uc size[STBI__ZNSYMS];
+ stbi__uint16 value[STBI__ZNSYMS];
+} stbi__zhuffman;
+
+stbi_inline static int stbi__bitreverse16(int n)
+{
+ n = ((n & 0xAAAA) >> 1) | ((n & 0x5555) << 1);
+ n = ((n & 0xCCCC) >> 2) | ((n & 0x3333) << 2);
+ n = ((n & 0xF0F0) >> 4) | ((n & 0x0F0F) << 4);
+ n = ((n & 0xFF00) >> 8) | ((n & 0x00FF) << 8);
+ return n;
+}
+
+stbi_inline static int stbi__bit_reverse(int v, int bits)
+{
+ STBI_ASSERT(bits <= 16);
+ // to bit reverse n bits, reverse 16 and shift
+ // e.g. 11 bits, bit reverse and shift away 5
+ return stbi__bitreverse16(v) >> (16-bits);
+}
+
+static int stbi__zbuild_huffman(stbi__zhuffman *z, const stbi_uc *sizelist, int num)
+{
+ int i,k=0;
+ int code, next_code[16], sizes[17];
+
+ // DEFLATE spec for generating codes
+ memset(sizes, 0, sizeof(sizes));
+ memset(z->fast, 0, sizeof(z->fast));
+ for (i=0; i < num; ++i)
+ ++sizes[sizelist[i]];
+ sizes[0] = 0;
+ for (i=1; i < 16; ++i)
+ if (sizes[i] > (1 << i))
+ return stbi__err("bad sizes", "Corrupt PNG");
+ code = 0;
+ for (i=1; i < 16; ++i) {
+ next_code[i] = code;
+ z->firstcode[i] = (stbi__uint16) code;
+ z->firstsymbol[i] = (stbi__uint16) k;
+ code = (code + sizes[i]);
+ if (sizes[i])
+ if (code-1 >= (1 << i)) return stbi__err("bad codelengths","Corrupt PNG");
+ z->maxcode[i] = code << (16-i); // preshift for inner loop
+ code <<= 1;
+ k += sizes[i];
+ }
+ z->maxcode[16] = 0x10000; // sentinel
+ for (i=0; i < num; ++i) {
+ int s = sizelist[i];
+ if (s) {
+ int c = next_code[s] - z->firstcode[s] + z->firstsymbol[s];
+ stbi__uint16 fastv = (stbi__uint16) ((s << 9) | i);
+ z->size [c] = (stbi_uc ) s;
+ z->value[c] = (stbi__uint16) i;
+ if (s <= STBI__ZFAST_BITS) {
+ int j = stbi__bit_reverse(next_code[s],s);
+ while (j < (1 << STBI__ZFAST_BITS)) {
+ z->fast[j] = fastv;
+ j += (1 << s);
+ }
+ }
+ ++next_code[s];
+ }
+ }
+ return 1;
+}
+
+// zlib-from-memory implementation for PNG reading
+// because PNG allows splitting the zlib stream arbitrarily,
+// and it's annoying structurally to have PNG call ZLIB call PNG,
+// we require PNG read all the IDATs and combine them into a single
+// memory buffer
+
+typedef struct
+{
+ stbi_uc *zbuffer, *zbuffer_end;
+ int num_bits;
+ int hit_zeof_once;
+ stbi__uint32 code_buffer;
+
+ char *zout;
+ char *zout_start;
+ char *zout_end;
+ int z_expandable;
+
+ stbi__zhuffman z_length, z_distance;
+} stbi__zbuf;
+
+stbi_inline static int stbi__zeof(stbi__zbuf *z)
+{
+ return (z->zbuffer >= z->zbuffer_end);
+}
+
+stbi_inline static stbi_uc stbi__zget8(stbi__zbuf *z)
+{
+ return stbi__zeof(z) ? 0 : *z->zbuffer++;
+}
+
+static void stbi__fill_bits(stbi__zbuf *z)
+{
+ do {
+ if (z->code_buffer >= (1U << z->num_bits)) {
+ z->zbuffer = z->zbuffer_end; /* treat this as EOF so we fail. */
+ return;
+ }
+ z->code_buffer |= (unsigned int) stbi__zget8(z) << z->num_bits;
+ z->num_bits += 8;
+ } while (z->num_bits <= 24);
+}
+
+stbi_inline static unsigned int stbi__zreceive(stbi__zbuf *z, int n)
+{
+ unsigned int k;
+ if (z->num_bits < n) stbi__fill_bits(z);
+ k = z->code_buffer & ((1 << n) - 1);
+ z->code_buffer >>= n;
+ z->num_bits -= n;
+ return k;
+}
+
+static int stbi__zhuffman_decode_slowpath(stbi__zbuf *a, stbi__zhuffman *z)
+{
+ int b,s,k;
+ // not resolved by fast table, so compute it the slow way
+ // use jpeg approach, which requires MSbits at top
+ k = stbi__bit_reverse(a->code_buffer, 16);
+ for (s=STBI__ZFAST_BITS+1; ; ++s)
+ if (k < z->maxcode[s])
+ break;
+ if (s >= 16) return -1; // invalid code!
+ // code size is s, so:
+ b = (k >> (16-s)) - z->firstcode[s] + z->firstsymbol[s];
+ if (b >= STBI__ZNSYMS) return -1; // some data was corrupt somewhere!
+ if (z->size[b] != s) return -1; // was originally an assert, but report failure instead.
+ a->code_buffer >>= s;
+ a->num_bits -= s;
+ return z->value[b];
+}
+
+stbi_inline static int stbi__zhuffman_decode(stbi__zbuf *a, stbi__zhuffman *z)
+{
+ int b,s;
+ if (a->num_bits < 16) {
+ if (stbi__zeof(a)) {
+ if (!a->hit_zeof_once) {
+ // This is the first time we hit eof, insert 16 extra padding btis
+ // to allow us to keep going; if we actually consume any of them
+ // though, that is invalid data. This is caught later.
+ a->hit_zeof_once = 1;
+ a->num_bits += 16; // add 16 implicit zero bits
+ } else {
+ // We already inserted our extra 16 padding bits and are again
+ // out, this stream is actually prematurely terminated.
+ return -1;
+ }
+ } else {
+ stbi__fill_bits(a);
+ }
+ }
+ b = z->fast[a->code_buffer & STBI__ZFAST_MASK];
+ if (b) {
+ s = b >> 9;
+ a->code_buffer >>= s;
+ a->num_bits -= s;
+ return b & 511;
+ }
+ return stbi__zhuffman_decode_slowpath(a, z);
+}
+
+static int stbi__zexpand(stbi__zbuf *z, char *zout, int n) // need to make room for n bytes
+{
+ char *q;
+ unsigned int cur, limit, old_limit;
+ z->zout = zout;
+ if (!z->z_expandable) return stbi__err("output buffer limit","Corrupt PNG");
+ cur = (unsigned int) (z->zout - z->zout_start);
+ limit = old_limit = (unsigned) (z->zout_end - z->zout_start);
+ if (UINT_MAX - cur < (unsigned) n) return stbi__err("outofmem", "Out of memory");
+ while (cur + n > limit) {
+ if(limit > UINT_MAX / 2) return stbi__err("outofmem", "Out of memory");
+ limit *= 2;
+ }
+ q = (char *) STBI_REALLOC_SIZED(z->zout_start, old_limit, limit);
+ STBI_NOTUSED(old_limit);
+ if (q == NULL) return stbi__err("outofmem", "Out of memory");
+ z->zout_start = q;
+ z->zout = q + cur;
+ z->zout_end = q + limit;
+ return 1;
+}
+
+static const int stbi__zlength_base[31] = {
+ 3,4,5,6,7,8,9,10,11,13,
+ 15,17,19,23,27,31,35,43,51,59,
+ 67,83,99,115,131,163,195,227,258,0,0 };
+
+static const int stbi__zlength_extra[31]=
+{ 0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0,0,0 };
+
+static const int stbi__zdist_base[32] = { 1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,
+257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0};
+
+static const int stbi__zdist_extra[32] =
+{ 0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13};
+
+static int stbi__parse_huffman_block(stbi__zbuf *a)
+{
+ char *zout = a->zout;
+ for(;;) {
+ int z = stbi__zhuffman_decode(a, &a->z_length);
+ if (z < 256) {
+ if (z < 0) return stbi__err("bad huffman code","Corrupt PNG"); // error in huffman codes
+ if (zout >= a->zout_end) {
+ if (!stbi__zexpand(a, zout, 1)) return 0;
+ zout = a->zout;
+ }
+ *zout++ = (char) z;
+ } else {
+ stbi_uc *p;
+ int len,dist;
+ if (z == 256) {
+ a->zout = zout;
+ if (a->hit_zeof_once && a->num_bits < 16) {
+ // The first time we hit zeof, we inserted 16 extra zero bits into our bit
+ // buffer so the decoder can just do its speculative decoding. But if we
+ // actually consumed any of those bits (which is the case when num_bits < 16),
+ // the stream actually read past the end so it is malformed.
+ return stbi__err("unexpected end","Corrupt PNG");
+ }
+ return 1;
+ }
+ if (z >= 286) return stbi__err("bad huffman code","Corrupt PNG"); // per DEFLATE, length codes 286 and 287 must not appear in compressed data
+ z -= 257;
+ len = stbi__zlength_base[z];
+ if (stbi__zlength_extra[z]) len += stbi__zreceive(a, stbi__zlength_extra[z]);
+ z = stbi__zhuffman_decode(a, &a->z_distance);
+ if (z < 0 || z >= 30) return stbi__err("bad huffman code","Corrupt PNG"); // per DEFLATE, distance codes 30 and 31 must not appear in compressed data
+ dist = stbi__zdist_base[z];
+ if (stbi__zdist_extra[z]) dist += stbi__zreceive(a, stbi__zdist_extra[z]);
+ if (zout - a->zout_start < dist) return stbi__err("bad dist","Corrupt PNG");
+ if (len > a->zout_end - zout) {
+ if (!stbi__zexpand(a, zout, len)) return 0;
+ zout = a->zout;
+ }
+ p = (stbi_uc *) (zout - dist);
+ if (dist == 1) { // run of one byte; common in images.
+ stbi_uc v = *p;
+ if (len) { do *zout++ = v; while (--len); }
+ } else {
+ if (len) { do *zout++ = *p++; while (--len); }
+ }
+ }
+ }
+}
+
+static int stbi__compute_huffman_codes(stbi__zbuf *a)
+{
+ static const stbi_uc length_dezigzag[19] = { 16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15 };
+ stbi__zhuffman z_codelength;
+ stbi_uc lencodes[286+32+137];//padding for maximum single op
+ stbi_uc codelength_sizes[19];
+ int i,n;
+
+ int hlit = stbi__zreceive(a,5) + 257;
+ int hdist = stbi__zreceive(a,5) + 1;
+ int hclen = stbi__zreceive(a,4) + 4;
+ int ntot = hlit + hdist;
+
+ memset(codelength_sizes, 0, sizeof(codelength_sizes));
+ for (i=0; i < hclen; ++i) {
+ int s = stbi__zreceive(a,3);
+ codelength_sizes[length_dezigzag[i]] = (stbi_uc) s;
+ }
+ if (!stbi__zbuild_huffman(&z_codelength, codelength_sizes, 19)) return 0;
+
+ n = 0;
+ while (n < ntot) {
+ int c = stbi__zhuffman_decode(a, &z_codelength);
+ if (c < 0 || c >= 19) return stbi__err("bad codelengths", "Corrupt PNG");
+ if (c < 16)
+ lencodes[n++] = (stbi_uc) c;
+ else {
+ stbi_uc fill = 0;
+ if (c == 16) {
+ c = stbi__zreceive(a,2)+3;
+ if (n == 0) return stbi__err("bad codelengths", "Corrupt PNG");
+ fill = lencodes[n-1];
+ } else if (c == 17) {
+ c = stbi__zreceive(a,3)+3;
+ } else if (c == 18) {
+ c = stbi__zreceive(a,7)+11;
+ } else {
+ return stbi__err("bad codelengths", "Corrupt PNG");
+ }
+ if (ntot - n < c) return stbi__err("bad codelengths", "Corrupt PNG");
+ memset(lencodes+n, fill, c);
+ n += c;
+ }
+ }
+ if (n != ntot) return stbi__err("bad codelengths","Corrupt PNG");
+ if (!stbi__zbuild_huffman(&a->z_length, lencodes, hlit)) return 0;
+ if (!stbi__zbuild_huffman(&a->z_distance, lencodes+hlit, hdist)) return 0;
+ return 1;
+}
+
+static int stbi__parse_uncompressed_block(stbi__zbuf *a)
+{
+ stbi_uc header[4];
+ int len,nlen,k;
+ if (a->num_bits & 7)
+ stbi__zreceive(a, a->num_bits & 7); // discard
+ // drain the bit-packed data into header
+ k = 0;
+ while (a->num_bits > 0) {
+ header[k++] = (stbi_uc) (a->code_buffer & 255); // suppress MSVC run-time check
+ a->code_buffer >>= 8;
+ a->num_bits -= 8;
+ }
+ if (a->num_bits < 0) return stbi__err("zlib corrupt","Corrupt PNG");
+ // now fill header the normal way
+ while (k < 4)
+ header[k++] = stbi__zget8(a);
+ len = header[1] * 256 + header[0];
+ nlen = header[3] * 256 + header[2];
+ if (nlen != (len ^ 0xffff)) return stbi__err("zlib corrupt","Corrupt PNG");
+ if (a->zbuffer + len > a->zbuffer_end) return stbi__err("read past buffer","Corrupt PNG");
+ if (a->zout + len > a->zout_end)
+ if (!stbi__zexpand(a, a->zout, len)) return 0;
+ memcpy(a->zout, a->zbuffer, len);
+ a->zbuffer += len;
+ a->zout += len;
+ return 1;
+}
+
+static int stbi__parse_zlib_header(stbi__zbuf *a)
+{
+ int cmf = stbi__zget8(a);
+ int cm = cmf & 15;
+ /* int cinfo = cmf >> 4; */
+ int flg = stbi__zget8(a);
+ if (stbi__zeof(a)) return stbi__err("bad zlib header","Corrupt PNG"); // zlib spec
+ if ((cmf*256+flg) % 31 != 0) return stbi__err("bad zlib header","Corrupt PNG"); // zlib spec
+ if (flg & 32) return stbi__err("no preset dict","Corrupt PNG"); // preset dictionary not allowed in png
+ if (cm != 8) return stbi__err("bad compression","Corrupt PNG"); // DEFLATE required for png
+ // window = 1 << (8 + cinfo)... but who cares, we fully buffer output
+ return 1;
+}
+
+static const stbi_uc stbi__zdefault_length[STBI__ZNSYMS] =
+{
+ 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
+ 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
+ 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
+ 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
+ 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8, 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,
+ 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,
+ 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,
+ 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9, 9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,
+ 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, 7,7,7,7,7,7,7,7,8,8,8,8,8,8,8,8
+};
+static const stbi_uc stbi__zdefault_distance[32] =
+{
+ 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5
+};
+/*
+Init algorithm:
+{
+ int i; // use <= to match clearly with spec
+ for (i=0; i <= 143; ++i) stbi__zdefault_length[i] = 8;
+ for ( ; i <= 255; ++i) stbi__zdefault_length[i] = 9;
+ for ( ; i <= 279; ++i) stbi__zdefault_length[i] = 7;
+ for ( ; i <= 287; ++i) stbi__zdefault_length[i] = 8;
+
+ for (i=0; i <= 31; ++i) stbi__zdefault_distance[i] = 5;
+}
+*/
+
+static int stbi__parse_zlib(stbi__zbuf *a, int parse_header)
+{
+ int final, type;
+ if (parse_header)
+ if (!stbi__parse_zlib_header(a)) return 0;
+ a->num_bits = 0;
+ a->code_buffer = 0;
+ a->hit_zeof_once = 0;
+ do {
+ final = stbi__zreceive(a,1);
+ type = stbi__zreceive(a,2);
+ if (type == 0) {
+ if (!stbi__parse_uncompressed_block(a)) return 0;
+ } else if (type == 3) {
+ return 0;
+ } else {
+ if (type == 1) {
+ // use fixed code lengths
+ if (!stbi__zbuild_huffman(&a->z_length , stbi__zdefault_length , STBI__ZNSYMS)) return 0;
+ if (!stbi__zbuild_huffman(&a->z_distance, stbi__zdefault_distance, 32)) return 0;
+ } else {
+ if (!stbi__compute_huffman_codes(a)) return 0;
+ }
+ if (!stbi__parse_huffman_block(a)) return 0;
+ }
+ } while (!final);
+ return 1;
+}
+
+static int stbi__do_zlib(stbi__zbuf *a, char *obuf, int olen, int exp, int parse_header)
+{
+ a->zout_start = obuf;
+ a->zout = obuf;
+ a->zout_end = obuf + olen;
+ a->z_expandable = exp;
+
+ return stbi__parse_zlib(a, parse_header);
+}
+
+STBIDEF char *stbi_zlib_decode_malloc_guesssize(const char *buffer, int len, int initial_size, int *outlen)
+{
+ stbi__zbuf a;
+ char *p = (char *) stbi__malloc(initial_size);
+ if (p == NULL) return NULL;
+ a.zbuffer = (stbi_uc *) buffer;
+ a.zbuffer_end = (stbi_uc *) buffer + len;
+ if (stbi__do_zlib(&a, p, initial_size, 1, 1)) {
+ if (outlen) *outlen = (int) (a.zout - a.zout_start);
+ return a.zout_start;
+ } else {
+ STBI_FREE(a.zout_start);
+ return NULL;
+ }
+}
+
+STBIDEF char *stbi_zlib_decode_malloc(char const *buffer, int len, int *outlen)
+{
+ return stbi_zlib_decode_malloc_guesssize(buffer, len, 16384, outlen);
+}
+
+STBIDEF char *stbi_zlib_decode_malloc_guesssize_headerflag(const char *buffer, int len, int initial_size, int *outlen, int parse_header)
+{
+ stbi__zbuf a;
+ char *p = (char *) stbi__malloc(initial_size);
+ if (p == NULL) return NULL;
+ a.zbuffer = (stbi_uc *) buffer;
+ a.zbuffer_end = (stbi_uc *) buffer + len;
+ if (stbi__do_zlib(&a, p, initial_size, 1, parse_header)) {
+ if (outlen) *outlen = (int) (a.zout - a.zout_start);
+ return a.zout_start;
+ } else {
+ STBI_FREE(a.zout_start);
+ return NULL;
+ }
+}
+
+STBIDEF int stbi_zlib_decode_buffer(char *obuffer, int olen, char const *ibuffer, int ilen)
+{
+ stbi__zbuf a;
+ a.zbuffer = (stbi_uc *) ibuffer;
+ a.zbuffer_end = (stbi_uc *) ibuffer + ilen;
+ if (stbi__do_zlib(&a, obuffer, olen, 0, 1))
+ return (int) (a.zout - a.zout_start);
+ else
+ return -1;
+}
+
+STBIDEF char *stbi_zlib_decode_noheader_malloc(char const *buffer, int len, int *outlen)
+{
+ stbi__zbuf a;
+ char *p = (char *) stbi__malloc(16384);
+ if (p == NULL) return NULL;
+ a.zbuffer = (stbi_uc *) buffer;
+ a.zbuffer_end = (stbi_uc *) buffer+len;
+ if (stbi__do_zlib(&a, p, 16384, 1, 0)) {
+ if (outlen) *outlen = (int) (a.zout - a.zout_start);
+ return a.zout_start;
+ } else {
+ STBI_FREE(a.zout_start);
+ return NULL;
+ }
+}
+
+STBIDEF int stbi_zlib_decode_noheader_buffer(char *obuffer, int olen, const char *ibuffer, int ilen)
+{
+ stbi__zbuf a;
+ a.zbuffer = (stbi_uc *) ibuffer;
+ a.zbuffer_end = (stbi_uc *) ibuffer + ilen;
+ if (stbi__do_zlib(&a, obuffer, olen, 0, 0))
+ return (int) (a.zout - a.zout_start);
+ else
+ return -1;
+}
+#endif
+
+// public domain "baseline" PNG decoder v0.10 Sean Barrett 2006-11-18
+// simple implementation
+// - only 8-bit samples
+// - no CRC checking
+// - allocates lots of intermediate memory
+// - avoids problem of streaming data between subsystems
+// - avoids explicit window management
+// performance
+// - uses stb_zlib, a PD zlib implementation with fast huffman decoding
+
+#ifndef STBI_NO_PNG
+typedef struct
+{
+ stbi__uint32 length;
+ stbi__uint32 type;
+} stbi__pngchunk;
+
+static stbi__pngchunk stbi__get_chunk_header(stbi__context *s)
+{
+ stbi__pngchunk c;
+ c.length = stbi__get32be(s);
+ c.type = stbi__get32be(s);
+ return c;
+}
+
+static int stbi__check_png_header(stbi__context *s)
+{
+ static const stbi_uc png_sig[8] = { 137,80,78,71,13,10,26,10 };
+ int i;
+ for (i=0; i < 8; ++i)
+ if (stbi__get8(s) != png_sig[i]) return stbi__err("bad png sig","Not a PNG");
+ return 1;
+}
+
+typedef struct
+{
+ stbi__context *s;
+ stbi_uc *idata, *expanded, *out;
+ int depth;
+} stbi__png;
+
+
+enum {
+ STBI__F_none=0,
+ STBI__F_sub=1,
+ STBI__F_up=2,
+ STBI__F_avg=3,
+ STBI__F_paeth=4,
+ // synthetic filter used for first scanline to avoid needing a dummy row of 0s
+ STBI__F_avg_first
+};
+
+static stbi_uc first_row_filter[5] =
+{
+ STBI__F_none,
+ STBI__F_sub,
+ STBI__F_none,
+ STBI__F_avg_first,
+ STBI__F_sub // Paeth with b=c=0 turns out to be equivalent to sub
+};
+
+static int stbi__paeth(int a, int b, int c)
+{
+ // This formulation looks very different from the reference in the PNG spec, but is
+ // actually equivalent and has favorable data dependencies and admits straightforward
+ // generation of branch-free code, which helps performance significantly.
+ int thresh = c*3 - (a + b);
+ int lo = a < b ? a : b;
+ int hi = a < b ? b : a;
+ int t0 = (hi <= thresh) ? lo : c;
+ int t1 = (thresh <= lo) ? hi : t0;
+ return t1;
+}
+
+static const stbi_uc stbi__depth_scale_table[9] = { 0, 0xff, 0x55, 0, 0x11, 0,0,0, 0x01 };
+
+// adds an extra all-255 alpha channel
+// dest == src is legal
+// img_n must be 1 or 3
+static void stbi__create_png_alpha_expand8(stbi_uc *dest, stbi_uc *src, stbi__uint32 x, int img_n)
+{
+ int i;
+ // must process data backwards since we allow dest==src
+ if (img_n == 1) {
+ for (i=x-1; i >= 0; --i) {
+ dest[i*2+1] = 255;
+ dest[i*2+0] = src[i];
+ }
+ } else {
+ STBI_ASSERT(img_n == 3);
+ for (i=x-1; i >= 0; --i) {
+ dest[i*4+3] = 255;
+ dest[i*4+2] = src[i*3+2];
+ dest[i*4+1] = src[i*3+1];
+ dest[i*4+0] = src[i*3+0];
+ }
+ }
+}
+
+// create the png data from post-deflated data
+static int stbi__create_png_image_raw(stbi__png *a, stbi_uc *raw, stbi__uint32 raw_len, int out_n, stbi__uint32 x, stbi__uint32 y, int depth, int color)
+{
+ int bytes = (depth == 16 ? 2 : 1);
+ stbi__context *s = a->s;
+ stbi__uint32 i,j,stride = x*out_n*bytes;
+ stbi__uint32 img_len, img_width_bytes;
+ stbi_uc *filter_buf;
+ int all_ok = 1;
+ int k;
+ int img_n = s->img_n; // copy it into a local for later
+
+ int output_bytes = out_n*bytes;
+ int filter_bytes = img_n*bytes;
+ int width = x;
+
+ STBI_ASSERT(out_n == s->img_n || out_n == s->img_n+1);
+ a->out = (stbi_uc *) stbi__malloc_mad3(x, y, output_bytes, 0); // extra bytes to write off the end into
+ if (!a->out) return stbi__err("outofmem", "Out of memory");
+
+ // note: error exits here don't need to clean up a->out individually,
+ // stbi__do_png always does on error.
+ if (!stbi__mad3sizes_valid(img_n, x, depth, 7)) return stbi__err("too large", "Corrupt PNG");
+ img_width_bytes = (((img_n * x * depth) + 7) >> 3);
+ if (!stbi__mad2sizes_valid(img_width_bytes, y, img_width_bytes)) return stbi__err("too large", "Corrupt PNG");
+ img_len = (img_width_bytes + 1) * y;
+
+ // we used to check for exact match between raw_len and img_len on non-interlaced PNGs,
+ // but issue #276 reported a PNG in the wild that had extra data at the end (all zeros),
+ // so just check for raw_len < img_len always.
+ if (raw_len < img_len) return stbi__err("not enough pixels","Corrupt PNG");
+
+ // Allocate two scan lines worth of filter workspace buffer.
+ filter_buf = (stbi_uc *) stbi__malloc_mad2(img_width_bytes, 2, 0);
+ if (!filter_buf) return stbi__err("outofmem", "Out of memory");
+
+ // Filtering for low-bit-depth images
+ if (depth < 8) {
+ filter_bytes = 1;
+ width = img_width_bytes;
+ }
+
+ for (j=0; j < y; ++j) {
+ // cur/prior filter buffers alternate
+ stbi_uc *cur = filter_buf + (j & 1)*img_width_bytes;
+ stbi_uc *prior = filter_buf + (~j & 1)*img_width_bytes;
+ stbi_uc *dest = a->out + stride*j;
+ int nk = width * filter_bytes;
+ int filter = *raw++;
+
+ // check filter type
+ if (filter > 4) {
+ all_ok = stbi__err("invalid filter","Corrupt PNG");
+ break;
+ }
+
+ // if first row, use special filter that doesn't sample previous row
+ if (j == 0) filter = first_row_filter[filter];
+
+ // perform actual filtering
+ switch (filter) {
+ case STBI__F_none:
+ memcpy(cur, raw, nk);
+ break;
+ case STBI__F_sub:
+ memcpy(cur, raw, filter_bytes);
+ for (k = filter_bytes; k < nk; ++k)
+ cur[k] = STBI__BYTECAST(raw[k] + cur[k-filter_bytes]);
+ break;
+ case STBI__F_up:
+ for (k = 0; k < nk; ++k)
+ cur[k] = STBI__BYTECAST(raw[k] + prior[k]);
+ break;
+ case STBI__F_avg:
+ for (k = 0; k < filter_bytes; ++k)
+ cur[k] = STBI__BYTECAST(raw[k] + (prior[k]>>1));
+ for (k = filter_bytes; k < nk; ++k)
+ cur[k] = STBI__BYTECAST(raw[k] + ((prior[k] + cur[k-filter_bytes])>>1));
+ break;
+ case STBI__F_paeth:
+ for (k = 0; k < filter_bytes; ++k)
+ cur[k] = STBI__BYTECAST(raw[k] + prior[k]); // prior[k] == stbi__paeth(0,prior[k],0)
+ for (k = filter_bytes; k < nk; ++k)
+ cur[k] = STBI__BYTECAST(raw[k] + stbi__paeth(cur[k-filter_bytes], prior[k], prior[k-filter_bytes]));
+ break;
+ case STBI__F_avg_first:
+ memcpy(cur, raw, filter_bytes);
+ for (k = filter_bytes; k < nk; ++k)
+ cur[k] = STBI__BYTECAST(raw[k] + (cur[k-filter_bytes] >> 1));
+ break;
+ }
+
+ raw += nk;
+
+ // expand decoded bits in cur to dest, also adding an extra alpha channel if desired
+ if (depth < 8) {
+ stbi_uc scale = (color == 0) ? stbi__depth_scale_table[depth] : 1; // scale grayscale values to 0..255 range
+ stbi_uc *in = cur;
+ stbi_uc *out = dest;
+ stbi_uc inb = 0;
+ stbi__uint32 nsmp = x*img_n;
+
+ // expand bits to bytes first
+ if (depth == 4) {
+ for (i=0; i < nsmp; ++i) {
+ if ((i & 1) == 0) inb = *in++;
+ *out++ = scale * (inb >> 4);
+ inb <<= 4;
+ }
+ } else if (depth == 2) {
+ for (i=0; i < nsmp; ++i) {
+ if ((i & 3) == 0) inb = *in++;
+ *out++ = scale * (inb >> 6);
+ inb <<= 2;
+ }
+ } else {
+ STBI_ASSERT(depth == 1);
+ for (i=0; i < nsmp; ++i) {
+ if ((i & 7) == 0) inb = *in++;
+ *out++ = scale * (inb >> 7);
+ inb <<= 1;
+ }
+ }
+
+ // insert alpha=255 values if desired
+ if (img_n != out_n)
+ stbi__create_png_alpha_expand8(dest, dest, x, img_n);
+ } else if (depth == 8) {
+ if (img_n == out_n)
+ memcpy(dest, cur, x*img_n);
+ else
+ stbi__create_png_alpha_expand8(dest, cur, x, img_n);
+ } else if (depth == 16) {
+ // convert the image data from big-endian to platform-native
+ stbi__uint16 *dest16 = (stbi__uint16*)dest;
+ stbi__uint32 nsmp = x*img_n;
+
+ if (img_n == out_n) {
+ for (i = 0; i < nsmp; ++i, ++dest16, cur += 2)
+ *dest16 = (cur[0] << 8) | cur[1];
+ } else {
+ STBI_ASSERT(img_n+1 == out_n);
+ if (img_n == 1) {
+ for (i = 0; i < x; ++i, dest16 += 2, cur += 2) {
+ dest16[0] = (cur[0] << 8) | cur[1];
+ dest16[1] = 0xffff;
+ }
+ } else {
+ STBI_ASSERT(img_n == 3);
+ for (i = 0; i < x; ++i, dest16 += 4, cur += 6) {
+ dest16[0] = (cur[0] << 8) | cur[1];
+ dest16[1] = (cur[2] << 8) | cur[3];
+ dest16[2] = (cur[4] << 8) | cur[5];
+ dest16[3] = 0xffff;
+ }
+ }
+ }
+ }
+ }
+
+ STBI_FREE(filter_buf);
+ if (!all_ok) return 0;
+
+ return 1;
+}
+
+static int stbi__create_png_image(stbi__png *a, stbi_uc *image_data, stbi__uint32 image_data_len, int out_n, int depth, int color, int interlaced)
+{
+ int bytes = (depth == 16 ? 2 : 1);
+ int out_bytes = out_n * bytes;
+ stbi_uc *final;
+ int p;
+ if (!interlaced)
+ return stbi__create_png_image_raw(a, image_data, image_data_len, out_n, a->s->img_x, a->s->img_y, depth, color);
+
+ // de-interlacing
+ final = (stbi_uc *) stbi__malloc_mad3(a->s->img_x, a->s->img_y, out_bytes, 0);
+ if (!final) return stbi__err("outofmem", "Out of memory");
+ for (p=0; p < 7; ++p) {
+ int xorig[] = { 0,4,0,2,0,1,0 };
+ int yorig[] = { 0,0,4,0,2,0,1 };
+ int xspc[] = { 8,8,4,4,2,2,1 };
+ int yspc[] = { 8,8,8,4,4,2,2 };
+ int i,j,x,y;
+ // pass1_x[4] = 0, pass1_x[5] = 1, pass1_x[12] = 1
+ x = (a->s->img_x - xorig[p] + xspc[p]-1) / xspc[p];
+ y = (a->s->img_y - yorig[p] + yspc[p]-1) / yspc[p];
+ if (x && y) {
+ stbi__uint32 img_len = ((((a->s->img_n * x * depth) + 7) >> 3) + 1) * y;
+ if (!stbi__create_png_image_raw(a, image_data, image_data_len, out_n, x, y, depth, color)) {
+ STBI_FREE(final);
+ return 0;
+ }
+ for (j=0; j < y; ++j) {
+ for (i=0; i < x; ++i) {
+ int out_y = j*yspc[p]+yorig[p];
+ int out_x = i*xspc[p]+xorig[p];
+ memcpy(final + out_y*a->s->img_x*out_bytes + out_x*out_bytes,
+ a->out + (j*x+i)*out_bytes, out_bytes);
+ }
+ }
+ STBI_FREE(a->out);
+ image_data += img_len;
+ image_data_len -= img_len;
+ }
+ }
+ a->out = final;
+
+ return 1;
+}
+
+static int stbi__compute_transparency(stbi__png *z, stbi_uc tc[3], int out_n)
+{
+ stbi__context *s = z->s;
+ stbi__uint32 i, pixel_count = s->img_x * s->img_y;
+ stbi_uc *p = z->out;
+
+ // compute color-based transparency, assuming we've
+ // already got 255 as the alpha value in the output
+ STBI_ASSERT(out_n == 2 || out_n == 4);
+
+ if (out_n == 2) {
+ for (i=0; i < pixel_count; ++i) {
+ p[1] = (p[0] == tc[0] ? 0 : 255);
+ p += 2;
+ }
+ } else {
+ for (i=0; i < pixel_count; ++i) {
+ if (p[0] == tc[0] && p[1] == tc[1] && p[2] == tc[2])
+ p[3] = 0;
+ p += 4;
+ }
+ }
+ return 1;
+}
+
+static int stbi__compute_transparency16(stbi__png *z, stbi__uint16 tc[3], int out_n)
+{
+ stbi__context *s = z->s;
+ stbi__uint32 i, pixel_count = s->img_x * s->img_y;
+ stbi__uint16 *p = (stbi__uint16*) z->out;
+
+ // compute color-based transparency, assuming we've
+ // already got 65535 as the alpha value in the output
+ STBI_ASSERT(out_n == 2 || out_n == 4);
+
+ if (out_n == 2) {
+ for (i = 0; i < pixel_count; ++i) {
+ p[1] = (p[0] == tc[0] ? 0 : 65535);
+ p += 2;
+ }
+ } else {
+ for (i = 0; i < pixel_count; ++i) {
+ if (p[0] == tc[0] && p[1] == tc[1] && p[2] == tc[2])
+ p[3] = 0;
+ p += 4;
+ }
+ }
+ return 1;
+}
+
+static int stbi__expand_png_palette(stbi__png *a, stbi_uc *palette, int len, int pal_img_n)
+{
+ stbi__uint32 i, pixel_count = a->s->img_x * a->s->img_y;
+ stbi_uc *p, *temp_out, *orig = a->out;
+
+ p = (stbi_uc *) stbi__malloc_mad2(pixel_count, pal_img_n, 0);
+ if (p == NULL) return stbi__err("outofmem", "Out of memory");
+
+ // between here and free(out) below, exitting would leak
+ temp_out = p;
+
+ if (pal_img_n == 3) {
+ for (i=0; i < pixel_count; ++i) {
+ int n = orig[i]*4;
+ p[0] = palette[n ];
+ p[1] = palette[n+1];
+ p[2] = palette[n+2];
+ p += 3;
+ }
+ } else {
+ for (i=0; i < pixel_count; ++i) {
+ int n = orig[i]*4;
+ p[0] = palette[n ];
+ p[1] = palette[n+1];
+ p[2] = palette[n+2];
+ p[3] = palette[n+3];
+ p += 4;
+ }
+ }
+ STBI_FREE(a->out);
+ a->out = temp_out;
+
+ STBI_NOTUSED(len);
+
+ return 1;
+}
+
+static int stbi__unpremultiply_on_load_global = 0;
+static int stbi__de_iphone_flag_global = 0;
+
+STBIDEF void stbi_set_unpremultiply_on_load(int flag_true_if_should_unpremultiply)
+{
+ stbi__unpremultiply_on_load_global = flag_true_if_should_unpremultiply;
+}
+
+STBIDEF void stbi_convert_iphone_png_to_rgb(int flag_true_if_should_convert)
+{
+ stbi__de_iphone_flag_global = flag_true_if_should_convert;
+}
+
+#ifndef STBI_THREAD_LOCAL
+#define stbi__unpremultiply_on_load stbi__unpremultiply_on_load_global
+#define stbi__de_iphone_flag stbi__de_iphone_flag_global
+#else
+static STBI_THREAD_LOCAL int stbi__unpremultiply_on_load_local, stbi__unpremultiply_on_load_set;
+static STBI_THREAD_LOCAL int stbi__de_iphone_flag_local, stbi__de_iphone_flag_set;
+
+STBIDEF void stbi_set_unpremultiply_on_load_thread(int flag_true_if_should_unpremultiply)
+{
+ stbi__unpremultiply_on_load_local = flag_true_if_should_unpremultiply;
+ stbi__unpremultiply_on_load_set = 1;
+}
+
+STBIDEF void stbi_convert_iphone_png_to_rgb_thread(int flag_true_if_should_convert)
+{
+ stbi__de_iphone_flag_local = flag_true_if_should_convert;
+ stbi__de_iphone_flag_set = 1;
+}
+
+#define stbi__unpremultiply_on_load (stbi__unpremultiply_on_load_set \
+ ? stbi__unpremultiply_on_load_local \
+ : stbi__unpremultiply_on_load_global)
+#define stbi__de_iphone_flag (stbi__de_iphone_flag_set \
+ ? stbi__de_iphone_flag_local \
+ : stbi__de_iphone_flag_global)
+#endif // STBI_THREAD_LOCAL
+
+static void stbi__de_iphone(stbi__png *z)
+{
+ stbi__context *s = z->s;
+ stbi__uint32 i, pixel_count = s->img_x * s->img_y;
+ stbi_uc *p = z->out;
+
+ if (s->img_out_n == 3) { // convert bgr to rgb
+ for (i=0; i < pixel_count; ++i) {
+ stbi_uc t = p[0];
+ p[0] = p[2];
+ p[2] = t;
+ p += 3;
+ }
+ } else {
+ STBI_ASSERT(s->img_out_n == 4);
+ if (stbi__unpremultiply_on_load) {
+ // convert bgr to rgb and unpremultiply
+ for (i=0; i < pixel_count; ++i) {
+ stbi_uc a = p[3];
+ stbi_uc t = p[0];
+ if (a) {
+ stbi_uc half = a / 2;
+ p[0] = (p[2] * 255 + half) / a;
+ p[1] = (p[1] * 255 + half) / a;
+ p[2] = ( t * 255 + half) / a;
+ } else {
+ p[0] = p[2];
+ p[2] = t;
+ }
+ p += 4;
+ }
+ } else {
+ // convert bgr to rgb
+ for (i=0; i < pixel_count; ++i) {
+ stbi_uc t = p[0];
+ p[0] = p[2];
+ p[2] = t;
+ p += 4;
+ }
+ }
+ }
+}
+
+#define STBI__PNG_TYPE(a,b,c,d) (((unsigned) (a) << 24) + ((unsigned) (b) << 16) + ((unsigned) (c) << 8) + (unsigned) (d))
+
+static int stbi__parse_png_file(stbi__png *z, int scan, int req_comp)
+{
+ stbi_uc palette[1024], pal_img_n=0;
+ stbi_uc has_trans=0, tc[3]={0};
+ stbi__uint16 tc16[3];
+ stbi__uint32 ioff=0, idata_limit=0, i, pal_len=0;
+ int first=1,k,interlace=0, color=0, is_iphone=0;
+ stbi__context *s = z->s;
+
+ z->expanded = NULL;
+ z->idata = NULL;
+ z->out = NULL;
+
+ if (!stbi__check_png_header(s)) return 0;
+
+ if (scan == STBI__SCAN_type) return 1;
+
+ for (;;) {
+ stbi__pngchunk c = stbi__get_chunk_header(s);
+ switch (c.type) {
+ case STBI__PNG_TYPE('C','g','B','I'):
+ is_iphone = 1;
+ stbi__skip(s, c.length);
+ break;
+ case STBI__PNG_TYPE('I','H','D','R'): {
+ int comp,filter;
+ if (!first) return stbi__err("multiple IHDR","Corrupt PNG");
+ first = 0;
+ if (c.length != 13) return stbi__err("bad IHDR len","Corrupt PNG");
+ s->img_x = stbi__get32be(s);
+ s->img_y = stbi__get32be(s);
+ if (s->img_y > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)");
+ if (s->img_x > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)");
+ z->depth = stbi__get8(s); if (z->depth != 1 && z->depth != 2 && z->depth != 4 && z->depth != 8 && z->depth != 16) return stbi__err("1/2/4/8/16-bit only","PNG not supported: 1/2/4/8/16-bit only");
+ color = stbi__get8(s); if (color > 6) return stbi__err("bad ctype","Corrupt PNG");
+ if (color == 3 && z->depth == 16) return stbi__err("bad ctype","Corrupt PNG");
+ if (color == 3) pal_img_n = 3; else if (color & 1) return stbi__err("bad ctype","Corrupt PNG");
+ comp = stbi__get8(s); if (comp) return stbi__err("bad comp method","Corrupt PNG");
+ filter= stbi__get8(s); if (filter) return stbi__err("bad filter method","Corrupt PNG");
+ interlace = stbi__get8(s); if (interlace>1) return stbi__err("bad interlace method","Corrupt PNG");
+ if (!s->img_x || !s->img_y) return stbi__err("0-pixel image","Corrupt PNG");
+ if (!pal_img_n) {
+ s->img_n = (color & 2 ? 3 : 1) + (color & 4 ? 1 : 0);
+ if ((1 << 30) / s->img_x / s->img_n < s->img_y) return stbi__err("too large", "Image too large to decode");
+ } else {
+ // if paletted, then pal_n is our final components, and
+ // img_n is # components to decompress/filter.
+ s->img_n = 1;
+ if ((1 << 30) / s->img_x / 4 < s->img_y) return stbi__err("too large","Corrupt PNG");
+ }
+ // even with SCAN_header, have to scan to see if we have a tRNS
+ break;
+ }
+
+ case STBI__PNG_TYPE('P','L','T','E'): {
+ if (first) return stbi__err("first not IHDR", "Corrupt PNG");
+ if (c.length > 256*3) return stbi__err("invalid PLTE","Corrupt PNG");
+ pal_len = c.length / 3;
+ if (pal_len * 3 != c.length) return stbi__err("invalid PLTE","Corrupt PNG");
+ for (i=0; i < pal_len; ++i) {
+ palette[i*4+0] = stbi__get8(s);
+ palette[i*4+1] = stbi__get8(s);
+ palette[i*4+2] = stbi__get8(s);
+ palette[i*4+3] = 255;
+ }
+ break;
+ }
+
+ case STBI__PNG_TYPE('t','R','N','S'): {
+ if (first) return stbi__err("first not IHDR", "Corrupt PNG");
+ if (z->idata) return stbi__err("tRNS after IDAT","Corrupt PNG");
+ if (pal_img_n) {
+ if (scan == STBI__SCAN_header) { s->img_n = 4; return 1; }
+ if (pal_len == 0) return stbi__err("tRNS before PLTE","Corrupt PNG");
+ if (c.length > pal_len) return stbi__err("bad tRNS len","Corrupt PNG");
+ pal_img_n = 4;
+ for (i=0; i < c.length; ++i)
+ palette[i*4+3] = stbi__get8(s);
+ } else {
+ if (!(s->img_n & 1)) return stbi__err("tRNS with alpha","Corrupt PNG");
+ if (c.length != (stbi__uint32) s->img_n*2) return stbi__err("bad tRNS len","Corrupt PNG");
+ has_trans = 1;
+ // non-paletted with tRNS = constant alpha. if header-scanning, we can stop now.
+ if (scan == STBI__SCAN_header) { ++s->img_n; return 1; }
+ if (z->depth == 16) {
+ for (k = 0; k < s->img_n; ++k) tc16[k] = (stbi__uint16)stbi__get16be(s); // copy the values as-is
+ } else {
+ for (k = 0; k < s->img_n; ++k) tc[k] = (stbi_uc)(stbi__get16be(s) & 255) * stbi__depth_scale_table[z->depth]; // non 8-bit images will be larger
+ }
+ }
+ break;
+ }
+
+ case STBI__PNG_TYPE('I','D','A','T'): {
+ if (first) return stbi__err("first not IHDR", "Corrupt PNG");
+ if (pal_img_n && !pal_len) return stbi__err("no PLTE","Corrupt PNG");
+ if (scan == STBI__SCAN_header) {
+ // header scan definitely stops at first IDAT
+ if (pal_img_n)
+ s->img_n = pal_img_n;
+ return 1;
+ }
+ if (c.length > (1u << 30)) return stbi__err("IDAT size limit", "IDAT section larger than 2^30 bytes");
+ if ((int)(ioff + c.length) < (int)ioff) return 0;
+ if (ioff + c.length > idata_limit) {
+ stbi__uint32 idata_limit_old = idata_limit;
+ stbi_uc *p;
+ if (idata_limit == 0) idata_limit = c.length > 4096 ? c.length : 4096;
+ while (ioff + c.length > idata_limit)
+ idata_limit *= 2;
+ STBI_NOTUSED(idata_limit_old);
+ p = (stbi_uc *) STBI_REALLOC_SIZED(z->idata, idata_limit_old, idata_limit); if (p == NULL) return stbi__err("outofmem", "Out of memory");
+ z->idata = p;
+ }
+ if (!stbi__getn(s, z->idata+ioff,c.length)) return stbi__err("outofdata","Corrupt PNG");
+ ioff += c.length;
+ break;
+ }
+
+ case STBI__PNG_TYPE('I','E','N','D'): {
+ stbi__uint32 raw_len, bpl;
+ if (first) return stbi__err("first not IHDR", "Corrupt PNG");
+ if (scan != STBI__SCAN_load) return 1;
+ if (z->idata == NULL) return stbi__err("no IDAT","Corrupt PNG");
+ // initial guess for decoded data size to avoid unnecessary reallocs
+ bpl = (s->img_x * z->depth + 7) / 8; // bytes per line, per component
+ raw_len = bpl * s->img_y * s->img_n /* pixels */ + s->img_y /* filter mode per row */;
+ z->expanded = (stbi_uc *) stbi_zlib_decode_malloc_guesssize_headerflag((char *) z->idata, ioff, raw_len, (int *) &raw_len, !is_iphone);
+ if (z->expanded == NULL) return 0; // zlib should set error
+ STBI_FREE(z->idata); z->idata = NULL;
+ if ((req_comp == s->img_n+1 && req_comp != 3 && !pal_img_n) || has_trans)
+ s->img_out_n = s->img_n+1;
+ else
+ s->img_out_n = s->img_n;
+ if (!stbi__create_png_image(z, z->expanded, raw_len, s->img_out_n, z->depth, color, interlace)) return 0;
+ if (has_trans) {
+ if (z->depth == 16) {
+ if (!stbi__compute_transparency16(z, tc16, s->img_out_n)) return 0;
+ } else {
+ if (!stbi__compute_transparency(z, tc, s->img_out_n)) return 0;
+ }
+ }
+ if (is_iphone && stbi__de_iphone_flag && s->img_out_n > 2)
+ stbi__de_iphone(z);
+ if (pal_img_n) {
+ // pal_img_n == 3 or 4
+ s->img_n = pal_img_n; // record the actual colors we had
+ s->img_out_n = pal_img_n;
+ if (req_comp >= 3) s->img_out_n = req_comp;
+ if (!stbi__expand_png_palette(z, palette, pal_len, s->img_out_n))
+ return 0;
+ } else if (has_trans) {
+ // non-paletted image with tRNS -> source image has (constant) alpha
+ ++s->img_n;
+ }
+ STBI_FREE(z->expanded); z->expanded = NULL;
+ // end of PNG chunk, read and skip CRC
+ stbi__get32be(s);
+ return 1;
+ }
+
+ default:
+ // if critical, fail
+ if (first) return stbi__err("first not IHDR", "Corrupt PNG");
+ if ((c.type & (1 << 29)) == 0) {
+ #ifndef STBI_NO_FAILURE_STRINGS
+ // not threadsafe
+ static char invalid_chunk[] = "XXXX PNG chunk not known";
+ invalid_chunk[0] = STBI__BYTECAST(c.type >> 24);
+ invalid_chunk[1] = STBI__BYTECAST(c.type >> 16);
+ invalid_chunk[2] = STBI__BYTECAST(c.type >> 8);
+ invalid_chunk[3] = STBI__BYTECAST(c.type >> 0);
+ #endif
+ return stbi__err(invalid_chunk, "PNG not supported: unknown PNG chunk type");
+ }
+ stbi__skip(s, c.length);
+ break;
+ }
+ // end of PNG chunk, read and skip CRC
+ stbi__get32be(s);
+ }
+}
+
+static void *stbi__do_png(stbi__png *p, int *x, int *y, int *n, int req_comp, stbi__result_info *ri)
+{
+ void *result=NULL;
+ if (req_comp < 0 || req_comp > 4) return stbi__errpuc("bad req_comp", "Internal error");
+ if (stbi__parse_png_file(p, STBI__SCAN_load, req_comp)) {
+ if (p->depth <= 8)
+ ri->bits_per_channel = 8;
+ else if (p->depth == 16)
+ ri->bits_per_channel = 16;
+ else
+ return stbi__errpuc("bad bits_per_channel", "PNG not supported: unsupported color depth");
+ result = p->out;
+ p->out = NULL;
+ if (req_comp && req_comp != p->s->img_out_n) {
+ if (ri->bits_per_channel == 8)
+ result = stbi__convert_format((unsigned char *) result, p->s->img_out_n, req_comp, p->s->img_x, p->s->img_y);
+ else
+ result = stbi__convert_format16((stbi__uint16 *) result, p->s->img_out_n, req_comp, p->s->img_x, p->s->img_y);
+ p->s->img_out_n = req_comp;
+ if (result == NULL) return result;
+ }
+ *x = p->s->img_x;
+ *y = p->s->img_y;
+ if (n) *n = p->s->img_n;
+ }
+ STBI_FREE(p->out); p->out = NULL;
+ STBI_FREE(p->expanded); p->expanded = NULL;
+ STBI_FREE(p->idata); p->idata = NULL;
+
+ return result;
+}
+
+static void *stbi__png_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri)
+{
+ stbi__png p;
+ p.s = s;
+ return stbi__do_png(&p, x,y,comp,req_comp, ri);
+}
+
+static int stbi__png_test(stbi__context *s)
+{
+ int r;
+ r = stbi__check_png_header(s);
+ stbi__rewind(s);
+ return r;
+}
+
+static int stbi__png_info_raw(stbi__png *p, int *x, int *y, int *comp)
+{
+ if (!stbi__parse_png_file(p, STBI__SCAN_header, 0)) {
+ stbi__rewind( p->s );
+ return 0;
+ }
+ if (x) *x = p->s->img_x;
+ if (y) *y = p->s->img_y;
+ if (comp) *comp = p->s->img_n;
+ return 1;
+}
+
+static int stbi__png_info(stbi__context *s, int *x, int *y, int *comp)
+{
+ stbi__png p;
+ p.s = s;
+ return stbi__png_info_raw(&p, x, y, comp);
+}
+
+static int stbi__png_is16(stbi__context *s)
+{
+ stbi__png p;
+ p.s = s;
+ if (!stbi__png_info_raw(&p, NULL, NULL, NULL))
+ return 0;
+ if (p.depth != 16) {
+ stbi__rewind(p.s);
+ return 0;
+ }
+ return 1;
+}
+#endif
+
+// Microsoft/Windows BMP image
+
+#ifndef STBI_NO_BMP
+static int stbi__bmp_test_raw(stbi__context *s)
+{
+ int r;
+ int sz;
+ if (stbi__get8(s) != 'B') return 0;
+ if (stbi__get8(s) != 'M') return 0;
+ stbi__get32le(s); // discard filesize
+ stbi__get16le(s); // discard reserved
+ stbi__get16le(s); // discard reserved
+ stbi__get32le(s); // discard data offset
+ sz = stbi__get32le(s);
+ r = (sz == 12 || sz == 40 || sz == 56 || sz == 108 || sz == 124);
+ return r;
+}
+
+static int stbi__bmp_test(stbi__context *s)
+{
+ int r = stbi__bmp_test_raw(s);
+ stbi__rewind(s);
+ return r;
+}
+
+
+// returns 0..31 for the highest set bit
+static int stbi__high_bit(unsigned int z)
+{
+ int n=0;
+ if (z == 0) return -1;
+ if (z >= 0x10000) { n += 16; z >>= 16; }
+ if (z >= 0x00100) { n += 8; z >>= 8; }
+ if (z >= 0x00010) { n += 4; z >>= 4; }
+ if (z >= 0x00004) { n += 2; z >>= 2; }
+ if (z >= 0x00002) { n += 1;/* >>= 1;*/ }
+ return n;
+}
+
+static int stbi__bitcount(unsigned int a)
+{
+ a = (a & 0x55555555) + ((a >> 1) & 0x55555555); // max 2
+ a = (a & 0x33333333) + ((a >> 2) & 0x33333333); // max 4
+ a = (a + (a >> 4)) & 0x0f0f0f0f; // max 8 per 4, now 8 bits
+ a = (a + (a >> 8)); // max 16 per 8 bits
+ a = (a + (a >> 16)); // max 32 per 8 bits
+ return a & 0xff;
+}
+
+// extract an arbitrarily-aligned N-bit value (N=bits)
+// from v, and then make it 8-bits long and fractionally
+// extend it to full full range.
+static int stbi__shiftsigned(unsigned int v, int shift, int bits)
+{
+ static unsigned int mul_table[9] = {
+ 0,
+ 0xff/*0b11111111*/, 0x55/*0b01010101*/, 0x49/*0b01001001*/, 0x11/*0b00010001*/,
+ 0x21/*0b00100001*/, 0x41/*0b01000001*/, 0x81/*0b10000001*/, 0x01/*0b00000001*/,
+ };
+ static unsigned int shift_table[9] = {
+ 0, 0,0,1,0,2,4,6,0,
+ };
+ if (shift < 0)
+ v <<= -shift;
+ else
+ v >>= shift;
+ STBI_ASSERT(v < 256);
+ v >>= (8-bits);
+ STBI_ASSERT(bits >= 0 && bits <= 8);
+ return (int) ((unsigned) v * mul_table[bits]) >> shift_table[bits];
+}
+
+typedef struct
+{
+ int bpp, offset, hsz;
+ unsigned int mr,mg,mb,ma, all_a;
+ int extra_read;
+} stbi__bmp_data;
+
+static int stbi__bmp_set_mask_defaults(stbi__bmp_data *info, int compress)
+{
+ // BI_BITFIELDS specifies masks explicitly, don't override
+ if (compress == 3)
+ return 1;
+
+ if (compress == 0) {
+ if (info->bpp == 16) {
+ info->mr = 31u << 10;
+ info->mg = 31u << 5;
+ info->mb = 31u << 0;
+ } else if (info->bpp == 32) {
+ info->mr = 0xffu << 16;
+ info->mg = 0xffu << 8;
+ info->mb = 0xffu << 0;
+ info->ma = 0xffu << 24;
+ info->all_a = 0; // if all_a is 0 at end, then we loaded alpha channel but it was all 0
+ } else {
+ // otherwise, use defaults, which is all-0
+ info->mr = info->mg = info->mb = info->ma = 0;
+ }
+ return 1;
+ }
+ return 0; // error
+}
+
+static void *stbi__bmp_parse_header(stbi__context *s, stbi__bmp_data *info)
+{
+ int hsz;
+ if (stbi__get8(s) != 'B' || stbi__get8(s) != 'M') return stbi__errpuc("not BMP", "Corrupt BMP");
+ stbi__get32le(s); // discard filesize
+ stbi__get16le(s); // discard reserved
+ stbi__get16le(s); // discard reserved
+ info->offset = stbi__get32le(s);
+ info->hsz = hsz = stbi__get32le(s);
+ info->mr = info->mg = info->mb = info->ma = 0;
+ info->extra_read = 14;
+
+ if (info->offset < 0) return stbi__errpuc("bad BMP", "bad BMP");
+
+ if (hsz != 12 && hsz != 40 && hsz != 56 && hsz != 108 && hsz != 124) return stbi__errpuc("unknown BMP", "BMP type not supported: unknown");
+ if (hsz == 12) {
+ s->img_x = stbi__get16le(s);
+ s->img_y = stbi__get16le(s);
+ } else {
+ s->img_x = stbi__get32le(s);
+ s->img_y = stbi__get32le(s);
+ }
+ if (stbi__get16le(s) != 1) return stbi__errpuc("bad BMP", "bad BMP");
+ info->bpp = stbi__get16le(s);
+ if (hsz != 12) {
+ int compress = stbi__get32le(s);
+ if (compress == 1 || compress == 2) return stbi__errpuc("BMP RLE", "BMP type not supported: RLE");
+ if (compress >= 4) return stbi__errpuc("BMP JPEG/PNG", "BMP type not supported: unsupported compression"); // this includes PNG/JPEG modes
+ if (compress == 3 && info->bpp != 16 && info->bpp != 32) return stbi__errpuc("bad BMP", "bad BMP"); // bitfields requires 16 or 32 bits/pixel
+ stbi__get32le(s); // discard sizeof
+ stbi__get32le(s); // discard hres
+ stbi__get32le(s); // discard vres
+ stbi__get32le(s); // discard colorsused
+ stbi__get32le(s); // discard max important
+ if (hsz == 40 || hsz == 56) {
+ if (hsz == 56) {
+ stbi__get32le(s);
+ stbi__get32le(s);
+ stbi__get32le(s);
+ stbi__get32le(s);
+ }
+ if (info->bpp == 16 || info->bpp == 32) {
+ if (compress == 0) {
+ stbi__bmp_set_mask_defaults(info, compress);
+ } else if (compress == 3) {
+ info->mr = stbi__get32le(s);
+ info->mg = stbi__get32le(s);
+ info->mb = stbi__get32le(s);
+ info->extra_read += 12;
+ // not documented, but generated by photoshop and handled by mspaint
+ if (info->mr == info->mg && info->mg == info->mb) {
+ // ?!?!?
+ return stbi__errpuc("bad BMP", "bad BMP");
+ }
+ } else
+ return stbi__errpuc("bad BMP", "bad BMP");
+ }
+ } else {
+ // V4/V5 header
+ int i;
+ if (hsz != 108 && hsz != 124)
+ return stbi__errpuc("bad BMP", "bad BMP");
+ info->mr = stbi__get32le(s);
+ info->mg = stbi__get32le(s);
+ info->mb = stbi__get32le(s);
+ info->ma = stbi__get32le(s);
+ if (compress != 3) // override mr/mg/mb unless in BI_BITFIELDS mode, as per docs
+ stbi__bmp_set_mask_defaults(info, compress);
+ stbi__get32le(s); // discard color space
+ for (i=0; i < 12; ++i)
+ stbi__get32le(s); // discard color space parameters
+ if (hsz == 124) {
+ stbi__get32le(s); // discard rendering intent
+ stbi__get32le(s); // discard offset of profile data
+ stbi__get32le(s); // discard size of profile data
+ stbi__get32le(s); // discard reserved
+ }
+ }
+ }
+ return (void *) 1;
+}
+
+
+static void *stbi__bmp_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri)
+{
+ stbi_uc *out;
+ unsigned int mr=0,mg=0,mb=0,ma=0, all_a;
+ stbi_uc pal[256][4];
+ int psize=0,i,j,width;
+ int flip_vertically, pad, target;
+ stbi__bmp_data info;
+ STBI_NOTUSED(ri);
+
+ info.all_a = 255;
+ if (stbi__bmp_parse_header(s, &info) == NULL)
+ return NULL; // error code already set
+
+ flip_vertically = ((int) s->img_y) > 0;
+ s->img_y = abs((int) s->img_y);
+
+ if (s->img_y > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)");
+ if (s->img_x > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)");
+
+ mr = info.mr;
+ mg = info.mg;
+ mb = info.mb;
+ ma = info.ma;
+ all_a = info.all_a;
+
+ if (info.hsz == 12) {
+ if (info.bpp < 24)
+ psize = (info.offset - info.extra_read - 24) / 3;
+ } else {
+ if (info.bpp < 16)
+ psize = (info.offset - info.extra_read - info.hsz) >> 2;
+ }
+ if (psize == 0) {
+ // accept some number of extra bytes after the header, but if the offset points either to before
+ // the header ends or implies a large amount of extra data, reject the file as malformed
+ int bytes_read_so_far = s->callback_already_read + (int)(s->img_buffer - s->img_buffer_original);
+ int header_limit = 1024; // max we actually read is below 256 bytes currently.
+ int extra_data_limit = 256*4; // what ordinarily goes here is a palette; 256 entries*4 bytes is its max size.
+ if (bytes_read_so_far <= 0 || bytes_read_so_far > header_limit) {
+ return stbi__errpuc("bad header", "Corrupt BMP");
+ }
+ // we established that bytes_read_so_far is positive and sensible.
+ // the first half of this test rejects offsets that are either too small positives, or
+ // negative, and guarantees that info.offset >= bytes_read_so_far > 0. this in turn
+ // ensures the number computed in the second half of the test can't overflow.
+ if (info.offset < bytes_read_so_far || info.offset - bytes_read_so_far > extra_data_limit) {
+ return stbi__errpuc("bad offset", "Corrupt BMP");
+ } else {
+ stbi__skip(s, info.offset - bytes_read_so_far);
+ }
+ }
+
+ if (info.bpp == 24 && ma == 0xff000000)
+ s->img_n = 3;
+ else
+ s->img_n = ma ? 4 : 3;
+ if (req_comp && req_comp >= 3) // we can directly decode 3 or 4
+ target = req_comp;
+ else
+ target = s->img_n; // if they want monochrome, we'll post-convert
+
+ // sanity-check size
+ if (!stbi__mad3sizes_valid(target, s->img_x, s->img_y, 0))
+ return stbi__errpuc("too large", "Corrupt BMP");
+
+ out = (stbi_uc *) stbi__malloc_mad3(target, s->img_x, s->img_y, 0);
+ if (!out) return stbi__errpuc("outofmem", "Out of memory");
+ if (info.bpp < 16) {
+ int z=0;
+ if (psize == 0 || psize > 256) { STBI_FREE(out); return stbi__errpuc("invalid", "Corrupt BMP"); }
+ for (i=0; i < psize; ++i) {
+ pal[i][2] = stbi__get8(s);
+ pal[i][1] = stbi__get8(s);
+ pal[i][0] = stbi__get8(s);
+ if (info.hsz != 12) stbi__get8(s);
+ pal[i][3] = 255;
+ }
+ stbi__skip(s, info.offset - info.extra_read - info.hsz - psize * (info.hsz == 12 ? 3 : 4));
+ if (info.bpp == 1) width = (s->img_x + 7) >> 3;
+ else if (info.bpp == 4) width = (s->img_x + 1) >> 1;
+ else if (info.bpp == 8) width = s->img_x;
+ else { STBI_FREE(out); return stbi__errpuc("bad bpp", "Corrupt BMP"); }
+ pad = (-width)&3;
+ if (info.bpp == 1) {
+ for (j=0; j < (int) s->img_y; ++j) {
+ int bit_offset = 7, v = stbi__get8(s);
+ for (i=0; i < (int) s->img_x; ++i) {
+ int color = (v>>bit_offset)&0x1;
+ out[z++] = pal[color][0];
+ out[z++] = pal[color][1];
+ out[z++] = pal[color][2];
+ if (target == 4) out[z++] = 255;
+ if (i+1 == (int) s->img_x) break;
+ if((--bit_offset) < 0) {
+ bit_offset = 7;
+ v = stbi__get8(s);
+ }
+ }
+ stbi__skip(s, pad);
+ }
+ } else {
+ for (j=0; j < (int) s->img_y; ++j) {
+ for (i=0; i < (int) s->img_x; i += 2) {
+ int v=stbi__get8(s),v2=0;
+ if (info.bpp == 4) {
+ v2 = v & 15;
+ v >>= 4;
+ }
+ out[z++] = pal[v][0];
+ out[z++] = pal[v][1];
+ out[z++] = pal[v][2];
+ if (target == 4) out[z++] = 255;
+ if (i+1 == (int) s->img_x) break;
+ v = (info.bpp == 8) ? stbi__get8(s) : v2;
+ out[z++] = pal[v][0];
+ out[z++] = pal[v][1];
+ out[z++] = pal[v][2];
+ if (target == 4) out[z++] = 255;
+ }
+ stbi__skip(s, pad);
+ }
+ }
+ } else {
+ int rshift=0,gshift=0,bshift=0,ashift=0,rcount=0,gcount=0,bcount=0,acount=0;
+ int z = 0;
+ int easy=0;
+ stbi__skip(s, info.offset - info.extra_read - info.hsz);
+ if (info.bpp == 24) width = 3 * s->img_x;
+ else if (info.bpp == 16) width = 2*s->img_x;
+ else /* bpp = 32 and pad = 0 */ width=0;
+ pad = (-width) & 3;
+ if (info.bpp == 24) {
+ easy = 1;
+ } else if (info.bpp == 32) {
+ if (mb == 0xff && mg == 0xff00 && mr == 0x00ff0000 && ma == 0xff000000)
+ easy = 2;
+ }
+ if (!easy) {
+ if (!mr || !mg || !mb) { STBI_FREE(out); return stbi__errpuc("bad masks", "Corrupt BMP"); }
+ // right shift amt to put high bit in position #7
+ rshift = stbi__high_bit(mr)-7; rcount = stbi__bitcount(mr);
+ gshift = stbi__high_bit(mg)-7; gcount = stbi__bitcount(mg);
+ bshift = stbi__high_bit(mb)-7; bcount = stbi__bitcount(mb);
+ ashift = stbi__high_bit(ma)-7; acount = stbi__bitcount(ma);
+ if (rcount > 8 || gcount > 8 || bcount > 8 || acount > 8) { STBI_FREE(out); return stbi__errpuc("bad masks", "Corrupt BMP"); }
+ }
+ for (j=0; j < (int) s->img_y; ++j) {
+ if (easy) {
+ for (i=0; i < (int) s->img_x; ++i) {
+ unsigned char a;
+ out[z+2] = stbi__get8(s);
+ out[z+1] = stbi__get8(s);
+ out[z+0] = stbi__get8(s);
+ z += 3;
+ a = (easy == 2 ? stbi__get8(s) : 255);
+ all_a |= a;
+ if (target == 4) out[z++] = a;
+ }
+ } else {
+ int bpp = info.bpp;
+ for (i=0; i < (int) s->img_x; ++i) {
+ stbi__uint32 v = (bpp == 16 ? (stbi__uint32) stbi__get16le(s) : stbi__get32le(s));
+ unsigned int a;
+ out[z++] = STBI__BYTECAST(stbi__shiftsigned(v & mr, rshift, rcount));
+ out[z++] = STBI__BYTECAST(stbi__shiftsigned(v & mg, gshift, gcount));
+ out[z++] = STBI__BYTECAST(stbi__shiftsigned(v & mb, bshift, bcount));
+ a = (ma ? stbi__shiftsigned(v & ma, ashift, acount) : 255);
+ all_a |= a;
+ if (target == 4) out[z++] = STBI__BYTECAST(a);
+ }
+ }
+ stbi__skip(s, pad);
+ }
+ }
+
+ // if alpha channel is all 0s, replace with all 255s
+ if (target == 4 && all_a == 0)
+ for (i=4*s->img_x*s->img_y-1; i >= 0; i -= 4)
+ out[i] = 255;
+
+ if (flip_vertically) {
+ stbi_uc t;
+ for (j=0; j < (int) s->img_y>>1; ++j) {
+ stbi_uc *p1 = out + j *s->img_x*target;
+ stbi_uc *p2 = out + (s->img_y-1-j)*s->img_x*target;
+ for (i=0; i < (int) s->img_x*target; ++i) {
+ t = p1[i]; p1[i] = p2[i]; p2[i] = t;
+ }
+ }
+ }
+
+ if (req_comp && req_comp != target) {
+ out = stbi__convert_format(out, target, req_comp, s->img_x, s->img_y);
+ if (out == NULL) return out; // stbi__convert_format frees input on failure
+ }
+
+ *x = s->img_x;
+ *y = s->img_y;
+ if (comp) *comp = s->img_n;
+ return out;
+}
+#endif
+
+// Targa Truevision - TGA
+// by Jonathan Dummer
+#ifndef STBI_NO_TGA
+// returns STBI_rgb or whatever, 0 on error
+static int stbi__tga_get_comp(int bits_per_pixel, int is_grey, int* is_rgb16)
+{
+ // only RGB or RGBA (incl. 16bit) or grey allowed
+ if (is_rgb16) *is_rgb16 = 0;
+ switch(bits_per_pixel) {
+ case 8: return STBI_grey;
+ case 16: if(is_grey) return STBI_grey_alpha;
+ // fallthrough
+ case 15: if(is_rgb16) *is_rgb16 = 1;
+ return STBI_rgb;
+ case 24: // fallthrough
+ case 32: return bits_per_pixel/8;
+ default: return 0;
+ }
+}
+
+static int stbi__tga_info(stbi__context *s, int *x, int *y, int *comp)
+{
+ int tga_w, tga_h, tga_comp, tga_image_type, tga_bits_per_pixel, tga_colormap_bpp;
+ int sz, tga_colormap_type;
+ stbi__get8(s); // discard Offset
+ tga_colormap_type = stbi__get8(s); // colormap type
+ if( tga_colormap_type > 1 ) {
+ stbi__rewind(s);
+ return 0; // only RGB or indexed allowed
+ }
+ tga_image_type = stbi__get8(s); // image type
+ if ( tga_colormap_type == 1 ) { // colormapped (paletted) image
+ if (tga_image_type != 1 && tga_image_type != 9) {
+ stbi__rewind(s);
+ return 0;
+ }
+ stbi__skip(s,4); // skip index of first colormap entry and number of entries
+ sz = stbi__get8(s); // check bits per palette color entry
+ if ( (sz != 8) && (sz != 15) && (sz != 16) && (sz != 24) && (sz != 32) ) {
+ stbi__rewind(s);
+ return 0;
+ }
+ stbi__skip(s,4); // skip image x and y origin
+ tga_colormap_bpp = sz;
+ } else { // "normal" image w/o colormap - only RGB or grey allowed, +/- RLE
+ if ( (tga_image_type != 2) && (tga_image_type != 3) && (tga_image_type != 10) && (tga_image_type != 11) ) {
+ stbi__rewind(s);
+ return 0; // only RGB or grey allowed, +/- RLE
+ }
+ stbi__skip(s,9); // skip colormap specification and image x/y origin
+ tga_colormap_bpp = 0;
+ }
+ tga_w = stbi__get16le(s);
+ if( tga_w < 1 ) {
+ stbi__rewind(s);
+ return 0; // test width
+ }
+ tga_h = stbi__get16le(s);
+ if( tga_h < 1 ) {
+ stbi__rewind(s);
+ return 0; // test height
+ }
+ tga_bits_per_pixel = stbi__get8(s); // bits per pixel
+ stbi__get8(s); // ignore alpha bits
+ if (tga_colormap_bpp != 0) {
+ if((tga_bits_per_pixel != 8) && (tga_bits_per_pixel != 16)) {
+ // when using a colormap, tga_bits_per_pixel is the size of the indexes
+ // I don't think anything but 8 or 16bit indexes makes sense
+ stbi__rewind(s);
+ return 0;
+ }
+ tga_comp = stbi__tga_get_comp(tga_colormap_bpp, 0, NULL);
+ } else {
+ tga_comp = stbi__tga_get_comp(tga_bits_per_pixel, (tga_image_type == 3) || (tga_image_type == 11), NULL);
+ }
+ if(!tga_comp) {
+ stbi__rewind(s);
+ return 0;
+ }
+ if (x) *x = tga_w;
+ if (y) *y = tga_h;
+ if (comp) *comp = tga_comp;
+ return 1; // seems to have passed everything
+}
+
+static int stbi__tga_test(stbi__context *s)
+{
+ int res = 0;
+ int sz, tga_color_type;
+ stbi__get8(s); // discard Offset
+ tga_color_type = stbi__get8(s); // color type
+ if ( tga_color_type > 1 ) goto errorEnd; // only RGB or indexed allowed
+ sz = stbi__get8(s); // image type
+ if ( tga_color_type == 1 ) { // colormapped (paletted) image
+ if (sz != 1 && sz != 9) goto errorEnd; // colortype 1 demands image type 1 or 9
+ stbi__skip(s,4); // skip index of first colormap entry and number of entries
+ sz = stbi__get8(s); // check bits per palette color entry
+ if ( (sz != 8) && (sz != 15) && (sz != 16) && (sz != 24) && (sz != 32) ) goto errorEnd;
+ stbi__skip(s,4); // skip image x and y origin
+ } else { // "normal" image w/o colormap
+ if ( (sz != 2) && (sz != 3) && (sz != 10) && (sz != 11) ) goto errorEnd; // only RGB or grey allowed, +/- RLE
+ stbi__skip(s,9); // skip colormap specification and image x/y origin
+ }
+ if ( stbi__get16le(s) < 1 ) goto errorEnd; // test width
+ if ( stbi__get16le(s) < 1 ) goto errorEnd; // test height
+ sz = stbi__get8(s); // bits per pixel
+ if ( (tga_color_type == 1) && (sz != 8) && (sz != 16) ) goto errorEnd; // for colormapped images, bpp is size of an index
+ if ( (sz != 8) && (sz != 15) && (sz != 16) && (sz != 24) && (sz != 32) ) goto errorEnd;
+
+ res = 1; // if we got this far, everything's good and we can return 1 instead of 0
+
+errorEnd:
+ stbi__rewind(s);
+ return res;
+}
+
+// read 16bit value and convert to 24bit RGB
+static void stbi__tga_read_rgb16(stbi__context *s, stbi_uc* out)
+{
+ stbi__uint16 px = (stbi__uint16)stbi__get16le(s);
+ stbi__uint16 fiveBitMask = 31;
+ // we have 3 channels with 5bits each
+ int r = (px >> 10) & fiveBitMask;
+ int g = (px >> 5) & fiveBitMask;
+ int b = px & fiveBitMask;
+ // Note that this saves the data in RGB(A) order, so it doesn't need to be swapped later
+ out[0] = (stbi_uc)((r * 255)/31);
+ out[1] = (stbi_uc)((g * 255)/31);
+ out[2] = (stbi_uc)((b * 255)/31);
+
+ // some people claim that the most significant bit might be used for alpha
+ // (possibly if an alpha-bit is set in the "image descriptor byte")
+ // but that only made 16bit test images completely translucent..
+ // so let's treat all 15 and 16bit TGAs as RGB with no alpha.
+}
+
+static void *stbi__tga_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri)
+{
+ // read in the TGA header stuff
+ int tga_offset = stbi__get8(s);
+ int tga_indexed = stbi__get8(s);
+ int tga_image_type = stbi__get8(s);
+ int tga_is_RLE = 0;
+ int tga_palette_start = stbi__get16le(s);
+ int tga_palette_len = stbi__get16le(s);
+ int tga_palette_bits = stbi__get8(s);
+ int tga_x_origin = stbi__get16le(s);
+ int tga_y_origin = stbi__get16le(s);
+ int tga_width = stbi__get16le(s);
+ int tga_height = stbi__get16le(s);
+ int tga_bits_per_pixel = stbi__get8(s);
+ int tga_comp, tga_rgb16=0;
+ int tga_inverted = stbi__get8(s);
+ // int tga_alpha_bits = tga_inverted & 15; // the 4 lowest bits - unused (useless?)
+ // image data
+ unsigned char *tga_data;
+ unsigned char *tga_palette = NULL;
+ int i, j;
+ unsigned char raw_data[4] = {0};
+ int RLE_count = 0;
+ int RLE_repeating = 0;
+ int read_next_pixel = 1;
+ STBI_NOTUSED(ri);
+ STBI_NOTUSED(tga_x_origin); // @TODO
+ STBI_NOTUSED(tga_y_origin); // @TODO
+
+ if (tga_height > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)");
+ if (tga_width > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)");
+
+ // do a tiny bit of precessing
+ if ( tga_image_type >= 8 )
+ {
+ tga_image_type -= 8;
+ tga_is_RLE = 1;
+ }
+ tga_inverted = 1 - ((tga_inverted >> 5) & 1);
+
+ // If I'm paletted, then I'll use the number of bits from the palette
+ if ( tga_indexed ) tga_comp = stbi__tga_get_comp(tga_palette_bits, 0, &tga_rgb16);
+ else tga_comp = stbi__tga_get_comp(tga_bits_per_pixel, (tga_image_type == 3), &tga_rgb16);
+
+ if(!tga_comp) // shouldn't really happen, stbi__tga_test() should have ensured basic consistency
+ return stbi__errpuc("bad format", "Can't find out TGA pixelformat");
+
+ // tga info
+ *x = tga_width;
+ *y = tga_height;
+ if (comp) *comp = tga_comp;
+
+ if (!stbi__mad3sizes_valid(tga_width, tga_height, tga_comp, 0))
+ return stbi__errpuc("too large", "Corrupt TGA");
+
+ tga_data = (unsigned char*)stbi__malloc_mad3(tga_width, tga_height, tga_comp, 0);
+ if (!tga_data) return stbi__errpuc("outofmem", "Out of memory");
+
+ // skip to the data's starting position (offset usually = 0)
+ stbi__skip(s, tga_offset );
+
+ if ( !tga_indexed && !tga_is_RLE && !tga_rgb16 ) {
+ for (i=0; i < tga_height; ++i) {
+ int row = tga_inverted ? tga_height -i - 1 : i;
+ stbi_uc *tga_row = tga_data + row*tga_width*tga_comp;
+ stbi__getn(s, tga_row, tga_width * tga_comp);
+ }
+ } else {
+ // do I need to load a palette?
+ if ( tga_indexed)
+ {
+ if (tga_palette_len == 0) { /* you have to have at least one entry! */
+ STBI_FREE(tga_data);
+ return stbi__errpuc("bad palette", "Corrupt TGA");
+ }
+
+ // any data to skip? (offset usually = 0)
+ stbi__skip(s, tga_palette_start );
+ // load the palette
+ tga_palette = (unsigned char*)stbi__malloc_mad2(tga_palette_len, tga_comp, 0);
+ if (!tga_palette) {
+ STBI_FREE(tga_data);
+ return stbi__errpuc("outofmem", "Out of memory");
+ }
+ if (tga_rgb16) {
+ stbi_uc *pal_entry = tga_palette;
+ STBI_ASSERT(tga_comp == STBI_rgb);
+ for (i=0; i < tga_palette_len; ++i) {
+ stbi__tga_read_rgb16(s, pal_entry);
+ pal_entry += tga_comp;
+ }
+ } else if (!stbi__getn(s, tga_palette, tga_palette_len * tga_comp)) {
+ STBI_FREE(tga_data);
+ STBI_FREE(tga_palette);
+ return stbi__errpuc("bad palette", "Corrupt TGA");
+ }
+ }
+ // load the data
+ for (i=0; i < tga_width * tga_height; ++i)
+ {
+ // if I'm in RLE mode, do I need to get a RLE stbi__pngchunk?
+ if ( tga_is_RLE )
+ {
+ if ( RLE_count == 0 )
+ {
+ // yep, get the next byte as a RLE command
+ int RLE_cmd = stbi__get8(s);
+ RLE_count = 1 + (RLE_cmd & 127);
+ RLE_repeating = RLE_cmd >> 7;
+ read_next_pixel = 1;
+ } else if ( !RLE_repeating )
+ {
+ read_next_pixel = 1;
+ }
+ } else
+ {
+ read_next_pixel = 1;
+ }
+ // OK, if I need to read a pixel, do it now
+ if ( read_next_pixel )
+ {
+ // load however much data we did have
+ if ( tga_indexed )
+ {
+ // read in index, then perform the lookup
+ int pal_idx = (tga_bits_per_pixel == 8) ? stbi__get8(s) : stbi__get16le(s);
+ if ( pal_idx >= tga_palette_len ) {
+ // invalid index
+ pal_idx = 0;
+ }
+ pal_idx *= tga_comp;
+ for (j = 0; j < tga_comp; ++j) {
+ raw_data[j] = tga_palette[pal_idx+j];
+ }
+ } else if(tga_rgb16) {
+ STBI_ASSERT(tga_comp == STBI_rgb);
+ stbi__tga_read_rgb16(s, raw_data);
+ } else {
+ // read in the data raw
+ for (j = 0; j < tga_comp; ++j) {
+ raw_data[j] = stbi__get8(s);
+ }
+ }
+ // clear the reading flag for the next pixel
+ read_next_pixel = 0;
+ } // end of reading a pixel
+
+ // copy data
+ for (j = 0; j < tga_comp; ++j)
+ tga_data[i*tga_comp+j] = raw_data[j];
+
+ // in case we're in RLE mode, keep counting down
+ --RLE_count;
+ }
+ // do I need to invert the image?
+ if ( tga_inverted )
+ {
+ for (j = 0; j*2 < tga_height; ++j)
+ {
+ int index1 = j * tga_width * tga_comp;
+ int index2 = (tga_height - 1 - j) * tga_width * tga_comp;
+ for (i = tga_width * tga_comp; i > 0; --i)
+ {
+ unsigned char temp = tga_data[index1];
+ tga_data[index1] = tga_data[index2];
+ tga_data[index2] = temp;
+ ++index1;
+ ++index2;
+ }
+ }
+ }
+ // clear my palette, if I had one
+ if ( tga_palette != NULL )
+ {
+ STBI_FREE( tga_palette );
+ }
+ }
+
+ // swap RGB - if the source data was RGB16, it already is in the right order
+ if (tga_comp >= 3 && !tga_rgb16)
+ {
+ unsigned char* tga_pixel = tga_data;
+ for (i=0; i < tga_width * tga_height; ++i)
+ {
+ unsigned char temp = tga_pixel[0];
+ tga_pixel[0] = tga_pixel[2];
+ tga_pixel[2] = temp;
+ tga_pixel += tga_comp;
+ }
+ }
+
+ // convert to target component count
+ if (req_comp && req_comp != tga_comp)
+ tga_data = stbi__convert_format(tga_data, tga_comp, req_comp, tga_width, tga_height);
+
+ // the things I do to get rid of an error message, and yet keep
+ // Microsoft's C compilers happy... [8^(
+ tga_palette_start = tga_palette_len = tga_palette_bits =
+ tga_x_origin = tga_y_origin = 0;
+ STBI_NOTUSED(tga_palette_start);
+ // OK, done
+ return tga_data;
+}
+#endif
+
+// *************************************************************************************************
+// Photoshop PSD loader -- PD by Thatcher Ulrich, integration by Nicolas Schulz, tweaked by STB
+
+#ifndef STBI_NO_PSD
+static int stbi__psd_test(stbi__context *s)
+{
+ int r = (stbi__get32be(s) == 0x38425053);
+ stbi__rewind(s);
+ return r;
+}
+
+static int stbi__psd_decode_rle(stbi__context *s, stbi_uc *p, int pixelCount)
+{
+ int count, nleft, len;
+
+ count = 0;
+ while ((nleft = pixelCount - count) > 0) {
+ len = stbi__get8(s);
+ if (len == 128) {
+ // No-op.
+ } else if (len < 128) {
+ // Copy next len+1 bytes literally.
+ len++;
+ if (len > nleft) return 0; // corrupt data
+ count += len;
+ while (len) {
+ *p = stbi__get8(s);
+ p += 4;
+ len--;
+ }
+ } else if (len > 128) {
+ stbi_uc val;
+ // Next -len+1 bytes in the dest are replicated from next source byte.
+ // (Interpret len as a negative 8-bit int.)
+ len = 257 - len;
+ if (len > nleft) return 0; // corrupt data
+ val = stbi__get8(s);
+ count += len;
+ while (len) {
+ *p = val;
+ p += 4;
+ len--;
+ }
+ }
+ }
+
+ return 1;
+}
+
+static void *stbi__psd_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri, int bpc)
+{
+ int pixelCount;
+ int channelCount, compression;
+ int channel, i;
+ int bitdepth;
+ int w,h;
+ stbi_uc *out;
+ STBI_NOTUSED(ri);
+
+ // Check identifier
+ if (stbi__get32be(s) != 0x38425053) // "8BPS"
+ return stbi__errpuc("not PSD", "Corrupt PSD image");
+
+ // Check file type version.
+ if (stbi__get16be(s) != 1)
+ return stbi__errpuc("wrong version", "Unsupported version of PSD image");
+
+ // Skip 6 reserved bytes.
+ stbi__skip(s, 6 );
+
+ // Read the number of channels (R, G, B, A, etc).
+ channelCount = stbi__get16be(s);
+ if (channelCount < 0 || channelCount > 16)
+ return stbi__errpuc("wrong channel count", "Unsupported number of channels in PSD image");
+
+ // Read the rows and columns of the image.
+ h = stbi__get32be(s);
+ w = stbi__get32be(s);
+
+ if (h > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)");
+ if (w > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)");
+
+ // Make sure the depth is 8 bits.
+ bitdepth = stbi__get16be(s);
+ if (bitdepth != 8 && bitdepth != 16)
+ return stbi__errpuc("unsupported bit depth", "PSD bit depth is not 8 or 16 bit");
+
+ // Make sure the color mode is RGB.
+ // Valid options are:
+ // 0: Bitmap
+ // 1: Grayscale
+ // 2: Indexed color
+ // 3: RGB color
+ // 4: CMYK color
+ // 7: Multichannel
+ // 8: Duotone
+ // 9: Lab color
+ if (stbi__get16be(s) != 3)
+ return stbi__errpuc("wrong color format", "PSD is not in RGB color format");
+
+ // Skip the Mode Data. (It's the palette for indexed color; other info for other modes.)
+ stbi__skip(s,stbi__get32be(s) );
+
+ // Skip the image resources. (resolution, pen tool paths, etc)
+ stbi__skip(s, stbi__get32be(s) );
+
+ // Skip the reserved data.
+ stbi__skip(s, stbi__get32be(s) );
+
+ // Find out if the data is compressed.
+ // Known values:
+ // 0: no compression
+ // 1: RLE compressed
+ compression = stbi__get16be(s);
+ if (compression > 1)
+ return stbi__errpuc("bad compression", "PSD has an unknown compression format");
+
+ // Check size
+ if (!stbi__mad3sizes_valid(4, w, h, 0))
+ return stbi__errpuc("too large", "Corrupt PSD");
+
+ // Create the destination image.
+
+ if (!compression && bitdepth == 16 && bpc == 16) {
+ out = (stbi_uc *) stbi__malloc_mad3(8, w, h, 0);
+ ri->bits_per_channel = 16;
+ } else
+ out = (stbi_uc *) stbi__malloc(4 * w*h);
+
+ if (!out) return stbi__errpuc("outofmem", "Out of memory");
+ pixelCount = w*h;
+
+ // Initialize the data to zero.
+ //memset( out, 0, pixelCount * 4 );
+
+ // Finally, the image data.
+ if (compression) {
+ // RLE as used by .PSD and .TIFF
+ // Loop until you get the number of unpacked bytes you are expecting:
+ // Read the next source byte into n.
+ // If n is between 0 and 127 inclusive, copy the next n+1 bytes literally.
+ // Else if n is between -127 and -1 inclusive, copy the next byte -n+1 times.
+ // Else if n is 128, noop.
+ // Endloop
+
+ // The RLE-compressed data is preceded by a 2-byte data count for each row in the data,
+ // which we're going to just skip.
+ stbi__skip(s, h * channelCount * 2 );
+
+ // Read the RLE data by channel.
+ for (channel = 0; channel < 4; channel++) {
+ stbi_uc *p;
+
+ p = out+channel;
+ if (channel >= channelCount) {
+ // Fill this channel with default data.
+ for (i = 0; i < pixelCount; i++, p += 4)
+ *p = (channel == 3 ? 255 : 0);
+ } else {
+ // Read the RLE data.
+ if (!stbi__psd_decode_rle(s, p, pixelCount)) {
+ STBI_FREE(out);
+ return stbi__errpuc("corrupt", "bad RLE data");
+ }
+ }
+ }
+
+ } else {
+ // We're at the raw image data. It's each channel in order (Red, Green, Blue, Alpha, ...)
+ // where each channel consists of an 8-bit (or 16-bit) value for each pixel in the image.
+
+ // Read the data by channel.
+ for (channel = 0; channel < 4; channel++) {
+ if (channel >= channelCount) {
+ // Fill this channel with default data.
+ if (bitdepth == 16 && bpc == 16) {
+ stbi__uint16 *q = ((stbi__uint16 *) out) + channel;
+ stbi__uint16 val = channel == 3 ? 65535 : 0;
+ for (i = 0; i < pixelCount; i++, q += 4)
+ *q = val;
+ } else {
+ stbi_uc *p = out+channel;
+ stbi_uc val = channel == 3 ? 255 : 0;
+ for (i = 0; i < pixelCount; i++, p += 4)
+ *p = val;
+ }
+ } else {
+ if (ri->bits_per_channel == 16) { // output bpc
+ stbi__uint16 *q = ((stbi__uint16 *) out) + channel;
+ for (i = 0; i < pixelCount; i++, q += 4)
+ *q = (stbi__uint16) stbi__get16be(s);
+ } else {
+ stbi_uc *p = out+channel;
+ if (bitdepth == 16) { // input bpc
+ for (i = 0; i < pixelCount; i++, p += 4)
+ *p = (stbi_uc) (stbi__get16be(s) >> 8);
+ } else {
+ for (i = 0; i < pixelCount; i++, p += 4)
+ *p = stbi__get8(s);
+ }
+ }
+ }
+ }
+ }
+
+ // remove weird white matte from PSD
+ if (channelCount >= 4) {
+ if (ri->bits_per_channel == 16) {
+ for (i=0; i < w*h; ++i) {
+ stbi__uint16 *pixel = (stbi__uint16 *) out + 4*i;
+ if (pixel[3] != 0 && pixel[3] != 65535) {
+ float a = pixel[3] / 65535.0f;
+ float ra = 1.0f / a;
+ float inv_a = 65535.0f * (1 - ra);
+ pixel[0] = (stbi__uint16) (pixel[0]*ra + inv_a);
+ pixel[1] = (stbi__uint16) (pixel[1]*ra + inv_a);
+ pixel[2] = (stbi__uint16) (pixel[2]*ra + inv_a);
+ }
+ }
+ } else {
+ for (i=0; i < w*h; ++i) {
+ unsigned char *pixel = out + 4*i;
+ if (pixel[3] != 0 && pixel[3] != 255) {
+ float a = pixel[3] / 255.0f;
+ float ra = 1.0f / a;
+ float inv_a = 255.0f * (1 - ra);
+ pixel[0] = (unsigned char) (pixel[0]*ra + inv_a);
+ pixel[1] = (unsigned char) (pixel[1]*ra + inv_a);
+ pixel[2] = (unsigned char) (pixel[2]*ra + inv_a);
+ }
+ }
+ }
+ }
+
+ // convert to desired output format
+ if (req_comp && req_comp != 4) {
+ if (ri->bits_per_channel == 16)
+ out = (stbi_uc *) stbi__convert_format16((stbi__uint16 *) out, 4, req_comp, w, h);
+ else
+ out = stbi__convert_format(out, 4, req_comp, w, h);
+ if (out == NULL) return out; // stbi__convert_format frees input on failure
+ }
+
+ if (comp) *comp = 4;
+ *y = h;
+ *x = w;
+
+ return out;
+}
+#endif
+
+// *************************************************************************************************
+// Softimage PIC loader
+// by Tom Seddon
+//
+// See http://softimage.wiki.softimage.com/index.php/INFO:_PIC_file_format
+// See http://ozviz.wasp.uwa.edu.au/~pbourke/dataformats/softimagepic/
+
+#ifndef STBI_NO_PIC
+static int stbi__pic_is4(stbi__context *s,const char *str)
+{
+ int i;
+ for (i=0; i<4; ++i)
+ if (stbi__get8(s) != (stbi_uc)str[i])
+ return 0;
+
+ return 1;
+}
+
+static int stbi__pic_test_core(stbi__context *s)
+{
+ int i;
+
+ if (!stbi__pic_is4(s,"\x53\x80\xF6\x34"))
+ return 0;
+
+ for(i=0;i<84;++i)
+ stbi__get8(s);
+
+ if (!stbi__pic_is4(s,"PICT"))
+ return 0;
+
+ return 1;
+}
+
+typedef struct
+{
+ stbi_uc size,type,channel;
+} stbi__pic_packet;
+
+static stbi_uc *stbi__readval(stbi__context *s, int channel, stbi_uc *dest)
+{
+ int mask=0x80, i;
+
+ for (i=0; i<4; ++i, mask>>=1) {
+ if (channel & mask) {
+ if (stbi__at_eof(s)) return stbi__errpuc("bad file","PIC file too short");
+ dest[i]=stbi__get8(s);
+ }
+ }
+
+ return dest;
+}
+
+static void stbi__copyval(int channel,stbi_uc *dest,const stbi_uc *src)
+{
+ int mask=0x80,i;
+
+ for (i=0;i<4; ++i, mask>>=1)
+ if (channel&mask)
+ dest[i]=src[i];
+}
+
+static stbi_uc *stbi__pic_load_core(stbi__context *s,int width,int height,int *comp, stbi_uc *result)
+{
+ int act_comp=0,num_packets=0,y,chained;
+ stbi__pic_packet packets[10];
+
+ // this will (should...) cater for even some bizarre stuff like having data
+ // for the same channel in multiple packets.
+ do {
+ stbi__pic_packet *packet;
+
+ if (num_packets==sizeof(packets)/sizeof(packets[0]))
+ return stbi__errpuc("bad format","too many packets");
+
+ packet = &packets[num_packets++];
+
+ chained = stbi__get8(s);
+ packet->size = stbi__get8(s);
+ packet->type = stbi__get8(s);
+ packet->channel = stbi__get8(s);
+
+ act_comp |= packet->channel;
+
+ if (stbi__at_eof(s)) return stbi__errpuc("bad file","file too short (reading packets)");
+ if (packet->size != 8) return stbi__errpuc("bad format","packet isn't 8bpp");
+ } while (chained);
+
+ *comp = (act_comp & 0x10 ? 4 : 3); // has alpha channel?
+
+ for(y=0; y<height; ++y) {
+ int packet_idx;
+
+ for(packet_idx=0; packet_idx < num_packets; ++packet_idx) {
+ stbi__pic_packet *packet = &packets[packet_idx];
+ stbi_uc *dest = result+y*width*4;
+
+ switch (packet->type) {
+ default:
+ return stbi__errpuc("bad format","packet has bad compression type");
+
+ case 0: {//uncompressed
+ int x;
+
+ for(x=0;x<width;++x, dest+=4)
+ if (!stbi__readval(s,packet->channel,dest))
+ return 0;
+ break;
+ }
+
+ case 1://Pure RLE
+ {
+ int left=width, i;
+
+ while (left>0) {
+ stbi_uc count,value[4];
+
+ count=stbi__get8(s);
+ if (stbi__at_eof(s)) return stbi__errpuc("bad file","file too short (pure read count)");
+
+ if (count > left)
+ count = (stbi_uc) left;
+
+ if (!stbi__readval(s,packet->channel,value)) return 0;
+
+ for(i=0; i<count; ++i,dest+=4)
+ stbi__copyval(packet->channel,dest,value);
+ left -= count;
+ }
+ }
+ break;
+
+ case 2: {//Mixed RLE
+ int left=width;
+ while (left>0) {
+ int count = stbi__get8(s), i;
+ if (stbi__at_eof(s)) return stbi__errpuc("bad file","file too short (mixed read count)");
+
+ if (count >= 128) { // Repeated
+ stbi_uc value[4];
+
+ if (count==128)
+ count = stbi__get16be(s);
+ else
+ count -= 127;
+ if (count > left)
+ return stbi__errpuc("bad file","scanline overrun");
+
+ if (!stbi__readval(s,packet->channel,value))
+ return 0;
+
+ for(i=0;i<count;++i, dest += 4)
+ stbi__copyval(packet->channel,dest,value);
+ } else { // Raw
+ ++count;
+ if (count>left) return stbi__errpuc("bad file","scanline overrun");
+
+ for(i=0;i<count;++i, dest+=4)
+ if (!stbi__readval(s,packet->channel,dest))
+ return 0;
+ }
+ left-=count;
+ }
+ break;
+ }
+ }
+ }
+ }
+
+ return result;
+}
+
+static void *stbi__pic_load(stbi__context *s,int *px,int *py,int *comp,int req_comp, stbi__result_info *ri)
+{
+ stbi_uc *result;
+ int i, x,y, internal_comp;
+ STBI_NOTUSED(ri);
+
+ if (!comp) comp = &internal_comp;
+
+ for (i=0; i<92; ++i)
+ stbi__get8(s);
+
+ x = stbi__get16be(s);
+ y = stbi__get16be(s);
+
+ if (y > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)");
+ if (x > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)");
+
+ if (stbi__at_eof(s)) return stbi__errpuc("bad file","file too short (pic header)");
+ if (!stbi__mad3sizes_valid(x, y, 4, 0)) return stbi__errpuc("too large", "PIC image too large to decode");
+
+ stbi__get32be(s); //skip `ratio'
+ stbi__get16be(s); //skip `fields'
+ stbi__get16be(s); //skip `pad'
+
+ // intermediate buffer is RGBA
+ result = (stbi_uc *) stbi__malloc_mad3(x, y, 4, 0);
+ if (!result) return stbi__errpuc("outofmem", "Out of memory");
+ memset(result, 0xff, x*y*4);
+
+ if (!stbi__pic_load_core(s,x,y,comp, result)) {
+ STBI_FREE(result);
+ result=0;
+ }
+ *px = x;
+ *py = y;
+ if (req_comp == 0) req_comp = *comp;
+ result=stbi__convert_format(result,4,req_comp,x,y);
+
+ return result;
+}
+
+static int stbi__pic_test(stbi__context *s)
+{
+ int r = stbi__pic_test_core(s);
+ stbi__rewind(s);
+ return r;
+}
+#endif
+
+// *************************************************************************************************
+// GIF loader -- public domain by Jean-Marc Lienher -- simplified/shrunk by stb
+
+#ifndef STBI_NO_GIF
+typedef struct
+{
+ stbi__int16 prefix;
+ stbi_uc first;
+ stbi_uc suffix;
+} stbi__gif_lzw;
+
+typedef struct
+{
+ int w,h;
+ stbi_uc *out; // output buffer (always 4 components)
+ stbi_uc *background; // The current "background" as far as a gif is concerned
+ stbi_uc *history;
+ int flags, bgindex, ratio, transparent, eflags;
+ stbi_uc pal[256][4];
+ stbi_uc lpal[256][4];
+ stbi__gif_lzw codes[8192];
+ stbi_uc *color_table;
+ int parse, step;
+ int lflags;
+ int start_x, start_y;
+ int max_x, max_y;
+ int cur_x, cur_y;
+ int line_size;
+ int delay;
+} stbi__gif;
+
+static int stbi__gif_test_raw(stbi__context *s)
+{
+ int sz;
+ if (stbi__get8(s) != 'G' || stbi__get8(s) != 'I' || stbi__get8(s) != 'F' || stbi__get8(s) != '8') return 0;
+ sz = stbi__get8(s);
+ if (sz != '9' && sz != '7') return 0;
+ if (stbi__get8(s) != 'a') return 0;
+ return 1;
+}
+
+static int stbi__gif_test(stbi__context *s)
+{
+ int r = stbi__gif_test_raw(s);
+ stbi__rewind(s);
+ return r;
+}
+
+static void stbi__gif_parse_colortable(stbi__context *s, stbi_uc pal[256][4], int num_entries, int transp)
+{
+ int i;
+ for (i=0; i < num_entries; ++i) {
+ pal[i][2] = stbi__get8(s);
+ pal[i][1] = stbi__get8(s);
+ pal[i][0] = stbi__get8(s);
+ pal[i][3] = transp == i ? 0 : 255;
+ }
+}
+
+static int stbi__gif_header(stbi__context *s, stbi__gif *g, int *comp, int is_info)
+{
+ stbi_uc version;
+ if (stbi__get8(s) != 'G' || stbi__get8(s) != 'I' || stbi__get8(s) != 'F' || stbi__get8(s) != '8')
+ return stbi__err("not GIF", "Corrupt GIF");
+
+ version = stbi__get8(s);
+ if (version != '7' && version != '9') return stbi__err("not GIF", "Corrupt GIF");
+ if (stbi__get8(s) != 'a') return stbi__err("not GIF", "Corrupt GIF");
+
+ stbi__g_failure_reason = "";
+ g->w = stbi__get16le(s);
+ g->h = stbi__get16le(s);
+ g->flags = stbi__get8(s);
+ g->bgindex = stbi__get8(s);
+ g->ratio = stbi__get8(s);
+ g->transparent = -1;
+
+ if (g->w > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)");
+ if (g->h > STBI_MAX_DIMENSIONS) return stbi__err("too large","Very large image (corrupt?)");
+
+ if (comp != 0) *comp = 4; // can't actually tell whether it's 3 or 4 until we parse the comments
+
+ if (is_info) return 1;
+
+ if (g->flags & 0x80)
+ stbi__gif_parse_colortable(s,g->pal, 2 << (g->flags & 7), -1);
+
+ return 1;
+}
+
+static int stbi__gif_info_raw(stbi__context *s, int *x, int *y, int *comp)
+{
+ stbi__gif* g = (stbi__gif*) stbi__malloc(sizeof(stbi__gif));
+ if (!g) return stbi__err("outofmem", "Out of memory");
+ if (!stbi__gif_header(s, g, comp, 1)) {
+ STBI_FREE(g);
+ stbi__rewind( s );
+ return 0;
+ }
+ if (x) *x = g->w;
+ if (y) *y = g->h;
+ STBI_FREE(g);
+ return 1;
+}
+
+static void stbi__out_gif_code(stbi__gif *g, stbi__uint16 code)
+{
+ stbi_uc *p, *c;
+ int idx;
+
+ // recurse to decode the prefixes, since the linked-list is backwards,
+ // and working backwards through an interleaved image would be nasty
+ if (g->codes[code].prefix >= 0)
+ stbi__out_gif_code(g, g->codes[code].prefix);
+
+ if (g->cur_y >= g->max_y) return;
+
+ idx = g->cur_x + g->cur_y;
+ p = &g->out[idx];
+ g->history[idx / 4] = 1;
+
+ c = &g->color_table[g->codes[code].suffix * 4];
+ if (c[3] > 128) { // don't render transparent pixels;
+ p[0] = c[2];
+ p[1] = c[1];
+ p[2] = c[0];
+ p[3] = c[3];
+ }
+ g->cur_x += 4;
+
+ if (g->cur_x >= g->max_x) {
+ g->cur_x = g->start_x;
+ g->cur_y += g->step;
+
+ while (g->cur_y >= g->max_y && g->parse > 0) {
+ g->step = (1 << g->parse) * g->line_size;
+ g->cur_y = g->start_y + (g->step >> 1);
+ --g->parse;
+ }
+ }
+}
+
+static stbi_uc *stbi__process_gif_raster(stbi__context *s, stbi__gif *g)
+{
+ stbi_uc lzw_cs;
+ stbi__int32 len, init_code;
+ stbi__uint32 first;
+ stbi__int32 codesize, codemask, avail, oldcode, bits, valid_bits, clear;
+ stbi__gif_lzw *p;
+
+ lzw_cs = stbi__get8(s);
+ if (lzw_cs > 12) return NULL;
+ clear = 1 << lzw_cs;
+ first = 1;
+ codesize = lzw_cs + 1;
+ codemask = (1 << codesize) - 1;
+ bits = 0;
+ valid_bits = 0;
+ for (init_code = 0; init_code < clear; init_code++) {
+ g->codes[init_code].prefix = -1;
+ g->codes[init_code].first = (stbi_uc) init_code;
+ g->codes[init_code].suffix = (stbi_uc) init_code;
+ }
+
+ // support no starting clear code
+ avail = clear+2;
+ oldcode = -1;
+
+ len = 0;
+ for(;;) {
+ if (valid_bits < codesize) {
+ if (len == 0) {
+ len = stbi__get8(s); // start new block
+ if (len == 0)
+ return g->out;
+ }
+ --len;
+ bits |= (stbi__int32) stbi__get8(s) << valid_bits;
+ valid_bits += 8;
+ } else {
+ stbi__int32 code = bits & codemask;
+ bits >>= codesize;
+ valid_bits -= codesize;
+ // @OPTIMIZE: is there some way we can accelerate the non-clear path?
+ if (code == clear) { // clear code
+ codesize = lzw_cs + 1;
+ codemask = (1 << codesize) - 1;
+ avail = clear + 2;
+ oldcode = -1;
+ first = 0;
+ } else if (code == clear + 1) { // end of stream code
+ stbi__skip(s, len);
+ while ((len = stbi__get8(s)) > 0)
+ stbi__skip(s,len);
+ return g->out;
+ } else if (code <= avail) {
+ if (first) {
+ return stbi__errpuc("no clear code", "Corrupt GIF");
+ }
+
+ if (oldcode >= 0) {
+ p = &g->codes[avail++];
+ if (avail > 8192) {
+ return stbi__errpuc("too many codes", "Corrupt GIF");
+ }
+
+ p->prefix = (stbi__int16) oldcode;
+ p->first = g->codes[oldcode].first;
+ p->suffix = (code == avail) ? p->first : g->codes[code].first;
+ } else if (code == avail)
+ return stbi__errpuc("illegal code in raster", "Corrupt GIF");
+
+ stbi__out_gif_code(g, (stbi__uint16) code);
+
+ if ((avail & codemask) == 0 && avail <= 0x0FFF) {
+ codesize++;
+ codemask = (1 << codesize) - 1;
+ }
+
+ oldcode = code;
+ } else {
+ return stbi__errpuc("illegal code in raster", "Corrupt GIF");
+ }
+ }
+ }
+}
+
+// this function is designed to support animated gifs, although stb_image doesn't support it
+// two back is the image from two frames ago, used for a very specific disposal format
+static stbi_uc *stbi__gif_load_next(stbi__context *s, stbi__gif *g, int *comp, int req_comp, stbi_uc *two_back)
+{
+ int dispose;
+ int first_frame;
+ int pi;
+ int pcount;
+ STBI_NOTUSED(req_comp);
+
+ // on first frame, any non-written pixels get the background colour (non-transparent)
+ first_frame = 0;
+ if (g->out == 0) {
+ if (!stbi__gif_header(s, g, comp,0)) return 0; // stbi__g_failure_reason set by stbi__gif_header
+ if (!stbi__mad3sizes_valid(4, g->w, g->h, 0))
+ return stbi__errpuc("too large", "GIF image is too large");
+ pcount = g->w * g->h;
+ g->out = (stbi_uc *) stbi__malloc(4 * pcount);
+ g->background = (stbi_uc *) stbi__malloc(4 * pcount);
+ g->history = (stbi_uc *) stbi__malloc(pcount);
+ if (!g->out || !g->background || !g->history)
+ return stbi__errpuc("outofmem", "Out of memory");
+
+ // image is treated as "transparent" at the start - ie, nothing overwrites the current background;
+ // background colour is only used for pixels that are not rendered first frame, after that "background"
+ // color refers to the color that was there the previous frame.
+ memset(g->out, 0x00, 4 * pcount);
+ memset(g->background, 0x00, 4 * pcount); // state of the background (starts transparent)
+ memset(g->history, 0x00, pcount); // pixels that were affected previous frame
+ first_frame = 1;
+ } else {
+ // second frame - how do we dispose of the previous one?
+ dispose = (g->eflags & 0x1C) >> 2;
+ pcount = g->w * g->h;
+
+ if ((dispose == 3) && (two_back == 0)) {
+ dispose = 2; // if I don't have an image to revert back to, default to the old background
+ }
+
+ if (dispose == 3) { // use previous graphic
+ for (pi = 0; pi < pcount; ++pi) {
+ if (g->history[pi]) {
+ memcpy( &g->out[pi * 4], &two_back[pi * 4], 4 );
+ }
+ }
+ } else if (dispose == 2) {
+ // restore what was changed last frame to background before that frame;
+ for (pi = 0; pi < pcount; ++pi) {
+ if (g->history[pi]) {
+ memcpy( &g->out[pi * 4], &g->background[pi * 4], 4 );
+ }
+ }
+ } else {
+ // This is a non-disposal case eithe way, so just
+ // leave the pixels as is, and they will become the new background
+ // 1: do not dispose
+ // 0: not specified.
+ }
+
+ // background is what out is after the undoing of the previou frame;
+ memcpy( g->background, g->out, 4 * g->w * g->h );
+ }
+
+ // clear my history;
+ memset( g->history, 0x00, g->w * g->h ); // pixels that were affected previous frame
+
+ for (;;) {
+ int tag = stbi__get8(s);
+ switch (tag) {
+ case 0x2C: /* Image Descriptor */
+ {
+ stbi__int32 x, y, w, h;
+ stbi_uc *o;
+
+ x = stbi__get16le(s);
+ y = stbi__get16le(s);
+ w = stbi__get16le(s);
+ h = stbi__get16le(s);
+ if (((x + w) > (g->w)) || ((y + h) > (g->h)))
+ return stbi__errpuc("bad Image Descriptor", "Corrupt GIF");
+
+ g->line_size = g->w * 4;
+ g->start_x = x * 4;
+ g->start_y = y * g->line_size;
+ g->max_x = g->start_x + w * 4;
+ g->max_y = g->start_y + h * g->line_size;
+ g->cur_x = g->start_x;
+ g->cur_y = g->start_y;
+
+ // if the width of the specified rectangle is 0, that means
+ // we may not see *any* pixels or the image is malformed;
+ // to make sure this is caught, move the current y down to
+ // max_y (which is what out_gif_code checks).
+ if (w == 0)
+ g->cur_y = g->max_y;
+
+ g->lflags = stbi__get8(s);
+
+ if (g->lflags & 0x40) {
+ g->step = 8 * g->line_size; // first interlaced spacing
+ g->parse = 3;
+ } else {
+ g->step = g->line_size;
+ g->parse = 0;
+ }
+
+ if (g->lflags & 0x80) {
+ stbi__gif_parse_colortable(s,g->lpal, 2 << (g->lflags & 7), g->eflags & 0x01 ? g->transparent : -1);
+ g->color_table = (stbi_uc *) g->lpal;
+ } else if (g->flags & 0x80) {
+ g->color_table = (stbi_uc *) g->pal;
+ } else
+ return stbi__errpuc("missing color table", "Corrupt GIF");
+
+ o = stbi__process_gif_raster(s, g);
+ if (!o) return NULL;
+
+ // if this was the first frame,
+ pcount = g->w * g->h;
+ if (first_frame && (g->bgindex > 0)) {
+ // if first frame, any pixel not drawn to gets the background color
+ for (pi = 0; pi < pcount; ++pi) {
+ if (g->history[pi] == 0) {
+ g->pal[g->bgindex][3] = 255; // just in case it was made transparent, undo that; It will be reset next frame if need be;
+ memcpy( &g->out[pi * 4], &g->pal[g->bgindex], 4 );
+ }
+ }
+ }
+
+ return o;
+ }
+
+ case 0x21: // Comment Extension.
+ {
+ int len;
+ int ext = stbi__get8(s);
+ if (ext == 0xF9) { // Graphic Control Extension.
+ len = stbi__get8(s);
+ if (len == 4) {
+ g->eflags = stbi__get8(s);
+ g->delay = 10 * stbi__get16le(s); // delay - 1/100th of a second, saving as 1/1000ths.
+
+ // unset old transparent
+ if (g->transparent >= 0) {
+ g->pal[g->transparent][3] = 255;
+ }
+ if (g->eflags & 0x01) {
+ g->transparent = stbi__get8(s);
+ if (g->transparent >= 0) {
+ g->pal[g->transparent][3] = 0;
+ }
+ } else {
+ // don't need transparent
+ stbi__skip(s, 1);
+ g->transparent = -1;
+ }
+ } else {
+ stbi__skip(s, len);
+ break;
+ }
+ }
+ while ((len = stbi__get8(s)) != 0) {
+ stbi__skip(s, len);
+ }
+ break;
+ }
+
+ case 0x3B: // gif stream termination code
+ return (stbi_uc *) s; // using '1' causes warning on some compilers
+
+ default:
+ return stbi__errpuc("unknown code", "Corrupt GIF");
+ }
+ }
+}
+
+static void *stbi__load_gif_main_outofmem(stbi__gif *g, stbi_uc *out, int **delays)
+{
+ STBI_FREE(g->out);
+ STBI_FREE(g->history);
+ STBI_FREE(g->background);
+
+ if (out) STBI_FREE(out);
+ if (delays && *delays) STBI_FREE(*delays);
+ return stbi__errpuc("outofmem", "Out of memory");
+}
+
+static void *stbi__load_gif_main(stbi__context *s, int **delays, int *x, int *y, int *z, int *comp, int req_comp)
+{
+ if (stbi__gif_test(s)) {
+ int layers = 0;
+ stbi_uc *u = 0;
+ stbi_uc *out = 0;
+ stbi_uc *two_back = 0;
+ stbi__gif g;
+ int stride;
+ int out_size = 0;
+ int delays_size = 0;
+
+ STBI_NOTUSED(out_size);
+ STBI_NOTUSED(delays_size);
+
+ memset(&g, 0, sizeof(g));
+ if (delays) {
+ *delays = 0;
+ }
+
+ do {
+ u = stbi__gif_load_next(s, &g, comp, req_comp, two_back);
+ if (u == (stbi_uc *) s) u = 0; // end of animated gif marker
+
+ if (u) {
+ *x = g.w;
+ *y = g.h;
+ ++layers;
+ stride = g.w * g.h * 4;
+
+ if (out) {
+ void *tmp = (stbi_uc*) STBI_REALLOC_SIZED( out, out_size, layers * stride );
+ if (!tmp)
+ return stbi__load_gif_main_outofmem(&g, out, delays);
+ else {
+ out = (stbi_uc*) tmp;
+ out_size = layers * stride;
+ }
+
+ if (delays) {
+ int *new_delays = (int*) STBI_REALLOC_SIZED( *delays, delays_size, sizeof(int) * layers );
+ if (!new_delays)
+ return stbi__load_gif_main_outofmem(&g, out, delays);
+ *delays = new_delays;
+ delays_size = layers * sizeof(int);
+ }
+ } else {
+ out = (stbi_uc*)stbi__malloc( layers * stride );
+ if (!out)
+ return stbi__load_gif_main_outofmem(&g, out, delays);
+ out_size = layers * stride;
+ if (delays) {
+ *delays = (int*) stbi__malloc( layers * sizeof(int) );
+ if (!*delays)
+ return stbi__load_gif_main_outofmem(&g, out, delays);
+ delays_size = layers * sizeof(int);
+ }
+ }
+ memcpy( out + ((layers - 1) * stride), u, stride );
+ if (layers >= 2) {
+ two_back = out - 2 * stride;
+ }
+
+ if (delays) {
+ (*delays)[layers - 1U] = g.delay;
+ }
+ }
+ } while (u != 0);
+
+ // free temp buffer;
+ STBI_FREE(g.out);
+ STBI_FREE(g.history);
+ STBI_FREE(g.background);
+
+ // do the final conversion after loading everything;
+ if (req_comp && req_comp != 4)
+ out = stbi__convert_format(out, 4, req_comp, layers * g.w, g.h);
+
+ *z = layers;
+ return out;
+ } else {
+ return stbi__errpuc("not GIF", "Image was not as a gif type.");
+ }
+}
+
+static void *stbi__gif_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri)
+{
+ stbi_uc *u = 0;
+ stbi__gif g;
+ memset(&g, 0, sizeof(g));
+ STBI_NOTUSED(ri);
+
+ u = stbi__gif_load_next(s, &g, comp, req_comp, 0);
+ if (u == (stbi_uc *) s) u = 0; // end of animated gif marker
+ if (u) {
+ *x = g.w;
+ *y = g.h;
+
+ // moved conversion to after successful load so that the same
+ // can be done for multiple frames.
+ if (req_comp && req_comp != 4)
+ u = stbi__convert_format(u, 4, req_comp, g.w, g.h);
+ } else if (g.out) {
+ // if there was an error and we allocated an image buffer, free it!
+ STBI_FREE(g.out);
+ }
+
+ // free buffers needed for multiple frame loading;
+ STBI_FREE(g.history);
+ STBI_FREE(g.background);
+
+ return u;
+}
+
+static int stbi__gif_info(stbi__context *s, int *x, int *y, int *comp)
+{
+ return stbi__gif_info_raw(s,x,y,comp);
+}
+#endif
+
+// *************************************************************************************************
+// Radiance RGBE HDR loader
+// originally by Nicolas Schulz
+#ifndef STBI_NO_HDR
+static int stbi__hdr_test_core(stbi__context *s, const char *signature)
+{
+ int i;
+ for (i=0; signature[i]; ++i)
+ if (stbi__get8(s) != signature[i])
+ return 0;
+ stbi__rewind(s);
+ return 1;
+}
+
+static int stbi__hdr_test(stbi__context* s)
+{
+ int r = stbi__hdr_test_core(s, "#?RADIANCE\n");
+ stbi__rewind(s);
+ if(!r) {
+ r = stbi__hdr_test_core(s, "#?RGBE\n");
+ stbi__rewind(s);
+ }
+ return r;
+}
+
+#define STBI__HDR_BUFLEN 1024
+static char *stbi__hdr_gettoken(stbi__context *z, char *buffer)
+{
+ int len=0;
+ char c = '\0';
+
+ c = (char) stbi__get8(z);
+
+ while (!stbi__at_eof(z) && c != '\n') {
+ buffer[len++] = c;
+ if (len == STBI__HDR_BUFLEN-1) {
+ // flush to end of line
+ while (!stbi__at_eof(z) && stbi__get8(z) != '\n')
+ ;
+ break;
+ }
+ c = (char) stbi__get8(z);
+ }
+
+ buffer[len] = 0;
+ return buffer;
+}
+
+static void stbi__hdr_convert(float *output, stbi_uc *input, int req_comp)
+{
+ if ( input[3] != 0 ) {
+ float f1;
+ // Exponent
+ f1 = (float) ldexp(1.0f, input[3] - (int)(128 + 8));
+ if (req_comp <= 2)
+ output[0] = (input[0] + input[1] + input[2]) * f1 / 3;
+ else {
+ output[0] = input[0] * f1;
+ output[1] = input[1] * f1;
+ output[2] = input[2] * f1;
+ }
+ if (req_comp == 2) output[1] = 1;
+ if (req_comp == 4) output[3] = 1;
+ } else {
+ switch (req_comp) {
+ case 4: output[3] = 1; /* fallthrough */
+ case 3: output[0] = output[1] = output[2] = 0;
+ break;
+ case 2: output[1] = 1; /* fallthrough */
+ case 1: output[0] = 0;
+ break;
+ }
+ }
+}
+
+static float *stbi__hdr_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri)
+{
+ char buffer[STBI__HDR_BUFLEN];
+ char *token;
+ int valid = 0;
+ int width, height;
+ stbi_uc *scanline;
+ float *hdr_data;
+ int len;
+ unsigned char count, value;
+ int i, j, k, c1,c2, z;
+ const char *headerToken;
+ STBI_NOTUSED(ri);
+
+ // Check identifier
+ headerToken = stbi__hdr_gettoken(s,buffer);
+ if (strcmp(headerToken, "#?RADIANCE") != 0 && strcmp(headerToken, "#?RGBE") != 0)
+ return stbi__errpf("not HDR", "Corrupt HDR image");
+
+ // Parse header
+ for(;;) {
+ token = stbi__hdr_gettoken(s,buffer);
+ if (token[0] == 0) break;
+ if (strcmp(token, "FORMAT=32-bit_rle_rgbe") == 0) valid = 1;
+ }
+
+ if (!valid) return stbi__errpf("unsupported format", "Unsupported HDR format");
+
+ // Parse width and height
+ // can't use sscanf() if we're not using stdio!
+ token = stbi__hdr_gettoken(s,buffer);
+ if (strncmp(token, "-Y ", 3)) return stbi__errpf("unsupported data layout", "Unsupported HDR format");
+ token += 3;
+ height = (int) strtol(token, &token, 10);
+ while (*token == ' ') ++token;
+ if (strncmp(token, "+X ", 3)) return stbi__errpf("unsupported data layout", "Unsupported HDR format");
+ token += 3;
+ width = (int) strtol(token, NULL, 10);
+
+ if (height > STBI_MAX_DIMENSIONS) return stbi__errpf("too large","Very large image (corrupt?)");
+ if (width > STBI_MAX_DIMENSIONS) return stbi__errpf("too large","Very large image (corrupt?)");
+
+ *x = width;
+ *y = height;
+
+ if (comp) *comp = 3;
+ if (req_comp == 0) req_comp = 3;
+
+ if (!stbi__mad4sizes_valid(width, height, req_comp, sizeof(float), 0))
+ return stbi__errpf("too large", "HDR image is too large");
+
+ // Read data
+ hdr_data = (float *) stbi__malloc_mad4(width, height, req_comp, sizeof(float), 0);
+ if (!hdr_data)
+ return stbi__errpf("outofmem", "Out of memory");
+
+ // Load image data
+ // image data is stored as some number of sca
+ if ( width < 8 || width >= 32768) {
+ // Read flat data
+ for (j=0; j < height; ++j) {
+ for (i=0; i < width; ++i) {
+ stbi_uc rgbe[4];
+ main_decode_loop:
+ stbi__getn(s, rgbe, 4);
+ stbi__hdr_convert(hdr_data + j * width * req_comp + i * req_comp, rgbe, req_comp);
+ }
+ }
+ } else {
+ // Read RLE-encoded data
+ scanline = NULL;
+
+ for (j = 0; j < height; ++j) {
+ c1 = stbi__get8(s);
+ c2 = stbi__get8(s);
+ len = stbi__get8(s);
+ if (c1 != 2 || c2 != 2 || (len & 0x80)) {
+ // not run-length encoded, so we have to actually use THIS data as a decoded
+ // pixel (note this can't be a valid pixel--one of RGB must be >= 128)
+ stbi_uc rgbe[4];
+ rgbe[0] = (stbi_uc) c1;
+ rgbe[1] = (stbi_uc) c2;
+ rgbe[2] = (stbi_uc) len;
+ rgbe[3] = (stbi_uc) stbi__get8(s);
+ stbi__hdr_convert(hdr_data, rgbe, req_comp);
+ i = 1;
+ j = 0;
+ STBI_FREE(scanline);
+ goto main_decode_loop; // yes, this makes no sense
+ }
+ len <<= 8;
+ len |= stbi__get8(s);
+ if (len != width) { STBI_FREE(hdr_data); STBI_FREE(scanline); return stbi__errpf("invalid decoded scanline length", "corrupt HDR"); }
+ if (scanline == NULL) {
+ scanline = (stbi_uc *) stbi__malloc_mad2(width, 4, 0);
+ if (!scanline) {
+ STBI_FREE(hdr_data);
+ return stbi__errpf("outofmem", "Out of memory");
+ }
+ }
+
+ for (k = 0; k < 4; ++k) {
+ int nleft;
+ i = 0;
+ while ((nleft = width - i) > 0) {
+ count = stbi__get8(s);
+ if (count > 128) {
+ // Run
+ value = stbi__get8(s);
+ count -= 128;
+ if ((count == 0) || (count > nleft)) { STBI_FREE(hdr_data); STBI_FREE(scanline); return stbi__errpf("corrupt", "bad RLE data in HDR"); }
+ for (z = 0; z < count; ++z)
+ scanline[i++ * 4 + k] = value;
+ } else {
+ // Dump
+ if ((count == 0) || (count > nleft)) { STBI_FREE(hdr_data); STBI_FREE(scanline); return stbi__errpf("corrupt", "bad RLE data in HDR"); }
+ for (z = 0; z < count; ++z)
+ scanline[i++ * 4 + k] = stbi__get8(s);
+ }
+ }
+ }
+ for (i=0; i < width; ++i)
+ stbi__hdr_convert(hdr_data+(j*width + i)*req_comp, scanline + i*4, req_comp);
+ }
+ if (scanline)
+ STBI_FREE(scanline);
+ }
+
+ return hdr_data;
+}
+
+static int stbi__hdr_info(stbi__context *s, int *x, int *y, int *comp)
+{
+ char buffer[STBI__HDR_BUFLEN];
+ char *token;
+ int valid = 0;
+ int dummy;
+
+ if (!x) x = &dummy;
+ if (!y) y = &dummy;
+ if (!comp) comp = &dummy;
+
+ if (stbi__hdr_test(s) == 0) {
+ stbi__rewind( s );
+ return 0;
+ }
+
+ for(;;) {
+ token = stbi__hdr_gettoken(s,buffer);
+ if (token[0] == 0) break;
+ if (strcmp(token, "FORMAT=32-bit_rle_rgbe") == 0) valid = 1;
+ }
+
+ if (!valid) {
+ stbi__rewind( s );
+ return 0;
+ }
+ token = stbi__hdr_gettoken(s,buffer);
+ if (strncmp(token, "-Y ", 3)) {
+ stbi__rewind( s );
+ return 0;
+ }
+ token += 3;
+ *y = (int) strtol(token, &token, 10);
+ while (*token == ' ') ++token;
+ if (strncmp(token, "+X ", 3)) {
+ stbi__rewind( s );
+ return 0;
+ }
+ token += 3;
+ *x = (int) strtol(token, NULL, 10);
+ *comp = 3;
+ return 1;
+}
+#endif // STBI_NO_HDR
+
+#ifndef STBI_NO_BMP
+static int stbi__bmp_info(stbi__context *s, int *x, int *y, int *comp)
+{
+ void *p;
+ stbi__bmp_data info;
+
+ info.all_a = 255;
+ p = stbi__bmp_parse_header(s, &info);
+ if (p == NULL) {
+ stbi__rewind( s );
+ return 0;
+ }
+ if (x) *x = s->img_x;
+ if (y) *y = s->img_y;
+ if (comp) {
+ if (info.bpp == 24 && info.ma == 0xff000000)
+ *comp = 3;
+ else
+ *comp = info.ma ? 4 : 3;
+ }
+ return 1;
+}
+#endif
+
+#ifndef STBI_NO_PSD
+static int stbi__psd_info(stbi__context *s, int *x, int *y, int *comp)
+{
+ int channelCount, dummy, depth;
+ if (!x) x = &dummy;
+ if (!y) y = &dummy;
+ if (!comp) comp = &dummy;
+ if (stbi__get32be(s) != 0x38425053) {
+ stbi__rewind( s );
+ return 0;
+ }
+ if (stbi__get16be(s) != 1) {
+ stbi__rewind( s );
+ return 0;
+ }
+ stbi__skip(s, 6);
+ channelCount = stbi__get16be(s);
+ if (channelCount < 0 || channelCount > 16) {
+ stbi__rewind( s );
+ return 0;
+ }
+ *y = stbi__get32be(s);
+ *x = stbi__get32be(s);
+ depth = stbi__get16be(s);
+ if (depth != 8 && depth != 16) {
+ stbi__rewind( s );
+ return 0;
+ }
+ if (stbi__get16be(s) != 3) {
+ stbi__rewind( s );
+ return 0;
+ }
+ *comp = 4;
+ return 1;
+}
+
+static int stbi__psd_is16(stbi__context *s)
+{
+ int channelCount, depth;
+ if (stbi__get32be(s) != 0x38425053) {
+ stbi__rewind( s );
+ return 0;
+ }
+ if (stbi__get16be(s) != 1) {
+ stbi__rewind( s );
+ return 0;
+ }
+ stbi__skip(s, 6);
+ channelCount = stbi__get16be(s);
+ if (channelCount < 0 || channelCount > 16) {
+ stbi__rewind( s );
+ return 0;
+ }
+ STBI_NOTUSED(stbi__get32be(s));
+ STBI_NOTUSED(stbi__get32be(s));
+ depth = stbi__get16be(s);
+ if (depth != 16) {
+ stbi__rewind( s );
+ return 0;
+ }
+ return 1;
+}
+#endif
+
+#ifndef STBI_NO_PIC
+static int stbi__pic_info(stbi__context *s, int *x, int *y, int *comp)
+{
+ int act_comp=0,num_packets=0,chained,dummy;
+ stbi__pic_packet packets[10];
+
+ if (!x) x = &dummy;
+ if (!y) y = &dummy;
+ if (!comp) comp = &dummy;
+
+ if (!stbi__pic_is4(s,"\x53\x80\xF6\x34")) {
+ stbi__rewind(s);
+ return 0;
+ }
+
+ stbi__skip(s, 88);
+
+ *x = stbi__get16be(s);
+ *y = stbi__get16be(s);
+ if (stbi__at_eof(s)) {
+ stbi__rewind( s);
+ return 0;
+ }
+ if ( (*x) != 0 && (1 << 28) / (*x) < (*y)) {
+ stbi__rewind( s );
+ return 0;
+ }
+
+ stbi__skip(s, 8);
+
+ do {
+ stbi__pic_packet *packet;
+
+ if (num_packets==sizeof(packets)/sizeof(packets[0]))
+ return 0;
+
+ packet = &packets[num_packets++];
+ chained = stbi__get8(s);
+ packet->size = stbi__get8(s);
+ packet->type = stbi__get8(s);
+ packet->channel = stbi__get8(s);
+ act_comp |= packet->channel;
+
+ if (stbi__at_eof(s)) {
+ stbi__rewind( s );
+ return 0;
+ }
+ if (packet->size != 8) {
+ stbi__rewind( s );
+ return 0;
+ }
+ } while (chained);
+
+ *comp = (act_comp & 0x10 ? 4 : 3);
+
+ return 1;
+}
+#endif
+
+// *************************************************************************************************
+// Portable Gray Map and Portable Pixel Map loader
+// by Ken Miller
+//
+// PGM: http://netpbm.sourceforge.net/doc/pgm.html
+// PPM: http://netpbm.sourceforge.net/doc/ppm.html
+//
+// Known limitations:
+// Does not support comments in the header section
+// Does not support ASCII image data (formats P2 and P3)
+
+#ifndef STBI_NO_PNM
+
+static int stbi__pnm_test(stbi__context *s)
+{
+ char p, t;
+ p = (char) stbi__get8(s);
+ t = (char) stbi__get8(s);
+ if (p != 'P' || (t != '5' && t != '6')) {
+ stbi__rewind( s );
+ return 0;
+ }
+ return 1;
+}
+
+static void *stbi__pnm_load(stbi__context *s, int *x, int *y, int *comp, int req_comp, stbi__result_info *ri)
+{
+ stbi_uc *out;
+ STBI_NOTUSED(ri);
+
+ ri->bits_per_channel = stbi__pnm_info(s, (int *)&s->img_x, (int *)&s->img_y, (int *)&s->img_n);
+ if (ri->bits_per_channel == 0)
+ return 0;
+
+ if (s->img_y > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)");
+ if (s->img_x > STBI_MAX_DIMENSIONS) return stbi__errpuc("too large","Very large image (corrupt?)");
+
+ *x = s->img_x;
+ *y = s->img_y;
+ if (comp) *comp = s->img_n;
+
+ if (!stbi__mad4sizes_valid(s->img_n, s->img_x, s->img_y, ri->bits_per_channel / 8, 0))
+ return stbi__errpuc("too large", "PNM too large");
+
+ out = (stbi_uc *) stbi__malloc_mad4(s->img_n, s->img_x, s->img_y, ri->bits_per_channel / 8, 0);
+ if (!out) return stbi__errpuc("outofmem", "Out of memory");
+ if (!stbi__getn(s, out, s->img_n * s->img_x * s->img_y * (ri->bits_per_channel / 8))) {
+ STBI_FREE(out);
+ return stbi__errpuc("bad PNM", "PNM file truncated");
+ }
+
+ if (req_comp && req_comp != s->img_n) {
+ if (ri->bits_per_channel == 16) {
+ out = (stbi_uc *) stbi__convert_format16((stbi__uint16 *) out, s->img_n, req_comp, s->img_x, s->img_y);
+ } else {
+ out = stbi__convert_format(out, s->img_n, req_comp, s->img_x, s->img_y);
+ }
+ if (out == NULL) return out; // stbi__convert_format frees input on failure
+ }
+ return out;
+}
+
+static int stbi__pnm_isspace(char c)
+{
+ return c == ' ' || c == '\t' || c == '\n' || c == '\v' || c == '\f' || c == '\r';
+}
+
+static void stbi__pnm_skip_whitespace(stbi__context *s, char *c)
+{
+ for (;;) {
+ while (!stbi__at_eof(s) && stbi__pnm_isspace(*c))
+ *c = (char) stbi__get8(s);
+
+ if (stbi__at_eof(s) || *c != '#')
+ break;
+
+ while (!stbi__at_eof(s) && *c != '\n' && *c != '\r' )
+ *c = (char) stbi__get8(s);
+ }
+}
+
+static int stbi__pnm_isdigit(char c)
+{
+ return c >= '0' && c <= '9';
+}
+
+static int stbi__pnm_getinteger(stbi__context *s, char *c)
+{
+ int value = 0;
+
+ while (!stbi__at_eof(s) && stbi__pnm_isdigit(*c)) {
+ value = value*10 + (*c - '0');
+ *c = (char) stbi__get8(s);
+ if((value > 214748364) || (value == 214748364 && *c > '7'))
+ return stbi__err("integer parse overflow", "Parsing an integer in the PPM header overflowed a 32-bit int");
+ }
+
+ return value;
+}
+
+static int stbi__pnm_info(stbi__context *s, int *x, int *y, int *comp)
+{
+ int maxv, dummy;
+ char c, p, t;
+
+ if (!x) x = &dummy;
+ if (!y) y = &dummy;
+ if (!comp) comp = &dummy;
+
+ stbi__rewind(s);
+
+ // Get identifier
+ p = (char) stbi__get8(s);
+ t = (char) stbi__get8(s);
+ if (p != 'P' || (t != '5' && t != '6')) {
+ stbi__rewind(s);
+ return 0;
+ }
+
+ *comp = (t == '6') ? 3 : 1; // '5' is 1-component .pgm; '6' is 3-component .ppm
+
+ c = (char) stbi__get8(s);
+ stbi__pnm_skip_whitespace(s, &c);
+
+ *x = stbi__pnm_getinteger(s, &c); // read width
+ if(*x == 0)
+ return stbi__err("invalid width", "PPM image header had zero or overflowing width");
+ stbi__pnm_skip_whitespace(s, &c);
+
+ *y = stbi__pnm_getinteger(s, &c); // read height
+ if (*y == 0)
+ return stbi__err("invalid width", "PPM image header had zero or overflowing width");
+ stbi__pnm_skip_whitespace(s, &c);
+
+ maxv = stbi__pnm_getinteger(s, &c); // read max value
+ if (maxv > 65535)
+ return stbi__err("max value > 65535", "PPM image supports only 8-bit and 16-bit images");
+ else if (maxv > 255)
+ return 16;
+ else
+ return 8;
+}
+
+static int stbi__pnm_is16(stbi__context *s)
+{
+ if (stbi__pnm_info(s, NULL, NULL, NULL) == 16)
+ return 1;
+ return 0;
+}
+#endif
+
+static int stbi__info_main(stbi__context *s, int *x, int *y, int *comp)
+{
+ #ifndef STBI_NO_JPEG
+ if (stbi__jpeg_info(s, x, y, comp)) return 1;
+ #endif
+
+ #ifndef STBI_NO_PNG
+ if (stbi__png_info(s, x, y, comp)) return 1;
+ #endif
+
+ #ifndef STBI_NO_GIF
+ if (stbi__gif_info(s, x, y, comp)) return 1;
+ #endif
+
+ #ifndef STBI_NO_BMP
+ if (stbi__bmp_info(s, x, y, comp)) return 1;
+ #endif
+
+ #ifndef STBI_NO_PSD
+ if (stbi__psd_info(s, x, y, comp)) return 1;
+ #endif
+
+ #ifndef STBI_NO_PIC
+ if (stbi__pic_info(s, x, y, comp)) return 1;
+ #endif
+
+ #ifndef STBI_NO_PNM
+ if (stbi__pnm_info(s, x, y, comp)) return 1;
+ #endif
+
+ #ifndef STBI_NO_HDR
+ if (stbi__hdr_info(s, x, y, comp)) return 1;
+ #endif
+
+ // test tga last because it's a crappy test!
+ #ifndef STBI_NO_TGA
+ if (stbi__tga_info(s, x, y, comp))
+ return 1;
+ #endif
+ return stbi__err("unknown image type", "Image not of any known type, or corrupt");
+}
+
+static int stbi__is_16_main(stbi__context *s)
+{
+ #ifndef STBI_NO_PNG
+ if (stbi__png_is16(s)) return 1;
+ #endif
+
+ #ifndef STBI_NO_PSD
+ if (stbi__psd_is16(s)) return 1;
+ #endif
+
+ #ifndef STBI_NO_PNM
+ if (stbi__pnm_is16(s)) return 1;
+ #endif
+ return 0;
+}
+
+#ifndef STBI_NO_STDIO
+STBIDEF int stbi_info(char const *filename, int *x, int *y, int *comp)
+{
+ FILE *f = stbi__fopen(filename, "rb");
+ int result;
+ if (!f) return stbi__err("can't fopen", "Unable to open file");
+ result = stbi_info_from_file(f, x, y, comp);
+ fclose(f);
+ return result;
+}
+
+STBIDEF int stbi_info_from_file(FILE *f, int *x, int *y, int *comp)
+{
+ int r;
+ stbi__context s;
+ long pos = ftell(f);
+ stbi__start_file(&s, f);
+ r = stbi__info_main(&s,x,y,comp);
+ fseek(f,pos,SEEK_SET);
+ return r;
+}
+
+STBIDEF int stbi_is_16_bit(char const *filename)
+{
+ FILE *f = stbi__fopen(filename, "rb");
+ int result;
+ if (!f) return stbi__err("can't fopen", "Unable to open file");
+ result = stbi_is_16_bit_from_file(f);
+ fclose(f);
+ return result;
+}
+
+STBIDEF int stbi_is_16_bit_from_file(FILE *f)
+{
+ int r;
+ stbi__context s;
+ long pos = ftell(f);
+ stbi__start_file(&s, f);
+ r = stbi__is_16_main(&s);
+ fseek(f,pos,SEEK_SET);
+ return r;
+}
+#endif // !STBI_NO_STDIO
+
+STBIDEF int stbi_info_from_memory(stbi_uc const *buffer, int len, int *x, int *y, int *comp)
+{
+ stbi__context s;
+ stbi__start_mem(&s,buffer,len);
+ return stbi__info_main(&s,x,y,comp);
+}
+
+STBIDEF int stbi_info_from_callbacks(stbi_io_callbacks const *c, void *user, int *x, int *y, int *comp)
+{
+ stbi__context s;
+ stbi__start_callbacks(&s, (stbi_io_callbacks *) c, user);
+ return stbi__info_main(&s,x,y,comp);
+}
+
+STBIDEF int stbi_is_16_bit_from_memory(stbi_uc const *buffer, int len)
+{
+ stbi__context s;
+ stbi__start_mem(&s,buffer,len);
+ return stbi__is_16_main(&s);
+}
+
+STBIDEF int stbi_is_16_bit_from_callbacks(stbi_io_callbacks const *c, void *user)
+{
+ stbi__context s;
+ stbi__start_callbacks(&s, (stbi_io_callbacks *) c, user);
+ return stbi__is_16_main(&s);
+}
+
+#endif // STB_IMAGE_IMPLEMENTATION
+
+/*
+ revision history:
+ 2.20 (2019-02-07) support utf8 filenames in Windows; fix warnings and platform ifdefs
+ 2.19 (2018-02-11) fix warning
+ 2.18 (2018-01-30) fix warnings
+ 2.17 (2018-01-29) change sbti__shiftsigned to avoid clang -O2 bug
+ 1-bit BMP
+ *_is_16_bit api
+ avoid warnings
+ 2.16 (2017-07-23) all functions have 16-bit variants;
+ STBI_NO_STDIO works again;
+ compilation fixes;
+ fix rounding in unpremultiply;
+ optimize vertical flip;
+ disable raw_len validation;
+ documentation fixes
+ 2.15 (2017-03-18) fix png-1,2,4 bug; now all Imagenet JPGs decode;
+ warning fixes; disable run-time SSE detection on gcc;
+ uniform handling of optional "return" values;
+ thread-safe initialization of zlib tables
+ 2.14 (2017-03-03) remove deprecated STBI_JPEG_OLD; fixes for Imagenet JPGs
+ 2.13 (2016-11-29) add 16-bit API, only supported for PNG right now
+ 2.12 (2016-04-02) fix typo in 2.11 PSD fix that caused crashes
+ 2.11 (2016-04-02) allocate large structures on the stack
+ remove white matting for transparent PSD
+ fix reported channel count for PNG & BMP
+ re-enable SSE2 in non-gcc 64-bit
+ support RGB-formatted JPEG
+ read 16-bit PNGs (only as 8-bit)
+ 2.10 (2016-01-22) avoid warning introduced in 2.09 by STBI_REALLOC_SIZED
+ 2.09 (2016-01-16) allow comments in PNM files
+ 16-bit-per-pixel TGA (not bit-per-component)
+ info() for TGA could break due to .hdr handling
+ info() for BMP to shares code instead of sloppy parse
+ can use STBI_REALLOC_SIZED if allocator doesn't support realloc
+ code cleanup
+ 2.08 (2015-09-13) fix to 2.07 cleanup, reading RGB PSD as RGBA
+ 2.07 (2015-09-13) fix compiler warnings
+ partial animated GIF support
+ limited 16-bpc PSD support
+ #ifdef unused functions
+ bug with < 92 byte PIC,PNM,HDR,TGA
+ 2.06 (2015-04-19) fix bug where PSD returns wrong '*comp' value
+ 2.05 (2015-04-19) fix bug in progressive JPEG handling, fix warning
+ 2.04 (2015-04-15) try to re-enable SIMD on MinGW 64-bit
+ 2.03 (2015-04-12) extra corruption checking (mmozeiko)
+ stbi_set_flip_vertically_on_load (nguillemot)
+ fix NEON support; fix mingw support
+ 2.02 (2015-01-19) fix incorrect assert, fix warning
+ 2.01 (2015-01-17) fix various warnings; suppress SIMD on gcc 32-bit without -msse2
+ 2.00b (2014-12-25) fix STBI_MALLOC in progressive JPEG
+ 2.00 (2014-12-25) optimize JPG, including x86 SSE2 & NEON SIMD (ryg)
+ progressive JPEG (stb)
+ PGM/PPM support (Ken Miller)
+ STBI_MALLOC,STBI_REALLOC,STBI_FREE
+ GIF bugfix -- seemingly never worked
+ STBI_NO_*, STBI_ONLY_*
+ 1.48 (2014-12-14) fix incorrectly-named assert()
+ 1.47 (2014-12-14) 1/2/4-bit PNG support, both direct and paletted (Omar Cornut & stb)
+ optimize PNG (ryg)
+ fix bug in interlaced PNG with user-specified channel count (stb)
+ 1.46 (2014-08-26)
+ fix broken tRNS chunk (colorkey-style transparency) in non-paletted PNG
+ 1.45 (2014-08-16)
+ fix MSVC-ARM internal compiler error by wrapping malloc
+ 1.44 (2014-08-07)
+ various warning fixes from Ronny Chevalier
+ 1.43 (2014-07-15)
+ fix MSVC-only compiler problem in code changed in 1.42
+ 1.42 (2014-07-09)
+ don't define _CRT_SECURE_NO_WARNINGS (affects user code)
+ fixes to stbi__cleanup_jpeg path
+ added STBI_ASSERT to avoid requiring assert.h
+ 1.41 (2014-06-25)
+ fix search&replace from 1.36 that messed up comments/error messages
+ 1.40 (2014-06-22)
+ fix gcc struct-initialization warning
+ 1.39 (2014-06-15)
+ fix to TGA optimization when req_comp != number of components in TGA;
+ fix to GIF loading because BMP wasn't rewinding (whoops, no GIFs in my test suite)
+ add support for BMP version 5 (more ignored fields)
+ 1.38 (2014-06-06)
+ suppress MSVC warnings on integer casts truncating values
+ fix accidental rename of 'skip' field of I/O
+ 1.37 (2014-06-04)
+ remove duplicate typedef
+ 1.36 (2014-06-03)
+ convert to header file single-file library
+ if de-iphone isn't set, load iphone images color-swapped instead of returning NULL
+ 1.35 (2014-05-27)
+ various warnings
+ fix broken STBI_SIMD path
+ fix bug where stbi_load_from_file no longer left file pointer in correct place
+ fix broken non-easy path for 32-bit BMP (possibly never used)
+ TGA optimization by Arseny Kapoulkine
+ 1.34 (unknown)
+ use STBI_NOTUSED in stbi__resample_row_generic(), fix one more leak in tga failure case
+ 1.33 (2011-07-14)
+ make stbi_is_hdr work in STBI_NO_HDR (as specified), minor compiler-friendly improvements
+ 1.32 (2011-07-13)
+ support for "info" function for all supported filetypes (SpartanJ)
+ 1.31 (2011-06-20)
+ a few more leak fixes, bug in PNG handling (SpartanJ)
+ 1.30 (2011-06-11)
+ added ability to load files via callbacks to accomidate custom input streams (Ben Wenger)
+ removed deprecated format-specific test/load functions
+ removed support for installable file formats (stbi_loader) -- would have been broken for IO callbacks anyway
+ error cases in bmp and tga give messages and don't leak (Raymond Barbiero, grisha)
+ fix inefficiency in decoding 32-bit BMP (David Woo)
+ 1.29 (2010-08-16)
+ various warning fixes from Aurelien Pocheville
+ 1.28 (2010-08-01)
+ fix bug in GIF palette transparency (SpartanJ)
+ 1.27 (2010-08-01)
+ cast-to-stbi_uc to fix warnings
+ 1.26 (2010-07-24)
+ fix bug in file buffering for PNG reported by SpartanJ
+ 1.25 (2010-07-17)
+ refix trans_data warning (Won Chun)
+ 1.24 (2010-07-12)
+ perf improvements reading from files on platforms with lock-heavy fgetc()
+ minor perf improvements for jpeg
+ deprecated type-specific functions so we'll get feedback if they're needed
+ attempt to fix trans_data warning (Won Chun)
+ 1.23 fixed bug in iPhone support
+ 1.22 (2010-07-10)
+ removed image *writing* support
+ stbi_info support from Jetro Lauha
+ GIF support from Jean-Marc Lienher
+ iPhone PNG-extensions from James Brown
+ warning-fixes from Nicolas Schulz and Janez Zemva (i.stbi__err. Janez (U+017D)emva)
+ 1.21 fix use of 'stbi_uc' in header (reported by jon blow)
+ 1.20 added support for Softimage PIC, by Tom Seddon
+ 1.19 bug in interlaced PNG corruption check (found by ryg)
+ 1.18 (2008-08-02)
+ fix a threading bug (local mutable static)
+ 1.17 support interlaced PNG
+ 1.16 major bugfix - stbi__convert_format converted one too many pixels
+ 1.15 initialize some fields for thread safety
+ 1.14 fix threadsafe conversion bug
+ header-file-only version (#define STBI_HEADER_FILE_ONLY before including)
+ 1.13 threadsafe
+ 1.12 const qualifiers in the API
+ 1.11 Support installable IDCT, colorspace conversion routines
+ 1.10 Fixes for 64-bit (don't use "unsigned long")
+ optimized upsampling by Fabian "ryg" Giesen
+ 1.09 Fix format-conversion for PSD code (bad global variables!)
+ 1.08 Thatcher Ulrich's PSD code integrated by Nicolas Schulz
+ 1.07 attempt to fix C++ warning/errors again
+ 1.06 attempt to fix C++ warning/errors again
+ 1.05 fix TGA loading to return correct *comp and use good luminance calc
+ 1.04 default float alpha is 1, not 255; use 'void *' for stbi_image_free
+ 1.03 bugfixes to STBI_NO_STDIO, STBI_NO_HDR
+ 1.02 support for (subset of) HDR files, float interface for preferred access to them
+ 1.01 fix bug: possible bug in handling right-side up bmps... not sure
+ fix bug: the stbi__bmp_load() and stbi__tga_load() functions didn't work at all
+ 1.00 interface to zlib that skips zlib header
+ 0.99 correct handling of alpha in palette
+ 0.98 TGA loader by lonesock; dynamically add loaders (untested)
+ 0.97 jpeg errors on too large a file; also catch another malloc failure
+ 0.96 fix detection of invalid v value - particleman@mollyrocket forum
+ 0.95 during header scan, seek to markers in case of padding
+ 0.94 STBI_NO_STDIO to disable stdio usage; rename all #defines the same
+ 0.93 handle jpegtran output; verbose errors
+ 0.92 read 4,8,16,24,32-bit BMP files of several formats
+ 0.91 output 24-bit Windows 3.0 BMP files
+ 0.90 fix a few more warnings; bump version number to approach 1.0
+ 0.61 bugfixes due to Marc LeBlanc, Christopher Lloyd
+ 0.60 fix compiling as c++
+ 0.59 fix warnings: merge Dave Moore's -Wall fixes
+ 0.58 fix bug: zlib uncompressed mode len/nlen was wrong endian
+ 0.57 fix bug: jpg last huffman symbol before marker was >9 bits but less than 16 available
+ 0.56 fix bug: zlib uncompressed mode len vs. nlen
+ 0.55 fix bug: restart_interval not initialized to 0
+ 0.54 allow NULL for 'int *comp'
+ 0.53 fix bug in png 3->4; speedup png decoding
+ 0.52 png handles req_comp=3,4 directly; minor cleanup; jpeg comments
+ 0.51 obey req_comp requests, 1-component jpegs return as 1-component,
+ on 'test' only check type, not whether we support this variant
+ 0.50 (2006-11-19)
+ first released version
+*/
+
+
+/*
+------------------------------------------------------------------------------
+This software is available under 2 licenses -- choose whichever you prefer.
+------------------------------------------------------------------------------
+ALTERNATIVE A - MIT License
+Copyright (c) 2017 Sean Barrett
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
+of the Software, and to permit persons to whom the Software is furnished to do
+so, subject to the following conditions:
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+------------------------------------------------------------------------------
+ALTERNATIVE B - Public Domain (www.unlicense.org)
+This is free and unencumbered software released into the public domain.
+Anyone is free to copy, modify, publish, use, compile, sell, or distribute this
+software, either in source code form or as a compiled binary, for any purpose,
+commercial or non-commercial, and by any means.
+In jurisdictions that recognize copyright laws, the author or authors of this
+software dedicate any and all copyright interest in the software to the public
+domain. We make this dedication for the benefit of the public at large and to
+the detriment of our heirs and successors. We intend this dedication to be an
+overt act of relinquishment in perpetuity of all present and future rights to
+this software under copyright law.
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
+ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+------------------------------------------------------------------------------
+*/
diff --git a/libs/anr/examples/res/test.txt b/libs/anr/examples/res/test.txt
new file mode 100644
index 0000000..174004b
--- /dev/null
+++ b/libs/anr/examples/res/test.txt
@@ -0,0 +1,7 @@
+# cid2code.txt (Version 10/24/2017)
+#
+# The data in this table contains nineteen tab-delimited columns of
+# information. The contents of this file supplement "The Adobe-CNS1-7
+# Character Collection" (formerly Adobe Tech Note #5080):
+#
+# \ No newline at end of file
diff --git a/libs/anr/examples/test_data.c b/libs/anr/examples/test_data.c
new file mode 100644
index 0000000..22f9fc6
--- /dev/null
+++ b/libs/anr/examples/test_data.c
@@ -0,0 +1,254 @@
+#define ANR_DATA_DEBUG
+//#define ANR_DATA_FULL_TEST_REPORT
+#define ANR_DATA_IMPLEMENTATION
+#include "../anr_data.h"
+
+#include <time.h>
+
+#define TEST_LOOP 1
+#if 1
+#define HASH_LENGTH 50000
+#define ADD_REMOVE_COUNT 200000
+#else
+#define HASH_LENGTH 2000
+#define ADD_REMOVE_COUNT 50000
+#endif
+
+int intptr;
+static int* rand_int()
+{
+ static int rr = 1;
+ intptr = rr++;
+ return &intptr;
+}
+
+void test_ds(anr_ds* list)
+{
+ int d = *rand_int();
+ assert(ANR_DS_ADD(list, rand_int()) == 0);
+ assert(ANR_DS_ADD(list, &d) == 1);
+ assert(ANR_DS_ADD(list, rand_int()) == 2);
+ assert(ANR_DS_ADD(list, rand_int()) == 3);
+
+
+ assert(ANR_DS_FIND_AT(list, 1) != 0 && *(int*)ANR_DS_FIND_AT(list, 1) == d);
+ assert(ANR_DS_FIND_AT(list, 4) == 0);
+ assert(ANR_DS_LENGTH(list) == 4);
+
+ //ANR_DS_PRINT(list);
+
+ assert(ANR_DS_REMOVE_BY(list, ANR_DS_FIND_AT(list, 0)) == 1);
+ assert(ANR_DS_REMOVE_BY(list, ANR_DS_FIND_AT(list, 2)) == 1);
+ assert(ANR_DS_REMOVE_BY(list, ANR_DS_FIND_AT(list, 1)) == 1);
+ //assert(ANR_DS_REMOVE_BY(list, rand_int()) == 0);
+
+ //assert(*(int*)ANR_DS_FIND_AT(list, 0) == d);
+ assert(ANR_DS_LENGTH(list) == 1);
+
+ //ANR_DS_PRINT(list);
+
+ ANR_DS_ADD(list, rand_int());
+ ANR_DS_ADD(list, rand_int());
+ ANR_DS_ADD(list, rand_int());
+ ANR_DS_ADD(list, rand_int());
+
+ assert(ANR_DS_LENGTH(list) == 5);
+
+ //ANR_DS_PRINT(list);
+
+ void* data = ANR_DS_FIND_AT(list,2);
+ int32_t index = ANR_DS_FIND_BY(list, data);
+ assert(index == 2);
+ assert(ANR_DS_REMOVE_AT(list, index) == 1);
+ //ANR_DS_PRINT(list);
+ assert(ANR_DS_LENGTH(list) == 4);
+
+ d = *rand_int();
+ assert(ANR_DS_INSERT(list, 0, &d) == 1);
+ //assert(ANR_DS_INSERT(list, 99, &d) == 0);
+
+ assert(ANR_DS_LENGTH(list) == 5);
+ //assert(*(int*)ANR_DS_FIND_AT(list, 0) == d);
+
+ d = *rand_int();
+ assert(ANR_DS_INSERT(list, 3, &d) == 1);
+
+ //ANR_DS_PRINT(list);
+
+ assert(ANR_DS_LENGTH(list) == 6);
+ //assert(*(int*)ANR_DS_FIND_AT(list, 3) == d);
+
+ ANR_ITERATE(iter, list)
+ {
+ #ifdef ANR_DATA_DEBUG
+ //printf("#%d %p\n", iter.index, iter.data);
+ #endif
+ }
+
+ int data7 = *rand_int();
+ int data8 = *rand_int();
+ int data9 = *rand_int();
+ ANR_DS_ADD(list, rand_int());
+ ANR_DS_INSERT(list, 7, &data7);
+ ANR_DS_INSERT(list, 8, &data8);
+ ANR_DS_INSERT(list, 9, &data9);
+ assert(ANR_DS_LENGTH(list) == 10);
+ int* found = (int*)ANR_DS_FIND_AT(list, 8);
+ if (found) {
+ ANR_DS_REMOVE_BY(list, ANR_DS_FIND_AT(list, 8));
+ }
+
+
+ found = (int*)ANR_DS_FIND_AT(list, 8);
+ if (found) { // Only false for hashmaps.
+ assert(*found == data9);
+ }
+
+ //ANR_DS_PRINT(list);
+
+ ANR_DS_FREE(list);
+}
+
+
+char* random_hash()
+{
+ char* rr = malloc(HASH_LENGTH+1);
+ FILE* f;
+ #if 0
+ for (int i = 0; i < HASH_LENGTH; i++)
+ {
+ rr[i] = rand() % 10;
+ }
+ rr[HASH_LENGTH] = 0;
+
+ f = fopen("hash.txt", "w+");
+ fwrite(rr, 1, HASH_LENGTH, f);
+ fclose(f);
+ #endif
+
+ f = fopen("hash.txt", "rw");
+ fread(rr, 1, HASH_LENGTH, f);
+ fclose(f);
+ return rr;
+}
+
+void add_remove_test(anr_ds* ds)
+{
+ #ifdef ANR_DATA_FULL_TEST_REPORT
+ clock_t t = clock();
+ #endif
+ for (uint32_t i = 0; i < ADD_REMOVE_COUNT; i++)
+ {
+ ANR_DS_INSERT(ds, i, rand_int());
+ }
+ #ifdef ANR_DATA_FULL_TEST_REPORT
+ printf("-- add %.3fs\n", ((double)(clock() - t))/CLOCKS_PER_SEC);
+ #endif
+
+ #ifdef ANR_DATA_FULL_TEST_REPORT
+ t = clock();
+ #endif
+ uint32_t rand_index = 5;
+ for (uint32_t i = 0; i < ADD_REMOVE_COUNT; i++)
+ {
+ rand_index += 100;
+ if (rand_index >= ANR_DS_LENGTH(ds)) rand_index = 0;
+ ANR_DS_REMOVE_AT(ds, rand_index);
+ }
+ #ifdef ANR_DATA_FULL_TEST_REPORT
+ printf("-- remove %.3fs\n", ((double)(clock() - t))/CLOCKS_PER_SEC);
+ #endif
+
+ ANR_DS_FREE(ds);
+}
+
+void rand_test(anr_ds* ds, char* hash)
+{
+ for (uint32_t i = 0; i < HASH_LENGTH; i++)
+ {
+ uint8_t ch = hash[i];
+ int rand_index = (rand() % (ANR_DS_LENGTH(ds)+1))-1;
+ if (rand_index < 0) rand_index = 0;
+ if (ch >= 0 && ch <= 5) ANR_DS_ADD(ds, rand_int());
+ if (ch == 6) ANR_DS_INSERT(ds, rand_index, rand_int());
+ if (ch == 7 || ch == 8) ANR_DS_REMOVE_AT(ds, rand_index);
+ if (ch == 9 && ANR_DS_LENGTH(ds) > rand_index) {
+ ANR_DS_REMOVE_BY(ds, ANR_DS_FIND_AT(ds, rand_index));
+ }
+ }
+
+ ANR_DS_FREE(ds);
+}
+
+
+int main(int argc, char** argvv)
+{
+ anr_linked_list list = ANR_DS_LINKED_LIST(sizeof(int));
+ test_ds((anr_ds*)&list);
+
+ anr_array array = ANR_DS_ARRAY(sizeof(int), 1);
+ test_ds((anr_ds*)&array);
+
+ anr_hashmap hashmap = ANR_DS_HASHMAP(sizeof(int), 20);
+ test_ds((anr_ds*)&hashmap);
+
+ char* rand = random_hash();
+ clock_t t = clock();
+
+ for (int i = 0; i < TEST_LOOP; i++)
+ {
+ list = ANR_DS_LINKED_LIST(sizeof(int));
+ rand_test((anr_ds*)&list, rand);
+ }
+ printf("linked list fuzzing %.3fs\n", ((double)(clock() - t))/CLOCKS_PER_SEC);
+
+ t = clock();
+ for (int i = 0; i < TEST_LOOP; i++)
+ {
+ char* rand = random_hash();
+ array = ANR_DS_ARRAY(sizeof(int), 5);
+ rand_test((anr_ds*)&array, rand);
+ }
+ printf("array fuzzing %.3fs\n", ((double)(clock() - t))/CLOCKS_PER_SEC);
+
+ t = clock();
+ for (int i = 0; i < TEST_LOOP; i++)
+ {
+ char* rand = random_hash();
+ hashmap = ANR_DS_HASHMAP(sizeof(int), 20);
+ rand_test((anr_ds*)&hashmap, rand);
+ }
+ printf("hashmap fuzzing %.3fs\n", ((double)(clock() - t))/CLOCKS_PER_SEC);
+ free(rand);
+
+ t = clock();
+ list = ANR_DS_LINKED_LIST(sizeof(int));
+ add_remove_test((anr_ds*)&list);
+ printf("linkedlist addremove %.3fs\n", ((double)(clock() - t))/CLOCKS_PER_SEC);
+
+ t = clock();
+ array = ANR_DS_ARRAY(sizeof(int), ADD_REMOVE_COUNT);
+ add_remove_test((anr_ds*)&array);
+ printf("array addremove %.3fs\n", ((double)(clock() - t))/CLOCKS_PER_SEC);
+
+ t = clock();
+ hashmap = ANR_DS_HASHMAP(sizeof(int), ADD_REMOVE_COUNT);
+ add_remove_test((anr_ds*)&hashmap);
+
+ printf("hashmap addremove %.3fs\n", ((double)(clock() - t))/CLOCKS_PER_SEC);
+
+ return 0;
+}
+
+/*
+TEST RESULTS: 50000 hash length, 200000 add remove
+
+[v0.4] i7 4770
+linked list fuzzing 2.967s
+array fuzzing 0.017s
+hashmap fuzzing 0.347s
+linkedlist addremove 0.541s
+array addremove 4.365s
+hashmap addremove 0.022s
+
+*/ \ No newline at end of file
diff --git a/libs/anr/examples/test_pdf.c b/libs/anr/examples/test_pdf.c
new file mode 100644
index 0000000..33f4e5d
--- /dev/null
+++ b/libs/anr/examples/test_pdf.c
@@ -0,0 +1,267 @@
+#define STB_IMAGE_IMPLEMENTATION
+#include "res/stb_image.h"
+
+#define ANR_PDF_BUFFER_RESERVE 100000000
+
+#define ANR_PDF_IMPLEMENTATION
+#include "../anr_pdf.h"
+
+#include <math.h>
+
+anr_pdf_obj bold_text_link;
+anr_pdf_ref comic_sans;
+
+static anr_pdf_page create_page_1(anr_pdf* pdf)
+{
+ anr_pdf_page_begin(pdf, ANR_PDF_PAGE_SIZE_A4);
+
+ anr_pdf_txt_conf info = anr_pdf_txt_conf_default(pdf);
+ info.font = comic_sans;
+ info.font_size = 20;
+
+ anr_pdf_vecf size = anr_pdf_page_get_size(ANR_PDF_PAGE_SIZE_A4);
+ float textx = ANR_INCH_TO_USU(0.75);
+ size.y -= ANR_INCH_TO_USU(0.75);
+
+ #define NEXT_LINE size.y -= 20;
+ NEXT_LINE; anr_pdf_add_text(pdf, "Hello world!", textx, size.y, info);
+
+ info.color = ANR_PDF_RGB(1.0, 0.5, 0.0);
+ NEXT_LINE; anr_pdf_add_text(pdf, "Text with color", textx, size.y, info);
+ info.color = ANR_PDF_RGB(0.0, 0.0, 0.0);
+
+ info.char_space = 4.0f;
+ NEXT_LINE; anr_pdf_add_text(pdf, "Text with character spacing", textx, size.y, info);
+ info.char_space = 0.0f;
+
+ info.word_space = 10.0f;
+ NEXT_LINE; anr_pdf_add_text(pdf, "Text with word spacing", textx, size.y, info);
+ info.word_space = 0.0f;
+
+ info.horizontal_scale = 150.0f;
+ NEXT_LINE; anr_pdf_add_text(pdf, "Text with big horizontal scale", textx, size.y, info);
+ info.horizontal_scale = 0.0f;
+
+ info.horizontal_scale = 50.0f;
+ NEXT_LINE; anr_pdf_add_text(pdf, "Text with small horizontal scale", textx, size.y, info);
+ info.horizontal_scale = 100.0f;
+
+ info.leading = 10.0f;
+ NEXT_LINE; anr_pdf_add_text(pdf, "Text with leading", textx, size.y, info);
+ size.y -= 10;
+ NEXT_LINE;
+ info.leading = 0.0f;
+
+ char* funky_text = "Funky text that goes up and down";
+ for (int i = 0; i < strlen(funky_text); i++)
+ {
+ char str[2];
+ str[0] = funky_text[i];
+ str[1] = 0;
+ info.rise = sin(i)*2.0f;
+ anr_pdf_add_text(pdf, str, textx + i*8, size.y, info);
+ }
+ info.rise = 0.0f;
+
+ info.render_mode = ANR_PDF_TEXT_RENDERING_STROKE;
+ NEXT_LINE; anr_pdf_add_text(pdf, "Text rendered in outline mode", textx, size.y, info);
+ info.render_mode = ANR_PDF_TEXT_RENDERING_FILL;
+
+ info.font_size = 36;
+ info.angle = M_PI/-4.0f;
+ NEXT_LINE;NEXT_LINE; anr_pdf_add_text(pdf, "This text is pretty big..", 300, size.y, info);
+ info.angle = 0.0f;
+ info.font_size = 12;
+
+ info.font = pdf->default_font_bold_ref;
+ NEXT_LINE; anr_pdf_add_text(pdf, "This is bold text", textx, size.y, info);
+ info.font = pdf->default_font_ref;
+
+ info.font = pdf->default_font_italic_ref;
+ NEXT_LINE; anr_pdf_add_text(pdf, "This is italic text", textx, size.y, info);
+ info.font = pdf->default_font_ref;
+
+ info.font = pdf->default_font_italic_bold_ref;
+ NEXT_LINE; bold_text_link = anr_pdf_add_text(pdf, "This is a link in static bold text", textx, size.y, info);
+ info.font = pdf->default_font_ref;
+
+ anr_pdf_add_page_label(pdf, "1", ANR_PDF_ALIGN_LEFT);
+ anr_pdf_page pageref = anr_pdf_page_end(pdf);
+
+ anr_pdf_bookmark bm1 = anr_pdf_document_add_bookmark(pdf, pageref, NULL, NULL, "Chapter 1");
+ anr_pdf_document_add_bookmark(pdf, pageref, &bold_text_link, &bm1, "Chapter 1.1");
+
+ anr_pdf_annot_cnf annot = ANR_PDF_ANNOT_CONF_DEFAULT;
+ annot.color = ANR_PDF_RGB(1.0f, 0.0f, 0.0f);
+ annot.posted_by = "John";
+ anr_pdf_add_annotation_text(pdf, pageref, bold_text_link, "This text has an annotation", annot);
+
+ return pageref;
+}
+
+static anr_pdf_page create_page_2(anr_pdf* pdf)
+{
+ anr_pdf_obj line_ref;
+ anr_pdf_obj text_ref;
+ anr_pdf_page_begin(pdf, ANR_PDF_PAGE_SIZE_A4);
+ {
+ anr_pdf_vecf size = anr_pdf_page_get_size(ANR_PDF_PAGE_SIZE_A4);
+
+ {
+ anr_pdf_gfx_conf gfx = ANR_PDF_GFX_CONF_DEFAULT;
+ gfx.line_cap = ANR_PDF_LINECAP_ROUNDED;
+ gfx.line_width = 10;
+ gfx.line_join = ANR_PDF_LINEJOIN_MITER;
+ gfx.miter_limit = 1;
+ gfx.color = ANR_PDF_RGB(1.0f, 0.0f, 0.0f);
+ gfx.fill = 1;
+
+ anr_pdf_vecf line_data[] = {
+ {size.x - 10.0f, size.y - 10.0f},
+ {size.x - 50.0f, size.y - 10.0f},
+ {size.x - 70.0f, size.y - 70.0f},
+ {size.x - 170.0f, size.y - 50.0f},
+ {size.x - 300.0f, size.y - 20.0f},
+ {size.x - 420.0f, size.y - 220.0f},
+ {size.x - 380.0f, size.y - 180.0f},
+ {size.x - 500.0f, size.y - 20.0f},
+ };
+ anr_pdf_add_polygon(pdf, line_data, 8, gfx);
+ }
+
+ {
+ anr_pdf_gfx_conf gfx = ANR_PDF_GFX_CONF_DEFAULT;
+ gfx.line_cap = ANR_PDF_LINECAP_ROUNDED;
+ gfx.line_width = 10;
+ gfx.color = ANR_PDF_RGB(0.0f, 0.3f, 0.5f);
+
+ anr_pdf_vecf line_data[] = {
+ {10.0f, 10.0f},
+ {50.0f, 10.0f},
+ {70.0f, 70.0f},
+ {170.0f, 50.0f},
+ {300.0f, 20.0f},
+ {420.0f, 220.0f},
+ {380.0f, 180.0f},
+ {500.0f, 20.0f},
+ };
+ line_ref = anr_pdf_add_polygon(pdf, line_data, 8, gfx);
+ }
+
+ {
+ anr_pdf_gfx_conf gfx = ANR_PDF_GFX_CONF_DEFAULT;
+ gfx.line_cap = ANR_PDF_LINECAP_ROUNDED;
+ gfx.line_width = 4;
+ gfx.color = ANR_PDF_RGB(0.0f, 1.0f, 0.0f);
+ gfx.fill = 1;
+
+ anr_pdf_vecf line_data[] = {
+ {100.0f, 100.0f}, {200.0f, 200.0f}, {300.0f, 100.0f},
+ {400.0f, 20.0f}, {500.0f, 200.0f},
+ {700.0f, 700.0f}, {300.0f, 300.0f},
+ };
+ anr_pdf_add_cubic_bezier(pdf, line_data, 7, gfx);
+ }
+
+ {
+ anr_pdf_gfx_conf gfx = ANR_PDF_GFX_CONF_DEFAULT;
+ gfx.line_cap = ANR_PDF_LINECAP_ROUNDED;
+ gfx.line_width = 10;
+ gfx.color = ANR_PDF_RGB(1.0f, 1.0f, 0.0f);
+ anr_pdf_add_line(pdf, (anr_pdf_vecf){350.0f, 700.0f}, (anr_pdf_vecf){350.0f, 100.0f}, gfx);
+ }
+
+ text_ref = anr_pdf_add_text(pdf, "This page has some weird shapes...", 300, 500, ANR_PDF_TXT_CONF_DEFAULT);
+
+ {
+ int w, h, bbs;
+ unsigned char *data = stbi_load("res/greenland_grid_velo.bmp", &w, &h, &bbs, 3);
+ printf("Bmp greenland: %d %d %d\n", w, h, bbs);
+
+ anr_pdf_img img = anr_pdf_embed_image(pdf, data, w*h*bbs, w, h, 8);
+ anr_pdf_add_image(pdf, img, 0, 200, size.x/4, size.y/4);
+
+ free(data);
+ }
+
+ {
+ int w, h, bbs;
+ unsigned char *data = stbi_load("res/spongebob.png", &w, &h, &bbs,3);
+ printf("Bmp greenland: %d %d %d\n", w, h, bbs);
+
+ anr_pdf_img img = anr_pdf_embed_image(pdf, data, w*h*3, w, h, 8);
+ anr_pdf_add_image(pdf, img, 400, 200, size.x/4, size.y/4);
+
+ free(data);
+ }
+ }
+
+ anr_pdf_add_page_label(pdf, "2", ANR_PDF_ALIGN_CENTER);
+
+ anr_pdf_page pageref = anr_pdf_page_end(pdf);
+
+ anr_pdf_annot_cnf annot = ANR_PDF_ANNOT_CONF_DEFAULT;
+ annot.post_date = "20240323201500-00'00";
+ annot.posted_by = "Aldrik";
+ anr_pdf_annot root = anr_pdf_add_annotation_markup(pdf, pageref, text_ref, "This text is highlighted", ANR_PDF_ANNOTATION_MARKUP_HIGHLIGHT, annot);
+
+ annot = ANR_PDF_ANNOT_CONF_DEFAULT;
+ annot.posted_by = "Joe";
+ annot.parent = root;
+ anr_pdf_add_annotation_text(pdf, pageref, text_ref, "But I dont like the color..", annot);
+
+ anr_pdf_bookmark bm2 = anr_pdf_document_add_bookmark(pdf, pageref, NULL, NULL, "Chapter 2");
+ anr_pdf_document_add_bookmark(pdf, pageref, &line_ref, &bm2, "Chapter 2.1");
+
+ return pageref;
+}
+
+static anr_pdf_page create_page_3(anr_pdf* pdf)
+{
+ anr_pdf_page_begin(pdf, ANR_PDF_PAGE_SIZE_A4);
+ anr_pdf_vecf size = anr_pdf_page_get_size(ANR_PDF_PAGE_SIZE_A4);
+
+ float table_starty = size.y - 50;
+ float table_startx = 50;
+ float col_w = (size.x - (table_startx*2)) / 4;
+ float row_h = 60;
+ float rows[] = {table_starty-(row_h*0), table_starty-(row_h*1), table_starty-(row_h*2), table_starty-(row_h*3), table_starty-(row_h*4)};
+ float cols[] = {table_startx+(col_w*0), table_startx+(col_w*1), table_startx+(col_w*3), table_startx+(col_w*4)};
+ anr_pdf_add_table(pdf, rows, sizeof(rows)/sizeof(float), cols, sizeof(cols)/sizeof(float), ANR_PDF_RGB(0.8f, 0.8f, 0.8f));
+
+ anr_pdf_add_page_label(pdf, "3", ANR_PDF_ALIGN_RIGHT);
+ anr_pdf_page pageref = anr_pdf_page_end(pdf);
+ return pageref;
+}
+
+
+int main()
+{
+ anr_pdf* pdf = anr_pdf_document_begin();
+ anr_pdf_document_add_information_dictionary(pdf,
+ "Simple text document", "Aldrik", "Cool Banana's",
+ "Text, Bananas", NULL, "anr_pdf Library", "20240318201500-00'00", NULL);
+
+ FILE* file = fopen("res/ButterflyKids-Regular.ttf", "rw");
+ fseek(file, 0, SEEK_END);
+ size_t ttf_size = ftell(file);
+ printf("Comic sans: %d\n", (int)ttf_size);
+ rewind(file);
+ unsigned char* ttf_buffer = malloc(ttf_size);
+ fread(ttf_buffer, 1, ttf_size, file);
+ comic_sans = anr_pdf_embed_ttf(pdf, ttf_buffer, ttf_size);
+ free(ttf_buffer);
+
+ anr_pdf_page page1 = create_page_1(pdf);
+ anr_pdf_page page2 = create_page_2(pdf);
+ create_page_3(pdf);
+
+ anr_pdf_add_annotation_link(pdf, page1, bold_text_link, page2, NULL, ANR_PDF_ANNOT_CONF_DEFAULT);
+
+ anr_pdf_document_end(pdf);
+ anr_pdf_write_to_file(pdf, "bin/test_pdf.pdf");
+
+ anr_pdf_document_free(pdf);
+
+ return 0;
+} \ No newline at end of file
diff --git a/libs/anr/examples/test_sc.c b/libs/anr/examples/test_sc.c
new file mode 100644
index 0000000..716635f
--- /dev/null
+++ b/libs/anr/examples/test_sc.c
@@ -0,0 +1,98 @@
+//#define ANR_SC_DEBUG
+#define ANR_SC_IMPLEMENTATION
+#include "../anr_sc.h"
+
+#include <stdio.h>
+#include <time.h>
+#include <stdlib.h>
+
+#define BYTE_TO_BINARY_PATTERN "%c%c%c%c%c%c%c%c"
+#define BYTE_TO_BINARY(byte) \
+ ((byte) & 0x80 ? '1' : '0'), \
+ ((byte) & 0x40 ? '1' : '0'), \
+ ((byte) & 0x20 ? '1' : '0'), \
+ ((byte) & 0x10 ? '1' : '0'), \
+ ((byte) & 0x08 ? '1' : '0'), \
+ ((byte) & 0x04 ? '1' : '0'), \
+ ((byte) & 0x02 ? '1' : '0'), \
+ ((byte) & 0x01 ? '1' : '0')
+
+void test_small()
+{
+ uint8_t buffer[] = { 0, 32, 0, 0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 };
+ //uint8_t buffer[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16};
+ uint32_t out;
+ uint8_t* compressed_data = anr_sc_deflate(buffer, sizeof(buffer), &out);
+
+#if 1
+ printf("\n\n");
+ for (int i = 0; i < out; i++)
+ {
+ printf(BYTE_TO_BINARY_PATTERN " ", BYTE_TO_BINARY(compressed_data[i]));
+ }
+ printf("\n\n");
+
+ uint8_t* decompressed_data = anr_sc_inflate(compressed_data, out, &out);
+
+ printf("\n\n");
+ for (int i = 0; i < out; i++)
+ {
+ printf(BYTE_TO_BINARY_PATTERN " ", BYTE_TO_BINARY(buffer[i]));
+ }
+ printf("\n");
+ for (int i = 0; i < out; i++)
+ {
+ printf(BYTE_TO_BINARY_PATTERN " ", BYTE_TO_BINARY(decompressed_data[i]));
+ }
+ printf("\n\n");
+#endif
+
+ assert(out == (int)sizeof(buffer));
+ assert(memcmp(buffer, decompressed_data, out) == 0);
+}
+
+void test_file(char* str)
+{
+ FILE* file = fopen(str, "rb");
+ fseek(file, 0, SEEK_END);
+ int iso_size = ftell(file);
+ rewind(file);
+ unsigned char* iso_buffer = malloc(iso_size);
+ fread(iso_buffer, 1, iso_size, file);
+ fclose(file);
+
+ printf("%s:", str);
+ uint32_t out;
+ uint8_t* compressed_data = anr_sc_deflate(iso_buffer, iso_size, &out);
+ uint8_t* decompressed_data = anr_sc_inflate(compressed_data, out, &out);
+
+ assert(out == iso_size);
+ assert(memcmp(iso_buffer, decompressed_data, out) == 0);
+
+ free(compressed_data);
+ free(decompressed_data);
+ free(iso_buffer);
+}
+
+int main(int argc, char** argv)
+{
+ //test_small();
+
+ test_file("res/bible.txt");
+ test_file("res/cid2code.txt");
+ test_file("res/small.txt");
+ test_file("res/test.txt");
+
+ #if 0
+ test_file("test_data.c");
+ test_file("test_pdf.c");
+ test_file("test_sc.c");
+
+ test_file("../anr_data.h");
+ test_file("../anr_pdf.h");
+ test_file("../anr_sc.h");
+ #endif
+
+
+ return 0;
+} \ No newline at end of file
diff --git a/libs/imgui-1.92.1/imgui.cpp b/libs/imgui-1.92.1/imgui.cpp
index 6838e50..d3d82d4 100644
--- a/libs/imgui-1.92.1/imgui.cpp
+++ b/libs/imgui-1.92.1/imgui.cpp
@@ -1386,7 +1386,7 @@ ImGuiStyle::ImGuiStyle()
FontScaleDpi = 1.0f; // Additional scale factor from viewport/monitor contents scale. When io.ConfigDpiScaleFonts is enabled, this is automatically overwritten when changing monitor DPI.
Alpha = 1.0f; // Global alpha applies to everything in Dear ImGui.
- DisabledAlpha = 0.60f; // Additional alpha multiplier applied by BeginDisabled(). Multiply over current value of Alpha.
+ DisabledAlpha = 0.75f; // Additional alpha multiplier applied by BeginDisabled(). Multiply over current value of Alpha.
WindowPadding = ImVec2(8,8); // Padding within a window
WindowRounding = 0.0f; // Radius of window corners rounding. Set to 0.0f to have rectangular windows. Large values tend to lead to variety of artifacts and are not recommended.
WindowBorderSize = 1.0f; // Thickness of border around windows. Generally set to 0.0f or 1.0f. Other values not well tested.
@@ -16678,7 +16678,7 @@ void ImGui::DebugBreakButtonTooltip(bool keyboard_only, const char* description_
}
// From https://github.com/ocornut/imgui/issues/1901#issuecomment-444929973
-void ImGui::LoadingIndicatorCircle(const char* label, const float indicator_radius,
+void ImGui::LoadingIndicatorCircle(const float indicator_radius,
const ImVec4& main_color, const ImVec4& backdrop_color,
const int circle_count, const float speed) {
ImGuiWindow* window = GetCurrentWindow();
diff --git a/libs/imgui-1.92.1/imgui.h b/libs/imgui-1.92.1/imgui.h
index bfc70d4..7a3c8cd 100644
--- a/libs/imgui-1.92.1/imgui.h
+++ b/libs/imgui-1.92.1/imgui.h
@@ -377,7 +377,7 @@ namespace ImGui
{
IMGUI_API bool BeginComboPreview();
IMGUI_API void EndComboPreview();
- IMGUI_API void LoadingIndicatorCircle(const char* label, const float indicator_radius,
+ IMGUI_API void LoadingIndicatorCircle(const float indicator_radius,
const ImVec4& main_color, const ImVec4& backdrop_color,
const int circle_count, const float speed);
@@ -570,7 +570,7 @@ namespace ImGui
IMGUI_API ImVec2 GetCursorStartPos(); // [window-local] initial cursor position, in window-local coordinates. Call GetCursorScreenPos() after Begin() to get the absolute coordinates version.
// Other layout functions
- IMGUI_API void Separator(); // separator, generally horizontal. inside a menu bar or in horizontal layout mode, this becomes a vertical separator.
+ IMGUI_API void Separator(float thickness = 1.0f); // separator, generally horizontal. inside a menu bar or in horizontal layout mode, this becomes a vertical separator.
IMGUI_API void SameLine(float offset_from_start_x=0.0f, float spacing=-1.0f); // call between widgets or groups to layout them horizontally. X position given in window coordinates.
IMGUI_API void NewLine(); // undo a SameLine() or force a new line when in a horizontal-layout context.
IMGUI_API void Spacing(); // add vertical spacing.
diff --git a/libs/imgui-1.92.1/imgui_widgets.cpp b/libs/imgui-1.92.1/imgui_widgets.cpp
index a0c4f14..501ec22 100644
--- a/libs/imgui-1.92.1/imgui_widgets.cpp
+++ b/libs/imgui-1.92.1/imgui_widgets.cpp
@@ -1677,7 +1677,7 @@ void ImGui::SeparatorEx(ImGuiSeparatorFlags flags, float thickness)
}
}
-void ImGui::Separator()
+void ImGui::Separator(float thickness)
{
ImGuiContext& g = *GImGui;
ImGuiWindow* window = g.CurrentWindow;
@@ -1692,7 +1692,7 @@ void ImGui::Separator()
if (window->DC.CurrentColumns)
flags |= ImGuiSeparatorFlags_SpanAllColumns;
- SeparatorEx(flags, 1.0f);
+ SeparatorEx(flags, thickness);
}
void ImGui::SeparatorTextEx(ImGuiID id, const char* label, const char* label_end, float extra_w)